kalama.c 57 KB

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