Commit e6b98db9 authored by Takashi Iwai's avatar Takashi Iwai Committed by Mark Brown

ASoC: Intel: Skylake: Add CFL-S support

It's with CNP, supposed to be equivalent with CNL entry.

Keep the existing declaration style for now, at a later point we may
transition and use PCI_DEVICE_DATA().
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent bb9963b8
...@@ -247,6 +247,14 @@ static const struct skl_dsp_ops dsp_ops[] = { ...@@ -247,6 +247,14 @@ static const struct skl_dsp_ops dsp_ops[] = {
.init_fw = cnl_sst_init_fw, .init_fw = cnl_sst_init_fw,
.cleanup = cnl_sst_dsp_cleanup .cleanup = cnl_sst_dsp_cleanup
}, },
{
.id = 0xa348,
.num_cores = 4,
.loader_ops = bxt_get_loader_ops,
.init = cnl_sst_dsp_init,
.init_fw = cnl_sst_init_fw,
.cleanup = cnl_sst_dsp_cleanup
},
}; };
const struct skl_dsp_ops *skl_get_dsp_ops(int pci_id) const struct skl_dsp_ops *skl_get_dsp_ops(int pci_id)
......
...@@ -1121,6 +1121,9 @@ static const struct pci_device_id skl_ids[] = { ...@@ -1121,6 +1121,9 @@ static const struct pci_device_id skl_ids[] = {
/* CNL */ /* CNL */
{ PCI_DEVICE(0x8086, 0x9dc8), { PCI_DEVICE(0x8086, 0x9dc8),
.driver_data = (unsigned long)&snd_soc_acpi_intel_cnl_machines}, .driver_data = (unsigned long)&snd_soc_acpi_intel_cnl_machines},
/* CFL */
{ PCI_DEVICE(0x8086, 0xa348),
.driver_data = (unsigned long)&snd_soc_acpi_intel_cnl_machines},
{ 0, } { 0, }
}; };
MODULE_DEVICE_TABLE(pci, skl_ids); MODULE_DEVICE_TABLE(pci, skl_ids);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment