2 * skl-sst.c - HDA DSP library functions for SKL platform
4 * Copyright (C) 2014-15, Intel Corporation.
5 * Author:Rafal Redzimski <rafal.f.redzimski@intel.com>
6 * Jeeja KP <jeeja.kp@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as version 2, as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
19 #include <linux/module.h>
20 #include <linux/delay.h>
21 #include <linux/device.h>
22 #include <linux/err.h>
23 #include <linux/uuid.h>
24 #include "../common/sst-dsp.h"
25 #include "../common/sst-dsp-priv.h"
26 #include "../common/sst-ipc.h"
27 #include "skl-sst-ipc.h"
29 #define SKL_BASEFW_TIMEOUT 300
30 #define SKL_INIT_TIMEOUT 1000
32 /* Intel HD Audio SRAM Window 0*/
33 #define SKL_ADSP_SRAM0_BASE 0x8000
35 /* Firmware status window */
36 #define SKL_ADSP_FW_STATUS SKL_ADSP_SRAM0_BASE
37 #define SKL_ADSP_ERROR_CODE (SKL_ADSP_FW_STATUS + 0x4)
39 #define SKL_NUM_MODULES 1
41 static bool skl_check_fw_status(struct sst_dsp
*ctx
, u32 status
)
45 cur_sts
= sst_dsp_shim_read(ctx
, SKL_ADSP_FW_STATUS
) & SKL_FW_STS_MASK
;
47 return (cur_sts
== status
);
50 static int skl_transfer_firmware(struct sst_dsp
*ctx
,
51 const void *basefw
, u32 base_fw_size
)
55 ret
= ctx
->cl_dev
.ops
.cl_copy_to_dmabuf(ctx
, basefw
, base_fw_size
);
59 ret
= sst_dsp_register_poll(ctx
,
66 ctx
->cl_dev
.ops
.cl_stop_dma(ctx
);
71 #define SKL_ADSP_FW_BIN_HDR_OFFSET 0x284
73 static int skl_load_base_firmware(struct sst_dsp
*ctx
)
76 struct skl_sst
*skl
= ctx
->thread_context
;
77 struct firmware stripped_fw
;
80 skl
->boot_complete
= false;
81 init_waitqueue_head(&skl
->boot_wait
);
83 if (ctx
->fw
== NULL
) {
84 ret
= request_firmware(&ctx
->fw
, ctx
->fw_name
, ctx
->dev
);
86 dev_err(ctx
->dev
, "Request firmware failed %d\n", ret
);
91 /* prase uuids on first boot */
92 if (skl
->is_first_boot
) {
93 ret
= snd_skl_parse_uuids(ctx
, ctx
->fw
, SKL_ADSP_FW_BIN_HDR_OFFSET
, 0);
95 dev_err(ctx
->dev
, "UUID parsing err: %d\n", ret
);
96 release_firmware(ctx
->fw
);
97 skl_dsp_disable_core(ctx
, SKL_DSP_CORE0_MASK
);
102 /* check for extended manifest */
103 stripped_fw
.data
= ctx
->fw
->data
;
104 stripped_fw
.size
= ctx
->fw
->size
;
106 skl_dsp_strip_extended_manifest(&stripped_fw
);
108 ret
= skl_dsp_boot(ctx
);
110 dev_err(ctx
->dev
, "Boot dsp core failed ret: %d\n", ret
);
111 goto skl_load_base_firmware_failed
;
114 ret
= skl_cldma_prepare(ctx
);
116 dev_err(ctx
->dev
, "CL dma prepare failed : %d\n", ret
);
117 goto skl_load_base_firmware_failed
;
120 /* enable Interrupt */
121 skl_ipc_int_enable(ctx
);
122 skl_ipc_op_int_enable(ctx
);
124 /* check ROM Status */
125 for (i
= SKL_INIT_TIMEOUT
; i
> 0; --i
) {
126 if (skl_check_fw_status(ctx
, SKL_FW_INIT
)) {
128 "ROM loaded, we can continue with FW loading\n");
134 reg
= sst_dsp_shim_read(ctx
, SKL_ADSP_FW_STATUS
);
136 "Timeout waiting for ROM init done, reg:0x%x\n", reg
);
138 goto transfer_firmware_failed
;
141 ret
= skl_transfer_firmware(ctx
, stripped_fw
.data
, stripped_fw
.size
);
143 dev_err(ctx
->dev
, "Transfer firmware failed%d\n", ret
);
144 goto transfer_firmware_failed
;
146 ret
= wait_event_timeout(skl
->boot_wait
, skl
->boot_complete
,
147 msecs_to_jiffies(SKL_IPC_BOOT_MSECS
));
149 dev_err(ctx
->dev
, "DSP boot failed, FW Ready timed-out\n");
151 goto transfer_firmware_failed
;
154 dev_dbg(ctx
->dev
, "Download firmware successful%d\n", ret
);
155 skl
->fw_loaded
= true;
158 transfer_firmware_failed
:
159 ctx
->cl_dev
.ops
.cl_cleanup_controller(ctx
);
160 skl_load_base_firmware_failed
:
161 skl_dsp_disable_core(ctx
, SKL_DSP_CORE0_MASK
);
162 release_firmware(ctx
->fw
);
167 static int skl_set_dsp_D0(struct sst_dsp
*ctx
, unsigned int core_id
)
170 struct skl_ipc_dxstate_info dx
;
171 struct skl_sst
*skl
= ctx
->thread_context
;
172 unsigned int core_mask
= SKL_DSP_CORE_MASK(core_id
);
174 /* If core0 is being turned on, we need to load the FW */
175 if (core_id
== SKL_DSP_CORE0_ID
) {
176 ret
= skl_load_base_firmware(ctx
);
178 dev_err(ctx
->dev
, "unable to load firmware\n");
184 * If any core other than core 0 is being moved to D0, enable the
185 * core and send the set dx IPC for the core.
187 if (core_id
!= SKL_DSP_CORE0_ID
) {
188 ret
= skl_dsp_enable_core(ctx
, core_mask
);
192 dx
.core_mask
= core_mask
;
193 dx
.dx_mask
= core_mask
;
195 ret
= skl_ipc_set_dx(&skl
->ipc
, SKL_INSTANCE_ID
,
196 SKL_BASE_FW_MODULE_ID
, &dx
);
198 dev_err(ctx
->dev
, "Failed to set dsp to D0:core id= %d\n",
200 skl_dsp_disable_core(ctx
, core_mask
);
204 skl
->cores
.state
[core_id
] = SKL_DSP_RUNNING
;
209 static int skl_set_dsp_D3(struct sst_dsp
*ctx
, unsigned int core_id
)
212 struct skl_ipc_dxstate_info dx
;
213 struct skl_sst
*skl
= ctx
->thread_context
;
214 unsigned int core_mask
= SKL_DSP_CORE_MASK(core_id
);
216 dx
.core_mask
= core_mask
;
217 dx
.dx_mask
= SKL_IPC_D3_MASK
;
219 ret
= skl_ipc_set_dx(&skl
->ipc
, SKL_INSTANCE_ID
, SKL_BASE_FW_MODULE_ID
, &dx
);
221 dev_err(ctx
->dev
, "set Dx core %d fail: %d\n", core_id
, ret
);
223 if (core_id
== SKL_DSP_CORE0_ID
) {
224 /* disable Interrupt */
225 ctx
->cl_dev
.ops
.cl_cleanup_controller(ctx
);
226 skl_cldma_int_disable(ctx
);
227 skl_ipc_op_int_disable(ctx
);
228 skl_ipc_int_disable(ctx
);
231 ret
= skl_dsp_disable_core(ctx
, core_mask
);
235 skl
->cores
.state
[core_id
] = SKL_DSP_RESET
;
239 static unsigned int skl_get_errorcode(struct sst_dsp
*ctx
)
241 return sst_dsp_shim_read(ctx
, SKL_ADSP_ERROR_CODE
);
245 * since get/set_module are called from DAPM context,
246 * we don't need lock for usage count
248 static int skl_get_module(struct sst_dsp
*ctx
, u16 mod_id
)
250 struct skl_module_table
*module
;
252 list_for_each_entry(module
, &ctx
->module_list
, list
) {
253 if (module
->mod_info
->mod_id
== mod_id
)
254 return ++module
->usage_cnt
;
260 static int skl_put_module(struct sst_dsp
*ctx
, u16 mod_id
)
262 struct skl_module_table
*module
;
264 list_for_each_entry(module
, &ctx
->module_list
, list
) {
265 if (module
->mod_info
->mod_id
== mod_id
)
266 return --module
->usage_cnt
;
272 static struct skl_module_table
*skl_fill_module_table(struct sst_dsp
*ctx
,
273 char *mod_name
, int mod_id
)
275 const struct firmware
*fw
;
276 struct skl_module_table
*skl_module
;
280 ret
= request_firmware(&fw
, mod_name
, ctx
->dev
);
282 dev_err(ctx
->dev
, "Request Module %s failed :%d\n",
287 skl_module
= devm_kzalloc(ctx
->dev
, sizeof(*skl_module
), GFP_KERNEL
);
288 if (skl_module
== NULL
) {
289 release_firmware(fw
);
293 size
= sizeof(*skl_module
->mod_info
);
294 skl_module
->mod_info
= devm_kzalloc(ctx
->dev
, size
, GFP_KERNEL
);
295 if (skl_module
->mod_info
== NULL
) {
296 release_firmware(fw
);
300 skl_module
->mod_info
->mod_id
= mod_id
;
301 skl_module
->mod_info
->fw
= fw
;
302 list_add(&skl_module
->list
, &ctx
->module_list
);
307 /* get a module from it's unique ID */
308 static struct skl_module_table
*skl_module_get_from_id(
309 struct sst_dsp
*ctx
, u16 mod_id
)
311 struct skl_module_table
*module
;
313 if (list_empty(&ctx
->module_list
)) {
314 dev_err(ctx
->dev
, "Module list is empty\n");
318 list_for_each_entry(module
, &ctx
->module_list
, list
) {
319 if (module
->mod_info
->mod_id
== mod_id
)
326 static int skl_transfer_module(struct sst_dsp
*ctx
,
327 struct skl_load_module_info
*module
)
330 struct skl_sst
*skl
= ctx
->thread_context
;
332 ret
= ctx
->cl_dev
.ops
.cl_copy_to_dmabuf(ctx
, module
->fw
->data
,
337 ret
= skl_ipc_load_modules(&skl
->ipc
, SKL_NUM_MODULES
,
338 (void *)&module
->mod_id
);
340 dev_err(ctx
->dev
, "Failed to Load module: %d\n", ret
);
342 ctx
->cl_dev
.ops
.cl_stop_dma(ctx
);
347 static int skl_load_module(struct sst_dsp
*ctx
, u16 mod_id
, u8
*guid
)
349 struct skl_module_table
*module_entry
= NULL
;
351 char mod_name
[64]; /* guid str = 32 chars + 4 hyphens */
354 uuid_mod
= (uuid_le
*)guid
;
355 snprintf(mod_name
, sizeof(mod_name
), "%s%pUL%s",
356 "intel/dsp_fw_", uuid_mod
, ".bin");
358 module_entry
= skl_module_get_from_id(ctx
, mod_id
);
359 if (module_entry
== NULL
) {
360 module_entry
= skl_fill_module_table(ctx
, mod_name
, mod_id
);
361 if (module_entry
== NULL
) {
362 dev_err(ctx
->dev
, "Failed to Load module\n");
367 if (!module_entry
->usage_cnt
) {
368 ret
= skl_transfer_module(ctx
, module_entry
->mod_info
);
370 dev_err(ctx
->dev
, "Failed to Load module\n");
375 ret
= skl_get_module(ctx
, mod_id
);
380 static int skl_unload_module(struct sst_dsp
*ctx
, u16 mod_id
)
383 struct skl_sst
*skl
= ctx
->thread_context
;
386 usage_cnt
= skl_put_module(ctx
, mod_id
);
388 dev_err(ctx
->dev
, "Module bad usage cnt!:%d\n", usage_cnt
);
391 ret
= skl_ipc_unload_modules(&skl
->ipc
,
392 SKL_NUM_MODULES
, &mod_id
);
394 dev_err(ctx
->dev
, "Failed to UnLoad module\n");
395 skl_get_module(ctx
, mod_id
);
402 void skl_clear_module_cnt(struct sst_dsp
*ctx
)
404 struct skl_module_table
*module
;
406 if (list_empty(&ctx
->module_list
))
409 list_for_each_entry(module
, &ctx
->module_list
, list
) {
410 module
->usage_cnt
= 0;
413 EXPORT_SYMBOL_GPL(skl_clear_module_cnt
);
415 static void skl_clear_module_table(struct sst_dsp
*ctx
)
417 struct skl_module_table
*module
, *tmp
;
419 if (list_empty(&ctx
->module_list
))
422 list_for_each_entry_safe(module
, tmp
, &ctx
->module_list
, list
) {
423 list_del(&module
->list
);
424 release_firmware(module
->mod_info
->fw
);
428 static struct skl_dsp_fw_ops skl_fw_ops
= {
429 .set_state_D0
= skl_set_dsp_D0
,
430 .set_state_D3
= skl_set_dsp_D3
,
431 .load_fw
= skl_load_base_firmware
,
432 .get_fw_errcode
= skl_get_errorcode
,
433 .load_mod
= skl_load_module
,
434 .unload_mod
= skl_unload_module
,
437 static struct sst_ops skl_ops
= {
438 .irq_handler
= skl_dsp_sst_interrupt
,
439 .write
= sst_shim32_write
,
440 .read
= sst_shim32_read
,
441 .ram_read
= sst_memcpy_fromio_32
,
442 .ram_write
= sst_memcpy_toio_32
,
443 .free
= skl_dsp_free
,
446 static struct sst_dsp_device skl_dev
= {
447 .thread
= skl_dsp_irq_thread_handler
,
451 int skl_sst_dsp_init(struct device
*dev
, void __iomem
*mmio_base
, int irq
,
452 const char *fw_name
, struct skl_dsp_loader_ops dsp_ops
, struct skl_sst
**dsp
)
458 skl
= devm_kzalloc(dev
, sizeof(*skl
), GFP_KERNEL
);
463 skl_dev
.thread_context
= skl
;
464 INIT_LIST_HEAD(&skl
->uuid_list
);
466 skl
->dsp
= skl_dsp_ctx_init(dev
, &skl_dev
, irq
);
468 dev_err(skl
->dev
, "%s: no device\n", __func__
);
474 sst
->fw_name
= fw_name
;
475 sst
->addr
.lpe
= mmio_base
;
476 sst
->addr
.shim
= mmio_base
;
477 sst_dsp_mailbox_init(sst
, (SKL_ADSP_SRAM0_BASE
+ SKL_ADSP_W0_STAT_SZ
),
478 SKL_ADSP_W0_UP_SZ
, SKL_ADSP_SRAM1_BASE
, SKL_ADSP_W1_SZ
);
480 INIT_LIST_HEAD(&sst
->module_list
);
481 sst
->dsp_ops
= dsp_ops
;
482 sst
->fw_ops
= skl_fw_ops
;
484 ret
= skl_ipc_init(dev
, skl
);
488 skl
->cores
.count
= 2;
489 skl
->is_first_boot
= true;
496 EXPORT_SYMBOL_GPL(skl_sst_dsp_init
);
498 int skl_sst_init_fw(struct device
*dev
, struct skl_sst
*ctx
)
501 struct sst_dsp
*sst
= ctx
->dsp
;
503 ret
= sst
->fw_ops
.load_fw(sst
);
505 dev_err(dev
, "Load base fw failed : %d\n", ret
);
509 skl_dsp_init_core_state(sst
);
510 ctx
->is_first_boot
= false;
514 EXPORT_SYMBOL_GPL(skl_sst_init_fw
);
516 void skl_sst_dsp_cleanup(struct device
*dev
, struct skl_sst
*ctx
)
518 skl_clear_module_table(ctx
->dsp
);
519 skl_freeup_uuid_list(ctx
);
520 skl_ipc_free(&ctx
->ipc
);
521 ctx
->dsp
->ops
->free(ctx
->dsp
);
522 if (ctx
->boot_complete
) {
523 ctx
->dsp
->cl_dev
.ops
.cl_cleanup_controller(ctx
->dsp
);
524 skl_cldma_int_disable(ctx
->dsp
);
527 EXPORT_SYMBOL_GPL(skl_sst_dsp_cleanup
);
529 MODULE_LICENSE("GPL v2");
530 MODULE_DESCRIPTION("Intel Skylake IPC driver");