[PATCH 07/11] drm/xe/xe2hpg: Remove extra allocation of CCS pages for dgfx

Balasubramani Vivekanandan balasubramani.vivekanandan at intel.com
Tue Apr 2 12:47:20 UTC 2024


From: Akshata Jahagirdar <akshata.jahagirdar at intel.com>

In case of discrete platforms of Xe2_HPG, we don't need to handle
copying flat ccs metadata during eviction and restore.  So, remove the
extra allocation of ccs_pages.

Signed-off-by: Akshata Jahagirdar <akshata.jahagirdar at intel.com>
Signed-off-by: Balasubramani Vivekanandan <balasubramani.vivekanandan at intel.com>
---
 drivers/gpu/drm/xe/xe_bo.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 9298546909b5..f710caf5cc79 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2201,6 +2201,9 @@ bool xe_bo_needs_ccs_pages(struct xe_bo *bo)
 {
 	struct xe_device *xe = xe_bo_device(bo);
 
+	if (GRAPHICS_VER(xe) >= 20 && IS_DGFX(xe))
+		return false;
+
 	if (!xe_device_has_flat_ccs(xe) || bo->ttm.type != ttm_bo_type_device)
 		return false;
 
-- 
2.25.1



More information about the Intel-xe mailing list