drm/xe/guc: toggle paging engine support for NVL-S+

NVL-S with latest GuC should be the first platform combo to
support the special GUC_PAGING_CLASS feature.

v2:
  - Update with the final GuC version
v3:
  - Split VF vs PF versioning. Which is recommendation from GuC side.

Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Link: https://patch.msgid.link/20260626111520.487997-22-matthew.auld@intel.com
This commit is contained in:
Matthew Auld
2026-06-26 12:15:31 +01:00
parent 85b42488f7
commit ed5a093c2f

View File

@@ -1873,8 +1873,8 @@ bool xe_guc_has_paging_engine(struct xe_guc *guc)
if (IS_SRIOV_VF(xe))
return xe_gt_sriov_vf_paging_engines(gt);
/* TODO: Have some way to query this from the GuC? */
return false;
return xe->info.platform >= XE_NOVALAKE_S &&
GUC_FIRMWARE_VER_AT_LEAST(guc, 70, 69, 0);
}
/**