pineapple.c 63 KB

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