diff mbox series

[v2,2/2] drm/i915/audio: Extend Wa_14020863754 to Xe3_LPD

Message ID 20250227-xe3lpd-wa-14020863754-v2-2-92b35de1c563@intel.com (mailing list archive)
State New
Headers show
Series drm/i915/audio: Extend Wa_14020863754 to Xe3_LPD | expand

Commit Message

Gustavo Sousa Feb. 27, 2025, 8:28 p.m. UTC
Workaround Wa_14020863754 also applies to Xe3_LPD. Update
needs_wa_14020863754() accordingly.

Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
 drivers/gpu/drm/i915/display/intel_audio.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Matt Roper Feb. 27, 2025, 10:09 p.m. UTC | #1
On Thu, Feb 27, 2025 at 05:28:18PM -0300, Gustavo Sousa wrote:
> Workaround Wa_14020863754 also applies to Xe3_LPD. Update
> needs_wa_14020863754() accordingly.
> 
> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>

Reviewed-by: Matt Roper <matthew.d.roper@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_audio.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_audio.c b/drivers/gpu/drm/i915/display/intel_audio.c
> index 115c30a5ff70063850e45ab40527d1c17d0173b4..ea935a5d94c87202a68f84b28b0152835f47fe73 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;
>  }
>  
> 
> -- 
> 2.48.1
>
diff mbox series

Patch

diff --git a/drivers/gpu/drm/i915/display/intel_audio.c b/drivers/gpu/drm/i915/display/intel_audio.c
index 115c30a5ff70063850e45ab40527d1c17d0173b4..ea935a5d94c87202a68f84b28b0152835f47fe73 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;
 }