holi.c 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 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. //#include <linux/soc/qcom/fsa4480-i2c.h>
  17. #include <linux/pm_qos.h>
  18. #include <linux/nvmem-consumer.h>
  19. #include <sound/control.h>
  20. #include <sound/core.h>
  21. #include <sound/soc.h>
  22. #include <sound/soc-dapm.h>
  23. #include <sound/pcm.h>
  24. #include <sound/pcm_params.h>
  25. #include <sound/info.h>
  26. #include <soc/snd_event.h>
  27. #include <dsp/audio_prm.h>
  28. #include <soc/swr-common.h>
  29. #include <soc/soundwire.h>
  30. #include "device_event.h"
  31. #include "asoc/msm-cdc-pinctrl.h"
  32. #include "asoc/wcd-mbhc-v2.h"
  33. #include "codecs/wsa881x-analog.h"
  34. #include "codecs/wcd937x/wcd937x-mbhc.h"
  35. #include "codecs/wcd937x/wcd937x.h"
  36. #include "codecs/wcd938x/wcd938x-mbhc.h"
  37. #include "codecs/wcd938x/wcd938x.h"
  38. #include "codecs/bolero/bolero-cdc.h"
  39. #include <bindings/audio-codec-port-types.h>
  40. #include "holi-port-config.h"
  41. #include "msm-audio-defs.h"
  42. #include "msm_common.h"
  43. #include "msm_holi_dailink.h"
  44. #define DRV_NAME "holi-asoc-snd"
  45. #define __CHIPSET__ "HOLI "
  46. #define MSM_DAILINK_NAME(name) (__CHIPSET__#name)
  47. #define SAMPLING_RATE_8KHZ 8000
  48. #define SAMPLING_RATE_11P025KHZ 11025
  49. #define SAMPLING_RATE_16KHZ 16000
  50. #define SAMPLING_RATE_22P05KHZ 22050
  51. #define SAMPLING_RATE_32KHZ 32000
  52. #define SAMPLING_RATE_44P1KHZ 44100
  53. #define SAMPLING_RATE_48KHZ 48000
  54. #define SAMPLING_RATE_88P2KHZ 88200
  55. #define SAMPLING_RATE_96KHZ 96000
  56. #define SAMPLING_RATE_176P4KHZ 176400
  57. #define SAMPLING_RATE_192KHZ 192000
  58. #define SAMPLING_RATE_352P8KHZ 352800
  59. #define SAMPLING_RATE_384KHZ 384000
  60. #define IS_FRACTIONAL(x) \
  61. ((x == SAMPLING_RATE_11P025KHZ) || (x == SAMPLING_RATE_22P05KHZ) || \
  62. (x == SAMPLING_RATE_44P1KHZ) || (x == SAMPLING_RATE_88P2KHZ) || \
  63. (x == SAMPLING_RATE_176P4KHZ) || (x == SAMPLING_RATE_352P8KHZ))
  64. #define IS_MSM_INTERFACE_MI2S(x) \
  65. ((x == PRIM_MI2S) || (x == SEC_MI2S) || (x == TERT_MI2S))
  66. #define WCD9XXX_MBHC_DEF_RLOADS 5
  67. #define WCD9XXX_MBHC_DEF_BUTTONS 8
  68. #define CODEC_EXT_CLK_RATE 9600000
  69. #define ADSP_STATE_READY_TIMEOUT_MS 3000
  70. #define DEV_NAME_STR_LEN 32
  71. #define WCD_MBHC_HS_V_MAX 1600
  72. #define TDM_CHANNEL_MAX 8
  73. #define DEV_NAME_STR_LEN 32
  74. /* time in us to ensure LPM doesn't go in C3/C4 */
  75. #define MSM_LL_QOS_VALUE 300
  76. #define ADSP_STATE_READY_TIMEOUT_MS 3000
  77. #define WCN_CDC_SLIM_RX_CH_MAX 2
  78. #define WCN_CDC_SLIM_TX_CH_MAX 3
  79. #define WCN_CDC_SLIM_TX_CH_MAX_LITO 3
  80. enum {
  81. RX_PATH = 0,
  82. TX_PATH,
  83. MAX_PATH,
  84. };
  85. enum {
  86. TDM_0 = 0,
  87. TDM_1,
  88. TDM_2,
  89. TDM_3,
  90. TDM_4,
  91. TDM_5,
  92. TDM_6,
  93. TDM_7,
  94. TDM_PORT_MAX,
  95. };
  96. #define TDM_MAX_SLOTS 8
  97. #define TDM_SLOT_WIDTH_BITS 32
  98. enum {
  99. TDM_PRI = 0,
  100. TDM_SEC,
  101. TDM_TERT,
  102. TDM_QUAT,
  103. TDM_INTERFACE_MAX,
  104. };
  105. enum {
  106. PRIM_AUX_PCM = 0,
  107. SEC_AUX_PCM,
  108. TERT_AUX_PCM,
  109. QUAT_AUX_PCM,
  110. AUX_PCM_MAX,
  111. };
  112. enum {
  113. PRIM_MI2S = 0,
  114. SEC_MI2S,
  115. TERT_MI2S,
  116. QUAT_MI2S,
  117. MI2S_MAX,
  118. };
  119. enum {
  120. RX_CDC_DMA_RX_0 = 0,
  121. RX_CDC_DMA_RX_1,
  122. RX_CDC_DMA_RX_2,
  123. RX_CDC_DMA_RX_3,
  124. RX_CDC_DMA_RX_5,
  125. RX_CDC_DMA_RX_6,
  126. CDC_DMA_RX_MAX,
  127. };
  128. enum {
  129. TX_CDC_DMA_TX_0 = 0,
  130. TX_CDC_DMA_TX_3,
  131. TX_CDC_DMA_TX_4,
  132. VA_CDC_DMA_TX_0,
  133. VA_CDC_DMA_TX_1,
  134. VA_CDC_DMA_TX_2,
  135. CDC_DMA_TX_MAX,
  136. };
  137. enum {
  138. SLIM_RX_7 = 0,
  139. SLIM_RX_MAX,
  140. };
  141. enum {
  142. SLIM_TX_7 = 0,
  143. SLIM_TX_8,
  144. SLIM_TX_MAX,
  145. };
  146. enum {
  147. AFE_LOOPBACK_TX_IDX = 0,
  148. AFE_LOOPBACK_TX_IDX_MAX,
  149. };
  150. struct msm_asoc_mach_data {
  151. struct snd_info_entry *codec_root;
  152. struct msm_common_pdata *common_pdata;
  153. int usbc_en2_gpio; /* used by gpio driver API */
  154. struct device_node *dmic01_gpio_p; /* used by pinctrl API */
  155. struct device_node *dmic23_gpio_p; /* used by pinctrl API */
  156. struct device_node *dmic45_gpio_p; /* used by pinctrl API */
  157. struct device_node *mi2s_gpio_p[MI2S_MAX]; /* used by pinctrl API */
  158. atomic_t mi2s_gpio_ref_count[MI2S_MAX]; /* used by pinctrl API */
  159. struct device_node *us_euro_gpio_p; /* used by pinctrl API */
  160. struct pinctrl *usbc_en2_gpio_p; /* used by pinctrl API */
  161. struct device_node *hph_en1_gpio_p; /* used by pinctrl API */
  162. struct device_node *hph_en0_gpio_p; /* used by pinctrl API */
  163. bool is_afe_config_done;
  164. struct device_node *fsa_handle;
  165. struct clk *lpass_audio_hw_vote;
  166. int core_audio_vote_count;
  167. u32 wcd_disabled;
  168. u32 wsa_max_devs;
  169. };
  170. struct tdm_port {
  171. u32 mode;
  172. u32 channel;
  173. };
  174. struct tdm_dev_config {
  175. unsigned int tdm_slot_offset[TDM_MAX_SLOTS];
  176. };
  177. struct dev_config {
  178. u32 sample_rate;
  179. u32 bit_format;
  180. u32 channels;
  181. };
  182. struct mi2s_conf {
  183. struct mutex lock;
  184. u32 ref_cnt;
  185. u32 msm_is_mi2s_master;
  186. };
  187. static bool is_initial_boot;
  188. static bool codec_reg_done;
  189. static struct snd_soc_card snd_soc_card_holi_msm;
  190. static int dmic_0_1_gpio_cnt;
  191. static int dmic_2_3_gpio_cnt;
  192. static int dmic_4_5_gpio_cnt;
  193. static void *def_wcd_mbhc_cal(void);
  194. static int msm_rx_tx_codec_init(struct snd_soc_pcm_runtime *);
  195. static int msm_int_wsa_init(struct snd_soc_pcm_runtime *rtd);
  196. /*
  197. * Need to report LINEIN
  198. * if R/L channel impedance is larger than 5K ohm
  199. */
  200. static struct wcd_mbhc_config wcd_mbhc_cfg = {
  201. .read_fw_bin = false,
  202. .calibration = NULL,
  203. .detect_extn_cable = true,
  204. .mono_stero_detection = false,
  205. .swap_gnd_mic = NULL,
  206. .hs_ext_micbias = true,
  207. .key_code[0] = KEY_MEDIA,
  208. .key_code[1] = KEY_VOICECOMMAND,
  209. .key_code[2] = KEY_VOLUMEUP,
  210. .key_code[3] = KEY_VOLUMEDOWN,
  211. .key_code[4] = 0,
  212. .key_code[5] = 0,
  213. .key_code[6] = 0,
  214. .key_code[7] = 0,
  215. .linein_th = 5000,
  216. .moisture_en = false,
  217. .mbhc_micbias = MIC_BIAS_2,
  218. .anc_micbias = MIC_BIAS_2,
  219. .enable_anc_mic_detect = false,
  220. .moisture_duty_cycle_en = true,
  221. };
  222. struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card)
  223. {
  224. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  225. if (!pdata)
  226. return NULL;
  227. return pdata->common_pdata;
  228. }
  229. void msm_common_set_pdata(struct snd_soc_card *card,
  230. struct msm_common_pdata *common_pdata)
  231. {
  232. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  233. if (!pdata)
  234. return;
  235. pdata->common_pdata = common_pdata;
  236. }
  237. static bool msm_usbc_swap_gnd_mic(struct snd_soc_component *component,
  238. bool active)
  239. {
  240. struct snd_soc_card *card = component->card;
  241. struct msm_asoc_mach_data *pdata =
  242. snd_soc_card_get_drvdata(card);
  243. if (!pdata->fsa_handle)
  244. return false;
  245. //return fsa4480_switch_event(pdata->fsa_handle, FSA_MIC_GND_SWAP);
  246. return true;
  247. }
  248. static bool msm_swap_gnd_mic(struct snd_soc_component *component, bool active)
  249. {
  250. int value = 0;
  251. bool ret = false;
  252. struct snd_soc_card *card;
  253. struct msm_asoc_mach_data *pdata;
  254. if (!component) {
  255. pr_err("%s component is NULL\n", __func__);
  256. return false;
  257. }
  258. card = component->card;
  259. pdata = snd_soc_card_get_drvdata(card);
  260. if (!pdata)
  261. return false;
  262. if (wcd_mbhc_cfg.enable_usbc_analog)
  263. return msm_usbc_swap_gnd_mic(component, active);
  264. /* if usbc is not defined, swap using us_euro_gpio_p */
  265. if (pdata->us_euro_gpio_p) {
  266. value = msm_cdc_pinctrl_get_state(
  267. pdata->us_euro_gpio_p);
  268. if (value)
  269. msm_cdc_pinctrl_select_sleep_state(
  270. pdata->us_euro_gpio_p);
  271. else
  272. msm_cdc_pinctrl_select_active_state(
  273. pdata->us_euro_gpio_p);
  274. dev_dbg(component->dev, "%s: swap select switch %d to %d\n",
  275. __func__, value, !value);
  276. ret = true;
  277. }
  278. return ret;
  279. }
  280. static int msm_dmic_event(struct snd_soc_dapm_widget *w,
  281. struct snd_kcontrol *kcontrol, int event)
  282. {
  283. struct msm_asoc_mach_data *pdata = NULL;
  284. struct snd_soc_component *component =
  285. snd_soc_dapm_to_component(w->dapm);
  286. int ret = 0;
  287. u32 dmic_idx;
  288. int *dmic_gpio_cnt;
  289. struct device_node *dmic_gpio;
  290. char *wname;
  291. wname = strpbrk(w->name, "0123");
  292. if (!wname) {
  293. dev_err(component->dev, "%s: widget not found\n", __func__);
  294. return -EINVAL;
  295. }
  296. ret = kstrtouint(wname, 10, &dmic_idx);
  297. if (ret < 0) {
  298. dev_err(component->dev, "%s: Invalid DMIC line on the codec\n",
  299. __func__);
  300. return -EINVAL;
  301. }
  302. pdata = snd_soc_card_get_drvdata(component->card);
  303. switch (dmic_idx) {
  304. case 0:
  305. case 1:
  306. dmic_gpio_cnt = &dmic_0_1_gpio_cnt;
  307. dmic_gpio = pdata->dmic01_gpio_p;
  308. break;
  309. case 2:
  310. case 3:
  311. dmic_gpio_cnt = &dmic_2_3_gpio_cnt;
  312. dmic_gpio = pdata->dmic23_gpio_p;
  313. break;
  314. case 4:
  315. case 5:
  316. dmic_gpio_cnt = &dmic_4_5_gpio_cnt;
  317. dmic_gpio = pdata->dmic45_gpio_p;
  318. break;
  319. default:
  320. dev_err(component->dev, "%s: Invalid DMIC Selection\n",
  321. __func__);
  322. return -EINVAL;
  323. }
  324. dev_dbg(component->dev, "%s: event %d DMIC%d dmic_gpio_cnt %d\n",
  325. __func__, event, dmic_idx, *dmic_gpio_cnt);
  326. switch (event) {
  327. case SND_SOC_DAPM_PRE_PMU:
  328. (*dmic_gpio_cnt)++;
  329. if (*dmic_gpio_cnt == 1) {
  330. ret = msm_cdc_pinctrl_select_active_state(
  331. dmic_gpio);
  332. if (ret < 0) {
  333. pr_err("%s: gpio set cannot be activated %sd",
  334. __func__, "dmic_gpio");
  335. return ret;
  336. }
  337. }
  338. break;
  339. case SND_SOC_DAPM_POST_PMD:
  340. (*dmic_gpio_cnt)--;
  341. if (*dmic_gpio_cnt == 0) {
  342. ret = msm_cdc_pinctrl_select_sleep_state(
  343. dmic_gpio);
  344. if (ret < 0) {
  345. pr_err("%s: gpio set cannot be de-activated %sd",
  346. __func__, "dmic_gpio");
  347. return ret;
  348. }
  349. }
  350. break;
  351. default:
  352. pr_err("%s: invalid DAPM event %d\n", __func__, event);
  353. return -EINVAL;
  354. }
  355. return 0;
  356. }
  357. static const struct snd_soc_dapm_widget msm_int_dapm_widgets[] = {
  358. SND_SOC_DAPM_MIC("Analog Mic1", NULL),
  359. SND_SOC_DAPM_MIC("Analog Mic2", NULL),
  360. SND_SOC_DAPM_MIC("Analog Mic3", NULL),
  361. SND_SOC_DAPM_MIC("Analog Mic4", NULL),
  362. SND_SOC_DAPM_MIC("Analog Mic5", NULL),
  363. SND_SOC_DAPM_MIC("Digital Mic0", msm_dmic_event),
  364. SND_SOC_DAPM_MIC("Digital Mic1", msm_dmic_event),
  365. SND_SOC_DAPM_MIC("Digital Mic2", msm_dmic_event),
  366. SND_SOC_DAPM_MIC("Digital Mic3", msm_dmic_event),
  367. SND_SOC_DAPM_MIC("Digital Mic4", msm_dmic_event),
  368. SND_SOC_DAPM_MIC("Digital Mic5", msm_dmic_event),
  369. SND_SOC_DAPM_MIC("Digital Mic6", NULL),
  370. SND_SOC_DAPM_MIC("Digital Mic7", NULL),
  371. };
  372. static int msm_wcn_init(struct snd_soc_pcm_runtime *rtd)
  373. {
  374. unsigned int rx_ch[WCN_CDC_SLIM_RX_CH_MAX] = {157, 158};
  375. unsigned int tx_ch[WCN_CDC_SLIM_TX_CH_MAX] = {159, 160, 161};
  376. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  377. int ret = 0;
  378. ret = snd_soc_dai_set_channel_map(codec_dai, ARRAY_SIZE(tx_ch),
  379. tx_ch, ARRAY_SIZE(rx_ch), rx_ch);
  380. if (ret)
  381. return ret;
  382. msm_common_dai_link_init(rtd);
  383. return ret;
  384. }
  385. static struct snd_info_entry *msm_snd_info_create_subdir(struct module *mod,
  386. const char *name,
  387. struct snd_info_entry *parent)
  388. {
  389. struct snd_info_entry *entry;
  390. entry = snd_info_create_module_entry(mod, name, parent);
  391. if (!entry)
  392. return NULL;
  393. entry->mode = S_IFDIR | 0555;
  394. if (snd_info_register(entry) < 0) {
  395. snd_info_free_entry(entry);
  396. return NULL;
  397. }
  398. return entry;
  399. }
  400. static void *def_wcd_mbhc_cal(void)
  401. {
  402. void *wcd_mbhc_cal;
  403. struct wcd_mbhc_btn_detect_cfg *btn_cfg;
  404. u16 *btn_high;
  405. wcd_mbhc_cal = kzalloc(WCD_MBHC_CAL_SIZE(WCD_MBHC_DEF_BUTTONS,
  406. WCD9XXX_MBHC_DEF_RLOADS), GFP_KERNEL);
  407. if (!wcd_mbhc_cal)
  408. return NULL;
  409. WCD_MBHC_CAL_PLUG_TYPE_PTR(wcd_mbhc_cal)->v_hs_max = WCD_MBHC_HS_V_MAX;
  410. WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal)->num_btn = WCD_MBHC_DEF_BUTTONS;
  411. btn_cfg = WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal);
  412. btn_high = ((void *)&btn_cfg->_v_btn_low) +
  413. (sizeof(btn_cfg->_v_btn_low[0]) * btn_cfg->num_btn);
  414. btn_high[0] = 75;
  415. btn_high[1] = 150;
  416. btn_high[2] = 237;
  417. btn_high[3] = 500;
  418. btn_high[4] = 500;
  419. btn_high[5] = 500;
  420. btn_high[6] = 500;
  421. btn_high[7] = 500;
  422. return wcd_mbhc_cal;
  423. }
  424. static struct snd_soc_ops msm_common_be_ops = {
  425. .hw_params = msm_common_snd_hw_params,
  426. .startup = msm_common_snd_startup,
  427. .shutdown = msm_common_snd_shutdown,
  428. };
  429. static struct snd_soc_dai_link msm_common_be_dai_links[] = {
  430. /* Backend AFE DAI Links */
  431. #if 0
  432. /* Incall Record Uplink BACK END DAI Link */
  433. {
  434. .name = LPASS_BE_INCALL_RECORD_TX,
  435. .stream_name = "Voice Uplink Capture",
  436. .cpu_dai_name = "msm-dai-q6-dev.32772",
  437. .platform_name = "msm-pcm-routing",
  438. .codec_name = "msm-stub-codec.1",
  439. .codec_dai_name = "msm-stub-tx",
  440. .no_pcm = 1,
  441. .dpcm_capture = 1,
  442. .id = MSM_BACKEND_DAI_INCALL_RECORD_TX,
  443. .be_hw_params_fixup = msm_be_hw_params_fixup,
  444. .ignore_suspend = 1,
  445. },
  446. /* Incall Record Downlink BACK END DAI Link */
  447. {
  448. .name = LPASS_BE_INCALL_RECORD_RX,
  449. .stream_name = "Voice Downlink Capture",
  450. .cpu_dai_name = "msm-dai-q6-dev.32771",
  451. .platform_name = "msm-pcm-routing",
  452. .codec_name = "msm-stub-codec.1",
  453. .codec_dai_name = "msm-stub-tx",
  454. .no_pcm = 1,
  455. .dpcm_capture = 1,
  456. .id = MSM_BACKEND_DAI_INCALL_RECORD_RX,
  457. .be_hw_params_fixup = msm_be_hw_params_fixup,
  458. .ignore_suspend = 1,
  459. },
  460. /* Incall Music BACK END DAI Link */
  461. {
  462. .name = LPASS_BE_VOICE_PLAYBACK_TX,
  463. .stream_name = "Voice Farend Playback",
  464. .cpu_dai_name = "msm-dai-q6-dev.32773",
  465. .platform_name = "msm-pcm-routing",
  466. .codec_name = "msm-stub-codec.1",
  467. .codec_dai_name = "msm-stub-rx",
  468. .no_pcm = 1,
  469. .dpcm_playback = 1,
  470. .id = MSM_BACKEND_DAI_VOICE_PLAYBACK_TX,
  471. .be_hw_params_fixup = msm_be_hw_params_fixup,
  472. .ignore_suspend = 1,
  473. .ignore_pmdown_time = 1,
  474. },
  475. /* Incall Music 2 BACK END DAI Link */
  476. {
  477. .name = LPASS_BE_VOICE2_PLAYBACK_TX,
  478. .stream_name = "Voice2 Farend Playback",
  479. .cpu_dai_name = "msm-dai-q6-dev.32770",
  480. .platform_name = "msm-pcm-routing",
  481. .codec_name = "msm-stub-codec.1",
  482. .codec_dai_name = "msm-stub-rx",
  483. .no_pcm = 1,
  484. .dpcm_playback = 1,
  485. .id = MSM_BACKEND_DAI_VOICE2_PLAYBACK_TX,
  486. .be_hw_params_fixup = msm_be_hw_params_fixup,
  487. .ignore_suspend = 1,
  488. .ignore_pmdown_time = 1,
  489. },
  490. #endif
  491. /* Proxy Tx BACK END DAI Link */
  492. {
  493. .name = LPASS_BE_RT_PROXY_PCM_TX,
  494. .stream_name = LPASS_BE_RT_PROXY_PCM_TX,
  495. .capture_only = 1,
  496. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  497. SND_SOC_DPCM_TRIGGER_POST},
  498. .ignore_suspend = 1,
  499. .ops = &msm_common_be_ops,
  500. SND_SOC_DAILINK_REG(proxy_tx),
  501. },
  502. /* Proxy Rx BACK END DAI Link */
  503. {
  504. .name = LPASS_BE_RT_PROXY_PCM_RX,
  505. .stream_name = LPASS_BE_RT_PROXY_PCM_RX,
  506. .playback_only = 1,
  507. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  508. SND_SOC_DPCM_TRIGGER_POST},
  509. .ignore_pmdown_time = 1,
  510. .ignore_suspend = 1,
  511. .ops = &msm_common_be_ops,
  512. SND_SOC_DAILINK_REG(proxy_rx),
  513. },
  514. {
  515. .name = LPASS_BE_USB_AUDIO_RX,
  516. .stream_name = LPASS_BE_USB_AUDIO_RX,
  517. .playback_only = 1,
  518. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  519. SND_SOC_DPCM_TRIGGER_POST},
  520. .ignore_pmdown_time = 1,
  521. .ignore_suspend = 1,
  522. .ops = &msm_common_be_ops,
  523. SND_SOC_DAILINK_REG(usb_audio_rx),
  524. },
  525. {
  526. .name = LPASS_BE_USB_AUDIO_TX,
  527. .stream_name = LPASS_BE_USB_AUDIO_TX,
  528. .capture_only = 1,
  529. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  530. SND_SOC_DPCM_TRIGGER_POST},
  531. .ignore_suspend = 1,
  532. .ops = &msm_common_be_ops,
  533. SND_SOC_DAILINK_REG(usb_audio_tx),
  534. },
  535. };
  536. static struct snd_soc_dai_link msm_tdm_be_dai_links[] = {
  537. {
  538. .name = LPASS_BE_PRI_TDM_RX_0,
  539. .stream_name = LPASS_BE_PRI_TDM_RX_0,
  540. .playback_only = 1,
  541. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  542. SND_SOC_DPCM_TRIGGER_POST},
  543. .ops = &msm_common_be_ops,
  544. .ignore_suspend = 1,
  545. .ignore_pmdown_time = 1,
  546. SND_SOC_DAILINK_REG(pri_tdm_rx_0),
  547. },
  548. {
  549. .name = LPASS_BE_PRI_TDM_TX_0,
  550. .stream_name = LPASS_BE_PRI_TDM_TX_0,
  551. .capture_only = 1,
  552. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  553. SND_SOC_DPCM_TRIGGER_POST},
  554. .ops = &msm_common_be_ops,
  555. .ignore_suspend = 1,
  556. SND_SOC_DAILINK_REG(pri_tdm_tx_0),
  557. },
  558. {
  559. .name = LPASS_BE_SEC_TDM_RX_0,
  560. .stream_name = LPASS_BE_SEC_TDM_RX_0,
  561. .playback_only = 1,
  562. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  563. SND_SOC_DPCM_TRIGGER_POST},
  564. .ops = &msm_common_be_ops,
  565. .ignore_suspend = 1,
  566. .ignore_pmdown_time = 1,
  567. SND_SOC_DAILINK_REG(sec_tdm_rx_0),
  568. },
  569. {
  570. .name = LPASS_BE_SEC_TDM_TX_0,
  571. .stream_name = LPASS_BE_SEC_TDM_TX_0,
  572. .capture_only = 1,
  573. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  574. SND_SOC_DPCM_TRIGGER_POST},
  575. .ops = &msm_common_be_ops,
  576. .ignore_suspend = 1,
  577. SND_SOC_DAILINK_REG(sec_tdm_tx_0),
  578. },
  579. {
  580. .name = LPASS_BE_TERT_TDM_RX_0,
  581. .stream_name = LPASS_BE_TERT_TDM_RX_0,
  582. .playback_only = 1,
  583. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  584. SND_SOC_DPCM_TRIGGER_POST},
  585. .ops = &msm_common_be_ops,
  586. .ignore_suspend = 1,
  587. .ignore_pmdown_time = 1,
  588. SND_SOC_DAILINK_REG(tert_tdm_tx_0),
  589. },
  590. {
  591. .name = LPASS_BE_TERT_TDM_TX_0,
  592. .stream_name = LPASS_BE_TERT_TDM_TX_0,
  593. .capture_only = 1,
  594. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  595. SND_SOC_DPCM_TRIGGER_POST},
  596. .ops = &msm_common_be_ops,
  597. .ignore_suspend = 1,
  598. SND_SOC_DAILINK_REG(tert_tdm_tx_0),
  599. },
  600. {
  601. .name = LPASS_BE_QUAT_TDM_RX_0,
  602. .stream_name = LPASS_BE_QUAT_TDM_RX_0,
  603. .playback_only = 1,
  604. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  605. SND_SOC_DPCM_TRIGGER_POST},
  606. .ops = &msm_common_be_ops,
  607. .ignore_suspend = 1,
  608. .ignore_pmdown_time = 1,
  609. SND_SOC_DAILINK_REG(quat_tdm_rx_0),
  610. },
  611. {
  612. .name = LPASS_BE_QUAT_TDM_TX_0,
  613. .stream_name = LPASS_BE_QUAT_TDM_TX_0,
  614. .capture_only = 1,
  615. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  616. SND_SOC_DPCM_TRIGGER_POST},
  617. .ops = &msm_common_be_ops,
  618. .ignore_suspend = 1,
  619. SND_SOC_DAILINK_REG(quat_tdm_tx_0),
  620. },
  621. };
  622. static struct snd_soc_dai_link msm_wcn_btfm_be_dai_links[] = {
  623. {
  624. .name = LPASS_BE_SLIMBUS_7_RX,
  625. .stream_name = LPASS_BE_SLIMBUS_7_RX,
  626. .playback_only = 1,
  627. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  628. SND_SOC_DPCM_TRIGGER_POST},
  629. .init = &msm_wcn_init,
  630. .ops = &msm_common_be_ops,
  631. /* dai link has playback support */
  632. .ignore_pmdown_time = 1,
  633. .ignore_suspend = 1,
  634. SND_SOC_DAILINK_REG(slimbus_7_rx),
  635. },
  636. {
  637. .name = LPASS_BE_SLIMBUS_7_TX,
  638. .stream_name = LPASS_BE_SLIMBUS_7_TX,
  639. .capture_only = 1,
  640. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  641. SND_SOC_DPCM_TRIGGER_POST},
  642. .ops = &msm_common_be_ops,
  643. .ignore_suspend = 1,
  644. SND_SOC_DAILINK_REG(slimbus_7_tx),
  645. },
  646. {
  647. .name = LPASS_BE_SLIMBUS_8_TX,
  648. .stream_name = LPASS_BE_SLIMBUS_8_TX,
  649. .capture_only = 1,
  650. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  651. SND_SOC_DPCM_TRIGGER_POST},
  652. .ops = &msm_common_be_ops,
  653. .ignore_suspend = 1,
  654. SND_SOC_DAILINK_REG(slimbus_8_tx),
  655. },
  656. };
  657. static struct snd_soc_dai_link msm_mi2s_be_dai_links[] = {
  658. {
  659. .name = LPASS_BE_PRI_MI2S_RX,
  660. .stream_name = LPASS_BE_PRI_MI2S_RX,
  661. .playback_only = 1,
  662. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  663. SND_SOC_DPCM_TRIGGER_POST},
  664. .ops = &msm_common_be_ops,
  665. .ignore_suspend = 1,
  666. .ignore_pmdown_time = 1,
  667. SND_SOC_DAILINK_REG(pri_mi2s_rx),
  668. },
  669. {
  670. .name = LPASS_BE_PRI_MI2S_TX,
  671. .stream_name = LPASS_BE_PRI_MI2S_TX,
  672. .capture_only = 1,
  673. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  674. SND_SOC_DPCM_TRIGGER_POST},
  675. .ops = &msm_common_be_ops,
  676. .ignore_suspend = 1,
  677. SND_SOC_DAILINK_REG(pri_mi2s_tx),
  678. },
  679. {
  680. .name = LPASS_BE_SEC_MI2S_RX,
  681. .stream_name = LPASS_BE_SEC_MI2S_RX,
  682. .playback_only = 1,
  683. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  684. SND_SOC_DPCM_TRIGGER_POST},
  685. .ops = &msm_common_be_ops,
  686. .ignore_suspend = 1,
  687. .ignore_pmdown_time = 1,
  688. SND_SOC_DAILINK_REG(sec_mi2s_rx),
  689. },
  690. {
  691. .name = LPASS_BE_SEC_MI2S_TX,
  692. .stream_name = LPASS_BE_SEC_MI2S_TX,
  693. .capture_only = 1,
  694. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  695. SND_SOC_DPCM_TRIGGER_POST},
  696. .ops = &msm_common_be_ops,
  697. .ignore_suspend = 1,
  698. SND_SOC_DAILINK_REG(sec_mi2s_tx),
  699. },
  700. {
  701. .name = LPASS_BE_TERT_MI2S_RX,
  702. .stream_name = LPASS_BE_TERT_MI2S_RX,
  703. .playback_only = 1,
  704. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  705. SND_SOC_DPCM_TRIGGER_POST},
  706. .ops = &msm_common_be_ops,
  707. .ignore_suspend = 1,
  708. .ignore_pmdown_time = 1,
  709. SND_SOC_DAILINK_REG(tert_mi2s_rx),
  710. },
  711. {
  712. .name = LPASS_BE_TERT_MI2S_TX,
  713. .stream_name = LPASS_BE_TERT_MI2S_TX,
  714. .capture_only = 1,
  715. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  716. SND_SOC_DPCM_TRIGGER_POST},
  717. .ops = &msm_common_be_ops,
  718. .ignore_suspend = 1,
  719. SND_SOC_DAILINK_REG(tert_mi2s_tx),
  720. },
  721. {
  722. .name = LPASS_BE_QUAT_MI2S_RX,
  723. .stream_name = LPASS_BE_QUAT_MI2S_RX,
  724. .playback_only = 1,
  725. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  726. SND_SOC_DPCM_TRIGGER_POST},
  727. .ops = &msm_common_be_ops,
  728. .ignore_suspend = 1,
  729. .ignore_pmdown_time = 1,
  730. SND_SOC_DAILINK_REG(quat_mi2s_rx),
  731. },
  732. {
  733. .name = LPASS_BE_QUAT_MI2S_TX,
  734. .stream_name = LPASS_BE_QUAT_MI2S_TX,
  735. .capture_only = 1,
  736. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  737. SND_SOC_DPCM_TRIGGER_POST},
  738. .ops = &msm_common_be_ops,
  739. .ignore_suspend = 1,
  740. SND_SOC_DAILINK_REG(quat_mi2s_tx),
  741. },
  742. };
  743. static struct snd_soc_dai_link msm_auxpcm_be_dai_links[] = {
  744. /* Primary AUX PCM Backend DAI Links */
  745. {
  746. .name = LPASS_BE_PRI_AUXPCM_RX,
  747. .stream_name = LPASS_BE_PRI_AUXPCM_RX,
  748. .playback_only = 1,
  749. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  750. SND_SOC_DPCM_TRIGGER_POST},
  751. .ops = &msm_common_be_ops,// TODO for AUX
  752. .ignore_pmdown_time = 1,
  753. .ignore_suspend = 1,
  754. SND_SOC_DAILINK_REG(auxpcm_rx),
  755. },
  756. {
  757. .name = LPASS_BE_PRI_AUXPCM_TX,
  758. .stream_name = LPASS_BE_PRI_AUXPCM_TX,
  759. .capture_only = 1,
  760. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  761. SND_SOC_DPCM_TRIGGER_POST},
  762. .ops = &msm_common_be_ops,
  763. .ignore_suspend = 1,
  764. SND_SOC_DAILINK_REG(auxpcm_tx),
  765. },
  766. /* Secondary AUX PCM Backend DAI Links */
  767. {
  768. .name = LPASS_BE_SEC_AUXPCM_RX,
  769. .stream_name = LPASS_BE_SEC_AUXPCM_RX,
  770. .playback_only = 1,
  771. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  772. SND_SOC_DPCM_TRIGGER_POST},
  773. .ops = &msm_common_be_ops,// TODO for AUX
  774. .ignore_pmdown_time = 1,
  775. .ignore_suspend = 1,
  776. SND_SOC_DAILINK_REG(sec_auxpcm_rx),
  777. },
  778. {
  779. .name = LPASS_BE_SEC_AUXPCM_TX,
  780. .stream_name = LPASS_BE_SEC_AUXPCM_TX,
  781. .capture_only = 1,
  782. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  783. SND_SOC_DPCM_TRIGGER_POST},
  784. .ops = &msm_common_be_ops,
  785. .ignore_suspend = 1,
  786. SND_SOC_DAILINK_REG(sec_auxpcm_tx),
  787. },
  788. /* Tertiary AUX PCM Backend DAI Links */
  789. {
  790. .name = LPASS_BE_TERT_AUXPCM_RX,
  791. .stream_name = LPASS_BE_TERT_AUXPCM_RX,
  792. .playback_only = 1,
  793. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  794. SND_SOC_DPCM_TRIGGER_POST},
  795. .ops = &msm_common_be_ops,// TODO for AUX
  796. .ignore_suspend = 1,
  797. SND_SOC_DAILINK_REG(tert_auxpcm_rx),
  798. },
  799. {
  800. .name = LPASS_BE_TERT_AUXPCM_TX,
  801. .stream_name = LPASS_BE_TERT_AUXPCM_TX,
  802. .capture_only = 1,
  803. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  804. SND_SOC_DPCM_TRIGGER_POST},
  805. .ops = &msm_common_be_ops,
  806. .ignore_suspend = 1,
  807. SND_SOC_DAILINK_REG(tert_auxpcm_tx),
  808. },
  809. /* Quaternary AUX PCM Backend DAI Links */
  810. {
  811. .name = LPASS_BE_QUAT_AUXPCM_RX,
  812. .stream_name = LPASS_BE_QUAT_AUXPCM_RX,
  813. .playback_only = 1,
  814. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  815. SND_SOC_DPCM_TRIGGER_POST},
  816. .ops = &msm_common_be_ops,// TODO for AUX
  817. .ignore_suspend = 1,
  818. SND_SOC_DAILINK_REG(quat_auxpcm_rx),
  819. },
  820. {
  821. .name = LPASS_BE_QUAT_AUXPCM_TX,
  822. .stream_name = LPASS_BE_QUAT_AUXPCM_TX,
  823. .capture_only = 1,
  824. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  825. SND_SOC_DPCM_TRIGGER_POST},
  826. .ops = &msm_common_be_ops,
  827. .ignore_suspend = 1,
  828. SND_SOC_DAILINK_REG(quat_auxpcm_tx),
  829. },
  830. };
  831. static struct snd_soc_dai_link msm_rx_tx_cdc_dma_be_dai_links[] = {
  832. /* RX CDC DMA Backend DAI Links */
  833. {
  834. .name = LPASS_BE_RX_CDC_DMA_RX_0,
  835. .stream_name = LPASS_BE_RX_CDC_DMA_RX_0,
  836. .playback_only = 1,
  837. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  838. SND_SOC_DPCM_TRIGGER_POST},
  839. .ignore_pmdown_time = 1,
  840. .ignore_suspend = 1,
  841. .ops = &msm_common_be_ops,
  842. SND_SOC_DAILINK_REG(rx_dma_rx0),
  843. .init = &msm_rx_tx_codec_init,
  844. },
  845. {
  846. .name = LPASS_BE_RX_CDC_DMA_RX_1,
  847. .stream_name = LPASS_BE_RX_CDC_DMA_RX_1,
  848. .playback_only = 1,
  849. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  850. SND_SOC_DPCM_TRIGGER_POST},
  851. .ignore_pmdown_time = 1,
  852. .ignore_suspend = 1,
  853. .ops = &msm_common_be_ops,
  854. SND_SOC_DAILINK_REG(rx_dma_rx1),
  855. .init = &msm_int_wsa_init,
  856. },
  857. {
  858. .name = LPASS_BE_RX_CDC_DMA_RX_2,
  859. .stream_name = LPASS_BE_RX_CDC_DMA_RX_2,
  860. .playback_only = 1,
  861. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  862. SND_SOC_DPCM_TRIGGER_POST},
  863. .ignore_pmdown_time = 1,
  864. .ignore_suspend = 1,
  865. .ops = &msm_common_be_ops,
  866. SND_SOC_DAILINK_REG(rx_dma_rx2),
  867. },
  868. {
  869. .name = LPASS_BE_RX_CDC_DMA_RX_3,
  870. .stream_name = LPASS_BE_RX_CDC_DMA_RX_3,
  871. .playback_only = 1,
  872. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  873. SND_SOC_DPCM_TRIGGER_POST},
  874. .ignore_pmdown_time = 1,
  875. .ignore_suspend = 1,
  876. .ops = &msm_common_be_ops,
  877. SND_SOC_DAILINK_REG(rx_dma_rx3),
  878. },
  879. /* TX CDC DMA Backend DAI Links */
  880. {
  881. .name = LPASS_BE_TX_CDC_DMA_TX_3,
  882. .stream_name = LPASS_BE_TX_CDC_DMA_TX_3,
  883. .capture_only = 1,
  884. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  885. SND_SOC_DPCM_TRIGGER_POST},
  886. .ignore_suspend = 1,
  887. .ops = &msm_common_be_ops,
  888. SND_SOC_DAILINK_REG(tx_dma_tx3),
  889. },
  890. {
  891. .name = LPASS_BE_TX_CDC_DMA_TX_4,
  892. .stream_name = LPASS_BE_TX_CDC_DMA_TX_4,
  893. .capture_only = 1,
  894. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  895. SND_SOC_DPCM_TRIGGER_POST},
  896. .ignore_suspend = 1,
  897. .ops = &msm_common_be_ops,
  898. SND_SOC_DAILINK_REG(tx_dma_tx4),
  899. },
  900. };
  901. static struct snd_soc_dai_link msm_va_cdc_dma_be_dai_links[] = {
  902. {
  903. .name = LPASS_BE_VA_CDC_DMA_TX_0,
  904. .stream_name = LPASS_BE_VA_CDC_DMA_TX_0,
  905. .capture_only = 1,
  906. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  907. SND_SOC_DPCM_TRIGGER_POST},
  908. .ignore_suspend = 1,
  909. .ops = &msm_common_be_ops,
  910. SND_SOC_DAILINK_REG(va_dma_tx0),
  911. },
  912. {
  913. .name = LPASS_BE_VA_CDC_DMA_TX_1,
  914. .stream_name = LPASS_BE_VA_CDC_DMA_TX_1,
  915. .capture_only = 1,
  916. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  917. SND_SOC_DPCM_TRIGGER_POST},
  918. .ignore_suspend = 1,
  919. .ops = &msm_common_be_ops,
  920. SND_SOC_DAILINK_REG(va_dma_tx1),
  921. },
  922. {
  923. .name = LPASS_BE_VA_CDC_DMA_TX_2,
  924. .stream_name = LPASS_BE_VA_CDC_DMA_TX_2,
  925. .capture_only = 1,
  926. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  927. SND_SOC_DPCM_TRIGGER_POST},
  928. .ignore_suspend = 1,
  929. .ops = &msm_common_be_ops,
  930. SND_SOC_DAILINK_REG(va_dma_tx2),
  931. },
  932. };
  933. static struct snd_soc_dai_link msm_holi_dai_links[
  934. ARRAY_SIZE(msm_common_be_dai_links) +
  935. ARRAY_SIZE(msm_mi2s_be_dai_links) +
  936. ARRAY_SIZE(msm_auxpcm_be_dai_links) +
  937. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links) +
  938. ARRAY_SIZE(msm_va_cdc_dma_be_dai_links) +
  939. ARRAY_SIZE(msm_wcn_btfm_be_dai_links) +
  940. ARRAY_SIZE(msm_tdm_be_dai_links)];
  941. static int msm_populate_dai_link_component_of_node(
  942. struct snd_soc_card *card)
  943. {
  944. int i, j, index, ret = 0;
  945. struct device *cdev = card->dev;
  946. struct snd_soc_dai_link *dai_link = card->dai_link;
  947. struct device_node *np = NULL;
  948. int codecs_enabled = 0;
  949. struct snd_soc_dai_link_component *codecs_comp = NULL;
  950. if (!cdev) {
  951. dev_err(cdev, "%s: Sound card device memory NULL\n", __func__);
  952. return -ENODEV;
  953. }
  954. for (i = 0; i < card->num_links; i++) {
  955. if (dai_link[i].init == NULL)
  956. dai_link[i].init = &msm_common_dai_link_init;
  957. /* populate codec_of_node for snd card dai links */
  958. if (dai_link[i].num_codecs > 0) {
  959. for (j = 0; j < dai_link[i].num_codecs; j++) {
  960. if (dai_link[i].codecs[j].of_node ||
  961. !dai_link[i].codecs[j].name)
  962. continue;
  963. index = of_property_match_string(cdev->of_node,
  964. "asoc-codec-names",
  965. dai_link[i].codecs[j].name);
  966. if (index < 0)
  967. continue;
  968. np = of_parse_phandle(cdev->of_node,
  969. "asoc-codec",
  970. index);
  971. if (!np) {
  972. dev_err(cdev, "%s: retrieving phandle for codec %s failed\n",
  973. __func__,
  974. dai_link[i].codecs[j].name);
  975. ret = -ENODEV;
  976. goto err;
  977. }
  978. dai_link[i].codecs[j].of_node = np;
  979. dai_link[i].codecs[j].name = NULL;
  980. }
  981. }
  982. }
  983. /* In multi-codec scenario, check if codecs are enabled for this platform */
  984. for (i = 0; i < card->num_links; i++) {
  985. codecs_enabled = 0;
  986. if (dai_link[i].num_codecs > 1) {
  987. for (j = 0; j < dai_link[i].num_codecs; j++) {
  988. if (!dai_link[i].codecs[j].of_node)
  989. continue;
  990. np = dai_link[i].codecs[j].of_node;
  991. if (!of_device_is_available(np)) {
  992. dev_err(cdev, "%s: codec is disabled: %s\n",
  993. __func__,
  994. np->full_name);
  995. dai_link[i].codecs[j].of_node = NULL;
  996. continue;
  997. }
  998. codecs_enabled++;
  999. }
  1000. if (codecs_enabled > 0 &&
  1001. codecs_enabled < dai_link[i].num_codecs) {
  1002. codecs_comp = devm_kzalloc(cdev,
  1003. sizeof(struct snd_soc_dai_link_component)
  1004. * codecs_enabled, GFP_KERNEL);
  1005. if (!codecs_comp) {
  1006. dev_err(cdev, "%s: %s dailink codec component alloc failed\n",
  1007. __func__, dai_link[i].name);
  1008. ret = -ENOMEM;
  1009. goto err;
  1010. }
  1011. index = 0;
  1012. for (j = 0; j < dai_link[i].num_codecs; j++) {
  1013. if (dai_link[i].codecs[j].of_node) {
  1014. codecs_comp[index].of_node =
  1015. dai_link[i].codecs[j].of_node;
  1016. codecs_comp[index].dai_name =
  1017. dai_link[i].codecs[j].dai_name;
  1018. codecs_comp[index].name = NULL;
  1019. index++;
  1020. }
  1021. }
  1022. dai_link[i].codecs = codecs_comp;
  1023. dai_link[i].num_codecs = codecs_enabled;
  1024. }
  1025. }
  1026. }
  1027. err:
  1028. return ret;
  1029. }
  1030. static int msm_audrx_stub_init(struct snd_soc_pcm_runtime *rtd)
  1031. {
  1032. return 0;
  1033. }
  1034. static int msm_snd_stub_hw_params(struct snd_pcm_substream *substream,
  1035. struct snd_pcm_hw_params *params)
  1036. {
  1037. return 0;
  1038. }
  1039. static struct snd_soc_ops msm_stub_be_ops = {
  1040. .hw_params = msm_snd_stub_hw_params,
  1041. };
  1042. struct snd_soc_card snd_soc_card_stub_msm = {
  1043. .name = "holi-stub-snd-card",
  1044. };
  1045. static struct snd_soc_dai_link msm_stub_be_dai_links[] = {
  1046. /* Backend DAI Links */
  1047. {
  1048. .name = LPASS_BE_PRI_AUXPCM_RX,
  1049. .stream_name = LPASS_BE_PRI_AUXPCM_RX,
  1050. .playback_only = 1,
  1051. .init = &msm_audrx_stub_init,
  1052. .ignore_pmdown_time = 1,
  1053. .ignore_suspend = 1,
  1054. .ops = &msm_stub_be_ops,
  1055. SND_SOC_DAILINK_REG(auxpcm_rx),
  1056. },
  1057. {
  1058. .name = LPASS_BE_PRI_AUXPCM_TX,
  1059. .stream_name = LPASS_BE_PRI_AUXPCM_TX,
  1060. .capture_only = 1,
  1061. .ignore_suspend = 1,
  1062. .ops = &msm_stub_be_ops,
  1063. SND_SOC_DAILINK_REG(auxpcm_tx),
  1064. },
  1065. };
  1066. static struct snd_soc_dai_link msm_stub_dai_links[
  1067. ARRAY_SIZE(msm_stub_be_dai_links)];
  1068. static const struct of_device_id holi_asoc_machine_of_match[] = {
  1069. { .compatible = "qcom,holi-asoc-snd",
  1070. .data = "codec"},
  1071. { .compatible = "qcom,holi-asoc-snd-stub",
  1072. .data = "stub_codec"},
  1073. {},
  1074. };
  1075. static struct snd_soc_card *populate_snd_card_dailinks(struct device *dev)
  1076. {
  1077. struct snd_soc_card *card = NULL;
  1078. struct snd_soc_dai_link *dailink = NULL;
  1079. int total_links = 0;
  1080. int len_1 = 0;
  1081. int rc = 0;
  1082. u32 mi2s_audio_intf = 0;
  1083. u32 auxpcm_audio_intf = 0;
  1084. u32 rxtx_bolero_codec = 0;
  1085. u32 va_bolero_codec = 0;
  1086. u32 val = 0;
  1087. u32 wcn_btfm_intf = 0;
  1088. const struct of_device_id *match;
  1089. match = of_match_node(holi_asoc_machine_of_match, dev->of_node);
  1090. if (!match) {
  1091. dev_err(dev, "%s: No DT match found for sound card\n",
  1092. __func__);
  1093. return NULL;
  1094. }
  1095. if (!strcmp(match->data, "codec")) {
  1096. card = &snd_soc_card_holi_msm;
  1097. memcpy(msm_holi_dai_links + total_links,
  1098. msm_common_be_dai_links,
  1099. sizeof(msm_common_be_dai_links));
  1100. total_links += ARRAY_SIZE(msm_common_be_dai_links);
  1101. rc = of_property_read_u32(dev->of_node,
  1102. "qcom,rxtx-bolero-codec",
  1103. &rxtx_bolero_codec);
  1104. if (rc) {
  1105. dev_dbg(dev, "%s: No DT match RXTX Macro codec\n",
  1106. __func__);
  1107. } else {
  1108. if (rxtx_bolero_codec) {
  1109. memcpy(msm_holi_dai_links + total_links,
  1110. msm_rx_tx_cdc_dma_be_dai_links,
  1111. sizeof(msm_rx_tx_cdc_dma_be_dai_links));
  1112. total_links +=
  1113. ARRAY_SIZE(
  1114. msm_rx_tx_cdc_dma_be_dai_links);
  1115. }
  1116. }
  1117. rc = of_property_read_u32(dev->of_node, "qcom,va-bolero-codec",
  1118. &va_bolero_codec);
  1119. if (rc) {
  1120. dev_dbg(dev, "%s: No DT match VA Macro codec\n",
  1121. __func__);
  1122. } else {
  1123. if (va_bolero_codec) {
  1124. memcpy(msm_holi_dai_links + total_links,
  1125. msm_va_cdc_dma_be_dai_links,
  1126. sizeof(msm_va_cdc_dma_be_dai_links));
  1127. total_links +=
  1128. ARRAY_SIZE(msm_va_cdc_dma_be_dai_links);
  1129. }
  1130. }
  1131. rc = of_property_read_u32(dev->of_node, "qcom,mi2s-audio-intf",
  1132. &mi2s_audio_intf);
  1133. if (rc) {
  1134. dev_dbg(dev, "%s: No DT match MI2S audio interface\n",
  1135. __func__);
  1136. } else {
  1137. if (mi2s_audio_intf) {
  1138. memcpy(msm_holi_dai_links + total_links,
  1139. msm_mi2s_be_dai_links,
  1140. sizeof(msm_mi2s_be_dai_links));
  1141. total_links +=
  1142. ARRAY_SIZE(msm_mi2s_be_dai_links);
  1143. }
  1144. }
  1145. rc = of_property_read_u32(dev->of_node,
  1146. "qcom,auxpcm-audio-intf",
  1147. &auxpcm_audio_intf);
  1148. if (rc) {
  1149. dev_dbg(dev, "%s: No DT match Aux PCM interface\n",
  1150. __func__);
  1151. } else {
  1152. if (auxpcm_audio_intf) {
  1153. memcpy(msm_holi_dai_links + total_links,
  1154. msm_auxpcm_be_dai_links,
  1155. sizeof(msm_auxpcm_be_dai_links));
  1156. total_links +=
  1157. ARRAY_SIZE(msm_auxpcm_be_dai_links);
  1158. }
  1159. }
  1160. rc = of_property_read_u32(dev->of_node, "qcom,tdm-audio-intf",
  1161. &val);
  1162. if (!rc && val) {
  1163. memcpy(msm_holi_dai_links + total_links,
  1164. msm_tdm_be_dai_links,
  1165. sizeof(msm_tdm_be_dai_links));
  1166. total_links +=
  1167. ARRAY_SIZE(msm_tdm_be_dai_links);
  1168. }
  1169. rc = of_property_read_u32(dev->of_node, "qcom,wcn-btfm",
  1170. &wcn_btfm_intf);
  1171. if (rc) {
  1172. dev_dbg(dev, "%s: No DT match wcn btfm interface\n",
  1173. __func__);
  1174. } else {
  1175. if (wcn_btfm_intf) {
  1176. memcpy(msm_holi_dai_links + total_links,
  1177. msm_wcn_btfm_be_dai_links,
  1178. sizeof(msm_wcn_btfm_be_dai_links));
  1179. total_links +=
  1180. ARRAY_SIZE(msm_wcn_btfm_be_dai_links);
  1181. }
  1182. }
  1183. dailink = msm_holi_dai_links;
  1184. }
  1185. else if (!strcmp(match->data, "stub_codec")) {
  1186. card = &snd_soc_card_stub_msm;
  1187. len_1 = ARRAY_SIZE(msm_stub_be_dai_links);
  1188. memcpy(msm_stub_dai_links,
  1189. msm_stub_be_dai_links,
  1190. sizeof(msm_stub_be_dai_links));
  1191. dailink = msm_stub_dai_links;
  1192. total_links = len_1;
  1193. }
  1194. if (card) {
  1195. card->dai_link = dailink;
  1196. card->num_links = total_links;
  1197. }
  1198. return card;
  1199. }
  1200. static int msm_rx_tx_codec_init(struct snd_soc_pcm_runtime *rtd)
  1201. {
  1202. struct snd_soc_component *bolero_component = NULL;
  1203. struct snd_soc_component *component = NULL;
  1204. struct snd_soc_dapm_context *dapm = NULL;
  1205. bool is_wcd937x = false;
  1206. int ret = 0;
  1207. void *mbhc_calibration;
  1208. struct snd_info_entry *entry;
  1209. struct snd_card *card = NULL;
  1210. struct msm_asoc_mach_data *pdata =
  1211. snd_soc_card_get_drvdata(rtd->card);
  1212. pr_err("%s:: enter \n", __func__);
  1213. bolero_component = snd_soc_rtdcom_lookup(rtd, "bolero_codec");
  1214. if (!bolero_component) {
  1215. pr_err("%s: could not find component for bolero_codec\n",
  1216. __func__);
  1217. return -EINVAL;
  1218. }
  1219. pr_err("%s:: bolero comp lookup done\n", __func__);
  1220. dapm = snd_soc_component_get_dapm(bolero_component);
  1221. snd_soc_dapm_new_controls(dapm, msm_int_dapm_widgets,
  1222. ARRAY_SIZE(msm_int_dapm_widgets));
  1223. pr_err("%s:: dapm new controls msm_int_dapm_widgets \n", __func__);
  1224. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic0");
  1225. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic1");
  1226. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic2");
  1227. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic3");
  1228. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic1");
  1229. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic2");
  1230. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic3");
  1231. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic4");
  1232. snd_soc_dapm_sync(dapm);
  1233. card = rtd->card->snd_card;
  1234. if (!pdata->codec_root) {
  1235. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1236. card->proc_root);
  1237. if (!entry) {
  1238. pr_debug("%s: Cannot create codecs module entry\n",
  1239. __func__);
  1240. ret = 0;
  1241. goto err;
  1242. }
  1243. pdata->codec_root = entry;
  1244. }
  1245. bolero_info_create_codec_entry(pdata->codec_root, bolero_component);
  1246. bolero_register_wake_irq(bolero_component, false);
  1247. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  1248. if (!component) {
  1249. component = snd_soc_rtdcom_lookup(rtd, WCD937X_DRV_NAME);
  1250. if (!component) {
  1251. pr_err("%s component is NULL\n", __func__);
  1252. return -EINVAL;
  1253. }
  1254. is_wcd937x = true;
  1255. }
  1256. dapm = snd_soc_component_get_dapm(component);
  1257. card = component->card->snd_card;
  1258. pdata = snd_soc_card_get_drvdata(component->card);
  1259. if (!pdata)
  1260. return -EINVAL;
  1261. if (!pdata->codec_root) {
  1262. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1263. card->proc_root);
  1264. if (!entry) {
  1265. dev_dbg(component->dev, "%s: Cannot create codecs module entry\n",
  1266. __func__);
  1267. ret = 0;
  1268. goto mbhc_cfg_cal;
  1269. }
  1270. pdata->codec_root = entry;
  1271. }
  1272. if (!strncmp(component->driver->name, WCD937X_DRV_NAME, 13)) {
  1273. wcd937x_info_create_codec_entry(pdata->codec_root, component);
  1274. bolero_set_port_map(bolero_component,
  1275. ARRAY_SIZE(sm_port_map),
  1276. sm_port_map);
  1277. } else {
  1278. wcd938x_info_create_codec_entry(pdata->codec_root, component);
  1279. bolero_set_port_map(bolero_component,
  1280. ARRAY_SIZE(sm_port_map),
  1281. sm_port_map);
  1282. }
  1283. snd_soc_dapm_ignore_suspend(dapm, "EAR");
  1284. snd_soc_dapm_ignore_suspend(dapm, "AUX");
  1285. snd_soc_dapm_ignore_suspend(dapm, "LO");
  1286. snd_soc_dapm_ignore_suspend(dapm, "HPHL");
  1287. snd_soc_dapm_ignore_suspend(dapm, "HPHR");
  1288. snd_soc_dapm_ignore_suspend(dapm, "AMIC1");
  1289. snd_soc_dapm_ignore_suspend(dapm, "AMIC2");
  1290. snd_soc_dapm_ignore_suspend(dapm, "AMIC3");
  1291. snd_soc_dapm_ignore_suspend(dapm, "AMIC4");
  1292. snd_soc_dapm_sync(dapm);
  1293. codec_reg_done = true;
  1294. msm_common_dai_link_init(rtd);
  1295. mbhc_cfg_cal:
  1296. mbhc_calibration = def_wcd_mbhc_cal();
  1297. if (!mbhc_calibration)
  1298. return -ENOMEM;
  1299. wcd_mbhc_cfg.calibration = mbhc_calibration;
  1300. if (!is_wcd937x)
  1301. ret = wcd938x_mbhc_hs_detect(component, &wcd_mbhc_cfg);
  1302. else
  1303. ret = wcd937x_mbhc_hs_detect(component, &wcd_mbhc_cfg);
  1304. if (ret) {
  1305. dev_err(component->dev, "%s: mbhc hs detect failed, err:%d\n",
  1306. __func__, ret);
  1307. goto err_hs_detect;
  1308. }
  1309. return 0;
  1310. err_hs_detect:
  1311. kfree(mbhc_calibration);
  1312. err:
  1313. pr_err("%s:: return %d \n", __func__, ret);
  1314. return ret;
  1315. }
  1316. static int msm_int_wsa_init(struct snd_soc_pcm_runtime *rtd)
  1317. {
  1318. struct msm_asoc_mach_data *pdata =
  1319. snd_soc_card_get_drvdata(rtd->card);
  1320. int ret = 0;
  1321. if (pdata->wsa_max_devs == 0)
  1322. pr_info("%s: WSA is not enabled\n", __func__);
  1323. msm_common_dai_link_init(rtd);
  1324. return ret;
  1325. }
  1326. static int holi_ssr_enable(struct device *dev, void *data)
  1327. {
  1328. struct platform_device *pdev = to_platform_device(dev);
  1329. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1330. int ret = 0;
  1331. if (!card) {
  1332. dev_err(dev, "%s: card is NULL\n", __func__);
  1333. ret = -EINVAL;
  1334. goto err;
  1335. }
  1336. if (!strcmp(card->name, "holi-stub-snd-card")) {
  1337. /* TODO */
  1338. dev_dbg(dev, "%s: TODO \n", __func__);
  1339. }
  1340. snd_card_notify_user(SND_CARD_STATUS_ONLINE);
  1341. dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
  1342. err:
  1343. return ret;
  1344. }
  1345. static void holi_ssr_disable(struct device *dev, void *data)
  1346. {
  1347. struct platform_device *pdev = to_platform_device(dev);
  1348. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1349. if (!card) {
  1350. dev_err(dev, "%s: card is NULL\n", __func__);
  1351. return;
  1352. }
  1353. dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
  1354. snd_card_notify_user(SND_CARD_STATUS_OFFLINE);
  1355. if (!strcmp(card->name, "holi-stub-snd-card")) {
  1356. /* TODO */
  1357. dev_dbg(dev, "%s: TODO \n", __func__);
  1358. }
  1359. }
  1360. static const struct snd_event_ops holi_ssr_ops = {
  1361. .enable = holi_ssr_enable,
  1362. .disable = holi_ssr_disable,
  1363. };
  1364. static int msm_audio_ssr_compare(struct device *dev, void *data)
  1365. {
  1366. struct device_node *node = data;
  1367. dev_dbg(dev, "%s: dev->of_node = 0x%p, node = 0x%p\n",
  1368. __func__, dev->of_node, node);
  1369. return (dev->of_node && dev->of_node == node);
  1370. }
  1371. static int msm_audio_ssr_register(struct device *dev)
  1372. {
  1373. struct device_node *np = dev->of_node;
  1374. struct snd_event_clients *ssr_clients = NULL;
  1375. struct device_node *node = NULL;
  1376. int ret = 0;
  1377. int i = 0;
  1378. for (i = 0; ; i++) {
  1379. node = of_parse_phandle(np, "qcom,msm_audio_ssr_devs", i);
  1380. if (!node)
  1381. break;
  1382. snd_event_mstr_add_client(&ssr_clients,
  1383. msm_audio_ssr_compare, node);
  1384. }
  1385. ret = snd_event_master_register(dev, &holi_ssr_ops,
  1386. ssr_clients, NULL);
  1387. if (!ret)
  1388. snd_event_notify(dev, SND_EVENT_UP);
  1389. return ret;
  1390. }
  1391. static int msm_asoc_parse_soundcard_name(struct platform_device *pdev,
  1392. struct snd_soc_card *card)
  1393. {
  1394. struct nvmem_cell *cell;
  1395. size_t len;
  1396. u32 *buf;
  1397. u32 adsp_var_idx = 0;
  1398. int ret = 0;
  1399. /* get adsp variant idx */
  1400. cell = nvmem_cell_get(&pdev->dev, "adsp_variant");
  1401. if (IS_ERR_OR_NULL(cell)) {
  1402. dev_dbg(&pdev->dev, "%s: FAILED to get nvmem cell \n", __func__);
  1403. goto parse;
  1404. }
  1405. buf = nvmem_cell_read(cell, &len);
  1406. nvmem_cell_put(cell);
  1407. if (IS_ERR_OR_NULL(buf)) {
  1408. dev_dbg(&pdev->dev, "%s: FAILED to read nvmem cell \n", __func__);
  1409. goto parse;
  1410. }
  1411. if (len <= 0 || len > sizeof(u32)) {
  1412. dev_dbg(&pdev->dev, "%s: nvmem cell length out of range: %d\n",
  1413. __func__, len);
  1414. kfree(buf);
  1415. goto parse;
  1416. }
  1417. memcpy(&adsp_var_idx, buf, len);
  1418. kfree(buf);
  1419. parse:
  1420. if(adsp_var_idx == 1)
  1421. ret = snd_soc_of_parse_card_name(card, "qcom,sku-model");
  1422. else
  1423. ret = snd_soc_of_parse_card_name(card, "qcom,model");
  1424. if (ret)
  1425. dev_err(&pdev->dev, "%s: parse card name failed, err:%d\n",
  1426. __func__, ret);
  1427. return ret;
  1428. }
  1429. static int msm_asoc_machine_probe(struct platform_device *pdev)
  1430. {
  1431. struct snd_soc_card *card = NULL;
  1432. struct msm_asoc_mach_data *pdata = NULL;
  1433. const char *mbhc_audio_jack_type = NULL;
  1434. int ret = 0;
  1435. uint index = 0;
  1436. struct clk *lpass_audio_hw_vote = NULL;
  1437. if (!pdev->dev.of_node) {
  1438. dev_err(&pdev->dev,
  1439. "%s: No platform supplied from device tree\n", __func__);
  1440. return -EINVAL;
  1441. }
  1442. pdata = devm_kzalloc(&pdev->dev,
  1443. sizeof(struct msm_asoc_mach_data), GFP_KERNEL);
  1444. if (!pdata)
  1445. return -ENOMEM;
  1446. of_property_read_u32(pdev->dev.of_node,
  1447. "qcom,wcd-disabled",
  1448. &pdata->wcd_disabled);
  1449. card = populate_snd_card_dailinks(&pdev->dev);
  1450. if (!card) {
  1451. dev_err(&pdev->dev, "%s: Card uninitialized\n", __func__);
  1452. ret = -EINVAL;
  1453. goto err;
  1454. }
  1455. card->dev = &pdev->dev;
  1456. platform_set_drvdata(pdev, card);
  1457. snd_soc_card_set_drvdata(card, pdata);
  1458. ret = msm_asoc_parse_soundcard_name(pdev, card);
  1459. if (ret) {
  1460. dev_err(&pdev->dev, "%s: parse soundcard name failed, err:%d\n",
  1461. __func__, ret);
  1462. goto err;
  1463. }
  1464. ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing");
  1465. if (ret) {
  1466. dev_err(&pdev->dev, "%s: parse audio routing failed, err:%d\n",
  1467. __func__, ret);
  1468. goto err;
  1469. }
  1470. ret = msm_populate_dai_link_component_of_node(card);
  1471. if (ret) {
  1472. ret = -EPROBE_DEFER;
  1473. goto err;
  1474. }
  1475. /* Get maximum WSA device count for this platform */
  1476. ret = of_property_read_u32(pdev->dev.of_node,
  1477. "qcom,wsa-max-devs", &pdata->wsa_max_devs);
  1478. if (ret) {
  1479. dev_err(&pdev->dev,
  1480. "%s: wsa-max-devs property missing in DT %s, ret = %d\n",
  1481. __func__, pdev->dev.of_node->full_name, ret);
  1482. pdata->wsa_max_devs = 0;
  1483. }
  1484. /* Make sure prefix string passed for each WSA device */
  1485. ret = of_property_count_strings(pdev->dev.of_node,
  1486. "qcom,wsa-aux-dev-prefix");
  1487. if (!ret) {
  1488. dev_err(&pdev->dev,
  1489. "%s: property %s not defined in DT\n",
  1490. __func__, "qcom,wsa-aux-dev-prefix");
  1491. }
  1492. ret = devm_snd_soc_register_card(&pdev->dev, card);
  1493. if (ret == -EPROBE_DEFER) {
  1494. if (codec_reg_done)
  1495. ret = -EINVAL;
  1496. goto err;
  1497. } else if (ret) {
  1498. dev_err(&pdev->dev, "%s: snd_soc_register_card failed (%d)\n",
  1499. __func__, ret);
  1500. goto err;
  1501. }
  1502. dev_info(&pdev->dev, "%s: Sound card %s registered\n",
  1503. __func__, card->name);
  1504. pdata->hph_en1_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1505. "qcom,hph-en1-gpio", 0);
  1506. if (!pdata->hph_en1_gpio_p) {
  1507. dev_dbg(&pdev->dev, "%s: property %s not detected in node %s\n",
  1508. __func__, "qcom,hph-en1-gpio",
  1509. pdev->dev.of_node->full_name);
  1510. }
  1511. pdata->hph_en0_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1512. "qcom,hph-en0-gpio", 0);
  1513. if (!pdata->hph_en0_gpio_p) {
  1514. dev_dbg(&pdev->dev, "%s: property %s not detected in node %s\n",
  1515. __func__, "qcom,hph-en0-gpio",
  1516. pdev->dev.of_node->full_name);
  1517. }
  1518. ret = of_property_read_string(pdev->dev.of_node,
  1519. "qcom,mbhc-audio-jack-type", &mbhc_audio_jack_type);
  1520. if (ret) {
  1521. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  1522. __func__, "qcom,mbhc-audio-jack-type",
  1523. pdev->dev.of_node->full_name);
  1524. dev_dbg(&pdev->dev, "Jack type properties set to default\n");
  1525. } else {
  1526. if (!strcmp(mbhc_audio_jack_type, "4-pole-jack")) {
  1527. wcd_mbhc_cfg.enable_anc_mic_detect = false;
  1528. dev_dbg(&pdev->dev, "This hardware has 4 pole jack");
  1529. } else if (!strcmp(mbhc_audio_jack_type, "5-pole-jack")) {
  1530. wcd_mbhc_cfg.enable_anc_mic_detect = true;
  1531. dev_dbg(&pdev->dev, "This hardware has 5 pole jack");
  1532. } else if (!strcmp(mbhc_audio_jack_type, "6-pole-jack")) {
  1533. wcd_mbhc_cfg.enable_anc_mic_detect = true;
  1534. dev_dbg(&pdev->dev, "This hardware has 6 pole jack");
  1535. } else {
  1536. wcd_mbhc_cfg.enable_anc_mic_detect = false;
  1537. dev_dbg(&pdev->dev, "Unknown value, set to default\n");
  1538. }
  1539. }
  1540. /*
  1541. * Parse US-Euro gpio info from DT. Report no error if us-euro
  1542. * entry is not found in DT file as some targets do not support
  1543. * US-Euro detection
  1544. */
  1545. pdata->us_euro_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1546. "qcom,us-euro-gpios", 0);
  1547. if (!pdata->us_euro_gpio_p) {
  1548. dev_dbg(&pdev->dev, "property %s not detected in node %s",
  1549. "qcom,us-euro-gpios", pdev->dev.of_node->full_name);
  1550. } else {
  1551. dev_dbg(&pdev->dev, "%s detected\n",
  1552. "qcom,us-euro-gpios");
  1553. wcd_mbhc_cfg.swap_gnd_mic = msm_swap_gnd_mic;
  1554. }
  1555. if (wcd_mbhc_cfg.enable_usbc_analog)
  1556. wcd_mbhc_cfg.swap_gnd_mic = msm_usbc_swap_gnd_mic;
  1557. pdata->fsa_handle = of_parse_phandle(pdev->dev.of_node,
  1558. "fsa4480-i2c-handle", 0);
  1559. if (!pdata->fsa_handle)
  1560. dev_dbg(&pdev->dev, "property %s not detected in node %s\n",
  1561. "fsa4480-i2c-handle", pdev->dev.of_node->full_name);
  1562. pdata->dmic01_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1563. "qcom,cdc-dmic01-gpios",
  1564. 0);
  1565. pdata->dmic23_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1566. "qcom,cdc-dmic23-gpios",
  1567. 0);
  1568. pdata->dmic45_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1569. "qcom,cdc-dmic45-gpios",
  1570. 0);
  1571. if (pdata->dmic01_gpio_p)
  1572. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic01_gpio_p, false);
  1573. if (pdata->dmic23_gpio_p)
  1574. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic23_gpio_p, false);
  1575. if (pdata->dmic45_gpio_p)
  1576. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic45_gpio_p, false);
  1577. pdata->mi2s_gpio_p[PRIM_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1578. "qcom,pri-mi2s-gpios", 0);
  1579. pdata->mi2s_gpio_p[SEC_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1580. "qcom,sec-mi2s-gpios", 0);
  1581. pdata->mi2s_gpio_p[TERT_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1582. "qcom,tert-mi2s-gpios", 0);
  1583. pdata->mi2s_gpio_p[QUAT_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1584. "qcom,quat-mi2s-gpios", 0);
  1585. for (index = PRIM_MI2S; index < MI2S_MAX; index++)
  1586. atomic_set(&(pdata->mi2s_gpio_ref_count[index]), 0);
  1587. /* Register LPASS audio hw vote */
  1588. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1589. if (IS_ERR(lpass_audio_hw_vote)) {
  1590. ret = PTR_ERR(lpass_audio_hw_vote);
  1591. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1592. __func__, "lpass_audio_hw_vote", ret);
  1593. lpass_audio_hw_vote = NULL;
  1594. ret = 0;
  1595. }
  1596. pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1597. pdata->core_audio_vote_count = 0;
  1598. msm_common_snd_init(pdev, card);
  1599. ret = msm_audio_ssr_register(&pdev->dev);
  1600. if (ret)
  1601. pr_err("%s: Registration with SND event FWK failed ret = %d\n",
  1602. __func__, ret);
  1603. is_initial_boot = true;
  1604. /* change card status to ONLINE */
  1605. dev_dbg(&pdev->dev, "%s: setting snd_card to ONLINE\n", __func__);
  1606. snd_card_set_card_status(SND_CARD_STATUS_ONLINE);
  1607. return 0;
  1608. err:
  1609. devm_kfree(&pdev->dev, pdata);
  1610. return ret;
  1611. }
  1612. static int msm_asoc_machine_remove(struct platform_device *pdev)
  1613. {
  1614. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1615. struct msm_asoc_mach_data *pdata = NULL;
  1616. struct msm_common_pdata *common_pdata = NULL;
  1617. if (card)
  1618. pdata = snd_soc_card_get_drvdata(card);
  1619. if (pdata)
  1620. common_pdata = pdata->common_pdata;
  1621. msm_common_snd_deinit(common_pdata);
  1622. snd_event_master_deregister(&pdev->dev);
  1623. snd_soc_unregister_card(card);
  1624. return 0;
  1625. }
  1626. static struct platform_driver holi_asoc_machine_driver = {
  1627. .driver = {
  1628. .name = DRV_NAME,
  1629. .owner = THIS_MODULE,
  1630. .pm = &snd_soc_pm_ops,
  1631. .of_match_table = holi_asoc_machine_of_match,
  1632. .suppress_bind_attrs = true,
  1633. },
  1634. .probe = msm_asoc_machine_probe,
  1635. .remove = msm_asoc_machine_remove,
  1636. };
  1637. static int __init msm_asoc_machine_init(void)
  1638. {
  1639. snd_card_sysfs_init();
  1640. return platform_driver_register(&holi_asoc_machine_driver);
  1641. }
  1642. module_init(msm_asoc_machine_init);
  1643. static void __exit msm_asoc_machine_exit(void)
  1644. {
  1645. platform_driver_unregister(&holi_asoc_machine_driver);
  1646. }
  1647. module_exit(msm_asoc_machine_exit);
  1648. MODULE_SOFTDEP("pre: bt_fm_slim");
  1649. MODULE_DESCRIPTION("ALSA SoC msm");
  1650. MODULE_LICENSE("GPL v2");
  1651. MODULE_ALIAS("platform:" DRV_NAME);
  1652. MODULE_DEVICE_TABLE(of, holi_asoc_machine_of_match);