1 // SPDX-License-Identifier: GPL-2.0-only
3 * cnl-sst.c - DSP library functions for CNL platform
5 * Copyright (C) 2016-17, Intel Corporation.
7 * Author: Guneshwor Singh <guneshwor.o.singh@intel.com>
10 * HDA DSP library functions for SKL platform
11 * Copyright (C) 2014-15, Intel Corporation.
13 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 #include <linux/module.h>
19 #include <linux/delay.h>
20 #include <linux/firmware.h>
21 #include <linux/device.h>
23 #include "../common/sst-dsp.h"
24 #include "../common/sst-dsp-priv.h"
25 #include "../common/sst-ipc.h"
26 #include "cnl-sst-dsp.h"
29 #define CNL_FW_ROM_INIT 0x1
30 #define CNL_FW_INIT 0x5
31 #define CNL_IPC_PURGE 0x01004000
32 #define CNL_INIT_TIMEOUT 300
33 #define CNL_BASEFW_TIMEOUT 3000
35 #define CNL_ADSP_SRAM0_BASE 0x80000
37 /* Firmware status window */
38 #define CNL_ADSP_FW_STATUS CNL_ADSP_SRAM0_BASE
39 #define CNL_ADSP_ERROR_CODE (CNL_ADSP_FW_STATUS + 0x4)
41 #define CNL_INSTANCE_ID 0
42 #define CNL_BASE_FW_MODULE_ID 0
43 #define CNL_ADSP_FW_HDR_OFFSET 0x2000
44 #define CNL_ROM_CTRL_DMA_ID 0x9
46 static int cnl_prepare_fw(struct sst_dsp
*ctx
, const void *fwdata
, u32 fwsize
)
51 stream_tag
= ctx
->dsp_ops
.prepare(ctx
->dev
, 0x40, fwsize
, &ctx
->dmab
);
52 if (stream_tag
<= 0) {
53 dev_err(ctx
->dev
, "dma prepare failed: 0%#x\n", stream_tag
);
57 ctx
->dsp_ops
.stream_tag
= stream_tag
;
58 memcpy(ctx
->dmab
.area
, fwdata
, fwsize
);
60 /* purge FW request */
61 sst_dsp_shim_write(ctx
, CNL_ADSP_REG_HIPCIDR
,
62 CNL_ADSP_REG_HIPCIDR_BUSY
| (CNL_IPC_PURGE
|
63 ((stream_tag
- 1) << CNL_ROM_CTRL_DMA_ID
)));
65 ret
= cnl_dsp_enable_core(ctx
, SKL_DSP_CORE0_MASK
);
67 dev_err(ctx
->dev
, "dsp boot core failed ret: %d\n", ret
);
69 goto base_fw_load_failed
;
72 /* enable interrupt */
73 cnl_ipc_int_enable(ctx
);
74 cnl_ipc_op_int_enable(ctx
);
76 ret
= sst_dsp_register_poll(ctx
, CNL_ADSP_FW_STATUS
, CNL_FW_STS_MASK
,
77 CNL_FW_ROM_INIT
, CNL_INIT_TIMEOUT
,
80 dev_err(ctx
->dev
, "rom init timeout, ret: %d\n", ret
);
81 goto base_fw_load_failed
;
87 ctx
->dsp_ops
.cleanup(ctx
->dev
, &ctx
->dmab
, stream_tag
);
88 cnl_dsp_disable_core(ctx
, SKL_DSP_CORE0_MASK
);
93 static int sst_transfer_fw_host_dma(struct sst_dsp
*ctx
)
97 ctx
->dsp_ops
.trigger(ctx
->dev
, true, ctx
->dsp_ops
.stream_tag
);
98 ret
= sst_dsp_register_poll(ctx
, CNL_ADSP_FW_STATUS
, CNL_FW_STS_MASK
,
99 CNL_FW_INIT
, CNL_BASEFW_TIMEOUT
,
102 ctx
->dsp_ops
.trigger(ctx
->dev
, false, ctx
->dsp_ops
.stream_tag
);
103 ctx
->dsp_ops
.cleanup(ctx
->dev
, &ctx
->dmab
, ctx
->dsp_ops
.stream_tag
);
108 static int cnl_load_base_firmware(struct sst_dsp
*ctx
)
110 struct firmware stripped_fw
;
111 struct skl_dev
*cnl
= ctx
->thread_context
;
115 ret
= request_firmware(&ctx
->fw
, ctx
->fw_name
, ctx
->dev
);
117 dev_err(ctx
->dev
, "request firmware failed: %d\n", ret
);
118 goto cnl_load_base_firmware_failed
;
122 /* parse uuids if first boot */
123 if (cnl
->is_first_boot
) {
124 ret
= snd_skl_parse_uuids(ctx
, ctx
->fw
,
125 CNL_ADSP_FW_HDR_OFFSET
, 0);
127 goto cnl_load_base_firmware_failed
;
130 stripped_fw
.data
= ctx
->fw
->data
;
131 stripped_fw
.size
= ctx
->fw
->size
;
132 skl_dsp_strip_extended_manifest(&stripped_fw
);
134 ret
= cnl_prepare_fw(ctx
, stripped_fw
.data
, stripped_fw
.size
);
136 dev_err(ctx
->dev
, "prepare firmware failed: %d\n", ret
);
137 goto cnl_load_base_firmware_failed
;
140 ret
= sst_transfer_fw_host_dma(ctx
);
142 dev_err(ctx
->dev
, "transfer firmware failed: %d\n", ret
);
143 cnl_dsp_disable_core(ctx
, SKL_DSP_CORE0_MASK
);
144 goto cnl_load_base_firmware_failed
;
147 ret
= wait_event_timeout(cnl
->boot_wait
, cnl
->boot_complete
,
148 msecs_to_jiffies(SKL_IPC_BOOT_MSECS
));
150 dev_err(ctx
->dev
, "FW ready timed-out\n");
151 cnl_dsp_disable_core(ctx
, SKL_DSP_CORE0_MASK
);
153 goto cnl_load_base_firmware_failed
;
156 cnl
->fw_loaded
= true;
160 cnl_load_base_firmware_failed
:
161 release_firmware(ctx
->fw
);
167 static int cnl_set_dsp_D0(struct sst_dsp
*ctx
, unsigned int core_id
)
169 struct skl_dev
*cnl
= ctx
->thread_context
;
170 unsigned int core_mask
= SKL_DSP_CORE_MASK(core_id
);
171 struct skl_ipc_dxstate_info dx
;
174 if (!cnl
->fw_loaded
) {
175 cnl
->boot_complete
= false;
176 ret
= cnl_load_base_firmware(ctx
);
178 dev_err(ctx
->dev
, "fw reload failed: %d\n", ret
);
182 cnl
->cores
.state
[core_id
] = SKL_DSP_RUNNING
;
186 ret
= cnl_dsp_enable_core(ctx
, core_mask
);
188 dev_err(ctx
->dev
, "enable dsp core %d failed: %d\n",
193 if (core_id
== SKL_DSP_CORE0_ID
) {
194 /* enable interrupt */
195 cnl_ipc_int_enable(ctx
);
196 cnl_ipc_op_int_enable(ctx
);
197 cnl
->boot_complete
= false;
199 ret
= wait_event_timeout(cnl
->boot_wait
, cnl
->boot_complete
,
200 msecs_to_jiffies(SKL_IPC_BOOT_MSECS
));
203 "dsp boot timeout, status=%#x error=%#x\n",
204 sst_dsp_shim_read(ctx
, CNL_ADSP_FW_STATUS
),
205 sst_dsp_shim_read(ctx
, CNL_ADSP_ERROR_CODE
));
209 dx
.core_mask
= core_mask
;
210 dx
.dx_mask
= core_mask
;
212 ret
= skl_ipc_set_dx(&cnl
->ipc
, CNL_INSTANCE_ID
,
213 CNL_BASE_FW_MODULE_ID
, &dx
);
215 dev_err(ctx
->dev
, "set_dx failed, core: %d ret: %d\n",
220 cnl
->cores
.state
[core_id
] = SKL_DSP_RUNNING
;
224 cnl_dsp_disable_core(ctx
, core_mask
);
229 static int cnl_set_dsp_D3(struct sst_dsp
*ctx
, unsigned int core_id
)
231 struct skl_dev
*cnl
= ctx
->thread_context
;
232 unsigned int core_mask
= SKL_DSP_CORE_MASK(core_id
);
233 struct skl_ipc_dxstate_info dx
;
236 dx
.core_mask
= core_mask
;
237 dx
.dx_mask
= SKL_IPC_D3_MASK
;
239 ret
= skl_ipc_set_dx(&cnl
->ipc
, CNL_INSTANCE_ID
,
240 CNL_BASE_FW_MODULE_ID
, &dx
);
243 "dsp core %d to d3 failed; continue reset\n",
245 cnl
->fw_loaded
= false;
248 /* disable interrupts if core 0 */
249 if (core_id
== SKL_DSP_CORE0_ID
) {
250 skl_ipc_op_int_disable(ctx
);
251 skl_ipc_int_disable(ctx
);
254 ret
= cnl_dsp_disable_core(ctx
, core_mask
);
256 dev_err(ctx
->dev
, "disable dsp core %d failed: %d\n",
261 cnl
->cores
.state
[core_id
] = SKL_DSP_RESET
;
266 static unsigned int cnl_get_errno(struct sst_dsp
*ctx
)
268 return sst_dsp_shim_read(ctx
, CNL_ADSP_ERROR_CODE
);
271 static const struct skl_dsp_fw_ops cnl_fw_ops
= {
272 .set_state_D0
= cnl_set_dsp_D0
,
273 .set_state_D3
= cnl_set_dsp_D3
,
274 .load_fw
= cnl_load_base_firmware
,
275 .get_fw_errcode
= cnl_get_errno
,
278 static struct sst_ops cnl_ops
= {
279 .irq_handler
= cnl_dsp_sst_interrupt
,
280 .write
= sst_shim32_write
,
281 .read
= sst_shim32_read
,
282 .ram_read
= sst_memcpy_fromio_32
,
283 .ram_write
= sst_memcpy_toio_32
,
284 .free
= cnl_dsp_free
,
287 #define CNL_IPC_GLB_NOTIFY_RSP_SHIFT 29
288 #define CNL_IPC_GLB_NOTIFY_RSP_MASK 0x1
289 #define CNL_IPC_GLB_NOTIFY_RSP_TYPE(x) (((x) >> CNL_IPC_GLB_NOTIFY_RSP_SHIFT) \
290 & CNL_IPC_GLB_NOTIFY_RSP_MASK)
292 static irqreturn_t
cnl_dsp_irq_thread_handler(int irq
, void *context
)
294 struct sst_dsp
*dsp
= context
;
295 struct skl_dev
*cnl
= sst_dsp_get_thread_context(dsp
);
296 struct sst_generic_ipc
*ipc
= &cnl
->ipc
;
297 struct skl_ipc_header header
= {0};
298 u32 hipcida
, hipctdr
, hipctdd
;
301 /* here we handle ipc interrupts only */
302 if (!(dsp
->intr_status
& CNL_ADSPIS_IPC
))
305 hipcida
= sst_dsp_shim_read_unlocked(dsp
, CNL_ADSP_REG_HIPCIDA
);
306 hipctdr
= sst_dsp_shim_read_unlocked(dsp
, CNL_ADSP_REG_HIPCTDR
);
307 hipctdd
= sst_dsp_shim_read_unlocked(dsp
, CNL_ADSP_REG_HIPCTDD
);
309 /* reply message from dsp */
310 if (hipcida
& CNL_ADSP_REG_HIPCIDA_DONE
) {
311 sst_dsp_shim_update_bits(dsp
, CNL_ADSP_REG_HIPCCTL
,
312 CNL_ADSP_REG_HIPCCTL_DONE
, 0);
314 /* clear done bit - tell dsp operation is complete */
315 sst_dsp_shim_update_bits_forced(dsp
, CNL_ADSP_REG_HIPCIDA
,
316 CNL_ADSP_REG_HIPCIDA_DONE
, CNL_ADSP_REG_HIPCIDA_DONE
);
320 /* unmask done interrupt */
321 sst_dsp_shim_update_bits(dsp
, CNL_ADSP_REG_HIPCCTL
,
322 CNL_ADSP_REG_HIPCCTL_DONE
, CNL_ADSP_REG_HIPCCTL_DONE
);
325 /* new message from dsp */
326 if (hipctdr
& CNL_ADSP_REG_HIPCTDR_BUSY
) {
327 header
.primary
= hipctdr
;
328 header
.extension
= hipctdd
;
329 dev_dbg(dsp
->dev
, "IPC irq: Firmware respond primary:%x",
331 dev_dbg(dsp
->dev
, "IPC irq: Firmware respond extension:%x",
334 if (CNL_IPC_GLB_NOTIFY_RSP_TYPE(header
.primary
)) {
335 /* Handle Immediate reply from DSP Core */
336 skl_ipc_process_reply(ipc
, header
);
338 dev_dbg(dsp
->dev
, "IPC irq: Notification from firmware\n");
339 skl_ipc_process_notification(ipc
, header
);
341 /* clear busy interrupt */
342 sst_dsp_shim_update_bits_forced(dsp
, CNL_ADSP_REG_HIPCTDR
,
343 CNL_ADSP_REG_HIPCTDR_BUSY
, CNL_ADSP_REG_HIPCTDR_BUSY
);
345 /* set done bit to ack dsp */
346 sst_dsp_shim_update_bits_forced(dsp
, CNL_ADSP_REG_HIPCTDA
,
347 CNL_ADSP_REG_HIPCTDA_DONE
, CNL_ADSP_REG_HIPCTDA_DONE
);
354 cnl_ipc_int_enable(dsp
);
356 /* continue to send any remaining messages */
357 schedule_work(&ipc
->kwork
);
362 static struct sst_dsp_device cnl_dev
= {
363 .thread
= cnl_dsp_irq_thread_handler
,
367 static void cnl_ipc_tx_msg(struct sst_generic_ipc
*ipc
, struct ipc_message
*msg
)
369 struct skl_ipc_header
*header
= (struct skl_ipc_header
*)(&msg
->tx
.header
);
372 sst_dsp_outbox_write(ipc
->dsp
, msg
->tx
.data
, msg
->tx
.size
);
373 sst_dsp_shim_write_unlocked(ipc
->dsp
, CNL_ADSP_REG_HIPCIDD
,
375 sst_dsp_shim_write_unlocked(ipc
->dsp
, CNL_ADSP_REG_HIPCIDR
,
376 header
->primary
| CNL_ADSP_REG_HIPCIDR_BUSY
);
379 static bool cnl_ipc_is_dsp_busy(struct sst_dsp
*dsp
)
383 hipcidr
= sst_dsp_shim_read_unlocked(dsp
, CNL_ADSP_REG_HIPCIDR
);
385 return (hipcidr
& CNL_ADSP_REG_HIPCIDR_BUSY
);
388 static int cnl_ipc_init(struct device
*dev
, struct skl_dev
*cnl
)
390 struct sst_generic_ipc
*ipc
;
397 ipc
->tx_data_max_size
= CNL_ADSP_W1_SZ
;
398 ipc
->rx_data_max_size
= CNL_ADSP_W0_UP_SZ
;
400 err
= sst_ipc_init(ipc
);
405 * overriding tx_msg and is_dsp_busy since
406 * ipc registers are different for cnl
408 ipc
->ops
.tx_msg
= cnl_ipc_tx_msg
;
409 ipc
->ops
.tx_data_copy
= skl_ipc_tx_data_copy
;
410 ipc
->ops
.is_dsp_busy
= cnl_ipc_is_dsp_busy
;
415 int cnl_sst_dsp_init(struct device
*dev
, void __iomem
*mmio_base
, int irq
,
416 const char *fw_name
, struct skl_dsp_loader_ops dsp_ops
,
417 struct skl_dev
**dsp
)
423 ret
= skl_sst_ctx_init(dev
, irq
, fw_name
, dsp_ops
, dsp
, &cnl_dev
);
425 dev_err(dev
, "%s: no device\n", __func__
);
431 sst
->fw_ops
= cnl_fw_ops
;
432 sst
->addr
.lpe
= mmio_base
;
433 sst
->addr
.shim
= mmio_base
;
434 sst
->addr
.sram0_base
= CNL_ADSP_SRAM0_BASE
;
435 sst
->addr
.sram1_base
= CNL_ADSP_SRAM1_BASE
;
436 sst
->addr
.w0_stat_sz
= CNL_ADSP_W0_STAT_SZ
;
437 sst
->addr
.w0_up_sz
= CNL_ADSP_W0_UP_SZ
;
439 sst_dsp_mailbox_init(sst
, (CNL_ADSP_SRAM0_BASE
+ CNL_ADSP_W0_STAT_SZ
),
440 CNL_ADSP_W0_UP_SZ
, CNL_ADSP_SRAM1_BASE
,
443 ret
= cnl_ipc_init(dev
, cnl
);
449 cnl
->boot_complete
= false;
450 init_waitqueue_head(&cnl
->boot_wait
);
452 return skl_dsp_acquire_irq(sst
);
454 EXPORT_SYMBOL_GPL(cnl_sst_dsp_init
);
456 int cnl_sst_init_fw(struct device
*dev
, struct skl_dev
*skl
)
459 struct sst_dsp
*sst
= skl
->dsp
;
461 ret
= skl
->dsp
->fw_ops
.load_fw(sst
);
463 dev_err(dev
, "load base fw failed: %d", ret
);
467 skl_dsp_init_core_state(sst
);
469 skl
->is_first_boot
= false;
473 EXPORT_SYMBOL_GPL(cnl_sst_init_fw
);
475 void cnl_sst_dsp_cleanup(struct device
*dev
, struct skl_dev
*skl
)
478 release_firmware(skl
->dsp
->fw
);
480 skl_freeup_uuid_list(skl
);
481 cnl_ipc_free(&skl
->ipc
);
483 skl
->dsp
->ops
->free(skl
->dsp
);
485 EXPORT_SYMBOL_GPL(cnl_sst_dsp_cleanup
);
487 MODULE_LICENSE("GPL v2");
488 MODULE_DESCRIPTION("Intel Cannonlake IPC driver");