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 Intel Corporation. All rights reserved.
7//
8// Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9// Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10// Rander Wang <rander.wang@intel.com>
11// Keyon Jie <yang.jie@linux.intel.com>
12//
13
14/*
15 * Hardware interface for generic Intel audio DSP HDA IP
16 */
17
18#include <sound/sof/ipc4/header.h>
19#include <trace/events/sof_intel.h>
20#include "../ops.h"
21#include "hda.h"
22
23static void hda_dsp_ipc_host_done(struct snd_sof_dev *sdev)
24{
25 /*
26 * tell DSP cmd is done - clear busy
27 * interrupt and send reply msg to dsp
28 */
29 snd_sof_dsp_update_bits_forced(sdev, HDA_DSP_BAR,
30 HDA_DSP_REG_HIPCT,
31 HDA_DSP_REG_HIPCT_BUSY,
32 HDA_DSP_REG_HIPCT_BUSY);
33
34 /* unmask BUSY interrupt */
35 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR,
36 HDA_DSP_REG_HIPCCTL,
37 HDA_DSP_REG_HIPCCTL_BUSY,
38 HDA_DSP_REG_HIPCCTL_BUSY);
39}
40
41static void hda_dsp_ipc_dsp_done(struct snd_sof_dev *sdev)
42{
43 /*
44 * set DONE bit - tell DSP we have received the reply msg
45 * from DSP, and processed it, don't send more reply to host
46 */
47 snd_sof_dsp_update_bits_forced(sdev, HDA_DSP_BAR,
48 HDA_DSP_REG_HIPCIE,
49 HDA_DSP_REG_HIPCIE_DONE,
50 HDA_DSP_REG_HIPCIE_DONE);
51
52 /* unmask Done interrupt */
53 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR,
54 HDA_DSP_REG_HIPCCTL,
55 HDA_DSP_REG_HIPCCTL_DONE,
56 HDA_DSP_REG_HIPCCTL_DONE);
57}
58
59int hda_dsp_ipc_send_msg(struct snd_sof_dev *sdev, struct snd_sof_ipc_msg *msg)
60{
61 /* send IPC message to DSP */
62 sof_mailbox_write(sdev, sdev->host_box.offset, msg->msg_data,
63 msg->msg_size);
64 snd_sof_dsp_write(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCI,
65 HDA_DSP_REG_HIPCI_BUSY);
66
67 return 0;
68}
69
70static inline bool hda_dsp_ipc4_pm_msg(u32 primary)
71{
72 /* pm setting is only supported by module msg */
73 if (SOF_IPC4_MSG_IS_MODULE_MSG(primary) != SOF_IPC4_MODULE_MSG)
74 return false;
75
76 if (SOF_IPC4_MSG_TYPE_GET(primary) == SOF_IPC4_MOD_SET_DX ||
77 SOF_IPC4_MSG_TYPE_GET(primary) == SOF_IPC4_MOD_SET_D0IX)
78 return true;
79
80 return false;
81}
82
83void hda_dsp_ipc4_schedule_d0i3_work(struct sof_intel_hda_dev *hdev,
84 struct snd_sof_ipc_msg *msg)
85{
86 struct sof_ipc4_msg *msg_data = msg->msg_data;
87
88 /* Schedule a delayed work for d0i3 entry after sending non-pm ipc msg */
89 if (hda_dsp_ipc4_pm_msg(msg_data->primary))
90 return;
91
92 mod_delayed_work(system_wq, &hdev->d0i3_work,
93 msecs_to_jiffies(SOF_HDA_D0I3_WORK_DELAY_MS));
94}
95
96int hda_dsp_ipc4_send_msg(struct snd_sof_dev *sdev, struct snd_sof_ipc_msg *msg)
97{
98 struct sof_intel_hda_dev *hdev = sdev->pdata->hw_pdata;
99 struct sof_ipc4_msg *msg_data = msg->msg_data;
100
101 if (hda_ipc4_tx_is_busy(sdev)) {
102 hdev->delayed_ipc_tx_msg = msg;
103 return 0;
104 }
105
106 hdev->delayed_ipc_tx_msg = NULL;
107
108 /* send the message via mailbox */
109 if (msg_data->data_size)
110 sof_mailbox_write(sdev, sdev->host_box.offset, msg_data->data_ptr,
111 msg_data->data_size);
112
113 snd_sof_dsp_write(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCIE, msg_data->extension);
114 snd_sof_dsp_write(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCI,
115 msg_data->primary | HDA_DSP_REG_HIPCI_BUSY);
116
117 hda_dsp_ipc4_schedule_d0i3_work(hdev, msg);
118
119 return 0;
120}
121
122void hda_dsp_ipc_get_reply(struct snd_sof_dev *sdev)
123{
124 struct snd_sof_ipc_msg *msg = sdev->msg;
125 struct sof_ipc_reply reply;
126 struct sof_ipc_cmd_hdr *hdr;
127
128 /*
129 * Sometimes, there is unexpected reply ipc arriving. The reply
130 * ipc belongs to none of the ipcs sent from driver.
131 * In this case, the driver must ignore the ipc.
132 */
133 if (!msg) {
134 dev_warn(sdev->dev, "unexpected ipc interrupt raised!\n");
135 return;
136 }
137
138 hdr = msg->msg_data;
139 if (hdr->cmd == (SOF_IPC_GLB_PM_MSG | SOF_IPC_PM_CTX_SAVE) ||
140 hdr->cmd == (SOF_IPC_GLB_PM_MSG | SOF_IPC_PM_GATE)) {
141 /*
142 * memory windows are powered off before sending IPC reply,
143 * so we can't read the mailbox for CTX_SAVE and PM_GATE
144 * replies.
145 */
146 reply.error = 0;
147 reply.hdr.cmd = SOF_IPC_GLB_REPLY;
148 reply.hdr.size = sizeof(reply);
149 memcpy(msg->reply_data, &reply, sizeof(reply));
150
151 msg->reply_error = 0;
152 } else {
153 snd_sof_ipc_get_reply(sdev);
154 }
155}
156
157irqreturn_t hda_dsp_ipc4_irq_thread(int irq, void *context)
158{
159 struct sof_ipc4_msg notification_data = {{ 0 }};
160 struct snd_sof_dev *sdev = context;
161 bool ack_received = false;
162 bool ipc_irq = false;
163 u32 hipcie, hipct;
164
165 hipcie = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCIE);
166 hipct = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCT);
167
168 if (hipcie & HDA_DSP_REG_HIPCIE_DONE) {
169 /* DSP received the message */
170 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCCTL,
171 HDA_DSP_REG_HIPCCTL_DONE, 0);
172 hda_dsp_ipc_dsp_done(sdev);
173
174 ipc_irq = true;
175 ack_received = true;
176 }
177
178 if (hipct & HDA_DSP_REG_HIPCT_BUSY) {
179 /* Message from DSP (reply or notification) */
180 u32 hipcte = snd_sof_dsp_read(sdev, HDA_DSP_BAR,
181 HDA_DSP_REG_HIPCTE);
182 u32 primary = hipct & HDA_DSP_REG_HIPCT_MSG_MASK;
183 u32 extension = hipcte & HDA_DSP_REG_HIPCTE_MSG_MASK;
184
185 /* mask BUSY interrupt */
186 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCCTL,
187 HDA_DSP_REG_HIPCCTL_BUSY, 0);
188
189 if (primary & SOF_IPC4_MSG_DIR_MASK) {
190 /* Reply received */
191 if (likely(sdev->fw_state == SOF_FW_BOOT_COMPLETE)) {
192 struct sof_ipc4_msg *data = sdev->ipc->msg.reply_data;
193
194 data->primary = primary;
195 data->extension = extension;
196
197 spin_lock_irq(&sdev->ipc_lock);
198
199 snd_sof_ipc_get_reply(sdev);
200 hda_dsp_ipc_host_done(sdev);
201 snd_sof_ipc_reply(sdev, data->primary);
202
203 spin_unlock_irq(&sdev->ipc_lock);
204 } else {
205 dev_dbg_ratelimited(sdev->dev,
206 "IPC reply before FW_READY: %#x|%#x\n",
207 primary, extension);
208 }
209 } else {
210 /* Notification received */
211
212 notification_data.primary = primary;
213 notification_data.extension = extension;
214 sdev->ipc->msg.rx_data = ¬ification_data;
215 snd_sof_ipc_msgs_rx(sdev);
216 sdev->ipc->msg.rx_data = NULL;
217
218 /* Let DSP know that we have finished processing the message */
219 hda_dsp_ipc_host_done(sdev);
220 }
221
222 ipc_irq = true;
223 }
224
225 if (!ipc_irq)
226 /* This interrupt is not shared so no need to return IRQ_NONE. */
227 dev_dbg_ratelimited(sdev->dev, "nothing to do in IPC IRQ thread\n");
228
229 if (ack_received) {
230 struct sof_intel_hda_dev *hdev = sdev->pdata->hw_pdata;
231
232 if (hdev->delayed_ipc_tx_msg)
233 hda_dsp_ipc4_send_msg(sdev, hdev->delayed_ipc_tx_msg);
234 }
235
236 return IRQ_HANDLED;
237}
238
239/* IPC handler thread */
240irqreturn_t hda_dsp_ipc_irq_thread(int irq, void *context)
241{
242 struct snd_sof_dev *sdev = context;
243 u32 hipci;
244 u32 hipcie;
245 u32 hipct;
246 u32 hipcte;
247 u32 msg;
248 u32 msg_ext;
249 bool ipc_irq = false;
250
251 /* read IPC status */
252 hipcie = snd_sof_dsp_read(sdev, HDA_DSP_BAR,
253 HDA_DSP_REG_HIPCIE);
254 hipct = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCT);
255 hipci = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCI);
256 hipcte = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCTE);
257
258 /* is this a reply message from the DSP */
259 if (hipcie & HDA_DSP_REG_HIPCIE_DONE) {
260 msg = hipci & HDA_DSP_REG_HIPCI_MSG_MASK;
261 msg_ext = hipcie & HDA_DSP_REG_HIPCIE_MSG_MASK;
262
263 trace_sof_intel_ipc_firmware_response(sdev, msg, msg_ext);
264
265 /* mask Done interrupt */
266 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR,
267 HDA_DSP_REG_HIPCCTL,
268 HDA_DSP_REG_HIPCCTL_DONE, 0);
269
270 /*
271 * Make sure the interrupt thread cannot be preempted between
272 * waking up the sender and re-enabling the interrupt. Also
273 * protect against a theoretical race with sof_ipc_tx_message():
274 * if the DSP is fast enough to receive an IPC message, reply to
275 * it, and the host interrupt processing calls this function on
276 * a different core from the one, where the sending is taking
277 * place, the message might not yet be marked as expecting a
278 * reply.
279 */
280 if (likely(sdev->fw_state == SOF_FW_BOOT_COMPLETE)) {
281 spin_lock_irq(&sdev->ipc_lock);
282
283 /* handle immediate reply from DSP core */
284 hda_dsp_ipc_get_reply(sdev);
285 snd_sof_ipc_reply(sdev, msg);
286
287 /* set the done bit */
288 hda_dsp_ipc_dsp_done(sdev);
289
290 spin_unlock_irq(&sdev->ipc_lock);
291 } else {
292 dev_dbg_ratelimited(sdev->dev, "IPC reply before FW_READY: %#x\n",
293 msg);
294 }
295
296 ipc_irq = true;
297 }
298
299 /* is this a new message from DSP */
300 if (hipct & HDA_DSP_REG_HIPCT_BUSY) {
301 msg = hipct & HDA_DSP_REG_HIPCT_MSG_MASK;
302 msg_ext = hipcte & HDA_DSP_REG_HIPCTE_MSG_MASK;
303
304 trace_sof_intel_ipc_firmware_initiated(sdev, msg, msg_ext);
305
306 /* mask BUSY interrupt */
307 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR,
308 HDA_DSP_REG_HIPCCTL,
309 HDA_DSP_REG_HIPCCTL_BUSY, 0);
310
311 /* handle messages from DSP */
312 if ((hipct & SOF_IPC_PANIC_MAGIC_MASK) == SOF_IPC_PANIC_MAGIC) {
313 struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
314 bool non_recoverable = true;
315
316 /*
317 * This is a PANIC message!
318 *
319 * If it is arriving during firmware boot and it is not
320 * the last boot attempt then change the non_recoverable
321 * to false as the DSP might be able to boot in the next
322 * iteration(s)
323 */
324 if (sdev->fw_state == SOF_FW_BOOT_IN_PROGRESS &&
325 hda->boot_iteration < HDA_FW_BOOT_ATTEMPTS)
326 non_recoverable = false;
327
328 snd_sof_dsp_panic(sdev, HDA_DSP_PANIC_OFFSET(msg_ext),
329 non_recoverable);
330 } else {
331 /* normal message - process normally */
332 snd_sof_ipc_msgs_rx(sdev);
333 }
334
335 hda_dsp_ipc_host_done(sdev);
336
337 ipc_irq = true;
338 }
339
340 if (!ipc_irq) {
341 /*
342 * This interrupt is not shared so no need to return IRQ_NONE.
343 */
344 dev_dbg_ratelimited(sdev->dev,
345 "nothing to do in IPC IRQ thread\n");
346 }
347
348 return IRQ_HANDLED;
349}
350
351/* Check if an IPC IRQ occurred */
352bool hda_dsp_check_ipc_irq(struct snd_sof_dev *sdev)
353{
354 struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
355 bool ret = false;
356 u32 irq_status;
357
358 if (sdev->dspless_mode_selected)
359 return false;
360
361 /* store status */
362 irq_status = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_ADSPIS);
363 trace_sof_intel_hda_irq_ipc_check(sdev, irq_status);
364
365 /* invalid message ? */
366 if (irq_status == 0xffffffff)
367 goto out;
368
369 /* IPC message ? */
370 if (irq_status & HDA_DSP_ADSPIS_IPC)
371 ret = true;
372
373 /* CLDMA message ? */
374 if (irq_status & HDA_DSP_ADSPIS_CL_DMA) {
375 hda->code_loading = 0;
376 wake_up(&hda->waitq);
377 ret = false;
378 }
379
380out:
381 return ret;
382}
383
384int hda_dsp_ipc_get_mailbox_offset(struct snd_sof_dev *sdev)
385{
386 return HDA_DSP_MBOX_UPLINK_OFFSET;
387}
388
389int hda_dsp_ipc_get_window_offset(struct snd_sof_dev *sdev, u32 id)
390{
391 return SRAM_WINDOW_OFFSET(id);
392}
393
394int hda_ipc_msg_data(struct snd_sof_dev *sdev,
395 struct snd_sof_pcm_stream *sps,
396 void *p, size_t sz)
397{
398 if (!sps || !sdev->stream_box.size) {
399 sof_mailbox_read(sdev, sdev->dsp_box.offset, p, sz);
400 } else {
401 struct snd_pcm_substream *substream = sps->substream;
402 struct hdac_stream *hstream = substream->runtime->private_data;
403 struct sof_intel_hda_stream *hda_stream;
404
405 hda_stream = container_of(hstream,
406 struct sof_intel_hda_stream,
407 hext_stream.hstream);
408
409 /* The stream might already be closed */
410 if (!hstream)
411 return -ESTRPIPE;
412
413 sof_mailbox_read(sdev, hda_stream->sof_intel_stream.posn_offset, p, sz);
414 }
415
416 return 0;
417}
418
419int hda_set_stream_data_offset(struct snd_sof_dev *sdev,
420 struct snd_sof_pcm_stream *sps,
421 size_t posn_offset)
422{
423 struct snd_pcm_substream *substream = sps->substream;
424 struct hdac_stream *hstream = substream->runtime->private_data;
425 struct sof_intel_hda_stream *hda_stream;
426
427 hda_stream = container_of(hstream, struct sof_intel_hda_stream,
428 hext_stream.hstream);
429
430 /* check for unaligned offset or overflow */
431 if (posn_offset > sdev->stream_box.size ||
432 posn_offset % sizeof(struct sof_ipc_stream_posn) != 0)
433 return -EINVAL;
434
435 hda_stream->sof_intel_stream.posn_offset = sdev->stream_box.offset + posn_offset;
436
437 dev_dbg(sdev->dev, "pcm: stream dir %d, posn mailbox offset is %zu",
438 substream->stream, hda_stream->sof_intel_stream.posn_offset);
439
440 return 0;
441}
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// Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9// Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10// Rander Wang <rander.wang@intel.com>
11// Keyon Jie <yang.jie@linux.intel.com>
12//
13
14/*
15 * Hardware interface for generic Intel audio DSP HDA IP
16 */
17
18#include "../ops.h"
19#include "hda.h"
20
21static void hda_dsp_ipc_host_done(struct snd_sof_dev *sdev)
22{
23 /*
24 * tell DSP cmd is done - clear busy
25 * interrupt and send reply msg to dsp
26 */
27 snd_sof_dsp_update_bits_forced(sdev, HDA_DSP_BAR,
28 HDA_DSP_REG_HIPCT,
29 HDA_DSP_REG_HIPCT_BUSY,
30 HDA_DSP_REG_HIPCT_BUSY);
31
32 /* unmask BUSY interrupt */
33 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR,
34 HDA_DSP_REG_HIPCCTL,
35 HDA_DSP_REG_HIPCCTL_BUSY,
36 HDA_DSP_REG_HIPCCTL_BUSY);
37}
38
39static void hda_dsp_ipc_dsp_done(struct snd_sof_dev *sdev)
40{
41 /*
42 * set DONE bit - tell DSP we have received the reply msg
43 * from DSP, and processed it, don't send more reply to host
44 */
45 snd_sof_dsp_update_bits_forced(sdev, HDA_DSP_BAR,
46 HDA_DSP_REG_HIPCIE,
47 HDA_DSP_REG_HIPCIE_DONE,
48 HDA_DSP_REG_HIPCIE_DONE);
49
50 /* unmask Done interrupt */
51 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR,
52 HDA_DSP_REG_HIPCCTL,
53 HDA_DSP_REG_HIPCCTL_DONE,
54 HDA_DSP_REG_HIPCCTL_DONE);
55}
56
57int hda_dsp_ipc_send_msg(struct snd_sof_dev *sdev, struct snd_sof_ipc_msg *msg)
58{
59 /* send IPC message to DSP */
60 sof_mailbox_write(sdev, sdev->host_box.offset, msg->msg_data,
61 msg->msg_size);
62 snd_sof_dsp_write(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCI,
63 HDA_DSP_REG_HIPCI_BUSY);
64
65 return 0;
66}
67
68void hda_dsp_ipc_get_reply(struct snd_sof_dev *sdev)
69{
70 struct snd_sof_ipc_msg *msg = sdev->msg;
71 struct sof_ipc_reply reply;
72 struct sof_ipc_cmd_hdr *hdr;
73 int ret = 0;
74
75 /*
76 * Sometimes, there is unexpected reply ipc arriving. The reply
77 * ipc belongs to none of the ipcs sent from driver.
78 * In this case, the driver must ignore the ipc.
79 */
80 if (!msg) {
81 dev_warn(sdev->dev, "unexpected ipc interrupt raised!\n");
82 return;
83 }
84
85 hdr = msg->msg_data;
86 if (hdr->cmd == (SOF_IPC_GLB_PM_MSG | SOF_IPC_PM_CTX_SAVE) ||
87 hdr->cmd == (SOF_IPC_GLB_PM_MSG | SOF_IPC_PM_GATE)) {
88 /*
89 * memory windows are powered off before sending IPC reply,
90 * so we can't read the mailbox for CTX_SAVE and PM_GATE
91 * replies.
92 */
93 reply.error = 0;
94 reply.hdr.cmd = SOF_IPC_GLB_REPLY;
95 reply.hdr.size = sizeof(reply);
96 memcpy(msg->reply_data, &reply, sizeof(reply));
97 goto out;
98 }
99
100 /* get IPC reply from DSP in the mailbox */
101 sof_mailbox_read(sdev, sdev->host_box.offset, &reply,
102 sizeof(reply));
103
104 if (reply.error < 0) {
105 memcpy(msg->reply_data, &reply, sizeof(reply));
106 ret = reply.error;
107 } else {
108 /* reply correct size ? */
109 if (reply.hdr.size != msg->reply_size &&
110 /* getter payload is never known upfront */
111 ((reply.hdr.cmd & SOF_GLB_TYPE_MASK) != SOF_IPC_GLB_PROBE)) {
112 dev_err(sdev->dev, "error: reply expected %zu got %u bytes\n",
113 msg->reply_size, reply.hdr.size);
114 ret = -EINVAL;
115 }
116
117 /* read the message */
118 if (msg->reply_size > 0)
119 sof_mailbox_read(sdev, sdev->host_box.offset,
120 msg->reply_data, msg->reply_size);
121 }
122
123out:
124 msg->reply_error = ret;
125
126}
127
128/* IPC handler thread */
129irqreturn_t hda_dsp_ipc_irq_thread(int irq, void *context)
130{
131 struct snd_sof_dev *sdev = context;
132 u32 hipci;
133 u32 hipcie;
134 u32 hipct;
135 u32 hipcte;
136 u32 msg;
137 u32 msg_ext;
138 bool ipc_irq = false;
139
140 /* read IPC status */
141 hipcie = snd_sof_dsp_read(sdev, HDA_DSP_BAR,
142 HDA_DSP_REG_HIPCIE);
143 hipct = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCT);
144 hipci = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCI);
145 hipcte = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCTE);
146
147 /* is this a reply message from the DSP */
148 if (hipcie & HDA_DSP_REG_HIPCIE_DONE) {
149 msg = hipci & HDA_DSP_REG_HIPCI_MSG_MASK;
150 msg_ext = hipcie & HDA_DSP_REG_HIPCIE_MSG_MASK;
151
152 dev_vdbg(sdev->dev,
153 "ipc: firmware response, msg:0x%x, msg_ext:0x%x\n",
154 msg, msg_ext);
155
156 /* mask Done interrupt */
157 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR,
158 HDA_DSP_REG_HIPCCTL,
159 HDA_DSP_REG_HIPCCTL_DONE, 0);
160
161 /*
162 * Make sure the interrupt thread cannot be preempted between
163 * waking up the sender and re-enabling the interrupt. Also
164 * protect against a theoretical race with sof_ipc_tx_message():
165 * if the DSP is fast enough to receive an IPC message, reply to
166 * it, and the host interrupt processing calls this function on
167 * a different core from the one, where the sending is taking
168 * place, the message might not yet be marked as expecting a
169 * reply.
170 */
171 spin_lock_irq(&sdev->ipc_lock);
172
173 /* handle immediate reply from DSP core */
174 hda_dsp_ipc_get_reply(sdev);
175 snd_sof_ipc_reply(sdev, msg);
176
177 /* set the done bit */
178 hda_dsp_ipc_dsp_done(sdev);
179
180 spin_unlock_irq(&sdev->ipc_lock);
181
182 ipc_irq = true;
183 }
184
185 /* is this a new message from DSP */
186 if (hipct & HDA_DSP_REG_HIPCT_BUSY) {
187 msg = hipct & HDA_DSP_REG_HIPCT_MSG_MASK;
188 msg_ext = hipcte & HDA_DSP_REG_HIPCTE_MSG_MASK;
189
190 dev_vdbg(sdev->dev,
191 "ipc: firmware initiated, msg:0x%x, msg_ext:0x%x\n",
192 msg, msg_ext);
193
194 /* mask BUSY interrupt */
195 snd_sof_dsp_update_bits(sdev, HDA_DSP_BAR,
196 HDA_DSP_REG_HIPCCTL,
197 HDA_DSP_REG_HIPCCTL_BUSY, 0);
198
199 /* handle messages from DSP */
200 if ((hipct & SOF_IPC_PANIC_MAGIC_MASK) == SOF_IPC_PANIC_MAGIC) {
201 /* this is a PANIC message !! */
202 snd_sof_dsp_panic(sdev, HDA_DSP_PANIC_OFFSET(msg_ext));
203 } else {
204 /* normal message - process normally */
205 snd_sof_ipc_msgs_rx(sdev);
206 }
207
208 hda_dsp_ipc_host_done(sdev);
209
210 ipc_irq = true;
211 }
212
213 if (!ipc_irq) {
214 /*
215 * This interrupt is not shared so no need to return IRQ_NONE.
216 */
217 dev_dbg_ratelimited(sdev->dev,
218 "nothing to do in IPC IRQ thread\n");
219 }
220
221 return IRQ_HANDLED;
222}
223
224/* Check if an IPC IRQ occurred */
225bool hda_dsp_check_ipc_irq(struct snd_sof_dev *sdev)
226{
227 bool ret = false;
228 u32 irq_status;
229
230 /* store status */
231 irq_status = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_ADSPIS);
232 dev_vdbg(sdev->dev, "irq handler: irq_status:0x%x\n", irq_status);
233
234 /* invalid message ? */
235 if (irq_status == 0xffffffff)
236 goto out;
237
238 /* IPC message ? */
239 if (irq_status & HDA_DSP_ADSPIS_IPC)
240 ret = true;
241
242out:
243 return ret;
244}
245
246int hda_dsp_ipc_get_mailbox_offset(struct snd_sof_dev *sdev)
247{
248 return HDA_DSP_MBOX_UPLINK_OFFSET;
249}
250
251int hda_dsp_ipc_get_window_offset(struct snd_sof_dev *sdev, u32 id)
252{
253 return SRAM_WINDOW_OFFSET(id);
254}
255
256void hda_ipc_msg_data(struct snd_sof_dev *sdev,
257 struct snd_pcm_substream *substream,
258 void *p, size_t sz)
259{
260 if (!substream || !sdev->stream_box.size) {
261 sof_mailbox_read(sdev, sdev->dsp_box.offset, p, sz);
262 } else {
263 struct hdac_stream *hstream = substream->runtime->private_data;
264 struct sof_intel_hda_stream *hda_stream;
265
266 hda_stream = container_of(hstream,
267 struct sof_intel_hda_stream,
268 hda_stream.hstream);
269
270 /* The stream might already be closed */
271 if (hstream)
272 sof_mailbox_read(sdev, hda_stream->stream.posn_offset,
273 p, sz);
274 }
275}
276
277int hda_ipc_pcm_params(struct snd_sof_dev *sdev,
278 struct snd_pcm_substream *substream,
279 const struct sof_ipc_pcm_params_reply *reply)
280{
281 struct hdac_stream *hstream = substream->runtime->private_data;
282 struct sof_intel_hda_stream *hda_stream;
283 /* validate offset */
284 size_t posn_offset = reply->posn_offset;
285
286 hda_stream = container_of(hstream, struct sof_intel_hda_stream,
287 hda_stream.hstream);
288
289 /* check for unaligned offset or overflow */
290 if (posn_offset > sdev->stream_box.size ||
291 posn_offset % sizeof(struct sof_ipc_stream_posn) != 0)
292 return -EINVAL;
293
294 hda_stream->stream.posn_offset = sdev->stream_box.offset + posn_offset;
295
296 dev_dbg(sdev->dev, "pcm: stream dir %d, posn mailbox offset is %zu",
297 substream->stream, hda_stream->stream.posn_offset);
298
299 return 0;
300}