On Wed, Aug 15, 2012 at 6:27 AM, Wang, Xingchao <xingchao.wang at intel.com> wrote: > Hi Daniel/Imre, > > This revised version changelog: > - add " Wait for 1 vertical blank" after enable audio output port > - configure pipe related transcoder instead of operate all transcoders blindly Thanks for the explanation. I'd have still a couple of questions inlined: > > Thanks > --xingchao > >> -----Original Message----- >> From: Wang, Xingchao >> Sent: Wednesday, August 15, 2012 11:11 AM >> To: daniel at ffwll.ch; imre.deak at gmail.com >> Cc: intel-gfx at lists.freedesktop.org; przanoni at gmail.com; Wang, Xingchao >> Subject: [PATCH v7 3/4] drm/i915: Haswell HDMI audio initialization >> >> Added new haswell_write_eld() to initialize Haswell HDMI audio registers to >> generate an unsolicited response to the audio controller driver to indicate that >> the controller sequence should start. >> >> Signed-off-by: Wang Xingchao <xingchao.wang at intel.com> >> --- >> drivers/gpu/drm/i915/i915_reg.h | 1 + >> drivers/gpu/drm/i915/intel_display.c | 98 >> +++++++++++++++++++++++++++++++++- >> 2 files changed, 98 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/i915/i915_reg.h >> b/drivers/gpu/drm/i915/i915_reg.h index 55aa10e..08f8b65 100644 >> --- a/drivers/gpu/drm/i915/i915_reg.h >> +++ b/drivers/gpu/drm/i915/i915_reg.h >> @@ -4294,6 +4294,7 @@ >> #define AUD_DIG_CNVT(pipe) _PIPE(pipe, \ >> HSW_AUD_DIG_CNVT_1, \ >> HSW_AUD_DIG_CNVT_2) >> +#define DIP_PORT_SEL_MASK 0x3 >> >> #define HSW_AUD_EDID_DATA_A 0x65050 >> #define HSW_AUD_EDID_DATA_B 0x65150 >> diff --git a/drivers/gpu/drm/i915/intel_display.c >> b/drivers/gpu/drm/i915/intel_display.c >> index 70d30fc..aad0a1b 100644 >> --- a/drivers/gpu/drm/i915/intel_display.c >> +++ b/drivers/gpu/drm/i915/intel_display.c >> @@ -5067,6 +5067,102 @@ static void g4x_write_eld(struct drm_connector >> *connector, >> I915_WRITE(G4X_AUD_CNTL_ST, i); >> } >> >> +static void haswell_write_eld(struct drm_connector *connector, >> + struct drm_crtc *crtc) >> +{ >> + struct drm_i915_private *dev_priv = connector->dev->dev_private; >> + uint8_t *eld = connector->eld; >> + struct drm_device *dev = crtc->dev; >> + uint32_t eldv; >> + uint32_t i; >> + int len; >> + int pipe = to_intel_crtc(crtc)->pipe; >> + int tmp; >> + >> + int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe); >> + int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe); >> + int aud_config = HSW_AUD_CFG(pipe); >> + int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD; >> + >> + >> + DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n"); >> + >> + /* Audio output enable */ >> + DRM_DEBUG_DRIVER("HDMI audio: enable codec\n"); >> + tmp = I915_READ(aud_cntrl_st2); >> + tmp |= (AUDIO_OUTPUT_ENABLE_A | AUDIO_OUTPUT_ENABLE_B | >> AUDIO_OUTPUT_ENABLE_C); The output bits are also transcoder specific, so why don't we enable only the required output? I.e. similarly as you do below tmp |= AUDIO_OUTPUT_ENABLE_A << (pipe * 4);. Otherwise this function will leave also unrelated outputs enabled which is not that nice power management-wise. >> + I915_WRITE(aud_cntrl_st2, tmp); >> + >> + /* Wait for 1 vertical blank */ >> + intel_wait_for_vblank(dev, pipe); >> + >> + /* Set ELD valid state */ >> + tmp = I915_READ(aud_cntrl_st2); >> + DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp); >> + tmp |= (AUDIO_ELD_VALID_A << (pipe * 4)); >> + I915_WRITE(aud_cntrl_st2, tmp); >> + tmp = I915_READ(aud_cntrl_st2); >> + DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp); >> + >> + /* Enable HDMI mode */ >> + tmp = I915_READ(aud_config); >> + DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp); >> + /* clear N_programing_enable and N_value_index */ >> + tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | >> AUD_CONFIG_N_PROG_ENABLE); >> + I915_WRITE(aud_config, tmp); >> + >> + DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe)); >> + >> + i = I915_READ(aud_cntl_st); >> + i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = >> PortB */ >> + if (!i) { >> + DRM_DEBUG_DRIVER("Audio directed to unknown port\n"); >> + /* operate blindly on all ports */ >> + eldv = AUDIO_ELD_VALID_A; >> + eldv |= AUDIO_ELD_VALID_B; >> + eldv |= AUDIO_ELD_VALID_C; >> + } else { >> + DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i); >> + eldv = AUDIO_ELD_VALID_A << ((i - 1) * 4); >> + } Again, if we handle the ELD_VALID bits on a transcoder basis, as above when enabling and disabling it, why are we doing it here differently, on a port basis? This should read then just as above eldv = AUDIO_ELD_VALID_A << (pipe * 4); As a sidenote I guess at the moment due to the bug you mentioned DIP_PORT_SEL will always read 0, hence the else branch never runs and we just enable blindly all valid bits. --Imre