]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/xe: don't store the xe device pointer inside xe_ttm_tt
authorDave Airlie <airlied@redhat.com>
Thu, 5 Jun 2025 06:21:02 +0000 (16:21 +1000)
committerMatthew Brost <matthew.brost@intel.com>
Fri, 6 Jun 2025 16:30:56 +0000 (09:30 -0700)
This device pointer is nearly always available without storing
an extra copy for each tt in the system.

Just noticed this while reading over the xe shrinker code.

Signed-off-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Link: https://lore.kernel.org/r/20250605062103.1234620-1-airlied@gmail.com
drivers/gpu/drm/xe/tests/xe_bo.c
drivers/gpu/drm/xe/xe_bo.c

index 378dcd0fb414938c8f064d718e34a6fa6d96a1c2..77ca1ab527ec937e476b4b663985b45d124f9a90 100644 (file)
@@ -514,9 +514,9 @@ static int shrink_test_run_device(struct xe_device *xe)
                 * other way around, they may not be subject to swapping...
                 */
                if (alloced < purgeable) {
-                       xe_ttm_tt_account_subtract(&xe_tt->ttm);
+                       xe_ttm_tt_account_subtract(xe, &xe_tt->ttm);
                        xe_tt->purgeable = true;
-                       xe_ttm_tt_account_add(&xe_tt->ttm);
+                       xe_ttm_tt_account_add(xe, &xe_tt->ttm);
                        bo->ttm.priority = 0;
                        spin_lock(&bo->ttm.bdev->lru_lock);
                        ttm_bo_move_to_lru_tail(&bo->ttm);
index 61d208c852814d850e1b79e39fdc8c18435d82eb..f35a7786a56fb506fa8d76de54154d09c779d92a 100644 (file)
@@ -336,15 +336,13 @@ static void xe_evict_flags(struct ttm_buffer_object *tbo,
 /* struct xe_ttm_tt - Subclassed ttm_tt for xe */
 struct xe_ttm_tt {
        struct ttm_tt ttm;
-       /** @xe - The xe device */
-       struct xe_device *xe;
        struct sg_table sgt;
        struct sg_table *sg;
        /** @purgeable: Whether the content of the pages of @ttm is purgeable. */
        bool purgeable;
 };
 
-static int xe_tt_map_sg(struct ttm_tt *tt)
+static int xe_tt_map_sg(struct xe_device *xe, struct ttm_tt *tt)
 {
        struct xe_ttm_tt *xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
        unsigned long num_pages = tt->num_pages;
@@ -359,13 +357,13 @@ static int xe_tt_map_sg(struct ttm_tt *tt)
        ret = sg_alloc_table_from_pages_segment(&xe_tt->sgt, tt->pages,
                                                num_pages, 0,
                                                (u64)num_pages << PAGE_SHIFT,
-                                               xe_sg_segment_size(xe_tt->xe->drm.dev),
+                                               xe_sg_segment_size(xe->drm.dev),
                                                GFP_KERNEL);
        if (ret)
                return ret;
 
        xe_tt->sg = &xe_tt->sgt;
-       ret = dma_map_sgtable(xe_tt->xe->drm.dev, xe_tt->sg, DMA_BIDIRECTIONAL,
+       ret = dma_map_sgtable(xe->drm.dev, xe_tt->sg, DMA_BIDIRECTIONAL,
                              DMA_ATTR_SKIP_CPU_SYNC);
        if (ret) {
                sg_free_table(xe_tt->sg);
@@ -376,12 +374,12 @@ static int xe_tt_map_sg(struct ttm_tt *tt)
        return 0;
 }
 
-static void xe_tt_unmap_sg(struct ttm_tt *tt)
+static void xe_tt_unmap_sg(struct xe_device *xe, struct ttm_tt *tt)
 {
        struct xe_ttm_tt *xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
 
        if (xe_tt->sg) {
-               dma_unmap_sgtable(xe_tt->xe->drm.dev, xe_tt->sg,
+               dma_unmap_sgtable(xe->drm.dev, xe_tt->sg,
                                  DMA_BIDIRECTIONAL, 0);
                sg_free_table(xe_tt->sg);
                xe_tt->sg = NULL;
@@ -400,24 +398,24 @@ struct sg_table *xe_bo_sg(struct xe_bo *bo)
  * Account ttm pages against the device shrinker's shrinkable and
  * purgeable counts.
  */
-static void xe_ttm_tt_account_add(struct ttm_tt *tt)
+static void xe_ttm_tt_account_add(struct xe_device *xe, struct ttm_tt *tt)
 {
        struct xe_ttm_tt *xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
 
        if (xe_tt->purgeable)
-               xe_shrinker_mod_pages(xe_tt->xe->mem.shrinker, 0, tt->num_pages);
+               xe_shrinker_mod_pages(xe->mem.shrinker, 0, tt->num_pages);
        else
-               xe_shrinker_mod_pages(xe_tt->xe->mem.shrinker, tt->num_pages, 0);
+               xe_shrinker_mod_pages(xe->mem.shrinker, tt->num_pages, 0);
 }
 
-static void xe_ttm_tt_account_subtract(struct ttm_tt *tt)
+static void xe_ttm_tt_account_subtract(struct xe_device *xe, struct ttm_tt *tt)
 {
        struct xe_ttm_tt *xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
 
        if (xe_tt->purgeable)
-               xe_shrinker_mod_pages(xe_tt->xe->mem.shrinker, 0, -(long)tt->num_pages);
+               xe_shrinker_mod_pages(xe->mem.shrinker, 0, -(long)tt->num_pages);
        else
-               xe_shrinker_mod_pages(xe_tt->xe->mem.shrinker, -(long)tt->num_pages, 0);
+               xe_shrinker_mod_pages(xe->mem.shrinker, -(long)tt->num_pages, 0);
 }
 
 static struct ttm_tt *xe_ttm_tt_create(struct ttm_buffer_object *ttm_bo,
@@ -436,7 +434,6 @@ static struct ttm_tt *xe_ttm_tt_create(struct ttm_buffer_object *ttm_bo,
                return NULL;
 
        tt = &xe_tt->ttm;
-       xe_tt->xe = xe;
 
        extra_pages = 0;
        if (xe_bo_needs_ccs_pages(bo))
@@ -527,21 +524,23 @@ static int xe_ttm_tt_populate(struct ttm_device *ttm_dev, struct ttm_tt *tt,
                return err;
 
        xe_tt->purgeable = false;
-       xe_ttm_tt_account_add(tt);
+       xe_ttm_tt_account_add(ttm_to_xe_device(ttm_dev), tt);
 
        return 0;
 }
 
 static void xe_ttm_tt_unpopulate(struct ttm_device *ttm_dev, struct ttm_tt *tt)
 {
+       struct xe_device *xe = ttm_to_xe_device(ttm_dev);
+
        if ((tt->page_flags & TTM_TT_FLAG_EXTERNAL) &&
            !(tt->page_flags & TTM_TT_FLAG_EXTERNAL_MAPPABLE))
                return;
 
-       xe_tt_unmap_sg(tt);
+       xe_tt_unmap_sg(xe, tt);
 
        ttm_pool_free(&ttm_dev->pool, tt);
-       xe_ttm_tt_account_subtract(tt);
+       xe_ttm_tt_account_subtract(xe, tt);
 }
 
 static void xe_ttm_tt_destroy(struct ttm_device *ttm_dev, struct ttm_tt *tt)
@@ -789,7 +788,7 @@ static int xe_bo_move(struct ttm_buffer_object *ttm_bo, bool evict,
        /* Bo creation path, moving to system or TT. */
        if ((!old_mem && ttm) && !handle_system_ccs) {
                if (new_mem->mem_type == XE_PL_TT)
-                       ret = xe_tt_map_sg(ttm);
+                       ret = xe_tt_map_sg(xe, ttm);
                if (!ret)
                        ttm_bo_move_null(ttm_bo, new_mem);
                goto out;
@@ -812,7 +811,7 @@ static int xe_bo_move(struct ttm_buffer_object *ttm_bo, bool evict,
                (!ttm && ttm_bo->type == ttm_bo_type_device);
 
        if (new_mem->mem_type == XE_PL_TT) {
-               ret = xe_tt_map_sg(ttm);
+               ret = xe_tt_map_sg(xe, ttm);
                if (ret)
                        goto out;
        }
@@ -958,7 +957,7 @@ out:
                if (timeout < 0)
                        ret = timeout;
 
-               xe_tt_unmap_sg(ttm_bo->ttm);
+               xe_tt_unmap_sg(xe, ttm_bo->ttm);
        }
 
        return ret;
@@ -968,6 +967,7 @@ static long xe_bo_shrink_purge(struct ttm_operation_ctx *ctx,
                               struct ttm_buffer_object *bo,
                               unsigned long *scanned)
 {
+       struct xe_device *xe = ttm_to_xe_device(bo->bdev);
        long lret;
 
        /* Fake move to system, without copying data. */
@@ -982,7 +982,7 @@ static long xe_bo_shrink_purge(struct ttm_operation_ctx *ctx,
                if (lret)
                        return lret;
 
-               xe_tt_unmap_sg(bo->ttm);
+               xe_tt_unmap_sg(xe, bo->ttm);
                ttm_bo_move_null(bo, new_resource);
        }
 
@@ -993,7 +993,7 @@ static long xe_bo_shrink_purge(struct ttm_operation_ctx *ctx,
                              .allow_move = false});
 
        if (lret > 0)
-               xe_ttm_tt_account_subtract(bo->ttm);
+               xe_ttm_tt_account_subtract(xe, bo->ttm);
 
        return lret;
 }
@@ -1043,7 +1043,7 @@ long xe_bo_shrink(struct ttm_operation_ctx *ctx, struct ttm_buffer_object *bo,
        struct xe_ttm_tt *xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
        struct ttm_place place = {.mem_type = bo->resource->mem_type};
        struct xe_bo *xe_bo = ttm_to_xe_bo(bo);
-       struct xe_device *xe = xe_tt->xe;
+       struct xe_device *xe = ttm_to_xe_device(bo->bdev);
        bool needs_rpm;
        long lret = 0L;
 
@@ -1080,7 +1080,7 @@ long xe_bo_shrink(struct ttm_operation_ctx *ctx, struct ttm_buffer_object *bo,
                xe_pm_runtime_put(xe);
 
        if (lret > 0)
-               xe_ttm_tt_account_subtract(tt);
+               xe_ttm_tt_account_subtract(xe, tt);
 
 out_unref:
        xe_bo_put(xe_bo);
@@ -1381,7 +1381,8 @@ int xe_bo_dma_unmap_pinned(struct xe_bo *bo)
                        ttm_bo->sg = NULL;
                        xe_tt->sg = NULL;
                } else if (xe_tt->sg) {
-                       dma_unmap_sgtable(xe_tt->xe->drm.dev, xe_tt->sg,
+                       dma_unmap_sgtable(ttm_to_xe_device(ttm_bo->bdev)->drm.dev,
+                                         xe_tt->sg,
                                          DMA_BIDIRECTIONAL, 0);
                        sg_free_table(xe_tt->sg);
                        xe_tt->sg = NULL;
@@ -2293,7 +2294,7 @@ int xe_bo_pin_external(struct xe_bo *bo)
 
        ttm_bo_pin(&bo->ttm);
        if (bo->ttm.ttm && ttm_tt_is_populated(bo->ttm.ttm))
-               xe_ttm_tt_account_subtract(bo->ttm.ttm);
+               xe_ttm_tt_account_subtract(xe, bo->ttm.ttm);
 
        /*
         * FIXME: If we always use the reserve / unreserve functions for locking
@@ -2341,7 +2342,7 @@ int xe_bo_pin(struct xe_bo *bo)
 
        ttm_bo_pin(&bo->ttm);
        if (bo->ttm.ttm && ttm_tt_is_populated(bo->ttm.ttm))
-               xe_ttm_tt_account_subtract(bo->ttm.ttm);
+               xe_ttm_tt_account_subtract(xe, bo->ttm.ttm);
 
        /*
         * FIXME: If we always use the reserve / unreserve functions for locking
@@ -2377,7 +2378,7 @@ void xe_bo_unpin_external(struct xe_bo *bo)
 
        ttm_bo_unpin(&bo->ttm);
        if (bo->ttm.ttm && ttm_tt_is_populated(bo->ttm.ttm))
-               xe_ttm_tt_account_add(bo->ttm.ttm);
+               xe_ttm_tt_account_add(xe, bo->ttm.ttm);
 
        /*
         * FIXME: If we always use the reserve / unreserve functions for locking
@@ -2409,7 +2410,7 @@ void xe_bo_unpin(struct xe_bo *bo)
        }
        ttm_bo_unpin(&bo->ttm);
        if (bo->ttm.ttm && ttm_tt_is_populated(bo->ttm.ttm))
-               xe_ttm_tt_account_add(bo->ttm.ttm);
+               xe_ttm_tt_account_add(xe, bo->ttm.ttm);
 }
 
 /**