lahaina.c 41 KB

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