diff options
author | Jarkko Nikula <jarkko.nikula@linux.intel.com> | 2014-02-24 10:27:01 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-24 23:44:41 -0500 |
commit | e0298612147f668b55644e230340237b7c1a991d (patch) | |
tree | aff9cf77cf66c866e9191f84b75ccb479d366219 | |
parent | 6439c8ad1edcca1051936de9f624c5ab9ebe03f7 (diff) |
ASoC: Intel: Add Baytrail SST and byt-rt5640 machine driver probing
Add Baytrail SST descriptor with the byt-rt5640 machine driver to sst-acpi
loader.
Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Acked-by: Liam Girdwood <liam.r.girdwood@intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/intel/sst-acpi.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sound/soc/intel/sst-acpi.c b/sound/soc/intel/sst-acpi.c index c7e36c9ee52f..0bb43169e146 100644 --- a/sound/soc/intel/sst-acpi.c +++ b/sound/soc/intel/sst-acpi.c | |||
@@ -243,9 +243,26 @@ static struct sst_acpi_desc sst_acpi_broadwell_desc = { | |||
243 | .dma_size = SST_LPT_DSP_DMA_SIZE, | 243 | .dma_size = SST_LPT_DSP_DMA_SIZE, |
244 | }; | 244 | }; |
245 | 245 | ||
246 | static struct sst_acpi_mach baytrail_machines[] = { | ||
247 | { "10EC5640", "byt-rt5640", "intel/fw_sst_0f28.bin-i2s_master" }, | ||
248 | {} | ||
249 | }; | ||
250 | |||
251 | static struct sst_acpi_desc sst_acpi_baytrail_desc = { | ||
252 | .drv_name = "baytrail-pcm-audio", | ||
253 | .machines = baytrail_machines, | ||
254 | .resindex_lpe_base = 0, | ||
255 | .resindex_pcicfg_base = 1, | ||
256 | .resindex_fw_base = 2, | ||
257 | .irqindex_host_ipc = 5, | ||
258 | .sst_id = SST_DEV_ID_BYT, | ||
259 | .resindex_dma_base = -1, | ||
260 | }; | ||
261 | |||
246 | static struct acpi_device_id sst_acpi_match[] = { | 262 | static struct acpi_device_id sst_acpi_match[] = { |
247 | { "INT33C8", (unsigned long)&sst_acpi_haswell_desc }, | 263 | { "INT33C8", (unsigned long)&sst_acpi_haswell_desc }, |
248 | { "INT3438", (unsigned long)&sst_acpi_broadwell_desc }, | 264 | { "INT3438", (unsigned long)&sst_acpi_broadwell_desc }, |
265 | { "80860F28", (unsigned long)&sst_acpi_baytrail_desc }, | ||
249 | { } | 266 | { } |
250 | }; | 267 | }; |
251 | MODULE_DEVICE_TABLE(acpi, sst_acpi_match); | 268 | MODULE_DEVICE_TABLE(acpi, sst_acpi_match); |