intel/isl: Disable CCS on MTL

MTL requires some ccs/aux-map changes from Jianxun Zhang, which are
still in progress. So, for now we disable ccs on MTL.

Rework:
 * Drop change in isl_surf_supports_ccs (Nanley)

Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20046>
This commit is contained in:
Jordan Justen
2022-02-24 21:17:57 -08:00
parent cbae305258
commit 4db33adf9d
+3
View File
@@ -876,6 +876,9 @@ bool
isl_format_supports_ccs_e(const struct intel_device_info *devinfo,
enum isl_format format)
{
if (intel_device_info_is_mtl(devinfo))
return false;
/* Wa_22011186057: Disable compression on ADL-P A0 */
if (devinfo->platform == INTEL_PLATFORM_ADL && devinfo->gt == 2 && devinfo->revision == 0)
return false;