blob: 8cbf080c38b3ef1acfcecb8f869bfbcee59eb732 [file] [log] [blame]
Jeeja KPd255b092015-07-21 23:53:56 +05301/*
2 * skl-message.c - HDA DSP interface for FW registration, Pipe and Module
3 * configurations
4 *
5 * Copyright (C) 2015 Intel Corp
6 * Author:Rafal Redzimski <rafal.f.redzimski@intel.com>
7 * Jeeja KP <jeeja.kp@intel.com>
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as version 2, as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 */
19
20#include <linux/slab.h>
21#include <linux/pci.h>
22#include <sound/core.h>
23#include <sound/pcm.h>
24#include "skl-sst-dsp.h"
Guneshwor Singhb003a342017-08-02 21:51:19 +053025#include "cnl-sst-dsp.h"
Jeeja KPd255b092015-07-21 23:53:56 +053026#include "skl-sst-ipc.h"
27#include "skl.h"
28#include "../common/sst-dsp.h"
29#include "../common/sst-dsp-priv.h"
Jeeja KP23db4722015-08-01 19:40:41 +053030#include "skl-topology.h"
31#include "skl-tplg-interface.h"
Jeeja KPd255b092015-07-21 23:53:56 +053032
33static int skl_alloc_dma_buf(struct device *dev,
34 struct snd_dma_buffer *dmab, size_t size)
35{
36 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
37 struct hdac_bus *bus = ebus_to_hbus(ebus);
38
39 if (!bus)
40 return -ENODEV;
41
42 return bus->io_ops->dma_alloc_pages(bus, SNDRV_DMA_TYPE_DEV, size, dmab);
43}
44
45static int skl_free_dma_buf(struct device *dev, struct snd_dma_buffer *dmab)
46{
47 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
48 struct hdac_bus *bus = ebus_to_hbus(ebus);
49
50 if (!bus)
51 return -ENODEV;
52
53 bus->io_ops->dma_free_pages(bus, dmab);
54
55 return 0;
56}
57
Pradeep Tewani94523142017-12-06 16:34:03 +053058#define SKL_ASTATE_PARAM_ID 4
59
60void skl_dsp_set_astate_cfg(struct skl_sst *ctx, u32 cnt, void *data)
61{
62 struct skl_ipc_large_config_msg msg = {0};
63
64 msg.large_param_id = SKL_ASTATE_PARAM_ID;
65 msg.param_data_size = (cnt * sizeof(struct skl_astate_param) +
66 sizeof(cnt));
67
68 skl_ipc_set_large_config(&ctx->ipc, &msg, data);
69}
70
Jeeja KP4e109962015-10-22 23:22:39 +053071#define NOTIFICATION_PARAM_ID 3
72#define NOTIFICATION_MASK 0xf
73
74/* disable notfication for underruns/overruns from firmware module */
G Kranthicb729d82017-03-13 22:11:29 +053075void skl_dsp_enable_notification(struct skl_sst *ctx, bool enable)
Jeeja KP4e109962015-10-22 23:22:39 +053076{
77 struct notification_mask mask;
78 struct skl_ipc_large_config_msg msg = {0};
79
80 mask.notify = NOTIFICATION_MASK;
81 mask.enable = enable;
82
83 msg.large_param_id = NOTIFICATION_PARAM_ID;
84 msg.param_data_size = sizeof(mask);
85
86 skl_ipc_set_large_config(&ctx->ipc, &msg, (u32 *)&mask);
87}
88
Jeeja KP92eb4f62016-03-11 10:12:56 +053089static int skl_dsp_setup_spib(struct device *dev, unsigned int size,
90 int stream_tag, int enable)
91{
92 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
93 struct hdac_bus *bus = ebus_to_hbus(ebus);
94 struct hdac_stream *stream = snd_hdac_get_stream(bus,
95 SNDRV_PCM_STREAM_PLAYBACK, stream_tag);
96 struct hdac_ext_stream *estream;
97
98 if (!stream)
99 return -EINVAL;
100
101 estream = stream_to_hdac_ext_stream(stream);
102 /* enable/disable SPIB for this hdac stream */
103 snd_hdac_ext_stream_spbcap_enable(ebus, enable, stream->index);
104
105 /* set the spib value */
106 snd_hdac_ext_stream_set_spib(ebus, estream, size);
107
108 return 0;
109}
110
111static int skl_dsp_prepare(struct device *dev, unsigned int format,
112 unsigned int size, struct snd_dma_buffer *dmab)
113{
114 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
115 struct hdac_bus *bus = ebus_to_hbus(ebus);
116 struct hdac_ext_stream *estream;
117 struct hdac_stream *stream;
118 struct snd_pcm_substream substream;
119 int ret;
120
121 if (!bus)
122 return -ENODEV;
123
124 memset(&substream, 0, sizeof(substream));
125 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
126
127 estream = snd_hdac_ext_stream_assign(ebus, &substream,
128 HDAC_EXT_STREAM_TYPE_HOST);
129 if (!estream)
130 return -ENODEV;
131
132 stream = hdac_stream(estream);
133
134 /* assign decouple host dma channel */
135 ret = snd_hdac_dsp_prepare(stream, format, size, dmab);
136 if (ret < 0)
137 return ret;
138
139 skl_dsp_setup_spib(dev, size, stream->stream_tag, true);
140
141 return stream->stream_tag;
142}
143
144static int skl_dsp_trigger(struct device *dev, bool start, int stream_tag)
145{
146 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
147 struct hdac_stream *stream;
148 struct hdac_bus *bus = ebus_to_hbus(ebus);
149
150 if (!bus)
151 return -ENODEV;
152
153 stream = snd_hdac_get_stream(bus,
154 SNDRV_PCM_STREAM_PLAYBACK, stream_tag);
155 if (!stream)
156 return -EINVAL;
157
158 snd_hdac_dsp_trigger(stream, start);
159
160 return 0;
161}
162
163static int skl_dsp_cleanup(struct device *dev,
164 struct snd_dma_buffer *dmab, int stream_tag)
165{
166 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
167 struct hdac_stream *stream;
168 struct hdac_ext_stream *estream;
169 struct hdac_bus *bus = ebus_to_hbus(ebus);
170
171 if (!bus)
172 return -ENODEV;
173
174 stream = snd_hdac_get_stream(bus,
175 SNDRV_PCM_STREAM_PLAYBACK, stream_tag);
176 if (!stream)
177 return -EINVAL;
178
179 estream = stream_to_hdac_ext_stream(stream);
180 skl_dsp_setup_spib(dev, 0, stream_tag, false);
181 snd_hdac_ext_stream_release(estream, HDAC_EXT_STREAM_TYPE_HOST);
182
183 snd_hdac_dsp_cleanup(stream, dmab);
184
185 return 0;
186}
187
Jeeja KPbc23ca32016-03-11 10:12:53 +0530188static struct skl_dsp_loader_ops skl_get_loader_ops(void)
189{
190 struct skl_dsp_loader_ops loader_ops;
191
192 memset(&loader_ops, 0, sizeof(struct skl_dsp_loader_ops));
193
194 loader_ops.alloc_dma_buf = skl_alloc_dma_buf;
195 loader_ops.free_dma_buf = skl_free_dma_buf;
196
197 return loader_ops;
198};
199
Jeeja KP92eb4f62016-03-11 10:12:56 +0530200static struct skl_dsp_loader_ops bxt_get_loader_ops(void)
201{
202 struct skl_dsp_loader_ops loader_ops;
203
204 memset(&loader_ops, 0, sizeof(loader_ops));
205
206 loader_ops.alloc_dma_buf = skl_alloc_dma_buf;
207 loader_ops.free_dma_buf = skl_free_dma_buf;
208 loader_ops.prepare = skl_dsp_prepare;
209 loader_ops.trigger = skl_dsp_trigger;
210 loader_ops.cleanup = skl_dsp_cleanup;
211
212 return loader_ops;
213};
214
Jeeja KPbc23ca32016-03-11 10:12:53 +0530215static const struct skl_dsp_ops dsp_ops[] = {
216 {
217 .id = 0x9d70,
Dharageswari R363d4532017-08-02 21:51:12 +0530218 .num_cores = 2,
Jeeja KPbc23ca32016-03-11 10:12:53 +0530219 .loader_ops = skl_get_loader_ops,
220 .init = skl_sst_dsp_init,
Vinod Koul78cdbbd2016-07-26 18:06:42 +0530221 .init_fw = skl_sst_init_fw,
Jeeja KPbc23ca32016-03-11 10:12:53 +0530222 .cleanup = skl_sst_dsp_cleanup
223 },
Jeeja KP92eb4f62016-03-11 10:12:56 +0530224 {
Vinod Koul451dfb5f2016-07-11 22:02:08 +0530225 .id = 0x9d71,
Dharageswari R363d4532017-08-02 21:51:12 +0530226 .num_cores = 2,
Vinod Koul451dfb5f2016-07-11 22:02:08 +0530227 .loader_ops = skl_get_loader_ops,
Subhransu S. Prusty89b0d8a2017-04-25 12:18:22 +0530228 .init = kbl_sst_dsp_init,
Vinod Koul78cdbbd2016-07-26 18:06:42 +0530229 .init_fw = skl_sst_init_fw,
Vinod Koul451dfb5f2016-07-11 22:02:08 +0530230 .cleanup = skl_sst_dsp_cleanup
231 },
232 {
Jeeja KP92eb4f62016-03-11 10:12:56 +0530233 .id = 0x5a98,
Dharageswari R363d4532017-08-02 21:51:12 +0530234 .num_cores = 2,
Jeeja KP92eb4f62016-03-11 10:12:56 +0530235 .loader_ops = bxt_get_loader_ops,
236 .init = bxt_sst_dsp_init,
Vinod Koul78cdbbd2016-07-26 18:06:42 +0530237 .init_fw = bxt_sst_init_fw,
Jeeja KP92eb4f62016-03-11 10:12:56 +0530238 .cleanup = bxt_sst_dsp_cleanup
239 },
Vinod Koul25504862017-02-09 16:44:03 +0530240 {
241 .id = 0x3198,
Dharageswari R363d4532017-08-02 21:51:12 +0530242 .num_cores = 2,
Vinod Koul25504862017-02-09 16:44:03 +0530243 .loader_ops = bxt_get_loader_ops,
244 .init = bxt_sst_dsp_init,
245 .init_fw = bxt_sst_init_fw,
246 .cleanup = bxt_sst_dsp_cleanup
247 },
Guneshwor Singhb003a342017-08-02 21:51:19 +0530248 {
249 .id = 0x9dc8,
250 .num_cores = 4,
251 .loader_ops = bxt_get_loader_ops,
252 .init = cnl_sst_dsp_init,
253 .init_fw = cnl_sst_init_fw,
254 .cleanup = cnl_sst_dsp_cleanup
255 },
Jeeja KPbc23ca32016-03-11 10:12:53 +0530256};
257
Vinod Koul73a67582016-07-26 18:06:41 +0530258const struct skl_dsp_ops *skl_get_dsp_ops(int pci_id)
Jeeja KPbc23ca32016-03-11 10:12:53 +0530259{
260 int i;
261
262 for (i = 0; i < ARRAY_SIZE(dsp_ops); i++) {
263 if (dsp_ops[i].id == pci_id)
Vinod Koul73a67582016-07-26 18:06:41 +0530264 return &dsp_ops[i];
Jeeja KPbc23ca32016-03-11 10:12:53 +0530265 }
266
Vinod Koul73a67582016-07-26 18:06:41 +0530267 return NULL;
Jeeja KPbc23ca32016-03-11 10:12:53 +0530268}
269
Jeeja KPd255b092015-07-21 23:53:56 +0530270int skl_init_dsp(struct skl *skl)
271{
272 void __iomem *mmio_base;
273 struct hdac_ext_bus *ebus = &skl->ebus;
274 struct hdac_bus *bus = ebus_to_hbus(ebus);
Jeeja KPd255b092015-07-21 23:53:56 +0530275 struct skl_dsp_loader_ops loader_ops;
Jeeja KPbc23ca32016-03-11 10:12:53 +0530276 int irq = bus->irq;
Vinod Koul73a67582016-07-26 18:06:41 +0530277 const struct skl_dsp_ops *ops;
Guneshwor Singhf0a550a2017-08-02 21:51:13 +0530278 struct skl_dsp_cores *cores;
Vinod Koul73a67582016-07-26 18:06:41 +0530279 int ret;
Jeeja KPd255b092015-07-21 23:53:56 +0530280
281 /* enable ppcap interrupt */
282 snd_hdac_ext_bus_ppcap_enable(&skl->ebus, true);
283 snd_hdac_ext_bus_ppcap_int_enable(&skl->ebus, true);
284
285 /* read the BAR of the ADSP MMIO */
286 mmio_base = pci_ioremap_bar(skl->pci, 4);
287 if (mmio_base == NULL) {
288 dev_err(bus->dev, "ioremap error\n");
289 return -ENXIO;
290 }
291
Vinod Koul73a67582016-07-26 18:06:41 +0530292 ops = skl_get_dsp_ops(skl->pci->device);
Subhransu S. Prustyf77d4432017-08-22 16:45:51 +0530293 if (!ops) {
Subhransu S. Prustyf77d4432017-08-22 16:45:51 +0530294 ret = -EIO;
Subhransu S. Prusty91499162017-08-23 19:37:12 +0530295 goto unmap_mmio;
Subhransu S. Prustyf77d4432017-08-22 16:45:51 +0530296 }
Jeeja KPbc23ca32016-03-11 10:12:53 +0530297
Vinod Koul73a67582016-07-26 18:06:41 +0530298 loader_ops = ops->loader_ops();
299 ret = ops->init(bus->dev, mmio_base, irq,
300 skl->fw_name, loader_ops,
301 &skl->skl_sst);
Jeeja KPbc23ca32016-03-11 10:12:53 +0530302
Jeeja KP2ac454f2015-10-22 23:22:40 +0530303 if (ret < 0)
Subhransu S. Prustyf77d4432017-08-22 16:45:51 +0530304 goto unmap_mmio;
Jeeja KP2ac454f2015-10-22 23:22:40 +0530305
G Kranthi7bd86a32017-03-13 22:11:30 +0530306 skl->skl_sst->dsp_ops = ops;
Guneshwor Singhf0a550a2017-08-02 21:51:13 +0530307 cores = &skl->skl_sst->cores;
308 cores->count = ops->num_cores;
309
310 cores->state = kcalloc(cores->count, sizeof(*cores->state), GFP_KERNEL);
Subhransu S. Prustyf77d4432017-08-22 16:45:51 +0530311 if (!cores->state) {
312 ret = -ENOMEM;
313 goto unmap_mmio;
314 }
Guneshwor Singhf0a550a2017-08-02 21:51:13 +0530315
316 cores->usage_count = kcalloc(cores->count, sizeof(*cores->usage_count),
317 GFP_KERNEL);
318 if (!cores->usage_count) {
Subhransu S. Prustyf77d4432017-08-22 16:45:51 +0530319 ret = -ENOMEM;
320 goto free_core_state;
Guneshwor Singhf0a550a2017-08-02 21:51:13 +0530321 }
Dharageswari R363d4532017-08-02 21:51:12 +0530322
Jeeja KPd255b092015-07-21 23:53:56 +0530323 dev_dbg(bus->dev, "dsp registration status=%d\n", ret);
324
Subhransu S. Prustyf77d4432017-08-22 16:45:51 +0530325 return 0;
326
327free_core_state:
328 kfree(cores->state);
329
330unmap_mmio:
331 iounmap(mmio_base);
332
Jeeja KPd255b092015-07-21 23:53:56 +0530333 return ret;
334}
335
Jeeja KPbc23ca32016-03-11 10:12:53 +0530336int skl_free_dsp(struct skl *skl)
Jeeja KPd255b092015-07-21 23:53:56 +0530337{
338 struct hdac_ext_bus *ebus = &skl->ebus;
339 struct hdac_bus *bus = ebus_to_hbus(ebus);
Jeeja KPbc23ca32016-03-11 10:12:53 +0530340 struct skl_sst *ctx = skl->skl_sst;
Jeeja KPd255b092015-07-21 23:53:56 +0530341
342 /* disable ppcap interrupt */
343 snd_hdac_ext_bus_ppcap_int_enable(&skl->ebus, false);
344
G Kranthi7bd86a32017-03-13 22:11:30 +0530345 ctx->dsp_ops->cleanup(bus->dev, ctx);
Jeeja KPbc23ca32016-03-11 10:12:53 +0530346
Guneshwor Singhf0a550a2017-08-02 21:51:13 +0530347 kfree(ctx->cores.state);
348 kfree(ctx->cores.usage_count);
349
Jeeja KPd255b092015-07-21 23:53:56 +0530350 if (ctx->dsp->addr.lpe)
351 iounmap(ctx->dsp->addr.lpe);
Jeeja KPbc23ca32016-03-11 10:12:53 +0530352
353 return 0;
Jeeja KPd255b092015-07-21 23:53:56 +0530354}
355
Jayachandran B8b4a1332016-11-03 17:07:21 +0530356/*
357 * In the case of "suspend_active" i.e, the Audio IP being active
358 * during system suspend, immediately excecute any pending D0i3 work
359 * before suspending. This is needed for the IP to work in low power
360 * mode during system suspend. In the case of normal suspend, cancel
361 * any pending D0i3 work.
362 */
363int skl_suspend_late_dsp(struct skl *skl)
364{
365 struct skl_sst *ctx = skl->skl_sst;
366 struct delayed_work *dwork;
367
368 if (!ctx)
369 return 0;
370
371 dwork = &ctx->d0i3.work;
372
373 if (dwork->work.func) {
374 if (skl->supend_active)
375 flush_delayed_work(dwork);
376 else
377 cancel_delayed_work_sync(dwork);
378 }
379
380 return 0;
381}
382
Jeeja KPd255b092015-07-21 23:53:56 +0530383int skl_suspend_dsp(struct skl *skl)
384{
385 struct skl_sst *ctx = skl->skl_sst;
386 int ret;
387
388 /* if ppcap is not supported return 0 */
Vinod Koulec8ae572016-08-04 15:46:01 +0530389 if (!skl->ebus.bus.ppcap)
Jeeja KPd255b092015-07-21 23:53:56 +0530390 return 0;
391
392 ret = skl_dsp_sleep(ctx->dsp);
393 if (ret < 0)
394 return ret;
395
396 /* disable ppcap interrupt */
397 snd_hdac_ext_bus_ppcap_int_enable(&skl->ebus, false);
398 snd_hdac_ext_bus_ppcap_enable(&skl->ebus, false);
399
400 return 0;
401}
402
403int skl_resume_dsp(struct skl *skl)
404{
405 struct skl_sst *ctx = skl->skl_sst;
Jeeja KP4e109962015-10-22 23:22:39 +0530406 int ret;
Jeeja KPd255b092015-07-21 23:53:56 +0530407
408 /* if ppcap is not supported return 0 */
Vinod Koulec8ae572016-08-04 15:46:01 +0530409 if (!skl->ebus.bus.ppcap)
Jeeja KPd255b092015-07-21 23:53:56 +0530410 return 0;
411
412 /* enable ppcap interrupt */
413 snd_hdac_ext_bus_ppcap_enable(&skl->ebus, true);
414 snd_hdac_ext_bus_ppcap_int_enable(&skl->ebus, true);
415
Vinod Koul78cdbbd2016-07-26 18:06:42 +0530416 /* check if DSP 1st boot is done */
417 if (skl->skl_sst->is_first_boot == true)
418 return 0;
419
Pardha Saradhi Kd5cc0a12018-01-02 14:59:57 +0530420 /* disable dynamic clock gating during fw and lib download */
421 ctx->enable_miscbdcge(ctx->dev, false);
422
Jeeja KP4e109962015-10-22 23:22:39 +0530423 ret = skl_dsp_wake(ctx->dsp);
Pardha Saradhi Kd5cc0a12018-01-02 14:59:57 +0530424 ctx->enable_miscbdcge(ctx->dev, true);
Jeeja KP4e109962015-10-22 23:22:39 +0530425 if (ret < 0)
426 return ret;
427
428 skl_dsp_enable_notification(skl->skl_sst, false);
Pradeep Tewani94523142017-12-06 16:34:03 +0530429
430 if (skl->cfg.astate_cfg != NULL) {
431 skl_dsp_set_astate_cfg(skl->skl_sst, skl->cfg.astate_cfg->count,
432 skl->cfg.astate_cfg);
433 }
Jeeja KP4e109962015-10-22 23:22:39 +0530434 return ret;
Jeeja KPd255b092015-07-21 23:53:56 +0530435}
Jeeja KP23db4722015-08-01 19:40:41 +0530436
437enum skl_bitdepth skl_get_bit_depth(int params)
438{
439 switch (params) {
440 case 8:
441 return SKL_DEPTH_8BIT;
442
443 case 16:
444 return SKL_DEPTH_16BIT;
445
446 case 24:
447 return SKL_DEPTH_24BIT;
448
449 case 32:
450 return SKL_DEPTH_32BIT;
451
452 default:
453 return SKL_DEPTH_INVALID;
454
455 }
456}
457
Jeeja KP23db4722015-08-01 19:40:41 +0530458/*
459 * Each module in DSP expects a base module configuration, which consists of
460 * PCM format information, which we calculate in driver and resource values
461 * which are read from widget information passed through topology binary
462 * This is send when we create a module with INIT_INSTANCE IPC msg
463 */
464static void skl_set_base_module_format(struct skl_sst *ctx,
465 struct skl_module_cfg *mconfig,
466 struct skl_base_cfg *base_cfg)
467{
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530468 struct skl_module *module = mconfig->module;
469 struct skl_module_res *res = &module->resources[mconfig->res_idx];
470 struct skl_module_iface *fmt = &module->formats[mconfig->fmt_idx];
471 struct skl_module_fmt *format = &fmt->inputs[0].fmt;
Jeeja KP23db4722015-08-01 19:40:41 +0530472
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530473 base_cfg->audio_fmt.number_of_channels = format->channels;
Jeeja KP23db4722015-08-01 19:40:41 +0530474
475 base_cfg->audio_fmt.s_freq = format->s_freq;
476 base_cfg->audio_fmt.bit_depth = format->bit_depth;
477 base_cfg->audio_fmt.valid_bit_depth = format->valid_bit_depth;
478 base_cfg->audio_fmt.ch_cfg = format->ch_cfg;
479
480 dev_dbg(ctx->dev, "bit_depth=%x valid_bd=%x ch_config=%x\n",
481 format->bit_depth, format->valid_bit_depth,
482 format->ch_cfg);
483
Jeeja KP3e81f1a2015-10-27 09:22:59 +0900484 base_cfg->audio_fmt.channel_map = format->ch_map;
Jeeja KP23db4722015-08-01 19:40:41 +0530485
Jeeja KP3e81f1a2015-10-27 09:22:59 +0900486 base_cfg->audio_fmt.interleaving = format->interleaving_style;
Jeeja KP23db4722015-08-01 19:40:41 +0530487
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530488 base_cfg->cps = res->cps;
489 base_cfg->ibs = res->ibs;
490 base_cfg->obs = res->obs;
491 base_cfg->is_pages = res->is_pages;
Jeeja KP23db4722015-08-01 19:40:41 +0530492}
493
494/*
495 * Copies copier capabilities into copier module and updates copier module
496 * config size.
497 */
498static void skl_copy_copier_caps(struct skl_module_cfg *mconfig,
499 struct skl_cpr_cfg *cpr_mconfig)
500{
501 if (mconfig->formats_config.caps_size == 0)
502 return;
503
504 memcpy(cpr_mconfig->gtw_cfg.config_data,
505 mconfig->formats_config.caps,
506 mconfig->formats_config.caps_size);
507
508 cpr_mconfig->gtw_cfg.config_length =
509 (mconfig->formats_config.caps_size) / 4;
510}
511
Jeeja KPbfa764a2015-10-22 23:22:41 +0530512#define SKL_NON_GATEWAY_CPR_NODE_ID 0xFFFFFFFF
Jeeja KP23db4722015-08-01 19:40:41 +0530513/*
514 * Calculate the gatewat settings required for copier module, type of
515 * gateway and index of gateway to use
516 */
Dharageswari.R4fdf8102016-02-05 12:19:05 +0530517static u32 skl_get_node_id(struct skl_sst *ctx,
518 struct skl_module_cfg *mconfig)
Jeeja KP23db4722015-08-01 19:40:41 +0530519{
520 union skl_connector_node_id node_id = {0};
Jeeja KPd7b18812015-10-22 23:22:38 +0530521 union skl_ssp_dma_node ssp_node = {0};
Jeeja KP23db4722015-08-01 19:40:41 +0530522 struct skl_pipe_params *params = mconfig->pipe->p_params;
523
524 switch (mconfig->dev_type) {
525 case SKL_DEVICE_BT:
526 node_id.node.dma_type =
527 (SKL_CONN_SOURCE == mconfig->hw_conn_type) ?
528 SKL_DMA_I2S_LINK_OUTPUT_CLASS :
529 SKL_DMA_I2S_LINK_INPUT_CLASS;
530 node_id.node.vindex = params->host_dma_id +
531 (mconfig->vbus_id << 3);
532 break;
533
534 case SKL_DEVICE_I2S:
535 node_id.node.dma_type =
536 (SKL_CONN_SOURCE == mconfig->hw_conn_type) ?
537 SKL_DMA_I2S_LINK_OUTPUT_CLASS :
538 SKL_DMA_I2S_LINK_INPUT_CLASS;
Jeeja KPd7b18812015-10-22 23:22:38 +0530539 ssp_node.dma_node.time_slot_index = mconfig->time_slot;
540 ssp_node.dma_node.i2s_instance = mconfig->vbus_id;
541 node_id.node.vindex = ssp_node.val;
Jeeja KP23db4722015-08-01 19:40:41 +0530542 break;
543
544 case SKL_DEVICE_DMIC:
545 node_id.node.dma_type = SKL_DMA_DMIC_LINK_INPUT_CLASS;
546 node_id.node.vindex = mconfig->vbus_id +
547 (mconfig->time_slot);
548 break;
549
550 case SKL_DEVICE_HDALINK:
551 node_id.node.dma_type =
552 (SKL_CONN_SOURCE == mconfig->hw_conn_type) ?
553 SKL_DMA_HDA_LINK_OUTPUT_CLASS :
554 SKL_DMA_HDA_LINK_INPUT_CLASS;
555 node_id.node.vindex = params->link_dma_id;
556 break;
557
Jeeja KPbfa764a2015-10-22 23:22:41 +0530558 case SKL_DEVICE_HDAHOST:
Jeeja KP23db4722015-08-01 19:40:41 +0530559 node_id.node.dma_type =
560 (SKL_CONN_SOURCE == mconfig->hw_conn_type) ?
561 SKL_DMA_HDA_HOST_OUTPUT_CLASS :
562 SKL_DMA_HDA_HOST_INPUT_CLASS;
563 node_id.node.vindex = params->host_dma_id;
564 break;
Jeeja KPbfa764a2015-10-22 23:22:41 +0530565
566 default:
Dharageswari.R4fdf8102016-02-05 12:19:05 +0530567 node_id.val = 0xFFFFFFFF;
568 break;
569 }
570
571 return node_id.val;
572}
573
574static void skl_setup_cpr_gateway_cfg(struct skl_sst *ctx,
575 struct skl_module_cfg *mconfig,
576 struct skl_cpr_cfg *cpr_mconfig)
577{
Ramesh Babuf6e6ab12017-06-19 11:59:20 +0530578 u32 dma_io_buf;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530579 struct skl_module_res *res;
580 int res_idx = mconfig->res_idx;
581 struct skl *skl = get_skl_ctx(ctx->dev);
Ramesh Babuf6e6ab12017-06-19 11:59:20 +0530582
Dharageswari.R4fdf8102016-02-05 12:19:05 +0530583 cpr_mconfig->gtw_cfg.node_id = skl_get_node_id(ctx, mconfig);
584
585 if (cpr_mconfig->gtw_cfg.node_id == SKL_NON_GATEWAY_CPR_NODE_ID) {
Jeeja KPbfa764a2015-10-22 23:22:41 +0530586 cpr_mconfig->cpr_feature_mask = 0;
587 return;
Jeeja KP23db4722015-08-01 19:40:41 +0530588 }
589
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530590 if (skl->nr_modules) {
591 res = &mconfig->module->resources[mconfig->res_idx];
592 cpr_mconfig->gtw_cfg.dma_buffer_size = res->dma_buffer_size;
593 goto skip_buf_size_calc;
594 } else {
595 res = &mconfig->module->resources[res_idx];
596 }
597
Ramesh Babuf6e6ab12017-06-19 11:59:20 +0530598 switch (mconfig->hw_conn_type) {
599 case SKL_CONN_SOURCE:
600 if (mconfig->dev_type == SKL_DEVICE_HDAHOST)
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530601 dma_io_buf = res->ibs;
Ramesh Babuf6e6ab12017-06-19 11:59:20 +0530602 else
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530603 dma_io_buf = res->obs;
Ramesh Babuf6e6ab12017-06-19 11:59:20 +0530604 break;
605
606 case SKL_CONN_SINK:
607 if (mconfig->dev_type == SKL_DEVICE_HDAHOST)
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530608 dma_io_buf = res->obs;
Ramesh Babuf6e6ab12017-06-19 11:59:20 +0530609 else
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530610 dma_io_buf = res->ibs;
Ramesh Babuf6e6ab12017-06-19 11:59:20 +0530611 break;
612
613 default:
614 dev_warn(ctx->dev, "wrong connection type: %d\n",
615 mconfig->hw_conn_type);
616 return;
617 }
618
619 cpr_mconfig->gtw_cfg.dma_buffer_size =
620 mconfig->dma_buffer_size * dma_io_buf;
Jeeja KP23db4722015-08-01 19:40:41 +0530621
Subhransu S. Prusty5b43af62017-06-30 18:38:44 +0530622 /* fallback to 2ms default value */
623 if (!cpr_mconfig->gtw_cfg.dma_buffer_size) {
624 if (mconfig->hw_conn_type == SKL_CONN_SOURCE)
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530625 cpr_mconfig->gtw_cfg.dma_buffer_size = 2 * res->obs;
Subhransu S. Prusty5b43af62017-06-30 18:38:44 +0530626 else
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530627 cpr_mconfig->gtw_cfg.dma_buffer_size = 2 * res->ibs;
Subhransu S. Prusty5b43af62017-06-30 18:38:44 +0530628 }
629
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530630skip_buf_size_calc:
Jeeja KP23db4722015-08-01 19:40:41 +0530631 cpr_mconfig->cpr_feature_mask = 0;
632 cpr_mconfig->gtw_cfg.config_length = 0;
633
634 skl_copy_copier_caps(mconfig, cpr_mconfig);
635}
636
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530637#define DMA_CONTROL_ID 5
Jaikrishna Nemallapudi55148302017-09-18 10:26:44 +0530638#define DMA_I2S_BLOB_SIZE 21
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530639
Jaikrishna Nemallapudi55148302017-09-18 10:26:44 +0530640int skl_dsp_set_dma_control(struct skl_sst *ctx, u32 *caps,
641 u32 caps_size, u32 node_id)
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530642{
643 struct skl_dma_control *dma_ctrl;
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530644 struct skl_ipc_large_config_msg msg = {0};
645 int err = 0;
646
647
648 /*
GuruprasadX Pawsec186fe72016-11-23 22:46:26 +0530649 * if blob size zero, then return
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530650 */
Jaikrishna Nemallapudi55148302017-09-18 10:26:44 +0530651 if (caps_size == 0)
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530652 return 0;
653
654 msg.large_param_id = DMA_CONTROL_ID;
Jaikrishna Nemallapudi55148302017-09-18 10:26:44 +0530655 msg.param_data_size = sizeof(struct skl_dma_control) + caps_size;
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530656
657 dma_ctrl = kzalloc(msg.param_data_size, GFP_KERNEL);
658 if (dma_ctrl == NULL)
659 return -ENOMEM;
660
Jaikrishna Nemallapudi55148302017-09-18 10:26:44 +0530661 dma_ctrl->node_id = node_id;
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530662
Jaikrishna Nemallapudi55148302017-09-18 10:26:44 +0530663 /*
664 * NHLT blob may contain additional configs along with i2s blob.
665 * firmware expects only the i2s blob size as the config_length.
666 * So fix to i2s blob size.
667 * size in dwords.
668 */
669 dma_ctrl->config_length = DMA_I2S_BLOB_SIZE;
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530670
Jaikrishna Nemallapudi55148302017-09-18 10:26:44 +0530671 memcpy(dma_ctrl->config_data, caps, caps_size);
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530672
673 err = skl_ipc_set_large_config(&ctx->ipc, &msg, (u32 *)dma_ctrl);
674
675 kfree(dma_ctrl);
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530676 return err;
677}
678
Jeeja KP23db4722015-08-01 19:40:41 +0530679static void skl_setup_out_format(struct skl_sst *ctx,
680 struct skl_module_cfg *mconfig,
681 struct skl_audio_data_format *out_fmt)
682{
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530683 struct skl_module *module = mconfig->module;
684 struct skl_module_iface *fmt = &module->formats[mconfig->fmt_idx];
685 struct skl_module_fmt *format = &fmt->outputs[0].fmt;
Jeeja KP23db4722015-08-01 19:40:41 +0530686
687 out_fmt->number_of_channels = (u8)format->channels;
688 out_fmt->s_freq = format->s_freq;
689 out_fmt->bit_depth = format->bit_depth;
690 out_fmt->valid_bit_depth = format->valid_bit_depth;
691 out_fmt->ch_cfg = format->ch_cfg;
692
Jeeja KP3e81f1a2015-10-27 09:22:59 +0900693 out_fmt->channel_map = format->ch_map;
694 out_fmt->interleaving = format->interleaving_style;
695 out_fmt->sample_type = format->sample_type;
Jeeja KP23db4722015-08-01 19:40:41 +0530696
697 dev_dbg(ctx->dev, "copier out format chan=%d fre=%d bitdepth=%d\n",
698 out_fmt->number_of_channels, format->s_freq, format->bit_depth);
699}
700
701/*
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530702 * DSP needs SRC module for frequency conversion, SRC takes base module
703 * configuration and the target frequency as extra parameter passed as src
704 * config
705 */
706static void skl_set_src_format(struct skl_sst *ctx,
707 struct skl_module_cfg *mconfig,
708 struct skl_src_module_cfg *src_mconfig)
709{
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530710 struct skl_module *module = mconfig->module;
711 struct skl_module_iface *iface = &module->formats[mconfig->fmt_idx];
712 struct skl_module_fmt *fmt = &iface->outputs[0].fmt;
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530713
714 skl_set_base_module_format(ctx, mconfig,
715 (struct skl_base_cfg *)src_mconfig);
716
717 src_mconfig->src_cfg = fmt->s_freq;
718}
719
720/*
721 * DSP needs updown module to do channel conversion. updown module take base
722 * module configuration and channel configuration
723 * It also take coefficients and now we have defaults applied here
724 */
725static void skl_set_updown_mixer_format(struct skl_sst *ctx,
726 struct skl_module_cfg *mconfig,
727 struct skl_up_down_mixer_cfg *mixer_mconfig)
728{
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530729 struct skl_module *module = mconfig->module;
730 struct skl_module_iface *iface = &module->formats[mconfig->fmt_idx];
731 struct skl_module_fmt *fmt = &iface->outputs[0].fmt;
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530732
733 skl_set_base_module_format(ctx, mconfig,
734 (struct skl_base_cfg *)mixer_mconfig);
735 mixer_mconfig->out_ch_cfg = fmt->ch_cfg;
Guneshwor Singhda3417f2017-11-07 16:16:17 +0530736 mixer_mconfig->ch_map = fmt->ch_map;
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530737}
738
739/*
Jeeja KP23db4722015-08-01 19:40:41 +0530740 * 'copier' is DSP internal module which copies data from Host DMA (HDA host
741 * dma) or link (hda link, SSP, PDM)
742 * Here we calculate the copier module parameters, like PCM format, output
743 * format, gateway settings
744 * copier_module_config is sent as input buffer with INIT_INSTANCE IPC msg
745 */
746static void skl_set_copier_format(struct skl_sst *ctx,
747 struct skl_module_cfg *mconfig,
748 struct skl_cpr_cfg *cpr_mconfig)
749{
750 struct skl_audio_data_format *out_fmt = &cpr_mconfig->out_fmt;
751 struct skl_base_cfg *base_cfg = (struct skl_base_cfg *)cpr_mconfig;
752
753 skl_set_base_module_format(ctx, mconfig, base_cfg);
754
755 skl_setup_out_format(ctx, mconfig, out_fmt);
756 skl_setup_cpr_gateway_cfg(ctx, mconfig, cpr_mconfig);
757}
758
Jeeja KP399b2102015-11-28 15:01:48 +0530759/*
760 * Algo module are DSP pre processing modules. Algo module take base module
761 * configuration and params
762 */
763
764static void skl_set_algo_format(struct skl_sst *ctx,
765 struct skl_module_cfg *mconfig,
766 struct skl_algo_cfg *algo_mcfg)
767{
768 struct skl_base_cfg *base_cfg = (struct skl_base_cfg *)algo_mcfg;
769
770 skl_set_base_module_format(ctx, mconfig, base_cfg);
771
772 if (mconfig->formats_config.caps_size == 0)
773 return;
774
775 memcpy(algo_mcfg->params,
776 mconfig->formats_config.caps,
777 mconfig->formats_config.caps_size);
778
779}
780
Dharageswari Rfd181102015-12-03 23:29:52 +0530781/*
782 * Mic select module allows selecting one or many input channels, thus
783 * acting as a demux.
784 *
785 * Mic select module take base module configuration and out-format
786 * configuration
787 */
788static void skl_set_base_outfmt_format(struct skl_sst *ctx,
789 struct skl_module_cfg *mconfig,
790 struct skl_base_outfmt_cfg *base_outfmt_mcfg)
791{
792 struct skl_audio_data_format *out_fmt = &base_outfmt_mcfg->out_fmt;
793 struct skl_base_cfg *base_cfg =
794 (struct skl_base_cfg *)base_outfmt_mcfg;
795
796 skl_set_base_module_format(ctx, mconfig, base_cfg);
797 skl_setup_out_format(ctx, mconfig, out_fmt);
798}
799
Jeeja KP23db4722015-08-01 19:40:41 +0530800static u16 skl_get_module_param_size(struct skl_sst *ctx,
801 struct skl_module_cfg *mconfig)
802{
803 u16 param_size;
804
805 switch (mconfig->m_type) {
806 case SKL_MODULE_TYPE_COPIER:
807 param_size = sizeof(struct skl_cpr_cfg);
808 param_size += mconfig->formats_config.caps_size;
809 return param_size;
810
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530811 case SKL_MODULE_TYPE_SRCINT:
812 return sizeof(struct skl_src_module_cfg);
813
814 case SKL_MODULE_TYPE_UPDWMIX:
815 return sizeof(struct skl_up_down_mixer_cfg);
816
Jeeja KP399b2102015-11-28 15:01:48 +0530817 case SKL_MODULE_TYPE_ALGO:
818 param_size = sizeof(struct skl_base_cfg);
819 param_size += mconfig->formats_config.caps_size;
820 return param_size;
821
Dharageswari Rfd181102015-12-03 23:29:52 +0530822 case SKL_MODULE_TYPE_BASE_OUTFMT:
Dharageswari Rdb6879e2017-05-31 10:30:24 +0530823 case SKL_MODULE_TYPE_MIC_SELECT:
Dharageswari R5e8f0ee2016-09-22 14:00:40 +0530824 case SKL_MODULE_TYPE_KPB:
Dharageswari Rfd181102015-12-03 23:29:52 +0530825 return sizeof(struct skl_base_outfmt_cfg);
826
Jeeja KP23db4722015-08-01 19:40:41 +0530827 default:
828 /*
829 * return only base cfg when no specific module type is
830 * specified
831 */
832 return sizeof(struct skl_base_cfg);
833 }
834
835 return 0;
836}
837
838/*
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530839 * DSP firmware supports various modules like copier, SRC, updown etc.
840 * These modules required various parameters to be calculated and sent for
841 * the module initialization to DSP. By default a generic module needs only
842 * base module format configuration
Jeeja KP23db4722015-08-01 19:40:41 +0530843 */
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530844
Jeeja KP23db4722015-08-01 19:40:41 +0530845static int skl_set_module_format(struct skl_sst *ctx,
846 struct skl_module_cfg *module_config,
847 u16 *module_config_size,
848 void **param_data)
849{
850 u16 param_size;
851
852 param_size = skl_get_module_param_size(ctx, module_config);
853
854 *param_data = kzalloc(param_size, GFP_KERNEL);
855 if (NULL == *param_data)
856 return -ENOMEM;
857
858 *module_config_size = param_size;
859
860 switch (module_config->m_type) {
861 case SKL_MODULE_TYPE_COPIER:
862 skl_set_copier_format(ctx, module_config, *param_data);
863 break;
864
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530865 case SKL_MODULE_TYPE_SRCINT:
866 skl_set_src_format(ctx, module_config, *param_data);
867 break;
868
869 case SKL_MODULE_TYPE_UPDWMIX:
870 skl_set_updown_mixer_format(ctx, module_config, *param_data);
871 break;
872
Jeeja KP399b2102015-11-28 15:01:48 +0530873 case SKL_MODULE_TYPE_ALGO:
874 skl_set_algo_format(ctx, module_config, *param_data);
875 break;
876
Dharageswari Rfd181102015-12-03 23:29:52 +0530877 case SKL_MODULE_TYPE_BASE_OUTFMT:
Dharageswari Rdb6879e2017-05-31 10:30:24 +0530878 case SKL_MODULE_TYPE_MIC_SELECT:
Dharageswari R5e8f0ee2016-09-22 14:00:40 +0530879 case SKL_MODULE_TYPE_KPB:
Dharageswari Rfd181102015-12-03 23:29:52 +0530880 skl_set_base_outfmt_format(ctx, module_config, *param_data);
881 break;
882
Jeeja KP23db4722015-08-01 19:40:41 +0530883 default:
884 skl_set_base_module_format(ctx, module_config, *param_data);
885 break;
886
887 }
888
889 dev_dbg(ctx->dev, "Module type=%d config size: %d bytes\n",
890 module_config->id.module_id, param_size);
Vedang Patel91c18322016-06-24 17:37:11 -0700891 print_hex_dump_debug("Module params:", DUMP_PREFIX_OFFSET, 8, 4,
Jeeja KP23db4722015-08-01 19:40:41 +0530892 *param_data, param_size, false);
893 return 0;
894}
895
896static int skl_get_queue_index(struct skl_module_pin *mpin,
897 struct skl_module_inst_id id, int max)
898{
899 int i;
900
901 for (i = 0; i < max; i++) {
902 if (mpin[i].id.module_id == id.module_id &&
903 mpin[i].id.instance_id == id.instance_id)
904 return i;
905 }
906
907 return -EINVAL;
908}
909
910/*
911 * Allocates queue for each module.
912 * if dynamic, the pin_index is allocated 0 to max_pin.
913 * In static, the pin_index is fixed based on module_id and instance id
914 */
915static int skl_alloc_queue(struct skl_module_pin *mpin,
Jeeja KP4f745702015-10-27 09:22:49 +0900916 struct skl_module_cfg *tgt_cfg, int max)
Jeeja KP23db4722015-08-01 19:40:41 +0530917{
918 int i;
Jeeja KP4f745702015-10-27 09:22:49 +0900919 struct skl_module_inst_id id = tgt_cfg->id;
Jeeja KP23db4722015-08-01 19:40:41 +0530920 /*
921 * if pin in dynamic, find first free pin
922 * otherwise find match module and instance id pin as topology will
923 * ensure a unique pin is assigned to this so no need to
924 * allocate/free
925 */
926 for (i = 0; i < max; i++) {
927 if (mpin[i].is_dynamic) {
Jeeja KP4f745702015-10-27 09:22:49 +0900928 if (!mpin[i].in_use &&
929 mpin[i].pin_state == SKL_PIN_UNBIND) {
930
Jeeja KP23db4722015-08-01 19:40:41 +0530931 mpin[i].in_use = true;
932 mpin[i].id.module_id = id.module_id;
933 mpin[i].id.instance_id = id.instance_id;
Dharageswari Ref2a3522016-09-22 14:00:38 +0530934 mpin[i].id.pvt_id = id.pvt_id;
Jeeja KP4f745702015-10-27 09:22:49 +0900935 mpin[i].tgt_mcfg = tgt_cfg;
Jeeja KP23db4722015-08-01 19:40:41 +0530936 return i;
937 }
938 } else {
939 if (mpin[i].id.module_id == id.module_id &&
Jeeja KP4f745702015-10-27 09:22:49 +0900940 mpin[i].id.instance_id == id.instance_id &&
941 mpin[i].pin_state == SKL_PIN_UNBIND) {
942
943 mpin[i].tgt_mcfg = tgt_cfg;
Jeeja KP23db4722015-08-01 19:40:41 +0530944 return i;
Jeeja KP4f745702015-10-27 09:22:49 +0900945 }
Jeeja KP23db4722015-08-01 19:40:41 +0530946 }
947 }
948
949 return -EINVAL;
950}
951
952static void skl_free_queue(struct skl_module_pin *mpin, int q_index)
953{
954 if (mpin[q_index].is_dynamic) {
955 mpin[q_index].in_use = false;
956 mpin[q_index].id.module_id = 0;
957 mpin[q_index].id.instance_id = 0;
Dharageswari Ref2a3522016-09-22 14:00:38 +0530958 mpin[q_index].id.pvt_id = 0;
Jeeja KP23db4722015-08-01 19:40:41 +0530959 }
Jeeja KP4f745702015-10-27 09:22:49 +0900960 mpin[q_index].pin_state = SKL_PIN_UNBIND;
961 mpin[q_index].tgt_mcfg = NULL;
962}
963
964/* Module state will be set to unint, if all the out pin state is UNBIND */
965
966static void skl_clear_module_state(struct skl_module_pin *mpin, int max,
967 struct skl_module_cfg *mcfg)
968{
969 int i;
970 bool found = false;
971
972 for (i = 0; i < max; i++) {
973 if (mpin[i].pin_state == SKL_PIN_UNBIND)
974 continue;
975 found = true;
976 break;
977 }
978
979 if (!found)
Jeeja KP473a4d52017-03-24 23:10:33 +0530980 mcfg->m_state = SKL_MODULE_INIT_DONE;
Jeeja KP4f745702015-10-27 09:22:49 +0900981 return;
Jeeja KP23db4722015-08-01 19:40:41 +0530982}
Jeeja KPbeb73b22015-08-01 19:40:43 +0530983
984/*
985 * A module needs to be instanataited in DSP. A mdoule is present in a
986 * collection of module referred as a PIPE.
987 * We first calculate the module format, based on module type and then
988 * invoke the DSP by sending IPC INIT_INSTANCE using ipc helper
989 */
990int skl_init_module(struct skl_sst *ctx,
Jeeja KP9939a9c2015-11-28 15:01:47 +0530991 struct skl_module_cfg *mconfig)
Jeeja KPbeb73b22015-08-01 19:40:43 +0530992{
993 u16 module_config_size = 0;
994 void *param_data = NULL;
995 int ret;
996 struct skl_ipc_init_instance_msg msg;
997
998 dev_dbg(ctx->dev, "%s: module_id = %d instance=%d\n", __func__,
Dharageswari Ref2a3522016-09-22 14:00:38 +0530999 mconfig->id.module_id, mconfig->id.pvt_id);
Jeeja KPbeb73b22015-08-01 19:40:43 +05301000
1001 if (mconfig->pipe->state != SKL_PIPE_CREATED) {
1002 dev_err(ctx->dev, "Pipe not created state= %d pipe_id= %d\n",
1003 mconfig->pipe->state, mconfig->pipe->ppl_id);
1004 return -EIO;
1005 }
1006
1007 ret = skl_set_module_format(ctx, mconfig,
1008 &module_config_size, &param_data);
1009 if (ret < 0) {
1010 dev_err(ctx->dev, "Failed to set module format ret=%d\n", ret);
1011 return ret;
1012 }
1013
1014 msg.module_id = mconfig->id.module_id;
Dharageswari Ref2a3522016-09-22 14:00:38 +05301015 msg.instance_id = mconfig->id.pvt_id;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301016 msg.ppl_instance_id = mconfig->pipe->ppl_id;
1017 msg.param_data_size = module_config_size;
1018 msg.core_id = mconfig->core_id;
Senthilnathan Veppur3d4006c2016-07-26 18:06:50 +05301019 msg.domain = mconfig->domain;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301020
1021 ret = skl_ipc_init_instance(&ctx->ipc, &msg, param_data);
1022 if (ret < 0) {
1023 dev_err(ctx->dev, "Failed to init instance ret=%d\n", ret);
1024 kfree(param_data);
1025 return ret;
1026 }
1027 mconfig->m_state = SKL_MODULE_INIT_DONE;
Mousumi Jana76222d6d2016-04-28 18:45:26 +05301028 kfree(param_data);
Jeeja KPbeb73b22015-08-01 19:40:43 +05301029 return ret;
1030}
1031
1032static void skl_dump_bind_info(struct skl_sst *ctx, struct skl_module_cfg
1033 *src_module, struct skl_module_cfg *dst_module)
1034{
1035 dev_dbg(ctx->dev, "%s: src module_id = %d src_instance=%d\n",
Dharageswari Ref2a3522016-09-22 14:00:38 +05301036 __func__, src_module->id.module_id, src_module->id.pvt_id);
Colin Ian Kingd5c6d432017-07-14 00:04:06 +01001037 dev_dbg(ctx->dev, "%s: dst_module=%d dst_instance=%d\n", __func__,
Dharageswari Ref2a3522016-09-22 14:00:38 +05301038 dst_module->id.module_id, dst_module->id.pvt_id);
Jeeja KPbeb73b22015-08-01 19:40:43 +05301039
1040 dev_dbg(ctx->dev, "src_module state = %d dst module state = %d\n",
1041 src_module->m_state, dst_module->m_state);
1042}
1043
1044/*
1045 * On module freeup, we need to unbind the module with modules
1046 * it is already bind.
1047 * Find the pin allocated and unbind then using bind_unbind IPC
1048 */
1049int skl_unbind_modules(struct skl_sst *ctx,
1050 struct skl_module_cfg *src_mcfg,
1051 struct skl_module_cfg *dst_mcfg)
1052{
1053 int ret;
1054 struct skl_ipc_bind_unbind_msg msg;
1055 struct skl_module_inst_id src_id = src_mcfg->id;
1056 struct skl_module_inst_id dst_id = dst_mcfg->id;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301057 int in_max = dst_mcfg->module->max_input_pins;
1058 int out_max = src_mcfg->module->max_output_pins;
Jeeja KP4f745702015-10-27 09:22:49 +09001059 int src_index, dst_index, src_pin_state, dst_pin_state;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301060
1061 skl_dump_bind_info(ctx, src_mcfg, dst_mcfg);
1062
Jeeja KPbeb73b22015-08-01 19:40:43 +05301063 /* get src queue index */
1064 src_index = skl_get_queue_index(src_mcfg->m_out_pin, dst_id, out_max);
1065 if (src_index < 0)
Jeeja KP9cf30492016-02-03 17:59:48 +05301066 return 0;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301067
Jeeja KP4f745702015-10-27 09:22:49 +09001068 msg.src_queue = src_index;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301069
1070 /* get dst queue index */
1071 dst_index = skl_get_queue_index(dst_mcfg->m_in_pin, src_id, in_max);
1072 if (dst_index < 0)
Jeeja KP9cf30492016-02-03 17:59:48 +05301073 return 0;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301074
Jeeja KP4f745702015-10-27 09:22:49 +09001075 msg.dst_queue = dst_index;
1076
1077 src_pin_state = src_mcfg->m_out_pin[src_index].pin_state;
1078 dst_pin_state = dst_mcfg->m_in_pin[dst_index].pin_state;
1079
1080 if (src_pin_state != SKL_PIN_BIND_DONE ||
1081 dst_pin_state != SKL_PIN_BIND_DONE)
1082 return 0;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301083
1084 msg.module_id = src_mcfg->id.module_id;
Dharageswari Ref2a3522016-09-22 14:00:38 +05301085 msg.instance_id = src_mcfg->id.pvt_id;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301086 msg.dst_module_id = dst_mcfg->id.module_id;
Dharageswari Ref2a3522016-09-22 14:00:38 +05301087 msg.dst_instance_id = dst_mcfg->id.pvt_id;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301088 msg.bind = false;
1089
1090 ret = skl_ipc_bind_unbind(&ctx->ipc, &msg);
1091 if (!ret) {
Jeeja KPbeb73b22015-08-01 19:40:43 +05301092 /* free queue only if unbind is success */
1093 skl_free_queue(src_mcfg->m_out_pin, src_index);
1094 skl_free_queue(dst_mcfg->m_in_pin, dst_index);
Jeeja KP4f745702015-10-27 09:22:49 +09001095
1096 /*
1097 * check only if src module bind state, bind is
1098 * always from src -> sink
1099 */
1100 skl_clear_module_state(src_mcfg->m_out_pin, out_max, src_mcfg);
Jeeja KPbeb73b22015-08-01 19:40:43 +05301101 }
1102
1103 return ret;
1104}
1105
Pradeep Tewani38a77082017-09-01 13:36:13 +05301106static void fill_pin_params(struct skl_audio_data_format *pin_fmt,
1107 struct skl_module_fmt *format)
1108{
1109 pin_fmt->number_of_channels = format->channels;
1110 pin_fmt->s_freq = format->s_freq;
1111 pin_fmt->bit_depth = format->bit_depth;
1112 pin_fmt->valid_bit_depth = format->valid_bit_depth;
1113 pin_fmt->ch_cfg = format->ch_cfg;
1114 pin_fmt->sample_type = format->sample_type;
1115 pin_fmt->channel_map = format->ch_map;
1116 pin_fmt->interleaving = format->interleaving_style;
1117}
1118
1119#define CPR_SINK_FMT_PARAM_ID 2
1120
Jeeja KPbeb73b22015-08-01 19:40:43 +05301121/*
1122 * Once a module is instantiated it need to be 'bind' with other modules in
1123 * the pipeline. For binding we need to find the module pins which are bind
1124 * together
1125 * This function finds the pins and then sends bund_unbind IPC message to
1126 * DSP using IPC helper
1127 */
1128int skl_bind_modules(struct skl_sst *ctx,
1129 struct skl_module_cfg *src_mcfg,
1130 struct skl_module_cfg *dst_mcfg)
1131{
Pradeep Tewani38a77082017-09-01 13:36:13 +05301132 int ret = 0;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301133 struct skl_ipc_bind_unbind_msg msg;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301134 int in_max = dst_mcfg->module->max_input_pins;
1135 int out_max = src_mcfg->module->max_output_pins;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301136 int src_index, dst_index;
Pradeep Tewani38a77082017-09-01 13:36:13 +05301137 struct skl_module_fmt *format;
1138 struct skl_cpr_pin_fmt pin_fmt;
1139 struct skl_module *module;
1140 struct skl_module_iface *fmt;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301141
1142 skl_dump_bind_info(ctx, src_mcfg, dst_mcfg);
1143
Jeeja KP0c684c42016-02-03 17:59:49 +05301144 if (src_mcfg->m_state < SKL_MODULE_INIT_DONE ||
Jeeja KPbeb73b22015-08-01 19:40:43 +05301145 dst_mcfg->m_state < SKL_MODULE_INIT_DONE)
1146 return 0;
1147
Jeeja KP4f745702015-10-27 09:22:49 +09001148 src_index = skl_alloc_queue(src_mcfg->m_out_pin, dst_mcfg, out_max);
Jeeja KPbeb73b22015-08-01 19:40:43 +05301149 if (src_index < 0)
1150 return -EINVAL;
1151
Jeeja KP4f745702015-10-27 09:22:49 +09001152 msg.src_queue = src_index;
1153 dst_index = skl_alloc_queue(dst_mcfg->m_in_pin, src_mcfg, in_max);
Jeeja KPbeb73b22015-08-01 19:40:43 +05301154 if (dst_index < 0) {
1155 skl_free_queue(src_mcfg->m_out_pin, src_index);
1156 return -EINVAL;
1157 }
1158
Pradeep Tewani38a77082017-09-01 13:36:13 +05301159 /*
1160 * Copier module requires the separate large_config_set_ipc to
1161 * configure the pins other than 0
1162 */
1163 if (src_mcfg->m_type == SKL_MODULE_TYPE_COPIER && src_index > 0) {
1164 pin_fmt.sink_id = src_index;
1165 module = src_mcfg->module;
1166 fmt = &module->formats[src_mcfg->fmt_idx];
1167
1168 /* Input fmt is same as that of src module input cfg */
1169 format = &fmt->inputs[0].fmt;
1170 fill_pin_params(&(pin_fmt.src_fmt), format);
1171
1172 format = &fmt->outputs[src_index].fmt;
1173 fill_pin_params(&(pin_fmt.dst_fmt), format);
1174 ret = skl_set_module_params(ctx, (void *)&pin_fmt,
1175 sizeof(struct skl_cpr_pin_fmt),
1176 CPR_SINK_FMT_PARAM_ID, src_mcfg);
1177
1178 if (ret < 0)
1179 goto out;
1180 }
1181
Jeeja KP4f745702015-10-27 09:22:49 +09001182 msg.dst_queue = dst_index;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301183
1184 dev_dbg(ctx->dev, "src queue = %d dst queue =%d\n",
1185 msg.src_queue, msg.dst_queue);
1186
1187 msg.module_id = src_mcfg->id.module_id;
Dharageswari Ref2a3522016-09-22 14:00:38 +05301188 msg.instance_id = src_mcfg->id.pvt_id;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301189 msg.dst_module_id = dst_mcfg->id.module_id;
Dharageswari Ref2a3522016-09-22 14:00:38 +05301190 msg.dst_instance_id = dst_mcfg->id.pvt_id;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301191 msg.bind = true;
1192
1193 ret = skl_ipc_bind_unbind(&ctx->ipc, &msg);
1194
1195 if (!ret) {
1196 src_mcfg->m_state = SKL_MODULE_BIND_DONE;
Jeeja KP4f745702015-10-27 09:22:49 +09001197 src_mcfg->m_out_pin[src_index].pin_state = SKL_PIN_BIND_DONE;
1198 dst_mcfg->m_in_pin[dst_index].pin_state = SKL_PIN_BIND_DONE;
Pradeep Tewani38a77082017-09-01 13:36:13 +05301199 return ret;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301200 }
Pradeep Tewani38a77082017-09-01 13:36:13 +05301201out:
1202 /* error case , if IPC fails, clear the queue index */
1203 skl_free_queue(src_mcfg->m_out_pin, src_index);
1204 skl_free_queue(dst_mcfg->m_in_pin, dst_index);
Jeeja KPbeb73b22015-08-01 19:40:43 +05301205
1206 return ret;
1207}
Jeeja KPc9b1e832015-08-01 19:40:44 +05301208
1209static int skl_set_pipe_state(struct skl_sst *ctx, struct skl_pipe *pipe,
1210 enum skl_ipc_pipeline_state state)
1211{
1212 dev_dbg(ctx->dev, "%s: pipe_satate = %d\n", __func__, state);
1213
1214 return skl_ipc_set_pipeline_state(&ctx->ipc, pipe->ppl_id, state);
1215}
1216
1217/*
1218 * A pipeline is a collection of modules. Before a module in instantiated a
1219 * pipeline needs to be created for it.
1220 * This function creates pipeline, by sending create pipeline IPC messages
1221 * to FW
1222 */
1223int skl_create_pipeline(struct skl_sst *ctx, struct skl_pipe *pipe)
1224{
1225 int ret;
1226
1227 dev_dbg(ctx->dev, "%s: pipe_id = %d\n", __func__, pipe->ppl_id);
1228
1229 ret = skl_ipc_create_pipeline(&ctx->ipc, pipe->memory_pages,
Vinod Koul8a0cb232016-11-03 17:07:18 +05301230 pipe->pipe_priority, pipe->ppl_id,
1231 pipe->lp_mode);
Jeeja KPc9b1e832015-08-01 19:40:44 +05301232 if (ret < 0) {
1233 dev_err(ctx->dev, "Failed to create pipeline\n");
1234 return ret;
1235 }
1236
1237 pipe->state = SKL_PIPE_CREATED;
1238
1239 return 0;
1240}
1241
1242/*
1243 * A pipeline needs to be deleted on cleanup. If a pipeline is running, then
1244 * pause the pipeline first and then delete it
1245 * The pipe delete is done by sending delete pipeline IPC. DSP will stop the
1246 * DMA engines and releases resources
1247 */
1248int skl_delete_pipe(struct skl_sst *ctx, struct skl_pipe *pipe)
1249{
1250 int ret;
1251
1252 dev_dbg(ctx->dev, "%s: pipe = %d\n", __func__, pipe->ppl_id);
1253
Dharageswari R1ae7ca02016-06-03 18:29:36 +05301254 /* If pipe is started, do stop the pipe in FW. */
Jeeja KP69149682017-03-13 22:11:23 +05301255 if (pipe->state >= SKL_PIPE_STARTED) {
Jeeja KPc9b1e832015-08-01 19:40:44 +05301256 ret = skl_set_pipe_state(ctx, pipe, PPL_PAUSED);
1257 if (ret < 0) {
1258 dev_err(ctx->dev, "Failed to stop pipeline\n");
1259 return ret;
1260 }
1261
1262 pipe->state = SKL_PIPE_PAUSED;
Jeeja KPc9b1e832015-08-01 19:40:44 +05301263 }
1264
Dharageswari R1ae7ca02016-06-03 18:29:36 +05301265 /* If pipe was not created in FW, do not try to delete it */
1266 if (pipe->state < SKL_PIPE_CREATED)
1267 return 0;
1268
1269 ret = skl_ipc_delete_pipeline(&ctx->ipc, pipe->ppl_id);
1270 if (ret < 0) {
1271 dev_err(ctx->dev, "Failed to delete pipeline\n");
1272 return ret;
1273 }
1274
1275 pipe->state = SKL_PIPE_INVALID;
1276
Jeeja KPc9b1e832015-08-01 19:40:44 +05301277 return ret;
1278}
1279
1280/*
1281 * A pipeline is also a scheduling entity in DSP which can be run, stopped
1282 * For processing data the pipe need to be run by sending IPC set pipe state
1283 * to DSP
1284 */
1285int skl_run_pipe(struct skl_sst *ctx, struct skl_pipe *pipe)
1286{
1287 int ret;
1288
1289 dev_dbg(ctx->dev, "%s: pipe = %d\n", __func__, pipe->ppl_id);
1290
1291 /* If pipe was not created in FW, do not try to pause or delete */
1292 if (pipe->state < SKL_PIPE_CREATED)
1293 return 0;
1294
1295 /* Pipe has to be paused before it is started */
1296 ret = skl_set_pipe_state(ctx, pipe, PPL_PAUSED);
1297 if (ret < 0) {
1298 dev_err(ctx->dev, "Failed to pause pipe\n");
1299 return ret;
1300 }
1301
1302 pipe->state = SKL_PIPE_PAUSED;
1303
1304 ret = skl_set_pipe_state(ctx, pipe, PPL_RUNNING);
1305 if (ret < 0) {
1306 dev_err(ctx->dev, "Failed to start pipe\n");
1307 return ret;
1308 }
1309
1310 pipe->state = SKL_PIPE_STARTED;
1311
1312 return 0;
1313}
1314
1315/*
1316 * Stop the pipeline by sending set pipe state IPC
1317 * DSP doesnt implement stop so we always send pause message
1318 */
1319int skl_stop_pipe(struct skl_sst *ctx, struct skl_pipe *pipe)
1320{
1321 int ret;
1322
1323 dev_dbg(ctx->dev, "In %s pipe=%d\n", __func__, pipe->ppl_id);
1324
1325 /* If pipe was not created in FW, do not try to pause or delete */
1326 if (pipe->state < SKL_PIPE_PAUSED)
1327 return 0;
1328
1329 ret = skl_set_pipe_state(ctx, pipe, PPL_PAUSED);
1330 if (ret < 0) {
1331 dev_dbg(ctx->dev, "Failed to stop pipe\n");
1332 return ret;
1333 }
1334
Jeeja KP353f72a2016-06-03 18:29:35 +05301335 pipe->state = SKL_PIPE_PAUSED;
Jeeja KPc9b1e832015-08-01 19:40:44 +05301336
1337 return 0;
1338}
Jeeja KP9939a9c2015-11-28 15:01:47 +05301339
Jeeja KP20044322016-06-03 18:29:34 +05301340/*
1341 * Reset the pipeline by sending set pipe state IPC this will reset the DMA
1342 * from the DSP side
1343 */
1344int skl_reset_pipe(struct skl_sst *ctx, struct skl_pipe *pipe)
1345{
1346 int ret;
1347
1348 /* If pipe was not created in FW, do not try to pause or delete */
1349 if (pipe->state < SKL_PIPE_PAUSED)
1350 return 0;
1351
1352 ret = skl_set_pipe_state(ctx, pipe, PPL_RESET);
1353 if (ret < 0) {
1354 dev_dbg(ctx->dev, "Failed to reset pipe ret=%d\n", ret);
1355 return ret;
1356 }
1357
1358 pipe->state = SKL_PIPE_RESET;
1359
1360 return 0;
1361}
1362
Jeeja KP9939a9c2015-11-28 15:01:47 +05301363/* Algo parameter set helper function */
1364int skl_set_module_params(struct skl_sst *ctx, u32 *params, int size,
1365 u32 param_id, struct skl_module_cfg *mcfg)
1366{
1367 struct skl_ipc_large_config_msg msg;
1368
1369 msg.module_id = mcfg->id.module_id;
Dharageswari Ref2a3522016-09-22 14:00:38 +05301370 msg.instance_id = mcfg->id.pvt_id;
Jeeja KP9939a9c2015-11-28 15:01:47 +05301371 msg.param_data_size = size;
1372 msg.large_param_id = param_id;
1373
1374 return skl_ipc_set_large_config(&ctx->ipc, &msg, params);
1375}
Omair M Abdullah7d9f2912015-12-03 23:29:56 +05301376
1377int skl_get_module_params(struct skl_sst *ctx, u32 *params, int size,
1378 u32 param_id, struct skl_module_cfg *mcfg)
1379{
1380 struct skl_ipc_large_config_msg msg;
1381
1382 msg.module_id = mcfg->id.module_id;
Dharageswari Ref2a3522016-09-22 14:00:38 +05301383 msg.instance_id = mcfg->id.pvt_id;
Omair M Abdullah7d9f2912015-12-03 23:29:56 +05301384 msg.param_data_size = size;
1385 msg.large_param_id = param_id;
1386
1387 return skl_ipc_get_large_config(&ctx->ipc, &msg, params);
1388}