Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 1 | /* |
| 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 NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 24 | #include <uapi/sound/snd_sst_tokens.h> |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 25 | #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 R | 6c5768b | 2015-12-03 23:29:50 +0530 | [diff] [blame] | 30 | #include "../common/sst-dsp.h" |
| 31 | #include "../common/sst-dsp-priv.h" |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 32 | |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 33 | #define SKL_CH_FIXUP_MASK (1 << 0) |
| 34 | #define SKL_RATE_FIXUP_MASK (1 << 1) |
| 35 | #define SKL_FMT_FIXUP_MASK (1 << 2) |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 36 | #define SKL_IN_DIR_BIT_MASK BIT(0) |
| 37 | #define SKL_PIN_COUNT_MASK GENMASK(7, 4) |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 38 | |
Vinod Koul | a83e3b4 | 2016-11-03 17:07:20 +0530 | [diff] [blame] | 39 | void skl_tplg_d0i3_get(struct skl *skl, enum d0i3_capability caps) |
| 40 | { |
| 41 | struct skl_d0i3_data *d0i3 = &skl->skl_sst->d0i3; |
| 42 | |
| 43 | switch (caps) { |
| 44 | case SKL_D0I3_NONE: |
| 45 | d0i3->non_d0i3++; |
| 46 | break; |
| 47 | |
| 48 | case SKL_D0I3_STREAMING: |
| 49 | d0i3->streaming++; |
| 50 | break; |
| 51 | |
| 52 | case SKL_D0I3_NON_STREAMING: |
| 53 | d0i3->non_streaming++; |
| 54 | break; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | void skl_tplg_d0i3_put(struct skl *skl, enum d0i3_capability caps) |
| 59 | { |
| 60 | struct skl_d0i3_data *d0i3 = &skl->skl_sst->d0i3; |
| 61 | |
| 62 | switch (caps) { |
| 63 | case SKL_D0I3_NONE: |
| 64 | d0i3->non_d0i3--; |
| 65 | break; |
| 66 | |
| 67 | case SKL_D0I3_STREAMING: |
| 68 | d0i3->streaming--; |
| 69 | break; |
| 70 | |
| 71 | case SKL_D0I3_NON_STREAMING: |
| 72 | d0i3->non_streaming--; |
| 73 | break; |
| 74 | } |
| 75 | } |
| 76 | |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 77 | /* |
| 78 | * SKL DSP driver modelling uses only few DAPM widgets so for rest we will |
| 79 | * ignore. This helpers checks if the SKL driver handles this widget type |
| 80 | */ |
| 81 | static int is_skl_dsp_widget_type(struct snd_soc_dapm_widget *w) |
| 82 | { |
| 83 | switch (w->id) { |
| 84 | case snd_soc_dapm_dai_link: |
| 85 | case snd_soc_dapm_dai_in: |
| 86 | case snd_soc_dapm_aif_in: |
| 87 | case snd_soc_dapm_aif_out: |
| 88 | case snd_soc_dapm_dai_out: |
| 89 | case snd_soc_dapm_switch: |
| 90 | return false; |
| 91 | default: |
| 92 | return true; |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Each pipelines needs memory to be allocated. Check if we have free memory |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 98 | * from available pool. |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 99 | */ |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 100 | static bool skl_is_pipe_mem_avail(struct skl *skl, |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 101 | struct skl_module_cfg *mconfig) |
| 102 | { |
| 103 | struct skl_sst *ctx = skl->skl_sst; |
| 104 | |
| 105 | if (skl->resource.mem + mconfig->pipe->memory_pages > |
| 106 | skl->resource.max_mem) { |
| 107 | dev_err(ctx->dev, |
| 108 | "%s: module_id %d instance %d\n", __func__, |
| 109 | mconfig->id.module_id, |
| 110 | mconfig->id.instance_id); |
| 111 | dev_err(ctx->dev, |
| 112 | "exceeds ppl memory available %d mem %d\n", |
| 113 | skl->resource.max_mem, skl->resource.mem); |
| 114 | return false; |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 115 | } else { |
| 116 | return true; |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 117 | } |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 118 | } |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 119 | |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 120 | /* |
| 121 | * Add the mem to the mem pool. This is freed when pipe is deleted. |
| 122 | * Note: DSP does actual memory management we only keep track for complete |
| 123 | * pool |
| 124 | */ |
| 125 | static void skl_tplg_alloc_pipe_mem(struct skl *skl, |
| 126 | struct skl_module_cfg *mconfig) |
| 127 | { |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 128 | skl->resource.mem += mconfig->pipe->memory_pages; |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /* |
| 132 | * Pipeline needs needs DSP CPU resources for computation, this is |
| 133 | * quantified in MCPS (Million Clocks Per Second) required for module/pipe |
| 134 | * |
| 135 | * Each pipelines needs mcps to be allocated. Check if we have mcps for this |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 136 | * pipe. |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 137 | */ |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 138 | |
| 139 | static bool skl_is_pipe_mcps_avail(struct skl *skl, |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 140 | struct skl_module_cfg *mconfig) |
| 141 | { |
| 142 | struct skl_sst *ctx = skl->skl_sst; |
| 143 | |
| 144 | if (skl->resource.mcps + mconfig->mcps > skl->resource.max_mcps) { |
| 145 | dev_err(ctx->dev, |
| 146 | "%s: module_id %d instance %d\n", __func__, |
| 147 | mconfig->id.module_id, mconfig->id.instance_id); |
| 148 | dev_err(ctx->dev, |
Guneshwor Singh | 7ca42f5 | 2016-02-03 17:59:46 +0530 | [diff] [blame] | 149 | "exceeds ppl mcps available %d > mem %d\n", |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 150 | skl->resource.max_mcps, skl->resource.mcps); |
| 151 | return false; |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 152 | } else { |
| 153 | return true; |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 154 | } |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 155 | } |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 156 | |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 157 | static void skl_tplg_alloc_pipe_mcps(struct skl *skl, |
| 158 | struct skl_module_cfg *mconfig) |
| 159 | { |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 160 | skl->resource.mcps += mconfig->mcps; |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /* |
| 164 | * Free the mcps when tearing down |
| 165 | */ |
| 166 | static void |
| 167 | skl_tplg_free_pipe_mcps(struct skl *skl, struct skl_module_cfg *mconfig) |
| 168 | { |
| 169 | skl->resource.mcps -= mconfig->mcps; |
| 170 | } |
| 171 | |
| 172 | /* |
| 173 | * Free the memory when tearing down |
| 174 | */ |
| 175 | static void |
| 176 | skl_tplg_free_pipe_mem(struct skl *skl, struct skl_module_cfg *mconfig) |
| 177 | { |
| 178 | skl->resource.mem -= mconfig->pipe->memory_pages; |
| 179 | } |
| 180 | |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 181 | |
| 182 | static void skl_dump_mconfig(struct skl_sst *ctx, |
| 183 | struct skl_module_cfg *mcfg) |
| 184 | { |
| 185 | dev_dbg(ctx->dev, "Dumping config\n"); |
| 186 | dev_dbg(ctx->dev, "Input Format:\n"); |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 187 | dev_dbg(ctx->dev, "channels = %d\n", mcfg->in_fmt[0].channels); |
| 188 | dev_dbg(ctx->dev, "s_freq = %d\n", mcfg->in_fmt[0].s_freq); |
| 189 | dev_dbg(ctx->dev, "ch_cfg = %d\n", mcfg->in_fmt[0].ch_cfg); |
| 190 | dev_dbg(ctx->dev, "valid bit depth = %d\n", mcfg->in_fmt[0].valid_bit_depth); |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 191 | dev_dbg(ctx->dev, "Output Format:\n"); |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 192 | dev_dbg(ctx->dev, "channels = %d\n", mcfg->out_fmt[0].channels); |
| 193 | dev_dbg(ctx->dev, "s_freq = %d\n", mcfg->out_fmt[0].s_freq); |
| 194 | dev_dbg(ctx->dev, "valid bit depth = %d\n", mcfg->out_fmt[0].valid_bit_depth); |
| 195 | dev_dbg(ctx->dev, "ch_cfg = %d\n", mcfg->out_fmt[0].ch_cfg); |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 196 | } |
| 197 | |
Subhransu S. Prusty | ea5a137 | 2016-04-14 10:07:36 +0530 | [diff] [blame] | 198 | static void skl_tplg_update_chmap(struct skl_module_fmt *fmt, int chs) |
| 199 | { |
| 200 | int slot_map = 0xFFFFFFFF; |
| 201 | int start_slot = 0; |
| 202 | int i; |
| 203 | |
| 204 | for (i = 0; i < chs; i++) { |
| 205 | /* |
| 206 | * For 2 channels with starting slot as 0, slot map will |
| 207 | * look like 0xFFFFFF10. |
| 208 | */ |
| 209 | slot_map &= (~(0xF << (4 * i)) | (start_slot << (4 * i))); |
| 210 | start_slot++; |
| 211 | } |
| 212 | fmt->ch_map = slot_map; |
| 213 | } |
| 214 | |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 215 | static void skl_tplg_update_params(struct skl_module_fmt *fmt, |
| 216 | struct skl_pipe_params *params, int fixup) |
| 217 | { |
| 218 | if (fixup & SKL_RATE_FIXUP_MASK) |
| 219 | fmt->s_freq = params->s_freq; |
Subhransu S. Prusty | ea5a137 | 2016-04-14 10:07:36 +0530 | [diff] [blame] | 220 | if (fixup & SKL_CH_FIXUP_MASK) { |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 221 | fmt->channels = params->ch; |
Subhransu S. Prusty | ea5a137 | 2016-04-14 10:07:36 +0530 | [diff] [blame] | 222 | skl_tplg_update_chmap(fmt, fmt->channels); |
| 223 | } |
Jeeja KP | 98256f8 | 2015-11-23 22:26:25 +0530 | [diff] [blame] | 224 | if (fixup & SKL_FMT_FIXUP_MASK) { |
| 225 | fmt->valid_bit_depth = skl_get_bit_depth(params->s_fmt); |
| 226 | |
| 227 | /* |
| 228 | * 16 bit is 16 bit container whereas 24 bit is in 32 bit |
| 229 | * container so update bit depth accordingly |
| 230 | */ |
| 231 | switch (fmt->valid_bit_depth) { |
| 232 | case SKL_DEPTH_16BIT: |
| 233 | fmt->bit_depth = fmt->valid_bit_depth; |
| 234 | break; |
| 235 | |
| 236 | default: |
| 237 | fmt->bit_depth = SKL_DEPTH_32BIT; |
| 238 | break; |
| 239 | } |
| 240 | } |
| 241 | |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | /* |
| 245 | * A pipeline may have modules which impact the pcm parameters, like SRC, |
| 246 | * channel converter, format converter. |
| 247 | * We need to calculate the output params by applying the 'fixup' |
| 248 | * Topology will tell driver which type of fixup is to be applied by |
| 249 | * supplying the fixup mask, so based on that we calculate the output |
| 250 | * |
| 251 | * Now In FE the pcm hw_params is source/target format. Same is applicable |
| 252 | * for BE with its hw_params invoked. |
| 253 | * here based on FE, BE pipeline and direction we calculate the input and |
| 254 | * outfix and then apply that for a module |
| 255 | */ |
| 256 | static void skl_tplg_update_params_fixup(struct skl_module_cfg *m_cfg, |
| 257 | struct skl_pipe_params *params, bool is_fe) |
| 258 | { |
| 259 | int in_fixup, out_fixup; |
| 260 | struct skl_module_fmt *in_fmt, *out_fmt; |
| 261 | |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 262 | /* Fixups will be applied to pin 0 only */ |
| 263 | in_fmt = &m_cfg->in_fmt[0]; |
| 264 | out_fmt = &m_cfg->out_fmt[0]; |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 265 | |
| 266 | if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 267 | if (is_fe) { |
| 268 | in_fixup = m_cfg->params_fixup; |
| 269 | out_fixup = (~m_cfg->converter) & |
| 270 | m_cfg->params_fixup; |
| 271 | } else { |
| 272 | out_fixup = m_cfg->params_fixup; |
| 273 | in_fixup = (~m_cfg->converter) & |
| 274 | m_cfg->params_fixup; |
| 275 | } |
| 276 | } else { |
| 277 | if (is_fe) { |
| 278 | out_fixup = m_cfg->params_fixup; |
| 279 | in_fixup = (~m_cfg->converter) & |
| 280 | m_cfg->params_fixup; |
| 281 | } else { |
| 282 | in_fixup = m_cfg->params_fixup; |
| 283 | out_fixup = (~m_cfg->converter) & |
| 284 | m_cfg->params_fixup; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | skl_tplg_update_params(in_fmt, params, in_fixup); |
| 289 | skl_tplg_update_params(out_fmt, params, out_fixup); |
| 290 | } |
| 291 | |
| 292 | /* |
| 293 | * A module needs input and output buffers, which are dependent upon pcm |
| 294 | * params, so once we have calculate params, we need buffer calculation as |
| 295 | * well. |
| 296 | */ |
| 297 | static void skl_tplg_update_buffer_size(struct skl_sst *ctx, |
| 298 | struct skl_module_cfg *mcfg) |
| 299 | { |
| 300 | int multiplier = 1; |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 301 | struct skl_module_fmt *in_fmt, *out_fmt; |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 302 | |
| 303 | /* Since fixups is applied to pin 0 only, ibs, obs needs |
| 304 | * change for pin 0 only |
| 305 | */ |
| 306 | in_fmt = &mcfg->in_fmt[0]; |
| 307 | out_fmt = &mcfg->out_fmt[0]; |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 308 | |
| 309 | if (mcfg->m_type == SKL_MODULE_TYPE_SRCINT) |
| 310 | multiplier = 5; |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 311 | |
Takashi Sakamoto | 8e15e76 | 2017-03-06 16:12:22 +0900 | [diff] [blame] | 312 | mcfg->ibs = DIV_ROUND_UP(in_fmt->s_freq, 1000) * |
Takashi Sakamoto | 998d6fb | 2017-03-08 17:47:02 +0900 | [diff] [blame] | 313 | in_fmt->channels * (in_fmt->bit_depth >> 3) * |
Subhransu S. Prusty | f0c8e1d | 2016-04-12 10:31:23 +0530 | [diff] [blame] | 314 | multiplier; |
| 315 | |
Takashi Sakamoto | 998d6fb | 2017-03-08 17:47:02 +0900 | [diff] [blame] | 316 | mcfg->obs = DIV_ROUND_UP(out_fmt->s_freq, 1000) * |
| 317 | out_fmt->channels * (out_fmt->bit_depth >> 3) * |
Subhransu S. Prusty | f0c8e1d | 2016-04-12 10:31:23 +0530 | [diff] [blame] | 318 | multiplier; |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 319 | } |
| 320 | |
Senthilnathan Veppur | db2f586 | 2017-02-09 16:44:01 +0530 | [diff] [blame] | 321 | static u8 skl_tplg_be_dev_type(int dev_type) |
| 322 | { |
| 323 | int ret; |
| 324 | |
| 325 | switch (dev_type) { |
| 326 | case SKL_DEVICE_BT: |
| 327 | ret = NHLT_DEVICE_BT; |
| 328 | break; |
| 329 | |
| 330 | case SKL_DEVICE_DMIC: |
| 331 | ret = NHLT_DEVICE_DMIC; |
| 332 | break; |
| 333 | |
| 334 | case SKL_DEVICE_I2S: |
| 335 | ret = NHLT_DEVICE_I2S; |
| 336 | break; |
| 337 | |
| 338 | default: |
| 339 | ret = NHLT_DEVICE_INVALID; |
| 340 | break; |
| 341 | } |
| 342 | |
| 343 | return ret; |
| 344 | } |
| 345 | |
Jeeja KP | 2d1419a | 2016-02-05 12:19:10 +0530 | [diff] [blame] | 346 | static int skl_tplg_update_be_blob(struct snd_soc_dapm_widget *w, |
| 347 | struct skl_sst *ctx) |
| 348 | { |
| 349 | struct skl_module_cfg *m_cfg = w->priv; |
| 350 | int link_type, dir; |
| 351 | u32 ch, s_freq, s_fmt; |
| 352 | struct nhlt_specific_cfg *cfg; |
| 353 | struct skl *skl = get_skl_ctx(ctx->dev); |
Senthilnathan Veppur | db2f586 | 2017-02-09 16:44:01 +0530 | [diff] [blame] | 354 | u8 dev_type = skl_tplg_be_dev_type(m_cfg->dev_type); |
Jeeja KP | 2d1419a | 2016-02-05 12:19:10 +0530 | [diff] [blame] | 355 | |
| 356 | /* check if we already have blob */ |
| 357 | if (m_cfg->formats_config.caps_size > 0) |
| 358 | return 0; |
| 359 | |
Jeeja KP | c7c6c73 | 2016-03-01 07:59:10 +0530 | [diff] [blame] | 360 | dev_dbg(ctx->dev, "Applying default cfg blob\n"); |
Jeeja KP | 2d1419a | 2016-02-05 12:19:10 +0530 | [diff] [blame] | 361 | switch (m_cfg->dev_type) { |
| 362 | case SKL_DEVICE_DMIC: |
| 363 | link_type = NHLT_LINK_DMIC; |
Jeeja KP | c7c6c73 | 2016-03-01 07:59:10 +0530 | [diff] [blame] | 364 | dir = SNDRV_PCM_STREAM_CAPTURE; |
Jeeja KP | 2d1419a | 2016-02-05 12:19:10 +0530 | [diff] [blame] | 365 | s_freq = m_cfg->in_fmt[0].s_freq; |
| 366 | s_fmt = m_cfg->in_fmt[0].bit_depth; |
| 367 | ch = m_cfg->in_fmt[0].channels; |
| 368 | break; |
| 369 | |
| 370 | case SKL_DEVICE_I2S: |
| 371 | link_type = NHLT_LINK_SSP; |
| 372 | if (m_cfg->hw_conn_type == SKL_CONN_SOURCE) { |
Jeeja KP | c7c6c73 | 2016-03-01 07:59:10 +0530 | [diff] [blame] | 373 | dir = SNDRV_PCM_STREAM_PLAYBACK; |
Jeeja KP | 2d1419a | 2016-02-05 12:19:10 +0530 | [diff] [blame] | 374 | s_freq = m_cfg->out_fmt[0].s_freq; |
| 375 | s_fmt = m_cfg->out_fmt[0].bit_depth; |
| 376 | ch = m_cfg->out_fmt[0].channels; |
Jeeja KP | c7c6c73 | 2016-03-01 07:59:10 +0530 | [diff] [blame] | 377 | } else { |
| 378 | dir = SNDRV_PCM_STREAM_CAPTURE; |
| 379 | s_freq = m_cfg->in_fmt[0].s_freq; |
| 380 | s_fmt = m_cfg->in_fmt[0].bit_depth; |
| 381 | ch = m_cfg->in_fmt[0].channels; |
Jeeja KP | 2d1419a | 2016-02-05 12:19:10 +0530 | [diff] [blame] | 382 | } |
| 383 | break; |
| 384 | |
| 385 | default: |
| 386 | return -EINVAL; |
| 387 | } |
| 388 | |
| 389 | /* update the blob based on virtual bus_id and default params */ |
| 390 | cfg = skl_get_ep_blob(skl, m_cfg->vbus_id, link_type, |
Senthilnathan Veppur | db2f586 | 2017-02-09 16:44:01 +0530 | [diff] [blame] | 391 | s_fmt, ch, s_freq, dir, dev_type); |
Jeeja KP | 2d1419a | 2016-02-05 12:19:10 +0530 | [diff] [blame] | 392 | if (cfg) { |
| 393 | m_cfg->formats_config.caps_size = cfg->size; |
| 394 | m_cfg->formats_config.caps = (u32 *) &cfg->caps; |
| 395 | } else { |
| 396 | dev_err(ctx->dev, "Blob NULL for id %x type %d dirn %d\n", |
| 397 | m_cfg->vbus_id, link_type, dir); |
| 398 | dev_err(ctx->dev, "PCM: ch %d, freq %d, fmt %d\n", |
| 399 | ch, s_freq, s_fmt); |
| 400 | return -EIO; |
| 401 | } |
| 402 | |
| 403 | return 0; |
| 404 | } |
| 405 | |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 406 | static void skl_tplg_update_module_params(struct snd_soc_dapm_widget *w, |
| 407 | struct skl_sst *ctx) |
| 408 | { |
| 409 | struct skl_module_cfg *m_cfg = w->priv; |
| 410 | struct skl_pipe_params *params = m_cfg->pipe->p_params; |
| 411 | int p_conn_type = m_cfg->pipe->conn_type; |
| 412 | bool is_fe; |
| 413 | |
| 414 | if (!m_cfg->params_fixup) |
| 415 | return; |
| 416 | |
| 417 | dev_dbg(ctx->dev, "Mconfig for widget=%s BEFORE updation\n", |
| 418 | w->name); |
| 419 | |
| 420 | skl_dump_mconfig(ctx, m_cfg); |
| 421 | |
| 422 | if (p_conn_type == SKL_PIPE_CONN_TYPE_FE) |
| 423 | is_fe = true; |
| 424 | else |
| 425 | is_fe = false; |
| 426 | |
| 427 | skl_tplg_update_params_fixup(m_cfg, params, is_fe); |
| 428 | skl_tplg_update_buffer_size(ctx, m_cfg); |
| 429 | |
| 430 | dev_dbg(ctx->dev, "Mconfig for widget=%s AFTER updation\n", |
| 431 | w->name); |
| 432 | |
| 433 | skl_dump_mconfig(ctx, m_cfg); |
| 434 | } |
| 435 | |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 436 | /* |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 437 | * some modules can have multiple params set from user control and |
| 438 | * need to be set after module is initialized. If set_param flag is |
| 439 | * set module params will be done after module is initialised. |
| 440 | */ |
| 441 | static int skl_tplg_set_module_params(struct snd_soc_dapm_widget *w, |
| 442 | struct skl_sst *ctx) |
| 443 | { |
| 444 | int i, ret; |
| 445 | struct skl_module_cfg *mconfig = w->priv; |
| 446 | const struct snd_kcontrol_new *k; |
| 447 | struct soc_bytes_ext *sb; |
| 448 | struct skl_algo_data *bc; |
| 449 | struct skl_specific_cfg *sp_cfg; |
| 450 | |
| 451 | if (mconfig->formats_config.caps_size > 0 && |
Jeeja KP | 4ced182 | 2015-12-03 23:29:53 +0530 | [diff] [blame] | 452 | mconfig->formats_config.set_params == SKL_PARAM_SET) { |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 453 | sp_cfg = &mconfig->formats_config; |
| 454 | ret = skl_set_module_params(ctx, sp_cfg->caps, |
| 455 | sp_cfg->caps_size, |
| 456 | sp_cfg->param_id, mconfig); |
| 457 | if (ret < 0) |
| 458 | return ret; |
| 459 | } |
| 460 | |
| 461 | for (i = 0; i < w->num_kcontrols; i++) { |
| 462 | k = &w->kcontrol_news[i]; |
| 463 | if (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 464 | sb = (void *) k->private_value; |
| 465 | bc = (struct skl_algo_data *)sb->dobj.private; |
| 466 | |
Jeeja KP | 4ced182 | 2015-12-03 23:29:53 +0530 | [diff] [blame] | 467 | if (bc->set_params == SKL_PARAM_SET) { |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 468 | ret = skl_set_module_params(ctx, |
Dharageswari R | 0d68210 | 2016-07-08 18:15:03 +0530 | [diff] [blame] | 469 | (u32 *)bc->params, bc->size, |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 470 | bc->param_id, mconfig); |
| 471 | if (ret < 0) |
| 472 | return ret; |
| 473 | } |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | return 0; |
| 478 | } |
| 479 | |
| 480 | /* |
| 481 | * some module param can set from user control and this is required as |
| 482 | * when module is initailzed. if module param is required in init it is |
| 483 | * identifed by set_param flag. if set_param flag is not set, then this |
| 484 | * parameter needs to set as part of module init. |
| 485 | */ |
| 486 | static int skl_tplg_set_module_init_data(struct snd_soc_dapm_widget *w) |
| 487 | { |
| 488 | const struct snd_kcontrol_new *k; |
| 489 | struct soc_bytes_ext *sb; |
| 490 | struct skl_algo_data *bc; |
| 491 | struct skl_module_cfg *mconfig = w->priv; |
| 492 | int i; |
| 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 = (struct soc_bytes_ext *)k->private_value; |
| 498 | bc = (struct skl_algo_data *)sb->dobj.private; |
| 499 | |
Jeeja KP | 4ced182 | 2015-12-03 23:29:53 +0530 | [diff] [blame] | 500 | if (bc->set_params != SKL_PARAM_INIT) |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 501 | continue; |
| 502 | |
| 503 | mconfig->formats_config.caps = (u32 *)&bc->params; |
Dharageswari R | 0d68210 | 2016-07-08 18:15:03 +0530 | [diff] [blame] | 504 | mconfig->formats_config.caps_size = bc->size; |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 505 | |
| 506 | break; |
| 507 | } |
| 508 | } |
| 509 | |
| 510 | return 0; |
| 511 | } |
| 512 | |
Jeeja KP | bb704a73 | 2016-12-08 13:41:14 +0530 | [diff] [blame] | 513 | static int skl_tplg_module_prepare(struct skl_sst *ctx, struct skl_pipe *pipe, |
| 514 | struct snd_soc_dapm_widget *w, struct skl_module_cfg *mcfg) |
| 515 | { |
| 516 | switch (mcfg->dev_type) { |
| 517 | case SKL_DEVICE_HDAHOST: |
| 518 | return skl_pcm_host_dma_prepare(ctx->dev, pipe->p_params); |
| 519 | |
| 520 | case SKL_DEVICE_HDALINK: |
| 521 | return skl_pcm_link_dma_prepare(ctx->dev, pipe->p_params); |
| 522 | } |
| 523 | |
| 524 | return 0; |
| 525 | } |
| 526 | |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 527 | /* |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 528 | * Inside a pipe instance, we can have various modules. These modules need |
| 529 | * to instantiated in DSP by invoking INIT_MODULE IPC, which is achieved by |
| 530 | * skl_init_module() routine, so invoke that for all modules in a pipeline |
| 531 | */ |
| 532 | static int |
| 533 | skl_tplg_init_pipe_modules(struct skl *skl, struct skl_pipe *pipe) |
| 534 | { |
| 535 | struct skl_pipe_module *w_module; |
| 536 | struct snd_soc_dapm_widget *w; |
| 537 | struct skl_module_cfg *mconfig; |
| 538 | struct skl_sst *ctx = skl->skl_sst; |
| 539 | int ret = 0; |
| 540 | |
| 541 | list_for_each_entry(w_module, &pipe->w_list, node) { |
| 542 | w = w_module->w; |
| 543 | mconfig = w->priv; |
| 544 | |
Vinod Koul | b7c5055 | 2016-07-26 18:06:40 +0530 | [diff] [blame] | 545 | /* check if module ids are populated */ |
| 546 | if (mconfig->id.module_id < 0) { |
Vinod Koul | a657ae7 | 2016-08-10 09:40:50 +0530 | [diff] [blame] | 547 | dev_err(skl->skl_sst->dev, |
| 548 | "module %pUL id not populated\n", |
| 549 | (uuid_le *)mconfig->guid); |
| 550 | return -EIO; |
Vinod Koul | b7c5055 | 2016-07-26 18:06:40 +0530 | [diff] [blame] | 551 | } |
| 552 | |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 553 | /* check resource available */ |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 554 | if (!skl_is_pipe_mcps_avail(skl, mconfig)) |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 555 | return -ENOMEM; |
| 556 | |
Dharageswari R | 6c5768b | 2015-12-03 23:29:50 +0530 | [diff] [blame] | 557 | if (mconfig->is_loadable && ctx->dsp->fw_ops.load_mod) { |
| 558 | ret = ctx->dsp->fw_ops.load_mod(ctx->dsp, |
| 559 | mconfig->id.module_id, mconfig->guid); |
| 560 | if (ret < 0) |
| 561 | return ret; |
Jeeja KP | d643678 | 2016-03-28 22:11:30 +0530 | [diff] [blame] | 562 | |
| 563 | mconfig->m_state = SKL_MODULE_LOADED; |
Dharageswari R | 6c5768b | 2015-12-03 23:29:50 +0530 | [diff] [blame] | 564 | } |
| 565 | |
Jeeja KP | bb704a73 | 2016-12-08 13:41:14 +0530 | [diff] [blame] | 566 | /* prepare the DMA if the module is gateway cpr */ |
| 567 | ret = skl_tplg_module_prepare(ctx, pipe, w, mconfig); |
| 568 | if (ret < 0) |
| 569 | return ret; |
| 570 | |
Jeeja KP | 2d1419a | 2016-02-05 12:19:10 +0530 | [diff] [blame] | 571 | /* update blob if blob is null for be with default value */ |
| 572 | skl_tplg_update_be_blob(w, ctx); |
| 573 | |
Jeeja KP | f7590d4 | 2015-10-07 11:31:53 +0100 | [diff] [blame] | 574 | /* |
| 575 | * apply fix/conversion to module params based on |
| 576 | * FE/BE params |
| 577 | */ |
| 578 | skl_tplg_update_module_params(w, ctx); |
Dharageswari R | ef2a352 | 2016-09-22 14:00:38 +0530 | [diff] [blame] | 579 | mconfig->id.pvt_id = skl_get_pvt_id(ctx, mconfig); |
| 580 | if (mconfig->id.pvt_id < 0) |
| 581 | return ret; |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 582 | skl_tplg_set_module_init_data(w); |
Jeeja KP | 9939a9c | 2015-11-28 15:01:47 +0530 | [diff] [blame] | 583 | ret = skl_init_module(ctx, mconfig); |
Dharageswari R | ef2a352 | 2016-09-22 14:00:38 +0530 | [diff] [blame] | 584 | if (ret < 0) { |
| 585 | skl_put_pvt_id(ctx, mconfig); |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 586 | return ret; |
Dharageswari R | ef2a352 | 2016-09-22 14:00:38 +0530 | [diff] [blame] | 587 | } |
Dharageswari R | 260eb73 | 2016-06-03 18:29:38 +0530 | [diff] [blame] | 588 | skl_tplg_alloc_pipe_mcps(skl, mconfig); |
Jeeja KP | abb7400 | 2015-11-28 15:01:49 +0530 | [diff] [blame] | 589 | ret = skl_tplg_set_module_params(w, ctx); |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 590 | if (ret < 0) |
| 591 | return ret; |
| 592 | } |
| 593 | |
| 594 | return 0; |
| 595 | } |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 596 | |
Dharageswari R | 6c5768b | 2015-12-03 23:29:50 +0530 | [diff] [blame] | 597 | static int skl_tplg_unload_pipe_modules(struct skl_sst *ctx, |
| 598 | struct skl_pipe *pipe) |
| 599 | { |
Dharageswari R | b0fab9c | 2016-08-24 18:03:16 +0530 | [diff] [blame] | 600 | int ret; |
Dharageswari R | 6c5768b | 2015-12-03 23:29:50 +0530 | [diff] [blame] | 601 | struct skl_pipe_module *w_module = NULL; |
| 602 | struct skl_module_cfg *mconfig = NULL; |
| 603 | |
| 604 | list_for_each_entry(w_module, &pipe->w_list, node) { |
| 605 | mconfig = w_module->w->priv; |
| 606 | |
Jeeja KP | d643678 | 2016-03-28 22:11:30 +0530 | [diff] [blame] | 607 | if (mconfig->is_loadable && ctx->dsp->fw_ops.unload_mod && |
Dharageswari R | b0fab9c | 2016-08-24 18:03:16 +0530 | [diff] [blame] | 608 | mconfig->m_state > SKL_MODULE_UNINIT) { |
| 609 | ret = ctx->dsp->fw_ops.unload_mod(ctx->dsp, |
Dharageswari R | 6c5768b | 2015-12-03 23:29:50 +0530 | [diff] [blame] | 610 | mconfig->id.module_id); |
Dharageswari R | b0fab9c | 2016-08-24 18:03:16 +0530 | [diff] [blame] | 611 | if (ret < 0) |
| 612 | return -EIO; |
| 613 | } |
Dharageswari R | ef2a352 | 2016-09-22 14:00:38 +0530 | [diff] [blame] | 614 | skl_put_pvt_id(ctx, mconfig); |
Dharageswari R | 6c5768b | 2015-12-03 23:29:50 +0530 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | /* no modules to unload in this path, so return */ |
| 618 | return 0; |
| 619 | } |
| 620 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 621 | /* |
| 622 | * Mixer module represents a pipeline. So in the Pre-PMU event of mixer we |
| 623 | * need create the pipeline. So we do following: |
| 624 | * - check the resources |
| 625 | * - Create the pipeline |
| 626 | * - Initialize the modules in pipeline |
| 627 | * - finally bind all modules together |
| 628 | */ |
| 629 | static int skl_tplg_mixer_dapm_pre_pmu_event(struct snd_soc_dapm_widget *w, |
| 630 | struct skl *skl) |
| 631 | { |
| 632 | int ret; |
| 633 | struct skl_module_cfg *mconfig = w->priv; |
| 634 | struct skl_pipe_module *w_module; |
| 635 | struct skl_pipe *s_pipe = mconfig->pipe; |
| 636 | struct skl_module_cfg *src_module = NULL, *dst_module; |
| 637 | struct skl_sst *ctx = skl->skl_sst; |
| 638 | |
| 639 | /* check resource available */ |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 640 | if (!skl_is_pipe_mcps_avail(skl, mconfig)) |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 641 | return -EBUSY; |
| 642 | |
Dharageswari.R | 9ba8ffe | 2016-02-03 17:59:47 +0530 | [diff] [blame] | 643 | if (!skl_is_pipe_mem_avail(skl, mconfig)) |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 644 | return -ENOMEM; |
| 645 | |
| 646 | /* |
| 647 | * Create a list of modules for pipe. |
| 648 | * This list contains modules from source to sink |
| 649 | */ |
| 650 | ret = skl_create_pipeline(ctx, mconfig->pipe); |
| 651 | if (ret < 0) |
| 652 | return ret; |
| 653 | |
Dharageswari R | 260eb73 | 2016-06-03 18:29:38 +0530 | [diff] [blame] | 654 | skl_tplg_alloc_pipe_mem(skl, mconfig); |
| 655 | skl_tplg_alloc_pipe_mcps(skl, mconfig); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 656 | |
| 657 | /* Init all pipe modules from source to sink */ |
| 658 | ret = skl_tplg_init_pipe_modules(skl, s_pipe); |
| 659 | if (ret < 0) |
| 660 | return ret; |
| 661 | |
| 662 | /* Bind modules from source to sink */ |
| 663 | list_for_each_entry(w_module, &s_pipe->w_list, node) { |
| 664 | dst_module = w_module->w->priv; |
| 665 | |
| 666 | if (src_module == NULL) { |
| 667 | src_module = dst_module; |
| 668 | continue; |
| 669 | } |
| 670 | |
| 671 | ret = skl_bind_modules(ctx, src_module, dst_module); |
| 672 | if (ret < 0) |
| 673 | return ret; |
| 674 | |
| 675 | src_module = dst_module; |
| 676 | } |
| 677 | |
| 678 | return 0; |
| 679 | } |
| 680 | |
Dharageswari R | bf3e5ef | 2017-03-13 22:11:32 +0530 | [diff] [blame] | 681 | static int skl_fill_sink_instance_id(struct skl_sst *ctx, u32 *params, |
| 682 | int size, struct skl_module_cfg *mcfg) |
Dharageswari R | 5e8f0ee | 2016-09-22 14:00:40 +0530 | [diff] [blame] | 683 | { |
Dharageswari R | 5e8f0ee | 2016-09-22 14:00:40 +0530 | [diff] [blame] | 684 | int i, pvt_id; |
| 685 | |
Dharageswari R | bf3e5ef | 2017-03-13 22:11:32 +0530 | [diff] [blame] | 686 | if (mcfg->m_type == SKL_MODULE_TYPE_KPB) { |
| 687 | struct skl_kpb_params *kpb_params = |
| 688 | (struct skl_kpb_params *)params; |
| 689 | struct skl_mod_inst_map *inst = kpb_params->map; |
Dharageswari R | 5e8f0ee | 2016-09-22 14:00:40 +0530 | [diff] [blame] | 690 | |
Dharageswari R | bf3e5ef | 2017-03-13 22:11:32 +0530 | [diff] [blame] | 691 | for (i = 0; i < kpb_params->num_modules; i++) { |
| 692 | pvt_id = skl_get_pvt_instance_id_map(ctx, inst->mod_id, |
| 693 | inst->inst_id); |
| 694 | if (pvt_id < 0) |
| 695 | return -EINVAL; |
| 696 | |
| 697 | inst->inst_id = pvt_id; |
| 698 | inst++; |
| 699 | } |
Dharageswari R | 5e8f0ee | 2016-09-22 14:00:40 +0530 | [diff] [blame] | 700 | } |
Dharageswari R | bf3e5ef | 2017-03-13 22:11:32 +0530 | [diff] [blame] | 701 | |
Dharageswari R | 5e8f0ee | 2016-09-22 14:00:40 +0530 | [diff] [blame] | 702 | return 0; |
| 703 | } |
Jeeja KP | cc6a404 | 2016-02-05 12:19:08 +0530 | [diff] [blame] | 704 | /* |
| 705 | * Some modules require params to be set after the module is bound to |
| 706 | * all pins connected. |
| 707 | * |
| 708 | * The module provider initializes set_param flag for such modules and we |
| 709 | * send params after binding |
| 710 | */ |
| 711 | static int skl_tplg_set_module_bind_params(struct snd_soc_dapm_widget *w, |
| 712 | struct skl_module_cfg *mcfg, struct skl_sst *ctx) |
| 713 | { |
| 714 | int i, ret; |
| 715 | struct skl_module_cfg *mconfig = w->priv; |
| 716 | const struct snd_kcontrol_new *k; |
| 717 | struct soc_bytes_ext *sb; |
| 718 | struct skl_algo_data *bc; |
| 719 | struct skl_specific_cfg *sp_cfg; |
Dharageswari R | bf3e5ef | 2017-03-13 22:11:32 +0530 | [diff] [blame] | 720 | u32 *params; |
Jeeja KP | cc6a404 | 2016-02-05 12:19:08 +0530 | [diff] [blame] | 721 | |
| 722 | /* |
| 723 | * check all out/in pins are in bind state. |
| 724 | * if so set the module param |
| 725 | */ |
| 726 | for (i = 0; i < mcfg->max_out_queue; i++) { |
| 727 | if (mcfg->m_out_pin[i].pin_state != SKL_PIN_BIND_DONE) |
| 728 | return 0; |
| 729 | } |
| 730 | |
| 731 | for (i = 0; i < mcfg->max_in_queue; i++) { |
| 732 | if (mcfg->m_in_pin[i].pin_state != SKL_PIN_BIND_DONE) |
| 733 | return 0; |
| 734 | } |
| 735 | |
| 736 | if (mconfig->formats_config.caps_size > 0 && |
| 737 | mconfig->formats_config.set_params == SKL_PARAM_BIND) { |
| 738 | sp_cfg = &mconfig->formats_config; |
| 739 | ret = skl_set_module_params(ctx, sp_cfg->caps, |
| 740 | sp_cfg->caps_size, |
| 741 | sp_cfg->param_id, mconfig); |
| 742 | if (ret < 0) |
| 743 | return ret; |
| 744 | } |
| 745 | |
| 746 | for (i = 0; i < w->num_kcontrols; i++) { |
| 747 | k = &w->kcontrol_news[i]; |
| 748 | if (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 749 | sb = (void *) k->private_value; |
| 750 | bc = (struct skl_algo_data *)sb->dobj.private; |
| 751 | |
| 752 | if (bc->set_params == SKL_PARAM_BIND) { |
Dharageswari R | bf3e5ef | 2017-03-13 22:11:32 +0530 | [diff] [blame] | 753 | params = kzalloc(bc->max, GFP_KERNEL); |
| 754 | if (!params) |
| 755 | return -ENOMEM; |
| 756 | |
| 757 | memcpy(params, bc->params, bc->max); |
| 758 | skl_fill_sink_instance_id(ctx, params, bc->max, |
| 759 | mconfig); |
| 760 | |
| 761 | ret = skl_set_module_params(ctx, params, |
| 762 | bc->max, bc->param_id, mconfig); |
| 763 | kfree(params); |
| 764 | |
Jeeja KP | cc6a404 | 2016-02-05 12:19:08 +0530 | [diff] [blame] | 765 | if (ret < 0) |
| 766 | return ret; |
| 767 | } |
| 768 | } |
| 769 | } |
| 770 | |
| 771 | return 0; |
| 772 | } |
| 773 | |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 774 | static int skl_tplg_bind_sinks(struct snd_soc_dapm_widget *w, |
| 775 | struct skl *skl, |
Jeeja KP | 6bd4cf8 | 2016-02-03 17:59:51 +0530 | [diff] [blame] | 776 | struct snd_soc_dapm_widget *src_w, |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 777 | struct skl_module_cfg *src_mconfig) |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 778 | { |
| 779 | struct snd_soc_dapm_path *p; |
Jeeja KP | 0ed95d7 | 2015-11-13 19:22:11 +0530 | [diff] [blame] | 780 | struct snd_soc_dapm_widget *sink = NULL, *next_sink = NULL; |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 781 | struct skl_module_cfg *sink_mconfig; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 782 | struct skl_sst *ctx = skl->skl_sst; |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 783 | int ret; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 784 | |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 785 | snd_soc_dapm_widget_for_each_sink_path(w, p) { |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 786 | if (!p->connect) |
| 787 | continue; |
| 788 | |
| 789 | dev_dbg(ctx->dev, "%s: src widget=%s\n", __func__, w->name); |
| 790 | dev_dbg(ctx->dev, "%s: sink widget=%s\n", __func__, p->sink->name); |
| 791 | |
Jeeja KP | 0ed95d7 | 2015-11-13 19:22:11 +0530 | [diff] [blame] | 792 | next_sink = p->sink; |
Jeeja KP | 6bd4cf8 | 2016-02-03 17:59:51 +0530 | [diff] [blame] | 793 | |
| 794 | if (!is_skl_dsp_widget_type(p->sink)) |
| 795 | return skl_tplg_bind_sinks(p->sink, skl, src_w, src_mconfig); |
| 796 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 797 | /* |
| 798 | * here we will check widgets in sink pipelines, so that |
| 799 | * can be any widgets type and we are only interested if |
| 800 | * they are ones used for SKL so check that first |
| 801 | */ |
| 802 | if ((p->sink->priv != NULL) && |
| 803 | is_skl_dsp_widget_type(p->sink)) { |
| 804 | |
| 805 | sink = p->sink; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 806 | sink_mconfig = sink->priv; |
| 807 | |
Jeeja KP | cc6a404 | 2016-02-05 12:19:08 +0530 | [diff] [blame] | 808 | if (src_mconfig->m_state == SKL_MODULE_UNINIT || |
| 809 | sink_mconfig->m_state == SKL_MODULE_UNINIT) |
| 810 | continue; |
| 811 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 812 | /* Bind source to sink, mixin is always source */ |
| 813 | ret = skl_bind_modules(ctx, src_mconfig, sink_mconfig); |
| 814 | if (ret) |
| 815 | return ret; |
| 816 | |
Jeeja KP | cc6a404 | 2016-02-05 12:19:08 +0530 | [diff] [blame] | 817 | /* set module params after bind */ |
| 818 | skl_tplg_set_module_bind_params(src_w, src_mconfig, ctx); |
| 819 | skl_tplg_set_module_bind_params(sink, sink_mconfig, ctx); |
| 820 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 821 | /* Start sinks pipe first */ |
| 822 | if (sink_mconfig->pipe->state != SKL_PIPE_STARTED) { |
Jeeja KP | d1730c3 | 2015-10-27 09:22:53 +0900 | [diff] [blame] | 823 | if (sink_mconfig->pipe->conn_type != |
| 824 | SKL_PIPE_CONN_TYPE_FE) |
| 825 | ret = skl_run_pipe(ctx, |
| 826 | sink_mconfig->pipe); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 827 | if (ret) |
| 828 | return ret; |
| 829 | } |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 830 | } |
| 831 | } |
| 832 | |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 833 | if (!sink) |
Jeeja KP | 6bd4cf8 | 2016-02-03 17:59:51 +0530 | [diff] [blame] | 834 | return skl_tplg_bind_sinks(next_sink, skl, src_w, src_mconfig); |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 835 | |
| 836 | return 0; |
| 837 | } |
| 838 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 839 | /* |
| 840 | * A PGA represents a module in a pipeline. So in the Pre-PMU event of PGA |
| 841 | * we need to do following: |
| 842 | * - Bind to sink pipeline |
| 843 | * Since the sink pipes can be running and we don't get mixer event on |
| 844 | * connect for already running mixer, we need to find the sink pipes |
| 845 | * here and bind to them. This way dynamic connect works. |
| 846 | * - Start sink pipeline, if not running |
| 847 | * - Then run current pipe |
| 848 | */ |
| 849 | static int skl_tplg_pga_dapm_pre_pmu_event(struct snd_soc_dapm_widget *w, |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 850 | struct skl *skl) |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 851 | { |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 852 | struct skl_module_cfg *src_mconfig; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 853 | struct skl_sst *ctx = skl->skl_sst; |
| 854 | int ret = 0; |
| 855 | |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 856 | src_mconfig = w->priv; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 857 | |
| 858 | /* |
| 859 | * find which sink it is connected to, bind with the sink, |
| 860 | * if sink is not started, start sink pipe first, then start |
| 861 | * this pipe |
| 862 | */ |
Jeeja KP | 6bd4cf8 | 2016-02-03 17:59:51 +0530 | [diff] [blame] | 863 | ret = skl_tplg_bind_sinks(w, skl, w, src_mconfig); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 864 | if (ret) |
| 865 | return ret; |
| 866 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 867 | /* Start source pipe last after starting all sinks */ |
Jeeja KP | d1730c3 | 2015-10-27 09:22:53 +0900 | [diff] [blame] | 868 | if (src_mconfig->pipe->conn_type != SKL_PIPE_CONN_TYPE_FE) |
| 869 | return skl_run_pipe(ctx, src_mconfig->pipe); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 870 | |
| 871 | return 0; |
| 872 | } |
| 873 | |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 874 | static struct snd_soc_dapm_widget *skl_get_src_dsp_widget( |
| 875 | struct snd_soc_dapm_widget *w, struct skl *skl) |
| 876 | { |
| 877 | struct snd_soc_dapm_path *p; |
| 878 | struct snd_soc_dapm_widget *src_w = NULL; |
| 879 | struct skl_sst *ctx = skl->skl_sst; |
| 880 | |
| 881 | snd_soc_dapm_widget_for_each_source_path(w, p) { |
| 882 | src_w = p->source; |
| 883 | if (!p->connect) |
| 884 | continue; |
| 885 | |
| 886 | dev_dbg(ctx->dev, "sink widget=%s\n", w->name); |
| 887 | dev_dbg(ctx->dev, "src widget=%s\n", p->source->name); |
| 888 | |
| 889 | /* |
| 890 | * here we will check widgets in sink pipelines, so that can |
| 891 | * be any widgets type and we are only interested if they are |
| 892 | * ones used for SKL so check that first |
| 893 | */ |
| 894 | if ((p->source->priv != NULL) && |
| 895 | is_skl_dsp_widget_type(p->source)) { |
| 896 | return p->source; |
| 897 | } |
| 898 | } |
| 899 | |
| 900 | if (src_w != NULL) |
| 901 | return skl_get_src_dsp_widget(src_w, skl); |
| 902 | |
| 903 | return NULL; |
| 904 | } |
| 905 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 906 | /* |
| 907 | * in the Post-PMU event of mixer we need to do following: |
| 908 | * - Check if this pipe is running |
| 909 | * - if not, then |
| 910 | * - bind this pipeline to its source pipeline |
| 911 | * if source pipe is already running, this means it is a dynamic |
| 912 | * connection and we need to bind only to that pipe |
| 913 | * - start this pipeline |
| 914 | */ |
| 915 | static int skl_tplg_mixer_dapm_post_pmu_event(struct snd_soc_dapm_widget *w, |
| 916 | struct skl *skl) |
| 917 | { |
| 918 | int ret = 0; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 919 | struct snd_soc_dapm_widget *source, *sink; |
| 920 | struct skl_module_cfg *src_mconfig, *sink_mconfig; |
| 921 | struct skl_sst *ctx = skl->skl_sst; |
| 922 | int src_pipe_started = 0; |
| 923 | |
| 924 | sink = w; |
| 925 | sink_mconfig = sink->priv; |
| 926 | |
| 927 | /* |
| 928 | * If source pipe is already started, that means source is driving |
| 929 | * one more sink before this sink got connected, Since source is |
| 930 | * started, bind this sink to source and start this pipe. |
| 931 | */ |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 932 | source = skl_get_src_dsp_widget(w, skl); |
| 933 | if (source != NULL) { |
| 934 | src_mconfig = source->priv; |
| 935 | sink_mconfig = sink->priv; |
| 936 | src_pipe_started = 1; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 937 | |
| 938 | /* |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 939 | * check pipe state, then no need to bind or start the |
| 940 | * pipe |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 941 | */ |
Jeeja KP | 8724ff1 | 2015-10-27 09:22:52 +0900 | [diff] [blame] | 942 | if (src_mconfig->pipe->state != SKL_PIPE_STARTED) |
| 943 | src_pipe_started = 0; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 944 | } |
| 945 | |
| 946 | if (src_pipe_started) { |
| 947 | ret = skl_bind_modules(ctx, src_mconfig, sink_mconfig); |
| 948 | if (ret) |
| 949 | return ret; |
| 950 | |
Jeeja KP | cc6a404 | 2016-02-05 12:19:08 +0530 | [diff] [blame] | 951 | /* set module params after bind */ |
| 952 | skl_tplg_set_module_bind_params(source, src_mconfig, ctx); |
| 953 | skl_tplg_set_module_bind_params(sink, sink_mconfig, ctx); |
| 954 | |
Jeeja KP | d1730c3 | 2015-10-27 09:22:53 +0900 | [diff] [blame] | 955 | if (sink_mconfig->pipe->conn_type != SKL_PIPE_CONN_TYPE_FE) |
| 956 | ret = skl_run_pipe(ctx, sink_mconfig->pipe); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 957 | } |
| 958 | |
| 959 | return ret; |
| 960 | } |
| 961 | |
| 962 | /* |
| 963 | * in the Pre-PMD event of mixer we need to do following: |
| 964 | * - Stop the pipe |
| 965 | * - find the source connections and remove that from dapm_path_list |
| 966 | * - unbind with source pipelines if still connected |
| 967 | */ |
| 968 | static int skl_tplg_mixer_dapm_pre_pmd_event(struct snd_soc_dapm_widget *w, |
| 969 | struct skl *skl) |
| 970 | { |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 971 | struct skl_module_cfg *src_mconfig, *sink_mconfig; |
Jeeja KP | ce1b555 | 2015-10-27 09:22:51 +0900 | [diff] [blame] | 972 | int ret = 0, i; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 973 | struct skl_sst *ctx = skl->skl_sst; |
| 974 | |
Jeeja KP | ce1b555 | 2015-10-27 09:22:51 +0900 | [diff] [blame] | 975 | sink_mconfig = w->priv; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 976 | |
| 977 | /* Stop the pipe */ |
| 978 | ret = skl_stop_pipe(ctx, sink_mconfig->pipe); |
| 979 | if (ret) |
| 980 | return ret; |
| 981 | |
Jeeja KP | ce1b555 | 2015-10-27 09:22:51 +0900 | [diff] [blame] | 982 | for (i = 0; i < sink_mconfig->max_in_queue; i++) { |
| 983 | if (sink_mconfig->m_in_pin[i].pin_state == SKL_PIN_BIND_DONE) { |
| 984 | src_mconfig = sink_mconfig->m_in_pin[i].tgt_mcfg; |
| 985 | if (!src_mconfig) |
| 986 | continue; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 987 | |
Jeeja KP | ce1b555 | 2015-10-27 09:22:51 +0900 | [diff] [blame] | 988 | ret = skl_unbind_modules(ctx, |
| 989 | src_mconfig, sink_mconfig); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 990 | } |
| 991 | } |
| 992 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 993 | return ret; |
| 994 | } |
| 995 | |
| 996 | /* |
| 997 | * in the Post-PMD event of mixer we need to do following: |
| 998 | * - Free the mcps used |
| 999 | * - Free the mem used |
| 1000 | * - Unbind the modules within the pipeline |
| 1001 | * - Delete the pipeline (modules are not required to be explicitly |
| 1002 | * deleted, pipeline delete is enough here |
| 1003 | */ |
| 1004 | static int skl_tplg_mixer_dapm_post_pmd_event(struct snd_soc_dapm_widget *w, |
| 1005 | struct skl *skl) |
| 1006 | { |
| 1007 | struct skl_module_cfg *mconfig = w->priv; |
| 1008 | struct skl_pipe_module *w_module; |
| 1009 | struct skl_module_cfg *src_module = NULL, *dst_module; |
| 1010 | struct skl_sst *ctx = skl->skl_sst; |
| 1011 | struct skl_pipe *s_pipe = mconfig->pipe; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1012 | |
Dharageswari R | 260eb73 | 2016-06-03 18:29:38 +0530 | [diff] [blame] | 1013 | if (s_pipe->state == SKL_PIPE_INVALID) |
| 1014 | return -EINVAL; |
| 1015 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1016 | skl_tplg_free_pipe_mcps(skl, mconfig); |
Vinod Koul | 6597687 | 2015-11-23 22:26:29 +0530 | [diff] [blame] | 1017 | skl_tplg_free_pipe_mem(skl, mconfig); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1018 | |
| 1019 | list_for_each_entry(w_module, &s_pipe->w_list, node) { |
| 1020 | dst_module = w_module->w->priv; |
| 1021 | |
Dharageswari R | 260eb73 | 2016-06-03 18:29:38 +0530 | [diff] [blame] | 1022 | if (mconfig->m_state >= SKL_MODULE_INIT_DONE) |
| 1023 | skl_tplg_free_pipe_mcps(skl, dst_module); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1024 | if (src_module == NULL) { |
| 1025 | src_module = dst_module; |
| 1026 | continue; |
| 1027 | } |
| 1028 | |
Guneshwor Singh | 7ca42f5 | 2016-02-03 17:59:46 +0530 | [diff] [blame] | 1029 | skl_unbind_modules(ctx, src_module, dst_module); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1030 | src_module = dst_module; |
| 1031 | } |
| 1032 | |
Vinod Koul | 547cafa | 2016-12-08 23:01:24 +0530 | [diff] [blame] | 1033 | skl_delete_pipe(ctx, mconfig->pipe); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1034 | |
Dharageswari R | 6c5768b | 2015-12-03 23:29:50 +0530 | [diff] [blame] | 1035 | return skl_tplg_unload_pipe_modules(ctx, s_pipe); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | /* |
| 1039 | * in the Post-PMD event of PGA we need to do following: |
| 1040 | * - Free the mcps used |
| 1041 | * - Stop the pipeline |
| 1042 | * - In source pipe is connected, unbind with source pipelines |
| 1043 | */ |
| 1044 | static int skl_tplg_pga_dapm_post_pmd_event(struct snd_soc_dapm_widget *w, |
| 1045 | struct skl *skl) |
| 1046 | { |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1047 | struct skl_module_cfg *src_mconfig, *sink_mconfig; |
Jeeja KP | ce1b555 | 2015-10-27 09:22:51 +0900 | [diff] [blame] | 1048 | int ret = 0, i; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1049 | struct skl_sst *ctx = skl->skl_sst; |
| 1050 | |
Jeeja KP | ce1b555 | 2015-10-27 09:22:51 +0900 | [diff] [blame] | 1051 | src_mconfig = w->priv; |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1052 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1053 | /* Stop the pipe since this is a mixin module */ |
| 1054 | ret = skl_stop_pipe(ctx, src_mconfig->pipe); |
| 1055 | if (ret) |
| 1056 | return ret; |
| 1057 | |
Jeeja KP | ce1b555 | 2015-10-27 09:22:51 +0900 | [diff] [blame] | 1058 | for (i = 0; i < src_mconfig->max_out_queue; i++) { |
| 1059 | if (src_mconfig->m_out_pin[i].pin_state == SKL_PIN_BIND_DONE) { |
| 1060 | sink_mconfig = src_mconfig->m_out_pin[i].tgt_mcfg; |
| 1061 | if (!sink_mconfig) |
| 1062 | continue; |
| 1063 | /* |
| 1064 | * This is a connecter and if path is found that means |
| 1065 | * unbind between source and sink has not happened yet |
| 1066 | */ |
Jeeja KP | ce1b555 | 2015-10-27 09:22:51 +0900 | [diff] [blame] | 1067 | ret = skl_unbind_modules(ctx, src_mconfig, |
| 1068 | sink_mconfig); |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1069 | } |
| 1070 | } |
| 1071 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1072 | return ret; |
| 1073 | } |
| 1074 | |
| 1075 | /* |
| 1076 | * In modelling, we assume there will be ONLY one mixer in a pipeline. If |
| 1077 | * mixer is not required then it is treated as static mixer aka vmixer with |
| 1078 | * a hard path to source module |
| 1079 | * So we don't need to check if source is started or not as hard path puts |
| 1080 | * dependency on each other |
| 1081 | */ |
| 1082 | static int skl_tplg_vmixer_event(struct snd_soc_dapm_widget *w, |
| 1083 | struct snd_kcontrol *k, int event) |
| 1084 | { |
| 1085 | struct snd_soc_dapm_context *dapm = w->dapm; |
| 1086 | struct skl *skl = get_skl_ctx(dapm->dev); |
| 1087 | |
| 1088 | switch (event) { |
| 1089 | case SND_SOC_DAPM_PRE_PMU: |
| 1090 | return skl_tplg_mixer_dapm_pre_pmu_event(w, skl); |
| 1091 | |
Jeeja KP | de1fedf | 2016-02-03 17:59:52 +0530 | [diff] [blame] | 1092 | case SND_SOC_DAPM_POST_PMU: |
| 1093 | return skl_tplg_mixer_dapm_post_pmu_event(w, skl); |
| 1094 | |
| 1095 | case SND_SOC_DAPM_PRE_PMD: |
| 1096 | return skl_tplg_mixer_dapm_pre_pmd_event(w, skl); |
| 1097 | |
Vinod Koul | d93f8e5 | 2015-10-07 11:31:54 +0100 | [diff] [blame] | 1098 | case SND_SOC_DAPM_POST_PMD: |
| 1099 | return skl_tplg_mixer_dapm_post_pmd_event(w, skl); |
| 1100 | } |
| 1101 | |
| 1102 | return 0; |
| 1103 | } |
| 1104 | |
| 1105 | /* |
| 1106 | * In modelling, we assume there will be ONLY one mixer in a pipeline. If a |
| 1107 | * second one is required that is created as another pipe entity. |
| 1108 | * The mixer is responsible for pipe management and represent a pipeline |
| 1109 | * instance |
| 1110 | */ |
| 1111 | static int skl_tplg_mixer_event(struct snd_soc_dapm_widget *w, |
| 1112 | struct snd_kcontrol *k, int event) |
| 1113 | { |
| 1114 | struct snd_soc_dapm_context *dapm = w->dapm; |
| 1115 | struct skl *skl = get_skl_ctx(dapm->dev); |
| 1116 | |
| 1117 | switch (event) { |
| 1118 | case SND_SOC_DAPM_PRE_PMU: |
| 1119 | return skl_tplg_mixer_dapm_pre_pmu_event(w, skl); |
| 1120 | |
| 1121 | case SND_SOC_DAPM_POST_PMU: |
| 1122 | return skl_tplg_mixer_dapm_post_pmu_event(w, skl); |
| 1123 | |
| 1124 | case SND_SOC_DAPM_PRE_PMD: |
| 1125 | return skl_tplg_mixer_dapm_pre_pmd_event(w, skl); |
| 1126 | |
| 1127 | case SND_SOC_DAPM_POST_PMD: |
| 1128 | return skl_tplg_mixer_dapm_post_pmd_event(w, skl); |
| 1129 | } |
| 1130 | |
| 1131 | return 0; |
| 1132 | } |
| 1133 | |
| 1134 | /* |
| 1135 | * In modelling, we assumed rest of the modules in pipeline are PGA. But we |
| 1136 | * are interested in last PGA (leaf PGA) in a pipeline to disconnect with |
| 1137 | * the sink when it is running (two FE to one BE or one FE to two BE) |
| 1138 | * scenarios |
| 1139 | */ |
| 1140 | static int skl_tplg_pga_event(struct snd_soc_dapm_widget *w, |
| 1141 | struct snd_kcontrol *k, int event) |
| 1142 | |
| 1143 | { |
| 1144 | struct snd_soc_dapm_context *dapm = w->dapm; |
| 1145 | struct skl *skl = get_skl_ctx(dapm->dev); |
| 1146 | |
| 1147 | switch (event) { |
| 1148 | case SND_SOC_DAPM_PRE_PMU: |
| 1149 | return skl_tplg_pga_dapm_pre_pmu_event(w, skl); |
| 1150 | |
| 1151 | case SND_SOC_DAPM_POST_PMD: |
| 1152 | return skl_tplg_pga_dapm_post_pmd_event(w, skl); |
| 1153 | } |
| 1154 | |
| 1155 | return 0; |
| 1156 | } |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1157 | |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1158 | static int skl_tplg_tlv_control_get(struct snd_kcontrol *kcontrol, |
| 1159 | unsigned int __user *data, unsigned int size) |
| 1160 | { |
| 1161 | struct soc_bytes_ext *sb = |
| 1162 | (struct soc_bytes_ext *)kcontrol->private_value; |
| 1163 | struct skl_algo_data *bc = (struct skl_algo_data *)sb->dobj.private; |
Omair M Abdullah | 7d9f291 | 2015-12-03 23:29:56 +0530 | [diff] [blame] | 1164 | struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol); |
| 1165 | struct skl_module_cfg *mconfig = w->priv; |
| 1166 | struct skl *skl = get_skl_ctx(w->dapm->dev); |
| 1167 | |
| 1168 | if (w->power) |
| 1169 | skl_get_module_params(skl->skl_sst, (u32 *)bc->params, |
Dharageswari R | 0d68210 | 2016-07-08 18:15:03 +0530 | [diff] [blame] | 1170 | bc->size, bc->param_id, mconfig); |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1171 | |
Vinod Koul | 41556f6 | 2016-02-03 17:59:44 +0530 | [diff] [blame] | 1172 | /* decrement size for TLV header */ |
| 1173 | size -= 2 * sizeof(u32); |
| 1174 | |
| 1175 | /* check size as we don't want to send kernel data */ |
| 1176 | if (size > bc->max) |
| 1177 | size = bc->max; |
| 1178 | |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1179 | if (bc->params) { |
| 1180 | if (copy_to_user(data, &bc->param_id, sizeof(u32))) |
| 1181 | return -EFAULT; |
Dan Carpenter | e8bc3c9 | 2015-12-08 08:53:22 +0300 | [diff] [blame] | 1182 | if (copy_to_user(data + 1, &size, sizeof(u32))) |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1183 | return -EFAULT; |
Dan Carpenter | e8bc3c9 | 2015-12-08 08:53:22 +0300 | [diff] [blame] | 1184 | if (copy_to_user(data + 2, bc->params, size)) |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1185 | return -EFAULT; |
| 1186 | } |
| 1187 | |
| 1188 | return 0; |
| 1189 | } |
| 1190 | |
| 1191 | #define SKL_PARAM_VENDOR_ID 0xff |
| 1192 | |
| 1193 | static int skl_tplg_tlv_control_set(struct snd_kcontrol *kcontrol, |
| 1194 | const unsigned int __user *data, unsigned int size) |
| 1195 | { |
| 1196 | struct snd_soc_dapm_widget *w = snd_soc_dapm_kcontrol_widget(kcontrol); |
| 1197 | struct skl_module_cfg *mconfig = w->priv; |
| 1198 | struct soc_bytes_ext *sb = |
| 1199 | (struct soc_bytes_ext *)kcontrol->private_value; |
| 1200 | struct skl_algo_data *ac = (struct skl_algo_data *)sb->dobj.private; |
| 1201 | struct skl *skl = get_skl_ctx(w->dapm->dev); |
| 1202 | |
| 1203 | if (ac->params) { |
Dharageswari R | 0d68210 | 2016-07-08 18:15:03 +0530 | [diff] [blame] | 1204 | if (size > ac->max) |
| 1205 | return -EINVAL; |
| 1206 | |
| 1207 | ac->size = size; |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1208 | /* |
| 1209 | * if the param_is is of type Vendor, firmware expects actual |
| 1210 | * parameter id and size from the control. |
| 1211 | */ |
| 1212 | if (ac->param_id == SKL_PARAM_VENDOR_ID) { |
| 1213 | if (copy_from_user(ac->params, data, size)) |
| 1214 | return -EFAULT; |
| 1215 | } else { |
| 1216 | if (copy_from_user(ac->params, |
Alan | 65b4bcb | 2016-02-19 11:42:32 +0530 | [diff] [blame] | 1217 | data + 2, size)) |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1218 | return -EFAULT; |
| 1219 | } |
| 1220 | |
| 1221 | if (w->power) |
| 1222 | return skl_set_module_params(skl->skl_sst, |
Dharageswari R | 0d68210 | 2016-07-08 18:15:03 +0530 | [diff] [blame] | 1223 | (u32 *)ac->params, ac->size, |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1224 | ac->param_id, mconfig); |
| 1225 | } |
| 1226 | |
| 1227 | return 0; |
| 1228 | } |
| 1229 | |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1230 | /* |
Jeeja KP | 8871dcb | 2016-06-03 18:29:42 +0530 | [diff] [blame] | 1231 | * Fill the dma id for host and link. In case of passthrough |
| 1232 | * pipeline, this will both host and link in the same |
| 1233 | * pipeline, so need to copy the link and host based on dev_type |
| 1234 | */ |
| 1235 | static void skl_tplg_fill_dma_id(struct skl_module_cfg *mcfg, |
| 1236 | struct skl_pipe_params *params) |
| 1237 | { |
| 1238 | struct skl_pipe *pipe = mcfg->pipe; |
| 1239 | |
| 1240 | if (pipe->passthru) { |
| 1241 | switch (mcfg->dev_type) { |
| 1242 | case SKL_DEVICE_HDALINK: |
| 1243 | pipe->p_params->link_dma_id = params->link_dma_id; |
Jeeja KP | 12c3be0 | 2016-12-08 13:41:12 +0530 | [diff] [blame] | 1244 | pipe->p_params->link_index = params->link_index; |
Jeeja KP | 7f975a3 | 2017-03-24 23:10:25 +0530 | [diff] [blame^] | 1245 | pipe->p_params->link_bps = params->link_bps; |
Jeeja KP | 8871dcb | 2016-06-03 18:29:42 +0530 | [diff] [blame] | 1246 | break; |
| 1247 | |
| 1248 | case SKL_DEVICE_HDAHOST: |
| 1249 | pipe->p_params->host_dma_id = params->host_dma_id; |
Jeeja KP | 7f975a3 | 2017-03-24 23:10:25 +0530 | [diff] [blame^] | 1250 | pipe->p_params->host_bps = params->host_bps; |
Jeeja KP | 8871dcb | 2016-06-03 18:29:42 +0530 | [diff] [blame] | 1251 | break; |
| 1252 | |
| 1253 | default: |
| 1254 | break; |
| 1255 | } |
| 1256 | pipe->p_params->s_fmt = params->s_fmt; |
| 1257 | pipe->p_params->ch = params->ch; |
| 1258 | pipe->p_params->s_freq = params->s_freq; |
| 1259 | pipe->p_params->stream = params->stream; |
Jeeja KP | 12c3be0 | 2016-12-08 13:41:12 +0530 | [diff] [blame] | 1260 | pipe->p_params->format = params->format; |
Jeeja KP | 8871dcb | 2016-06-03 18:29:42 +0530 | [diff] [blame] | 1261 | |
| 1262 | } else { |
| 1263 | memcpy(pipe->p_params, params, sizeof(*params)); |
| 1264 | } |
| 1265 | } |
| 1266 | |
| 1267 | /* |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1268 | * The FE params are passed by hw_params of the DAI. |
| 1269 | * On hw_params, the params are stored in Gateway module of the FE and we |
| 1270 | * need to calculate the format in DSP module configuration, that |
| 1271 | * conversion is done here |
| 1272 | */ |
| 1273 | int skl_tplg_update_pipe_params(struct device *dev, |
| 1274 | struct skl_module_cfg *mconfig, |
| 1275 | struct skl_pipe_params *params) |
| 1276 | { |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1277 | struct skl_module_fmt *format = NULL; |
| 1278 | |
Jeeja KP | 8871dcb | 2016-06-03 18:29:42 +0530 | [diff] [blame] | 1279 | skl_tplg_fill_dma_id(mconfig, params); |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1280 | |
| 1281 | if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 1282 | format = &mconfig->in_fmt[0]; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1283 | else |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 1284 | format = &mconfig->out_fmt[0]; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1285 | |
| 1286 | /* set the hw_params */ |
| 1287 | format->s_freq = params->s_freq; |
| 1288 | format->channels = params->ch; |
| 1289 | format->valid_bit_depth = skl_get_bit_depth(params->s_fmt); |
| 1290 | |
| 1291 | /* |
| 1292 | * 16 bit is 16 bit container whereas 24 bit is in 32 bit |
| 1293 | * container so update bit depth accordingly |
| 1294 | */ |
| 1295 | switch (format->valid_bit_depth) { |
| 1296 | case SKL_DEPTH_16BIT: |
| 1297 | format->bit_depth = format->valid_bit_depth; |
| 1298 | break; |
| 1299 | |
| 1300 | case SKL_DEPTH_24BIT: |
Jeeja KP | 6654f39 | 2015-10-27 09:22:46 +0900 | [diff] [blame] | 1301 | case SKL_DEPTH_32BIT: |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1302 | format->bit_depth = SKL_DEPTH_32BIT; |
| 1303 | break; |
| 1304 | |
| 1305 | default: |
| 1306 | dev_err(dev, "Invalid bit depth %x for pipe\n", |
| 1307 | format->valid_bit_depth); |
| 1308 | return -EINVAL; |
| 1309 | } |
| 1310 | |
| 1311 | if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 1312 | mconfig->ibs = (format->s_freq / 1000) * |
| 1313 | (format->channels) * |
| 1314 | (format->bit_depth >> 3); |
| 1315 | } else { |
| 1316 | mconfig->obs = (format->s_freq / 1000) * |
| 1317 | (format->channels) * |
| 1318 | (format->bit_depth >> 3); |
| 1319 | } |
| 1320 | |
| 1321 | return 0; |
| 1322 | } |
| 1323 | |
| 1324 | /* |
| 1325 | * Query the module config for the FE DAI |
| 1326 | * This is used to find the hw_params set for that DAI and apply to FE |
| 1327 | * pipeline |
| 1328 | */ |
| 1329 | struct skl_module_cfg * |
| 1330 | skl_tplg_fe_get_cpr_module(struct snd_soc_dai *dai, int stream) |
| 1331 | { |
| 1332 | struct snd_soc_dapm_widget *w; |
| 1333 | struct snd_soc_dapm_path *p = NULL; |
| 1334 | |
| 1335 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 1336 | w = dai->playback_widget; |
Subhransu S. Prusty | f0900eb | 2015-10-22 23:22:36 +0530 | [diff] [blame] | 1337 | snd_soc_dapm_widget_for_each_sink_path(w, p) { |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1338 | if (p->connect && p->sink->power && |
Jeeja KP | a28f51d | 2015-10-27 09:22:44 +0900 | [diff] [blame] | 1339 | !is_skl_dsp_widget_type(p->sink)) |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1340 | continue; |
| 1341 | |
| 1342 | if (p->sink->priv) { |
| 1343 | dev_dbg(dai->dev, "set params for %s\n", |
| 1344 | p->sink->name); |
| 1345 | return p->sink->priv; |
| 1346 | } |
| 1347 | } |
| 1348 | } else { |
| 1349 | w = dai->capture_widget; |
Subhransu S. Prusty | f0900eb | 2015-10-22 23:22:36 +0530 | [diff] [blame] | 1350 | snd_soc_dapm_widget_for_each_source_path(w, p) { |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1351 | if (p->connect && p->source->power && |
Jeeja KP | a28f51d | 2015-10-27 09:22:44 +0900 | [diff] [blame] | 1352 | !is_skl_dsp_widget_type(p->source)) |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1353 | continue; |
| 1354 | |
| 1355 | if (p->source->priv) { |
| 1356 | dev_dbg(dai->dev, "set params for %s\n", |
| 1357 | p->source->name); |
| 1358 | return p->source->priv; |
| 1359 | } |
| 1360 | } |
| 1361 | } |
| 1362 | |
| 1363 | return NULL; |
| 1364 | } |
| 1365 | |
Dharageswari.R | 718a42b | 2016-02-05 12:19:06 +0530 | [diff] [blame] | 1366 | static struct skl_module_cfg *skl_get_mconfig_pb_cpr( |
| 1367 | struct snd_soc_dai *dai, struct snd_soc_dapm_widget *w) |
| 1368 | { |
| 1369 | struct snd_soc_dapm_path *p; |
| 1370 | struct skl_module_cfg *mconfig = NULL; |
| 1371 | |
| 1372 | snd_soc_dapm_widget_for_each_source_path(w, p) { |
| 1373 | if (w->endpoints[SND_SOC_DAPM_DIR_OUT] > 0) { |
| 1374 | if (p->connect && |
| 1375 | (p->sink->id == snd_soc_dapm_aif_out) && |
| 1376 | p->source->priv) { |
| 1377 | mconfig = p->source->priv; |
| 1378 | return mconfig; |
| 1379 | } |
| 1380 | mconfig = skl_get_mconfig_pb_cpr(dai, p->source); |
| 1381 | if (mconfig) |
| 1382 | return mconfig; |
| 1383 | } |
| 1384 | } |
| 1385 | return mconfig; |
| 1386 | } |
| 1387 | |
| 1388 | static struct skl_module_cfg *skl_get_mconfig_cap_cpr( |
| 1389 | struct snd_soc_dai *dai, struct snd_soc_dapm_widget *w) |
| 1390 | { |
| 1391 | struct snd_soc_dapm_path *p; |
| 1392 | struct skl_module_cfg *mconfig = NULL; |
| 1393 | |
| 1394 | snd_soc_dapm_widget_for_each_sink_path(w, p) { |
| 1395 | if (w->endpoints[SND_SOC_DAPM_DIR_IN] > 0) { |
| 1396 | if (p->connect && |
| 1397 | (p->source->id == snd_soc_dapm_aif_in) && |
| 1398 | p->sink->priv) { |
| 1399 | mconfig = p->sink->priv; |
| 1400 | return mconfig; |
| 1401 | } |
| 1402 | mconfig = skl_get_mconfig_cap_cpr(dai, p->sink); |
| 1403 | if (mconfig) |
| 1404 | return mconfig; |
| 1405 | } |
| 1406 | } |
| 1407 | return mconfig; |
| 1408 | } |
| 1409 | |
| 1410 | struct skl_module_cfg * |
| 1411 | skl_tplg_be_get_cpr_module(struct snd_soc_dai *dai, int stream) |
| 1412 | { |
| 1413 | struct snd_soc_dapm_widget *w; |
| 1414 | struct skl_module_cfg *mconfig; |
| 1415 | |
| 1416 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 1417 | w = dai->playback_widget; |
| 1418 | mconfig = skl_get_mconfig_pb_cpr(dai, w); |
| 1419 | } else { |
| 1420 | w = dai->capture_widget; |
| 1421 | mconfig = skl_get_mconfig_cap_cpr(dai, w); |
| 1422 | } |
| 1423 | return mconfig; |
| 1424 | } |
| 1425 | |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1426 | static u8 skl_tplg_be_link_type(int dev_type) |
| 1427 | { |
| 1428 | int ret; |
| 1429 | |
| 1430 | switch (dev_type) { |
| 1431 | case SKL_DEVICE_BT: |
| 1432 | ret = NHLT_LINK_SSP; |
| 1433 | break; |
| 1434 | |
| 1435 | case SKL_DEVICE_DMIC: |
| 1436 | ret = NHLT_LINK_DMIC; |
| 1437 | break; |
| 1438 | |
| 1439 | case SKL_DEVICE_I2S: |
| 1440 | ret = NHLT_LINK_SSP; |
| 1441 | break; |
| 1442 | |
| 1443 | case SKL_DEVICE_HDALINK: |
| 1444 | ret = NHLT_LINK_HDA; |
| 1445 | break; |
| 1446 | |
| 1447 | default: |
| 1448 | ret = NHLT_LINK_INVALID; |
| 1449 | break; |
| 1450 | } |
| 1451 | |
| 1452 | return ret; |
| 1453 | } |
| 1454 | |
| 1455 | /* |
| 1456 | * Fill the BE gateway parameters |
| 1457 | * The BE gateway expects a blob of parameters which are kept in the ACPI |
| 1458 | * NHLT blob, so query the blob for interface type (i2s/pdm) and instance. |
| 1459 | * The port can have multiple settings so pick based on the PCM |
| 1460 | * parameters |
| 1461 | */ |
| 1462 | static int skl_tplg_be_fill_pipe_params(struct snd_soc_dai *dai, |
| 1463 | struct skl_module_cfg *mconfig, |
| 1464 | struct skl_pipe_params *params) |
| 1465 | { |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1466 | struct nhlt_specific_cfg *cfg; |
| 1467 | struct skl *skl = get_skl_ctx(dai->dev); |
| 1468 | int link_type = skl_tplg_be_link_type(mconfig->dev_type); |
Senthilnathan Veppur | db2f586 | 2017-02-09 16:44:01 +0530 | [diff] [blame] | 1469 | u8 dev_type = skl_tplg_be_dev_type(mconfig->dev_type); |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1470 | |
Jeeja KP | 8871dcb | 2016-06-03 18:29:42 +0530 | [diff] [blame] | 1471 | skl_tplg_fill_dma_id(mconfig, params); |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1472 | |
Jeeja KP | b30c275 | 2015-10-27 09:22:48 +0900 | [diff] [blame] | 1473 | if (link_type == NHLT_LINK_HDA) |
| 1474 | return 0; |
| 1475 | |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1476 | /* update the blob based on virtual bus_id*/ |
| 1477 | cfg = skl_get_ep_blob(skl, mconfig->vbus_id, link_type, |
| 1478 | params->s_fmt, params->ch, |
Senthilnathan Veppur | db2f586 | 2017-02-09 16:44:01 +0530 | [diff] [blame] | 1479 | params->s_freq, params->stream, |
| 1480 | dev_type); |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1481 | if (cfg) { |
| 1482 | mconfig->formats_config.caps_size = cfg->size; |
Jeeja KP | bc03281 | 2015-10-22 23:22:35 +0530 | [diff] [blame] | 1483 | mconfig->formats_config.caps = (u32 *) &cfg->caps; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1484 | } else { |
| 1485 | dev_err(dai->dev, "Blob NULL for id %x type %d dirn %d\n", |
| 1486 | mconfig->vbus_id, link_type, |
| 1487 | params->stream); |
| 1488 | dev_err(dai->dev, "PCM: ch %d, freq %d, fmt %d\n", |
| 1489 | params->ch, params->s_freq, params->s_fmt); |
| 1490 | return -EINVAL; |
| 1491 | } |
| 1492 | |
| 1493 | return 0; |
| 1494 | } |
| 1495 | |
| 1496 | static int skl_tplg_be_set_src_pipe_params(struct snd_soc_dai *dai, |
| 1497 | struct snd_soc_dapm_widget *w, |
| 1498 | struct skl_pipe_params *params) |
| 1499 | { |
| 1500 | struct snd_soc_dapm_path *p; |
Subhransu S. Prusty | 4d8adccb | 2015-10-22 23:22:37 +0530 | [diff] [blame] | 1501 | int ret = -EIO; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1502 | |
Subhransu S. Prusty | f0900eb | 2015-10-22 23:22:36 +0530 | [diff] [blame] | 1503 | snd_soc_dapm_widget_for_each_source_path(w, p) { |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1504 | if (p->connect && is_skl_dsp_widget_type(p->source) && |
| 1505 | p->source->priv) { |
| 1506 | |
Jeeja KP | 9a03cb4 | 2015-10-27 09:22:54 +0900 | [diff] [blame] | 1507 | ret = skl_tplg_be_fill_pipe_params(dai, |
| 1508 | p->source->priv, params); |
| 1509 | if (ret < 0) |
| 1510 | return ret; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1511 | } else { |
Jeeja KP | 9a03cb4 | 2015-10-27 09:22:54 +0900 | [diff] [blame] | 1512 | ret = skl_tplg_be_set_src_pipe_params(dai, |
| 1513 | p->source, params); |
Subhransu S. Prusty | 4d8adccb | 2015-10-22 23:22:37 +0530 | [diff] [blame] | 1514 | if (ret < 0) |
| 1515 | return ret; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1516 | } |
| 1517 | } |
| 1518 | |
Subhransu S. Prusty | 4d8adccb | 2015-10-22 23:22:37 +0530 | [diff] [blame] | 1519 | return ret; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1520 | } |
| 1521 | |
| 1522 | static int skl_tplg_be_set_sink_pipe_params(struct snd_soc_dai *dai, |
| 1523 | struct snd_soc_dapm_widget *w, struct skl_pipe_params *params) |
| 1524 | { |
| 1525 | struct snd_soc_dapm_path *p = NULL; |
Subhransu S. Prusty | 4d8adccb | 2015-10-22 23:22:37 +0530 | [diff] [blame] | 1526 | int ret = -EIO; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1527 | |
Subhransu S. Prusty | f0900eb | 2015-10-22 23:22:36 +0530 | [diff] [blame] | 1528 | snd_soc_dapm_widget_for_each_sink_path(w, p) { |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1529 | if (p->connect && is_skl_dsp_widget_type(p->sink) && |
| 1530 | p->sink->priv) { |
| 1531 | |
Jeeja KP | 9a03cb4 | 2015-10-27 09:22:54 +0900 | [diff] [blame] | 1532 | ret = skl_tplg_be_fill_pipe_params(dai, |
| 1533 | p->sink->priv, params); |
| 1534 | if (ret < 0) |
| 1535 | return ret; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1536 | } else { |
Subhransu S. Prusty | 4d8adccb | 2015-10-22 23:22:37 +0530 | [diff] [blame] | 1537 | ret = skl_tplg_be_set_sink_pipe_params( |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1538 | dai, p->sink, params); |
Subhransu S. Prusty | 4d8adccb | 2015-10-22 23:22:37 +0530 | [diff] [blame] | 1539 | if (ret < 0) |
| 1540 | return ret; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1541 | } |
| 1542 | } |
| 1543 | |
Subhransu S. Prusty | 4d8adccb | 2015-10-22 23:22:37 +0530 | [diff] [blame] | 1544 | return ret; |
Vinod Koul | cfb0a87 | 2015-10-07 11:31:55 +0100 | [diff] [blame] | 1545 | } |
| 1546 | |
| 1547 | /* |
| 1548 | * BE hw_params can be a source parameters (capture) or sink parameters |
| 1549 | * (playback). Based on sink and source we need to either find the source |
| 1550 | * list or the sink list and set the pipeline parameters |
| 1551 | */ |
| 1552 | int skl_tplg_be_update_params(struct snd_soc_dai *dai, |
| 1553 | struct skl_pipe_params *params) |
| 1554 | { |
| 1555 | struct snd_soc_dapm_widget *w; |
| 1556 | |
| 1557 | if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 1558 | w = dai->playback_widget; |
| 1559 | |
| 1560 | return skl_tplg_be_set_src_pipe_params(dai, w, params); |
| 1561 | |
| 1562 | } else { |
| 1563 | w = dai->capture_widget; |
| 1564 | |
| 1565 | return skl_tplg_be_set_sink_pipe_params(dai, w, params); |
| 1566 | } |
| 1567 | |
| 1568 | return 0; |
| 1569 | } |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1570 | |
| 1571 | static const struct snd_soc_tplg_widget_events skl_tplg_widget_ops[] = { |
| 1572 | {SKL_MIXER_EVENT, skl_tplg_mixer_event}, |
| 1573 | {SKL_VMIXER_EVENT, skl_tplg_vmixer_event}, |
| 1574 | {SKL_PGA_EVENT, skl_tplg_pga_event}, |
| 1575 | }; |
| 1576 | |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 1577 | static const struct snd_soc_tplg_bytes_ext_ops skl_tlv_ops[] = { |
| 1578 | {SKL_CONTROL_TYPE_BYTE_TLV, skl_tplg_tlv_control_get, |
| 1579 | skl_tplg_tlv_control_set}, |
| 1580 | }; |
| 1581 | |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1582 | static int skl_tplg_fill_pipe_tkn(struct device *dev, |
| 1583 | struct skl_pipe *pipe, u32 tkn, |
| 1584 | u32 tkn_val) |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1585 | { |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1586 | |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1587 | switch (tkn) { |
| 1588 | case SKL_TKN_U32_PIPE_CONN_TYPE: |
| 1589 | pipe->conn_type = tkn_val; |
| 1590 | break; |
| 1591 | |
| 1592 | case SKL_TKN_U32_PIPE_PRIORITY: |
| 1593 | pipe->pipe_priority = tkn_val; |
| 1594 | break; |
| 1595 | |
| 1596 | case SKL_TKN_U32_PIPE_MEM_PGS: |
| 1597 | pipe->memory_pages = tkn_val; |
| 1598 | break; |
| 1599 | |
Vinod Koul | 8a0cb23 | 2016-11-03 17:07:18 +0530 | [diff] [blame] | 1600 | case SKL_TKN_U32_PMODE: |
| 1601 | pipe->lp_mode = tkn_val; |
| 1602 | break; |
| 1603 | |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1604 | default: |
| 1605 | dev_err(dev, "Token not handled %d\n", tkn); |
| 1606 | return -EINVAL; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1607 | } |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1608 | |
| 1609 | return 0; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1610 | } |
| 1611 | |
| 1612 | /* |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1613 | * Add pipeline by parsing the relevant tokens |
| 1614 | * Return an existing pipe if the pipe already exists. |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1615 | */ |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1616 | static int skl_tplg_add_pipe(struct device *dev, |
| 1617 | struct skl_module_cfg *mconfig, struct skl *skl, |
| 1618 | struct snd_soc_tplg_vendor_value_elem *tkn_elem) |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1619 | { |
| 1620 | struct skl_pipeline *ppl; |
| 1621 | struct skl_pipe *pipe; |
| 1622 | struct skl_pipe_params *params; |
| 1623 | |
| 1624 | list_for_each_entry(ppl, &skl->ppl_list, node) { |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1625 | if (ppl->pipe->ppl_id == tkn_elem->value) { |
| 1626 | mconfig->pipe = ppl->pipe; |
| 1627 | return EEXIST; |
| 1628 | } |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1629 | } |
| 1630 | |
| 1631 | ppl = devm_kzalloc(dev, sizeof(*ppl), GFP_KERNEL); |
| 1632 | if (!ppl) |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1633 | return -ENOMEM; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1634 | |
| 1635 | pipe = devm_kzalloc(dev, sizeof(*pipe), GFP_KERNEL); |
| 1636 | if (!pipe) |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1637 | return -ENOMEM; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1638 | |
| 1639 | params = devm_kzalloc(dev, sizeof(*params), GFP_KERNEL); |
| 1640 | if (!params) |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1641 | return -ENOMEM; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1642 | |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1643 | pipe->p_params = params; |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1644 | pipe->ppl_id = tkn_elem->value; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1645 | INIT_LIST_HEAD(&pipe->w_list); |
| 1646 | |
| 1647 | ppl->pipe = pipe; |
| 1648 | list_add(&ppl->node, &skl->ppl_list); |
| 1649 | |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1650 | mconfig->pipe = pipe; |
| 1651 | mconfig->pipe->state = SKL_PIPE_INVALID; |
| 1652 | |
| 1653 | return 0; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 1654 | } |
| 1655 | |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1656 | static int skl_tplg_fill_pin(struct device *dev, u32 tkn, |
| 1657 | struct skl_module_pin *m_pin, |
| 1658 | int pin_index, u32 value) |
| 1659 | { |
| 1660 | switch (tkn) { |
| 1661 | case SKL_TKN_U32_PIN_MOD_ID: |
| 1662 | m_pin[pin_index].id.module_id = value; |
| 1663 | break; |
| 1664 | |
| 1665 | case SKL_TKN_U32_PIN_INST_ID: |
| 1666 | m_pin[pin_index].id.instance_id = value; |
| 1667 | break; |
| 1668 | |
| 1669 | default: |
| 1670 | dev_err(dev, "%d Not a pin token\n", value); |
| 1671 | return -EINVAL; |
| 1672 | } |
| 1673 | |
| 1674 | return 0; |
| 1675 | } |
| 1676 | |
| 1677 | /* |
| 1678 | * Parse for pin config specific tokens to fill up the |
| 1679 | * module private data |
| 1680 | */ |
| 1681 | static int skl_tplg_fill_pins_info(struct device *dev, |
| 1682 | struct skl_module_cfg *mconfig, |
| 1683 | struct snd_soc_tplg_vendor_value_elem *tkn_elem, |
| 1684 | int dir, int pin_count) |
| 1685 | { |
| 1686 | int ret; |
| 1687 | struct skl_module_pin *m_pin; |
| 1688 | |
| 1689 | switch (dir) { |
| 1690 | case SKL_DIR_IN: |
| 1691 | m_pin = mconfig->m_in_pin; |
| 1692 | break; |
| 1693 | |
| 1694 | case SKL_DIR_OUT: |
| 1695 | m_pin = mconfig->m_out_pin; |
| 1696 | break; |
| 1697 | |
| 1698 | default: |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 1699 | dev_err(dev, "Invalid direction value\n"); |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1700 | return -EINVAL; |
| 1701 | } |
| 1702 | |
| 1703 | ret = skl_tplg_fill_pin(dev, tkn_elem->token, |
| 1704 | m_pin, pin_count, tkn_elem->value); |
| 1705 | |
| 1706 | if (ret < 0) |
| 1707 | return ret; |
| 1708 | |
| 1709 | m_pin[pin_count].in_use = false; |
| 1710 | m_pin[pin_count].pin_state = SKL_PIN_UNBIND; |
| 1711 | |
| 1712 | return 0; |
| 1713 | } |
| 1714 | |
| 1715 | /* |
| 1716 | * Fill up input/output module config format based |
| 1717 | * on the direction |
| 1718 | */ |
| 1719 | static int skl_tplg_fill_fmt(struct device *dev, |
| 1720 | struct skl_module_cfg *mconfig, u32 tkn, |
| 1721 | u32 value, u32 dir, u32 pin_count) |
| 1722 | { |
| 1723 | struct skl_module_fmt *dst_fmt; |
| 1724 | |
| 1725 | switch (dir) { |
| 1726 | case SKL_DIR_IN: |
| 1727 | dst_fmt = mconfig->in_fmt; |
| 1728 | dst_fmt += pin_count; |
| 1729 | break; |
| 1730 | |
| 1731 | case SKL_DIR_OUT: |
| 1732 | dst_fmt = mconfig->out_fmt; |
| 1733 | dst_fmt += pin_count; |
| 1734 | break; |
| 1735 | |
| 1736 | default: |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 1737 | dev_err(dev, "Invalid direction value\n"); |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1738 | return -EINVAL; |
| 1739 | } |
| 1740 | |
| 1741 | switch (tkn) { |
| 1742 | case SKL_TKN_U32_FMT_CH: |
| 1743 | dst_fmt->channels = value; |
| 1744 | break; |
| 1745 | |
| 1746 | case SKL_TKN_U32_FMT_FREQ: |
| 1747 | dst_fmt->s_freq = value; |
| 1748 | break; |
| 1749 | |
| 1750 | case SKL_TKN_U32_FMT_BIT_DEPTH: |
| 1751 | dst_fmt->bit_depth = value; |
| 1752 | break; |
| 1753 | |
| 1754 | case SKL_TKN_U32_FMT_SAMPLE_SIZE: |
| 1755 | dst_fmt->valid_bit_depth = value; |
| 1756 | break; |
| 1757 | |
| 1758 | case SKL_TKN_U32_FMT_CH_CONFIG: |
| 1759 | dst_fmt->ch_cfg = value; |
| 1760 | break; |
| 1761 | |
| 1762 | case SKL_TKN_U32_FMT_INTERLEAVE: |
| 1763 | dst_fmt->interleaving_style = value; |
| 1764 | break; |
| 1765 | |
| 1766 | case SKL_TKN_U32_FMT_SAMPLE_TYPE: |
| 1767 | dst_fmt->sample_type = value; |
| 1768 | break; |
| 1769 | |
| 1770 | case SKL_TKN_U32_FMT_CH_MAP: |
| 1771 | dst_fmt->ch_map = value; |
| 1772 | break; |
| 1773 | |
| 1774 | default: |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 1775 | dev_err(dev, "Invalid token %d\n", tkn); |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1776 | return -EINVAL; |
| 1777 | } |
| 1778 | |
| 1779 | return 0; |
| 1780 | } |
| 1781 | |
| 1782 | static int skl_tplg_get_uuid(struct device *dev, struct skl_module_cfg *mconfig, |
| 1783 | struct snd_soc_tplg_vendor_uuid_elem *uuid_tkn) |
| 1784 | { |
| 1785 | if (uuid_tkn->token == SKL_TKN_UUID) |
| 1786 | memcpy(&mconfig->guid, &uuid_tkn->uuid, 16); |
| 1787 | else { |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 1788 | dev_err(dev, "Not an UUID token tkn %d\n", uuid_tkn->token); |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1789 | return -EINVAL; |
| 1790 | } |
| 1791 | |
| 1792 | return 0; |
| 1793 | } |
| 1794 | |
| 1795 | static void skl_tplg_fill_pin_dynamic_val( |
| 1796 | struct skl_module_pin *mpin, u32 pin_count, u32 value) |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 1797 | { |
| 1798 | int i; |
| 1799 | |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1800 | for (i = 0; i < pin_count; i++) |
| 1801 | mpin[i].is_dynamic = value; |
| 1802 | } |
| 1803 | |
| 1804 | /* |
| 1805 | * Parse tokens to fill up the module private data |
| 1806 | */ |
| 1807 | static int skl_tplg_get_token(struct device *dev, |
| 1808 | struct snd_soc_tplg_vendor_value_elem *tkn_elem, |
| 1809 | struct skl *skl, struct skl_module_cfg *mconfig) |
| 1810 | { |
| 1811 | int tkn_count = 0; |
| 1812 | int ret; |
| 1813 | static int is_pipe_exists; |
| 1814 | static int pin_index, dir; |
| 1815 | |
| 1816 | if (tkn_elem->token > SKL_TKN_MAX) |
| 1817 | return -EINVAL; |
| 1818 | |
| 1819 | switch (tkn_elem->token) { |
| 1820 | case SKL_TKN_U8_IN_QUEUE_COUNT: |
| 1821 | mconfig->max_in_queue = tkn_elem->value; |
| 1822 | mconfig->m_in_pin = devm_kzalloc(dev, mconfig->max_in_queue * |
| 1823 | sizeof(*mconfig->m_in_pin), |
| 1824 | GFP_KERNEL); |
| 1825 | if (!mconfig->m_in_pin) |
| 1826 | return -ENOMEM; |
| 1827 | |
| 1828 | break; |
| 1829 | |
| 1830 | case SKL_TKN_U8_OUT_QUEUE_COUNT: |
| 1831 | mconfig->max_out_queue = tkn_elem->value; |
| 1832 | mconfig->m_out_pin = devm_kzalloc(dev, mconfig->max_out_queue * |
| 1833 | sizeof(*mconfig->m_out_pin), |
| 1834 | GFP_KERNEL); |
| 1835 | |
| 1836 | if (!mconfig->m_out_pin) |
| 1837 | return -ENOMEM; |
| 1838 | |
| 1839 | break; |
| 1840 | |
| 1841 | case SKL_TKN_U8_DYN_IN_PIN: |
| 1842 | if (!mconfig->m_in_pin) |
| 1843 | return -ENOMEM; |
| 1844 | |
| 1845 | skl_tplg_fill_pin_dynamic_val(mconfig->m_in_pin, |
| 1846 | mconfig->max_in_queue, tkn_elem->value); |
| 1847 | |
| 1848 | break; |
| 1849 | |
| 1850 | case SKL_TKN_U8_DYN_OUT_PIN: |
| 1851 | if (!mconfig->m_out_pin) |
| 1852 | return -ENOMEM; |
| 1853 | |
| 1854 | skl_tplg_fill_pin_dynamic_val(mconfig->m_out_pin, |
| 1855 | mconfig->max_out_queue, tkn_elem->value); |
| 1856 | |
| 1857 | break; |
| 1858 | |
| 1859 | case SKL_TKN_U8_TIME_SLOT: |
| 1860 | mconfig->time_slot = tkn_elem->value; |
| 1861 | break; |
| 1862 | |
| 1863 | case SKL_TKN_U8_CORE_ID: |
| 1864 | mconfig->core_id = tkn_elem->value; |
| 1865 | |
| 1866 | case SKL_TKN_U8_MOD_TYPE: |
| 1867 | mconfig->m_type = tkn_elem->value; |
| 1868 | break; |
| 1869 | |
| 1870 | case SKL_TKN_U8_DEV_TYPE: |
| 1871 | mconfig->dev_type = tkn_elem->value; |
| 1872 | break; |
| 1873 | |
| 1874 | case SKL_TKN_U8_HW_CONN_TYPE: |
| 1875 | mconfig->hw_conn_type = tkn_elem->value; |
| 1876 | break; |
| 1877 | |
| 1878 | case SKL_TKN_U16_MOD_INST_ID: |
| 1879 | mconfig->id.instance_id = |
| 1880 | tkn_elem->value; |
| 1881 | break; |
| 1882 | |
| 1883 | case SKL_TKN_U32_MEM_PAGES: |
| 1884 | mconfig->mem_pages = tkn_elem->value; |
| 1885 | break; |
| 1886 | |
| 1887 | case SKL_TKN_U32_MAX_MCPS: |
| 1888 | mconfig->mcps = tkn_elem->value; |
| 1889 | break; |
| 1890 | |
| 1891 | case SKL_TKN_U32_OBS: |
| 1892 | mconfig->obs = tkn_elem->value; |
| 1893 | break; |
| 1894 | |
| 1895 | case SKL_TKN_U32_IBS: |
| 1896 | mconfig->ibs = tkn_elem->value; |
| 1897 | break; |
| 1898 | |
| 1899 | case SKL_TKN_U32_VBUS_ID: |
| 1900 | mconfig->vbus_id = tkn_elem->value; |
| 1901 | break; |
| 1902 | |
| 1903 | case SKL_TKN_U32_PARAMS_FIXUP: |
| 1904 | mconfig->params_fixup = tkn_elem->value; |
| 1905 | break; |
| 1906 | |
| 1907 | case SKL_TKN_U32_CONVERTER: |
| 1908 | mconfig->converter = tkn_elem->value; |
| 1909 | break; |
| 1910 | |
Vinod Koul | 6bd9dcf | 2016-11-03 17:07:19 +0530 | [diff] [blame] | 1911 | case SKL_TKL_U32_D0I3_CAPS: |
| 1912 | mconfig->d0i3_caps = tkn_elem->value; |
| 1913 | break; |
| 1914 | |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1915 | case SKL_TKN_U32_PIPE_ID: |
| 1916 | ret = skl_tplg_add_pipe(dev, |
| 1917 | mconfig, skl, tkn_elem); |
| 1918 | |
| 1919 | if (ret < 0) |
| 1920 | return is_pipe_exists; |
| 1921 | |
| 1922 | if (ret == EEXIST) |
| 1923 | is_pipe_exists = 1; |
| 1924 | |
| 1925 | break; |
| 1926 | |
| 1927 | case SKL_TKN_U32_PIPE_CONN_TYPE: |
| 1928 | case SKL_TKN_U32_PIPE_PRIORITY: |
| 1929 | case SKL_TKN_U32_PIPE_MEM_PGS: |
Vinod Koul | 8a0cb23 | 2016-11-03 17:07:18 +0530 | [diff] [blame] | 1930 | case SKL_TKN_U32_PMODE: |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 1931 | if (is_pipe_exists) { |
| 1932 | ret = skl_tplg_fill_pipe_tkn(dev, mconfig->pipe, |
| 1933 | tkn_elem->token, tkn_elem->value); |
| 1934 | if (ret < 0) |
| 1935 | return ret; |
| 1936 | } |
| 1937 | |
| 1938 | break; |
| 1939 | |
| 1940 | /* |
| 1941 | * SKL_TKN_U32_DIR_PIN_COUNT token has the value for both |
| 1942 | * direction and the pin count. The first four bits represent |
| 1943 | * direction and next four the pin count. |
| 1944 | */ |
| 1945 | case SKL_TKN_U32_DIR_PIN_COUNT: |
| 1946 | dir = tkn_elem->value & SKL_IN_DIR_BIT_MASK; |
| 1947 | pin_index = (tkn_elem->value & |
| 1948 | SKL_PIN_COUNT_MASK) >> 4; |
| 1949 | |
| 1950 | break; |
| 1951 | |
| 1952 | case SKL_TKN_U32_FMT_CH: |
| 1953 | case SKL_TKN_U32_FMT_FREQ: |
| 1954 | case SKL_TKN_U32_FMT_BIT_DEPTH: |
| 1955 | case SKL_TKN_U32_FMT_SAMPLE_SIZE: |
| 1956 | case SKL_TKN_U32_FMT_CH_CONFIG: |
| 1957 | case SKL_TKN_U32_FMT_INTERLEAVE: |
| 1958 | case SKL_TKN_U32_FMT_SAMPLE_TYPE: |
| 1959 | case SKL_TKN_U32_FMT_CH_MAP: |
| 1960 | ret = skl_tplg_fill_fmt(dev, mconfig, tkn_elem->token, |
| 1961 | tkn_elem->value, dir, pin_index); |
| 1962 | |
| 1963 | if (ret < 0) |
| 1964 | return ret; |
| 1965 | |
| 1966 | break; |
| 1967 | |
| 1968 | case SKL_TKN_U32_PIN_MOD_ID: |
| 1969 | case SKL_TKN_U32_PIN_INST_ID: |
| 1970 | ret = skl_tplg_fill_pins_info(dev, |
| 1971 | mconfig, tkn_elem, dir, |
| 1972 | pin_index); |
| 1973 | if (ret < 0) |
| 1974 | return ret; |
| 1975 | |
| 1976 | break; |
| 1977 | |
| 1978 | case SKL_TKN_U32_CAPS_SIZE: |
| 1979 | mconfig->formats_config.caps_size = |
| 1980 | tkn_elem->value; |
| 1981 | |
| 1982 | break; |
| 1983 | |
| 1984 | case SKL_TKN_U32_PROC_DOMAIN: |
| 1985 | mconfig->domain = |
| 1986 | tkn_elem->value; |
| 1987 | |
| 1988 | break; |
| 1989 | |
| 1990 | case SKL_TKN_U8_IN_PIN_TYPE: |
| 1991 | case SKL_TKN_U8_OUT_PIN_TYPE: |
| 1992 | case SKL_TKN_U8_CONN_TYPE: |
| 1993 | break; |
| 1994 | |
| 1995 | default: |
| 1996 | dev_err(dev, "Token %d not handled\n", |
| 1997 | tkn_elem->token); |
| 1998 | return -EINVAL; |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 1999 | } |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 2000 | |
| 2001 | tkn_count++; |
| 2002 | |
| 2003 | return tkn_count; |
| 2004 | } |
| 2005 | |
| 2006 | /* |
| 2007 | * Parse the vendor array for specific tokens to construct |
| 2008 | * module private data |
| 2009 | */ |
| 2010 | static int skl_tplg_get_tokens(struct device *dev, |
| 2011 | char *pvt_data, struct skl *skl, |
| 2012 | struct skl_module_cfg *mconfig, int block_size) |
| 2013 | { |
| 2014 | struct snd_soc_tplg_vendor_array *array; |
| 2015 | struct snd_soc_tplg_vendor_value_elem *tkn_elem; |
| 2016 | int tkn_count = 0, ret; |
| 2017 | int off = 0, tuple_size = 0; |
| 2018 | |
| 2019 | if (block_size <= 0) |
| 2020 | return -EINVAL; |
| 2021 | |
| 2022 | while (tuple_size < block_size) { |
| 2023 | array = (struct snd_soc_tplg_vendor_array *)(pvt_data + off); |
| 2024 | |
| 2025 | off += array->size; |
| 2026 | |
| 2027 | switch (array->type) { |
| 2028 | case SND_SOC_TPLG_TUPLE_TYPE_STRING: |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 2029 | dev_warn(dev, "no string tokens expected for skl tplg\n"); |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 2030 | continue; |
| 2031 | |
| 2032 | case SND_SOC_TPLG_TUPLE_TYPE_UUID: |
| 2033 | ret = skl_tplg_get_uuid(dev, mconfig, array->uuid); |
| 2034 | if (ret < 0) |
| 2035 | return ret; |
| 2036 | |
| 2037 | tuple_size += sizeof(*array->uuid); |
| 2038 | |
| 2039 | continue; |
| 2040 | |
| 2041 | default: |
| 2042 | tkn_elem = array->value; |
| 2043 | tkn_count = 0; |
| 2044 | break; |
| 2045 | } |
| 2046 | |
| 2047 | while (tkn_count <= (array->num_elems - 1)) { |
| 2048 | ret = skl_tplg_get_token(dev, tkn_elem, |
| 2049 | skl, mconfig); |
| 2050 | |
| 2051 | if (ret < 0) |
| 2052 | return ret; |
| 2053 | |
| 2054 | tkn_count = tkn_count + ret; |
| 2055 | tkn_elem++; |
| 2056 | } |
| 2057 | |
| 2058 | tuple_size += tkn_count * sizeof(*tkn_elem); |
| 2059 | } |
| 2060 | |
| 2061 | return 0; |
| 2062 | } |
| 2063 | |
| 2064 | /* |
| 2065 | * Every data block is preceded by a descriptor to read the number |
| 2066 | * of data blocks, they type of the block and it's size |
| 2067 | */ |
| 2068 | static int skl_tplg_get_desc_blocks(struct device *dev, |
| 2069 | struct snd_soc_tplg_vendor_array *array) |
| 2070 | { |
| 2071 | struct snd_soc_tplg_vendor_value_elem *tkn_elem; |
| 2072 | |
| 2073 | tkn_elem = array->value; |
| 2074 | |
| 2075 | switch (tkn_elem->token) { |
| 2076 | case SKL_TKN_U8_NUM_BLOCKS: |
| 2077 | case SKL_TKN_U8_BLOCK_TYPE: |
| 2078 | case SKL_TKN_U16_BLOCK_SIZE: |
| 2079 | return tkn_elem->value; |
| 2080 | |
| 2081 | default: |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 2082 | dev_err(dev, "Invalid descriptor token %d\n", tkn_elem->token); |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 2083 | break; |
| 2084 | } |
| 2085 | |
| 2086 | return -EINVAL; |
| 2087 | } |
| 2088 | |
| 2089 | /* |
| 2090 | * Parse the private data for the token and corresponding value. |
| 2091 | * The private data can have multiple data blocks. So, a data block |
| 2092 | * is preceded by a descriptor for number of blocks and a descriptor |
| 2093 | * for the type and size of the suceeding data block. |
| 2094 | */ |
| 2095 | static int skl_tplg_get_pvt_data(struct snd_soc_tplg_dapm_widget *tplg_w, |
| 2096 | struct skl *skl, struct device *dev, |
| 2097 | struct skl_module_cfg *mconfig) |
| 2098 | { |
| 2099 | struct snd_soc_tplg_vendor_array *array; |
| 2100 | int num_blocks, block_size = 0, block_type, off = 0; |
| 2101 | char *data; |
| 2102 | int ret; |
| 2103 | |
| 2104 | /* Read the NUM_DATA_BLOCKS descriptor */ |
| 2105 | array = (struct snd_soc_tplg_vendor_array *)tplg_w->priv.data; |
| 2106 | ret = skl_tplg_get_desc_blocks(dev, array); |
| 2107 | if (ret < 0) |
| 2108 | return ret; |
| 2109 | num_blocks = ret; |
| 2110 | |
| 2111 | off += array->size; |
| 2112 | array = (struct snd_soc_tplg_vendor_array *)(tplg_w->priv.data + off); |
| 2113 | |
| 2114 | /* Read the BLOCK_TYPE and BLOCK_SIZE descriptor */ |
| 2115 | while (num_blocks > 0) { |
| 2116 | ret = skl_tplg_get_desc_blocks(dev, array); |
| 2117 | |
| 2118 | if (ret < 0) |
| 2119 | return ret; |
| 2120 | block_type = ret; |
| 2121 | off += array->size; |
| 2122 | |
| 2123 | array = (struct snd_soc_tplg_vendor_array *) |
| 2124 | (tplg_w->priv.data + off); |
| 2125 | |
| 2126 | ret = skl_tplg_get_desc_blocks(dev, array); |
| 2127 | |
| 2128 | if (ret < 0) |
| 2129 | return ret; |
| 2130 | block_size = ret; |
| 2131 | off += array->size; |
| 2132 | |
| 2133 | array = (struct snd_soc_tplg_vendor_array *) |
| 2134 | (tplg_w->priv.data + off); |
| 2135 | |
| 2136 | data = (tplg_w->priv.data + off); |
| 2137 | |
| 2138 | if (block_type == SKL_TYPE_TUPLE) { |
| 2139 | ret = skl_tplg_get_tokens(dev, data, |
| 2140 | skl, mconfig, block_size); |
| 2141 | |
| 2142 | if (ret < 0) |
| 2143 | return ret; |
| 2144 | |
| 2145 | --num_blocks; |
| 2146 | } else { |
| 2147 | if (mconfig->formats_config.caps_size > 0) |
| 2148 | memcpy(mconfig->formats_config.caps, data, |
| 2149 | mconfig->formats_config.caps_size); |
| 2150 | --num_blocks; |
| 2151 | } |
| 2152 | } |
| 2153 | |
| 2154 | return 0; |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 2155 | } |
| 2156 | |
Dharageswari R | fe3f444 | 2016-06-03 18:29:39 +0530 | [diff] [blame] | 2157 | static void skl_clear_pin_config(struct snd_soc_platform *platform, |
| 2158 | struct snd_soc_dapm_widget *w) |
| 2159 | { |
| 2160 | int i; |
| 2161 | struct skl_module_cfg *mconfig; |
| 2162 | struct skl_pipe *pipe; |
| 2163 | |
| 2164 | if (!strncmp(w->dapm->component->name, platform->component.name, |
| 2165 | strlen(platform->component.name))) { |
| 2166 | mconfig = w->priv; |
| 2167 | pipe = mconfig->pipe; |
| 2168 | for (i = 0; i < mconfig->max_in_queue; i++) { |
| 2169 | mconfig->m_in_pin[i].in_use = false; |
| 2170 | mconfig->m_in_pin[i].pin_state = SKL_PIN_UNBIND; |
| 2171 | } |
| 2172 | for (i = 0; i < mconfig->max_out_queue; i++) { |
| 2173 | mconfig->m_out_pin[i].in_use = false; |
| 2174 | mconfig->m_out_pin[i].pin_state = SKL_PIN_UNBIND; |
| 2175 | } |
| 2176 | pipe->state = SKL_PIPE_INVALID; |
| 2177 | mconfig->m_state = SKL_MODULE_UNINIT; |
| 2178 | } |
| 2179 | } |
| 2180 | |
| 2181 | void skl_cleanup_resources(struct skl *skl) |
| 2182 | { |
| 2183 | struct skl_sst *ctx = skl->skl_sst; |
| 2184 | struct snd_soc_platform *soc_platform = skl->platform; |
| 2185 | struct snd_soc_dapm_widget *w; |
| 2186 | struct snd_soc_card *card; |
| 2187 | |
| 2188 | if (soc_platform == NULL) |
| 2189 | return; |
| 2190 | |
| 2191 | card = soc_platform->component.card; |
| 2192 | if (!card || !card->instantiated) |
| 2193 | return; |
| 2194 | |
| 2195 | skl->resource.mem = 0; |
| 2196 | skl->resource.mcps = 0; |
| 2197 | |
| 2198 | list_for_each_entry(w, &card->widgets, list) { |
| 2199 | if (is_skl_dsp_widget_type(w) && (w->priv != NULL)) |
| 2200 | skl_clear_pin_config(soc_platform, w); |
| 2201 | } |
| 2202 | |
| 2203 | skl_clear_module_cnt(ctx->dsp); |
| 2204 | } |
| 2205 | |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2206 | /* |
| 2207 | * Topology core widget load callback |
| 2208 | * |
| 2209 | * This is used to save the private data for each widget which gives |
| 2210 | * information to the driver about module and pipeline parameters which DSP |
| 2211 | * FW expects like ids, resource values, formats etc |
| 2212 | */ |
| 2213 | static int skl_tplg_widget_load(struct snd_soc_component *cmpnt, |
Jeeja KP | b663a8c | 2015-10-07 11:31:57 +0100 | [diff] [blame] | 2214 | struct snd_soc_dapm_widget *w, |
| 2215 | struct snd_soc_tplg_dapm_widget *tplg_w) |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2216 | { |
| 2217 | int ret; |
| 2218 | struct hdac_ext_bus *ebus = snd_soc_component_get_drvdata(cmpnt); |
| 2219 | struct skl *skl = ebus_to_skl(ebus); |
| 2220 | struct hdac_bus *bus = ebus_to_hbus(ebus); |
| 2221 | struct skl_module_cfg *mconfig; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2222 | |
| 2223 | if (!tplg_w->priv.size) |
| 2224 | goto bind_event; |
| 2225 | |
| 2226 | mconfig = devm_kzalloc(bus->dev, sizeof(*mconfig), GFP_KERNEL); |
| 2227 | |
| 2228 | if (!mconfig) |
| 2229 | return -ENOMEM; |
| 2230 | |
| 2231 | w->priv = mconfig; |
Shreyas NC | 09305da | 2016-04-21 11:45:22 +0530 | [diff] [blame] | 2232 | |
Vinod Koul | b7c5055 | 2016-07-26 18:06:40 +0530 | [diff] [blame] | 2233 | /* |
| 2234 | * module binary can be loaded later, so set it to query when |
| 2235 | * module is load for a use case |
| 2236 | */ |
| 2237 | mconfig->id.module_id = -1; |
Hardik T Shah | 4cd9899 | 2015-10-27 09:22:55 +0900 | [diff] [blame] | 2238 | |
Shreyas NC | 6277e83 | 2016-08-12 12:29:51 +0530 | [diff] [blame] | 2239 | /* Parse private data for tuples */ |
| 2240 | ret = skl_tplg_get_pvt_data(tplg_w, skl, bus->dev, mconfig); |
| 2241 | if (ret < 0) |
| 2242 | return ret; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2243 | bind_event: |
| 2244 | if (tplg_w->event_type == 0) { |
Vinod Koul | 3373f71 | 2015-10-07 16:39:38 +0100 | [diff] [blame] | 2245 | dev_dbg(bus->dev, "ASoC: No event handler required\n"); |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2246 | return 0; |
| 2247 | } |
| 2248 | |
| 2249 | ret = snd_soc_tplg_widget_bind_event(w, skl_tplg_widget_ops, |
Jeeja KP | b663a8c | 2015-10-07 11:31:57 +0100 | [diff] [blame] | 2250 | ARRAY_SIZE(skl_tplg_widget_ops), |
| 2251 | tplg_w->event_type); |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2252 | |
| 2253 | if (ret) { |
| 2254 | dev_err(bus->dev, "%s: No matching event handlers found for %d\n", |
| 2255 | __func__, tplg_w->event_type); |
| 2256 | return -EINVAL; |
| 2257 | } |
| 2258 | |
| 2259 | return 0; |
| 2260 | } |
| 2261 | |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 2262 | static int skl_init_algo_data(struct device *dev, struct soc_bytes_ext *be, |
| 2263 | struct snd_soc_tplg_bytes_control *bc) |
| 2264 | { |
| 2265 | struct skl_algo_data *ac; |
| 2266 | struct skl_dfw_algo_data *dfw_ac = |
| 2267 | (struct skl_dfw_algo_data *)bc->priv.data; |
| 2268 | |
| 2269 | ac = devm_kzalloc(dev, sizeof(*ac), GFP_KERNEL); |
| 2270 | if (!ac) |
| 2271 | return -ENOMEM; |
| 2272 | |
| 2273 | /* Fill private data */ |
| 2274 | ac->max = dfw_ac->max; |
| 2275 | ac->param_id = dfw_ac->param_id; |
| 2276 | ac->set_params = dfw_ac->set_params; |
Dharageswari R | 0d68210 | 2016-07-08 18:15:03 +0530 | [diff] [blame] | 2277 | ac->size = dfw_ac->max; |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 2278 | |
| 2279 | if (ac->max) { |
| 2280 | ac->params = (char *) devm_kzalloc(dev, ac->max, GFP_KERNEL); |
| 2281 | if (!ac->params) |
| 2282 | return -ENOMEM; |
| 2283 | |
Alan Cox | edd7ea2 | 2016-02-22 09:37:27 +0530 | [diff] [blame] | 2284 | memcpy(ac->params, dfw_ac->params, ac->max); |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 2285 | } |
| 2286 | |
| 2287 | be->dobj.private = ac; |
| 2288 | return 0; |
| 2289 | } |
| 2290 | |
| 2291 | static int skl_tplg_control_load(struct snd_soc_component *cmpnt, |
| 2292 | struct snd_kcontrol_new *kctl, |
| 2293 | struct snd_soc_tplg_ctl_hdr *hdr) |
| 2294 | { |
| 2295 | struct soc_bytes_ext *sb; |
| 2296 | struct snd_soc_tplg_bytes_control *tplg_bc; |
| 2297 | struct hdac_ext_bus *ebus = snd_soc_component_get_drvdata(cmpnt); |
| 2298 | struct hdac_bus *bus = ebus_to_hbus(ebus); |
| 2299 | |
| 2300 | switch (hdr->ops.info) { |
| 2301 | case SND_SOC_TPLG_CTL_BYTES: |
| 2302 | tplg_bc = container_of(hdr, |
| 2303 | struct snd_soc_tplg_bytes_control, hdr); |
| 2304 | if (kctl->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 2305 | sb = (struct soc_bytes_ext *)kctl->private_value; |
| 2306 | if (tplg_bc->priv.size) |
| 2307 | return skl_init_algo_data( |
| 2308 | bus->dev, sb, tplg_bc); |
| 2309 | } |
| 2310 | break; |
| 2311 | |
| 2312 | default: |
| 2313 | dev_warn(bus->dev, "Control load not supported %d:%d:%d\n", |
| 2314 | hdr->ops.get, hdr->ops.put, hdr->ops.info); |
| 2315 | break; |
| 2316 | } |
| 2317 | |
| 2318 | return 0; |
| 2319 | } |
| 2320 | |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2321 | static int skl_tplg_fill_str_mfest_tkn(struct device *dev, |
| 2322 | struct snd_soc_tplg_vendor_string_elem *str_elem, |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2323 | struct skl *skl) |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2324 | { |
| 2325 | int tkn_count = 0; |
| 2326 | static int ref_count; |
| 2327 | |
| 2328 | switch (str_elem->token) { |
| 2329 | case SKL_TKN_STR_LIB_NAME: |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2330 | if (ref_count > skl->skl_sst->lib_count - 1) { |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2331 | ref_count = 0; |
| 2332 | return -EINVAL; |
| 2333 | } |
| 2334 | |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2335 | strncpy(skl->skl_sst->lib_info[ref_count].name, |
| 2336 | str_elem->string, |
| 2337 | ARRAY_SIZE(skl->skl_sst->lib_info[ref_count].name)); |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2338 | ref_count++; |
| 2339 | tkn_count++; |
| 2340 | break; |
| 2341 | |
| 2342 | default: |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 2343 | dev_err(dev, "Not a string token %d\n", str_elem->token); |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2344 | break; |
| 2345 | } |
| 2346 | |
| 2347 | return tkn_count; |
| 2348 | } |
| 2349 | |
| 2350 | static int skl_tplg_get_str_tkn(struct device *dev, |
| 2351 | struct snd_soc_tplg_vendor_array *array, |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2352 | struct skl *skl) |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2353 | { |
| 2354 | int tkn_count = 0, ret; |
| 2355 | struct snd_soc_tplg_vendor_string_elem *str_elem; |
| 2356 | |
| 2357 | str_elem = (struct snd_soc_tplg_vendor_string_elem *)array->value; |
| 2358 | while (tkn_count < array->num_elems) { |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2359 | ret = skl_tplg_fill_str_mfest_tkn(dev, str_elem, skl); |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2360 | str_elem++; |
| 2361 | |
| 2362 | if (ret < 0) |
| 2363 | return ret; |
| 2364 | |
| 2365 | tkn_count = tkn_count + ret; |
| 2366 | } |
| 2367 | |
| 2368 | return tkn_count; |
| 2369 | } |
| 2370 | |
| 2371 | static int skl_tplg_get_int_tkn(struct device *dev, |
| 2372 | struct snd_soc_tplg_vendor_value_elem *tkn_elem, |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2373 | struct skl *skl) |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2374 | { |
| 2375 | int tkn_count = 0; |
| 2376 | |
| 2377 | switch (tkn_elem->token) { |
| 2378 | case SKL_TKN_U32_LIB_COUNT: |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2379 | skl->skl_sst->lib_count = tkn_elem->value; |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2380 | tkn_count++; |
| 2381 | break; |
| 2382 | |
| 2383 | default: |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 2384 | dev_err(dev, "Not a manifest token %d\n", tkn_elem->token); |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2385 | return -EINVAL; |
| 2386 | } |
| 2387 | |
| 2388 | return tkn_count; |
| 2389 | } |
| 2390 | |
| 2391 | /* |
| 2392 | * Fill the manifest structure by parsing the tokens based on the |
| 2393 | * type. |
| 2394 | */ |
| 2395 | static int skl_tplg_get_manifest_tkn(struct device *dev, |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2396 | char *pvt_data, struct skl *skl, |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2397 | int block_size) |
| 2398 | { |
| 2399 | int tkn_count = 0, ret; |
| 2400 | int off = 0, tuple_size = 0; |
| 2401 | struct snd_soc_tplg_vendor_array *array; |
| 2402 | struct snd_soc_tplg_vendor_value_elem *tkn_elem; |
| 2403 | |
| 2404 | if (block_size <= 0) |
| 2405 | return -EINVAL; |
| 2406 | |
| 2407 | while (tuple_size < block_size) { |
| 2408 | array = (struct snd_soc_tplg_vendor_array *)(pvt_data + off); |
| 2409 | off += array->size; |
| 2410 | switch (array->type) { |
| 2411 | case SND_SOC_TPLG_TUPLE_TYPE_STRING: |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2412 | ret = skl_tplg_get_str_tkn(dev, array, skl); |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2413 | |
| 2414 | if (ret < 0) |
| 2415 | return ret; |
| 2416 | tkn_count += ret; |
| 2417 | |
| 2418 | tuple_size += tkn_count * |
| 2419 | sizeof(struct snd_soc_tplg_vendor_string_elem); |
| 2420 | continue; |
| 2421 | |
| 2422 | case SND_SOC_TPLG_TUPLE_TYPE_UUID: |
Colin Ian King | ecd286a | 2016-09-16 18:51:21 +0100 | [diff] [blame] | 2423 | dev_warn(dev, "no uuid tokens for skl tplf manifest\n"); |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2424 | continue; |
| 2425 | |
| 2426 | default: |
| 2427 | tkn_elem = array->value; |
| 2428 | tkn_count = 0; |
| 2429 | break; |
| 2430 | } |
| 2431 | |
| 2432 | while (tkn_count <= array->num_elems - 1) { |
| 2433 | ret = skl_tplg_get_int_tkn(dev, |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2434 | tkn_elem, skl); |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2435 | if (ret < 0) |
| 2436 | return ret; |
| 2437 | |
| 2438 | tkn_count = tkn_count + ret; |
| 2439 | tkn_elem++; |
| 2440 | tuple_size += tkn_count * |
| 2441 | sizeof(struct snd_soc_tplg_vendor_value_elem); |
| 2442 | break; |
| 2443 | } |
| 2444 | tkn_count = 0; |
| 2445 | } |
| 2446 | |
| 2447 | return 0; |
| 2448 | } |
| 2449 | |
| 2450 | /* |
| 2451 | * Parse manifest private data for tokens. The private data block is |
| 2452 | * preceded by descriptors for type and size of data block. |
| 2453 | */ |
| 2454 | static int skl_tplg_get_manifest_data(struct snd_soc_tplg_manifest *manifest, |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2455 | struct device *dev, struct skl *skl) |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2456 | { |
| 2457 | struct snd_soc_tplg_vendor_array *array; |
| 2458 | int num_blocks, block_size = 0, block_type, off = 0; |
| 2459 | char *data; |
| 2460 | int ret; |
| 2461 | |
| 2462 | /* Read the NUM_DATA_BLOCKS descriptor */ |
| 2463 | array = (struct snd_soc_tplg_vendor_array *)manifest->priv.data; |
| 2464 | ret = skl_tplg_get_desc_blocks(dev, array); |
| 2465 | if (ret < 0) |
| 2466 | return ret; |
| 2467 | num_blocks = ret; |
| 2468 | |
| 2469 | off += array->size; |
| 2470 | array = (struct snd_soc_tplg_vendor_array *) |
| 2471 | (manifest->priv.data + off); |
| 2472 | |
| 2473 | /* Read the BLOCK_TYPE and BLOCK_SIZE descriptor */ |
| 2474 | while (num_blocks > 0) { |
| 2475 | ret = skl_tplg_get_desc_blocks(dev, array); |
| 2476 | |
| 2477 | if (ret < 0) |
| 2478 | return ret; |
| 2479 | block_type = ret; |
| 2480 | off += array->size; |
| 2481 | |
| 2482 | array = (struct snd_soc_tplg_vendor_array *) |
| 2483 | (manifest->priv.data + off); |
| 2484 | |
| 2485 | ret = skl_tplg_get_desc_blocks(dev, array); |
| 2486 | |
| 2487 | if (ret < 0) |
| 2488 | return ret; |
| 2489 | block_size = ret; |
| 2490 | off += array->size; |
| 2491 | |
| 2492 | array = (struct snd_soc_tplg_vendor_array *) |
| 2493 | (manifest->priv.data + off); |
| 2494 | |
| 2495 | data = (manifest->priv.data + off); |
| 2496 | |
| 2497 | if (block_type == SKL_TYPE_TUPLE) { |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2498 | ret = skl_tplg_get_manifest_tkn(dev, data, skl, |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2499 | block_size); |
| 2500 | |
| 2501 | if (ret < 0) |
| 2502 | return ret; |
| 2503 | |
| 2504 | --num_blocks; |
| 2505 | } else { |
| 2506 | return -EINVAL; |
| 2507 | } |
| 2508 | } |
| 2509 | |
| 2510 | return 0; |
| 2511 | } |
| 2512 | |
Kranthi G | 15ecaba9 | 2016-07-26 18:06:43 +0530 | [diff] [blame] | 2513 | static int skl_manifest_load(struct snd_soc_component *cmpnt, |
| 2514 | struct snd_soc_tplg_manifest *manifest) |
| 2515 | { |
Kranthi G | 15ecaba9 | 2016-07-26 18:06:43 +0530 | [diff] [blame] | 2516 | struct hdac_ext_bus *ebus = snd_soc_component_get_drvdata(cmpnt); |
| 2517 | struct hdac_bus *bus = ebus_to_hbus(ebus); |
| 2518 | struct skl *skl = ebus_to_skl(ebus); |
Kranthi G | 15ecaba9 | 2016-07-26 18:06:43 +0530 | [diff] [blame] | 2519 | |
Vinod Koul | c15ad60 | 2016-08-24 18:03:13 +0530 | [diff] [blame] | 2520 | /* proceed only if we have private data defined */ |
| 2521 | if (manifest->priv.size == 0) |
| 2522 | return 0; |
| 2523 | |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2524 | skl_tplg_get_manifest_data(manifest, bus->dev, skl); |
Shreyas NC | 541070c | 2016-08-23 09:31:03 +0530 | [diff] [blame] | 2525 | |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2526 | if (skl->skl_sst->lib_count > SKL_MAX_LIB) { |
Kranthi G | 15ecaba9 | 2016-07-26 18:06:43 +0530 | [diff] [blame] | 2527 | dev_err(bus->dev, "Exceeding max Library count. Got:%d\n", |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2528 | skl->skl_sst->lib_count); |
| 2529 | return -EINVAL; |
Kranthi G | 15ecaba9 | 2016-07-26 18:06:43 +0530 | [diff] [blame] | 2530 | } |
| 2531 | |
Jeeja KP | eee0e16 | 2017-01-02 09:50:04 +0530 | [diff] [blame] | 2532 | return 0; |
Kranthi G | 15ecaba9 | 2016-07-26 18:06:43 +0530 | [diff] [blame] | 2533 | } |
| 2534 | |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2535 | static struct snd_soc_tplg_ops skl_tplg_ops = { |
| 2536 | .widget_load = skl_tplg_widget_load, |
Jeeja KP | 140adfb | 2015-11-28 15:01:50 +0530 | [diff] [blame] | 2537 | .control_load = skl_tplg_control_load, |
| 2538 | .bytes_ext_ops = skl_tlv_ops, |
| 2539 | .bytes_ext_ops_count = ARRAY_SIZE(skl_tlv_ops), |
Kranthi G | 15ecaba9 | 2016-07-26 18:06:43 +0530 | [diff] [blame] | 2540 | .manifest = skl_manifest_load, |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2541 | }; |
| 2542 | |
Jeeja KP | 287af4f | 2016-06-03 18:29:40 +0530 | [diff] [blame] | 2543 | /* |
| 2544 | * A pipe can have multiple modules, each of them will be a DAPM widget as |
| 2545 | * well. While managing a pipeline we need to get the list of all the |
| 2546 | * widgets in a pipelines, so this helper - skl_tplg_create_pipe_widget_list() |
| 2547 | * helps to get the SKL type widgets in that pipeline |
| 2548 | */ |
| 2549 | static int skl_tplg_create_pipe_widget_list(struct snd_soc_platform *platform) |
| 2550 | { |
| 2551 | struct snd_soc_dapm_widget *w; |
| 2552 | struct skl_module_cfg *mcfg = NULL; |
| 2553 | struct skl_pipe_module *p_module = NULL; |
| 2554 | struct skl_pipe *pipe; |
| 2555 | |
| 2556 | list_for_each_entry(w, &platform->component.card->widgets, list) { |
| 2557 | if (is_skl_dsp_widget_type(w) && w->priv != NULL) { |
| 2558 | mcfg = w->priv; |
| 2559 | pipe = mcfg->pipe; |
| 2560 | |
| 2561 | p_module = devm_kzalloc(platform->dev, |
| 2562 | sizeof(*p_module), GFP_KERNEL); |
| 2563 | if (!p_module) |
| 2564 | return -ENOMEM; |
| 2565 | |
| 2566 | p_module->w = w; |
| 2567 | list_add_tail(&p_module->node, &pipe->w_list); |
| 2568 | } |
| 2569 | } |
| 2570 | |
| 2571 | return 0; |
| 2572 | } |
| 2573 | |
Jeeja KP | f0aa94f | 2016-06-03 18:29:41 +0530 | [diff] [blame] | 2574 | static void skl_tplg_set_pipe_type(struct skl *skl, struct skl_pipe *pipe) |
| 2575 | { |
| 2576 | struct skl_pipe_module *w_module; |
| 2577 | struct snd_soc_dapm_widget *w; |
| 2578 | struct skl_module_cfg *mconfig; |
| 2579 | bool host_found = false, link_found = false; |
| 2580 | |
| 2581 | list_for_each_entry(w_module, &pipe->w_list, node) { |
| 2582 | w = w_module->w; |
| 2583 | mconfig = w->priv; |
| 2584 | |
| 2585 | if (mconfig->dev_type == SKL_DEVICE_HDAHOST) |
| 2586 | host_found = true; |
| 2587 | else if (mconfig->dev_type != SKL_DEVICE_NONE) |
| 2588 | link_found = true; |
| 2589 | } |
| 2590 | |
| 2591 | if (host_found && link_found) |
| 2592 | pipe->passthru = true; |
| 2593 | else |
| 2594 | pipe->passthru = false; |
| 2595 | } |
| 2596 | |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2597 | /* This will be read from topology manifest, currently defined here */ |
| 2598 | #define SKL_MAX_MCPS 30000000 |
| 2599 | #define SKL_FW_MAX_MEM 1000000 |
| 2600 | |
| 2601 | /* |
| 2602 | * SKL topology init routine |
| 2603 | */ |
| 2604 | int skl_tplg_init(struct snd_soc_platform *platform, struct hdac_ext_bus *ebus) |
| 2605 | { |
| 2606 | int ret; |
| 2607 | const struct firmware *fw; |
| 2608 | struct hdac_bus *bus = ebus_to_hbus(ebus); |
| 2609 | struct skl *skl = ebus_to_skl(ebus); |
Jeeja KP | f0aa94f | 2016-06-03 18:29:41 +0530 | [diff] [blame] | 2610 | struct skl_pipeline *ppl; |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2611 | |
Vinod Koul | 4b235c4 | 2016-02-19 11:42:34 +0530 | [diff] [blame] | 2612 | ret = request_firmware(&fw, skl->tplg_name, bus->dev); |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2613 | if (ret < 0) { |
Jeeja KP | b663a8c | 2015-10-07 11:31:57 +0100 | [diff] [blame] | 2614 | dev_err(bus->dev, "tplg fw %s load failed with %d\n", |
Vinod Koul | 4b235c4 | 2016-02-19 11:42:34 +0530 | [diff] [blame] | 2615 | skl->tplg_name, ret); |
| 2616 | ret = request_firmware(&fw, "dfw_sst.bin", bus->dev); |
| 2617 | if (ret < 0) { |
| 2618 | dev_err(bus->dev, "Fallback tplg fw %s load failed with %d\n", |
| 2619 | "dfw_sst.bin", ret); |
| 2620 | return ret; |
| 2621 | } |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2622 | } |
| 2623 | |
| 2624 | /* |
| 2625 | * The complete tplg for SKL is loaded as index 0, we don't use |
| 2626 | * any other index |
| 2627 | */ |
Jeeja KP | b663a8c | 2015-10-07 11:31:57 +0100 | [diff] [blame] | 2628 | ret = snd_soc_tplg_component_load(&platform->component, |
| 2629 | &skl_tplg_ops, fw, 0); |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2630 | if (ret < 0) { |
| 2631 | dev_err(bus->dev, "tplg component load failed%d\n", ret); |
Sudip Mukherjee | c14a82c | 2016-01-21 17:27:59 +0530 | [diff] [blame] | 2632 | release_firmware(fw); |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2633 | return -EINVAL; |
| 2634 | } |
| 2635 | |
| 2636 | skl->resource.max_mcps = SKL_MAX_MCPS; |
| 2637 | skl->resource.max_mem = SKL_FW_MAX_MEM; |
| 2638 | |
Vinod Koul | d801836 | 2016-01-05 17:16:04 +0530 | [diff] [blame] | 2639 | skl->tplg = fw; |
Jeeja KP | 287af4f | 2016-06-03 18:29:40 +0530 | [diff] [blame] | 2640 | ret = skl_tplg_create_pipe_widget_list(platform); |
| 2641 | if (ret < 0) |
| 2642 | return ret; |
Vinod Koul | d801836 | 2016-01-05 17:16:04 +0530 | [diff] [blame] | 2643 | |
Jeeja KP | f0aa94f | 2016-06-03 18:29:41 +0530 | [diff] [blame] | 2644 | list_for_each_entry(ppl, &skl->ppl_list, node) |
| 2645 | skl_tplg_set_pipe_type(skl, ppl->pipe); |
Vinod Koul | 3af3670 | 2015-10-07 11:31:56 +0100 | [diff] [blame] | 2646 | |
| 2647 | return 0; |
Jeeja KP | e4e2d2f | 2015-10-07 11:31:52 +0100 | [diff] [blame] | 2648 | } |