Commit bc25bb91 authored by Thomas Zimmermann's avatar Thomas Zimmermann

drm/vram: Acquire lock only once per call to vmap()/vunmap()

The implementation of vmap() is a combined pin() and kmap(). As both
functions share the same lock, we can make vmap() slightly faster by
acquiring the lock only once for both operations. Same for the inverse,
vunmap().
Signed-off-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Acked-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Reported-and-tested-by: default avatarDavidlohr Bueso <dbueso@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20190906122056.32018-3-tzimmermann@suse.de
parent 37a48adf
...@@ -195,30 +195,12 @@ s64 drm_gem_vram_offset(struct drm_gem_vram_object *gbo) ...@@ -195,30 +195,12 @@ s64 drm_gem_vram_offset(struct drm_gem_vram_object *gbo)
} }
EXPORT_SYMBOL(drm_gem_vram_offset); EXPORT_SYMBOL(drm_gem_vram_offset);
/** static int drm_gem_vram_pin_locked(struct drm_gem_vram_object *gbo,
* drm_gem_vram_pin() - Pins a GEM VRAM object in a region. unsigned long pl_flag)
* @gbo: the GEM VRAM object
* @pl_flag: a bitmask of possible memory regions
*
* Pinning a buffer object ensures that it is not evicted from
* a memory region. A pinned buffer object has to be unpinned before
* it can be pinned to another region. If the pl_flag argument is 0,
* the buffer is pinned at its current location (video RAM or system
* memory).
*
* Returns:
* 0 on success, or
* a negative error code otherwise.
*/
int drm_gem_vram_pin(struct drm_gem_vram_object *gbo, unsigned long pl_flag)
{ {
int i, ret; int i, ret;
struct ttm_operation_ctx ctx = { false, false }; struct ttm_operation_ctx ctx = { false, false };
ret = ttm_bo_reserve(&gbo->bo, true, false, NULL);
if (ret < 0)
return ret;
if (gbo->pin_count) if (gbo->pin_count)
goto out; goto out;
...@@ -230,58 +212,83 @@ int drm_gem_vram_pin(struct drm_gem_vram_object *gbo, unsigned long pl_flag) ...@@ -230,58 +212,83 @@ int drm_gem_vram_pin(struct drm_gem_vram_object *gbo, unsigned long pl_flag)
ret = ttm_bo_validate(&gbo->bo, &gbo->placement, &ctx); ret = ttm_bo_validate(&gbo->bo, &gbo->placement, &ctx);
if (ret < 0) if (ret < 0)
goto err_ttm_bo_unreserve; return ret;
out: out:
++gbo->pin_count; ++gbo->pin_count;
ttm_bo_unreserve(&gbo->bo);
return 0; return 0;
err_ttm_bo_unreserve:
ttm_bo_unreserve(&gbo->bo);
return ret;
} }
EXPORT_SYMBOL(drm_gem_vram_pin);
/** /**
* drm_gem_vram_unpin() - Unpins a GEM VRAM object * drm_gem_vram_pin() - Pins a GEM VRAM object in a region.
* @gbo: the GEM VRAM object * @gbo: the GEM VRAM object
* @pl_flag: a bitmask of possible memory regions
*
* Pinning a buffer object ensures that it is not evicted from
* a memory region. A pinned buffer object has to be unpinned before
* it can be pinned to another region. If the pl_flag argument is 0,
* the buffer is pinned at its current location (video RAM or system
* memory).
* *
* Returns: * Returns:
* 0 on success, or * 0 on success, or
* a negative error code otherwise. * a negative error code otherwise.
*/ */
int drm_gem_vram_unpin(struct drm_gem_vram_object *gbo) int drm_gem_vram_pin(struct drm_gem_vram_object *gbo, unsigned long pl_flag)
{ {
int i, ret; int ret;
struct ttm_operation_ctx ctx = { false, false };
ret = ttm_bo_reserve(&gbo->bo, true, false, NULL); ret = ttm_bo_reserve(&gbo->bo, true, false, NULL);
if (ret < 0) if (ret)
return ret; return ret;
ret = drm_gem_vram_pin_locked(gbo, pl_flag);
ttm_bo_unreserve(&gbo->bo);
return ret;
}
EXPORT_SYMBOL(drm_gem_vram_pin);
static int drm_gem_vram_unpin_locked(struct drm_gem_vram_object *gbo)
{
int i, ret;
struct ttm_operation_ctx ctx = { false, false };
if (WARN_ON_ONCE(!gbo->pin_count)) if (WARN_ON_ONCE(!gbo->pin_count))
goto out; return 0;
--gbo->pin_count; --gbo->pin_count;
if (gbo->pin_count) if (gbo->pin_count)
goto out; return 0;
for (i = 0; i < gbo->placement.num_placement ; ++i) for (i = 0; i < gbo->placement.num_placement ; ++i)
gbo->placements[i].flags &= ~TTM_PL_FLAG_NO_EVICT; gbo->placements[i].flags &= ~TTM_PL_FLAG_NO_EVICT;
ret = ttm_bo_validate(&gbo->bo, &gbo->placement, &ctx); ret = ttm_bo_validate(&gbo->bo, &gbo->placement, &ctx);
if (ret < 0) if (ret < 0)
goto err_ttm_bo_unreserve; return ret;
out:
ttm_bo_unreserve(&gbo->bo);
return 0; return 0;
}
err_ttm_bo_unreserve: /**
* drm_gem_vram_unpin() - Unpins a GEM VRAM object
* @gbo: the GEM VRAM object
*
* Returns:
* 0 on success, or
* a negative error code otherwise.
*/
int drm_gem_vram_unpin(struct drm_gem_vram_object *gbo)
{
int ret;
ret = ttm_bo_reserve(&gbo->bo, true, false, NULL);
if (ret)
return ret;
ret = drm_gem_vram_unpin_locked(gbo);
ttm_bo_unreserve(&gbo->bo); ttm_bo_unreserve(&gbo->bo);
return ret; return ret;
} }
EXPORT_SYMBOL(drm_gem_vram_unpin); EXPORT_SYMBOL(drm_gem_vram_unpin);
...@@ -637,15 +644,28 @@ static void *drm_gem_vram_object_vmap(struct drm_gem_object *gem) ...@@ -637,15 +644,28 @@ static void *drm_gem_vram_object_vmap(struct drm_gem_object *gem)
int ret; int ret;
void *base; void *base;
ret = drm_gem_vram_pin(gbo, 0); ret = ttm_bo_reserve(&gbo->bo, true, false, NULL);
if (ret) if (ret)
return NULL; return ERR_PTR(ret);
base = drm_gem_vram_kmap(gbo, true, NULL);
ret = drm_gem_vram_pin_locked(gbo, 0);
if (ret)
goto err_ttm_bo_unreserve;
base = drm_gem_vram_kmap_locked(gbo, true, NULL);
if (IS_ERR(base)) { if (IS_ERR(base)) {
drm_gem_vram_unpin(gbo); ret = PTR_ERR(base);
return NULL; goto err_drm_gem_vram_unpin_locked;
} }
ttm_bo_unreserve(&gbo->bo);
return base; return base;
err_drm_gem_vram_unpin_locked:
drm_gem_vram_unpin_locked(gbo);
err_ttm_bo_unreserve:
ttm_bo_unreserve(&gbo->bo);
return ERR_PTR(ret);
} }
/** /**
...@@ -658,9 +678,16 @@ static void drm_gem_vram_object_vunmap(struct drm_gem_object *gem, ...@@ -658,9 +678,16 @@ static void drm_gem_vram_object_vunmap(struct drm_gem_object *gem,
void *vaddr) void *vaddr)
{ {
struct drm_gem_vram_object *gbo = drm_gem_vram_of_gem(gem); struct drm_gem_vram_object *gbo = drm_gem_vram_of_gem(gem);
int ret;
drm_gem_vram_kunmap(gbo); ret = ttm_bo_reserve(&gbo->bo, false, false, NULL);
drm_gem_vram_unpin(gbo); if (WARN_ONCE(ret, "ttm_bo_reserve_failed(): ret=%d\n", ret))
return;
drm_gem_vram_kunmap_locked(gbo);
drm_gem_vram_unpin_locked(gbo);
ttm_bo_unreserve(&gbo->bo);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment