aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorGustavo Sousa <gustavo.sousa@intel.com>2025-02-27 17:28:18 -0300
committerGustavo Sousa <gustavo.sousa@intel.com>2025-02-28 11:14:53 -0300
commit2c2e7170a750506ed9e1d28e225b647a6563fb3c (patch)
treea3be670eeb8feeb9b3972688550471c7200fb688 /drivers/gpu
parentdrm/i915/display: Use IP version check for Wa_14020863754 (diff)
downloadlinux-2c2e7170a750506ed9e1d28e225b647a6563fb3c.tar.gz
linux-2c2e7170a750506ed9e1d28e225b647a6563fb3c.zip
drm/i915/audio: Extend Wa_14020863754 to Xe3_LPD
Workaround Wa_14020863754 also applies to Xe3_LPD. Update needs_wa_14020863754() accordingly. Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20250227-xe3lpd-wa-14020863754-v2-2-92b35de1c563@intel.com Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/i915/display/intel_audio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_audio.c b/drivers/gpu/drm/i915/display/intel_audio.c
index 115c30a5ff70..ea935a5d94c8 100644
--- a/drivers/gpu/drm/i915/display/intel_audio.c
+++ b/drivers/gpu/drm/i915/display/intel_audio.c
@@ -190,7 +190,8 @@ static const struct hdmi_aud_ncts hdmi_aud_ncts_36bpp[] = {
*/
static bool needs_wa_14020863754(struct intel_display *display)
{
- return DISPLAY_VERx100(display) == 2000 ||
+ return DISPLAY_VERx100(display) == 3000 ||
+ DISPLAY_VERx100(display) == 2000 ||
DISPLAY_VERx100(display) == 1401;
}