waipio.c 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2016-2021, 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 <linux/pm_qos.h>
  17. #include <sound/control.h>
  18. #include <sound/core.h>
  19. #include <sound/soc.h>
  20. #include <sound/soc-dapm.h>
  21. #include <sound/pcm.h>
  22. #include <sound/pcm_params.h>
  23. #include <sound/info.h>
  24. #include <soc/snd_event.h>
  25. #include <dsp/audio_prm.h>
  26. #include <soc/swr-common.h>
  27. #include <soc/soundwire.h>
  28. #include "device_event.h"
  29. #include "asoc/msm-cdc-pinctrl.h"
  30. #include "asoc/wcd-mbhc-v2.h"
  31. #include "codecs/wcd938x/wcd938x-mbhc.h"
  32. #include "codecs/wsa883x/wsa883x.h"
  33. #include "codecs/wcd938x/wcd938x.h"
  34. #include "codecs/lpass-cdc/lpass-cdc.h"
  35. #include <dt-bindings/sound/audio-codec-port-types.h>
  36. #include "codecs/lpass-cdc/lpass-cdc-wsa-macro.h"
  37. #include "waipio-port-config.h"
  38. #include "msm-audio-defs.h"
  39. #include "msm_common.h"
  40. #include "msm_dailink.h"
  41. #define DRV_NAME "waipio-asoc-snd"
  42. #define __CHIPSET__ "WAIPIO "
  43. #define MSM_DAILINK_NAME(name) (__CHIPSET__#name)
  44. #define WCD9XXX_MBHC_DEF_RLOADS 5
  45. #define WCD9XXX_MBHC_DEF_BUTTONS 8
  46. #define CODEC_EXT_CLK_RATE 9600000
  47. #define DEV_NAME_STR_LEN 32
  48. #define WCD_MBHC_HS_V_MAX 1600
  49. #define MSM_LL_QOS_VALUE 300 /* time in us to ensure LPM doesn't go in C3/C4 */
  50. #define WCN_CDC_SLIM_RX_CH_MAX 2
  51. #define WCN_CDC_SLIM_TX_CH_MAX 2
  52. #define WCN_CDC_SLIM_TX_CH_MAX_LITO 3
  53. struct msm_asoc_mach_data {
  54. struct snd_info_entry *codec_root;
  55. struct msm_common_pdata *common_pdata;
  56. int usbc_en2_gpio; /* used by gpio driver API */
  57. struct device_node *dmic01_gpio_p; /* used by pinctrl API */
  58. struct device_node *dmic23_gpio_p; /* used by pinctrl API */
  59. struct device_node *dmic45_gpio_p; /* used by pinctrl API */
  60. struct pinctrl *usbc_en2_gpio_p; /* used by pinctrl API */
  61. bool is_afe_config_done;
  62. struct device_node *fsa_handle;
  63. struct clk *lpass_audio_hw_vote;
  64. int core_audio_vote_count;
  65. u32 wsa_max_devs;
  66. };
  67. static bool is_initial_boot;
  68. static bool codec_reg_done;
  69. static struct snd_soc_card snd_soc_card_waipio_msm;
  70. static int dmic_0_1_gpio_cnt;
  71. static int dmic_2_3_gpio_cnt;
  72. static int dmic_4_5_gpio_cnt;
  73. static void *def_wcd_mbhc_cal(void);
  74. static int msm_aux_codec_init(struct snd_soc_pcm_runtime*);
  75. static int msm_int_audrx_init(struct snd_soc_pcm_runtime*);
  76. /*
  77. * Need to report LINEIN
  78. * if R/L channel impedance is larger than 5K ohm
  79. */
  80. static struct wcd_mbhc_config wcd_mbhc_cfg = {
  81. .read_fw_bin = false,
  82. .calibration = NULL,
  83. .detect_extn_cable = true,
  84. .mono_stero_detection = false,
  85. .swap_gnd_mic = NULL,
  86. .hs_ext_micbias = true,
  87. .key_code[0] = KEY_MEDIA,
  88. .key_code[1] = KEY_VOICECOMMAND,
  89. .key_code[2] = KEY_VOLUMEUP,
  90. .key_code[3] = KEY_VOLUMEDOWN,
  91. .key_code[4] = 0,
  92. .key_code[5] = 0,
  93. .key_code[6] = 0,
  94. .key_code[7] = 0,
  95. .linein_th = 5000,
  96. .moisture_en = false,
  97. .mbhc_micbias = MIC_BIAS_2,
  98. .anc_micbias = MIC_BIAS_2,
  99. .enable_anc_mic_detect = false,
  100. .moisture_duty_cycle_en = true,
  101. };
  102. /* set audio task affinity to core 1 & 2 */
  103. static const unsigned int audio_core_list[] = {1, 2};
  104. static cpumask_t audio_cpu_map = CPU_MASK_NONE;
  105. static struct dev_pm_qos_request *msm_audio_req = NULL;
  106. static void msm_audio_add_qos_request()
  107. {
  108. int i;
  109. int cpu = 0;
  110. msm_audio_req = kzalloc(sizeof(struct dev_pm_qos_request) * NR_CPUS,
  111. GFP_KERNEL);
  112. if (!msm_audio_req) {
  113. pr_err("%s failed to alloc mem for qos req.\n", __func__);
  114. return;
  115. }
  116. for (i = 0; i < ARRAY_SIZE(audio_core_list); i++) {
  117. if (audio_core_list[i] >= NR_CPUS)
  118. pr_err("%s incorrect cpu id: %d specified.\n", __func__, audio_core_list[i]);
  119. else
  120. cpumask_set_cpu(audio_core_list[i], &audio_cpu_map);
  121. }
  122. for_each_cpu(cpu, &audio_cpu_map) {
  123. dev_pm_qos_add_request(get_cpu_device(cpu),
  124. &msm_audio_req[cpu],
  125. DEV_PM_QOS_RESUME_LATENCY,
  126. PM_QOS_CPU_LATENCY_DEFAULT_VALUE);
  127. pr_debug("%s set cpu affinity to core %d.\n", __func__, cpu);
  128. }
  129. }
  130. static void msm_audio_remove_qos_request()
  131. {
  132. int cpu = 0;
  133. if (msm_audio_req) {
  134. for_each_cpu(cpu, &audio_cpu_map) {
  135. dev_pm_qos_remove_request(
  136. &msm_audio_req[cpu]);
  137. pr_debug("%s remove cpu affinity of core %d.\n", __func__, cpu);
  138. }
  139. kfree(msm_audio_req);
  140. }
  141. }
  142. static bool msm_usbc_swap_gnd_mic(struct snd_soc_component *component, bool active)
  143. {
  144. struct snd_soc_card *card = component->card;
  145. struct msm_asoc_mach_data *pdata =
  146. snd_soc_card_get_drvdata(card);
  147. if (!pdata->fsa_handle)
  148. return false;
  149. return fsa4480_switch_event(pdata->fsa_handle, FSA_MIC_GND_SWAP);
  150. }
  151. static struct snd_soc_ops msm_common_be_ops = {
  152. .startup = msm_common_snd_startup,
  153. .shutdown = msm_common_snd_shutdown,
  154. };
  155. static int msm_dmic_event(struct snd_soc_dapm_widget *w,
  156. struct snd_kcontrol *kcontrol, int event)
  157. {
  158. struct msm_asoc_mach_data *pdata = NULL;
  159. struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
  160. int ret = 0;
  161. u32 dmic_idx;
  162. int *dmic_gpio_cnt;
  163. struct device_node *dmic_gpio;
  164. char *wname;
  165. wname = strpbrk(w->name, "012345");
  166. if (!wname) {
  167. dev_err(component->dev, "%s: widget not found\n", __func__);
  168. return -EINVAL;
  169. }
  170. ret = kstrtouint(wname, 10, &dmic_idx);
  171. if (ret < 0) {
  172. dev_err(component->dev, "%s: Invalid DMIC line on the codec\n",
  173. __func__);
  174. return -EINVAL;
  175. }
  176. pdata = snd_soc_card_get_drvdata(component->card);
  177. switch (dmic_idx) {
  178. case 0:
  179. case 1:
  180. dmic_gpio_cnt = &dmic_0_1_gpio_cnt;
  181. dmic_gpio = pdata->dmic01_gpio_p;
  182. break;
  183. case 2:
  184. case 3:
  185. dmic_gpio_cnt = &dmic_2_3_gpio_cnt;
  186. dmic_gpio = pdata->dmic23_gpio_p;
  187. break;
  188. case 4:
  189. case 5:
  190. dmic_gpio_cnt = &dmic_4_5_gpio_cnt;
  191. dmic_gpio = pdata->dmic45_gpio_p;
  192. break;
  193. default:
  194. dev_err(component->dev, "%s: Invalid DMIC Selection\n",
  195. __func__);
  196. return -EINVAL;
  197. }
  198. dev_dbg(component->dev, "%s: event %d DMIC%d dmic_gpio_cnt %d\n",
  199. __func__, event, dmic_idx, *dmic_gpio_cnt);
  200. switch (event) {
  201. case SND_SOC_DAPM_PRE_PMU:
  202. (*dmic_gpio_cnt)++;
  203. if (*dmic_gpio_cnt == 1) {
  204. ret = msm_cdc_pinctrl_select_active_state(
  205. dmic_gpio);
  206. if (ret < 0) {
  207. pr_err("%s: gpio set cannot be activated %sd",
  208. __func__, "dmic_gpio");
  209. return ret;
  210. }
  211. }
  212. break;
  213. case SND_SOC_DAPM_POST_PMD:
  214. (*dmic_gpio_cnt)--;
  215. if (*dmic_gpio_cnt == 0) {
  216. ret = msm_cdc_pinctrl_select_sleep_state(
  217. dmic_gpio);
  218. if (ret < 0) {
  219. pr_err("%s: gpio set cannot be de-activated %sd",
  220. __func__, "dmic_gpio");
  221. return ret;
  222. }
  223. }
  224. break;
  225. default:
  226. pr_err("%s: invalid DAPM event %d\n", __func__, event);
  227. return -EINVAL;
  228. }
  229. return 0;
  230. }
  231. static const struct snd_soc_dapm_widget msm_int_dapm_widgets[] = {
  232. SND_SOC_DAPM_MIC("Analog Mic1", NULL),
  233. SND_SOC_DAPM_MIC("Analog Mic2", NULL),
  234. SND_SOC_DAPM_MIC("Analog Mic3", NULL),
  235. SND_SOC_DAPM_MIC("Analog Mic4", NULL),
  236. SND_SOC_DAPM_MIC("Analog Mic5", NULL),
  237. SND_SOC_DAPM_MIC("Digital Mic0", msm_dmic_event),
  238. SND_SOC_DAPM_MIC("Digital Mic1", msm_dmic_event),
  239. SND_SOC_DAPM_MIC("Digital Mic2", msm_dmic_event),
  240. SND_SOC_DAPM_MIC("Digital Mic3", msm_dmic_event),
  241. SND_SOC_DAPM_MIC("Digital Mic4", msm_dmic_event),
  242. SND_SOC_DAPM_MIC("Digital Mic5", msm_dmic_event),
  243. SND_SOC_DAPM_MIC("Digital Mic6", NULL),
  244. SND_SOC_DAPM_MIC("Digital Mic7", NULL),
  245. };
  246. static int msm_wcn_init(struct snd_soc_pcm_runtime *rtd)
  247. {
  248. unsigned int rx_ch[WCN_CDC_SLIM_RX_CH_MAX] = {157, 158};
  249. unsigned int tx_ch[WCN_CDC_SLIM_TX_CH_MAX] = {159, 160};
  250. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  251. int ret = 0;
  252. ret = snd_soc_dai_set_channel_map(codec_dai, ARRAY_SIZE(tx_ch),
  253. tx_ch, ARRAY_SIZE(rx_ch), rx_ch);
  254. if (ret)
  255. return ret;
  256. msm_common_dai_link_init(rtd);
  257. return ret;
  258. }
  259. static struct snd_info_entry *msm_snd_info_create_subdir(struct module *mod,
  260. const char *name,
  261. struct snd_info_entry *parent)
  262. {
  263. struct snd_info_entry *entry;
  264. entry = snd_info_create_module_entry(mod, name, parent);
  265. if (!entry)
  266. return NULL;
  267. entry->mode = S_IFDIR | 0555;
  268. if (snd_info_register(entry) < 0) {
  269. snd_info_free_entry(entry);
  270. return NULL;
  271. }
  272. return entry;
  273. }
  274. static void *def_wcd_mbhc_cal(void)
  275. {
  276. void *wcd_mbhc_cal;
  277. struct wcd_mbhc_btn_detect_cfg *btn_cfg;
  278. u16 *btn_high;
  279. wcd_mbhc_cal = kzalloc(WCD_MBHC_CAL_SIZE(WCD_MBHC_DEF_BUTTONS,
  280. WCD9XXX_MBHC_DEF_RLOADS), GFP_KERNEL);
  281. if (!wcd_mbhc_cal)
  282. return NULL;
  283. WCD_MBHC_CAL_PLUG_TYPE_PTR(wcd_mbhc_cal)->v_hs_max = WCD_MBHC_HS_V_MAX;
  284. WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal)->num_btn = WCD_MBHC_DEF_BUTTONS;
  285. btn_cfg = WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal);
  286. btn_high = ((void *)&btn_cfg->_v_btn_low) +
  287. (sizeof(btn_cfg->_v_btn_low[0]) * btn_cfg->num_btn);
  288. btn_high[0] = 75;
  289. btn_high[1] = 150;
  290. btn_high[2] = 237;
  291. btn_high[3] = 500;
  292. btn_high[4] = 500;
  293. btn_high[5] = 500;
  294. btn_high[6] = 500;
  295. btn_high[7] = 500;
  296. return wcd_mbhc_cal;
  297. }
  298. /* Digital audio interface glue - connects codec <---> CPU */
  299. static struct snd_soc_dai_link msm_common_be_dai_links[] = {
  300. /* Proxy Tx BACK END DAI Link */
  301. {
  302. .name = LPASS_BE_RT_PROXY_PCM_TX,
  303. .stream_name = LPASS_BE_RT_PROXY_PCM_TX,
  304. .capture_only = 1,
  305. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  306. SND_SOC_DPCM_TRIGGER_POST},
  307. .ignore_suspend = 1,
  308. .ops = &msm_common_be_ops,
  309. SND_SOC_DAILINK_REG(proxy_tx),
  310. },
  311. /* Proxy Rx BACK END DAI Link */
  312. {
  313. .name = LPASS_BE_RT_PROXY_PCM_RX,
  314. .stream_name = LPASS_BE_RT_PROXY_PCM_RX,
  315. .playback_only = 1,
  316. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  317. SND_SOC_DPCM_TRIGGER_POST},
  318. .ignore_pmdown_time = 1,
  319. .ignore_suspend = 1,
  320. .ops = &msm_common_be_ops,
  321. SND_SOC_DAILINK_REG(proxy_rx),
  322. },
  323. {
  324. .name = LPASS_BE_USB_AUDIO_RX,
  325. .stream_name = LPASS_BE_USB_AUDIO_RX,
  326. .playback_only = 1,
  327. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  328. SND_SOC_DPCM_TRIGGER_POST},
  329. .ignore_pmdown_time = 1,
  330. .ignore_suspend = 1,
  331. .ops = &msm_common_be_ops,
  332. SND_SOC_DAILINK_REG(usb_audio_rx),
  333. },
  334. {
  335. .name = LPASS_BE_USB_AUDIO_TX,
  336. .stream_name = LPASS_BE_USB_AUDIO_TX,
  337. .capture_only = 1,
  338. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  339. SND_SOC_DPCM_TRIGGER_POST},
  340. .ignore_suspend = 1,
  341. .ops = &msm_common_be_ops,
  342. SND_SOC_DAILINK_REG(usb_audio_tx),
  343. },
  344. {
  345. .name = LPASS_BE_WSA_CDC_DMA_TX_0,
  346. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_0,
  347. .capture_only = 1,
  348. .ignore_suspend = 1,
  349. .ops = &msm_common_be_ops,
  350. /* .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, */
  351. SND_SOC_DAILINK_REG(vi_feedback),
  352. },
  353. {
  354. .name = LPASS_BE_WSA2_CDC_DMA_TX_0,
  355. .stream_name = LPASS_BE_WSA2_CDC_DMA_TX_0,
  356. .capture_only = 1,
  357. .ignore_suspend = 1,
  358. .ops = &msm_common_be_ops,
  359. /* .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, */
  360. SND_SOC_DAILINK_REG(wsa2_vi_feedback),
  361. },
  362. };
  363. static struct snd_soc_dai_link msm_wcn_be_dai_links[] = {
  364. {
  365. .name = LPASS_BE_SLIMBUS_7_RX,
  366. .stream_name = LPASS_BE_SLIMBUS_7_RX,
  367. .playback_only = 1,
  368. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  369. SND_SOC_DPCM_TRIGGER_POST},
  370. .init = &msm_wcn_init,
  371. .ops = &msm_common_be_ops,
  372. /* dai link has playback support */
  373. .ignore_pmdown_time = 1,
  374. .ignore_suspend = 1,
  375. SND_SOC_DAILINK_REG(slimbus_7_rx),
  376. },
  377. {
  378. .name = LPASS_BE_SLIMBUS_7_TX,
  379. .stream_name = LPASS_BE_SLIMBUS_7_TX,
  380. .capture_only = 1,
  381. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  382. SND_SOC_DPCM_TRIGGER_POST},
  383. .ops = &msm_common_be_ops,
  384. .ignore_suspend = 1,
  385. SND_SOC_DAILINK_REG(slimbus_7_tx),
  386. },
  387. };
  388. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  389. static struct snd_soc_dai_link ext_disp_be_dai_link[] = {
  390. /* DISP PORT BACK END DAI Link */
  391. {
  392. .name = LPASS_BE_DISPLAY_PORT_RX,
  393. .stream_name = LPASS_BE_DISPLAY_PORT_RX,
  394. .playback_only = 1,
  395. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  396. SND_SOC_DPCM_TRIGGER_POST},
  397. .ignore_pmdown_time = 1,
  398. .ignore_suspend = 1,
  399. SND_SOC_DAILINK_REG(display_port),
  400. },
  401. };
  402. #endif
  403. static struct snd_soc_dai_link msm_wsa_cdc_dma_be_dai_links[] = {
  404. /* WSA CDC DMA Backend DAI Links */
  405. {
  406. .name = LPASS_BE_WSA_CDC_DMA_RX_0,
  407. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_0,
  408. .playback_only = 1,
  409. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  410. SND_SOC_DPCM_TRIGGER_POST},
  411. .ignore_pmdown_time = 1,
  412. .ignore_suspend = 1,
  413. .ops = &msm_common_be_ops,
  414. SND_SOC_DAILINK_REG(wsa_dma_rx0),
  415. .init = &msm_int_audrx_init,
  416. },
  417. {
  418. .name = LPASS_BE_WSA_CDC_DMA_RX_1,
  419. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_1,
  420. .playback_only = 1,
  421. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  422. SND_SOC_DPCM_TRIGGER_POST},
  423. .ignore_pmdown_time = 1,
  424. .ignore_suspend = 1,
  425. .ops = &msm_common_be_ops,
  426. SND_SOC_DAILINK_REG(wsa_dma_rx1),
  427. },
  428. {
  429. .name = LPASS_BE_WSA_CDC_DMA_TX_1,
  430. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_1,
  431. .capture_only = 1,
  432. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  433. SND_SOC_DPCM_TRIGGER_POST},
  434. .ignore_suspend = 1,
  435. .ops = &msm_common_be_ops,
  436. SND_SOC_DAILINK_REG(wsa_dma_tx1),
  437. },
  438. };
  439. static struct snd_soc_dai_link msm_wsa2_cdc_dma_be_dai_links[] = {
  440. /* WSA2 CDC DMA Backend DAI Links */
  441. {
  442. .name = LPASS_BE_WSA2_CDC_DMA_RX_0,
  443. .stream_name = LPASS_BE_WSA2_CDC_DMA_RX_0,
  444. .playback_only = 1,
  445. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  446. SND_SOC_DPCM_TRIGGER_POST},
  447. .ignore_pmdown_time = 1,
  448. .ignore_suspend = 1,
  449. .ops = &msm_common_be_ops,
  450. SND_SOC_DAILINK_REG(wsa2_dma_rx0),
  451. .init = &msm_int_audrx_init,
  452. },
  453. {
  454. .name = LPASS_BE_WSA2_CDC_DMA_RX_1,
  455. .stream_name = LPASS_BE_WSA2_CDC_DMA_RX_1,
  456. .playback_only = 1,
  457. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  458. SND_SOC_DPCM_TRIGGER_POST},
  459. .ignore_pmdown_time = 1,
  460. .ignore_suspend = 1,
  461. .ops = &msm_common_be_ops,
  462. SND_SOC_DAILINK_REG(wsa2_dma_rx1),
  463. },
  464. {
  465. .name = LPASS_BE_WSA2_CDC_DMA_TX_1,
  466. .stream_name = LPASS_BE_WSA2_CDC_DMA_TX_1,
  467. .capture_only = 1,
  468. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  469. SND_SOC_DPCM_TRIGGER_POST},
  470. .ignore_suspend = 1,
  471. .ops = &msm_common_be_ops,
  472. SND_SOC_DAILINK_REG(wsa2_dma_tx1),
  473. },
  474. };
  475. static struct snd_soc_dai_link msm_rx_tx_cdc_dma_be_dai_links[] = {
  476. /* RX CDC DMA Backend DAI Links */
  477. {
  478. .name = LPASS_BE_RX_CDC_DMA_RX_0,
  479. .stream_name = LPASS_BE_RX_CDC_DMA_RX_0,
  480. .playback_only = 1,
  481. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  482. SND_SOC_DPCM_TRIGGER_POST},
  483. .ignore_pmdown_time = 1,
  484. .ignore_suspend = 1,
  485. .ops = &msm_common_be_ops,
  486. SND_SOC_DAILINK_REG(rx_dma_rx0),
  487. .init = &msm_aux_codec_init,
  488. },
  489. {
  490. .name = LPASS_BE_RX_CDC_DMA_RX_1,
  491. .stream_name = LPASS_BE_RX_CDC_DMA_RX_1,
  492. .playback_only = 1,
  493. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  494. SND_SOC_DPCM_TRIGGER_POST},
  495. .ignore_pmdown_time = 1,
  496. .ignore_suspend = 1,
  497. .ops = &msm_common_be_ops,
  498. SND_SOC_DAILINK_REG(rx_dma_rx1),
  499. .init = &msm_int_audrx_init,
  500. },
  501. {
  502. .name = LPASS_BE_RX_CDC_DMA_RX_2,
  503. .stream_name = LPASS_BE_RX_CDC_DMA_RX_2,
  504. .playback_only = 1,
  505. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  506. SND_SOC_DPCM_TRIGGER_POST},
  507. .ignore_pmdown_time = 1,
  508. .ignore_suspend = 1,
  509. .ops = &msm_common_be_ops,
  510. SND_SOC_DAILINK_REG(rx_dma_rx2),
  511. },
  512. {
  513. .name = LPASS_BE_RX_CDC_DMA_RX_3,
  514. .stream_name = LPASS_BE_RX_CDC_DMA_RX_3,
  515. .playback_only = 1,
  516. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  517. SND_SOC_DPCM_TRIGGER_POST},
  518. .ignore_pmdown_time = 1,
  519. .ignore_suspend = 1,
  520. .ops = &msm_common_be_ops,
  521. SND_SOC_DAILINK_REG(rx_dma_rx3),
  522. },
  523. {
  524. .name = LPASS_BE_RX_CDC_DMA_RX_5,
  525. .stream_name = LPASS_BE_RX_CDC_DMA_RX_5,
  526. .playback_only = 1,
  527. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  528. SND_SOC_DPCM_TRIGGER_POST},
  529. .ignore_pmdown_time = 1,
  530. .ignore_suspend = 1,
  531. .ops = &msm_common_be_ops,
  532. SND_SOC_DAILINK_REG(rx_dma_rx5),
  533. },
  534. {
  535. .name = LPASS_BE_RX_CDC_DMA_RX_6,
  536. .stream_name = LPASS_BE_RX_CDC_DMA_RX_6,
  537. .playback_only = 1,
  538. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  539. SND_SOC_DPCM_TRIGGER_POST},
  540. .ignore_pmdown_time = 1,
  541. .ignore_suspend = 1,
  542. .ops = &msm_common_be_ops,
  543. SND_SOC_DAILINK_REG(rx_dma_rx6),
  544. },
  545. /* TX CDC DMA Backend DAI Links */
  546. {
  547. .name = LPASS_BE_TX_CDC_DMA_TX_3,
  548. .stream_name = LPASS_BE_TX_CDC_DMA_TX_3,
  549. .capture_only = 1,
  550. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  551. SND_SOC_DPCM_TRIGGER_POST},
  552. .ignore_suspend = 1,
  553. .ops = &msm_common_be_ops,
  554. SND_SOC_DAILINK_REG(tx_dma_tx3),
  555. },
  556. {
  557. .name = LPASS_BE_TX_CDC_DMA_TX_4,
  558. .stream_name = LPASS_BE_TX_CDC_DMA_TX_4,
  559. .capture_only = 1,
  560. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  561. SND_SOC_DPCM_TRIGGER_POST},
  562. .ignore_suspend = 1,
  563. .ops = &msm_common_be_ops,
  564. SND_SOC_DAILINK_REG(tx_dma_tx4),
  565. },
  566. };
  567. static struct snd_soc_dai_link msm_va_cdc_dma_be_dai_links[] = {
  568. {
  569. .name = LPASS_BE_VA_CDC_DMA_TX_0,
  570. .stream_name = LPASS_BE_VA_CDC_DMA_TX_0,
  571. .capture_only = 1,
  572. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  573. SND_SOC_DPCM_TRIGGER_POST},
  574. .ignore_suspend = 1,
  575. .ops = &msm_common_be_ops,
  576. SND_SOC_DAILINK_REG(va_dma_tx0),
  577. },
  578. {
  579. .name = LPASS_BE_VA_CDC_DMA_TX_1,
  580. .stream_name = LPASS_BE_VA_CDC_DMA_TX_1,
  581. .capture_only = 1,
  582. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  583. SND_SOC_DPCM_TRIGGER_POST},
  584. .ignore_suspend = 1,
  585. .ops = &msm_common_be_ops,
  586. SND_SOC_DAILINK_REG(va_dma_tx1),
  587. },
  588. {
  589. .name = LPASS_BE_VA_CDC_DMA_TX_2,
  590. .stream_name = LPASS_BE_VA_CDC_DMA_TX_2,
  591. .capture_only = 1,
  592. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  593. SND_SOC_DPCM_TRIGGER_POST},
  594. .ignore_suspend = 1,
  595. .ops = &msm_common_be_ops,
  596. SND_SOC_DAILINK_REG(va_dma_tx2),
  597. },
  598. };
  599. static struct snd_soc_dai_link msm_mi2s_dai_links[] = {
  600. {
  601. .name = LPASS_BE_QUAT_MI2S_RX,
  602. .stream_name = LPASS_BE_QUAT_MI2S_RX,
  603. .playback_only = 1,
  604. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  605. SND_SOC_DPCM_TRIGGER_POST},
  606. .ops = &msm_common_be_ops,
  607. .ignore_suspend = 1,
  608. .ignore_pmdown_time = 1,
  609. SND_SOC_DAILINK_REG(quat_mi2s_rx),
  610. },
  611. {
  612. .name = LPASS_BE_QUAT_MI2S_TX,
  613. .stream_name = LPASS_BE_QUAT_MI2S_TX,
  614. .capture_only = 1,
  615. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  616. SND_SOC_DPCM_TRIGGER_POST},
  617. .ops = &msm_common_be_ops,
  618. .ignore_suspend = 1,
  619. SND_SOC_DAILINK_REG(quat_mi2s_tx),
  620. },
  621. };
  622. static struct snd_soc_dai_link msm_tdm_dai_links[] = {
  623. {
  624. .name = LPASS_BE_PRI_TDM_RX_0,
  625. .stream_name = LPASS_BE_PRI_TDM_RX_0,
  626. .playback_only = 1,
  627. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  628. SND_SOC_DPCM_TRIGGER_POST},
  629. .ops = &msm_common_be_ops,
  630. .ignore_suspend = 1,
  631. .ignore_pmdown_time = 1,
  632. SND_SOC_DAILINK_REG(pri_tdm_rx_0),
  633. },
  634. {
  635. .name = LPASS_BE_PRI_TDM_TX_0,
  636. .stream_name = LPASS_BE_PRI_TDM_TX_0,
  637. .capture_only = 1,
  638. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  639. SND_SOC_DPCM_TRIGGER_POST},
  640. .ops = &msm_common_be_ops,
  641. .ignore_suspend = 1,
  642. SND_SOC_DAILINK_REG(pri_tdm_tx_0),
  643. },
  644. };
  645. static struct snd_soc_dai_link msm_waipio_dai_links[
  646. ARRAY_SIZE(msm_wsa_cdc_dma_be_dai_links) +
  647. ARRAY_SIZE(msm_wsa2_cdc_dma_be_dai_links) +
  648. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links) +
  649. ARRAY_SIZE(msm_va_cdc_dma_be_dai_links) +
  650. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  651. ARRAY_SIZE(ext_disp_be_dai_link) +
  652. #endif
  653. ARRAY_SIZE(msm_common_be_dai_links) +
  654. ARRAY_SIZE(msm_wcn_be_dai_links) +
  655. ARRAY_SIZE(msm_mi2s_dai_links) +
  656. ARRAY_SIZE(msm_tdm_dai_links)];
  657. static int msm_populate_dai_link_component_of_node(
  658. struct snd_soc_card *card)
  659. {
  660. int i, j, index, ret = 0;
  661. struct device *cdev = card->dev;
  662. struct snd_soc_dai_link *dai_link = card->dai_link;
  663. struct device_node *np = NULL;
  664. int codecs_enabled = 0;
  665. struct snd_soc_dai_link_component *codecs_comp = NULL;
  666. if (!cdev) {
  667. dev_err(cdev, "%s: Sound card device memory NULL\n", __func__);
  668. return -ENODEV;
  669. }
  670. for (i = 0; i < card->num_links; i++) {
  671. if (dai_link[i].init == NULL)
  672. dai_link[i].init = &msm_common_dai_link_init;
  673. /* populate codec_of_node for snd card dai links */
  674. if (dai_link[i].num_codecs > 0) {
  675. for (j = 0; j < dai_link[i].num_codecs; j++) {
  676. if (dai_link[i].codecs[j].of_node ||
  677. !dai_link[i].codecs[j].name)
  678. continue;
  679. index = of_property_match_string(cdev->of_node,
  680. "asoc-codec-names",
  681. dai_link[i].codecs[j].name);
  682. if (index < 0)
  683. continue;
  684. np = of_parse_phandle(cdev->of_node,
  685. "asoc-codec",
  686. index);
  687. if (!np) {
  688. dev_err(cdev, "%s: retrieving phandle for codec %s failed\n",
  689. __func__,
  690. dai_link[i].codecs[j].name);
  691. ret = -ENODEV;
  692. goto err;
  693. }
  694. dai_link[i].codecs[j].of_node = np;
  695. dai_link[i].codecs[j].name = NULL;
  696. }
  697. }
  698. }
  699. /* In multi-codec scenario, check if codecs are enabled for this platform */
  700. for (i = 0; i < card->num_links; i++) {
  701. codecs_enabled = 0;
  702. if (dai_link[i].num_codecs > 1) {
  703. for (j = 0; j < dai_link[i].num_codecs; j++) {
  704. if (!dai_link[i].codecs[j].of_node)
  705. continue;
  706. np = dai_link[i].codecs[j].of_node;
  707. if (!of_device_is_available(np)) {
  708. dev_err(cdev, "%s: codec is disabled: %s\n",
  709. __func__,
  710. np->full_name);
  711. dai_link[i].codecs[j].of_node = NULL;
  712. continue;
  713. }
  714. codecs_enabled++;
  715. }
  716. if (codecs_enabled > 0 &&
  717. codecs_enabled < dai_link[i].num_codecs) {
  718. codecs_comp = devm_kzalloc(cdev,
  719. sizeof(struct snd_soc_dai_link_component)
  720. * codecs_enabled, GFP_KERNEL);
  721. if (!codecs_comp) {
  722. dev_err(cdev, "%s: %s dailink codec component alloc failed\n",
  723. __func__, dai_link[i].name);
  724. ret = -ENOMEM;
  725. goto err;
  726. }
  727. index = 0;
  728. for (j = 0; j < dai_link[i].num_codecs; j++) {
  729. if(dai_link[i].codecs[j].of_node) {
  730. codecs_comp[index].of_node =
  731. dai_link[i].codecs[j].of_node;
  732. codecs_comp[index].dai_name =
  733. dai_link[i].codecs[j].dai_name;
  734. codecs_comp[index].name = NULL;
  735. index++;
  736. }
  737. }
  738. dai_link[i].codecs = codecs_comp;
  739. dai_link[i].num_codecs = codecs_enabled;
  740. }
  741. }
  742. }
  743. err:
  744. return ret;
  745. }
  746. static int msm_audrx_stub_init(struct snd_soc_pcm_runtime *rtd)
  747. {
  748. return 0;
  749. }
  750. static int msm_snd_stub_hw_params(struct snd_pcm_substream *substream,
  751. struct snd_pcm_hw_params *params)
  752. {
  753. return 0;
  754. }
  755. static struct snd_soc_ops msm_stub_be_ops = {
  756. .hw_params = msm_snd_stub_hw_params,
  757. };
  758. struct snd_soc_card snd_soc_card_stub_msm = {
  759. .name = "waipio-stub-snd-card",
  760. };
  761. static struct snd_soc_dai_link msm_stub_be_dai_links[] = {
  762. /* Backend DAI Links */
  763. {
  764. .name = LPASS_BE_PRI_AUXPCM_RX,
  765. .stream_name = LPASS_BE_PRI_AUXPCM_RX,
  766. .playback_only = 1,
  767. .init = &msm_audrx_stub_init,
  768. .ignore_pmdown_time = 1,
  769. .ignore_suspend = 1,
  770. .ops = &msm_stub_be_ops,
  771. SND_SOC_DAILINK_REG(auxpcm_rx),
  772. },
  773. {
  774. .name = LPASS_BE_PRI_AUXPCM_TX,
  775. .stream_name = LPASS_BE_PRI_AUXPCM_TX,
  776. .capture_only = 1,
  777. .ignore_suspend = 1,
  778. .ops = &msm_stub_be_ops,
  779. SND_SOC_DAILINK_REG(auxpcm_tx),
  780. },
  781. };
  782. static struct snd_soc_dai_link msm_stub_dai_links[
  783. ARRAY_SIZE(msm_stub_be_dai_links)];
  784. static const struct of_device_id waipio_asoc_machine_of_match[] = {
  785. { .compatible = "qcom,waipio-asoc-snd",
  786. .data = "codec"},
  787. { .compatible = "qcom,waipio-asoc-snd-stub",
  788. .data = "stub_codec"},
  789. {},
  790. };
  791. static int msm_snd_card_late_probe(struct snd_soc_card *card)
  792. {
  793. struct snd_soc_component *component = NULL;
  794. struct snd_soc_pcm_runtime *rtd;
  795. int ret = 0;
  796. void *mbhc_calibration;
  797. rtd = snd_soc_get_pcm_runtime(card, &card->dai_link[0]);
  798. if (!rtd) {
  799. dev_err(card->dev,
  800. "%s: snd_soc_get_pcm_runtime for %s failed!\n",
  801. __func__, card->dai_link[0]);
  802. return -EINVAL;
  803. }
  804. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  805. if (!component) {
  806. pr_err("%s component is NULL\n", __func__);
  807. return -EINVAL;
  808. }
  809. mbhc_calibration = def_wcd_mbhc_cal();
  810. if (!mbhc_calibration)
  811. return -ENOMEM;
  812. wcd_mbhc_cfg.calibration = mbhc_calibration;
  813. ret = wcd938x_mbhc_hs_detect(component, &wcd_mbhc_cfg);
  814. if (ret) {
  815. dev_err(component->dev, "%s: mbhc hs detect failed, err:%d\n",
  816. __func__, ret);
  817. goto err_hs_detect;
  818. }
  819. return 0;
  820. err_hs_detect:
  821. kfree(mbhc_calibration);
  822. return ret;
  823. }
  824. static struct snd_soc_card *populate_snd_card_dailinks(struct device *dev)
  825. {
  826. struct snd_soc_card *card = NULL;
  827. struct snd_soc_dai_link *dailink = NULL;
  828. int total_links = 0;
  829. int rc = 0;
  830. u32 val = 0;
  831. const struct of_device_id *match;
  832. match = of_match_node(waipio_asoc_machine_of_match, dev->of_node);
  833. if (!match) {
  834. dev_err(dev, "%s: No DT match found for sound card\n",
  835. __func__);
  836. return NULL;
  837. }
  838. if (!strcmp(match->data, "codec")) {
  839. card = &snd_soc_card_waipio_msm;
  840. memcpy(msm_waipio_dai_links + total_links,
  841. msm_wsa_cdc_dma_be_dai_links,
  842. sizeof(msm_wsa_cdc_dma_be_dai_links));
  843. total_links += ARRAY_SIZE(msm_wsa_cdc_dma_be_dai_links);
  844. memcpy(msm_waipio_dai_links + total_links,
  845. msm_wsa2_cdc_dma_be_dai_links,
  846. sizeof(msm_wsa2_cdc_dma_be_dai_links));
  847. total_links += ARRAY_SIZE(msm_wsa2_cdc_dma_be_dai_links);
  848. memcpy(msm_waipio_dai_links + total_links,
  849. msm_rx_tx_cdc_dma_be_dai_links,
  850. sizeof(msm_rx_tx_cdc_dma_be_dai_links));
  851. total_links +=
  852. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links);
  853. memcpy(msm_waipio_dai_links + total_links,
  854. msm_va_cdc_dma_be_dai_links,
  855. sizeof(msm_va_cdc_dma_be_dai_links));
  856. total_links += ARRAY_SIZE(msm_va_cdc_dma_be_dai_links);
  857. memcpy(msm_waipio_dai_links + total_links,
  858. msm_common_be_dai_links,
  859. sizeof(msm_common_be_dai_links));
  860. total_links += ARRAY_SIZE(msm_common_be_dai_links);
  861. rc = of_property_read_u32(dev->of_node,
  862. "qcom,mi2s-audio-intf", &val);
  863. if (!rc && val) {
  864. memcpy(msm_waipio_dai_links + total_links,
  865. msm_mi2s_dai_links,
  866. sizeof(msm_mi2s_dai_links));
  867. total_links += ARRAY_SIZE(msm_mi2s_dai_links);
  868. }
  869. rc = of_property_read_u32(dev->of_node,
  870. "qcom,tdm-audio-intf", &val);
  871. if (!rc && val) {
  872. memcpy(msm_waipio_dai_links + total_links,
  873. msm_tdm_dai_links,
  874. sizeof(msm_tdm_dai_links));
  875. total_links += ARRAY_SIZE(msm_tdm_dai_links);
  876. }
  877. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  878. rc = of_property_read_u32(dev->of_node,
  879. "qcom,ext-disp-audio-rx", &val);
  880. if (!rc && val) {
  881. dev_dbg(dev, "%s(): ext disp audio support present\n",
  882. __func__);
  883. memcpy(msm_waipio_dai_links + total_links,
  884. ext_disp_be_dai_link,
  885. sizeof(ext_disp_be_dai_link));
  886. total_links += ARRAY_SIZE(ext_disp_be_dai_link);
  887. }
  888. #endif
  889. rc = of_property_read_u32(dev->of_node, "qcom,wcn-bt", &val);
  890. if (!rc && val) {
  891. dev_dbg(dev, "%s(): WCN BT support present\n",
  892. __func__);
  893. memcpy(msm_waipio_dai_links + total_links,
  894. msm_wcn_be_dai_links,
  895. sizeof(msm_wcn_be_dai_links));
  896. total_links += ARRAY_SIZE(msm_wcn_be_dai_links);
  897. }
  898. dailink = msm_waipio_dai_links;
  899. } else if(!strcmp(match->data, "stub_codec")) {
  900. card = &snd_soc_card_stub_msm;
  901. memcpy(msm_stub_dai_links,
  902. msm_stub_be_dai_links,
  903. sizeof(msm_stub_be_dai_links));
  904. dailink = msm_stub_dai_links;
  905. total_links = ARRAY_SIZE(msm_stub_be_dai_links);
  906. }
  907. if (card) {
  908. card->dai_link = dailink;
  909. card->num_links = total_links;
  910. card->late_probe = msm_snd_card_late_probe;
  911. }
  912. return card;
  913. }
  914. static int msm_int_audrx_init(struct snd_soc_pcm_runtime *rtd)
  915. {
  916. u8 spkleft_ports[WSA883X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  917. u8 spkright_ports[WSA883X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  918. u8 spkleft_port_types[WSA883X_MAX_SWR_PORTS] = {SPKR_L, SPKR_L_COMP,
  919. SPKR_L_BOOST, SPKR_L_VI};
  920. u8 spkright_port_types[WSA883X_MAX_SWR_PORTS] = {SPKR_R, SPKR_R_COMP,
  921. SPKR_R_BOOST, SPKR_R_VI};
  922. unsigned int ch_rate[WSA883X_MAX_SWR_PORTS] = {SWR_CLK_RATE_2P4MHZ, SWR_CLK_RATE_0P6MHZ,
  923. SWR_CLK_RATE_0P3MHZ, SWR_CLK_RATE_1P2MHZ};
  924. unsigned int ch_mask[WSA883X_MAX_SWR_PORTS] = {0x1, 0xF, 0x3, 0x3};
  925. struct snd_soc_component *component = NULL;
  926. struct snd_soc_dapm_context *dapm = NULL;
  927. struct snd_card *card = NULL;
  928. struct snd_info_entry *entry = NULL;
  929. struct msm_asoc_mach_data *pdata =
  930. snd_soc_card_get_drvdata(rtd->card);
  931. int ret = 0;
  932. if (codec_reg_done) {
  933. return 0;
  934. }
  935. if (pdata->wsa_max_devs > 0) {
  936. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.1");
  937. if (!component) {
  938. pr_err("%s: wsa-codec.1 component is NULL\n", __func__);
  939. return -EINVAL;
  940. }
  941. dapm = snd_soc_component_get_dapm(component);
  942. wsa883x_set_channel_map(component, &spkleft_ports[0],
  943. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  944. &ch_rate[0], &spkleft_port_types[0]);
  945. if (dapm->component) {
  946. snd_soc_dapm_ignore_suspend(dapm, "spkrLeft IN");
  947. snd_soc_dapm_ignore_suspend(dapm, "spkrLeft SPKR");
  948. }
  949. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  950. component);
  951. }
  952. /* If current platform has more than one WSA */
  953. if (pdata->wsa_max_devs > 1) {
  954. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.2");
  955. if (!component) {
  956. pr_err("%s: wsa-codec.2 component is NULL\n", __func__);
  957. return -EINVAL;
  958. }
  959. dapm = snd_soc_component_get_dapm(component);
  960. wsa883x_set_channel_map(component, &spkright_ports[0],
  961. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  962. &ch_rate[0], &spkright_port_types[0]);
  963. if (dapm->component) {
  964. snd_soc_dapm_ignore_suspend(dapm, "spkrRight IN");
  965. snd_soc_dapm_ignore_suspend(dapm, "spkrRight SPKR");
  966. }
  967. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  968. component);
  969. }
  970. if (pdata->wsa_max_devs > 2) {
  971. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.3");
  972. if (!component) {
  973. pr_err("%s: wsa-codec.3 component is NULL\n", __func__);
  974. return -EINVAL;
  975. }
  976. dapm = snd_soc_component_get_dapm(component);
  977. wsa883x_set_channel_map(component, &spkleft_ports[0],
  978. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  979. &ch_rate[0], &spkleft_port_types[0]);
  980. if (dapm->component) {
  981. snd_soc_dapm_ignore_suspend(dapm, "spkr2Left IN");
  982. snd_soc_dapm_ignore_suspend(dapm, "spkr2Left SPKR");
  983. }
  984. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  985. component);
  986. }
  987. if (pdata->wsa_max_devs > 3) {
  988. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.4");
  989. if (!component) {
  990. pr_err("%s: wsa-codec.4 component is NULL\n", __func__);
  991. return -EINVAL;
  992. }
  993. dapm = snd_soc_component_get_dapm(component);
  994. wsa883x_set_channel_map(component, &spkright_ports[0],
  995. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  996. &ch_rate[0], &spkright_port_types[0]);
  997. if (dapm->component) {
  998. snd_soc_dapm_ignore_suspend(dapm, "spkr2Right IN");
  999. snd_soc_dapm_ignore_suspend(dapm, "spkr2Right SPKR");
  1000. }
  1001. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  1002. component);
  1003. }
  1004. component = snd_soc_rtdcom_lookup(rtd, "lpass-cdc");
  1005. if (!component) {
  1006. pr_err("%s: could not find component for lpass-cdc\n",
  1007. __func__);
  1008. return ret;
  1009. }
  1010. dapm = snd_soc_component_get_dapm(component);
  1011. snd_soc_dapm_new_controls(dapm, msm_int_dapm_widgets,
  1012. ARRAY_SIZE(msm_int_dapm_widgets));
  1013. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic0");
  1014. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic1");
  1015. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic2");
  1016. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic3");
  1017. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic4");
  1018. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic5");
  1019. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic6");
  1020. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic7");
  1021. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic1");
  1022. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic2");
  1023. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic3");
  1024. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic4");
  1025. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic5");
  1026. snd_soc_dapm_ignore_suspend(dapm, "WSA_SPK1 OUT");
  1027. snd_soc_dapm_ignore_suspend(dapm, "WSA_SPK2 OUT");
  1028. snd_soc_dapm_ignore_suspend(dapm, "WSA2_SPK1 OUT");
  1029. snd_soc_dapm_ignore_suspend(dapm, "WSA2_SPK2 OUT");
  1030. snd_soc_dapm_ignore_suspend(dapm, "WSA AIF VI");
  1031. snd_soc_dapm_ignore_suspend(dapm, "VIINPUT_WSA");
  1032. snd_soc_dapm_sync(dapm);
  1033. lpass_cdc_set_port_map(component, ARRAY_SIZE(sm_port_map), sm_port_map);
  1034. card = rtd->card->snd_card;
  1035. if (!pdata->codec_root) {
  1036. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1037. card->proc_root);
  1038. if (!entry) {
  1039. pr_debug("%s: Cannot create codecs module entry\n",
  1040. __func__);
  1041. ret = 0;
  1042. goto err;
  1043. }
  1044. pdata->codec_root = entry;
  1045. }
  1046. lpass_cdc_info_create_codec_entry(pdata->codec_root, component);
  1047. lpass_cdc_register_wake_irq(component, false);
  1048. codec_reg_done = true;
  1049. msm_common_dai_link_init(rtd);
  1050. err:
  1051. return ret;
  1052. }
  1053. static int msm_aux_codec_init(struct snd_soc_pcm_runtime *rtd)
  1054. {
  1055. struct snd_soc_component *component = NULL;
  1056. struct snd_soc_dapm_context *dapm = NULL;
  1057. struct snd_info_entry *entry;
  1058. struct snd_card *card = NULL;
  1059. struct msm_asoc_mach_data *pdata;
  1060. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  1061. if (!component) {
  1062. pr_err("%s component is NULL\n", __func__);
  1063. return -EINVAL;
  1064. }
  1065. dapm = snd_soc_component_get_dapm(component);
  1066. card = component->card->snd_card;
  1067. snd_soc_dapm_ignore_suspend(dapm, "EAR");
  1068. snd_soc_dapm_ignore_suspend(dapm, "AUX");
  1069. snd_soc_dapm_ignore_suspend(dapm, "HPHL");
  1070. snd_soc_dapm_ignore_suspend(dapm, "HPHR");
  1071. snd_soc_dapm_ignore_suspend(dapm, "AMIC1");
  1072. snd_soc_dapm_ignore_suspend(dapm, "AMIC2");
  1073. snd_soc_dapm_ignore_suspend(dapm, "AMIC3");
  1074. snd_soc_dapm_ignore_suspend(dapm, "AMIC4");
  1075. snd_soc_dapm_sync(dapm);
  1076. pdata = snd_soc_card_get_drvdata(component->card);
  1077. if (!pdata->codec_root) {
  1078. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1079. card->proc_root);
  1080. if (!entry) {
  1081. dev_dbg(component->dev, "%s: Cannot create codecs module entry\n",
  1082. __func__);
  1083. return 0;
  1084. }
  1085. pdata->codec_root = entry;
  1086. }
  1087. wcd938x_info_create_codec_entry(pdata->codec_root, component);
  1088. #if 0
  1089. codec_variant = wcd938x_get_codec_variant(component);
  1090. dev_dbg(component->dev, "%s: variant %d\n", __func__, codec_variant);
  1091. if (codec_variant == WCD9380)
  1092. ret = snd_soc_add_component_controls(component,
  1093. msm_int_wcd9380_snd_controls,
  1094. ARRAY_SIZE(msm_int_wcd9380_snd_controls));
  1095. else if (codec_variant == WCD9385)
  1096. ret = snd_soc_add_component_controls(component,
  1097. msm_int_wcd9385_snd_controls,
  1098. ARRAY_SIZE(msm_int_wcd9385_snd_controls));
  1099. if (ret < 0) {
  1100. dev_err(component->dev, "%s: add codec specific snd controls failed: %d\n",
  1101. __func__, ret);
  1102. return ret;
  1103. }
  1104. #endif
  1105. codec_reg_done = true;
  1106. msm_common_dai_link_init(rtd);
  1107. return 0;
  1108. }
  1109. static int waipio_ssr_enable(struct device *dev, void *data)
  1110. {
  1111. struct platform_device *pdev = to_platform_device(dev);
  1112. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1113. int ret = 0;
  1114. if (!card) {
  1115. dev_err(dev, "%s: card is NULL\n", __func__);
  1116. ret = -EINVAL;
  1117. goto err;
  1118. }
  1119. if (!strcmp(card->name, "waipio-stub-snd-card")) {
  1120. /* TODO */
  1121. dev_dbg(dev, "%s: TODO \n", __func__);
  1122. }
  1123. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1124. snd_soc_card_change_online_state(card, 1);
  1125. #endif /* CONFIG_AUDIO_QGKI */
  1126. dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
  1127. err:
  1128. return ret;
  1129. }
  1130. static void waipio_ssr_disable(struct device *dev, void *data)
  1131. {
  1132. struct platform_device *pdev = to_platform_device(dev);
  1133. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1134. if (!card) {
  1135. dev_err(dev, "%s: card is NULL\n", __func__);
  1136. return;
  1137. }
  1138. dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
  1139. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1140. snd_soc_card_change_online_state(card, 0);
  1141. #endif /* CONFIG_AUDIO_QGKI */
  1142. if (!strcmp(card->name, "waipio-stub-snd-card")) {
  1143. /* TODO */
  1144. dev_dbg(dev, "%s: TODO \n", __func__);
  1145. }
  1146. }
  1147. static const struct snd_event_ops waipio_ssr_ops = {
  1148. .enable = waipio_ssr_enable,
  1149. .disable = waipio_ssr_disable,
  1150. };
  1151. static int msm_audio_ssr_compare(struct device *dev, void *data)
  1152. {
  1153. struct device_node *node = data;
  1154. dev_dbg(dev, "%s: dev->of_node = 0x%p, node = 0x%p\n",
  1155. __func__, dev->of_node, node);
  1156. return (dev->of_node && dev->of_node == node);
  1157. }
  1158. static int msm_audio_ssr_register(struct device *dev)
  1159. {
  1160. struct device_node *np = dev->of_node;
  1161. struct snd_event_clients *ssr_clients = NULL;
  1162. struct device_node *node = NULL;
  1163. int ret = 0;
  1164. int i = 0;
  1165. for (i = 0; ; i++) {
  1166. node = of_parse_phandle(np, "qcom,msm_audio_ssr_devs", i);
  1167. if (!node)
  1168. break;
  1169. snd_event_mstr_add_client(&ssr_clients,
  1170. msm_audio_ssr_compare, node);
  1171. }
  1172. ret = snd_event_master_register(dev, &waipio_ssr_ops,
  1173. ssr_clients, NULL);
  1174. if (!ret)
  1175. snd_event_notify(dev, SND_EVENT_UP);
  1176. return ret;
  1177. }
  1178. struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card)
  1179. {
  1180. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1181. if (!pdata)
  1182. return NULL;
  1183. return pdata->common_pdata;
  1184. }
  1185. void msm_common_set_pdata(struct snd_soc_card *card,
  1186. struct msm_common_pdata *common_pdata)
  1187. {
  1188. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1189. if (!pdata)
  1190. return;
  1191. pdata->common_pdata = common_pdata;
  1192. }
  1193. static int msm_asoc_machine_probe(struct platform_device *pdev)
  1194. {
  1195. struct snd_soc_card *card = NULL;
  1196. struct msm_asoc_mach_data *pdata = NULL;
  1197. int ret = 0;
  1198. struct clk *lpass_audio_hw_vote = NULL;
  1199. if (!pdev->dev.of_node) {
  1200. dev_err(&pdev->dev, "%s: No platform supplied from device tree\n", __func__);
  1201. return -EINVAL;
  1202. }
  1203. pdata = devm_kzalloc(&pdev->dev,
  1204. sizeof(struct msm_asoc_mach_data), GFP_KERNEL);
  1205. if (!pdata)
  1206. return -ENOMEM;
  1207. card = populate_snd_card_dailinks(&pdev->dev);
  1208. if (!card) {
  1209. dev_err(&pdev->dev, "%s: Card uninitialized\n", __func__);
  1210. ret = -EINVAL;
  1211. goto err;
  1212. }
  1213. card->dev = &pdev->dev;
  1214. platform_set_drvdata(pdev, card);
  1215. snd_soc_card_set_drvdata(card, pdata);
  1216. ret = snd_soc_of_parse_card_name(card, "qcom,model");
  1217. if (ret) {
  1218. dev_err(&pdev->dev, "%s: parse card name failed, err:%d\n",
  1219. __func__, ret);
  1220. goto err;
  1221. }
  1222. ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing");
  1223. if (ret) {
  1224. dev_err(&pdev->dev, "%s: parse audio routing failed, err:%d\n",
  1225. __func__, ret);
  1226. goto err;
  1227. }
  1228. ret = msm_populate_dai_link_component_of_node(card);
  1229. if (ret) {
  1230. ret = -EPROBE_DEFER;
  1231. goto err;
  1232. }
  1233. /* Get maximum WSA device count for this platform */
  1234. ret = of_property_read_u32(pdev->dev.of_node,
  1235. "qcom,wsa-max-devs", &pdata->wsa_max_devs);
  1236. if (ret) {
  1237. dev_info(&pdev->dev,
  1238. "%s: wsa-max-devs property missing in DT %s, ret = %d\n",
  1239. __func__, pdev->dev.of_node->full_name, ret);
  1240. pdata->wsa_max_devs = 0;
  1241. }
  1242. ret = devm_snd_soc_register_card(&pdev->dev, card);
  1243. if (ret == -EPROBE_DEFER) {
  1244. if (codec_reg_done)
  1245. ret = -EINVAL;
  1246. goto err;
  1247. } else if (ret) {
  1248. dev_err(&pdev->dev, "%s: snd_soc_register_card failed (%d)\n",
  1249. __func__, ret);
  1250. goto err;
  1251. }
  1252. dev_info(&pdev->dev, "%s: Sound card %s registered\n",
  1253. __func__, card->name);
  1254. if (wcd_mbhc_cfg.enable_usbc_analog)
  1255. wcd_mbhc_cfg.swap_gnd_mic = msm_usbc_swap_gnd_mic;
  1256. pdata->fsa_handle = of_parse_phandle(pdev->dev.of_node,
  1257. "fsa4480-i2c-handle", 0);
  1258. if (!pdata->fsa_handle)
  1259. dev_dbg(&pdev->dev, "property %s not detected in node %s\n",
  1260. "fsa4480-i2c-handle", pdev->dev.of_node->full_name);
  1261. pdata->dmic01_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1262. "qcom,cdc-dmic01-gpios",
  1263. 0);
  1264. pdata->dmic23_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1265. "qcom,cdc-dmic23-gpios",
  1266. 0);
  1267. pdata->dmic45_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1268. "qcom,cdc-dmic45-gpios",
  1269. 0);
  1270. if (pdata->dmic01_gpio_p)
  1271. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic01_gpio_p, false);
  1272. if (pdata->dmic23_gpio_p)
  1273. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic23_gpio_p, false);
  1274. if (pdata->dmic45_gpio_p)
  1275. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic45_gpio_p, false);
  1276. msm_common_snd_init(pdev, card);
  1277. /* Register LPASS audio hw vote */
  1278. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1279. if (IS_ERR(lpass_audio_hw_vote)) {
  1280. ret = PTR_ERR(lpass_audio_hw_vote);
  1281. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1282. __func__, "lpass_audio_hw_vote", ret);
  1283. lpass_audio_hw_vote = NULL;
  1284. ret = 0;
  1285. }
  1286. pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1287. pdata->core_audio_vote_count = 0;
  1288. ret = msm_audio_ssr_register(&pdev->dev);
  1289. if (ret)
  1290. pr_err("%s: Registration with SND event FWK failed ret = %d\n",
  1291. __func__, ret);
  1292. is_initial_boot = true;
  1293. /* Add QoS request for audio tasks */
  1294. msm_audio_add_qos_request();
  1295. return 0;
  1296. err:
  1297. devm_kfree(&pdev->dev, pdata);
  1298. return ret;
  1299. }
  1300. static int msm_asoc_machine_remove(struct platform_device *pdev)
  1301. {
  1302. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1303. struct msm_asoc_mach_data *pdata = NULL;
  1304. struct msm_common_pdata *common_pdata = NULL;
  1305. if (card)
  1306. pdata = snd_soc_card_get_drvdata(card);
  1307. if (pdata)
  1308. common_pdata = pdata->common_pdata;
  1309. msm_common_snd_deinit(common_pdata);
  1310. snd_event_master_deregister(&pdev->dev);
  1311. snd_soc_unregister_card(card);
  1312. msm_audio_remove_qos_request();
  1313. return 0;
  1314. }
  1315. static struct platform_driver waipio_asoc_machine_driver = {
  1316. .driver = {
  1317. .name = DRV_NAME,
  1318. .owner = THIS_MODULE,
  1319. .pm = &snd_soc_pm_ops,
  1320. .of_match_table = waipio_asoc_machine_of_match,
  1321. .suppress_bind_attrs = true,
  1322. },
  1323. .probe = msm_asoc_machine_probe,
  1324. .remove = msm_asoc_machine_remove,
  1325. };
  1326. module_platform_driver(waipio_asoc_machine_driver);
  1327. MODULE_SOFTDEP("pre: bt_fm_slim");
  1328. MODULE_DESCRIPTION("ALSA SoC msm");
  1329. MODULE_LICENSE("GPL v2");
  1330. MODULE_ALIAS("platform:" DRV_NAME);
  1331. MODULE_DEVICE_TABLE(of, waipio_asoc_machine_of_match);