kona.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/clk.h>
  6. #include <linux/delay.h>
  7. #include <linux/gpio.h>
  8. #include <linux/of_gpio.h>
  9. #include <linux/platform_device.h>
  10. #include <linux/slab.h>
  11. #include <linux/io.h>
  12. #include <linux/module.h>
  13. #include <linux/input.h>
  14. #include <linux/of_device.h>
  15. #include <linux/soc/qcom/fsa4480-i2c.h>
  16. #include <sound/control.h>
  17. #include <sound/core.h>
  18. #include <sound/soc.h>
  19. #include <sound/soc-dapm.h>
  20. #include <sound/pcm.h>
  21. #include <sound/pcm_params.h>
  22. #include <sound/info.h>
  23. #include <soc/snd_event.h>
  24. #include <dsp/audio_prm.h>
  25. #include <soc/swr-common.h>
  26. #include "device_event.h"
  27. #include "asoc/msm-cdc-pinctrl.h"
  28. #include "asoc/wcd-mbhc-v2.h"
  29. #include "codecs/wcd938x/wcd938x-mbhc.h"
  30. #include "codecs/wsa881x.h"
  31. #include "codecs/wcd938x/wcd938x.h"
  32. #include "codecs/bolero/bolero-cdc.h"
  33. #include <dt-bindings/sound/audio-codec-port-types.h>
  34. #include "codecs/bolero/wsa-macro.h"
  35. #include "kona-port-config.h"
  36. #include "msm-audio-defs.h"
  37. #include "msm_common.h"
  38. #define DRV_NAME "kona-asoc-snd"
  39. #define __CHIPSET__ "KONA "
  40. #define MSM_DAILINK_NAME(name) (__CHIPSET__#name)
  41. #define WCD9XXX_MBHC_DEF_RLOADS 5
  42. #define WCD9XXX_MBHC_DEF_BUTTONS 8
  43. #define CODEC_EXT_CLK_RATE 9600000
  44. #define DEV_NAME_STR_LEN 32
  45. #define WCD_MBHC_HS_V_MAX 1600
  46. #define WSA8810_NAME_1 "wsa881x.20170211"
  47. #define WSA8810_NAME_2 "wsa881x.20170212"
  48. #define WCN_CDC_SLIM_RX_CH_MAX 2
  49. #define WCN_CDC_SLIM_TX_CH_MAX 2
  50. struct msm_asoc_mach_data {
  51. struct snd_info_entry *codec_root;
  52. struct msm_common_pdata *common_pdata;
  53. int lito_v2_enabled;
  54. struct device_node *dmic01_gpio_p; /* used by pinctrl API */
  55. struct device_node *dmic23_gpio_p; /* used by pinctrl API */
  56. struct device_node *dmic45_gpio_p; /* used by pinctrl API */
  57. struct device_node *us_euro_gpio_p; /* used by pinctrl API */
  58. struct pinctrl *usbc_en2_gpio_p; /* used by pinctrl API */
  59. struct device_node *hph_en1_gpio_p; /* used by pinctrl API */
  60. struct device_node *hph_en0_gpio_p; /* used by pinctrl API */
  61. struct device_node *fsa_handle;
  62. };
  63. struct msm_wsa881x_dev_info {
  64. struct device_node *of_node;
  65. u32 index;
  66. };
  67. struct aux_codec_dev_info {
  68. struct device_node *of_node;
  69. u32 index;
  70. };
  71. static bool is_initial_boot;
  72. static bool codec_reg_done;
  73. static struct snd_soc_aux_dev *msm_aux_dev;
  74. static struct snd_soc_codec_conf *msm_codec_conf;
  75. static struct snd_soc_card snd_soc_card_kona_msm;
  76. static int dmic_0_1_gpio_cnt;
  77. static int dmic_2_3_gpio_cnt;
  78. static int dmic_4_5_gpio_cnt;
  79. static void *def_wcd_mbhc_cal(void);
  80. /*
  81. * Need to report LINEIN
  82. * if R/L channel impedance is larger than 5K ohm
  83. */
  84. static struct wcd_mbhc_config wcd_mbhc_cfg = {
  85. .read_fw_bin = false,
  86. .calibration = NULL,
  87. .detect_extn_cable = true,
  88. .mono_stero_detection = false,
  89. .swap_gnd_mic = NULL,
  90. .hs_ext_micbias = true,
  91. .key_code[0] = KEY_MEDIA,
  92. .key_code[1] = KEY_VOICECOMMAND,
  93. .key_code[2] = KEY_VOLUMEUP,
  94. .key_code[3] = KEY_VOLUMEDOWN,
  95. .key_code[4] = 0,
  96. .key_code[5] = 0,
  97. .key_code[6] = 0,
  98. .key_code[7] = 0,
  99. .linein_th = 5000,
  100. .moisture_en = false,
  101. .mbhc_micbias = MIC_BIAS_2,
  102. .anc_micbias = MIC_BIAS_2,
  103. .enable_anc_mic_detect = false,
  104. .moisture_duty_cycle_en = true,
  105. };
  106. static bool msm_usbc_swap_gnd_mic(struct snd_soc_component *component, bool active)
  107. {
  108. struct snd_soc_card *card = component->card;
  109. struct msm_asoc_mach_data *pdata =
  110. snd_soc_card_get_drvdata(card);
  111. if (!pdata->fsa_handle)
  112. return false;
  113. return fsa4480_switch_event(pdata->fsa_handle, FSA_MIC_GND_SWAP);
  114. }
  115. static bool msm_swap_gnd_mic(struct snd_soc_component *component, bool active)
  116. {
  117. int value = 0;
  118. bool ret = false;
  119. struct snd_soc_card *card;
  120. struct msm_asoc_mach_data *pdata;
  121. if (!component) {
  122. pr_err("%s component is NULL\n", __func__);
  123. return false;
  124. }
  125. card = component->card;
  126. pdata = snd_soc_card_get_drvdata(card);
  127. if (!pdata)
  128. return false;
  129. if (wcd_mbhc_cfg.enable_usbc_analog)
  130. return msm_usbc_swap_gnd_mic(component, active);
  131. /* if usbc is not defined, swap using us_euro_gpio_p */
  132. if (pdata->us_euro_gpio_p) {
  133. value = msm_cdc_pinctrl_get_state(
  134. pdata->us_euro_gpio_p);
  135. if (value)
  136. msm_cdc_pinctrl_select_sleep_state(
  137. pdata->us_euro_gpio_p);
  138. else
  139. msm_cdc_pinctrl_select_active_state(
  140. pdata->us_euro_gpio_p);
  141. dev_dbg(component->dev, "%s: swap select switch %d to %d\n",
  142. __func__, value, !value);
  143. ret = true;
  144. }
  145. return ret;
  146. }
  147. static int msm_dmic_event(struct snd_soc_dapm_widget *w,
  148. struct snd_kcontrol *kcontrol, int event)
  149. {
  150. struct msm_asoc_mach_data *pdata = NULL;
  151. struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
  152. int ret = 0;
  153. u32 dmic_idx;
  154. int *dmic_gpio_cnt;
  155. struct device_node *dmic_gpio;
  156. char *wname;
  157. wname = strpbrk(w->name, "012345");
  158. if (!wname) {
  159. dev_err(component->dev, "%s: widget not found\n", __func__);
  160. return -EINVAL;
  161. }
  162. ret = kstrtouint(wname, 10, &dmic_idx);
  163. if (ret < 0) {
  164. dev_err(component->dev, "%s: Invalid DMIC line on the codec\n",
  165. __func__);
  166. return -EINVAL;
  167. }
  168. pdata = snd_soc_card_get_drvdata(component->card);
  169. switch (dmic_idx) {
  170. case 0:
  171. case 1:
  172. dmic_gpio_cnt = &dmic_0_1_gpio_cnt;
  173. dmic_gpio = pdata->dmic01_gpio_p;
  174. break;
  175. case 2:
  176. case 3:
  177. dmic_gpio_cnt = &dmic_2_3_gpio_cnt;
  178. dmic_gpio = pdata->dmic23_gpio_p;
  179. break;
  180. case 4:
  181. case 5:
  182. dmic_gpio_cnt = &dmic_4_5_gpio_cnt;
  183. dmic_gpio = pdata->dmic45_gpio_p;
  184. break;
  185. default:
  186. dev_err(component->dev, "%s: Invalid DMIC Selection\n",
  187. __func__);
  188. return -EINVAL;
  189. }
  190. dev_dbg(component->dev, "%s: event %d DMIC%d dmic_gpio_cnt %d\n",
  191. __func__, event, dmic_idx, *dmic_gpio_cnt);
  192. switch (event) {
  193. case SND_SOC_DAPM_PRE_PMU:
  194. (*dmic_gpio_cnt)++;
  195. if (*dmic_gpio_cnt == 1) {
  196. ret = msm_cdc_pinctrl_select_active_state(
  197. dmic_gpio);
  198. if (ret < 0) {
  199. pr_err("%s: gpio set cannot be activated %sd",
  200. __func__, "dmic_gpio");
  201. return ret;
  202. }
  203. }
  204. break;
  205. case SND_SOC_DAPM_POST_PMD:
  206. (*dmic_gpio_cnt)--;
  207. if (*dmic_gpio_cnt == 0) {
  208. ret = msm_cdc_pinctrl_select_sleep_state(
  209. dmic_gpio);
  210. if (ret < 0) {
  211. pr_err("%s: gpio set cannot be de-activated %sd",
  212. __func__, "dmic_gpio");
  213. return ret;
  214. }
  215. }
  216. break;
  217. default:
  218. pr_err("%s: invalid DAPM event %d\n", __func__, event);
  219. return -EINVAL;
  220. }
  221. return 0;
  222. }
  223. static const struct snd_soc_dapm_widget msm_int_dapm_widgets[] = {
  224. SND_SOC_DAPM_MIC("Analog Mic1", NULL),
  225. SND_SOC_DAPM_MIC("Analog Mic2", NULL),
  226. SND_SOC_DAPM_MIC("Analog Mic3", NULL),
  227. SND_SOC_DAPM_MIC("Analog Mic4", NULL),
  228. SND_SOC_DAPM_MIC("Analog Mic5", NULL),
  229. SND_SOC_DAPM_MIC("Digital Mic0", msm_dmic_event),
  230. SND_SOC_DAPM_MIC("Digital Mic1", msm_dmic_event),
  231. SND_SOC_DAPM_MIC("Digital Mic2", msm_dmic_event),
  232. SND_SOC_DAPM_MIC("Digital Mic3", msm_dmic_event),
  233. SND_SOC_DAPM_MIC("Digital Mic4", msm_dmic_event),
  234. SND_SOC_DAPM_MIC("Digital Mic5", msm_dmic_event),
  235. SND_SOC_DAPM_MIC("Digital Mic6", NULL),
  236. SND_SOC_DAPM_MIC("Digital Mic7", NULL),
  237. };
  238. static int msm_int_audrx_init(struct snd_soc_pcm_runtime *rtd)
  239. {
  240. int ret = 0;
  241. struct snd_soc_component *component;
  242. struct snd_soc_dapm_context *dapm;
  243. struct snd_card *card;
  244. struct snd_info_entry *entry;
  245. struct snd_soc_component *aux_comp;
  246. struct msm_asoc_mach_data *pdata =
  247. snd_soc_card_get_drvdata(rtd->card);
  248. component = snd_soc_rtdcom_lookup(rtd, "bolero_codec");
  249. if (!component) {
  250. ret = -EINVAL;
  251. pr_err("%s: could not find component for bolero_codec\n",
  252. __func__);
  253. return ret;
  254. }
  255. dapm = snd_soc_component_get_dapm(component);
  256. snd_soc_dapm_new_controls(dapm, msm_int_dapm_widgets,
  257. ARRAY_SIZE(msm_int_dapm_widgets));
  258. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic0");
  259. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic1");
  260. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic2");
  261. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic3");
  262. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic4");
  263. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic5");
  264. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic6");
  265. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic7");
  266. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic1");
  267. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic2");
  268. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic3");
  269. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic4");
  270. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic5");
  271. snd_soc_dapm_ignore_suspend(dapm, "WSA_SPK1 OUT");
  272. snd_soc_dapm_ignore_suspend(dapm, "WSA_SPK2 OUT");
  273. snd_soc_dapm_ignore_suspend(dapm, "WSA AIF VI");
  274. snd_soc_dapm_ignore_suspend(dapm, "VIINPUT_WSA");
  275. snd_soc_dapm_sync(dapm);
  276. /*
  277. * Send speaker configuration only for WSA8810.
  278. * Default configuration is for WSA8815.
  279. */
  280. dev_dbg(component->dev, "%s: Number of aux devices: %d\n",
  281. __func__, rtd->card->num_aux_devs);
  282. if (rtd->card->num_aux_devs &&
  283. !list_empty(&rtd->card->component_dev_list)) {
  284. list_for_each_entry(aux_comp,
  285. &rtd->card->aux_comp_list,
  286. card_aux_list) {
  287. if (aux_comp->name != NULL && (
  288. !strcmp(aux_comp->name, WSA8810_NAME_1) ||
  289. !strcmp(aux_comp->name, WSA8810_NAME_2))) {
  290. wsa_macro_set_spkr_mode(component,
  291. WSA_MACRO_SPKR_MODE_1);
  292. wsa_macro_set_spkr_gain_offset(component,
  293. WSA_MACRO_GAIN_OFFSET_M1P5_DB);
  294. }
  295. }
  296. if (pdata->lito_v2_enabled) {
  297. /*
  298. * Enable tx data line3 for saipan version v2 amd
  299. * write corresponding lpi register.
  300. */
  301. bolero_set_port_map(component, ARRAY_SIZE(sm_port_map_v2),
  302. sm_port_map_v2);
  303. } else {
  304. bolero_set_port_map(component, ARRAY_SIZE(sm_port_map),
  305. sm_port_map);
  306. }
  307. }
  308. card = rtd->card->snd_card;
  309. if (!pdata->codec_root) {
  310. entry = snd_info_create_subdir(card->module, "codecs",
  311. card->proc_root);
  312. if (!entry) {
  313. pr_debug("%s: Cannot create codecs module entry\n",
  314. __func__);
  315. ret = 0;
  316. goto err;
  317. }
  318. pdata->codec_root = entry;
  319. }
  320. bolero_info_create_codec_entry(pdata->codec_root, component);
  321. bolero_register_wake_irq(component, false);
  322. codec_reg_done = true;
  323. msm_common_dai_link_init(rtd);
  324. return 0;
  325. err:
  326. return ret;
  327. }
  328. static void *def_wcd_mbhc_cal(void)
  329. {
  330. void *wcd_mbhc_cal;
  331. struct wcd_mbhc_btn_detect_cfg *btn_cfg;
  332. u16 *btn_high;
  333. wcd_mbhc_cal = kzalloc(WCD_MBHC_CAL_SIZE(WCD_MBHC_DEF_BUTTONS,
  334. WCD9XXX_MBHC_DEF_RLOADS), GFP_KERNEL);
  335. if (!wcd_mbhc_cal)
  336. return NULL;
  337. WCD_MBHC_CAL_PLUG_TYPE_PTR(wcd_mbhc_cal)->v_hs_max = WCD_MBHC_HS_V_MAX;
  338. WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal)->num_btn = WCD_MBHC_DEF_BUTTONS;
  339. btn_cfg = WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal);
  340. btn_high = ((void *)&btn_cfg->_v_btn_low) +
  341. (sizeof(btn_cfg->_v_btn_low[0]) * btn_cfg->num_btn);
  342. btn_high[0] = 75;
  343. btn_high[1] = 150;
  344. btn_high[2] = 237;
  345. btn_high[3] = 500;
  346. btn_high[4] = 500;
  347. btn_high[5] = 500;
  348. btn_high[6] = 500;
  349. btn_high[7] = 500;
  350. return wcd_mbhc_cal;
  351. }
  352. static int msm_wcn_init(struct snd_soc_pcm_runtime *rtd)
  353. {
  354. unsigned int rx_ch[WCN_CDC_SLIM_RX_CH_MAX] = {157, 158};
  355. unsigned int tx_ch[WCN_CDC_SLIM_TX_CH_MAX] = {159, 160};
  356. struct snd_soc_dai *codec_dai = rtd->codec_dai;
  357. int ret = 0;
  358. ret = snd_soc_dai_set_channel_map(codec_dai, ARRAY_SIZE(tx_ch),
  359. tx_ch, ARRAY_SIZE(rx_ch), rx_ch);
  360. if (ret)
  361. return ret;
  362. msm_common_dai_link_init(rtd);
  363. return ret;
  364. }
  365. static struct snd_soc_ops msm_common_be_ops = {
  366. .startup = msm_common_snd_startup,
  367. .shutdown = msm_common_snd_shutdown,
  368. };
  369. /* Digital audio interface glue - connects codec <---> CPU */
  370. static struct snd_soc_dai_link msm_common_dai_links[] = {
  371. {
  372. .name = LPASS_BE_WSA_CDC_DMA_RX_0,
  373. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_0,
  374. .cpu_dai_name = "snd-soc-dummy-dai",
  375. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  376. .dpcm_playback = 1,
  377. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  378. SND_SOC_DPCM_TRIGGER_POST},
  379. .codec_dai_name = "wsa_macro_rx1",
  380. .codec_name = "bolero_codec",
  381. .init = &msm_int_audrx_init,
  382. .ops = &msm_common_be_ops,
  383. .ignore_suspend = 1,
  384. /* this dainlink has playback support */
  385. .ignore_pmdown_time = 1,
  386. },
  387. {
  388. .name = LPASS_BE_WSA_CDC_DMA_RX_1,
  389. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_1,
  390. .cpu_dai_name = "snd-soc-dummy-dai",
  391. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  392. .dpcm_playback = 1,
  393. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  394. SND_SOC_DPCM_TRIGGER_POST},
  395. .codec_dai_name = "wsa_macro_rx_mix",
  396. .codec_name = "bolero_codec",
  397. .ops = &msm_common_be_ops,
  398. .ignore_suspend = 1,
  399. /* this dainlink has playback support */
  400. .ignore_pmdown_time = 1,
  401. },
  402. {
  403. .name = LPASS_BE_WSA_CDC_DMA_TX_1,
  404. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_1,
  405. .cpu_dai_name = "snd-soc-dummy-dai",
  406. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  407. .dpcm_capture = 1,
  408. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  409. SND_SOC_DPCM_TRIGGER_POST},
  410. .codec_dai_name = "wsa_macro_echo",
  411. .codec_name = "bolero_codec",
  412. .ops = &msm_common_be_ops,
  413. .ignore_suspend = 1,
  414. },
  415. {
  416. .name = LPASS_BE_RX_CDC_DMA_RX_0,
  417. .stream_name = LPASS_BE_RX_CDC_DMA_RX_0,
  418. .cpu_dai_name = "snd-soc-dummy-dai",
  419. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  420. .dpcm_playback = 1,
  421. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  422. SND_SOC_DPCM_TRIGGER_POST},
  423. .codec_dai_name = "rx_macro_rx1",
  424. .codec_name = "bolero_codec",
  425. .ops = &msm_common_be_ops,
  426. .ignore_suspend = 1,
  427. /* this dainlink has playback support */
  428. .ignore_pmdown_time = 1,
  429. },
  430. {
  431. .name = LPASS_BE_RX_CDC_DMA_RX_1,
  432. .stream_name = LPASS_BE_RX_CDC_DMA_RX_1,
  433. .cpu_dai_name = "snd-soc-dummy-dai",
  434. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  435. .dpcm_playback = 1,
  436. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  437. SND_SOC_DPCM_TRIGGER_POST},
  438. .codec_dai_name = "rx_macro_rx2",
  439. .codec_name = "bolero_codec",
  440. .ops = &msm_common_be_ops,
  441. .ignore_suspend = 1,
  442. /* this dainlink has playback support */
  443. .ignore_pmdown_time = 1,
  444. },
  445. {
  446. .name = LPASS_BE_RX_CDC_DMA_RX_2,
  447. .stream_name = LPASS_BE_RX_CDC_DMA_RX_2,
  448. .cpu_dai_name = "snd-soc-dummy-dai",
  449. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  450. .dpcm_playback = 1,
  451. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  452. SND_SOC_DPCM_TRIGGER_POST},
  453. .codec_dai_name = "rx_macro_rx3",
  454. .codec_name = "bolero_codec",
  455. .ops = &msm_common_be_ops,
  456. .ignore_suspend = 1,
  457. /* this dainlink has playback support */
  458. .ignore_pmdown_time = 1,
  459. },
  460. {
  461. .name = LPASS_BE_RX_CDC_DMA_RX_3,
  462. .stream_name = LPASS_BE_RX_CDC_DMA_RX_3,
  463. .cpu_dai_name = "snd-soc-dummy-dai",
  464. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  465. .dpcm_playback = 1,
  466. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  467. SND_SOC_DPCM_TRIGGER_POST},
  468. .codec_dai_name = "rx_macro_rx4",
  469. .codec_name = "bolero_codec",
  470. .ops = &msm_common_be_ops,
  471. .ignore_suspend = 1,
  472. /* this dainlink has playback support */
  473. .ignore_pmdown_time = 1,
  474. },
  475. {
  476. .name = LPASS_BE_TX_CDC_DMA_TX_3,
  477. .stream_name = LPASS_BE_TX_CDC_DMA_TX_3,
  478. .cpu_dai_name = "snd-soc-dummy-dai",
  479. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  480. .dpcm_capture = 1,
  481. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  482. SND_SOC_DPCM_TRIGGER_POST},
  483. .codec_dai_name = "tx_macro_tx1",
  484. .codec_name = "bolero_codec",
  485. .ops = &msm_common_be_ops,
  486. .ignore_suspend = 1,
  487. },
  488. {
  489. .name = LPASS_BE_TX_CDC_DMA_TX_4,
  490. .stream_name = LPASS_BE_TX_CDC_DMA_TX_4,
  491. .cpu_dai_name = "snd-soc-dummy-dai",
  492. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  493. .dpcm_capture = 1,
  494. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  495. SND_SOC_DPCM_TRIGGER_POST},
  496. .codec_dai_name = "tx_macro_tx2",
  497. .codec_name = "bolero_codec",
  498. .ops = &msm_common_be_ops,
  499. .ignore_suspend = 1,
  500. },
  501. {
  502. .name = LPASS_BE_VA_CDC_DMA_TX_0,
  503. .stream_name = LPASS_BE_VA_CDC_DMA_TX_0,
  504. .cpu_dai_name = "snd-soc-dummy-dai",
  505. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  506. .dpcm_capture = 1,
  507. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  508. SND_SOC_DPCM_TRIGGER_POST},
  509. .codec_dai_name = "va_macro_tx1",
  510. .codec_name = "bolero_codec",
  511. .ops = &msm_common_be_ops,
  512. .ignore_suspend = 1,
  513. },
  514. {
  515. .name = LPASS_BE_VA_CDC_DMA_TX_1,
  516. .stream_name = LPASS_BE_VA_CDC_DMA_TX_1,
  517. .cpu_dai_name = "snd-soc-dummy-dai",
  518. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  519. .dpcm_capture = 1,
  520. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  521. SND_SOC_DPCM_TRIGGER_POST},
  522. .codec_dai_name = "va_macro_tx2",
  523. .codec_name = "bolero_codec",
  524. .ops = &msm_common_be_ops,
  525. .ignore_suspend = 1,
  526. },
  527. {
  528. .name = LPASS_BE_VA_CDC_DMA_TX_2,
  529. .stream_name = LPASS_BE_VA_CDC_DMA_TX_2,
  530. .cpu_dai_name = "snd-soc-dummy-dai",
  531. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  532. .dpcm_capture = 1,
  533. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  534. SND_SOC_DPCM_TRIGGER_POST},
  535. .codec_dai_name = "va_macro_tx3",
  536. .codec_name = "bolero_codec",
  537. .ops = &msm_common_be_ops,
  538. .ignore_suspend = 1,
  539. },
  540. {
  541. .name = LPASS_BE_SLIMBUS_7_RX,
  542. .stream_name = LPASS_BE_SLIMBUS_7_RX,
  543. .cpu_dai_name = "snd-soc-dummy-dai",
  544. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  545. .dpcm_playback = 1,
  546. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  547. SND_SOC_DPCM_TRIGGER_POST},
  548. .codec_name = "btfmslim_slave",
  549. .ops = &msm_common_be_ops,
  550. .codec_dai_name = "btfm_bt_sco_a2dp_slim_rx",
  551. .ignore_suspend = 1,
  552. /* this dainlink has playback support */
  553. .ignore_pmdown_time = 1,
  554. .init = &msm_wcn_init,
  555. },
  556. {
  557. .name = LPASS_BE_SLIMBUS_7_TX,
  558. .stream_name = LPASS_BE_SLIMBUS_7_TX,
  559. .cpu_dai_name = "snd-soc-dummy-dai",
  560. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  561. .dpcm_capture = 1,
  562. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  563. SND_SOC_DPCM_TRIGGER_POST},
  564. .codec_name = "btfmslim_slave",
  565. .ops = &msm_common_be_ops,
  566. .codec_dai_name = "btfm_bt_sco_slim_tx",
  567. .ignore_suspend = 1,
  568. },
  569. {
  570. .name = LPASS_BE_DISPLAY_PORT_RX,
  571. .stream_name = LPASS_BE_DISPLAY_PORT_RX,
  572. .cpu_dai_name = "snd-soc-dummy-dai",
  573. .codec_name = "msm-ext-disp-audio-codec-rx",
  574. .codec_dai_name = "msm_dp_audio_codec_rx_dai",
  575. .dpcm_playback = 1,
  576. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  577. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  578. SND_SOC_DPCM_TRIGGER_POST},
  579. .ignore_pmdown_time = 1,
  580. .ignore_suspend = 1,
  581. .ops = &msm_common_be_ops,
  582. },
  583. {
  584. .name = LPASS_BE_USB_AUDIO_RX,
  585. .stream_name = LPASS_BE_USB_AUDIO_RX,
  586. .cpu_dai_name = "snd-soc-dummy-dai",
  587. .codec_name = "snd-soc-dummy",
  588. .codec_dai_name = "snd-soc-dummy-dai",
  589. .dpcm_playback = 1,
  590. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  591. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  592. SND_SOC_DPCM_TRIGGER_POST},
  593. .ignore_suspend = 1,
  594. .ops = &msm_common_be_ops,
  595. },
  596. {
  597. .name = LPASS_BE_USB_AUDIO_TX,
  598. .stream_name = LPASS_BE_USB_AUDIO_TX,
  599. .cpu_dai_name = "snd-soc-dummy-dai",
  600. .codec_name = "snd-soc-dummy",
  601. .codec_dai_name = "snd-soc-dummy-dai",
  602. .dpcm_capture = 1,
  603. .async_ops = ASYNC_DPCM_SND_SOC_PREPARE,
  604. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  605. SND_SOC_DPCM_TRIGGER_POST},
  606. .ignore_suspend = 1,
  607. .ops = &msm_common_be_ops,
  608. },
  609. };
  610. static struct snd_soc_dai_link msm_kona_dai_links[
  611. ARRAY_SIZE(msm_common_dai_links)];
  612. static int msm_populate_dai_link_component_of_node(
  613. struct snd_soc_card *card)
  614. {
  615. int i, index, ret = 0;
  616. struct device *cdev = card->dev;
  617. struct snd_soc_dai_link *dai_link = card->dai_link;
  618. struct device_node *np;
  619. if (!cdev) {
  620. dev_err(cdev, "%s: Sound card device memory NULL\n", __func__);
  621. return -ENODEV;
  622. }
  623. for (i = 0; i < card->num_links; i++) {
  624. if (dai_link[i].init == NULL)
  625. dai_link[i].init = &msm_common_dai_link_init;
  626. /* populate codec_of_node for snd card dai links */
  627. if (dai_link[i].codec_name && !dai_link[i].codec_of_node) {
  628. index = of_property_match_string(cdev->of_node,
  629. "asoc-codec-names",
  630. dai_link[i].codec_name);
  631. if (index < 0)
  632. continue;
  633. np = of_parse_phandle(cdev->of_node, "asoc-codec",
  634. index);
  635. if (!np) {
  636. dev_err(cdev, "%s: retrieving phandle for codec %s failed\n",
  637. __func__, dai_link[i].codec_name);
  638. ret = -ENODEV;
  639. goto err;
  640. }
  641. dai_link[i].codec_of_node = np;
  642. dai_link[i].codec_name = NULL;
  643. }
  644. }
  645. err:
  646. return ret;
  647. }
  648. static int msm_audrx_stub_init(struct snd_soc_pcm_runtime *rtd)
  649. {
  650. return 0;
  651. }
  652. static int msm_snd_stub_hw_params(struct snd_pcm_substream *substream,
  653. struct snd_pcm_hw_params *params)
  654. {
  655. return 0;
  656. }
  657. static struct snd_soc_ops msm_stub_be_ops = {
  658. .hw_params = msm_snd_stub_hw_params,
  659. };
  660. struct snd_soc_card snd_soc_card_stub_msm = {
  661. .name = "kona-stub-snd-card",
  662. };
  663. static struct snd_soc_dai_link msm_stub_be_dai_links[] = {
  664. /* Backend DAI Links */
  665. {
  666. .name = LPASS_BE_PRI_AUXPCM_RX,
  667. .stream_name = LPASS_BE_PRI_AUXPCM_RX,
  668. .cpu_dai_name = "snd-soc-dummy-dai",
  669. .codec_name = "msm-stub-codec.1",
  670. .codec_dai_name = "msm-stub-rx",
  671. .dpcm_playback = 1,
  672. .init = &msm_audrx_stub_init,
  673. .ignore_pmdown_time = 1,
  674. .ignore_suspend = 1,
  675. .ops = &msm_stub_be_ops,
  676. },
  677. {
  678. .name = LPASS_BE_PRI_AUXPCM_TX,
  679. .stream_name = LPASS_BE_PRI_AUXPCM_RX,
  680. .cpu_dai_name = "snd-soc-dummy-dai",
  681. .codec_name = "msm-stub-codec.1",
  682. .codec_dai_name = "msm-stub-tx",
  683. .dpcm_capture = 1,
  684. .ignore_suspend = 1,
  685. .ops = &msm_stub_be_ops,
  686. },
  687. };
  688. static struct snd_soc_dai_link msm_stub_dai_links[
  689. ARRAY_SIZE(msm_stub_be_dai_links)];
  690. static const struct of_device_id kona_asoc_machine_of_match[] = {
  691. { .compatible = "qcom,kona-asoc-snd",
  692. .data = "codec"},
  693. { .compatible = "qcom,kona-asoc-snd-stub",
  694. .data = "stub_codec"},
  695. {},
  696. };
  697. static struct snd_soc_card *populate_snd_card_dailinks(struct device *dev)
  698. {
  699. struct snd_soc_card *card = NULL;
  700. struct snd_soc_dai_link *dailink = NULL;
  701. int total_links = 0;
  702. const struct of_device_id *match;
  703. match = of_match_node(kona_asoc_machine_of_match, dev->of_node);
  704. if (!match) {
  705. dev_err(dev, "%s: No DT match found for sound card\n",
  706. __func__);
  707. return NULL;
  708. }
  709. if (!strcmp(match->data, "codec")) {
  710. card = &snd_soc_card_kona_msm;
  711. memcpy(msm_kona_dai_links,
  712. msm_common_dai_links,
  713. sizeof(msm_common_dai_links));
  714. total_links += ARRAY_SIZE(msm_common_dai_links);
  715. dailink = msm_kona_dai_links;
  716. } else if(!strcmp(match->data, "stub_codec")) {
  717. card = &snd_soc_card_stub_msm;
  718. memcpy(msm_stub_dai_links,
  719. msm_stub_be_dai_links,
  720. sizeof(msm_stub_be_dai_links));
  721. total_links = ARRAY_SIZE(msm_stub_be_dai_links);
  722. dailink = msm_stub_dai_links;
  723. }
  724. if (card) {
  725. card->dai_link = dailink;
  726. card->num_links = total_links;
  727. }
  728. return card;
  729. }
  730. static int msm_wsa881x_init(struct snd_soc_component *component)
  731. {
  732. u8 spkleft_ports[WSA881X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  733. u8 spkright_ports[WSA881X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  734. u8 spkleft_port_types[WSA881X_MAX_SWR_PORTS] = {SPKR_L, SPKR_L_COMP,
  735. SPKR_L_BOOST, SPKR_L_VI};
  736. u8 spkright_port_types[WSA881X_MAX_SWR_PORTS] = {SPKR_R, SPKR_R_COMP,
  737. SPKR_R_BOOST, SPKR_R_VI};
  738. unsigned int ch_rate[WSA881X_MAX_SWR_PORTS] = {2400, 600, 300, 1200};
  739. unsigned int ch_mask[WSA881X_MAX_SWR_PORTS] = {0x1, 0xF, 0x3, 0x3};
  740. struct msm_asoc_mach_data *pdata;
  741. struct snd_soc_dapm_context *dapm;
  742. struct snd_card *card;
  743. struct snd_info_entry *entry;
  744. int ret = 0;
  745. if (!component) {
  746. pr_err("%s component is NULL\n", __func__);
  747. return -EINVAL;
  748. }
  749. card = component->card->snd_card;
  750. dapm = snd_soc_component_get_dapm(component);
  751. if (!strcmp(component->name_prefix, "SpkrLeft")) {
  752. dev_dbg(component->dev, "%s: setting left ch map to codec %s\n",
  753. __func__, component->name);
  754. wsa881x_set_channel_map(component, &spkleft_ports[0],
  755. WSA881X_MAX_SWR_PORTS, &ch_mask[0],
  756. &ch_rate[0], &spkleft_port_types[0]);
  757. if (dapm->component) {
  758. snd_soc_dapm_ignore_suspend(dapm, "SpkrLeft IN");
  759. snd_soc_dapm_ignore_suspend(dapm, "SpkrLeft SPKR");
  760. }
  761. } else if (!strcmp(component->name_prefix, "SpkrRight")) {
  762. dev_dbg(component->dev, "%s: setting right ch map to codec %s\n",
  763. __func__, component->name);
  764. wsa881x_set_channel_map(component, &spkright_ports[0],
  765. WSA881X_MAX_SWR_PORTS, &ch_mask[0],
  766. &ch_rate[0], &spkright_port_types[0]);
  767. if (dapm->component) {
  768. snd_soc_dapm_ignore_suspend(dapm, "SpkrRight IN");
  769. snd_soc_dapm_ignore_suspend(dapm, "SpkrRight SPKR");
  770. }
  771. } else {
  772. dev_err(component->dev, "%s: wrong codec name %s\n", __func__,
  773. component->name);
  774. ret = -EINVAL;
  775. goto err;
  776. }
  777. pdata = snd_soc_card_get_drvdata(component->card);
  778. if (!pdata->codec_root) {
  779. entry = snd_info_create_subdir(card->module, "codecs",
  780. card->proc_root);
  781. if (!entry) {
  782. pr_err("%s: Cannot create codecs module entry\n",
  783. __func__);
  784. ret = 0;
  785. goto err;
  786. }
  787. pdata->codec_root = entry;
  788. }
  789. wsa881x_codec_info_create_codec_entry(pdata->codec_root,
  790. component);
  791. err:
  792. return ret;
  793. }
  794. static int msm_aux_codec_init(struct snd_soc_component *component)
  795. {
  796. struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
  797. int ret = 0;
  798. int codec_variant = -1;
  799. void *mbhc_calibration;
  800. struct snd_info_entry *entry;
  801. struct snd_card *card = component->card->snd_card;
  802. struct msm_asoc_mach_data *pdata;
  803. snd_soc_dapm_ignore_suspend(dapm, "EAR");
  804. snd_soc_dapm_ignore_suspend(dapm, "AUX");
  805. snd_soc_dapm_ignore_suspend(dapm, "HPHL");
  806. snd_soc_dapm_ignore_suspend(dapm, "HPHR");
  807. snd_soc_dapm_ignore_suspend(dapm, "AMIC1");
  808. snd_soc_dapm_ignore_suspend(dapm, "AMIC2");
  809. snd_soc_dapm_ignore_suspend(dapm, "AMIC3");
  810. snd_soc_dapm_ignore_suspend(dapm, "AMIC4");
  811. snd_soc_dapm_sync(dapm);
  812. pdata = snd_soc_card_get_drvdata(component->card);
  813. if (!pdata->codec_root) {
  814. entry = snd_info_create_subdir(card->module, "codecs",
  815. card->proc_root);
  816. if (!entry) {
  817. dev_dbg(component->dev, "%s: Cannot create codecs module entry\n",
  818. __func__);
  819. ret = 0;
  820. goto mbhc_cfg_cal;
  821. }
  822. pdata->codec_root = entry;
  823. }
  824. wcd938x_info_create_codec_entry(pdata->codec_root, component);
  825. codec_variant = wcd938x_get_codec_variant(component);
  826. dev_dbg(component->dev, "%s: variant %d\n", __func__, codec_variant);
  827. mbhc_cfg_cal:
  828. mbhc_calibration = def_wcd_mbhc_cal();
  829. if (!mbhc_calibration)
  830. return -ENOMEM;
  831. wcd_mbhc_cfg.calibration = mbhc_calibration;
  832. ret = wcd938x_mbhc_hs_detect(component, &wcd_mbhc_cfg);
  833. if (ret) {
  834. dev_err(component->dev, "%s: mbhc hs detect failed, err:%d\n",
  835. __func__, ret);
  836. goto err_hs_detect;
  837. }
  838. return 0;
  839. err_hs_detect:
  840. kfree(mbhc_calibration);
  841. return ret;
  842. }
  843. static int msm_init_aux_dev(struct platform_device *pdev,
  844. struct snd_soc_card *card)
  845. {
  846. struct device_node *wsa_of_node;
  847. struct device_node *aux_codec_of_node;
  848. u32 wsa_max_devs;
  849. u32 wsa_dev_cnt;
  850. u32 codec_max_aux_devs = 0;
  851. u32 codec_aux_dev_cnt = 0;
  852. int i;
  853. struct msm_wsa881x_dev_info *wsa881x_dev_info;
  854. struct aux_codec_dev_info *aux_cdc_dev_info;
  855. const char *auxdev_name_prefix[1];
  856. char *dev_name_str = NULL;
  857. int found = 0;
  858. int codecs_found = 0;
  859. int ret = 0;
  860. /* Get maximum WSA device count for this platform */
  861. ret = of_property_read_u32(pdev->dev.of_node,
  862. "qcom,wsa-max-devs", &wsa_max_devs);
  863. if (ret) {
  864. dev_info(&pdev->dev,
  865. "%s: wsa-max-devs property missing in DT %s, ret = %d\n",
  866. __func__, pdev->dev.of_node->full_name, ret);
  867. wsa_max_devs = 0;
  868. goto codec_aux_dev;
  869. }
  870. if (wsa_max_devs == 0) {
  871. dev_warn(&pdev->dev,
  872. "%s: Max WSA devices is 0 for this target?\n",
  873. __func__);
  874. goto codec_aux_dev;
  875. }
  876. /* Get count of WSA device phandles for this platform */
  877. wsa_dev_cnt = of_count_phandle_with_args(pdev->dev.of_node,
  878. "qcom,wsa-devs", NULL);
  879. if (wsa_dev_cnt == -ENOENT) {
  880. dev_warn(&pdev->dev, "%s: No wsa device defined in DT.\n",
  881. __func__);
  882. goto err;
  883. } else if (wsa_dev_cnt <= 0) {
  884. dev_err(&pdev->dev,
  885. "%s: Error reading wsa device from DT. wsa_dev_cnt = %d\n",
  886. __func__, wsa_dev_cnt);
  887. ret = -EINVAL;
  888. goto err;
  889. }
  890. /*
  891. * Expect total phandles count to be NOT less than maximum possible
  892. * WSA count. However, if it is less, then assign same value to
  893. * max count as well.
  894. */
  895. if (wsa_dev_cnt < wsa_max_devs) {
  896. dev_dbg(&pdev->dev,
  897. "%s: wsa_max_devs = %d cannot exceed wsa_dev_cnt = %d\n",
  898. __func__, wsa_max_devs, wsa_dev_cnt);
  899. wsa_max_devs = wsa_dev_cnt;
  900. }
  901. /* Make sure prefix string passed for each WSA device */
  902. ret = of_property_count_strings(pdev->dev.of_node,
  903. "qcom,wsa-aux-dev-prefix");
  904. if (ret != wsa_dev_cnt) {
  905. dev_err(&pdev->dev,
  906. "%s: expecting %d wsa prefix. Defined only %d in DT\n",
  907. __func__, wsa_dev_cnt, ret);
  908. ret = -EINVAL;
  909. goto err;
  910. }
  911. /*
  912. * Alloc mem to store phandle and index info of WSA device, if already
  913. * registered with ALSA core
  914. */
  915. wsa881x_dev_info = devm_kcalloc(&pdev->dev, wsa_max_devs,
  916. sizeof(struct msm_wsa881x_dev_info),
  917. GFP_KERNEL);
  918. if (!wsa881x_dev_info) {
  919. ret = -ENOMEM;
  920. goto err;
  921. }
  922. /*
  923. * search and check whether all WSA devices are already
  924. * registered with ALSA core or not. If found a node, store
  925. * the node and the index in a local array of struct for later
  926. * use.
  927. */
  928. for (i = 0; i < wsa_dev_cnt; i++) {
  929. wsa_of_node = of_parse_phandle(pdev->dev.of_node,
  930. "qcom,wsa-devs", i);
  931. if (unlikely(!wsa_of_node)) {
  932. /* we should not be here */
  933. dev_err(&pdev->dev,
  934. "%s: wsa dev node is not present\n",
  935. __func__);
  936. ret = -EINVAL;
  937. goto err;
  938. }
  939. if (soc_find_component(wsa_of_node, NULL)) {
  940. /* WSA device registered with ALSA core */
  941. wsa881x_dev_info[found].of_node = wsa_of_node;
  942. wsa881x_dev_info[found].index = i;
  943. found++;
  944. if (found == wsa_max_devs)
  945. break;
  946. }
  947. }
  948. if (found < wsa_max_devs) {
  949. dev_dbg(&pdev->dev,
  950. "%s: failed to find %d components. Found only %d\n",
  951. __func__, wsa_max_devs, found);
  952. return -EPROBE_DEFER;
  953. }
  954. dev_info(&pdev->dev,
  955. "%s: found %d wsa881x devices registered with ALSA core\n",
  956. __func__, found);
  957. codec_aux_dev:
  958. /* Get maximum aux codec device count for this platform */
  959. ret = of_property_read_u32(pdev->dev.of_node,
  960. "qcom,codec-max-aux-devs",
  961. &codec_max_aux_devs);
  962. if (ret) {
  963. dev_err(&pdev->dev,
  964. "%s: codec-max-aux-devs property missing in DT %s, ret = %d\n",
  965. __func__, pdev->dev.of_node->full_name, ret);
  966. codec_max_aux_devs = 0;
  967. goto aux_dev_register;
  968. }
  969. if (codec_max_aux_devs == 0) {
  970. dev_dbg(&pdev->dev,
  971. "%s: Max aux codec devices is 0 for this target?\n",
  972. __func__);
  973. goto aux_dev_register;
  974. }
  975. /* Get count of aux codec device phandles for this platform */
  976. codec_aux_dev_cnt = of_count_phandle_with_args(
  977. pdev->dev.of_node,
  978. "qcom,codec-aux-devs", NULL);
  979. if (codec_aux_dev_cnt == -ENOENT) {
  980. dev_warn(&pdev->dev, "%s: No aux codec defined in DT.\n",
  981. __func__);
  982. goto err;
  983. } else if (codec_aux_dev_cnt <= 0) {
  984. dev_err(&pdev->dev,
  985. "%s: Error reading aux codec device from DT, dev_cnt=%d\n",
  986. __func__, codec_aux_dev_cnt);
  987. ret = -EINVAL;
  988. goto err;
  989. }
  990. /*
  991. * Expect total phandles count to be NOT less than maximum possible
  992. * AUX device count. However, if it is less, then assign same value to
  993. * max count as well.
  994. */
  995. if (codec_aux_dev_cnt < codec_max_aux_devs) {
  996. dev_dbg(&pdev->dev,
  997. "%s: codec_max_aux_devs = %d cannot exceed codec_aux_dev_cnt = %d\n",
  998. __func__, codec_max_aux_devs,
  999. codec_aux_dev_cnt);
  1000. codec_max_aux_devs = codec_aux_dev_cnt;
  1001. }
  1002. /*
  1003. * Alloc mem to store phandle and index info of aux codec
  1004. * if already registered with ALSA core
  1005. */
  1006. aux_cdc_dev_info = devm_kcalloc(&pdev->dev, codec_aux_dev_cnt,
  1007. sizeof(struct aux_codec_dev_info),
  1008. GFP_KERNEL);
  1009. if (!aux_cdc_dev_info) {
  1010. ret = -ENOMEM;
  1011. goto err;
  1012. }
  1013. /*
  1014. * search and check whether all aux codecs are already
  1015. * registered with ALSA core or not. If found a node, store
  1016. * the node and the index in a local array of struct for later
  1017. * use.
  1018. */
  1019. for (i = 0; i < codec_aux_dev_cnt; i++) {
  1020. aux_codec_of_node = of_parse_phandle(pdev->dev.of_node,
  1021. "qcom,codec-aux-devs", i);
  1022. if (unlikely(!aux_codec_of_node)) {
  1023. /* we should not be here */
  1024. dev_err(&pdev->dev,
  1025. "%s: aux codec dev node is not present\n",
  1026. __func__);
  1027. ret = -EINVAL;
  1028. goto err;
  1029. }
  1030. if (soc_find_component(aux_codec_of_node, NULL)) {
  1031. /* AUX codec registered with ALSA core */
  1032. aux_cdc_dev_info[codecs_found].of_node =
  1033. aux_codec_of_node;
  1034. aux_cdc_dev_info[codecs_found].index = i;
  1035. codecs_found++;
  1036. }
  1037. }
  1038. if (codecs_found < codec_aux_dev_cnt) {
  1039. dev_dbg(&pdev->dev,
  1040. "%s: failed to find %d components. Found only %d\n",
  1041. __func__, codec_aux_dev_cnt, codecs_found);
  1042. return -EPROBE_DEFER;
  1043. }
  1044. dev_info(&pdev->dev,
  1045. "%s: found %d AUX codecs registered with ALSA core\n",
  1046. __func__, codecs_found);
  1047. aux_dev_register:
  1048. card->num_aux_devs = wsa_max_devs + codec_aux_dev_cnt;
  1049. card->num_configs = wsa_max_devs + codec_aux_dev_cnt;
  1050. /* Alloc array of AUX devs struct */
  1051. msm_aux_dev = devm_kcalloc(&pdev->dev, card->num_aux_devs,
  1052. sizeof(struct snd_soc_aux_dev),
  1053. GFP_KERNEL);
  1054. if (!msm_aux_dev) {
  1055. ret = -ENOMEM;
  1056. goto err;
  1057. }
  1058. /* Alloc array of codec conf struct */
  1059. msm_codec_conf = devm_kcalloc(&pdev->dev, card->num_configs,
  1060. sizeof(struct snd_soc_codec_conf),
  1061. GFP_KERNEL);
  1062. if (!msm_codec_conf) {
  1063. ret = -ENOMEM;
  1064. goto err;
  1065. }
  1066. for (i = 0; i < wsa_max_devs; i++) {
  1067. dev_name_str = devm_kzalloc(&pdev->dev, DEV_NAME_STR_LEN,
  1068. GFP_KERNEL);
  1069. if (!dev_name_str) {
  1070. ret = -ENOMEM;
  1071. goto err;
  1072. }
  1073. ret = of_property_read_string_index(pdev->dev.of_node,
  1074. "qcom,wsa-aux-dev-prefix",
  1075. wsa881x_dev_info[i].index,
  1076. auxdev_name_prefix);
  1077. if (ret) {
  1078. dev_err(&pdev->dev,
  1079. "%s: failed to read wsa aux dev prefix, ret = %d\n",
  1080. __func__, ret);
  1081. ret = -EINVAL;
  1082. goto err;
  1083. }
  1084. snprintf(dev_name_str, strlen("wsa881x.%d"), "wsa881x.%d", i);
  1085. msm_aux_dev[i].name = dev_name_str;
  1086. msm_aux_dev[i].codec_name = NULL;
  1087. msm_aux_dev[i].codec_of_node =
  1088. wsa881x_dev_info[i].of_node;
  1089. msm_aux_dev[i].init = msm_wsa881x_init;
  1090. msm_codec_conf[i].dev_name = NULL;
  1091. msm_codec_conf[i].name_prefix = auxdev_name_prefix[0];
  1092. msm_codec_conf[i].of_node =
  1093. wsa881x_dev_info[i].of_node;
  1094. }
  1095. for (i = 0; i < codec_aux_dev_cnt; i++) {
  1096. msm_aux_dev[wsa_max_devs + i].name = NULL;
  1097. msm_aux_dev[wsa_max_devs + i].codec_name = NULL;
  1098. msm_aux_dev[wsa_max_devs + i].codec_of_node =
  1099. aux_cdc_dev_info[i].of_node;
  1100. msm_aux_dev[wsa_max_devs + i].init = msm_aux_codec_init;
  1101. msm_codec_conf[wsa_max_devs + i].dev_name = NULL;
  1102. msm_codec_conf[wsa_max_devs + i].name_prefix =
  1103. NULL;
  1104. msm_codec_conf[wsa_max_devs + i].of_node =
  1105. aux_cdc_dev_info[i].of_node;
  1106. }
  1107. card->codec_conf = msm_codec_conf;
  1108. card->aux_dev = msm_aux_dev;
  1109. err:
  1110. return ret;
  1111. }
  1112. static int kona_ssr_enable(struct device *dev, void *data)
  1113. {
  1114. struct platform_device *pdev = to_platform_device(dev);
  1115. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1116. int ret = 0;
  1117. if (!card) {
  1118. dev_err(dev, "%s: card is NULL\n", __func__);
  1119. ret = -EINVAL;
  1120. goto err;
  1121. }
  1122. if (!strcmp(card->name, "kona-stub-snd-card")) {
  1123. /* TODO */
  1124. dev_dbg(dev, "%s: TODO \n", __func__);
  1125. }
  1126. snd_soc_card_change_online_state(card, 1);
  1127. dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
  1128. err:
  1129. return ret;
  1130. }
  1131. static void kona_ssr_disable(struct device *dev, void *data)
  1132. {
  1133. struct platform_device *pdev = to_platform_device(dev);
  1134. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1135. if (!card) {
  1136. dev_err(dev, "%s: card is NULL\n", __func__);
  1137. return;
  1138. }
  1139. dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
  1140. snd_soc_card_change_online_state(card, 0);
  1141. if (!strcmp(card->name, "kona-stub-snd-card")) {
  1142. /* TODO */
  1143. dev_dbg(dev, "%s: TODO \n", __func__);
  1144. }
  1145. }
  1146. static const struct snd_event_ops kona_ssr_ops = {
  1147. .enable = kona_ssr_enable,
  1148. .disable = kona_ssr_disable,
  1149. };
  1150. static int msm_audio_ssr_compare(struct device *dev, void *data)
  1151. {
  1152. struct device_node *node = data;
  1153. dev_dbg(dev, "%s: dev->of_node = 0x%p, node = 0x%p\n",
  1154. __func__, dev->of_node, node);
  1155. return (dev->of_node && dev->of_node == node);
  1156. }
  1157. static int msm_audio_ssr_register(struct device *dev)
  1158. {
  1159. struct device_node *np = dev->of_node;
  1160. struct snd_event_clients *ssr_clients = NULL;
  1161. struct device_node *node = NULL;
  1162. int ret = 0;
  1163. int i = 0;
  1164. for (i = 0; ; i++) {
  1165. node = of_parse_phandle(np, "qcom,msm_audio_ssr_devs", i);
  1166. if (!node)
  1167. break;
  1168. snd_event_mstr_add_client(&ssr_clients,
  1169. msm_audio_ssr_compare, node);
  1170. }
  1171. ret = snd_event_master_register(dev, &kona_ssr_ops,
  1172. ssr_clients, NULL);
  1173. if (!ret)
  1174. snd_event_notify(dev, SND_EVENT_UP);
  1175. return ret;
  1176. }
  1177. struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card)
  1178. {
  1179. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1180. if (!pdata)
  1181. return NULL;
  1182. return pdata->common_pdata;
  1183. }
  1184. void msm_common_set_pdata(struct snd_soc_card *card,
  1185. struct msm_common_pdata *common_pdata)
  1186. {
  1187. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1188. if (!pdata)
  1189. return;
  1190. pdata->common_pdata = common_pdata;
  1191. }
  1192. static int msm_asoc_machine_probe(struct platform_device *pdev)
  1193. {
  1194. struct snd_soc_card *card = NULL;
  1195. struct msm_asoc_mach_data *pdata = NULL;
  1196. const char *mbhc_audio_jack_type = NULL;
  1197. int ret = 0;
  1198. if (!pdev->dev.of_node) {
  1199. dev_err(&pdev->dev, "%s: No platform supplied from device tree\n", __func__);
  1200. return -EINVAL;
  1201. }
  1202. pdata = devm_kzalloc(&pdev->dev,
  1203. sizeof(struct msm_asoc_mach_data), GFP_KERNEL);
  1204. if (!pdata)
  1205. return -ENOMEM;
  1206. of_property_read_u32(pdev->dev.of_node,
  1207. "qcom,lito-is-v2-enabled",
  1208. &pdata->lito_v2_enabled);
  1209. card = populate_snd_card_dailinks(&pdev->dev);
  1210. if (!card) {
  1211. dev_err(&pdev->dev, "%s: Card uninitialized\n", __func__);
  1212. ret = -EINVAL;
  1213. goto err;
  1214. }
  1215. card->dev = &pdev->dev;
  1216. platform_set_drvdata(pdev, card);
  1217. snd_soc_card_set_drvdata(card, pdata);
  1218. ret = snd_soc_of_parse_card_name(card, "qcom,model");
  1219. if (ret) {
  1220. dev_err(&pdev->dev, "%s: parse card name failed, err:%d\n",
  1221. __func__, ret);
  1222. goto err;
  1223. }
  1224. ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing");
  1225. if (ret) {
  1226. dev_err(&pdev->dev, "%s: parse audio routing failed, err:%d\n",
  1227. __func__, ret);
  1228. goto err;
  1229. }
  1230. ret = msm_populate_dai_link_component_of_node(card);
  1231. if (ret) {
  1232. ret = -EPROBE_DEFER;
  1233. goto err;
  1234. }
  1235. ret = msm_init_aux_dev(pdev, card);
  1236. if (ret)
  1237. goto err;
  1238. ret = devm_snd_soc_register_card(&pdev->dev, card);
  1239. if (ret == -EPROBE_DEFER) {
  1240. if (codec_reg_done)
  1241. ret = -EINVAL;
  1242. goto err;
  1243. } else if (ret) {
  1244. dev_err(&pdev->dev, "%s: snd_soc_register_card failed (%d)\n",
  1245. __func__, ret);
  1246. goto err;
  1247. }
  1248. dev_info(&pdev->dev, "%s: Sound card %s registered\n",
  1249. __func__, card->name);
  1250. msm_common_snd_init(pdev, card);
  1251. pdata->hph_en1_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1252. "qcom,hph-en1-gpio", 0);
  1253. if (!pdata->hph_en1_gpio_p) {
  1254. dev_dbg(&pdev->dev, "%s: property %s not detected in node %s\n",
  1255. __func__, "qcom,hph-en1-gpio",
  1256. pdev->dev.of_node->full_name);
  1257. }
  1258. pdata->hph_en0_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1259. "qcom,hph-en0-gpio", 0);
  1260. if (!pdata->hph_en0_gpio_p) {
  1261. dev_dbg(&pdev->dev, "%s: property %s not detected in node %s\n",
  1262. __func__, "qcom,hph-en0-gpio",
  1263. pdev->dev.of_node->full_name);
  1264. }
  1265. ret = of_property_read_string(pdev->dev.of_node,
  1266. "qcom,mbhc-audio-jack-type", &mbhc_audio_jack_type);
  1267. if (ret) {
  1268. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  1269. __func__, "qcom,mbhc-audio-jack-type",
  1270. pdev->dev.of_node->full_name);
  1271. dev_dbg(&pdev->dev, "Jack type properties set to default\n");
  1272. } else {
  1273. if (!strcmp(mbhc_audio_jack_type, "4-pole-jack")) {
  1274. wcd_mbhc_cfg.enable_anc_mic_detect = false;
  1275. dev_dbg(&pdev->dev, "This hardware has 4 pole jack");
  1276. } else if (!strcmp(mbhc_audio_jack_type, "5-pole-jack")) {
  1277. wcd_mbhc_cfg.enable_anc_mic_detect = true;
  1278. dev_dbg(&pdev->dev, "This hardware has 5 pole jack");
  1279. } else if (!strcmp(mbhc_audio_jack_type, "6-pole-jack")) {
  1280. wcd_mbhc_cfg.enable_anc_mic_detect = true;
  1281. dev_dbg(&pdev->dev, "This hardware has 6 pole jack");
  1282. } else {
  1283. wcd_mbhc_cfg.enable_anc_mic_detect = false;
  1284. dev_dbg(&pdev->dev, "Unknown value, set to default\n");
  1285. }
  1286. }
  1287. /*
  1288. * Parse US-Euro gpio info from DT. Report no error if us-euro
  1289. * entry is not found in DT file as some targets do not support
  1290. * US-Euro detection
  1291. */
  1292. pdata->us_euro_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1293. "qcom,us-euro-gpios", 0);
  1294. if (!pdata->us_euro_gpio_p) {
  1295. dev_dbg(&pdev->dev, "property %s not detected in node %s",
  1296. "qcom,us-euro-gpios", pdev->dev.of_node->full_name);
  1297. } else {
  1298. dev_dbg(&pdev->dev, "%s detected\n",
  1299. "qcom,us-euro-gpios");
  1300. wcd_mbhc_cfg.swap_gnd_mic = msm_swap_gnd_mic;
  1301. }
  1302. if (wcd_mbhc_cfg.enable_usbc_analog)
  1303. wcd_mbhc_cfg.swap_gnd_mic = msm_usbc_swap_gnd_mic;
  1304. pdata->fsa_handle = of_parse_phandle(pdev->dev.of_node,
  1305. "fsa4480-i2c-handle", 0);
  1306. if (!pdata->fsa_handle)
  1307. dev_dbg(&pdev->dev, "property %s not detected in node %s\n",
  1308. "fsa4480-i2c-handle", pdev->dev.of_node->full_name);
  1309. pdata->dmic01_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1310. "qcom,cdc-dmic01-gpios",
  1311. 0);
  1312. pdata->dmic23_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1313. "qcom,cdc-dmic23-gpios",
  1314. 0);
  1315. pdata->dmic45_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1316. "qcom,cdc-dmic45-gpios",
  1317. 0);
  1318. if (pdata->dmic01_gpio_p)
  1319. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic01_gpio_p, false);
  1320. if (pdata->dmic23_gpio_p)
  1321. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic23_gpio_p, false);
  1322. if (pdata->dmic45_gpio_p)
  1323. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic45_gpio_p, false);
  1324. ret = msm_audio_ssr_register(&pdev->dev);
  1325. if (ret)
  1326. pr_err("%s: Registration with SND event FWK failed ret = %d\n",
  1327. __func__, ret);
  1328. is_initial_boot = true;
  1329. return 0;
  1330. err:
  1331. devm_kfree(&pdev->dev, pdata);
  1332. return ret;
  1333. }
  1334. static int msm_asoc_machine_remove(struct platform_device *pdev)
  1335. {
  1336. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1337. struct msm_asoc_mach_data *pdata = NULL;
  1338. struct msm_common_pdata *common_pdata = NULL;
  1339. if (card)
  1340. pdata = snd_soc_card_get_drvdata(card);
  1341. if (pdata)
  1342. common_pdata = pdata->common_pdata;
  1343. msm_common_snd_deinit(common_pdata);
  1344. snd_event_master_deregister(&pdev->dev);
  1345. snd_soc_unregister_card(card);
  1346. return 0;
  1347. }
  1348. static struct platform_driver kona_asoc_machine_driver = {
  1349. .driver = {
  1350. .name = DRV_NAME,
  1351. .owner = THIS_MODULE,
  1352. .pm = &snd_soc_pm_ops,
  1353. .of_match_table = kona_asoc_machine_of_match,
  1354. .suppress_bind_attrs = true,
  1355. },
  1356. .probe = msm_asoc_machine_probe,
  1357. .remove = msm_asoc_machine_remove,
  1358. };
  1359. module_platform_driver(kona_asoc_machine_driver);
  1360. MODULE_DESCRIPTION("ALSA SoC msm");
  1361. MODULE_LICENSE("GPL v2");
  1362. MODULE_ALIAS("platform:" DRV_NAME);
  1363. MODULE_DEVICE_TABLE(of, kona_asoc_machine_of_match);