[Intel-xe] [PATCH v7 3/3] drm/xe: fully turn on small-bar support
Matthew Auld
matthew.auld at intel.com
Fri Jul 14 14:48:18 UTC 2023
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 at intel.com>
Cc: Gwan-gyeong Mun <gwan-gyeong.mun at intel.com>
Cc: Lucas De Marchi <lucas.demarchi at intel.com>
Cc: Michael J. Ruhl <michael.j.ruhl at intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst at linux.intel.com>
Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun at intel.com>
---
drivers/gpu/drm/xe/xe_mmio.c | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_mmio.c b/drivers/gpu/drm/xe/xe_mmio.c
index 779f0a18a815..fe19534c4ed2 100644
--- a/drivers/gpu/drm/xe/xe_mmio.c
+++ b/drivers/gpu/drm/xe/xe_mmio.c
@@ -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);
}
--
2.41.0
More information about the Intel-xe
mailing list