All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: Ramalingam C <ramalingam.c@intel.com>, intel-gfx@lists.freedesktop.org
Cc: "Jakobsson, Patrik" <patrik.jakobsson@intel.com>
Subject: Re: [PATCH 2/2] drm/i915/dsi: Add audio reference in dsi encoder
Date: Fri, 19 Feb 2016 11:23:54 +0200	[thread overview]
Message-ID: <877fi1xdcl.fsf@intel.com> (raw)
In-Reply-To: <87zivi15av.fsf@intel.com>

On Wed, 03 Feb 2016, Jani Nikula <jani.nikula@intel.com> wrote:
> On Wed, 03 Feb 2016, Ramalingam C <ramalingam.c@intel.com> wrote:
>> On Wednesday 03 February 2016 02:27 PM, Jani Nikula wrote:
>>> On Tue, 02 Feb 2016, Ramalingam C <ramalingam.c@intel.com> wrote:
>>>> From: "Kumar, Mahesh" <mahesh1.kumar@intel.com>
>>>>
>>>> We are re-using Mipi encoder enabled by GOP driver, but not incrementing
>>>> reference count for Audio Power domain, so audio was not working. This
>>>> patch increments the reference count during DSI init and Adds get/put in
>>>> DSI enable/disable functions as well so audio power domain will be on
>>>> when mipi is in use.
>>> Confused. DSI does not have HD audio. The codec enable calls are no-ops
>>> because DSI does not have EDID and therefore no ELD either. Hopefully
>>> the codec disable calls don't mess up things by accident. We don't need
>>> or want those calls in DSI.
>>>
>>> IMO the DSI encoder should not get/put the audio power domain either,
>>> because DSI simply does not use that.
>>>
>>> The question remains, *what* audio was failing? DP/HDMI audio?
>> Since HDMI and DP has the audio we are handling the audio power well.
>> For MIPI since we dont have the audio with encoder, we need not get the 
>> power well on.
>> In such scenario, power well use count is not incrementing (Means no one 
>> is enabling
>> the powerwell for board audio) and hence Board audio is not working.
>>>
>>> We may have problems in the power domain setup code, failing to take DSI
>>> into account or something. But I don't think this is the place to fix
>>> it.
>> Possibly this is not the place. But Either DSI code or audio code has to 
>> handle it,
>> to make the board audio to work on BXT. Share your view on that.
>
> I'm not aware of what board audio is, but based on your description I
> understand it has nothing to do with HDMI, DP, DSI - or our driver in
> general. Correct me if I'm wrong.
>
> Which driver handles board audio?
>
> Sounds like the right approach is to have that driver use the i915
> component API to get/put the power well.

I did not get a reply to my question here. Is there an upstream driver
for the audio? Does using the component API sound like the right thing
to do?

If it isn't clear, this patch is not acceptable.

BR,
Jani.

>
> See sound/hda/hdac_i915.c for how HDA binds to the component API, and
> how it calls the ->get_power() and ->put_power() hooks as
> needed. Without that, HDA would lose all the registers in audio power
> well during mode set. I expect the same for board audio.
>
> The modeset for HDMI/DP need to get/put the power wells just because
> those encoders do the codec enable/disable sequence, actually touching
> registers in the power well.
>
> BR,
> Jani.
>
>
>
>>
>>>
>>> Cc Imre and Patrik.
>>>
>>>
>>> BR,
>>> Jani.
>>>
>>>
>>>
>>>
>>>> Signed-off-by: Kumar, Mahesh <mahesh1.kumar@intel.com>
>>>> Signed-off-by: Uma Shankar <uma.shankar@intel.com>
>>>> Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
>>>> ---
>>>>   drivers/gpu/drm/i915/intel_dsi.c |   13 +++++++++++++
>>>>   1 file changed, 13 insertions(+)
>>>>
>>>> diff --git a/drivers/gpu/drm/i915/intel_dsi.c b/drivers/gpu/drm/i915/intel_dsi.c
>>>> index 91cef35..8b43ef6 100644
>>>> --- a/drivers/gpu/drm/i915/intel_dsi.c
>>>> +++ b/drivers/gpu/drm/i915/intel_dsi.c
>>>> @@ -461,6 +461,9 @@ static void intel_dsi_enable(struct intel_encoder *encoder)
>>>>   		intel_dsi_port_enable(encoder);
>>>>   	}
>>>>   
>>>> +	intel_display_power_get(dev_priv, POWER_DOMAIN_AUDIO);
>>>> +	intel_audio_codec_enable(encoder);
>>>> +
>>>>   	intel_panel_enable_backlight(intel_dsi->attached_connector);
>>>>   }
>>>>   
>>>> @@ -531,11 +534,16 @@ static void intel_dsi_enable_nop(struct intel_encoder *encoder)
>>>>   
>>>>   static void intel_dsi_pre_disable(struct intel_encoder *encoder)
>>>>   {
>>>> +	struct drm_device *dev = encoder->base.dev;
>>>> +	struct drm_i915_private *dev_priv = dev->dev_private;
>>>>   	struct intel_dsi *intel_dsi = enc_to_intel_dsi(&encoder->base);
>>>>   	enum port port;
>>>>   
>>>>   	DRM_DEBUG_KMS("\n");
>>>>   
>>>> +	intel_audio_codec_disable(encoder);
>>>> +	intel_display_power_put(dev_priv, POWER_DOMAIN_AUDIO);
>>>> +
>>>>   	intel_panel_disable_backlight(intel_dsi->attached_connector);
>>>>   
>>>>   	if (is_vid_mode(intel_dsi)) {
>>>> @@ -1236,6 +1244,11 @@ void intel_dsi_init(struct drm_device *dev)
>>>>   	intel_panel_init(&intel_connector->panel, fixed_mode, NULL);
>>>>   	intel_panel_setup_backlight(connector, INVALID_PIPE);
>>>>   
>>>> +	/* Enable Audio Power to fix use-count state machine */
>>>> +	port = (dev_priv->vbt.dsi.port == DVO_PORT_MIPIA) ? PORT_A : PORT_C;
>>>> +	if (I915_READ(BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE)
>>>> +		intel_display_power_get(dev_priv, POWER_DOMAIN_AUDIO);
>>>> +
>>>>   	return;
>>>>   
>>>>   err:

-- 
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2016-02-19  9:24 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-02 17:54 [PATCH 1/2] drm/i915/BXT: Fixed COS blanking issue Ramalingam C
2016-02-02 17:54 ` [PATCH 2/2] drm/i915/dsi: Add audio reference in dsi encoder Ramalingam C
2016-02-03  1:52   ` Thulasimani, Sivakumar
2016-02-03  8:57   ` Jani Nikula
2016-02-03  9:24     ` Ramalingam C
2016-02-03 10:01       ` Jani Nikula
2016-02-19  9:23         ` Jani Nikula [this message]
2016-02-19  9:31           ` Ramalingam C
2016-02-02 18:23 ` [PATCH 1/2] drm/i915/BXT: Fixed COS blanking issue kbuild test robot
2016-02-02 18:38 ` kbuild test robot
2016-02-03  1:49 ` Thulasimani, Sivakumar
2016-02-03 12:20   ` Ramalingam C
2016-02-03  8:02 ` ✗ Fi.CI.BAT: failure for series starting with [1/2] " Patchwork
2016-02-03  9:44 ` [PATCH 1/2] " Jani Nikula
2016-02-03 12:18   ` Ramalingam C
2016-02-03 12:27   ` [PATCH 1/2] drm/i915: Using the bpp value wrt the pixel format Ramalingam C
2016-02-03 12:27     ` [PATCH 2/2] drm/i915/BXT: Fixed COS blanking issue Ramalingam C
2016-02-04 13:54       ` Jani Nikula
2016-02-11 14:49         ` Ramalingam C
2016-02-11 14:59           ` [PATCH 2/3 V3] " Ramalingam C
2016-02-19  9:16             ` Jani Nikula
2016-02-04 13:13     ` [PATCH 1/2] drm/i915: Using the bpp value wrt the pixel format Jani Nikula
2016-02-11 15:00       ` Ramalingam C
2016-02-11 15:03         ` [PATCH 1/3 V2] " Ramalingam C
2016-02-11 15:05           ` [PATCH 3/3] drm/i915: Updating the CPU_TRANSCODER for BXT DSI Ramalingam C
2016-02-19  9:07             ` Jani Nikula
2016-02-23 14:31               ` Ramalingam C
2016-02-19  8:50           ` [PATCH 1/3 V2] drm/i915: Using the bpp value wrt the pixel format Jani Nikula
2016-02-19 12:50             ` Mika Kahola
2016-02-19 13:08               ` Jani Nikula
2016-02-15 16:28   ` [PATCH 1/2] drm/i915/BXT: Fixed COS blanking issue Daniel Vetter
2016-02-03 13:12 ` ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915: Using the bpp value wrt the pixel format (rev2) Patchwork
2016-02-15 16:24 ` [PATCH 1/2] drm/i915/BXT: Fixed COS blanking issue 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=877fi1xdcl.fsf@intel.com \
    --to=jani.nikula@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=patrik.jakobsson@intel.com \
    --cc=ramalingam.c@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 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.