blob: 22f768ca3c73be752b208ac52b06ed52be53bada [file] [log] [blame]
Jeeja KPe4e2d2f2015-10-07 11:31:52 +01001/*
2 * skl-topology.c - Implements Platform component ALSA controls/widget
3 * handlers.
4 *
5 * Copyright (C) 2014-2015 Intel Corp
6 * Author: Jeeja KP <jeeja.kp@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as version 2, as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 */
18
19#include <linux/slab.h>
20#include <linux/types.h>
21#include <linux/firmware.h>
22#include <sound/soc.h>
23#include <sound/soc-topology.h>
Shreyas NC6277e832016-08-12 12:29:51 +053024#include <uapi/sound/snd_sst_tokens.h>
Jeeja KPe4e2d2f2015-10-07 11:31:52 +010025#include "skl-sst-dsp.h"
26#include "skl-sst-ipc.h"
27#include "skl-topology.h"
28#include "skl.h"
29#include "skl-tplg-interface.h"
Dharageswari R6c5768b2015-12-03 23:29:50 +053030#include "../common/sst-dsp.h"
31#include "../common/sst-dsp-priv.h"
Jeeja KPe4e2d2f2015-10-07 11:31:52 +010032
Jeeja KPf7590d42015-10-07 11:31:53 +010033#define SKL_CH_FIXUP_MASK (1 << 0)
34#define SKL_RATE_FIXUP_MASK (1 << 1)
35#define SKL_FMT_FIXUP_MASK (1 << 2)
Shreyas NC6277e832016-08-12 12:29:51 +053036#define SKL_IN_DIR_BIT_MASK BIT(0)
37#define SKL_PIN_COUNT_MASK GENMASK(7, 4)
Jeeja KPf7590d42015-10-07 11:31:53 +010038
Dharageswari R7a1b7492017-05-31 10:30:25 +053039static const int mic_mono_list[] = {
400, 1, 2, 3,
41};
42static const int mic_stereo_list[][SKL_CH_STEREO] = {
43{0, 1}, {0, 2}, {0, 3}, {1, 2}, {1, 3}, {2, 3},
44};
45static const int mic_trio_list[][SKL_CH_TRIO] = {
46{0, 1, 2}, {0, 1, 3}, {0, 2, 3}, {1, 2, 3},
47};
48static const int mic_quatro_list[][SKL_CH_QUATRO] = {
49{0, 1, 2, 3},
50};
51
Ramesh Babuf6fa56e2017-08-23 19:33:53 +053052#define CHECK_HW_PARAMS(ch, freq, bps, prm_ch, prm_freq, prm_bps) \
53 ((ch == prm_ch) && (bps == prm_bps) && (freq == prm_freq))
54
Vinod Koula83e3b42016-11-03 17:07:20 +053055void skl_tplg_d0i3_get(struct skl *skl, enum d0i3_capability caps)
56{
57 struct skl_d0i3_data *d0i3 = &skl->skl_sst->d0i3;
58
59 switch (caps) {
60 case SKL_D0I3_NONE:
61 d0i3->non_d0i3++;
62 break;
63
64 case SKL_D0I3_STREAMING:
65 d0i3->streaming++;
66 break;
67
68 case SKL_D0I3_NON_STREAMING:
69 d0i3->non_streaming++;
70 break;
71 }
72}
73
74void skl_tplg_d0i3_put(struct skl *skl, enum d0i3_capability caps)
75{
76 struct skl_d0i3_data *d0i3 = &skl->skl_sst->d0i3;
77
78 switch (caps) {
79 case SKL_D0I3_NONE:
80 d0i3->non_d0i3--;
81 break;
82
83 case SKL_D0I3_STREAMING:
84 d0i3->streaming--;
85 break;
86
87 case SKL_D0I3_NON_STREAMING:
88 d0i3->non_streaming--;
89 break;
90 }
91}
92
Jeeja KPe4e2d2f2015-10-07 11:31:52 +010093/*
94 * SKL DSP driver modelling uses only few DAPM widgets so for rest we will
95 * ignore. This helpers checks if the SKL driver handles this widget type
96 */
97static int is_skl_dsp_widget_type(struct snd_soc_dapm_widget *w)
98{
99 switch (w->id) {
100 case snd_soc_dapm_dai_link:
101 case snd_soc_dapm_dai_in:
102 case snd_soc_dapm_aif_in:
103 case snd_soc_dapm_aif_out:
104 case snd_soc_dapm_dai_out:
105 case snd_soc_dapm_switch:
106 return false;
107 default:
108 return true;
109 }
110}
111
112/*
113 * Each pipelines needs memory to be allocated. Check if we have free memory
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530114 * from available pool.
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100115 */
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530116static bool skl_is_pipe_mem_avail(struct skl *skl,
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100117 struct skl_module_cfg *mconfig)
118{
119 struct skl_sst *ctx = skl->skl_sst;
120
121 if (skl->resource.mem + mconfig->pipe->memory_pages >
122 skl->resource.max_mem) {
123 dev_err(ctx->dev,
124 "%s: module_id %d instance %d\n", __func__,
125 mconfig->id.module_id,
126 mconfig->id.instance_id);
127 dev_err(ctx->dev,
128 "exceeds ppl memory available %d mem %d\n",
129 skl->resource.max_mem, skl->resource.mem);
130 return false;
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530131 } else {
132 return true;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100133 }
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530134}
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100135
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530136/*
137 * Add the mem to the mem pool. This is freed when pipe is deleted.
138 * Note: DSP does actual memory management we only keep track for complete
139 * pool
140 */
141static void skl_tplg_alloc_pipe_mem(struct skl *skl,
142 struct skl_module_cfg *mconfig)
143{
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100144 skl->resource.mem += mconfig->pipe->memory_pages;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100145}
146
147/*
148 * Pipeline needs needs DSP CPU resources for computation, this is
149 * quantified in MCPS (Million Clocks Per Second) required for module/pipe
150 *
151 * Each pipelines needs mcps to be allocated. Check if we have mcps for this
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530152 * pipe.
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100153 */
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530154
155static bool skl_is_pipe_mcps_avail(struct skl *skl,
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100156 struct skl_module_cfg *mconfig)
157{
158 struct skl_sst *ctx = skl->skl_sst;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530159 u8 res_idx = mconfig->res_idx;
160 struct skl_module_res *res = &mconfig->module->resources[res_idx];
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100161
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530162 if (skl->resource.mcps + res->cps > skl->resource.max_mcps) {
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100163 dev_err(ctx->dev,
164 "%s: module_id %d instance %d\n", __func__,
165 mconfig->id.module_id, mconfig->id.instance_id);
166 dev_err(ctx->dev,
Guneshwor Singh7ca42f52016-02-03 17:59:46 +0530167 "exceeds ppl mcps available %d > mem %d\n",
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100168 skl->resource.max_mcps, skl->resource.mcps);
169 return false;
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530170 } else {
171 return true;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100172 }
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530173}
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100174
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530175static void skl_tplg_alloc_pipe_mcps(struct skl *skl,
176 struct skl_module_cfg *mconfig)
177{
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530178 u8 res_idx = mconfig->res_idx;
179 struct skl_module_res *res = &mconfig->module->resources[res_idx];
180
181 skl->resource.mcps += res->cps;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100182}
183
184/*
185 * Free the mcps when tearing down
186 */
187static void
188skl_tplg_free_pipe_mcps(struct skl *skl, struct skl_module_cfg *mconfig)
189{
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530190 u8 res_idx = mconfig->res_idx;
191 struct skl_module_res *res = &mconfig->module->resources[res_idx];
192
193 res = &mconfig->module->resources[res_idx];
194 skl->resource.mcps -= res->cps;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100195}
196
197/*
198 * Free the memory when tearing down
199 */
200static void
201skl_tplg_free_pipe_mem(struct skl *skl, struct skl_module_cfg *mconfig)
202{
203 skl->resource.mem -= mconfig->pipe->memory_pages;
204}
205
Jeeja KPf7590d42015-10-07 11:31:53 +0100206
207static void skl_dump_mconfig(struct skl_sst *ctx,
208 struct skl_module_cfg *mcfg)
209{
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530210 struct skl_module_iface *iface = &mcfg->module->formats[0];
211
Jeeja KPf7590d42015-10-07 11:31:53 +0100212 dev_dbg(ctx->dev, "Dumping config\n");
213 dev_dbg(ctx->dev, "Input Format:\n");
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530214 dev_dbg(ctx->dev, "channels = %d\n", iface->inputs[0].fmt.channels);
215 dev_dbg(ctx->dev, "s_freq = %d\n", iface->inputs[0].fmt.s_freq);
216 dev_dbg(ctx->dev, "ch_cfg = %d\n", iface->inputs[0].fmt.ch_cfg);
217 dev_dbg(ctx->dev, "valid bit depth = %d\n",
218 iface->inputs[0].fmt.valid_bit_depth);
Jeeja KPf7590d42015-10-07 11:31:53 +0100219 dev_dbg(ctx->dev, "Output Format:\n");
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530220 dev_dbg(ctx->dev, "channels = %d\n", iface->outputs[0].fmt.channels);
221 dev_dbg(ctx->dev, "s_freq = %d\n", iface->outputs[0].fmt.s_freq);
222 dev_dbg(ctx->dev, "valid bit depth = %d\n",
223 iface->outputs[0].fmt.valid_bit_depth);
224 dev_dbg(ctx->dev, "ch_cfg = %d\n", iface->outputs[0].fmt.ch_cfg);
Jeeja KPf7590d42015-10-07 11:31:53 +0100225}
226
Subhransu S. Prustyea5a1372016-04-14 10:07:36 +0530227static void skl_tplg_update_chmap(struct skl_module_fmt *fmt, int chs)
228{
229 int slot_map = 0xFFFFFFFF;
230 int start_slot = 0;
231 int i;
232
233 for (i = 0; i < chs; i++) {
234 /*
235 * For 2 channels with starting slot as 0, slot map will
236 * look like 0xFFFFFF10.
237 */
238 slot_map &= (~(0xF << (4 * i)) | (start_slot << (4 * i)));
239 start_slot++;
240 }
241 fmt->ch_map = slot_map;
242}
243
Jeeja KPf7590d42015-10-07 11:31:53 +0100244static void skl_tplg_update_params(struct skl_module_fmt *fmt,
245 struct skl_pipe_params *params, int fixup)
246{
247 if (fixup & SKL_RATE_FIXUP_MASK)
248 fmt->s_freq = params->s_freq;
Subhransu S. Prustyea5a1372016-04-14 10:07:36 +0530249 if (fixup & SKL_CH_FIXUP_MASK) {
Jeeja KPf7590d42015-10-07 11:31:53 +0100250 fmt->channels = params->ch;
Subhransu S. Prustyea5a1372016-04-14 10:07:36 +0530251 skl_tplg_update_chmap(fmt, fmt->channels);
252 }
Jeeja KP98256f82015-11-23 22:26:25 +0530253 if (fixup & SKL_FMT_FIXUP_MASK) {
254 fmt->valid_bit_depth = skl_get_bit_depth(params->s_fmt);
255
256 /*
257 * 16 bit is 16 bit container whereas 24 bit is in 32 bit
258 * container so update bit depth accordingly
259 */
260 switch (fmt->valid_bit_depth) {
261 case SKL_DEPTH_16BIT:
262 fmt->bit_depth = fmt->valid_bit_depth;
263 break;
264
265 default:
266 fmt->bit_depth = SKL_DEPTH_32BIT;
267 break;
268 }
269 }
270
Jeeja KPf7590d42015-10-07 11:31:53 +0100271}
272
273/*
274 * A pipeline may have modules which impact the pcm parameters, like SRC,
275 * channel converter, format converter.
276 * We need to calculate the output params by applying the 'fixup'
277 * Topology will tell driver which type of fixup is to be applied by
278 * supplying the fixup mask, so based on that we calculate the output
279 *
280 * Now In FE the pcm hw_params is source/target format. Same is applicable
281 * for BE with its hw_params invoked.
282 * here based on FE, BE pipeline and direction we calculate the input and
283 * outfix and then apply that for a module
284 */
285static void skl_tplg_update_params_fixup(struct skl_module_cfg *m_cfg,
286 struct skl_pipe_params *params, bool is_fe)
287{
288 int in_fixup, out_fixup;
289 struct skl_module_fmt *in_fmt, *out_fmt;
290
Hardik T Shah4cd98992015-10-27 09:22:55 +0900291 /* Fixups will be applied to pin 0 only */
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530292 in_fmt = &m_cfg->module->formats[0].inputs[0].fmt;
293 out_fmt = &m_cfg->module->formats[0].outputs[0].fmt;
Jeeja KPf7590d42015-10-07 11:31:53 +0100294
295 if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) {
296 if (is_fe) {
297 in_fixup = m_cfg->params_fixup;
298 out_fixup = (~m_cfg->converter) &
299 m_cfg->params_fixup;
300 } else {
301 out_fixup = m_cfg->params_fixup;
302 in_fixup = (~m_cfg->converter) &
303 m_cfg->params_fixup;
304 }
305 } else {
306 if (is_fe) {
307 out_fixup = m_cfg->params_fixup;
308 in_fixup = (~m_cfg->converter) &
309 m_cfg->params_fixup;
310 } else {
311 in_fixup = m_cfg->params_fixup;
312 out_fixup = (~m_cfg->converter) &
313 m_cfg->params_fixup;
314 }
315 }
316
317 skl_tplg_update_params(in_fmt, params, in_fixup);
318 skl_tplg_update_params(out_fmt, params, out_fixup);
319}
320
321/*
322 * A module needs input and output buffers, which are dependent upon pcm
323 * params, so once we have calculate params, we need buffer calculation as
324 * well.
325 */
326static void skl_tplg_update_buffer_size(struct skl_sst *ctx,
327 struct skl_module_cfg *mcfg)
328{
329 int multiplier = 1;
Hardik T Shah4cd98992015-10-27 09:22:55 +0900330 struct skl_module_fmt *in_fmt, *out_fmt;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530331 struct skl_module_res *res;
Hardik T Shah4cd98992015-10-27 09:22:55 +0900332
333 /* Since fixups is applied to pin 0 only, ibs, obs needs
334 * change for pin 0 only
335 */
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530336 res = &mcfg->module->resources[0];
337 in_fmt = &mcfg->module->formats[0].inputs[0].fmt;
338 out_fmt = &mcfg->module->formats[0].outputs[0].fmt;
Jeeja KPf7590d42015-10-07 11:31:53 +0100339
340 if (mcfg->m_type == SKL_MODULE_TYPE_SRCINT)
341 multiplier = 5;
Jeeja KPf7590d42015-10-07 11:31:53 +0100342
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530343 res->ibs = DIV_ROUND_UP(in_fmt->s_freq, 1000) *
Takashi Sakamoto998d6fb2017-03-08 17:47:02 +0900344 in_fmt->channels * (in_fmt->bit_depth >> 3) *
Subhransu S. Prustyf0c8e1d2016-04-12 10:31:23 +0530345 multiplier;
346
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530347 res->obs = DIV_ROUND_UP(out_fmt->s_freq, 1000) *
Takashi Sakamoto998d6fb2017-03-08 17:47:02 +0900348 out_fmt->channels * (out_fmt->bit_depth >> 3) *
Subhransu S. Prustyf0c8e1d2016-04-12 10:31:23 +0530349 multiplier;
Jeeja KPf7590d42015-10-07 11:31:53 +0100350}
351
Senthilnathan Veppurdb2f5862017-02-09 16:44:01 +0530352static u8 skl_tplg_be_dev_type(int dev_type)
353{
354 int ret;
355
356 switch (dev_type) {
357 case SKL_DEVICE_BT:
358 ret = NHLT_DEVICE_BT;
359 break;
360
361 case SKL_DEVICE_DMIC:
362 ret = NHLT_DEVICE_DMIC;
363 break;
364
365 case SKL_DEVICE_I2S:
366 ret = NHLT_DEVICE_I2S;
367 break;
368
369 default:
370 ret = NHLT_DEVICE_INVALID;
371 break;
372 }
373
374 return ret;
375}
376
Jeeja KP2d1419a2016-02-05 12:19:10 +0530377static int skl_tplg_update_be_blob(struct snd_soc_dapm_widget *w,
378 struct skl_sst *ctx)
379{
380 struct skl_module_cfg *m_cfg = w->priv;
381 int link_type, dir;
382 u32 ch, s_freq, s_fmt;
383 struct nhlt_specific_cfg *cfg;
384 struct skl *skl = get_skl_ctx(ctx->dev);
Senthilnathan Veppurdb2f5862017-02-09 16:44:01 +0530385 u8 dev_type = skl_tplg_be_dev_type(m_cfg->dev_type);
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530386 int fmt_idx = m_cfg->fmt_idx;
387 struct skl_module_iface *m_iface = &m_cfg->module->formats[fmt_idx];
Jeeja KP2d1419a2016-02-05 12:19:10 +0530388
389 /* check if we already have blob */
390 if (m_cfg->formats_config.caps_size > 0)
391 return 0;
392
Jeeja KPc7c6c732016-03-01 07:59:10 +0530393 dev_dbg(ctx->dev, "Applying default cfg blob\n");
Jeeja KP2d1419a2016-02-05 12:19:10 +0530394 switch (m_cfg->dev_type) {
395 case SKL_DEVICE_DMIC:
396 link_type = NHLT_LINK_DMIC;
Jeeja KPc7c6c732016-03-01 07:59:10 +0530397 dir = SNDRV_PCM_STREAM_CAPTURE;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530398 s_freq = m_iface->inputs[0].fmt.s_freq;
399 s_fmt = m_iface->inputs[0].fmt.bit_depth;
400 ch = m_iface->inputs[0].fmt.channels;
Jeeja KP2d1419a2016-02-05 12:19:10 +0530401 break;
402
403 case SKL_DEVICE_I2S:
404 link_type = NHLT_LINK_SSP;
405 if (m_cfg->hw_conn_type == SKL_CONN_SOURCE) {
Jeeja KPc7c6c732016-03-01 07:59:10 +0530406 dir = SNDRV_PCM_STREAM_PLAYBACK;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530407 s_freq = m_iface->outputs[0].fmt.s_freq;
408 s_fmt = m_iface->outputs[0].fmt.bit_depth;
409 ch = m_iface->outputs[0].fmt.channels;
Jeeja KPc7c6c732016-03-01 07:59:10 +0530410 } else {
411 dir = SNDRV_PCM_STREAM_CAPTURE;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530412 s_freq = m_iface->inputs[0].fmt.s_freq;
413 s_fmt = m_iface->inputs[0].fmt.bit_depth;
414 ch = m_iface->inputs[0].fmt.channels;
Jeeja KP2d1419a2016-02-05 12:19:10 +0530415 }
416 break;
417
418 default:
419 return -EINVAL;
420 }
421
422 /* update the blob based on virtual bus_id and default params */
423 cfg = skl_get_ep_blob(skl, m_cfg->vbus_id, link_type,
Senthilnathan Veppurdb2f5862017-02-09 16:44:01 +0530424 s_fmt, ch, s_freq, dir, dev_type);
Jeeja KP2d1419a2016-02-05 12:19:10 +0530425 if (cfg) {
426 m_cfg->formats_config.caps_size = cfg->size;
427 m_cfg->formats_config.caps = (u32 *) &cfg->caps;
428 } else {
429 dev_err(ctx->dev, "Blob NULL for id %x type %d dirn %d\n",
430 m_cfg->vbus_id, link_type, dir);
431 dev_err(ctx->dev, "PCM: ch %d, freq %d, fmt %d\n",
432 ch, s_freq, s_fmt);
433 return -EIO;
434 }
435
436 return 0;
437}
438
Jeeja KPf7590d42015-10-07 11:31:53 +0100439static void skl_tplg_update_module_params(struct snd_soc_dapm_widget *w,
440 struct skl_sst *ctx)
441{
442 struct skl_module_cfg *m_cfg = w->priv;
443 struct skl_pipe_params *params = m_cfg->pipe->p_params;
444 int p_conn_type = m_cfg->pipe->conn_type;
445 bool is_fe;
446
447 if (!m_cfg->params_fixup)
448 return;
449
450 dev_dbg(ctx->dev, "Mconfig for widget=%s BEFORE updation\n",
451 w->name);
452
453 skl_dump_mconfig(ctx, m_cfg);
454
455 if (p_conn_type == SKL_PIPE_CONN_TYPE_FE)
456 is_fe = true;
457 else
458 is_fe = false;
459
460 skl_tplg_update_params_fixup(m_cfg, params, is_fe);
461 skl_tplg_update_buffer_size(ctx, m_cfg);
462
463 dev_dbg(ctx->dev, "Mconfig for widget=%s AFTER updation\n",
464 w->name);
465
466 skl_dump_mconfig(ctx, m_cfg);
467}
468
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100469/*
Jeeja KPabb74002015-11-28 15:01:49 +0530470 * some modules can have multiple params set from user control and
471 * need to be set after module is initialized. If set_param flag is
472 * set module params will be done after module is initialised.
473 */
474static int skl_tplg_set_module_params(struct snd_soc_dapm_widget *w,
475 struct skl_sst *ctx)
476{
477 int i, ret;
478 struct skl_module_cfg *mconfig = w->priv;
479 const struct snd_kcontrol_new *k;
480 struct soc_bytes_ext *sb;
481 struct skl_algo_data *bc;
482 struct skl_specific_cfg *sp_cfg;
483
484 if (mconfig->formats_config.caps_size > 0 &&
Jeeja KP4ced1822015-12-03 23:29:53 +0530485 mconfig->formats_config.set_params == SKL_PARAM_SET) {
Jeeja KPabb74002015-11-28 15:01:49 +0530486 sp_cfg = &mconfig->formats_config;
487 ret = skl_set_module_params(ctx, sp_cfg->caps,
488 sp_cfg->caps_size,
489 sp_cfg->param_id, mconfig);
490 if (ret < 0)
491 return ret;
492 }
493
494 for (i = 0; i < w->num_kcontrols; i++) {
495 k = &w->kcontrol_news[i];
496 if (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
497 sb = (void *) k->private_value;
498 bc = (struct skl_algo_data *)sb->dobj.private;
499
Jeeja KP4ced1822015-12-03 23:29:53 +0530500 if (bc->set_params == SKL_PARAM_SET) {
Jeeja KPabb74002015-11-28 15:01:49 +0530501 ret = skl_set_module_params(ctx,
Dharageswari R0d682102016-07-08 18:15:03 +0530502 (u32 *)bc->params, bc->size,
Jeeja KPabb74002015-11-28 15:01:49 +0530503 bc->param_id, mconfig);
504 if (ret < 0)
505 return ret;
506 }
507 }
508 }
509
510 return 0;
511}
512
513/*
514 * some module param can set from user control and this is required as
515 * when module is initailzed. if module param is required in init it is
516 * identifed by set_param flag. if set_param flag is not set, then this
517 * parameter needs to set as part of module init.
518 */
519static int skl_tplg_set_module_init_data(struct snd_soc_dapm_widget *w)
520{
521 const struct snd_kcontrol_new *k;
522 struct soc_bytes_ext *sb;
523 struct skl_algo_data *bc;
524 struct skl_module_cfg *mconfig = w->priv;
525 int i;
526
527 for (i = 0; i < w->num_kcontrols; i++) {
528 k = &w->kcontrol_news[i];
529 if (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
530 sb = (struct soc_bytes_ext *)k->private_value;
531 bc = (struct skl_algo_data *)sb->dobj.private;
532
Jeeja KP4ced1822015-12-03 23:29:53 +0530533 if (bc->set_params != SKL_PARAM_INIT)
Jeeja KPabb74002015-11-28 15:01:49 +0530534 continue;
535
Takashi Sakamotod1a6fe42017-02-24 11:48:41 +0900536 mconfig->formats_config.caps = (u32 *)bc->params;
Dharageswari R0d682102016-07-08 18:15:03 +0530537 mconfig->formats_config.caps_size = bc->size;
Jeeja KPabb74002015-11-28 15:01:49 +0530538
539 break;
540 }
541 }
542
543 return 0;
544}
545
Jeeja KPbb704a732016-12-08 13:41:14 +0530546static int skl_tplg_module_prepare(struct skl_sst *ctx, struct skl_pipe *pipe,
547 struct snd_soc_dapm_widget *w, struct skl_module_cfg *mcfg)
548{
549 switch (mcfg->dev_type) {
550 case SKL_DEVICE_HDAHOST:
551 return skl_pcm_host_dma_prepare(ctx->dev, pipe->p_params);
552
553 case SKL_DEVICE_HDALINK:
554 return skl_pcm_link_dma_prepare(ctx->dev, pipe->p_params);
555 }
556
557 return 0;
558}
559
Jeeja KPabb74002015-11-28 15:01:49 +0530560/*
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100561 * Inside a pipe instance, we can have various modules. These modules need
562 * to instantiated in DSP by invoking INIT_MODULE IPC, which is achieved by
563 * skl_init_module() routine, so invoke that for all modules in a pipeline
564 */
565static int
566skl_tplg_init_pipe_modules(struct skl *skl, struct skl_pipe *pipe)
567{
568 struct skl_pipe_module *w_module;
569 struct snd_soc_dapm_widget *w;
570 struct skl_module_cfg *mconfig;
571 struct skl_sst *ctx = skl->skl_sst;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530572 u8 cfg_idx;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100573 int ret = 0;
574
575 list_for_each_entry(w_module, &pipe->w_list, node) {
Jeeja KPb26199e2017-03-24 23:10:31 +0530576 uuid_le *uuid_mod;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100577 w = w_module->w;
578 mconfig = w->priv;
579
Vinod Koulb7c50552016-07-26 18:06:40 +0530580 /* check if module ids are populated */
581 if (mconfig->id.module_id < 0) {
Vinod Koula657ae72016-08-10 09:40:50 +0530582 dev_err(skl->skl_sst->dev,
583 "module %pUL id not populated\n",
584 (uuid_le *)mconfig->guid);
585 return -EIO;
Vinod Koulb7c50552016-07-26 18:06:40 +0530586 }
587
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530588 cfg_idx = mconfig->pipe->cur_config_idx;
589 mconfig->fmt_idx = mconfig->mod_cfg[cfg_idx].fmt_idx;
590 mconfig->res_idx = mconfig->mod_cfg[cfg_idx].res_idx;
591
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100592 /* check resource available */
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530593 if (!skl_is_pipe_mcps_avail(skl, mconfig))
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100594 return -ENOMEM;
595
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530596 if (mconfig->module->loadable && ctx->dsp->fw_ops.load_mod) {
Dharageswari R6c5768b2015-12-03 23:29:50 +0530597 ret = ctx->dsp->fw_ops.load_mod(ctx->dsp,
598 mconfig->id.module_id, mconfig->guid);
599 if (ret < 0)
600 return ret;
Jeeja KPd6436782016-03-28 22:11:30 +0530601
602 mconfig->m_state = SKL_MODULE_LOADED;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530603 }
604
Jeeja KPbb704a732016-12-08 13:41:14 +0530605 /* prepare the DMA if the module is gateway cpr */
606 ret = skl_tplg_module_prepare(ctx, pipe, w, mconfig);
607 if (ret < 0)
608 return ret;
609
Jeeja KP2d1419a2016-02-05 12:19:10 +0530610 /* update blob if blob is null for be with default value */
611 skl_tplg_update_be_blob(w, ctx);
612
Jeeja KPf7590d42015-10-07 11:31:53 +0100613 /*
614 * apply fix/conversion to module params based on
615 * FE/BE params
616 */
617 skl_tplg_update_module_params(w, ctx);
Jeeja KPb26199e2017-03-24 23:10:31 +0530618 uuid_mod = (uuid_le *)mconfig->guid;
619 mconfig->id.pvt_id = skl_get_pvt_id(ctx, uuid_mod,
620 mconfig->id.instance_id);
Dharageswari Ref2a3522016-09-22 14:00:38 +0530621 if (mconfig->id.pvt_id < 0)
622 return ret;
Jeeja KPabb74002015-11-28 15:01:49 +0530623 skl_tplg_set_module_init_data(w);
Pardha Saradhi K4147a6e2017-08-02 21:51:14 +0530624
625 ret = skl_dsp_get_core(ctx->dsp, mconfig->core_id);
626 if (ret < 0) {
627 dev_err(ctx->dev, "Failed to wake up core %d ret=%d\n",
628 mconfig->core_id, ret);
629 return ret;
630 }
631
Jeeja KP9939a9c2015-11-28 15:01:47 +0530632 ret = skl_init_module(ctx, mconfig);
Dharageswari Ref2a3522016-09-22 14:00:38 +0530633 if (ret < 0) {
Jeeja KPb26199e2017-03-24 23:10:31 +0530634 skl_put_pvt_id(ctx, uuid_mod, &mconfig->id.pvt_id);
Pardha Saradhi K4147a6e2017-08-02 21:51:14 +0530635 goto err;
Dharageswari Ref2a3522016-09-22 14:00:38 +0530636 }
Dharageswari R260eb732016-06-03 18:29:38 +0530637 skl_tplg_alloc_pipe_mcps(skl, mconfig);
Jeeja KPabb74002015-11-28 15:01:49 +0530638 ret = skl_tplg_set_module_params(w, ctx);
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100639 if (ret < 0)
Pardha Saradhi K4147a6e2017-08-02 21:51:14 +0530640 goto err;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100641 }
642
643 return 0;
Pardha Saradhi K4147a6e2017-08-02 21:51:14 +0530644err:
645 skl_dsp_put_core(ctx->dsp, mconfig->core_id);
646 return ret;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +0100647}
Vinod Kould93f8e52015-10-07 11:31:54 +0100648
Dharageswari R6c5768b2015-12-03 23:29:50 +0530649static int skl_tplg_unload_pipe_modules(struct skl_sst *ctx,
650 struct skl_pipe *pipe)
651{
Pardha Saradhi K4147a6e2017-08-02 21:51:14 +0530652 int ret = 0;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530653 struct skl_pipe_module *w_module = NULL;
654 struct skl_module_cfg *mconfig = NULL;
655
656 list_for_each_entry(w_module, &pipe->w_list, node) {
Jeeja KPb26199e2017-03-24 23:10:31 +0530657 uuid_le *uuid_mod;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530658 mconfig = w_module->w->priv;
Jeeja KPb26199e2017-03-24 23:10:31 +0530659 uuid_mod = (uuid_le *)mconfig->guid;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530660
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530661 if (mconfig->module->loadable && ctx->dsp->fw_ops.unload_mod &&
Dharageswari Rb0fab9c2016-08-24 18:03:16 +0530662 mconfig->m_state > SKL_MODULE_UNINIT) {
663 ret = ctx->dsp->fw_ops.unload_mod(ctx->dsp,
Dharageswari R6c5768b2015-12-03 23:29:50 +0530664 mconfig->id.module_id);
Dharageswari Rb0fab9c2016-08-24 18:03:16 +0530665 if (ret < 0)
666 return -EIO;
667 }
Jeeja KPb26199e2017-03-24 23:10:31 +0530668 skl_put_pvt_id(ctx, uuid_mod, &mconfig->id.pvt_id);
Pardha Saradhi K4147a6e2017-08-02 21:51:14 +0530669
670 ret = skl_dsp_put_core(ctx->dsp, mconfig->core_id);
671 if (ret < 0) {
672 /* don't return; continue with other modules */
673 dev_err(ctx->dev, "Failed to sleep core %d ret=%d\n",
674 mconfig->core_id, ret);
675 }
Dharageswari R6c5768b2015-12-03 23:29:50 +0530676 }
677
678 /* no modules to unload in this path, so return */
Pardha Saradhi K4147a6e2017-08-02 21:51:14 +0530679 return ret;
Dharageswari R6c5768b2015-12-03 23:29:50 +0530680}
681
Vinod Kould93f8e52015-10-07 11:31:54 +0100682/*
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530683 * Here, we select pipe format based on the pipe type and pipe
684 * direction to determine the current config index for the pipeline.
685 * The config index is then used to select proper module resources.
686 * Intermediate pipes currently have a fixed format hence we select the
687 * 0th configuratation by default for such pipes.
688 */
689static int
690skl_tplg_get_pipe_config(struct skl *skl, struct skl_module_cfg *mconfig)
691{
692 struct skl_sst *ctx = skl->skl_sst;
693 struct skl_pipe *pipe = mconfig->pipe;
694 struct skl_pipe_params *params = pipe->p_params;
695 struct skl_path_config *pconfig = &pipe->configs[0];
696 struct skl_pipe_fmt *fmt = NULL;
697 bool in_fmt = false;
698 int i;
699
700 if (pipe->nr_cfgs == 0) {
701 pipe->cur_config_idx = 0;
702 return 0;
703 }
704
705 if (pipe->conn_type == SKL_PIPE_CONN_TYPE_NONE) {
706 dev_dbg(ctx->dev, "No conn_type detected, take 0th config\n");
707 pipe->cur_config_idx = 0;
708 pipe->memory_pages = pconfig->mem_pages;
709
710 return 0;
711 }
712
713 if ((pipe->conn_type == SKL_PIPE_CONN_TYPE_FE &&
714 pipe->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
715 (pipe->conn_type == SKL_PIPE_CONN_TYPE_BE &&
716 pipe->direction == SNDRV_PCM_STREAM_CAPTURE))
717 in_fmt = true;
718
719 for (i = 0; i < pipe->nr_cfgs; i++) {
720 pconfig = &pipe->configs[i];
721 if (in_fmt)
722 fmt = &pconfig->in_fmt;
723 else
724 fmt = &pconfig->out_fmt;
725
726 if (CHECK_HW_PARAMS(params->ch, params->s_freq, params->s_fmt,
727 fmt->channels, fmt->freq, fmt->bps)) {
728 pipe->cur_config_idx = i;
729 pipe->memory_pages = pconfig->mem_pages;
730 dev_dbg(ctx->dev, "Using pipe config: %d\n", i);
731
732 return 0;
733 }
734 }
735
736 dev_err(ctx->dev, "Invalid pipe config: %d %d %d for pipe: %d\n",
737 params->ch, params->s_freq, params->s_fmt, pipe->ppl_id);
738 return -EINVAL;
739}
740
741/*
Vinod Kould93f8e52015-10-07 11:31:54 +0100742 * Mixer module represents a pipeline. So in the Pre-PMU event of mixer we
743 * need create the pipeline. So we do following:
744 * - check the resources
745 * - Create the pipeline
746 * - Initialize the modules in pipeline
747 * - finally bind all modules together
748 */
749static int skl_tplg_mixer_dapm_pre_pmu_event(struct snd_soc_dapm_widget *w,
750 struct skl *skl)
751{
752 int ret;
753 struct skl_module_cfg *mconfig = w->priv;
754 struct skl_pipe_module *w_module;
755 struct skl_pipe *s_pipe = mconfig->pipe;
Jeeja KPb8c722d2017-03-24 23:10:34 +0530756 struct skl_module_cfg *src_module = NULL, *dst_module, *module;
Vinod Kould93f8e52015-10-07 11:31:54 +0100757 struct skl_sst *ctx = skl->skl_sst;
Jeeja KPb8c722d2017-03-24 23:10:34 +0530758 struct skl_module_deferred_bind *modules;
Vinod Kould93f8e52015-10-07 11:31:54 +0100759
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530760 ret = skl_tplg_get_pipe_config(skl, mconfig);
761 if (ret < 0)
762 return ret;
763
Vinod Kould93f8e52015-10-07 11:31:54 +0100764 /* check resource available */
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530765 if (!skl_is_pipe_mcps_avail(skl, mconfig))
Vinod Kould93f8e52015-10-07 11:31:54 +0100766 return -EBUSY;
767
Dharageswari.R9ba8ffe2016-02-03 17:59:47 +0530768 if (!skl_is_pipe_mem_avail(skl, mconfig))
Vinod Kould93f8e52015-10-07 11:31:54 +0100769 return -ENOMEM;
770
771 /*
772 * Create a list of modules for pipe.
773 * This list contains modules from source to sink
774 */
775 ret = skl_create_pipeline(ctx, mconfig->pipe);
776 if (ret < 0)
777 return ret;
778
Dharageswari R260eb732016-06-03 18:29:38 +0530779 skl_tplg_alloc_pipe_mem(skl, mconfig);
780 skl_tplg_alloc_pipe_mcps(skl, mconfig);
Vinod Kould93f8e52015-10-07 11:31:54 +0100781
782 /* Init all pipe modules from source to sink */
783 ret = skl_tplg_init_pipe_modules(skl, s_pipe);
784 if (ret < 0)
785 return ret;
786
787 /* Bind modules from source to sink */
788 list_for_each_entry(w_module, &s_pipe->w_list, node) {
789 dst_module = w_module->w->priv;
790
791 if (src_module == NULL) {
792 src_module = dst_module;
793 continue;
794 }
795
796 ret = skl_bind_modules(ctx, src_module, dst_module);
797 if (ret < 0)
798 return ret;
799
800 src_module = dst_module;
801 }
802
Jeeja KPb8c722d2017-03-24 23:10:34 +0530803 /*
804 * When the destination module is initialized, check for these modules
805 * in deferred bind list. If found, bind them.
806 */
807 list_for_each_entry(w_module, &s_pipe->w_list, node) {
808 if (list_empty(&skl->bind_list))
809 break;
810
811 list_for_each_entry(modules, &skl->bind_list, node) {
812 module = w_module->w->priv;
813 if (modules->dst == module)
814 skl_bind_modules(ctx, modules->src,
815 modules->dst);
816 }
817 }
818
Vinod Kould93f8e52015-10-07 11:31:54 +0100819 return 0;
820}
821
Dharageswari Rbf3e5ef2017-03-13 22:11:32 +0530822static int skl_fill_sink_instance_id(struct skl_sst *ctx, u32 *params,
823 int size, struct skl_module_cfg *mcfg)
Dharageswari R5e8f0ee2016-09-22 14:00:40 +0530824{
Dharageswari R5e8f0ee2016-09-22 14:00:40 +0530825 int i, pvt_id;
826
Dharageswari Rbf3e5ef2017-03-13 22:11:32 +0530827 if (mcfg->m_type == SKL_MODULE_TYPE_KPB) {
828 struct skl_kpb_params *kpb_params =
829 (struct skl_kpb_params *)params;
830 struct skl_mod_inst_map *inst = kpb_params->map;
Dharageswari R5e8f0ee2016-09-22 14:00:40 +0530831
Dharageswari Rbf3e5ef2017-03-13 22:11:32 +0530832 for (i = 0; i < kpb_params->num_modules; i++) {
833 pvt_id = skl_get_pvt_instance_id_map(ctx, inst->mod_id,
834 inst->inst_id);
835 if (pvt_id < 0)
836 return -EINVAL;
837
838 inst->inst_id = pvt_id;
839 inst++;
840 }
Dharageswari R5e8f0ee2016-09-22 14:00:40 +0530841 }
Dharageswari Rbf3e5ef2017-03-13 22:11:32 +0530842
Dharageswari R5e8f0ee2016-09-22 14:00:40 +0530843 return 0;
844}
Jeeja KPcc6a4042016-02-05 12:19:08 +0530845/*
846 * Some modules require params to be set after the module is bound to
847 * all pins connected.
848 *
849 * The module provider initializes set_param flag for such modules and we
850 * send params after binding
851 */
852static int skl_tplg_set_module_bind_params(struct snd_soc_dapm_widget *w,
853 struct skl_module_cfg *mcfg, struct skl_sst *ctx)
854{
855 int i, ret;
856 struct skl_module_cfg *mconfig = w->priv;
857 const struct snd_kcontrol_new *k;
858 struct soc_bytes_ext *sb;
859 struct skl_algo_data *bc;
860 struct skl_specific_cfg *sp_cfg;
Dharageswari Rbf3e5ef2017-03-13 22:11:32 +0530861 u32 *params;
Jeeja KPcc6a4042016-02-05 12:19:08 +0530862
863 /*
864 * check all out/in pins are in bind state.
865 * if so set the module param
866 */
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530867 for (i = 0; i < mcfg->module->max_output_pins; i++) {
Jeeja KPcc6a4042016-02-05 12:19:08 +0530868 if (mcfg->m_out_pin[i].pin_state != SKL_PIN_BIND_DONE)
869 return 0;
870 }
871
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530872 for (i = 0; i < mcfg->module->max_input_pins; i++) {
Jeeja KPcc6a4042016-02-05 12:19:08 +0530873 if (mcfg->m_in_pin[i].pin_state != SKL_PIN_BIND_DONE)
874 return 0;
875 }
876
877 if (mconfig->formats_config.caps_size > 0 &&
878 mconfig->formats_config.set_params == SKL_PARAM_BIND) {
879 sp_cfg = &mconfig->formats_config;
880 ret = skl_set_module_params(ctx, sp_cfg->caps,
881 sp_cfg->caps_size,
882 sp_cfg->param_id, mconfig);
883 if (ret < 0)
884 return ret;
885 }
886
887 for (i = 0; i < w->num_kcontrols; i++) {
888 k = &w->kcontrol_news[i];
889 if (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
890 sb = (void *) k->private_value;
891 bc = (struct skl_algo_data *)sb->dobj.private;
892
893 if (bc->set_params == SKL_PARAM_BIND) {
Dharageswari Rbf3e5ef2017-03-13 22:11:32 +0530894 params = kzalloc(bc->max, GFP_KERNEL);
895 if (!params)
896 return -ENOMEM;
897
898 memcpy(params, bc->params, bc->max);
899 skl_fill_sink_instance_id(ctx, params, bc->max,
900 mconfig);
901
902 ret = skl_set_module_params(ctx, params,
903 bc->max, bc->param_id, mconfig);
904 kfree(params);
905
Jeeja KPcc6a4042016-02-05 12:19:08 +0530906 if (ret < 0)
907 return ret;
908 }
909 }
910 }
911
912 return 0;
913}
914
Jeeja KPb8c722d2017-03-24 23:10:34 +0530915
916static int skl_tplg_module_add_deferred_bind(struct skl *skl,
917 struct skl_module_cfg *src, struct skl_module_cfg *dst)
918{
919 struct skl_module_deferred_bind *m_list, *modules;
920 int i;
921
922 /* only supported for module with static pin connection */
Ramesh Babuf6fa56e2017-08-23 19:33:53 +0530923 for (i = 0; i < dst->module->max_input_pins; i++) {
Jeeja KPb8c722d2017-03-24 23:10:34 +0530924 struct skl_module_pin *pin = &dst->m_in_pin[i];
925
926 if (pin->is_dynamic)
927 continue;
928
929 if ((pin->id.module_id == src->id.module_id) &&
930 (pin->id.instance_id == src->id.instance_id)) {
931
932 if (!list_empty(&skl->bind_list)) {
933 list_for_each_entry(modules, &skl->bind_list, node) {
934 if (modules->src == src && modules->dst == dst)
935 return 0;
936 }
937 }
938
939 m_list = kzalloc(sizeof(*m_list), GFP_KERNEL);
940 if (!m_list)
941 return -ENOMEM;
942
943 m_list->src = src;
944 m_list->dst = dst;
945
946 list_add(&m_list->node, &skl->bind_list);
947 }
948 }
949
950 return 0;
951}
952
Jeeja KP8724ff12015-10-27 09:22:52 +0900953static int skl_tplg_bind_sinks(struct snd_soc_dapm_widget *w,
954 struct skl *skl,
Jeeja KP6bd4cf82016-02-03 17:59:51 +0530955 struct snd_soc_dapm_widget *src_w,
Jeeja KP8724ff12015-10-27 09:22:52 +0900956 struct skl_module_cfg *src_mconfig)
Vinod Kould93f8e52015-10-07 11:31:54 +0100957{
958 struct snd_soc_dapm_path *p;
Jeeja KP0ed95d72015-11-13 19:22:11 +0530959 struct snd_soc_dapm_widget *sink = NULL, *next_sink = NULL;
Jeeja KP8724ff12015-10-27 09:22:52 +0900960 struct skl_module_cfg *sink_mconfig;
Vinod Kould93f8e52015-10-07 11:31:54 +0100961 struct skl_sst *ctx = skl->skl_sst;
Jeeja KP8724ff12015-10-27 09:22:52 +0900962 int ret;
Vinod Kould93f8e52015-10-07 11:31:54 +0100963
Jeeja KP8724ff12015-10-27 09:22:52 +0900964 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Vinod Kould93f8e52015-10-07 11:31:54 +0100965 if (!p->connect)
966 continue;
967
968 dev_dbg(ctx->dev, "%s: src widget=%s\n", __func__, w->name);
969 dev_dbg(ctx->dev, "%s: sink widget=%s\n", __func__, p->sink->name);
970
Jeeja KP0ed95d72015-11-13 19:22:11 +0530971 next_sink = p->sink;
Jeeja KP6bd4cf82016-02-03 17:59:51 +0530972
973 if (!is_skl_dsp_widget_type(p->sink))
974 return skl_tplg_bind_sinks(p->sink, skl, src_w, src_mconfig);
975
Vinod Kould93f8e52015-10-07 11:31:54 +0100976 /*
977 * here we will check widgets in sink pipelines, so that
978 * can be any widgets type and we are only interested if
979 * they are ones used for SKL so check that first
980 */
981 if ((p->sink->priv != NULL) &&
982 is_skl_dsp_widget_type(p->sink)) {
983
984 sink = p->sink;
Vinod Kould93f8e52015-10-07 11:31:54 +0100985 sink_mconfig = sink->priv;
986
Jeeja KPb8c722d2017-03-24 23:10:34 +0530987 /*
988 * Modules other than PGA leaf can be connected
989 * directly or via switch to a module in another
990 * pipeline. EX: reference path
991 * when the path is enabled, the dst module that needs
992 * to be bound may not be initialized. if the module is
993 * not initialized, add these modules in the deferred
994 * bind list and when the dst module is initialised,
995 * bind this module to the dst_module in deferred list.
996 */
997 if (((src_mconfig->m_state == SKL_MODULE_INIT_DONE)
998 && (sink_mconfig->m_state == SKL_MODULE_UNINIT))) {
999
1000 ret = skl_tplg_module_add_deferred_bind(skl,
1001 src_mconfig, sink_mconfig);
1002
1003 if (ret < 0)
1004 return ret;
1005
1006 }
1007
1008
Jeeja KPcc6a4042016-02-05 12:19:08 +05301009 if (src_mconfig->m_state == SKL_MODULE_UNINIT ||
1010 sink_mconfig->m_state == SKL_MODULE_UNINIT)
1011 continue;
1012
Vinod Kould93f8e52015-10-07 11:31:54 +01001013 /* Bind source to sink, mixin is always source */
1014 ret = skl_bind_modules(ctx, src_mconfig, sink_mconfig);
1015 if (ret)
1016 return ret;
1017
Jeeja KPcc6a4042016-02-05 12:19:08 +05301018 /* set module params after bind */
1019 skl_tplg_set_module_bind_params(src_w, src_mconfig, ctx);
1020 skl_tplg_set_module_bind_params(sink, sink_mconfig, ctx);
1021
Vinod Kould93f8e52015-10-07 11:31:54 +01001022 /* Start sinks pipe first */
1023 if (sink_mconfig->pipe->state != SKL_PIPE_STARTED) {
Jeeja KPd1730c32015-10-27 09:22:53 +09001024 if (sink_mconfig->pipe->conn_type !=
1025 SKL_PIPE_CONN_TYPE_FE)
1026 ret = skl_run_pipe(ctx,
1027 sink_mconfig->pipe);
Vinod Kould93f8e52015-10-07 11:31:54 +01001028 if (ret)
1029 return ret;
1030 }
Vinod Kould93f8e52015-10-07 11:31:54 +01001031 }
1032 }
1033
guneshwor.o.singh@intel.com10a54392017-07-28 16:12:16 +05301034 if (!sink && next_sink)
Jeeja KP6bd4cf82016-02-03 17:59:51 +05301035 return skl_tplg_bind_sinks(next_sink, skl, src_w, src_mconfig);
Jeeja KP8724ff12015-10-27 09:22:52 +09001036
1037 return 0;
1038}
1039
Vinod Kould93f8e52015-10-07 11:31:54 +01001040/*
1041 * A PGA represents a module in a pipeline. So in the Pre-PMU event of PGA
1042 * we need to do following:
1043 * - Bind to sink pipeline
1044 * Since the sink pipes can be running and we don't get mixer event on
1045 * connect for already running mixer, we need to find the sink pipes
1046 * here and bind to them. This way dynamic connect works.
1047 * - Start sink pipeline, if not running
1048 * - Then run current pipe
1049 */
1050static int skl_tplg_pga_dapm_pre_pmu_event(struct snd_soc_dapm_widget *w,
Jeeja KP8724ff12015-10-27 09:22:52 +09001051 struct skl *skl)
Vinod Kould93f8e52015-10-07 11:31:54 +01001052{
Jeeja KP8724ff12015-10-27 09:22:52 +09001053 struct skl_module_cfg *src_mconfig;
Vinod Kould93f8e52015-10-07 11:31:54 +01001054 struct skl_sst *ctx = skl->skl_sst;
1055 int ret = 0;
1056
Jeeja KP8724ff12015-10-27 09:22:52 +09001057 src_mconfig = w->priv;
Vinod Kould93f8e52015-10-07 11:31:54 +01001058
1059 /*
1060 * find which sink it is connected to, bind with the sink,
1061 * if sink is not started, start sink pipe first, then start
1062 * this pipe
1063 */
Jeeja KP6bd4cf82016-02-03 17:59:51 +05301064 ret = skl_tplg_bind_sinks(w, skl, w, src_mconfig);
Vinod Kould93f8e52015-10-07 11:31:54 +01001065 if (ret)
1066 return ret;
1067
Vinod Kould93f8e52015-10-07 11:31:54 +01001068 /* Start source pipe last after starting all sinks */
Jeeja KPd1730c32015-10-27 09:22:53 +09001069 if (src_mconfig->pipe->conn_type != SKL_PIPE_CONN_TYPE_FE)
1070 return skl_run_pipe(ctx, src_mconfig->pipe);
Vinod Kould93f8e52015-10-07 11:31:54 +01001071
1072 return 0;
1073}
1074
Jeeja KP8724ff12015-10-27 09:22:52 +09001075static struct snd_soc_dapm_widget *skl_get_src_dsp_widget(
1076 struct snd_soc_dapm_widget *w, struct skl *skl)
1077{
1078 struct snd_soc_dapm_path *p;
1079 struct snd_soc_dapm_widget *src_w = NULL;
1080 struct skl_sst *ctx = skl->skl_sst;
1081
1082 snd_soc_dapm_widget_for_each_source_path(w, p) {
1083 src_w = p->source;
1084 if (!p->connect)
1085 continue;
1086
1087 dev_dbg(ctx->dev, "sink widget=%s\n", w->name);
1088 dev_dbg(ctx->dev, "src widget=%s\n", p->source->name);
1089
1090 /*
1091 * here we will check widgets in sink pipelines, so that can
1092 * be any widgets type and we are only interested if they are
1093 * ones used for SKL so check that first
1094 */
1095 if ((p->source->priv != NULL) &&
1096 is_skl_dsp_widget_type(p->source)) {
1097 return p->source;
1098 }
1099 }
1100
1101 if (src_w != NULL)
1102 return skl_get_src_dsp_widget(src_w, skl);
1103
1104 return NULL;
1105}
1106
Vinod Kould93f8e52015-10-07 11:31:54 +01001107/*
1108 * in the Post-PMU event of mixer we need to do following:
1109 * - Check if this pipe is running
1110 * - if not, then
1111 * - bind this pipeline to its source pipeline
1112 * if source pipe is already running, this means it is a dynamic
1113 * connection and we need to bind only to that pipe
1114 * - start this pipeline
1115 */
1116static int skl_tplg_mixer_dapm_post_pmu_event(struct snd_soc_dapm_widget *w,
1117 struct skl *skl)
1118{
1119 int ret = 0;
Vinod Kould93f8e52015-10-07 11:31:54 +01001120 struct snd_soc_dapm_widget *source, *sink;
1121 struct skl_module_cfg *src_mconfig, *sink_mconfig;
1122 struct skl_sst *ctx = skl->skl_sst;
1123 int src_pipe_started = 0;
1124
1125 sink = w;
1126 sink_mconfig = sink->priv;
1127
1128 /*
1129 * If source pipe is already started, that means source is driving
1130 * one more sink before this sink got connected, Since source is
1131 * started, bind this sink to source and start this pipe.
1132 */
Jeeja KP8724ff12015-10-27 09:22:52 +09001133 source = skl_get_src_dsp_widget(w, skl);
1134 if (source != NULL) {
1135 src_mconfig = source->priv;
1136 sink_mconfig = sink->priv;
1137 src_pipe_started = 1;
Vinod Kould93f8e52015-10-07 11:31:54 +01001138
1139 /*
Jeeja KP8724ff12015-10-27 09:22:52 +09001140 * check pipe state, then no need to bind or start the
1141 * pipe
Vinod Kould93f8e52015-10-07 11:31:54 +01001142 */
Jeeja KP8724ff12015-10-27 09:22:52 +09001143 if (src_mconfig->pipe->state != SKL_PIPE_STARTED)
1144 src_pipe_started = 0;
Vinod Kould93f8e52015-10-07 11:31:54 +01001145 }
1146
1147 if (src_pipe_started) {
1148 ret = skl_bind_modules(ctx, src_mconfig, sink_mconfig);
1149 if (ret)
1150 return ret;
1151
Jeeja KPcc6a4042016-02-05 12:19:08 +05301152 /* set module params after bind */
1153 skl_tplg_set_module_bind_params(source, src_mconfig, ctx);
1154 skl_tplg_set_module_bind_params(sink, sink_mconfig, ctx);
1155
Jeeja KPd1730c32015-10-27 09:22:53 +09001156 if (sink_mconfig->pipe->conn_type != SKL_PIPE_CONN_TYPE_FE)
1157 ret = skl_run_pipe(ctx, sink_mconfig->pipe);
Vinod Kould93f8e52015-10-07 11:31:54 +01001158 }
1159
1160 return ret;
1161}
1162
1163/*
1164 * in the Pre-PMD event of mixer we need to do following:
1165 * - Stop the pipe
1166 * - find the source connections and remove that from dapm_path_list
1167 * - unbind with source pipelines if still connected
1168 */
1169static int skl_tplg_mixer_dapm_pre_pmd_event(struct snd_soc_dapm_widget *w,
1170 struct skl *skl)
1171{
Vinod Kould93f8e52015-10-07 11:31:54 +01001172 struct skl_module_cfg *src_mconfig, *sink_mconfig;
Jeeja KPce1b5552015-10-27 09:22:51 +09001173 int ret = 0, i;
Vinod Kould93f8e52015-10-07 11:31:54 +01001174 struct skl_sst *ctx = skl->skl_sst;
1175
Jeeja KPce1b5552015-10-27 09:22:51 +09001176 sink_mconfig = w->priv;
Vinod Kould93f8e52015-10-07 11:31:54 +01001177
1178 /* Stop the pipe */
1179 ret = skl_stop_pipe(ctx, sink_mconfig->pipe);
1180 if (ret)
1181 return ret;
1182
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301183 for (i = 0; i < sink_mconfig->module->max_input_pins; i++) {
Jeeja KPce1b5552015-10-27 09:22:51 +09001184 if (sink_mconfig->m_in_pin[i].pin_state == SKL_PIN_BIND_DONE) {
1185 src_mconfig = sink_mconfig->m_in_pin[i].tgt_mcfg;
1186 if (!src_mconfig)
1187 continue;
Vinod Kould93f8e52015-10-07 11:31:54 +01001188
Jeeja KPce1b5552015-10-27 09:22:51 +09001189 ret = skl_unbind_modules(ctx,
1190 src_mconfig, sink_mconfig);
Vinod Kould93f8e52015-10-07 11:31:54 +01001191 }
1192 }
1193
Vinod Kould93f8e52015-10-07 11:31:54 +01001194 return ret;
1195}
1196
1197/*
1198 * in the Post-PMD event of mixer we need to do following:
1199 * - Free the mcps used
1200 * - Free the mem used
1201 * - Unbind the modules within the pipeline
1202 * - Delete the pipeline (modules are not required to be explicitly
1203 * deleted, pipeline delete is enough here
1204 */
1205static int skl_tplg_mixer_dapm_post_pmd_event(struct snd_soc_dapm_widget *w,
1206 struct skl *skl)
1207{
1208 struct skl_module_cfg *mconfig = w->priv;
1209 struct skl_pipe_module *w_module;
1210 struct skl_module_cfg *src_module = NULL, *dst_module;
1211 struct skl_sst *ctx = skl->skl_sst;
1212 struct skl_pipe *s_pipe = mconfig->pipe;
Dan Carpenter550b3492017-04-14 22:11:20 +03001213 struct skl_module_deferred_bind *modules, *tmp;
Vinod Kould93f8e52015-10-07 11:31:54 +01001214
Dharageswari R260eb732016-06-03 18:29:38 +05301215 if (s_pipe->state == SKL_PIPE_INVALID)
1216 return -EINVAL;
1217
Vinod Kould93f8e52015-10-07 11:31:54 +01001218 skl_tplg_free_pipe_mcps(skl, mconfig);
Vinod Koul65976872015-11-23 22:26:29 +05301219 skl_tplg_free_pipe_mem(skl, mconfig);
Vinod Kould93f8e52015-10-07 11:31:54 +01001220
1221 list_for_each_entry(w_module, &s_pipe->w_list, node) {
Jeeja KPb8c722d2017-03-24 23:10:34 +05301222 if (list_empty(&skl->bind_list))
1223 break;
1224
1225 src_module = w_module->w->priv;
1226
Dan Carpenter550b3492017-04-14 22:11:20 +03001227 list_for_each_entry_safe(modules, tmp, &skl->bind_list, node) {
Jeeja KPb8c722d2017-03-24 23:10:34 +05301228 /*
1229 * When the destination module is deleted, Unbind the
1230 * modules from deferred bind list.
1231 */
1232 if (modules->dst == src_module) {
1233 skl_unbind_modules(ctx, modules->src,
1234 modules->dst);
1235 }
1236
1237 /*
1238 * When the source module is deleted, remove this entry
1239 * from the deferred bind list.
1240 */
1241 if (modules->src == src_module) {
1242 list_del(&modules->node);
1243 modules->src = NULL;
1244 modules->dst = NULL;
1245 kfree(modules);
1246 }
1247 }
1248 }
1249
1250 list_for_each_entry(w_module, &s_pipe->w_list, node) {
Vinod Kould93f8e52015-10-07 11:31:54 +01001251 dst_module = w_module->w->priv;
1252
Dharageswari R260eb732016-06-03 18:29:38 +05301253 if (mconfig->m_state >= SKL_MODULE_INIT_DONE)
1254 skl_tplg_free_pipe_mcps(skl, dst_module);
Vinod Kould93f8e52015-10-07 11:31:54 +01001255 if (src_module == NULL) {
1256 src_module = dst_module;
1257 continue;
1258 }
1259
Guneshwor Singh7ca42f52016-02-03 17:59:46 +05301260 skl_unbind_modules(ctx, src_module, dst_module);
Vinod Kould93f8e52015-10-07 11:31:54 +01001261 src_module = dst_module;
1262 }
1263
Vinod Koul547cafa2016-12-08 23:01:24 +05301264 skl_delete_pipe(ctx, mconfig->pipe);
Vinod Kould93f8e52015-10-07 11:31:54 +01001265
Jeeja KP473a4d52017-03-24 23:10:33 +05301266 list_for_each_entry(w_module, &s_pipe->w_list, node) {
1267 src_module = w_module->w->priv;
1268 src_module->m_state = SKL_MODULE_UNINIT;
1269 }
1270
Dharageswari R6c5768b2015-12-03 23:29:50 +05301271 return skl_tplg_unload_pipe_modules(ctx, s_pipe);
Vinod Kould93f8e52015-10-07 11:31:54 +01001272}
1273
1274/*
1275 * in the Post-PMD event of PGA we need to do following:
1276 * - Free the mcps used
1277 * - Stop the pipeline
1278 * - In source pipe is connected, unbind with source pipelines
1279 */
1280static int skl_tplg_pga_dapm_post_pmd_event(struct snd_soc_dapm_widget *w,
1281 struct skl *skl)
1282{
Vinod Kould93f8e52015-10-07 11:31:54 +01001283 struct skl_module_cfg *src_mconfig, *sink_mconfig;
Jeeja KPce1b5552015-10-27 09:22:51 +09001284 int ret = 0, i;
Vinod Kould93f8e52015-10-07 11:31:54 +01001285 struct skl_sst *ctx = skl->skl_sst;
1286
Jeeja KPce1b5552015-10-27 09:22:51 +09001287 src_mconfig = w->priv;
Vinod Kould93f8e52015-10-07 11:31:54 +01001288
Vinod Kould93f8e52015-10-07 11:31:54 +01001289 /* Stop the pipe since this is a mixin module */
1290 ret = skl_stop_pipe(ctx, src_mconfig->pipe);
1291 if (ret)
1292 return ret;
1293
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301294 for (i = 0; i < src_mconfig->module->max_output_pins; i++) {
Jeeja KPce1b5552015-10-27 09:22:51 +09001295 if (src_mconfig->m_out_pin[i].pin_state == SKL_PIN_BIND_DONE) {
1296 sink_mconfig = src_mconfig->m_out_pin[i].tgt_mcfg;
1297 if (!sink_mconfig)
1298 continue;
1299 /*
1300 * This is a connecter and if path is found that means
1301 * unbind between source and sink has not happened yet
1302 */
Jeeja KPce1b5552015-10-27 09:22:51 +09001303 ret = skl_unbind_modules(ctx, src_mconfig,
1304 sink_mconfig);
Vinod Kould93f8e52015-10-07 11:31:54 +01001305 }
1306 }
1307
Vinod Kould93f8e52015-10-07 11:31:54 +01001308 return ret;
1309}
1310
1311/*
Vinod Kould93f8e52015-10-07 11:31:54 +01001312 * In modelling, we assume there will be ONLY one mixer in a pipeline. If a
1313 * second one is required that is created as another pipe entity.
1314 * The mixer is responsible for pipe management and represent a pipeline
1315 * instance
1316 */
1317static int skl_tplg_mixer_event(struct snd_soc_dapm_widget *w,
1318 struct snd_kcontrol *k, int event)
1319{
1320 struct snd_soc_dapm_context *dapm = w->dapm;
1321 struct skl *skl = get_skl_ctx(dapm->dev);
1322
1323 switch (event) {
1324 case SND_SOC_DAPM_PRE_PMU:
1325 return skl_tplg_mixer_dapm_pre_pmu_event(w, skl);
1326
1327 case SND_SOC_DAPM_POST_PMU:
1328 return skl_tplg_mixer_dapm_post_pmu_event(w, skl);
1329
1330 case SND_SOC_DAPM_PRE_PMD:
1331 return skl_tplg_mixer_dapm_pre_pmd_event(w, skl);
1332
1333 case SND_SOC_DAPM_POST_PMD:
1334 return skl_tplg_mixer_dapm_post_pmd_event(w, skl);
1335 }
1336
1337 return 0;
1338}
1339
1340/*
1341 * In modelling, we assumed rest of the modules in pipeline are PGA. But we
1342 * are interested in last PGA (leaf PGA) in a pipeline to disconnect with
1343 * the sink when it is running (two FE to one BE or one FE to two BE)
1344 * scenarios
1345 */
1346static int skl_tplg_pga_event(struct snd_soc_dapm_widget *w,
1347 struct snd_kcontrol *k, int event)
1348
1349{
1350 struct snd_soc_dapm_context *dapm = w->dapm;
1351 struct skl *skl = get_skl_ctx(dapm->dev);
1352
1353 switch (event) {
1354 case SND_SOC_DAPM_PRE_PMU:
1355 return skl_tplg_pga_dapm_pre_pmu_event(w, skl);
1356
1357 case SND_SOC_DAPM_POST_PMD:
1358 return skl_tplg_pga_dapm_post_pmd_event(w, skl);
1359 }
1360
1361 return 0;
1362}
Vinod Koulcfb0a872015-10-07 11:31:55 +01001363
Jeeja KP140adfb2015-11-28 15:01:50 +05301364static int skl_tplg_tlv_control_get(struct snd_kcontrol *kcontrol,
1365 unsigned int __user *data, unsigned int size)
1366{
1367 struct soc_bytes_ext *sb =
1368 (struct soc_bytes_ext *)kcontrol->private_value;
1369 struct skl_algo_data *bc = (struct skl_algo_data *)sb->dobj.private;
Omair M Abdullah7d9f2912015-12-03 23:29:56 +05301370 struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol);
1371 struct skl_module_cfg *mconfig = w->priv;
1372 struct skl *skl = get_skl_ctx(w->dapm->dev);
1373
1374 if (w->power)
1375 skl_get_module_params(skl->skl_sst, (u32 *)bc->params,
Dharageswari R0d682102016-07-08 18:15:03 +05301376 bc->size, bc->param_id, mconfig);
Jeeja KP140adfb2015-11-28 15:01:50 +05301377
Vinod Koul41556f62016-02-03 17:59:44 +05301378 /* decrement size for TLV header */
1379 size -= 2 * sizeof(u32);
1380
1381 /* check size as we don't want to send kernel data */
1382 if (size > bc->max)
1383 size = bc->max;
1384
Jeeja KP140adfb2015-11-28 15:01:50 +05301385 if (bc->params) {
1386 if (copy_to_user(data, &bc->param_id, sizeof(u32)))
1387 return -EFAULT;
Dan Carpentere8bc3c92015-12-08 08:53:22 +03001388 if (copy_to_user(data + 1, &size, sizeof(u32)))
Jeeja KP140adfb2015-11-28 15:01:50 +05301389 return -EFAULT;
Dan Carpentere8bc3c92015-12-08 08:53:22 +03001390 if (copy_to_user(data + 2, bc->params, size))
Jeeja KP140adfb2015-11-28 15:01:50 +05301391 return -EFAULT;
1392 }
1393
1394 return 0;
1395}
1396
1397#define SKL_PARAM_VENDOR_ID 0xff
1398
1399static int skl_tplg_tlv_control_set(struct snd_kcontrol *kcontrol,
1400 const unsigned int __user *data, unsigned int size)
1401{
1402 struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol);
1403 struct skl_module_cfg *mconfig = w->priv;
1404 struct soc_bytes_ext *sb =
1405 (struct soc_bytes_ext *)kcontrol->private_value;
1406 struct skl_algo_data *ac = (struct skl_algo_data *)sb->dobj.private;
1407 struct skl *skl = get_skl_ctx(w->dapm->dev);
1408
1409 if (ac->params) {
Dharageswari R0d682102016-07-08 18:15:03 +05301410 if (size > ac->max)
1411 return -EINVAL;
1412
1413 ac->size = size;
Jeeja KP140adfb2015-11-28 15:01:50 +05301414 /*
1415 * if the param_is is of type Vendor, firmware expects actual
1416 * parameter id and size from the control.
1417 */
1418 if (ac->param_id == SKL_PARAM_VENDOR_ID) {
1419 if (copy_from_user(ac->params, data, size))
1420 return -EFAULT;
1421 } else {
1422 if (copy_from_user(ac->params,
Alan65b4bcb2016-02-19 11:42:32 +05301423 data + 2, size))
Jeeja KP140adfb2015-11-28 15:01:50 +05301424 return -EFAULT;
1425 }
1426
1427 if (w->power)
1428 return skl_set_module_params(skl->skl_sst,
Dharageswari R0d682102016-07-08 18:15:03 +05301429 (u32 *)ac->params, ac->size,
Jeeja KP140adfb2015-11-28 15:01:50 +05301430 ac->param_id, mconfig);
1431 }
1432
1433 return 0;
1434}
1435
Dharageswari R7a1b7492017-05-31 10:30:25 +05301436static int skl_tplg_mic_control_get(struct snd_kcontrol *kcontrol,
1437 struct snd_ctl_elem_value *ucontrol)
1438{
1439 struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol);
1440 struct skl_module_cfg *mconfig = w->priv;
1441 struct soc_enum *ec = (struct soc_enum *)kcontrol->private_value;
1442 u32 ch_type = *((u32 *)ec->dobj.private);
1443
1444 if (mconfig->dmic_ch_type == ch_type)
1445 ucontrol->value.enumerated.item[0] =
1446 mconfig->dmic_ch_combo_index;
1447 else
1448 ucontrol->value.enumerated.item[0] = 0;
1449
1450 return 0;
1451}
1452
1453static int skl_fill_mic_sel_params(struct skl_module_cfg *mconfig,
1454 struct skl_mic_sel_config *mic_cfg, struct device *dev)
1455{
1456 struct skl_specific_cfg *sp_cfg = &mconfig->formats_config;
1457
1458 sp_cfg->caps_size = sizeof(struct skl_mic_sel_config);
1459 sp_cfg->set_params = SKL_PARAM_SET;
1460 sp_cfg->param_id = 0x00;
1461 if (!sp_cfg->caps) {
1462 sp_cfg->caps = devm_kzalloc(dev, sp_cfg->caps_size, GFP_KERNEL);
1463 if (!sp_cfg->caps)
1464 return -ENOMEM;
1465 }
1466
1467 mic_cfg->mic_switch = SKL_MIC_SEL_SWITCH;
1468 mic_cfg->flags = 0;
1469 memcpy(sp_cfg->caps, mic_cfg, sp_cfg->caps_size);
1470
1471 return 0;
1472}
1473
1474static int skl_tplg_mic_control_set(struct snd_kcontrol *kcontrol,
1475 struct snd_ctl_elem_value *ucontrol)
1476{
1477 struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol);
1478 struct skl_module_cfg *mconfig = w->priv;
1479 struct skl_mic_sel_config mic_cfg = {0};
1480 struct soc_enum *ec = (struct soc_enum *)kcontrol->private_value;
1481 u32 ch_type = *((u32 *)ec->dobj.private);
1482 const int *list;
1483 u8 in_ch, out_ch, index;
1484
1485 mconfig->dmic_ch_type = ch_type;
1486 mconfig->dmic_ch_combo_index = ucontrol->value.enumerated.item[0];
1487
1488 /* enum control index 0 is INVALID, so no channels to be set */
1489 if (mconfig->dmic_ch_combo_index == 0)
1490 return 0;
1491
1492 /* No valid channel selection map for index 0, so offset by 1 */
1493 index = mconfig->dmic_ch_combo_index - 1;
1494
1495 switch (ch_type) {
1496 case SKL_CH_MONO:
1497 if (mconfig->dmic_ch_combo_index > ARRAY_SIZE(mic_mono_list))
1498 return -EINVAL;
1499
1500 list = &mic_mono_list[index];
1501 break;
1502
1503 case SKL_CH_STEREO:
1504 if (mconfig->dmic_ch_combo_index > ARRAY_SIZE(mic_stereo_list))
1505 return -EINVAL;
1506
1507 list = mic_stereo_list[index];
1508 break;
1509
1510 case SKL_CH_TRIO:
1511 if (mconfig->dmic_ch_combo_index > ARRAY_SIZE(mic_trio_list))
1512 return -EINVAL;
1513
1514 list = mic_trio_list[index];
1515 break;
1516
1517 case SKL_CH_QUATRO:
1518 if (mconfig->dmic_ch_combo_index > ARRAY_SIZE(mic_quatro_list))
1519 return -EINVAL;
1520
1521 list = mic_quatro_list[index];
1522 break;
1523
1524 default:
1525 dev_err(w->dapm->dev,
1526 "Invalid channel %d for mic_select module\n",
1527 ch_type);
1528 return -EINVAL;
1529
1530 }
1531
1532 /* channel type enum map to number of chanels for that type */
1533 for (out_ch = 0; out_ch < ch_type; out_ch++) {
1534 in_ch = list[out_ch];
1535 mic_cfg.blob[out_ch][in_ch] = SKL_DEFAULT_MIC_SEL_GAIN;
1536 }
1537
1538 return skl_fill_mic_sel_params(mconfig, &mic_cfg, w->dapm->dev);
1539}
1540
Vinod Koulcfb0a872015-10-07 11:31:55 +01001541/*
Jeeja KP8871dcb2016-06-03 18:29:42 +05301542 * Fill the dma id for host and link. In case of passthrough
1543 * pipeline, this will both host and link in the same
1544 * pipeline, so need to copy the link and host based on dev_type
1545 */
1546static void skl_tplg_fill_dma_id(struct skl_module_cfg *mcfg,
1547 struct skl_pipe_params *params)
1548{
1549 struct skl_pipe *pipe = mcfg->pipe;
1550
1551 if (pipe->passthru) {
1552 switch (mcfg->dev_type) {
1553 case SKL_DEVICE_HDALINK:
1554 pipe->p_params->link_dma_id = params->link_dma_id;
Jeeja KP12c3be02016-12-08 13:41:12 +05301555 pipe->p_params->link_index = params->link_index;
Jeeja KP7f975a32017-03-24 23:10:25 +05301556 pipe->p_params->link_bps = params->link_bps;
Jeeja KP8871dcb2016-06-03 18:29:42 +05301557 break;
1558
1559 case SKL_DEVICE_HDAHOST:
1560 pipe->p_params->host_dma_id = params->host_dma_id;
Jeeja KP7f975a32017-03-24 23:10:25 +05301561 pipe->p_params->host_bps = params->host_bps;
Jeeja KP8871dcb2016-06-03 18:29:42 +05301562 break;
1563
1564 default:
1565 break;
1566 }
1567 pipe->p_params->s_fmt = params->s_fmt;
1568 pipe->p_params->ch = params->ch;
1569 pipe->p_params->s_freq = params->s_freq;
1570 pipe->p_params->stream = params->stream;
Jeeja KP12c3be02016-12-08 13:41:12 +05301571 pipe->p_params->format = params->format;
Jeeja KP8871dcb2016-06-03 18:29:42 +05301572
1573 } else {
1574 memcpy(pipe->p_params, params, sizeof(*params));
1575 }
1576}
1577
1578/*
Vinod Koulcfb0a872015-10-07 11:31:55 +01001579 * The FE params are passed by hw_params of the DAI.
1580 * On hw_params, the params are stored in Gateway module of the FE and we
1581 * need to calculate the format in DSP module configuration, that
1582 * conversion is done here
1583 */
1584int skl_tplg_update_pipe_params(struct device *dev,
1585 struct skl_module_cfg *mconfig,
1586 struct skl_pipe_params *params)
1587{
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301588 struct skl_module_res *res = &mconfig->module->resources[0];
1589 struct skl *skl = get_skl_ctx(dev);
Vinod Koulcfb0a872015-10-07 11:31:55 +01001590 struct skl_module_fmt *format = NULL;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301591 u8 cfg_idx = mconfig->pipe->cur_config_idx;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001592
Jeeja KP8871dcb2016-06-03 18:29:42 +05301593 skl_tplg_fill_dma_id(mconfig, params);
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301594 mconfig->fmt_idx = mconfig->mod_cfg[cfg_idx].fmt_idx;
1595 mconfig->res_idx = mconfig->mod_cfg[cfg_idx].res_idx;
1596
1597 if (skl->nr_modules)
1598 return 0;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001599
1600 if (params->stream == SNDRV_PCM_STREAM_PLAYBACK)
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301601 format = &mconfig->module->formats[0].inputs[0].fmt;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001602 else
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301603 format = &mconfig->module->formats[0].outputs[0].fmt;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001604
1605 /* set the hw_params */
1606 format->s_freq = params->s_freq;
1607 format->channels = params->ch;
1608 format->valid_bit_depth = skl_get_bit_depth(params->s_fmt);
1609
1610 /*
1611 * 16 bit is 16 bit container whereas 24 bit is in 32 bit
1612 * container so update bit depth accordingly
1613 */
1614 switch (format->valid_bit_depth) {
1615 case SKL_DEPTH_16BIT:
1616 format->bit_depth = format->valid_bit_depth;
1617 break;
1618
1619 case SKL_DEPTH_24BIT:
Jeeja KP6654f392015-10-27 09:22:46 +09001620 case SKL_DEPTH_32BIT:
Vinod Koulcfb0a872015-10-07 11:31:55 +01001621 format->bit_depth = SKL_DEPTH_32BIT;
1622 break;
1623
1624 default:
1625 dev_err(dev, "Invalid bit depth %x for pipe\n",
1626 format->valid_bit_depth);
1627 return -EINVAL;
1628 }
1629
1630 if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301631 res->ibs = (format->s_freq / 1000) *
Vinod Koulcfb0a872015-10-07 11:31:55 +01001632 (format->channels) *
1633 (format->bit_depth >> 3);
1634 } else {
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301635 res->obs = (format->s_freq / 1000) *
Vinod Koulcfb0a872015-10-07 11:31:55 +01001636 (format->channels) *
1637 (format->bit_depth >> 3);
1638 }
1639
1640 return 0;
1641}
1642
1643/*
1644 * Query the module config for the FE DAI
1645 * This is used to find the hw_params set for that DAI and apply to FE
1646 * pipeline
1647 */
1648struct skl_module_cfg *
1649skl_tplg_fe_get_cpr_module(struct snd_soc_dai *dai, int stream)
1650{
1651 struct snd_soc_dapm_widget *w;
1652 struct snd_soc_dapm_path *p = NULL;
1653
1654 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
1655 w = dai->playback_widget;
Subhransu S. Prustyf0900eb2015-10-22 23:22:36 +05301656 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Vinod Koulcfb0a872015-10-07 11:31:55 +01001657 if (p->connect && p->sink->power &&
Jeeja KPa28f51d2015-10-27 09:22:44 +09001658 !is_skl_dsp_widget_type(p->sink))
Vinod Koulcfb0a872015-10-07 11:31:55 +01001659 continue;
1660
1661 if (p->sink->priv) {
1662 dev_dbg(dai->dev, "set params for %s\n",
1663 p->sink->name);
1664 return p->sink->priv;
1665 }
1666 }
1667 } else {
1668 w = dai->capture_widget;
Subhransu S. Prustyf0900eb2015-10-22 23:22:36 +05301669 snd_soc_dapm_widget_for_each_source_path(w, p) {
Vinod Koulcfb0a872015-10-07 11:31:55 +01001670 if (p->connect && p->source->power &&
Jeeja KPa28f51d2015-10-27 09:22:44 +09001671 !is_skl_dsp_widget_type(p->source))
Vinod Koulcfb0a872015-10-07 11:31:55 +01001672 continue;
1673
1674 if (p->source->priv) {
1675 dev_dbg(dai->dev, "set params for %s\n",
1676 p->source->name);
1677 return p->source->priv;
1678 }
1679 }
1680 }
1681
1682 return NULL;
1683}
1684
Dharageswari.R718a42b2016-02-05 12:19:06 +05301685static struct skl_module_cfg *skl_get_mconfig_pb_cpr(
1686 struct snd_soc_dai *dai, struct snd_soc_dapm_widget *w)
1687{
1688 struct snd_soc_dapm_path *p;
1689 struct skl_module_cfg *mconfig = NULL;
1690
1691 snd_soc_dapm_widget_for_each_source_path(w, p) {
1692 if (w->endpoints[SND_SOC_DAPM_DIR_OUT] > 0) {
1693 if (p->connect &&
1694 (p->sink->id == snd_soc_dapm_aif_out) &&
1695 p->source->priv) {
1696 mconfig = p->source->priv;
1697 return mconfig;
1698 }
1699 mconfig = skl_get_mconfig_pb_cpr(dai, p->source);
1700 if (mconfig)
1701 return mconfig;
1702 }
1703 }
1704 return mconfig;
1705}
1706
1707static struct skl_module_cfg *skl_get_mconfig_cap_cpr(
1708 struct snd_soc_dai *dai, struct snd_soc_dapm_widget *w)
1709{
1710 struct snd_soc_dapm_path *p;
1711 struct skl_module_cfg *mconfig = NULL;
1712
1713 snd_soc_dapm_widget_for_each_sink_path(w, p) {
1714 if (w->endpoints[SND_SOC_DAPM_DIR_IN] > 0) {
1715 if (p->connect &&
1716 (p->source->id == snd_soc_dapm_aif_in) &&
1717 p->sink->priv) {
1718 mconfig = p->sink->priv;
1719 return mconfig;
1720 }
1721 mconfig = skl_get_mconfig_cap_cpr(dai, p->sink);
1722 if (mconfig)
1723 return mconfig;
1724 }
1725 }
1726 return mconfig;
1727}
1728
1729struct skl_module_cfg *
1730skl_tplg_be_get_cpr_module(struct snd_soc_dai *dai, int stream)
1731{
1732 struct snd_soc_dapm_widget *w;
1733 struct skl_module_cfg *mconfig;
1734
1735 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
1736 w = dai->playback_widget;
1737 mconfig = skl_get_mconfig_pb_cpr(dai, w);
1738 } else {
1739 w = dai->capture_widget;
1740 mconfig = skl_get_mconfig_cap_cpr(dai, w);
1741 }
1742 return mconfig;
1743}
1744
Vinod Koulcfb0a872015-10-07 11:31:55 +01001745static u8 skl_tplg_be_link_type(int dev_type)
1746{
1747 int ret;
1748
1749 switch (dev_type) {
1750 case SKL_DEVICE_BT:
1751 ret = NHLT_LINK_SSP;
1752 break;
1753
1754 case SKL_DEVICE_DMIC:
1755 ret = NHLT_LINK_DMIC;
1756 break;
1757
1758 case SKL_DEVICE_I2S:
1759 ret = NHLT_LINK_SSP;
1760 break;
1761
1762 case SKL_DEVICE_HDALINK:
1763 ret = NHLT_LINK_HDA;
1764 break;
1765
1766 default:
1767 ret = NHLT_LINK_INVALID;
1768 break;
1769 }
1770
1771 return ret;
1772}
1773
1774/*
1775 * Fill the BE gateway parameters
1776 * The BE gateway expects a blob of parameters which are kept in the ACPI
1777 * NHLT blob, so query the blob for interface type (i2s/pdm) and instance.
1778 * The port can have multiple settings so pick based on the PCM
1779 * parameters
1780 */
1781static int skl_tplg_be_fill_pipe_params(struct snd_soc_dai *dai,
1782 struct skl_module_cfg *mconfig,
1783 struct skl_pipe_params *params)
1784{
Vinod Koulcfb0a872015-10-07 11:31:55 +01001785 struct nhlt_specific_cfg *cfg;
1786 struct skl *skl = get_skl_ctx(dai->dev);
1787 int link_type = skl_tplg_be_link_type(mconfig->dev_type);
Senthilnathan Veppurdb2f5862017-02-09 16:44:01 +05301788 u8 dev_type = skl_tplg_be_dev_type(mconfig->dev_type);
Vinod Koulcfb0a872015-10-07 11:31:55 +01001789
Jeeja KP8871dcb2016-06-03 18:29:42 +05301790 skl_tplg_fill_dma_id(mconfig, params);
Vinod Koulcfb0a872015-10-07 11:31:55 +01001791
Jeeja KPb30c2752015-10-27 09:22:48 +09001792 if (link_type == NHLT_LINK_HDA)
1793 return 0;
1794
Vinod Koulcfb0a872015-10-07 11:31:55 +01001795 /* update the blob based on virtual bus_id*/
1796 cfg = skl_get_ep_blob(skl, mconfig->vbus_id, link_type,
1797 params->s_fmt, params->ch,
Senthilnathan Veppurdb2f5862017-02-09 16:44:01 +05301798 params->s_freq, params->stream,
1799 dev_type);
Vinod Koulcfb0a872015-10-07 11:31:55 +01001800 if (cfg) {
1801 mconfig->formats_config.caps_size = cfg->size;
Jeeja KPbc032812015-10-22 23:22:35 +05301802 mconfig->formats_config.caps = (u32 *) &cfg->caps;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001803 } else {
1804 dev_err(dai->dev, "Blob NULL for id %x type %d dirn %d\n",
1805 mconfig->vbus_id, link_type,
1806 params->stream);
1807 dev_err(dai->dev, "PCM: ch %d, freq %d, fmt %d\n",
1808 params->ch, params->s_freq, params->s_fmt);
1809 return -EINVAL;
1810 }
1811
1812 return 0;
1813}
1814
1815static int skl_tplg_be_set_src_pipe_params(struct snd_soc_dai *dai,
1816 struct snd_soc_dapm_widget *w,
1817 struct skl_pipe_params *params)
1818{
1819 struct snd_soc_dapm_path *p;
Subhransu S. Prusty4d8adccb2015-10-22 23:22:37 +05301820 int ret = -EIO;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001821
Subhransu S. Prustyf0900eb2015-10-22 23:22:36 +05301822 snd_soc_dapm_widget_for_each_source_path(w, p) {
Vinod Koulcfb0a872015-10-07 11:31:55 +01001823 if (p->connect && is_skl_dsp_widget_type(p->source) &&
1824 p->source->priv) {
1825
Jeeja KP9a03cb42015-10-27 09:22:54 +09001826 ret = skl_tplg_be_fill_pipe_params(dai,
1827 p->source->priv, params);
1828 if (ret < 0)
1829 return ret;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001830 } else {
Jeeja KP9a03cb42015-10-27 09:22:54 +09001831 ret = skl_tplg_be_set_src_pipe_params(dai,
1832 p->source, params);
Subhransu S. Prusty4d8adccb2015-10-22 23:22:37 +05301833 if (ret < 0)
1834 return ret;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001835 }
1836 }
1837
Subhransu S. Prusty4d8adccb2015-10-22 23:22:37 +05301838 return ret;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001839}
1840
1841static int skl_tplg_be_set_sink_pipe_params(struct snd_soc_dai *dai,
1842 struct snd_soc_dapm_widget *w, struct skl_pipe_params *params)
1843{
1844 struct snd_soc_dapm_path *p = NULL;
Subhransu S. Prusty4d8adccb2015-10-22 23:22:37 +05301845 int ret = -EIO;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001846
Subhransu S. Prustyf0900eb2015-10-22 23:22:36 +05301847 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Vinod Koulcfb0a872015-10-07 11:31:55 +01001848 if (p->connect && is_skl_dsp_widget_type(p->sink) &&
1849 p->sink->priv) {
1850
Jeeja KP9a03cb42015-10-27 09:22:54 +09001851 ret = skl_tplg_be_fill_pipe_params(dai,
1852 p->sink->priv, params);
1853 if (ret < 0)
1854 return ret;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001855 } else {
Subhransu S. Prusty4d8adccb2015-10-22 23:22:37 +05301856 ret = skl_tplg_be_set_sink_pipe_params(
Vinod Koulcfb0a872015-10-07 11:31:55 +01001857 dai, p->sink, params);
Subhransu S. Prusty4d8adccb2015-10-22 23:22:37 +05301858 if (ret < 0)
1859 return ret;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001860 }
1861 }
1862
Subhransu S. Prusty4d8adccb2015-10-22 23:22:37 +05301863 return ret;
Vinod Koulcfb0a872015-10-07 11:31:55 +01001864}
1865
1866/*
1867 * BE hw_params can be a source parameters (capture) or sink parameters
1868 * (playback). Based on sink and source we need to either find the source
1869 * list or the sink list and set the pipeline parameters
1870 */
1871int skl_tplg_be_update_params(struct snd_soc_dai *dai,
1872 struct skl_pipe_params *params)
1873{
1874 struct snd_soc_dapm_widget *w;
1875
1876 if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1877 w = dai->playback_widget;
1878
1879 return skl_tplg_be_set_src_pipe_params(dai, w, params);
1880
1881 } else {
1882 w = dai->capture_widget;
1883
1884 return skl_tplg_be_set_sink_pipe_params(dai, w, params);
1885 }
1886
1887 return 0;
1888}
Vinod Koul3af36702015-10-07 11:31:56 +01001889
1890static const struct snd_soc_tplg_widget_events skl_tplg_widget_ops[] = {
1891 {SKL_MIXER_EVENT, skl_tplg_mixer_event},
Vinod Koul9a1e3502017-03-24 23:10:29 +05301892 {SKL_VMIXER_EVENT, skl_tplg_mixer_event},
Vinod Koul3af36702015-10-07 11:31:56 +01001893 {SKL_PGA_EVENT, skl_tplg_pga_event},
1894};
1895
Jeeja KP140adfb2015-11-28 15:01:50 +05301896static const struct snd_soc_tplg_bytes_ext_ops skl_tlv_ops[] = {
1897 {SKL_CONTROL_TYPE_BYTE_TLV, skl_tplg_tlv_control_get,
1898 skl_tplg_tlv_control_set},
1899};
1900
Dharageswari R7a1b7492017-05-31 10:30:25 +05301901static const struct snd_soc_tplg_kcontrol_ops skl_tplg_kcontrol_ops[] = {
1902 {
1903 .id = SKL_CONTROL_TYPE_MIC_SELECT,
1904 .get = skl_tplg_mic_control_get,
1905 .put = skl_tplg_mic_control_set,
1906 },
1907};
1908
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301909static int skl_tplg_fill_pipe_cfg(struct device *dev,
1910 struct skl_pipe *pipe, u32 tkn,
1911 u32 tkn_val, int conf_idx, int dir)
1912{
1913 struct skl_pipe_fmt *fmt;
1914 struct skl_path_config *config;
1915
1916 switch (dir) {
1917 case SKL_DIR_IN:
1918 fmt = &pipe->configs[conf_idx].in_fmt;
1919 break;
1920
1921 case SKL_DIR_OUT:
1922 fmt = &pipe->configs[conf_idx].out_fmt;
1923 break;
1924
1925 default:
1926 dev_err(dev, "Invalid direction: %d\n", dir);
1927 return -EINVAL;
1928 }
1929
1930 config = &pipe->configs[conf_idx];
1931
1932 switch (tkn) {
1933 case SKL_TKN_U32_CFG_FREQ:
1934 fmt->freq = tkn_val;
1935 break;
1936
1937 case SKL_TKN_U8_CFG_CHAN:
1938 fmt->channels = tkn_val;
1939 break;
1940
1941 case SKL_TKN_U8_CFG_BPS:
1942 fmt->bps = tkn_val;
1943 break;
1944
1945 case SKL_TKN_U32_PATH_MEM_PGS:
1946 config->mem_pages = tkn_val;
1947 break;
1948
1949 default:
1950 dev_err(dev, "Invalid token config: %d\n", tkn);
1951 return -EINVAL;
1952 }
1953
1954 return 0;
1955}
1956
Shreyas NC6277e832016-08-12 12:29:51 +05301957static int skl_tplg_fill_pipe_tkn(struct device *dev,
1958 struct skl_pipe *pipe, u32 tkn,
1959 u32 tkn_val)
Vinod Koul3af36702015-10-07 11:31:56 +01001960{
Vinod Koul3af36702015-10-07 11:31:56 +01001961
Shreyas NC6277e832016-08-12 12:29:51 +05301962 switch (tkn) {
1963 case SKL_TKN_U32_PIPE_CONN_TYPE:
1964 pipe->conn_type = tkn_val;
1965 break;
1966
1967 case SKL_TKN_U32_PIPE_PRIORITY:
1968 pipe->pipe_priority = tkn_val;
1969 break;
1970
1971 case SKL_TKN_U32_PIPE_MEM_PGS:
1972 pipe->memory_pages = tkn_val;
1973 break;
1974
Vinod Koul8a0cb232016-11-03 17:07:18 +05301975 case SKL_TKN_U32_PMODE:
1976 pipe->lp_mode = tkn_val;
1977 break;
1978
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05301979 case SKL_TKN_U32_PIPE_DIRECTION:
1980 pipe->direction = tkn_val;
1981 break;
1982
1983 case SKL_TKN_U32_NUM_CONFIGS:
1984 pipe->nr_cfgs = tkn_val;
1985 break;
1986
Shreyas NC6277e832016-08-12 12:29:51 +05301987 default:
1988 dev_err(dev, "Token not handled %d\n", tkn);
1989 return -EINVAL;
Vinod Koul3af36702015-10-07 11:31:56 +01001990 }
Shreyas NC6277e832016-08-12 12:29:51 +05301991
1992 return 0;
Vinod Koul3af36702015-10-07 11:31:56 +01001993}
1994
1995/*
Shreyas NC6277e832016-08-12 12:29:51 +05301996 * Add pipeline by parsing the relevant tokens
1997 * Return an existing pipe if the pipe already exists.
Vinod Koul3af36702015-10-07 11:31:56 +01001998 */
Shreyas NC6277e832016-08-12 12:29:51 +05301999static int skl_tplg_add_pipe(struct device *dev,
2000 struct skl_module_cfg *mconfig, struct skl *skl,
2001 struct snd_soc_tplg_vendor_value_elem *tkn_elem)
Vinod Koul3af36702015-10-07 11:31:56 +01002002{
2003 struct skl_pipeline *ppl;
2004 struct skl_pipe *pipe;
2005 struct skl_pipe_params *params;
2006
2007 list_for_each_entry(ppl, &skl->ppl_list, node) {
Shreyas NC6277e832016-08-12 12:29:51 +05302008 if (ppl->pipe->ppl_id == tkn_elem->value) {
2009 mconfig->pipe = ppl->pipe;
Guneshwor Singh081dc8a2017-04-27 12:21:22 +05302010 return -EEXIST;
Shreyas NC6277e832016-08-12 12:29:51 +05302011 }
Vinod Koul3af36702015-10-07 11:31:56 +01002012 }
2013
2014 ppl = devm_kzalloc(dev, sizeof(*ppl), GFP_KERNEL);
2015 if (!ppl)
Shreyas NC6277e832016-08-12 12:29:51 +05302016 return -ENOMEM;
Vinod Koul3af36702015-10-07 11:31:56 +01002017
2018 pipe = devm_kzalloc(dev, sizeof(*pipe), GFP_KERNEL);
2019 if (!pipe)
Shreyas NC6277e832016-08-12 12:29:51 +05302020 return -ENOMEM;
Vinod Koul3af36702015-10-07 11:31:56 +01002021
2022 params = devm_kzalloc(dev, sizeof(*params), GFP_KERNEL);
2023 if (!params)
Shreyas NC6277e832016-08-12 12:29:51 +05302024 return -ENOMEM;
Vinod Koul3af36702015-10-07 11:31:56 +01002025
Vinod Koul3af36702015-10-07 11:31:56 +01002026 pipe->p_params = params;
Shreyas NC6277e832016-08-12 12:29:51 +05302027 pipe->ppl_id = tkn_elem->value;
Vinod Koul3af36702015-10-07 11:31:56 +01002028 INIT_LIST_HEAD(&pipe->w_list);
2029
2030 ppl->pipe = pipe;
2031 list_add(&ppl->node, &skl->ppl_list);
2032
Shreyas NC6277e832016-08-12 12:29:51 +05302033 mconfig->pipe = pipe;
2034 mconfig->pipe->state = SKL_PIPE_INVALID;
2035
2036 return 0;
Vinod Koul3af36702015-10-07 11:31:56 +01002037}
2038
Shreyas NC6277e832016-08-12 12:29:51 +05302039static int skl_tplg_fill_pin(struct device *dev, u32 tkn,
2040 struct skl_module_pin *m_pin,
2041 int pin_index, u32 value)
2042{
2043 switch (tkn) {
2044 case SKL_TKN_U32_PIN_MOD_ID:
2045 m_pin[pin_index].id.module_id = value;
2046 break;
2047
2048 case SKL_TKN_U32_PIN_INST_ID:
2049 m_pin[pin_index].id.instance_id = value;
2050 break;
2051
2052 default:
2053 dev_err(dev, "%d Not a pin token\n", value);
2054 return -EINVAL;
2055 }
2056
2057 return 0;
2058}
2059
2060/*
2061 * Parse for pin config specific tokens to fill up the
2062 * module private data
2063 */
2064static int skl_tplg_fill_pins_info(struct device *dev,
2065 struct skl_module_cfg *mconfig,
2066 struct snd_soc_tplg_vendor_value_elem *tkn_elem,
2067 int dir, int pin_count)
2068{
2069 int ret;
2070 struct skl_module_pin *m_pin;
2071
2072 switch (dir) {
2073 case SKL_DIR_IN:
2074 m_pin = mconfig->m_in_pin;
2075 break;
2076
2077 case SKL_DIR_OUT:
2078 m_pin = mconfig->m_out_pin;
2079 break;
2080
2081 default:
Colin Ian Kingecd286a2016-09-16 18:51:21 +01002082 dev_err(dev, "Invalid direction value\n");
Shreyas NC6277e832016-08-12 12:29:51 +05302083 return -EINVAL;
2084 }
2085
2086 ret = skl_tplg_fill_pin(dev, tkn_elem->token,
2087 m_pin, pin_count, tkn_elem->value);
2088
2089 if (ret < 0)
2090 return ret;
2091
2092 m_pin[pin_count].in_use = false;
2093 m_pin[pin_count].pin_state = SKL_PIN_UNBIND;
2094
2095 return 0;
2096}
2097
2098/*
2099 * Fill up input/output module config format based
2100 * on the direction
2101 */
2102static int skl_tplg_fill_fmt(struct device *dev,
Shreyas NCca312fd2017-08-23 19:33:50 +05302103 struct skl_module_fmt *dst_fmt,
2104 u32 tkn, u32 value)
Shreyas NC6277e832016-08-12 12:29:51 +05302105{
Shreyas NC6277e832016-08-12 12:29:51 +05302106 switch (tkn) {
2107 case SKL_TKN_U32_FMT_CH:
2108 dst_fmt->channels = value;
2109 break;
2110
2111 case SKL_TKN_U32_FMT_FREQ:
2112 dst_fmt->s_freq = value;
2113 break;
2114
2115 case SKL_TKN_U32_FMT_BIT_DEPTH:
2116 dst_fmt->bit_depth = value;
2117 break;
2118
2119 case SKL_TKN_U32_FMT_SAMPLE_SIZE:
2120 dst_fmt->valid_bit_depth = value;
2121 break;
2122
2123 case SKL_TKN_U32_FMT_CH_CONFIG:
2124 dst_fmt->ch_cfg = value;
2125 break;
2126
2127 case SKL_TKN_U32_FMT_INTERLEAVE:
2128 dst_fmt->interleaving_style = value;
2129 break;
2130
2131 case SKL_TKN_U32_FMT_SAMPLE_TYPE:
2132 dst_fmt->sample_type = value;
2133 break;
2134
2135 case SKL_TKN_U32_FMT_CH_MAP:
2136 dst_fmt->ch_map = value;
2137 break;
2138
2139 default:
Colin Ian Kingecd286a2016-09-16 18:51:21 +01002140 dev_err(dev, "Invalid token %d\n", tkn);
Shreyas NC6277e832016-08-12 12:29:51 +05302141 return -EINVAL;
2142 }
2143
2144 return 0;
2145}
2146
Shreyas NCca312fd2017-08-23 19:33:50 +05302147static int skl_tplg_widget_fill_fmt(struct device *dev,
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302148 struct skl_module_iface *fmt,
Shreyas NCca312fd2017-08-23 19:33:50 +05302149 u32 tkn, u32 val, u32 dir, int fmt_idx)
2150{
2151 struct skl_module_fmt *dst_fmt;
2152
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302153 if (!fmt)
2154 return -EINVAL;
2155
Shreyas NCca312fd2017-08-23 19:33:50 +05302156 switch (dir) {
2157 case SKL_DIR_IN:
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302158 dst_fmt = &fmt->inputs[fmt_idx].fmt;
Shreyas NCca312fd2017-08-23 19:33:50 +05302159 break;
2160
2161 case SKL_DIR_OUT:
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302162 dst_fmt = &fmt->outputs[fmt_idx].fmt;
Shreyas NCca312fd2017-08-23 19:33:50 +05302163 break;
2164
2165 default:
2166 dev_err(dev, "Invalid direction: %d\n", dir);
2167 return -EINVAL;
2168 }
2169
2170 return skl_tplg_fill_fmt(dev, dst_fmt, tkn, val);
2171}
2172
Shreyas NC6277e832016-08-12 12:29:51 +05302173static int skl_tplg_get_uuid(struct device *dev, struct skl_module_cfg *mconfig,
2174 struct snd_soc_tplg_vendor_uuid_elem *uuid_tkn)
2175{
2176 if (uuid_tkn->token == SKL_TKN_UUID)
2177 memcpy(&mconfig->guid, &uuid_tkn->uuid, 16);
2178 else {
Colin Ian Kingecd286a2016-09-16 18:51:21 +01002179 dev_err(dev, "Not an UUID token tkn %d\n", uuid_tkn->token);
Shreyas NC6277e832016-08-12 12:29:51 +05302180 return -EINVAL;
2181 }
2182
2183 return 0;
2184}
2185
2186static void skl_tplg_fill_pin_dynamic_val(
2187 struct skl_module_pin *mpin, u32 pin_count, u32 value)
Hardik T Shah4cd98992015-10-27 09:22:55 +09002188{
2189 int i;
2190
Shreyas NC6277e832016-08-12 12:29:51 +05302191 for (i = 0; i < pin_count; i++)
2192 mpin[i].is_dynamic = value;
2193}
2194
2195/*
Shreyas NCdb6ed552017-08-23 19:33:52 +05302196 * Resource table in the manifest has pin specific resources
2197 * like pin and pin buffer size
2198 */
2199static int skl_tplg_manifest_pin_res_tkn(struct device *dev,
2200 struct snd_soc_tplg_vendor_value_elem *tkn_elem,
2201 struct skl_module_res *res, int pin_idx, int dir)
2202{
2203 struct skl_module_pin_resources *m_pin;
2204
2205 switch (dir) {
2206 case SKL_DIR_IN:
2207 m_pin = &res->input[pin_idx];
2208 break;
2209
2210 case SKL_DIR_OUT:
2211 m_pin = &res->output[pin_idx];
2212 break;
2213
2214 default:
2215 dev_err(dev, "Invalid pin direction: %d\n", dir);
2216 return -EINVAL;
2217 }
2218
2219 switch (tkn_elem->token) {
2220 case SKL_TKN_MM_U32_RES_PIN_ID:
2221 m_pin->pin_index = tkn_elem->value;
2222 break;
2223
2224 case SKL_TKN_MM_U32_PIN_BUF:
2225 m_pin->buf_size = tkn_elem->value;
2226 break;
2227
2228 default:
2229 dev_err(dev, "Invalid token: %d\n", tkn_elem->token);
2230 return -EINVAL;
2231 }
2232
2233 return 0;
2234}
2235
2236/*
2237 * Fill module specific resources from the manifest's resource
2238 * table like CPS, DMA size, mem_pages.
2239 */
2240static int skl_tplg_fill_res_tkn(struct device *dev,
2241 struct snd_soc_tplg_vendor_value_elem *tkn_elem,
2242 struct skl_module_res *res,
2243 int pin_idx, int dir)
2244{
2245 int ret, tkn_count = 0;
2246
2247 if (!res)
2248 return -EINVAL;
2249
2250 switch (tkn_elem->token) {
2251 case SKL_TKN_MM_U32_CPS:
2252 res->cps = tkn_elem->value;
2253 break;
2254
2255 case SKL_TKN_MM_U32_DMA_SIZE:
2256 res->dma_buffer_size = tkn_elem->value;
2257 break;
2258
2259 case SKL_TKN_MM_U32_CPC:
2260 res->cpc = tkn_elem->value;
2261 break;
2262
2263 case SKL_TKN_U32_MEM_PAGES:
2264 res->is_pages = tkn_elem->value;
2265 break;
2266
2267 case SKL_TKN_U32_OBS:
2268 res->obs = tkn_elem->value;
2269 break;
2270
2271 case SKL_TKN_U32_IBS:
2272 res->ibs = tkn_elem->value;
2273 break;
2274
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302275 case SKL_TKN_U32_MAX_MCPS:
2276 res->cps = tkn_elem->value;
2277 break;
2278
Shreyas NCdb6ed552017-08-23 19:33:52 +05302279 case SKL_TKN_MM_U32_RES_PIN_ID:
2280 case SKL_TKN_MM_U32_PIN_BUF:
2281 ret = skl_tplg_manifest_pin_res_tkn(dev, tkn_elem, res,
2282 pin_idx, dir);
2283 if (ret < 0)
2284 return ret;
2285 break;
2286
2287 default:
2288 dev_err(dev, "Not a res type token: %d", tkn_elem->token);
2289 return -EINVAL;
2290
2291 }
2292 tkn_count++;
2293
2294 return tkn_count;
2295}
2296
2297/*
Shreyas NC6277e832016-08-12 12:29:51 +05302298 * Parse tokens to fill up the module private data
2299 */
2300static int skl_tplg_get_token(struct device *dev,
2301 struct snd_soc_tplg_vendor_value_elem *tkn_elem,
2302 struct skl *skl, struct skl_module_cfg *mconfig)
2303{
2304 int tkn_count = 0;
2305 int ret;
2306 static int is_pipe_exists;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302307 static int pin_index, dir, conf_idx;
2308 struct skl_module_iface *iface = NULL;
2309 struct skl_module_res *res = NULL;
2310 int res_idx = mconfig->res_idx;
2311 int fmt_idx = mconfig->fmt_idx;
2312
2313 /*
2314 * If the manifest structure contains no modules, fill all
2315 * the module data to 0th index.
2316 * res_idx and fmt_idx are default set to 0.
2317 */
2318 if (skl->nr_modules == 0) {
2319 res = &mconfig->module->resources[res_idx];
2320 iface = &mconfig->module->formats[fmt_idx];
2321 }
Shreyas NC6277e832016-08-12 12:29:51 +05302322
2323 if (tkn_elem->token > SKL_TKN_MAX)
2324 return -EINVAL;
2325
2326 switch (tkn_elem->token) {
2327 case SKL_TKN_U8_IN_QUEUE_COUNT:
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302328 mconfig->module->max_input_pins = tkn_elem->value;
Shreyas NC6277e832016-08-12 12:29:51 +05302329 break;
2330
2331 case SKL_TKN_U8_OUT_QUEUE_COUNT:
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302332 mconfig->module->max_output_pins = tkn_elem->value;
Shreyas NC6277e832016-08-12 12:29:51 +05302333 break;
2334
2335 case SKL_TKN_U8_DYN_IN_PIN:
2336 if (!mconfig->m_in_pin)
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302337 mconfig->m_in_pin = devm_kzalloc(dev, MAX_IN_QUEUE *
2338 sizeof(*mconfig->m_in_pin), GFP_KERNEL);
2339 if (!mconfig->m_in_pin)
Shreyas NC6277e832016-08-12 12:29:51 +05302340 return -ENOMEM;
2341
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302342 skl_tplg_fill_pin_dynamic_val(mconfig->m_in_pin, MAX_IN_QUEUE,
2343 tkn_elem->value);
Shreyas NC6277e832016-08-12 12:29:51 +05302344 break;
2345
2346 case SKL_TKN_U8_DYN_OUT_PIN:
2347 if (!mconfig->m_out_pin)
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302348 mconfig->m_out_pin = devm_kzalloc(dev, MAX_IN_QUEUE *
2349 sizeof(*mconfig->m_in_pin), GFP_KERNEL);
2350 if (!mconfig->m_out_pin)
Shreyas NC6277e832016-08-12 12:29:51 +05302351 return -ENOMEM;
2352
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302353 skl_tplg_fill_pin_dynamic_val(mconfig->m_out_pin, MAX_OUT_QUEUE,
2354 tkn_elem->value);
Shreyas NC6277e832016-08-12 12:29:51 +05302355 break;
2356
2357 case SKL_TKN_U8_TIME_SLOT:
2358 mconfig->time_slot = tkn_elem->value;
2359 break;
2360
2361 case SKL_TKN_U8_CORE_ID:
2362 mconfig->core_id = tkn_elem->value;
2363
2364 case SKL_TKN_U8_MOD_TYPE:
2365 mconfig->m_type = tkn_elem->value;
2366 break;
2367
2368 case SKL_TKN_U8_DEV_TYPE:
2369 mconfig->dev_type = tkn_elem->value;
2370 break;
2371
2372 case SKL_TKN_U8_HW_CONN_TYPE:
2373 mconfig->hw_conn_type = tkn_elem->value;
2374 break;
2375
2376 case SKL_TKN_U16_MOD_INST_ID:
2377 mconfig->id.instance_id =
2378 tkn_elem->value;
2379 break;
2380
2381 case SKL_TKN_U32_MEM_PAGES:
Shreyas NC6277e832016-08-12 12:29:51 +05302382 case SKL_TKN_U32_MAX_MCPS:
Shreyas NC6277e832016-08-12 12:29:51 +05302383 case SKL_TKN_U32_OBS:
Shreyas NC6277e832016-08-12 12:29:51 +05302384 case SKL_TKN_U32_IBS:
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302385 ret = skl_tplg_fill_res_tkn(dev, tkn_elem, res, dir, pin_index);
2386 if (ret < 0)
2387 return ret;
2388
Shreyas NC6277e832016-08-12 12:29:51 +05302389 break;
2390
2391 case SKL_TKN_U32_VBUS_ID:
2392 mconfig->vbus_id = tkn_elem->value;
2393 break;
2394
2395 case SKL_TKN_U32_PARAMS_FIXUP:
2396 mconfig->params_fixup = tkn_elem->value;
2397 break;
2398
2399 case SKL_TKN_U32_CONVERTER:
2400 mconfig->converter = tkn_elem->value;
2401 break;
2402
Subhransu S. Prustyc0116be2017-05-04 14:09:11 +05302403 case SKL_TKN_U32_D0I3_CAPS:
Vinod Koul6bd9dcf2016-11-03 17:07:19 +05302404 mconfig->d0i3_caps = tkn_elem->value;
2405 break;
2406
Shreyas NC6277e832016-08-12 12:29:51 +05302407 case SKL_TKN_U32_PIPE_ID:
2408 ret = skl_tplg_add_pipe(dev,
2409 mconfig, skl, tkn_elem);
2410
Guneshwor Singh081dc8a2017-04-27 12:21:22 +05302411 if (ret < 0) {
2412 if (ret == -EEXIST) {
2413 is_pipe_exists = 1;
2414 break;
2415 }
Shreyas NC6277e832016-08-12 12:29:51 +05302416 return is_pipe_exists;
Guneshwor Singh081dc8a2017-04-27 12:21:22 +05302417 }
Shreyas NC6277e832016-08-12 12:29:51 +05302418
2419 break;
2420
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302421 case SKL_TKN_U32_PIPE_CONFIG_ID:
2422 conf_idx = tkn_elem->value;
2423 break;
2424
Shreyas NC6277e832016-08-12 12:29:51 +05302425 case SKL_TKN_U32_PIPE_CONN_TYPE:
2426 case SKL_TKN_U32_PIPE_PRIORITY:
2427 case SKL_TKN_U32_PIPE_MEM_PGS:
Vinod Koul8a0cb232016-11-03 17:07:18 +05302428 case SKL_TKN_U32_PMODE:
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302429 case SKL_TKN_U32_PIPE_DIRECTION:
2430 case SKL_TKN_U32_NUM_CONFIGS:
Shreyas NC6277e832016-08-12 12:29:51 +05302431 if (is_pipe_exists) {
2432 ret = skl_tplg_fill_pipe_tkn(dev, mconfig->pipe,
2433 tkn_elem->token, tkn_elem->value);
2434 if (ret < 0)
2435 return ret;
2436 }
2437
2438 break;
2439
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302440 case SKL_TKN_U32_PATH_MEM_PGS:
2441 case SKL_TKN_U32_CFG_FREQ:
2442 case SKL_TKN_U8_CFG_CHAN:
2443 case SKL_TKN_U8_CFG_BPS:
2444 if (mconfig->pipe->nr_cfgs) {
2445 ret = skl_tplg_fill_pipe_cfg(dev, mconfig->pipe,
2446 tkn_elem->token, tkn_elem->value,
2447 conf_idx, dir);
2448 if (ret < 0)
2449 return ret;
2450 }
2451 break;
2452
2453 case SKL_TKN_CFG_MOD_RES_ID:
2454 mconfig->mod_cfg[conf_idx].res_idx = tkn_elem->value;
2455 break;
2456
2457 case SKL_TKN_CFG_MOD_FMT_ID:
2458 mconfig->mod_cfg[conf_idx].fmt_idx = tkn_elem->value;
2459 break;
2460
Shreyas NC6277e832016-08-12 12:29:51 +05302461 /*
2462 * SKL_TKN_U32_DIR_PIN_COUNT token has the value for both
2463 * direction and the pin count. The first four bits represent
2464 * direction and next four the pin count.
2465 */
2466 case SKL_TKN_U32_DIR_PIN_COUNT:
2467 dir = tkn_elem->value & SKL_IN_DIR_BIT_MASK;
2468 pin_index = (tkn_elem->value &
2469 SKL_PIN_COUNT_MASK) >> 4;
2470
2471 break;
2472
2473 case SKL_TKN_U32_FMT_CH:
2474 case SKL_TKN_U32_FMT_FREQ:
2475 case SKL_TKN_U32_FMT_BIT_DEPTH:
2476 case SKL_TKN_U32_FMT_SAMPLE_SIZE:
2477 case SKL_TKN_U32_FMT_CH_CONFIG:
2478 case SKL_TKN_U32_FMT_INTERLEAVE:
2479 case SKL_TKN_U32_FMT_SAMPLE_TYPE:
2480 case SKL_TKN_U32_FMT_CH_MAP:
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302481 ret = skl_tplg_widget_fill_fmt(dev, iface, tkn_elem->token,
Shreyas NC6277e832016-08-12 12:29:51 +05302482 tkn_elem->value, dir, pin_index);
2483
2484 if (ret < 0)
2485 return ret;
2486
2487 break;
2488
2489 case SKL_TKN_U32_PIN_MOD_ID:
2490 case SKL_TKN_U32_PIN_INST_ID:
2491 ret = skl_tplg_fill_pins_info(dev,
2492 mconfig, tkn_elem, dir,
2493 pin_index);
2494 if (ret < 0)
2495 return ret;
2496
2497 break;
2498
2499 case SKL_TKN_U32_CAPS_SIZE:
2500 mconfig->formats_config.caps_size =
2501 tkn_elem->value;
2502
2503 break;
2504
Shreyas NC133e6e52017-05-15 19:44:31 +05302505 case SKL_TKN_U32_CAPS_SET_PARAMS:
2506 mconfig->formats_config.set_params =
2507 tkn_elem->value;
2508 break;
2509
2510 case SKL_TKN_U32_CAPS_PARAMS_ID:
2511 mconfig->formats_config.param_id =
2512 tkn_elem->value;
2513 break;
2514
Shreyas NC6277e832016-08-12 12:29:51 +05302515 case SKL_TKN_U32_PROC_DOMAIN:
2516 mconfig->domain =
2517 tkn_elem->value;
2518
2519 break;
2520
Ramesh Babu939df3a2017-06-19 11:59:19 +05302521 case SKL_TKN_U32_DMA_BUF_SIZE:
2522 mconfig->dma_buffer_size = tkn_elem->value;
2523 break;
2524
Shreyas NC6277e832016-08-12 12:29:51 +05302525 case SKL_TKN_U8_IN_PIN_TYPE:
2526 case SKL_TKN_U8_OUT_PIN_TYPE:
2527 case SKL_TKN_U8_CONN_TYPE:
2528 break;
2529
2530 default:
2531 dev_err(dev, "Token %d not handled\n",
2532 tkn_elem->token);
2533 return -EINVAL;
Hardik T Shah4cd98992015-10-27 09:22:55 +09002534 }
Shreyas NC6277e832016-08-12 12:29:51 +05302535
2536 tkn_count++;
2537
2538 return tkn_count;
2539}
2540
2541/*
2542 * Parse the vendor array for specific tokens to construct
2543 * module private data
2544 */
2545static int skl_tplg_get_tokens(struct device *dev,
2546 char *pvt_data, struct skl *skl,
2547 struct skl_module_cfg *mconfig, int block_size)
2548{
2549 struct snd_soc_tplg_vendor_array *array;
2550 struct snd_soc_tplg_vendor_value_elem *tkn_elem;
2551 int tkn_count = 0, ret;
2552 int off = 0, tuple_size = 0;
2553
2554 if (block_size <= 0)
2555 return -EINVAL;
2556
2557 while (tuple_size < block_size) {
2558 array = (struct snd_soc_tplg_vendor_array *)(pvt_data + off);
2559
2560 off += array->size;
2561
2562 switch (array->type) {
2563 case SND_SOC_TPLG_TUPLE_TYPE_STRING:
Colin Ian Kingecd286a2016-09-16 18:51:21 +01002564 dev_warn(dev, "no string tokens expected for skl tplg\n");
Shreyas NC6277e832016-08-12 12:29:51 +05302565 continue;
2566
2567 case SND_SOC_TPLG_TUPLE_TYPE_UUID:
2568 ret = skl_tplg_get_uuid(dev, mconfig, array->uuid);
2569 if (ret < 0)
2570 return ret;
2571
2572 tuple_size += sizeof(*array->uuid);
2573
2574 continue;
2575
2576 default:
2577 tkn_elem = array->value;
2578 tkn_count = 0;
2579 break;
2580 }
2581
2582 while (tkn_count <= (array->num_elems - 1)) {
2583 ret = skl_tplg_get_token(dev, tkn_elem,
2584 skl, mconfig);
2585
2586 if (ret < 0)
2587 return ret;
2588
2589 tkn_count = tkn_count + ret;
2590 tkn_elem++;
2591 }
2592
2593 tuple_size += tkn_count * sizeof(*tkn_elem);
2594 }
2595
Shreyas NC133e6e52017-05-15 19:44:31 +05302596 return off;
Shreyas NC6277e832016-08-12 12:29:51 +05302597}
2598
2599/*
2600 * Every data block is preceded by a descriptor to read the number
2601 * of data blocks, they type of the block and it's size
2602 */
2603static int skl_tplg_get_desc_blocks(struct device *dev,
2604 struct snd_soc_tplg_vendor_array *array)
2605{
2606 struct snd_soc_tplg_vendor_value_elem *tkn_elem;
2607
2608 tkn_elem = array->value;
2609
2610 switch (tkn_elem->token) {
2611 case SKL_TKN_U8_NUM_BLOCKS:
2612 case SKL_TKN_U8_BLOCK_TYPE:
2613 case SKL_TKN_U16_BLOCK_SIZE:
2614 return tkn_elem->value;
2615
2616 default:
Colin Ian Kingecd286a2016-09-16 18:51:21 +01002617 dev_err(dev, "Invalid descriptor token %d\n", tkn_elem->token);
Shreyas NC6277e832016-08-12 12:29:51 +05302618 break;
2619 }
2620
2621 return -EINVAL;
2622}
2623
2624/*
2625 * Parse the private data for the token and corresponding value.
2626 * The private data can have multiple data blocks. So, a data block
2627 * is preceded by a descriptor for number of blocks and a descriptor
2628 * for the type and size of the suceeding data block.
2629 */
2630static int skl_tplg_get_pvt_data(struct snd_soc_tplg_dapm_widget *tplg_w,
2631 struct skl *skl, struct device *dev,
2632 struct skl_module_cfg *mconfig)
2633{
2634 struct snd_soc_tplg_vendor_array *array;
2635 int num_blocks, block_size = 0, block_type, off = 0;
2636 char *data;
2637 int ret;
2638
2639 /* Read the NUM_DATA_BLOCKS descriptor */
2640 array = (struct snd_soc_tplg_vendor_array *)tplg_w->priv.data;
2641 ret = skl_tplg_get_desc_blocks(dev, array);
2642 if (ret < 0)
2643 return ret;
2644 num_blocks = ret;
2645
2646 off += array->size;
Shreyas NC6277e832016-08-12 12:29:51 +05302647 /* Read the BLOCK_TYPE and BLOCK_SIZE descriptor */
2648 while (num_blocks > 0) {
Shreyas NC133e6e52017-05-15 19:44:31 +05302649 array = (struct snd_soc_tplg_vendor_array *)
2650 (tplg_w->priv.data + off);
2651
Shreyas NC6277e832016-08-12 12:29:51 +05302652 ret = skl_tplg_get_desc_blocks(dev, array);
2653
2654 if (ret < 0)
2655 return ret;
2656 block_type = ret;
2657 off += array->size;
2658
2659 array = (struct snd_soc_tplg_vendor_array *)
2660 (tplg_w->priv.data + off);
2661
2662 ret = skl_tplg_get_desc_blocks(dev, array);
2663
2664 if (ret < 0)
2665 return ret;
2666 block_size = ret;
2667 off += array->size;
2668
2669 array = (struct snd_soc_tplg_vendor_array *)
2670 (tplg_w->priv.data + off);
2671
2672 data = (tplg_w->priv.data + off);
2673
2674 if (block_type == SKL_TYPE_TUPLE) {
2675 ret = skl_tplg_get_tokens(dev, data,
2676 skl, mconfig, block_size);
2677
2678 if (ret < 0)
2679 return ret;
2680
2681 --num_blocks;
2682 } else {
2683 if (mconfig->formats_config.caps_size > 0)
2684 memcpy(mconfig->formats_config.caps, data,
2685 mconfig->formats_config.caps_size);
2686 --num_blocks;
Shreyas NC133e6e52017-05-15 19:44:31 +05302687 ret = mconfig->formats_config.caps_size;
Shreyas NC6277e832016-08-12 12:29:51 +05302688 }
Shreyas NC133e6e52017-05-15 19:44:31 +05302689 off += ret;
Shreyas NC6277e832016-08-12 12:29:51 +05302690 }
2691
2692 return 0;
Hardik T Shah4cd98992015-10-27 09:22:55 +09002693}
2694
Dharageswari Rfe3f4442016-06-03 18:29:39 +05302695static void skl_clear_pin_config(struct snd_soc_platform *platform,
2696 struct snd_soc_dapm_widget *w)
2697{
2698 int i;
2699 struct skl_module_cfg *mconfig;
2700 struct skl_pipe *pipe;
2701
2702 if (!strncmp(w->dapm->component->name, platform->component.name,
2703 strlen(platform->component.name))) {
2704 mconfig = w->priv;
2705 pipe = mconfig->pipe;
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302706 for (i = 0; i < mconfig->module->max_input_pins; i++) {
Dharageswari Rfe3f4442016-06-03 18:29:39 +05302707 mconfig->m_in_pin[i].in_use = false;
2708 mconfig->m_in_pin[i].pin_state = SKL_PIN_UNBIND;
2709 }
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302710 for (i = 0; i < mconfig->module->max_output_pins; i++) {
Dharageswari Rfe3f4442016-06-03 18:29:39 +05302711 mconfig->m_out_pin[i].in_use = false;
2712 mconfig->m_out_pin[i].pin_state = SKL_PIN_UNBIND;
2713 }
2714 pipe->state = SKL_PIPE_INVALID;
2715 mconfig->m_state = SKL_MODULE_UNINIT;
2716 }
2717}
2718
2719void skl_cleanup_resources(struct skl *skl)
2720{
2721 struct skl_sst *ctx = skl->skl_sst;
2722 struct snd_soc_platform *soc_platform = skl->platform;
2723 struct snd_soc_dapm_widget *w;
2724 struct snd_soc_card *card;
2725
2726 if (soc_platform == NULL)
2727 return;
2728
2729 card = soc_platform->component.card;
2730 if (!card || !card->instantiated)
2731 return;
2732
2733 skl->resource.mem = 0;
2734 skl->resource.mcps = 0;
2735
2736 list_for_each_entry(w, &card->widgets, list) {
2737 if (is_skl_dsp_widget_type(w) && (w->priv != NULL))
2738 skl_clear_pin_config(soc_platform, w);
2739 }
2740
2741 skl_clear_module_cnt(ctx->dsp);
2742}
2743
Vinod Koul3af36702015-10-07 11:31:56 +01002744/*
2745 * Topology core widget load callback
2746 *
2747 * This is used to save the private data for each widget which gives
2748 * information to the driver about module and pipeline parameters which DSP
2749 * FW expects like ids, resource values, formats etc
2750 */
2751static int skl_tplg_widget_load(struct snd_soc_component *cmpnt,
Jeeja KPb663a8c2015-10-07 11:31:57 +01002752 struct snd_soc_dapm_widget *w,
2753 struct snd_soc_tplg_dapm_widget *tplg_w)
Vinod Koul3af36702015-10-07 11:31:56 +01002754{
2755 int ret;
2756 struct hdac_ext_bus *ebus = snd_soc_component_get_drvdata(cmpnt);
2757 struct skl *skl = ebus_to_skl(ebus);
2758 struct hdac_bus *bus = ebus_to_hbus(ebus);
2759 struct skl_module_cfg *mconfig;
Vinod Koul3af36702015-10-07 11:31:56 +01002760
2761 if (!tplg_w->priv.size)
2762 goto bind_event;
2763
2764 mconfig = devm_kzalloc(bus->dev, sizeof(*mconfig), GFP_KERNEL);
2765
2766 if (!mconfig)
2767 return -ENOMEM;
2768
Ramesh Babuf6fa56e2017-08-23 19:33:53 +05302769 if (skl->nr_modules == 0) {
2770 mconfig->module = devm_kzalloc(bus->dev,
2771 sizeof(*mconfig->module), GFP_KERNEL);
2772 if (!mconfig->module)
2773 return -ENOMEM;
2774 }
2775
Vinod Koul3af36702015-10-07 11:31:56 +01002776 w->priv = mconfig;
Shreyas NC09305da2016-04-21 11:45:22 +05302777
Vinod Koulb7c50552016-07-26 18:06:40 +05302778 /*
2779 * module binary can be loaded later, so set it to query when
2780 * module is load for a use case
2781 */
2782 mconfig->id.module_id = -1;
Hardik T Shah4cd98992015-10-27 09:22:55 +09002783
Shreyas NC6277e832016-08-12 12:29:51 +05302784 /* Parse private data for tuples */
2785 ret = skl_tplg_get_pvt_data(tplg_w, skl, bus->dev, mconfig);
2786 if (ret < 0)
2787 return ret;
Vinod Kould14700a2017-06-30 09:06:06 +05302788
2789 skl_debug_init_module(skl->debugfs, w, mconfig);
2790
Vinod Koul3af36702015-10-07 11:31:56 +01002791bind_event:
2792 if (tplg_w->event_type == 0) {
Vinod Koul3373f712015-10-07 16:39:38 +01002793 dev_dbg(bus->dev, "ASoC: No event handler required\n");
Vinod Koul3af36702015-10-07 11:31:56 +01002794 return 0;
2795 }
2796
2797 ret = snd_soc_tplg_widget_bind_event(w, skl_tplg_widget_ops,
Jeeja KPb663a8c2015-10-07 11:31:57 +01002798 ARRAY_SIZE(skl_tplg_widget_ops),
2799 tplg_w->event_type);
Vinod Koul3af36702015-10-07 11:31:56 +01002800
2801 if (ret) {
2802 dev_err(bus->dev, "%s: No matching event handlers found for %d\n",
2803 __func__, tplg_w->event_type);
2804 return -EINVAL;
2805 }
2806
2807 return 0;
2808}
2809
Jeeja KP140adfb2015-11-28 15:01:50 +05302810static int skl_init_algo_data(struct device *dev, struct soc_bytes_ext *be,
2811 struct snd_soc_tplg_bytes_control *bc)
2812{
2813 struct skl_algo_data *ac;
2814 struct skl_dfw_algo_data *dfw_ac =
2815 (struct skl_dfw_algo_data *)bc->priv.data;
2816
2817 ac = devm_kzalloc(dev, sizeof(*ac), GFP_KERNEL);
2818 if (!ac)
2819 return -ENOMEM;
2820
2821 /* Fill private data */
2822 ac->max = dfw_ac->max;
2823 ac->param_id = dfw_ac->param_id;
2824 ac->set_params = dfw_ac->set_params;
Dharageswari R0d682102016-07-08 18:15:03 +05302825 ac->size = dfw_ac->max;
Jeeja KP140adfb2015-11-28 15:01:50 +05302826
2827 if (ac->max) {
2828 ac->params = (char *) devm_kzalloc(dev, ac->max, GFP_KERNEL);
2829 if (!ac->params)
2830 return -ENOMEM;
2831
Alan Coxedd7ea22016-02-22 09:37:27 +05302832 memcpy(ac->params, dfw_ac->params, ac->max);
Jeeja KP140adfb2015-11-28 15:01:50 +05302833 }
2834
2835 be->dobj.private = ac;
2836 return 0;
2837}
2838
Dharageswari R7a1b7492017-05-31 10:30:25 +05302839static int skl_init_enum_data(struct device *dev, struct soc_enum *se,
2840 struct snd_soc_tplg_enum_control *ec)
2841{
2842
2843 void *data;
2844
2845 if (ec->priv.size) {
2846 data = devm_kzalloc(dev, sizeof(ec->priv.size), GFP_KERNEL);
2847 if (!data)
2848 return -ENOMEM;
2849 memcpy(data, ec->priv.data, ec->priv.size);
2850 se->dobj.private = data;
2851 }
2852
2853 return 0;
2854
2855}
2856
Jeeja KP140adfb2015-11-28 15:01:50 +05302857static int skl_tplg_control_load(struct snd_soc_component *cmpnt,
2858 struct snd_kcontrol_new *kctl,
2859 struct snd_soc_tplg_ctl_hdr *hdr)
2860{
2861 struct soc_bytes_ext *sb;
2862 struct snd_soc_tplg_bytes_control *tplg_bc;
Dharageswari R7a1b7492017-05-31 10:30:25 +05302863 struct snd_soc_tplg_enum_control *tplg_ec;
Jeeja KP140adfb2015-11-28 15:01:50 +05302864 struct hdac_ext_bus *ebus = snd_soc_component_get_drvdata(cmpnt);
2865 struct hdac_bus *bus = ebus_to_hbus(ebus);
Dharageswari R7a1b7492017-05-31 10:30:25 +05302866 struct soc_enum *se;
Jeeja KP140adfb2015-11-28 15:01:50 +05302867
2868 switch (hdr->ops.info) {
2869 case SND_SOC_TPLG_CTL_BYTES:
2870 tplg_bc = container_of(hdr,
2871 struct snd_soc_tplg_bytes_control, hdr);
2872 if (kctl->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
2873 sb = (struct soc_bytes_ext *)kctl->private_value;
2874 if (tplg_bc->priv.size)
2875 return skl_init_algo_data(
2876 bus->dev, sb, tplg_bc);
2877 }
2878 break;
2879
Dharageswari R7a1b7492017-05-31 10:30:25 +05302880 case SND_SOC_TPLG_CTL_ENUM:
2881 tplg_ec = container_of(hdr,
2882 struct snd_soc_tplg_enum_control, hdr);
2883 if (kctl->access & SNDRV_CTL_ELEM_ACCESS_READWRITE) {
2884 se = (struct soc_enum *)kctl->private_value;
2885 if (tplg_ec->priv.size)
2886 return skl_init_enum_data(bus->dev, se,
2887 tplg_ec);
2888 }
2889 break;
2890
Jeeja KP140adfb2015-11-28 15:01:50 +05302891 default:
2892 dev_warn(bus->dev, "Control load not supported %d:%d:%d\n",
2893 hdr->ops.get, hdr->ops.put, hdr->ops.info);
2894 break;
2895 }
2896
2897 return 0;
2898}
2899
Shreyas NC541070c2016-08-23 09:31:03 +05302900static int skl_tplg_fill_str_mfest_tkn(struct device *dev,
2901 struct snd_soc_tplg_vendor_string_elem *str_elem,
Jeeja KPeee0e162017-01-02 09:50:04 +05302902 struct skl *skl)
Shreyas NC541070c2016-08-23 09:31:03 +05302903{
2904 int tkn_count = 0;
2905 static int ref_count;
2906
2907 switch (str_elem->token) {
2908 case SKL_TKN_STR_LIB_NAME:
Jeeja KPeee0e162017-01-02 09:50:04 +05302909 if (ref_count > skl->skl_sst->lib_count - 1) {
Shreyas NC541070c2016-08-23 09:31:03 +05302910 ref_count = 0;
2911 return -EINVAL;
2912 }
2913
Jeeja KPeee0e162017-01-02 09:50:04 +05302914 strncpy(skl->skl_sst->lib_info[ref_count].name,
2915 str_elem->string,
2916 ARRAY_SIZE(skl->skl_sst->lib_info[ref_count].name));
Shreyas NC541070c2016-08-23 09:31:03 +05302917 ref_count++;
Shreyas NC541070c2016-08-23 09:31:03 +05302918 break;
2919
2920 default:
Colin Ian Kingecd286a2016-09-16 18:51:21 +01002921 dev_err(dev, "Not a string token %d\n", str_elem->token);
Shreyas NC541070c2016-08-23 09:31:03 +05302922 break;
2923 }
Shreyas NCdb6ed552017-08-23 19:33:52 +05302924 tkn_count++;
Shreyas NC541070c2016-08-23 09:31:03 +05302925
2926 return tkn_count;
2927}
2928
2929static int skl_tplg_get_str_tkn(struct device *dev,
2930 struct snd_soc_tplg_vendor_array *array,
Jeeja KPeee0e162017-01-02 09:50:04 +05302931 struct skl *skl)
Shreyas NC541070c2016-08-23 09:31:03 +05302932{
2933 int tkn_count = 0, ret;
2934 struct snd_soc_tplg_vendor_string_elem *str_elem;
2935
2936 str_elem = (struct snd_soc_tplg_vendor_string_elem *)array->value;
2937 while (tkn_count < array->num_elems) {
Jeeja KPeee0e162017-01-02 09:50:04 +05302938 ret = skl_tplg_fill_str_mfest_tkn(dev, str_elem, skl);
Shreyas NC541070c2016-08-23 09:31:03 +05302939 str_elem++;
2940
2941 if (ret < 0)
2942 return ret;
2943
2944 tkn_count = tkn_count + ret;
2945 }
2946
2947 return tkn_count;
2948}
2949
Shreyas NCdb6ed552017-08-23 19:33:52 +05302950static int skl_tplg_manifest_fill_fmt(struct device *dev,
2951 struct skl_module_iface *fmt,
2952 struct snd_soc_tplg_vendor_value_elem *tkn_elem,
2953 u32 dir, int fmt_idx)
2954{
2955 struct skl_module_pin_fmt *dst_fmt;
2956 struct skl_module_fmt *mod_fmt;
2957 int ret;
2958
2959 if (!fmt)
2960 return -EINVAL;
2961
2962 switch (dir) {
2963 case SKL_DIR_IN:
2964 dst_fmt = &fmt->inputs[fmt_idx];
2965 break;
2966
2967 case SKL_DIR_OUT:
2968 dst_fmt = &fmt->outputs[fmt_idx];
2969 break;
2970
2971 default:
2972 dev_err(dev, "Invalid direction: %d\n", dir);
2973 return -EINVAL;
2974 }
2975
2976 mod_fmt = &dst_fmt->fmt;
2977
2978 switch (tkn_elem->token) {
2979 case SKL_TKN_MM_U32_INTF_PIN_ID:
2980 dst_fmt->id = tkn_elem->value;
2981 break;
2982
2983 default:
2984 ret = skl_tplg_fill_fmt(dev, mod_fmt, tkn_elem->token,
2985 tkn_elem->value);
2986 if (ret < 0)
2987 return ret;
2988 break;
2989 }
2990
2991 return 0;
2992}
2993
2994static int skl_tplg_fill_mod_info(struct device *dev,
2995 struct snd_soc_tplg_vendor_value_elem *tkn_elem,
2996 struct skl_module *mod)
2997{
2998
2999 if (!mod)
3000 return -EINVAL;
3001
3002 switch (tkn_elem->token) {
3003 case SKL_TKN_U8_IN_PIN_TYPE:
3004 mod->input_pin_type = tkn_elem->value;
3005 break;
3006
3007 case SKL_TKN_U8_OUT_PIN_TYPE:
3008 mod->output_pin_type = tkn_elem->value;
3009 break;
3010
3011 case SKL_TKN_U8_IN_QUEUE_COUNT:
3012 mod->max_input_pins = tkn_elem->value;
3013 break;
3014
3015 case SKL_TKN_U8_OUT_QUEUE_COUNT:
3016 mod->max_output_pins = tkn_elem->value;
3017 break;
3018
3019 case SKL_TKN_MM_U8_NUM_RES:
3020 mod->nr_resources = tkn_elem->value;
3021 break;
3022
3023 case SKL_TKN_MM_U8_NUM_INTF:
3024 mod->nr_interfaces = tkn_elem->value;
3025 break;
3026
3027 default:
3028 dev_err(dev, "Invalid mod info token %d", tkn_elem->token);
3029 return -EINVAL;
3030 }
3031
3032 return 0;
3033}
3034
3035
Shreyas NC541070c2016-08-23 09:31:03 +05303036static int skl_tplg_get_int_tkn(struct device *dev,
3037 struct snd_soc_tplg_vendor_value_elem *tkn_elem,
Jeeja KPeee0e162017-01-02 09:50:04 +05303038 struct skl *skl)
Shreyas NC541070c2016-08-23 09:31:03 +05303039{
Shreyas NCdb6ed552017-08-23 19:33:52 +05303040 int tkn_count = 0, ret;
3041 static int mod_idx, res_val_idx, intf_val_idx, dir, pin_idx;
3042 struct skl_module_res *res = NULL;
3043 struct skl_module_iface *fmt = NULL;
3044 struct skl_module *mod = NULL;
3045 int i;
3046
3047 if (skl->modules) {
3048 mod = skl->modules[mod_idx];
3049 res = &mod->resources[res_val_idx];
3050 fmt = &mod->formats[intf_val_idx];
3051 }
Shreyas NC541070c2016-08-23 09:31:03 +05303052
3053 switch (tkn_elem->token) {
3054 case SKL_TKN_U32_LIB_COUNT:
Jeeja KPeee0e162017-01-02 09:50:04 +05303055 skl->skl_sst->lib_count = tkn_elem->value;
Shreyas NCdb6ed552017-08-23 19:33:52 +05303056 break;
3057
3058 case SKL_TKN_U8_NUM_MOD:
3059 skl->nr_modules = tkn_elem->value;
3060 skl->modules = devm_kcalloc(dev, skl->nr_modules,
3061 sizeof(*skl->modules), GFP_KERNEL);
3062 if (!skl->modules)
3063 return -ENOMEM;
3064
3065 for (i = 0; i < skl->nr_modules; i++) {
3066 skl->modules[i] = devm_kzalloc(dev,
3067 sizeof(struct skl_module), GFP_KERNEL);
3068 if (!skl->modules[i])
3069 return -ENOMEM;
3070 }
3071 break;
3072
3073 case SKL_TKN_MM_U8_MOD_IDX:
3074 mod_idx = tkn_elem->value;
3075 break;
3076
3077 case SKL_TKN_U8_IN_PIN_TYPE:
3078 case SKL_TKN_U8_OUT_PIN_TYPE:
3079 case SKL_TKN_U8_IN_QUEUE_COUNT:
3080 case SKL_TKN_U8_OUT_QUEUE_COUNT:
3081 case SKL_TKN_MM_U8_NUM_RES:
3082 case SKL_TKN_MM_U8_NUM_INTF:
3083 ret = skl_tplg_fill_mod_info(dev, tkn_elem, mod);
3084 if (ret < 0)
3085 return ret;
3086 break;
3087
3088 case SKL_TKN_U32_DIR_PIN_COUNT:
3089 dir = tkn_elem->value & SKL_IN_DIR_BIT_MASK;
3090 pin_idx = (tkn_elem->value & SKL_PIN_COUNT_MASK) >> 4;
3091 break;
3092
3093 case SKL_TKN_MM_U32_RES_ID:
3094 if (!res)
3095 return -EINVAL;
3096
3097 res->id = tkn_elem->value;
3098 res_val_idx = tkn_elem->value;
3099 break;
3100
3101 case SKL_TKN_MM_U32_FMT_ID:
3102 if (!fmt)
3103 return -EINVAL;
3104
3105 fmt->fmt_idx = tkn_elem->value;
3106 intf_val_idx = tkn_elem->value;
3107 break;
3108
3109 case SKL_TKN_MM_U32_CPS:
3110 case SKL_TKN_MM_U32_DMA_SIZE:
3111 case SKL_TKN_MM_U32_CPC:
3112 case SKL_TKN_U32_MEM_PAGES:
3113 case SKL_TKN_U32_OBS:
3114 case SKL_TKN_U32_IBS:
3115 case SKL_TKN_MM_U32_RES_PIN_ID:
3116 case SKL_TKN_MM_U32_PIN_BUF:
3117 ret = skl_tplg_fill_res_tkn(dev, tkn_elem, res, pin_idx, dir);
3118 if (ret < 0)
3119 return ret;
3120
3121 break;
3122
3123 case SKL_TKN_MM_U32_NUM_IN_FMT:
3124 if (!fmt)
3125 return -EINVAL;
3126
3127 res->nr_input_pins = tkn_elem->value;
3128 break;
3129
3130 case SKL_TKN_MM_U32_NUM_OUT_FMT:
3131 if (!fmt)
3132 return -EINVAL;
3133
3134 res->nr_output_pins = tkn_elem->value;
3135 break;
3136
3137 case SKL_TKN_U32_FMT_CH:
3138 case SKL_TKN_U32_FMT_FREQ:
3139 case SKL_TKN_U32_FMT_BIT_DEPTH:
3140 case SKL_TKN_U32_FMT_SAMPLE_SIZE:
3141 case SKL_TKN_U32_FMT_CH_CONFIG:
3142 case SKL_TKN_U32_FMT_INTERLEAVE:
3143 case SKL_TKN_U32_FMT_SAMPLE_TYPE:
3144 case SKL_TKN_U32_FMT_CH_MAP:
3145 case SKL_TKN_MM_U32_INTF_PIN_ID:
3146 ret = skl_tplg_manifest_fill_fmt(dev, fmt, tkn_elem,
3147 dir, pin_idx);
3148 if (ret < 0)
3149 return ret;
Shreyas NC541070c2016-08-23 09:31:03 +05303150 break;
3151
3152 default:
Colin Ian Kingecd286a2016-09-16 18:51:21 +01003153 dev_err(dev, "Not a manifest token %d\n", tkn_elem->token);
Shreyas NC541070c2016-08-23 09:31:03 +05303154 return -EINVAL;
3155 }
Shreyas NCdb6ed552017-08-23 19:33:52 +05303156 tkn_count++;
Shreyas NC541070c2016-08-23 09:31:03 +05303157
3158 return tkn_count;
3159}
3160
Shreyas NCdb6ed552017-08-23 19:33:52 +05303161static int skl_tplg_get_manifest_uuid(struct device *dev,
3162 struct skl *skl,
3163 struct snd_soc_tplg_vendor_uuid_elem *uuid_tkn)
3164{
3165 static int ref_count;
3166 struct skl_module *mod;
3167
3168 if (uuid_tkn->token == SKL_TKN_UUID) {
3169 mod = skl->modules[ref_count];
3170 memcpy(&mod->uuid, &uuid_tkn->uuid, sizeof(uuid_tkn->uuid));
3171 ref_count++;
3172 } else {
3173 dev_err(dev, "Not an UUID token tkn %d\n", uuid_tkn->token);
3174 return -EINVAL;
3175 }
3176
3177 return 0;
3178}
3179
Shreyas NC541070c2016-08-23 09:31:03 +05303180/*
3181 * Fill the manifest structure by parsing the tokens based on the
3182 * type.
3183 */
3184static int skl_tplg_get_manifest_tkn(struct device *dev,
Jeeja KPeee0e162017-01-02 09:50:04 +05303185 char *pvt_data, struct skl *skl,
Shreyas NC541070c2016-08-23 09:31:03 +05303186 int block_size)
3187{
3188 int tkn_count = 0, ret;
3189 int off = 0, tuple_size = 0;
3190 struct snd_soc_tplg_vendor_array *array;
3191 struct snd_soc_tplg_vendor_value_elem *tkn_elem;
3192
3193 if (block_size <= 0)
3194 return -EINVAL;
3195
3196 while (tuple_size < block_size) {
3197 array = (struct snd_soc_tplg_vendor_array *)(pvt_data + off);
3198 off += array->size;
3199 switch (array->type) {
3200 case SND_SOC_TPLG_TUPLE_TYPE_STRING:
Jeeja KPeee0e162017-01-02 09:50:04 +05303201 ret = skl_tplg_get_str_tkn(dev, array, skl);
Shreyas NC541070c2016-08-23 09:31:03 +05303202
3203 if (ret < 0)
3204 return ret;
Shreyas NC0a716772017-05-15 19:44:30 +05303205 tkn_count = ret;
Shreyas NC541070c2016-08-23 09:31:03 +05303206
3207 tuple_size += tkn_count *
3208 sizeof(struct snd_soc_tplg_vendor_string_elem);
3209 continue;
3210
3211 case SND_SOC_TPLG_TUPLE_TYPE_UUID:
Shreyas NCdb6ed552017-08-23 19:33:52 +05303212 ret = skl_tplg_get_manifest_uuid(dev, skl, array->uuid);
3213 if (ret < 0)
3214 return ret;
3215
3216 tuple_size += sizeof(*array->uuid);
Shreyas NC541070c2016-08-23 09:31:03 +05303217 continue;
3218
3219 default:
3220 tkn_elem = array->value;
3221 tkn_count = 0;
3222 break;
3223 }
3224
3225 while (tkn_count <= array->num_elems - 1) {
3226 ret = skl_tplg_get_int_tkn(dev,
Jeeja KPeee0e162017-01-02 09:50:04 +05303227 tkn_elem, skl);
Shreyas NC541070c2016-08-23 09:31:03 +05303228 if (ret < 0)
3229 return ret;
3230
3231 tkn_count = tkn_count + ret;
3232 tkn_elem++;
Shreyas NC541070c2016-08-23 09:31:03 +05303233 }
Shreyas NC9fc129f2017-08-23 19:33:48 +05303234 tuple_size += (tkn_count * sizeof(*tkn_elem));
Shreyas NC541070c2016-08-23 09:31:03 +05303235 tkn_count = 0;
3236 }
3237
Shreyas NC9fc129f2017-08-23 19:33:48 +05303238 return off;
Shreyas NC541070c2016-08-23 09:31:03 +05303239}
3240
3241/*
3242 * Parse manifest private data for tokens. The private data block is
3243 * preceded by descriptors for type and size of data block.
3244 */
3245static int skl_tplg_get_manifest_data(struct snd_soc_tplg_manifest *manifest,
Jeeja KPeee0e162017-01-02 09:50:04 +05303246 struct device *dev, struct skl *skl)
Shreyas NC541070c2016-08-23 09:31:03 +05303247{
3248 struct snd_soc_tplg_vendor_array *array;
3249 int num_blocks, block_size = 0, block_type, off = 0;
3250 char *data;
3251 int ret;
3252
3253 /* Read the NUM_DATA_BLOCKS descriptor */
3254 array = (struct snd_soc_tplg_vendor_array *)manifest->priv.data;
3255 ret = skl_tplg_get_desc_blocks(dev, array);
3256 if (ret < 0)
3257 return ret;
3258 num_blocks = ret;
3259
3260 off += array->size;
Shreyas NC541070c2016-08-23 09:31:03 +05303261 /* Read the BLOCK_TYPE and BLOCK_SIZE descriptor */
3262 while (num_blocks > 0) {
Shreyas NC9fc129f2017-08-23 19:33:48 +05303263 array = (struct snd_soc_tplg_vendor_array *)
3264 (manifest->priv.data + off);
Shreyas NC541070c2016-08-23 09:31:03 +05303265 ret = skl_tplg_get_desc_blocks(dev, array);
3266
3267 if (ret < 0)
3268 return ret;
3269 block_type = ret;
3270 off += array->size;
3271
3272 array = (struct snd_soc_tplg_vendor_array *)
3273 (manifest->priv.data + off);
3274
3275 ret = skl_tplg_get_desc_blocks(dev, array);
3276
3277 if (ret < 0)
3278 return ret;
3279 block_size = ret;
3280 off += array->size;
3281
3282 array = (struct snd_soc_tplg_vendor_array *)
3283 (manifest->priv.data + off);
3284
3285 data = (manifest->priv.data + off);
3286
3287 if (block_type == SKL_TYPE_TUPLE) {
Jeeja KPeee0e162017-01-02 09:50:04 +05303288 ret = skl_tplg_get_manifest_tkn(dev, data, skl,
Shreyas NC541070c2016-08-23 09:31:03 +05303289 block_size);
3290
3291 if (ret < 0)
3292 return ret;
3293
3294 --num_blocks;
3295 } else {
3296 return -EINVAL;
3297 }
Shreyas NC9fc129f2017-08-23 19:33:48 +05303298 off += ret;
Shreyas NC541070c2016-08-23 09:31:03 +05303299 }
3300
3301 return 0;
3302}
3303
Kranthi G15ecaba92016-07-26 18:06:43 +05303304static int skl_manifest_load(struct snd_soc_component *cmpnt,
3305 struct snd_soc_tplg_manifest *manifest)
3306{
Kranthi G15ecaba92016-07-26 18:06:43 +05303307 struct hdac_ext_bus *ebus = snd_soc_component_get_drvdata(cmpnt);
3308 struct hdac_bus *bus = ebus_to_hbus(ebus);
3309 struct skl *skl = ebus_to_skl(ebus);
Kranthi G15ecaba92016-07-26 18:06:43 +05303310
Vinod Koulc15ad602016-08-24 18:03:13 +05303311 /* proceed only if we have private data defined */
3312 if (manifest->priv.size == 0)
3313 return 0;
3314
Jeeja KPeee0e162017-01-02 09:50:04 +05303315 skl_tplg_get_manifest_data(manifest, bus->dev, skl);
Shreyas NC541070c2016-08-23 09:31:03 +05303316
Jeeja KPeee0e162017-01-02 09:50:04 +05303317 if (skl->skl_sst->lib_count > SKL_MAX_LIB) {
Kranthi G15ecaba92016-07-26 18:06:43 +05303318 dev_err(bus->dev, "Exceeding max Library count. Got:%d\n",
Jeeja KPeee0e162017-01-02 09:50:04 +05303319 skl->skl_sst->lib_count);
3320 return -EINVAL;
Kranthi G15ecaba92016-07-26 18:06:43 +05303321 }
3322
Jeeja KPeee0e162017-01-02 09:50:04 +05303323 return 0;
Kranthi G15ecaba92016-07-26 18:06:43 +05303324}
3325
Vinod Koul3af36702015-10-07 11:31:56 +01003326static struct snd_soc_tplg_ops skl_tplg_ops = {
3327 .widget_load = skl_tplg_widget_load,
Jeeja KP140adfb2015-11-28 15:01:50 +05303328 .control_load = skl_tplg_control_load,
3329 .bytes_ext_ops = skl_tlv_ops,
3330 .bytes_ext_ops_count = ARRAY_SIZE(skl_tlv_ops),
Dharageswari R7a1b7492017-05-31 10:30:25 +05303331 .io_ops = skl_tplg_kcontrol_ops,
3332 .io_ops_count = ARRAY_SIZE(skl_tplg_kcontrol_ops),
Kranthi G15ecaba92016-07-26 18:06:43 +05303333 .manifest = skl_manifest_load,
Vinod Koul3af36702015-10-07 11:31:56 +01003334};
3335
Jeeja KP287af4f2016-06-03 18:29:40 +05303336/*
3337 * A pipe can have multiple modules, each of them will be a DAPM widget as
3338 * well. While managing a pipeline we need to get the list of all the
3339 * widgets in a pipelines, so this helper - skl_tplg_create_pipe_widget_list()
3340 * helps to get the SKL type widgets in that pipeline
3341 */
3342static int skl_tplg_create_pipe_widget_list(struct snd_soc_platform *platform)
3343{
3344 struct snd_soc_dapm_widget *w;
3345 struct skl_module_cfg *mcfg = NULL;
3346 struct skl_pipe_module *p_module = NULL;
3347 struct skl_pipe *pipe;
3348
3349 list_for_each_entry(w, &platform->component.card->widgets, list) {
3350 if (is_skl_dsp_widget_type(w) && w->priv != NULL) {
3351 mcfg = w->priv;
3352 pipe = mcfg->pipe;
3353
3354 p_module = devm_kzalloc(platform->dev,
3355 sizeof(*p_module), GFP_KERNEL);
3356 if (!p_module)
3357 return -ENOMEM;
3358
3359 p_module->w = w;
3360 list_add_tail(&p_module->node, &pipe->w_list);
3361 }
3362 }
3363
3364 return 0;
3365}
3366
Jeeja KPf0aa94f2016-06-03 18:29:41 +05303367static void skl_tplg_set_pipe_type(struct skl *skl, struct skl_pipe *pipe)
3368{
3369 struct skl_pipe_module *w_module;
3370 struct snd_soc_dapm_widget *w;
3371 struct skl_module_cfg *mconfig;
3372 bool host_found = false, link_found = false;
3373
3374 list_for_each_entry(w_module, &pipe->w_list, node) {
3375 w = w_module->w;
3376 mconfig = w->priv;
3377
3378 if (mconfig->dev_type == SKL_DEVICE_HDAHOST)
3379 host_found = true;
3380 else if (mconfig->dev_type != SKL_DEVICE_NONE)
3381 link_found = true;
3382 }
3383
3384 if (host_found && link_found)
3385 pipe->passthru = true;
3386 else
3387 pipe->passthru = false;
3388}
3389
Vinod Koul3af36702015-10-07 11:31:56 +01003390/* This will be read from topology manifest, currently defined here */
3391#define SKL_MAX_MCPS 30000000
3392#define SKL_FW_MAX_MEM 1000000
3393
3394/*
3395 * SKL topology init routine
3396 */
3397int skl_tplg_init(struct snd_soc_platform *platform, struct hdac_ext_bus *ebus)
3398{
3399 int ret;
3400 const struct firmware *fw;
3401 struct hdac_bus *bus = ebus_to_hbus(ebus);
3402 struct skl *skl = ebus_to_skl(ebus);
Jeeja KPf0aa94f2016-06-03 18:29:41 +05303403 struct skl_pipeline *ppl;
Vinod Koul3af36702015-10-07 11:31:56 +01003404
Vinod Koul4b235c42016-02-19 11:42:34 +05303405 ret = request_firmware(&fw, skl->tplg_name, bus->dev);
Vinod Koul3af36702015-10-07 11:31:56 +01003406 if (ret < 0) {
Jeeja KPb663a8c2015-10-07 11:31:57 +01003407 dev_err(bus->dev, "tplg fw %s load failed with %d\n",
Vinod Koul4b235c42016-02-19 11:42:34 +05303408 skl->tplg_name, ret);
3409 ret = request_firmware(&fw, "dfw_sst.bin", bus->dev);
3410 if (ret < 0) {
3411 dev_err(bus->dev, "Fallback tplg fw %s load failed with %d\n",
3412 "dfw_sst.bin", ret);
3413 return ret;
3414 }
Vinod Koul3af36702015-10-07 11:31:56 +01003415 }
3416
3417 /*
3418 * The complete tplg for SKL is loaded as index 0, we don't use
3419 * any other index
3420 */
Jeeja KPb663a8c2015-10-07 11:31:57 +01003421 ret = snd_soc_tplg_component_load(&platform->component,
3422 &skl_tplg_ops, fw, 0);
Vinod Koul3af36702015-10-07 11:31:56 +01003423 if (ret < 0) {
3424 dev_err(bus->dev, "tplg component load failed%d\n", ret);
Sudip Mukherjeec14a82c2016-01-21 17:27:59 +05303425 release_firmware(fw);
Vinod Koul3af36702015-10-07 11:31:56 +01003426 return -EINVAL;
3427 }
3428
3429 skl->resource.max_mcps = SKL_MAX_MCPS;
3430 skl->resource.max_mem = SKL_FW_MAX_MEM;
3431
Vinod Kould8018362016-01-05 17:16:04 +05303432 skl->tplg = fw;
Jeeja KP287af4f2016-06-03 18:29:40 +05303433 ret = skl_tplg_create_pipe_widget_list(platform);
3434 if (ret < 0)
3435 return ret;
Vinod Kould8018362016-01-05 17:16:04 +05303436
Jeeja KPf0aa94f2016-06-03 18:29:41 +05303437 list_for_each_entry(ppl, &skl->ppl_list, node)
3438 skl_tplg_set_pipe_type(skl, ppl->pipe);
Vinod Koul3af36702015-10-07 11:31:56 +01003439
3440 return 0;
Jeeja KPe4e2d2f2015-10-07 11:31:52 +01003441}