]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
soundwire: dmi-quirks: add remapping for Intel 'Rooks County' NUC M15
authorEugene Huang <eugene.huang99@gmail.com>
Tue, 14 Mar 2023 09:06:18 +0000 (17:06 +0800)
committerStefan Bader <stefan.bader@canonical.com>
Wed, 9 Aug 2023 09:37:59 +0000 (11:37 +0200)
BugLink: https://bugs.launchpad.net/bugs/2028808
[ Upstream commit 01b33e284ca28cc977bdcfb23be2c719f2139175 ]

Same DSDT problem as the HP Omen 16-k0005TX, except rt1316 amp is on
link2.

Link: https://github.com/thesofproject/linux/issues/4088
Signed-off-by: Eugene Huang <eugene.huang99@gmail.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com>
Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Link: https://lore.kernel.org/r/20230314090618.498716-1-yung-chuan.liao@linux.intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
drivers/soundwire/dmi-quirks.c

index 7969881f126dc1d03fe428dae9c98aa8ce74920d..58ea013fa918a105edf1d002bc44e6fce815f1e6 100644 (file)
@@ -73,6 +73,23 @@ static const struct adr_remap hp_omen_16[] = {
        {}
 };
 
+/*
+ * Intel NUC M15 LAPRC510 and LAPRC710
+ */
+static const struct adr_remap intel_rooks_county[] = {
+       /* rt711-sdca on link0 */
+       {
+               0x000020025d071100ull,
+               0x000030025d071101ull
+       },
+       /* rt1316-sdca on link2 */
+       {
+               0x000120025d071100ull,
+               0x000230025d131601ull
+       },
+       {}
+};
+
 static const struct dmi_system_id adr_remap_quirk_table[] = {
        /* TGL devices */
        {
@@ -98,6 +115,14 @@ static const struct dmi_system_id adr_remap_quirk_table[] = {
                },
                .driver_data = (void *)intel_tgl_bios,
        },
+       {
+               /* quirk used for NUC15 'Rooks County' LAPRC510 and LAPRC710 skews */
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Intel(R) Client Systems"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "LAPRC"),
+               },
+               .driver_data = (void *)intel_rooks_county,
+       },
        {
                .matches = {
                        DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),