lahaina.c 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516
  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. static struct snd_soc_dai_link msm_wcn_be_dai_links[] = {
  381. {
  382. .name = LPASS_BE_SLIMBUS_7_RX,
  383. .stream_name = LPASS_BE_SLIMBUS_7_RX,
  384. .playback_only = 1,
  385. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  386. SND_SOC_DPCM_TRIGGER_POST},
  387. .init = &msm_wcn_init,
  388. .ops = &msm_common_be_ops,
  389. /* dai link has playback support */
  390. .ignore_pmdown_time = 1,
  391. .ignore_suspend = 1,
  392. SND_SOC_DAILINK_REG(slimbus_7_rx),
  393. },
  394. {
  395. .name = LPASS_BE_SLIMBUS_7_TX,
  396. .stream_name = LPASS_BE_SLIMBUS_7_TX,
  397. .capture_only = 1,
  398. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  399. SND_SOC_DPCM_TRIGGER_POST},
  400. .ops = &msm_common_be_ops,
  401. .ignore_suspend = 1,
  402. SND_SOC_DAILINK_REG(slimbus_7_tx),
  403. },
  404. };
  405. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  406. static struct snd_soc_dai_link ext_disp_be_dai_link[] = {
  407. /* DISP PORT BACK END DAI Link */
  408. {
  409. .name = LPASS_BE_DISPLAY_PORT_RX,
  410. .stream_name = LPASS_BE_DISPLAY_PORT_RX,
  411. .playback_only = 1,
  412. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  413. SND_SOC_DPCM_TRIGGER_POST},
  414. .ignore_pmdown_time = 1,
  415. .ignore_suspend = 1,
  416. SND_SOC_DAILINK_REG(display_port),
  417. },
  418. };
  419. #endif
  420. static struct snd_soc_dai_link msm_wsa_cdc_dma_be_dai_links[] = {
  421. /* WSA CDC DMA Backend DAI Links */
  422. {
  423. .name = LPASS_BE_WSA_CDC_DMA_RX_0,
  424. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_0,
  425. .playback_only = 1,
  426. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  427. SND_SOC_DPCM_TRIGGER_POST},
  428. .ignore_pmdown_time = 1,
  429. .ignore_suspend = 1,
  430. .ops = &msm_common_be_ops,
  431. SND_SOC_DAILINK_REG(wsa_dma_rx0),
  432. .init = &msm_int_audrx_init,
  433. },
  434. {
  435. .name = LPASS_BE_WSA_CDC_DMA_RX_1,
  436. .stream_name = LPASS_BE_WSA_CDC_DMA_RX_1,
  437. .playback_only = 1,
  438. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  439. SND_SOC_DPCM_TRIGGER_POST},
  440. .ignore_pmdown_time = 1,
  441. .ignore_suspend = 1,
  442. .ops = &msm_common_be_ops,
  443. SND_SOC_DAILINK_REG(wsa_dma_rx1),
  444. },
  445. {
  446. .name = LPASS_BE_WSA_CDC_DMA_TX_1,
  447. .stream_name = LPASS_BE_WSA_CDC_DMA_TX_1,
  448. .capture_only = 1,
  449. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  450. SND_SOC_DPCM_TRIGGER_POST},
  451. .ignore_suspend = 1,
  452. .ops = &msm_common_be_ops,
  453. SND_SOC_DAILINK_REG(wsa_dma_tx1),
  454. },
  455. };
  456. static struct snd_soc_dai_link msm_rx_tx_cdc_dma_be_dai_links[] = {
  457. /* RX CDC DMA Backend DAI Links */
  458. {
  459. .name = LPASS_BE_RX_CDC_DMA_RX_0,
  460. .stream_name = LPASS_BE_RX_CDC_DMA_RX_0,
  461. .playback_only = 1,
  462. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  463. SND_SOC_DPCM_TRIGGER_POST},
  464. .ignore_pmdown_time = 1,
  465. .ignore_suspend = 1,
  466. .ops = &msm_common_be_ops,
  467. SND_SOC_DAILINK_REG(rx_dma_rx0),
  468. .init = &msm_aux_codec_init,
  469. },
  470. {
  471. .name = LPASS_BE_RX_CDC_DMA_RX_1,
  472. .stream_name = LPASS_BE_RX_CDC_DMA_RX_1,
  473. .playback_only = 1,
  474. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  475. SND_SOC_DPCM_TRIGGER_POST},
  476. .ignore_pmdown_time = 1,
  477. .ignore_suspend = 1,
  478. .ops = &msm_common_be_ops,
  479. SND_SOC_DAILINK_REG(rx_dma_rx1),
  480. .init = &msm_int_audrx_init,
  481. },
  482. {
  483. .name = LPASS_BE_RX_CDC_DMA_RX_2,
  484. .stream_name = LPASS_BE_RX_CDC_DMA_RX_2,
  485. .playback_only = 1,
  486. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  487. SND_SOC_DPCM_TRIGGER_POST},
  488. .ignore_pmdown_time = 1,
  489. .ignore_suspend = 1,
  490. .ops = &msm_common_be_ops,
  491. SND_SOC_DAILINK_REG(rx_dma_rx2),
  492. },
  493. {
  494. .name = LPASS_BE_RX_CDC_DMA_RX_3,
  495. .stream_name = LPASS_BE_RX_CDC_DMA_RX_3,
  496. .playback_only = 1,
  497. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  498. SND_SOC_DPCM_TRIGGER_POST},
  499. .ignore_pmdown_time = 1,
  500. .ignore_suspend = 1,
  501. .ops = &msm_common_be_ops,
  502. SND_SOC_DAILINK_REG(rx_dma_rx3),
  503. },
  504. {
  505. .name = LPASS_BE_RX_CDC_DMA_RX_5,
  506. .stream_name = LPASS_BE_RX_CDC_DMA_RX_5,
  507. .playback_only = 1,
  508. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  509. SND_SOC_DPCM_TRIGGER_POST},
  510. .ignore_pmdown_time = 1,
  511. .ignore_suspend = 1,
  512. .ops = &msm_common_be_ops,
  513. SND_SOC_DAILINK_REG(rx_dma_rx5),
  514. },
  515. {
  516. .name = LPASS_BE_RX_CDC_DMA_RX_6,
  517. .stream_name = LPASS_BE_RX_CDC_DMA_RX_6,
  518. .playback_only = 1,
  519. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  520. SND_SOC_DPCM_TRIGGER_POST},
  521. .ignore_pmdown_time = 1,
  522. .ignore_suspend = 1,
  523. .ops = &msm_common_be_ops,
  524. SND_SOC_DAILINK_REG(rx_dma_rx6),
  525. },
  526. /* TX CDC DMA Backend DAI Links */
  527. {
  528. .name = LPASS_BE_TX_CDC_DMA_TX_3,
  529. .stream_name = LPASS_BE_TX_CDC_DMA_TX_3,
  530. .capture_only = 1,
  531. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  532. SND_SOC_DPCM_TRIGGER_POST},
  533. .ignore_suspend = 1,
  534. .ops = &msm_common_be_ops,
  535. SND_SOC_DAILINK_REG(tx_dma_tx3),
  536. },
  537. {
  538. .name = LPASS_BE_TX_CDC_DMA_TX_4,
  539. .stream_name = LPASS_BE_TX_CDC_DMA_TX_4,
  540. .capture_only = 1,
  541. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  542. SND_SOC_DPCM_TRIGGER_POST},
  543. .ignore_suspend = 1,
  544. .ops = &msm_common_be_ops,
  545. SND_SOC_DAILINK_REG(tx_dma_tx4),
  546. },
  547. };
  548. static struct snd_soc_dai_link msm_va_cdc_dma_be_dai_links[] = {
  549. {
  550. .name = LPASS_BE_VA_CDC_DMA_TX_0,
  551. .stream_name = LPASS_BE_VA_CDC_DMA_TX_0,
  552. .capture_only = 1,
  553. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  554. SND_SOC_DPCM_TRIGGER_POST},
  555. .ignore_suspend = 1,
  556. .ops = &msm_common_be_ops,
  557. SND_SOC_DAILINK_REG(va_dma_tx0),
  558. },
  559. {
  560. .name = LPASS_BE_VA_CDC_DMA_TX_1,
  561. .stream_name = LPASS_BE_VA_CDC_DMA_TX_1,
  562. .capture_only = 1,
  563. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  564. SND_SOC_DPCM_TRIGGER_POST},
  565. .ignore_suspend = 1,
  566. .ops = &msm_common_be_ops,
  567. SND_SOC_DAILINK_REG(va_dma_tx1),
  568. },
  569. {
  570. .name = LPASS_BE_VA_CDC_DMA_TX_2,
  571. .stream_name = LPASS_BE_VA_CDC_DMA_TX_2,
  572. .capture_only = 1,
  573. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  574. SND_SOC_DPCM_TRIGGER_POST},
  575. .ignore_suspend = 1,
  576. .ops = &msm_common_be_ops,
  577. SND_SOC_DAILINK_REG(va_dma_tx2),
  578. },
  579. };
  580. static struct snd_soc_dai_link msm_mi2s_dai_links[] = {
  581. {
  582. .name = LPASS_BE_QUAT_MI2S_RX,
  583. .stream_name = LPASS_BE_QUAT_MI2S_RX,
  584. .playback_only = 1,
  585. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  586. SND_SOC_DPCM_TRIGGER_POST},
  587. .ops = &msm_common_be_ops,
  588. .ignore_suspend = 1,
  589. .ignore_pmdown_time = 1,
  590. SND_SOC_DAILINK_REG(quat_mi2s_rx),
  591. },
  592. {
  593. .name = LPASS_BE_QUAT_MI2S_TX,
  594. .stream_name = LPASS_BE_QUAT_MI2S_TX,
  595. .capture_only = 1,
  596. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  597. SND_SOC_DPCM_TRIGGER_POST},
  598. .ops = &msm_common_be_ops,
  599. .ignore_suspend = 1,
  600. SND_SOC_DAILINK_REG(quat_mi2s_tx),
  601. },
  602. };
  603. static struct snd_soc_dai_link msm_tdm_dai_links[] = {
  604. {
  605. .name = LPASS_BE_PRI_TDM_RX_0,
  606. .stream_name = LPASS_BE_PRI_TDM_RX_0,
  607. .playback_only = 1,
  608. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  609. SND_SOC_DPCM_TRIGGER_POST},
  610. .ops = &msm_common_be_ops,
  611. .ignore_suspend = 1,
  612. .ignore_pmdown_time = 1,
  613. SND_SOC_DAILINK_REG(pri_tdm_rx_0),
  614. },
  615. {
  616. .name = LPASS_BE_PRI_TDM_TX_0,
  617. .stream_name = LPASS_BE_PRI_TDM_TX_0,
  618. .capture_only = 1,
  619. .trigger = {SND_SOC_DPCM_TRIGGER_POST,
  620. SND_SOC_DPCM_TRIGGER_POST},
  621. .ops = &msm_common_be_ops,
  622. .ignore_suspend = 1,
  623. SND_SOC_DAILINK_REG(pri_tdm_tx_0),
  624. },
  625. };
  626. static struct snd_soc_dai_link msm_lahaina_dai_links[
  627. ARRAY_SIZE(msm_wsa_cdc_dma_be_dai_links) +
  628. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links) +
  629. ARRAY_SIZE(msm_va_cdc_dma_be_dai_links) +
  630. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  631. ARRAY_SIZE(ext_disp_be_dai_link) +
  632. #endif
  633. ARRAY_SIZE(msm_common_be_dai_links) +
  634. ARRAY_SIZE(msm_wcn_be_dai_links) +
  635. ARRAY_SIZE(msm_mi2s_dai_links) +
  636. ARRAY_SIZE(msm_tdm_dai_links)];
  637. static int msm_populate_dai_link_component_of_node(
  638. struct snd_soc_card *card)
  639. {
  640. int i, j, index, ret = 0;
  641. struct device *cdev = card->dev;
  642. struct snd_soc_dai_link *dai_link = card->dai_link;
  643. struct device_node *np = NULL;
  644. int codecs_enabled = 0;
  645. struct snd_soc_dai_link_component *codecs_comp = NULL;
  646. if (!cdev) {
  647. dev_err(cdev, "%s: Sound card device memory NULL\n", __func__);
  648. return -ENODEV;
  649. }
  650. for (i = 0; i < card->num_links; i++) {
  651. if (dai_link[i].init == NULL)
  652. dai_link[i].init = &msm_common_dai_link_init;
  653. /* populate codec_of_node for snd card dai links */
  654. if (dai_link[i].num_codecs > 0) {
  655. for (j = 0; j < dai_link[i].num_codecs; j++) {
  656. if (dai_link[i].codecs[j].of_node ||
  657. !dai_link[i].codecs[j].name)
  658. continue;
  659. index = of_property_match_string(cdev->of_node,
  660. "asoc-codec-names",
  661. dai_link[i].codecs[j].name);
  662. if (index < 0)
  663. continue;
  664. np = of_parse_phandle(cdev->of_node,
  665. "asoc-codec",
  666. index);
  667. if (!np) {
  668. dev_err(cdev, "%s: retrieving phandle for codec %s failed\n",
  669. __func__,
  670. dai_link[i].codecs[j].name);
  671. ret = -ENODEV;
  672. goto err;
  673. }
  674. dai_link[i].codecs[j].of_node = np;
  675. dai_link[i].codecs[j].name = NULL;
  676. }
  677. }
  678. }
  679. /* In multi-codec scenario, check if codecs are enabled for this platform */
  680. for (i = 0; i < card->num_links; i++) {
  681. codecs_enabled = 0;
  682. if (dai_link[i].num_codecs > 1) {
  683. for (j = 0; j < dai_link[i].num_codecs; j++) {
  684. if (!dai_link[i].codecs[j].of_node)
  685. continue;
  686. np = dai_link[i].codecs[j].of_node;
  687. if (!of_device_is_available(np)) {
  688. dev_err(cdev, "%s: codec is disabled: %s\n",
  689. __func__,
  690. np->full_name);
  691. dai_link[i].codecs[j].of_node = NULL;
  692. continue;
  693. }
  694. codecs_enabled++;
  695. }
  696. if (codecs_enabled > 0 &&
  697. codecs_enabled < dai_link[i].num_codecs) {
  698. codecs_comp = devm_kzalloc(cdev,
  699. sizeof(struct snd_soc_dai_link_component)
  700. * codecs_enabled, GFP_KERNEL);
  701. if (!codecs_comp) {
  702. dev_err(cdev, "%s: %s dailink codec component alloc failed\n",
  703. __func__, dai_link[i].name);
  704. ret = -ENOMEM;
  705. goto err;
  706. }
  707. index = 0;
  708. for (j = 0; j < dai_link[i].num_codecs; j++) {
  709. if(dai_link[i].codecs[j].of_node) {
  710. codecs_comp[index].of_node =
  711. dai_link[i].codecs[j].of_node;
  712. codecs_comp[index].dai_name =
  713. dai_link[i].codecs[j].dai_name;
  714. codecs_comp[index].name = NULL;
  715. index++;
  716. }
  717. }
  718. dai_link[i].codecs = codecs_comp;
  719. dai_link[i].num_codecs = codecs_enabled;
  720. }
  721. }
  722. }
  723. err:
  724. return ret;
  725. }
  726. static int msm_audrx_stub_init(struct snd_soc_pcm_runtime *rtd)
  727. {
  728. return 0;
  729. }
  730. static int msm_snd_stub_hw_params(struct snd_pcm_substream *substream,
  731. struct snd_pcm_hw_params *params)
  732. {
  733. return 0;
  734. }
  735. static struct snd_soc_ops msm_stub_be_ops = {
  736. .hw_params = msm_snd_stub_hw_params,
  737. };
  738. struct snd_soc_card snd_soc_card_stub_msm = {
  739. .name = "lahaina-stub-snd-card",
  740. };
  741. static struct snd_soc_dai_link msm_stub_be_dai_links[] = {
  742. /* Backend DAI Links */
  743. {
  744. .name = LPASS_BE_PRI_AUXPCM_RX,
  745. .stream_name = LPASS_BE_PRI_AUXPCM_RX,
  746. .playback_only = 1,
  747. .init = &msm_audrx_stub_init,
  748. .ignore_pmdown_time = 1,
  749. .ignore_suspend = 1,
  750. .ops = &msm_stub_be_ops,
  751. SND_SOC_DAILINK_REG(auxpcm_rx),
  752. },
  753. {
  754. .name = LPASS_BE_PRI_AUXPCM_TX,
  755. .stream_name = LPASS_BE_PRI_AUXPCM_TX,
  756. .capture_only = 1,
  757. .ignore_suspend = 1,
  758. .ops = &msm_stub_be_ops,
  759. SND_SOC_DAILINK_REG(auxpcm_tx),
  760. },
  761. };
  762. static struct snd_soc_dai_link msm_stub_dai_links[
  763. ARRAY_SIZE(msm_stub_be_dai_links)];
  764. static const struct of_device_id lahaina_asoc_machine_of_match[] = {
  765. { .compatible = "qcom,lahaina-asoc-snd",
  766. .data = "codec"},
  767. { .compatible = "qcom,lahaina-asoc-snd-stub",
  768. .data = "stub_codec"},
  769. {},
  770. };
  771. static int msm_snd_card_late_probe(struct snd_soc_card *card)
  772. {
  773. struct snd_soc_component *component = NULL;
  774. const char *be_dl_name = LPASS_BE_RX_CDC_DMA_RX_0;
  775. struct snd_soc_pcm_runtime *rtd;
  776. int ret = 0;
  777. void *mbhc_calibration;
  778. rtd = snd_soc_get_pcm_runtime(card, be_dl_name);
  779. if (!rtd) {
  780. dev_err(card->dev,
  781. "%s: snd_soc_get_pcm_runtime for %s failed!\n",
  782. __func__, be_dl_name);
  783. return -EINVAL;
  784. }
  785. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  786. if (!component) {
  787. pr_err("%s component is NULL\n", __func__);
  788. return -EINVAL;
  789. }
  790. mbhc_calibration = def_wcd_mbhc_cal();
  791. if (!mbhc_calibration)
  792. return -ENOMEM;
  793. wcd_mbhc_cfg.calibration = mbhc_calibration;
  794. ret = wcd938x_mbhc_hs_detect(component, &wcd_mbhc_cfg);
  795. if (ret) {
  796. dev_err(component->dev, "%s: mbhc hs detect failed, err:%d\n",
  797. __func__, ret);
  798. goto err_hs_detect;
  799. }
  800. return 0;
  801. err_hs_detect:
  802. kfree(mbhc_calibration);
  803. return ret;
  804. }
  805. static struct snd_soc_card *populate_snd_card_dailinks(struct device *dev)
  806. {
  807. struct snd_soc_card *card = NULL;
  808. struct snd_soc_dai_link *dailink = NULL;
  809. int total_links = 0;
  810. int rc = 0;
  811. u32 val = 0;
  812. const struct of_device_id *match;
  813. match = of_match_node(lahaina_asoc_machine_of_match, dev->of_node);
  814. if (!match) {
  815. dev_err(dev, "%s: No DT match found for sound card\n",
  816. __func__);
  817. return NULL;
  818. }
  819. if (!strcmp(match->data, "codec")) {
  820. card = &snd_soc_card_lahaina_msm;
  821. memcpy(msm_lahaina_dai_links + total_links,
  822. msm_wsa_cdc_dma_be_dai_links,
  823. sizeof(msm_wsa_cdc_dma_be_dai_links));
  824. total_links += ARRAY_SIZE(msm_wsa_cdc_dma_be_dai_links);
  825. memcpy(msm_lahaina_dai_links + total_links,
  826. msm_rx_tx_cdc_dma_be_dai_links,
  827. sizeof(msm_rx_tx_cdc_dma_be_dai_links));
  828. total_links +=
  829. ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links);
  830. memcpy(msm_lahaina_dai_links + total_links,
  831. msm_va_cdc_dma_be_dai_links,
  832. sizeof(msm_va_cdc_dma_be_dai_links));
  833. total_links += ARRAY_SIZE(msm_va_cdc_dma_be_dai_links);
  834. memcpy(msm_lahaina_dai_links + total_links,
  835. msm_common_be_dai_links,
  836. sizeof(msm_common_be_dai_links));
  837. total_links += ARRAY_SIZE(msm_common_be_dai_links);
  838. rc = of_property_read_u32(dev->of_node,
  839. "qcom,mi2s-audio-intf", &val);
  840. if (!rc && val) {
  841. memcpy(msm_lahaina_dai_links + total_links,
  842. msm_mi2s_dai_links,
  843. sizeof(msm_mi2s_dai_links));
  844. total_links += ARRAY_SIZE(msm_mi2s_dai_links);
  845. }
  846. rc = of_property_read_u32(dev->of_node,
  847. "qcom,tdm-audio-intf", &val);
  848. if (!rc && val) {
  849. memcpy(msm_lahaina_dai_links + total_links,
  850. msm_tdm_dai_links,
  851. sizeof(msm_tdm_dai_links));
  852. total_links += ARRAY_SIZE(msm_tdm_dai_links);
  853. }
  854. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  855. rc = of_property_read_u32(dev->of_node,
  856. "qcom,ext-disp-audio-rx", &val);
  857. if (!rc && val) {
  858. dev_dbg(dev, "%s(): ext disp audio support present\n",
  859. __func__);
  860. memcpy(msm_lahaina_dai_links + total_links,
  861. ext_disp_be_dai_link,
  862. sizeof(ext_disp_be_dai_link));
  863. total_links += ARRAY_SIZE(ext_disp_be_dai_link);
  864. }
  865. #endif
  866. rc = of_property_read_u32(dev->of_node, "qcom,wcn-bt", &val);
  867. if (!rc && val) {
  868. dev_dbg(dev, "%s(): WCN BT support present\n",
  869. __func__);
  870. memcpy(msm_lahaina_dai_links + total_links,
  871. msm_wcn_be_dai_links,
  872. sizeof(msm_wcn_be_dai_links));
  873. total_links += ARRAY_SIZE(msm_wcn_be_dai_links);
  874. }
  875. dailink = msm_lahaina_dai_links;
  876. } else if(!strcmp(match->data, "stub_codec")) {
  877. card = &snd_soc_card_stub_msm;
  878. memcpy(msm_stub_dai_links,
  879. msm_stub_be_dai_links,
  880. sizeof(msm_stub_be_dai_links));
  881. dailink = msm_stub_dai_links;
  882. total_links = ARRAY_SIZE(msm_stub_be_dai_links);
  883. }
  884. if (card) {
  885. card->dai_link = dailink;
  886. card->num_links = total_links;
  887. card->late_probe = msm_snd_card_late_probe;
  888. }
  889. return card;
  890. }
  891. static int msm_int_audrx_init(struct snd_soc_pcm_runtime *rtd)
  892. {
  893. u8 spkleft_ports[WSA883X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  894. u8 spkright_ports[WSA883X_MAX_SWR_PORTS] = {0, 1, 2, 3};
  895. u8 spkleft_port_types[WSA883X_MAX_SWR_PORTS] = {SPKR_L, SPKR_L_COMP,
  896. SPKR_L_BOOST, SPKR_L_VI};
  897. u8 spkright_port_types[WSA883X_MAX_SWR_PORTS] = {SPKR_R, SPKR_R_COMP,
  898. SPKR_R_BOOST, SPKR_R_VI};
  899. unsigned int ch_rate[WSA883X_MAX_SWR_PORTS] = {SWR_CLK_RATE_2P4MHZ, SWR_CLK_RATE_0P6MHZ,
  900. SWR_CLK_RATE_0P3MHZ, SWR_CLK_RATE_1P2MHZ};
  901. unsigned int ch_mask[WSA883X_MAX_SWR_PORTS] = {0x1, 0xF, 0x3, 0x3};
  902. struct snd_soc_component *component = NULL;
  903. struct snd_soc_dapm_context *dapm = NULL;
  904. struct snd_card *card = NULL;
  905. struct snd_info_entry *entry = NULL;
  906. struct msm_asoc_mach_data *pdata =
  907. snd_soc_card_get_drvdata(rtd->card);
  908. int ret = 0;
  909. if (codec_reg_done) {
  910. return 0;
  911. }
  912. if (pdata->wsa_max_devs > 0) {
  913. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.1");
  914. if (!component) {
  915. pr_err("%s: wsa-codec.1 component is NULL\n", __func__);
  916. return -EINVAL;
  917. }
  918. dapm = snd_soc_component_get_dapm(component);
  919. wsa883x_set_channel_map(component, &spkleft_ports[0],
  920. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  921. &ch_rate[0], &spkleft_port_types[0]);
  922. if (dapm->component) {
  923. snd_soc_dapm_ignore_suspend(dapm, "spkrLeft IN");
  924. snd_soc_dapm_ignore_suspend(dapm, "spkrLeft SPKR");
  925. }
  926. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  927. component);
  928. }
  929. /* If current platform has more than one WSA */
  930. if (pdata->wsa_max_devs > 1) {
  931. component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.2");
  932. if (!component) {
  933. pr_err("%s: wsa-codec.2 component is NULL\n", __func__);
  934. return -EINVAL;
  935. }
  936. dapm = snd_soc_component_get_dapm(component);
  937. wsa883x_set_channel_map(component, &spkright_ports[0],
  938. WSA883X_MAX_SWR_PORTS, &ch_mask[0],
  939. &ch_rate[0], &spkright_port_types[0]);
  940. if (dapm->component) {
  941. snd_soc_dapm_ignore_suspend(dapm, "spkrRight IN");
  942. snd_soc_dapm_ignore_suspend(dapm, "spkrRight SPKR");
  943. }
  944. wsa883x_codec_info_create_codec_entry(pdata->codec_root,
  945. component);
  946. }
  947. component = snd_soc_rtdcom_lookup(rtd, "bolero_codec");
  948. if (!component) {
  949. pr_err("%s: could not find component for bolero_codec\n",
  950. __func__);
  951. return ret;
  952. }
  953. dapm = snd_soc_component_get_dapm(component);
  954. snd_soc_dapm_new_controls(dapm, msm_int_dapm_widgets,
  955. ARRAY_SIZE(msm_int_dapm_widgets));
  956. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic0");
  957. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic1");
  958. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic2");
  959. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic3");
  960. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic4");
  961. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic5");
  962. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic6");
  963. snd_soc_dapm_ignore_suspend(dapm, "Digital Mic7");
  964. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic1");
  965. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic2");
  966. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic3");
  967. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic4");
  968. snd_soc_dapm_ignore_suspend(dapm, "Analog Mic5");
  969. snd_soc_dapm_ignore_suspend(dapm, "WSA_SPK1 OUT");
  970. snd_soc_dapm_ignore_suspend(dapm, "WSA_SPK2 OUT");
  971. snd_soc_dapm_ignore_suspend(dapm, "WSA AIF VI");
  972. snd_soc_dapm_ignore_suspend(dapm, "VIINPUT_WSA");
  973. snd_soc_dapm_sync(dapm);
  974. bolero_set_port_map(component, ARRAY_SIZE(sm_port_map), sm_port_map);
  975. card = rtd->card->snd_card;
  976. if (!pdata->codec_root) {
  977. entry = msm_snd_info_create_subdir(card->module, "codecs",
  978. card->proc_root);
  979. if (!entry) {
  980. pr_debug("%s: Cannot create codecs module entry\n",
  981. __func__);
  982. ret = 0;
  983. goto err;
  984. }
  985. pdata->codec_root = entry;
  986. }
  987. bolero_info_create_codec_entry(pdata->codec_root, component);
  988. bolero_register_wake_irq(component, false);
  989. codec_reg_done = true;
  990. msm_common_dai_link_init(rtd);
  991. err:
  992. return ret;
  993. }
  994. static int msm_aux_codec_init(struct snd_soc_pcm_runtime *rtd)
  995. {
  996. struct snd_soc_component *component = NULL;
  997. struct snd_soc_dapm_context *dapm = NULL;
  998. struct snd_info_entry *entry;
  999. struct snd_card *card = NULL;
  1000. struct msm_asoc_mach_data *pdata;
  1001. component = snd_soc_rtdcom_lookup(rtd, WCD938X_DRV_NAME);
  1002. if (!component) {
  1003. pr_err("%s component is NULL\n", __func__);
  1004. return -EINVAL;
  1005. }
  1006. dapm = snd_soc_component_get_dapm(component);
  1007. card = component->card->snd_card;
  1008. snd_soc_dapm_ignore_suspend(dapm, "EAR");
  1009. snd_soc_dapm_ignore_suspend(dapm, "AUX");
  1010. snd_soc_dapm_ignore_suspend(dapm, "HPHL");
  1011. snd_soc_dapm_ignore_suspend(dapm, "HPHR");
  1012. snd_soc_dapm_ignore_suspend(dapm, "AMIC1");
  1013. snd_soc_dapm_ignore_suspend(dapm, "AMIC2");
  1014. snd_soc_dapm_ignore_suspend(dapm, "AMIC3");
  1015. snd_soc_dapm_ignore_suspend(dapm, "AMIC4");
  1016. snd_soc_dapm_sync(dapm);
  1017. pdata = snd_soc_card_get_drvdata(component->card);
  1018. if (!pdata->codec_root) {
  1019. entry = msm_snd_info_create_subdir(card->module, "codecs",
  1020. card->proc_root);
  1021. if (!entry) {
  1022. dev_dbg(component->dev, "%s: Cannot create codecs module entry\n",
  1023. __func__);
  1024. return 0;
  1025. }
  1026. pdata->codec_root = entry;
  1027. }
  1028. wcd938x_info_create_codec_entry(pdata->codec_root, component);
  1029. #if 0
  1030. codec_variant = wcd938x_get_codec_variant(component);
  1031. dev_dbg(component->dev, "%s: variant %d\n", __func__, codec_variant);
  1032. if (codec_variant == WCD9380)
  1033. ret = snd_soc_add_component_controls(component,
  1034. msm_int_wcd9380_snd_controls,
  1035. ARRAY_SIZE(msm_int_wcd9380_snd_controls));
  1036. else if (codec_variant == WCD9385)
  1037. ret = snd_soc_add_component_controls(component,
  1038. msm_int_wcd9385_snd_controls,
  1039. ARRAY_SIZE(msm_int_wcd9385_snd_controls));
  1040. if (ret < 0) {
  1041. dev_err(component->dev, "%s: add codec specific snd controls failed: %d\n",
  1042. __func__, ret);
  1043. return ret;
  1044. }
  1045. #endif
  1046. msm_common_dai_link_init(rtd);
  1047. return 0;
  1048. }
  1049. static int lahaina_ssr_enable(struct device *dev, void *data)
  1050. {
  1051. struct platform_device *pdev = to_platform_device(dev);
  1052. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1053. int ret = 0;
  1054. if (!card) {
  1055. dev_err(dev, "%s: card is NULL\n", __func__);
  1056. ret = -EINVAL;
  1057. goto err;
  1058. }
  1059. if (!strcmp(card->name, "lahaina-stub-snd-card")) {
  1060. /* TODO */
  1061. dev_dbg(dev, "%s: TODO \n", __func__);
  1062. }
  1063. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1064. snd_soc_card_change_online_state(card, 1);
  1065. #endif /* CONFIG_AUDIO_QGKI */
  1066. dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
  1067. err:
  1068. return ret;
  1069. }
  1070. static void lahaina_ssr_disable(struct device *dev, void *data)
  1071. {
  1072. struct platform_device *pdev = to_platform_device(dev);
  1073. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1074. if (!card) {
  1075. dev_err(dev, "%s: card is NULL\n", __func__);
  1076. return;
  1077. }
  1078. dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
  1079. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1080. snd_soc_card_change_online_state(card, 0);
  1081. #endif /* CONFIG_AUDIO_QGKI */
  1082. if (!strcmp(card->name, "lahaina-stub-snd-card")) {
  1083. /* TODO */
  1084. dev_dbg(dev, "%s: TODO \n", __func__);
  1085. }
  1086. }
  1087. static const struct snd_event_ops lahaina_ssr_ops = {
  1088. .enable = lahaina_ssr_enable,
  1089. .disable = lahaina_ssr_disable,
  1090. };
  1091. static int msm_audio_ssr_compare(struct device *dev, void *data)
  1092. {
  1093. struct device_node *node = data;
  1094. dev_dbg(dev, "%s: dev->of_node = 0x%p, node = 0x%p\n",
  1095. __func__, dev->of_node, node);
  1096. return (dev->of_node && dev->of_node == node);
  1097. }
  1098. static int msm_audio_ssr_register(struct device *dev)
  1099. {
  1100. struct device_node *np = dev->of_node;
  1101. struct snd_event_clients *ssr_clients = NULL;
  1102. struct device_node *node = NULL;
  1103. int ret = 0;
  1104. int i = 0;
  1105. for (i = 0; ; i++) {
  1106. node = of_parse_phandle(np, "qcom,msm_audio_ssr_devs", i);
  1107. if (!node)
  1108. break;
  1109. snd_event_mstr_add_client(&ssr_clients,
  1110. msm_audio_ssr_compare, node);
  1111. }
  1112. ret = snd_event_master_register(dev, &lahaina_ssr_ops,
  1113. ssr_clients, NULL);
  1114. if (!ret)
  1115. snd_event_notify(dev, SND_EVENT_UP);
  1116. return ret;
  1117. }
  1118. struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card)
  1119. {
  1120. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1121. if (!pdata)
  1122. return NULL;
  1123. return pdata->common_pdata;
  1124. }
  1125. void msm_common_set_pdata(struct snd_soc_card *card,
  1126. struct msm_common_pdata *common_pdata)
  1127. {
  1128. struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
  1129. if (!pdata)
  1130. return;
  1131. pdata->common_pdata = common_pdata;
  1132. }
  1133. static int msm_asoc_machine_probe(struct platform_device *pdev)
  1134. {
  1135. struct snd_soc_card *card = NULL;
  1136. struct msm_asoc_mach_data *pdata = NULL;
  1137. const char *mbhc_audio_jack_type = NULL;
  1138. int ret = 0;
  1139. struct clk *lpass_audio_hw_vote = NULL;
  1140. if (!pdev->dev.of_node) {
  1141. dev_err(&pdev->dev, "%s: No platform supplied from device tree\n", __func__);
  1142. return -EINVAL;
  1143. }
  1144. pdata = devm_kzalloc(&pdev->dev,
  1145. sizeof(struct msm_asoc_mach_data), GFP_KERNEL);
  1146. if (!pdata)
  1147. return -ENOMEM;
  1148. of_property_read_u32(pdev->dev.of_node,
  1149. "qcom,lito-is-v2-enabled",
  1150. &pdata->lito_v2_enabled);
  1151. card = populate_snd_card_dailinks(&pdev->dev);
  1152. if (!card) {
  1153. dev_err(&pdev->dev, "%s: Card uninitialized\n", __func__);
  1154. ret = -EINVAL;
  1155. goto err;
  1156. }
  1157. card->dev = &pdev->dev;
  1158. platform_set_drvdata(pdev, card);
  1159. snd_soc_card_set_drvdata(card, pdata);
  1160. ret = snd_soc_of_parse_card_name(card, "qcom,model");
  1161. if (ret) {
  1162. dev_err(&pdev->dev, "%s: parse card name failed, err:%d\n",
  1163. __func__, ret);
  1164. goto err;
  1165. }
  1166. ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing");
  1167. if (ret) {
  1168. dev_err(&pdev->dev, "%s: parse audio routing failed, err:%d\n",
  1169. __func__, ret);
  1170. goto err;
  1171. }
  1172. ret = msm_populate_dai_link_component_of_node(card);
  1173. if (ret) {
  1174. ret = -EPROBE_DEFER;
  1175. goto err;
  1176. }
  1177. /* Get maximum WSA device count for this platform */
  1178. ret = of_property_read_u32(pdev->dev.of_node,
  1179. "qcom,wsa-max-devs", &pdata->wsa_max_devs);
  1180. if (ret) {
  1181. dev_info(&pdev->dev,
  1182. "%s: wsa-max-devs property missing in DT %s, ret = %d\n",
  1183. __func__, pdev->dev.of_node->full_name, ret);
  1184. pdata->wsa_max_devs = 0;
  1185. }
  1186. ret = devm_snd_soc_register_card(&pdev->dev, card);
  1187. if (ret == -EPROBE_DEFER) {
  1188. if (codec_reg_done)
  1189. ret = -EINVAL;
  1190. goto err;
  1191. } else if (ret) {
  1192. dev_err(&pdev->dev, "%s: snd_soc_register_card failed (%d)\n",
  1193. __func__, ret);
  1194. goto err;
  1195. }
  1196. dev_info(&pdev->dev, "%s: Sound card %s registered\n",
  1197. __func__, card->name);
  1198. pdata->hph_en1_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1199. "qcom,hph-en1-gpio", 0);
  1200. if (!pdata->hph_en1_gpio_p) {
  1201. dev_dbg(&pdev->dev, "%s: property %s not detected in node %s\n",
  1202. __func__, "qcom,hph-en1-gpio",
  1203. pdev->dev.of_node->full_name);
  1204. }
  1205. pdata->hph_en0_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1206. "qcom,hph-en0-gpio", 0);
  1207. if (!pdata->hph_en0_gpio_p) {
  1208. dev_dbg(&pdev->dev, "%s: property %s not detected in node %s\n",
  1209. __func__, "qcom,hph-en0-gpio",
  1210. pdev->dev.of_node->full_name);
  1211. }
  1212. ret = of_property_read_string(pdev->dev.of_node,
  1213. "qcom,mbhc-audio-jack-type", &mbhc_audio_jack_type);
  1214. if (ret) {
  1215. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  1216. __func__, "qcom,mbhc-audio-jack-type",
  1217. pdev->dev.of_node->full_name);
  1218. dev_dbg(&pdev->dev, "Jack type properties set to default\n");
  1219. } else {
  1220. if (!strcmp(mbhc_audio_jack_type, "4-pole-jack")) {
  1221. wcd_mbhc_cfg.enable_anc_mic_detect = false;
  1222. dev_dbg(&pdev->dev, "This hardware has 4 pole jack");
  1223. } else if (!strcmp(mbhc_audio_jack_type, "5-pole-jack")) {
  1224. wcd_mbhc_cfg.enable_anc_mic_detect = true;
  1225. dev_dbg(&pdev->dev, "This hardware has 5 pole jack");
  1226. } else if (!strcmp(mbhc_audio_jack_type, "6-pole-jack")) {
  1227. wcd_mbhc_cfg.enable_anc_mic_detect = true;
  1228. dev_dbg(&pdev->dev, "This hardware has 6 pole jack");
  1229. } else {
  1230. wcd_mbhc_cfg.enable_anc_mic_detect = false;
  1231. dev_dbg(&pdev->dev, "Unknown value, set to default\n");
  1232. }
  1233. }
  1234. /*
  1235. * Parse US-Euro gpio info from DT. Report no error if us-euro
  1236. * entry is not found in DT file as some targets do not support
  1237. * US-Euro detection
  1238. */
  1239. pdata->us_euro_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1240. "qcom,us-euro-gpios", 0);
  1241. if (!pdata->us_euro_gpio_p) {
  1242. dev_dbg(&pdev->dev, "property %s not detected in node %s",
  1243. "qcom,us-euro-gpios", pdev->dev.of_node->full_name);
  1244. } else {
  1245. dev_dbg(&pdev->dev, "%s detected\n",
  1246. "qcom,us-euro-gpios");
  1247. wcd_mbhc_cfg.swap_gnd_mic = msm_swap_gnd_mic;
  1248. }
  1249. if (wcd_mbhc_cfg.enable_usbc_analog)
  1250. wcd_mbhc_cfg.swap_gnd_mic = msm_usbc_swap_gnd_mic;
  1251. pdata->fsa_handle = of_parse_phandle(pdev->dev.of_node,
  1252. "fsa4480-i2c-handle", 0);
  1253. if (!pdata->fsa_handle)
  1254. dev_dbg(&pdev->dev, "property %s not detected in node %s\n",
  1255. "fsa4480-i2c-handle", pdev->dev.of_node->full_name);
  1256. pdata->dmic01_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1257. "qcom,cdc-dmic01-gpios",
  1258. 0);
  1259. pdata->dmic23_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1260. "qcom,cdc-dmic23-gpios",
  1261. 0);
  1262. pdata->dmic45_gpio_p = of_parse_phandle(pdev->dev.of_node,
  1263. "qcom,cdc-dmic45-gpios",
  1264. 0);
  1265. if (pdata->dmic01_gpio_p)
  1266. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic01_gpio_p, false);
  1267. if (pdata->dmic23_gpio_p)
  1268. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic23_gpio_p, false);
  1269. if (pdata->dmic45_gpio_p)
  1270. msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic45_gpio_p, false);
  1271. msm_common_snd_init(pdev, card);
  1272. #if 0
  1273. pdata->mi2s_gpio_p[PRIM_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1274. "qcom,pri-mi2s-gpios", 0);
  1275. pdata->mi2s_gpio_p[SEC_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1276. "qcom,sec-mi2s-gpios", 0);
  1277. pdata->mi2s_gpio_p[TERT_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1278. "qcom,tert-mi2s-gpios", 0);
  1279. pdata->mi2s_gpio_p[QUAT_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1280. "qcom,quat-mi2s-gpios", 0);
  1281. pdata->mi2s_gpio_p[QUIN_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1282. "qcom,quin-mi2s-gpios", 0);
  1283. pdata->mi2s_gpio_p[SEN_MI2S] = of_parse_phandle(pdev->dev.of_node,
  1284. "qcom,sen-mi2s-gpios", 0);
  1285. for (index = PRIM_MI2S; index < MI2S_MAX; index++)
  1286. atomic_set(&(pdata->mi2s_gpio_ref_count[index]), 0);
  1287. #endif
  1288. /* Register LPASS audio hw vote */
  1289. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  1290. if (IS_ERR(lpass_audio_hw_vote)) {
  1291. ret = PTR_ERR(lpass_audio_hw_vote);
  1292. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  1293. __func__, "lpass_audio_hw_vote", ret);
  1294. lpass_audio_hw_vote = NULL;
  1295. ret = 0;
  1296. }
  1297. pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  1298. pdata->core_audio_vote_count = 0;
  1299. ret = msm_audio_ssr_register(&pdev->dev);
  1300. if (ret)
  1301. pr_err("%s: Registration with SND event FWK failed ret = %d\n",
  1302. __func__, ret);
  1303. is_initial_boot = true;
  1304. /* Add QoS request for audio tasks */
  1305. msm_audio_add_qos_request();
  1306. return 0;
  1307. err:
  1308. devm_kfree(&pdev->dev, pdata);
  1309. return ret;
  1310. }
  1311. static int msm_asoc_machine_remove(struct platform_device *pdev)
  1312. {
  1313. struct snd_soc_card *card = platform_get_drvdata(pdev);
  1314. struct msm_asoc_mach_data *pdata = NULL;
  1315. struct msm_common_pdata *common_pdata = NULL;
  1316. if (card)
  1317. pdata = snd_soc_card_get_drvdata(card);
  1318. if (pdata)
  1319. common_pdata = pdata->common_pdata;
  1320. msm_common_snd_deinit(common_pdata);
  1321. snd_event_master_deregister(&pdev->dev);
  1322. snd_soc_unregister_card(card);
  1323. msm_audio_remove_qos_request();
  1324. return 0;
  1325. }
  1326. static struct platform_driver lahaina_asoc_machine_driver = {
  1327. .driver = {
  1328. .name = DRV_NAME,
  1329. .owner = THIS_MODULE,
  1330. .pm = &snd_soc_pm_ops,
  1331. .of_match_table = lahaina_asoc_machine_of_match,
  1332. .suppress_bind_attrs = true,
  1333. },
  1334. .probe = msm_asoc_machine_probe,
  1335. .remove = msm_asoc_machine_remove,
  1336. };
  1337. module_platform_driver(lahaina_asoc_machine_driver);
  1338. MODULE_SOFTDEP("pre: bt_fm_slim");
  1339. MODULE_DESCRIPTION("ALSA SoC msm");
  1340. MODULE_LICENSE("GPL v2");
  1341. MODULE_ALIAS("platform:" DRV_NAME);
  1342. MODULE_DEVICE_TABLE(of, lahaina_asoc_machine_of_match);