Loading...
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-2021 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 Atom devices
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 "atom.h"
24#include "../sof-acpi-dev.h"
25#include "../sof-audio.h"
26#include "../../intel/common/soc-intel-quirks.h"
27
28static void atom_host_done(struct snd_sof_dev *sdev);
29static void atom_dsp_done(struct snd_sof_dev *sdev);
30
31/*
32 * Debug
33 */
34
35static void atom_get_registers(struct snd_sof_dev *sdev,
36 struct sof_ipc_dsp_oops_xtensa *xoops,
37 struct sof_ipc_panic_info *panic_info,
38 u32 *stack, size_t stack_words)
39{
40 u32 offset = sdev->dsp_oops_offset;
41
42 /* first read regsisters */
43 sof_mailbox_read(sdev, offset, xoops, sizeof(*xoops));
44
45 /* note: variable AR register array is not read */
46
47 /* then get panic info */
48 if (xoops->arch_hdr.totalsize > EXCEPT_MAX_HDR_SIZE) {
49 dev_err(sdev->dev, "invalid header size 0x%x. FW oops is bogus\n",
50 xoops->arch_hdr.totalsize);
51 return;
52 }
53 offset += xoops->arch_hdr.totalsize;
54 sof_mailbox_read(sdev, offset, panic_info, sizeof(*panic_info));
55
56 /* then get the stack */
57 offset += sizeof(*panic_info);
58 sof_mailbox_read(sdev, offset, stack, stack_words * sizeof(u32));
59}
60
61void atom_dump(struct snd_sof_dev *sdev, u32 flags)
62{
63 struct sof_ipc_dsp_oops_xtensa xoops;
64 struct sof_ipc_panic_info panic_info;
65 u32 stack[STACK_DUMP_SIZE];
66 u64 status, panic, imrd, imrx;
67
68 /* now try generic SOF status messages */
69 status = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCD);
70 panic = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCX);
71 atom_get_registers(sdev, &xoops, &panic_info, stack,
72 STACK_DUMP_SIZE);
73 sof_print_oops_and_stack(sdev, KERN_ERR, status, panic, &xoops,
74 &panic_info, stack, STACK_DUMP_SIZE);
75
76 /* provide some context for firmware debug */
77 imrx = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IMRX);
78 imrd = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IMRD);
79 dev_err(sdev->dev,
80 "error: ipc host -> DSP: pending %s complete %s raw 0x%llx\n",
81 (panic & SHIM_IPCX_BUSY) ? "yes" : "no",
82 (panic & SHIM_IPCX_DONE) ? "yes" : "no", panic);
83 dev_err(sdev->dev,
84 "error: mask host: pending %s complete %s raw 0x%llx\n",
85 (imrx & SHIM_IMRX_BUSY) ? "yes" : "no",
86 (imrx & SHIM_IMRX_DONE) ? "yes" : "no", imrx);
87 dev_err(sdev->dev,
88 "error: ipc DSP -> host: pending %s complete %s raw 0x%llx\n",
89 (status & SHIM_IPCD_BUSY) ? "yes" : "no",
90 (status & SHIM_IPCD_DONE) ? "yes" : "no", status);
91 dev_err(sdev->dev,
92 "error: mask DSP: pending %s complete %s raw 0x%llx\n",
93 (imrd & SHIM_IMRD_BUSY) ? "yes" : "no",
94 (imrd & SHIM_IMRD_DONE) ? "yes" : "no", imrd);
95
96}
97EXPORT_SYMBOL_NS(atom_dump, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
98
99/*
100 * IPC Doorbell IRQ handler and thread.
101 */
102
103irqreturn_t atom_irq_handler(int irq, void *context)
104{
105 struct snd_sof_dev *sdev = context;
106 u64 ipcx, ipcd;
107 int ret = IRQ_NONE;
108
109 ipcx = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCX);
110 ipcd = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCD);
111
112 if (ipcx & SHIM_BYT_IPCX_DONE) {
113
114 /* reply message from DSP, Mask Done interrupt first */
115 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR,
116 SHIM_IMRX,
117 SHIM_IMRX_DONE,
118 SHIM_IMRX_DONE);
119 ret = IRQ_WAKE_THREAD;
120 }
121
122 if (ipcd & SHIM_BYT_IPCD_BUSY) {
123
124 /* new message from DSP, Mask Busy interrupt first */
125 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR,
126 SHIM_IMRX,
127 SHIM_IMRX_BUSY,
128 SHIM_IMRX_BUSY);
129 ret = IRQ_WAKE_THREAD;
130 }
131
132 return ret;
133}
134EXPORT_SYMBOL_NS(atom_irq_handler, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
135
136irqreturn_t atom_irq_thread(int irq, void *context)
137{
138 struct snd_sof_dev *sdev = context;
139 u64 ipcx, ipcd;
140
141 ipcx = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCX);
142 ipcd = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCD);
143
144 /* reply message from DSP */
145 if (ipcx & SHIM_BYT_IPCX_DONE) {
146
147 spin_lock_irq(&sdev->ipc_lock);
148
149 /*
150 * handle immediate reply from DSP core. If the msg is
151 * found, set done bit in cmd_done which is called at the
152 * end of message processing function, else set it here
153 * because the done bit can't be set in cmd_done function
154 * which is triggered by msg
155 */
156 snd_sof_ipc_process_reply(sdev, ipcx);
157
158 atom_dsp_done(sdev);
159
160 spin_unlock_irq(&sdev->ipc_lock);
161 }
162
163 /* new message from DSP */
164 if (ipcd & SHIM_BYT_IPCD_BUSY) {
165
166 /* Handle messages from DSP Core */
167 if ((ipcd & SOF_IPC_PANIC_MAGIC_MASK) == SOF_IPC_PANIC_MAGIC) {
168 snd_sof_dsp_panic(sdev, PANIC_OFFSET(ipcd) + MBOX_OFFSET,
169 true);
170 } else {
171 snd_sof_ipc_msgs_rx(sdev);
172 }
173
174 atom_host_done(sdev);
175 }
176
177 return IRQ_HANDLED;
178}
179EXPORT_SYMBOL_NS(atom_irq_thread, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
180
181int atom_send_msg(struct snd_sof_dev *sdev, struct snd_sof_ipc_msg *msg)
182{
183 /* unmask and prepare to receive Done interrupt */
184 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR, SHIM_IMRX,
185 SHIM_IMRX_DONE, 0);
186
187 /* send the message */
188 sof_mailbox_write(sdev, sdev->host_box.offset, msg->msg_data,
189 msg->msg_size);
190 snd_sof_dsp_write64(sdev, DSP_BAR, SHIM_IPCX, SHIM_BYT_IPCX_BUSY);
191
192 return 0;
193}
194EXPORT_SYMBOL_NS(atom_send_msg, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
195
196int atom_get_mailbox_offset(struct snd_sof_dev *sdev)
197{
198 return MBOX_OFFSET;
199}
200EXPORT_SYMBOL_NS(atom_get_mailbox_offset, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
201
202int atom_get_window_offset(struct snd_sof_dev *sdev, u32 id)
203{
204 return MBOX_OFFSET;
205}
206EXPORT_SYMBOL_NS(atom_get_window_offset, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
207
208static void atom_host_done(struct snd_sof_dev *sdev)
209{
210 /* clear BUSY bit and set DONE bit - accept new messages */
211 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR, SHIM_IPCD,
212 SHIM_BYT_IPCD_BUSY |
213 SHIM_BYT_IPCD_DONE,
214 SHIM_BYT_IPCD_DONE);
215
216 /* unmask and prepare to receive next new message */
217 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR, SHIM_IMRX,
218 SHIM_IMRX_BUSY, 0);
219}
220
221static void atom_dsp_done(struct snd_sof_dev *sdev)
222{
223 /* clear DONE bit - tell DSP we have completed */
224 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR, SHIM_IPCX,
225 SHIM_BYT_IPCX_DONE, 0);
226}
227
228/*
229 * DSP control.
230 */
231
232int atom_run(struct snd_sof_dev *sdev)
233{
234 int tries = 10;
235
236 /* release stall and wait to unstall */
237 snd_sof_dsp_update_bits64(sdev, DSP_BAR, SHIM_CSR,
238 SHIM_BYT_CSR_STALL, 0x0);
239 while (tries--) {
240 if (!(snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_CSR) &
241 SHIM_BYT_CSR_PWAITMODE))
242 break;
243 msleep(100);
244 }
245 if (tries < 0)
246 return -ENODEV;
247
248 /* return init core mask */
249 return 1;
250}
251EXPORT_SYMBOL_NS(atom_run, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
252
253int atom_reset(struct snd_sof_dev *sdev)
254{
255 /* put DSP into reset, set reset vector and stall */
256 snd_sof_dsp_update_bits64(sdev, DSP_BAR, SHIM_CSR,
257 SHIM_BYT_CSR_RST | SHIM_BYT_CSR_VECTOR_SEL |
258 SHIM_BYT_CSR_STALL,
259 SHIM_BYT_CSR_RST | SHIM_BYT_CSR_VECTOR_SEL |
260 SHIM_BYT_CSR_STALL);
261
262 usleep_range(10, 15);
263
264 /* take DSP out of reset and keep stalled for FW loading */
265 snd_sof_dsp_update_bits64(sdev, DSP_BAR, SHIM_CSR,
266 SHIM_BYT_CSR_RST, 0);
267
268 return 0;
269}
270EXPORT_SYMBOL_NS(atom_reset, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
271
272static const char *fixup_tplg_name(struct snd_sof_dev *sdev,
273 const char *sof_tplg_filename,
274 const char *ssp_str)
275{
276 const char *tplg_filename = NULL;
277 const char *split_ext;
278 char *filename, *tmp;
279
280 filename = kstrdup(sof_tplg_filename, GFP_KERNEL);
281 if (!filename)
282 return NULL;
283
284 /* this assumes a .tplg extension */
285 tmp = filename;
286 split_ext = strsep(&tmp, ".");
287 if (split_ext)
288 tplg_filename = devm_kasprintf(sdev->dev, GFP_KERNEL,
289 "%s-%s.tplg",
290 split_ext, ssp_str);
291 kfree(filename);
292
293 return tplg_filename;
294}
295
296struct snd_soc_acpi_mach *atom_machine_select(struct snd_sof_dev *sdev)
297{
298 struct snd_sof_pdata *sof_pdata = sdev->pdata;
299 const struct sof_dev_desc *desc = sof_pdata->desc;
300 struct snd_soc_acpi_mach *mach;
301 struct platform_device *pdev;
302 const char *tplg_filename;
303
304 mach = snd_soc_acpi_find_machine(desc->machines);
305 if (!mach) {
306 dev_warn(sdev->dev, "warning: No matching ASoC machine driver found\n");
307 return NULL;
308 }
309
310 pdev = to_platform_device(sdev->dev);
311 if (soc_intel_is_byt_cr(pdev)) {
312 dev_dbg(sdev->dev,
313 "BYT-CR detected, SSP0 used instead of SSP2\n");
314
315 tplg_filename = fixup_tplg_name(sdev,
316 mach->sof_tplg_filename,
317 "ssp0");
318 } else {
319 tplg_filename = mach->sof_tplg_filename;
320 }
321
322 if (!tplg_filename) {
323 dev_dbg(sdev->dev,
324 "error: no topology filename\n");
325 return NULL;
326 }
327
328 sof_pdata->tplg_filename = tplg_filename;
329 mach->mach_params.acpi_ipc_irq_index = desc->irqindex_host_ipc;
330
331 return mach;
332}
333EXPORT_SYMBOL_NS(atom_machine_select, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
334
335/* Atom DAIs */
336struct snd_soc_dai_driver atom_dai[] = {
337{
338 .name = "ssp0-port",
339 .playback = {
340 .channels_min = 1,
341 .channels_max = 8,
342 },
343 .capture = {
344 .channels_min = 1,
345 .channels_max = 8,
346 },
347},
348{
349 .name = "ssp1-port",
350 .playback = {
351 .channels_min = 1,
352 .channels_max = 8,
353 },
354 .capture = {
355 .channels_min = 1,
356 .channels_max = 8,
357 },
358},
359{
360 .name = "ssp2-port",
361 .playback = {
362 .channels_min = 1,
363 .channels_max = 8,
364 },
365 .capture = {
366 .channels_min = 1,
367 .channels_max = 8,
368 }
369},
370{
371 .name = "ssp3-port",
372 .playback = {
373 .channels_min = 1,
374 .channels_max = 8,
375 },
376 .capture = {
377 .channels_min = 1,
378 .channels_max = 8,
379 },
380},
381{
382 .name = "ssp4-port",
383 .playback = {
384 .channels_min = 1,
385 .channels_max = 8,
386 },
387 .capture = {
388 .channels_min = 1,
389 .channels_max = 8,
390 },
391},
392{
393 .name = "ssp5-port",
394 .playback = {
395 .channels_min = 1,
396 .channels_max = 8,
397 },
398 .capture = {
399 .channels_min = 1,
400 .channels_max = 8,
401 },
402},
403};
404EXPORT_SYMBOL_NS(atom_dai, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
405
406void atom_set_mach_params(struct snd_soc_acpi_mach *mach,
407 struct snd_sof_dev *sdev)
408{
409 struct snd_sof_pdata *pdata = sdev->pdata;
410 const struct sof_dev_desc *desc = pdata->desc;
411 struct snd_soc_acpi_mach_params *mach_params;
412
413 mach_params = &mach->mach_params;
414 mach_params->platform = dev_name(sdev->dev);
415 mach_params->num_dai_drivers = desc->ops->num_drv;
416 mach_params->dai_drivers = desc->ops->drv;
417}
418EXPORT_SYMBOL_NS(atom_set_mach_params, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
419
420MODULE_LICENSE("Dual BSD/GPL");
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-2021 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 Atom devices
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 "atom.h"
24#include "../sof-acpi-dev.h"
25#include "../sof-audio.h"
26#include "../../intel/common/soc-intel-quirks.h"
27
28static void atom_host_done(struct snd_sof_dev *sdev);
29static void atom_dsp_done(struct snd_sof_dev *sdev);
30static void atom_get_reply(struct snd_sof_dev *sdev);
31
32/*
33 * Debug
34 */
35
36static void atom_get_registers(struct snd_sof_dev *sdev,
37 struct sof_ipc_dsp_oops_xtensa *xoops,
38 struct sof_ipc_panic_info *panic_info,
39 u32 *stack, size_t stack_words)
40{
41 u32 offset = sdev->dsp_oops_offset;
42
43 /* first read regsisters */
44 sof_mailbox_read(sdev, offset, xoops, sizeof(*xoops));
45
46 /* note: variable AR register array is not read */
47
48 /* then get panic info */
49 if (xoops->arch_hdr.totalsize > EXCEPT_MAX_HDR_SIZE) {
50 dev_err(sdev->dev, "invalid header size 0x%x. FW oops is bogus\n",
51 xoops->arch_hdr.totalsize);
52 return;
53 }
54 offset += xoops->arch_hdr.totalsize;
55 sof_mailbox_read(sdev, offset, panic_info, sizeof(*panic_info));
56
57 /* then get the stack */
58 offset += sizeof(*panic_info);
59 sof_mailbox_read(sdev, offset, stack, stack_words * sizeof(u32));
60}
61
62void atom_dump(struct snd_sof_dev *sdev, u32 flags)
63{
64 struct sof_ipc_dsp_oops_xtensa xoops;
65 struct sof_ipc_panic_info panic_info;
66 u32 stack[STACK_DUMP_SIZE];
67 u64 status, panic, imrd, imrx;
68
69 /* now try generic SOF status messages */
70 status = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCD);
71 panic = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCX);
72 atom_get_registers(sdev, &xoops, &panic_info, stack,
73 STACK_DUMP_SIZE);
74 snd_sof_get_status(sdev, status, panic, &xoops, &panic_info, stack,
75 STACK_DUMP_SIZE);
76
77 /* provide some context for firmware debug */
78 imrx = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IMRX);
79 imrd = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IMRD);
80 dev_err(sdev->dev,
81 "error: ipc host -> DSP: pending %s complete %s raw 0x%llx\n",
82 (panic & SHIM_IPCX_BUSY) ? "yes" : "no",
83 (panic & SHIM_IPCX_DONE) ? "yes" : "no", panic);
84 dev_err(sdev->dev,
85 "error: mask host: pending %s complete %s raw 0x%llx\n",
86 (imrx & SHIM_IMRX_BUSY) ? "yes" : "no",
87 (imrx & SHIM_IMRX_DONE) ? "yes" : "no", imrx);
88 dev_err(sdev->dev,
89 "error: ipc DSP -> host: pending %s complete %s raw 0x%llx\n",
90 (status & SHIM_IPCD_BUSY) ? "yes" : "no",
91 (status & SHIM_IPCD_DONE) ? "yes" : "no", status);
92 dev_err(sdev->dev,
93 "error: mask DSP: pending %s complete %s raw 0x%llx\n",
94 (imrd & SHIM_IMRD_BUSY) ? "yes" : "no",
95 (imrd & SHIM_IMRD_DONE) ? "yes" : "no", imrd);
96
97}
98EXPORT_SYMBOL_NS(atom_dump, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
99
100/*
101 * IPC Doorbell IRQ handler and thread.
102 */
103
104irqreturn_t atom_irq_handler(int irq, void *context)
105{
106 struct snd_sof_dev *sdev = context;
107 u64 ipcx, ipcd;
108 int ret = IRQ_NONE;
109
110 ipcx = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCX);
111 ipcd = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCD);
112
113 if (ipcx & SHIM_BYT_IPCX_DONE) {
114
115 /* reply message from DSP, Mask Done interrupt first */
116 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR,
117 SHIM_IMRX,
118 SHIM_IMRX_DONE,
119 SHIM_IMRX_DONE);
120 ret = IRQ_WAKE_THREAD;
121 }
122
123 if (ipcd & SHIM_BYT_IPCD_BUSY) {
124
125 /* new message from DSP, Mask Busy interrupt first */
126 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR,
127 SHIM_IMRX,
128 SHIM_IMRX_BUSY,
129 SHIM_IMRX_BUSY);
130 ret = IRQ_WAKE_THREAD;
131 }
132
133 return ret;
134}
135EXPORT_SYMBOL_NS(atom_irq_handler, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
136
137irqreturn_t atom_irq_thread(int irq, void *context)
138{
139 struct snd_sof_dev *sdev = context;
140 u64 ipcx, ipcd;
141
142 ipcx = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCX);
143 ipcd = snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_IPCD);
144
145 /* reply message from DSP */
146 if (ipcx & SHIM_BYT_IPCX_DONE) {
147
148 spin_lock_irq(&sdev->ipc_lock);
149
150 /*
151 * handle immediate reply from DSP core. If the msg is
152 * found, set done bit in cmd_done which is called at the
153 * end of message processing function, else set it here
154 * because the done bit can't be set in cmd_done function
155 * which is triggered by msg
156 */
157 atom_get_reply(sdev);
158 snd_sof_ipc_reply(sdev, ipcx);
159
160 atom_dsp_done(sdev);
161
162 spin_unlock_irq(&sdev->ipc_lock);
163 }
164
165 /* new message from DSP */
166 if (ipcd & SHIM_BYT_IPCD_BUSY) {
167
168 /* Handle messages from DSP Core */
169 if ((ipcd & SOF_IPC_PANIC_MAGIC_MASK) == SOF_IPC_PANIC_MAGIC) {
170 snd_sof_dsp_panic(sdev, PANIC_OFFSET(ipcd) +
171 MBOX_OFFSET);
172 } else {
173 snd_sof_ipc_msgs_rx(sdev);
174 }
175
176 atom_host_done(sdev);
177 }
178
179 return IRQ_HANDLED;
180}
181EXPORT_SYMBOL_NS(atom_irq_thread, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
182
183int atom_send_msg(struct snd_sof_dev *sdev, struct snd_sof_ipc_msg *msg)
184{
185 /* unmask and prepare to receive Done interrupt */
186 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR, SHIM_IMRX,
187 SHIM_IMRX_DONE, 0);
188
189 /* send the message */
190 sof_mailbox_write(sdev, sdev->host_box.offset, msg->msg_data,
191 msg->msg_size);
192 snd_sof_dsp_write64(sdev, DSP_BAR, SHIM_IPCX, SHIM_BYT_IPCX_BUSY);
193
194 return 0;
195}
196EXPORT_SYMBOL_NS(atom_send_msg, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
197
198static void atom_get_reply(struct snd_sof_dev *sdev)
199{
200 struct snd_sof_ipc_msg *msg = sdev->msg;
201 struct sof_ipc_reply reply;
202 int ret = 0;
203
204 /*
205 * Sometimes, there is unexpected reply ipc arriving. The reply
206 * ipc belongs to none of the ipcs sent from driver.
207 * In this case, the driver must ignore the ipc.
208 */
209 if (!msg) {
210 dev_warn(sdev->dev, "unexpected ipc interrupt raised!\n");
211 return;
212 }
213
214 /* get reply */
215 sof_mailbox_read(sdev, sdev->host_box.offset, &reply, sizeof(reply));
216
217 if (reply.error < 0) {
218 memcpy(msg->reply_data, &reply, sizeof(reply));
219 ret = reply.error;
220 } else {
221 /* reply correct size ? */
222 if (reply.hdr.size != msg->reply_size) {
223 dev_err(sdev->dev, "error: reply expected %zu got %u bytes\n",
224 msg->reply_size, reply.hdr.size);
225 ret = -EINVAL;
226 }
227
228 /* read the message */
229 if (msg->reply_size > 0)
230 sof_mailbox_read(sdev, sdev->host_box.offset,
231 msg->reply_data, msg->reply_size);
232 }
233
234 msg->reply_error = ret;
235}
236
237int atom_get_mailbox_offset(struct snd_sof_dev *sdev)
238{
239 return MBOX_OFFSET;
240}
241EXPORT_SYMBOL_NS(atom_get_mailbox_offset, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
242
243int atom_get_window_offset(struct snd_sof_dev *sdev, u32 id)
244{
245 return MBOX_OFFSET;
246}
247EXPORT_SYMBOL_NS(atom_get_window_offset, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
248
249static void atom_host_done(struct snd_sof_dev *sdev)
250{
251 /* clear BUSY bit and set DONE bit - accept new messages */
252 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR, SHIM_IPCD,
253 SHIM_BYT_IPCD_BUSY |
254 SHIM_BYT_IPCD_DONE,
255 SHIM_BYT_IPCD_DONE);
256
257 /* unmask and prepare to receive next new message */
258 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR, SHIM_IMRX,
259 SHIM_IMRX_BUSY, 0);
260}
261
262static void atom_dsp_done(struct snd_sof_dev *sdev)
263{
264 /* clear DONE bit - tell DSP we have completed */
265 snd_sof_dsp_update_bits64_unlocked(sdev, DSP_BAR, SHIM_IPCX,
266 SHIM_BYT_IPCX_DONE, 0);
267}
268
269/*
270 * DSP control.
271 */
272
273int atom_run(struct snd_sof_dev *sdev)
274{
275 int tries = 10;
276
277 /* release stall and wait to unstall */
278 snd_sof_dsp_update_bits64(sdev, DSP_BAR, SHIM_CSR,
279 SHIM_BYT_CSR_STALL, 0x0);
280 while (tries--) {
281 if (!(snd_sof_dsp_read64(sdev, DSP_BAR, SHIM_CSR) &
282 SHIM_BYT_CSR_PWAITMODE))
283 break;
284 msleep(100);
285 }
286 if (tries < 0) {
287 dev_err(sdev->dev, "error: unable to run DSP firmware\n");
288 atom_dump(sdev, SOF_DBG_DUMP_REGS | SOF_DBG_DUMP_MBOX);
289 return -ENODEV;
290 }
291
292 /* return init core mask */
293 return 1;
294}
295EXPORT_SYMBOL_NS(atom_run, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
296
297int atom_reset(struct snd_sof_dev *sdev)
298{
299 /* put DSP into reset, set reset vector and stall */
300 snd_sof_dsp_update_bits64(sdev, DSP_BAR, SHIM_CSR,
301 SHIM_BYT_CSR_RST | SHIM_BYT_CSR_VECTOR_SEL |
302 SHIM_BYT_CSR_STALL,
303 SHIM_BYT_CSR_RST | SHIM_BYT_CSR_VECTOR_SEL |
304 SHIM_BYT_CSR_STALL);
305
306 usleep_range(10, 15);
307
308 /* take DSP out of reset and keep stalled for FW loading */
309 snd_sof_dsp_update_bits64(sdev, DSP_BAR, SHIM_CSR,
310 SHIM_BYT_CSR_RST, 0);
311
312 return 0;
313}
314EXPORT_SYMBOL_NS(atom_reset, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
315
316static const char *fixup_tplg_name(struct snd_sof_dev *sdev,
317 const char *sof_tplg_filename,
318 const char *ssp_str)
319{
320 const char *tplg_filename = NULL;
321 char *filename;
322 char *split_ext;
323
324 filename = devm_kstrdup(sdev->dev, sof_tplg_filename, GFP_KERNEL);
325 if (!filename)
326 return NULL;
327
328 /* this assumes a .tplg extension */
329 split_ext = strsep(&filename, ".");
330 if (split_ext) {
331 tplg_filename = devm_kasprintf(sdev->dev, GFP_KERNEL,
332 "%s-%s.tplg",
333 split_ext, ssp_str);
334 if (!tplg_filename)
335 return NULL;
336 }
337 return tplg_filename;
338}
339
340void atom_machine_select(struct snd_sof_dev *sdev)
341{
342 struct snd_sof_pdata *sof_pdata = sdev->pdata;
343 const struct sof_dev_desc *desc = sof_pdata->desc;
344 struct snd_soc_acpi_mach *mach;
345 struct platform_device *pdev;
346 const char *tplg_filename;
347
348 mach = snd_soc_acpi_find_machine(desc->machines);
349 if (!mach) {
350 dev_warn(sdev->dev, "warning: No matching ASoC machine driver found\n");
351 return;
352 }
353
354 pdev = to_platform_device(sdev->dev);
355 if (soc_intel_is_byt_cr(pdev)) {
356 dev_dbg(sdev->dev,
357 "BYT-CR detected, SSP0 used instead of SSP2\n");
358
359 tplg_filename = fixup_tplg_name(sdev,
360 mach->sof_tplg_filename,
361 "ssp0");
362 } else {
363 tplg_filename = mach->sof_tplg_filename;
364 }
365
366 if (!tplg_filename) {
367 dev_dbg(sdev->dev,
368 "error: no topology filename\n");
369 return;
370 }
371
372 sof_pdata->tplg_filename = tplg_filename;
373 mach->mach_params.acpi_ipc_irq_index = desc->irqindex_host_ipc;
374 sof_pdata->machine = mach;
375}
376EXPORT_SYMBOL_NS(atom_machine_select, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
377
378/* Atom DAIs */
379struct snd_soc_dai_driver atom_dai[] = {
380{
381 .name = "ssp0-port",
382 .playback = {
383 .channels_min = 1,
384 .channels_max = 8,
385 },
386 .capture = {
387 .channels_min = 1,
388 .channels_max = 8,
389 },
390},
391{
392 .name = "ssp1-port",
393 .playback = {
394 .channels_min = 1,
395 .channels_max = 8,
396 },
397 .capture = {
398 .channels_min = 1,
399 .channels_max = 8,
400 },
401},
402{
403 .name = "ssp2-port",
404 .playback = {
405 .channels_min = 1,
406 .channels_max = 8,
407 },
408 .capture = {
409 .channels_min = 1,
410 .channels_max = 8,
411 }
412},
413{
414 .name = "ssp3-port",
415 .playback = {
416 .channels_min = 1,
417 .channels_max = 8,
418 },
419 .capture = {
420 .channels_min = 1,
421 .channels_max = 8,
422 },
423},
424{
425 .name = "ssp4-port",
426 .playback = {
427 .channels_min = 1,
428 .channels_max = 8,
429 },
430 .capture = {
431 .channels_min = 1,
432 .channels_max = 8,
433 },
434},
435{
436 .name = "ssp5-port",
437 .playback = {
438 .channels_min = 1,
439 .channels_max = 8,
440 },
441 .capture = {
442 .channels_min = 1,
443 .channels_max = 8,
444 },
445},
446};
447EXPORT_SYMBOL_NS(atom_dai, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
448
449void atom_set_mach_params(const struct snd_soc_acpi_mach *mach,
450 struct snd_sof_dev *sdev)
451{
452 struct snd_sof_pdata *pdata = sdev->pdata;
453 const struct sof_dev_desc *desc = pdata->desc;
454 struct snd_soc_acpi_mach_params *mach_params;
455
456 mach_params = (struct snd_soc_acpi_mach_params *)&mach->mach_params;
457 mach_params->platform = dev_name(sdev->dev);
458 mach_params->num_dai_drivers = desc->ops->num_drv;
459 mach_params->dai_drivers = desc->ops->drv;
460}
461EXPORT_SYMBOL_NS(atom_set_mach_params, SND_SOC_SOF_INTEL_ATOM_HIFI_EP);
462
463MODULE_LICENSE("Dual BSD/GPL");