kalama.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  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_RX_0_VIRT,
  531. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_0_VIRT,
  532. .playback_only = 1,
  533. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  534. SND_SOC_DPCM_TRIGGER_POST},
  535. .ignore_pmdown_time = 1,
  536. .ignore_suspend = 1,
  537. .ops = &msm_common_be_ops,
  538. SND_SOC_DAILINK_REG(wsa_dma_rx0),
  539. .init = &msm_int_wsa_init,
  540. },
  541. };
  542. static struct snd_soc_dai_link msm_wsa2_cdc_dma_be_dai_links[] = {
  543. /* WSA2 CDC DMA Backend DAI Links */
  544. {
  545. .name = LPASS_BE_WSA2_CDC_DMA_RX_0,
  546. .stream_name = LPASS_BE_WSA2_CDC_DMA_RX_0,
  547. .playback_only = 1,
  548. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  549. SND_SOC_DPCM_TRIGGER_POST},
  550. .ignore_pmdown_time = 1,
  551. .ignore_suspend = 1,
  552. .ops = &msm_common_be_ops,
  553. SND_SOC_DAILINK_REG(wsa2_dma_rx0),
  554. },
  555. {
  556. .name = LPASS_BE_WSA2_CDC_DMA_RX_1,
  557. .stream_name = LPASS_BE_WSA2_CDC_DMA_RX_1,
  558. .playback_only = 1,
  559. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  560. SND_SOC_DPCM_TRIGGER_POST},
  561. .ignore_pmdown_time = 1,
  562. .ignore_suspend = 1,
  563. .ops = &msm_common_be_ops,
  564. SND_SOC_DAILINK_REG(wsa2_dma_rx1),
  565. },
  566. {
  567. .name = LPASS_BE_WSA2_CDC_DMA_TX_1,
  568. .stream_name = LPASS_BE_WSA2_CDC_DMA_TX_1,
  569. .capture_only = 1,
  570. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  571. SND_SOC_DPCM_TRIGGER_POST},
  572. .ignore_suspend = 1,
  573. .ops = &msm_common_be_ops,
  574. SND_SOC_DAILINK_REG(wsa2_dma_tx1),
  575. },
  576. {
  577. .name = LPASS_BE_WSA2_CDC_DMA_TX_0,
  578. .stream_name = LPASS_BE_WSA2_CDC_DMA_TX_0,
  579. .capture_only = 1,
  580. .ignore_suspend = 1,
  581. .ops = &msm_common_be_ops,
  582. /* .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, */
  583. SND_SOC_DAILINK_REG(wsa2_vi_feedback),
  584. },
  585. };
  586. static struct snd_soc_dai_link msm_wsa_wsa2_cdc_dma_be_dai_links[] = {
  587. /* WSA CDC DMA Backend DAI Links */
  588. {
  589. .name = LPASS_BE_WSA_CDC_DMA_RX_0,
  590. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_0,
  591. .playback_only = 1,
  592. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  593. SND_SOC_DPCM_TRIGGER_POST},
  594. .ignore_pmdown_time = 1,
  595. .ignore_suspend = 1,
  596. .ops = &msm_common_be_ops,
  597. SND_SOC_DAILINK_REG(wsa_wsa2_dma_rx0),
  598. .init = &msm_int_wsa_init,
  599. },
  600. {
  601. .name = LPASS_BE_WSA_CDC_DMA_RX_1,
  602. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_1,
  603. .playback_only = 1,
  604. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  605. SND_SOC_DPCM_TRIGGER_POST},
  606. .ignore_pmdown_time = 1,
  607. .ignore_suspend = 1,
  608. .ops = &msm_common_be_ops,
  609. SND_SOC_DAILINK_REG(wsa_wsa2_dma_rx1),
  610. },
  611. {
  612. .name = LPASS_BE_WSA_CDC_DMA_TX_1,
  613. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_1,
  614. .capture_only = 1,
  615. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  616. SND_SOC_DPCM_TRIGGER_POST},
  617. .ignore_suspend = 1,
  618. .ops = &msm_common_be_ops,
  619. SND_SOC_DAILINK_REG(wsa_wsa2_dma_tx1),
  620. },
  621. {
  622. .name = LPASS_BE_WSA_CDC_DMA_TX_0,
  623. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_0,
  624. .capture_only = 1,
  625. .ignore_suspend = 1,
  626. .ops = &msm_common_be_ops,
  627. /* .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, */
  628. SND_SOC_DAILINK_REG(wsa_wsa2_vi_feedback),
  629. },
  630. };
  631. static struct snd_soc_dai_link msm_rx_tx_cdc_dma_be_dai_links[] = {
  632. /* RX CDC DMA Backend DAI Links */
  633. {
  634. .name = LPASS_BE_RX_CDC_DMA_RX_0,
  635. .stream_name = LPASS_BE_RX_CDC_DMA_RX_0,
  636. .playback_only = 1,
  637. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  638. SND_SOC_DPCM_TRIGGER_POST},
  639. .ignore_pmdown_time = 1,
  640. .ignore_suspend = 1,
  641. .ops = &msm_common_be_ops,
  642. SND_SOC_DAILINK_REG(rx_dma_rx0),
  643. .init = &msm_rx_tx_codec_init,
  644. },
  645. {
  646. .name = LPASS_BE_RX_CDC_DMA_RX_1,
  647. .stream_name = LPASS_BE_RX_CDC_DMA_RX_1,
  648. .playback_only = 1,
  649. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  650. SND_SOC_DPCM_TRIGGER_POST},
  651. .ignore_pmdown_time = 1,
  652. .ignore_suspend = 1,
  653. .ops = &msm_common_be_ops,
  654. SND_SOC_DAILINK_REG(rx_dma_rx1),
  655. },
  656. {
  657. .name = LPASS_BE_RX_CDC_DMA_RX_2,
  658. .stream_name = LPASS_BE_RX_CDC_DMA_RX_2,
  659. .playback_only = 1,
  660. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  661. SND_SOC_DPCM_TRIGGER_POST},
  662. .ignore_pmdown_time = 1,
  663. .ignore_suspend = 1,
  664. .ops = &msm_common_be_ops,
  665. SND_SOC_DAILINK_REG(rx_dma_rx2),
  666. },
  667. {
  668. .name = LPASS_BE_RX_CDC_DMA_RX_3,
  669. .stream_name = LPASS_BE_RX_CDC_DMA_RX_3,
  670. .playback_only = 1,
  671. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  672. SND_SOC_DPCM_TRIGGER_POST},
  673. .ignore_pmdown_time = 1,
  674. .ignore_suspend = 1,
  675. .ops = &msm_common_be_ops,
  676. SND_SOC_DAILINK_REG(rx_dma_rx3),
  677. },
  678. {
  679. .name = LPASS_BE_RX_CDC_DMA_RX_5,
  680. .stream_name = LPASS_BE_RX_CDC_DMA_RX_5,
  681. .playback_only = 1,
  682. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  683. SND_SOC_DPCM_TRIGGER_POST},
  684. .ignore_pmdown_time = 1,
  685. .ignore_suspend = 1,
  686. .ops = &msm_common_be_ops,
  687. SND_SOC_DAILINK_REG(rx_dma_rx5),
  688. },
  689. {
  690. .name = LPASS_BE_RX_CDC_DMA_RX_6,
  691. .stream_name = LPASS_BE_RX_CDC_DMA_RX_6,
  692. .playback_only = 1,
  693. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  694. SND_SOC_DPCM_TRIGGER_POST},
  695. .ignore_pmdown_time = 1,
  696. .ignore_suspend = 1,
  697. .ops = &msm_common_be_ops,
  698. SND_SOC_DAILINK_REG(rx_dma_rx6),
  699. },
  700. /* TX CDC DMA Backend DAI Links */
  701. {
  702. .name = LPASS_BE_TX_CDC_DMA_TX_3,
  703. .stream_name = LPASS_BE_TX_CDC_DMA_TX_3,
  704. .capture_only = 1,
  705. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  706. SND_SOC_DPCM_TRIGGER_POST},
  707. .ignore_suspend = 1,
  708. .ops = &msm_common_be_ops,
  709. SND_SOC_DAILINK_REG(tx_dma_tx3),
  710. },
  711. {
  712. .name = LPASS_BE_TX_CDC_DMA_TX_4,
  713. .stream_name = LPASS_BE_TX_CDC_DMA_TX_4,
  714. .capture_only = 1,
  715. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  716. SND_SOC_DPCM_TRIGGER_POST},
  717. .ignore_suspend = 1,
  718. .ops = &msm_common_be_ops,
  719. SND_SOC_DAILINK_REG(tx_dma_tx4),
  720. },
  721. };
  722. static struct snd_soc_dai_link msm_va_cdc_dma_be_dai_links[] = {
  723. {
  724. .name = LPASS_BE_VA_CDC_DMA_TX_0,
  725. .stream_name = LPASS_BE_VA_CDC_DMA_TX_0,
  726. .capture_only = 1,
  727. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  728. SND_SOC_DPCM_TRIGGER_POST},
  729. .ignore_suspend = 1,
  730. .ops = &msm_common_be_ops,
  731. SND_SOC_DAILINK_REG(va_dma_tx0),
  732. },
  733. {
  734. .name = LPASS_BE_VA_CDC_DMA_TX_1,
  735. .stream_name = LPASS_BE_VA_CDC_DMA_TX_1,
  736. .capture_only = 1,
  737. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  738. SND_SOC_DPCM_TRIGGER_POST},
  739. .ignore_suspend = 1,
  740. .ops = &msm_common_be_ops,
  741. SND_SOC_DAILINK_REG(va_dma_tx1),
  742. },
  743. {
  744. .name = LPASS_BE_VA_CDC_DMA_TX_2,
  745. .stream_name = LPASS_BE_VA_CDC_DMA_TX_2,
  746. .capture_only = 1,
  747. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  748. SND_SOC_DPCM_TRIGGER_POST},
  749. .ignore_suspend = 1,
  750. .ops = &msm_common_be_ops,
  751. SND_SOC_DAILINK_REG(va_dma_tx2),
  752. },
  753. };
  754. /*
  755. * I2S interface pinctrl mapping
  756. * ------------------------------------
  757. * Primary - pri_mi2s
  758. * Secondary - lpi_i2s3
  759. * Tertiary - tert_mi2s
  760. * Quaternary - quat_mi2s (lpi_i2s0)
  761. * Quinary - lpi_i2s1
  762. * Senary - lpi_i2s2
  763. * ------------------------------------
  764. */
  765. static struct snd_soc_dai_link msm_mi2s_dai_links[] = {
  766. {
  767. .name = LPASS_BE_PRI_MI2S_RX,
  768. .stream_name = LPASS_BE_PRI_MI2S_RX,
  769. .playback_only = 1,
  770. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  771. SND_SOC_DPCM_TRIGGER_POST},
  772. .ops = &msm_common_be_ops,
  773. .ignore_suspend = 1,
  774. .ignore_pmdown_time = 1,
  775. SND_SOC_DAILINK_REG(pri_mi2s_rx),
  776. },
  777. {
  778. .name = LPASS_BE_PRI_MI2S_TX,
  779. .stream_name = LPASS_BE_PRI_MI2S_TX,
  780. .capture_only = 1,
  781. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  782. SND_SOC_DPCM_TRIGGER_POST},
  783. .ops = &msm_common_be_ops,
  784. .ignore_suspend = 1,
  785. SND_SOC_DAILINK_REG(pri_mi2s_tx),
  786. },
  787. {
  788. .name = LPASS_BE_SEC_MI2S_RX,
  789. .stream_name = LPASS_BE_SEC_MI2S_RX,
  790. .playback_only = 1,
  791. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  792. SND_SOC_DPCM_TRIGGER_POST},
  793. .ops = &msm_common_be_ops,
  794. .ignore_suspend = 1,
  795. .ignore_pmdown_time = 1,
  796. SND_SOC_DAILINK_REG(sec_mi2s_rx),
  797. },
  798. {
  799. .name = LPASS_BE_SEC_MI2S_TX,
  800. .stream_name = LPASS_BE_SEC_MI2S_TX,
  801. .capture_only = 1,
  802. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  803. SND_SOC_DPCM_TRIGGER_POST},
  804. .ops = &msm_common_be_ops,
  805. .ignore_suspend = 1,
  806. SND_SOC_DAILINK_REG(sec_mi2s_tx),
  807. },
  808. {
  809. .name = LPASS_BE_TERT_MI2S_RX,
  810. .stream_name = LPASS_BE_TERT_MI2S_RX,
  811. .playback_only = 1,
  812. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  813. SND_SOC_DPCM_TRIGGER_POST},
  814. .ops = &msm_common_be_ops,
  815. .ignore_suspend = 1,
  816. .ignore_pmdown_time = 1,
  817. SND_SOC_DAILINK_REG(tert_mi2s_rx),
  818. },
  819. {
  820. .name = LPASS_BE_TERT_MI2S_TX,
  821. .stream_name = LPASS_BE_TERT_MI2S_TX,
  822. .capture_only = 1,
  823. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  824. SND_SOC_DPCM_TRIGGER_POST},
  825. .ops = &msm_common_be_ops,
  826. .ignore_suspend = 1,
  827. SND_SOC_DAILINK_REG(tert_mi2s_tx),
  828. },
  829. {
  830. .name = LPASS_BE_QUAT_MI2S_RX,
  831. .stream_name = LPASS_BE_QUAT_MI2S_RX,
  832. .playback_only = 1,
  833. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  834. SND_SOC_DPCM_TRIGGER_POST},
  835. .ops = &msm_common_be_ops,
  836. .ignore_suspend = 1,
  837. .ignore_pmdown_time = 1,
  838. SND_SOC_DAILINK_REG(quat_mi2s_rx),
  839. },
  840. {
  841. .name = LPASS_BE_QUAT_MI2S_TX,
  842. .stream_name = LPASS_BE_QUAT_MI2S_TX,
  843. .capture_only = 1,
  844. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  845. SND_SOC_DPCM_TRIGGER_POST},
  846. .ops = &msm_common_be_ops,
  847. .ignore_suspend = 1,
  848. SND_SOC_DAILINK_REG(quat_mi2s_tx),
  849. },
  850. {
  851. .name = LPASS_BE_QUIN_MI2S_RX,
  852. .stream_name = LPASS_BE_QUIN_MI2S_RX,
  853. .playback_only = 1,
  854. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  855. SND_SOC_DPCM_TRIGGER_POST},
  856. .ops = &msm_common_be_ops,
  857. .ignore_suspend = 1,
  858. .ignore_pmdown_time = 1,
  859. SND_SOC_DAILINK_REG(quin_mi2s_rx),
  860. },
  861. {
  862. .name = LPASS_BE_QUIN_MI2S_TX,
  863. .stream_name = LPASS_BE_QUIN_MI2S_TX,
  864. .capture_only = 1,
  865. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  866. SND_SOC_DPCM_TRIGGER_POST},
  867. .ops = &msm_common_be_ops,
  868. .ignore_suspend = 1,
  869. SND_SOC_DAILINK_REG(quin_mi2s_tx),
  870. },
  871. {
  872. .name = LPASS_BE_SEN_MI2S_RX,
  873. .stream_name = LPASS_BE_SEN_MI2S_RX,
  874. .playback_only = 1,
  875. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  876. SND_SOC_DPCM_TRIGGER_POST},
  877. .ops = &msm_common_be_ops,
  878. .ignore_suspend = 1,
  879. .ignore_pmdown_time = 1,
  880. SND_SOC_DAILINK_REG(sen_mi2s_rx),
  881. },
  882. {
  883. .name = LPASS_BE_SEN_MI2S_TX,
  884. .stream_name = LPASS_BE_SEN_MI2S_TX,
  885. .capture_only = 1,
  886. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  887. SND_SOC_DPCM_TRIGGER_POST},
  888. .ops = &msm_common_be_ops,
  889. .ignore_suspend = 1,
  890. SND_SOC_DAILINK_REG(sen_mi2s_tx),
  891. },
  892. {
  893. .name = LPASS_BE_SEP_MI2S_RX,
  894. .stream_name = LPASS_BE_SEP_MI2S_RX,
  895. .playback_only = 1,
  896. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  897. SND_SOC_DPCM_TRIGGER_POST},
  898. .ops = &msm_common_be_ops,
  899. .ignore_suspend = 1,
  900. .ignore_pmdown_time = 1,
  901. SND_SOC_DAILINK_REG(sep_mi2s_rx),
  902. },
  903. {
  904. .name = LPASS_BE_SEP_MI2S_TX,
  905. .stream_name = LPASS_BE_SEP_MI2S_TX,
  906. .capture_only = 1,
  907. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  908. SND_SOC_DPCM_TRIGGER_POST},
  909. .ops = &msm_common_be_ops,
  910. .ignore_suspend = 1,
  911. SND_SOC_DAILINK_REG(sep_mi2s_tx),
  912. },
  913. };
  914. static struct snd_soc_dai_link msm_tdm_dai_links[] = {
  915. {
  916. .name = LPASS_BE_PRI_TDM_RX_0,
  917. .stream_name = LPASS_BE_PRI_TDM_RX_0,
  918. .playback_only = 1,
  919. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  920. SND_SOC_DPCM_TRIGGER_POST},
  921. .ops = &msm_common_be_ops,
  922. .ignore_suspend = 1,
  923. .ignore_pmdown_time = 1,
  924. SND_SOC_DAILINK_REG(pri_tdm_rx_0),
  925. },
  926. {
  927. .name = LPASS_BE_PRI_TDM_TX_0,
  928. .stream_name = LPASS_BE_PRI_TDM_TX_0,
  929. .capture_only = 1,
  930. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  931. SND_SOC_DPCM_TRIGGER_POST},
  932. .ops = &msm_common_be_ops,
  933. .ignore_suspend = 1,
  934. SND_SOC_DAILINK_REG(pri_tdm_tx_0),
  935. },
  936. {
  937. .name = LPASS_BE_SEC_TDM_RX_0,
  938. .stream_name = LPASS_BE_SEC_TDM_RX_0,
  939. .playback_only = 1,
  940. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  941. SND_SOC_DPCM_TRIGGER_POST},
  942. .ops = &msm_common_be_ops,
  943. .ignore_suspend = 1,
  944. .ignore_pmdown_time = 1,
  945. SND_SOC_DAILINK_REG(sec_tdm_rx_0),
  946. },
  947. {
  948. .name = LPASS_BE_SEC_TDM_TX_0,
  949. .stream_name = LPASS_BE_SEC_TDM_TX_0,
  950. .capture_only = 1,
  951. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  952. SND_SOC_DPCM_TRIGGER_POST},
  953. .ops = &msm_common_be_ops,
  954. .ignore_suspend = 1,
  955. SND_SOC_DAILINK_REG(sec_tdm_tx_0),
  956. },
  957. {
  958. .name = LPASS_BE_TERT_TDM_RX_0,
  959. .stream_name = LPASS_BE_TERT_TDM_RX_0,
  960. .playback_only = 1,
  961. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  962. SND_SOC_DPCM_TRIGGER_POST},
  963. .ops = &msm_common_be_ops,
  964. .ignore_suspend = 1,
  965. .ignore_pmdown_time = 1,
  966. SND_SOC_DAILINK_REG(tert_tdm_rx_0),
  967. },
  968. {
  969. .name = LPASS_BE_TERT_TDM_TX_0,
  970. .stream_name = LPASS_BE_TERT_TDM_TX_0,
  971. .capture_only = 1,
  972. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  973. SND_SOC_DPCM_TRIGGER_POST},
  974. .ops = &msm_common_be_ops,
  975. .ignore_suspend = 1,
  976. SND_SOC_DAILINK_REG(tert_tdm_tx_0),
  977. },
  978. {
  979. .name = LPASS_BE_QUAT_TDM_RX_0,
  980. .stream_name = LPASS_BE_QUAT_TDM_RX_0,
  981. .playback_only = 1,
  982. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  983. SND_SOC_DPCM_TRIGGER_POST},
  984. .ops = &msm_common_be_ops,
  985. .ignore_suspend = 1,
  986. .ignore_pmdown_time = 1,
  987. SND_SOC_DAILINK_REG(quat_tdm_rx_0),
  988. },
  989. {
  990. .name = LPASS_BE_QUAT_TDM_TX_0,
  991. .stream_name = LPASS_BE_QUAT_TDM_TX_0,
  992. .capture_only = 1,
  993. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  994. SND_SOC_DPCM_TRIGGER_POST},
  995. .ops = &msm_common_be_ops,
  996. .ignore_suspend = 1,
  997. SND_SOC_DAILINK_REG(quat_tdm_tx_0),
  998. },
  999. {
  1000. .name = LPASS_BE_QUIN_TDM_RX_0,
  1001. .stream_name = LPASS_BE_QUIN_TDM_RX_0,
  1002. .playback_only = 1,
  1003. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1004. SND_SOC_DPCM_TRIGGER_POST},
  1005. .ops = &msm_common_be_ops,
  1006. .ignore_suspend = 1,
  1007. .ignore_pmdown_time = 1,
  1008. SND_SOC_DAILINK_REG(quin_tdm_rx_0),
  1009. },
  1010. {
  1011. .name = LPASS_BE_QUIN_TDM_TX_0,
  1012. .stream_name = LPASS_BE_QUIN_TDM_TX_0,
  1013. .capture_only = 1,
  1014. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1015. SND_SOC_DPCM_TRIGGER_POST},
  1016. .ops = &msm_common_be_ops,
  1017. .ignore_suspend = 1,
  1018. SND_SOC_DAILINK_REG(quin_tdm_tx_0),
  1019. },
  1020. {
  1021. .name = LPASS_BE_SEN_TDM_RX_0,
  1022. .stream_name = LPASS_BE_SEN_TDM_RX_0,
  1023. .playback_only = 1,
  1024. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1025. SND_SOC_DPCM_TRIGGER_POST},
  1026. .ops = &msm_common_be_ops,
  1027. .ignore_suspend = 1,
  1028. .ignore_pmdown_time = 1,
  1029. SND_SOC_DAILINK_REG(sen_tdm_rx_0),
  1030. },
  1031. {
  1032. .name = LPASS_BE_SEN_TDM_TX_0,
  1033. .stream_name = LPASS_BE_SEN_TDM_TX_0,
  1034. .capture_only = 1,
  1035. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1036. SND_SOC_DPCM_TRIGGER_POST},
  1037. .ops = &msm_common_be_ops,
  1038. .ignore_suspend = 1,
  1039. SND_SOC_DAILINK_REG(sen_tdm_tx_0),
  1040. },
  1041. {
  1042. .name = LPASS_BE_SEP_TDM_RX_0,
  1043. .stream_name = LPASS_BE_SEP_TDM_RX_0,
  1044. .playback_only = 1,
  1045. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1046. SND_SOC_DPCM_TRIGGER_POST},
  1047. .ops = &msm_common_be_ops,
  1048. .ignore_suspend = 1,
  1049. .ignore_pmdown_time = 1,
  1050. SND_SOC_DAILINK_REG(sep_tdm_rx_0),
  1051. },
  1052. {
  1053. .name = LPASS_BE_SEP_TDM_TX_0,
  1054. .stream_name = LPASS_BE_SEP_TDM_TX_0,
  1055. .capture_only = 1,
  1056. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  1057. SND_SOC_DPCM_TRIGGER_POST},
  1058. .ops = &msm_common_be_ops,
  1059. .ignore_suspend = 1,
  1060. SND_SOC_DAILINK_REG(sep_tdm_tx_0),
  1061. },
  1062. };
  1063. static struct snd_soc_dai_link msm_kalama_dai_links[
  1064. ARRAY_SIZE(msm_wsa_cdc_dma_be_dai_links) +
  1065. ARRAY_SIZE(msm_wsa2_cdc_dma_be_dai_links) +
  1066. ARRAY_SIZE(msm_wsa_wsa2_cdc_dma_be_dai_links) +
  1067. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links) +
  1068. ARRAY_SIZE(msm_va_cdc_dma_be_dai_links) +
  1069. ARRAY_SIZE(ext_disp_be_dai_link) +
  1070. ARRAY_SIZE(msm_common_be_dai_links) +
  1071. ARRAY_SIZE(msm_wcn_be_dai_links) +
  1072. ARRAY_SIZE(msm_mi2s_dai_links) +
  1073. ARRAY_SIZE(msm_tdm_dai_links)];
  1074. static int msm_populate_dai_link_component_of_node(
  1075. struct snd_soc_card *card)
  1076. {
  1077. int i, j, index, ret = 0;
  1078. struct device *cdev = card->dev;
  1079. struct snd_soc_dai_link *dai_link = card->dai_link;
  1080. struct device_node *np = NULL;
  1081. int codecs_enabled = 0;
  1082. struct snd_soc_dai_link_component *codecs_comp = NULL;
  1083. if (!cdev) {
  1084. dev_err_ratelimited(cdev, "%s: Sound card device memory NULL\n", __func__);
  1085. return -ENODEV;
  1086. }
  1087. for (i = 0; i < card->num_links; i++) {
  1088. if (dai_link[i].init == NULL)
  1089. dai_link[i].init = &msm_common_dai_link_init;
  1090. /* populate codec_of_node for snd card dai links */
  1091. if (dai_link[i].num_codecs > 0) {
  1092. for (j = 0; j < dai_link[i].num_codecs; j++) {
  1093. if (dai_link[i].codecs[j].of_node ||
  1094. !dai_link[i].codecs[j].name)
  1095. continue;
  1096. index = of_property_match_string(cdev->of_node,
  1097. "asoc-codec-names",
  1098. dai_link[i].codecs[j].name);
  1099. if (index < 0)
  1100. continue;
  1101. np = of_parse_phandle(cdev->of_node,
  1102. "asoc-codec",
  1103. index);
  1104. if (!np) {
  1105. dev_err_ratelimited(cdev,
  1106. "%s: retrieving phandle for codec %s failed\n",
  1107. __func__,
  1108. dai_link[i].codecs[j].name);
  1109. ret = -ENODEV;
  1110. goto err;
  1111. }
  1112. dai_link[i].codecs[j].of_node = np;
  1113. dai_link[i].codecs[j].name = NULL;
  1114. }
  1115. }
  1116. }
  1117. /* In multi-codec scenario, check if codecs are enabled for this platform */
  1118. for (i = 0; i < card->num_links; i++) {
  1119. codecs_enabled = 0;
  1120. if (dai_link[i].num_codecs > 1) {
  1121. for (j = 0; j < dai_link[i].num_codecs; j++) {
  1122. if (!dai_link[i].codecs[j].of_node)
  1123. continue;
  1124. np = dai_link[i].codecs[j].of_node;
  1125. if (!of_device_is_available(np)) {
  1126. dev_err_ratelimited(cdev, "%s: codec is disabled: %s\n",
  1127. __func__,
  1128. np->full_name);
  1129. dai_link[i].codecs[j].of_node = NULL;
  1130. continue;
  1131. }
  1132. codecs_enabled++;
  1133. }
  1134. if (codecs_enabled > 0 &&
  1135. codecs_enabled < dai_link[i].num_codecs) {
  1136. codecs_comp = devm_kzalloc(cdev,
  1137. sizeof(struct snd_soc_dai_link_component)
  1138. * codecs_enabled, GFP_KERNEL);
  1139. if (!codecs_comp) {
  1140. dev_err_ratelimited(cdev,
  1141. "%s: %s dailink codec component alloc failed\n",
  1142. __func__, dai_link[i].name);
  1143. ret = -ENOMEM;
  1144. goto err;
  1145. }
  1146. index = 0;
  1147. for (j = 0; j < dai_link[i].num_codecs; j++) {
  1148. if(dai_link[i].codecs[j].of_node) {
  1149. codecs_comp[index].of_node =
  1150. dai_link[i].codecs[j].of_node;
  1151. codecs_comp[index].dai_name =
  1152. dai_link[i].codecs[j].dai_name;
  1153. codecs_comp[index].name = NULL;
  1154. index++;
  1155. }
  1156. }
  1157. dai_link[i].codecs = codecs_comp;
  1158. dai_link[i].num_codecs = codecs_enabled;
  1159. }
  1160. }
  1161. }
  1162. err:
  1163. return ret;
  1164. }
  1165. static int msm_audrx_stub_init(struct snd_soc_pcm_runtime *rtd)
  1166. {
  1167. return 0;
  1168. }
  1169. static int msm_snd_stub_hw_params(struct snd_pcm_substream *substream,
  1170. struct snd_pcm_hw_params *params)
  1171. {
  1172. return 0;
  1173. }
  1174. static struct snd_soc_ops msm_stub_be_ops = {
  1175. .hw_params = msm_snd_stub_hw_params,
  1176. };
  1177. struct snd_soc_card snd_soc_card_stub_msm = {
  1178. .name = "kalama-stub-snd-card",
  1179. };
  1180. static struct snd_soc_dai_link msm_stub_be_dai_links[] = {
  1181. /* Backend DAI Links */
  1182. {
  1183. .name = LPASS_BE_PRI_AUXPCM_RX,
  1184. .stream_name = LPASS_BE_PRI_AUXPCM_RX,
  1185. .playback_only = 1,
  1186. .init = &msm_audrx_stub_init,
  1187. .ignore_pmdown_time = 1,
  1188. .ignore_suspend = 1,
  1189. .ops = &msm_stub_be_ops,
  1190. SND_SOC_DAILINK_REG(auxpcm_rx),
  1191. },
  1192. {
  1193. .name = LPASS_BE_PRI_AUXPCM_TX,
  1194. .stream_name = LPASS_BE_PRI_AUXPCM_TX,
  1195. .capture_only = 1,
  1196. .ignore_suspend = 1,
  1197. .ops = &msm_stub_be_ops,
  1198. SND_SOC_DAILINK_REG(auxpcm_tx),
  1199. },
  1200. };
  1201. static struct snd_soc_dai_link msm_stub_dai_links[
  1202. ARRAY_SIZE(msm_stub_be_dai_links)];
  1203. static const struct of_device_id kalama_asoc_machine_of_match[] = {
  1204. { .compatible = "qcom,kalama-asoc-snd",
  1205. .data = "codec"},
  1206. { .compatible = "qcom,kalama-asoc-snd-stub",
  1207. .data = "stub_codec"},
  1208. {},
  1209. };
  1210. static int msm_snd_card_late_probe(struct snd_soc_card *card)
  1211. {
  1212. struct snd_soc_component *component = NULL;
  1213. struct snd_soc_pcm_runtime *rtd;
  1214. int ret = 0;
  1215. void *mbhc_calibration;
  1216. rtd = snd_soc_get_pcm_runtime(card, &card->dai_link[0]);
  1217. if (!rtd) {
  1218. dev_err(card->dev,
  1219. "%s: snd_soc_get_pcm_runtime for %s failed!\n",
  1220. __func__, card->dai_link[0]);
  1221. return -EINVAL;
  1222. }
  1223. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  1224. if (!component) {
  1225. pr_err("%s component is NULL\n", __func__);
  1226. return -EINVAL;
  1227. }
  1228. mbhc_calibration = def_wcd_mbhc_cal();
  1229. if (!mbhc_calibration)
  1230. return -ENOMEM;
  1231. wcd_mbhc_cfg.calibration = mbhc_calibration;
  1232. ret = wcd938x_mbhc_hs_detect(component, &wcd_mbhc_cfg);
  1233. if (ret) {
  1234. dev_err(component->dev, "%s: mbhc hs detect failed, err:%d\n",
  1235. __func__, ret);
  1236. goto err_hs_detect;
  1237. }
  1238. return 0;
  1239. err_hs_detect:
  1240. kfree(mbhc_calibration);
  1241. return ret;
  1242. }
  1243. static struct snd_soc_card *populate_snd_card_dailinks(struct device *dev, int wsa_max_devs)
  1244. {
  1245. struct snd_soc_card *card = NULL;
  1246. struct snd_soc_dai_link *dailink = NULL;
  1247. int total_links = 0;
  1248. int rc = 0;
  1249. u32 val = 0;
  1250. const struct of_device_id *match;
  1251. match = of_match_node(kalama_asoc_machine_of_match, dev->of_node);
  1252. if (!match) {
  1253. dev_err_ratelimited(dev, "%s: No DT match found for sound card\n",
  1254. __func__);
  1255. return NULL;
  1256. }
  1257. if (!strcmp(match->data, "codec")) {
  1258. card = &snd_soc_card_kalama_msm;
  1259. /* late probe uses dai link at index '0' to get wcd component */
  1260. memcpy(msm_kalama_dai_links + total_links,
  1261. msm_rx_tx_cdc_dma_be_dai_links,
  1262. sizeof(msm_rx_tx_cdc_dma_be_dai_links));
  1263. total_links +=
  1264. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links);
  1265. switch (wsa_max_devs) {
  1266. case MONO_SPEAKER:
  1267. case STEREO_SPEAKER:
  1268. memcpy(msm_kalama_dai_links + total_links,
  1269. msm_wsa_cdc_dma_be_dai_links,
  1270. sizeof(msm_wsa_cdc_dma_be_dai_links));
  1271. total_links += ARRAY_SIZE(msm_wsa_cdc_dma_be_dai_links);
  1272. break;
  1273. case QUAD_SPEAKER:
  1274. memcpy(msm_kalama_dai_links + total_links,
  1275. msm_wsa2_cdc_dma_be_dai_links,
  1276. sizeof(msm_wsa2_cdc_dma_be_dai_links));
  1277. total_links += ARRAY_SIZE(msm_wsa2_cdc_dma_be_dai_links);
  1278. memcpy(msm_kalama_dai_links + total_links,
  1279. msm_wsa_wsa2_cdc_dma_be_dai_links,
  1280. sizeof(msm_wsa_wsa2_cdc_dma_be_dai_links));
  1281. total_links += ARRAY_SIZE(msm_wsa_wsa2_cdc_dma_be_dai_links);
  1282. break;
  1283. default:
  1284. dev_dbg(dev,
  1285. "%s: Unexpected number of WSAs, wsa_max_devs: %d\n",
  1286. __func__, wsa_max_devs);
  1287. break;
  1288. }
  1289. memcpy(msm_kalama_dai_links + total_links,
  1290. msm_va_cdc_dma_be_dai_links,
  1291. sizeof(msm_va_cdc_dma_be_dai_links));
  1292. total_links += ARRAY_SIZE(msm_va_cdc_dma_be_dai_links);
  1293. memcpy(msm_kalama_dai_links + total_links,
  1294. msm_common_be_dai_links,
  1295. sizeof(msm_common_be_dai_links));
  1296. total_links += ARRAY_SIZE(msm_common_be_dai_links);
  1297. rc = of_property_read_u32(dev->of_node,
  1298. "qcom,mi2s-audio-intf", &val);
  1299. if (!rc && val) {
  1300. memcpy(msm_kalama_dai_links + total_links,
  1301. msm_mi2s_dai_links,
  1302. sizeof(msm_mi2s_dai_links));
  1303. total_links += ARRAY_SIZE(msm_mi2s_dai_links);
  1304. }
  1305. rc = of_property_read_u32(dev->of_node,
  1306. "qcom,tdm-audio-intf", &val);
  1307. if (!rc && val) {
  1308. memcpy(msm_kalama_dai_links + total_links,
  1309. msm_tdm_dai_links,
  1310. sizeof(msm_tdm_dai_links));
  1311. total_links += ARRAY_SIZE(msm_tdm_dai_links);
  1312. }
  1313. rc = of_property_read_u32(dev->of_node,
  1314. "qcom,ext-disp-audio-rx", &val);
  1315. if (!rc && val) {
  1316. dev_dbg(dev, "%s(): ext disp audio support present\n",
  1317. __func__);
  1318. memcpy(msm_kalama_dai_links + total_links,
  1319. ext_disp_be_dai_link,
  1320. sizeof(ext_disp_be_dai_link));
  1321. total_links += ARRAY_SIZE(ext_disp_be_dai_link);
  1322. }
  1323. rc = of_property_read_u32(dev->of_node, "qcom,wcn-bt", &val);
  1324. if (!rc && val) {
  1325. dev_dbg(dev, "%s(): WCN BT support present\n",
  1326. __func__);
  1327. memcpy(msm_kalama_dai_links + total_links,
  1328. msm_wcn_be_dai_links,
  1329. sizeof(msm_wcn_be_dai_links));
  1330. total_links += ARRAY_SIZE(msm_wcn_be_dai_links);
  1331. }
  1332. dailink = msm_kalama_dai_links;
  1333. } else if(!strcmp(match->data, "stub_codec")) {
  1334. card = &snd_soc_card_stub_msm;
  1335. memcpy(msm_stub_dai_links,
  1336. msm_stub_be_dai_links,
  1337. sizeof(msm_stub_be_dai_links));
  1338. dailink = msm_stub_dai_links;
  1339. total_links = ARRAY_SIZE(msm_stub_be_dai_links);
  1340. }
  1341. if (card) {
  1342. card->dai_link = dailink;
  1343. card->num_links = total_links;
  1344. if (!strcmp(match->data, "codec"))
  1345. card->late_probe = msm_snd_card_late_probe;
  1346. }
  1347. return card;
  1348. }
  1349. static int msm_int_wsa883x_init(struct snd_soc_pcm_runtime *rtd)
  1350. {
  1351. u8 spkleft_ports[WSA883X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  1352. u8 spkright_ports[WSA883X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  1353. u8 spkleft_port_types[WSA883X_MAX_SWR_PORTS] = {SPKR_L, SPKR_L_COMP,
  1354. SPKR_L_BOOST, SPKR_L_VI};
  1355. u8 spkright_port_types[WSA883X_MAX_SWR_PORTS] = {SPKR_R, SPKR_R_COMP,
  1356. SPKR_R_BOOST, SPKR_R_VI};
  1357. unsigned int ch_rate[WSA883X_MAX_SWR_PORTS] = {SWR_CLK_RATE_2P4MHZ, SWR_CLK_RATE_0P6MHZ,
  1358. SWR_CLK_RATE_0P3MHZ, SWR_CLK_RATE_1P2MHZ};
  1359. unsigned int ch_mask[WSA883X_MAX_SWR_PORTS] = {0x1, 0xF, 0x3, 0x3};
  1360. struct snd_soc_component *component = NULL;
  1361. struct msm_asoc_mach_data *pdata =
  1362. snd_soc_card_get_drvdata(rtd->card);
  1363. if (pdata->wsa_max_devs > 0) {
  1364. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.1");
  1365. if (!component) {
  1366. pr_err("%s: wsa-codec.1 component is NULL\n", __func__);
  1367. return -EINVAL;
  1368. }
  1369. wsa883x_set_channel_map(component, &spkleft_ports[0],
  1370. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  1371. &ch_rate[0], &spkleft_port_types[0]);
  1372. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1373. component);
  1374. }
  1375. /* If current platform has more than one WSA */
  1376. if (pdata->wsa_max_devs > 1) {
  1377. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.2");
  1378. if (!component) {
  1379. pr_err("%s: wsa-codec.2 component is NULL\n", __func__);
  1380. return -EINVAL;
  1381. }
  1382. wsa883x_set_channel_map(component, &spkright_ports[0],
  1383. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  1384. &ch_rate[0], &spkright_port_types[0]);
  1385. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1386. component);
  1387. }
  1388. if (pdata->wsa_max_devs > 2) {
  1389. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.3");
  1390. if (!component) {
  1391. pr_err("%s: wsa-codec.3 component is NULL\n", __func__);
  1392. return -EINVAL;
  1393. }
  1394. wsa883x_set_channel_map(component, &spkleft_ports[0],
  1395. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  1396. &ch_rate[0], &spkleft_port_types[0]);
  1397. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1398. component);
  1399. }
  1400. if (pdata->wsa_max_devs > 3) {
  1401. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.4");
  1402. if (!component) {
  1403. pr_err("%s: wsa-codec.4 component is NULL\n", __func__);
  1404. return -EINVAL;
  1405. }
  1406. wsa883x_set_channel_map(component, &spkright_ports[0],
  1407. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  1408. &ch_rate[0], &spkright_port_types[0]);
  1409. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1410. component);
  1411. }
  1412. msm_common_dai_link_init(rtd);
  1413. return 0;
  1414. }
  1415. static int msm_int_wsa884x_init(struct snd_soc_pcm_runtime *rtd)
  1416. {
  1417. u8 spkleft_ports[WSA884X_MAX_SWR_PORTS] = {0, 1, 2, 3, 4, 5};
  1418. u8 spkright_ports[WSA884X_MAX_SWR_PORTS] = {0, 1, 2, 3, 4, 5};
  1419. u8 spkleft_port_types[WSA884X_MAX_SWR_PORTS] = {SPKR_L, SPKR_L_COMP,
  1420. SPKR_L_BOOST, PBR, SPKR_L_VI, CPS};
  1421. u8 spkright_port_types[WSA884X_MAX_SWR_PORTS] = {SPKR_R, SPKR_R_COMP,
  1422. SPKR_R_BOOST, PBR, SPKR_R_VI, CPS};
  1423. unsigned int ch_rate[WSA884X_MAX_SWR_PORTS] = {SWR_CLK_RATE_2P4MHZ, SWR_CLK_RATE_0P6MHZ,
  1424. SWR_CLK_RATE_0P3MHZ, SWR_CLK_RATE_48KHZ,
  1425. SWR_CLK_RATE_1P2MHZ, SWR_CLK_RATE_24KHZ};
  1426. unsigned int ch_mask[WSA884X_MAX_SWR_PORTS] = {0x1, 0xF, 0x3, 0x1, 0x3, 0x3};
  1427. struct snd_soc_component *component = NULL;
  1428. struct msm_asoc_mach_data *pdata =
  1429. snd_soc_card_get_drvdata(rtd->card);
  1430. if (pdata->wsa_max_devs > 0) {
  1431. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.1");
  1432. if (!component) {
  1433. pr_err("%s: wsa-codec.1 component is NULL\n", __func__);
  1434. return -EINVAL;
  1435. }
  1436. wsa884x_set_channel_map(component, &spkleft_ports[0],
  1437. WSA884X_MAX_SWR_PORTS, &ch_mask[0],
  1438. &ch_rate[0], &spkleft_port_types[0]);
  1439. wsa884x_codec_info_create_codec_entry(pdata->codec_root,
  1440. component);
  1441. }
  1442. /* If current platform has more than one WSA */
  1443. if (pdata->wsa_max_devs > 1) {
  1444. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.2");
  1445. if (!component) {
  1446. pr_err("%s: wsa-codec.2 component is NULL\n", __func__);
  1447. return -EINVAL;
  1448. }
  1449. wsa884x_set_channel_map(component, &spkright_ports[0],
  1450. WSA884X_MAX_SWR_PORTS, &ch_mask[0],
  1451. &ch_rate[0], &spkright_port_types[0]);
  1452. wsa884x_codec_info_create_codec_entry(pdata->codec_root,
  1453. component);
  1454. }
  1455. if (pdata->wsa_max_devs > 2) {
  1456. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.3");
  1457. if (!component) {
  1458. pr_err("%s: wsa-codec.3 component is NULL\n", __func__);
  1459. return -EINVAL;
  1460. }
  1461. wsa884x_set_channel_map(component, &spkleft_ports[0],
  1462. WSA884X_MAX_SWR_PORTS, &ch_mask[0],
  1463. &ch_rate[0], &spkleft_port_types[0]);
  1464. wsa884x_codec_info_create_codec_entry(pdata->codec_root,
  1465. component);
  1466. }
  1467. if (pdata->wsa_max_devs > 3) {
  1468. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.4");
  1469. if (!component) {
  1470. pr_err("%s: wsa-codec.4 component is NULL\n", __func__);
  1471. return -EINVAL;
  1472. }
  1473. wsa884x_set_channel_map(component, &spkright_ports[0],
  1474. WSA884X_MAX_SWR_PORTS, &ch_mask[0],
  1475. &ch_rate[0], &spkright_port_types[0]);
  1476. wsa884x_codec_info_create_codec_entry(pdata->codec_root,
  1477. component);
  1478. }
  1479. msm_common_dai_link_init(rtd);
  1480. return 0;
  1481. }
  1482. static int msm_int_wsa_init(struct snd_soc_pcm_runtime *rtd)
  1483. {
  1484. if (strstr(rtd->card->name, "wsa883x"))
  1485. return msm_int_wsa883x_init(rtd);
  1486. return msm_int_wsa884x_init(rtd);
  1487. }
  1488. static int msm_rx_tx_codec_init(struct snd_soc_pcm_runtime *rtd)
  1489. {
  1490. int codec_variant = -1;
  1491. struct snd_soc_component *component = NULL;
  1492. struct snd_soc_component *lpass_cdc_component = NULL;
  1493. struct snd_soc_dapm_context *dapm = NULL;
  1494. struct snd_info_entry *entry = NULL;
  1495. struct snd_card *card = NULL;
  1496. struct msm_asoc_mach_data *pdata =
  1497. snd_soc_card_get_drvdata(rtd->card);
  1498. int ret = 0;
  1499. lpass_cdc_component = snd_soc_rtdcom_lookup(rtd, "lpass-cdc");
  1500. if (!lpass_cdc_component) {
  1501. pr_err("%s: could not find component for lpass-cdc\n",
  1502. __func__);
  1503. return ret;
  1504. }
  1505. dapm = snd_soc_component_get_dapm(lpass_cdc_component);
  1506. snd_soc_dapm_new_controls(dapm, msm_int_dapm_widgets,
  1507. ARRAY_SIZE(msm_int_dapm_widgets));
  1508. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic0");
  1509. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic1");
  1510. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic2");
  1511. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic3");
  1512. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic4");
  1513. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic5");
  1514. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic6");
  1515. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic7");
  1516. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic1");
  1517. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic2");
  1518. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic3");
  1519. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic4");
  1520. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic5");
  1521. lpass_cdc_set_port_map(lpass_cdc_component, ARRAY_SIZE(sm_port_map), sm_port_map);
  1522. card = rtd->card->snd_card;
  1523. if (!pdata->codec_root) {
  1524. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1525. card->proc_root);
  1526. if (!entry) {
  1527. pr_debug("%s: Cannot create codecs module entry\n",
  1528. __func__);
  1529. return ret;
  1530. }
  1531. pdata->codec_root = entry;
  1532. }
  1533. lpass_cdc_info_create_codec_entry(pdata->codec_root, lpass_cdc_component);
  1534. lpass_cdc_register_wake_irq(lpass_cdc_component, false);
  1535. if (pdata->wcd_disabled)
  1536. goto done;
  1537. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  1538. if (!component) {
  1539. pr_err("%s could not find component for %s\n",
  1540. __func__, WCD938X_DRV_NAME);
  1541. return -EINVAL;
  1542. }
  1543. dapm = snd_soc_component_get_dapm(component);
  1544. card = component->card->snd_card;
  1545. snd_soc_dapm_ignore_suspend(dapm, "EAR");
  1546. snd_soc_dapm_ignore_suspend(dapm, "AUX");
  1547. snd_soc_dapm_ignore_suspend(dapm, "HPHL");
  1548. snd_soc_dapm_ignore_suspend(dapm, "HPHR");
  1549. snd_soc_dapm_ignore_suspend(dapm, "AMIC1");
  1550. snd_soc_dapm_ignore_suspend(dapm, "AMIC2");
  1551. snd_soc_dapm_ignore_suspend(dapm, "AMIC3");
  1552. snd_soc_dapm_ignore_suspend(dapm, "AMIC4");
  1553. snd_soc_dapm_sync(dapm);
  1554. pdata = snd_soc_card_get_drvdata(component->card);
  1555. if (!pdata->codec_root) {
  1556. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1557. card->proc_root);
  1558. if (!entry) {
  1559. dev_dbg(component->dev, "%s: Cannot create codecs module entry\n",
  1560. __func__);
  1561. return 0;
  1562. }
  1563. pdata->codec_root = entry;
  1564. }
  1565. wcd938x_info_create_codec_entry(pdata->codec_root, component);
  1566. codec_variant = wcd938x_get_codec_variant(component);
  1567. dev_dbg(component->dev, "%s: variant %d\n", __func__, codec_variant);
  1568. if (codec_variant == WCD9385)
  1569. ret = lpass_cdc_rx_set_fir_capability(lpass_cdc_component, true);
  1570. else
  1571. ret = lpass_cdc_rx_set_fir_capability(lpass_cdc_component, false);
  1572. if (ret < 0) {
  1573. dev_err_ratelimited(component->dev, "%s: set fir capability failed: %d\n",
  1574. __func__, ret);
  1575. return ret;
  1576. }
  1577. done:
  1578. codec_reg_done = true;
  1579. msm_common_dai_link_init(rtd);
  1580. return ret;
  1581. }
  1582. static int kalama_ssr_enable(struct device *dev, void *data)
  1583. {
  1584. struct platform_device *pdev = to_platform_device(dev);
  1585. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1586. struct snd_soc_pcm_runtime *rtd = NULL, *rtd_wcd = NULL, *rtd_wsa = NULL;
  1587. struct msm_asoc_mach_data *pdata = NULL;
  1588. int ret = 0;
  1589. if (!card) {
  1590. dev_err_ratelimited(dev, "%s: card is NULL\n", __func__);
  1591. ret = -EINVAL;
  1592. goto err;
  1593. }
  1594. if (!strcmp(card->name, "kalama-stub-snd-card")) {
  1595. /* TODO */
  1596. dev_dbg(dev, "%s: TODO \n", __func__);
  1597. }
  1598. snd_card_notify_user(SND_CARD_STATUS_ONLINE);
  1599. dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
  1600. pdata = snd_soc_card_get_drvdata(card);
  1601. if (!pdata) {
  1602. dev_dbg(dev, "%s: pdata is NULL \n", __func__);
  1603. goto err;
  1604. }
  1605. rtd_wcd = snd_soc_get_pcm_runtime(card, &card->dai_link[0]);
  1606. if (!rtd_wcd) {
  1607. dev_dbg(dev,
  1608. "%s: snd_soc_get_pcm_runtime for %s failed!\n",
  1609. __func__, card->dai_link[0]);
  1610. }
  1611. if (pdata->wsa_max_devs > 0) {
  1612. rtd_wsa = snd_soc_get_pcm_runtime(card,
  1613. &card->dai_link[ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links)]);
  1614. if (!rtd_wsa) {
  1615. dev_dbg(dev,
  1616. "%s: snd_soc_get_pcm_runtime for %s failed!\n",
  1617. __func__, card->dai_link[ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links)]);
  1618. }
  1619. }
  1620. /* set UPD configuration */
  1621. if(!pdata->upd_config.backend_used) {
  1622. dev_dbg(dev,
  1623. "%s: upd- backend_used is NULL\n", __func__);
  1624. goto err;
  1625. }
  1626. if (!strcmp(pdata->upd_config.backend_used, "wsa")) {
  1627. if (!rtd_wsa)
  1628. goto err;
  1629. else
  1630. rtd = rtd_wsa;
  1631. } else if(!strcmp(pdata->upd_config.backend_used, "wcd")) {
  1632. if (!rtd_wcd &&!pdata->wcd_disabled)
  1633. goto err;
  1634. else
  1635. rtd = rtd_wcd;
  1636. } else {
  1637. dev_err_ratelimited(card->dev, "%s: Invalid backend to set UPD config\n",
  1638. __func__);
  1639. goto err;
  1640. }
  1641. msm_set_upd_config(rtd);
  1642. err:
  1643. return ret;
  1644. }
  1645. static void kalama_ssr_disable(struct device *dev, void *data)
  1646. {
  1647. struct platform_device *pdev = to_platform_device(dev);
  1648. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1649. if (!card) {
  1650. dev_err_ratelimited(dev, "%s: card is NULL\n", __func__);
  1651. return;
  1652. }
  1653. dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
  1654. snd_card_notify_user(SND_CARD_STATUS_OFFLINE);
  1655. if (!strcmp(card->name, "kalama-stub-snd-card")) {
  1656. /* TODO */
  1657. dev_dbg(dev, "%s: TODO \n", __func__);
  1658. }
  1659. }
  1660. static const struct snd_event_ops kalama_ssr_ops = {
  1661. .enable = kalama_ssr_enable,
  1662. .disable = kalama_ssr_disable,
  1663. };
  1664. static int msm_audio_ssr_compare(struct device *dev, void *data)
  1665. {
  1666. struct device_node *node = data;
  1667. dev_dbg(dev, "%s: dev->of_node = 0x%p, node = 0x%p\n",
  1668. __func__, dev->of_node, node);
  1669. return (dev->of_node && dev->of_node == node);
  1670. }
  1671. static int msm_audio_ssr_register(struct device *dev)
  1672. {
  1673. struct device_node *np = dev->of_node;
  1674. struct snd_event_clients *ssr_clients = NULL;
  1675. struct device_node *node = NULL;
  1676. int ret = 0;
  1677. int i = 0;
  1678. for (i = 0; ; i++) {
  1679. node = of_parse_phandle(np, "qcom,msm_audio_ssr_devs", i);
  1680. if (!node)
  1681. break;
  1682. snd_event_mstr_add_client(&ssr_clients,
  1683. msm_audio_ssr_compare, node);
  1684. }
  1685. ret = snd_event_master_register(dev, &kalama_ssr_ops,
  1686. ssr_clients, NULL);
  1687. if (!ret)
  1688. snd_event_notify(dev, SND_EVENT_UP);
  1689. return ret;
  1690. }
  1691. struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card)
  1692. {
  1693. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1694. if (!pdata)
  1695. return NULL;
  1696. return pdata->common_pdata;
  1697. }
  1698. void msm_common_set_pdata(struct snd_soc_card *card,
  1699. struct msm_common_pdata *common_pdata)
  1700. {
  1701. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1702. if (!pdata)
  1703. return;
  1704. pdata->common_pdata = common_pdata;
  1705. }
  1706. static int msm_asoc_machine_probe(struct platform_device *pdev)
  1707. {
  1708. struct snd_soc_card *card = NULL;
  1709. struct msm_asoc_mach_data *pdata = NULL;
  1710. int ret = 0;
  1711. struct clk *lpass_audio_hw_vote = NULL;
  1712. const struct of_device_id *match;
  1713. if (!pdev->dev.of_node) {
  1714. dev_err(&pdev->dev, "%s: No platform supplied from device tree\n", __func__);
  1715. return -EINVAL;
  1716. }
  1717. pdata = devm_kzalloc(&pdev->dev,
  1718. sizeof(struct msm_asoc_mach_data), GFP_KERNEL);
  1719. if (!pdata)
  1720. return -ENOMEM;
  1721. of_property_read_u32(pdev->dev.of_node,
  1722. "qcom,wcd-disabled",
  1723. &pdata->wcd_disabled);
  1724. /* Get maximum WSA device count for this platform */
  1725. ret = of_property_read_u32(pdev->dev.of_node,
  1726. "qcom,wsa-max-devs", &pdata->wsa_max_devs);
  1727. if (ret) {
  1728. dev_info(&pdev->dev,
  1729. "%s: wsa-max-devs property missing in DT %s, ret = %d\n",
  1730. __func__, pdev->dev.of_node->full_name, ret);
  1731. pdata->wsa_max_devs = 0;
  1732. }
  1733. card = populate_snd_card_dailinks(&pdev->dev, pdata->wsa_max_devs);
  1734. if (!card) {
  1735. dev_err(&pdev->dev, "%s: Card uninitialized\n", __func__);
  1736. ret = -EINVAL;
  1737. goto err;
  1738. }
  1739. match = of_match_node(kalama_asoc_machine_of_match, pdev->dev.of_node);
  1740. if (!match) {
  1741. dev_err(&pdev->dev, "%s: No DT match found for sound card\n",
  1742. __func__);
  1743. ret = -EINVAL;
  1744. goto err;
  1745. }
  1746. card->dev = &pdev->dev;
  1747. platform_set_drvdata(pdev, card);
  1748. snd_soc_card_set_drvdata(card, pdata);
  1749. ret = snd_soc_of_parse_card_name(card, "qcom,model");
  1750. if (ret) {
  1751. dev_err(&pdev->dev, "%s: parse card name failed, err:%d\n",
  1752. __func__, ret);
  1753. goto err;
  1754. }
  1755. if(!strcmp(match->data, "codec")) {
  1756. ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing");
  1757. if (ret) {
  1758. dev_err(&pdev->dev, "%s: parse audio routing failed, err:%d\n",
  1759. __func__, ret);
  1760. goto err;
  1761. }
  1762. }
  1763. ret = msm_populate_dai_link_component_of_node(card);
  1764. if (ret) {
  1765. ret = -EPROBE_DEFER;
  1766. goto err;
  1767. }
  1768. /* parse upd configuration */
  1769. msm_parse_upd_configuration(pdev, pdata);
  1770. ret = devm_snd_soc_register_card(&pdev->dev, card);
  1771. if (ret == -EPROBE_DEFER) {
  1772. if (codec_reg_done)
  1773. ret = -EINVAL;
  1774. goto err;
  1775. } else if (ret) {
  1776. dev_err(&pdev->dev, "%s: snd_soc_register_card failed (%d)\n",
  1777. __func__, ret);
  1778. goto err;
  1779. }
  1780. dev_info(&pdev->dev, "%s: Sound card %s registered\n",
  1781. __func__, card->name);
  1782. if (wcd_mbhc_cfg.enable_usbc_analog)
  1783. wcd_mbhc_cfg.swap_gnd_mic = msm_usbc_swap_gnd_mic;
  1784. pdata->fsa_handle = of_parse_phandle(pdev->dev.of_node,
  1785. "fsa4480-i2c-handle", 0);
  1786. if (!pdata->fsa_handle)
  1787. dev_dbg(&pdev->dev, "property %s not detected in node %s\n",
  1788. "fsa4480-i2c-handle", pdev->dev.of_node->full_name);
  1789. pdata->dmic01_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1790. "qcom,cdc-dmic01-gpios",
  1791. 0);
  1792. pdata->dmic23_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1793. "qcom,cdc-dmic23-gpios",
  1794. 0);
  1795. pdata->dmic45_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1796. "qcom,cdc-dmic45-gpios",
  1797. 0);
  1798. pdata->dmic67_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1799. "qcom,cdc-dmic67-gpios",
  1800. 0);
  1801. if (pdata->dmic01_gpio_p)
  1802. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic01_gpio_p, false);
  1803. if (pdata->dmic23_gpio_p)
  1804. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic23_gpio_p, false);
  1805. if (pdata->dmic45_gpio_p)
  1806. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic45_gpio_p, false);
  1807. if (pdata->dmic67_gpio_p)
  1808. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic67_gpio_p, false);
  1809. msm_common_snd_init(pdev, card);
  1810. /* Register LPASS audio hw vote */
  1811. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1812. if (IS_ERR(lpass_audio_hw_vote)) {
  1813. ret = PTR_ERR(lpass_audio_hw_vote);
  1814. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1815. __func__, "lpass_audio_hw_vote", ret);
  1816. lpass_audio_hw_vote = NULL;
  1817. ret = 0;
  1818. }
  1819. pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1820. pdata->core_audio_vote_count = 0;
  1821. ret = msm_audio_ssr_register(&pdev->dev);
  1822. if (ret)
  1823. pr_err("%s: Registration with SND event FWK failed ret = %d\n",
  1824. __func__, ret);
  1825. is_initial_boot = true;
  1826. /* change card status to ONLINE */
  1827. dev_dbg(&pdev->dev, "%s: setting snd_card to ONLINE\n", __func__);
  1828. snd_card_set_card_status(SND_CARD_STATUS_ONLINE);
  1829. return 0;
  1830. err:
  1831. devm_kfree(&pdev->dev, pdata);
  1832. return ret;
  1833. }
  1834. static int msm_asoc_machine_remove(struct platform_device *pdev)
  1835. {
  1836. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1837. struct msm_asoc_mach_data *pdata = NULL;
  1838. struct msm_common_pdata *common_pdata = NULL;
  1839. if (card)
  1840. pdata = snd_soc_card_get_drvdata(card);
  1841. if (pdata)
  1842. common_pdata = pdata->common_pdata;
  1843. msm_common_snd_deinit(common_pdata);
  1844. snd_event_master_deregister(&pdev->dev);
  1845. snd_soc_unregister_card(card);
  1846. return 0;
  1847. }
  1848. static struct platform_driver kalama_asoc_machine_driver = {
  1849. .driver = {
  1850. .name = DRV_NAME,
  1851. .owner = THIS_MODULE,
  1852. .pm = &snd_soc_pm_ops,
  1853. .of_match_table = kalama_asoc_machine_of_match,
  1854. .suppress_bind_attrs = true,
  1855. },
  1856. .probe = msm_asoc_machine_probe,
  1857. .remove = msm_asoc_machine_remove,
  1858. };
  1859. static int __init msm_asoc_machine_init(void)
  1860. {
  1861. snd_card_sysfs_init();
  1862. return platform_driver_register(&kalama_asoc_machine_driver);
  1863. }
  1864. module_init(msm_asoc_machine_init);
  1865. static void __exit msm_asoc_machine_exit(void)
  1866. {
  1867. platform_driver_unregister(&kalama_asoc_machine_driver);
  1868. }
  1869. module_exit(msm_asoc_machine_exit);
  1870. MODULE_SOFTDEP("pre: bt_fm_slim");
  1871. MODULE_DESCRIPTION("ALSA SoC msm");
  1872. MODULE_LICENSE("GPL v2");
  1873. MODULE_ALIAS("platform:" DRV_NAME);
  1874. MODULE_DEVICE_TABLE(of, kalama_asoc_machine_of_match);