Commit cafa39b6 authored by Brent Lu's avatar Brent Lu Committed by Mark Brown

ASoC: soc-acpi: add comp_ids field for machine driver matching

A machine driver needs to be enumerated by more than one ACPI HID if
it supports second headphone driver (i.e. rt5682 and rt5682s).
However, the id field in snd_soc_acpi_mach structure could contain
only one HID. By adding a 'comp_ids' field which can contain several
HIDs, we can enumerate a machine driver by multiple ACPI HIDs.
Signed-off-by: default avatarBrent Lu <brent.lu@intel.com>
Link: https://lore.kernel.org/r/20211029171409.611600-2-brent.lu@intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6c8552eb
...@@ -129,6 +129,8 @@ struct snd_soc_acpi_link_adr { ...@@ -129,6 +129,8 @@ struct snd_soc_acpi_link_adr {
* all firmware/topology related fields. * all firmware/topology related fields.
* *
* @id: ACPI ID (usually the codec's) used to find a matching machine driver. * @id: ACPI ID (usually the codec's) used to find a matching machine driver.
* @comp_ids: list of compatible audio codecs using the same machine driver,
* firmware and topology
* @link_mask: describes required board layout, e.g. for SoundWire. * @link_mask: describes required board layout, e.g. for SoundWire.
* @links: array of link _ADR descriptors, null terminated. * @links: array of link _ADR descriptors, null terminated.
* @drv_name: machine driver name * @drv_name: machine driver name
...@@ -146,6 +148,7 @@ struct snd_soc_acpi_link_adr { ...@@ -146,6 +148,7 @@ struct snd_soc_acpi_link_adr {
/* Descriptor for SST ASoC machine driver */ /* Descriptor for SST ASoC machine driver */
struct snd_soc_acpi_mach { struct snd_soc_acpi_mach {
const u8 id[ACPI_ID_LEN]; const u8 id[ACPI_ID_LEN];
const struct snd_soc_acpi_codecs *comp_ids;
const u32 link_mask; const u32 link_mask;
const struct snd_soc_acpi_link_adr *links; const struct snd_soc_acpi_link_adr *links;
const char *drv_name; const char *drv_name;
......
...@@ -8,14 +8,34 @@ ...@@ -8,14 +8,34 @@
#include <linux/module.h> #include <linux/module.h>
#include <sound/soc-acpi.h> #include <sound/soc-acpi.h>
static bool snd_soc_acpi_id_present(struct snd_soc_acpi_mach *machine)
{
const struct snd_soc_acpi_codecs *comp_ids = machine->comp_ids;
int i;
if (machine->id[0]) {
if (acpi_dev_present(machine->id, NULL, -1))
return true;
}
if (comp_ids) {
for (i = 0; i < comp_ids->num_codecs; i++) {
if (acpi_dev_present(comp_ids->codecs[i], NULL, -1))
return true;
}
}
return false;
}
struct snd_soc_acpi_mach * struct snd_soc_acpi_mach *
snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines) snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines)
{ {
struct snd_soc_acpi_mach *mach; struct snd_soc_acpi_mach *mach;
struct snd_soc_acpi_mach *mach_alt; struct snd_soc_acpi_mach *mach_alt;
for (mach = machines; mach->id[0]; mach++) { for (mach = machines; mach->id[0] || mach->comp_ids; mach++) {
if (acpi_dev_present(mach->id, NULL, -1)) { if (snd_soc_acpi_id_present(mach)) {
if (mach->machine_quirk) { if (mach->machine_quirk) {
mach_alt = mach->machine_quirk(mach); mach_alt = mach->machine_quirk(mach);
if (!mach_alt) if (!mach_alt)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment