|
@@ -883,6 +883,10 @@ static struct sst_acpi_mach sst_kbl_devdata[] = {
|
|
|
{}
|
|
|
};
|
|
|
|
|
|
+static struct sst_acpi_mach sst_glk_devdata[] = {
|
|
|
+ { "INT343A", "glk_alc298s_i2s", "intel/dsp_fw_glk.bin", NULL, NULL, NULL },
|
|
|
+};
|
|
|
+
|
|
|
/* PCI IDs */
|
|
|
static const struct pci_device_id skl_ids[] = {
|
|
|
/* Sunrise Point-LP */
|
|
@@ -894,6 +898,9 @@ static const struct pci_device_id skl_ids[] = {
|
|
|
/* KBL */
|
|
|
{ PCI_DEVICE(0x8086, 0x9D71),
|
|
|
.driver_data = (unsigned long)&sst_kbl_devdata},
|
|
|
+ /* GLK */
|
|
|
+ { PCI_DEVICE(0x8086, 0x3198),
|
|
|
+ .driver_data = (unsigned long)&sst_glk_devdata},
|
|
|
{ 0, }
|
|
|
};
|
|
|
MODULE_DEVICE_TABLE(pci, skl_ids);
|