From: Daniel Vetter <daniel@ffwll.ch>
To: Sivakumar Thulasimani <sivakumar.thulasimani@intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>, intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 2/2] drm/i915/audio: do not mess with audio registers if port is invalid
Date: Wed, 6 May 2015 13:11:56 +0200 [thread overview]
Message-ID: <20150506111156.GX30184@phenom.ffwll.local> (raw)
In-Reply-To: <55485628.7070009@intel.com>
On Tue, May 05, 2015 at 11:03:28AM +0530, Sivakumar Thulasimani wrote:
> Reviewed-by: Sivakumar Thulasimani <sivakumar.thulasimani@intel.com>
>
> On 5/4/2015 7:50 PM, Jani Nikula wrote:
> >We should no longer enter the codec enable/disable functions in question
> >with port A anyway, but to err on the safe side, keep the warnings. Just
> >bail out early without messing with the registers.
> >
> >Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Queued for -next, thanks for the patch.
-Daniel
> >---
> > drivers/gpu/drm/i915/intel_audio.c | 20 ++++++++------------
> > 1 file changed, 8 insertions(+), 12 deletions(-)
> >
> >diff --git a/drivers/gpu/drm/i915/intel_audio.c b/drivers/gpu/drm/i915/intel_audio.c
> >index f72e93a45e11..c4312177b0ee 100644
> >--- a/drivers/gpu/drm/i915/intel_audio.c
> >+++ b/drivers/gpu/drm/i915/intel_audio.c
> >@@ -269,6 +269,9 @@ static void ilk_audio_codec_disable(struct intel_encoder *encoder)
> > DRM_DEBUG_KMS("Disable audio codec on port %c, pipe %c\n",
> > port_name(port), pipe_name(pipe));
> >+ if (WARN_ON(port == PORT_A))
> >+ return;
> >+
> > if (HAS_PCH_IBX(dev_priv->dev)) {
> > aud_config = IBX_AUD_CFG(pipe);
> > aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
> >@@ -290,12 +293,7 @@ static void ilk_audio_codec_disable(struct intel_encoder *encoder)
> > tmp |= AUD_CONFIG_N_VALUE_INDEX;
> > I915_WRITE(aud_config, tmp);
> >- if (WARN_ON(!port)) {
> >- eldv = IBX_ELD_VALID(PORT_B) | IBX_ELD_VALID(PORT_C) |
> >- IBX_ELD_VALID(PORT_D);
> >- } else {
> >- eldv = IBX_ELD_VALID(port);
> >- }
> >+ eldv = IBX_ELD_VALID(port);
> > /* Invalidate ELD */
> > tmp = I915_READ(aud_cntrl_st2);
> >@@ -325,6 +323,9 @@ static void ilk_audio_codec_enable(struct drm_connector *connector,
> > DRM_DEBUG_KMS("Enable audio codec on port %c, pipe %c, %u bytes ELD\n",
> > port_name(port), pipe_name(pipe), drm_eld_size(eld));
> >+ if (WARN_ON(port == PORT_A))
> >+ return;
> >+
> > /*
> > * FIXME: We're supposed to wait for vblank here, but we have vblanks
> > * disabled during the mode set. The proper fix would be to push the
> >@@ -349,12 +350,7 @@ static void ilk_audio_codec_enable(struct drm_connector *connector,
> > aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
> > }
> >- if (WARN_ON(!port)) {
> >- eldv = IBX_ELD_VALID(PORT_B) | IBX_ELD_VALID(PORT_C) |
> >- IBX_ELD_VALID(PORT_D);
> >- } else {
> >- eldv = IBX_ELD_VALID(port);
> >- }
> >+ eldv = IBX_ELD_VALID(port);
> > /* Invalidate ELD */
> > tmp = I915_READ(aud_cntrl_st2);
>
> --
> regards,
> Sivakumar
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-05-06 11:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-04 14:20 [PATCH 1/2] drm/i915/dp: there is no audio on port A on non-DDI platforms Jani Nikula
2015-05-04 14:20 ` [PATCH 2/2] drm/i915/audio: do not mess with audio registers if port is invalid Jani Nikula
2015-05-04 20:45 ` shuang.he
2015-05-05 5:33 ` Sivakumar Thulasimani
2015-05-06 11:11 ` Daniel Vetter [this message]
2015-05-05 5:31 ` [PATCH 1/2] drm/i915/dp: there is no audio on port A on non-DDI platforms Sivakumar Thulasimani
2015-05-05 9:09 ` Jani Nikula
2015-05-05 12:18 ` Sivakumar Thulasimani
2015-05-05 13:32 ` Jani Nikula
2015-05-05 13:38 ` Sivakumar Thulasimani
2015-05-05 13:43 ` Sivakumar Thulasimani
2015-05-06 9:30 ` Jani Nikula
2015-05-06 11:11 ` Daniel Vetter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150506111156.GX30184@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
--cc=sivakumar.thulasimani@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox