From: David Henningsson <david.henningsson@canonical.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: hui.wang@canonical.com, mengdong.lin@intel.com,
alsa-devel@alsa-project.org
Subject: Re: [PATCH] ALSA: hda - Fix Skylake codec timeouts
Date: Wed, 15 Jul 2015 10:07:35 +0200 [thread overview]
Message-ID: <55A614C7.5030201@canonical.com> (raw)
In-Reply-To: <s5hegk94zq0.wl-tiwai@suse.de>
On 2015-07-15 10:00, Takashi Iwai wrote:
> On Wed, 15 Jul 2015 09:39:35 +0200,
> David Henningsson wrote:
>>
>> When the controller is powered up but the HDMI codec is powered down
>> on Skylake, the power well is turned off. When the codec is then
>> powered up again, we need to poke the codec a little extra to make
>> sure it wakes up. Otherwise we'll get sad "no response from codec"
>> messages and broken audio.
>>
>> Signed-off-by: David Henningsson <david.henningsson@canonical.com>
>> Tested-by: Woodrow Shen <woodrow.shen@canonical.com>
>> ---
>>
>> * It would good to have an ack from Intel on this patch, since they
>> have better hardware knowledge than I.
>>
>> * Also I haven't really kept track of all recent reorganisation of the
>> hda driver so I'm not totally sure how many kernels back (if any)
>> that this applies to
>>
>> sound/pci/hda/hda_intel.c | 10 +++++++++-
>> 1 file changed, 9 insertions(+), 1 deletion(-)
>>
>> diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
>> index ca151b4..872e9a7 100644
>> --- a/sound/pci/hda/hda_intel.c
>> +++ b/sound/pci/hda/hda_intel.c
>> @@ -567,9 +567,17 @@ static int azx_position_check(struct azx *chip, struct azx_dev *azx_dev)
>> /* Enable/disable i915 display power for the link */
>> static int azx_intel_link_power(struct azx *chip, bool enable)
>> {
>> + int err;
>> struct hdac_bus *bus = azx_bus(chip);
>>
>> - return snd_hdac_display_power(bus, enable);
>> + err = snd_hdac_display_power(bus, enable);
>> + if (err < 0)
>> + return err;
>> + if (enable && (chip->driver_caps & AZX_DCAPS_I915_POWERWELL)) {
>> + snd_hdac_set_codec_wakeup(bus, true);
>> + snd_hdac_set_codec_wakeup(bus, false);
>> + }
>
> Wouldn't it be better to put in snd_hadc_display_power() itself?
I don't mind either way. Mengdong, do you have an opinion?
>
> --- a/sound/hda/hdac_i915.c
> +++ b/sound/hda/hdac_i915.c
> @@ -56,8 +56,11 @@ int snd_hdac_display_power(struct hdac_bus *bus, bool enable)
> enable ? "enable" : "disable");
>
> if (enable) {
> - if (!bus->i915_power_refcount++)
> + if (!bus->i915_power_refcount++) {
> acomp->ops->get_power(acomp->dev);
> + snd_hdac_set_codec_wakeup(bus, true);
> + snd_hdac_set_codec_wakeup(bus, false);
> + }
> } else {
> WARN_ON(!bus->i915_power_refcount);
> if (!--bus->i915_power_refcount)
>
> Takashi
>
--
David Henningsson, Canonical Ltd.
https://launchpad.net/~diwic
next prev parent reply other threads:[~2015-07-15 8:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-15 7:39 [PATCH] ALSA: hda - Fix Skylake codec timeouts David Henningsson
2015-07-15 8:00 ` Takashi Iwai
2015-07-15 8:07 ` David Henningsson [this message]
2015-07-15 8:17 ` Takashi Iwai
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=55A614C7.5030201@canonical.com \
--to=david.henningsson@canonical.com \
--cc=alsa-devel@alsa-project.org \
--cc=hui.wang@canonical.com \
--cc=mengdong.lin@intel.com \
--cc=tiwai@suse.de \
/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.