blob: aa3532ba14349d005541a9b9ed08fab16e2e6bfb [file] [log] [blame]
Pierre-Louis Bossarte149ca22020-05-01 09:58:50 -05001// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
Liam Girdwooda2268932019-04-12 11:09:00 -05002//
3// This file is provided under a dual BSD/GPLv2 license. When using or
4// redistributing this file, you may do so under either license.
5//
6// Copyright(c) 2018 Intel Corporation. All rights reserved.
7//
8// Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9//
10
11#include <linux/firmware.h>
Pierre-Louis Bossart46207ca2020-01-07 10:08:39 -060012#include <linux/dmi.h>
Liam Girdwooda2268932019-04-12 11:09:00 -050013#include <linux/module.h>
14#include <linux/pci.h>
15#include <linux/pm_runtime.h>
Jaroslav Kysela82d9d542019-10-22 19:43:12 +020016#include <sound/intel-dsp-config.h>
Liam Girdwooda2268932019-04-12 11:09:00 -050017#include <sound/soc-acpi.h>
18#include <sound/soc-acpi-intel-match.h>
19#include <sound/sof.h>
20#include "ops.h"
21
22/* platform specific devices */
23#include "intel/shim.h"
24#include "intel/hda.h"
25
26static char *fw_path;
27module_param(fw_path, charp, 0444);
28MODULE_PARM_DESC(fw_path, "alternate path for SOF firmware.");
29
30static char *tplg_path;
31module_param(tplg_path, charp, 0444);
32MODULE_PARM_DESC(tplg_path, "alternate path for SOF topology.");
33
Pierre-Louis Bossart8b160dc2019-10-08 11:44:38 -050034static int sof_pci_debug;
35module_param_named(sof_pci_debug, sof_pci_debug, int, 0444);
36MODULE_PARM_DESC(sof_pci_debug, "SOF PCI debug options (0x0 all off)");
37
38#define SOF_PCI_DISABLE_PM_RUNTIME BIT(0)
39
Pierre-Louis Bossart46207ca2020-01-07 10:08:39 -060040static const struct dmi_system_id community_key_platforms[] = {
41 {
42 .ident = "Up Squared",
43 .matches = {
44 DMI_MATCH(DMI_SYS_VENDOR, "AAEON"),
45 DMI_MATCH(DMI_BOARD_NAME, "UP-APL01"),
46 }
47 },
48 {
49 .ident = "Google Chromebooks",
50 .matches = {
51 DMI_MATCH(DMI_SYS_VENDOR, "Google"),
52 }
53 },
54 {},
55};
56
Liam Girdwooda2268932019-04-12 11:09:00 -050057#if IS_ENABLED(CONFIG_SND_SOC_SOF_APOLLOLAKE)
58static const struct sof_dev_desc bxt_desc = {
59 .machines = snd_soc_acpi_intel_bxt_machines,
60 .resindex_lpe_base = 0,
61 .resindex_pcicfg_base = -1,
62 .resindex_imr_base = -1,
63 .irqindex_host_ipc = -1,
64 .resindex_dma_base = -1,
65 .chip_info = &apl_chip_info,
66 .default_fw_path = "intel/sof",
67 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -060068 .default_fw_filename = "sof-apl.ri",
Liam Girdwooda2268932019-04-12 11:09:00 -050069 .nocodec_tplg_filename = "sof-apl-nocodec.tplg",
70 .ops = &sof_apl_ops,
Liam Girdwooda2268932019-04-12 11:09:00 -050071};
72#endif
73
74#if IS_ENABLED(CONFIG_SND_SOC_SOF_GEMINILAKE)
75static const struct sof_dev_desc glk_desc = {
76 .machines = snd_soc_acpi_intel_glk_machines,
77 .resindex_lpe_base = 0,
78 .resindex_pcicfg_base = -1,
79 .resindex_imr_base = -1,
80 .irqindex_host_ipc = -1,
81 .resindex_dma_base = -1,
82 .chip_info = &apl_chip_info,
83 .default_fw_path = "intel/sof",
84 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -060085 .default_fw_filename = "sof-glk.ri",
Liam Girdwooda2268932019-04-12 11:09:00 -050086 .nocodec_tplg_filename = "sof-glk-nocodec.tplg",
87 .ops = &sof_apl_ops,
Liam Girdwooda2268932019-04-12 11:09:00 -050088};
89#endif
90
91#if IS_ENABLED(CONFIG_SND_SOC_SOF_MERRIFIELD)
92static struct snd_soc_acpi_mach sof_tng_machines[] = {
93 {
94 .id = "INT343A",
95 .drv_name = "edison",
96 .sof_fw_filename = "sof-byt.ri",
97 .sof_tplg_filename = "sof-byt.tplg",
98 },
99 {}
100};
101
102static const struct sof_dev_desc tng_desc = {
103 .machines = sof_tng_machines,
104 .resindex_lpe_base = 3, /* IRAM, but subtract IRAM offset */
105 .resindex_pcicfg_base = -1,
106 .resindex_imr_base = 0,
107 .irqindex_host_ipc = -1,
108 .resindex_dma_base = -1,
109 .chip_info = &tng_chip_info,
110 .default_fw_path = "intel/sof",
111 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -0600112 .default_fw_filename = "sof-byt.ri",
Liam Girdwooda2268932019-04-12 11:09:00 -0500113 .nocodec_tplg_filename = "sof-byt.tplg",
114 .ops = &sof_tng_ops,
Liam Girdwooda2268932019-04-12 11:09:00 -0500115};
116#endif
117
118#if IS_ENABLED(CONFIG_SND_SOC_SOF_CANNONLAKE)
119static const struct sof_dev_desc cnl_desc = {
120 .machines = snd_soc_acpi_intel_cnl_machines,
Pierre-Louis Bossart5732c0f2020-01-10 16:25:30 -0600121 .alt_machines = snd_soc_acpi_intel_cnl_sdw_machines,
Liam Girdwooda2268932019-04-12 11:09:00 -0500122 .resindex_lpe_base = 0,
123 .resindex_pcicfg_base = -1,
124 .resindex_imr_base = -1,
125 .irqindex_host_ipc = -1,
126 .resindex_dma_base = -1,
127 .chip_info = &cnl_chip_info,
128 .default_fw_path = "intel/sof",
129 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -0600130 .default_fw_filename = "sof-cnl.ri",
Liam Girdwooda2268932019-04-12 11:09:00 -0500131 .nocodec_tplg_filename = "sof-cnl-nocodec.tplg",
132 .ops = &sof_cnl_ops,
Liam Girdwooda2268932019-04-12 11:09:00 -0500133};
134#endif
135
136#if IS_ENABLED(CONFIG_SND_SOC_SOF_COFFEELAKE)
137static const struct sof_dev_desc cfl_desc = {
Liam Girdwood653c28a2019-11-11 16:29:00 -0600138 .machines = snd_soc_acpi_intel_cfl_machines,
Pierre-Louis Bossart5732c0f2020-01-10 16:25:30 -0600139 .alt_machines = snd_soc_acpi_intel_cfl_sdw_machines,
Liam Girdwooda2268932019-04-12 11:09:00 -0500140 .resindex_lpe_base = 0,
141 .resindex_pcicfg_base = -1,
142 .resindex_imr_base = -1,
143 .irqindex_host_ipc = -1,
144 .resindex_dma_base = -1,
145 .chip_info = &cnl_chip_info,
146 .default_fw_path = "intel/sof",
147 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -0600148 .default_fw_filename = "sof-cfl.ri",
Liam Girdwooda2268932019-04-12 11:09:00 -0500149 .nocodec_tplg_filename = "sof-cnl-nocodec.tplg",
150 .ops = &sof_cnl_ops,
Liam Girdwooda2268932019-04-12 11:09:00 -0500151};
152#endif
153
Pierre-Louis Bossart42286682020-06-17 11:47:53 -0500154#if IS_ENABLED(CONFIG_SND_SOC_SOF_COMETLAKE)
Evan Green927ce5c2019-05-10 15:39:28 -0700155static const struct sof_dev_desc cml_desc = {
Liam Girdwood653c28a2019-11-11 16:29:00 -0600156 .machines = snd_soc_acpi_intel_cml_machines,
Pierre-Louis Bossart5732c0f2020-01-10 16:25:30 -0600157 .alt_machines = snd_soc_acpi_intel_cml_sdw_machines,
Evan Green927ce5c2019-05-10 15:39:28 -0700158 .resindex_lpe_base = 0,
159 .resindex_pcicfg_base = -1,
160 .resindex_imr_base = -1,
161 .irqindex_host_ipc = -1,
162 .resindex_dma_base = -1,
163 .chip_info = &cnl_chip_info,
164 .default_fw_path = "intel/sof",
165 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -0600166 .default_fw_filename = "sof-cml.ri",
Evan Green927ce5c2019-05-10 15:39:28 -0700167 .nocodec_tplg_filename = "sof-cnl-nocodec.tplg",
168 .ops = &sof_cnl_ops,
Evan Green927ce5c2019-05-10 15:39:28 -0700169};
170#endif
171
Liam Girdwooda2268932019-04-12 11:09:00 -0500172#if IS_ENABLED(CONFIG_SND_SOC_SOF_ICELAKE)
173static const struct sof_dev_desc icl_desc = {
174 .machines = snd_soc_acpi_intel_icl_machines,
Pierre-Louis Bossart5732c0f2020-01-10 16:25:30 -0600175 .alt_machines = snd_soc_acpi_intel_icl_sdw_machines,
Liam Girdwooda2268932019-04-12 11:09:00 -0500176 .resindex_lpe_base = 0,
177 .resindex_pcicfg_base = -1,
178 .resindex_imr_base = -1,
179 .irqindex_host_ipc = -1,
180 .resindex_dma_base = -1,
Zhu Yingjiang630be962019-05-09 15:10:27 -0500181 .chip_info = &icl_chip_info,
Liam Girdwooda2268932019-04-12 11:09:00 -0500182 .default_fw_path = "intel/sof",
183 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -0600184 .default_fw_filename = "sof-icl.ri",
Liam Girdwooda2268932019-04-12 11:09:00 -0500185 .nocodec_tplg_filename = "sof-icl-nocodec.tplg",
186 .ops = &sof_cnl_ops,
Liam Girdwooda2268932019-04-12 11:09:00 -0500187};
188#endif
189
Pan Xiuli1205c812019-08-15 10:57:47 -0500190#if IS_ENABLED(CONFIG_SND_SOC_SOF_TIGERLAKE)
191static const struct sof_dev_desc tgl_desc = {
192 .machines = snd_soc_acpi_intel_tgl_machines,
Pierre-Louis Bossart5732c0f2020-01-10 16:25:30 -0600193 .alt_machines = snd_soc_acpi_intel_tgl_sdw_machines,
Pan Xiuli1205c812019-08-15 10:57:47 -0500194 .resindex_lpe_base = 0,
195 .resindex_pcicfg_base = -1,
196 .resindex_imr_base = -1,
197 .irqindex_host_ipc = -1,
198 .resindex_dma_base = -1,
199 .chip_info = &tgl_chip_info,
200 .default_fw_path = "intel/sof",
201 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -0600202 .default_fw_filename = "sof-tgl.ri",
Pan Xiuli1205c812019-08-15 10:57:47 -0500203 .nocodec_tplg_filename = "sof-tgl-nocodec.tplg",
204 .ops = &sof_cnl_ops,
Pan Xiuli1205c812019-08-15 10:57:47 -0500205};
206#endif
207
Pan Xiuli617326902019-08-15 10:57:49 -0500208#if IS_ENABLED(CONFIG_SND_SOC_SOF_ELKHARTLAKE)
209static const struct sof_dev_desc ehl_desc = {
210 .machines = snd_soc_acpi_intel_ehl_machines,
211 .resindex_lpe_base = 0,
212 .resindex_pcicfg_base = -1,
213 .resindex_imr_base = -1,
214 .irqindex_host_ipc = -1,
215 .resindex_dma_base = -1,
216 .chip_info = &ehl_chip_info,
217 .default_fw_path = "intel/sof",
218 .default_tplg_path = "intel/sof-tplg",
Ranjani Sridharan03eec9b2019-12-04 15:15:50 -0600219 .default_fw_filename = "sof-ehl.ri",
Pan Xiuli617326902019-08-15 10:57:49 -0500220 .nocodec_tplg_filename = "sof-ehl-nocodec.tplg",
221 .ops = &sof_cnl_ops,
Pan Xiuli617326902019-08-15 10:57:49 -0500222};
223#endif
224
Pan Xiuli6fd99032019-10-22 14:47:05 -0500225#if IS_ENABLED(CONFIG_SND_SOC_SOF_JASPERLAKE)
226static const struct sof_dev_desc jsl_desc = {
227 .machines = snd_soc_acpi_intel_jsl_machines,
228 .resindex_lpe_base = 0,
229 .resindex_pcicfg_base = -1,
230 .resindex_imr_base = -1,
231 .irqindex_host_ipc = -1,
232 .resindex_dma_base = -1,
233 .chip_info = &jsl_chip_info,
234 .default_fw_path = "intel/sof",
235 .default_tplg_path = "intel/sof-tplg",
Pan Xiulie3b9f5f2020-01-24 15:36:23 -0600236 .default_fw_filename = "sof-jsl.ri",
Pan Xiuli6fd99032019-10-22 14:47:05 -0500237 .nocodec_tplg_filename = "sof-jsl-nocodec.tplg",
238 .ops = &sof_cnl_ops,
Pan Xiuli6fd99032019-10-22 14:47:05 -0500239};
240#endif
241
Liam Girdwooda2268932019-04-12 11:09:00 -0500242static const struct dev_pm_ops sof_pci_pm = {
Keyon Jie6d407a32019-10-25 17:41:22 -0500243 .prepare = snd_sof_prepare,
244 .complete = snd_sof_complete,
Liam Girdwooda2268932019-04-12 11:09:00 -0500245 SET_SYSTEM_SLEEP_PM_OPS(snd_sof_suspend, snd_sof_resume)
246 SET_RUNTIME_PM_OPS(snd_sof_runtime_suspend, snd_sof_runtime_resume,
Kai Vehmanen62fde972019-07-02 16:24:27 +0300247 snd_sof_runtime_idle)
Liam Girdwooda2268932019-04-12 11:09:00 -0500248};
249
250static void sof_pci_probe_complete(struct device *dev)
251{
252 dev_dbg(dev, "Completing SOF PCI probe");
253
Pierre-Louis Bossart8b160dc2019-10-08 11:44:38 -0500254 if (sof_pci_debug & SOF_PCI_DISABLE_PM_RUNTIME)
255 return;
256
Liam Girdwooda2268932019-04-12 11:09:00 -0500257 /* allow runtime_pm */
258 pm_runtime_set_autosuspend_delay(dev, SND_SOF_SUSPEND_DELAY_MS);
259 pm_runtime_use_autosuspend(dev);
260
261 /*
262 * runtime pm for pci device is "forbidden" by default.
263 * so call pm_runtime_allow() to enable it.
264 */
265 pm_runtime_allow(dev);
266
Pan Xiulif1b1b9b2019-07-22 09:13:42 -0500267 /* mark last_busy for pm_runtime to make sure not suspend immediately */
268 pm_runtime_mark_last_busy(dev);
269
Liam Girdwooda2268932019-04-12 11:09:00 -0500270 /* follow recommendation in pci-driver.c to decrement usage counter */
271 pm_runtime_put_noidle(dev);
272}
273
274static int sof_pci_probe(struct pci_dev *pci,
275 const struct pci_device_id *pci_id)
276{
277 struct device *dev = &pci->dev;
278 const struct sof_dev_desc *desc =
279 (const struct sof_dev_desc *)pci_id->driver_data;
Liam Girdwooda2268932019-04-12 11:09:00 -0500280 struct snd_sof_pdata *sof_pdata;
281 const struct snd_sof_dsp_ops *ops;
282 int ret;
283
Jaroslav Kysela82d9d542019-10-22 19:43:12 +0200284 ret = snd_intel_dsp_driver_probe(pci);
285 if (ret != SND_INTEL_DSP_DRIVER_ANY &&
286 ret != SND_INTEL_DSP_DRIVER_SOF)
287 return -ENODEV;
288
Liam Girdwooda2268932019-04-12 11:09:00 -0500289 dev_dbg(&pci->dev, "PCI DSP detected");
290
291 /* get ops for platform */
292 ops = desc->ops;
293 if (!ops) {
294 dev_err(dev, "error: no matching PCI descriptor ops\n");
295 return -ENODEV;
296 }
297
298 sof_pdata = devm_kzalloc(dev, sizeof(*sof_pdata), GFP_KERNEL);
299 if (!sof_pdata)
300 return -ENOMEM;
301
302 ret = pcim_enable_device(pci);
303 if (ret < 0)
304 return ret;
305
306 ret = pci_request_regions(pci, "Audio DSP");
307 if (ret < 0)
308 return ret;
309
Liam Girdwooda2268932019-04-12 11:09:00 -0500310 sof_pdata->name = pci_name(pci);
Liam Girdwooda2268932019-04-12 11:09:00 -0500311 sof_pdata->desc = (struct sof_dev_desc *)pci_id->driver_data;
312 sof_pdata->dev = dev;
Daniel Baluta285880a2019-12-04 15:15:53 -0600313 sof_pdata->fw_filename = desc->default_fw_filename;
Liam Girdwooda2268932019-04-12 11:09:00 -0500314
Pierre-Louis Bossart46207ca2020-01-07 10:08:39 -0600315 /*
316 * for platforms using the SOF community key, change the
317 * default path automatically to pick the right files from the
318 * linux-firmware tree. This can be overridden with the
319 * fw_path kernel parameter, e.g. for developers.
320 */
321
Liam Girdwooda2268932019-04-12 11:09:00 -0500322 /* alternate fw and tplg filenames ? */
Pierre-Louis Bossart46207ca2020-01-07 10:08:39 -0600323 if (fw_path) {
Liam Girdwooda2268932019-04-12 11:09:00 -0500324 sof_pdata->fw_filename_prefix = fw_path;
Pierre-Louis Bossart46207ca2020-01-07 10:08:39 -0600325
326 dev_dbg(dev,
327 "Module parameter used, changed fw path to %s\n",
328 sof_pdata->fw_filename_prefix);
329
330 } else if (dmi_check_system(community_key_platforms)) {
331 sof_pdata->fw_filename_prefix =
332 devm_kasprintf(dev, GFP_KERNEL, "%s/%s",
333 sof_pdata->desc->default_fw_path,
334 "community");
335
336 dev_dbg(dev,
337 "Platform uses community key, changed fw path to %s\n",
338 sof_pdata->fw_filename_prefix);
339 } else {
Liam Girdwooda2268932019-04-12 11:09:00 -0500340 sof_pdata->fw_filename_prefix =
341 sof_pdata->desc->default_fw_path;
Pierre-Louis Bossart46207ca2020-01-07 10:08:39 -0600342 }
Liam Girdwooda2268932019-04-12 11:09:00 -0500343
344 if (tplg_path)
345 sof_pdata->tplg_filename_prefix = tplg_path;
346 else
347 sof_pdata->tplg_filename_prefix =
348 sof_pdata->desc->default_tplg_path;
349
350#if IS_ENABLED(CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE)
351 /* set callback to enable runtime_pm */
352 sof_pdata->sof_probe_complete = sof_pci_probe_complete;
353#endif
354 /* call sof helper for DSP hardware probe */
355 ret = snd_sof_device_probe(dev, sof_pdata);
356 if (ret) {
357 dev_err(dev, "error: failed to probe DSP hardware!\n");
358 goto release_regions;
359 }
360
361#if !IS_ENABLED(CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE)
362 sof_pci_probe_complete(dev);
363#endif
364
365 return ret;
366
367release_regions:
368 pci_release_regions(pci);
369
370 return ret;
371}
372
373static void sof_pci_remove(struct pci_dev *pci)
374{
375 /* call sof helper for DSP hardware remove */
376 snd_sof_device_remove(&pci->dev);
377
378 /* follow recommendation in pci-driver.c to increment usage counter */
Pierre-Louis Bossart8b160dc2019-10-08 11:44:38 -0500379 if (!(sof_pci_debug & SOF_PCI_DISABLE_PM_RUNTIME))
380 pm_runtime_get_noresume(&pci->dev);
Liam Girdwooda2268932019-04-12 11:09:00 -0500381
382 /* release pci regions and disable device */
383 pci_release_regions(pci);
384}
385
386/* PCI IDs */
387static const struct pci_device_id sof_pci_ids[] = {
388#if IS_ENABLED(CONFIG_SND_SOC_SOF_MERRIFIELD)
389 { PCI_DEVICE(0x8086, 0x119a),
390 .driver_data = (unsigned long)&tng_desc},
391#endif
392#if IS_ENABLED(CONFIG_SND_SOC_SOF_APOLLOLAKE)
393 /* BXT-P & Apollolake */
394 { PCI_DEVICE(0x8086, 0x5a98),
395 .driver_data = (unsigned long)&bxt_desc},
396 { PCI_DEVICE(0x8086, 0x1a98),
397 .driver_data = (unsigned long)&bxt_desc},
398#endif
399#if IS_ENABLED(CONFIG_SND_SOC_SOF_GEMINILAKE)
400 { PCI_DEVICE(0x8086, 0x3198),
401 .driver_data = (unsigned long)&glk_desc},
402#endif
403#if IS_ENABLED(CONFIG_SND_SOC_SOF_CANNONLAKE)
404 { PCI_DEVICE(0x8086, 0x9dc8),
405 .driver_data = (unsigned long)&cnl_desc},
406#endif
407#if IS_ENABLED(CONFIG_SND_SOC_SOF_COFFEELAKE)
408 { PCI_DEVICE(0x8086, 0xa348),
409 .driver_data = (unsigned long)&cfl_desc},
410#endif
Liam Girdwooda2268932019-04-12 11:09:00 -0500411#if IS_ENABLED(CONFIG_SND_SOC_SOF_ICELAKE)
Pierre-Louis Bossartc8d2e2b2020-06-17 11:47:55 -0500412 { PCI_DEVICE(0x8086, 0x34C8), /* ICL-LP */
Liam Girdwooda2268932019-04-12 11:09:00 -0500413 .driver_data = (unsigned long)&icl_desc},
Pierre-Louis Bossartc8d2e2b2020-06-17 11:47:55 -0500414 { PCI_DEVICE(0x8086, 0x3dc8), /* ICL-H */
415 .driver_data = (unsigned long)&icl_desc},
416
Liam Girdwooda2268932019-04-12 11:09:00 -0500417#endif
Pan Xiuli6fd99032019-10-22 14:47:05 -0500418#if IS_ENABLED(CONFIG_SND_SOC_SOF_JASPERLAKE)
419 { PCI_DEVICE(0x8086, 0x38c8),
420 .driver_data = (unsigned long)&jsl_desc},
Yong Zhi6ba7fc92020-01-31 14:40:32 -0600421 { PCI_DEVICE(0x8086, 0x4dc8),
422 .driver_data = (unsigned long)&jsl_desc},
Pan Xiuli6fd99032019-10-22 14:47:05 -0500423#endif
Pierre-Louis Bossart42286682020-06-17 11:47:53 -0500424#if IS_ENABLED(CONFIG_SND_SOC_SOF_COMETLAKE)
425 { PCI_DEVICE(0x8086, 0x02c8), /* CML-LP */
Evan Green927ce5c2019-05-10 15:39:28 -0700426 .driver_data = (unsigned long)&cml_desc},
Pierre-Louis Bossart42286682020-06-17 11:47:53 -0500427 { PCI_DEVICE(0x8086, 0x06c8), /* CML-H */
Evan Green927ce5c2019-05-10 15:39:28 -0700428 .driver_data = (unsigned long)&cml_desc},
Pierre-Louis Bossart258fb4f2020-06-17 11:47:54 -0500429 { PCI_DEVICE(0x8086, 0xa3f0), /* CML-S */
430 .driver_data = (unsigned long)&cml_desc},
Evan Green927ce5c2019-05-10 15:39:28 -0700431#endif
Pan Xiuli1205c812019-08-15 10:57:47 -0500432#if IS_ENABLED(CONFIG_SND_SOC_SOF_TIGERLAKE)
Pierre-Louis Bossartc8d2e2b2020-06-17 11:47:55 -0500433 { PCI_DEVICE(0x8086, 0xa0c8), /* TGL-LP */
Pan Xiuli1205c812019-08-15 10:57:47 -0500434 .driver_data = (unsigned long)&tgl_desc},
Pierre-Louis Bossartc8d2e2b2020-06-17 11:47:55 -0500435 { PCI_DEVICE(0x8086, 0x43c8), /* TGL-H */
436 .driver_data = (unsigned long)&tgl_desc},
437
Pan Xiuli1205c812019-08-15 10:57:47 -0500438#endif
Pan Xiuli617326902019-08-15 10:57:49 -0500439#if IS_ENABLED(CONFIG_SND_SOC_SOF_ELKHARTLAKE)
440 { PCI_DEVICE(0x8086, 0x4b55),
441 .driver_data = (unsigned long)&ehl_desc},
Libin Yanga4ed2922020-04-09 13:58:18 -0500442 { PCI_DEVICE(0x8086, 0x4b58),
443 .driver_data = (unsigned long)&ehl_desc},
Pan Xiuli617326902019-08-15 10:57:49 -0500444#endif
Liam Girdwooda2268932019-04-12 11:09:00 -0500445 { 0, }
446};
447MODULE_DEVICE_TABLE(pci, sof_pci_ids);
448
449/* pci_driver definition */
450static struct pci_driver snd_sof_pci_driver = {
451 .name = "sof-audio-pci",
452 .id_table = sof_pci_ids,
453 .probe = sof_pci_probe,
454 .remove = sof_pci_remove,
455 .driver = {
456 .pm = &sof_pci_pm,
457 },
458};
459module_pci_driver(snd_sof_pci_driver);
Liam Girdwooda2268932019-04-12 11:09:00 -0500460
461MODULE_LICENSE("Dual BSD/GPL");
Pierre-Louis Bossarte42b1942019-12-17 14:22:25 -0600462MODULE_IMPORT_NS(SND_SOC_SOF_MERRIFIELD);
Pierre-Louis Bossartcf5629e42019-12-17 14:22:28 -0600463MODULE_IMPORT_NS(SND_SOC_SOF_INTEL_HDA_COMMON);