intel/isl: Disable CCS on MTL until B0 (Wa_14017353530)

Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
Reviewed-by: Jianxun Zhang <jianxun.zhang@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20322>
This commit is contained in:
Jordan Justen 2022-12-01 15:25:17 -05:00
parent 6e33423a6f
commit 5df50292d6

View file

@ -876,7 +876,8 @@ bool
isl_format_supports_ccs_e(const struct intel_device_info *devinfo,
enum isl_format format)
{
if (intel_device_info_is_mtl(devinfo))
/* Wa_14017353530: Disable compression on MTL until B0 */
if (intel_device_info_is_mtl(devinfo) && devinfo->revision < 4)
return false;
/* Wa_22011186057: Disable compression on ADL-P A0 */