]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/xe: fully turn on small-bar support
authorMatthew Auld <matthew.auld@intel.com>
Fri, 31 Mar 2023 08:46:28 +0000 (09:46 +0100)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Thu, 21 Dec 2023 16:37:54 +0000 (11:37 -0500)
This allows vram_size > io_size, instead of just clamping the vram size
to the BAR size, now that the driver supports it.

Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Michael J. Ruhl <michael.j.ruhl@intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
drivers/gpu/drm/xe/xe_mmio.c

index 8d0f07261bfd8976277f4b0ad726fa38ebd8d0ae..aa9c573b124328eec67213a7ca3036d5f89b2a99 100644 (file)
@@ -261,11 +261,6 @@ int xe_mmio_probe_vram(struct xe_device *xe)
        if (err)
                return err;
 
-       /* small bar issues will only cover root tile sizes */
-       if (xe->mem.vram.io_size < vram_size)
-               drm_warn(&xe->drm, "Restricting VRAM size to PCI resource size (0x%llx->0x%llx)\n",
-                        vram_size, (u64)xe->mem.vram.io_size);
-
        drm_info(&xe->drm, "VISIBLE VRAM: %pa, %pa\n", &xe->mem.vram.io_start,
                 &xe->mem.vram.io_size);
 
@@ -287,9 +282,7 @@ int xe_mmio_probe_vram(struct xe_device *xe)
                }
 
                tile->mem.vram.base = tile_offset;
-
-               /* small bar can limit the visible size.  size accordingly */
-               tile->mem.vram.usable_size = min_t(u64, vram_size, io_size);
+               tile->mem.vram.usable_size = vram_size;
                tile->mem.vram.mapping = xe->mem.vram.mapping + tile_offset;
 
                drm_info(&xe->drm, "VRAM[%u, %u]: %pa, %pa\n", id, tile->id,
@@ -304,7 +297,7 @@ int xe_mmio_probe_vram(struct xe_device *xe)
                available_size += vram_size;
 
                if (total_size > xe->mem.vram.io_size) {
-                       drm_warn(&xe->drm, "VRAM: %pa is larger than resource %pa\n",
+                       drm_info(&xe->drm, "VRAM: %pa is larger than resource %pa\n",
                                 &total_size, &xe->mem.vram.io_size);
                }