xref: /linux/sound/soc/sof/intel/bdw.c (revision 32d7e03d26fd93187c87ed0fbf59ec7023a61404)
1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2 //
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 /*
12  * Hardware interface for audio DSP on Broadwell
13  */
14 
15 #include <linux/module.h>
16 #include <sound/sof.h>
17 #include <sound/sof/xtensa.h>
18 #include <sound/soc-acpi.h>
19 #include <sound/soc-acpi-intel-match.h>
20 #include <sound/intel-dsp-config.h>
21 #include "../ops.h"
22 #include "shim.h"
23 #include "../sof-acpi-dev.h"
24 #include "../sof-audio.h"
25 
26 /* BARs */
27 #define BDW_DSP_BAR 0
28 #define BDW_PCI_BAR 1
29 
30 /*
31  * Debug
32  */
33 
34 /* DSP memories for BDW */
35 #define IRAM_OFFSET     0xA0000
36 #define BDW_IRAM_SIZE       (10 * 32 * 1024)
37 #define DRAM_OFFSET     0x00000
38 #define BDW_DRAM_SIZE       (20 * 32 * 1024)
39 #define SHIM_OFFSET     0xFB000
40 #define SHIM_SIZE       0x100
41 #define MBOX_OFFSET     0x9E000
42 #define MBOX_SIZE       0x1000
43 #define MBOX_DUMP_SIZE 0x30
44 #define EXCEPT_OFFSET	0x800
45 #define EXCEPT_MAX_HDR_SIZE	0x400
46 
47 /* DSP peripherals */
48 #define DMAC0_OFFSET    0xFE000
49 #define DMAC1_OFFSET    0xFF000
50 #define DMAC_SIZE       0x420
51 #define SSP0_OFFSET     0xFC000
52 #define SSP1_OFFSET     0xFD000
53 #define SSP_SIZE	0x100
54 
55 #define BDW_STACK_DUMP_SIZE	32
56 
57 #define BDW_PANIC_OFFSET(x)	((x) & 0xFFFF)
58 
59 static const struct snd_sof_debugfs_map bdw_debugfs[] = {
60 	{"dmac0", BDW_DSP_BAR, DMAC0_OFFSET, DMAC_SIZE,
61 	 SOF_DEBUGFS_ACCESS_ALWAYS},
62 	{"dmac1", BDW_DSP_BAR, DMAC1_OFFSET, DMAC_SIZE,
63 	 SOF_DEBUGFS_ACCESS_ALWAYS},
64 	{"ssp0", BDW_DSP_BAR, SSP0_OFFSET, SSP_SIZE,
65 	 SOF_DEBUGFS_ACCESS_ALWAYS},
66 	{"ssp1", BDW_DSP_BAR, SSP1_OFFSET, SSP_SIZE,
67 	 SOF_DEBUGFS_ACCESS_ALWAYS},
68 	{"iram", BDW_DSP_BAR, IRAM_OFFSET, BDW_IRAM_SIZE,
69 	 SOF_DEBUGFS_ACCESS_D0_ONLY},
70 	{"dram", BDW_DSP_BAR, DRAM_OFFSET, BDW_DRAM_SIZE,
71 	 SOF_DEBUGFS_ACCESS_D0_ONLY},
72 	{"shim", BDW_DSP_BAR, SHIM_OFFSET, SHIM_SIZE,
73 	 SOF_DEBUGFS_ACCESS_ALWAYS},
74 };
75 
76 static void bdw_host_done(struct snd_sof_dev *sdev);
77 static void bdw_dsp_done(struct snd_sof_dev *sdev);
78 
79 /*
80  * DSP Control.
81  */
82 
83 static int bdw_run(struct snd_sof_dev *sdev)
84 {
85 	/* set opportunistic mode on engine 0,1 for all channels */
86 	snd_sof_dsp_update_bits(sdev, BDW_DSP_BAR, SHIM_HMDC,
87 				SHIM_HMDC_HDDA_E0_ALLCH |
88 				SHIM_HMDC_HDDA_E1_ALLCH, 0);
89 
90 	/* set DSP to RUN */
91 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_CSR,
92 					 SHIM_CSR_STALL, 0x0);
93 
94 	/* return init core mask */
95 	return 1;
96 }
97 
98 static int bdw_reset(struct snd_sof_dev *sdev)
99 {
100 	/* put DSP into reset and stall */
101 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_CSR,
102 					 SHIM_CSR_RST | SHIM_CSR_STALL,
103 					 SHIM_CSR_RST | SHIM_CSR_STALL);
104 
105 	/* keep in reset for 10ms */
106 	mdelay(10);
107 
108 	/* take DSP out of reset and keep stalled for FW loading */
109 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_CSR,
110 					 SHIM_CSR_RST | SHIM_CSR_STALL,
111 					 SHIM_CSR_STALL);
112 
113 	return 0;
114 }
115 
116 static int bdw_set_dsp_D0(struct snd_sof_dev *sdev)
117 {
118 	int tries = 10;
119 	u32 reg;
120 
121 	/* Disable core clock gating (VDRTCTL2.DCLCGE = 0) */
122 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_PCI_BAR, PCI_VDRTCTL2,
123 					 PCI_VDRTCL2_DCLCGE |
124 					 PCI_VDRTCL2_DTCGE, 0);
125 
126 	/* Disable D3PG (VDRTCTL0.D3PGD = 1) */
127 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_PCI_BAR, PCI_VDRTCTL0,
128 					 PCI_VDRTCL0_D3PGD, PCI_VDRTCL0_D3PGD);
129 
130 	/* Set D0 state */
131 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_PCI_BAR, PCI_PMCS,
132 					 PCI_PMCS_PS_MASK, 0);
133 
134 	/* check that ADSP shim is enabled */
135 	while (tries--) {
136 		reg = readl(sdev->bar[BDW_PCI_BAR] + PCI_PMCS)
137 			& PCI_PMCS_PS_MASK;
138 		if (reg == 0)
139 			goto finish;
140 
141 		msleep(20);
142 	}
143 
144 	return -ENODEV;
145 
146 finish:
147 	/*
148 	 * select SSP1 19.2MHz base clock, SSP clock 0,
149 	 * turn off Low Power Clock
150 	 */
151 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_CSR,
152 					 SHIM_CSR_S1IOCS | SHIM_CSR_SBCS1 |
153 					 SHIM_CSR_LPCS, 0x0);
154 
155 	/* stall DSP core, set clk to 192/96Mhz */
156 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR,
157 					 SHIM_CSR, SHIM_CSR_STALL |
158 					 SHIM_CSR_DCS_MASK,
159 					 SHIM_CSR_STALL |
160 					 SHIM_CSR_DCS(4));
161 
162 	/* Set 24MHz MCLK, prevent local clock gating, enable SSP0 clock */
163 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_CLKCTL,
164 					 SHIM_CLKCTL_MASK |
165 					 SHIM_CLKCTL_DCPLCG |
166 					 SHIM_CLKCTL_SCOE0,
167 					 SHIM_CLKCTL_MASK |
168 					 SHIM_CLKCTL_DCPLCG |
169 					 SHIM_CLKCTL_SCOE0);
170 
171 	/* Stall and reset core, set CSR */
172 	bdw_reset(sdev);
173 
174 	/* Enable core clock gating (VDRTCTL2.DCLCGE = 1), delay 50 us */
175 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_PCI_BAR, PCI_VDRTCTL2,
176 					 PCI_VDRTCL2_DCLCGE |
177 					 PCI_VDRTCL2_DTCGE,
178 					 PCI_VDRTCL2_DCLCGE |
179 					 PCI_VDRTCL2_DTCGE);
180 
181 	usleep_range(50, 55);
182 
183 	/* switch on audio PLL */
184 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_PCI_BAR, PCI_VDRTCTL2,
185 					 PCI_VDRTCL2_APLLSE_MASK, 0);
186 
187 	/*
188 	 * set default power gating control, enable power gating control for
189 	 * all blocks. that is, can't be accessed, please enable each block
190 	 * before accessing.
191 	 */
192 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_PCI_BAR, PCI_VDRTCTL0,
193 					 0xfffffffC, 0x0);
194 
195 	/* disable DMA finish function for SSP0 & SSP1 */
196 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR,  SHIM_CSR2,
197 					 SHIM_CSR2_SDFD_SSP1,
198 					 SHIM_CSR2_SDFD_SSP1);
199 
200 	/* set on-demond mode on engine 0,1 for all channels */
201 	snd_sof_dsp_update_bits(sdev, BDW_DSP_BAR, SHIM_HMDC,
202 				SHIM_HMDC_HDDA_E0_ALLCH |
203 				SHIM_HMDC_HDDA_E1_ALLCH,
204 				SHIM_HMDC_HDDA_E0_ALLCH |
205 				SHIM_HMDC_HDDA_E1_ALLCH);
206 
207 	/* Enable Interrupt from both sides */
208 	snd_sof_dsp_update_bits(sdev, BDW_DSP_BAR, SHIM_IMRX,
209 				(SHIM_IMRX_BUSY | SHIM_IMRX_DONE), 0x0);
210 	snd_sof_dsp_update_bits(sdev, BDW_DSP_BAR, SHIM_IMRD,
211 				(SHIM_IMRD_DONE | SHIM_IMRD_BUSY |
212 				SHIM_IMRD_SSP0 | SHIM_IMRD_DMAC), 0x0);
213 
214 	/* clear IPC registers */
215 	snd_sof_dsp_write(sdev, BDW_DSP_BAR, SHIM_IPCX, 0x0);
216 	snd_sof_dsp_write(sdev, BDW_DSP_BAR, SHIM_IPCD, 0x0);
217 	snd_sof_dsp_write(sdev, BDW_DSP_BAR, 0x80, 0x6);
218 	snd_sof_dsp_write(sdev, BDW_DSP_BAR, 0xe0, 0x300a);
219 
220 	return 0;
221 }
222 
223 static void bdw_get_registers(struct snd_sof_dev *sdev,
224 			      struct sof_ipc_dsp_oops_xtensa *xoops,
225 			      struct sof_ipc_panic_info *panic_info,
226 			      u32 *stack, size_t stack_words)
227 {
228 	u32 offset = sdev->dsp_oops_offset;
229 
230 	/* first read registers */
231 	sof_mailbox_read(sdev, offset, xoops, sizeof(*xoops));
232 
233 	/* note: variable AR register array is not read */
234 
235 	/* then get panic info */
236 	if (xoops->arch_hdr.totalsize > EXCEPT_MAX_HDR_SIZE) {
237 		dev_err(sdev->dev, "invalid header size 0x%x. FW oops is bogus\n",
238 			xoops->arch_hdr.totalsize);
239 		return;
240 	}
241 	offset += xoops->arch_hdr.totalsize;
242 	sof_mailbox_read(sdev, offset, panic_info, sizeof(*panic_info));
243 
244 	/* then get the stack */
245 	offset += sizeof(*panic_info);
246 	sof_mailbox_read(sdev, offset, stack, stack_words * sizeof(u32));
247 }
248 
249 static void bdw_dump(struct snd_sof_dev *sdev, u32 flags)
250 {
251 	struct sof_ipc_dsp_oops_xtensa xoops;
252 	struct sof_ipc_panic_info panic_info;
253 	u32 stack[BDW_STACK_DUMP_SIZE];
254 	u32 status, panic, imrx, imrd;
255 
256 	/* now try generic SOF status messages */
257 	status = snd_sof_dsp_read(sdev, BDW_DSP_BAR, SHIM_IPCD);
258 	panic = snd_sof_dsp_read(sdev, BDW_DSP_BAR, SHIM_IPCX);
259 	bdw_get_registers(sdev, &xoops, &panic_info, stack,
260 			  BDW_STACK_DUMP_SIZE);
261 	snd_sof_get_status(sdev, status, panic, &xoops, &panic_info, stack,
262 			   BDW_STACK_DUMP_SIZE);
263 
264 	/* provide some context for firmware debug */
265 	imrx = snd_sof_dsp_read(sdev, BDW_DSP_BAR, SHIM_IMRX);
266 	imrd = snd_sof_dsp_read(sdev, BDW_DSP_BAR, SHIM_IMRD);
267 	dev_err(sdev->dev,
268 		"error: ipc host -> DSP: pending %s complete %s raw 0x%8.8x\n",
269 		(panic & SHIM_IPCX_BUSY) ? "yes" : "no",
270 		(panic & SHIM_IPCX_DONE) ? "yes" : "no", panic);
271 	dev_err(sdev->dev,
272 		"error: mask host: pending %s complete %s raw 0x%8.8x\n",
273 		(imrx & SHIM_IMRX_BUSY) ? "yes" : "no",
274 		(imrx & SHIM_IMRX_DONE) ? "yes" : "no", imrx);
275 	dev_err(sdev->dev,
276 		"error: ipc DSP -> host: pending %s complete %s raw 0x%8.8x\n",
277 		(status & SHIM_IPCD_BUSY) ? "yes" : "no",
278 		(status & SHIM_IPCD_DONE) ? "yes" : "no", status);
279 	dev_err(sdev->dev,
280 		"error: mask DSP: pending %s complete %s raw 0x%8.8x\n",
281 		(imrd & SHIM_IMRD_BUSY) ? "yes" : "no",
282 		(imrd & SHIM_IMRD_DONE) ? "yes" : "no", imrd);
283 }
284 
285 /*
286  * IPC Doorbell IRQ handler and thread.
287  */
288 
289 static irqreturn_t bdw_irq_handler(int irq, void *context)
290 {
291 	struct snd_sof_dev *sdev = context;
292 	u32 isr;
293 	int ret = IRQ_NONE;
294 
295 	/* Interrupt arrived, check src */
296 	isr = snd_sof_dsp_read(sdev, BDW_DSP_BAR, SHIM_ISRX);
297 	if (isr & (SHIM_ISRX_DONE | SHIM_ISRX_BUSY))
298 		ret = IRQ_WAKE_THREAD;
299 
300 	return ret;
301 }
302 
303 static irqreturn_t bdw_irq_thread(int irq, void *context)
304 {
305 	struct snd_sof_dev *sdev = context;
306 	u32 ipcx, ipcd, imrx;
307 
308 	imrx = snd_sof_dsp_read64(sdev, BDW_DSP_BAR, SHIM_IMRX);
309 	ipcx = snd_sof_dsp_read(sdev, BDW_DSP_BAR, SHIM_IPCX);
310 
311 	/* reply message from DSP */
312 	if (ipcx & SHIM_IPCX_DONE &&
313 	    !(imrx & SHIM_IMRX_DONE)) {
314 		/* Mask Done interrupt before return */
315 		snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR,
316 						 SHIM_IMRX, SHIM_IMRX_DONE,
317 						 SHIM_IMRX_DONE);
318 
319 		spin_lock_irq(&sdev->ipc_lock);
320 
321 		/*
322 		 * handle immediate reply from DSP core. If the msg is
323 		 * found, set done bit in cmd_done which is called at the
324 		 * end of message processing function, else set it here
325 		 * because the done bit can't be set in cmd_done function
326 		 * which is triggered by msg
327 		 */
328 		snd_sof_ipc_process_reply(sdev, ipcx);
329 
330 		bdw_dsp_done(sdev);
331 
332 		spin_unlock_irq(&sdev->ipc_lock);
333 	}
334 
335 	ipcd = snd_sof_dsp_read(sdev, BDW_DSP_BAR, SHIM_IPCD);
336 
337 	/* new message from DSP */
338 	if (ipcd & SHIM_IPCD_BUSY &&
339 	    !(imrx & SHIM_IMRX_BUSY)) {
340 		/* Mask Busy interrupt before return */
341 		snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR,
342 						 SHIM_IMRX, SHIM_IMRX_BUSY,
343 						 SHIM_IMRX_BUSY);
344 
345 		/* Handle messages from DSP Core */
346 		if ((ipcd & SOF_IPC_PANIC_MAGIC_MASK) == SOF_IPC_PANIC_MAGIC) {
347 			snd_sof_dsp_panic(sdev, BDW_PANIC_OFFSET(ipcx) +
348 					  MBOX_OFFSET);
349 		} else {
350 			snd_sof_ipc_msgs_rx(sdev);
351 		}
352 
353 		bdw_host_done(sdev);
354 	}
355 
356 	return IRQ_HANDLED;
357 }
358 
359 /*
360  * IPC Mailbox IO
361  */
362 
363 static int bdw_send_msg(struct snd_sof_dev *sdev, struct snd_sof_ipc_msg *msg)
364 {
365 	/* send the message */
366 	sof_mailbox_write(sdev, sdev->host_box.offset, msg->msg_data,
367 			  msg->msg_size);
368 	snd_sof_dsp_write(sdev, BDW_DSP_BAR, SHIM_IPCX, SHIM_IPCX_BUSY);
369 
370 	return 0;
371 }
372 
373 static int bdw_get_mailbox_offset(struct snd_sof_dev *sdev)
374 {
375 	return MBOX_OFFSET;
376 }
377 
378 static int bdw_get_window_offset(struct snd_sof_dev *sdev, u32 id)
379 {
380 	return MBOX_OFFSET;
381 }
382 
383 static void bdw_host_done(struct snd_sof_dev *sdev)
384 {
385 	/* clear BUSY bit and set DONE bit - accept new messages */
386 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_IPCD,
387 					 SHIM_IPCD_BUSY | SHIM_IPCD_DONE,
388 					 SHIM_IPCD_DONE);
389 
390 	/* unmask busy interrupt */
391 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_IMRX,
392 					 SHIM_IMRX_BUSY, 0);
393 }
394 
395 static void bdw_dsp_done(struct snd_sof_dev *sdev)
396 {
397 	/* clear DONE bit - tell DSP we have completed */
398 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_IPCX,
399 					 SHIM_IPCX_DONE, 0);
400 
401 	/* unmask Done interrupt */
402 	snd_sof_dsp_update_bits_unlocked(sdev, BDW_DSP_BAR, SHIM_IMRX,
403 					 SHIM_IMRX_DONE, 0);
404 }
405 
406 /*
407  * Probe and remove.
408  */
409 static int bdw_probe(struct snd_sof_dev *sdev)
410 {
411 	struct snd_sof_pdata *pdata = sdev->pdata;
412 	const struct sof_dev_desc *desc = pdata->desc;
413 	struct platform_device *pdev =
414 		container_of(sdev->dev, struct platform_device, dev);
415 	struct resource *mmio;
416 	u32 base, size;
417 	int ret;
418 
419 	/* LPE base */
420 	mmio = platform_get_resource(pdev, IORESOURCE_MEM,
421 				     desc->resindex_lpe_base);
422 	if (mmio) {
423 		base = mmio->start;
424 		size = resource_size(mmio);
425 	} else {
426 		dev_err(sdev->dev, "error: failed to get LPE base at idx %d\n",
427 			desc->resindex_lpe_base);
428 		return -EINVAL;
429 	}
430 
431 	dev_dbg(sdev->dev, "LPE PHY base at 0x%x size 0x%x", base, size);
432 	sdev->bar[BDW_DSP_BAR] = devm_ioremap(sdev->dev, base, size);
433 	if (!sdev->bar[BDW_DSP_BAR]) {
434 		dev_err(sdev->dev,
435 			"error: failed to ioremap LPE base 0x%x size 0x%x\n",
436 			base, size);
437 		return -ENODEV;
438 	}
439 	dev_dbg(sdev->dev, "LPE VADDR %p\n", sdev->bar[BDW_DSP_BAR]);
440 
441 	/* TODO: add offsets */
442 	sdev->mmio_bar = BDW_DSP_BAR;
443 	sdev->mailbox_bar = BDW_DSP_BAR;
444 	sdev->dsp_oops_offset = MBOX_OFFSET;
445 
446 	/* PCI base */
447 	mmio = platform_get_resource(pdev, IORESOURCE_MEM,
448 				     desc->resindex_pcicfg_base);
449 	if (mmio) {
450 		base = mmio->start;
451 		size = resource_size(mmio);
452 	} else {
453 		dev_err(sdev->dev, "error: failed to get PCI base at idx %d\n",
454 			desc->resindex_pcicfg_base);
455 		return -ENODEV;
456 	}
457 
458 	dev_dbg(sdev->dev, "PCI base at 0x%x size 0x%x", base, size);
459 	sdev->bar[BDW_PCI_BAR] = devm_ioremap(sdev->dev, base, size);
460 	if (!sdev->bar[BDW_PCI_BAR]) {
461 		dev_err(sdev->dev,
462 			"error: failed to ioremap PCI base 0x%x size 0x%x\n",
463 			base, size);
464 		return -ENODEV;
465 	}
466 	dev_dbg(sdev->dev, "PCI VADDR %p\n", sdev->bar[BDW_PCI_BAR]);
467 
468 	/* register our IRQ */
469 	sdev->ipc_irq = platform_get_irq(pdev, desc->irqindex_host_ipc);
470 	if (sdev->ipc_irq < 0)
471 		return sdev->ipc_irq;
472 
473 	dev_dbg(sdev->dev, "using IRQ %d\n", sdev->ipc_irq);
474 	ret = devm_request_threaded_irq(sdev->dev, sdev->ipc_irq,
475 					bdw_irq_handler, bdw_irq_thread,
476 					IRQF_SHARED, "AudioDSP", sdev);
477 	if (ret < 0) {
478 		dev_err(sdev->dev, "error: failed to register IRQ %d\n",
479 			sdev->ipc_irq);
480 		return ret;
481 	}
482 
483 	/* enable the DSP SHIM */
484 	ret = bdw_set_dsp_D0(sdev);
485 	if (ret < 0) {
486 		dev_err(sdev->dev, "error: failed to set DSP D0\n");
487 		return ret;
488 	}
489 
490 	/* DSP DMA can only access low 31 bits of host memory */
491 	ret = dma_coerce_mask_and_coherent(sdev->dev, DMA_BIT_MASK(31));
492 	if (ret < 0) {
493 		dev_err(sdev->dev, "error: failed to set DMA mask %d\n", ret);
494 		return ret;
495 	}
496 
497 	/* set default mailbox offset for FW ready message */
498 	sdev->dsp_box.offset = MBOX_OFFSET;
499 
500 	return ret;
501 }
502 
503 static void bdw_machine_select(struct snd_sof_dev *sdev)
504 {
505 	struct snd_sof_pdata *sof_pdata = sdev->pdata;
506 	const struct sof_dev_desc *desc = sof_pdata->desc;
507 	struct snd_soc_acpi_mach *mach;
508 
509 	mach = snd_soc_acpi_find_machine(desc->machines);
510 	if (!mach) {
511 		dev_warn(sdev->dev, "warning: No matching ASoC machine driver found\n");
512 		return;
513 	}
514 
515 	sof_pdata->tplg_filename = mach->sof_tplg_filename;
516 	mach->mach_params.acpi_ipc_irq_index = desc->irqindex_host_ipc;
517 	sof_pdata->machine = mach;
518 }
519 
520 static void bdw_set_mach_params(const struct snd_soc_acpi_mach *mach,
521 				struct snd_sof_dev *sdev)
522 {
523 	struct snd_sof_pdata *pdata = sdev->pdata;
524 	const struct sof_dev_desc *desc = pdata->desc;
525 	struct snd_soc_acpi_mach_params *mach_params;
526 
527 	mach_params = (struct snd_soc_acpi_mach_params *)&mach->mach_params;
528 	mach_params->platform = dev_name(sdev->dev);
529 	mach_params->num_dai_drivers = desc->ops->num_drv;
530 	mach_params->dai_drivers = desc->ops->drv;
531 }
532 
533 /* Broadwell DAIs */
534 static struct snd_soc_dai_driver bdw_dai[] = {
535 {
536 	.name = "ssp0-port",
537 	.playback = {
538 		.channels_min = 1,
539 		.channels_max = 8,
540 	},
541 	.capture = {
542 		.channels_min = 1,
543 		.channels_max = 8,
544 	},
545 },
546 {
547 	.name = "ssp1-port",
548 	.playback = {
549 		.channels_min = 1,
550 		.channels_max = 8,
551 	},
552 	.capture = {
553 		.channels_min = 1,
554 		.channels_max = 8,
555 	},
556 },
557 };
558 
559 /* broadwell ops */
560 static const struct snd_sof_dsp_ops sof_bdw_ops = {
561 	/*Device init */
562 	.probe          = bdw_probe,
563 
564 	/* DSP Core Control */
565 	.run            = bdw_run,
566 	.reset          = bdw_reset,
567 
568 	/* Register IO */
569 	.write		= sof_io_write,
570 	.read		= sof_io_read,
571 	.write64	= sof_io_write64,
572 	.read64		= sof_io_read64,
573 
574 	/* Block IO */
575 	.block_read	= sof_block_read,
576 	.block_write	= sof_block_write,
577 
578 	/* Mailbox IO */
579 	.mailbox_read	= sof_mailbox_read,
580 	.mailbox_write	= sof_mailbox_write,
581 
582 	/* ipc */
583 	.send_msg	= bdw_send_msg,
584 	.fw_ready	= sof_fw_ready,
585 	.get_mailbox_offset = bdw_get_mailbox_offset,
586 	.get_window_offset = bdw_get_window_offset,
587 
588 	.ipc_msg_data	= sof_ipc_msg_data,
589 	.ipc_pcm_params	= sof_ipc_pcm_params,
590 
591 	/* machine driver */
592 	.machine_select = bdw_machine_select,
593 	.machine_register = sof_machine_register,
594 	.machine_unregister = sof_machine_unregister,
595 	.set_mach_params = bdw_set_mach_params,
596 
597 	/* debug */
598 	.debug_map  = bdw_debugfs,
599 	.debug_map_count    = ARRAY_SIZE(bdw_debugfs),
600 	.dbg_dump   = bdw_dump,
601 	.debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem,
602 
603 	/* stream callbacks */
604 	.pcm_open	= sof_stream_pcm_open,
605 	.pcm_close	= sof_stream_pcm_close,
606 
607 	/* Module loading */
608 	.load_module    = snd_sof_parse_module_memcpy,
609 
610 	/*Firmware loading */
611 	.load_firmware	= snd_sof_load_firmware_memcpy,
612 
613 	/* DAI drivers */
614 	.drv = bdw_dai,
615 	.num_drv = ARRAY_SIZE(bdw_dai),
616 
617 	/* ALSA HW info flags */
618 	.hw_info =	SNDRV_PCM_INFO_MMAP |
619 			SNDRV_PCM_INFO_MMAP_VALID |
620 			SNDRV_PCM_INFO_INTERLEAVED |
621 			SNDRV_PCM_INFO_PAUSE |
622 			SNDRV_PCM_INFO_BATCH,
623 
624 	.dsp_arch_ops = &sof_xtensa_arch_ops,
625 };
626 
627 static const struct sof_intel_dsp_desc bdw_chip_info = {
628 	.cores_num = 1,
629 	.host_managed_cores_mask = 1,
630 };
631 
632 static const struct sof_dev_desc sof_acpi_broadwell_desc = {
633 	.machines = snd_soc_acpi_intel_broadwell_machines,
634 	.resindex_lpe_base = 0,
635 	.resindex_pcicfg_base = 1,
636 	.resindex_imr_base = -1,
637 	.irqindex_host_ipc = 0,
638 	.chip_info = &bdw_chip_info,
639 	.default_fw_path = "intel/sof",
640 	.default_tplg_path = "intel/sof-tplg",
641 	.default_fw_filename = "sof-bdw.ri",
642 	.nocodec_tplg_filename = "sof-bdw-nocodec.tplg",
643 	.ops = &sof_bdw_ops,
644 };
645 
646 static const struct acpi_device_id sof_broadwell_match[] = {
647 	{ "INT3438", (unsigned long)&sof_acpi_broadwell_desc },
648 	{ }
649 };
650 MODULE_DEVICE_TABLE(acpi, sof_broadwell_match);
651 
652 static int sof_broadwell_probe(struct platform_device *pdev)
653 {
654 	struct device *dev = &pdev->dev;
655 	const struct acpi_device_id *id;
656 	const struct sof_dev_desc *desc;
657 	int ret;
658 
659 	id = acpi_match_device(dev->driver->acpi_match_table, dev);
660 	if (!id)
661 		return -ENODEV;
662 
663 	ret = snd_intel_acpi_dsp_driver_probe(dev, id->id);
664 	if (ret != SND_INTEL_DSP_DRIVER_ANY && ret != SND_INTEL_DSP_DRIVER_SOF) {
665 		dev_dbg(dev, "SOF ACPI driver not selected, aborting probe\n");
666 		return -ENODEV;
667 	}
668 
669 	desc = device_get_match_data(dev);
670 	if (!desc)
671 		return -ENODEV;
672 
673 	return sof_acpi_probe(pdev, device_get_match_data(dev));
674 }
675 
676 /* acpi_driver definition */
677 static struct platform_driver snd_sof_acpi_intel_bdw_driver = {
678 	.probe = sof_broadwell_probe,
679 	.remove = sof_acpi_remove,
680 	.driver = {
681 		.name = "sof-audio-acpi-intel-bdw",
682 		.pm = &sof_acpi_pm,
683 		.acpi_match_table = sof_broadwell_match,
684 	},
685 };
686 module_platform_driver(snd_sof_acpi_intel_bdw_driver);
687 
688 MODULE_LICENSE("Dual BSD/GPL");
689 MODULE_IMPORT_NS(SND_SOC_SOF_INTEL_HIFI_EP_IPC);
690 MODULE_IMPORT_NS(SND_SOC_SOF_XTENSA);
691 MODULE_IMPORT_NS(SND_SOC_SOF_ACPI_DEV);
692