kona.c 44 KB

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