All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/audio: not to set N/M value manually for KBL.
@ 2017-04-01  2:38 Quanxian Wang
  2017-04-01  2:58 ` ✓ Fi.CI.BAT: success for " Patchwork
  2017-04-04 10:54 ` [PATCH] " Jani Nikula
  0 siblings, 2 replies; 9+ messages in thread
From: Quanxian Wang @ 2017-04-01  2:38 UTC (permalink / raw)
  To: intel-gfx

It doesn't work on KBL. Just using automatic N/M.

According to the bspec, when set N/M, should disable
and enable transcoder which attaching DP audio. but there is no
such code to do that.
without this implementation except KBL platforms, seems work well.

Signed-off-by: Quanxian Wang <quanxian.wang@intel.com>
Tested-By: Wang Zhijun<zhijunx.wang@intel.com>
Tested-By: Cui Yueping<yuepingx.cui@intel.com>
---
 drivers/gpu/drm/i915/intel_audio.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/intel_audio.c b/drivers/gpu/drm/i915/intel_audio.c
index 52c207e..0542031 100644
--- a/drivers/gpu/drm/i915/intel_audio.c
+++ b/drivers/gpu/drm/i915/intel_audio.c
@@ -300,7 +300,7 @@ hsw_dp_audio_config_update(struct intel_crtc *intel_crtc, enum port port,
 	tmp &= ~AUD_CONFIG_N_PROG_ENABLE;
 	tmp |= AUD_CONFIG_N_VALUE_INDEX;
 
-	if (nm) {
+	if (!IS_KABYLAKE(dev_priv) && nm) {
 		tmp &= ~AUD_CONFIG_N_MASK;
 		tmp |= AUD_CONFIG_N(nm->n);
 		tmp |= AUD_CONFIG_N_PROG_ENABLE;
@@ -308,6 +308,9 @@ hsw_dp_audio_config_update(struct intel_crtc *intel_crtc, enum port port,
 
 	I915_WRITE(HSW_AUD_CFG(pipe), tmp);
 
+	if (IS_KABYLAKE(dev_priv))
+		return;
+
 	tmp = I915_READ(HSW_AUD_M_CTS_ENABLE(pipe));
 	tmp &= ~AUD_CONFIG_M_MASK;
 	tmp &= ~AUD_M_CTS_M_VALUE_INDEX;
-- 
2.5.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-05-26  1:12 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-01  2:38 [PATCH] drm/i915/audio: not to set N/M value manually for KBL Quanxian Wang
2017-04-01  2:58 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-04-04 10:54 ` [PATCH] " Jani Nikula
2017-04-05  2:20   ` Wang, Quanxian
2017-04-05  2:25     ` Yang, Libin
2017-04-05  2:22   ` Yang, Libin
2017-04-05  2:35     ` Wang, Quanxian
2017-05-17  2:45       ` Wang, Quanxian
2017-05-26  1:12         ` Wang, Quanxian

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.