1 // SPDX-License-Identifier: GPL-2.0+ 2 // 3 // soc-topology.c -- ALSA SoC Topology 4 // 5 // Copyright (C) 2012 Texas Instruments Inc. 6 // Copyright (C) 2015 Intel Corporation. 7 // 8 // Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com> 9 // K, Mythri P <mythri.p.k@intel.com> 10 // Prusty, Subhransu S <subhransu.s.prusty@intel.com> 11 // B, Jayachandran <jayachandran.b@intel.com> 12 // Abdullah, Omair M <omair.m.abdullah@intel.com> 13 // Jin, Yao <yao.jin@intel.com> 14 // Lin, Mengdong <mengdong.lin@intel.com> 15 // 16 // Add support to read audio firmware topology alongside firmware text. The 17 // topology data can contain kcontrols, DAPM graphs, widgets, DAIs, DAI links, 18 // equalizers, firmware, coefficients etc. 19 // 20 // This file only manages the core ALSA and ASoC components, all other bespoke 21 // firmware topology data is passed to component drivers for bespoke handling. 22 23 #include <linux/kernel.h> 24 #include <linux/export.h> 25 #include <linux/list.h> 26 #include <linux/firmware.h> 27 #include <linux/slab.h> 28 #include <sound/soc.h> 29 #include <sound/soc-dapm.h> 30 #include <sound/soc-topology.h> 31 #include <sound/tlv.h> 32 33 #define SOC_TPLG_MAGIC_BIG_ENDIAN 0x436F5341 /* ASoC in reverse */ 34 35 /* 36 * We make several passes over the data (since it wont necessarily be ordered) 37 * and process objects in the following order. This guarantees the component 38 * drivers will be ready with any vendor data before the mixers and DAPM objects 39 * are loaded (that may make use of the vendor data). 40 */ 41 #define SOC_TPLG_PASS_MANIFEST 0 42 #define SOC_TPLG_PASS_VENDOR 1 43 #define SOC_TPLG_PASS_CONTROL 2 44 #define SOC_TPLG_PASS_WIDGET 3 45 #define SOC_TPLG_PASS_PCM_DAI 4 46 #define SOC_TPLG_PASS_GRAPH 5 47 #define SOC_TPLG_PASS_BE_DAI 6 48 #define SOC_TPLG_PASS_LINK 7 49 50 #define SOC_TPLG_PASS_START SOC_TPLG_PASS_MANIFEST 51 #define SOC_TPLG_PASS_END SOC_TPLG_PASS_LINK 52 53 /* topology context */ 54 struct soc_tplg { 55 const struct firmware *fw; 56 57 /* runtime FW parsing */ 58 const u8 *pos; /* read position */ 59 const u8 *hdr_pos; /* header position */ 60 unsigned int pass; /* pass number */ 61 62 /* component caller */ 63 struct device *dev; 64 struct snd_soc_component *comp; 65 u32 index; /* current block index */ 66 67 /* vendor specific kcontrol operations */ 68 const struct snd_soc_tplg_kcontrol_ops *io_ops; 69 int io_ops_count; 70 71 /* vendor specific bytes ext handlers, for TLV bytes controls */ 72 const struct snd_soc_tplg_bytes_ext_ops *bytes_ext_ops; 73 int bytes_ext_ops_count; 74 75 /* optional fw loading callbacks to component drivers */ 76 const struct snd_soc_tplg_ops *ops; 77 }; 78 79 /* check we dont overflow the data for this control chunk */ 80 static int soc_tplg_check_elem_count(struct soc_tplg *tplg, size_t elem_size, 81 unsigned int count, size_t bytes, const char *elem_type) 82 { 83 const u8 *end = tplg->pos + elem_size * count; 84 85 if (end > tplg->fw->data + tplg->fw->size) { 86 dev_err(tplg->dev, "ASoC: %s overflow end of data\n", 87 elem_type); 88 return -EINVAL; 89 } 90 91 /* check there is enough room in chunk for control. 92 extra bytes at the end of control are for vendor data here */ 93 if (elem_size * count > bytes) { 94 dev_err(tplg->dev, 95 "ASoC: %s count %d of size %zu is bigger than chunk %zu\n", 96 elem_type, count, elem_size, bytes); 97 return -EINVAL; 98 } 99 100 return 0; 101 } 102 103 static inline bool soc_tplg_is_eof(struct soc_tplg *tplg) 104 { 105 const u8 *end = tplg->hdr_pos; 106 107 if (end >= tplg->fw->data + tplg->fw->size) 108 return true; 109 return false; 110 } 111 112 static inline unsigned long soc_tplg_get_hdr_offset(struct soc_tplg *tplg) 113 { 114 return (unsigned long)(tplg->hdr_pos - tplg->fw->data); 115 } 116 117 static inline unsigned long soc_tplg_get_offset(struct soc_tplg *tplg) 118 { 119 return (unsigned long)(tplg->pos - tplg->fw->data); 120 } 121 122 /* mapping of Kcontrol types and associated operations. */ 123 static const struct snd_soc_tplg_kcontrol_ops io_ops[] = { 124 {SND_SOC_TPLG_CTL_VOLSW, snd_soc_get_volsw, 125 snd_soc_put_volsw, snd_soc_info_volsw}, 126 {SND_SOC_TPLG_CTL_VOLSW_SX, snd_soc_get_volsw_sx, 127 snd_soc_put_volsw_sx, NULL}, 128 {SND_SOC_TPLG_CTL_ENUM, snd_soc_get_enum_double, 129 snd_soc_put_enum_double, snd_soc_info_enum_double}, 130 {SND_SOC_TPLG_CTL_ENUM_VALUE, snd_soc_get_enum_double, 131 snd_soc_put_enum_double, NULL}, 132 {SND_SOC_TPLG_CTL_BYTES, snd_soc_bytes_get, 133 snd_soc_bytes_put, snd_soc_bytes_info}, 134 {SND_SOC_TPLG_CTL_RANGE, snd_soc_get_volsw_range, 135 snd_soc_put_volsw_range, snd_soc_info_volsw_range}, 136 {SND_SOC_TPLG_CTL_VOLSW_XR_SX, snd_soc_get_xr_sx, 137 snd_soc_put_xr_sx, snd_soc_info_xr_sx}, 138 {SND_SOC_TPLG_CTL_STROBE, snd_soc_get_strobe, 139 snd_soc_put_strobe, NULL}, 140 {SND_SOC_TPLG_DAPM_CTL_VOLSW, snd_soc_dapm_get_volsw, 141 snd_soc_dapm_put_volsw, snd_soc_info_volsw}, 142 {SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE, snd_soc_dapm_get_enum_double, 143 snd_soc_dapm_put_enum_double, snd_soc_info_enum_double}, 144 {SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT, snd_soc_dapm_get_enum_double, 145 snd_soc_dapm_put_enum_double, NULL}, 146 {SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE, snd_soc_dapm_get_enum_double, 147 snd_soc_dapm_put_enum_double, NULL}, 148 {SND_SOC_TPLG_DAPM_CTL_PIN, snd_soc_dapm_get_pin_switch, 149 snd_soc_dapm_put_pin_switch, snd_soc_dapm_info_pin_switch}, 150 }; 151 152 struct soc_tplg_map { 153 int uid; 154 int kid; 155 }; 156 157 /* mapping of widget types from UAPI IDs to kernel IDs */ 158 static const struct soc_tplg_map dapm_map[] = { 159 {SND_SOC_TPLG_DAPM_INPUT, snd_soc_dapm_input}, 160 {SND_SOC_TPLG_DAPM_OUTPUT, snd_soc_dapm_output}, 161 {SND_SOC_TPLG_DAPM_MUX, snd_soc_dapm_mux}, 162 {SND_SOC_TPLG_DAPM_MIXER, snd_soc_dapm_mixer}, 163 {SND_SOC_TPLG_DAPM_PGA, snd_soc_dapm_pga}, 164 {SND_SOC_TPLG_DAPM_OUT_DRV, snd_soc_dapm_out_drv}, 165 {SND_SOC_TPLG_DAPM_ADC, snd_soc_dapm_adc}, 166 {SND_SOC_TPLG_DAPM_DAC, snd_soc_dapm_dac}, 167 {SND_SOC_TPLG_DAPM_SWITCH, snd_soc_dapm_switch}, 168 {SND_SOC_TPLG_DAPM_PRE, snd_soc_dapm_pre}, 169 {SND_SOC_TPLG_DAPM_POST, snd_soc_dapm_post}, 170 {SND_SOC_TPLG_DAPM_AIF_IN, snd_soc_dapm_aif_in}, 171 {SND_SOC_TPLG_DAPM_AIF_OUT, snd_soc_dapm_aif_out}, 172 {SND_SOC_TPLG_DAPM_DAI_IN, snd_soc_dapm_dai_in}, 173 {SND_SOC_TPLG_DAPM_DAI_OUT, snd_soc_dapm_dai_out}, 174 {SND_SOC_TPLG_DAPM_DAI_LINK, snd_soc_dapm_dai_link}, 175 {SND_SOC_TPLG_DAPM_BUFFER, snd_soc_dapm_buffer}, 176 {SND_SOC_TPLG_DAPM_SCHEDULER, snd_soc_dapm_scheduler}, 177 {SND_SOC_TPLG_DAPM_EFFECT, snd_soc_dapm_effect}, 178 {SND_SOC_TPLG_DAPM_SIGGEN, snd_soc_dapm_siggen}, 179 {SND_SOC_TPLG_DAPM_SRC, snd_soc_dapm_src}, 180 {SND_SOC_TPLG_DAPM_ASRC, snd_soc_dapm_asrc}, 181 {SND_SOC_TPLG_DAPM_ENCODER, snd_soc_dapm_encoder}, 182 {SND_SOC_TPLG_DAPM_DECODER, snd_soc_dapm_decoder}, 183 }; 184 185 static int tplg_chan_get_reg(struct soc_tplg *tplg, 186 struct snd_soc_tplg_channel *chan, int map) 187 { 188 int i; 189 190 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) { 191 if (le32_to_cpu(chan[i].id) == map) 192 return le32_to_cpu(chan[i].reg); 193 } 194 195 return -EINVAL; 196 } 197 198 static int tplg_chan_get_shift(struct soc_tplg *tplg, 199 struct snd_soc_tplg_channel *chan, int map) 200 { 201 int i; 202 203 for (i = 0; i < SND_SOC_TPLG_MAX_CHAN; i++) { 204 if (le32_to_cpu(chan[i].id) == map) 205 return le32_to_cpu(chan[i].shift); 206 } 207 208 return -EINVAL; 209 } 210 211 static int get_widget_id(int tplg_type) 212 { 213 int i; 214 215 for (i = 0; i < ARRAY_SIZE(dapm_map); i++) { 216 if (tplg_type == dapm_map[i].uid) 217 return dapm_map[i].kid; 218 } 219 220 return -EINVAL; 221 } 222 223 static inline void soc_bind_err(struct soc_tplg *tplg, 224 struct snd_soc_tplg_ctl_hdr *hdr, int index) 225 { 226 dev_err(tplg->dev, 227 "ASoC: invalid control type (g,p,i) %d:%d:%d index %d at 0x%lx\n", 228 hdr->ops.get, hdr->ops.put, hdr->ops.info, index, 229 soc_tplg_get_offset(tplg)); 230 } 231 232 static inline void soc_control_err(struct soc_tplg *tplg, 233 struct snd_soc_tplg_ctl_hdr *hdr, const char *name) 234 { 235 dev_err(tplg->dev, 236 "ASoC: no complete control IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n", 237 name, hdr->ops.get, hdr->ops.put, hdr->ops.info, 238 soc_tplg_get_offset(tplg)); 239 } 240 241 /* pass vendor data to component driver for processing */ 242 static int soc_tplg_vendor_load(struct soc_tplg *tplg, 243 struct snd_soc_tplg_hdr *hdr) 244 { 245 int ret = 0; 246 247 if (tplg->ops && tplg->ops->vendor_load) 248 ret = tplg->ops->vendor_load(tplg->comp, tplg->index, hdr); 249 else { 250 dev_err(tplg->dev, "ASoC: no vendor load callback for ID %d\n", 251 hdr->vendor_type); 252 return -EINVAL; 253 } 254 255 if (ret < 0) 256 dev_err(tplg->dev, 257 "ASoC: vendor load failed at hdr offset %ld/0x%lx for type %d:%d\n", 258 soc_tplg_get_hdr_offset(tplg), 259 soc_tplg_get_hdr_offset(tplg), 260 hdr->type, hdr->vendor_type); 261 return ret; 262 } 263 264 /* optionally pass new dynamic widget to component driver. This is mainly for 265 * external widgets where we can assign private data/ops */ 266 static int soc_tplg_widget_load(struct soc_tplg *tplg, 267 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w) 268 { 269 if (tplg->ops && tplg->ops->widget_load) 270 return tplg->ops->widget_load(tplg->comp, tplg->index, w, 271 tplg_w); 272 273 return 0; 274 } 275 276 /* optionally pass new dynamic widget to component driver. This is mainly for 277 * external widgets where we can assign private data/ops */ 278 static int soc_tplg_widget_ready(struct soc_tplg *tplg, 279 struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *tplg_w) 280 { 281 if (tplg->ops && tplg->ops->widget_ready) 282 return tplg->ops->widget_ready(tplg->comp, tplg->index, w, 283 tplg_w); 284 285 return 0; 286 } 287 288 /* pass DAI configurations to component driver for extra initialization */ 289 static int soc_tplg_dai_load(struct soc_tplg *tplg, 290 struct snd_soc_dai_driver *dai_drv, 291 struct snd_soc_tplg_pcm *pcm, struct snd_soc_dai *dai) 292 { 293 if (tplg->ops && tplg->ops->dai_load) 294 return tplg->ops->dai_load(tplg->comp, tplg->index, dai_drv, 295 pcm, dai); 296 297 return 0; 298 } 299 300 /* pass link configurations to component driver for extra initialization */ 301 static int soc_tplg_dai_link_load(struct soc_tplg *tplg, 302 struct snd_soc_dai_link *link, struct snd_soc_tplg_link_config *cfg) 303 { 304 if (tplg->ops && tplg->ops->link_load) 305 return tplg->ops->link_load(tplg->comp, tplg->index, link, cfg); 306 307 return 0; 308 } 309 310 /* tell the component driver that all firmware has been loaded in this request */ 311 static int soc_tplg_complete(struct soc_tplg *tplg) 312 { 313 if (tplg->ops && tplg->ops->complete) 314 return tplg->ops->complete(tplg->comp); 315 316 return 0; 317 } 318 319 /* add a dynamic kcontrol */ 320 static int soc_tplg_add_dcontrol(struct snd_card *card, struct device *dev, 321 const struct snd_kcontrol_new *control_new, const char *prefix, 322 void *data, struct snd_kcontrol **kcontrol) 323 { 324 int err; 325 326 *kcontrol = snd_soc_cnew(control_new, data, control_new->name, prefix); 327 if (*kcontrol == NULL) { 328 dev_err(dev, "ASoC: Failed to create new kcontrol %s\n", 329 control_new->name); 330 return -ENOMEM; 331 } 332 333 err = snd_ctl_add(card, *kcontrol); 334 if (err < 0) { 335 dev_err(dev, "ASoC: Failed to add %s: %d\n", 336 control_new->name, err); 337 return err; 338 } 339 340 return 0; 341 } 342 343 /* add a dynamic kcontrol for component driver */ 344 static int soc_tplg_add_kcontrol(struct soc_tplg *tplg, 345 struct snd_kcontrol_new *k, struct snd_kcontrol **kcontrol) 346 { 347 struct snd_soc_component *comp = tplg->comp; 348 349 return soc_tplg_add_dcontrol(comp->card->snd_card, 350 tplg->dev, k, comp->name_prefix, comp, kcontrol); 351 } 352 353 /* remove kcontrol */ 354 static void soc_tplg_remove_kcontrol(struct snd_soc_component *comp, struct snd_soc_dobj *dobj, 355 int pass) 356 { 357 struct snd_card *card = comp->card->snd_card; 358 359 if (pass != SOC_TPLG_PASS_CONTROL) 360 return; 361 362 if (dobj->unload) 363 dobj->unload(comp, dobj); 364 365 snd_ctl_remove(card, dobj->control.kcontrol); 366 list_del(&dobj->list); 367 } 368 369 /* remove a route */ 370 static void soc_tplg_remove_route(struct snd_soc_component *comp, 371 struct snd_soc_dobj *dobj, int pass) 372 { 373 if (pass != SOC_TPLG_PASS_GRAPH) 374 return; 375 376 if (dobj->unload) 377 dobj->unload(comp, dobj); 378 379 list_del(&dobj->list); 380 } 381 382 /* remove a widget and it's kcontrols - routes must be removed first */ 383 static void soc_tplg_remove_widget(struct snd_soc_component *comp, 384 struct snd_soc_dobj *dobj, int pass) 385 { 386 struct snd_card *card = comp->card->snd_card; 387 struct snd_soc_dapm_widget *w = 388 container_of(dobj, struct snd_soc_dapm_widget, dobj); 389 int i; 390 391 if (pass != SOC_TPLG_PASS_WIDGET) 392 return; 393 394 if (dobj->unload) 395 dobj->unload(comp, dobj); 396 397 if (w->kcontrols) 398 for (i = 0; i < w->num_kcontrols; i++) 399 snd_ctl_remove(card, w->kcontrols[i]); 400 401 list_del(&dobj->list); 402 403 /* widget w is freed by soc-dapm.c */ 404 } 405 406 /* remove DAI configurations */ 407 static void soc_tplg_remove_dai(struct snd_soc_component *comp, 408 struct snd_soc_dobj *dobj, int pass) 409 { 410 struct snd_soc_dai_driver *dai_drv = 411 container_of(dobj, struct snd_soc_dai_driver, dobj); 412 struct snd_soc_dai *dai, *_dai; 413 414 if (pass != SOC_TPLG_PASS_PCM_DAI) 415 return; 416 417 if (dobj->unload) 418 dobj->unload(comp, dobj); 419 420 for_each_component_dais_safe(comp, dai, _dai) 421 if (dai->driver == dai_drv) 422 snd_soc_unregister_dai(dai); 423 424 list_del(&dobj->list); 425 } 426 427 /* remove link configurations */ 428 static void soc_tplg_remove_link(struct snd_soc_component *comp, 429 struct snd_soc_dobj *dobj, int pass) 430 { 431 struct snd_soc_dai_link *link = 432 container_of(dobj, struct snd_soc_dai_link, dobj); 433 434 if (pass != SOC_TPLG_PASS_PCM_DAI) 435 return; 436 437 if (dobj->unload) 438 dobj->unload(comp, dobj); 439 440 list_del(&dobj->list); 441 snd_soc_remove_pcm_runtime(comp->card, 442 snd_soc_get_pcm_runtime(comp->card, link)); 443 } 444 445 /* unload dai link */ 446 static void remove_backend_link(struct snd_soc_component *comp, 447 struct snd_soc_dobj *dobj, int pass) 448 { 449 if (pass != SOC_TPLG_PASS_LINK) 450 return; 451 452 if (dobj->unload) 453 dobj->unload(comp, dobj); 454 455 /* 456 * We don't free the link here as what soc_tplg_remove_link() do since BE 457 * links are not allocated by topology. 458 * We however need to reset the dobj type to its initial values 459 */ 460 dobj->type = SND_SOC_DOBJ_NONE; 461 list_del(&dobj->list); 462 } 463 464 /* bind a kcontrol to it's IO handlers */ 465 static int soc_tplg_kcontrol_bind_io(struct snd_soc_tplg_ctl_hdr *hdr, 466 struct snd_kcontrol_new *k, 467 const struct soc_tplg *tplg) 468 { 469 const struct snd_soc_tplg_kcontrol_ops *ops; 470 const struct snd_soc_tplg_bytes_ext_ops *ext_ops; 471 int num_ops, i; 472 473 if (le32_to_cpu(hdr->ops.info) == SND_SOC_TPLG_CTL_BYTES 474 && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER 475 && (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ 476 || k->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE) 477 && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { 478 struct soc_bytes_ext *sbe; 479 struct snd_soc_tplg_bytes_control *be; 480 481 sbe = (struct soc_bytes_ext *)k->private_value; 482 be = container_of(hdr, struct snd_soc_tplg_bytes_control, hdr); 483 484 /* TLV bytes controls need standard kcontrol info handler, 485 * TLV callback and extended put/get handlers. 486 */ 487 k->info = snd_soc_bytes_info_ext; 488 k->tlv.c = snd_soc_bytes_tlv_callback; 489 490 /* 491 * When a topology-based implementation abuses the 492 * control interface and uses bytes_ext controls of 493 * more than 512 bytes, we need to disable the size 494 * checks, otherwise accesses to such controls will 495 * return an -EINVAL error and prevent the card from 496 * being configured. 497 */ 498 if (sbe->max > 512) 499 k->access |= SNDRV_CTL_ELEM_ACCESS_SKIP_CHECK; 500 501 ext_ops = tplg->bytes_ext_ops; 502 num_ops = tplg->bytes_ext_ops_count; 503 for (i = 0; i < num_ops; i++) { 504 if (!sbe->put && 505 ext_ops[i].id == le32_to_cpu(be->ext_ops.put)) 506 sbe->put = ext_ops[i].put; 507 if (!sbe->get && 508 ext_ops[i].id == le32_to_cpu(be->ext_ops.get)) 509 sbe->get = ext_ops[i].get; 510 } 511 512 if ((k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) && !sbe->get) 513 return -EINVAL; 514 if ((k->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE) && !sbe->put) 515 return -EINVAL; 516 return 0; 517 } 518 519 /* try and map vendor specific kcontrol handlers first */ 520 ops = tplg->io_ops; 521 num_ops = tplg->io_ops_count; 522 for (i = 0; i < num_ops; i++) { 523 524 if (k->put == NULL && ops[i].id == le32_to_cpu(hdr->ops.put)) 525 k->put = ops[i].put; 526 if (k->get == NULL && ops[i].id == le32_to_cpu(hdr->ops.get)) 527 k->get = ops[i].get; 528 if (k->info == NULL && ops[i].id == le32_to_cpu(hdr->ops.info)) 529 k->info = ops[i].info; 530 } 531 532 /* vendor specific handlers found ? */ 533 if (k->put && k->get && k->info) 534 return 0; 535 536 /* none found so try standard kcontrol handlers */ 537 ops = io_ops; 538 num_ops = ARRAY_SIZE(io_ops); 539 for (i = 0; i < num_ops; i++) { 540 541 if (k->put == NULL && ops[i].id == le32_to_cpu(hdr->ops.put)) 542 k->put = ops[i].put; 543 if (k->get == NULL && ops[i].id == le32_to_cpu(hdr->ops.get)) 544 k->get = ops[i].get; 545 if (k->info == NULL && ops[i].id == le32_to_cpu(hdr->ops.info)) 546 k->info = ops[i].info; 547 } 548 549 /* standard handlers found ? */ 550 if (k->put && k->get && k->info) 551 return 0; 552 553 /* nothing to bind */ 554 return -EINVAL; 555 } 556 557 /* bind a widgets to it's evnt handlers */ 558 int snd_soc_tplg_widget_bind_event(struct snd_soc_dapm_widget *w, 559 const struct snd_soc_tplg_widget_events *events, 560 int num_events, u16 event_type) 561 { 562 int i; 563 564 w->event = NULL; 565 566 for (i = 0; i < num_events; i++) { 567 if (event_type == events[i].type) { 568 569 /* found - so assign event */ 570 w->event = events[i].event_handler; 571 return 0; 572 } 573 } 574 575 /* not found */ 576 return -EINVAL; 577 } 578 EXPORT_SYMBOL_GPL(snd_soc_tplg_widget_bind_event); 579 580 /* optionally pass new dynamic kcontrol to component driver. */ 581 static int soc_tplg_control_load(struct soc_tplg *tplg, 582 struct snd_kcontrol_new *k, struct snd_soc_tplg_ctl_hdr *hdr) 583 { 584 int ret = 0; 585 586 if (tplg->ops && tplg->ops->control_load) 587 ret = tplg->ops->control_load(tplg->comp, tplg->index, k, hdr); 588 589 if (ret) 590 dev_err(tplg->dev, "ASoC: failed to init %s\n", hdr->name); 591 592 return ret; 593 } 594 595 596 static int soc_tplg_create_tlv_db_scale(struct soc_tplg *tplg, 597 struct snd_kcontrol_new *kc, struct snd_soc_tplg_tlv_dbscale *scale) 598 { 599 unsigned int item_len = 2 * sizeof(unsigned int); 600 unsigned int *p; 601 602 p = devm_kzalloc(tplg->dev, item_len + 2 * sizeof(unsigned int), GFP_KERNEL); 603 if (!p) 604 return -ENOMEM; 605 606 p[0] = SNDRV_CTL_TLVT_DB_SCALE; 607 p[1] = item_len; 608 p[2] = le32_to_cpu(scale->min); 609 p[3] = (le32_to_cpu(scale->step) & TLV_DB_SCALE_MASK) 610 | (le32_to_cpu(scale->mute) ? TLV_DB_SCALE_MUTE : 0); 611 612 kc->tlv.p = (void *)p; 613 return 0; 614 } 615 616 static int soc_tplg_create_tlv(struct soc_tplg *tplg, 617 struct snd_kcontrol_new *kc, struct snd_soc_tplg_ctl_hdr *tc) 618 { 619 struct snd_soc_tplg_ctl_tlv *tplg_tlv; 620 u32 access = le32_to_cpu(tc->access); 621 622 if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE)) 623 return 0; 624 625 if (!(access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK)) { 626 tplg_tlv = &tc->tlv; 627 switch (le32_to_cpu(tplg_tlv->type)) { 628 case SNDRV_CTL_TLVT_DB_SCALE: 629 return soc_tplg_create_tlv_db_scale(tplg, kc, 630 &tplg_tlv->scale); 631 632 /* TODO: add support for other TLV types */ 633 default: 634 dev_dbg(tplg->dev, "Unsupported TLV type %d\n", 635 tplg_tlv->type); 636 return -EINVAL; 637 } 638 } 639 640 return 0; 641 } 642 643 static int soc_tplg_control_dmixer_create(struct soc_tplg *tplg, struct snd_kcontrol_new *kc) 644 { 645 struct snd_soc_tplg_mixer_control *mc; 646 struct soc_mixer_control *sm; 647 int err; 648 649 mc = (struct snd_soc_tplg_mixer_control *)tplg->pos; 650 651 /* validate kcontrol */ 652 if (strnlen(mc->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == SNDRV_CTL_ELEM_ID_NAME_MAXLEN) 653 return -EINVAL; 654 655 sm = devm_kzalloc(tplg->dev, sizeof(*sm), GFP_KERNEL); 656 if (!sm) 657 return -ENOMEM; 658 659 tplg->pos += sizeof(struct snd_soc_tplg_mixer_control) + le32_to_cpu(mc->priv.size); 660 661 dev_dbg(tplg->dev, "ASoC: adding mixer kcontrol %s with access 0x%x\n", 662 mc->hdr.name, mc->hdr.access); 663 664 kc->name = devm_kstrdup(tplg->dev, mc->hdr.name, GFP_KERNEL); 665 if (!kc->name) 666 return -ENOMEM; 667 kc->private_value = (long)sm; 668 kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER; 669 kc->access = le32_to_cpu(mc->hdr.access); 670 671 /* we only support FL/FR channel mapping atm */ 672 sm->reg = tplg_chan_get_reg(tplg, mc->channel, SNDRV_CHMAP_FL); 673 sm->rreg = tplg_chan_get_reg(tplg, mc->channel, SNDRV_CHMAP_FR); 674 sm->shift = tplg_chan_get_shift(tplg, mc->channel, SNDRV_CHMAP_FL); 675 sm->rshift = tplg_chan_get_shift(tplg, mc->channel, SNDRV_CHMAP_FR); 676 677 sm->max = le32_to_cpu(mc->max); 678 sm->min = le32_to_cpu(mc->min); 679 sm->invert = le32_to_cpu(mc->invert); 680 sm->platform_max = le32_to_cpu(mc->platform_max); 681 682 /* map io handlers */ 683 err = soc_tplg_kcontrol_bind_io(&mc->hdr, kc, tplg); 684 if (err) { 685 soc_control_err(tplg, &mc->hdr, mc->hdr.name); 686 return err; 687 } 688 689 /* create any TLV data */ 690 err = soc_tplg_create_tlv(tplg, kc, &mc->hdr); 691 if (err < 0) { 692 dev_err(tplg->dev, "ASoC: failed to create TLV %s\n", mc->hdr.name); 693 return err; 694 } 695 696 /* pass control to driver for optional further init */ 697 return soc_tplg_control_load(tplg, kc, &mc->hdr); 698 } 699 700 static int soc_tplg_denum_create_texts(struct soc_tplg *tplg, struct soc_enum *se, 701 struct snd_soc_tplg_enum_control *ec) 702 { 703 int i, ret; 704 705 if (le32_to_cpu(ec->items) > ARRAY_SIZE(ec->texts)) 706 return -EINVAL; 707 708 se->dobj.control.dtexts = 709 devm_kcalloc(tplg->dev, le32_to_cpu(ec->items), sizeof(char *), GFP_KERNEL); 710 if (se->dobj.control.dtexts == NULL) 711 return -ENOMEM; 712 713 for (i = 0; i < le32_to_cpu(ec->items); i++) { 714 715 if (strnlen(ec->texts[i], SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 716 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) { 717 ret = -EINVAL; 718 goto err; 719 } 720 721 se->dobj.control.dtexts[i] = devm_kstrdup(tplg->dev, ec->texts[i], GFP_KERNEL); 722 if (!se->dobj.control.dtexts[i]) { 723 ret = -ENOMEM; 724 goto err; 725 } 726 } 727 728 se->items = le32_to_cpu(ec->items); 729 se->texts = (const char * const *)se->dobj.control.dtexts; 730 return 0; 731 732 err: 733 return ret; 734 } 735 736 static int soc_tplg_denum_create_values(struct soc_tplg *tplg, struct soc_enum *se, 737 struct snd_soc_tplg_enum_control *ec) 738 { 739 int i; 740 741 /* 742 * Following "if" checks if we have at most SND_SOC_TPLG_NUM_TEXTS 743 * values instead of using ARRAY_SIZE(ec->values) due to the fact that 744 * it is oversized for its purpose. Additionally it is done so because 745 * it is defined in UAPI header where it can't be easily changed. 746 */ 747 if (le32_to_cpu(ec->items) > SND_SOC_TPLG_NUM_TEXTS) 748 return -EINVAL; 749 750 se->dobj.control.dvalues = devm_kcalloc(tplg->dev, le32_to_cpu(ec->items), 751 sizeof(*se->dobj.control.dvalues), 752 GFP_KERNEL); 753 if (!se->dobj.control.dvalues) 754 return -ENOMEM; 755 756 /* convert from little-endian */ 757 for (i = 0; i < le32_to_cpu(ec->items); i++) { 758 se->dobj.control.dvalues[i] = le32_to_cpu(ec->values[i]); 759 } 760 761 se->items = le32_to_cpu(ec->items); 762 se->values = (const unsigned int *)se->dobj.control.dvalues; 763 return 0; 764 } 765 766 static int soc_tplg_control_denum_create(struct soc_tplg *tplg, struct snd_kcontrol_new *kc) 767 { 768 struct snd_soc_tplg_enum_control *ec; 769 struct soc_enum *se; 770 int err; 771 772 ec = (struct snd_soc_tplg_enum_control *)tplg->pos; 773 774 /* validate kcontrol */ 775 if (strnlen(ec->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == SNDRV_CTL_ELEM_ID_NAME_MAXLEN) 776 return -EINVAL; 777 778 se = devm_kzalloc(tplg->dev, sizeof(*se), GFP_KERNEL); 779 if (!se) 780 return -ENOMEM; 781 782 tplg->pos += (sizeof(struct snd_soc_tplg_enum_control) + le32_to_cpu(ec->priv.size)); 783 784 dev_dbg(tplg->dev, "ASoC: adding enum kcontrol %s size %d\n", ec->hdr.name, ec->items); 785 786 kc->name = devm_kstrdup(tplg->dev, ec->hdr.name, GFP_KERNEL); 787 if (!kc->name) 788 return -ENOMEM; 789 kc->private_value = (long)se; 790 kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER; 791 kc->access = le32_to_cpu(ec->hdr.access); 792 793 /* we only support FL/FR channel mapping atm */ 794 se->reg = tplg_chan_get_reg(tplg, ec->channel, SNDRV_CHMAP_FL); 795 se->shift_l = tplg_chan_get_shift(tplg, ec->channel, SNDRV_CHMAP_FL); 796 se->shift_r = tplg_chan_get_shift(tplg, ec->channel, SNDRV_CHMAP_FR); 797 798 se->mask = le32_to_cpu(ec->mask); 799 800 switch (le32_to_cpu(ec->hdr.ops.info)) { 801 case SND_SOC_TPLG_CTL_ENUM_VALUE: 802 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE: 803 err = soc_tplg_denum_create_values(tplg, se, ec); 804 if (err < 0) { 805 dev_err(tplg->dev, "ASoC: could not create values for %s\n", ec->hdr.name); 806 return err; 807 } 808 fallthrough; 809 case SND_SOC_TPLG_CTL_ENUM: 810 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE: 811 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT: 812 err = soc_tplg_denum_create_texts(tplg, se, ec); 813 if (err < 0) { 814 dev_err(tplg->dev, "ASoC: could not create texts for %s\n", ec->hdr.name); 815 return err; 816 } 817 break; 818 default: 819 dev_err(tplg->dev, "ASoC: invalid enum control type %d for %s\n", 820 ec->hdr.ops.info, ec->hdr.name); 821 return -EINVAL; 822 } 823 824 /* map io handlers */ 825 err = soc_tplg_kcontrol_bind_io(&ec->hdr, kc, tplg); 826 if (err) { 827 soc_control_err(tplg, &ec->hdr, ec->hdr.name); 828 return err; 829 } 830 831 /* pass control to driver for optional further init */ 832 return soc_tplg_control_load(tplg, kc, &ec->hdr); 833 } 834 835 static int soc_tplg_control_dbytes_create(struct soc_tplg *tplg, struct snd_kcontrol_new *kc) 836 { 837 struct snd_soc_tplg_bytes_control *be; 838 struct soc_bytes_ext *sbe; 839 int err; 840 841 be = (struct snd_soc_tplg_bytes_control *)tplg->pos; 842 843 /* validate kcontrol */ 844 if (strnlen(be->hdr.name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == SNDRV_CTL_ELEM_ID_NAME_MAXLEN) 845 return -EINVAL; 846 847 sbe = devm_kzalloc(tplg->dev, sizeof(*sbe), GFP_KERNEL); 848 if (!sbe) 849 return -ENOMEM; 850 851 tplg->pos += (sizeof(struct snd_soc_tplg_bytes_control) + le32_to_cpu(be->priv.size)); 852 853 dev_dbg(tplg->dev, "ASoC: adding bytes kcontrol %s with access 0x%x\n", 854 be->hdr.name, be->hdr.access); 855 856 kc->name = devm_kstrdup(tplg->dev, be->hdr.name, GFP_KERNEL); 857 if (!kc->name) 858 return -ENOMEM; 859 kc->private_value = (long)sbe; 860 kc->iface = SNDRV_CTL_ELEM_IFACE_MIXER; 861 kc->access = le32_to_cpu(be->hdr.access); 862 863 sbe->max = le32_to_cpu(be->max); 864 865 /* map standard io handlers and check for external handlers */ 866 err = soc_tplg_kcontrol_bind_io(&be->hdr, kc, tplg); 867 if (err) { 868 soc_control_err(tplg, &be->hdr, be->hdr.name); 869 return err; 870 } 871 872 /* pass control to driver for optional further init */ 873 return soc_tplg_control_load(tplg, kc, &be->hdr); 874 } 875 876 static int soc_tplg_dbytes_create(struct soc_tplg *tplg, size_t size) 877 { 878 struct snd_kcontrol_new kc = {0}; 879 struct soc_bytes_ext *sbe; 880 int ret; 881 882 if (soc_tplg_check_elem_count(tplg, 883 sizeof(struct snd_soc_tplg_bytes_control), 884 1, size, "mixer bytes")) 885 return -EINVAL; 886 887 ret = soc_tplg_control_dbytes_create(tplg, &kc); 888 if (ret) 889 return ret; 890 891 /* register dynamic object */ 892 sbe = (struct soc_bytes_ext *)kc.private_value; 893 894 INIT_LIST_HEAD(&sbe->dobj.list); 895 sbe->dobj.type = SND_SOC_DOBJ_BYTES; 896 sbe->dobj.index = tplg->index; 897 if (tplg->ops) 898 sbe->dobj.unload = tplg->ops->control_unload; 899 900 /* create control directly */ 901 ret = soc_tplg_add_kcontrol(tplg, &kc, &sbe->dobj.control.kcontrol); 902 if (ret < 0) 903 return ret; 904 905 list_add(&sbe->dobj.list, &tplg->comp->dobj_list); 906 907 return ret; 908 } 909 910 static int soc_tplg_dmixer_create(struct soc_tplg *tplg, size_t size) 911 { 912 struct snd_kcontrol_new kc = {0}; 913 struct soc_mixer_control *sm; 914 int ret; 915 916 if (soc_tplg_check_elem_count(tplg, 917 sizeof(struct snd_soc_tplg_mixer_control), 918 1, size, "mixers")) 919 return -EINVAL; 920 921 ret = soc_tplg_control_dmixer_create(tplg, &kc); 922 if (ret) 923 return ret; 924 925 /* register dynamic object */ 926 sm = (struct soc_mixer_control *)kc.private_value; 927 928 INIT_LIST_HEAD(&sm->dobj.list); 929 sm->dobj.type = SND_SOC_DOBJ_MIXER; 930 sm->dobj.index = tplg->index; 931 if (tplg->ops) 932 sm->dobj.unload = tplg->ops->control_unload; 933 934 /* create control directly */ 935 ret = soc_tplg_add_kcontrol(tplg, &kc, &sm->dobj.control.kcontrol); 936 if (ret < 0) 937 return ret; 938 939 list_add(&sm->dobj.list, &tplg->comp->dobj_list); 940 941 return ret; 942 } 943 944 static int soc_tplg_denum_create(struct soc_tplg *tplg, size_t size) 945 { 946 struct snd_kcontrol_new kc = {0}; 947 struct soc_enum *se; 948 int ret; 949 950 if (soc_tplg_check_elem_count(tplg, 951 sizeof(struct snd_soc_tplg_enum_control), 952 1, size, "enums")) 953 return -EINVAL; 954 955 ret = soc_tplg_control_denum_create(tplg, &kc); 956 if (ret) 957 return ret; 958 959 /* register dynamic object */ 960 se = (struct soc_enum *)kc.private_value; 961 962 INIT_LIST_HEAD(&se->dobj.list); 963 se->dobj.type = SND_SOC_DOBJ_ENUM; 964 se->dobj.index = tplg->index; 965 if (tplg->ops) 966 se->dobj.unload = tplg->ops->control_unload; 967 968 /* create control directly */ 969 ret = soc_tplg_add_kcontrol(tplg, &kc, &se->dobj.control.kcontrol); 970 if (ret < 0) 971 return ret; 972 973 list_add(&se->dobj.list, &tplg->comp->dobj_list); 974 975 return ret; 976 } 977 978 static int soc_tplg_kcontrol_elems_load(struct soc_tplg *tplg, 979 struct snd_soc_tplg_hdr *hdr) 980 { 981 int ret; 982 int i; 983 984 dev_dbg(tplg->dev, "ASoC: adding %d kcontrols at 0x%lx\n", hdr->count, 985 soc_tplg_get_offset(tplg)); 986 987 for (i = 0; i < le32_to_cpu(hdr->count); i++) { 988 struct snd_soc_tplg_ctl_hdr *control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos; 989 990 if (le32_to_cpu(control_hdr->size) != sizeof(*control_hdr)) { 991 dev_err(tplg->dev, "ASoC: invalid control size\n"); 992 return -EINVAL; 993 } 994 995 switch (le32_to_cpu(control_hdr->ops.info)) { 996 case SND_SOC_TPLG_CTL_VOLSW: 997 case SND_SOC_TPLG_CTL_STROBE: 998 case SND_SOC_TPLG_CTL_VOLSW_SX: 999 case SND_SOC_TPLG_CTL_VOLSW_XR_SX: 1000 case SND_SOC_TPLG_CTL_RANGE: 1001 case SND_SOC_TPLG_DAPM_CTL_VOLSW: 1002 case SND_SOC_TPLG_DAPM_CTL_PIN: 1003 ret = soc_tplg_dmixer_create(tplg, le32_to_cpu(hdr->payload_size)); 1004 break; 1005 case SND_SOC_TPLG_CTL_ENUM: 1006 case SND_SOC_TPLG_CTL_ENUM_VALUE: 1007 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE: 1008 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT: 1009 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE: 1010 ret = soc_tplg_denum_create(tplg, le32_to_cpu(hdr->payload_size)); 1011 break; 1012 case SND_SOC_TPLG_CTL_BYTES: 1013 ret = soc_tplg_dbytes_create(tplg, le32_to_cpu(hdr->payload_size)); 1014 break; 1015 default: 1016 soc_bind_err(tplg, control_hdr, i); 1017 return -EINVAL; 1018 } 1019 if (ret < 0) { 1020 dev_err(tplg->dev, "ASoC: invalid control\n"); 1021 return ret; 1022 } 1023 1024 } 1025 1026 return 0; 1027 } 1028 1029 /* optionally pass new dynamic kcontrol to component driver. */ 1030 static int soc_tplg_add_route(struct soc_tplg *tplg, 1031 struct snd_soc_dapm_route *route) 1032 { 1033 if (tplg->ops && tplg->ops->dapm_route_load) 1034 return tplg->ops->dapm_route_load(tplg->comp, tplg->index, 1035 route); 1036 1037 return 0; 1038 } 1039 1040 static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg, 1041 struct snd_soc_tplg_hdr *hdr) 1042 { 1043 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm; 1044 const size_t maxlen = SNDRV_CTL_ELEM_ID_NAME_MAXLEN; 1045 struct snd_soc_tplg_dapm_graph_elem *elem; 1046 struct snd_soc_dapm_route *route; 1047 int count, i; 1048 int ret = 0; 1049 1050 count = le32_to_cpu(hdr->count); 1051 1052 if (soc_tplg_check_elem_count(tplg, 1053 sizeof(struct snd_soc_tplg_dapm_graph_elem), 1054 count, le32_to_cpu(hdr->payload_size), "graph")) 1055 return -EINVAL; 1056 1057 dev_dbg(tplg->dev, "ASoC: adding %d DAPM routes for index %d\n", count, 1058 hdr->index); 1059 1060 for (i = 0; i < count; i++) { 1061 route = devm_kzalloc(tplg->dev, sizeof(*route), GFP_KERNEL); 1062 if (!route) 1063 return -ENOMEM; 1064 elem = (struct snd_soc_tplg_dapm_graph_elem *)tplg->pos; 1065 tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem); 1066 1067 /* validate routes */ 1068 if ((strnlen(elem->source, maxlen) == maxlen) || 1069 (strnlen(elem->sink, maxlen) == maxlen) || 1070 (strnlen(elem->control, maxlen) == maxlen)) { 1071 ret = -EINVAL; 1072 break; 1073 } 1074 1075 route->source = devm_kstrdup(tplg->dev, elem->source, GFP_KERNEL); 1076 route->sink = devm_kstrdup(tplg->dev, elem->sink, GFP_KERNEL); 1077 if (!route->source || !route->sink) { 1078 ret = -ENOMEM; 1079 break; 1080 } 1081 1082 if (strnlen(elem->control, maxlen) != 0) { 1083 route->control = devm_kstrdup(tplg->dev, elem->control, GFP_KERNEL); 1084 if (!route->control) { 1085 ret = -ENOMEM; 1086 break; 1087 } 1088 } 1089 1090 /* add route dobj to dobj_list */ 1091 route->dobj.type = SND_SOC_DOBJ_GRAPH; 1092 if (tplg->ops) 1093 route->dobj.unload = tplg->ops->dapm_route_unload; 1094 route->dobj.index = tplg->index; 1095 list_add(&route->dobj.list, &tplg->comp->dobj_list); 1096 1097 ret = soc_tplg_add_route(tplg, route); 1098 if (ret < 0) { 1099 dev_err(tplg->dev, "ASoC: topology: add_route failed: %d\n", ret); 1100 break; 1101 } 1102 1103 ret = snd_soc_dapm_add_routes(dapm, route, 1); 1104 if (ret) 1105 break; 1106 } 1107 1108 return ret; 1109 } 1110 1111 static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg, 1112 struct snd_soc_tplg_dapm_widget *w) 1113 { 1114 struct snd_soc_dapm_context *dapm = &tplg->comp->dapm; 1115 struct snd_soc_dapm_widget template, *widget; 1116 struct snd_soc_tplg_ctl_hdr *control_hdr; 1117 struct snd_soc_card *card = tplg->comp->card; 1118 unsigned int *kcontrol_type = NULL; 1119 struct snd_kcontrol_new *kc; 1120 int mixer_count = 0; 1121 int bytes_count = 0; 1122 int enum_count = 0; 1123 int ret = 0; 1124 int i; 1125 1126 if (strnlen(w->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 1127 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) 1128 return -EINVAL; 1129 if (strnlen(w->sname, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 1130 SNDRV_CTL_ELEM_ID_NAME_MAXLEN) 1131 return -EINVAL; 1132 1133 dev_dbg(tplg->dev, "ASoC: creating DAPM widget %s id %d\n", 1134 w->name, w->id); 1135 1136 memset(&template, 0, sizeof(template)); 1137 1138 /* map user to kernel widget ID */ 1139 template.id = get_widget_id(le32_to_cpu(w->id)); 1140 if ((int)template.id < 0) 1141 return template.id; 1142 1143 /* strings are allocated here, but used and freed by the widget */ 1144 template.name = kstrdup(w->name, GFP_KERNEL); 1145 if (!template.name) 1146 return -ENOMEM; 1147 template.sname = kstrdup(w->sname, GFP_KERNEL); 1148 if (!template.sname) { 1149 ret = -ENOMEM; 1150 goto err; 1151 } 1152 template.reg = le32_to_cpu(w->reg); 1153 template.shift = le32_to_cpu(w->shift); 1154 template.mask = le32_to_cpu(w->mask); 1155 template.subseq = le32_to_cpu(w->subseq); 1156 template.on_val = w->invert ? 0 : 1; 1157 template.off_val = w->invert ? 1 : 0; 1158 template.ignore_suspend = le32_to_cpu(w->ignore_suspend); 1159 template.event_flags = le16_to_cpu(w->event_flags); 1160 template.dobj.index = tplg->index; 1161 1162 tplg->pos += 1163 (sizeof(struct snd_soc_tplg_dapm_widget) + 1164 le32_to_cpu(w->priv.size)); 1165 1166 if (w->num_kcontrols == 0) { 1167 template.num_kcontrols = 0; 1168 goto widget; 1169 } 1170 1171 template.num_kcontrols = le32_to_cpu(w->num_kcontrols); 1172 kc = devm_kcalloc(tplg->dev, le32_to_cpu(w->num_kcontrols), sizeof(*kc), GFP_KERNEL); 1173 if (!kc) { 1174 ret = -ENOMEM; 1175 goto hdr_err; 1176 } 1177 1178 kcontrol_type = devm_kcalloc(tplg->dev, le32_to_cpu(w->num_kcontrols), sizeof(unsigned int), 1179 GFP_KERNEL); 1180 if (!kcontrol_type) { 1181 ret = -ENOMEM; 1182 goto hdr_err; 1183 } 1184 1185 for (i = 0; i < le32_to_cpu(w->num_kcontrols); i++) { 1186 control_hdr = (struct snd_soc_tplg_ctl_hdr *)tplg->pos; 1187 switch (le32_to_cpu(control_hdr->ops.info)) { 1188 case SND_SOC_TPLG_CTL_VOLSW: 1189 case SND_SOC_TPLG_CTL_STROBE: 1190 case SND_SOC_TPLG_CTL_VOLSW_SX: 1191 case SND_SOC_TPLG_CTL_VOLSW_XR_SX: 1192 case SND_SOC_TPLG_CTL_RANGE: 1193 case SND_SOC_TPLG_DAPM_CTL_VOLSW: 1194 /* volume mixer */ 1195 kc[i].index = mixer_count; 1196 kcontrol_type[i] = SND_SOC_TPLG_TYPE_MIXER; 1197 mixer_count++; 1198 ret = soc_tplg_control_dmixer_create(tplg, &kc[i]); 1199 if (ret < 0) 1200 goto hdr_err; 1201 break; 1202 case SND_SOC_TPLG_CTL_ENUM: 1203 case SND_SOC_TPLG_CTL_ENUM_VALUE: 1204 case SND_SOC_TPLG_DAPM_CTL_ENUM_DOUBLE: 1205 case SND_SOC_TPLG_DAPM_CTL_ENUM_VIRT: 1206 case SND_SOC_TPLG_DAPM_CTL_ENUM_VALUE: 1207 /* enumerated mixer */ 1208 kc[i].index = enum_count; 1209 kcontrol_type[i] = SND_SOC_TPLG_TYPE_ENUM; 1210 enum_count++; 1211 ret = soc_tplg_control_denum_create(tplg, &kc[i]); 1212 if (ret < 0) 1213 goto hdr_err; 1214 break; 1215 case SND_SOC_TPLG_CTL_BYTES: 1216 /* bytes control */ 1217 kc[i].index = bytes_count; 1218 kcontrol_type[i] = SND_SOC_TPLG_TYPE_BYTES; 1219 bytes_count++; 1220 ret = soc_tplg_control_dbytes_create(tplg, &kc[i]); 1221 if (ret < 0) 1222 goto hdr_err; 1223 break; 1224 default: 1225 dev_err(tplg->dev, "ASoC: invalid widget control type %d:%d:%d\n", 1226 control_hdr->ops.get, control_hdr->ops.put, 1227 le32_to_cpu(control_hdr->ops.info)); 1228 ret = -EINVAL; 1229 goto hdr_err; 1230 } 1231 } 1232 1233 template.kcontrol_news = kc; 1234 dev_dbg(tplg->dev, "ASoC: template %s with %d/%d/%d (mixer/enum/bytes) control\n", 1235 w->name, mixer_count, enum_count, bytes_count); 1236 1237 widget: 1238 ret = soc_tplg_widget_load(tplg, &template, w); 1239 if (ret < 0) 1240 goto hdr_err; 1241 1242 /* card dapm mutex is held by the core if we are loading topology 1243 * data during sound card init. */ 1244 if (snd_soc_card_is_instantiated(card)) 1245 widget = snd_soc_dapm_new_control(dapm, &template); 1246 else 1247 widget = snd_soc_dapm_new_control_unlocked(dapm, &template); 1248 if (IS_ERR(widget)) { 1249 ret = PTR_ERR(widget); 1250 goto hdr_err; 1251 } 1252 1253 widget->dobj.type = SND_SOC_DOBJ_WIDGET; 1254 widget->dobj.widget.kcontrol_type = kcontrol_type; 1255 if (tplg->ops) 1256 widget->dobj.unload = tplg->ops->widget_unload; 1257 widget->dobj.index = tplg->index; 1258 list_add(&widget->dobj.list, &tplg->comp->dobj_list); 1259 1260 ret = soc_tplg_widget_ready(tplg, widget, w); 1261 if (ret < 0) 1262 goto ready_err; 1263 1264 kfree(template.sname); 1265 kfree(template.name); 1266 1267 return 0; 1268 1269 ready_err: 1270 soc_tplg_remove_widget(widget->dapm->component, &widget->dobj, SOC_TPLG_PASS_WIDGET); 1271 snd_soc_dapm_free_widget(widget); 1272 hdr_err: 1273 kfree(template.sname); 1274 err: 1275 kfree(template.name); 1276 return ret; 1277 } 1278 1279 static int soc_tplg_dapm_widget_elems_load(struct soc_tplg *tplg, 1280 struct snd_soc_tplg_hdr *hdr) 1281 { 1282 int count, i; 1283 1284 count = le32_to_cpu(hdr->count); 1285 1286 dev_dbg(tplg->dev, "ASoC: adding %d DAPM widgets\n", count); 1287 1288 for (i = 0; i < count; i++) { 1289 struct snd_soc_tplg_dapm_widget *widget = (struct snd_soc_tplg_dapm_widget *) tplg->pos; 1290 int ret; 1291 1292 /* 1293 * check if widget itself fits within topology file 1294 * use sizeof instead of widget->size, as we can't be sure 1295 * it is set properly yet (file may end before it is present) 1296 */ 1297 if (soc_tplg_get_offset(tplg) + sizeof(*widget) >= tplg->fw->size) { 1298 dev_err(tplg->dev, "ASoC: invalid widget data size\n"); 1299 return -EINVAL; 1300 } 1301 1302 /* check if widget has proper size */ 1303 if (le32_to_cpu(widget->size) != sizeof(*widget)) { 1304 dev_err(tplg->dev, "ASoC: invalid widget size\n"); 1305 return -EINVAL; 1306 } 1307 1308 /* check if widget private data fits within topology file */ 1309 if (soc_tplg_get_offset(tplg) + le32_to_cpu(widget->priv.size) >= tplg->fw->size) { 1310 dev_err(tplg->dev, "ASoC: invalid widget private data size\n"); 1311 return -EINVAL; 1312 } 1313 1314 ret = soc_tplg_dapm_widget_create(tplg, widget); 1315 if (ret < 0) { 1316 dev_err(tplg->dev, "ASoC: failed to load widget %s\n", 1317 widget->name); 1318 return ret; 1319 } 1320 } 1321 1322 return 0; 1323 } 1324 1325 static int soc_tplg_dapm_complete(struct soc_tplg *tplg) 1326 { 1327 struct snd_soc_card *card = tplg->comp->card; 1328 int ret; 1329 1330 /* Card might not have been registered at this point. 1331 * If so, just return success. 1332 */ 1333 if (!snd_soc_card_is_instantiated(card)) { 1334 dev_warn(tplg->dev, "ASoC: Parent card not yet available, widget card binding deferred\n"); 1335 return 0; 1336 } 1337 1338 ret = snd_soc_dapm_new_widgets(card); 1339 if (ret < 0) 1340 dev_err(tplg->dev, "ASoC: failed to create new widgets %d\n", ret); 1341 1342 return ret; 1343 } 1344 1345 static int set_stream_info(struct soc_tplg *tplg, struct snd_soc_pcm_stream *stream, 1346 struct snd_soc_tplg_stream_caps *caps) 1347 { 1348 stream->stream_name = devm_kstrdup(tplg->dev, caps->name, GFP_KERNEL); 1349 if (!stream->stream_name) 1350 return -ENOMEM; 1351 1352 stream->channels_min = le32_to_cpu(caps->channels_min); 1353 stream->channels_max = le32_to_cpu(caps->channels_max); 1354 stream->rates = le32_to_cpu(caps->rates); 1355 stream->rate_min = le32_to_cpu(caps->rate_min); 1356 stream->rate_max = le32_to_cpu(caps->rate_max); 1357 stream->formats = le64_to_cpu(caps->formats); 1358 stream->sig_bits = le32_to_cpu(caps->sig_bits); 1359 1360 return 0; 1361 } 1362 1363 static void set_dai_flags(struct snd_soc_dai_driver *dai_drv, 1364 unsigned int flag_mask, unsigned int flags) 1365 { 1366 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES) 1367 dai_drv->symmetric_rate = 1368 (flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_RATES) ? 1 : 0; 1369 1370 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS) 1371 dai_drv->symmetric_channels = 1372 (flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_CHANNELS) ? 1373 1 : 0; 1374 1375 if (flag_mask & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS) 1376 dai_drv->symmetric_sample_bits = 1377 (flags & SND_SOC_TPLG_DAI_FLGBIT_SYMMETRIC_SAMPLEBITS) ? 1378 1 : 0; 1379 } 1380 1381 static const struct snd_soc_dai_ops tplg_dai_ops = { 1382 .compress_new = snd_soc_new_compress, 1383 }; 1384 1385 static int soc_tplg_dai_create(struct soc_tplg *tplg, 1386 struct snd_soc_tplg_pcm *pcm) 1387 { 1388 struct snd_soc_dai_driver *dai_drv; 1389 struct snd_soc_pcm_stream *stream; 1390 struct snd_soc_tplg_stream_caps *caps; 1391 struct snd_soc_dai *dai; 1392 struct snd_soc_dapm_context *dapm = 1393 snd_soc_component_get_dapm(tplg->comp); 1394 int ret; 1395 1396 dai_drv = devm_kzalloc(tplg->dev, sizeof(struct snd_soc_dai_driver), GFP_KERNEL); 1397 if (dai_drv == NULL) 1398 return -ENOMEM; 1399 1400 if (strlen(pcm->dai_name)) { 1401 dai_drv->name = devm_kstrdup(tplg->dev, pcm->dai_name, GFP_KERNEL); 1402 if (!dai_drv->name) { 1403 ret = -ENOMEM; 1404 goto err; 1405 } 1406 } 1407 dai_drv->id = le32_to_cpu(pcm->dai_id); 1408 1409 if (pcm->playback) { 1410 stream = &dai_drv->playback; 1411 caps = &pcm->caps[SND_SOC_TPLG_STREAM_PLAYBACK]; 1412 ret = set_stream_info(tplg, stream, caps); 1413 if (ret < 0) 1414 goto err; 1415 } 1416 1417 if (pcm->capture) { 1418 stream = &dai_drv->capture; 1419 caps = &pcm->caps[SND_SOC_TPLG_STREAM_CAPTURE]; 1420 ret = set_stream_info(tplg, stream, caps); 1421 if (ret < 0) 1422 goto err; 1423 } 1424 1425 if (pcm->compress) 1426 dai_drv->ops = &tplg_dai_ops; 1427 1428 /* pass control to component driver for optional further init */ 1429 ret = soc_tplg_dai_load(tplg, dai_drv, pcm, NULL); 1430 if (ret < 0) { 1431 dev_err(tplg->dev, "ASoC: DAI loading failed\n"); 1432 goto err; 1433 } 1434 1435 dai_drv->dobj.index = tplg->index; 1436 dai_drv->dobj.type = SND_SOC_DOBJ_PCM; 1437 if (tplg->ops) 1438 dai_drv->dobj.unload = tplg->ops->dai_unload; 1439 list_add(&dai_drv->dobj.list, &tplg->comp->dobj_list); 1440 1441 /* register the DAI to the component */ 1442 dai = snd_soc_register_dai(tplg->comp, dai_drv, false); 1443 if (!dai) 1444 return -ENOMEM; 1445 1446 /* Create the DAI widgets here */ 1447 ret = snd_soc_dapm_new_dai_widgets(dapm, dai); 1448 if (ret != 0) { 1449 dev_err(dai->dev, "Failed to create DAI widgets %d\n", ret); 1450 snd_soc_unregister_dai(dai); 1451 return ret; 1452 } 1453 1454 return 0; 1455 1456 err: 1457 return ret; 1458 } 1459 1460 static void set_link_flags(struct snd_soc_dai_link *link, 1461 unsigned int flag_mask, unsigned int flags) 1462 { 1463 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES) 1464 link->symmetric_rate = 1465 (flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_RATES) ? 1 : 0; 1466 1467 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS) 1468 link->symmetric_channels = 1469 (flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_CHANNELS) ? 1470 1 : 0; 1471 1472 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS) 1473 link->symmetric_sample_bits = 1474 (flags & SND_SOC_TPLG_LNK_FLGBIT_SYMMETRIC_SAMPLEBITS) ? 1475 1 : 0; 1476 1477 if (flag_mask & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP) 1478 link->ignore_suspend = 1479 (flags & SND_SOC_TPLG_LNK_FLGBIT_VOICE_WAKEUP) ? 1480 1 : 0; 1481 } 1482 1483 /* create the FE DAI link */ 1484 static int soc_tplg_fe_link_create(struct soc_tplg *tplg, 1485 struct snd_soc_tplg_pcm *pcm) 1486 { 1487 struct snd_soc_dai_link *link; 1488 struct snd_soc_dai_link_component *dlc; 1489 int ret; 1490 1491 /* link + cpu + codec + platform */ 1492 link = devm_kzalloc(tplg->dev, sizeof(*link) + (3 * sizeof(*dlc)), GFP_KERNEL); 1493 if (link == NULL) 1494 return -ENOMEM; 1495 1496 dlc = (struct snd_soc_dai_link_component *)(link + 1); 1497 1498 link->cpus = &dlc[0]; 1499 link->num_cpus = 1; 1500 1501 link->dobj.index = tplg->index; 1502 link->dobj.type = SND_SOC_DOBJ_DAI_LINK; 1503 if (tplg->ops) 1504 link->dobj.unload = tplg->ops->link_unload; 1505 1506 if (strlen(pcm->pcm_name)) { 1507 link->name = devm_kstrdup(tplg->dev, pcm->pcm_name, GFP_KERNEL); 1508 link->stream_name = devm_kstrdup(tplg->dev, pcm->pcm_name, GFP_KERNEL); 1509 if (!link->name || !link->stream_name) { 1510 ret = -ENOMEM; 1511 goto err; 1512 } 1513 } 1514 link->id = le32_to_cpu(pcm->pcm_id); 1515 1516 if (strlen(pcm->dai_name)) { 1517 link->cpus->dai_name = devm_kstrdup(tplg->dev, pcm->dai_name, GFP_KERNEL); 1518 if (!link->cpus->dai_name) { 1519 ret = -ENOMEM; 1520 goto err; 1521 } 1522 } 1523 1524 /* 1525 * Many topology are assuming link has Codec / Platform, and 1526 * these might be overwritten at soc_tplg_dai_link_load(). 1527 * Don't use &snd_soc_dummy_dlc here. 1528 */ 1529 link->codecs = &dlc[1]; /* Don't use &snd_soc_dummy_dlc here */ 1530 link->codecs->name = "snd-soc-dummy"; 1531 link->codecs->dai_name = "snd-soc-dummy-dai"; 1532 link->num_codecs = 1; 1533 1534 link->platforms = &dlc[2]; /* Don't use &snd_soc_dummy_dlc here */ 1535 link->platforms->name = "snd-soc-dummy"; 1536 link->num_platforms = 1; 1537 1538 /* enable DPCM */ 1539 link->dynamic = 1; 1540 link->ignore_pmdown_time = 1; 1541 link->playback_only = le32_to_cpu(pcm->playback) && !le32_to_cpu(pcm->capture); 1542 link->capture_only = !le32_to_cpu(pcm->playback) && le32_to_cpu(pcm->capture); 1543 if (pcm->flag_mask) 1544 set_link_flags(link, 1545 le32_to_cpu(pcm->flag_mask), 1546 le32_to_cpu(pcm->flags)); 1547 1548 /* pass control to component driver for optional further init */ 1549 ret = soc_tplg_dai_link_load(tplg, link, NULL); 1550 if (ret < 0) { 1551 dev_err(tplg->dev, "ASoC: FE link loading failed\n"); 1552 goto err; 1553 } 1554 1555 ret = snd_soc_add_pcm_runtimes(tplg->comp->card, link, 1); 1556 if (ret < 0) { 1557 if (ret != -EPROBE_DEFER) 1558 dev_err(tplg->dev, "ASoC: adding FE link failed\n"); 1559 goto err; 1560 } 1561 1562 list_add(&link->dobj.list, &tplg->comp->dobj_list); 1563 1564 return 0; 1565 err: 1566 return ret; 1567 } 1568 1569 /* create a FE DAI and DAI link from the PCM object */ 1570 static int soc_tplg_pcm_create(struct soc_tplg *tplg, 1571 struct snd_soc_tplg_pcm *pcm) 1572 { 1573 int ret; 1574 1575 ret = soc_tplg_dai_create(tplg, pcm); 1576 if (ret < 0) 1577 return ret; 1578 1579 return soc_tplg_fe_link_create(tplg, pcm); 1580 } 1581 1582 static int soc_tplg_pcm_elems_load(struct soc_tplg *tplg, 1583 struct snd_soc_tplg_hdr *hdr) 1584 { 1585 struct snd_soc_tplg_pcm *pcm; 1586 int count; 1587 int size; 1588 int i; 1589 int ret; 1590 1591 count = le32_to_cpu(hdr->count); 1592 1593 /* check the element size and count */ 1594 pcm = (struct snd_soc_tplg_pcm *)tplg->pos; 1595 size = le32_to_cpu(pcm->size); 1596 if (size > sizeof(struct snd_soc_tplg_pcm)) { 1597 dev_err(tplg->dev, "ASoC: invalid size %d for PCM elems\n", 1598 size); 1599 return -EINVAL; 1600 } 1601 1602 if (soc_tplg_check_elem_count(tplg, 1603 size, count, 1604 le32_to_cpu(hdr->payload_size), 1605 "PCM DAI")) 1606 return -EINVAL; 1607 1608 for (i = 0; i < count; i++) { 1609 pcm = (struct snd_soc_tplg_pcm *)tplg->pos; 1610 size = le32_to_cpu(pcm->size); 1611 1612 /* check ABI version by size, create a new version of pcm 1613 * if abi not match. 1614 */ 1615 if (size != sizeof(*pcm)) 1616 return -EINVAL; 1617 1618 /* create the FE DAIs and DAI links */ 1619 ret = soc_tplg_pcm_create(tplg, pcm); 1620 if (ret < 0) 1621 return ret; 1622 1623 /* offset by version-specific struct size and 1624 * real priv data size 1625 */ 1626 tplg->pos += size + le32_to_cpu(pcm->priv.size); 1627 } 1628 1629 dev_dbg(tplg->dev, "ASoC: adding %d PCM DAIs\n", count); 1630 1631 return 0; 1632 } 1633 1634 /** 1635 * set_link_hw_format - Set the HW audio format of the physical DAI link. 1636 * @link: &snd_soc_dai_link which should be updated 1637 * @cfg: physical link configs. 1638 * 1639 * Topology context contains a list of supported HW formats (configs) and 1640 * a default format ID for the physical link. This function will use this 1641 * default ID to choose the HW format to set the link's DAI format for init. 1642 */ 1643 static void set_link_hw_format(struct snd_soc_dai_link *link, 1644 struct snd_soc_tplg_link_config *cfg) 1645 { 1646 struct snd_soc_tplg_hw_config *hw_config; 1647 unsigned char bclk_provider, fsync_provider; 1648 unsigned char invert_bclk, invert_fsync; 1649 int i; 1650 1651 for (i = 0; i < le32_to_cpu(cfg->num_hw_configs); i++) { 1652 hw_config = &cfg->hw_config[i]; 1653 if (hw_config->id != cfg->default_hw_config_id) 1654 continue; 1655 1656 link->dai_fmt = le32_to_cpu(hw_config->fmt) & 1657 SND_SOC_DAIFMT_FORMAT_MASK; 1658 1659 /* clock gating */ 1660 switch (hw_config->clock_gated) { 1661 case SND_SOC_TPLG_DAI_CLK_GATE_GATED: 1662 link->dai_fmt |= SND_SOC_DAIFMT_GATED; 1663 break; 1664 1665 case SND_SOC_TPLG_DAI_CLK_GATE_CONT: 1666 link->dai_fmt |= SND_SOC_DAIFMT_CONT; 1667 break; 1668 1669 default: 1670 /* ignore the value */ 1671 break; 1672 } 1673 1674 /* clock signal polarity */ 1675 invert_bclk = hw_config->invert_bclk; 1676 invert_fsync = hw_config->invert_fsync; 1677 if (!invert_bclk && !invert_fsync) 1678 link->dai_fmt |= SND_SOC_DAIFMT_NB_NF; 1679 else if (!invert_bclk && invert_fsync) 1680 link->dai_fmt |= SND_SOC_DAIFMT_NB_IF; 1681 else if (invert_bclk && !invert_fsync) 1682 link->dai_fmt |= SND_SOC_DAIFMT_IB_NF; 1683 else 1684 link->dai_fmt |= SND_SOC_DAIFMT_IB_IF; 1685 1686 /* clock masters */ 1687 bclk_provider = (hw_config->bclk_provider == 1688 SND_SOC_TPLG_BCLK_CP); 1689 fsync_provider = (hw_config->fsync_provider == 1690 SND_SOC_TPLG_FSYNC_CP); 1691 if (bclk_provider && fsync_provider) 1692 link->dai_fmt |= SND_SOC_DAIFMT_CBP_CFP; 1693 else if (!bclk_provider && fsync_provider) 1694 link->dai_fmt |= SND_SOC_DAIFMT_CBC_CFP; 1695 else if (bclk_provider && !fsync_provider) 1696 link->dai_fmt |= SND_SOC_DAIFMT_CBP_CFC; 1697 else 1698 link->dai_fmt |= SND_SOC_DAIFMT_CBC_CFC; 1699 } 1700 } 1701 1702 /** 1703 * snd_soc_find_dai_link - Find a DAI link 1704 * 1705 * @card: soc card 1706 * @id: DAI link ID to match 1707 * @name: DAI link name to match, optional 1708 * @stream_name: DAI link stream name to match, optional 1709 * 1710 * This function will search all existing DAI links of the soc card to 1711 * find the link of the same ID. Since DAI links may not have their 1712 * unique ID, so name and stream name should also match if being 1713 * specified. 1714 * 1715 * Return: pointer of DAI link, or NULL if not found. 1716 */ 1717 static struct snd_soc_dai_link *snd_soc_find_dai_link(struct snd_soc_card *card, 1718 int id, const char *name, 1719 const char *stream_name) 1720 { 1721 struct snd_soc_pcm_runtime *rtd; 1722 1723 for_each_card_rtds(card, rtd) { 1724 struct snd_soc_dai_link *link = rtd->dai_link; 1725 1726 if (link->id != id) 1727 continue; 1728 1729 if (name && (!link->name || !strstr(link->name, name))) 1730 continue; 1731 1732 if (stream_name && (!link->stream_name || 1733 !strstr(link->stream_name, stream_name))) 1734 continue; 1735 1736 return link; 1737 } 1738 1739 return NULL; 1740 } 1741 1742 /* Find and configure an existing physical DAI link */ 1743 static int soc_tplg_link_config(struct soc_tplg *tplg, 1744 struct snd_soc_tplg_link_config *cfg) 1745 { 1746 struct snd_soc_dai_link *link; 1747 const char *name, *stream_name; 1748 size_t len; 1749 int ret; 1750 1751 len = strnlen(cfg->name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); 1752 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN) 1753 return -EINVAL; 1754 else if (len) 1755 name = cfg->name; 1756 else 1757 name = NULL; 1758 1759 len = strnlen(cfg->stream_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN); 1760 if (len == SNDRV_CTL_ELEM_ID_NAME_MAXLEN) 1761 return -EINVAL; 1762 else if (len) 1763 stream_name = cfg->stream_name; 1764 else 1765 stream_name = NULL; 1766 1767 link = snd_soc_find_dai_link(tplg->comp->card, le32_to_cpu(cfg->id), 1768 name, stream_name); 1769 if (!link) { 1770 dev_err(tplg->dev, "ASoC: physical link %s (id %d) not exist\n", 1771 name, cfg->id); 1772 return -EINVAL; 1773 } 1774 1775 /* hw format */ 1776 if (cfg->num_hw_configs) 1777 set_link_hw_format(link, cfg); 1778 1779 /* flags */ 1780 if (cfg->flag_mask) 1781 set_link_flags(link, 1782 le32_to_cpu(cfg->flag_mask), 1783 le32_to_cpu(cfg->flags)); 1784 1785 /* pass control to component driver for optional further init */ 1786 ret = soc_tplg_dai_link_load(tplg, link, cfg); 1787 if (ret < 0) { 1788 dev_err(tplg->dev, "ASoC: physical link loading failed\n"); 1789 return ret; 1790 } 1791 1792 /* for unloading it in snd_soc_tplg_component_remove */ 1793 link->dobj.index = tplg->index; 1794 link->dobj.type = SND_SOC_DOBJ_BACKEND_LINK; 1795 if (tplg->ops) 1796 link->dobj.unload = tplg->ops->link_unload; 1797 list_add(&link->dobj.list, &tplg->comp->dobj_list); 1798 1799 return 0; 1800 } 1801 1802 1803 /* Load physical link config elements from the topology context */ 1804 static int soc_tplg_link_elems_load(struct soc_tplg *tplg, 1805 struct snd_soc_tplg_hdr *hdr) 1806 { 1807 struct snd_soc_tplg_link_config *link; 1808 int count; 1809 int size; 1810 int i, ret; 1811 1812 count = le32_to_cpu(hdr->count); 1813 1814 /* check the element size and count */ 1815 link = (struct snd_soc_tplg_link_config *)tplg->pos; 1816 size = le32_to_cpu(link->size); 1817 if (size > sizeof(struct snd_soc_tplg_link_config)) { 1818 dev_err(tplg->dev, "ASoC: invalid size %d for physical link elems\n", 1819 size); 1820 return -EINVAL; 1821 } 1822 1823 if (soc_tplg_check_elem_count(tplg, size, count, 1824 le32_to_cpu(hdr->payload_size), 1825 "physical link config")) 1826 return -EINVAL; 1827 1828 /* config physical DAI links */ 1829 for (i = 0; i < count; i++) { 1830 link = (struct snd_soc_tplg_link_config *)tplg->pos; 1831 size = le32_to_cpu(link->size); 1832 if (size != sizeof(*link)) 1833 return -EINVAL; 1834 1835 ret = soc_tplg_link_config(tplg, link); 1836 if (ret < 0) 1837 return ret; 1838 1839 /* offset by version-specific struct size and 1840 * real priv data size 1841 */ 1842 tplg->pos += size + le32_to_cpu(link->priv.size); 1843 } 1844 1845 return 0; 1846 } 1847 1848 /** 1849 * soc_tplg_dai_config - Find and configure an existing physical DAI. 1850 * @tplg: topology context 1851 * @d: physical DAI configs. 1852 * 1853 * The physical dai should already be registered by the platform driver. 1854 * The platform driver should specify the DAI name and ID for matching. 1855 */ 1856 static int soc_tplg_dai_config(struct soc_tplg *tplg, 1857 struct snd_soc_tplg_dai *d) 1858 { 1859 struct snd_soc_dai_link_component dai_component; 1860 struct snd_soc_dai *dai; 1861 struct snd_soc_dai_driver *dai_drv; 1862 struct snd_soc_pcm_stream *stream; 1863 struct snd_soc_tplg_stream_caps *caps; 1864 int ret; 1865 1866 memset(&dai_component, 0, sizeof(dai_component)); 1867 1868 dai_component.dai_name = d->dai_name; 1869 dai = snd_soc_find_dai(&dai_component); 1870 if (!dai) { 1871 dev_err(tplg->dev, "ASoC: physical DAI %s not registered\n", 1872 d->dai_name); 1873 return -EINVAL; 1874 } 1875 1876 if (le32_to_cpu(d->dai_id) != dai->id) { 1877 dev_err(tplg->dev, "ASoC: physical DAI %s id mismatch\n", 1878 d->dai_name); 1879 return -EINVAL; 1880 } 1881 1882 dai_drv = dai->driver; 1883 if (!dai_drv) 1884 return -EINVAL; 1885 1886 if (d->playback) { 1887 stream = &dai_drv->playback; 1888 caps = &d->caps[SND_SOC_TPLG_STREAM_PLAYBACK]; 1889 ret = set_stream_info(tplg, stream, caps); 1890 if (ret < 0) 1891 return ret; 1892 } 1893 1894 if (d->capture) { 1895 stream = &dai_drv->capture; 1896 caps = &d->caps[SND_SOC_TPLG_STREAM_CAPTURE]; 1897 ret = set_stream_info(tplg, stream, caps); 1898 if (ret < 0) 1899 return ret; 1900 } 1901 1902 if (d->flag_mask) 1903 set_dai_flags(dai_drv, 1904 le32_to_cpu(d->flag_mask), 1905 le32_to_cpu(d->flags)); 1906 1907 /* pass control to component driver for optional further init */ 1908 ret = soc_tplg_dai_load(tplg, dai_drv, NULL, dai); 1909 if (ret < 0) { 1910 dev_err(tplg->dev, "ASoC: DAI loading failed\n"); 1911 return ret; 1912 } 1913 1914 return 0; 1915 } 1916 1917 /* load physical DAI elements */ 1918 static int soc_tplg_dai_elems_load(struct soc_tplg *tplg, 1919 struct snd_soc_tplg_hdr *hdr) 1920 { 1921 int count; 1922 int i; 1923 1924 count = le32_to_cpu(hdr->count); 1925 1926 /* config the existing BE DAIs */ 1927 for (i = 0; i < count; i++) { 1928 struct snd_soc_tplg_dai *dai = (struct snd_soc_tplg_dai *)tplg->pos; 1929 int ret; 1930 1931 if (le32_to_cpu(dai->size) != sizeof(*dai)) { 1932 dev_err(tplg->dev, "ASoC: invalid physical DAI size\n"); 1933 return -EINVAL; 1934 } 1935 1936 ret = soc_tplg_dai_config(tplg, dai); 1937 if (ret < 0) { 1938 dev_err(tplg->dev, "ASoC: failed to configure DAI\n"); 1939 return ret; 1940 } 1941 1942 tplg->pos += (sizeof(*dai) + le32_to_cpu(dai->priv.size)); 1943 } 1944 1945 dev_dbg(tplg->dev, "ASoC: Configure %d BE DAIs\n", count); 1946 return 0; 1947 } 1948 1949 static int soc_tplg_manifest_load(struct soc_tplg *tplg, 1950 struct snd_soc_tplg_hdr *hdr) 1951 { 1952 struct snd_soc_tplg_manifest *manifest; 1953 int ret = 0; 1954 1955 manifest = (struct snd_soc_tplg_manifest *)tplg->pos; 1956 1957 /* check ABI version by size, create a new manifest if abi not match */ 1958 if (le32_to_cpu(manifest->size) != sizeof(*manifest)) 1959 return -EINVAL; 1960 1961 /* pass control to component driver for optional further init */ 1962 if (tplg->ops && tplg->ops->manifest) 1963 ret = tplg->ops->manifest(tplg->comp, tplg->index, manifest); 1964 1965 return ret; 1966 } 1967 1968 /* validate header magic, size and type */ 1969 static int soc_tplg_valid_header(struct soc_tplg *tplg, 1970 struct snd_soc_tplg_hdr *hdr) 1971 { 1972 if (le32_to_cpu(hdr->size) != sizeof(*hdr)) { 1973 dev_err(tplg->dev, 1974 "ASoC: invalid header size for type %d at offset 0x%lx size 0x%zx.\n", 1975 le32_to_cpu(hdr->type), soc_tplg_get_hdr_offset(tplg), 1976 tplg->fw->size); 1977 return -EINVAL; 1978 } 1979 1980 if (soc_tplg_get_hdr_offset(tplg) + le32_to_cpu(hdr->payload_size) >= tplg->fw->size) { 1981 dev_err(tplg->dev, 1982 "ASoC: invalid header of type %d at offset %ld payload_size %d\n", 1983 le32_to_cpu(hdr->type), soc_tplg_get_hdr_offset(tplg), 1984 hdr->payload_size); 1985 return -EINVAL; 1986 } 1987 1988 /* big endian firmware objects not supported atm */ 1989 if (le32_to_cpu(hdr->magic) == SOC_TPLG_MAGIC_BIG_ENDIAN) { 1990 dev_err(tplg->dev, 1991 "ASoC: pass %d big endian not supported header got %x at offset 0x%lx size 0x%zx.\n", 1992 tplg->pass, hdr->magic, 1993 soc_tplg_get_hdr_offset(tplg), tplg->fw->size); 1994 return -EINVAL; 1995 } 1996 1997 if (le32_to_cpu(hdr->magic) != SND_SOC_TPLG_MAGIC) { 1998 dev_err(tplg->dev, 1999 "ASoC: pass %d does not have a valid header got %x at offset 0x%lx size 0x%zx.\n", 2000 tplg->pass, hdr->magic, 2001 soc_tplg_get_hdr_offset(tplg), tplg->fw->size); 2002 return -EINVAL; 2003 } 2004 2005 /* Support ABI from version 4 */ 2006 if (le32_to_cpu(hdr->abi) > SND_SOC_TPLG_ABI_VERSION || 2007 le32_to_cpu(hdr->abi) < SND_SOC_TPLG_ABI_VERSION_MIN) { 2008 dev_err(tplg->dev, 2009 "ASoC: pass %d invalid ABI version got 0x%x need 0x%x at offset 0x%lx size 0x%zx.\n", 2010 tplg->pass, hdr->abi, 2011 SND_SOC_TPLG_ABI_VERSION, soc_tplg_get_hdr_offset(tplg), 2012 tplg->fw->size); 2013 return -EINVAL; 2014 } 2015 2016 if (hdr->payload_size == 0) { 2017 dev_err(tplg->dev, "ASoC: header has 0 size at offset 0x%lx.\n", 2018 soc_tplg_get_hdr_offset(tplg)); 2019 return -EINVAL; 2020 } 2021 2022 return 0; 2023 } 2024 2025 /* check header type and call appropriate handler */ 2026 static int soc_tplg_load_header(struct soc_tplg *tplg, 2027 struct snd_soc_tplg_hdr *hdr) 2028 { 2029 int (*elem_load)(struct soc_tplg *tplg, 2030 struct snd_soc_tplg_hdr *hdr); 2031 unsigned int hdr_pass; 2032 2033 tplg->pos = tplg->hdr_pos + sizeof(struct snd_soc_tplg_hdr); 2034 2035 tplg->index = le32_to_cpu(hdr->index); 2036 2037 switch (le32_to_cpu(hdr->type)) { 2038 case SND_SOC_TPLG_TYPE_MIXER: 2039 case SND_SOC_TPLG_TYPE_ENUM: 2040 case SND_SOC_TPLG_TYPE_BYTES: 2041 hdr_pass = SOC_TPLG_PASS_CONTROL; 2042 elem_load = soc_tplg_kcontrol_elems_load; 2043 break; 2044 case SND_SOC_TPLG_TYPE_DAPM_GRAPH: 2045 hdr_pass = SOC_TPLG_PASS_GRAPH; 2046 elem_load = soc_tplg_dapm_graph_elems_load; 2047 break; 2048 case SND_SOC_TPLG_TYPE_DAPM_WIDGET: 2049 hdr_pass = SOC_TPLG_PASS_WIDGET; 2050 elem_load = soc_tplg_dapm_widget_elems_load; 2051 break; 2052 case SND_SOC_TPLG_TYPE_PCM: 2053 hdr_pass = SOC_TPLG_PASS_PCM_DAI; 2054 elem_load = soc_tplg_pcm_elems_load; 2055 break; 2056 case SND_SOC_TPLG_TYPE_DAI: 2057 hdr_pass = SOC_TPLG_PASS_BE_DAI; 2058 elem_load = soc_tplg_dai_elems_load; 2059 break; 2060 case SND_SOC_TPLG_TYPE_DAI_LINK: 2061 case SND_SOC_TPLG_TYPE_BACKEND_LINK: 2062 /* physical link configurations */ 2063 hdr_pass = SOC_TPLG_PASS_LINK; 2064 elem_load = soc_tplg_link_elems_load; 2065 break; 2066 case SND_SOC_TPLG_TYPE_MANIFEST: 2067 hdr_pass = SOC_TPLG_PASS_MANIFEST; 2068 elem_load = soc_tplg_manifest_load; 2069 break; 2070 default: 2071 /* bespoke vendor data object */ 2072 hdr_pass = SOC_TPLG_PASS_VENDOR; 2073 elem_load = soc_tplg_vendor_load; 2074 break; 2075 } 2076 2077 if (tplg->pass == hdr_pass) { 2078 dev_dbg(tplg->dev, 2079 "ASoC: Got 0x%x bytes of type %d version %d vendor %d at pass %d\n", 2080 hdr->payload_size, hdr->type, hdr->version, 2081 hdr->vendor_type, tplg->pass); 2082 return elem_load(tplg, hdr); 2083 } 2084 2085 return 0; 2086 } 2087 2088 /* process the topology file headers */ 2089 static int soc_tplg_process_headers(struct soc_tplg *tplg) 2090 { 2091 int ret; 2092 2093 /* process the header types from start to end */ 2094 for (tplg->pass = SOC_TPLG_PASS_START; tplg->pass <= SOC_TPLG_PASS_END; tplg->pass++) { 2095 struct snd_soc_tplg_hdr *hdr; 2096 2097 tplg->hdr_pos = tplg->fw->data; 2098 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos; 2099 2100 while (!soc_tplg_is_eof(tplg)) { 2101 2102 /* make sure header is valid before loading */ 2103 ret = soc_tplg_valid_header(tplg, hdr); 2104 if (ret < 0) 2105 return ret; 2106 2107 /* load the header object */ 2108 ret = soc_tplg_load_header(tplg, hdr); 2109 if (ret < 0) { 2110 if (ret != -EPROBE_DEFER) { 2111 dev_err(tplg->dev, 2112 "ASoC: topology: could not load header: %d\n", 2113 ret); 2114 } 2115 return ret; 2116 } 2117 2118 /* goto next header */ 2119 tplg->hdr_pos += le32_to_cpu(hdr->payload_size) + 2120 sizeof(struct snd_soc_tplg_hdr); 2121 hdr = (struct snd_soc_tplg_hdr *)tplg->hdr_pos; 2122 } 2123 2124 } 2125 2126 /* signal DAPM we are complete */ 2127 ret = soc_tplg_dapm_complete(tplg); 2128 2129 return ret; 2130 } 2131 2132 static int soc_tplg_load(struct soc_tplg *tplg) 2133 { 2134 int ret; 2135 2136 ret = soc_tplg_process_headers(tplg); 2137 if (ret == 0) 2138 return soc_tplg_complete(tplg); 2139 2140 return ret; 2141 } 2142 2143 /* load audio component topology from "firmware" file */ 2144 int snd_soc_tplg_component_load(struct snd_soc_component *comp, 2145 const struct snd_soc_tplg_ops *ops, const struct firmware *fw) 2146 { 2147 struct soc_tplg tplg; 2148 int ret; 2149 2150 /* 2151 * check if we have sane parameters: 2152 * comp - needs to exist to keep and reference data while parsing 2153 * comp->card - used for setting card related parameters 2154 * comp->card->dev - used for resource management and prints 2155 * fw - we need it, as it is the very thing we parse 2156 */ 2157 if (!comp || !comp->card || !comp->card->dev || !fw) 2158 return -EINVAL; 2159 2160 /* setup parsing context */ 2161 memset(&tplg, 0, sizeof(tplg)); 2162 tplg.fw = fw; 2163 tplg.dev = comp->card->dev; 2164 tplg.comp = comp; 2165 if (ops) { 2166 tplg.ops = ops; 2167 tplg.io_ops = ops->io_ops; 2168 tplg.io_ops_count = ops->io_ops_count; 2169 tplg.bytes_ext_ops = ops->bytes_ext_ops; 2170 tplg.bytes_ext_ops_count = ops->bytes_ext_ops_count; 2171 } 2172 2173 ret = soc_tplg_load(&tplg); 2174 /* free the created components if fail to load topology */ 2175 if (ret) 2176 snd_soc_tplg_component_remove(comp); 2177 2178 return ret; 2179 } 2180 EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load); 2181 2182 /* remove dynamic controls from the component driver */ 2183 int snd_soc_tplg_component_remove(struct snd_soc_component *comp) 2184 { 2185 struct snd_soc_dobj *dobj, *next_dobj; 2186 int pass; 2187 2188 /* process the header types from end to start */ 2189 for (pass = SOC_TPLG_PASS_END; pass >= SOC_TPLG_PASS_START; pass--) { 2190 2191 /* remove mixer controls */ 2192 list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list, 2193 list) { 2194 2195 switch (dobj->type) { 2196 case SND_SOC_DOBJ_BYTES: 2197 case SND_SOC_DOBJ_ENUM: 2198 case SND_SOC_DOBJ_MIXER: 2199 soc_tplg_remove_kcontrol(comp, dobj, pass); 2200 break; 2201 case SND_SOC_DOBJ_GRAPH: 2202 soc_tplg_remove_route(comp, dobj, pass); 2203 break; 2204 case SND_SOC_DOBJ_WIDGET: 2205 soc_tplg_remove_widget(comp, dobj, pass); 2206 break; 2207 case SND_SOC_DOBJ_PCM: 2208 soc_tplg_remove_dai(comp, dobj, pass); 2209 break; 2210 case SND_SOC_DOBJ_DAI_LINK: 2211 soc_tplg_remove_link(comp, dobj, pass); 2212 break; 2213 case SND_SOC_DOBJ_BACKEND_LINK: 2214 /* 2215 * call link_unload ops if extra 2216 * deinitialization is needed. 2217 */ 2218 remove_backend_link(comp, dobj, pass); 2219 break; 2220 default: 2221 dev_err(comp->dev, "ASoC: invalid component type %d for removal\n", 2222 dobj->type); 2223 break; 2224 } 2225 } 2226 } 2227 2228 /* let caller know if FW can be freed when no objects are left */ 2229 return !list_empty(&comp->dobj_list); 2230 } 2231 EXPORT_SYMBOL_GPL(snd_soc_tplg_component_remove); 2232