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 ret
= skl_dsp_core_power_up(ctx
, SKL_DSP_CORE0_MASK
);
62 dev_err(ctx
->dev
, "dsp core0 power up failed\n");
64 goto base_fw_load_failed
;
67 /* purge FW request */
68 sst_dsp_shim_write(ctx
, CNL_ADSP_REG_HIPCIDR
,
69 CNL_ADSP_REG_HIPCIDR_BUSY
| (CNL_IPC_PURGE
|
70 ((stream_tag
- 1) << CNL_ROM_CTRL_DMA_ID
)));
72 ret
= skl_dsp_start_core(ctx
, SKL_DSP_CORE0_MASK
);
74 dev_err(ctx
->dev
, "Start dsp core failed ret: %d\n", ret
);
76 goto base_fw_load_failed
;
79 ret
= sst_dsp_register_poll(ctx
, CNL_ADSP_REG_HIPCIDA
,
80 CNL_ADSP_REG_HIPCIDA_DONE
,
81 CNL_ADSP_REG_HIPCIDA_DONE
,
82 BXT_INIT_TIMEOUT
, "HIPCIDA Done");
84 dev_err(ctx
->dev
, "timeout for purge request: %d\n", ret
);
85 goto base_fw_load_failed
;
88 /* enable interrupt */
89 cnl_ipc_int_enable(ctx
);
90 cnl_ipc_op_int_enable(ctx
);
92 ret
= sst_dsp_register_poll(ctx
, CNL_ADSP_FW_STATUS
, CNL_FW_STS_MASK
,
93 CNL_FW_ROM_INIT
, CNL_INIT_TIMEOUT
,
96 dev_err(ctx
->dev
, "rom init timeout, ret: %d\n", ret
);
97 goto base_fw_load_failed
;
103 ctx
->dsp_ops
.cleanup(ctx
->dev
, &ctx
->dmab
, stream_tag
);
104 cnl_dsp_disable_core(ctx
, SKL_DSP_CORE0_MASK
);
109 static int sst_transfer_fw_host_dma(struct sst_dsp
*ctx
)
113 ctx
->dsp_ops
.trigger(ctx
->dev
, true, ctx
->dsp_ops
.stream_tag
);
114 ret
= sst_dsp_register_poll(ctx
, CNL_ADSP_FW_STATUS
, CNL_FW_STS_MASK
,
115 CNL_FW_INIT
, CNL_BASEFW_TIMEOUT
,
118 ctx
->dsp_ops
.trigger(ctx
->dev
, false, ctx
->dsp_ops
.stream_tag
);
119 ctx
->dsp_ops
.cleanup(ctx
->dev
, &ctx
->dmab
, ctx
->dsp_ops
.stream_tag
);
124 static int cnl_load_base_firmware(struct sst_dsp
*ctx
)
126 struct firmware stripped_fw
;
127 struct skl_dev
*cnl
= ctx
->thread_context
;
131 ret
= request_firmware(&ctx
->fw
, ctx
->fw_name
, ctx
->dev
);
133 dev_err(ctx
->dev
, "request firmware failed: %d\n", ret
);
134 goto cnl_load_base_firmware_failed
;
138 /* parse uuids if first boot */
139 if (cnl
->is_first_boot
) {
140 ret
= snd_skl_parse_uuids(ctx
, ctx
->fw
,
141 CNL_ADSP_FW_HDR_OFFSET
, 0);
143 goto cnl_load_base_firmware_failed
;
146 stripped_fw
.data
= ctx
->fw
->data
;
147 stripped_fw
.size
= ctx
->fw
->size
;
148 skl_dsp_strip_extended_manifest(&stripped_fw
);
150 for (i
= 0; i
< BXT_FW_ROM_INIT_RETRY
; i
++) {
151 ret
= cnl_prepare_fw(ctx
, stripped_fw
.data
, stripped_fw
.size
);
154 dev_dbg(ctx
->dev
, "prepare firmware failed: %d\n", ret
);
158 goto cnl_load_base_firmware_failed
;
160 ret
= sst_transfer_fw_host_dma(ctx
);
162 dev_err(ctx
->dev
, "transfer firmware failed: %d\n", ret
);
163 cnl_dsp_disable_core(ctx
, SKL_DSP_CORE0_MASK
);
164 goto cnl_load_base_firmware_failed
;
167 ret
= wait_event_timeout(cnl
->boot_wait
, cnl
->boot_complete
,
168 msecs_to_jiffies(SKL_IPC_BOOT_MSECS
));
170 dev_err(ctx
->dev
, "FW ready timed-out\n");
171 cnl_dsp_disable_core(ctx
, SKL_DSP_CORE0_MASK
);
173 goto cnl_load_base_firmware_failed
;
176 cnl
->fw_loaded
= true;
180 cnl_load_base_firmware_failed
:
181 dev_err(ctx
->dev
, "firmware load failed: %d\n", ret
);
182 release_firmware(ctx
->fw
);
188 static int cnl_set_dsp_D0(struct sst_dsp
*ctx
, unsigned int core_id
)
190 struct skl_dev
*cnl
= ctx
->thread_context
;
191 unsigned int core_mask
= SKL_DSP_CORE_MASK(core_id
);
192 struct skl_ipc_dxstate_info dx
;
195 if (!cnl
->fw_loaded
) {
196 cnl
->boot_complete
= false;
197 ret
= cnl_load_base_firmware(ctx
);
199 dev_err(ctx
->dev
, "fw reload failed: %d\n", ret
);
203 cnl
->cores
.state
[core_id
] = SKL_DSP_RUNNING
;
207 ret
= cnl_dsp_enable_core(ctx
, core_mask
);
209 dev_err(ctx
->dev
, "enable dsp core %d failed: %d\n",
214 if (core_id
== SKL_DSP_CORE0_ID
) {
215 /* enable interrupt */
216 cnl_ipc_int_enable(ctx
);
217 cnl_ipc_op_int_enable(ctx
);
218 cnl
->boot_complete
= false;
220 ret
= wait_event_timeout(cnl
->boot_wait
, cnl
->boot_complete
,
221 msecs_to_jiffies(SKL_IPC_BOOT_MSECS
));
224 "dsp boot timeout, status=%#x error=%#x\n",
225 sst_dsp_shim_read(ctx
, CNL_ADSP_FW_STATUS
),
226 sst_dsp_shim_read(ctx
, CNL_ADSP_ERROR_CODE
));
230 dx
.core_mask
= core_mask
;
231 dx
.dx_mask
= core_mask
;
233 ret
= skl_ipc_set_dx(&cnl
->ipc
, CNL_INSTANCE_ID
,
234 CNL_BASE_FW_MODULE_ID
, &dx
);
236 dev_err(ctx
->dev
, "set_dx failed, core: %d ret: %d\n",
241 cnl
->cores
.state
[core_id
] = SKL_DSP_RUNNING
;
245 cnl_dsp_disable_core(ctx
, core_mask
);
250 static int cnl_set_dsp_D3(struct sst_dsp
*ctx
, unsigned int core_id
)
252 struct skl_dev
*cnl
= ctx
->thread_context
;
253 unsigned int core_mask
= SKL_DSP_CORE_MASK(core_id
);
254 struct skl_ipc_dxstate_info dx
;
257 dx
.core_mask
= core_mask
;
258 dx
.dx_mask
= SKL_IPC_D3_MASK
;
260 ret
= skl_ipc_set_dx(&cnl
->ipc
, CNL_INSTANCE_ID
,
261 CNL_BASE_FW_MODULE_ID
, &dx
);
264 "dsp core %d to d3 failed; continue reset\n",
266 cnl
->fw_loaded
= false;
269 /* disable interrupts if core 0 */
270 if (core_id
== SKL_DSP_CORE0_ID
) {
271 skl_ipc_op_int_disable(ctx
);
272 skl_ipc_int_disable(ctx
);
275 ret
= cnl_dsp_disable_core(ctx
, core_mask
);
277 dev_err(ctx
->dev
, "disable dsp core %d failed: %d\n",
282 cnl
->cores
.state
[core_id
] = SKL_DSP_RESET
;
287 static unsigned int cnl_get_errno(struct sst_dsp
*ctx
)
289 return sst_dsp_shim_read(ctx
, CNL_ADSP_ERROR_CODE
);
292 static const struct skl_dsp_fw_ops cnl_fw_ops
= {
293 .set_state_D0
= cnl_set_dsp_D0
,
294 .set_state_D3
= cnl_set_dsp_D3
,
295 .load_fw
= cnl_load_base_firmware
,
296 .get_fw_errcode
= cnl_get_errno
,
299 static struct sst_ops cnl_ops
= {
300 .irq_handler
= cnl_dsp_sst_interrupt
,
301 .write
= sst_shim32_write
,
302 .read
= sst_shim32_read
,
303 .free
= cnl_dsp_free
,
306 #define CNL_IPC_GLB_NOTIFY_RSP_SHIFT 29
307 #define CNL_IPC_GLB_NOTIFY_RSP_MASK 0x1
308 #define CNL_IPC_GLB_NOTIFY_RSP_TYPE(x) (((x) >> CNL_IPC_GLB_NOTIFY_RSP_SHIFT) \
309 & CNL_IPC_GLB_NOTIFY_RSP_MASK)
311 static irqreturn_t
cnl_dsp_irq_thread_handler(int irq
, void *context
)
313 struct sst_dsp
*dsp
= context
;
314 struct skl_dev
*cnl
= dsp
->thread_context
;
315 struct sst_generic_ipc
*ipc
= &cnl
->ipc
;
316 struct skl_ipc_header header
= {0};
317 u32 hipcida
, hipctdr
, hipctdd
;
320 /* here we handle ipc interrupts only */
321 if (!(dsp
->intr_status
& CNL_ADSPIS_IPC
))
324 hipcida
= sst_dsp_shim_read_unlocked(dsp
, CNL_ADSP_REG_HIPCIDA
);
325 hipctdr
= sst_dsp_shim_read_unlocked(dsp
, CNL_ADSP_REG_HIPCTDR
);
326 hipctdd
= sst_dsp_shim_read_unlocked(dsp
, CNL_ADSP_REG_HIPCTDD
);
328 /* reply message from dsp */
329 if (hipcida
& CNL_ADSP_REG_HIPCIDA_DONE
) {
330 sst_dsp_shim_update_bits(dsp
, CNL_ADSP_REG_HIPCCTL
,
331 CNL_ADSP_REG_HIPCCTL_DONE
, 0);
333 /* clear done bit - tell dsp operation is complete */
334 sst_dsp_shim_update_bits_forced(dsp
, CNL_ADSP_REG_HIPCIDA
,
335 CNL_ADSP_REG_HIPCIDA_DONE
, CNL_ADSP_REG_HIPCIDA_DONE
);
339 /* unmask done interrupt */
340 sst_dsp_shim_update_bits(dsp
, CNL_ADSP_REG_HIPCCTL
,
341 CNL_ADSP_REG_HIPCCTL_DONE
, CNL_ADSP_REG_HIPCCTL_DONE
);
344 /* new message from dsp */
345 if (hipctdr
& CNL_ADSP_REG_HIPCTDR_BUSY
) {
346 header
.primary
= hipctdr
;
347 header
.extension
= hipctdd
;
348 dev_dbg(dsp
->dev
, "IPC irq: Firmware respond primary:%x",
350 dev_dbg(dsp
->dev
, "IPC irq: Firmware respond extension:%x",
353 if (CNL_IPC_GLB_NOTIFY_RSP_TYPE(header
.primary
)) {
354 /* Handle Immediate reply from DSP Core */
355 skl_ipc_process_reply(ipc
, header
);
357 dev_dbg(dsp
->dev
, "IPC irq: Notification from firmware\n");
358 skl_ipc_process_notification(ipc
, header
);
360 /* clear busy interrupt */
361 sst_dsp_shim_update_bits_forced(dsp
, CNL_ADSP_REG_HIPCTDR
,
362 CNL_ADSP_REG_HIPCTDR_BUSY
, CNL_ADSP_REG_HIPCTDR_BUSY
);
364 /* set done bit to ack dsp */
365 sst_dsp_shim_update_bits_forced(dsp
, CNL_ADSP_REG_HIPCTDA
,
366 CNL_ADSP_REG_HIPCTDA_DONE
, CNL_ADSP_REG_HIPCTDA_DONE
);
373 cnl_ipc_int_enable(dsp
);
375 /* continue to send any remaining messages */
376 schedule_work(&ipc
->kwork
);
381 static struct sst_dsp_device cnl_dev
= {
382 .thread
= cnl_dsp_irq_thread_handler
,
386 static void cnl_ipc_tx_msg(struct sst_generic_ipc
*ipc
, struct ipc_message
*msg
)
388 struct skl_ipc_header
*header
= (struct skl_ipc_header
*)(&msg
->tx
.header
);
391 sst_dsp_outbox_write(ipc
->dsp
, msg
->tx
.data
, msg
->tx
.size
);
392 sst_dsp_shim_write_unlocked(ipc
->dsp
, CNL_ADSP_REG_HIPCIDD
,
394 sst_dsp_shim_write_unlocked(ipc
->dsp
, CNL_ADSP_REG_HIPCIDR
,
395 header
->primary
| CNL_ADSP_REG_HIPCIDR_BUSY
);
398 static bool cnl_ipc_is_dsp_busy(struct sst_dsp
*dsp
)
402 hipcidr
= sst_dsp_shim_read_unlocked(dsp
, CNL_ADSP_REG_HIPCIDR
);
404 return (hipcidr
& CNL_ADSP_REG_HIPCIDR_BUSY
);
407 static int cnl_ipc_init(struct device
*dev
, struct skl_dev
*cnl
)
409 struct sst_generic_ipc
*ipc
;
416 ipc
->tx_data_max_size
= CNL_ADSP_W1_SZ
;
417 ipc
->rx_data_max_size
= CNL_ADSP_W0_UP_SZ
;
419 err
= sst_ipc_init(ipc
);
424 * overriding tx_msg and is_dsp_busy since
425 * ipc registers are different for cnl
427 ipc
->ops
.tx_msg
= cnl_ipc_tx_msg
;
428 ipc
->ops
.tx_data_copy
= skl_ipc_tx_data_copy
;
429 ipc
->ops
.is_dsp_busy
= cnl_ipc_is_dsp_busy
;
434 int cnl_sst_dsp_init(struct device
*dev
, void __iomem
*mmio_base
, int irq
,
435 const char *fw_name
, struct skl_dsp_loader_ops dsp_ops
,
436 struct skl_dev
**dsp
)
442 ret
= skl_sst_ctx_init(dev
, irq
, fw_name
, dsp_ops
, dsp
, &cnl_dev
);
444 dev_err(dev
, "%s: no device\n", __func__
);
450 sst
->fw_ops
= cnl_fw_ops
;
451 sst
->addr
.lpe
= mmio_base
;
452 sst
->addr
.shim
= mmio_base
;
453 sst
->addr
.sram0_base
= CNL_ADSP_SRAM0_BASE
;
454 sst
->addr
.sram1_base
= CNL_ADSP_SRAM1_BASE
;
455 sst
->addr
.w0_stat_sz
= CNL_ADSP_W0_STAT_SZ
;
456 sst
->addr
.w0_up_sz
= CNL_ADSP_W0_UP_SZ
;
458 sst_dsp_mailbox_init(sst
, (CNL_ADSP_SRAM0_BASE
+ CNL_ADSP_W0_STAT_SZ
),
459 CNL_ADSP_W0_UP_SZ
, CNL_ADSP_SRAM1_BASE
,
462 ret
= cnl_ipc_init(dev
, cnl
);
468 cnl
->boot_complete
= false;
469 init_waitqueue_head(&cnl
->boot_wait
);
471 return skl_dsp_acquire_irq(sst
);
473 EXPORT_SYMBOL_GPL(cnl_sst_dsp_init
);
475 int cnl_sst_init_fw(struct device
*dev
, struct skl_dev
*skl
)
478 struct sst_dsp
*sst
= skl
->dsp
;
480 ret
= skl
->dsp
->fw_ops
.load_fw(sst
);
482 dev_err(dev
, "load base fw failed: %d", ret
);
486 skl_dsp_init_core_state(sst
);
488 skl
->is_first_boot
= false;
492 EXPORT_SYMBOL_GPL(cnl_sst_init_fw
);
494 void cnl_sst_dsp_cleanup(struct device
*dev
, struct skl_dev
*skl
)
497 release_firmware(skl
->dsp
->fw
);
499 skl_freeup_uuid_list(skl
);
500 cnl_ipc_free(&skl
->ipc
);
502 skl
->dsp
->ops
->free(skl
->dsp
);
504 EXPORT_SYMBOL_GPL(cnl_sst_dsp_cleanup
);
506 MODULE_LICENSE("GPL v2");
507 MODULE_DESCRIPTION("Intel Cannonlake IPC driver");