From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Brent Lu <brent.lu@intel.com>, alsa-devel@alsa-project.org
Cc: "balamurugan . c" <balamurugan.c@intel.com>,
Cezary Rojewski <cezary.rojewski@intel.com>,
Chao Song <chao.song@linux.intel.com>,
Kai Vehmanen <kai.vehmanen@linux.intel.com>,
Rander Wang <rander.wang@intel.com>,
Bard Liao <yung-chuan.liao@linux.intel.com>,
Takashi Iwai <tiwai@suse.com>,
Gongjun Song <gongjun.song@intel.com>,
linux-kernel@vger.kernel.org,
Liam Girdwood <liam.r.girdwood@linux.intel.com>,
Mac Chiang <mac.chiang@intel.com>,
Mark Brown <broonie@kernel.org>,
Muralidhar Reddy <muralidhar.reddy@intel.com>,
Ranjani Sridharan <ranjani.sridharan@linux.intel.com>,
Ajye Huang <ajye.huang@gmail.com>,
Peter Ujfalusi <peter.ujfalusi@linux.intel.com>,
Vamshi Krishna <vamshi.krishna.gopal@intel.com>,
Yong Zhi <yong.zhi@intel.com>
Subject: Re: [PATCH 2/2] ASoC: Intel: sof_rt5682: quirk auto detection
Date: Wed, 26 Oct 2022 15:34:50 -0500 [thread overview]
Message-ID: <6916c126-c710-330a-ffcd-50dd3cdc47d3@linux.intel.com> (raw)
In-Reply-To: <20221026071409.3235144-3-brent.lu@intel.com>
On 10/26/22 02:14, Brent Lu wrote:
> To get rid of increasing board_ids array with similar quirks for every
> new platform, we implement a special board config 'sof_rt5682_auto' to
> compose quirk value at runtime. It detects SoC and amplifier type to
> determine the quirk value.
>
> Signed-off-by: Brent Lu <brent.lu@intel.com>
> ---
> sound/soc/intel/boards/sof_rt5682.c | 173 +++++++-----------
> .../intel/common/soc-acpi-intel-adl-match.c | 12 +-
> .../intel/common/soc-acpi-intel-jsl-match.c | 6 +-
> .../intel/common/soc-acpi-intel-tgl-match.c | 6 +-
> 4 files changed, 77 insertions(+), 120 deletions(-)
>
> diff --git a/sound/soc/intel/boards/sof_rt5682.c b/sound/soc/intel/boards/sof_rt5682.c
> index 2358be208c1f..2dfccbaae53c 100644
> --- a/sound/soc/intel/boards/sof_rt5682.c
> +++ b/sound/soc/intel/boards/sof_rt5682.c
> @@ -60,6 +60,7 @@
> #define SOF_MAX98390_SPEAKER_AMP_PRESENT BIT(24)
> #define SOF_MAX98390_TWEETER_SPEAKER_PRESENT BIT(25)
> #define SOF_RT1019_SPEAKER_AMP_PRESENT BIT(26)
> +#define SOF_RT5682_AUTO_DETECT BIT(27)
>
>
> /* Default: MCLK on, MCLK 19.2M, SSP0 */
> @@ -838,6 +839,65 @@ static struct snd_soc_dai_link *sof_card_dai_links_create(struct device *dev,
> return NULL;
> }
>
> +static const struct {
> + const u8 id[ACPI_ID_LEN];
> + unsigned long quirk;
> +} spk_quirk_map[] = {
> + {.id = "10EC1011", .quirk = SOF_RT1011_SPEAKER_AMP_PRESENT},
> + {.id = "10EC1015", .quirk = SOF_RT1015_SPEAKER_AMP_PRESENT},
> + {.id = "RTL1015", .quirk = SOF_RT1015P_SPEAKER_AMP_PRESENT},
> + {.id = "RTL1019", .quirk = SOF_RT1019_SPEAKER_AMP_PRESENT},
> + {.id = "MX98357A", .quirk = 0},
> + {.id = "MX98360A", .quirk = SOF_MAX98360A_SPEAKER_AMP_PRESENT},
> + {.id = "MX98373", .quirk = SOF_MAX98373_SPEAKER_AMP_PRESENT},
> + {.id = "MX98390", .quirk = SOF_MAX98390_SPEAKER_AMP_PRESENT},
> +};
> +
> +static unsigned long sof_audio_auto_detect(struct device *dev)
> +{
> + unsigned long quirk = 0;
> + int i;
> +
> + for (i = 0; i < ARRAY_SIZE(spk_quirk_map); i++) {
> + if (!acpi_dev_present(spk_quirk_map[i].id, NULL, -1))
> + continue;
> +
> + dev_dbg(dev, "%s detected\n", spk_quirk_map[i].id);
> + quirk |= spk_quirk_map[i].quirk;
> + quirk |= SOF_SPEAKER_AMP_PRESENT;
> + break;
> + }
> +
> + if (soc_intel_is_jsl()) {
> + quirk |= SOF_RT5682_MCLK_EN |
> + SOF_RT5682_MCLK_24MHZ |
> + SOF_RT5682_NUM_HDMIDEV(3) |
> + SOF_RT5682_SSP_CODEC(0);
> +
> + if (quirk & SOF_SPEAKER_AMP_PRESENT)
> + quirk |= SOF_RT5682_SSP_AMP(1);
> + } else if (soc_intel_is_tgl()) {
> + quirk |= SOF_RT5682_MCLK_EN |
> + SOF_RT5682_NUM_HDMIDEV(4) |
> + SOF_RT5682_SSP_CODEC(0);
> +
> + if (quirk & SOF_SPEAKER_AMP_PRESENT)
> + quirk |= SOF_RT5682_SSP_AMP(1);
This is a bit confusing: this quirk does not work for Volteer
{
.callback = sof_rt5682_quirk_cb,
.matches = {
DMI_MATCH(DMI_PRODUCT_FAMILY, "Google_Volteer"),
DMI_MATCH(DMI_OEM_STRING, "AUDIO-MAX98373_ALC5682I_I2S_UP4"),
},
.driver_data = (void *)(SOF_RT5682_MCLK_EN |
SOF_RT5682_SSP_CODEC(0) |
SOF_SPEAKER_AMP_PRESENT |
SOF_MAX98373_SPEAKER_AMP_PRESENT |
SOF_RT5682_SSP_AMP(2) |
SOF_RT5682_NUM_HDMIDEV(4)),
},
Same for Brya and all usages of SSP_AMP(2)
> - {
> - .name = "adl_rt1019_rt5682s",
> - .driver_data = (kernel_ulong_t)(SOF_RT5682_MCLK_EN |
> - SOF_RT5682_SSP_CODEC(0) |
> - SOF_RT5682S_HEADPHONE_CODEC_PRESENT |
and HEADPHONE_CODEC_PRESENT is not handled either.
> - SOF_SPEAKER_AMP_PRESENT |
> - SOF_RT1019_SPEAKER_AMP_PRESENT |
> - SOF_RT5682_SSP_AMP(1) |
> - SOF_RT5682_NUM_HDMIDEV(4)),
> - },
Overall I doubt that the SOC alone can tell you what the quirk is.
Maybe it's a default to avoid repeats of the same baseline
configuration, but there's not much else that can be infer from an SOC
definition in light of the creativity of our hardware friends who
routinely swap interfaces.
next prev parent reply other threads:[~2022-10-26 20:42 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-26 7:14 [PATCH 0/2] ASoC: Intel: sof_rt5682: quirk auto detection Brent Lu
2022-10-26 7:14 ` [PATCH 1/2] ASoC: Intel: add helpers to detect SoCs Brent Lu
2022-10-26 7:14 ` [PATCH 2/2] ASoC: Intel: sof_rt5682: quirk auto detection Brent Lu
2022-10-26 20:34 ` Pierre-Louis Bossart [this message]
2022-10-27 0:13 ` Lu, Brent
2022-10-27 1:30 ` Pierre-Louis Bossart
2022-10-27 4:33 ` Lu, Brent
2022-10-27 13:36 ` Mark Brown
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=6916c126-c710-330a-ffcd-50dd3cdc47d3@linux.intel.com \
--to=pierre-louis.bossart@linux.intel.com \
--cc=ajye.huang@gmail.com \
--cc=alsa-devel@alsa-project.org \
--cc=balamurugan.c@intel.com \
--cc=brent.lu@intel.com \
--cc=broonie@kernel.org \
--cc=cezary.rojewski@intel.com \
--cc=chao.song@linux.intel.com \
--cc=gongjun.song@intel.com \
--cc=kai.vehmanen@linux.intel.com \
--cc=liam.r.girdwood@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mac.chiang@intel.com \
--cc=muralidhar.reddy@intel.com \
--cc=peter.ujfalusi@linux.intel.com \
--cc=rander.wang@intel.com \
--cc=ranjani.sridharan@linux.intel.com \
--cc=tiwai@suse.com \
--cc=vamshi.krishna.gopal@intel.com \
--cc=yong.zhi@intel.com \
--cc=yung-chuan.liao@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