pineapple.c 58 KB

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