GNU Linux-libre 4.9.317-gnu1
[releases.git] / sound / soc / intel / skylake / skl-sst.c
1 /*
2  * skl-sst.c - HDA DSP library functions for SKL platform
3  *
4  * Copyright (C) 2014-15, Intel Corporation.
5  * Author:Rafal Redzimski <rafal.f.redzimski@intel.com>
6  *      Jeeja KP <jeeja.kp@intel.com>
7  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8  *
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.
12  *
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.
17  */
18
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"
28
29 #define SKL_BASEFW_TIMEOUT      300
30 #define SKL_INIT_TIMEOUT        1000
31
32 /* Intel HD Audio SRAM Window 0*/
33 #define SKL_ADSP_SRAM0_BASE     0x8000
34
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)
38
39 #define SKL_NUM_MODULES         1
40
41 static bool skl_check_fw_status(struct sst_dsp *ctx, u32 status)
42 {
43         u32 cur_sts;
44
45         cur_sts = sst_dsp_shim_read(ctx, SKL_ADSP_FW_STATUS) & SKL_FW_STS_MASK;
46
47         return (cur_sts == status);
48 }
49
50 static int skl_transfer_firmware(struct sst_dsp *ctx,
51                 const void *basefw, u32 base_fw_size)
52 {
53         int ret = 0;
54
55         ret = ctx->cl_dev.ops.cl_copy_to_dmabuf(ctx, basefw, base_fw_size);
56         if (ret < 0)
57                 return ret;
58
59         ret = sst_dsp_register_poll(ctx,
60                         SKL_ADSP_FW_STATUS,
61                         SKL_FW_STS_MASK,
62                         SKL_FW_RFW_START,
63                         SKL_BASEFW_TIMEOUT,
64                         "Firmware boot");
65
66         ctx->cl_dev.ops.cl_stop_dma(ctx);
67
68         return ret;
69 }
70
71 #define SKL_ADSP_FW_BIN_HDR_OFFSET 0x284
72
73 static int skl_load_base_firmware(struct sst_dsp *ctx)
74 {
75         int ret = 0, i;
76         struct skl_sst *skl = ctx->thread_context;
77         struct firmware stripped_fw;
78         u32 reg;
79
80         skl->boot_complete = false;
81         init_waitqueue_head(&skl->boot_wait);
82
83         if (ctx->fw == NULL) {
84                 ret = reject_firmware(&ctx->fw, ctx->fw_name, ctx->dev);
85                 if (ret < 0) {
86                         dev_err(ctx->dev, "Request firmware failed %d\n", ret);
87                         return -EIO;
88                 }
89         }
90
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);
94                 if (ret < 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);
98                         return ret;
99                 }
100         }
101
102         /* check for extended manifest */
103         stripped_fw.data = ctx->fw->data;
104         stripped_fw.size = ctx->fw->size;
105
106         skl_dsp_strip_extended_manifest(&stripped_fw);
107
108         ret = skl_dsp_boot(ctx);
109         if (ret < 0) {
110                 dev_err(ctx->dev, "Boot dsp core failed ret: %d\n", ret);
111                 goto skl_load_base_firmware_failed;
112         }
113
114         ret = skl_cldma_prepare(ctx);
115         if (ret < 0) {
116                 dev_err(ctx->dev, "CL dma prepare failed : %d\n", ret);
117                 goto skl_load_base_firmware_failed;
118         }
119
120         /* enable Interrupt */
121         skl_ipc_int_enable(ctx);
122         skl_ipc_op_int_enable(ctx);
123
124         /* check ROM Status */
125         for (i = SKL_INIT_TIMEOUT; i > 0; --i) {
126                 if (skl_check_fw_status(ctx, SKL_FW_INIT)) {
127                         dev_dbg(ctx->dev,
128                                 "ROM loaded, we can continue with FW loading\n");
129                         break;
130                 }
131                 mdelay(1);
132         }
133         if (!i) {
134                 reg = sst_dsp_shim_read(ctx, SKL_ADSP_FW_STATUS);
135                 dev_err(ctx->dev,
136                         "Timeout waiting for ROM init done, reg:0x%x\n", reg);
137                 ret = -EIO;
138                 goto transfer_firmware_failed;
139         }
140
141         ret = skl_transfer_firmware(ctx, stripped_fw.data, stripped_fw.size);
142         if (ret < 0) {
143                 dev_err(ctx->dev, "Transfer firmware failed%d\n", ret);
144                 goto transfer_firmware_failed;
145         } else {
146                 ret = wait_event_timeout(skl->boot_wait, skl->boot_complete,
147                                         msecs_to_jiffies(SKL_IPC_BOOT_MSECS));
148                 if (ret == 0) {
149                         dev_err(ctx->dev, "DSP boot failed, FW Ready timed-out\n");
150                         ret = -EIO;
151                         goto transfer_firmware_failed;
152                 }
153
154                 dev_dbg(ctx->dev, "Download firmware successful%d\n", ret);
155                 skl->fw_loaded = true;
156         }
157         return 0;
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);
163         ctx->fw = NULL;
164         return ret;
165 }
166
167 static int skl_set_dsp_D0(struct sst_dsp *ctx, unsigned int core_id)
168 {
169         int ret;
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);
173
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);
177                 if (ret < 0) {
178                         dev_err(ctx->dev, "unable to load firmware\n");
179                         return ret;
180                 }
181         }
182
183         /*
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.
186          */
187         if (core_id != SKL_DSP_CORE0_ID) {
188                 ret = skl_dsp_enable_core(ctx, core_mask);
189                 if (ret < 0)
190                         return ret;
191
192                 dx.core_mask = core_mask;
193                 dx.dx_mask = core_mask;
194
195                 ret = skl_ipc_set_dx(&skl->ipc, SKL_INSTANCE_ID,
196                                         SKL_BASE_FW_MODULE_ID, &dx);
197                 if (ret < 0) {
198                         dev_err(ctx->dev, "Failed to set dsp to D0:core id= %d\n",
199                                         core_id);
200                         skl_dsp_disable_core(ctx, core_mask);
201                 }
202         }
203
204         skl->cores.state[core_id] = SKL_DSP_RUNNING;
205
206         return ret;
207 }
208
209 static int skl_set_dsp_D3(struct sst_dsp *ctx, unsigned int core_id)
210 {
211         int ret;
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);
215
216         dx.core_mask = core_mask;
217         dx.dx_mask = SKL_IPC_D3_MASK;
218
219         ret = skl_ipc_set_dx(&skl->ipc, SKL_INSTANCE_ID, SKL_BASE_FW_MODULE_ID, &dx);
220         if (ret < 0)
221                 dev_err(ctx->dev, "set Dx core %d fail: %d\n", core_id, ret);
222
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);
229         }
230
231         ret = skl_dsp_disable_core(ctx, core_mask);
232         if (ret < 0)
233                 return ret;
234
235         skl->cores.state[core_id] = SKL_DSP_RESET;
236         return ret;
237 }
238
239 static unsigned int skl_get_errorcode(struct sst_dsp *ctx)
240 {
241          return sst_dsp_shim_read(ctx, SKL_ADSP_ERROR_CODE);
242 }
243
244 /*
245  * since get/set_module are called from DAPM context,
246  * we don't need lock for usage count
247  */
248 static int skl_get_module(struct sst_dsp *ctx, u16 mod_id)
249 {
250         struct skl_module_table *module;
251
252         list_for_each_entry(module, &ctx->module_list, list) {
253                 if (module->mod_info->mod_id == mod_id)
254                         return ++module->usage_cnt;
255         }
256
257         return -EINVAL;
258 }
259
260 static int skl_put_module(struct sst_dsp *ctx, u16 mod_id)
261 {
262         struct skl_module_table *module;
263
264         list_for_each_entry(module, &ctx->module_list, list) {
265                 if (module->mod_info->mod_id == mod_id)
266                         return --module->usage_cnt;
267         }
268
269         return -EINVAL;
270 }
271
272 static struct skl_module_table *skl_fill_module_table(struct sst_dsp *ctx,
273                                                 char *mod_name, int mod_id)
274 {
275         const struct firmware *fw;
276         struct skl_module_table *skl_module;
277         unsigned int size;
278         int ret;
279
280         ret = reject_firmware(&fw, mod_name, ctx->dev);
281         if (ret < 0) {
282                 dev_err(ctx->dev, "Request Module %s failed :%d\n",
283                                                         mod_name, ret);
284                 return NULL;
285         }
286
287         skl_module = devm_kzalloc(ctx->dev, sizeof(*skl_module), GFP_KERNEL);
288         if (skl_module == NULL) {
289                 release_firmware(fw);
290                 return NULL;
291         }
292
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);
297                 return NULL;
298         }
299
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);
303
304         return skl_module;
305 }
306
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)
310 {
311         struct skl_module_table *module;
312
313         if (list_empty(&ctx->module_list)) {
314                 dev_err(ctx->dev, "Module list is empty\n");
315                 return NULL;
316         }
317
318         list_for_each_entry(module, &ctx->module_list, list) {
319                 if (module->mod_info->mod_id == mod_id)
320                         return module;
321         }
322
323         return NULL;
324 }
325
326 static int skl_transfer_module(struct sst_dsp *ctx,
327                         struct skl_load_module_info *module)
328 {
329         int ret;
330         struct skl_sst *skl = ctx->thread_context;
331
332         ret = ctx->cl_dev.ops.cl_copy_to_dmabuf(ctx, module->fw->data,
333                                                         module->fw->size);
334         if (ret < 0)
335                 return ret;
336
337         ret = skl_ipc_load_modules(&skl->ipc, SKL_NUM_MODULES,
338                                                 (void *)&module->mod_id);
339         if (ret < 0)
340                 dev_err(ctx->dev, "Failed to Load module: %d\n", ret);
341
342         ctx->cl_dev.ops.cl_stop_dma(ctx);
343
344         return ret;
345 }
346
347 static int skl_load_module(struct sst_dsp *ctx, u16 mod_id, u8 *guid)
348 {
349         struct skl_module_table *module_entry = NULL;
350         int ret = 0;
351         char mod_name[64]; /* guid str = 32 chars + 4 hyphens */
352         uuid_le *uuid_mod;
353
354         uuid_mod = (uuid_le *)guid;
355         snprintf(mod_name, sizeof(mod_name), "/*(DEBLOBBED)*/");
356
357         module_entry = skl_module_get_from_id(ctx, mod_id);
358         if (module_entry == NULL) {
359                 module_entry = skl_fill_module_table(ctx, mod_name, mod_id);
360                 if (module_entry == NULL) {
361                         dev_err(ctx->dev, "Failed to Load module\n");
362                         return -EINVAL;
363                 }
364         }
365
366         if (!module_entry->usage_cnt) {
367                 ret = skl_transfer_module(ctx, module_entry->mod_info);
368                 if (ret < 0) {
369                         dev_err(ctx->dev, "Failed to Load module\n");
370                         return ret;
371                 }
372         }
373
374         ret = skl_get_module(ctx, mod_id);
375
376         return ret;
377 }
378
379 static int skl_unload_module(struct sst_dsp *ctx, u16 mod_id)
380 {
381         int usage_cnt;
382         struct skl_sst *skl = ctx->thread_context;
383         int ret = 0;
384
385         usage_cnt = skl_put_module(ctx, mod_id);
386         if (usage_cnt < 0) {
387                 dev_err(ctx->dev, "Module bad usage cnt!:%d\n", usage_cnt);
388                 return -EIO;
389         }
390         ret = skl_ipc_unload_modules(&skl->ipc,
391                         SKL_NUM_MODULES, &mod_id);
392         if (ret < 0) {
393                 dev_err(ctx->dev, "Failed to UnLoad module\n");
394                 skl_get_module(ctx, mod_id);
395                 return ret;
396         }
397
398         return ret;
399 }
400
401 void skl_clear_module_cnt(struct sst_dsp *ctx)
402 {
403         struct skl_module_table *module;
404
405         if (list_empty(&ctx->module_list))
406                 return;
407
408         list_for_each_entry(module, &ctx->module_list, list) {
409                 module->usage_cnt = 0;
410         }
411 }
412 EXPORT_SYMBOL_GPL(skl_clear_module_cnt);
413
414 static void skl_clear_module_table(struct sst_dsp *ctx)
415 {
416         struct skl_module_table *module, *tmp;
417
418         if (list_empty(&ctx->module_list))
419                 return;
420
421         list_for_each_entry_safe(module, tmp, &ctx->module_list, list) {
422                 list_del(&module->list);
423                 release_firmware(module->mod_info->fw);
424         }
425 }
426
427 static struct skl_dsp_fw_ops skl_fw_ops = {
428         .set_state_D0 = skl_set_dsp_D0,
429         .set_state_D3 = skl_set_dsp_D3,
430         .load_fw = skl_load_base_firmware,
431         .get_fw_errcode = skl_get_errorcode,
432         .load_mod = skl_load_module,
433         .unload_mod = skl_unload_module,
434 };
435
436 static struct sst_ops skl_ops = {
437         .irq_handler = skl_dsp_sst_interrupt,
438         .write = sst_shim32_write,
439         .read = sst_shim32_read,
440         .ram_read = sst_memcpy_fromio_32,
441         .ram_write = sst_memcpy_toio_32,
442         .free = skl_dsp_free,
443 };
444
445 static struct sst_dsp_device skl_dev = {
446         .thread = skl_dsp_irq_thread_handler,
447         .ops = &skl_ops,
448 };
449
450 int skl_sst_dsp_init(struct device *dev, void __iomem *mmio_base, int irq,
451                 const char *fw_name, struct skl_dsp_loader_ops dsp_ops, struct skl_sst **dsp)
452 {
453         struct skl_sst *skl;
454         struct sst_dsp *sst;
455         int ret;
456
457         skl = devm_kzalloc(dev, sizeof(*skl), GFP_KERNEL);
458         if (skl == NULL)
459                 return -ENOMEM;
460
461         skl->dev = dev;
462         skl_dev.thread_context = skl;
463         INIT_LIST_HEAD(&skl->uuid_list);
464
465         skl->dsp = skl_dsp_ctx_init(dev, &skl_dev, irq);
466         if (!skl->dsp) {
467                 dev_err(skl->dev, "%s: no device\n", __func__);
468                 return -ENODEV;
469         }
470
471         sst = skl->dsp;
472
473         sst->fw_name = fw_name;
474         sst->addr.lpe = mmio_base;
475         sst->addr.shim = mmio_base;
476         sst_dsp_mailbox_init(sst, (SKL_ADSP_SRAM0_BASE + SKL_ADSP_W0_STAT_SZ),
477                         SKL_ADSP_W0_UP_SZ, SKL_ADSP_SRAM1_BASE, SKL_ADSP_W1_SZ);
478
479         INIT_LIST_HEAD(&sst->module_list);
480         sst->dsp_ops = dsp_ops;
481         sst->fw_ops = skl_fw_ops;
482
483         ret = skl_ipc_init(dev, skl);
484         if (ret)
485                 return ret;
486
487         skl->cores.count = 2;
488         skl->is_first_boot = true;
489
490         if (dsp)
491                 *dsp = skl;
492
493         return ret;
494 }
495 EXPORT_SYMBOL_GPL(skl_sst_dsp_init);
496
497 int skl_sst_init_fw(struct device *dev, struct skl_sst *ctx)
498 {
499         int ret;
500         struct sst_dsp *sst = ctx->dsp;
501
502         ret = sst->fw_ops.load_fw(sst);
503         if (ret < 0) {
504                 dev_err(dev, "Load base fw failed : %d\n", ret);
505                 return ret;
506         }
507
508         skl_dsp_init_core_state(sst);
509         ctx->is_first_boot = false;
510
511         return 0;
512 }
513 EXPORT_SYMBOL_GPL(skl_sst_init_fw);
514
515 void skl_sst_dsp_cleanup(struct device *dev, struct skl_sst *ctx)
516 {
517
518         if (ctx->dsp->fw)
519                 release_firmware(ctx->dsp->fw);
520         skl_clear_module_table(ctx->dsp);
521         skl_freeup_uuid_list(ctx);
522         skl_ipc_free(&ctx->ipc);
523         ctx->dsp->ops->free(ctx->dsp);
524         if (ctx->boot_complete) {
525                 ctx->dsp->cl_dev.ops.cl_cleanup_controller(ctx->dsp);
526                 skl_cldma_int_disable(ctx->dsp);
527         }
528 }
529 EXPORT_SYMBOL_GPL(skl_sst_dsp_cleanup);
530
531 MODULE_LICENSE("GPL v2");
532 MODULE_DESCRIPTION("Intel Skylake IPC driver");