From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: "moderated list:SOUND - SOC LAYER / DYNAMIC AUDIO POWER
MANAGEM..." <alsa-devel@alsa-project.org>,
intel-gfx@lists.freedesktop.org, "Takashi Iwai" <tiwai@suse.de>,
"Mark Brown" <broonie@kernel.org>,
"Imre Deak" <imre.deak@intel.com>,
"Rojewski, Cezary" <cezary.rojewski@intel.com>,
"Jani Nikula" <jani.nikula@linux.intel.com>,
"Chris Wilson" <chris@chris-wilson.co.uk>,
"Ville Syrjälä" <ville.syrjala@linux.intel.com>
Subject: Re: [alsa-devel] Timing issues between ALSA and i915 drivers
Date: Thu, 17 Jan 2019 13:53:06 -0600 [thread overview]
Message-ID: <d0fb9eb6-a32a-0757-22ba-012eb2aad44c@linux.intel.com> (raw)
In-Reply-To: <045cfacd-7a8a-af3c-0f82-325b12cf65da@linux.intel.com>
[-- Attachment #1: Type: text/plain, Size: 1987 bytes --]
> I could use some feedback on HDMI audio issues exposed during the 4.21
> merge window. By accident (misleading documentation) we ended up
> enabling the Skylake driver instead of the HDaudio legacy, and broke
> audio on a number of Skylake and ApolloLake devices where the
> HDMI/iDISP codec was not detected (bit 2 not set in the codec_mask).
> Linus' Dell XPS13 9350 was the first to be impacted of course...
>
> After debugging a bit, this issue can be resolved by either
>
> a) compiling both SOUND and DRM as built-ins (y instead of m)
>
> b) moving the calls snd_hdac_i915_init() to the probe function instead
> of the worker queue (code at
> https://github.com/plbossart/sound/commits/fix/skl-hdmi)
>
> Both solutions point to timing issues.
>
> During internal reviews I was alerted to the fact that the suggested
> fix essentially reverts patch ab1b732d53c18 ('ASoC: Intel: Skylake:
> Move i915 registration to worker thread') which was introduced to
> solve DRM lockup issues.
I tried to narrow down the issue further and my current understanding is
that the Skylake driver performs link reset operations without the
display power turned on - which does not look like a very smart thing to
do in hindsight.
In other words, it's not really when snd_hdac_i915_init() is called that
matters as I assumed initially, but more when snd_hdac_display_power()
is invoked. There are two cases where this happens, and for each of them
turning the display power on results in HDMI detection. The attached
diffs split the initialization from the power on, which provides a
better understanding of the issue.
What would be really useful at this point is a confirmation that
snd_hdac_i915_init() cannot be called in the initial probe but does need
to be executed in a work queue. That would really impact the way the
initialization sequence is reworked on the Skylake side as well as
modify the way the SOF driver deals with i915 initialization.
Thanks
-Pierre
[-- Attachment #2: hdmi-links.diff --]
[-- Type: text/x-patch, Size: 2159 bytes --]
diff --git a/sound/soc/intel/skylake/skl.c b/sound/soc/intel/skylake/skl.c
index 60c94836bf5b..56556d06a17f 100644
--- a/sound/soc/intel/skylake/skl.c
+++ b/sound/soc/intel/skylake/skl.c
@@ -767,23 +767,6 @@ static const struct hdac_bus_ops bus_core_ops = {
.get_response = snd_hdac_bus_get_response,
};
-static int skl_i915_init(struct hdac_bus *bus)
-{
- int err;
-
- /*
- * The HDMI codec is in GPU so we need to ensure that it is powered
- * up and ready for probe
- */
- err = snd_hdac_i915_init(bus);
- if (err < 0)
- return err;
-
- snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, true);
-
- return 0;
-}
-
static void skl_probe_work(struct work_struct *work)
{
struct skl *skl = container_of(work, struct skl, probe_work);
@@ -791,12 +774,6 @@ static void skl_probe_work(struct work_struct *work)
struct hdac_ext_link *hlink = NULL;
int err;
- if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI)) {
- err = skl_i915_init(bus);
- if (err < 0)
- return;
- }
-
err = skl_init_chip(bus, true);
if (err < 0) {
dev_err(bus->dev, "Init chip failed with err: %d\n", err);
@@ -899,6 +876,11 @@ static int skl_first_init(struct hdac_bus *bus)
unsigned short gcap;
int cp_streams, pb_streams, start_idx;
+ err = snd_hdac_i915_init(bus);
+ if (err < 0)
+ return err;
+
+
err = pci_request_regions(pci, "Skylake HD audio");
if (err < 0)
return err;
@@ -910,7 +892,10 @@ static int skl_first_init(struct hdac_bus *bus)
return -ENXIO;
}
- snd_hdac_bus_reset_link(bus, true);
+ /* this bus_reset_link is unnecessary, and without the display
+ * power turned on prevents HDMI from being detected
+ */
+ //snd_hdac_bus_reset_link(bus, true);
snd_hdac_bus_parse_capabilities(bus);
@@ -962,7 +947,14 @@ static int skl_first_init(struct hdac_bus *bus)
/* initialize chip */
skl_init_pci(skl);
- return skl_init_chip(bus, true);
+ /* turning the display power here works */
+ snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, true);
+
+ err = skl_init_chip(bus, true);
+
+ /* turning the display power here does not work, HDMI not detected */
+
+ return err;
}
static int skl_probe(struct pci_dev *pci,
[-- Attachment #3: Type: text/plain, Size: 160 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2019-01-17 19:53 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-16 17:48 Timing issues between ALSA and i915 drivers Pierre-Louis Bossart
2019-01-16 19:17 ` Takashi Iwai
2019-01-16 23:10 ` Pierre-Louis Bossart
2019-01-17 0:13 ` [alsa-devel] " Pierre-Louis Bossart
2019-01-17 19:53 ` Pierre-Louis Bossart [this message]
2019-01-17 20:31 ` Takashi Iwai
2019-01-17 20:47 ` Pierre-Louis Bossart
2019-01-18 8:08 ` 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=d0fb9eb6-a32a-0757-22ba-012eb2aad44c@linux.intel.com \
--to=pierre-louis.bossart@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=cezary.rojewski@intel.com \
--cc=chris@chris-wilson.co.uk \
--cc=imre.deak@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@linux.intel.com \
--cc=tiwai@suse.de \
--cc=ville.syrjala@linux.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