1 // SPDX-License-Identifier: GPL-2.0+ 2 // 3 // soc-core.c -- ALSA SoC Audio Layer 4 // 5 // Copyright 2005 Wolfson Microelectronics PLC. 6 // Copyright 2005 Openedhand Ltd. 7 // Copyright (C) 2010 Slimlogic Ltd. 8 // Copyright (C) 2010 Texas Instruments Inc. 9 // 10 // Author: Liam Girdwood <lrg@slimlogic.co.uk> 11 // with code, comments and ideas from :- 12 // Richard Purdie <richard@openedhand.com> 13 // 14 // TODO: 15 // o Add hw rules to enforce rates, etc. 16 // o More testing with other codecs/machines. 17 // o Add more codecs and platforms to ensure good API coverage. 18 // o Support TDM on PCM and I2S 19 20 #include <linux/module.h> 21 #include <linux/moduleparam.h> 22 #include <linux/init.h> 23 #include <linux/delay.h> 24 #include <linux/pm.h> 25 #include <linux/bitops.h> 26 #include <linux/debugfs.h> 27 #include <linux/platform_device.h> 28 #include <linux/pinctrl/consumer.h> 29 #include <linux/ctype.h> 30 #include <linux/slab.h> 31 #include <linux/of.h> 32 #include <linux/of_graph.h> 33 #include <linux/dmi.h> 34 #include <linux/acpi.h> 35 #include <sound/core.h> 36 #include <sound/pcm.h> 37 #include <sound/pcm_params.h> 38 #include <sound/soc.h> 39 #include <sound/soc-dpcm.h> 40 #include <sound/soc-topology.h> 41 #include <sound/soc-link.h> 42 #include <sound/initval.h> 43 44 #define CREATE_TRACE_POINTS 45 #include <trace/events/asoc.h> 46 47 static DEFINE_MUTEX(client_mutex); 48 static LIST_HEAD(component_list); 49 static LIST_HEAD(unbind_card_list); 50 51 #define for_each_component(component) \ 52 list_for_each_entry(component, &component_list, list) 53 54 /* 55 * This is used if driver don't need to have CPU/Codec/Platform 56 * dai_link. see soc.h 57 */ 58 struct snd_soc_dai_link_component null_dailink_component[0]; 59 EXPORT_SYMBOL_GPL(null_dailink_component); 60 61 /* 62 * This is a timeout to do a DAPM powerdown after a stream is closed(). 63 * It can be used to eliminate pops between different playback streams, e.g. 64 * between two audio tracks. 65 */ 66 static int pmdown_time = 5000; 67 module_param(pmdown_time, int, 0); 68 MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)"); 69 70 static ssize_t pmdown_time_show(struct device *dev, 71 struct device_attribute *attr, char *buf) 72 { 73 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev); 74 75 return sysfs_emit(buf, "%ld\n", rtd->pmdown_time); 76 } 77 78 static ssize_t pmdown_time_store(struct device *dev, 79 struct device_attribute *attr, 80 const char *buf, size_t count) 81 { 82 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev); 83 int ret; 84 85 ret = kstrtol(buf, 10, &rtd->pmdown_time); 86 if (ret) 87 return ret; 88 89 return count; 90 } 91 92 static DEVICE_ATTR_RW(pmdown_time); 93 94 static struct attribute *soc_dev_attrs[] = { 95 &dev_attr_pmdown_time.attr, 96 NULL 97 }; 98 99 static umode_t soc_dev_attr_is_visible(struct kobject *kobj, 100 struct attribute *attr, int idx) 101 { 102 struct device *dev = kobj_to_dev(kobj); 103 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev); 104 105 if (!rtd) 106 return 0; 107 108 if (attr == &dev_attr_pmdown_time.attr) 109 return attr->mode; /* always visible */ 110 return rtd->dai_link->num_codecs ? attr->mode : 0; /* enabled only with codec */ 111 } 112 113 static const struct attribute_group soc_dapm_dev_group = { 114 .attrs = soc_dapm_dev_attrs, 115 .is_visible = soc_dev_attr_is_visible, 116 }; 117 118 static const struct attribute_group soc_dev_group = { 119 .attrs = soc_dev_attrs, 120 .is_visible = soc_dev_attr_is_visible, 121 }; 122 123 static const struct attribute_group *soc_dev_attr_groups[] = { 124 &soc_dapm_dev_group, 125 &soc_dev_group, 126 NULL 127 }; 128 129 #ifdef CONFIG_DEBUG_FS 130 struct dentry *snd_soc_debugfs_root; 131 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root); 132 133 static void soc_init_component_debugfs(struct snd_soc_component *component) 134 { 135 if (!component->card->debugfs_card_root) 136 return; 137 138 if (component->debugfs_prefix) { 139 char *name; 140 141 name = kasprintf(GFP_KERNEL, "%s:%s", 142 component->debugfs_prefix, component->name); 143 if (name) { 144 component->debugfs_root = debugfs_create_dir(name, 145 component->card->debugfs_card_root); 146 kfree(name); 147 } 148 } else { 149 component->debugfs_root = debugfs_create_dir(component->name, 150 component->card->debugfs_card_root); 151 } 152 153 snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component), 154 component->debugfs_root); 155 } 156 157 static void soc_cleanup_component_debugfs(struct snd_soc_component *component) 158 { 159 if (!component->debugfs_root) 160 return; 161 debugfs_remove_recursive(component->debugfs_root); 162 component->debugfs_root = NULL; 163 } 164 165 static int dai_list_show(struct seq_file *m, void *v) 166 { 167 struct snd_soc_component *component; 168 struct snd_soc_dai *dai; 169 170 mutex_lock(&client_mutex); 171 172 for_each_component(component) 173 for_each_component_dais(component, dai) 174 seq_printf(m, "%s\n", dai->name); 175 176 mutex_unlock(&client_mutex); 177 178 return 0; 179 } 180 DEFINE_SHOW_ATTRIBUTE(dai_list); 181 182 static int component_list_show(struct seq_file *m, void *v) 183 { 184 struct snd_soc_component *component; 185 186 mutex_lock(&client_mutex); 187 188 for_each_component(component) 189 seq_printf(m, "%s\n", component->name); 190 191 mutex_unlock(&client_mutex); 192 193 return 0; 194 } 195 DEFINE_SHOW_ATTRIBUTE(component_list); 196 197 static void soc_init_card_debugfs(struct snd_soc_card *card) 198 { 199 card->debugfs_card_root = debugfs_create_dir(card->name, 200 snd_soc_debugfs_root); 201 202 debugfs_create_u32("dapm_pop_time", 0644, card->debugfs_card_root, 203 &card->pop_time); 204 205 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root); 206 } 207 208 static void soc_cleanup_card_debugfs(struct snd_soc_card *card) 209 { 210 debugfs_remove_recursive(card->debugfs_card_root); 211 card->debugfs_card_root = NULL; 212 } 213 214 static void snd_soc_debugfs_init(void) 215 { 216 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL); 217 218 debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL, 219 &dai_list_fops); 220 221 debugfs_create_file("components", 0444, snd_soc_debugfs_root, NULL, 222 &component_list_fops); 223 } 224 225 static void snd_soc_debugfs_exit(void) 226 { 227 debugfs_remove_recursive(snd_soc_debugfs_root); 228 } 229 230 #else 231 232 static inline void soc_init_component_debugfs(struct snd_soc_component *component) { } 233 static inline void soc_cleanup_component_debugfs(struct snd_soc_component *component) { } 234 static inline void soc_init_card_debugfs(struct snd_soc_card *card) { } 235 static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card) { } 236 static inline void snd_soc_debugfs_init(void) { } 237 static inline void snd_soc_debugfs_exit(void) { } 238 239 #endif 240 241 static int snd_soc_is_match_dai_args(struct of_phandle_args *args1, 242 struct of_phandle_args *args2) 243 { 244 if (!args1 || !args2) 245 return 0; 246 247 if (args1->np != args2->np) 248 return 0; 249 250 for (int i = 0; i < args1->args_count; i++) 251 if (args1->args[i] != args2->args[i]) 252 return 0; 253 254 return 1; 255 } 256 257 static inline int snd_soc_dlc_component_is_empty(struct snd_soc_dai_link_component *dlc) 258 { 259 return !(dlc->dai_args || dlc->name || dlc->of_node); 260 } 261 262 static inline int snd_soc_dlc_component_is_invalid(struct snd_soc_dai_link_component *dlc) 263 { 264 return (dlc->name && dlc->of_node); 265 } 266 267 static inline int snd_soc_dlc_dai_is_empty(struct snd_soc_dai_link_component *dlc) 268 { 269 return !(dlc->dai_args || dlc->dai_name); 270 } 271 272 static int snd_soc_is_matching_dai(const struct snd_soc_dai_link_component *dlc, 273 struct snd_soc_dai *dai) 274 { 275 if (!dlc) 276 return 0; 277 278 if (dlc->dai_args) 279 return snd_soc_is_match_dai_args(dai->driver->dai_args, dlc->dai_args); 280 281 if (!dlc->dai_name) 282 return 1; 283 284 /* see snd_soc_dai_name_get() */ 285 286 if (strcmp(dlc->dai_name, dai->name) == 0) 287 return 1; 288 289 if (dai->driver->name && 290 strcmp(dai->driver->name, dlc->dai_name) == 0) 291 return 1; 292 293 if (dai->component->name && 294 strcmp(dlc->dai_name, dai->component->name) == 0) 295 return 1; 296 297 return 0; 298 } 299 300 const char *snd_soc_dai_name_get(struct snd_soc_dai *dai) 301 { 302 /* see snd_soc_is_matching_dai() */ 303 if (dai->name) 304 return dai->name; 305 306 if (dai->driver->name) 307 return dai->driver->name; 308 309 if (dai->component->name) 310 return dai->component->name; 311 312 return NULL; 313 } 314 EXPORT_SYMBOL_GPL(snd_soc_dai_name_get); 315 316 static int snd_soc_rtd_add_component(struct snd_soc_pcm_runtime *rtd, 317 struct snd_soc_component *component) 318 { 319 struct snd_soc_component *comp; 320 int i; 321 322 for_each_rtd_components(rtd, i, comp) { 323 /* already connected */ 324 if (comp == component) 325 return 0; 326 } 327 328 /* see for_each_rtd_components */ 329 rtd->components[rtd->num_components] = component; 330 rtd->num_components++; 331 332 return 0; 333 } 334 335 struct snd_soc_component *snd_soc_rtdcom_lookup(struct snd_soc_pcm_runtime *rtd, 336 const char *driver_name) 337 { 338 struct snd_soc_component *component; 339 int i; 340 341 if (!driver_name) 342 return NULL; 343 344 /* 345 * NOTE 346 * 347 * snd_soc_rtdcom_lookup() will find component from rtd by using 348 * specified driver name. 349 * But, if many components which have same driver name are connected 350 * to 1 rtd, this function will return 1st found component. 351 */ 352 for_each_rtd_components(rtd, i, component) { 353 const char *component_name = component->driver->name; 354 355 if (!component_name) 356 continue; 357 358 if ((component_name == driver_name) || 359 strcmp(component_name, driver_name) == 0) 360 return component; 361 } 362 363 return NULL; 364 } 365 EXPORT_SYMBOL_GPL(snd_soc_rtdcom_lookup); 366 367 struct snd_soc_component 368 *snd_soc_lookup_component_nolocked(struct device *dev, const char *driver_name) 369 { 370 struct snd_soc_component *component; 371 struct snd_soc_component *found_component; 372 373 found_component = NULL; 374 for_each_component(component) { 375 if ((dev == component->dev) && 376 (!driver_name || 377 (driver_name == component->driver->name) || 378 (strcmp(component->driver->name, driver_name) == 0))) { 379 found_component = component; 380 break; 381 } 382 } 383 384 return found_component; 385 } 386 EXPORT_SYMBOL_GPL(snd_soc_lookup_component_nolocked); 387 388 struct snd_soc_component *snd_soc_lookup_component(struct device *dev, 389 const char *driver_name) 390 { 391 struct snd_soc_component *component; 392 393 mutex_lock(&client_mutex); 394 component = snd_soc_lookup_component_nolocked(dev, driver_name); 395 mutex_unlock(&client_mutex); 396 397 return component; 398 } 399 EXPORT_SYMBOL_GPL(snd_soc_lookup_component); 400 401 struct snd_soc_pcm_runtime 402 *snd_soc_get_pcm_runtime(struct snd_soc_card *card, 403 struct snd_soc_dai_link *dai_link) 404 { 405 struct snd_soc_pcm_runtime *rtd; 406 407 for_each_card_rtds(card, rtd) { 408 if (rtd->dai_link == dai_link) 409 return rtd; 410 } 411 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link->name); 412 return NULL; 413 } 414 EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime); 415 416 /* 417 * Power down the audio subsystem pmdown_time msecs after close is called. 418 * This is to ensure there are no pops or clicks in between any music tracks 419 * due to DAPM power cycling. 420 */ 421 void snd_soc_close_delayed_work(struct snd_soc_pcm_runtime *rtd) 422 { 423 struct snd_soc_dai *codec_dai = snd_soc_rtd_to_codec(rtd, 0); 424 int playback = SNDRV_PCM_STREAM_PLAYBACK; 425 426 snd_soc_dpcm_mutex_lock(rtd); 427 428 dev_dbg(rtd->dev, 429 "ASoC: pop wq checking: %s status: %s waiting: %s\n", 430 codec_dai->driver->playback.stream_name, 431 snd_soc_dai_stream_active(codec_dai, playback) ? 432 "active" : "inactive", 433 rtd->pop_wait ? "yes" : "no"); 434 435 /* are we waiting on this codec DAI stream */ 436 if (rtd->pop_wait == 1) { 437 rtd->pop_wait = 0; 438 snd_soc_dapm_stream_event(rtd, playback, 439 SND_SOC_DAPM_STREAM_STOP); 440 } 441 442 snd_soc_dpcm_mutex_unlock(rtd); 443 } 444 EXPORT_SYMBOL_GPL(snd_soc_close_delayed_work); 445 446 static void soc_release_rtd_dev(struct device *dev) 447 { 448 /* "dev" means "rtd->dev" */ 449 kfree(dev); 450 } 451 452 static void soc_free_pcm_runtime(struct snd_soc_pcm_runtime *rtd) 453 { 454 if (!rtd) 455 return; 456 457 list_del(&rtd->list); 458 459 if (delayed_work_pending(&rtd->delayed_work)) 460 flush_delayed_work(&rtd->delayed_work); 461 snd_soc_pcm_component_free(rtd); 462 463 /* 464 * we don't need to call kfree() for rtd->dev 465 * see 466 * soc_release_rtd_dev() 467 * 468 * We don't need rtd->dev NULL check, because 469 * it is alloced *before* rtd. 470 * see 471 * soc_new_pcm_runtime() 472 * 473 * We don't need to mind freeing for rtd, 474 * because it was created from dev (= rtd->dev) 475 * see 476 * soc_new_pcm_runtime() 477 * 478 * rtd = devm_kzalloc(dev, ...); 479 * rtd->dev = dev 480 */ 481 device_unregister(rtd->dev); 482 } 483 484 static void close_delayed_work(struct work_struct *work) { 485 struct snd_soc_pcm_runtime *rtd = 486 container_of(work, struct snd_soc_pcm_runtime, 487 delayed_work.work); 488 489 if (rtd->close_delayed_work_func) 490 rtd->close_delayed_work_func(rtd); 491 } 492 493 static struct snd_soc_pcm_runtime *soc_new_pcm_runtime( 494 struct snd_soc_card *card, struct snd_soc_dai_link *dai_link) 495 { 496 struct snd_soc_pcm_runtime *rtd; 497 struct snd_soc_component *component; 498 struct device *dev; 499 int ret; 500 int stream; 501 502 /* 503 * for rtd->dev 504 */ 505 dev = kzalloc(sizeof(struct device), GFP_KERNEL); 506 if (!dev) 507 return NULL; 508 509 dev->parent = card->dev; 510 dev->release = soc_release_rtd_dev; 511 512 dev_set_name(dev, "%s", dai_link->name); 513 514 ret = device_register(dev); 515 if (ret < 0) { 516 put_device(dev); /* soc_release_rtd_dev */ 517 return NULL; 518 } 519 520 /* 521 * for rtd 522 */ 523 rtd = devm_kzalloc(dev, 524 sizeof(*rtd) + 525 sizeof(component) * (dai_link->num_cpus + 526 dai_link->num_codecs + 527 dai_link->num_platforms), 528 GFP_KERNEL); 529 if (!rtd) { 530 device_unregister(dev); 531 return NULL; 532 } 533 534 rtd->dev = dev; 535 INIT_LIST_HEAD(&rtd->list); 536 for_each_pcm_streams(stream) { 537 INIT_LIST_HEAD(&rtd->dpcm[stream].be_clients); 538 INIT_LIST_HEAD(&rtd->dpcm[stream].fe_clients); 539 } 540 dev_set_drvdata(dev, rtd); 541 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work); 542 543 /* 544 * for rtd->dais 545 */ 546 rtd->dais = devm_kcalloc(dev, dai_link->num_cpus + dai_link->num_codecs, 547 sizeof(struct snd_soc_dai *), 548 GFP_KERNEL); 549 if (!rtd->dais) 550 goto free_rtd; 551 552 /* 553 * dais = [][][][][][][][][][][][][][][][][][] 554 * ^cpu_dais ^codec_dais 555 * |--- num_cpus ---|--- num_codecs --| 556 * see 557 * snd_soc_rtd_to_cpu() 558 * snd_soc_rtd_to_codec() 559 */ 560 rtd->card = card; 561 rtd->dai_link = dai_link; 562 rtd->num = card->num_rtd++; 563 rtd->pmdown_time = pmdown_time; /* default power off timeout */ 564 565 /* see for_each_card_rtds */ 566 list_add_tail(&rtd->list, &card->rtd_list); 567 568 ret = device_add_groups(dev, soc_dev_attr_groups); 569 if (ret < 0) 570 goto free_rtd; 571 572 return rtd; 573 574 free_rtd: 575 soc_free_pcm_runtime(rtd); 576 return NULL; 577 } 578 579 static void snd_soc_flush_all_delayed_work(struct snd_soc_card *card) 580 { 581 struct snd_soc_pcm_runtime *rtd; 582 583 for_each_card_rtds(card, rtd) 584 flush_delayed_work(&rtd->delayed_work); 585 } 586 587 #ifdef CONFIG_PM_SLEEP 588 static void soc_playback_digital_mute(struct snd_soc_card *card, int mute) 589 { 590 struct snd_soc_pcm_runtime *rtd; 591 struct snd_soc_dai *dai; 592 int playback = SNDRV_PCM_STREAM_PLAYBACK; 593 int i; 594 595 for_each_card_rtds(card, rtd) { 596 597 if (rtd->dai_link->ignore_suspend) 598 continue; 599 600 for_each_rtd_dais(rtd, i, dai) { 601 if (snd_soc_dai_stream_active(dai, playback)) 602 snd_soc_dai_digital_mute(dai, mute, playback); 603 } 604 } 605 } 606 607 static void soc_dapm_suspend_resume(struct snd_soc_card *card, int event) 608 { 609 struct snd_soc_pcm_runtime *rtd; 610 int stream; 611 612 for_each_card_rtds(card, rtd) { 613 614 if (rtd->dai_link->ignore_suspend) 615 continue; 616 617 for_each_pcm_streams(stream) 618 snd_soc_dapm_stream_event(rtd, stream, event); 619 } 620 } 621 622 /* powers down audio subsystem for suspend */ 623 int snd_soc_suspend(struct device *dev) 624 { 625 struct snd_soc_card *card = dev_get_drvdata(dev); 626 struct snd_soc_component *component; 627 struct snd_soc_pcm_runtime *rtd; 628 int i; 629 630 /* If the card is not initialized yet there is nothing to do */ 631 if (!snd_soc_card_is_instantiated(card)) 632 return 0; 633 634 /* 635 * Due to the resume being scheduled into a workqueue we could 636 * suspend before that's finished - wait for it to complete. 637 */ 638 snd_power_wait(card->snd_card); 639 640 /* we're going to block userspace touching us until resume completes */ 641 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot); 642 643 /* mute any active DACs */ 644 soc_playback_digital_mute(card, 1); 645 646 /* suspend all pcms */ 647 for_each_card_rtds(card, rtd) { 648 if (rtd->dai_link->ignore_suspend) 649 continue; 650 651 snd_pcm_suspend_all(rtd->pcm); 652 } 653 654 snd_soc_card_suspend_pre(card); 655 656 /* close any waiting streams */ 657 snd_soc_flush_all_delayed_work(card); 658 659 soc_dapm_suspend_resume(card, SND_SOC_DAPM_STREAM_SUSPEND); 660 661 /* Recheck all endpoints too, their state is affected by suspend */ 662 dapm_mark_endpoints_dirty(card); 663 snd_soc_dapm_sync(&card->dapm); 664 665 /* suspend all COMPONENTs */ 666 for_each_card_rtds(card, rtd) { 667 668 if (rtd->dai_link->ignore_suspend) 669 continue; 670 671 for_each_rtd_components(rtd, i, component) { 672 struct snd_soc_dapm_context *dapm = 673 snd_soc_component_get_dapm(component); 674 675 /* 676 * ignore if component was already suspended 677 */ 678 if (snd_soc_component_is_suspended(component)) 679 continue; 680 681 /* 682 * If there are paths active then the COMPONENT will be 683 * held with bias _ON and should not be suspended. 684 */ 685 switch (snd_soc_dapm_get_bias_level(dapm)) { 686 case SND_SOC_BIAS_STANDBY: 687 /* 688 * If the COMPONENT is capable of idle 689 * bias off then being in STANDBY 690 * means it's doing something, 691 * otherwise fall through. 692 */ 693 if (dapm->idle_bias_off) { 694 dev_dbg(component->dev, 695 "ASoC: idle_bias_off CODEC on over suspend\n"); 696 break; 697 } 698 fallthrough; 699 700 case SND_SOC_BIAS_OFF: 701 snd_soc_component_suspend(component); 702 if (component->regmap) 703 regcache_mark_dirty(component->regmap); 704 /* deactivate pins to sleep state */ 705 pinctrl_pm_select_sleep_state(component->dev); 706 break; 707 default: 708 dev_dbg(component->dev, 709 "ASoC: COMPONENT is on over suspend\n"); 710 break; 711 } 712 } 713 } 714 715 snd_soc_card_suspend_post(card); 716 717 return 0; 718 } 719 EXPORT_SYMBOL_GPL(snd_soc_suspend); 720 721 /* 722 * deferred resume work, so resume can complete before we finished 723 * setting our codec back up, which can be very slow on I2C 724 */ 725 static void soc_resume_deferred(struct work_struct *work) 726 { 727 struct snd_soc_card *card = 728 container_of(work, struct snd_soc_card, 729 deferred_resume_work); 730 struct snd_soc_component *component; 731 732 /* 733 * our power state is still SNDRV_CTL_POWER_D3hot from suspend time, 734 * so userspace apps are blocked from touching us 735 */ 736 737 dev_dbg(card->dev, "ASoC: starting resume work\n"); 738 739 /* Bring us up into D2 so that DAPM starts enabling things */ 740 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2); 741 742 snd_soc_card_resume_pre(card); 743 744 for_each_card_components(card, component) { 745 if (snd_soc_component_is_suspended(component)) 746 snd_soc_component_resume(component); 747 } 748 749 soc_dapm_suspend_resume(card, SND_SOC_DAPM_STREAM_RESUME); 750 751 /* unmute any active DACs */ 752 soc_playback_digital_mute(card, 0); 753 754 snd_soc_card_resume_post(card); 755 756 dev_dbg(card->dev, "ASoC: resume work completed\n"); 757 758 /* Recheck all endpoints too, their state is affected by suspend */ 759 dapm_mark_endpoints_dirty(card); 760 snd_soc_dapm_sync(&card->dapm); 761 762 /* userspace can access us now we are back as we were before */ 763 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0); 764 } 765 766 /* powers up audio subsystem after a suspend */ 767 int snd_soc_resume(struct device *dev) 768 { 769 struct snd_soc_card *card = dev_get_drvdata(dev); 770 struct snd_soc_component *component; 771 772 /* If the card is not initialized yet there is nothing to do */ 773 if (!snd_soc_card_is_instantiated(card)) 774 return 0; 775 776 /* activate pins from sleep state */ 777 for_each_card_components(card, component) 778 if (snd_soc_component_active(component)) 779 pinctrl_pm_select_default_state(component->dev); 780 781 dev_dbg(dev, "ASoC: Scheduling resume work\n"); 782 if (!schedule_work(&card->deferred_resume_work)) 783 dev_err(dev, "ASoC: resume work item may be lost\n"); 784 785 return 0; 786 } 787 EXPORT_SYMBOL_GPL(snd_soc_resume); 788 789 static void soc_resume_init(struct snd_soc_card *card) 790 { 791 /* deferred resume work */ 792 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred); 793 } 794 #else 795 #define snd_soc_suspend NULL 796 #define snd_soc_resume NULL 797 static inline void soc_resume_init(struct snd_soc_card *card) { } 798 #endif 799 800 static struct device_node 801 *soc_component_to_node(struct snd_soc_component *component) 802 { 803 struct device_node *of_node; 804 805 of_node = component->dev->of_node; 806 if (!of_node && component->dev->parent) 807 of_node = component->dev->parent->of_node; 808 809 return of_node; 810 } 811 812 struct of_phandle_args *snd_soc_copy_dai_args(struct device *dev, struct of_phandle_args *args) 813 { 814 struct of_phandle_args *ret = devm_kzalloc(dev, sizeof(*ret), GFP_KERNEL); 815 816 if (!ret) 817 return NULL; 818 819 *ret = *args; 820 821 return ret; 822 } 823 EXPORT_SYMBOL_GPL(snd_soc_copy_dai_args); 824 825 static int snd_soc_is_matching_component( 826 const struct snd_soc_dai_link_component *dlc, 827 struct snd_soc_component *component) 828 { 829 struct device_node *component_of_node; 830 831 if (!dlc) 832 return 0; 833 834 if (dlc->dai_args) { 835 struct snd_soc_dai *dai; 836 837 for_each_component_dais(component, dai) 838 if (snd_soc_is_matching_dai(dlc, dai)) 839 return 1; 840 return 0; 841 } 842 843 component_of_node = soc_component_to_node(component); 844 845 if (dlc->of_node && component_of_node != dlc->of_node) 846 return 0; 847 if (dlc->name && strcmp(component->name, dlc->name)) 848 return 0; 849 850 return 1; 851 } 852 853 static struct snd_soc_component *soc_find_component( 854 const struct snd_soc_dai_link_component *dlc) 855 { 856 struct snd_soc_component *component; 857 858 lockdep_assert_held(&client_mutex); 859 860 /* 861 * NOTE 862 * 863 * It returns *1st* found component, but some driver 864 * has few components by same of_node/name 865 * ex) 866 * CPU component and generic DMAEngine component 867 */ 868 for_each_component(component) 869 if (snd_soc_is_matching_component(dlc, component)) 870 return component; 871 872 return NULL; 873 } 874 875 /** 876 * snd_soc_find_dai - Find a registered DAI 877 * 878 * @dlc: name of the DAI or the DAI driver and optional component info to match 879 * 880 * This function will search all registered components and their DAIs to 881 * find the DAI of the same name. The component's of_node and name 882 * should also match if being specified. 883 * 884 * Return: pointer of DAI, or NULL if not found. 885 */ 886 struct snd_soc_dai *snd_soc_find_dai( 887 const struct snd_soc_dai_link_component *dlc) 888 { 889 struct snd_soc_component *component; 890 struct snd_soc_dai *dai; 891 892 lockdep_assert_held(&client_mutex); 893 894 /* Find CPU DAI from registered DAIs */ 895 for_each_component(component) 896 if (snd_soc_is_matching_component(dlc, component)) 897 for_each_component_dais(component, dai) 898 if (snd_soc_is_matching_dai(dlc, dai)) 899 return dai; 900 901 return NULL; 902 } 903 EXPORT_SYMBOL_GPL(snd_soc_find_dai); 904 905 struct snd_soc_dai *snd_soc_find_dai_with_mutex( 906 const struct snd_soc_dai_link_component *dlc) 907 { 908 struct snd_soc_dai *dai; 909 910 mutex_lock(&client_mutex); 911 dai = snd_soc_find_dai(dlc); 912 mutex_unlock(&client_mutex); 913 914 return dai; 915 } 916 EXPORT_SYMBOL_GPL(snd_soc_find_dai_with_mutex); 917 918 static int soc_dai_link_sanity_check(struct snd_soc_card *card, 919 struct snd_soc_dai_link *link) 920 { 921 int i; 922 struct snd_soc_dai_link_component *dlc; 923 924 /* Codec check */ 925 for_each_link_codecs(link, i, dlc) { 926 /* 927 * Codec must be specified by 1 of name or OF node, 928 * not both or neither. 929 */ 930 if (snd_soc_dlc_component_is_invalid(dlc)) 931 goto component_invalid; 932 933 if (snd_soc_dlc_component_is_empty(dlc)) 934 goto component_empty; 935 936 /* Codec DAI name must be specified */ 937 if (snd_soc_dlc_dai_is_empty(dlc)) 938 goto dai_empty; 939 940 /* 941 * Defer card registration if codec component is not added to 942 * component list. 943 */ 944 if (!soc_find_component(dlc)) 945 goto component_not_found; 946 } 947 948 /* Platform check */ 949 for_each_link_platforms(link, i, dlc) { 950 /* 951 * Platform may be specified by either name or OF node, but it 952 * can be left unspecified, then no components will be inserted 953 * in the rtdcom list 954 */ 955 if (snd_soc_dlc_component_is_invalid(dlc)) 956 goto component_invalid; 957 958 if (snd_soc_dlc_component_is_empty(dlc)) 959 goto component_empty; 960 961 /* 962 * Defer card registration if platform component is not added to 963 * component list. 964 */ 965 if (!soc_find_component(dlc)) 966 goto component_not_found; 967 } 968 969 /* CPU check */ 970 for_each_link_cpus(link, i, dlc) { 971 /* 972 * CPU device may be specified by either name or OF node, but 973 * can be left unspecified, and will be matched based on DAI 974 * name alone.. 975 */ 976 if (snd_soc_dlc_component_is_invalid(dlc)) 977 goto component_invalid; 978 979 980 if (snd_soc_dlc_component_is_empty(dlc)) { 981 /* 982 * At least one of CPU DAI name or CPU device name/node must be specified 983 */ 984 if (snd_soc_dlc_dai_is_empty(dlc)) 985 goto component_dai_empty; 986 } else { 987 /* 988 * Defer card registration if Component is not added 989 */ 990 if (!soc_find_component(dlc)) 991 goto component_not_found; 992 } 993 } 994 995 return 0; 996 997 component_invalid: 998 dev_err(card->dev, "ASoC: Both Component name/of_node are set for %s\n", link->name); 999 return -EINVAL; 1000 1001 component_empty: 1002 dev_err(card->dev, "ASoC: Neither Component name/of_node are set for %s\n", link->name); 1003 return -EINVAL; 1004 1005 component_not_found: 1006 dev_dbg(card->dev, "ASoC: Component %s not found for link %s\n", dlc->name, link->name); 1007 return -EPROBE_DEFER; 1008 1009 dai_empty: 1010 dev_err(card->dev, "ASoC: DAI name is not set for %s\n", link->name); 1011 return -EINVAL; 1012 1013 component_dai_empty: 1014 dev_err(card->dev, "ASoC: Neither DAI/Component name/of_node are set for %s\n", link->name); 1015 return -EINVAL; 1016 } 1017 1018 #define MAX_DEFAULT_CH_MAP_SIZE 7 1019 static struct snd_soc_dai_link_ch_map default_ch_map_sync[MAX_DEFAULT_CH_MAP_SIZE] = { 1020 { .cpu = 0, .codec = 0 }, 1021 { .cpu = 1, .codec = 1 }, 1022 { .cpu = 2, .codec = 2 }, 1023 { .cpu = 3, .codec = 3 }, 1024 { .cpu = 4, .codec = 4 }, 1025 { .cpu = 5, .codec = 5 }, 1026 { .cpu = 6, .codec = 6 }, 1027 }; 1028 static struct snd_soc_dai_link_ch_map default_ch_map_1cpu[MAX_DEFAULT_CH_MAP_SIZE] = { 1029 { .cpu = 0, .codec = 0 }, 1030 { .cpu = 0, .codec = 1 }, 1031 { .cpu = 0, .codec = 2 }, 1032 { .cpu = 0, .codec = 3 }, 1033 { .cpu = 0, .codec = 4 }, 1034 { .cpu = 0, .codec = 5 }, 1035 { .cpu = 0, .codec = 6 }, 1036 }; 1037 static struct snd_soc_dai_link_ch_map default_ch_map_1codec[MAX_DEFAULT_CH_MAP_SIZE] = { 1038 { .cpu = 0, .codec = 0 }, 1039 { .cpu = 1, .codec = 0 }, 1040 { .cpu = 2, .codec = 0 }, 1041 { .cpu = 3, .codec = 0 }, 1042 { .cpu = 4, .codec = 0 }, 1043 { .cpu = 5, .codec = 0 }, 1044 { .cpu = 6, .codec = 0 }, 1045 }; 1046 static int snd_soc_compensate_channel_connection_map(struct snd_soc_card *card, 1047 struct snd_soc_dai_link *dai_link) 1048 { 1049 struct snd_soc_dai_link_ch_map *ch_maps; 1050 int i; 1051 1052 /* 1053 * dai_link->ch_maps indicates how CPU/Codec are connected. 1054 * It will be a map seen from a larger number of DAI. 1055 * see 1056 * soc.h :: [dai_link->ch_maps Image sample] 1057 */ 1058 1059 /* it should have ch_maps if connection was N:M */ 1060 if (dai_link->num_cpus > 1 && dai_link->num_codecs > 1 && 1061 dai_link->num_cpus != dai_link->num_codecs && !dai_link->ch_maps) { 1062 dev_err(card->dev, "need to have ch_maps when N:M connection (%s)", 1063 dai_link->name); 1064 return -EINVAL; 1065 } 1066 1067 /* do nothing if it has own maps */ 1068 if (dai_link->ch_maps) 1069 goto sanity_check; 1070 1071 /* check default map size */ 1072 if (dai_link->num_cpus > MAX_DEFAULT_CH_MAP_SIZE || 1073 dai_link->num_codecs > MAX_DEFAULT_CH_MAP_SIZE) { 1074 dev_err(card->dev, "soc-core.c needs update default_connection_maps"); 1075 return -EINVAL; 1076 } 1077 1078 /* Compensate missing map for ... */ 1079 if (dai_link->num_cpus == dai_link->num_codecs) 1080 dai_link->ch_maps = default_ch_map_sync; /* for 1:1 or N:N */ 1081 else if (dai_link->num_cpus < dai_link->num_codecs) 1082 dai_link->ch_maps = default_ch_map_1cpu; /* for 1:N */ 1083 else 1084 dai_link->ch_maps = default_ch_map_1codec; /* for N:1 */ 1085 1086 sanity_check: 1087 dev_dbg(card->dev, "dai_link %s\n", dai_link->stream_name); 1088 for_each_link_ch_maps(dai_link, i, ch_maps) { 1089 if ((ch_maps->cpu >= dai_link->num_cpus) || 1090 (ch_maps->codec >= dai_link->num_codecs)) { 1091 dev_err(card->dev, 1092 "unexpected dai_link->ch_maps[%d] index (cpu(%d/%d) codec(%d/%d))", 1093 i, 1094 ch_maps->cpu, dai_link->num_cpus, 1095 ch_maps->codec, dai_link->num_codecs); 1096 return -EINVAL; 1097 } 1098 1099 dev_dbg(card->dev, " [%d] cpu%d <-> codec%d\n", 1100 i, ch_maps->cpu, ch_maps->codec); 1101 } 1102 1103 return 0; 1104 } 1105 1106 /** 1107 * snd_soc_remove_pcm_runtime - Remove a pcm_runtime from card 1108 * @card: The ASoC card to which the pcm_runtime has 1109 * @rtd: The pcm_runtime to remove 1110 * 1111 * This function removes a pcm_runtime from the ASoC card. 1112 */ 1113 void snd_soc_remove_pcm_runtime(struct snd_soc_card *card, 1114 struct snd_soc_pcm_runtime *rtd) 1115 { 1116 lockdep_assert_held(&client_mutex); 1117 1118 /* 1119 * Notify the machine driver for extra destruction 1120 */ 1121 snd_soc_card_remove_dai_link(card, rtd->dai_link); 1122 1123 soc_free_pcm_runtime(rtd); 1124 } 1125 EXPORT_SYMBOL_GPL(snd_soc_remove_pcm_runtime); 1126 1127 /** 1128 * snd_soc_add_pcm_runtime - Add a pcm_runtime dynamically via dai_link 1129 * @card: The ASoC card to which the pcm_runtime is added 1130 * @dai_link: The DAI link to find pcm_runtime 1131 * 1132 * This function adds a pcm_runtime ASoC card by using dai_link. 1133 * 1134 * Note: Topology can use this API to add pcm_runtime when probing the 1135 * topology component. And machine drivers can still define static 1136 * DAI links in dai_link array. 1137 */ 1138 static int snd_soc_add_pcm_runtime(struct snd_soc_card *card, 1139 struct snd_soc_dai_link *dai_link) 1140 { 1141 struct snd_soc_pcm_runtime *rtd; 1142 struct snd_soc_dai_link_component *codec, *platform, *cpu; 1143 struct snd_soc_component *component; 1144 int i, ret; 1145 1146 lockdep_assert_held(&client_mutex); 1147 1148 /* 1149 * Notify the machine driver for extra initialization 1150 */ 1151 ret = snd_soc_card_add_dai_link(card, dai_link); 1152 if (ret < 0) 1153 return ret; 1154 1155 if (dai_link->ignore) 1156 return 0; 1157 1158 dev_dbg(card->dev, "ASoC: binding %s\n", dai_link->name); 1159 1160 ret = soc_dai_link_sanity_check(card, dai_link); 1161 if (ret < 0) 1162 return ret; 1163 1164 rtd = soc_new_pcm_runtime(card, dai_link); 1165 if (!rtd) 1166 return -ENOMEM; 1167 1168 for_each_link_cpus(dai_link, i, cpu) { 1169 snd_soc_rtd_to_cpu(rtd, i) = snd_soc_find_dai(cpu); 1170 if (!snd_soc_rtd_to_cpu(rtd, i)) { 1171 dev_info(card->dev, "ASoC: CPU DAI %s not registered\n", 1172 cpu->dai_name); 1173 goto _err_defer; 1174 } 1175 snd_soc_rtd_add_component(rtd, snd_soc_rtd_to_cpu(rtd, i)->component); 1176 } 1177 1178 /* Find CODEC from registered CODECs */ 1179 for_each_link_codecs(dai_link, i, codec) { 1180 snd_soc_rtd_to_codec(rtd, i) = snd_soc_find_dai(codec); 1181 if (!snd_soc_rtd_to_codec(rtd, i)) { 1182 dev_info(card->dev, "ASoC: CODEC DAI %s not registered\n", 1183 codec->dai_name); 1184 goto _err_defer; 1185 } 1186 1187 snd_soc_rtd_add_component(rtd, snd_soc_rtd_to_codec(rtd, i)->component); 1188 } 1189 1190 /* Find PLATFORM from registered PLATFORMs */ 1191 for_each_link_platforms(dai_link, i, platform) { 1192 for_each_component(component) { 1193 if (!snd_soc_is_matching_component(platform, component)) 1194 continue; 1195 1196 snd_soc_rtd_add_component(rtd, component); 1197 } 1198 } 1199 1200 return 0; 1201 1202 _err_defer: 1203 snd_soc_remove_pcm_runtime(card, rtd); 1204 return -EPROBE_DEFER; 1205 } 1206 1207 int snd_soc_add_pcm_runtimes(struct snd_soc_card *card, 1208 struct snd_soc_dai_link *dai_link, 1209 int num_dai_link) 1210 { 1211 for (int i = 0; i < num_dai_link; i++) { 1212 int ret; 1213 1214 ret = snd_soc_compensate_channel_connection_map(card, dai_link + i); 1215 if (ret < 0) 1216 return ret; 1217 1218 ret = snd_soc_add_pcm_runtime(card, dai_link + i); 1219 if (ret < 0) 1220 return ret; 1221 } 1222 1223 return 0; 1224 } 1225 EXPORT_SYMBOL_GPL(snd_soc_add_pcm_runtimes); 1226 1227 static void snd_soc_runtime_get_dai_fmt(struct snd_soc_pcm_runtime *rtd) 1228 { 1229 struct snd_soc_dai_link *dai_link = rtd->dai_link; 1230 struct snd_soc_dai *dai, *not_used; 1231 u64 pos, possible_fmt; 1232 unsigned int mask = 0, dai_fmt = 0; 1233 int i, j, priority, pri, until; 1234 1235 /* 1236 * Get selectable format from each DAIs. 1237 * 1238 **************************** 1239 * NOTE 1240 * Using .auto_selectable_formats is not mandatory, 1241 * we can select format manually from Sound Card. 1242 * When use it, driver should list well tested format only. 1243 **************************** 1244 * 1245 * ex) 1246 * auto_selectable_formats (= SND_SOC_POSSIBLE_xxx) 1247 * (A) (B) (C) 1248 * DAI0_: { 0x000F, 0x00F0, 0x0F00 }; 1249 * DAI1 : { 0xF000, 0x0F00 }; 1250 * (X) (Y) 1251 * 1252 * "until" will be 3 in this case (MAX array size from DAI0 and DAI1) 1253 * Here is dev_dbg() message and comments 1254 * 1255 * priority = 1 1256 * DAI0: (pri, fmt) = (1, 000000000000000F) // 1st check (A) DAI1 is not selected 1257 * DAI1: (pri, fmt) = (0, 0000000000000000) // Necessary Waste 1258 * DAI0: (pri, fmt) = (1, 000000000000000F) // 2nd check (A) 1259 * DAI1: (pri, fmt) = (1, 000000000000F000) // (X) 1260 * priority = 2 1261 * DAI0: (pri, fmt) = (2, 00000000000000FF) // 3rd check (A) + (B) 1262 * DAI1: (pri, fmt) = (1, 000000000000F000) // (X) 1263 * DAI0: (pri, fmt) = (2, 00000000000000FF) // 4th check (A) + (B) 1264 * DAI1: (pri, fmt) = (2, 000000000000FF00) // (X) + (Y) 1265 * priority = 3 1266 * DAI0: (pri, fmt) = (3, 0000000000000FFF) // 5th check (A) + (B) + (C) 1267 * DAI1: (pri, fmt) = (2, 000000000000FF00) // (X) + (Y) 1268 * found auto selected format: 0000000000000F00 1269 */ 1270 until = snd_soc_dai_get_fmt_max_priority(rtd); 1271 for (priority = 1; priority <= until; priority++) { 1272 for_each_rtd_dais(rtd, j, not_used) { 1273 1274 possible_fmt = ULLONG_MAX; 1275 for_each_rtd_dais(rtd, i, dai) { 1276 u64 fmt = 0; 1277 1278 pri = (j >= i) ? priority : priority - 1; 1279 fmt = snd_soc_dai_get_fmt(dai, pri); 1280 possible_fmt &= fmt; 1281 } 1282 if (possible_fmt) 1283 goto found; 1284 } 1285 } 1286 /* Not Found */ 1287 return; 1288 found: 1289 /* 1290 * convert POSSIBLE_DAIFMT to DAIFMT 1291 * 1292 * Some basic/default settings on each is defined as 0. 1293 * see 1294 * SND_SOC_DAIFMT_NB_NF 1295 * SND_SOC_DAIFMT_GATED 1296 * 1297 * SND_SOC_DAIFMT_xxx_MASK can't notice it if Sound Card specify 1298 * these value, and will be overwrite to auto selected value. 1299 * 1300 * To avoid such issue, loop from 63 to 0 here. 1301 * Small number of SND_SOC_POSSIBLE_xxx will be Hi priority. 1302 * Basic/Default settings of each part and above are defined 1303 * as Hi priority (= small number) of SND_SOC_POSSIBLE_xxx. 1304 */ 1305 for (i = 63; i >= 0; i--) { 1306 pos = 1ULL << i; 1307 switch (possible_fmt & pos) { 1308 /* 1309 * for format 1310 */ 1311 case SND_SOC_POSSIBLE_DAIFMT_I2S: 1312 case SND_SOC_POSSIBLE_DAIFMT_RIGHT_J: 1313 case SND_SOC_POSSIBLE_DAIFMT_LEFT_J: 1314 case SND_SOC_POSSIBLE_DAIFMT_DSP_A: 1315 case SND_SOC_POSSIBLE_DAIFMT_DSP_B: 1316 case SND_SOC_POSSIBLE_DAIFMT_AC97: 1317 case SND_SOC_POSSIBLE_DAIFMT_PDM: 1318 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_FORMAT_MASK) | i; 1319 break; 1320 /* 1321 * for clock 1322 */ 1323 case SND_SOC_POSSIBLE_DAIFMT_CONT: 1324 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_CLOCK_MASK) | SND_SOC_DAIFMT_CONT; 1325 break; 1326 case SND_SOC_POSSIBLE_DAIFMT_GATED: 1327 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_CLOCK_MASK) | SND_SOC_DAIFMT_GATED; 1328 break; 1329 /* 1330 * for clock invert 1331 */ 1332 case SND_SOC_POSSIBLE_DAIFMT_NB_NF: 1333 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_INV_MASK) | SND_SOC_DAIFMT_NB_NF; 1334 break; 1335 case SND_SOC_POSSIBLE_DAIFMT_NB_IF: 1336 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_INV_MASK) | SND_SOC_DAIFMT_NB_IF; 1337 break; 1338 case SND_SOC_POSSIBLE_DAIFMT_IB_NF: 1339 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_INV_MASK) | SND_SOC_DAIFMT_IB_NF; 1340 break; 1341 case SND_SOC_POSSIBLE_DAIFMT_IB_IF: 1342 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_INV_MASK) | SND_SOC_DAIFMT_IB_IF; 1343 break; 1344 /* 1345 * for clock provider / consumer 1346 */ 1347 case SND_SOC_POSSIBLE_DAIFMT_CBP_CFP: 1348 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) | SND_SOC_DAIFMT_CBP_CFP; 1349 break; 1350 case SND_SOC_POSSIBLE_DAIFMT_CBC_CFP: 1351 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) | SND_SOC_DAIFMT_CBC_CFP; 1352 break; 1353 case SND_SOC_POSSIBLE_DAIFMT_CBP_CFC: 1354 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) | SND_SOC_DAIFMT_CBP_CFC; 1355 break; 1356 case SND_SOC_POSSIBLE_DAIFMT_CBC_CFC: 1357 dai_fmt = (dai_fmt & ~SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) | SND_SOC_DAIFMT_CBC_CFC; 1358 break; 1359 } 1360 } 1361 1362 /* 1363 * Some driver might have very complex limitation. 1364 * In such case, user want to auto-select non-limitation part, 1365 * and want to manually specify complex part. 1366 * 1367 * Or for example, if both CPU and Codec can be clock provider, 1368 * but because of its quality, user want to specify it manually. 1369 * 1370 * Use manually specified settings if sound card did. 1371 */ 1372 if (!(dai_link->dai_fmt & SND_SOC_DAIFMT_FORMAT_MASK)) 1373 mask |= SND_SOC_DAIFMT_FORMAT_MASK; 1374 if (!(dai_link->dai_fmt & SND_SOC_DAIFMT_CLOCK_MASK)) 1375 mask |= SND_SOC_DAIFMT_CLOCK_MASK; 1376 if (!(dai_link->dai_fmt & SND_SOC_DAIFMT_INV_MASK)) 1377 mask |= SND_SOC_DAIFMT_INV_MASK; 1378 if (!(dai_link->dai_fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK)) 1379 mask |= SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK; 1380 1381 dai_link->dai_fmt |= (dai_fmt & mask); 1382 } 1383 1384 /** 1385 * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime 1386 * @rtd: The runtime for which the DAI link format should be changed 1387 * @dai_fmt: The new DAI link format 1388 * 1389 * This function updates the DAI link format for all DAIs connected to the DAI 1390 * link for the specified runtime. 1391 * 1392 * Note: For setups with a static format set the dai_fmt field in the 1393 * corresponding snd_dai_link struct instead of using this function. 1394 * 1395 * Returns 0 on success, otherwise a negative error code. 1396 */ 1397 int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd, 1398 unsigned int dai_fmt) 1399 { 1400 struct snd_soc_dai *cpu_dai; 1401 struct snd_soc_dai *codec_dai; 1402 unsigned int i; 1403 int ret; 1404 1405 if (!dai_fmt) 1406 return 0; 1407 1408 for_each_rtd_codec_dais(rtd, i, codec_dai) { 1409 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt); 1410 if (ret != 0 && ret != -ENOTSUPP) 1411 return ret; 1412 } 1413 1414 /* Flip the polarity for the "CPU" end of link */ 1415 dai_fmt = snd_soc_daifmt_clock_provider_flipped(dai_fmt); 1416 1417 for_each_rtd_cpu_dais(rtd, i, cpu_dai) { 1418 ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt); 1419 if (ret != 0 && ret != -ENOTSUPP) 1420 return ret; 1421 } 1422 1423 return 0; 1424 } 1425 EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt); 1426 1427 static int soc_init_pcm_runtime(struct snd_soc_card *card, 1428 struct snd_soc_pcm_runtime *rtd) 1429 { 1430 struct snd_soc_dai_link *dai_link = rtd->dai_link; 1431 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0); 1432 struct snd_soc_component *component; 1433 int ret, num, i; 1434 1435 /* do machine specific initialization */ 1436 ret = snd_soc_link_init(rtd); 1437 if (ret < 0) 1438 return ret; 1439 1440 snd_soc_runtime_get_dai_fmt(rtd); 1441 ret = snd_soc_runtime_set_dai_fmt(rtd, dai_link->dai_fmt); 1442 if (ret) 1443 goto err; 1444 1445 /* add DPCM sysfs entries */ 1446 soc_dpcm_debugfs_add(rtd); 1447 1448 num = rtd->num; 1449 1450 /* 1451 * most drivers will register their PCMs using DAI link ordering but 1452 * topology based drivers can use the DAI link id field to set PCM 1453 * device number and then use rtd + a base offset of the BEs. 1454 */ 1455 for_each_rtd_components(rtd, i, component) { 1456 if (!component->driver->use_dai_pcm_id) 1457 continue; 1458 1459 if (rtd->dai_link->no_pcm) 1460 num += component->driver->be_pcm_base; 1461 else 1462 num = rtd->dai_link->id; 1463 } 1464 1465 /* create compress_device if possible */ 1466 ret = snd_soc_dai_compress_new(cpu_dai, rtd, num); 1467 if (ret != -ENOTSUPP) 1468 goto err; 1469 1470 /* create the pcm */ 1471 ret = soc_new_pcm(rtd, num); 1472 if (ret < 0) { 1473 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n", 1474 dai_link->stream_name, ret); 1475 goto err; 1476 } 1477 1478 ret = snd_soc_pcm_dai_new(rtd); 1479 if (ret < 0) 1480 goto err; 1481 1482 rtd->initialized = true; 1483 1484 return 0; 1485 err: 1486 snd_soc_link_exit(rtd); 1487 return ret; 1488 } 1489 1490 static void soc_set_name_prefix(struct snd_soc_card *card, 1491 struct snd_soc_component *component) 1492 { 1493 struct device_node *of_node = soc_component_to_node(component); 1494 const char *str; 1495 int ret, i; 1496 1497 for (i = 0; i < card->num_configs; i++) { 1498 struct snd_soc_codec_conf *map = &card->codec_conf[i]; 1499 1500 if (snd_soc_is_matching_component(&map->dlc, component) && 1501 map->name_prefix) { 1502 component->name_prefix = map->name_prefix; 1503 return; 1504 } 1505 } 1506 1507 /* 1508 * If there is no configuration table or no match in the table, 1509 * check if a prefix is provided in the node 1510 */ 1511 ret = of_property_read_string(of_node, "sound-name-prefix", &str); 1512 if (ret < 0) 1513 return; 1514 1515 component->name_prefix = str; 1516 } 1517 1518 static void soc_remove_component(struct snd_soc_component *component, 1519 int probed) 1520 { 1521 1522 if (!component->card) 1523 return; 1524 1525 if (probed) 1526 snd_soc_component_remove(component); 1527 1528 list_del_init(&component->card_list); 1529 snd_soc_dapm_free(snd_soc_component_get_dapm(component)); 1530 soc_cleanup_component_debugfs(component); 1531 component->card = NULL; 1532 snd_soc_component_module_put_when_remove(component); 1533 } 1534 1535 static int soc_probe_component(struct snd_soc_card *card, 1536 struct snd_soc_component *component) 1537 { 1538 struct snd_soc_dapm_context *dapm = 1539 snd_soc_component_get_dapm(component); 1540 struct snd_soc_dai *dai; 1541 int probed = 0; 1542 int ret; 1543 1544 if (snd_soc_component_is_dummy(component)) 1545 return 0; 1546 1547 if (component->card) { 1548 if (component->card != card) { 1549 dev_err(component->dev, 1550 "Trying to bind component \"%s\" to card \"%s\" but is already bound to card \"%s\"\n", 1551 component->name, card->name, component->card->name); 1552 return -ENODEV; 1553 } 1554 return 0; 1555 } 1556 1557 ret = snd_soc_component_module_get_when_probe(component); 1558 if (ret < 0) 1559 return ret; 1560 1561 component->card = card; 1562 soc_set_name_prefix(card, component); 1563 1564 soc_init_component_debugfs(component); 1565 1566 snd_soc_dapm_init(dapm, card, component); 1567 1568 ret = snd_soc_dapm_new_controls(dapm, 1569 component->driver->dapm_widgets, 1570 component->driver->num_dapm_widgets); 1571 1572 if (ret != 0) { 1573 dev_err(component->dev, 1574 "Failed to create new controls %d\n", ret); 1575 goto err_probe; 1576 } 1577 1578 for_each_component_dais(component, dai) { 1579 ret = snd_soc_dapm_new_dai_widgets(dapm, dai); 1580 if (ret != 0) { 1581 dev_err(component->dev, 1582 "Failed to create DAI widgets %d\n", ret); 1583 goto err_probe; 1584 } 1585 } 1586 1587 ret = snd_soc_component_probe(component); 1588 if (ret < 0) 1589 goto err_probe; 1590 1591 WARN(dapm->idle_bias_off && 1592 dapm->bias_level != SND_SOC_BIAS_OFF, 1593 "codec %s can not start from non-off bias with idle_bias_off==1\n", 1594 component->name); 1595 probed = 1; 1596 1597 /* 1598 * machine specific init 1599 * see 1600 * snd_soc_component_set_aux() 1601 */ 1602 ret = snd_soc_component_init(component); 1603 if (ret < 0) 1604 goto err_probe; 1605 1606 ret = snd_soc_add_component_controls(component, 1607 component->driver->controls, 1608 component->driver->num_controls); 1609 if (ret < 0) 1610 goto err_probe; 1611 1612 ret = snd_soc_dapm_add_routes(dapm, 1613 component->driver->dapm_routes, 1614 component->driver->num_dapm_routes); 1615 if (ret < 0) { 1616 if (card->disable_route_checks) { 1617 dev_info(card->dev, 1618 "%s: disable_route_checks set, ignoring errors on add_routes\n", 1619 __func__); 1620 } else { 1621 dev_err(card->dev, 1622 "%s: snd_soc_dapm_add_routes failed: %d\n", 1623 __func__, ret); 1624 goto err_probe; 1625 } 1626 } 1627 1628 /* see for_each_card_components */ 1629 list_add(&component->card_list, &card->component_dev_list); 1630 1631 err_probe: 1632 if (ret < 0) 1633 soc_remove_component(component, probed); 1634 1635 return ret; 1636 } 1637 1638 static void soc_remove_link_dais(struct snd_soc_card *card) 1639 { 1640 struct snd_soc_pcm_runtime *rtd; 1641 int order; 1642 1643 for_each_comp_order(order) { 1644 for_each_card_rtds(card, rtd) { 1645 /* remove all rtd connected DAIs in good order */ 1646 snd_soc_pcm_dai_remove(rtd, order); 1647 } 1648 } 1649 } 1650 1651 static int soc_probe_link_dais(struct snd_soc_card *card) 1652 { 1653 struct snd_soc_pcm_runtime *rtd; 1654 int order, ret; 1655 1656 for_each_comp_order(order) { 1657 for_each_card_rtds(card, rtd) { 1658 /* probe all rtd connected DAIs in good order */ 1659 ret = snd_soc_pcm_dai_probe(rtd, order); 1660 if (ret) 1661 return ret; 1662 } 1663 } 1664 1665 return 0; 1666 } 1667 1668 static void soc_remove_link_components(struct snd_soc_card *card) 1669 { 1670 struct snd_soc_component *component; 1671 struct snd_soc_pcm_runtime *rtd; 1672 int i, order; 1673 1674 for_each_comp_order(order) { 1675 for_each_card_rtds(card, rtd) { 1676 for_each_rtd_components(rtd, i, component) { 1677 if (component->driver->remove_order != order) 1678 continue; 1679 1680 soc_remove_component(component, 1); 1681 } 1682 } 1683 } 1684 } 1685 1686 static int soc_probe_link_components(struct snd_soc_card *card) 1687 { 1688 struct snd_soc_component *component; 1689 struct snd_soc_pcm_runtime *rtd; 1690 int i, ret, order; 1691 1692 for_each_comp_order(order) { 1693 for_each_card_rtds(card, rtd) { 1694 for_each_rtd_components(rtd, i, component) { 1695 if (component->driver->probe_order != order) 1696 continue; 1697 1698 ret = soc_probe_component(card, component); 1699 if (ret < 0) 1700 return ret; 1701 } 1702 } 1703 } 1704 1705 return 0; 1706 } 1707 1708 static void soc_unbind_aux_dev(struct snd_soc_card *card) 1709 { 1710 struct snd_soc_component *component, *_component; 1711 1712 for_each_card_auxs_safe(card, component, _component) { 1713 /* for snd_soc_component_init() */ 1714 snd_soc_component_set_aux(component, NULL); 1715 list_del(&component->card_aux_list); 1716 } 1717 } 1718 1719 static int soc_bind_aux_dev(struct snd_soc_card *card) 1720 { 1721 struct snd_soc_component *component; 1722 struct snd_soc_aux_dev *aux; 1723 int i; 1724 1725 for_each_card_pre_auxs(card, i, aux) { 1726 /* codecs, usually analog devices */ 1727 component = soc_find_component(&aux->dlc); 1728 if (!component) 1729 return -EPROBE_DEFER; 1730 1731 /* for snd_soc_component_init() */ 1732 snd_soc_component_set_aux(component, aux); 1733 /* see for_each_card_auxs */ 1734 list_add(&component->card_aux_list, &card->aux_comp_list); 1735 } 1736 return 0; 1737 } 1738 1739 static int soc_probe_aux_devices(struct snd_soc_card *card) 1740 { 1741 struct snd_soc_component *component; 1742 int order; 1743 int ret; 1744 1745 for_each_comp_order(order) { 1746 for_each_card_auxs(card, component) { 1747 if (component->driver->probe_order != order) 1748 continue; 1749 1750 ret = soc_probe_component(card, component); 1751 if (ret < 0) 1752 return ret; 1753 } 1754 } 1755 1756 return 0; 1757 } 1758 1759 static void soc_remove_aux_devices(struct snd_soc_card *card) 1760 { 1761 struct snd_soc_component *comp, *_comp; 1762 int order; 1763 1764 for_each_comp_order(order) { 1765 for_each_card_auxs_safe(card, comp, _comp) { 1766 if (comp->driver->remove_order == order) 1767 soc_remove_component(comp, 1); 1768 } 1769 } 1770 } 1771 1772 #ifdef CONFIG_DMI 1773 /* 1774 * If a DMI filed contain strings in this blacklist (e.g. 1775 * "Type2 - Board Manufacturer" or "Type1 - TBD by OEM"), it will be taken 1776 * as invalid and dropped when setting the card long name from DMI info. 1777 */ 1778 static const char * const dmi_blacklist[] = { 1779 "To be filled by OEM", 1780 "TBD by OEM", 1781 "Default String", 1782 "Board Manufacturer", 1783 "Board Vendor Name", 1784 "Board Product Name", 1785 NULL, /* terminator */ 1786 }; 1787 1788 /* 1789 * Trim special characters, and replace '-' with '_' since '-' is used to 1790 * separate different DMI fields in the card long name. Only number and 1791 * alphabet characters and a few separator characters are kept. 1792 */ 1793 static void cleanup_dmi_name(char *name) 1794 { 1795 int i, j = 0; 1796 1797 for (i = 0; name[i]; i++) { 1798 if (isalnum(name[i]) || (name[i] == '.') 1799 || (name[i] == '_')) 1800 name[j++] = name[i]; 1801 else if (name[i] == '-') 1802 name[j++] = '_'; 1803 } 1804 1805 name[j] = '\0'; 1806 } 1807 1808 /* 1809 * Check if a DMI field is valid, i.e. not containing any string 1810 * in the black list. 1811 */ 1812 static int is_dmi_valid(const char *field) 1813 { 1814 int i = 0; 1815 1816 while (dmi_blacklist[i]) { 1817 if (strstr(field, dmi_blacklist[i])) 1818 return 0; 1819 i++; 1820 } 1821 1822 return 1; 1823 } 1824 1825 /* 1826 * Append a string to card->dmi_longname with character cleanups. 1827 */ 1828 static void append_dmi_string(struct snd_soc_card *card, const char *str) 1829 { 1830 char *dst = card->dmi_longname; 1831 size_t dst_len = sizeof(card->dmi_longname); 1832 size_t len; 1833 1834 len = strlen(dst); 1835 snprintf(dst + len, dst_len - len, "-%s", str); 1836 1837 len++; /* skip the separator "-" */ 1838 if (len < dst_len) 1839 cleanup_dmi_name(dst + len); 1840 } 1841 1842 /** 1843 * snd_soc_set_dmi_name() - Register DMI names to card 1844 * @card: The card to register DMI names 1845 * @flavour: The flavour "differentiator" for the card amongst its peers. 1846 * 1847 * An Intel machine driver may be used by many different devices but are 1848 * difficult for userspace to differentiate, since machine drivers usually 1849 * use their own name as the card short name and leave the card long name 1850 * blank. To differentiate such devices and fix bugs due to lack of 1851 * device-specific configurations, this function allows DMI info to be used 1852 * as the sound card long name, in the format of 1853 * "vendor-product-version-board" 1854 * (Character '-' is used to separate different DMI fields here). 1855 * This will help the user space to load the device-specific Use Case Manager 1856 * (UCM) configurations for the card. 1857 * 1858 * Possible card long names may be: 1859 * DellInc.-XPS139343-01-0310JH 1860 * ASUSTeKCOMPUTERINC.-T100TA-1.0-T100TA 1861 * Circuitco-MinnowboardMaxD0PLATFORM-D0-MinnowBoardMAX 1862 * 1863 * This function also supports flavoring the card longname to provide 1864 * the extra differentiation, like "vendor-product-version-board-flavor". 1865 * 1866 * We only keep number and alphabet characters and a few separator characters 1867 * in the card long name since UCM in the user space uses the card long names 1868 * as card configuration directory names and AudoConf cannot support special 1869 * characters like SPACE. 1870 * 1871 * Returns 0 on success, otherwise a negative error code. 1872 */ 1873 int snd_soc_set_dmi_name(struct snd_soc_card *card, const char *flavour) 1874 { 1875 const char *vendor, *product, *board; 1876 1877 if (card->long_name) 1878 return 0; /* long name already set by driver or from DMI */ 1879 1880 if (!dmi_available) 1881 return 0; 1882 1883 /* make up dmi long name as: vendor-product-version-board */ 1884 vendor = dmi_get_system_info(DMI_BOARD_VENDOR); 1885 if (!vendor || !is_dmi_valid(vendor)) { 1886 dev_warn(card->dev, "ASoC: no DMI vendor name!\n"); 1887 return 0; 1888 } 1889 1890 snprintf(card->dmi_longname, sizeof(card->dmi_longname), "%s", vendor); 1891 cleanup_dmi_name(card->dmi_longname); 1892 1893 product = dmi_get_system_info(DMI_PRODUCT_NAME); 1894 if (product && is_dmi_valid(product)) { 1895 const char *product_version = dmi_get_system_info(DMI_PRODUCT_VERSION); 1896 1897 append_dmi_string(card, product); 1898 1899 /* 1900 * some vendors like Lenovo may only put a self-explanatory 1901 * name in the product version field 1902 */ 1903 if (product_version && is_dmi_valid(product_version)) 1904 append_dmi_string(card, product_version); 1905 } 1906 1907 board = dmi_get_system_info(DMI_BOARD_NAME); 1908 if (board && is_dmi_valid(board)) { 1909 if (!product || strcasecmp(board, product)) 1910 append_dmi_string(card, board); 1911 } else if (!product) { 1912 /* fall back to using legacy name */ 1913 dev_warn(card->dev, "ASoC: no DMI board/product name!\n"); 1914 return 0; 1915 } 1916 1917 /* Add flavour to dmi long name */ 1918 if (flavour) 1919 append_dmi_string(card, flavour); 1920 1921 /* set the card long name */ 1922 card->long_name = card->dmi_longname; 1923 1924 return 0; 1925 } 1926 EXPORT_SYMBOL_GPL(snd_soc_set_dmi_name); 1927 #endif /* CONFIG_DMI */ 1928 1929 static void soc_check_tplg_fes(struct snd_soc_card *card) 1930 { 1931 struct snd_soc_component *component; 1932 const struct snd_soc_component_driver *comp_drv; 1933 struct snd_soc_dai_link *dai_link; 1934 int i; 1935 1936 for_each_component(component) { 1937 1938 /* does this component override BEs ? */ 1939 if (!component->driver->ignore_machine) 1940 continue; 1941 1942 /* for this machine ? */ 1943 if (!strcmp(component->driver->ignore_machine, 1944 card->dev->driver->name)) 1945 goto match; 1946 if (strcmp(component->driver->ignore_machine, 1947 dev_name(card->dev))) 1948 continue; 1949 match: 1950 /* machine matches, so override the rtd data */ 1951 for_each_card_prelinks(card, i, dai_link) { 1952 1953 /* ignore this FE */ 1954 if (dai_link->dynamic) { 1955 dai_link->ignore = true; 1956 continue; 1957 } 1958 1959 dev_dbg(card->dev, "info: override BE DAI link %s\n", 1960 card->dai_link[i].name); 1961 1962 /* override platform component */ 1963 if (!dai_link->platforms) { 1964 dev_err(card->dev, "init platform error"); 1965 continue; 1966 } 1967 1968 if (component->dev->of_node) 1969 dai_link->platforms->of_node = component->dev->of_node; 1970 else 1971 dai_link->platforms->name = component->name; 1972 1973 /* convert non BE into BE */ 1974 if (!dai_link->no_pcm) { 1975 dai_link->no_pcm = 1; 1976 1977 if (dai_link->dpcm_playback) 1978 dev_warn(card->dev, 1979 "invalid configuration, dailink %s has flags no_pcm=0 and dpcm_playback=1\n", 1980 dai_link->name); 1981 if (dai_link->dpcm_capture) 1982 dev_warn(card->dev, 1983 "invalid configuration, dailink %s has flags no_pcm=0 and dpcm_capture=1\n", 1984 dai_link->name); 1985 1986 /* convert normal link into DPCM one */ 1987 if (!(dai_link->dpcm_playback || 1988 dai_link->dpcm_capture)) { 1989 dai_link->dpcm_playback = !dai_link->capture_only; 1990 dai_link->dpcm_capture = !dai_link->playback_only; 1991 } 1992 } 1993 1994 /* 1995 * override any BE fixups 1996 * see 1997 * snd_soc_link_be_hw_params_fixup() 1998 */ 1999 dai_link->be_hw_params_fixup = 2000 component->driver->be_hw_params_fixup; 2001 2002 /* 2003 * most BE links don't set stream name, so set it to 2004 * dai link name if it's NULL to help bind widgets. 2005 */ 2006 if (!dai_link->stream_name) 2007 dai_link->stream_name = dai_link->name; 2008 } 2009 2010 /* Inform userspace we are using alternate topology */ 2011 if (component->driver->topology_name_prefix) { 2012 2013 /* topology shortname created? */ 2014 if (!card->topology_shortname_created) { 2015 comp_drv = component->driver; 2016 2017 snprintf(card->topology_shortname, 32, "%s-%s", 2018 comp_drv->topology_name_prefix, 2019 card->name); 2020 card->topology_shortname_created = true; 2021 } 2022 2023 /* use topology shortname */ 2024 card->name = card->topology_shortname; 2025 } 2026 } 2027 } 2028 2029 #define soc_setup_card_name(card, name, name1, name2) \ 2030 __soc_setup_card_name(card, name, sizeof(name), name1, name2) 2031 static void __soc_setup_card_name(struct snd_soc_card *card, 2032 char *name, int len, 2033 const char *name1, const char *name2) 2034 { 2035 const char *src = name1 ? name1 : name2; 2036 int i; 2037 2038 snprintf(name, len, "%s", src); 2039 2040 if (name != card->snd_card->driver) 2041 return; 2042 2043 /* 2044 * Name normalization (driver field) 2045 * 2046 * The driver name is somewhat special, as it's used as a key for 2047 * searches in the user-space. 2048 * 2049 * ex) 2050 * "abcd??efg" -> "abcd__efg" 2051 */ 2052 for (i = 0; i < len; i++) { 2053 switch (name[i]) { 2054 case '_': 2055 case '-': 2056 case '\0': 2057 break; 2058 default: 2059 if (!isalnum(name[i])) 2060 name[i] = '_'; 2061 break; 2062 } 2063 } 2064 2065 /* 2066 * The driver field should contain a valid string from the user view. 2067 * The wrapping usually does not work so well here. Set a smaller string 2068 * in the specific ASoC driver. 2069 */ 2070 if (strlen(src) > len - 1) 2071 dev_err(card->dev, "ASoC: driver name too long '%s' -> '%s'\n", src, name); 2072 } 2073 2074 static void soc_cleanup_card_resources(struct snd_soc_card *card) 2075 { 2076 struct snd_soc_pcm_runtime *rtd, *n; 2077 2078 if (card->snd_card) 2079 snd_card_disconnect_sync(card->snd_card); 2080 2081 snd_soc_dapm_shutdown(card); 2082 2083 /* release machine specific resources */ 2084 for_each_card_rtds(card, rtd) 2085 if (rtd->initialized) 2086 snd_soc_link_exit(rtd); 2087 /* remove and free each DAI */ 2088 soc_remove_link_dais(card); 2089 soc_remove_link_components(card); 2090 2091 for_each_card_rtds_safe(card, rtd, n) 2092 snd_soc_remove_pcm_runtime(card, rtd); 2093 2094 /* remove auxiliary devices */ 2095 soc_remove_aux_devices(card); 2096 soc_unbind_aux_dev(card); 2097 2098 snd_soc_dapm_free(&card->dapm); 2099 soc_cleanup_card_debugfs(card); 2100 2101 /* remove the card */ 2102 snd_soc_card_remove(card); 2103 2104 if (card->snd_card) { 2105 snd_card_free(card->snd_card); 2106 card->snd_card = NULL; 2107 } 2108 } 2109 2110 static void snd_soc_unbind_card(struct snd_soc_card *card, bool unregister) 2111 { 2112 if (snd_soc_card_is_instantiated(card)) { 2113 card->instantiated = false; 2114 snd_soc_flush_all_delayed_work(card); 2115 2116 soc_cleanup_card_resources(card); 2117 if (!unregister) 2118 list_add(&card->list, &unbind_card_list); 2119 } else { 2120 if (unregister) 2121 list_del(&card->list); 2122 } 2123 } 2124 2125 static int snd_soc_bind_card(struct snd_soc_card *card) 2126 { 2127 struct snd_soc_pcm_runtime *rtd; 2128 struct snd_soc_component *component; 2129 int ret; 2130 2131 mutex_lock(&client_mutex); 2132 snd_soc_card_mutex_lock_root(card); 2133 2134 snd_soc_dapm_init(&card->dapm, card, NULL); 2135 2136 /* check whether any platform is ignore machine FE and using topology */ 2137 soc_check_tplg_fes(card); 2138 2139 /* bind aux_devs too */ 2140 ret = soc_bind_aux_dev(card); 2141 if (ret < 0) 2142 goto probe_end; 2143 2144 /* add predefined DAI links to the list */ 2145 card->num_rtd = 0; 2146 ret = snd_soc_add_pcm_runtimes(card, card->dai_link, card->num_links); 2147 if (ret < 0) 2148 goto probe_end; 2149 2150 /* card bind complete so register a sound card */ 2151 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1, 2152 card->owner, 0, &card->snd_card); 2153 if (ret < 0) { 2154 dev_err(card->dev, 2155 "ASoC: can't create sound card for card %s: %d\n", 2156 card->name, ret); 2157 goto probe_end; 2158 } 2159 2160 soc_init_card_debugfs(card); 2161 2162 soc_resume_init(card); 2163 2164 ret = snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets, 2165 card->num_dapm_widgets); 2166 if (ret < 0) 2167 goto probe_end; 2168 2169 ret = snd_soc_dapm_new_controls(&card->dapm, card->of_dapm_widgets, 2170 card->num_of_dapm_widgets); 2171 if (ret < 0) 2172 goto probe_end; 2173 2174 /* initialise the sound card only once */ 2175 ret = snd_soc_card_probe(card); 2176 if (ret < 0) 2177 goto probe_end; 2178 2179 /* probe all components used by DAI links on this card */ 2180 ret = soc_probe_link_components(card); 2181 if (ret < 0) { 2182 if (ret != -EPROBE_DEFER) { 2183 dev_err(card->dev, 2184 "ASoC: failed to instantiate card %d\n", ret); 2185 } 2186 goto probe_end; 2187 } 2188 2189 /* probe auxiliary components */ 2190 ret = soc_probe_aux_devices(card); 2191 if (ret < 0) { 2192 dev_err(card->dev, 2193 "ASoC: failed to probe aux component %d\n", ret); 2194 goto probe_end; 2195 } 2196 2197 /* probe all DAI links on this card */ 2198 ret = soc_probe_link_dais(card); 2199 if (ret < 0) { 2200 dev_err(card->dev, 2201 "ASoC: failed to instantiate card %d\n", ret); 2202 goto probe_end; 2203 } 2204 2205 for_each_card_rtds(card, rtd) { 2206 ret = soc_init_pcm_runtime(card, rtd); 2207 if (ret < 0) 2208 goto probe_end; 2209 } 2210 2211 snd_soc_dapm_link_dai_widgets(card); 2212 snd_soc_dapm_connect_dai_link_widgets(card); 2213 2214 ret = snd_soc_add_card_controls(card, card->controls, 2215 card->num_controls); 2216 if (ret < 0) 2217 goto probe_end; 2218 2219 ret = snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes, 2220 card->num_dapm_routes); 2221 if (ret < 0) { 2222 if (card->disable_route_checks) { 2223 dev_info(card->dev, 2224 "%s: disable_route_checks set, ignoring errors on add_routes\n", 2225 __func__); 2226 } else { 2227 dev_err(card->dev, 2228 "%s: snd_soc_dapm_add_routes failed: %d\n", 2229 __func__, ret); 2230 goto probe_end; 2231 } 2232 } 2233 2234 ret = snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes, 2235 card->num_of_dapm_routes); 2236 if (ret < 0) 2237 goto probe_end; 2238 2239 /* try to set some sane longname if DMI is available */ 2240 snd_soc_set_dmi_name(card, NULL); 2241 2242 soc_setup_card_name(card, card->snd_card->shortname, 2243 card->name, NULL); 2244 soc_setup_card_name(card, card->snd_card->longname, 2245 card->long_name, card->name); 2246 soc_setup_card_name(card, card->snd_card->driver, 2247 card->driver_name, card->name); 2248 2249 if (card->components) { 2250 /* the current implementation of snd_component_add() accepts */ 2251 /* multiple components in the string separated by space, */ 2252 /* but the string collision (identical string) check might */ 2253 /* not work correctly */ 2254 ret = snd_component_add(card->snd_card, card->components); 2255 if (ret < 0) { 2256 dev_err(card->dev, "ASoC: %s snd_component_add() failed: %d\n", 2257 card->name, ret); 2258 goto probe_end; 2259 } 2260 } 2261 2262 ret = snd_soc_card_late_probe(card); 2263 if (ret < 0) 2264 goto probe_end; 2265 2266 snd_soc_dapm_new_widgets(card); 2267 snd_soc_card_fixup_controls(card); 2268 2269 ret = snd_card_register(card->snd_card); 2270 if (ret < 0) { 2271 dev_err(card->dev, "ASoC: failed to register soundcard %d\n", 2272 ret); 2273 goto probe_end; 2274 } 2275 2276 card->instantiated = 1; 2277 dapm_mark_endpoints_dirty(card); 2278 snd_soc_dapm_sync(&card->dapm); 2279 2280 /* deactivate pins to sleep state */ 2281 for_each_card_components(card, component) 2282 if (!snd_soc_component_active(component)) 2283 pinctrl_pm_select_sleep_state(component->dev); 2284 2285 probe_end: 2286 if (ret < 0) 2287 soc_cleanup_card_resources(card); 2288 2289 snd_soc_card_mutex_unlock(card); 2290 mutex_unlock(&client_mutex); 2291 2292 return ret; 2293 } 2294 2295 /* probes a new socdev */ 2296 static int soc_probe(struct platform_device *pdev) 2297 { 2298 struct snd_soc_card *card = platform_get_drvdata(pdev); 2299 2300 /* 2301 * no card, so machine driver should be registering card 2302 * we should not be here in that case so ret error 2303 */ 2304 if (!card) 2305 return -EINVAL; 2306 2307 dev_warn(&pdev->dev, 2308 "ASoC: machine %s should use snd_soc_register_card()\n", 2309 card->name); 2310 2311 /* Bodge while we unpick instantiation */ 2312 card->dev = &pdev->dev; 2313 2314 return devm_snd_soc_register_card(&pdev->dev, card); 2315 } 2316 2317 int snd_soc_poweroff(struct device *dev) 2318 { 2319 struct snd_soc_card *card = dev_get_drvdata(dev); 2320 struct snd_soc_component *component; 2321 2322 if (!snd_soc_card_is_instantiated(card)) 2323 return 0; 2324 2325 /* 2326 * Flush out pmdown_time work - we actually do want to run it 2327 * now, we're shutting down so no imminent restart. 2328 */ 2329 snd_soc_flush_all_delayed_work(card); 2330 2331 snd_soc_dapm_shutdown(card); 2332 2333 /* deactivate pins to sleep state */ 2334 for_each_card_components(card, component) 2335 pinctrl_pm_select_sleep_state(component->dev); 2336 2337 return 0; 2338 } 2339 EXPORT_SYMBOL_GPL(snd_soc_poweroff); 2340 2341 const struct dev_pm_ops snd_soc_pm_ops = { 2342 .suspend = snd_soc_suspend, 2343 .resume = snd_soc_resume, 2344 .freeze = snd_soc_suspend, 2345 .thaw = snd_soc_resume, 2346 .poweroff = snd_soc_poweroff, 2347 .restore = snd_soc_resume, 2348 }; 2349 EXPORT_SYMBOL_GPL(snd_soc_pm_ops); 2350 2351 /* ASoC platform driver */ 2352 static struct platform_driver soc_driver = { 2353 .driver = { 2354 .name = "soc-audio", 2355 .pm = &snd_soc_pm_ops, 2356 }, 2357 .probe = soc_probe, 2358 }; 2359 2360 /** 2361 * snd_soc_cnew - create new control 2362 * @_template: control template 2363 * @data: control private data 2364 * @long_name: control long name 2365 * @prefix: control name prefix 2366 * 2367 * Create a new mixer control from a template control. 2368 * 2369 * Returns 0 for success, else error. 2370 */ 2371 struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template, 2372 void *data, const char *long_name, 2373 const char *prefix) 2374 { 2375 struct snd_kcontrol_new template; 2376 struct snd_kcontrol *kcontrol; 2377 char *name = NULL; 2378 2379 memcpy(&template, _template, sizeof(template)); 2380 template.index = 0; 2381 2382 if (!long_name) 2383 long_name = template.name; 2384 2385 if (prefix) { 2386 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name); 2387 if (!name) 2388 return NULL; 2389 2390 template.name = name; 2391 } else { 2392 template.name = long_name; 2393 } 2394 2395 kcontrol = snd_ctl_new1(&template, data); 2396 2397 kfree(name); 2398 2399 return kcontrol; 2400 } 2401 EXPORT_SYMBOL_GPL(snd_soc_cnew); 2402 2403 static int snd_soc_add_controls(struct snd_card *card, struct device *dev, 2404 const struct snd_kcontrol_new *controls, int num_controls, 2405 const char *prefix, void *data) 2406 { 2407 int i; 2408 2409 for (i = 0; i < num_controls; i++) { 2410 const struct snd_kcontrol_new *control = &controls[i]; 2411 int err = snd_ctl_add(card, snd_soc_cnew(control, data, 2412 control->name, prefix)); 2413 if (err < 0) { 2414 dev_err(dev, "ASoC: Failed to add %s: %d\n", 2415 control->name, err); 2416 return err; 2417 } 2418 } 2419 2420 return 0; 2421 } 2422 2423 /** 2424 * snd_soc_add_component_controls - Add an array of controls to a component. 2425 * 2426 * @component: Component to add controls to 2427 * @controls: Array of controls to add 2428 * @num_controls: Number of elements in the array 2429 * 2430 * Return: 0 for success, else error. 2431 */ 2432 int snd_soc_add_component_controls(struct snd_soc_component *component, 2433 const struct snd_kcontrol_new *controls, unsigned int num_controls) 2434 { 2435 struct snd_card *card = component->card->snd_card; 2436 2437 return snd_soc_add_controls(card, component->dev, controls, 2438 num_controls, component->name_prefix, component); 2439 } 2440 EXPORT_SYMBOL_GPL(snd_soc_add_component_controls); 2441 2442 /** 2443 * snd_soc_add_card_controls - add an array of controls to a SoC card. 2444 * Convenience function to add a list of controls. 2445 * 2446 * @soc_card: SoC card to add controls to 2447 * @controls: array of controls to add 2448 * @num_controls: number of elements in the array 2449 * 2450 * Return 0 for success, else error. 2451 */ 2452 int snd_soc_add_card_controls(struct snd_soc_card *soc_card, 2453 const struct snd_kcontrol_new *controls, int num_controls) 2454 { 2455 struct snd_card *card = soc_card->snd_card; 2456 2457 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls, 2458 NULL, soc_card); 2459 } 2460 EXPORT_SYMBOL_GPL(snd_soc_add_card_controls); 2461 2462 /** 2463 * snd_soc_add_dai_controls - add an array of controls to a DAI. 2464 * Convenience function to add a list of controls. 2465 * 2466 * @dai: DAI to add controls to 2467 * @controls: array of controls to add 2468 * @num_controls: number of elements in the array 2469 * 2470 * Return 0 for success, else error. 2471 */ 2472 int snd_soc_add_dai_controls(struct snd_soc_dai *dai, 2473 const struct snd_kcontrol_new *controls, int num_controls) 2474 { 2475 struct snd_card *card = dai->component->card->snd_card; 2476 2477 return snd_soc_add_controls(card, dai->dev, controls, num_controls, 2478 NULL, dai); 2479 } 2480 EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls); 2481 2482 /** 2483 * snd_soc_register_card - Register a card with the ASoC core 2484 * 2485 * @card: Card to register 2486 * 2487 */ 2488 int snd_soc_register_card(struct snd_soc_card *card) 2489 { 2490 if (!card->name || !card->dev) 2491 return -EINVAL; 2492 2493 dev_set_drvdata(card->dev, card); 2494 2495 INIT_LIST_HEAD(&card->widgets); 2496 INIT_LIST_HEAD(&card->paths); 2497 INIT_LIST_HEAD(&card->dapm_list); 2498 INIT_LIST_HEAD(&card->aux_comp_list); 2499 INIT_LIST_HEAD(&card->component_dev_list); 2500 INIT_LIST_HEAD(&card->list); 2501 INIT_LIST_HEAD(&card->rtd_list); 2502 INIT_LIST_HEAD(&card->dapm_dirty); 2503 INIT_LIST_HEAD(&card->dobj_list); 2504 2505 card->instantiated = 0; 2506 mutex_init(&card->mutex); 2507 mutex_init(&card->dapm_mutex); 2508 mutex_init(&card->pcm_mutex); 2509 2510 return snd_soc_bind_card(card); 2511 } 2512 EXPORT_SYMBOL_GPL(snd_soc_register_card); 2513 2514 /** 2515 * snd_soc_unregister_card - Unregister a card with the ASoC core 2516 * 2517 * @card: Card to unregister 2518 * 2519 */ 2520 void snd_soc_unregister_card(struct snd_soc_card *card) 2521 { 2522 mutex_lock(&client_mutex); 2523 snd_soc_unbind_card(card, true); 2524 mutex_unlock(&client_mutex); 2525 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name); 2526 } 2527 EXPORT_SYMBOL_GPL(snd_soc_unregister_card); 2528 2529 /* 2530 * Simplify DAI link configuration by removing ".-1" from device names 2531 * and sanitizing names. 2532 */ 2533 static char *fmt_single_name(struct device *dev, int *id) 2534 { 2535 const char *devname = dev_name(dev); 2536 char *found, *name; 2537 unsigned int id1, id2; 2538 2539 if (devname == NULL) 2540 return NULL; 2541 2542 name = devm_kstrdup(dev, devname, GFP_KERNEL); 2543 if (!name) 2544 return NULL; 2545 2546 /* are we a "%s.%d" name (platform and SPI components) */ 2547 found = strstr(name, dev->driver->name); 2548 if (found) { 2549 /* get ID */ 2550 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) { 2551 2552 /* discard ID from name if ID == -1 */ 2553 if (*id == -1) 2554 found[strlen(dev->driver->name)] = '\0'; 2555 } 2556 2557 /* I2C component devices are named "bus-addr" */ 2558 } else if (sscanf(name, "%x-%x", &id1, &id2) == 2) { 2559 2560 /* create unique ID number from I2C addr and bus */ 2561 *id = ((id1 & 0xffff) << 16) + id2; 2562 2563 devm_kfree(dev, name); 2564 2565 /* sanitize component name for DAI link creation */ 2566 name = devm_kasprintf(dev, GFP_KERNEL, "%s.%s", dev->driver->name, devname); 2567 } else { 2568 *id = 0; 2569 } 2570 2571 return name; 2572 } 2573 2574 /* 2575 * Simplify DAI link naming for single devices with multiple DAIs by removing 2576 * any ".-1" and using the DAI name (instead of device name). 2577 */ 2578 static inline char *fmt_multiple_name(struct device *dev, 2579 struct snd_soc_dai_driver *dai_drv) 2580 { 2581 if (dai_drv->name == NULL) { 2582 dev_err(dev, 2583 "ASoC: error - multiple DAI %s registered with no name\n", 2584 dev_name(dev)); 2585 return NULL; 2586 } 2587 2588 return devm_kstrdup(dev, dai_drv->name, GFP_KERNEL); 2589 } 2590 2591 void snd_soc_unregister_dai(struct snd_soc_dai *dai) 2592 { 2593 dev_dbg(dai->dev, "ASoC: Unregistered DAI '%s'\n", dai->name); 2594 list_del(&dai->list); 2595 } 2596 EXPORT_SYMBOL_GPL(snd_soc_unregister_dai); 2597 2598 /** 2599 * snd_soc_register_dai - Register a DAI dynamically & create its widgets 2600 * 2601 * @component: The component the DAIs are registered for 2602 * @dai_drv: DAI driver to use for the DAI 2603 * @legacy_dai_naming: if %true, use legacy single-name format; 2604 * if %false, use multiple-name format; 2605 * 2606 * Topology can use this API to register DAIs when probing a component. 2607 * These DAIs's widgets will be freed in the card cleanup and the DAIs 2608 * will be freed in the component cleanup. 2609 */ 2610 struct snd_soc_dai *snd_soc_register_dai(struct snd_soc_component *component, 2611 struct snd_soc_dai_driver *dai_drv, 2612 bool legacy_dai_naming) 2613 { 2614 struct device *dev = component->dev; 2615 struct snd_soc_dai *dai; 2616 2617 lockdep_assert_held(&client_mutex); 2618 2619 dai = devm_kzalloc(dev, sizeof(*dai), GFP_KERNEL); 2620 if (dai == NULL) 2621 return NULL; 2622 2623 /* 2624 * Back in the old days when we still had component-less DAIs, 2625 * instead of having a static name, component-less DAIs would 2626 * inherit the name of the parent device so it is possible to 2627 * register multiple instances of the DAI. We still need to keep 2628 * the same naming style even though those DAIs are not 2629 * component-less anymore. 2630 */ 2631 if (legacy_dai_naming && 2632 (dai_drv->id == 0 || dai_drv->name == NULL)) { 2633 dai->name = fmt_single_name(dev, &dai->id); 2634 } else { 2635 dai->name = fmt_multiple_name(dev, dai_drv); 2636 if (dai_drv->id) 2637 dai->id = dai_drv->id; 2638 else 2639 dai->id = component->num_dai; 2640 } 2641 if (!dai->name) 2642 return NULL; 2643 2644 dai->component = component; 2645 dai->dev = dev; 2646 dai->driver = dai_drv; 2647 2648 /* see for_each_component_dais */ 2649 list_add_tail(&dai->list, &component->dai_list); 2650 component->num_dai++; 2651 2652 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name); 2653 return dai; 2654 } 2655 EXPORT_SYMBOL_GPL(snd_soc_register_dai); 2656 2657 /** 2658 * snd_soc_unregister_dais - Unregister DAIs from the ASoC core 2659 * 2660 * @component: The component for which the DAIs should be unregistered 2661 */ 2662 static void snd_soc_unregister_dais(struct snd_soc_component *component) 2663 { 2664 struct snd_soc_dai *dai, *_dai; 2665 2666 for_each_component_dais_safe(component, dai, _dai) 2667 snd_soc_unregister_dai(dai); 2668 } 2669 2670 /** 2671 * snd_soc_register_dais - Register a DAI with the ASoC core 2672 * 2673 * @component: The component the DAIs are registered for 2674 * @dai_drv: DAI driver to use for the DAIs 2675 * @count: Number of DAIs 2676 */ 2677 static int snd_soc_register_dais(struct snd_soc_component *component, 2678 struct snd_soc_dai_driver *dai_drv, 2679 size_t count) 2680 { 2681 struct snd_soc_dai *dai; 2682 unsigned int i; 2683 int ret; 2684 2685 for (i = 0; i < count; i++) { 2686 dai = snd_soc_register_dai(component, dai_drv + i, count == 1 && 2687 component->driver->legacy_dai_naming); 2688 if (dai == NULL) { 2689 ret = -ENOMEM; 2690 goto err; 2691 } 2692 } 2693 2694 return 0; 2695 2696 err: 2697 snd_soc_unregister_dais(component); 2698 2699 return ret; 2700 } 2701 2702 #define ENDIANNESS_MAP(name) \ 2703 (SNDRV_PCM_FMTBIT_##name##LE | SNDRV_PCM_FMTBIT_##name##BE) 2704 static u64 endianness_format_map[] = { 2705 ENDIANNESS_MAP(S16_), 2706 ENDIANNESS_MAP(U16_), 2707 ENDIANNESS_MAP(S24_), 2708 ENDIANNESS_MAP(U24_), 2709 ENDIANNESS_MAP(S32_), 2710 ENDIANNESS_MAP(U32_), 2711 ENDIANNESS_MAP(S24_3), 2712 ENDIANNESS_MAP(U24_3), 2713 ENDIANNESS_MAP(S20_3), 2714 ENDIANNESS_MAP(U20_3), 2715 ENDIANNESS_MAP(S18_3), 2716 ENDIANNESS_MAP(U18_3), 2717 ENDIANNESS_MAP(FLOAT_), 2718 ENDIANNESS_MAP(FLOAT64_), 2719 ENDIANNESS_MAP(IEC958_SUBFRAME_), 2720 }; 2721 2722 /* 2723 * Fix up the DAI formats for endianness: codecs don't actually see 2724 * the endianness of the data but we're using the CPU format 2725 * definitions which do need to include endianness so we ensure that 2726 * codec DAIs always have both big and little endian variants set. 2727 */ 2728 static void convert_endianness_formats(struct snd_soc_pcm_stream *stream) 2729 { 2730 int i; 2731 2732 for (i = 0; i < ARRAY_SIZE(endianness_format_map); i++) 2733 if (stream->formats & endianness_format_map[i]) 2734 stream->formats |= endianness_format_map[i]; 2735 } 2736 2737 static void snd_soc_try_rebind_card(void) 2738 { 2739 struct snd_soc_card *card, *c; 2740 2741 list_for_each_entry_safe(card, c, &unbind_card_list, list) 2742 if (!snd_soc_bind_card(card)) 2743 list_del(&card->list); 2744 } 2745 2746 static void snd_soc_del_component_unlocked(struct snd_soc_component *component) 2747 { 2748 struct snd_soc_card *card = component->card; 2749 2750 snd_soc_unregister_dais(component); 2751 2752 if (card) 2753 snd_soc_unbind_card(card, false); 2754 2755 list_del(&component->list); 2756 } 2757 2758 int snd_soc_component_initialize(struct snd_soc_component *component, 2759 const struct snd_soc_component_driver *driver, 2760 struct device *dev) 2761 { 2762 INIT_LIST_HEAD(&component->dai_list); 2763 INIT_LIST_HEAD(&component->dobj_list); 2764 INIT_LIST_HEAD(&component->card_list); 2765 INIT_LIST_HEAD(&component->list); 2766 mutex_init(&component->io_mutex); 2767 2768 component->name = fmt_single_name(dev, &component->id); 2769 if (!component->name) { 2770 dev_err(dev, "ASoC: Failed to allocate name\n"); 2771 return -ENOMEM; 2772 } 2773 2774 component->dev = dev; 2775 component->driver = driver; 2776 2777 #ifdef CONFIG_DEBUG_FS 2778 if (!component->debugfs_prefix) 2779 component->debugfs_prefix = driver->debugfs_prefix; 2780 #endif 2781 2782 return 0; 2783 } 2784 EXPORT_SYMBOL_GPL(snd_soc_component_initialize); 2785 2786 int snd_soc_add_component(struct snd_soc_component *component, 2787 struct snd_soc_dai_driver *dai_drv, 2788 int num_dai) 2789 { 2790 int ret; 2791 int i; 2792 2793 mutex_lock(&client_mutex); 2794 2795 if (component->driver->endianness) { 2796 for (i = 0; i < num_dai; i++) { 2797 convert_endianness_formats(&dai_drv[i].playback); 2798 convert_endianness_formats(&dai_drv[i].capture); 2799 } 2800 } 2801 2802 ret = snd_soc_register_dais(component, dai_drv, num_dai); 2803 if (ret < 0) { 2804 dev_err(component->dev, "ASoC: Failed to register DAIs: %d\n", 2805 ret); 2806 goto err_cleanup; 2807 } 2808 2809 if (!component->driver->write && !component->driver->read) { 2810 if (!component->regmap) 2811 component->regmap = dev_get_regmap(component->dev, 2812 NULL); 2813 if (component->regmap) 2814 snd_soc_component_setup_regmap(component); 2815 } 2816 2817 /* see for_each_component */ 2818 list_add(&component->list, &component_list); 2819 2820 err_cleanup: 2821 if (ret < 0) 2822 snd_soc_del_component_unlocked(component); 2823 2824 mutex_unlock(&client_mutex); 2825 2826 if (ret == 0) 2827 snd_soc_try_rebind_card(); 2828 2829 return ret; 2830 } 2831 EXPORT_SYMBOL_GPL(snd_soc_add_component); 2832 2833 int snd_soc_register_component(struct device *dev, 2834 const struct snd_soc_component_driver *component_driver, 2835 struct snd_soc_dai_driver *dai_drv, 2836 int num_dai) 2837 { 2838 struct snd_soc_component *component; 2839 int ret; 2840 2841 component = devm_kzalloc(dev, sizeof(*component), GFP_KERNEL); 2842 if (!component) 2843 return -ENOMEM; 2844 2845 ret = snd_soc_component_initialize(component, component_driver, dev); 2846 if (ret < 0) 2847 return ret; 2848 2849 return snd_soc_add_component(component, dai_drv, num_dai); 2850 } 2851 EXPORT_SYMBOL_GPL(snd_soc_register_component); 2852 2853 /** 2854 * snd_soc_unregister_component_by_driver - Unregister component using a given driver 2855 * from the ASoC core 2856 * 2857 * @dev: The device to unregister 2858 * @component_driver: The component driver to unregister 2859 */ 2860 void snd_soc_unregister_component_by_driver(struct device *dev, 2861 const struct snd_soc_component_driver *component_driver) 2862 { 2863 struct snd_soc_component *component; 2864 2865 if (!component_driver) 2866 return; 2867 2868 mutex_lock(&client_mutex); 2869 component = snd_soc_lookup_component_nolocked(dev, component_driver->name); 2870 if (!component) 2871 goto out; 2872 2873 snd_soc_del_component_unlocked(component); 2874 2875 out: 2876 mutex_unlock(&client_mutex); 2877 } 2878 EXPORT_SYMBOL_GPL(snd_soc_unregister_component_by_driver); 2879 2880 /** 2881 * snd_soc_unregister_component - Unregister all related component 2882 * from the ASoC core 2883 * 2884 * @dev: The device to unregister 2885 */ 2886 void snd_soc_unregister_component(struct device *dev) 2887 { 2888 mutex_lock(&client_mutex); 2889 while (1) { 2890 struct snd_soc_component *component = snd_soc_lookup_component_nolocked(dev, NULL); 2891 2892 if (!component) 2893 break; 2894 2895 snd_soc_del_component_unlocked(component); 2896 } 2897 mutex_unlock(&client_mutex); 2898 } 2899 EXPORT_SYMBOL_GPL(snd_soc_unregister_component); 2900 2901 /* Retrieve a card's name from device tree */ 2902 int snd_soc_of_parse_card_name(struct snd_soc_card *card, 2903 const char *propname) 2904 { 2905 struct device_node *np; 2906 int ret; 2907 2908 if (!card->dev) { 2909 pr_err("card->dev is not set before calling %s\n", __func__); 2910 return -EINVAL; 2911 } 2912 2913 np = card->dev->of_node; 2914 2915 ret = of_property_read_string_index(np, propname, 0, &card->name); 2916 /* 2917 * EINVAL means the property does not exist. This is fine providing 2918 * card->name was previously set, which is checked later in 2919 * snd_soc_register_card. 2920 */ 2921 if (ret < 0 && ret != -EINVAL) { 2922 dev_err(card->dev, 2923 "ASoC: Property '%s' could not be read: %d\n", 2924 propname, ret); 2925 return ret; 2926 } 2927 2928 return 0; 2929 } 2930 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name); 2931 2932 static const struct snd_soc_dapm_widget simple_widgets[] = { 2933 SND_SOC_DAPM_MIC("Microphone", NULL), 2934 SND_SOC_DAPM_LINE("Line", NULL), 2935 SND_SOC_DAPM_HP("Headphone", NULL), 2936 SND_SOC_DAPM_SPK("Speaker", NULL), 2937 }; 2938 2939 int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card, 2940 const char *propname) 2941 { 2942 struct device_node *np = card->dev->of_node; 2943 struct snd_soc_dapm_widget *widgets; 2944 const char *template, *wname; 2945 int i, j, num_widgets; 2946 2947 num_widgets = of_property_count_strings(np, propname); 2948 if (num_widgets < 0) { 2949 dev_err(card->dev, 2950 "ASoC: Property '%s' does not exist\n", propname); 2951 return -EINVAL; 2952 } 2953 if (!num_widgets) { 2954 dev_err(card->dev, "ASoC: Property '%s's length is zero\n", 2955 propname); 2956 return -EINVAL; 2957 } 2958 if (num_widgets & 1) { 2959 dev_err(card->dev, 2960 "ASoC: Property '%s' length is not even\n", propname); 2961 return -EINVAL; 2962 } 2963 2964 num_widgets /= 2; 2965 2966 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets), 2967 GFP_KERNEL); 2968 if (!widgets) { 2969 dev_err(card->dev, 2970 "ASoC: Could not allocate memory for widgets\n"); 2971 return -ENOMEM; 2972 } 2973 2974 for (i = 0; i < num_widgets; i++) { 2975 int ret = of_property_read_string_index(np, propname, 2976 2 * i, &template); 2977 if (ret) { 2978 dev_err(card->dev, 2979 "ASoC: Property '%s' index %d read error:%d\n", 2980 propname, 2 * i, ret); 2981 return -EINVAL; 2982 } 2983 2984 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) { 2985 if (!strncmp(template, simple_widgets[j].name, 2986 strlen(simple_widgets[j].name))) { 2987 widgets[i] = simple_widgets[j]; 2988 break; 2989 } 2990 } 2991 2992 if (j >= ARRAY_SIZE(simple_widgets)) { 2993 dev_err(card->dev, 2994 "ASoC: DAPM widget '%s' is not supported\n", 2995 template); 2996 return -EINVAL; 2997 } 2998 2999 ret = of_property_read_string_index(np, propname, 3000 (2 * i) + 1, 3001 &wname); 3002 if (ret) { 3003 dev_err(card->dev, 3004 "ASoC: Property '%s' index %d read error:%d\n", 3005 propname, (2 * i) + 1, ret); 3006 return -EINVAL; 3007 } 3008 3009 widgets[i].name = wname; 3010 } 3011 3012 card->of_dapm_widgets = widgets; 3013 card->num_of_dapm_widgets = num_widgets; 3014 3015 return 0; 3016 } 3017 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets); 3018 3019 int snd_soc_of_parse_pin_switches(struct snd_soc_card *card, const char *prop) 3020 { 3021 const unsigned int nb_controls_max = 16; 3022 const char **strings, *control_name; 3023 struct snd_kcontrol_new *controls; 3024 struct device *dev = card->dev; 3025 unsigned int i, nb_controls; 3026 int ret; 3027 3028 if (!of_property_read_bool(dev->of_node, prop)) 3029 return 0; 3030 3031 strings = devm_kcalloc(dev, nb_controls_max, 3032 sizeof(*strings), GFP_KERNEL); 3033 if (!strings) 3034 return -ENOMEM; 3035 3036 ret = of_property_read_string_array(dev->of_node, prop, 3037 strings, nb_controls_max); 3038 if (ret < 0) 3039 return ret; 3040 3041 nb_controls = (unsigned int)ret; 3042 3043 controls = devm_kcalloc(dev, nb_controls, 3044 sizeof(*controls), GFP_KERNEL); 3045 if (!controls) 3046 return -ENOMEM; 3047 3048 for (i = 0; i < nb_controls; i++) { 3049 control_name = devm_kasprintf(dev, GFP_KERNEL, 3050 "%s Switch", strings[i]); 3051 if (!control_name) 3052 return -ENOMEM; 3053 3054 controls[i].iface = SNDRV_CTL_ELEM_IFACE_MIXER; 3055 controls[i].name = control_name; 3056 controls[i].info = snd_soc_dapm_info_pin_switch; 3057 controls[i].get = snd_soc_dapm_get_pin_switch; 3058 controls[i].put = snd_soc_dapm_put_pin_switch; 3059 controls[i].private_value = (unsigned long)strings[i]; 3060 } 3061 3062 card->controls = controls; 3063 card->num_controls = nb_controls; 3064 3065 return 0; 3066 } 3067 EXPORT_SYMBOL_GPL(snd_soc_of_parse_pin_switches); 3068 3069 int snd_soc_of_get_slot_mask(struct device_node *np, 3070 const char *prop_name, 3071 unsigned int *mask) 3072 { 3073 u32 val; 3074 const __be32 *of_slot_mask = of_get_property(np, prop_name, &val); 3075 int i; 3076 3077 if (!of_slot_mask) 3078 return 0; 3079 val /= sizeof(u32); 3080 for (i = 0; i < val; i++) 3081 if (be32_to_cpup(&of_slot_mask[i])) 3082 *mask |= (1 << i); 3083 3084 return val; 3085 } 3086 EXPORT_SYMBOL_GPL(snd_soc_of_get_slot_mask); 3087 3088 int snd_soc_of_parse_tdm_slot(struct device_node *np, 3089 unsigned int *tx_mask, 3090 unsigned int *rx_mask, 3091 unsigned int *slots, 3092 unsigned int *slot_width) 3093 { 3094 u32 val; 3095 int ret; 3096 3097 if (tx_mask) 3098 snd_soc_of_get_slot_mask(np, "dai-tdm-slot-tx-mask", tx_mask); 3099 if (rx_mask) 3100 snd_soc_of_get_slot_mask(np, "dai-tdm-slot-rx-mask", rx_mask); 3101 3102 if (of_property_read_bool(np, "dai-tdm-slot-num")) { 3103 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val); 3104 if (ret) 3105 return ret; 3106 3107 if (slots) 3108 *slots = val; 3109 } 3110 3111 if (of_property_read_bool(np, "dai-tdm-slot-width")) { 3112 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val); 3113 if (ret) 3114 return ret; 3115 3116 if (slot_width) 3117 *slot_width = val; 3118 } 3119 3120 return 0; 3121 } 3122 EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot); 3123 3124 void snd_soc_dlc_use_cpu_as_platform(struct snd_soc_dai_link_component *platforms, 3125 struct snd_soc_dai_link_component *cpus) 3126 { 3127 platforms->of_node = cpus->of_node; 3128 platforms->dai_args = cpus->dai_args; 3129 } 3130 EXPORT_SYMBOL_GPL(snd_soc_dlc_use_cpu_as_platform); 3131 3132 void snd_soc_of_parse_node_prefix(struct device_node *np, 3133 struct snd_soc_codec_conf *codec_conf, 3134 struct device_node *of_node, 3135 const char *propname) 3136 { 3137 const char *str; 3138 int ret; 3139 3140 ret = of_property_read_string(np, propname, &str); 3141 if (ret < 0) { 3142 /* no prefix is not error */ 3143 return; 3144 } 3145 3146 codec_conf->dlc.of_node = of_node; 3147 codec_conf->name_prefix = str; 3148 } 3149 EXPORT_SYMBOL_GPL(snd_soc_of_parse_node_prefix); 3150 3151 int snd_soc_of_parse_audio_routing(struct snd_soc_card *card, 3152 const char *propname) 3153 { 3154 struct device_node *np = card->dev->of_node; 3155 int num_routes; 3156 struct snd_soc_dapm_route *routes; 3157 int i; 3158 3159 num_routes = of_property_count_strings(np, propname); 3160 if (num_routes < 0 || num_routes & 1) { 3161 dev_err(card->dev, 3162 "ASoC: Property '%s' does not exist or its length is not even\n", 3163 propname); 3164 return -EINVAL; 3165 } 3166 num_routes /= 2; 3167 3168 routes = devm_kcalloc(card->dev, num_routes, sizeof(*routes), 3169 GFP_KERNEL); 3170 if (!routes) { 3171 dev_err(card->dev, 3172 "ASoC: Could not allocate DAPM route table\n"); 3173 return -ENOMEM; 3174 } 3175 3176 for (i = 0; i < num_routes; i++) { 3177 int ret = of_property_read_string_index(np, propname, 3178 2 * i, &routes[i].sink); 3179 if (ret) { 3180 dev_err(card->dev, 3181 "ASoC: Property '%s' index %d could not be read: %d\n", 3182 propname, 2 * i, ret); 3183 return -EINVAL; 3184 } 3185 ret = of_property_read_string_index(np, propname, 3186 (2 * i) + 1, &routes[i].source); 3187 if (ret) { 3188 dev_err(card->dev, 3189 "ASoC: Property '%s' index %d could not be read: %d\n", 3190 propname, (2 * i) + 1, ret); 3191 return -EINVAL; 3192 } 3193 } 3194 3195 card->num_of_dapm_routes = num_routes; 3196 card->of_dapm_routes = routes; 3197 3198 return 0; 3199 } 3200 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing); 3201 3202 int snd_soc_of_parse_aux_devs(struct snd_soc_card *card, const char *propname) 3203 { 3204 struct device_node *node = card->dev->of_node; 3205 struct snd_soc_aux_dev *aux; 3206 int num, i; 3207 3208 num = of_count_phandle_with_args(node, propname, NULL); 3209 if (num == -ENOENT) { 3210 return 0; 3211 } else if (num < 0) { 3212 dev_err(card->dev, "ASOC: Property '%s' could not be read: %d\n", 3213 propname, num); 3214 return num; 3215 } 3216 3217 aux = devm_kcalloc(card->dev, num, sizeof(*aux), GFP_KERNEL); 3218 if (!aux) 3219 return -ENOMEM; 3220 card->aux_dev = aux; 3221 card->num_aux_devs = num; 3222 3223 for_each_card_pre_auxs(card, i, aux) { 3224 aux->dlc.of_node = of_parse_phandle(node, propname, i); 3225 if (!aux->dlc.of_node) 3226 return -EINVAL; 3227 } 3228 3229 return 0; 3230 } 3231 EXPORT_SYMBOL_GPL(snd_soc_of_parse_aux_devs); 3232 3233 unsigned int snd_soc_daifmt_clock_provider_flipped(unsigned int dai_fmt) 3234 { 3235 unsigned int inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK; 3236 3237 switch (dai_fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) { 3238 case SND_SOC_DAIFMT_CBP_CFP: 3239 inv_dai_fmt |= SND_SOC_DAIFMT_CBC_CFC; 3240 break; 3241 case SND_SOC_DAIFMT_CBP_CFC: 3242 inv_dai_fmt |= SND_SOC_DAIFMT_CBC_CFP; 3243 break; 3244 case SND_SOC_DAIFMT_CBC_CFP: 3245 inv_dai_fmt |= SND_SOC_DAIFMT_CBP_CFC; 3246 break; 3247 case SND_SOC_DAIFMT_CBC_CFC: 3248 inv_dai_fmt |= SND_SOC_DAIFMT_CBP_CFP; 3249 break; 3250 } 3251 3252 return inv_dai_fmt; 3253 } 3254 EXPORT_SYMBOL_GPL(snd_soc_daifmt_clock_provider_flipped); 3255 3256 unsigned int snd_soc_daifmt_clock_provider_from_bitmap(unsigned int bit_frame) 3257 { 3258 /* 3259 * bit_frame is return value from 3260 * snd_soc_daifmt_parse_clock_provider_raw() 3261 */ 3262 3263 /* Codec base */ 3264 switch (bit_frame) { 3265 case 0x11: 3266 return SND_SOC_DAIFMT_CBP_CFP; 3267 case 0x10: 3268 return SND_SOC_DAIFMT_CBP_CFC; 3269 case 0x01: 3270 return SND_SOC_DAIFMT_CBC_CFP; 3271 default: 3272 return SND_SOC_DAIFMT_CBC_CFC; 3273 } 3274 3275 return 0; 3276 } 3277 EXPORT_SYMBOL_GPL(snd_soc_daifmt_clock_provider_from_bitmap); 3278 3279 unsigned int snd_soc_daifmt_parse_format(struct device_node *np, 3280 const char *prefix) 3281 { 3282 int ret; 3283 char prop[128]; 3284 unsigned int format = 0; 3285 int bit, frame; 3286 const char *str; 3287 struct { 3288 char *name; 3289 unsigned int val; 3290 } of_fmt_table[] = { 3291 { "i2s", SND_SOC_DAIFMT_I2S }, 3292 { "right_j", SND_SOC_DAIFMT_RIGHT_J }, 3293 { "left_j", SND_SOC_DAIFMT_LEFT_J }, 3294 { "dsp_a", SND_SOC_DAIFMT_DSP_A }, 3295 { "dsp_b", SND_SOC_DAIFMT_DSP_B }, 3296 { "ac97", SND_SOC_DAIFMT_AC97 }, 3297 { "pdm", SND_SOC_DAIFMT_PDM}, 3298 { "msb", SND_SOC_DAIFMT_MSB }, 3299 { "lsb", SND_SOC_DAIFMT_LSB }, 3300 }; 3301 3302 if (!prefix) 3303 prefix = ""; 3304 3305 /* 3306 * check "dai-format = xxx" 3307 * or "[prefix]format = xxx" 3308 * SND_SOC_DAIFMT_FORMAT_MASK area 3309 */ 3310 ret = of_property_read_string(np, "dai-format", &str); 3311 if (ret < 0) { 3312 snprintf(prop, sizeof(prop), "%sformat", prefix); 3313 ret = of_property_read_string(np, prop, &str); 3314 } 3315 if (ret == 0) { 3316 int i; 3317 3318 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) { 3319 if (strcmp(str, of_fmt_table[i].name) == 0) { 3320 format |= of_fmt_table[i].val; 3321 break; 3322 } 3323 } 3324 } 3325 3326 /* 3327 * check "[prefix]continuous-clock" 3328 * SND_SOC_DAIFMT_CLOCK_MASK area 3329 */ 3330 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix); 3331 if (of_property_read_bool(np, prop)) 3332 format |= SND_SOC_DAIFMT_CONT; 3333 else 3334 format |= SND_SOC_DAIFMT_GATED; 3335 3336 /* 3337 * check "[prefix]bitclock-inversion" 3338 * check "[prefix]frame-inversion" 3339 * SND_SOC_DAIFMT_INV_MASK area 3340 */ 3341 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix); 3342 bit = !!of_get_property(np, prop, NULL); 3343 3344 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix); 3345 frame = !!of_get_property(np, prop, NULL); 3346 3347 switch ((bit << 4) + frame) { 3348 case 0x11: 3349 format |= SND_SOC_DAIFMT_IB_IF; 3350 break; 3351 case 0x10: 3352 format |= SND_SOC_DAIFMT_IB_NF; 3353 break; 3354 case 0x01: 3355 format |= SND_SOC_DAIFMT_NB_IF; 3356 break; 3357 default: 3358 /* SND_SOC_DAIFMT_NB_NF is default */ 3359 break; 3360 } 3361 3362 return format; 3363 } 3364 EXPORT_SYMBOL_GPL(snd_soc_daifmt_parse_format); 3365 3366 unsigned int snd_soc_daifmt_parse_clock_provider_raw(struct device_node *np, 3367 const char *prefix, 3368 struct device_node **bitclkmaster, 3369 struct device_node **framemaster) 3370 { 3371 char prop[128]; 3372 unsigned int bit, frame; 3373 3374 if (!prefix) 3375 prefix = ""; 3376 3377 /* 3378 * check "[prefix]bitclock-master" 3379 * check "[prefix]frame-master" 3380 */ 3381 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix); 3382 bit = !!of_get_property(np, prop, NULL); 3383 if (bit && bitclkmaster) 3384 *bitclkmaster = of_parse_phandle(np, prop, 0); 3385 3386 snprintf(prop, sizeof(prop), "%sframe-master", prefix); 3387 frame = !!of_get_property(np, prop, NULL); 3388 if (frame && framemaster) 3389 *framemaster = of_parse_phandle(np, prop, 0); 3390 3391 /* 3392 * return bitmap. 3393 * It will be parameter of 3394 * snd_soc_daifmt_clock_provider_from_bitmap() 3395 */ 3396 return (bit << 4) + frame; 3397 } 3398 EXPORT_SYMBOL_GPL(snd_soc_daifmt_parse_clock_provider_raw); 3399 3400 int snd_soc_get_stream_cpu(struct snd_soc_dai_link *dai_link, int stream) 3401 { 3402 /* 3403 * [Normal] 3404 * 3405 * Playback 3406 * CPU : SNDRV_PCM_STREAM_PLAYBACK 3407 * Codec: SNDRV_PCM_STREAM_PLAYBACK 3408 * 3409 * Capture 3410 * CPU : SNDRV_PCM_STREAM_CAPTURE 3411 * Codec: SNDRV_PCM_STREAM_CAPTURE 3412 */ 3413 if (!dai_link->c2c_params) 3414 return stream; 3415 3416 /* 3417 * [Codec2Codec] 3418 * 3419 * Playback 3420 * CPU : SNDRV_PCM_STREAM_CAPTURE 3421 * Codec: SNDRV_PCM_STREAM_PLAYBACK 3422 * 3423 * Capture 3424 * CPU : SNDRV_PCM_STREAM_PLAYBACK 3425 * Codec: SNDRV_PCM_STREAM_CAPTURE 3426 */ 3427 if (stream == SNDRV_PCM_STREAM_CAPTURE) 3428 return SNDRV_PCM_STREAM_PLAYBACK; 3429 3430 return SNDRV_PCM_STREAM_CAPTURE; 3431 } 3432 EXPORT_SYMBOL_GPL(snd_soc_get_stream_cpu); 3433 3434 int snd_soc_get_dai_id(struct device_node *ep) 3435 { 3436 struct snd_soc_component *component; 3437 struct snd_soc_dai_link_component dlc = { 3438 .of_node = of_graph_get_port_parent(ep), 3439 }; 3440 int ret; 3441 3442 3443 /* 3444 * For example HDMI case, HDMI has video/sound port, 3445 * but ALSA SoC needs sound port number only. 3446 * Thus counting HDMI DT port/endpoint doesn't work. 3447 * Then, it should have .of_xlate_dai_id 3448 */ 3449 ret = -ENOTSUPP; 3450 mutex_lock(&client_mutex); 3451 component = soc_find_component(&dlc); 3452 if (component) 3453 ret = snd_soc_component_of_xlate_dai_id(component, ep); 3454 mutex_unlock(&client_mutex); 3455 3456 of_node_put(dlc.of_node); 3457 3458 return ret; 3459 } 3460 EXPORT_SYMBOL_GPL(snd_soc_get_dai_id); 3461 3462 int snd_soc_get_dlc(const struct of_phandle_args *args, struct snd_soc_dai_link_component *dlc) 3463 { 3464 struct snd_soc_component *pos; 3465 int ret = -EPROBE_DEFER; 3466 3467 mutex_lock(&client_mutex); 3468 for_each_component(pos) { 3469 struct device_node *component_of_node = soc_component_to_node(pos); 3470 3471 if (component_of_node != args->np || !pos->num_dai) 3472 continue; 3473 3474 ret = snd_soc_component_of_xlate_dai_name(pos, args, &dlc->dai_name); 3475 if (ret == -ENOTSUPP) { 3476 struct snd_soc_dai *dai; 3477 int id = -1; 3478 3479 switch (args->args_count) { 3480 case 0: 3481 id = 0; /* same as dai_drv[0] */ 3482 break; 3483 case 1: 3484 id = args->args[0]; 3485 break; 3486 default: 3487 /* not supported */ 3488 break; 3489 } 3490 3491 if (id < 0 || id >= pos->num_dai) { 3492 ret = -EINVAL; 3493 continue; 3494 } 3495 3496 ret = 0; 3497 3498 /* find target DAI */ 3499 for_each_component_dais(pos, dai) { 3500 if (id == 0) 3501 break; 3502 id--; 3503 } 3504 3505 dlc->dai_name = snd_soc_dai_name_get(dai); 3506 } else if (ret) { 3507 /* 3508 * if another error than ENOTSUPP is returned go on and 3509 * check if another component is provided with the same 3510 * node. This may happen if a device provides several 3511 * components 3512 */ 3513 continue; 3514 } 3515 3516 break; 3517 } 3518 3519 if (ret == 0) 3520 dlc->of_node = args->np; 3521 3522 mutex_unlock(&client_mutex); 3523 return ret; 3524 } 3525 EXPORT_SYMBOL_GPL(snd_soc_get_dlc); 3526 3527 int snd_soc_of_get_dlc(struct device_node *of_node, 3528 struct of_phandle_args *args, 3529 struct snd_soc_dai_link_component *dlc, 3530 int index) 3531 { 3532 struct of_phandle_args __args; 3533 int ret; 3534 3535 if (!args) 3536 args = &__args; 3537 3538 ret = of_parse_phandle_with_args(of_node, "sound-dai", 3539 "#sound-dai-cells", index, args); 3540 if (ret) 3541 return ret; 3542 3543 return snd_soc_get_dlc(args, dlc); 3544 } 3545 EXPORT_SYMBOL_GPL(snd_soc_of_get_dlc); 3546 3547 int snd_soc_get_dai_name(const struct of_phandle_args *args, 3548 const char **dai_name) 3549 { 3550 struct snd_soc_dai_link_component dlc; 3551 int ret = snd_soc_get_dlc(args, &dlc); 3552 3553 if (ret == 0) 3554 *dai_name = dlc.dai_name; 3555 3556 return ret; 3557 } 3558 EXPORT_SYMBOL_GPL(snd_soc_get_dai_name); 3559 3560 int snd_soc_of_get_dai_name(struct device_node *of_node, 3561 const char **dai_name, int index) 3562 { 3563 struct snd_soc_dai_link_component dlc; 3564 int ret = snd_soc_of_get_dlc(of_node, NULL, &dlc, index); 3565 3566 if (ret == 0) 3567 *dai_name = dlc.dai_name; 3568 3569 return ret; 3570 } 3571 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name); 3572 3573 struct snd_soc_dai *snd_soc_get_dai_via_args(struct of_phandle_args *dai_args) 3574 { 3575 struct snd_soc_dai *dai; 3576 struct snd_soc_component *component; 3577 3578 mutex_lock(&client_mutex); 3579 for_each_component(component) { 3580 for_each_component_dais(component, dai) 3581 if (snd_soc_is_match_dai_args(dai->driver->dai_args, dai_args)) 3582 goto found; 3583 } 3584 dai = NULL; 3585 found: 3586 mutex_unlock(&client_mutex); 3587 return dai; 3588 } 3589 EXPORT_SYMBOL_GPL(snd_soc_get_dai_via_args); 3590 3591 static void __snd_soc_of_put_component(struct snd_soc_dai_link_component *component) 3592 { 3593 if (component->of_node) { 3594 of_node_put(component->of_node); 3595 component->of_node = NULL; 3596 } 3597 } 3598 3599 static int __snd_soc_of_get_dai_link_component_alloc( 3600 struct device *dev, struct device_node *of_node, 3601 struct snd_soc_dai_link_component **ret_component, 3602 int *ret_num) 3603 { 3604 struct snd_soc_dai_link_component *component; 3605 int num; 3606 3607 /* Count the number of CPUs/CODECs */ 3608 num = of_count_phandle_with_args(of_node, "sound-dai", "#sound-dai-cells"); 3609 if (num <= 0) { 3610 if (num == -ENOENT) 3611 dev_err(dev, "No 'sound-dai' property\n"); 3612 else 3613 dev_err(dev, "Bad phandle in 'sound-dai'\n"); 3614 return num; 3615 } 3616 component = devm_kcalloc(dev, num, sizeof(*component), GFP_KERNEL); 3617 if (!component) 3618 return -ENOMEM; 3619 3620 *ret_component = component; 3621 *ret_num = num; 3622 3623 return 0; 3624 } 3625 3626 /* 3627 * snd_soc_of_put_dai_link_codecs - Dereference device nodes in the codecs array 3628 * @dai_link: DAI link 3629 * 3630 * Dereference device nodes acquired by snd_soc_of_get_dai_link_codecs(). 3631 */ 3632 void snd_soc_of_put_dai_link_codecs(struct snd_soc_dai_link *dai_link) 3633 { 3634 struct snd_soc_dai_link_component *component; 3635 int index; 3636 3637 for_each_link_codecs(dai_link, index, component) 3638 __snd_soc_of_put_component(component); 3639 } 3640 EXPORT_SYMBOL_GPL(snd_soc_of_put_dai_link_codecs); 3641 3642 /* 3643 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree 3644 * @dev: Card device 3645 * @of_node: Device node 3646 * @dai_link: DAI link 3647 * 3648 * Builds an array of CODEC DAI components from the DAI link property 3649 * 'sound-dai'. 3650 * The array is set in the DAI link and the number of DAIs is set accordingly. 3651 * The device nodes in the array (of_node) must be dereferenced by calling 3652 * snd_soc_of_put_dai_link_codecs() on @dai_link. 3653 * 3654 * Returns 0 for success 3655 */ 3656 int snd_soc_of_get_dai_link_codecs(struct device *dev, 3657 struct device_node *of_node, 3658 struct snd_soc_dai_link *dai_link) 3659 { 3660 struct snd_soc_dai_link_component *component; 3661 int index, ret; 3662 3663 ret = __snd_soc_of_get_dai_link_component_alloc(dev, of_node, 3664 &dai_link->codecs, &dai_link->num_codecs); 3665 if (ret < 0) 3666 return ret; 3667 3668 /* Parse the list */ 3669 for_each_link_codecs(dai_link, index, component) { 3670 ret = snd_soc_of_get_dlc(of_node, NULL, component, index); 3671 if (ret) 3672 goto err; 3673 } 3674 return 0; 3675 err: 3676 snd_soc_of_put_dai_link_codecs(dai_link); 3677 dai_link->codecs = NULL; 3678 dai_link->num_codecs = 0; 3679 return ret; 3680 } 3681 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs); 3682 3683 /* 3684 * snd_soc_of_put_dai_link_cpus - Dereference device nodes in the codecs array 3685 * @dai_link: DAI link 3686 * 3687 * Dereference device nodes acquired by snd_soc_of_get_dai_link_cpus(). 3688 */ 3689 void snd_soc_of_put_dai_link_cpus(struct snd_soc_dai_link *dai_link) 3690 { 3691 struct snd_soc_dai_link_component *component; 3692 int index; 3693 3694 for_each_link_cpus(dai_link, index, component) 3695 __snd_soc_of_put_component(component); 3696 } 3697 EXPORT_SYMBOL_GPL(snd_soc_of_put_dai_link_cpus); 3698 3699 /* 3700 * snd_soc_of_get_dai_link_cpus - Parse a list of CPU DAIs in the devicetree 3701 * @dev: Card device 3702 * @of_node: Device node 3703 * @dai_link: DAI link 3704 * 3705 * Is analogous to snd_soc_of_get_dai_link_codecs but parses a list of CPU DAIs 3706 * instead. 3707 * 3708 * Returns 0 for success 3709 */ 3710 int snd_soc_of_get_dai_link_cpus(struct device *dev, 3711 struct device_node *of_node, 3712 struct snd_soc_dai_link *dai_link) 3713 { 3714 struct snd_soc_dai_link_component *component; 3715 int index, ret; 3716 3717 /* Count the number of CPUs */ 3718 ret = __snd_soc_of_get_dai_link_component_alloc(dev, of_node, 3719 &dai_link->cpus, &dai_link->num_cpus); 3720 if (ret < 0) 3721 return ret; 3722 3723 /* Parse the list */ 3724 for_each_link_cpus(dai_link, index, component) { 3725 ret = snd_soc_of_get_dlc(of_node, NULL, component, index); 3726 if (ret) 3727 goto err; 3728 } 3729 return 0; 3730 err: 3731 snd_soc_of_put_dai_link_cpus(dai_link); 3732 dai_link->cpus = NULL; 3733 dai_link->num_cpus = 0; 3734 return ret; 3735 } 3736 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_cpus); 3737 3738 static int __init snd_soc_init(void) 3739 { 3740 int ret; 3741 3742 snd_soc_debugfs_init(); 3743 ret = snd_soc_util_init(); 3744 if (ret) 3745 goto err_util_init; 3746 3747 ret = platform_driver_register(&soc_driver); 3748 if (ret) 3749 goto err_register; 3750 return 0; 3751 3752 err_register: 3753 snd_soc_util_exit(); 3754 err_util_init: 3755 snd_soc_debugfs_exit(); 3756 return ret; 3757 } 3758 module_init(snd_soc_init); 3759 3760 static void __exit snd_soc_exit(void) 3761 { 3762 snd_soc_util_exit(); 3763 snd_soc_debugfs_exit(); 3764 3765 platform_driver_unregister(&soc_driver); 3766 } 3767 module_exit(snd_soc_exit); 3768 3769 /* Module information */ 3770 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk"); 3771 MODULE_DESCRIPTION("ALSA SoC Core"); 3772 MODULE_LICENSE("GPL"); 3773 MODULE_ALIAS("platform:soc-audio"); 3774