pineapple.c 59 KB

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