drm/xe/rplu: s/ADLP/ALDERLAKE_P
authorAnusha Srivatsa <anusha.srivatsa@intel.com>
Thu, 5 Oct 2023 20:54:47 +0000 (13:54 -0700)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Thu, 21 Dec 2023 16:42:57 +0000 (11:42 -0500)
i915 now uses full names for platforms. So we now have
ALDERLAKE instead of ADL. Extend this to xe driver as well.
This will make it easier for macro magic usages.

v2: Do not make changes to compat-i915-headers/i915_drv.h
file with the rest of the changes (Jani)

Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://lore.kernel.org/r/20231005205450.3177354-3-anusha.srivatsa@intel.com
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
drivers/gpu/drm/xe/xe_pci.c
drivers/gpu/drm/xe/xe_platform_types.h
drivers/gpu/drm/xe/xe_step.c

index fd8d7eddd6f6d2c6fbf0f3f7ec7c75e0847b9f95..2652e7426258ac1b7b97d2a00042d48b8a3bd7a2 100644 (file)
@@ -230,7 +230,7 @@ static const struct xe_device_desc adl_p_desc = {
        .has_llc = 1,
        .require_force_probe = true,
        .subplatforms = (const struct xe_subplatform_desc[]) {
-               { XE_SUBPLATFORM_ADLP_RPLU, "RPLU", adlp_rplu_ids },
+               { XE_SUBPLATFORM_ALDERLAKE_P_RPLU, "RPLU", adlp_rplu_ids },
                {},
        },
 };
index e378a64a0f8637875fe1734b25d9d7f972c697c3..b6fe4342f9f6a7fdba93b6074647d548826dff78 100644 (file)
@@ -27,7 +27,7 @@ enum xe_platform {
 enum xe_subplatform {
        XE_SUBPLATFORM_UNINITIALIZED = 0,
        XE_SUBPLATFORM_NONE,
-       XE_SUBPLATFORM_ADLP_RPLU,
+       XE_SUBPLATFORM_ALDERLAKE_P_RPLU,
        XE_SUBPLATFORM_DG2_G10,
        XE_SUBPLATFORM_DG2_G11,
        XE_SUBPLATFORM_DG2_G12,
index 371cac951e0f4858085e1f0fc56550e7831ad429..903c65405d3a1b5868742e4af917a5c26a9b001c 100644 (file)
@@ -143,7 +143,7 @@ struct xe_step_info xe_step_pre_gmdid_get(struct xe_device *xe)
        } else if (xe->info.platform == XE_ALDERLAKE_N) {
                revids = adln_revids;
                size = ARRAY_SIZE(adln_revids);
-       } else if (xe->info.subplatform == XE_SUBPLATFORM_ADLP_RPLU) {
+       } else if (xe->info.subplatform == XE_SUBPLATFORM_ALDERLAKE_P_RPLU) {
                revids = adlp_rpl_revids;
                size = ARRAY_SIZE(adlp_rpl_revids);
        } else if (xe->info.platform == XE_ALDERLAKE_P) {