kona.c 42 KB

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