kona.c 42 KB

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