Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/migrate: Future-proof compressed PAT check
@ 2024-07-26 17:17 Matt Roper
  2024-07-26 17:23 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Matt Roper @ 2024-07-26 17:17 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.d.roper, Akshata Jahagirdar, Lucas De Marchi

Although all current Xe2 platforms support FlatCCS, we probably
shouldn't assume that will be universally true forever.  In the past
we've had platforms like PVC that didn't support compression, and the
same could show up again at some point in the future.  Future-proof the
migration code by adding an explicit check for FlatCCS support to the
condition that decides whether to use a compressed PAT index for
migration.

While we're at it, we can drop the IS_DGFX check since it's redundant
with the src_is_vram check (only dGPUs have VRAM).

Cc: Akshata Jahagirdar <akshata.jahagirdar@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
 drivers/gpu/drm/xe/xe_migrate.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index c007f68503d4..6f24aaf58252 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -781,7 +781,8 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
 	bool copy_ccs = xe_device_has_flat_ccs(xe) &&
 		xe_bo_needs_ccs_pages(src_bo) && xe_bo_needs_ccs_pages(dst_bo);
 	bool copy_system_ccs = copy_ccs && (!src_is_vram || !dst_is_vram);
-	bool use_comp_pat = GRAPHICS_VER(xe) >= 20 && IS_DGFX(xe) && src_is_vram && !dst_is_vram;
+	bool use_comp_pat = xe_device_has_flat_ccs(xe) &&
+		GRAPHICS_VER(xe) >= 20 && src_is_vram && !dst_is_vram;
 
 	/* Copying CCS between two different BOs is not supported yet. */
 	if (XE_WARN_ON(copy_ccs && src_bo != dst_bo))
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2024-07-29 15:21 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-26 17:17 [PATCH] drm/xe/migrate: Future-proof compressed PAT check Matt Roper
2024-07-26 17:23 ` ✓ CI.Patch_applied: success for " Patchwork
2024-07-26 17:23 ` ✓ CI.checkpatch: " Patchwork
2024-07-26 17:25 ` ✓ CI.KUnit: " Patchwork
2024-07-26 17:26 ` [PATCH] " Jahagirdar, Akshata
2024-07-26 17:40   ` Lucas De Marchi
2024-07-26 17:39 ` ✓ CI.Build: success for " Patchwork
2024-07-26 17:42 ` ✓ CI.Hooks: " Patchwork
2024-07-26 17:44 ` ✓ CI.checksparse: " Patchwork
2024-07-26 18:04 ` ✓ CI.BAT: " Patchwork
2024-07-27  5:13 ` ✗ CI.FULL: failure " Patchwork
2024-07-29 15:21   ` Matt Roper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox