blob: 25d057679f2c93fa9ae22dfb6b9d11e03283aa91 [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"
25#include "skl-sst-ipc.h"
26#include "skl.h"
27#include "../common/sst-dsp.h"
28#include "../common/sst-dsp-priv.h"
Jeeja KP23db4722015-08-01 19:40:41 +053029#include "skl-topology.h"
30#include "skl-tplg-interface.h"
Jeeja KPd255b092015-07-21 23:53:56 +053031
32static int skl_alloc_dma_buf(struct device *dev,
33 struct snd_dma_buffer *dmab, size_t size)
34{
35 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
36 struct hdac_bus *bus = ebus_to_hbus(ebus);
37
38 if (!bus)
39 return -ENODEV;
40
41 return bus->io_ops->dma_alloc_pages(bus, SNDRV_DMA_TYPE_DEV, size, dmab);
42}
43
44static int skl_free_dma_buf(struct device *dev, struct snd_dma_buffer *dmab)
45{
46 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
47 struct hdac_bus *bus = ebus_to_hbus(ebus);
48
49 if (!bus)
50 return -ENODEV;
51
52 bus->io_ops->dma_free_pages(bus, dmab);
53
54 return 0;
55}
56
Jeeja KP4e109962015-10-22 23:22:39 +053057#define NOTIFICATION_PARAM_ID 3
58#define NOTIFICATION_MASK 0xf
59
60/* disable notfication for underruns/overruns from firmware module */
61static void skl_dsp_enable_notification(struct skl_sst *ctx, bool enable)
62{
63 struct notification_mask mask;
64 struct skl_ipc_large_config_msg msg = {0};
65
66 mask.notify = NOTIFICATION_MASK;
67 mask.enable = enable;
68
69 msg.large_param_id = NOTIFICATION_PARAM_ID;
70 msg.param_data_size = sizeof(mask);
71
72 skl_ipc_set_large_config(&ctx->ipc, &msg, (u32 *)&mask);
73}
74
Jeeja KP92eb4f62016-03-11 10:12:56 +053075static int skl_dsp_setup_spib(struct device *dev, unsigned int size,
76 int stream_tag, int enable)
77{
78 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
79 struct hdac_bus *bus = ebus_to_hbus(ebus);
80 struct hdac_stream *stream = snd_hdac_get_stream(bus,
81 SNDRV_PCM_STREAM_PLAYBACK, stream_tag);
82 struct hdac_ext_stream *estream;
83
84 if (!stream)
85 return -EINVAL;
86
87 estream = stream_to_hdac_ext_stream(stream);
88 /* enable/disable SPIB for this hdac stream */
89 snd_hdac_ext_stream_spbcap_enable(ebus, enable, stream->index);
90
91 /* set the spib value */
92 snd_hdac_ext_stream_set_spib(ebus, estream, size);
93
94 return 0;
95}
96
97static int skl_dsp_prepare(struct device *dev, unsigned int format,
98 unsigned int size, struct snd_dma_buffer *dmab)
99{
100 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
101 struct hdac_bus *bus = ebus_to_hbus(ebus);
102 struct hdac_ext_stream *estream;
103 struct hdac_stream *stream;
104 struct snd_pcm_substream substream;
105 int ret;
106
107 if (!bus)
108 return -ENODEV;
109
110 memset(&substream, 0, sizeof(substream));
111 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
112
113 estream = snd_hdac_ext_stream_assign(ebus, &substream,
114 HDAC_EXT_STREAM_TYPE_HOST);
115 if (!estream)
116 return -ENODEV;
117
118 stream = hdac_stream(estream);
119
120 /* assign decouple host dma channel */
121 ret = snd_hdac_dsp_prepare(stream, format, size, dmab);
122 if (ret < 0)
123 return ret;
124
125 skl_dsp_setup_spib(dev, size, stream->stream_tag, true);
126
127 return stream->stream_tag;
128}
129
130static int skl_dsp_trigger(struct device *dev, bool start, int stream_tag)
131{
132 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
133 struct hdac_stream *stream;
134 struct hdac_bus *bus = ebus_to_hbus(ebus);
135
136 if (!bus)
137 return -ENODEV;
138
139 stream = snd_hdac_get_stream(bus,
140 SNDRV_PCM_STREAM_PLAYBACK, stream_tag);
141 if (!stream)
142 return -EINVAL;
143
144 snd_hdac_dsp_trigger(stream, start);
145
146 return 0;
147}
148
149static int skl_dsp_cleanup(struct device *dev,
150 struct snd_dma_buffer *dmab, int stream_tag)
151{
152 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
153 struct hdac_stream *stream;
154 struct hdac_ext_stream *estream;
155 struct hdac_bus *bus = ebus_to_hbus(ebus);
156
157 if (!bus)
158 return -ENODEV;
159
160 stream = snd_hdac_get_stream(bus,
161 SNDRV_PCM_STREAM_PLAYBACK, stream_tag);
162 if (!stream)
163 return -EINVAL;
164
165 estream = stream_to_hdac_ext_stream(stream);
166 skl_dsp_setup_spib(dev, 0, stream_tag, false);
167 snd_hdac_ext_stream_release(estream, HDAC_EXT_STREAM_TYPE_HOST);
168
169 snd_hdac_dsp_cleanup(stream, dmab);
170
171 return 0;
172}
173
Jeeja KPbc23ca32016-03-11 10:12:53 +0530174static struct skl_dsp_loader_ops skl_get_loader_ops(void)
175{
176 struct skl_dsp_loader_ops loader_ops;
177
178 memset(&loader_ops, 0, sizeof(struct skl_dsp_loader_ops));
179
180 loader_ops.alloc_dma_buf = skl_alloc_dma_buf;
181 loader_ops.free_dma_buf = skl_free_dma_buf;
182
183 return loader_ops;
184};
185
Jeeja KP92eb4f62016-03-11 10:12:56 +0530186static struct skl_dsp_loader_ops bxt_get_loader_ops(void)
187{
188 struct skl_dsp_loader_ops loader_ops;
189
190 memset(&loader_ops, 0, sizeof(loader_ops));
191
192 loader_ops.alloc_dma_buf = skl_alloc_dma_buf;
193 loader_ops.free_dma_buf = skl_free_dma_buf;
194 loader_ops.prepare = skl_dsp_prepare;
195 loader_ops.trigger = skl_dsp_trigger;
196 loader_ops.cleanup = skl_dsp_cleanup;
197
198 return loader_ops;
199};
200
Jeeja KPbc23ca32016-03-11 10:12:53 +0530201static const struct skl_dsp_ops dsp_ops[] = {
202 {
203 .id = 0x9d70,
204 .loader_ops = skl_get_loader_ops,
205 .init = skl_sst_dsp_init,
206 .cleanup = skl_sst_dsp_cleanup
207 },
Jeeja KP92eb4f62016-03-11 10:12:56 +0530208 {
Vinod Koul451dfb5f2016-07-11 22:02:08 +0530209 .id = 0x9d71,
210 .loader_ops = skl_get_loader_ops,
211 .init = skl_sst_dsp_init,
212 .cleanup = skl_sst_dsp_cleanup
213 },
214 {
Jeeja KP92eb4f62016-03-11 10:12:56 +0530215 .id = 0x5a98,
216 .loader_ops = bxt_get_loader_ops,
217 .init = bxt_sst_dsp_init,
218 .cleanup = bxt_sst_dsp_cleanup
219 },
Jeeja KPbc23ca32016-03-11 10:12:53 +0530220};
221
Vinod Koul73a67582016-07-26 18:06:41 +0530222const struct skl_dsp_ops *skl_get_dsp_ops(int pci_id)
Jeeja KPbc23ca32016-03-11 10:12:53 +0530223{
224 int i;
225
226 for (i = 0; i < ARRAY_SIZE(dsp_ops); i++) {
227 if (dsp_ops[i].id == pci_id)
Vinod Koul73a67582016-07-26 18:06:41 +0530228 return &dsp_ops[i];
Jeeja KPbc23ca32016-03-11 10:12:53 +0530229 }
230
Vinod Koul73a67582016-07-26 18:06:41 +0530231 return NULL;
Jeeja KPbc23ca32016-03-11 10:12:53 +0530232}
233
Jeeja KPd255b092015-07-21 23:53:56 +0530234int skl_init_dsp(struct skl *skl)
235{
236 void __iomem *mmio_base;
237 struct hdac_ext_bus *ebus = &skl->ebus;
238 struct hdac_bus *bus = ebus_to_hbus(ebus);
Jeeja KPd255b092015-07-21 23:53:56 +0530239 struct skl_dsp_loader_ops loader_ops;
Jeeja KPbc23ca32016-03-11 10:12:53 +0530240 int irq = bus->irq;
Vinod Koul73a67582016-07-26 18:06:41 +0530241 const struct skl_dsp_ops *ops;
242 int ret;
Jeeja KPd255b092015-07-21 23:53:56 +0530243
244 /* enable ppcap interrupt */
245 snd_hdac_ext_bus_ppcap_enable(&skl->ebus, true);
246 snd_hdac_ext_bus_ppcap_int_enable(&skl->ebus, true);
247
248 /* read the BAR of the ADSP MMIO */
249 mmio_base = pci_ioremap_bar(skl->pci, 4);
250 if (mmio_base == NULL) {
251 dev_err(bus->dev, "ioremap error\n");
252 return -ENXIO;
253 }
254
Vinod Koul73a67582016-07-26 18:06:41 +0530255 ops = skl_get_dsp_ops(skl->pci->device);
256 if (!ops)
257 return -EIO;
Jeeja KPbc23ca32016-03-11 10:12:53 +0530258
Vinod Koul73a67582016-07-26 18:06:41 +0530259 loader_ops = ops->loader_ops();
260 ret = ops->init(bus->dev, mmio_base, irq,
261 skl->fw_name, loader_ops,
262 &skl->skl_sst);
Jeeja KPbc23ca32016-03-11 10:12:53 +0530263
Jeeja KP2ac454f2015-10-22 23:22:40 +0530264 if (ret < 0)
265 return ret;
266
Jeeja KP4e109962015-10-22 23:22:39 +0530267 skl_dsp_enable_notification(skl->skl_sst, false);
Jeeja KPd255b092015-07-21 23:53:56 +0530268 dev_dbg(bus->dev, "dsp registration status=%d\n", ret);
269
270 return ret;
271}
272
Jeeja KPbc23ca32016-03-11 10:12:53 +0530273int skl_free_dsp(struct skl *skl)
Jeeja KPd255b092015-07-21 23:53:56 +0530274{
275 struct hdac_ext_bus *ebus = &skl->ebus;
276 struct hdac_bus *bus = ebus_to_hbus(ebus);
Jeeja KPbc23ca32016-03-11 10:12:53 +0530277 struct skl_sst *ctx = skl->skl_sst;
Vinod Koul73a67582016-07-26 18:06:41 +0530278 const struct skl_dsp_ops *ops;
Jeeja KPd255b092015-07-21 23:53:56 +0530279
280 /* disable ppcap interrupt */
281 snd_hdac_ext_bus_ppcap_int_enable(&skl->ebus, false);
282
Vinod Koul73a67582016-07-26 18:06:41 +0530283 ops = skl_get_dsp_ops(skl->pci->device);
284 if (!ops)
Jeeja KPbc23ca32016-03-11 10:12:53 +0530285 return -EIO;
286
Vinod Koul73a67582016-07-26 18:06:41 +0530287 ops->cleanup(bus->dev, ctx);
Jeeja KPbc23ca32016-03-11 10:12:53 +0530288
Jeeja KPd255b092015-07-21 23:53:56 +0530289 if (ctx->dsp->addr.lpe)
290 iounmap(ctx->dsp->addr.lpe);
Jeeja KPbc23ca32016-03-11 10:12:53 +0530291
292 return 0;
Jeeja KPd255b092015-07-21 23:53:56 +0530293}
294
295int skl_suspend_dsp(struct skl *skl)
296{
297 struct skl_sst *ctx = skl->skl_sst;
298 int ret;
299
300 /* if ppcap is not supported return 0 */
301 if (!skl->ebus.ppcap)
302 return 0;
303
304 ret = skl_dsp_sleep(ctx->dsp);
305 if (ret < 0)
306 return ret;
307
308 /* disable ppcap interrupt */
309 snd_hdac_ext_bus_ppcap_int_enable(&skl->ebus, false);
310 snd_hdac_ext_bus_ppcap_enable(&skl->ebus, false);
311
312 return 0;
313}
314
315int skl_resume_dsp(struct skl *skl)
316{
317 struct skl_sst *ctx = skl->skl_sst;
Jeeja KP4e109962015-10-22 23:22:39 +0530318 int ret;
Jeeja KPd255b092015-07-21 23:53:56 +0530319
320 /* if ppcap is not supported return 0 */
321 if (!skl->ebus.ppcap)
322 return 0;
323
324 /* enable ppcap interrupt */
325 snd_hdac_ext_bus_ppcap_enable(&skl->ebus, true);
326 snd_hdac_ext_bus_ppcap_int_enable(&skl->ebus, true);
327
Jeeja KP4e109962015-10-22 23:22:39 +0530328 ret = skl_dsp_wake(ctx->dsp);
329 if (ret < 0)
330 return ret;
331
332 skl_dsp_enable_notification(skl->skl_sst, false);
333 return ret;
Jeeja KPd255b092015-07-21 23:53:56 +0530334}
Jeeja KP23db4722015-08-01 19:40:41 +0530335
336enum skl_bitdepth skl_get_bit_depth(int params)
337{
338 switch (params) {
339 case 8:
340 return SKL_DEPTH_8BIT;
341
342 case 16:
343 return SKL_DEPTH_16BIT;
344
345 case 24:
346 return SKL_DEPTH_24BIT;
347
348 case 32:
349 return SKL_DEPTH_32BIT;
350
351 default:
352 return SKL_DEPTH_INVALID;
353
354 }
355}
356
Jeeja KP23db4722015-08-01 19:40:41 +0530357/*
358 * Each module in DSP expects a base module configuration, which consists of
359 * PCM format information, which we calculate in driver and resource values
360 * which are read from widget information passed through topology binary
361 * This is send when we create a module with INIT_INSTANCE IPC msg
362 */
363static void skl_set_base_module_format(struct skl_sst *ctx,
364 struct skl_module_cfg *mconfig,
365 struct skl_base_cfg *base_cfg)
366{
Hardik T Shah4cd98992015-10-27 09:22:55 +0900367 struct skl_module_fmt *format = &mconfig->in_fmt[0];
Jeeja KP23db4722015-08-01 19:40:41 +0530368
369 base_cfg->audio_fmt.number_of_channels = (u8)format->channels;
370
371 base_cfg->audio_fmt.s_freq = format->s_freq;
372 base_cfg->audio_fmt.bit_depth = format->bit_depth;
373 base_cfg->audio_fmt.valid_bit_depth = format->valid_bit_depth;
374 base_cfg->audio_fmt.ch_cfg = format->ch_cfg;
375
376 dev_dbg(ctx->dev, "bit_depth=%x valid_bd=%x ch_config=%x\n",
377 format->bit_depth, format->valid_bit_depth,
378 format->ch_cfg);
379
Jeeja KP3e81f1a2015-10-27 09:22:59 +0900380 base_cfg->audio_fmt.channel_map = format->ch_map;
Jeeja KP23db4722015-08-01 19:40:41 +0530381
Jeeja KP3e81f1a2015-10-27 09:22:59 +0900382 base_cfg->audio_fmt.interleaving = format->interleaving_style;
Jeeja KP23db4722015-08-01 19:40:41 +0530383
384 base_cfg->cps = mconfig->mcps;
385 base_cfg->ibs = mconfig->ibs;
386 base_cfg->obs = mconfig->obs;
Jeeja KPb18c4582015-12-03 23:29:51 +0530387 base_cfg->is_pages = mconfig->mem_pages;
Jeeja KP23db4722015-08-01 19:40:41 +0530388}
389
390/*
391 * Copies copier capabilities into copier module and updates copier module
392 * config size.
393 */
394static void skl_copy_copier_caps(struct skl_module_cfg *mconfig,
395 struct skl_cpr_cfg *cpr_mconfig)
396{
397 if (mconfig->formats_config.caps_size == 0)
398 return;
399
400 memcpy(cpr_mconfig->gtw_cfg.config_data,
401 mconfig->formats_config.caps,
402 mconfig->formats_config.caps_size);
403
404 cpr_mconfig->gtw_cfg.config_length =
405 (mconfig->formats_config.caps_size) / 4;
406}
407
Jeeja KPbfa764a2015-10-22 23:22:41 +0530408#define SKL_NON_GATEWAY_CPR_NODE_ID 0xFFFFFFFF
Jeeja KP23db4722015-08-01 19:40:41 +0530409/*
410 * Calculate the gatewat settings required for copier module, type of
411 * gateway and index of gateway to use
412 */
Dharageswari.R4fdf8102016-02-05 12:19:05 +0530413static u32 skl_get_node_id(struct skl_sst *ctx,
414 struct skl_module_cfg *mconfig)
Jeeja KP23db4722015-08-01 19:40:41 +0530415{
416 union skl_connector_node_id node_id = {0};
Jeeja KPd7b18812015-10-22 23:22:38 +0530417 union skl_ssp_dma_node ssp_node = {0};
Jeeja KP23db4722015-08-01 19:40:41 +0530418 struct skl_pipe_params *params = mconfig->pipe->p_params;
419
420 switch (mconfig->dev_type) {
421 case SKL_DEVICE_BT:
422 node_id.node.dma_type =
423 (SKL_CONN_SOURCE == mconfig->hw_conn_type) ?
424 SKL_DMA_I2S_LINK_OUTPUT_CLASS :
425 SKL_DMA_I2S_LINK_INPUT_CLASS;
426 node_id.node.vindex = params->host_dma_id +
427 (mconfig->vbus_id << 3);
428 break;
429
430 case SKL_DEVICE_I2S:
431 node_id.node.dma_type =
432 (SKL_CONN_SOURCE == mconfig->hw_conn_type) ?
433 SKL_DMA_I2S_LINK_OUTPUT_CLASS :
434 SKL_DMA_I2S_LINK_INPUT_CLASS;
Jeeja KPd7b18812015-10-22 23:22:38 +0530435 ssp_node.dma_node.time_slot_index = mconfig->time_slot;
436 ssp_node.dma_node.i2s_instance = mconfig->vbus_id;
437 node_id.node.vindex = ssp_node.val;
Jeeja KP23db4722015-08-01 19:40:41 +0530438 break;
439
440 case SKL_DEVICE_DMIC:
441 node_id.node.dma_type = SKL_DMA_DMIC_LINK_INPUT_CLASS;
442 node_id.node.vindex = mconfig->vbus_id +
443 (mconfig->time_slot);
444 break;
445
446 case SKL_DEVICE_HDALINK:
447 node_id.node.dma_type =
448 (SKL_CONN_SOURCE == mconfig->hw_conn_type) ?
449 SKL_DMA_HDA_LINK_OUTPUT_CLASS :
450 SKL_DMA_HDA_LINK_INPUT_CLASS;
451 node_id.node.vindex = params->link_dma_id;
452 break;
453
Jeeja KPbfa764a2015-10-22 23:22:41 +0530454 case SKL_DEVICE_HDAHOST:
Jeeja KP23db4722015-08-01 19:40:41 +0530455 node_id.node.dma_type =
456 (SKL_CONN_SOURCE == mconfig->hw_conn_type) ?
457 SKL_DMA_HDA_HOST_OUTPUT_CLASS :
458 SKL_DMA_HDA_HOST_INPUT_CLASS;
459 node_id.node.vindex = params->host_dma_id;
460 break;
Jeeja KPbfa764a2015-10-22 23:22:41 +0530461
462 default:
Dharageswari.R4fdf8102016-02-05 12:19:05 +0530463 node_id.val = 0xFFFFFFFF;
464 break;
465 }
466
467 return node_id.val;
468}
469
470static void skl_setup_cpr_gateway_cfg(struct skl_sst *ctx,
471 struct skl_module_cfg *mconfig,
472 struct skl_cpr_cfg *cpr_mconfig)
473{
474 cpr_mconfig->gtw_cfg.node_id = skl_get_node_id(ctx, mconfig);
475
476 if (cpr_mconfig->gtw_cfg.node_id == SKL_NON_GATEWAY_CPR_NODE_ID) {
Jeeja KPbfa764a2015-10-22 23:22:41 +0530477 cpr_mconfig->cpr_feature_mask = 0;
478 return;
Jeeja KP23db4722015-08-01 19:40:41 +0530479 }
480
Jeeja KP23db4722015-08-01 19:40:41 +0530481 if (SKL_CONN_SOURCE == mconfig->hw_conn_type)
482 cpr_mconfig->gtw_cfg.dma_buffer_size = 2 * mconfig->obs;
483 else
484 cpr_mconfig->gtw_cfg.dma_buffer_size = 2 * mconfig->ibs;
485
486 cpr_mconfig->cpr_feature_mask = 0;
487 cpr_mconfig->gtw_cfg.config_length = 0;
488
489 skl_copy_copier_caps(mconfig, cpr_mconfig);
490}
491
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530492#define DMA_CONTROL_ID 5
493
494int skl_dsp_set_dma_control(struct skl_sst *ctx, struct skl_module_cfg *mconfig)
495{
496 struct skl_dma_control *dma_ctrl;
497 struct skl_i2s_config_blob config_blob;
498 struct skl_ipc_large_config_msg msg = {0};
499 int err = 0;
500
501
502 /*
503 * if blob size is same as capablity size, then no dma control
504 * present so return
505 */
506 if (mconfig->formats_config.caps_size == sizeof(config_blob))
507 return 0;
508
509 msg.large_param_id = DMA_CONTROL_ID;
510 msg.param_data_size = sizeof(struct skl_dma_control) +
511 mconfig->formats_config.caps_size;
512
513 dma_ctrl = kzalloc(msg.param_data_size, GFP_KERNEL);
514 if (dma_ctrl == NULL)
515 return -ENOMEM;
516
517 dma_ctrl->node_id = skl_get_node_id(ctx, mconfig);
518
519 /* size in dwords */
520 dma_ctrl->config_length = sizeof(config_blob) / 4;
521
522 memcpy(dma_ctrl->config_data, mconfig->formats_config.caps,
523 mconfig->formats_config.caps_size);
524
525 err = skl_ipc_set_large_config(&ctx->ipc, &msg, (u32 *)dma_ctrl);
526
527 kfree(dma_ctrl);
528
529 return err;
530}
531
Jeeja KP23db4722015-08-01 19:40:41 +0530532static void skl_setup_out_format(struct skl_sst *ctx,
533 struct skl_module_cfg *mconfig,
534 struct skl_audio_data_format *out_fmt)
535{
Hardik T Shah4cd98992015-10-27 09:22:55 +0900536 struct skl_module_fmt *format = &mconfig->out_fmt[0];
Jeeja KP23db4722015-08-01 19:40:41 +0530537
538 out_fmt->number_of_channels = (u8)format->channels;
539 out_fmt->s_freq = format->s_freq;
540 out_fmt->bit_depth = format->bit_depth;
541 out_fmt->valid_bit_depth = format->valid_bit_depth;
542 out_fmt->ch_cfg = format->ch_cfg;
543
Jeeja KP3e81f1a2015-10-27 09:22:59 +0900544 out_fmt->channel_map = format->ch_map;
545 out_fmt->interleaving = format->interleaving_style;
546 out_fmt->sample_type = format->sample_type;
Jeeja KP23db4722015-08-01 19:40:41 +0530547
548 dev_dbg(ctx->dev, "copier out format chan=%d fre=%d bitdepth=%d\n",
549 out_fmt->number_of_channels, format->s_freq, format->bit_depth);
550}
551
552/*
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530553 * DSP needs SRC module for frequency conversion, SRC takes base module
554 * configuration and the target frequency as extra parameter passed as src
555 * config
556 */
557static void skl_set_src_format(struct skl_sst *ctx,
558 struct skl_module_cfg *mconfig,
559 struct skl_src_module_cfg *src_mconfig)
560{
Hardik T Shah4cd98992015-10-27 09:22:55 +0900561 struct skl_module_fmt *fmt = &mconfig->out_fmt[0];
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530562
563 skl_set_base_module_format(ctx, mconfig,
564 (struct skl_base_cfg *)src_mconfig);
565
566 src_mconfig->src_cfg = fmt->s_freq;
567}
568
569/*
570 * DSP needs updown module to do channel conversion. updown module take base
571 * module configuration and channel configuration
572 * It also take coefficients and now we have defaults applied here
573 */
574static void skl_set_updown_mixer_format(struct skl_sst *ctx,
575 struct skl_module_cfg *mconfig,
576 struct skl_up_down_mixer_cfg *mixer_mconfig)
577{
Hardik T Shah4cd98992015-10-27 09:22:55 +0900578 struct skl_module_fmt *fmt = &mconfig->out_fmt[0];
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530579 int i = 0;
580
581 skl_set_base_module_format(ctx, mconfig,
582 (struct skl_base_cfg *)mixer_mconfig);
583 mixer_mconfig->out_ch_cfg = fmt->ch_cfg;
584
585 /* Select F/W default coefficient */
586 mixer_mconfig->coeff_sel = 0x0;
587
588 /* User coeff, don't care since we are selecting F/W defaults */
589 for (i = 0; i < UP_DOWN_MIXER_MAX_COEFF; i++)
590 mixer_mconfig->coeff[i] = 0xDEADBEEF;
591}
592
593/*
Jeeja KP23db4722015-08-01 19:40:41 +0530594 * 'copier' is DSP internal module which copies data from Host DMA (HDA host
595 * dma) or link (hda link, SSP, PDM)
596 * Here we calculate the copier module parameters, like PCM format, output
597 * format, gateway settings
598 * copier_module_config is sent as input buffer with INIT_INSTANCE IPC msg
599 */
600static void skl_set_copier_format(struct skl_sst *ctx,
601 struct skl_module_cfg *mconfig,
602 struct skl_cpr_cfg *cpr_mconfig)
603{
604 struct skl_audio_data_format *out_fmt = &cpr_mconfig->out_fmt;
605 struct skl_base_cfg *base_cfg = (struct skl_base_cfg *)cpr_mconfig;
606
607 skl_set_base_module_format(ctx, mconfig, base_cfg);
608
609 skl_setup_out_format(ctx, mconfig, out_fmt);
610 skl_setup_cpr_gateway_cfg(ctx, mconfig, cpr_mconfig);
611}
612
Jeeja KP399b2102015-11-28 15:01:48 +0530613/*
614 * Algo module are DSP pre processing modules. Algo module take base module
615 * configuration and params
616 */
617
618static void skl_set_algo_format(struct skl_sst *ctx,
619 struct skl_module_cfg *mconfig,
620 struct skl_algo_cfg *algo_mcfg)
621{
622 struct skl_base_cfg *base_cfg = (struct skl_base_cfg *)algo_mcfg;
623
624 skl_set_base_module_format(ctx, mconfig, base_cfg);
625
626 if (mconfig->formats_config.caps_size == 0)
627 return;
628
629 memcpy(algo_mcfg->params,
630 mconfig->formats_config.caps,
631 mconfig->formats_config.caps_size);
632
633}
634
Dharageswari Rfd181102015-12-03 23:29:52 +0530635/*
636 * Mic select module allows selecting one or many input channels, thus
637 * acting as a demux.
638 *
639 * Mic select module take base module configuration and out-format
640 * configuration
641 */
642static void skl_set_base_outfmt_format(struct skl_sst *ctx,
643 struct skl_module_cfg *mconfig,
644 struct skl_base_outfmt_cfg *base_outfmt_mcfg)
645{
646 struct skl_audio_data_format *out_fmt = &base_outfmt_mcfg->out_fmt;
647 struct skl_base_cfg *base_cfg =
648 (struct skl_base_cfg *)base_outfmt_mcfg;
649
650 skl_set_base_module_format(ctx, mconfig, base_cfg);
651 skl_setup_out_format(ctx, mconfig, out_fmt);
652}
653
Jeeja KP23db4722015-08-01 19:40:41 +0530654static u16 skl_get_module_param_size(struct skl_sst *ctx,
655 struct skl_module_cfg *mconfig)
656{
657 u16 param_size;
658
659 switch (mconfig->m_type) {
660 case SKL_MODULE_TYPE_COPIER:
661 param_size = sizeof(struct skl_cpr_cfg);
662 param_size += mconfig->formats_config.caps_size;
663 return param_size;
664
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530665 case SKL_MODULE_TYPE_SRCINT:
666 return sizeof(struct skl_src_module_cfg);
667
668 case SKL_MODULE_TYPE_UPDWMIX:
669 return sizeof(struct skl_up_down_mixer_cfg);
670
Jeeja KP399b2102015-11-28 15:01:48 +0530671 case SKL_MODULE_TYPE_ALGO:
672 param_size = sizeof(struct skl_base_cfg);
673 param_size += mconfig->formats_config.caps_size;
674 return param_size;
675
Dharageswari Rfd181102015-12-03 23:29:52 +0530676 case SKL_MODULE_TYPE_BASE_OUTFMT:
677 return sizeof(struct skl_base_outfmt_cfg);
678
Jeeja KP23db4722015-08-01 19:40:41 +0530679 default:
680 /*
681 * return only base cfg when no specific module type is
682 * specified
683 */
684 return sizeof(struct skl_base_cfg);
685 }
686
687 return 0;
688}
689
690/*
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530691 * DSP firmware supports various modules like copier, SRC, updown etc.
692 * These modules required various parameters to be calculated and sent for
693 * the module initialization to DSP. By default a generic module needs only
694 * base module format configuration
Jeeja KP23db4722015-08-01 19:40:41 +0530695 */
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530696
Jeeja KP23db4722015-08-01 19:40:41 +0530697static int skl_set_module_format(struct skl_sst *ctx,
698 struct skl_module_cfg *module_config,
699 u16 *module_config_size,
700 void **param_data)
701{
702 u16 param_size;
703
704 param_size = skl_get_module_param_size(ctx, module_config);
705
706 *param_data = kzalloc(param_size, GFP_KERNEL);
707 if (NULL == *param_data)
708 return -ENOMEM;
709
710 *module_config_size = param_size;
711
712 switch (module_config->m_type) {
713 case SKL_MODULE_TYPE_COPIER:
714 skl_set_copier_format(ctx, module_config, *param_data);
715 break;
716
Hardik T Shaha0ffe482015-08-01 19:40:42 +0530717 case SKL_MODULE_TYPE_SRCINT:
718 skl_set_src_format(ctx, module_config, *param_data);
719 break;
720
721 case SKL_MODULE_TYPE_UPDWMIX:
722 skl_set_updown_mixer_format(ctx, module_config, *param_data);
723 break;
724
Jeeja KP399b2102015-11-28 15:01:48 +0530725 case SKL_MODULE_TYPE_ALGO:
726 skl_set_algo_format(ctx, module_config, *param_data);
727 break;
728
Dharageswari Rfd181102015-12-03 23:29:52 +0530729 case SKL_MODULE_TYPE_BASE_OUTFMT:
730 skl_set_base_outfmt_format(ctx, module_config, *param_data);
731 break;
732
Jeeja KP23db4722015-08-01 19:40:41 +0530733 default:
734 skl_set_base_module_format(ctx, module_config, *param_data);
735 break;
736
737 }
738
739 dev_dbg(ctx->dev, "Module type=%d config size: %d bytes\n",
740 module_config->id.module_id, param_size);
Vedang Patel91c18322016-06-24 17:37:11 -0700741 print_hex_dump_debug("Module params:", DUMP_PREFIX_OFFSET, 8, 4,
Jeeja KP23db4722015-08-01 19:40:41 +0530742 *param_data, param_size, false);
743 return 0;
744}
745
746static int skl_get_queue_index(struct skl_module_pin *mpin,
747 struct skl_module_inst_id id, int max)
748{
749 int i;
750
751 for (i = 0; i < max; i++) {
752 if (mpin[i].id.module_id == id.module_id &&
753 mpin[i].id.instance_id == id.instance_id)
754 return i;
755 }
756
757 return -EINVAL;
758}
759
760/*
761 * Allocates queue for each module.
762 * if dynamic, the pin_index is allocated 0 to max_pin.
763 * In static, the pin_index is fixed based on module_id and instance id
764 */
765static int skl_alloc_queue(struct skl_module_pin *mpin,
Jeeja KP4f745702015-10-27 09:22:49 +0900766 struct skl_module_cfg *tgt_cfg, int max)
Jeeja KP23db4722015-08-01 19:40:41 +0530767{
768 int i;
Jeeja KP4f745702015-10-27 09:22:49 +0900769 struct skl_module_inst_id id = tgt_cfg->id;
Jeeja KP23db4722015-08-01 19:40:41 +0530770 /*
771 * if pin in dynamic, find first free pin
772 * otherwise find match module and instance id pin as topology will
773 * ensure a unique pin is assigned to this so no need to
774 * allocate/free
775 */
776 for (i = 0; i < max; i++) {
777 if (mpin[i].is_dynamic) {
Jeeja KP4f745702015-10-27 09:22:49 +0900778 if (!mpin[i].in_use &&
779 mpin[i].pin_state == SKL_PIN_UNBIND) {
780
Jeeja KP23db4722015-08-01 19:40:41 +0530781 mpin[i].in_use = true;
782 mpin[i].id.module_id = id.module_id;
783 mpin[i].id.instance_id = id.instance_id;
Jeeja KP4f745702015-10-27 09:22:49 +0900784 mpin[i].tgt_mcfg = tgt_cfg;
Jeeja KP23db4722015-08-01 19:40:41 +0530785 return i;
786 }
787 } else {
788 if (mpin[i].id.module_id == id.module_id &&
Jeeja KP4f745702015-10-27 09:22:49 +0900789 mpin[i].id.instance_id == id.instance_id &&
790 mpin[i].pin_state == SKL_PIN_UNBIND) {
791
792 mpin[i].tgt_mcfg = tgt_cfg;
Jeeja KP23db4722015-08-01 19:40:41 +0530793 return i;
Jeeja KP4f745702015-10-27 09:22:49 +0900794 }
Jeeja KP23db4722015-08-01 19:40:41 +0530795 }
796 }
797
798 return -EINVAL;
799}
800
801static void skl_free_queue(struct skl_module_pin *mpin, int q_index)
802{
803 if (mpin[q_index].is_dynamic) {
804 mpin[q_index].in_use = false;
805 mpin[q_index].id.module_id = 0;
806 mpin[q_index].id.instance_id = 0;
807 }
Jeeja KP4f745702015-10-27 09:22:49 +0900808 mpin[q_index].pin_state = SKL_PIN_UNBIND;
809 mpin[q_index].tgt_mcfg = NULL;
810}
811
812/* Module state will be set to unint, if all the out pin state is UNBIND */
813
814static void skl_clear_module_state(struct skl_module_pin *mpin, int max,
815 struct skl_module_cfg *mcfg)
816{
817 int i;
818 bool found = false;
819
820 for (i = 0; i < max; i++) {
821 if (mpin[i].pin_state == SKL_PIN_UNBIND)
822 continue;
823 found = true;
824 break;
825 }
826
827 if (!found)
828 mcfg->m_state = SKL_MODULE_UNINIT;
829 return;
Jeeja KP23db4722015-08-01 19:40:41 +0530830}
Jeeja KPbeb73b22015-08-01 19:40:43 +0530831
832/*
833 * A module needs to be instanataited in DSP. A mdoule is present in a
834 * collection of module referred as a PIPE.
835 * We first calculate the module format, based on module type and then
836 * invoke the DSP by sending IPC INIT_INSTANCE using ipc helper
837 */
838int skl_init_module(struct skl_sst *ctx,
Jeeja KP9939a9c2015-11-28 15:01:47 +0530839 struct skl_module_cfg *mconfig)
Jeeja KPbeb73b22015-08-01 19:40:43 +0530840{
841 u16 module_config_size = 0;
842 void *param_data = NULL;
843 int ret;
844 struct skl_ipc_init_instance_msg msg;
845
846 dev_dbg(ctx->dev, "%s: module_id = %d instance=%d\n", __func__,
847 mconfig->id.module_id, mconfig->id.instance_id);
848
849 if (mconfig->pipe->state != SKL_PIPE_CREATED) {
850 dev_err(ctx->dev, "Pipe not created state= %d pipe_id= %d\n",
851 mconfig->pipe->state, mconfig->pipe->ppl_id);
852 return -EIO;
853 }
854
855 ret = skl_set_module_format(ctx, mconfig,
856 &module_config_size, &param_data);
857 if (ret < 0) {
858 dev_err(ctx->dev, "Failed to set module format ret=%d\n", ret);
859 return ret;
860 }
861
862 msg.module_id = mconfig->id.module_id;
863 msg.instance_id = mconfig->id.instance_id;
864 msg.ppl_instance_id = mconfig->pipe->ppl_id;
865 msg.param_data_size = module_config_size;
866 msg.core_id = mconfig->core_id;
867
868 ret = skl_ipc_init_instance(&ctx->ipc, &msg, param_data);
869 if (ret < 0) {
870 dev_err(ctx->dev, "Failed to init instance ret=%d\n", ret);
871 kfree(param_data);
872 return ret;
873 }
874 mconfig->m_state = SKL_MODULE_INIT_DONE;
Mousumi Jana76222d6d2016-04-28 18:45:26 +0530875 kfree(param_data);
Jeeja KPbeb73b22015-08-01 19:40:43 +0530876 return ret;
877}
878
879static void skl_dump_bind_info(struct skl_sst *ctx, struct skl_module_cfg
880 *src_module, struct skl_module_cfg *dst_module)
881{
882 dev_dbg(ctx->dev, "%s: src module_id = %d src_instance=%d\n",
883 __func__, src_module->id.module_id, src_module->id.instance_id);
884 dev_dbg(ctx->dev, "%s: dst_module=%d dst_instacne=%d\n", __func__,
885 dst_module->id.module_id, dst_module->id.instance_id);
886
887 dev_dbg(ctx->dev, "src_module state = %d dst module state = %d\n",
888 src_module->m_state, dst_module->m_state);
889}
890
891/*
892 * On module freeup, we need to unbind the module with modules
893 * it is already bind.
894 * Find the pin allocated and unbind then using bind_unbind IPC
895 */
896int skl_unbind_modules(struct skl_sst *ctx,
897 struct skl_module_cfg *src_mcfg,
898 struct skl_module_cfg *dst_mcfg)
899{
900 int ret;
901 struct skl_ipc_bind_unbind_msg msg;
902 struct skl_module_inst_id src_id = src_mcfg->id;
903 struct skl_module_inst_id dst_id = dst_mcfg->id;
904 int in_max = dst_mcfg->max_in_queue;
905 int out_max = src_mcfg->max_out_queue;
Jeeja KP4f745702015-10-27 09:22:49 +0900906 int src_index, dst_index, src_pin_state, dst_pin_state;
Jeeja KPbeb73b22015-08-01 19:40:43 +0530907
908 skl_dump_bind_info(ctx, src_mcfg, dst_mcfg);
909
Jeeja KPbeb73b22015-08-01 19:40:43 +0530910 /* get src queue index */
911 src_index = skl_get_queue_index(src_mcfg->m_out_pin, dst_id, out_max);
912 if (src_index < 0)
Jeeja KP9cf30492016-02-03 17:59:48 +0530913 return 0;
Jeeja KPbeb73b22015-08-01 19:40:43 +0530914
Jeeja KP4f745702015-10-27 09:22:49 +0900915 msg.src_queue = src_index;
Jeeja KPbeb73b22015-08-01 19:40:43 +0530916
917 /* get dst queue index */
918 dst_index = skl_get_queue_index(dst_mcfg->m_in_pin, src_id, in_max);
919 if (dst_index < 0)
Jeeja KP9cf30492016-02-03 17:59:48 +0530920 return 0;
Jeeja KPbeb73b22015-08-01 19:40:43 +0530921
Jeeja KP4f745702015-10-27 09:22:49 +0900922 msg.dst_queue = dst_index;
923
924 src_pin_state = src_mcfg->m_out_pin[src_index].pin_state;
925 dst_pin_state = dst_mcfg->m_in_pin[dst_index].pin_state;
926
927 if (src_pin_state != SKL_PIN_BIND_DONE ||
928 dst_pin_state != SKL_PIN_BIND_DONE)
929 return 0;
Jeeja KPbeb73b22015-08-01 19:40:43 +0530930
931 msg.module_id = src_mcfg->id.module_id;
932 msg.instance_id = src_mcfg->id.instance_id;
933 msg.dst_module_id = dst_mcfg->id.module_id;
934 msg.dst_instance_id = dst_mcfg->id.instance_id;
935 msg.bind = false;
936
937 ret = skl_ipc_bind_unbind(&ctx->ipc, &msg);
938 if (!ret) {
Jeeja KPbeb73b22015-08-01 19:40:43 +0530939 /* free queue only if unbind is success */
940 skl_free_queue(src_mcfg->m_out_pin, src_index);
941 skl_free_queue(dst_mcfg->m_in_pin, dst_index);
Jeeja KP4f745702015-10-27 09:22:49 +0900942
943 /*
944 * check only if src module bind state, bind is
945 * always from src -> sink
946 */
947 skl_clear_module_state(src_mcfg->m_out_pin, out_max, src_mcfg);
Jeeja KPbeb73b22015-08-01 19:40:43 +0530948 }
949
950 return ret;
951}
952
953/*
954 * Once a module is instantiated it need to be 'bind' with other modules in
955 * the pipeline. For binding we need to find the module pins which are bind
956 * together
957 * This function finds the pins and then sends bund_unbind IPC message to
958 * DSP using IPC helper
959 */
960int skl_bind_modules(struct skl_sst *ctx,
961 struct skl_module_cfg *src_mcfg,
962 struct skl_module_cfg *dst_mcfg)
963{
964 int ret;
965 struct skl_ipc_bind_unbind_msg msg;
Jeeja KPbeb73b22015-08-01 19:40:43 +0530966 int in_max = dst_mcfg->max_in_queue;
967 int out_max = src_mcfg->max_out_queue;
968 int src_index, dst_index;
969
970 skl_dump_bind_info(ctx, src_mcfg, dst_mcfg);
971
Jeeja KP0c684c42016-02-03 17:59:49 +0530972 if (src_mcfg->m_state < SKL_MODULE_INIT_DONE ||
Jeeja KPbeb73b22015-08-01 19:40:43 +0530973 dst_mcfg->m_state < SKL_MODULE_INIT_DONE)
974 return 0;
975
Jeeja KP4f745702015-10-27 09:22:49 +0900976 src_index = skl_alloc_queue(src_mcfg->m_out_pin, dst_mcfg, out_max);
Jeeja KPbeb73b22015-08-01 19:40:43 +0530977 if (src_index < 0)
978 return -EINVAL;
979
Jeeja KP4f745702015-10-27 09:22:49 +0900980 msg.src_queue = src_index;
981 dst_index = skl_alloc_queue(dst_mcfg->m_in_pin, src_mcfg, in_max);
Jeeja KPbeb73b22015-08-01 19:40:43 +0530982 if (dst_index < 0) {
983 skl_free_queue(src_mcfg->m_out_pin, src_index);
984 return -EINVAL;
985 }
986
Jeeja KP4f745702015-10-27 09:22:49 +0900987 msg.dst_queue = dst_index;
Jeeja KPbeb73b22015-08-01 19:40:43 +0530988
989 dev_dbg(ctx->dev, "src queue = %d dst queue =%d\n",
990 msg.src_queue, msg.dst_queue);
991
992 msg.module_id = src_mcfg->id.module_id;
993 msg.instance_id = src_mcfg->id.instance_id;
994 msg.dst_module_id = dst_mcfg->id.module_id;
995 msg.dst_instance_id = dst_mcfg->id.instance_id;
996 msg.bind = true;
997
998 ret = skl_ipc_bind_unbind(&ctx->ipc, &msg);
999
1000 if (!ret) {
1001 src_mcfg->m_state = SKL_MODULE_BIND_DONE;
Jeeja KP4f745702015-10-27 09:22:49 +09001002 src_mcfg->m_out_pin[src_index].pin_state = SKL_PIN_BIND_DONE;
1003 dst_mcfg->m_in_pin[dst_index].pin_state = SKL_PIN_BIND_DONE;
Jeeja KPbeb73b22015-08-01 19:40:43 +05301004 } else {
1005 /* error case , if IPC fails, clear the queue index */
1006 skl_free_queue(src_mcfg->m_out_pin, src_index);
1007 skl_free_queue(dst_mcfg->m_in_pin, dst_index);
1008 }
1009
1010 return ret;
1011}
Jeeja KPc9b1e832015-08-01 19:40:44 +05301012
1013static int skl_set_pipe_state(struct skl_sst *ctx, struct skl_pipe *pipe,
1014 enum skl_ipc_pipeline_state state)
1015{
1016 dev_dbg(ctx->dev, "%s: pipe_satate = %d\n", __func__, state);
1017
1018 return skl_ipc_set_pipeline_state(&ctx->ipc, pipe->ppl_id, state);
1019}
1020
1021/*
1022 * A pipeline is a collection of modules. Before a module in instantiated a
1023 * pipeline needs to be created for it.
1024 * This function creates pipeline, by sending create pipeline IPC messages
1025 * to FW
1026 */
1027int skl_create_pipeline(struct skl_sst *ctx, struct skl_pipe *pipe)
1028{
1029 int ret;
1030
1031 dev_dbg(ctx->dev, "%s: pipe_id = %d\n", __func__, pipe->ppl_id);
1032
1033 ret = skl_ipc_create_pipeline(&ctx->ipc, pipe->memory_pages,
1034 pipe->pipe_priority, pipe->ppl_id);
1035 if (ret < 0) {
1036 dev_err(ctx->dev, "Failed to create pipeline\n");
1037 return ret;
1038 }
1039
1040 pipe->state = SKL_PIPE_CREATED;
1041
1042 return 0;
1043}
1044
1045/*
1046 * A pipeline needs to be deleted on cleanup. If a pipeline is running, then
1047 * pause the pipeline first and then delete it
1048 * The pipe delete is done by sending delete pipeline IPC. DSP will stop the
1049 * DMA engines and releases resources
1050 */
1051int skl_delete_pipe(struct skl_sst *ctx, struct skl_pipe *pipe)
1052{
1053 int ret;
1054
1055 dev_dbg(ctx->dev, "%s: pipe = %d\n", __func__, pipe->ppl_id);
1056
Dharageswari R1ae7ca02016-06-03 18:29:36 +05301057 /* If pipe is started, do stop the pipe in FW. */
Jeeja KPc9b1e832015-08-01 19:40:44 +05301058 if (pipe->state > SKL_PIPE_STARTED) {
1059 ret = skl_set_pipe_state(ctx, pipe, PPL_PAUSED);
1060 if (ret < 0) {
1061 dev_err(ctx->dev, "Failed to stop pipeline\n");
1062 return ret;
1063 }
1064
1065 pipe->state = SKL_PIPE_PAUSED;
Jeeja KPc9b1e832015-08-01 19:40:44 +05301066 }
1067
Dharageswari R1ae7ca02016-06-03 18:29:36 +05301068 /* If pipe was not created in FW, do not try to delete it */
1069 if (pipe->state < SKL_PIPE_CREATED)
1070 return 0;
1071
1072 ret = skl_ipc_delete_pipeline(&ctx->ipc, pipe->ppl_id);
1073 if (ret < 0) {
1074 dev_err(ctx->dev, "Failed to delete pipeline\n");
1075 return ret;
1076 }
1077
1078 pipe->state = SKL_PIPE_INVALID;
1079
Jeeja KPc9b1e832015-08-01 19:40:44 +05301080 return ret;
1081}
1082
1083/*
1084 * A pipeline is also a scheduling entity in DSP which can be run, stopped
1085 * For processing data the pipe need to be run by sending IPC set pipe state
1086 * to DSP
1087 */
1088int skl_run_pipe(struct skl_sst *ctx, struct skl_pipe *pipe)
1089{
1090 int ret;
1091
1092 dev_dbg(ctx->dev, "%s: pipe = %d\n", __func__, pipe->ppl_id);
1093
1094 /* If pipe was not created in FW, do not try to pause or delete */
1095 if (pipe->state < SKL_PIPE_CREATED)
1096 return 0;
1097
1098 /* Pipe has to be paused before it is started */
1099 ret = skl_set_pipe_state(ctx, pipe, PPL_PAUSED);
1100 if (ret < 0) {
1101 dev_err(ctx->dev, "Failed to pause pipe\n");
1102 return ret;
1103 }
1104
1105 pipe->state = SKL_PIPE_PAUSED;
1106
1107 ret = skl_set_pipe_state(ctx, pipe, PPL_RUNNING);
1108 if (ret < 0) {
1109 dev_err(ctx->dev, "Failed to start pipe\n");
1110 return ret;
1111 }
1112
1113 pipe->state = SKL_PIPE_STARTED;
1114
1115 return 0;
1116}
1117
1118/*
1119 * Stop the pipeline by sending set pipe state IPC
1120 * DSP doesnt implement stop so we always send pause message
1121 */
1122int skl_stop_pipe(struct skl_sst *ctx, struct skl_pipe *pipe)
1123{
1124 int ret;
1125
1126 dev_dbg(ctx->dev, "In %s pipe=%d\n", __func__, pipe->ppl_id);
1127
1128 /* If pipe was not created in FW, do not try to pause or delete */
1129 if (pipe->state < SKL_PIPE_PAUSED)
1130 return 0;
1131
1132 ret = skl_set_pipe_state(ctx, pipe, PPL_PAUSED);
1133 if (ret < 0) {
1134 dev_dbg(ctx->dev, "Failed to stop pipe\n");
1135 return ret;
1136 }
1137
Jeeja KP353f72a2016-06-03 18:29:35 +05301138 pipe->state = SKL_PIPE_PAUSED;
Jeeja KPc9b1e832015-08-01 19:40:44 +05301139
1140 return 0;
1141}
Jeeja KP9939a9c2015-11-28 15:01:47 +05301142
Jeeja KP20044322016-06-03 18:29:34 +05301143/*
1144 * Reset the pipeline by sending set pipe state IPC this will reset the DMA
1145 * from the DSP side
1146 */
1147int skl_reset_pipe(struct skl_sst *ctx, struct skl_pipe *pipe)
1148{
1149 int ret;
1150
1151 /* If pipe was not created in FW, do not try to pause or delete */
1152 if (pipe->state < SKL_PIPE_PAUSED)
1153 return 0;
1154
1155 ret = skl_set_pipe_state(ctx, pipe, PPL_RESET);
1156 if (ret < 0) {
1157 dev_dbg(ctx->dev, "Failed to reset pipe ret=%d\n", ret);
1158 return ret;
1159 }
1160
1161 pipe->state = SKL_PIPE_RESET;
1162
1163 return 0;
1164}
1165
Jeeja KP9939a9c2015-11-28 15:01:47 +05301166/* Algo parameter set helper function */
1167int skl_set_module_params(struct skl_sst *ctx, u32 *params, int size,
1168 u32 param_id, struct skl_module_cfg *mcfg)
1169{
1170 struct skl_ipc_large_config_msg msg;
1171
1172 msg.module_id = mcfg->id.module_id;
1173 msg.instance_id = mcfg->id.instance_id;
1174 msg.param_data_size = size;
1175 msg.large_param_id = param_id;
1176
1177 return skl_ipc_set_large_config(&ctx->ipc, &msg, params);
1178}
Omair M Abdullah7d9f2912015-12-03 23:29:56 +05301179
1180int skl_get_module_params(struct skl_sst *ctx, u32 *params, int size,
1181 u32 param_id, struct skl_module_cfg *mcfg)
1182{
1183 struct skl_ipc_large_config_msg msg;
1184
1185 msg.module_id = mcfg->id.module_id;
1186 msg.instance_id = mcfg->id.instance_id;
1187 msg.param_data_size = size;
1188 msg.large_param_id = param_id;
1189
1190 return skl_ipc_get_large_config(&ctx->ipc, &msg, params);
1191}