blob: 155e456b7a3ac1e3aa6fba6a9d5ed7a931dff3f8 [file] [log] [blame]
Subhransu S. Prustya750ba52015-07-10 22:18:44 +05301/*
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>
Jeeja KP53afce22015-11-13 19:22:09 +053022#include <linux/err.h>
Shreyas NC09305da2016-04-21 11:45:22 +053023#include <linux/uuid.h>
Subhransu S. Prustya750ba52015-07-10 22:18:44 +053024#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
Dharageswari R6c5768b2015-12-03 23:29:50 +053039#define SKL_NUM_MODULES 1
40
Subhransu S. Prustya750ba52015-07-10 22:18:44 +053041static 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
50static int skl_transfer_firmware(struct sst_dsp *ctx,
51 const void *basefw, u32 base_fw_size)
52{
53 int ret = 0;
54
Jeeja KPb7d0254c52017-03-13 22:11:31 +053055 ret = ctx->cl_dev.ops.cl_copy_to_dmabuf(ctx, basefw, base_fw_size,
56 true);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +053057 if (ret < 0)
58 return ret;
59
60 ret = sst_dsp_register_poll(ctx,
61 SKL_ADSP_FW_STATUS,
62 SKL_FW_STS_MASK,
63 SKL_FW_RFW_START,
64 SKL_BASEFW_TIMEOUT,
65 "Firmware boot");
66
67 ctx->cl_dev.ops.cl_stop_dma(ctx);
68
69 return ret;
70}
71
Vinod Koul06711052016-05-30 17:43:00 +053072#define SKL_ADSP_FW_BIN_HDR_OFFSET 0x284
73
Subhransu S. Prustya750ba52015-07-10 22:18:44 +053074static int skl_load_base_firmware(struct sst_dsp *ctx)
75{
76 int ret = 0, i;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +053077 struct skl_sst *skl = ctx->thread_context;
Vinod Koulcd636552016-05-30 17:42:57 +053078 struct firmware stripped_fw;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +053079 u32 reg;
80
Jeeja KP84c9e282015-10-09 09:01:50 +010081 skl->boot_complete = false;
82 init_waitqueue_head(&skl->boot_wait);
83
84 if (ctx->fw == NULL) {
Vinod Koulaecf6fd2015-11-05 21:34:15 +053085 ret = request_firmware(&ctx->fw, ctx->fw_name, ctx->dev);
Jeeja KP84c9e282015-10-09 09:01:50 +010086 if (ret < 0) {
87 dev_err(ctx->dev, "Request firmware failed %d\n", ret);
Jeeja KP84c9e282015-10-09 09:01:50 +010088 return -EIO;
89 }
Vinod Koul06711052016-05-30 17:43:00 +053090 }
91
Vinod Koule2808232016-07-26 18:06:45 +053092 /* prase uuids on first boot */
93 if (skl->is_first_boot) {
94 ret = snd_skl_parse_uuids(ctx, ctx->fw, SKL_ADSP_FW_BIN_HDR_OFFSET, 0);
95 if (ret < 0) {
96 dev_err(ctx->dev, "UUID parsing err: %d\n", ret);
97 release_firmware(ctx->fw);
98 skl_dsp_disable_core(ctx, SKL_DSP_CORE0_MASK);
99 return ret;
100 }
Jeeja KP84c9e282015-10-09 09:01:50 +0100101 }
102
Vinod Koulcd636552016-05-30 17:42:57 +0530103 /* check for extended manifest */
104 stripped_fw.data = ctx->fw->data;
105 stripped_fw.size = ctx->fw->size;
106
107 skl_dsp_strip_extended_manifest(&stripped_fw);
108
Jeeja KP84c9e282015-10-09 09:01:50 +0100109 ret = skl_dsp_boot(ctx);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530110 if (ret < 0) {
Colin Ian Kingecd286a2016-09-16 18:51:21 +0100111 dev_err(ctx->dev, "Boot dsp core failed ret: %d\n", ret);
Jeeja KP84c9e282015-10-09 09:01:50 +0100112 goto skl_load_base_firmware_failed;
113 }
114
115 ret = skl_cldma_prepare(ctx);
116 if (ret < 0) {
Colin Ian Kingecd286a2016-09-16 18:51:21 +0100117 dev_err(ctx->dev, "CL dma prepare failed : %d\n", ret);
Jeeja KP84c9e282015-10-09 09:01:50 +0100118 goto skl_load_base_firmware_failed;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530119 }
120
121 /* enable Interrupt */
122 skl_ipc_int_enable(ctx);
123 skl_ipc_op_int_enable(ctx);
124
125 /* check ROM Status */
126 for (i = SKL_INIT_TIMEOUT; i > 0; --i) {
127 if (skl_check_fw_status(ctx, SKL_FW_INIT)) {
128 dev_dbg(ctx->dev,
129 "ROM loaded, we can continue with FW loading\n");
130 break;
131 }
132 mdelay(1);
133 }
134 if (!i) {
135 reg = sst_dsp_shim_read(ctx, SKL_ADSP_FW_STATUS);
136 dev_err(ctx->dev,
137 "Timeout waiting for ROM init done, reg:0x%x\n", reg);
138 ret = -EIO;
Jeeja KPae395932015-11-13 19:22:08 +0530139 goto transfer_firmware_failed;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530140 }
141
Vinod Koulcd636552016-05-30 17:42:57 +0530142 ret = skl_transfer_firmware(ctx, stripped_fw.data, stripped_fw.size);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530143 if (ret < 0) {
144 dev_err(ctx->dev, "Transfer firmware failed%d\n", ret);
Jeeja KPae395932015-11-13 19:22:08 +0530145 goto transfer_firmware_failed;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530146 } else {
147 ret = wait_event_timeout(skl->boot_wait, skl->boot_complete,
148 msecs_to_jiffies(SKL_IPC_BOOT_MSECS));
149 if (ret == 0) {
150 dev_err(ctx->dev, "DSP boot failed, FW Ready timed-out\n");
151 ret = -EIO;
Jeeja KPae395932015-11-13 19:22:08 +0530152 goto transfer_firmware_failed;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530153 }
154
155 dev_dbg(ctx->dev, "Download firmware successful%d\n", ret);
Jayachandran B1665c172016-06-13 17:59:01 +0530156 skl->fw_loaded = true;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530157 }
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530158 return 0;
Jeeja KPae395932015-11-13 19:22:08 +0530159transfer_firmware_failed:
160 ctx->cl_dev.ops.cl_cleanup_controller(ctx);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530161skl_load_base_firmware_failed:
Jayachandran B052f1032016-06-21 10:17:41 +0530162 skl_dsp_disable_core(ctx, SKL_DSP_CORE0_MASK);
Jeeja KP84c9e282015-10-09 09:01:50 +0100163 release_firmware(ctx->fw);
164 ctx->fw = NULL;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530165 return ret;
166}
167
Jayachandran B052f1032016-06-21 10:17:41 +0530168static int skl_set_dsp_D0(struct sst_dsp *ctx, unsigned int core_id)
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530169{
170 int ret;
Jayachandran B40a16602016-06-21 10:17:42 +0530171 struct skl_ipc_dxstate_info dx;
172 struct skl_sst *skl = ctx->thread_context;
173 unsigned int core_mask = SKL_DSP_CORE_MASK(core_id);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530174
Jayachandran B40a16602016-06-21 10:17:42 +0530175 /* If core0 is being turned on, we need to load the FW */
176 if (core_id == SKL_DSP_CORE0_ID) {
177 ret = skl_load_base_firmware(ctx);
178 if (ret < 0) {
179 dev_err(ctx->dev, "unable to load firmware\n");
180 return ret;
181 }
Sodhi, VunnyXb6726002017-04-25 12:18:24 +0530182
183 /* load libs as they are also lost on D3 */
184 if (skl->lib_count > 1) {
185 ret = ctx->fw_ops.load_library(ctx, skl->lib_info,
186 skl->lib_count);
187 if (ret < 0) {
188 dev_err(ctx->dev, "reload libs failed: %d\n",
189 ret);
190 return ret;
191 }
192
193 }
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530194 }
195
Jayachandran B40a16602016-06-21 10:17:42 +0530196 /*
197 * If any core other than core 0 is being moved to D0, enable the
198 * core and send the set dx IPC for the core.
199 */
200 if (core_id != SKL_DSP_CORE0_ID) {
201 ret = skl_dsp_enable_core(ctx, core_mask);
202 if (ret < 0)
203 return ret;
204
205 dx.core_mask = core_mask;
206 dx.dx_mask = core_mask;
207
208 ret = skl_ipc_set_dx(&skl->ipc, SKL_INSTANCE_ID,
209 SKL_BASE_FW_MODULE_ID, &dx);
210 if (ret < 0) {
211 dev_err(ctx->dev, "Failed to set dsp to D0:core id= %d\n",
212 core_id);
213 skl_dsp_disable_core(ctx, core_mask);
214 }
215 }
216
217 skl->cores.state[core_id] = SKL_DSP_RUNNING;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530218
Sodhi, VunnyXb6726002017-04-25 12:18:24 +0530219 return 0;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530220}
221
Jayachandran B052f1032016-06-21 10:17:41 +0530222static int skl_set_dsp_D3(struct sst_dsp *ctx, unsigned int core_id)
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530223{
224 int ret;
225 struct skl_ipc_dxstate_info dx;
226 struct skl_sst *skl = ctx->thread_context;
Jayachandran B40a16602016-06-21 10:17:42 +0530227 unsigned int core_mask = SKL_DSP_CORE_MASK(core_id);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530228
Jayachandran B40a16602016-06-21 10:17:42 +0530229 dx.core_mask = core_mask;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530230 dx.dx_mask = SKL_IPC_D3_MASK;
Jayachandran B40a16602016-06-21 10:17:42 +0530231
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530232 ret = skl_ipc_set_dx(&skl->ipc, SKL_INSTANCE_ID, SKL_BASE_FW_MODULE_ID, &dx);
Jeeja KP53afce22015-11-13 19:22:09 +0530233 if (ret < 0)
Jayachandran B40a16602016-06-21 10:17:42 +0530234 dev_err(ctx->dev, "set Dx core %d fail: %d\n", core_id, ret);
Jeeja KP53afce22015-11-13 19:22:09 +0530235
Jayachandran B40a16602016-06-21 10:17:42 +0530236 if (core_id == SKL_DSP_CORE0_ID) {
237 /* disable Interrupt */
238 ctx->cl_dev.ops.cl_cleanup_controller(ctx);
239 skl_cldma_int_disable(ctx);
240 skl_ipc_op_int_disable(ctx);
241 skl_ipc_int_disable(ctx);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530242 }
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530243
Jayachandran B40a16602016-06-21 10:17:42 +0530244 ret = skl_dsp_disable_core(ctx, core_mask);
245 if (ret < 0)
246 return ret;
247
248 skl->cores.state[core_id] = SKL_DSP_RESET;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530249 return ret;
250}
251
252static unsigned int skl_get_errorcode(struct sst_dsp *ctx)
253{
254 return sst_dsp_shim_read(ctx, SKL_ADSP_ERROR_CODE);
255}
256
Dharageswari R6c5768b2015-12-03 23:29:50 +0530257/*
258 * since get/set_module are called from DAPM context,
259 * we don't need lock for usage count
260 */
Dan Carpenterdb4e5612015-12-15 12:20:14 +0300261static int skl_get_module(struct sst_dsp *ctx, u16 mod_id)
Dharageswari R6c5768b2015-12-03 23:29:50 +0530262{
263 struct skl_module_table *module;
264
265 list_for_each_entry(module, &ctx->module_list, list) {
266 if (module->mod_info->mod_id == mod_id)
267 return ++module->usage_cnt;
268 }
269
270 return -EINVAL;
271}
272
Dan Carpenterdb4e5612015-12-15 12:20:14 +0300273static int skl_put_module(struct sst_dsp *ctx, u16 mod_id)
Dharageswari R6c5768b2015-12-03 23:29:50 +0530274{
275 struct skl_module_table *module;
276
277 list_for_each_entry(module, &ctx->module_list, list) {
278 if (module->mod_info->mod_id == mod_id)
279 return --module->usage_cnt;
280 }
281
282 return -EINVAL;
283}
284
285static struct skl_module_table *skl_fill_module_table(struct sst_dsp *ctx,
286 char *mod_name, int mod_id)
287{
288 const struct firmware *fw;
289 struct skl_module_table *skl_module;
290 unsigned int size;
291 int ret;
292
293 ret = request_firmware(&fw, mod_name, ctx->dev);
294 if (ret < 0) {
295 dev_err(ctx->dev, "Request Module %s failed :%d\n",
296 mod_name, ret);
297 return NULL;
298 }
299
300 skl_module = devm_kzalloc(ctx->dev, sizeof(*skl_module), GFP_KERNEL);
301 if (skl_module == NULL) {
302 release_firmware(fw);
303 return NULL;
304 }
305
306 size = sizeof(*skl_module->mod_info);
307 skl_module->mod_info = devm_kzalloc(ctx->dev, size, GFP_KERNEL);
308 if (skl_module->mod_info == NULL) {
309 release_firmware(fw);
310 return NULL;
311 }
312
313 skl_module->mod_info->mod_id = mod_id;
314 skl_module->mod_info->fw = fw;
315 list_add(&skl_module->list, &ctx->module_list);
316
317 return skl_module;
318}
319
320/* get a module from it's unique ID */
321static struct skl_module_table *skl_module_get_from_id(
322 struct sst_dsp *ctx, u16 mod_id)
323{
324 struct skl_module_table *module;
325
326 if (list_empty(&ctx->module_list)) {
327 dev_err(ctx->dev, "Module list is empty\n");
328 return NULL;
329 }
330
331 list_for_each_entry(module, &ctx->module_list, list) {
332 if (module->mod_info->mod_id == mod_id)
333 return module;
334 }
335
336 return NULL;
337}
338
Jeeja KPb7d0254c52017-03-13 22:11:31 +0530339static int skl_transfer_module(struct sst_dsp *ctx, const void *data,
G Kranthi4e0277d2017-04-25 12:18:21 +0530340 u32 size, u16 mod_id, u8 table_id, bool is_module)
Dharageswari R6c5768b2015-12-03 23:29:50 +0530341{
Jeeja KPb7d0254c52017-03-13 22:11:31 +0530342 int ret, bytes_left, curr_pos;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530343 struct skl_sst *skl = ctx->thread_context;
Jeeja KPb7d0254c52017-03-13 22:11:31 +0530344 skl->mod_load_complete = false;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530345
Jeeja KPb7d0254c52017-03-13 22:11:31 +0530346 bytes_left = ctx->cl_dev.ops.cl_copy_to_dmabuf(ctx, data, size, false);
347 if (bytes_left < 0)
348 return bytes_left;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530349
Sodhi, VunnyXb6726002017-04-25 12:18:24 +0530350 /* check is_module flag to load module or library */
351 if (is_module)
G Kranthi4e0277d2017-04-25 12:18:21 +0530352 ret = skl_ipc_load_modules(&skl->ipc, SKL_NUM_MODULES, &mod_id);
Sodhi, VunnyXb6726002017-04-25 12:18:24 +0530353 else
354 ret = skl_sst_ipc_load_library(&skl->ipc, 0, table_id, false);
355
356 if (ret < 0) {
357 dev_err(ctx->dev, "Failed to Load %s with err %d\n",
358 is_module ? "module" : "lib", ret);
359 goto out;
Jeeja KPb7d0254c52017-03-13 22:11:31 +0530360 }
Dharageswari R6c5768b2015-12-03 23:29:50 +0530361
Jeeja KPb7d0254c52017-03-13 22:11:31 +0530362 /*
363 * if bytes_left > 0 then wait for BDL complete interrupt and
364 * copy the next chunk till bytes_left is 0. if bytes_left is
365 * is zero, then wait for load module IPC reply
366 */
367 while (bytes_left > 0) {
368 curr_pos = size - bytes_left;
369
370 ret = skl_cldma_wait_interruptible(ctx);
371 if (ret < 0)
372 goto out;
373
374 bytes_left = ctx->cl_dev.ops.cl_copy_to_dmabuf(ctx,
375 data + curr_pos,
376 bytes_left, false);
377 }
378
379 ret = wait_event_timeout(skl->mod_load_wait, skl->mod_load_complete,
380 msecs_to_jiffies(SKL_IPC_BOOT_MSECS));
381 if (ret == 0 || !skl->mod_load_status) {
382 dev_err(ctx->dev, "Module Load failed\n");
383 ret = -EIO;
384 }
385
386out:
Dharageswari R6c5768b2015-12-03 23:29:50 +0530387 ctx->cl_dev.ops.cl_stop_dma(ctx);
388
389 return ret;
390}
391
Sodhi, VunnyXb6726002017-04-25 12:18:24 +0530392static int
393kbl_load_library(struct sst_dsp *ctx, struct skl_lib_info *linfo, int lib_count)
394{
395 struct skl_sst *skl = ctx->thread_context;
396 struct firmware stripped_fw;
397 int ret, i;
398
399 /* library indices start from 1 to N. 0 represents base FW */
400 for (i = 1; i < lib_count; i++) {
401 ret = skl_prepare_lib_load(skl, &skl->lib_info[i], &stripped_fw,
402 SKL_ADSP_FW_BIN_HDR_OFFSET, i);
403 if (ret < 0)
404 goto load_library_failed;
405 ret = skl_transfer_module(ctx, stripped_fw.data,
406 stripped_fw.size, 0, i, false);
407 if (ret < 0)
408 goto load_library_failed;
409 }
410
411 return 0;
412
413load_library_failed:
414 skl_release_library(linfo, lib_count);
415 return ret;
416}
417
Shreyas NC09305da2016-04-21 11:45:22 +0530418static int skl_load_module(struct sst_dsp *ctx, u16 mod_id, u8 *guid)
Dharageswari R6c5768b2015-12-03 23:29:50 +0530419{
420 struct skl_module_table *module_entry = NULL;
421 int ret = 0;
422 char mod_name[64]; /* guid str = 32 chars + 4 hyphens */
Shreyas NC09305da2016-04-21 11:45:22 +0530423 uuid_le *uuid_mod;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530424
Shreyas NC09305da2016-04-21 11:45:22 +0530425 uuid_mod = (uuid_le *)guid;
426 snprintf(mod_name, sizeof(mod_name), "%s%pUL%s",
427 "intel/dsp_fw_", uuid_mod, ".bin");
Dharageswari R6c5768b2015-12-03 23:29:50 +0530428
429 module_entry = skl_module_get_from_id(ctx, mod_id);
430 if (module_entry == NULL) {
431 module_entry = skl_fill_module_table(ctx, mod_name, mod_id);
432 if (module_entry == NULL) {
433 dev_err(ctx->dev, "Failed to Load module\n");
434 return -EINVAL;
435 }
436 }
437
438 if (!module_entry->usage_cnt) {
Jeeja KPb7d0254c52017-03-13 22:11:31 +0530439 ret = skl_transfer_module(ctx, module_entry->mod_info->fw->data,
G Kranthi4e0277d2017-04-25 12:18:21 +0530440 module_entry->mod_info->fw->size,
441 mod_id, 0, true);
Dharageswari R6c5768b2015-12-03 23:29:50 +0530442 if (ret < 0) {
443 dev_err(ctx->dev, "Failed to Load module\n");
444 return ret;
445 }
446 }
447
448 ret = skl_get_module(ctx, mod_id);
449
450 return ret;
451}
452
453static int skl_unload_module(struct sst_dsp *ctx, u16 mod_id)
454{
Dan Carpenterdb4e5612015-12-15 12:20:14 +0300455 int usage_cnt;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530456 struct skl_sst *skl = ctx->thread_context;
457 int ret = 0;
458
459 usage_cnt = skl_put_module(ctx, mod_id);
460 if (usage_cnt < 0) {
461 dev_err(ctx->dev, "Module bad usage cnt!:%d\n", usage_cnt);
462 return -EIO;
463 }
Vinod Koulf7ea7772017-03-24 23:10:28 +0530464
465 /* if module is used by others return, no need to unload */
466 if (usage_cnt > 0)
467 return 0;
468
Dharageswari R6c5768b2015-12-03 23:29:50 +0530469 ret = skl_ipc_unload_modules(&skl->ipc,
470 SKL_NUM_MODULES, &mod_id);
471 if (ret < 0) {
472 dev_err(ctx->dev, "Failed to UnLoad module\n");
473 skl_get_module(ctx, mod_id);
474 return ret;
475 }
476
477 return ret;
478}
479
Dharageswari Rfe3f4442016-06-03 18:29:39 +0530480void skl_clear_module_cnt(struct sst_dsp *ctx)
481{
482 struct skl_module_table *module;
483
Vinod Koula35aeae2016-06-14 21:33:45 +0530484 if (list_empty(&ctx->module_list))
485 return;
486
Dharageswari Rfe3f4442016-06-03 18:29:39 +0530487 list_for_each_entry(module, &ctx->module_list, list) {
488 module->usage_cnt = 0;
489 }
490}
491EXPORT_SYMBOL_GPL(skl_clear_module_cnt);
492
Dharageswari R6c5768b2015-12-03 23:29:50 +0530493static void skl_clear_module_table(struct sst_dsp *ctx)
494{
495 struct skl_module_table *module, *tmp;
496
497 if (list_empty(&ctx->module_list))
498 return;
499
500 list_for_each_entry_safe(module, tmp, &ctx->module_list, list) {
501 list_del(&module->list);
502 release_firmware(module->mod_info->fw);
503 }
504}
505
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530506static struct skl_dsp_fw_ops skl_fw_ops = {
507 .set_state_D0 = skl_set_dsp_D0,
508 .set_state_D3 = skl_set_dsp_D3,
509 .load_fw = skl_load_base_firmware,
510 .get_fw_errcode = skl_get_errorcode,
Dharageswari R6c5768b2015-12-03 23:29:50 +0530511 .load_mod = skl_load_module,
512 .unload_mod = skl_unload_module,
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530513};
514
Subhransu S. Prusty89b0d8a2017-04-25 12:18:22 +0530515static struct skl_dsp_fw_ops kbl_fw_ops = {
516 .set_state_D0 = skl_set_dsp_D0,
517 .set_state_D3 = skl_set_dsp_D3,
518 .load_fw = skl_load_base_firmware,
519 .get_fw_errcode = skl_get_errorcode,
Sodhi, VunnyXb6726002017-04-25 12:18:24 +0530520 .load_library = kbl_load_library,
Subhransu S. Prusty89b0d8a2017-04-25 12:18:22 +0530521 .load_mod = skl_load_module,
522 .unload_mod = skl_unload_module,
523};
524
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530525static struct sst_ops skl_ops = {
526 .irq_handler = skl_dsp_sst_interrupt,
527 .write = sst_shim32_write,
528 .read = sst_shim32_read,
529 .ram_read = sst_memcpy_fromio_32,
530 .ram_write = sst_memcpy_toio_32,
531 .free = skl_dsp_free,
532};
533
534static struct sst_dsp_device skl_dev = {
535 .thread = skl_dsp_irq_thread_handler,
536 .ops = &skl_ops,
537};
538
539int skl_sst_dsp_init(struct device *dev, void __iomem *mmio_base, int irq,
Vinod Koulaecf6fd2015-11-05 21:34:15 +0530540 const char *fw_name, struct skl_dsp_loader_ops dsp_ops, struct skl_sst **dsp)
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530541{
542 struct skl_sst *skl;
543 struct sst_dsp *sst;
544 int ret;
545
G Kranthi9fe9c712017-04-25 12:18:19 +0530546 ret = skl_sst_ctx_init(dev, irq, fw_name, dsp_ops, dsp, &skl_dev);
547 if (ret < 0) {
548 dev_err(dev, "%s: no device\n", __func__);
549 return ret;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530550 }
551
G Kranthi9fe9c712017-04-25 12:18:19 +0530552 skl = *dsp;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530553 sst = skl->dsp;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530554 sst->addr.lpe = mmio_base;
555 sst->addr.shim = mmio_base;
556 sst_dsp_mailbox_init(sst, (SKL_ADSP_SRAM0_BASE + SKL_ADSP_W0_STAT_SZ),
557 SKL_ADSP_W0_UP_SZ, SKL_ADSP_SRAM1_BASE, SKL_ADSP_W1_SZ);
558
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530559 sst->fw_ops = skl_fw_ops;
560
Jayachandran B052f1032016-06-21 10:17:41 +0530561 skl->cores.count = 2;
Jayachandran B052f1032016-06-21 10:17:41 +0530562
G Kranthi9fe9c712017-04-25 12:18:19 +0530563 return 0;
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530564}
565EXPORT_SYMBOL_GPL(skl_sst_dsp_init);
566
Subhransu S. Prusty89b0d8a2017-04-25 12:18:22 +0530567int kbl_sst_dsp_init(struct device *dev, void __iomem *mmio_base, int irq,
568 const char *fw_name, struct skl_dsp_loader_ops dsp_ops,
569 struct skl_sst **dsp)
570{
571 struct sst_dsp *sst;
572 int ret;
573
574 ret = skl_sst_dsp_init(dev, mmio_base, irq, fw_name, dsp_ops, dsp);
575 if (ret < 0) {
576 dev_err(dev, "%s: Init failed %d\n", __func__, ret);
577 return ret;
578 }
579
580 sst = (*dsp)->dsp;
581 sst->fw_ops = kbl_fw_ops;
582
583 return 0;
584
585}
586EXPORT_SYMBOL_GPL(kbl_sst_dsp_init);
587
Vinod Koul78cdbbd2016-07-26 18:06:42 +0530588int skl_sst_init_fw(struct device *dev, struct skl_sst *ctx)
589{
590 int ret;
591 struct sst_dsp *sst = ctx->dsp;
592
593 ret = sst->fw_ops.load_fw(sst);
594 if (ret < 0) {
Colin Ian Kingecd286a2016-09-16 18:51:21 +0100595 dev_err(dev, "Load base fw failed : %d\n", ret);
Vinod Koul78cdbbd2016-07-26 18:06:42 +0530596 return ret;
597 }
598
599 skl_dsp_init_core_state(sst);
Sodhi, VunnyXb6726002017-04-25 12:18:24 +0530600
601 if (ctx->lib_count > 1) {
602 ret = sst->fw_ops.load_library(sst, ctx->lib_info,
603 ctx->lib_count);
604 if (ret < 0) {
605 dev_err(dev, "Load Library failed : %x\n", ret);
606 return ret;
607 }
608 }
Vinod Koul78cdbbd2016-07-26 18:06:42 +0530609 ctx->is_first_boot = false;
610
611 return 0;
612}
613EXPORT_SYMBOL_GPL(skl_sst_init_fw);
614
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530615void skl_sst_dsp_cleanup(struct device *dev, struct skl_sst *ctx)
616{
Jeeja KPbc65a322017-01-02 09:50:05 +0530617
618 if (ctx->dsp->fw)
619 release_firmware(ctx->dsp->fw);
Dharageswari R6c5768b2015-12-03 23:29:50 +0530620 skl_clear_module_table(ctx->dsp);
Vinod Koul06711052016-05-30 17:43:00 +0530621 skl_freeup_uuid_list(ctx);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530622 skl_ipc_free(&ctx->ipc);
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530623 ctx->dsp->ops->free(ctx->dsp);
Dharageswari.R95536d82016-04-28 18:45:25 +0530624 if (ctx->boot_complete) {
625 ctx->dsp->cl_dev.ops.cl_cleanup_controller(ctx->dsp);
626 skl_cldma_int_disable(ctx->dsp);
627 }
Subhransu S. Prustya750ba52015-07-10 22:18:44 +0530628}
629EXPORT_SYMBOL_GPL(skl_sst_dsp_cleanup);
630
631MODULE_LICENSE("GPL v2");
632MODULE_DESCRIPTION("Intel Skylake IPC driver");