waipio.c 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/clk.h>
  6. #include <linux/delay.h>
  7. #include <linux/gpio.h>
  8. #include <linux/of_gpio.h>
  9. #include <linux/platform_device.h>
  10. #include <linux/slab.h>
  11. #include <linux/io.h>
  12. #include <linux/module.h>
  13. #include <linux/input.h>
  14. #include <linux/of_device.h>
  15. #include <linux/soc/qcom/fsa4480-i2c.h>
  16. #include <linux/pm_qos.h>
  17. #include <sound/control.h>
  18. #include <sound/core.h>
  19. #include <sound/soc.h>
  20. #include <sound/soc-dapm.h>
  21. #include <sound/pcm.h>
  22. #include <sound/pcm_params.h>
  23. #include <sound/info.h>
  24. #include <soc/snd_event.h>
  25. #include <dsp/audio_prm.h>
  26. #include <soc/swr-common.h>
  27. #include <soc/soundwire.h>
  28. #include "device_event.h"
  29. #include "asoc/msm-cdc-pinctrl.h"
  30. #include "asoc/wcd-mbhc-v2.h"
  31. #include "codecs/wcd938x/wcd938x-mbhc.h"
  32. #include "codecs/wsa883x/wsa883x.h"
  33. #include "codecs/wcd938x/wcd938x.h"
  34. #include "codecs/lpass-cdc/lpass-cdc.h"
  35. #include <bindings/audio-codec-port-types.h>
  36. #include "codecs/lpass-cdc/lpass-cdc-wsa-macro.h"
  37. #include "waipio-port-config.h"
  38. #include "msm-audio-defs.h"
  39. #include "msm_common.h"
  40. #include "msm_dailink.h"
  41. #define DRV_NAME "waipio-asoc-snd"
  42. #define __CHIPSET__ "WAIPIO "
  43. #define MSM_DAILINK_NAME(name) (__CHIPSET__#name)
  44. #define WCD9XXX_MBHC_DEF_RLOADS 5
  45. #define WCD9XXX_MBHC_DEF_BUTTONS 8
  46. #define CODEC_EXT_CLK_RATE 9600000
  47. #define DEV_NAME_STR_LEN 32
  48. #define WCD_MBHC_HS_V_MAX 1600
  49. #define MSM_LL_QOS_VALUE 300 /* time in us to ensure LPM doesn't go in C3/C4 */
  50. #define WCN_CDC_SLIM_RX_CH_MAX 2
  51. #define WCN_CDC_SLIM_TX_CH_MAX 2
  52. #define WCN_CDC_SLIM_TX_CH_MAX_LITO 3
  53. /* Number of WSAs */
  54. #define MONO_SPEAKER 1
  55. #define STEREO_SPEAKER 2
  56. #define QUAD_SPEAKER 4
  57. struct msm_asoc_mach_data {
  58. struct snd_info_entry *codec_root;
  59. struct msm_common_pdata *common_pdata;
  60. int usbc_en2_gpio; /* used by gpio driver API */
  61. struct device_node *dmic01_gpio_p; /* used by pinctrl API */
  62. struct device_node *dmic23_gpio_p; /* used by pinctrl API */
  63. struct device_node *dmic45_gpio_p; /* used by pinctrl API */
  64. struct pinctrl *usbc_en2_gpio_p; /* used by pinctrl API */
  65. bool is_afe_config_done;
  66. struct device_node *fsa_handle;
  67. struct clk *lpass_audio_hw_vote;
  68. int core_audio_vote_count;
  69. u32 wsa_max_devs;
  70. int wcd_disabled;
  71. };
  72. static bool is_initial_boot;
  73. static bool codec_reg_done;
  74. static struct snd_soc_card snd_soc_card_waipio_msm;
  75. static int dmic_0_1_gpio_cnt;
  76. static int dmic_2_3_gpio_cnt;
  77. static int dmic_4_5_gpio_cnt;
  78. static void *def_wcd_mbhc_cal(void);
  79. static int msm_rx_tx_codec_init(struct snd_soc_pcm_runtime*);
  80. static int msm_int_wsa_init(struct snd_soc_pcm_runtime*);
  81. /*
  82. * Need to report LINEIN
  83. * if R/L channel impedance is larger than 5K ohm
  84. */
  85. static struct wcd_mbhc_config wcd_mbhc_cfg = {
  86. .read_fw_bin = false,
  87. .calibration = NULL,
  88. .detect_extn_cable = true,
  89. .mono_stero_detection = false,
  90. .swap_gnd_mic = NULL,
  91. .hs_ext_micbias = true,
  92. .key_code[0] = KEY_MEDIA,
  93. .key_code[1] = KEY_VOICECOMMAND,
  94. .key_code[2] = KEY_VOLUMEUP,
  95. .key_code[3] = KEY_VOLUMEDOWN,
  96. .key_code[4] = 0,
  97. .key_code[5] = 0,
  98. .key_code[6] = 0,
  99. .key_code[7] = 0,
  100. .linein_th = 5000,
  101. .moisture_en = false,
  102. .mbhc_micbias = MIC_BIAS_2,
  103. .anc_micbias = MIC_BIAS_2,
  104. .enable_anc_mic_detect = false,
  105. .moisture_duty_cycle_en = true,
  106. };
  107. /* set audio task affinity to core 1 & 2 */
  108. static const unsigned int audio_core_list[] = {1, 2};
  109. static cpumask_t audio_cpu_map = CPU_MASK_NONE;
  110. static struct dev_pm_qos_request *msm_audio_req = NULL;
  111. static void msm_audio_add_qos_request()
  112. {
  113. int i;
  114. int cpu = 0;
  115. msm_audio_req = kzalloc(sizeof(struct dev_pm_qos_request) * NR_CPUS,
  116. GFP_KERNEL);
  117. if (!msm_audio_req) {
  118. pr_err("%s failed to alloc mem for qos req.\n", __func__);
  119. return;
  120. }
  121. for (i = 0; i < ARRAY_SIZE(audio_core_list); i++) {
  122. if (audio_core_list[i] >= NR_CPUS)
  123. pr_err("%s incorrect cpu id: %d specified.\n", __func__, audio_core_list[i]);
  124. else
  125. cpumask_set_cpu(audio_core_list[i], &audio_cpu_map);
  126. }
  127. for_each_cpu(cpu, &audio_cpu_map) {
  128. dev_pm_qos_add_request(get_cpu_device(cpu),
  129. &msm_audio_req[cpu],
  130. DEV_PM_QOS_RESUME_LATENCY,
  131. PM_QOS_CPU_LATENCY_DEFAULT_VALUE);
  132. pr_debug("%s set cpu affinity to core %d.\n", __func__, cpu);
  133. }
  134. }
  135. static void msm_audio_remove_qos_request()
  136. {
  137. int cpu = 0;
  138. if (msm_audio_req) {
  139. for_each_cpu(cpu, &audio_cpu_map) {
  140. dev_pm_qos_remove_request(
  141. &msm_audio_req[cpu]);
  142. pr_debug("%s remove cpu affinity of core %d.\n", __func__, cpu);
  143. }
  144. kfree(msm_audio_req);
  145. }
  146. }
  147. static bool msm_usbc_swap_gnd_mic(struct snd_soc_component *component, bool active)
  148. {
  149. struct snd_soc_card *card = component->card;
  150. struct msm_asoc_mach_data *pdata =
  151. snd_soc_card_get_drvdata(card);
  152. if (!pdata->fsa_handle)
  153. return false;
  154. return fsa4480_switch_event(pdata->fsa_handle, FSA_MIC_GND_SWAP);
  155. }
  156. static struct snd_soc_ops msm_common_be_ops = {
  157. .startup = msm_common_snd_startup,
  158. .shutdown = msm_common_snd_shutdown,
  159. };
  160. static int msm_dmic_event(struct snd_soc_dapm_widget *w,
  161. struct snd_kcontrol *kcontrol, int event)
  162. {
  163. struct msm_asoc_mach_data *pdata = NULL;
  164. struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
  165. int ret = 0;
  166. u32 dmic_idx;
  167. int *dmic_gpio_cnt;
  168. struct device_node *dmic_gpio;
  169. char *wname;
  170. wname = strpbrk(w->name, "012345");
  171. if (!wname) {
  172. dev_err(component->dev, "%s: widget not found\n", __func__);
  173. return -EINVAL;
  174. }
  175. ret = kstrtouint(wname, 10, &dmic_idx);
  176. if (ret < 0) {
  177. dev_err(component->dev, "%s: Invalid DMIC line on the codec\n",
  178. __func__);
  179. return -EINVAL;
  180. }
  181. pdata = snd_soc_card_get_drvdata(component->card);
  182. switch (dmic_idx) {
  183. case 0:
  184. case 1:
  185. dmic_gpio_cnt = &dmic_0_1_gpio_cnt;
  186. dmic_gpio = pdata->dmic01_gpio_p;
  187. break;
  188. case 2:
  189. case 3:
  190. dmic_gpio_cnt = &dmic_2_3_gpio_cnt;
  191. dmic_gpio = pdata->dmic23_gpio_p;
  192. break;
  193. case 4:
  194. case 5:
  195. dmic_gpio_cnt = &dmic_4_5_gpio_cnt;
  196. dmic_gpio = pdata->dmic45_gpio_p;
  197. break;
  198. default:
  199. dev_err(component->dev, "%s: Invalid DMIC Selection\n",
  200. __func__);
  201. return -EINVAL;
  202. }
  203. dev_dbg(component->dev, "%s: event %d DMIC%d dmic_gpio_cnt %d\n",
  204. __func__, event, dmic_idx, *dmic_gpio_cnt);
  205. switch (event) {
  206. case SND_SOC_DAPM_PRE_PMU:
  207. (*dmic_gpio_cnt)++;
  208. if (*dmic_gpio_cnt == 1) {
  209. ret = msm_cdc_pinctrl_select_active_state(
  210. dmic_gpio);
  211. if (ret < 0) {
  212. pr_err("%s: gpio set cannot be activated %sd",
  213. __func__, "dmic_gpio");
  214. return ret;
  215. }
  216. }
  217. break;
  218. case SND_SOC_DAPM_POST_PMD:
  219. (*dmic_gpio_cnt)--;
  220. if (*dmic_gpio_cnt == 0) {
  221. ret = msm_cdc_pinctrl_select_sleep_state(
  222. dmic_gpio);
  223. if (ret < 0) {
  224. pr_err("%s: gpio set cannot be de-activated %sd",
  225. __func__, "dmic_gpio");
  226. return ret;
  227. }
  228. }
  229. break;
  230. default:
  231. pr_err("%s: invalid DAPM event %d\n", __func__, event);
  232. return -EINVAL;
  233. }
  234. return 0;
  235. }
  236. static const struct snd_soc_dapm_widget msm_int_dapm_widgets[] = {
  237. SND_SOC_DAPM_MIC("Analog Mic1", NULL),
  238. SND_SOC_DAPM_MIC("Analog Mic2", NULL),
  239. SND_SOC_DAPM_MIC("Analog Mic3", NULL),
  240. SND_SOC_DAPM_MIC("Analog Mic4", NULL),
  241. SND_SOC_DAPM_MIC("Analog Mic5", NULL),
  242. SND_SOC_DAPM_MIC("Digital Mic0", msm_dmic_event),
  243. SND_SOC_DAPM_MIC("Digital Mic1", msm_dmic_event),
  244. SND_SOC_DAPM_MIC("Digital Mic2", msm_dmic_event),
  245. SND_SOC_DAPM_MIC("Digital Mic3", msm_dmic_event),
  246. SND_SOC_DAPM_MIC("Digital Mic4", msm_dmic_event),
  247. SND_SOC_DAPM_MIC("Digital Mic5", msm_dmic_event),
  248. SND_SOC_DAPM_MIC("Digital Mic6", NULL),
  249. SND_SOC_DAPM_MIC("Digital Mic7", NULL),
  250. };
  251. static int msm_wcn_init(struct snd_soc_pcm_runtime *rtd)
  252. {
  253. unsigned int rx_ch[WCN_CDC_SLIM_RX_CH_MAX] = {157, 158};
  254. unsigned int tx_ch[WCN_CDC_SLIM_TX_CH_MAX] = {159, 160};
  255. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  256. int ret = 0;
  257. ret = snd_soc_dai_set_channel_map(codec_dai, ARRAY_SIZE(tx_ch),
  258. tx_ch, ARRAY_SIZE(rx_ch), rx_ch);
  259. if (ret)
  260. return ret;
  261. msm_common_dai_link_init(rtd);
  262. return ret;
  263. }
  264. static struct snd_info_entry *msm_snd_info_create_subdir(struct module *mod,
  265. const char *name,
  266. struct snd_info_entry *parent)
  267. {
  268. struct snd_info_entry *entry;
  269. entry = snd_info_create_module_entry(mod, name, parent);
  270. if (!entry)
  271. return NULL;
  272. entry->mode = S_IFDIR | 0555;
  273. if (snd_info_register(entry) < 0) {
  274. snd_info_free_entry(entry);
  275. return NULL;
  276. }
  277. return entry;
  278. }
  279. static void *def_wcd_mbhc_cal(void)
  280. {
  281. void *wcd_mbhc_cal;
  282. struct wcd_mbhc_btn_detect_cfg *btn_cfg;
  283. u16 *btn_high;
  284. wcd_mbhc_cal = kzalloc(WCD_MBHC_CAL_SIZE(WCD_MBHC_DEF_BUTTONS,
  285. WCD9XXX_MBHC_DEF_RLOADS), GFP_KERNEL);
  286. if (!wcd_mbhc_cal)
  287. return NULL;
  288. WCD_MBHC_CAL_PLUG_TYPE_PTR(wcd_mbhc_cal)->v_hs_max = WCD_MBHC_HS_V_MAX;
  289. WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal)->num_btn = WCD_MBHC_DEF_BUTTONS;
  290. btn_cfg = WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal);
  291. btn_high = ((void *)&btn_cfg->_v_btn_low) +
  292. (sizeof(btn_cfg->_v_btn_low[0]) * btn_cfg->num_btn);
  293. btn_high[0] = 75;
  294. btn_high[1] = 150;
  295. btn_high[2] = 237;
  296. btn_high[3] = 500;
  297. btn_high[4] = 500;
  298. btn_high[5] = 500;
  299. btn_high[6] = 500;
  300. btn_high[7] = 500;
  301. return wcd_mbhc_cal;
  302. }
  303. /* Digital audio interface glue - connects codec <---> CPU */
  304. static struct snd_soc_dai_link msm_common_be_dai_links[] = {
  305. /* Proxy Tx BACK END DAI Link */
  306. {
  307. .name = LPASS_BE_RT_PROXY_PCM_TX,
  308. .stream_name = LPASS_BE_RT_PROXY_PCM_TX,
  309. .capture_only = 1,
  310. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  311. SND_SOC_DPCM_TRIGGER_POST},
  312. .ignore_suspend = 1,
  313. .ops = &msm_common_be_ops,
  314. SND_SOC_DAILINK_REG(proxy_tx),
  315. },
  316. /* Proxy Rx BACK END DAI Link */
  317. {
  318. .name = LPASS_BE_RT_PROXY_PCM_RX,
  319. .stream_name = LPASS_BE_RT_PROXY_PCM_RX,
  320. .playback_only = 1,
  321. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  322. SND_SOC_DPCM_TRIGGER_POST},
  323. .ignore_pmdown_time = 1,
  324. .ignore_suspend = 1,
  325. .ops = &msm_common_be_ops,
  326. SND_SOC_DAILINK_REG(proxy_rx),
  327. },
  328. {
  329. .name = LPASS_BE_USB_AUDIO_RX,
  330. .stream_name = LPASS_BE_USB_AUDIO_RX,
  331. .playback_only = 1,
  332. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  333. SND_SOC_DPCM_TRIGGER_POST},
  334. .ignore_pmdown_time = 1,
  335. .ignore_suspend = 1,
  336. .ops = &msm_common_be_ops,
  337. SND_SOC_DAILINK_REG(usb_audio_rx),
  338. },
  339. {
  340. .name = LPASS_BE_USB_AUDIO_TX,
  341. .stream_name = LPASS_BE_USB_AUDIO_TX,
  342. .capture_only = 1,
  343. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  344. SND_SOC_DPCM_TRIGGER_POST},
  345. .ignore_suspend = 1,
  346. .ops = &msm_common_be_ops,
  347. SND_SOC_DAILINK_REG(usb_audio_tx),
  348. },
  349. };
  350. static struct snd_soc_dai_link msm_wcn_be_dai_links[] = {
  351. {
  352. .name = LPASS_BE_SLIMBUS_7_RX,
  353. .stream_name = LPASS_BE_SLIMBUS_7_RX,
  354. .playback_only = 1,
  355. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  356. SND_SOC_DPCM_TRIGGER_POST},
  357. .init = &msm_wcn_init,
  358. .ops = &msm_common_be_ops,
  359. /* dai link has playback support */
  360. .ignore_pmdown_time = 1,
  361. .ignore_suspend = 1,
  362. SND_SOC_DAILINK_REG(slimbus_7_rx),
  363. },
  364. {
  365. .name = LPASS_BE_SLIMBUS_7_TX,
  366. .stream_name = LPASS_BE_SLIMBUS_7_TX,
  367. .capture_only = 1,
  368. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  369. SND_SOC_DPCM_TRIGGER_POST},
  370. .ops = &msm_common_be_ops,
  371. .ignore_suspend = 1,
  372. SND_SOC_DAILINK_REG(slimbus_7_tx),
  373. },
  374. };
  375. static struct snd_soc_dai_link ext_disp_be_dai_link[] = {
  376. /* DISP PORT BACK END DAI Link */
  377. {
  378. .name = LPASS_BE_DISPLAY_PORT_RX,
  379. .stream_name = LPASS_BE_DISPLAY_PORT_RX,
  380. .playback_only = 1,
  381. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  382. SND_SOC_DPCM_TRIGGER_POST},
  383. .ignore_pmdown_time = 1,
  384. .ignore_suspend = 1,
  385. SND_SOC_DAILINK_REG(display_port),
  386. },
  387. };
  388. static struct snd_soc_dai_link msm_wsa_cdc_dma_be_dai_links[] = {
  389. /* WSA CDC DMA Backend DAI Links */
  390. {
  391. .name = LPASS_BE_WSA_CDC_DMA_RX_0,
  392. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_0,
  393. .playback_only = 1,
  394. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  395. SND_SOC_DPCM_TRIGGER_POST},
  396. .ignore_pmdown_time = 1,
  397. .ignore_suspend = 1,
  398. .ops = &msm_common_be_ops,
  399. SND_SOC_DAILINK_REG(wsa_dma_rx0),
  400. .init = &msm_int_wsa_init,
  401. },
  402. {
  403. .name = LPASS_BE_WSA_CDC_DMA_RX_1,
  404. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_1,
  405. .playback_only = 1,
  406. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  407. SND_SOC_DPCM_TRIGGER_POST},
  408. .ignore_pmdown_time = 1,
  409. .ignore_suspend = 1,
  410. .ops = &msm_common_be_ops,
  411. SND_SOC_DAILINK_REG(wsa_dma_rx1),
  412. },
  413. {
  414. .name = LPASS_BE_WSA_CDC_DMA_TX_1,
  415. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_1,
  416. .capture_only = 1,
  417. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  418. SND_SOC_DPCM_TRIGGER_POST},
  419. .ignore_suspend = 1,
  420. .ops = &msm_common_be_ops,
  421. SND_SOC_DAILINK_REG(wsa_dma_tx1),
  422. },
  423. {
  424. .name = LPASS_BE_WSA_CDC_DMA_TX_0,
  425. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_0,
  426. .capture_only = 1,
  427. .ignore_suspend = 1,
  428. .ops = &msm_common_be_ops,
  429. /* .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, */
  430. SND_SOC_DAILINK_REG(vi_feedback),
  431. },
  432. };
  433. static struct snd_soc_dai_link msm_wsa2_cdc_dma_be_dai_links[] = {
  434. /* WSA2 CDC DMA Backend DAI Links */
  435. {
  436. .name = LPASS_BE_WSA2_CDC_DMA_RX_0,
  437. .stream_name = LPASS_BE_WSA2_CDC_DMA_RX_0,
  438. .playback_only = 1,
  439. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  440. SND_SOC_DPCM_TRIGGER_POST},
  441. .ignore_pmdown_time = 1,
  442. .ignore_suspend = 1,
  443. .ops = &msm_common_be_ops,
  444. SND_SOC_DAILINK_REG(wsa2_dma_rx0),
  445. },
  446. {
  447. .name = LPASS_BE_WSA2_CDC_DMA_RX_1,
  448. .stream_name = LPASS_BE_WSA2_CDC_DMA_RX_1,
  449. .playback_only = 1,
  450. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  451. SND_SOC_DPCM_TRIGGER_POST},
  452. .ignore_pmdown_time = 1,
  453. .ignore_suspend = 1,
  454. .ops = &msm_common_be_ops,
  455. SND_SOC_DAILINK_REG(wsa2_dma_rx1),
  456. },
  457. {
  458. .name = LPASS_BE_WSA2_CDC_DMA_TX_1,
  459. .stream_name = LPASS_BE_WSA2_CDC_DMA_TX_1,
  460. .capture_only = 1,
  461. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  462. SND_SOC_DPCM_TRIGGER_POST},
  463. .ignore_suspend = 1,
  464. .ops = &msm_common_be_ops,
  465. SND_SOC_DAILINK_REG(wsa2_dma_tx1),
  466. },
  467. {
  468. .name = LPASS_BE_WSA2_CDC_DMA_TX_0,
  469. .stream_name = LPASS_BE_WSA2_CDC_DMA_TX_0,
  470. .capture_only = 1,
  471. .ignore_suspend = 1,
  472. .ops = &msm_common_be_ops,
  473. /* .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, */
  474. SND_SOC_DAILINK_REG(wsa2_vi_feedback),
  475. },
  476. };
  477. static struct snd_soc_dai_link msm_wsa_wsa2_cdc_dma_be_dai_links[] = {
  478. /* WSA CDC DMA Backend DAI Links */
  479. {
  480. .name = LPASS_BE_WSA_CDC_DMA_RX_0,
  481. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_0,
  482. .playback_only = 1,
  483. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  484. SND_SOC_DPCM_TRIGGER_POST},
  485. .ignore_pmdown_time = 1,
  486. .ignore_suspend = 1,
  487. .ops = &msm_common_be_ops,
  488. SND_SOC_DAILINK_REG(wsa_wsa2_dma_rx0),
  489. .init = &msm_int_wsa_init,
  490. },
  491. {
  492. .name = LPASS_BE_WSA_CDC_DMA_RX_1,
  493. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_1,
  494. .playback_only = 1,
  495. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  496. SND_SOC_DPCM_TRIGGER_POST},
  497. .ignore_pmdown_time = 1,
  498. .ignore_suspend = 1,
  499. .ops = &msm_common_be_ops,
  500. SND_SOC_DAILINK_REG(wsa_wsa2_dma_rx1),
  501. },
  502. {
  503. .name = LPASS_BE_WSA_CDC_DMA_TX_1,
  504. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_1,
  505. .capture_only = 1,
  506. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  507. SND_SOC_DPCM_TRIGGER_POST},
  508. .ignore_suspend = 1,
  509. .ops = &msm_common_be_ops,
  510. SND_SOC_DAILINK_REG(wsa_wsa2_dma_tx1),
  511. },
  512. {
  513. .name = LPASS_BE_WSA_CDC_DMA_TX_0,
  514. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_0,
  515. .capture_only = 1,
  516. .ignore_suspend = 1,
  517. .ops = &msm_common_be_ops,
  518. /* .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, */
  519. SND_SOC_DAILINK_REG(wsa_wsa2_vi_feedback),
  520. },
  521. };
  522. static struct snd_soc_dai_link msm_rx_tx_cdc_dma_be_dai_links[] = {
  523. /* RX CDC DMA Backend DAI Links */
  524. {
  525. .name = LPASS_BE_RX_CDC_DMA_RX_0,
  526. .stream_name = LPASS_BE_RX_CDC_DMA_RX_0,
  527. .playback_only = 1,
  528. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  529. SND_SOC_DPCM_TRIGGER_POST},
  530. .ignore_pmdown_time = 1,
  531. .ignore_suspend = 1,
  532. .ops = &msm_common_be_ops,
  533. SND_SOC_DAILINK_REG(rx_dma_rx0),
  534. .init = &msm_rx_tx_codec_init,
  535. },
  536. {
  537. .name = LPASS_BE_RX_CDC_DMA_RX_1,
  538. .stream_name = LPASS_BE_RX_CDC_DMA_RX_1,
  539. .playback_only = 1,
  540. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  541. SND_SOC_DPCM_TRIGGER_POST},
  542. .ignore_pmdown_time = 1,
  543. .ignore_suspend = 1,
  544. .ops = &msm_common_be_ops,
  545. SND_SOC_DAILINK_REG(rx_dma_rx1),
  546. },
  547. {
  548. .name = LPASS_BE_RX_CDC_DMA_RX_2,
  549. .stream_name = LPASS_BE_RX_CDC_DMA_RX_2,
  550. .playback_only = 1,
  551. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  552. SND_SOC_DPCM_TRIGGER_POST},
  553. .ignore_pmdown_time = 1,
  554. .ignore_suspend = 1,
  555. .ops = &msm_common_be_ops,
  556. SND_SOC_DAILINK_REG(rx_dma_rx2),
  557. },
  558. {
  559. .name = LPASS_BE_RX_CDC_DMA_RX_3,
  560. .stream_name = LPASS_BE_RX_CDC_DMA_RX_3,
  561. .playback_only = 1,
  562. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  563. SND_SOC_DPCM_TRIGGER_POST},
  564. .ignore_pmdown_time = 1,
  565. .ignore_suspend = 1,
  566. .ops = &msm_common_be_ops,
  567. SND_SOC_DAILINK_REG(rx_dma_rx3),
  568. },
  569. {
  570. .name = LPASS_BE_RX_CDC_DMA_RX_5,
  571. .stream_name = LPASS_BE_RX_CDC_DMA_RX_5,
  572. .playback_only = 1,
  573. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  574. SND_SOC_DPCM_TRIGGER_POST},
  575. .ignore_pmdown_time = 1,
  576. .ignore_suspend = 1,
  577. .ops = &msm_common_be_ops,
  578. SND_SOC_DAILINK_REG(rx_dma_rx5),
  579. },
  580. {
  581. .name = LPASS_BE_RX_CDC_DMA_RX_6,
  582. .stream_name = LPASS_BE_RX_CDC_DMA_RX_6,
  583. .playback_only = 1,
  584. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  585. SND_SOC_DPCM_TRIGGER_POST},
  586. .ignore_pmdown_time = 1,
  587. .ignore_suspend = 1,
  588. .ops = &msm_common_be_ops,
  589. SND_SOC_DAILINK_REG(rx_dma_rx6),
  590. },
  591. /* TX CDC DMA Backend DAI Links */
  592. {
  593. .name = LPASS_BE_TX_CDC_DMA_TX_3,
  594. .stream_name = LPASS_BE_TX_CDC_DMA_TX_3,
  595. .capture_only = 1,
  596. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  597. SND_SOC_DPCM_TRIGGER_POST},
  598. .ignore_suspend = 1,
  599. .ops = &msm_common_be_ops,
  600. SND_SOC_DAILINK_REG(tx_dma_tx3),
  601. },
  602. {
  603. .name = LPASS_BE_TX_CDC_DMA_TX_4,
  604. .stream_name = LPASS_BE_TX_CDC_DMA_TX_4,
  605. .capture_only = 1,
  606. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  607. SND_SOC_DPCM_TRIGGER_POST},
  608. .ignore_suspend = 1,
  609. .ops = &msm_common_be_ops,
  610. SND_SOC_DAILINK_REG(tx_dma_tx4),
  611. },
  612. };
  613. static struct snd_soc_dai_link msm_va_cdc_dma_be_dai_links[] = {
  614. {
  615. .name = LPASS_BE_VA_CDC_DMA_TX_0,
  616. .stream_name = LPASS_BE_VA_CDC_DMA_TX_0,
  617. .capture_only = 1,
  618. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  619. SND_SOC_DPCM_TRIGGER_POST},
  620. .ignore_suspend = 1,
  621. .ops = &msm_common_be_ops,
  622. SND_SOC_DAILINK_REG(va_dma_tx0),
  623. },
  624. {
  625. .name = LPASS_BE_VA_CDC_DMA_TX_1,
  626. .stream_name = LPASS_BE_VA_CDC_DMA_TX_1,
  627. .capture_only = 1,
  628. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  629. SND_SOC_DPCM_TRIGGER_POST},
  630. .ignore_suspend = 1,
  631. .ops = &msm_common_be_ops,
  632. SND_SOC_DAILINK_REG(va_dma_tx1),
  633. },
  634. {
  635. .name = LPASS_BE_VA_CDC_DMA_TX_2,
  636. .stream_name = LPASS_BE_VA_CDC_DMA_TX_2,
  637. .capture_only = 1,
  638. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  639. SND_SOC_DPCM_TRIGGER_POST},
  640. .ignore_suspend = 1,
  641. .ops = &msm_common_be_ops,
  642. SND_SOC_DAILINK_REG(va_dma_tx2),
  643. },
  644. };
  645. /*
  646. * I2S interface pinctrl mapping
  647. * ------------------------------------
  648. * Primary - pri_mi2s
  649. * Secondary - lpi_i2s3
  650. * Tertiary - tert_mi2s
  651. * Quaternary - quat_mi2s (lpi_i2s0)
  652. * Quinary - lpi_i2s1
  653. * Senary - lpi_i2s2
  654. * ------------------------------------
  655. */
  656. static struct snd_soc_dai_link msm_mi2s_dai_links[] = {
  657. {
  658. .name = LPASS_BE_PRI_MI2S_RX,
  659. .stream_name = LPASS_BE_PRI_MI2S_RX,
  660. .playback_only = 1,
  661. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  662. SND_SOC_DPCM_TRIGGER_POST},
  663. .ops = &msm_common_be_ops,
  664. .ignore_suspend = 1,
  665. .ignore_pmdown_time = 1,
  666. SND_SOC_DAILINK_REG(pri_mi2s_rx),
  667. },
  668. {
  669. .name = LPASS_BE_PRI_MI2S_TX,
  670. .stream_name = LPASS_BE_PRI_MI2S_TX,
  671. .capture_only = 1,
  672. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  673. SND_SOC_DPCM_TRIGGER_POST},
  674. .ops = &msm_common_be_ops,
  675. .ignore_suspend = 1,
  676. SND_SOC_DAILINK_REG(pri_mi2s_tx),
  677. },
  678. {
  679. .name = LPASS_BE_SEC_MI2S_RX,
  680. .stream_name = LPASS_BE_SEC_MI2S_RX,
  681. .playback_only = 1,
  682. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  683. SND_SOC_DPCM_TRIGGER_POST},
  684. .ops = &msm_common_be_ops,
  685. .ignore_suspend = 1,
  686. .ignore_pmdown_time = 1,
  687. SND_SOC_DAILINK_REG(sec_mi2s_rx),
  688. },
  689. {
  690. .name = LPASS_BE_SEC_MI2S_TX,
  691. .stream_name = LPASS_BE_SEC_MI2S_TX,
  692. .capture_only = 1,
  693. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  694. SND_SOC_DPCM_TRIGGER_POST},
  695. .ops = &msm_common_be_ops,
  696. .ignore_suspend = 1,
  697. SND_SOC_DAILINK_REG(sec_mi2s_tx),
  698. },
  699. {
  700. .name = LPASS_BE_TERT_MI2S_RX,
  701. .stream_name = LPASS_BE_TERT_MI2S_RX,
  702. .playback_only = 1,
  703. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  704. SND_SOC_DPCM_TRIGGER_POST},
  705. .ops = &msm_common_be_ops,
  706. .ignore_suspend = 1,
  707. .ignore_pmdown_time = 1,
  708. SND_SOC_DAILINK_REG(tert_mi2s_rx),
  709. },
  710. {
  711. .name = LPASS_BE_TERT_MI2S_TX,
  712. .stream_name = LPASS_BE_TERT_MI2S_TX,
  713. .capture_only = 1,
  714. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  715. SND_SOC_DPCM_TRIGGER_POST},
  716. .ops = &msm_common_be_ops,
  717. .ignore_suspend = 1,
  718. SND_SOC_DAILINK_REG(tert_mi2s_tx),
  719. },
  720. {
  721. .name = LPASS_BE_QUAT_MI2S_RX,
  722. .stream_name = LPASS_BE_QUAT_MI2S_RX,
  723. .playback_only = 1,
  724. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  725. SND_SOC_DPCM_TRIGGER_POST},
  726. .ops = &msm_common_be_ops,
  727. .ignore_suspend = 1,
  728. .ignore_pmdown_time = 1,
  729. SND_SOC_DAILINK_REG(quat_mi2s_rx),
  730. },
  731. {
  732. .name = LPASS_BE_QUAT_MI2S_TX,
  733. .stream_name = LPASS_BE_QUAT_MI2S_TX,
  734. .capture_only = 1,
  735. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  736. SND_SOC_DPCM_TRIGGER_POST},
  737. .ops = &msm_common_be_ops,
  738. .ignore_suspend = 1,
  739. SND_SOC_DAILINK_REG(quat_mi2s_tx),
  740. },
  741. {
  742. .name = LPASS_BE_QUIN_MI2S_RX,
  743. .stream_name = LPASS_BE_QUIN_MI2S_RX,
  744. .playback_only = 1,
  745. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  746. SND_SOC_DPCM_TRIGGER_POST},
  747. .ops = &msm_common_be_ops,
  748. .ignore_suspend = 1,
  749. .ignore_pmdown_time = 1,
  750. SND_SOC_DAILINK_REG(quin_mi2s_rx),
  751. },
  752. {
  753. .name = LPASS_BE_QUIN_MI2S_TX,
  754. .stream_name = LPASS_BE_QUIN_MI2S_TX,
  755. .capture_only = 1,
  756. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  757. SND_SOC_DPCM_TRIGGER_POST},
  758. .ops = &msm_common_be_ops,
  759. .ignore_suspend = 1,
  760. SND_SOC_DAILINK_REG(quin_mi2s_tx),
  761. },
  762. {
  763. .name = LPASS_BE_SEN_MI2S_RX,
  764. .stream_name = LPASS_BE_SEN_MI2S_RX,
  765. .playback_only = 1,
  766. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  767. SND_SOC_DPCM_TRIGGER_POST},
  768. .ops = &msm_common_be_ops,
  769. .ignore_suspend = 1,
  770. .ignore_pmdown_time = 1,
  771. SND_SOC_DAILINK_REG(sen_mi2s_rx),
  772. },
  773. {
  774. .name = LPASS_BE_SEN_MI2S_TX,
  775. .stream_name = LPASS_BE_SEN_MI2S_TX,
  776. .capture_only = 1,
  777. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  778. SND_SOC_DPCM_TRIGGER_POST},
  779. .ops = &msm_common_be_ops,
  780. .ignore_suspend = 1,
  781. SND_SOC_DAILINK_REG(sen_mi2s_tx),
  782. },
  783. };
  784. static struct snd_soc_dai_link msm_tdm_dai_links[] = {
  785. {
  786. .name = LPASS_BE_PRI_TDM_RX_0,
  787. .stream_name = LPASS_BE_PRI_TDM_RX_0,
  788. .playback_only = 1,
  789. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  790. SND_SOC_DPCM_TRIGGER_POST},
  791. .ops = &msm_common_be_ops,
  792. .ignore_suspend = 1,
  793. .ignore_pmdown_time = 1,
  794. SND_SOC_DAILINK_REG(pri_tdm_rx_0),
  795. },
  796. {
  797. .name = LPASS_BE_PRI_TDM_TX_0,
  798. .stream_name = LPASS_BE_PRI_TDM_TX_0,
  799. .capture_only = 1,
  800. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  801. SND_SOC_DPCM_TRIGGER_POST},
  802. .ops = &msm_common_be_ops,
  803. .ignore_suspend = 1,
  804. SND_SOC_DAILINK_REG(pri_tdm_tx_0),
  805. },
  806. {
  807. .name = LPASS_BE_SEC_TDM_RX_0,
  808. .stream_name = LPASS_BE_SEC_TDM_RX_0,
  809. .playback_only = 1,
  810. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  811. SND_SOC_DPCM_TRIGGER_POST},
  812. .ops = &msm_common_be_ops,
  813. .ignore_suspend = 1,
  814. .ignore_pmdown_time = 1,
  815. SND_SOC_DAILINK_REG(sec_tdm_rx_0),
  816. },
  817. {
  818. .name = LPASS_BE_SEC_TDM_TX_0,
  819. .stream_name = LPASS_BE_SEC_TDM_TX_0,
  820. .capture_only = 1,
  821. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  822. SND_SOC_DPCM_TRIGGER_POST},
  823. .ops = &msm_common_be_ops,
  824. .ignore_suspend = 1,
  825. SND_SOC_DAILINK_REG(sec_tdm_tx_0),
  826. },
  827. {
  828. .name = LPASS_BE_TERT_TDM_RX_0,
  829. .stream_name = LPASS_BE_TERT_TDM_RX_0,
  830. .playback_only = 1,
  831. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  832. SND_SOC_DPCM_TRIGGER_POST},
  833. .ops = &msm_common_be_ops,
  834. .ignore_suspend = 1,
  835. .ignore_pmdown_time = 1,
  836. SND_SOC_DAILINK_REG(tert_tdm_rx_0),
  837. },
  838. {
  839. .name = LPASS_BE_TERT_TDM_TX_0,
  840. .stream_name = LPASS_BE_TERT_TDM_TX_0,
  841. .capture_only = 1,
  842. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  843. SND_SOC_DPCM_TRIGGER_POST},
  844. .ops = &msm_common_be_ops,
  845. .ignore_suspend = 1,
  846. SND_SOC_DAILINK_REG(tert_tdm_tx_0),
  847. },
  848. {
  849. .name = LPASS_BE_QUAT_TDM_RX_0,
  850. .stream_name = LPASS_BE_QUAT_TDM_RX_0,
  851. .playback_only = 1,
  852. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  853. SND_SOC_DPCM_TRIGGER_POST},
  854. .ops = &msm_common_be_ops,
  855. .ignore_suspend = 1,
  856. .ignore_pmdown_time = 1,
  857. SND_SOC_DAILINK_REG(quat_tdm_rx_0),
  858. },
  859. {
  860. .name = LPASS_BE_QUAT_TDM_TX_0,
  861. .stream_name = LPASS_BE_QUAT_TDM_TX_0,
  862. .capture_only = 1,
  863. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  864. SND_SOC_DPCM_TRIGGER_POST},
  865. .ops = &msm_common_be_ops,
  866. .ignore_suspend = 1,
  867. SND_SOC_DAILINK_REG(quat_tdm_tx_0),
  868. },
  869. {
  870. .name = LPASS_BE_QUIN_TDM_RX_0,
  871. .stream_name = LPASS_BE_QUIN_TDM_RX_0,
  872. .playback_only = 1,
  873. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  874. SND_SOC_DPCM_TRIGGER_POST},
  875. .ops = &msm_common_be_ops,
  876. .ignore_suspend = 1,
  877. .ignore_pmdown_time = 1,
  878. SND_SOC_DAILINK_REG(quin_tdm_rx_0),
  879. },
  880. {
  881. .name = LPASS_BE_QUIN_TDM_TX_0,
  882. .stream_name = LPASS_BE_QUIN_TDM_TX_0,
  883. .capture_only = 1,
  884. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  885. SND_SOC_DPCM_TRIGGER_POST},
  886. .ops = &msm_common_be_ops,
  887. .ignore_suspend = 1,
  888. SND_SOC_DAILINK_REG(quin_tdm_tx_0),
  889. },
  890. {
  891. .name = LPASS_BE_SEN_TDM_RX_0,
  892. .stream_name = LPASS_BE_SEN_TDM_RX_0,
  893. .playback_only = 1,
  894. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  895. SND_SOC_DPCM_TRIGGER_POST},
  896. .ops = &msm_common_be_ops,
  897. .ignore_suspend = 1,
  898. .ignore_pmdown_time = 1,
  899. SND_SOC_DAILINK_REG(sen_tdm_rx_0),
  900. },
  901. {
  902. .name = LPASS_BE_SEN_TDM_TX_0,
  903. .stream_name = LPASS_BE_SEN_TDM_TX_0,
  904. .capture_only = 1,
  905. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  906. SND_SOC_DPCM_TRIGGER_POST},
  907. .ops = &msm_common_be_ops,
  908. .ignore_suspend = 1,
  909. SND_SOC_DAILINK_REG(sen_tdm_tx_0),
  910. },
  911. };
  912. static struct snd_soc_dai_link msm_waipio_dai_links[
  913. ARRAY_SIZE(msm_wsa_cdc_dma_be_dai_links) +
  914. ARRAY_SIZE(msm_wsa2_cdc_dma_be_dai_links) +
  915. ARRAY_SIZE(msm_wsa_wsa2_cdc_dma_be_dai_links) +
  916. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links) +
  917. ARRAY_SIZE(msm_va_cdc_dma_be_dai_links) +
  918. ARRAY_SIZE(ext_disp_be_dai_link) +
  919. ARRAY_SIZE(msm_common_be_dai_links) +
  920. ARRAY_SIZE(msm_wcn_be_dai_links) +
  921. ARRAY_SIZE(msm_mi2s_dai_links) +
  922. ARRAY_SIZE(msm_tdm_dai_links)];
  923. static int msm_populate_dai_link_component_of_node(
  924. struct snd_soc_card *card)
  925. {
  926. int i, j, index, ret = 0;
  927. struct device *cdev = card->dev;
  928. struct snd_soc_dai_link *dai_link = card->dai_link;
  929. struct device_node *np = NULL;
  930. int codecs_enabled = 0;
  931. struct snd_soc_dai_link_component *codecs_comp = NULL;
  932. if (!cdev) {
  933. dev_err(cdev, "%s: Sound card device memory NULL\n", __func__);
  934. return -ENODEV;
  935. }
  936. for (i = 0; i < card->num_links; i++) {
  937. if (dai_link[i].init == NULL)
  938. dai_link[i].init = &msm_common_dai_link_init;
  939. /* populate codec_of_node for snd card dai links */
  940. if (dai_link[i].num_codecs > 0) {
  941. for (j = 0; j < dai_link[i].num_codecs; j++) {
  942. if (dai_link[i].codecs[j].of_node ||
  943. !dai_link[i].codecs[j].name)
  944. continue;
  945. index = of_property_match_string(cdev->of_node,
  946. "asoc-codec-names",
  947. dai_link[i].codecs[j].name);
  948. if (index < 0)
  949. continue;
  950. np = of_parse_phandle(cdev->of_node,
  951. "asoc-codec",
  952. index);
  953. if (!np) {
  954. dev_err(cdev, "%s: retrieving phandle for codec %s failed\n",
  955. __func__,
  956. dai_link[i].codecs[j].name);
  957. ret = -ENODEV;
  958. goto err;
  959. }
  960. dai_link[i].codecs[j].of_node = np;
  961. dai_link[i].codecs[j].name = NULL;
  962. }
  963. }
  964. }
  965. /* In multi-codec scenario, check if codecs are enabled for this platform */
  966. for (i = 0; i < card->num_links; i++) {
  967. codecs_enabled = 0;
  968. if (dai_link[i].num_codecs > 1) {
  969. for (j = 0; j < dai_link[i].num_codecs; j++) {
  970. if (!dai_link[i].codecs[j].of_node)
  971. continue;
  972. np = dai_link[i].codecs[j].of_node;
  973. if (!of_device_is_available(np)) {
  974. dev_err(cdev, "%s: codec is disabled: %s\n",
  975. __func__,
  976. np->full_name);
  977. dai_link[i].codecs[j].of_node = NULL;
  978. continue;
  979. }
  980. codecs_enabled++;
  981. }
  982. if (codecs_enabled > 0 &&
  983. codecs_enabled < dai_link[i].num_codecs) {
  984. codecs_comp = devm_kzalloc(cdev,
  985. sizeof(struct snd_soc_dai_link_component)
  986. * codecs_enabled, GFP_KERNEL);
  987. if (!codecs_comp) {
  988. dev_err(cdev, "%s: %s dailink codec component alloc failed\n",
  989. __func__, dai_link[i].name);
  990. ret = -ENOMEM;
  991. goto err;
  992. }
  993. index = 0;
  994. for (j = 0; j < dai_link[i].num_codecs; j++) {
  995. if(dai_link[i].codecs[j].of_node) {
  996. codecs_comp[index].of_node =
  997. dai_link[i].codecs[j].of_node;
  998. codecs_comp[index].dai_name =
  999. dai_link[i].codecs[j].dai_name;
  1000. codecs_comp[index].name = NULL;
  1001. index++;
  1002. }
  1003. }
  1004. dai_link[i].codecs = codecs_comp;
  1005. dai_link[i].num_codecs = codecs_enabled;
  1006. }
  1007. }
  1008. }
  1009. err:
  1010. return ret;
  1011. }
  1012. static int msm_audrx_stub_init(struct snd_soc_pcm_runtime *rtd)
  1013. {
  1014. return 0;
  1015. }
  1016. static int msm_snd_stub_hw_params(struct snd_pcm_substream *substream,
  1017. struct snd_pcm_hw_params *params)
  1018. {
  1019. return 0;
  1020. }
  1021. static struct snd_soc_ops msm_stub_be_ops = {
  1022. .hw_params = msm_snd_stub_hw_params,
  1023. };
  1024. struct snd_soc_card snd_soc_card_stub_msm = {
  1025. .name = "waipio-stub-snd-card",
  1026. };
  1027. static struct snd_soc_dai_link msm_stub_be_dai_links[] = {
  1028. /* Backend DAI Links */
  1029. {
  1030. .name = LPASS_BE_PRI_AUXPCM_RX,
  1031. .stream_name = LPASS_BE_PRI_AUXPCM_RX,
  1032. .playback_only = 1,
  1033. .init = &msm_audrx_stub_init,
  1034. .ignore_pmdown_time = 1,
  1035. .ignore_suspend = 1,
  1036. .ops = &msm_stub_be_ops,
  1037. SND_SOC_DAILINK_REG(auxpcm_rx),
  1038. },
  1039. {
  1040. .name = LPASS_BE_PRI_AUXPCM_TX,
  1041. .stream_name = LPASS_BE_PRI_AUXPCM_TX,
  1042. .capture_only = 1,
  1043. .ignore_suspend = 1,
  1044. .ops = &msm_stub_be_ops,
  1045. SND_SOC_DAILINK_REG(auxpcm_tx),
  1046. },
  1047. };
  1048. static struct snd_soc_dai_link msm_stub_dai_links[
  1049. ARRAY_SIZE(msm_stub_be_dai_links)];
  1050. static const struct of_device_id waipio_asoc_machine_of_match[] = {
  1051. { .compatible = "qcom,waipio-asoc-snd",
  1052. .data = "codec"},
  1053. { .compatible = "qcom,waipio-asoc-snd-stub",
  1054. .data = "stub_codec"},
  1055. {},
  1056. };
  1057. static int msm_snd_card_late_probe(struct snd_soc_card *card)
  1058. {
  1059. struct snd_soc_component *component = NULL;
  1060. struct snd_soc_pcm_runtime *rtd;
  1061. int ret = 0;
  1062. void *mbhc_calibration;
  1063. rtd = snd_soc_get_pcm_runtime(card, &card->dai_link[0]);
  1064. if (!rtd) {
  1065. dev_err(card->dev,
  1066. "%s: snd_soc_get_pcm_runtime for %s failed!\n",
  1067. __func__, card->dai_link[0]);
  1068. return -EINVAL;
  1069. }
  1070. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  1071. if (!component) {
  1072. pr_err("%s component is NULL\n", __func__);
  1073. return -EINVAL;
  1074. }
  1075. mbhc_calibration = def_wcd_mbhc_cal();
  1076. if (!mbhc_calibration)
  1077. return -ENOMEM;
  1078. wcd_mbhc_cfg.calibration = mbhc_calibration;
  1079. ret = wcd938x_mbhc_hs_detect(component, &wcd_mbhc_cfg);
  1080. if (ret) {
  1081. dev_err(component->dev, "%s: mbhc hs detect failed, err:%d\n",
  1082. __func__, ret);
  1083. goto err_hs_detect;
  1084. }
  1085. return 0;
  1086. err_hs_detect:
  1087. kfree(mbhc_calibration);
  1088. return ret;
  1089. }
  1090. static struct snd_soc_card *populate_snd_card_dailinks(struct device *dev, int wsa_max_devs)
  1091. {
  1092. struct snd_soc_card *card = NULL;
  1093. struct snd_soc_dai_link *dailink = NULL;
  1094. int total_links = 0;
  1095. int rc = 0;
  1096. u32 val = 0;
  1097. const struct of_device_id *match;
  1098. match = of_match_node(waipio_asoc_machine_of_match, dev->of_node);
  1099. if (!match) {
  1100. dev_err(dev, "%s: No DT match found for sound card\n",
  1101. __func__);
  1102. return NULL;
  1103. }
  1104. if (!strcmp(match->data, "codec")) {
  1105. card = &snd_soc_card_waipio_msm;
  1106. /* late probe uses dai link at index '0' to get wcd component */
  1107. memcpy(msm_waipio_dai_links + total_links,
  1108. msm_rx_tx_cdc_dma_be_dai_links,
  1109. sizeof(msm_rx_tx_cdc_dma_be_dai_links));
  1110. total_links +=
  1111. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links);
  1112. switch (wsa_max_devs) {
  1113. case MONO_SPEAKER:
  1114. case STEREO_SPEAKER:
  1115. memcpy(msm_waipio_dai_links + total_links,
  1116. msm_wsa_cdc_dma_be_dai_links,
  1117. sizeof(msm_wsa_cdc_dma_be_dai_links));
  1118. total_links += ARRAY_SIZE(msm_wsa_cdc_dma_be_dai_links);
  1119. break;
  1120. case QUAD_SPEAKER:
  1121. memcpy(msm_waipio_dai_links + total_links,
  1122. msm_wsa2_cdc_dma_be_dai_links,
  1123. sizeof(msm_wsa2_cdc_dma_be_dai_links));
  1124. total_links += ARRAY_SIZE(msm_wsa2_cdc_dma_be_dai_links);
  1125. memcpy(msm_waipio_dai_links + total_links,
  1126. msm_wsa_wsa2_cdc_dma_be_dai_links,
  1127. sizeof(msm_wsa_wsa2_cdc_dma_be_dai_links));
  1128. total_links += ARRAY_SIZE(msm_wsa_wsa2_cdc_dma_be_dai_links);
  1129. break;
  1130. default:
  1131. dev_dbg(dev,
  1132. "%s: Unexpected number of WSAs, wsa_max_devs: %d\n",
  1133. __func__, wsa_max_devs);
  1134. break;
  1135. }
  1136. memcpy(msm_waipio_dai_links + total_links,
  1137. msm_va_cdc_dma_be_dai_links,
  1138. sizeof(msm_va_cdc_dma_be_dai_links));
  1139. total_links += ARRAY_SIZE(msm_va_cdc_dma_be_dai_links);
  1140. memcpy(msm_waipio_dai_links + total_links,
  1141. msm_common_be_dai_links,
  1142. sizeof(msm_common_be_dai_links));
  1143. total_links += ARRAY_SIZE(msm_common_be_dai_links);
  1144. rc = of_property_read_u32(dev->of_node,
  1145. "qcom,mi2s-audio-intf", &val);
  1146. if (!rc && val) {
  1147. memcpy(msm_waipio_dai_links + total_links,
  1148. msm_mi2s_dai_links,
  1149. sizeof(msm_mi2s_dai_links));
  1150. total_links += ARRAY_SIZE(msm_mi2s_dai_links);
  1151. }
  1152. rc = of_property_read_u32(dev->of_node,
  1153. "qcom,tdm-audio-intf", &val);
  1154. if (!rc && val) {
  1155. memcpy(msm_waipio_dai_links + total_links,
  1156. msm_tdm_dai_links,
  1157. sizeof(msm_tdm_dai_links));
  1158. total_links += ARRAY_SIZE(msm_tdm_dai_links);
  1159. }
  1160. rc = of_property_read_u32(dev->of_node,
  1161. "qcom,ext-disp-audio-rx", &val);
  1162. if (!rc && val) {
  1163. dev_dbg(dev, "%s(): ext disp audio support present\n",
  1164. __func__);
  1165. memcpy(msm_waipio_dai_links + total_links,
  1166. ext_disp_be_dai_link,
  1167. sizeof(ext_disp_be_dai_link));
  1168. total_links += ARRAY_SIZE(ext_disp_be_dai_link);
  1169. }
  1170. rc = of_property_read_u32(dev->of_node, "qcom,wcn-bt", &val);
  1171. if (!rc && val) {
  1172. dev_dbg(dev, "%s(): WCN BT support present\n",
  1173. __func__);
  1174. memcpy(msm_waipio_dai_links + total_links,
  1175. msm_wcn_be_dai_links,
  1176. sizeof(msm_wcn_be_dai_links));
  1177. total_links += ARRAY_SIZE(msm_wcn_be_dai_links);
  1178. }
  1179. dailink = msm_waipio_dai_links;
  1180. } else if(!strcmp(match->data, "stub_codec")) {
  1181. card = &snd_soc_card_stub_msm;
  1182. memcpy(msm_stub_dai_links,
  1183. msm_stub_be_dai_links,
  1184. sizeof(msm_stub_be_dai_links));
  1185. dailink = msm_stub_dai_links;
  1186. total_links = ARRAY_SIZE(msm_stub_be_dai_links);
  1187. }
  1188. if (card) {
  1189. card->dai_link = dailink;
  1190. card->num_links = total_links;
  1191. card->late_probe = msm_snd_card_late_probe;
  1192. }
  1193. return card;
  1194. }
  1195. static int msm_int_wsa_init(struct snd_soc_pcm_runtime *rtd)
  1196. {
  1197. u8 spkleft_ports[WSA883X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  1198. u8 spkright_ports[WSA883X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  1199. u8 spkleft_port_types[WSA883X_MAX_SWR_PORTS] = {SPKR_L, SPKR_L_COMP,
  1200. SPKR_L_BOOST, SPKR_L_VI};
  1201. u8 spkright_port_types[WSA883X_MAX_SWR_PORTS] = {SPKR_R, SPKR_R_COMP,
  1202. SPKR_R_BOOST, SPKR_R_VI};
  1203. unsigned int ch_rate[WSA883X_MAX_SWR_PORTS] = {SWR_CLK_RATE_2P4MHZ, SWR_CLK_RATE_0P6MHZ,
  1204. SWR_CLK_RATE_0P3MHZ, SWR_CLK_RATE_1P2MHZ};
  1205. unsigned int ch_mask[WSA883X_MAX_SWR_PORTS] = {0x1, 0xF, 0x3, 0x3};
  1206. struct snd_soc_component *component = NULL;
  1207. struct msm_asoc_mach_data *pdata =
  1208. snd_soc_card_get_drvdata(rtd->card);
  1209. if (pdata->wsa_max_devs > 0) {
  1210. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.1");
  1211. if (!component) {
  1212. pr_err("%s: wsa-codec.1 component is NULL\n", __func__);
  1213. return -EINVAL;
  1214. }
  1215. wsa883x_set_channel_map(component, &spkleft_ports[0],
  1216. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  1217. &ch_rate[0], &spkleft_port_types[0]);
  1218. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1219. component);
  1220. }
  1221. /* If current platform has more than one WSA */
  1222. if (pdata->wsa_max_devs > 1) {
  1223. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.2");
  1224. if (!component) {
  1225. pr_err("%s: wsa-codec.2 component is NULL\n", __func__);
  1226. return -EINVAL;
  1227. }
  1228. wsa883x_set_channel_map(component, &spkright_ports[0],
  1229. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  1230. &ch_rate[0], &spkright_port_types[0]);
  1231. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1232. component);
  1233. }
  1234. if (pdata->wsa_max_devs > 2) {
  1235. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.3");
  1236. if (!component) {
  1237. pr_err("%s: wsa-codec.3 component is NULL\n", __func__);
  1238. return -EINVAL;
  1239. }
  1240. wsa883x_set_channel_map(component, &spkleft_ports[0],
  1241. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  1242. &ch_rate[0], &spkleft_port_types[0]);
  1243. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1244. component);
  1245. }
  1246. if (pdata->wsa_max_devs > 3) {
  1247. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.4");
  1248. if (!component) {
  1249. pr_err("%s: wsa-codec.4 component is NULL\n", __func__);
  1250. return -EINVAL;
  1251. }
  1252. wsa883x_set_channel_map(component, &spkright_ports[0],
  1253. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  1254. &ch_rate[0], &spkright_port_types[0]);
  1255. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1256. component);
  1257. }
  1258. msm_common_dai_link_init(rtd);
  1259. return 0;
  1260. }
  1261. static int msm_rx_tx_codec_init(struct snd_soc_pcm_runtime *rtd)
  1262. {
  1263. int codec_variant = -1;
  1264. struct snd_soc_component *component = NULL;
  1265. struct snd_soc_component *lpass_cdc_component = NULL;
  1266. struct snd_soc_dapm_context *dapm = NULL;
  1267. struct snd_info_entry *entry = NULL;
  1268. struct snd_card *card = NULL;
  1269. struct msm_asoc_mach_data *pdata =
  1270. snd_soc_card_get_drvdata(rtd->card);
  1271. int ret = 0;
  1272. lpass_cdc_component = snd_soc_rtdcom_lookup(rtd, "lpass-cdc");
  1273. if (!lpass_cdc_component) {
  1274. pr_err("%s: could not find component for lpass-cdc\n",
  1275. __func__);
  1276. return ret;
  1277. }
  1278. dapm = snd_soc_component_get_dapm(lpass_cdc_component);
  1279. snd_soc_dapm_new_controls(dapm, msm_int_dapm_widgets,
  1280. ARRAY_SIZE(msm_int_dapm_widgets));
  1281. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic0");
  1282. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic1");
  1283. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic2");
  1284. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic3");
  1285. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic4");
  1286. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic5");
  1287. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic6");
  1288. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic7");
  1289. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic1");
  1290. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic2");
  1291. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic3");
  1292. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic4");
  1293. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic5");
  1294. lpass_cdc_set_port_map(lpass_cdc_component, ARRAY_SIZE(sm_port_map), sm_port_map);
  1295. card = rtd->card->snd_card;
  1296. if (!pdata->codec_root) {
  1297. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1298. card->proc_root);
  1299. if (!entry) {
  1300. pr_debug("%s: Cannot create codecs module entry\n",
  1301. __func__);
  1302. return ret;
  1303. }
  1304. pdata->codec_root = entry;
  1305. }
  1306. lpass_cdc_info_create_codec_entry(pdata->codec_root, lpass_cdc_component);
  1307. lpass_cdc_register_wake_irq(lpass_cdc_component, false);
  1308. if (pdata->wcd_disabled)
  1309. goto done;
  1310. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  1311. if (!component) {
  1312. pr_err("%s could not find component for %s\n",
  1313. __func__, WCD938X_DRV_NAME);
  1314. return -EINVAL;
  1315. }
  1316. dapm = snd_soc_component_get_dapm(component);
  1317. card = component->card->snd_card;
  1318. snd_soc_dapm_ignore_suspend(dapm, "EAR");
  1319. snd_soc_dapm_ignore_suspend(dapm, "AUX");
  1320. snd_soc_dapm_ignore_suspend(dapm, "HPHL");
  1321. snd_soc_dapm_ignore_suspend(dapm, "HPHR");
  1322. snd_soc_dapm_ignore_suspend(dapm, "AMIC1");
  1323. snd_soc_dapm_ignore_suspend(dapm, "AMIC2");
  1324. snd_soc_dapm_ignore_suspend(dapm, "AMIC3");
  1325. snd_soc_dapm_ignore_suspend(dapm, "AMIC4");
  1326. snd_soc_dapm_sync(dapm);
  1327. pdata = snd_soc_card_get_drvdata(component->card);
  1328. if (!pdata->codec_root) {
  1329. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1330. card->proc_root);
  1331. if (!entry) {
  1332. dev_dbg(component->dev, "%s: Cannot create codecs module entry\n",
  1333. __func__);
  1334. return 0;
  1335. }
  1336. pdata->codec_root = entry;
  1337. }
  1338. wcd938x_info_create_codec_entry(pdata->codec_root, component);
  1339. codec_variant = wcd938x_get_codec_variant(component);
  1340. dev_dbg(component->dev, "%s: variant %d\n", __func__, codec_variant);
  1341. if (codec_variant == WCD9385)
  1342. ret = lpass_cdc_rx_set_fir_capability(lpass_cdc_component, true);
  1343. else
  1344. ret = lpass_cdc_rx_set_fir_capability(lpass_cdc_component, false);
  1345. if (ret < 0) {
  1346. dev_err(component->dev, "%s: set fir capability failed: %d\n",
  1347. __func__, ret);
  1348. return ret;
  1349. }
  1350. done:
  1351. codec_reg_done = true;
  1352. msm_common_dai_link_init(rtd);
  1353. return ret;
  1354. }
  1355. static int waipio_ssr_enable(struct device *dev, void *data)
  1356. {
  1357. struct platform_device *pdev = to_platform_device(dev);
  1358. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1359. int ret = 0;
  1360. if (!card) {
  1361. dev_err(dev, "%s: card is NULL\n", __func__);
  1362. ret = -EINVAL;
  1363. goto err;
  1364. }
  1365. if (!strcmp(card->name, "waipio-stub-snd-card")) {
  1366. /* TODO */
  1367. dev_dbg(dev, "%s: TODO \n", __func__);
  1368. }
  1369. snd_card_notify_user(1);
  1370. dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
  1371. err:
  1372. return ret;
  1373. }
  1374. static void waipio_ssr_disable(struct device *dev, void *data)
  1375. {
  1376. struct platform_device *pdev = to_platform_device(dev);
  1377. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1378. if (!card) {
  1379. dev_err(dev, "%s: card is NULL\n", __func__);
  1380. return;
  1381. }
  1382. dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
  1383. snd_card_notify_user(0);
  1384. if (!strcmp(card->name, "waipio-stub-snd-card")) {
  1385. /* TODO */
  1386. dev_dbg(dev, "%s: TODO \n", __func__);
  1387. }
  1388. }
  1389. static const struct snd_event_ops waipio_ssr_ops = {
  1390. .enable = waipio_ssr_enable,
  1391. .disable = waipio_ssr_disable,
  1392. };
  1393. static int msm_audio_ssr_compare(struct device *dev, void *data)
  1394. {
  1395. struct device_node *node = data;
  1396. dev_dbg(dev, "%s: dev->of_node = 0x%p, node = 0x%p\n",
  1397. __func__, dev->of_node, node);
  1398. return (dev->of_node && dev->of_node == node);
  1399. }
  1400. static int msm_audio_ssr_register(struct device *dev)
  1401. {
  1402. struct device_node *np = dev->of_node;
  1403. struct snd_event_clients *ssr_clients = NULL;
  1404. struct device_node *node = NULL;
  1405. int ret = 0;
  1406. int i = 0;
  1407. for (i = 0; ; i++) {
  1408. node = of_parse_phandle(np, "qcom,msm_audio_ssr_devs", i);
  1409. if (!node)
  1410. break;
  1411. snd_event_mstr_add_client(&ssr_clients,
  1412. msm_audio_ssr_compare, node);
  1413. }
  1414. ret = snd_event_master_register(dev, &waipio_ssr_ops,
  1415. ssr_clients, NULL);
  1416. if (!ret)
  1417. snd_event_notify(dev, SND_EVENT_UP);
  1418. return ret;
  1419. }
  1420. struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card)
  1421. {
  1422. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1423. if (!pdata)
  1424. return NULL;
  1425. return pdata->common_pdata;
  1426. }
  1427. void msm_common_set_pdata(struct snd_soc_card *card,
  1428. struct msm_common_pdata *common_pdata)
  1429. {
  1430. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1431. if (!pdata)
  1432. return;
  1433. pdata->common_pdata = common_pdata;
  1434. }
  1435. static int msm_asoc_machine_probe(struct platform_device *pdev)
  1436. {
  1437. struct snd_soc_card *card = NULL;
  1438. struct msm_asoc_mach_data *pdata = NULL;
  1439. int ret = 0;
  1440. struct clk *lpass_audio_hw_vote = NULL;
  1441. if (!pdev->dev.of_node) {
  1442. dev_err(&pdev->dev, "%s: No platform supplied from device tree\n", __func__);
  1443. return -EINVAL;
  1444. }
  1445. pdata = devm_kzalloc(&pdev->dev,
  1446. sizeof(struct msm_asoc_mach_data), GFP_KERNEL);
  1447. if (!pdata)
  1448. return -ENOMEM;
  1449. of_property_read_u32(pdev->dev.of_node,
  1450. "qcom,wcd-disabled",
  1451. &pdata->wcd_disabled);
  1452. /* Get maximum WSA device count for this platform */
  1453. ret = of_property_read_u32(pdev->dev.of_node,
  1454. "qcom,wsa-max-devs", &pdata->wsa_max_devs);
  1455. if (ret) {
  1456. dev_info(&pdev->dev,
  1457. "%s: wsa-max-devs property missing in DT %s, ret = %d\n",
  1458. __func__, pdev->dev.of_node->full_name, ret);
  1459. pdata->wsa_max_devs = 0;
  1460. }
  1461. card = populate_snd_card_dailinks(&pdev->dev, pdata->wsa_max_devs);
  1462. if (!card) {
  1463. dev_err(&pdev->dev, "%s: Card uninitialized\n", __func__);
  1464. ret = -EINVAL;
  1465. goto err;
  1466. }
  1467. card->dev = &pdev->dev;
  1468. platform_set_drvdata(pdev, card);
  1469. snd_soc_card_set_drvdata(card, pdata);
  1470. ret = snd_soc_of_parse_card_name(card, "qcom,model");
  1471. if (ret) {
  1472. dev_err(&pdev->dev, "%s: parse card name failed, err:%d\n",
  1473. __func__, ret);
  1474. goto err;
  1475. }
  1476. ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing");
  1477. if (ret) {
  1478. dev_err(&pdev->dev, "%s: parse audio routing failed, err:%d\n",
  1479. __func__, ret);
  1480. goto err;
  1481. }
  1482. ret = msm_populate_dai_link_component_of_node(card);
  1483. if (ret) {
  1484. ret = -EPROBE_DEFER;
  1485. goto err;
  1486. }
  1487. ret = devm_snd_soc_register_card(&pdev->dev, card);
  1488. if (ret == -EPROBE_DEFER) {
  1489. if (codec_reg_done)
  1490. ret = -EINVAL;
  1491. goto err;
  1492. } else if (ret) {
  1493. dev_err(&pdev->dev, "%s: snd_soc_register_card failed (%d)\n",
  1494. __func__, ret);
  1495. goto err;
  1496. }
  1497. dev_info(&pdev->dev, "%s: Sound card %s registered\n",
  1498. __func__, card->name);
  1499. if (wcd_mbhc_cfg.enable_usbc_analog)
  1500. wcd_mbhc_cfg.swap_gnd_mic = msm_usbc_swap_gnd_mic;
  1501. pdata->fsa_handle = of_parse_phandle(pdev->dev.of_node,
  1502. "fsa4480-i2c-handle", 0);
  1503. if (!pdata->fsa_handle)
  1504. dev_dbg(&pdev->dev, "property %s not detected in node %s\n",
  1505. "fsa4480-i2c-handle", pdev->dev.of_node->full_name);
  1506. pdata->dmic01_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1507. "qcom,cdc-dmic01-gpios",
  1508. 0);
  1509. pdata->dmic23_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1510. "qcom,cdc-dmic23-gpios",
  1511. 0);
  1512. pdata->dmic45_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1513. "qcom,cdc-dmic45-gpios",
  1514. 0);
  1515. if (pdata->dmic01_gpio_p)
  1516. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic01_gpio_p, false);
  1517. if (pdata->dmic23_gpio_p)
  1518. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic23_gpio_p, false);
  1519. if (pdata->dmic45_gpio_p)
  1520. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic45_gpio_p, false);
  1521. msm_common_snd_init(pdev, card);
  1522. /* Register LPASS audio hw vote */
  1523. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1524. if (IS_ERR(lpass_audio_hw_vote)) {
  1525. ret = PTR_ERR(lpass_audio_hw_vote);
  1526. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1527. __func__, "lpass_audio_hw_vote", ret);
  1528. lpass_audio_hw_vote = NULL;
  1529. ret = 0;
  1530. }
  1531. pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1532. pdata->core_audio_vote_count = 0;
  1533. ret = msm_audio_ssr_register(&pdev->dev);
  1534. if (ret)
  1535. pr_err("%s: Registration with SND event FWK failed ret = %d\n",
  1536. __func__, ret);
  1537. is_initial_boot = true;
  1538. /* Add QoS request for audio tasks */
  1539. msm_audio_add_qos_request();
  1540. return 0;
  1541. err:
  1542. devm_kfree(&pdev->dev, pdata);
  1543. return ret;
  1544. }
  1545. static int msm_asoc_machine_remove(struct platform_device *pdev)
  1546. {
  1547. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1548. struct msm_asoc_mach_data *pdata = NULL;
  1549. struct msm_common_pdata *common_pdata = NULL;
  1550. if (card)
  1551. pdata = snd_soc_card_get_drvdata(card);
  1552. if (pdata)
  1553. common_pdata = pdata->common_pdata;
  1554. msm_common_snd_deinit(common_pdata);
  1555. snd_event_master_deregister(&pdev->dev);
  1556. snd_soc_unregister_card(card);
  1557. msm_audio_remove_qos_request();
  1558. return 0;
  1559. }
  1560. static struct platform_driver waipio_asoc_machine_driver = {
  1561. .driver = {
  1562. .name = DRV_NAME,
  1563. .owner = THIS_MODULE,
  1564. .pm = &snd_soc_pm_ops,
  1565. .of_match_table = waipio_asoc_machine_of_match,
  1566. .suppress_bind_attrs = true,
  1567. },
  1568. .probe = msm_asoc_machine_probe,
  1569. .remove = msm_asoc_machine_remove,
  1570. };
  1571. static int __init msm_asoc_machine_init(void)
  1572. {
  1573. snd_card_sysfs_init();
  1574. return platform_driver_register(&waipio_asoc_machine_driver);
  1575. }
  1576. module_init(msm_asoc_machine_init);
  1577. static void __exit msm_asoc_machine_exit(void)
  1578. {
  1579. platform_driver_unregister(&waipio_asoc_machine_driver);
  1580. }
  1581. module_exit(msm_asoc_machine_exit);
  1582. MODULE_SOFTDEP("pre: bt_fm_slim");
  1583. MODULE_DESCRIPTION("ALSA SoC msm");
  1584. MODULE_LICENSE("GPL v2");
  1585. MODULE_ALIAS("platform:" DRV_NAME);
  1586. MODULE_DEVICE_TABLE(of, waipio_asoc_machine_of_match);