summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_pci.c
diff options
context:
space:
mode:
authorMatt Roper <matthew.d.roper@intel.com>2023-08-18 02:04:12 +0300
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-21 19:40:21 +0300
commit0aef9ff75204485ae6bcc9f7a54f16b3a3536b49 (patch)
tree8dd651b1887d9cc02aff558d5caebe121d67d119 /drivers/gpu/drm/xe/xe_pci.c
parent07d7ba13d80aa9a047ac4fa83f59f161ca5f0453 (diff)
downloadlinux-0aef9ff75204485ae6bcc9f7a54f16b3a3536b49.tar.xz
drm/xe: Stop tracking 4-tile support
The choice of Y-major tiling format (either the legacy "TileY" or the newer "Tile4") is based on graphics IP version (12.50 and beyond have Tile4, earlier platforms have TileY). The tracking in xe was originally added to allow re-using display from i915. However as of i915 commit 4ebf43d0488f ("drm/i915: Eliminate has_4tile feature flag"), the display code determines TileY vs Tile4 itself, so this can be removed from xe. Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Link: https://lore.kernel.org/r/20230817230407.909816-10-matthew.d.roper@intel.com Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_pci.c')
-rw-r--r--drivers/gpu/drm/xe/xe_pci.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c
index 6e31b596683e..32adeda3520c 100644
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@ -77,12 +77,6 @@ struct xe_device_desc {
u8 require_force_probe:1;
u8 is_dgfx:1;
- /*
- * FIXME: Xe doesn't care about presence/lack of 4tile since we can
- * already determine that from the graphics IP version. This flag
- * should eventually move entirely into the display code's own logic.
- */
- u8 has_4tile:1;
u8 has_llc:1;
};
@@ -265,8 +259,7 @@ static const u16 dg2_g12_ids[] = { XE_DG2_G12_IDS(NOP), 0 };
{ XE_SUBPLATFORM_DG2_G11, "G11", dg2_g11_ids }, \
{ XE_SUBPLATFORM_DG2_G12, "G12", dg2_g12_ids }, \
{ } \
- }, \
- .has_4tile = 1
+ }
static const struct xe_device_desc ats_m_desc = {
.graphics = &graphics_xehpg,
@@ -537,7 +530,6 @@ static int xe_info_init(struct xe_device *xe,
xe->info.is_dgfx = desc->is_dgfx;
xe->info.graphics_name = graphics_desc->name;
xe->info.media_name = media_desc ? media_desc->name : "none";
- xe->info.has_4tile = desc->has_4tile;
xe->info.has_llc = desc->has_llc;
xe->info.dma_mask_size = graphics_desc->dma_mask_size;