From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: Cezary Rojewski <cezary.rojewski@intel.com>,
Filip Kaczmarski <filip.kaczmarski@intel.com>,
Chris Chiu <chiu@endlessm.com>,
alsa-devel@alsa-project.org, Daniel Drake <drake@endlessm.com>,
liam.r.girdwood@linux.intel.com, vkoul@kernel.org,
broonie@kernel.org, Michal Wasko <michal.wasko@intel.com>,
Gustaw Lewandowski <gustaw.lewandowski@intel.com>
Subject: Re: [PATCH 1/2] ALSA: HD-Audio: SKL+: abort probe if DSP is present and Skylake driver selected
Date: Mon, 10 Dec 2018 10:12:04 -0600 [thread overview]
Message-ID: <b3beabcc-66ca-3454-c075-afd9451cc8a1@linux.intel.com> (raw)
In-Reply-To: <s5hefapmkml.wl-tiwai@suse.de>
On 12/10/18 10:06 AM, Takashi Iwai wrote:
> On Mon, 10 Dec 2018 17:05:00 +0100,
> Takashi Iwai wrote:
>> On Mon, 10 Dec 2018 16:57:49 +0100,
>> Pierre-Louis Bossart wrote:
>>>
>>> On 12/10/18 9:08 AM, Takashi Iwai wrote:
>>>> On Mon, 10 Dec 2018 15:31:08 +0100,
>>>> Pierre-Louis Bossart wrote:
>>>>> On 12/8/18 1:56 AM, Takashi Iwai wrote:
>>>>>> On Sat, 08 Dec 2018 01:00:38 +0100,
>>>>>> Pierre-Louis Bossart wrote:
>>>>>>> Now that the SST/Skylake driver supports per platform selectors, we
>>>>>>> can add logic to automatically select the right driver.
>>>>>>>
>>>>>>> If the Skylake driver is selected, and the DSP is enable, the legacy
>>>>>>> HDaudio driver aborts the probe. This will result in a single driver
>>>>>>> probing and remove the need for modprobe blacklists.
>>>>>>>
>>>>>>> Follow-up patches will add a module parameter to bypass the logic if
>>>>>>> this automatic detection fails, or if the Skylake driver is unable to
>>>>>>> actually support the platform (firmware authentication, missing
>>>>>>> topology file, hardware issue, etc).
>>>>>>>
>>>>>>> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
>>>>>>> ---
>>>>>>> sound/pci/hda/Kconfig | 46 ++++++++++++++++++++++++++++++++++
>>>>>>> sound/pci/hda/hda_controller.h | 2 +-
>>>>>>> sound/pci/hda/hda_intel.c | 34 +++++++++++++++++++------
>>>>>>> sound/soc/intel/Kconfig | 6 +++++
>>>>>>> 4 files changed, 80 insertions(+), 8 deletions(-)
>>>>>>>
>>>>>>> diff --git a/sound/pci/hda/Kconfig b/sound/pci/hda/Kconfig
>>>>>>> index 4235907b7858..634b7fe6a936 100644
>>>>>>> --- a/sound/pci/hda/Kconfig
>>>>>>> +++ b/sound/pci/hda/Kconfig
>>>>>>> @@ -226,6 +226,52 @@ config SND_HDA_POWER_SAVE_DEFAULT
>>>>>>> The default time-out value in seconds for HD-audio automatic
>>>>>>> power-save mode. 0 means to disable the power-save mode.
>>>>>>> +if SND_HDA_INTEL
>>>>>>> +
>>>>>>> +config SND_HDA_INTEL_DISABLE_SKL
>>>>>>> + bool
>>>>>>> + help
>>>>>>> + This option disables HD-audio legacy for
>>>>>>> + Skylake machines
>>>>>> I'm not sure whether we need the selection of this disablement for
>>>>>> each model. Distros would choose these unlikely, and individual users
>>>>>> don't have to select multiple of them but only for their machine's
>>>>>> model. So, in the end, the choice would be either yes or no.
>>>>> Ah yes, maybe I wasn't clear. This wasn't intended to be selected by
>>>>> the user, but selected when when the SND_SOC_INTEL_KBL or
>>>>> SND_SOC_SOF_CNL options are set. See the conditions below.
>>>>>
>>>>> The main idea what to only deal with the conflict resolution when we
>>>>> indeed have a conflict. I also introduced this option on the
>>>>> sound/pci/hda side so that SOF can use the same mechanisms, i.e. it's
>>>>> the legacy driver doesn't need to know if the conflict happens with
>>>>> the SST/Skylake or SOF driver.
>>>> OK, that makes sense.
>>>>
>>>> But then better to rephrase the help texts there for avoiding
>>>> confusion. Currently it sounds as if the kconfig always disables the
>>>> support of the given chipset. But the actual behavior is to disable
>>>> the binding with the legacy driver *only if* the PCI device class is
>>>> declared for Intel DSP.
>>> ok, will respin the help text.
>>>
>>> I was wondering if my email client ate your answers, was is the only
>>> change you wanted? In reply to the cover letter you mentioned "some
>>> comments" but I only see this one that needs an update, and no
>>> comments for the initial series of Skylake-specific patches.
>> Maybe you missed my comments for the second and later hunks of
>> patch#2? It was about some dev_warn() and dev_err() usages, which I
>> suggested to degrade to dev_info().
Ah yes, sorry. I knew I was missing something.
> Oh, BTW, did the fallback mechanism work properly with your patches on
> the actual machines?
>
> At the last time I tried on SKL, the fallback failed by some reason,
> the driver core didn't try to load and bind two drivers.
I tested on two platforms, one WHL with DSP and one without (Skylake HP
device), and the 3 values and didn't see any errors. lspci -vvv reports
the two drivers registered but only the one I wanted as 'in use'.
I'll run more experiments on KBL and APL NUCs.
>
>
> Takashi
next prev parent reply other threads:[~2018-12-10 16:12 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-08 0:00 [PATCH 0/2] ALSA: HDAudio: enable dynamic selection between legacy and Skylake drivers Pierre-Louis Bossart
2018-12-08 0:00 ` [PATCH 1/2] ALSA: HD-Audio: SKL+: abort probe if DSP is present and Skylake driver selected Pierre-Louis Bossart
2018-12-08 7:56 ` Takashi Iwai
2018-12-10 14:31 ` Pierre-Louis Bossart
2018-12-10 15:08 ` Takashi Iwai
2018-12-10 15:57 ` Pierre-Louis Bossart
2018-12-10 16:05 ` Takashi Iwai
2018-12-10 16:06 ` Takashi Iwai
2018-12-10 16:12 ` Pierre-Louis Bossart [this message]
2018-12-08 0:00 ` [PATCH 2/2] ALSA: HD-Audio: SKL+: force HDaudio legacy or SKL+ driver selection Pierre-Louis Bossart
2018-12-08 7:49 ` Takashi Iwai
2018-12-10 14:55 ` Pierre-Louis Bossart
2018-12-08 7:58 ` [PATCH 0/2] ALSA: HDAudio: enable dynamic selection between legacy and Skylake drivers 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=b3beabcc-66ca-3454-c075-afd9451cc8a1@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=chiu@endlessm.com \
--cc=drake@endlessm.com \
--cc=filip.kaczmarski@intel.com \
--cc=gustaw.lewandowski@intel.com \
--cc=liam.r.girdwood@linux.intel.com \
--cc=michal.wasko@intel.com \
--cc=tiwai@suse.de \
--cc=vkoul@kernel.org \
/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.