summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2023-04-10 20:35:17 -0400
committerJordan Justen <jordan.l.justen@intel.com>2023-04-11 02:59:32 -0400
commitd7182fe90dee1a9d87eaef0e8899bd91ea1fe965 (patch)
treec0a1363bae4cfd694743a9d18b6adedb66dbf38a
parent75062fab0639fdfbe2cec402e1cc5532a1c09c7f (diff)
HACK: Remove MTL WA disabling compression on a0-gpui915-set-pat
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r--src/intel/isl/isl_format.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/intel/isl/isl_format.c b/src/intel/isl/isl_format.c
index ee670c8c2bc..a68698224be 100644
--- a/src/intel/isl/isl_format.c
+++ b/src/intel/isl/isl_format.c
@@ -879,8 +879,9 @@ isl_format_supports_ccs_e(const struct intel_device_info *devinfo,
/* Wa_14017353530: Disable compression on MTL until B0 */
if (intel_device_info_is_mtl(devinfo) &&
(intel_device_info_wa_stepping(devinfo) < INTEL_STEPPING_B0 &&
- !debug_get_bool_option("INTEL_MTL_ENABLE_CCS", false)))
- return false;
+ !debug_get_bool_option("INTEL_MTL_ENABLE_CCS", false))) {
+ debug_warn_once("Ignoring MTL A0 workaround and enabling CCS for perf!");
+ }
/* Wa_22011186057: Disable compression on ADL-P A0 */
if (devinfo->platform == INTEL_PLATFORM_ADL && devinfo->gt == 2 && devinfo->revision == 0)