-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drm/i915: Break out dma_resv ww locking utilities to separate files
As we're about to add more ww-related functionality, break out the dma_resv ww locking utilities to their own files Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> Signed-off-by: Matthew Auld <matthew.auld@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210617063018.92802-3-thomas.hellstrom@linux.intel.com
- Loading branch information
Thomas Hellström
authored and
Matthew Auld
committed
Jun 17, 2021
1 parent
1c4dbe0
commit 5c43ec5
Showing
7 changed files
with
87 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// SPDX-License-Identifier: MIT | ||
/* | ||
* Copyright © 2020 Intel Corporation | ||
*/ | ||
#include <linux/dma-resv.h> | ||
#include "i915_gem_ww.h" | ||
#include "gem/i915_gem_object.h" | ||
|
||
void i915_gem_ww_ctx_init(struct i915_gem_ww_ctx *ww, bool intr) | ||
{ | ||
ww_acquire_init(&ww->ctx, &reservation_ww_class); | ||
INIT_LIST_HEAD(&ww->obj_list); | ||
ww->intr = intr; | ||
ww->contended = NULL; | ||
} | ||
|
||
static void i915_gem_ww_ctx_unlock_all(struct i915_gem_ww_ctx *ww) | ||
{ | ||
struct drm_i915_gem_object *obj; | ||
|
||
while ((obj = list_first_entry_or_null(&ww->obj_list, struct drm_i915_gem_object, obj_link))) { | ||
list_del(&obj->obj_link); | ||
i915_gem_object_unlock(obj); | ||
i915_gem_object_put(obj); | ||
} | ||
} | ||
|
||
void i915_gem_ww_unlock_single(struct drm_i915_gem_object *obj) | ||
{ | ||
list_del(&obj->obj_link); | ||
i915_gem_object_unlock(obj); | ||
i915_gem_object_put(obj); | ||
} | ||
|
||
void i915_gem_ww_ctx_fini(struct i915_gem_ww_ctx *ww) | ||
{ | ||
i915_gem_ww_ctx_unlock_all(ww); | ||
WARN_ON(ww->contended); | ||
ww_acquire_fini(&ww->ctx); | ||
} | ||
|
||
int __must_check i915_gem_ww_ctx_backoff(struct i915_gem_ww_ctx *ww) | ||
{ | ||
int ret = 0; | ||
|
||
if (WARN_ON(!ww->contended)) | ||
return -EINVAL; | ||
|
||
i915_gem_ww_ctx_unlock_all(ww); | ||
if (ww->intr) | ||
ret = dma_resv_lock_slow_interruptible(ww->contended->base.resv, &ww->ctx); | ||
else | ||
dma_resv_lock_slow(ww->contended->base.resv, &ww->ctx); | ||
|
||
if (!ret) | ||
list_add_tail(&ww->contended->obj_link, &ww->obj_list); | ||
else | ||
i915_gem_object_put(ww->contended); | ||
|
||
ww->contended = NULL; | ||
|
||
return ret; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* SPDX-License-Identifier: MIT */ | ||
/* | ||
* Copyright © 2020 Intel Corporation | ||
*/ | ||
#ifndef __I915_GEM_WW_H__ | ||
#define __I915_GEM_WW_H__ | ||
|
||
#include <drm/drm_drv.h> | ||
|
||
struct i915_gem_ww_ctx { | ||
struct ww_acquire_ctx ctx; | ||
struct list_head obj_list; | ||
struct drm_i915_gem_object *contended; | ||
bool intr; | ||
}; | ||
|
||
void i915_gem_ww_ctx_init(struct i915_gem_ww_ctx *ctx, bool intr); | ||
void i915_gem_ww_ctx_fini(struct i915_gem_ww_ctx *ctx); | ||
int __must_check i915_gem_ww_ctx_backoff(struct i915_gem_ww_ctx *ctx); | ||
void i915_gem_ww_unlock_single(struct drm_i915_gem_object *obj); | ||
#endif |