diff options
author | Guneshwor Singh <guneshwor.o.singh@intel.com> | 2017-08-02 21:51:20 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-03 11:07:39 +0100 |
commit | 86d7ce3dd717e09a442d35dae3f9c62c03e024d8 (patch) | |
tree | 37becc741214d5e09f904036e97518e859da0962 /sound/soc/intel/skylake/skl.c | |
parent | b003a345dc67c7a1c468ad8ff10b24d7dd12e12c (diff) | |
download | op-kernel-dev-86d7ce3dd717e09a442d35dae3f9c62c03e024d8.zip op-kernel-dev-86d7ce3dd717e09a442d35dae3f9c62c03e024d8.tar.gz |
ASoC: Intel: cnl: add pci id for cnl
Enable cnl by adding its pci id in skl_ids[].
Signed-off-by: Guneshwor Singh <guneshwor.o.singh@intel.com>
Acked-By: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl.c')
-rw-r--r-- | sound/soc/intel/skylake/skl.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sound/soc/intel/skylake/skl.c b/sound/soc/intel/skylake/skl.c index ab65151..e612a40 100644 --- a/sound/soc/intel/skylake/skl.c +++ b/sound/soc/intel/skylake/skl.c @@ -996,6 +996,14 @@ static struct sst_acpi_mach sst_glk_devdata[] = { }, }; +static const struct sst_acpi_mach sst_cnl_devdata[] = { + { + .id = "INT34C2", + .drv_name = "cnl_rt274", + .fw_filename = "intel/dsp_fw_cnl.bin", + }, +}; + /* PCI IDs */ static const struct pci_device_id skl_ids[] = { /* Sunrise Point-LP */ @@ -1010,6 +1018,9 @@ static const struct pci_device_id skl_ids[] = { /* GLK */ { PCI_DEVICE(0x8086, 0x3198), .driver_data = (unsigned long)&sst_glk_devdata}, + /* CNL */ + { PCI_DEVICE(0x8086, 0x9dc8), + .driver_data = (unsigned long)&sst_cnl_devdata}, { 0, } }; MODULE_DEVICE_TABLE(pci, skl_ids); |