]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
ASoC: Intel: common: DMI remap for rebranded Intel NUC M15 (LAPRC710) laptops
authormosomate <mosomate@gmail.com>
Thu, 8 Feb 2024 16:55:40 +0000 (10:55 -0600)
committerMark Brown <broonie@kernel.org>
Thu, 8 Feb 2024 21:23:19 +0000 (21:23 +0000)
Added DMI quirk to handle the rebranded variants of Intel NUC M15
(LAPRC710) laptops. The DMI matching is based on motherboard
attributes.

Link: https://github.com/thesofproject/linux/issues/4218
Signed-off-by: Máté Mosonyi <mosomate@gmail.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20240208165545.93811-20-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/soundwire/dmi-quirks.c
sound/soc/intel/boards/sof_sdw.c

index 9ebdd0cd0b1cf598b35902541c0997c5934578d3..91ab97a456fa9fe898bcb1f9f496bb0d8152356c 100644 (file)
@@ -130,6 +130,14 @@ static const struct dmi_system_id adr_remap_quirk_table[] = {
                },
                .driver_data = (void *)intel_rooks_county,
        },
+       {
+               /* quirk used for NUC15 LAPRC710 skew */
+               .matches = {
+                       DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
+                       DMI_MATCH(DMI_BOARD_NAME, "LAPRC710"),
+               },
+               .driver_data = (void *)intel_rooks_county,
+       },
        {
                .matches = {
                        DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
index 801cfe9c4dd3b5d900ebe151336cab90d812561e..e4b9f4d1ec06cf103983463a8dda015d1a487657 100644 (file)
@@ -236,6 +236,17 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = {
                                        SOF_SDW_PCH_DMIC |
                                        RT711_JD2_100K),
        },
+       {
+               /* NUC15 LAPRC710 skews */
+               .callback = sof_sdw_quirk_cb,
+               .matches = {
+                       DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
+                       DMI_MATCH(DMI_BOARD_NAME, "LAPRC710"),
+               },
+               .driver_data = (void *)(SOF_SDW_TGL_HDMI |
+                                       SOF_SDW_PCH_DMIC |
+                                       RT711_JD2_100K),
+       },
        /* TigerLake-SDCA devices */
        {
                .callback = sof_sdw_quirk_cb,