]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: Intel: Bxtn: Add Broxton PCI ID
authorSenthilnathan Veppur <senthilnathanx.veppur@intel.com>
Fri, 11 Mar 2016 04:42:54 +0000 (10:12 +0530)
committerMark Brown <broonie@kernel.org>
Sat, 12 Mar 2016 06:02:54 +0000 (13:02 +0700)
Broxton is an Intel SoC which sports a DSP and system is quite
like Skylake. So add this ID in Skylake driver

Signed-off-by: Senthilnathan Veppur <senthilnathanx.veppur@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/skylake/skl.c

index 0d38bdb8321b4cb1af1b6884b2a106ce72046f15..ab5e25aaeee38f1284701873946a81d48163fd23 100644 (file)
@@ -742,11 +742,18 @@ static struct sst_acpi_mach sst_skl_devdata[] = {
        {}
 };
 
+static struct sst_acpi_mach sst_bxtp_devdata[] = {
+       { "INT343A", "bxt_alc298s_i2s", "intel/dsp_fw_bxtn.bin", NULL, NULL, NULL },
+};
+
 /* PCI IDs */
 static const struct pci_device_id skl_ids[] = {
        /* Sunrise Point-LP */
        { PCI_DEVICE(0x8086, 0x9d70),
                .driver_data = (unsigned long)&sst_skl_devdata},
+       /* BXT-P */
+       { PCI_DEVICE(0x8086, 0x5a98),
+               .driver_data = (unsigned long)&sst_bxtp_devdata},
        { 0, }
 };
 MODULE_DEVICE_TABLE(pci, skl_ids);