msm_common.c 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #include <linux/gpio.h>
  7. #include <linux/of_gpio.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/slab.h>
  10. #include <linux/of_device.h>
  11. #include <sound/control.h>
  12. #include <sound/core.h>
  13. #include <sound/soc.h>
  14. #include <sound/pcm_params.h>
  15. #include <asoc/msm-cdc-pinctrl.h>
  16. #include <dsp/spf-core.h>
  17. #include <dsp/msm_audio_ion.h>
  18. #include <sound/info.h>
  19. #include <dsp/audio_prm.h>
  20. #include <dsp/digital-cdc-rsc-mgr.h>
  21. #include "msm_common.h"
  22. struct snd_card_pdata {
  23. struct kobject snd_card_kobj;
  24. int card_status;
  25. }*snd_card_pdata;
  26. #define to_asoc_mach_common_pdata(kobj) \
  27. container_of((kobj), struct msm_common_pdata, aud_dev_kobj)
  28. #define DEVICE_ENABLE 1
  29. #define DEVICE_DISABLE 0
  30. #define ARRAY_SZ 21
  31. #define BUF_SZ 32
  32. #define DIR_SZ 10
  33. #define MAX_CODEC_DAI 8
  34. #define TDM_SLOT_WIDTH_BITS 32
  35. #define TDM_MAX_SLOTS 8
  36. #define MI2S_NUM_CHANNELS 2
  37. #define SAMPLING_RATE_44P1KHZ 44100
  38. #define SAMPLING_RATE_88P2KHZ 88200
  39. #define SAMPLING_RATE_176P4KHZ 176400
  40. #define SAMPLING_RATE_352P8KHZ 352800
  41. static struct attribute device_state_attr = {
  42. .name = "state",
  43. .mode = 0660,
  44. };
  45. static struct attribute card_state_attr = {
  46. .name = "card_state",
  47. .mode = 0660,
  48. };
  49. #define MAX_PORT 20
  50. #define CODEC_CHMAP "Channel Map"
  51. enum backend_id {
  52. SLIM = 1,
  53. CODEC_DMA,
  54. };
  55. struct chmap_pdata {
  56. int id;
  57. uint32_t num_codec_dai;
  58. struct snd_soc_dai *dai[MAX_CODEC_DAI];
  59. };
  60. #define MAX_USR_INPUT 10
  61. static int qos_vote_status;
  62. static struct dev_pm_qos_request latency_pm_qos_req; /* pm_qos request */
  63. static unsigned int qos_client_active_cnt;
  64. /* set audio task affinity to core 1 & 2 */
  65. static const unsigned int audio_core_list[] = {1, 2};
  66. static cpumask_t audio_cpu_map = CPU_MASK_NONE;
  67. static struct dev_pm_qos_request *msm_audio_req = NULL;
  68. static bool kregister_pm_qos_latency_controls = false;
  69. #define MSM_LL_QOS_VALUE 300 /* time in us to ensure LPM doesn't go in C3/C4 */
  70. static ssize_t aud_dev_sysfs_store(struct kobject *kobj,
  71. struct attribute *attr,
  72. const char *buf, size_t count)
  73. {
  74. ssize_t ret = -EINVAL;
  75. struct msm_common_pdata *pdata = to_asoc_mach_common_pdata(kobj);
  76. uint32_t pcm_id, state = 0;
  77. if (count > MAX_USR_INPUT) {
  78. pr_err("%s: invalid string written", __func__);
  79. goto done;
  80. }
  81. sscanf(buf, "%d %d", &pcm_id, &state);
  82. if ((pcm_id > pdata->num_aud_devs) || (pcm_id < 0)) {
  83. pr_err("%s: invalid pcm id %d \n", __func__, pcm_id);
  84. goto done;
  85. }
  86. if ((state > DEVICE_ENABLE) || (state < DEVICE_DISABLE)) {
  87. pr_err("%s: invalid state %d \n", __func__, state);
  88. goto done;
  89. }
  90. pr_debug("%s: pcm_id %d state %d \n", __func__, pcm_id, state);
  91. pdata->aud_dev_state[pcm_id] = state;
  92. if ( state == DEVICE_ENABLE && (pdata->dsp_sessions_closed != 0))
  93. pdata->dsp_sessions_closed = 0;
  94. ret = count;
  95. done:
  96. return ret;
  97. }
  98. static const struct sysfs_ops aud_dev_sysfs_ops = {
  99. .store = aud_dev_sysfs_store,
  100. };
  101. static struct kobj_type aud_dev_ktype = {
  102. .sysfs_ops = &aud_dev_sysfs_ops,
  103. };
  104. static int aud_dev_sysfs_init(struct msm_common_pdata *pdata)
  105. {
  106. int ret = 0;
  107. char dir[10] = "aud_dev";
  108. ret = kobject_init_and_add(&pdata->aud_dev_kobj, &aud_dev_ktype,
  109. kernel_kobj, dir);
  110. if (ret < 0) {
  111. pr_err("%s: Failed to add kobject %s, err = %d\n",
  112. __func__, dir, ret);
  113. goto done;
  114. }
  115. ret = sysfs_create_file(&pdata->aud_dev_kobj, &device_state_attr);
  116. if (ret < 0) {
  117. pr_err("%s: Failed to add wdsp_boot sysfs entry to %s\n",
  118. __func__, dir);
  119. goto fail_create_file;
  120. }
  121. return ret;
  122. fail_create_file:
  123. kobject_put(&pdata->aud_dev_kobj);
  124. done:
  125. return ret;
  126. }
  127. int snd_card_notify_user(snd_card_status_t card_status)
  128. {
  129. snd_card_pdata->card_status = card_status;
  130. sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
  131. return 0;
  132. }
  133. int snd_card_set_card_status(snd_card_status_t card_status)
  134. {
  135. snd_card_pdata->card_status = card_status;
  136. return 0;
  137. }
  138. static ssize_t snd_card_sysfs_show(struct kobject *kobj,
  139. struct attribute *attr, char *buf)
  140. {
  141. return snprintf(buf, BUF_SZ, "%d", snd_card_pdata->card_status);
  142. }
  143. static ssize_t snd_card_sysfs_store(struct kobject *kobj,
  144. struct attribute *attr, const char *buf, size_t count)
  145. {
  146. sscanf(buf, "%d", &snd_card_pdata->card_status);
  147. sysfs_notify(&snd_card_pdata->snd_card_kobj, NULL, "card_state");
  148. return 0;
  149. }
  150. static const struct sysfs_ops snd_card_sysfs_ops = {
  151. .show = snd_card_sysfs_show,
  152. .store = snd_card_sysfs_store,
  153. };
  154. static struct kobj_type snd_card_ktype = {
  155. .sysfs_ops = &snd_card_sysfs_ops,
  156. };
  157. int snd_card_sysfs_init(void)
  158. {
  159. int ret = 0;
  160. char dir[DIR_SZ] = "snd_card";
  161. snd_card_pdata = kcalloc(1, sizeof(struct snd_card_pdata), GFP_KERNEL);
  162. ret = kobject_init_and_add(&snd_card_pdata->snd_card_kobj, &snd_card_ktype,
  163. kernel_kobj, dir);
  164. if (ret < 0) {
  165. pr_err("%s: Failed to add kobject %s, err = %d\n",
  166. __func__, dir, ret);
  167. goto done;
  168. }
  169. ret = sysfs_create_file(&snd_card_pdata->snd_card_kobj, &card_state_attr);
  170. if (ret < 0) {
  171. pr_err("%s: Failed to add snd_card sysfs entry to %s\n",
  172. __func__, dir);
  173. goto fail_create_file;
  174. }
  175. return ret;
  176. fail_create_file:
  177. kobject_put(&snd_card_pdata->snd_card_kobj);
  178. done:
  179. return ret;
  180. }
  181. static void check_userspace_service_state(struct snd_soc_pcm_runtime *rtd,
  182. struct msm_common_pdata *pdata)
  183. {
  184. dev_info(rtd->card->dev,"%s: pcm_id %d state %d\n", __func__,
  185. rtd->num, pdata->aud_dev_state[rtd->num]);
  186. if (pdata->aud_dev_state[rtd->num] == DEVICE_ENABLE) {
  187. dev_info(rtd->card->dev, "%s userspace service crashed\n",
  188. __func__);
  189. if (pdata->dsp_sessions_closed == 0) {
  190. /*Issue close all graph cmd to DSP*/
  191. spf_core_apm_close_all();
  192. /*unmap all dma mapped buffers*/
  193. msm_audio_ion_crash_handler();
  194. pdata->dsp_sessions_closed = 1;
  195. }
  196. /*Reset the state as sysfs node wont be triggred*/
  197. pdata->aud_dev_state[rtd->num] = 0;
  198. }
  199. }
  200. static int get_mi2s_tdm_auxpcm_intf_index(const char *stream_name)
  201. {
  202. if (!strnstr(stream_name, "TDM", strlen(stream_name)) &&
  203. !strnstr(stream_name, "MI2S", strlen(stream_name)) &&
  204. !strnstr(stream_name, "AUXPCM", strlen(stream_name)))
  205. return -EINVAL;
  206. if (strnstr(stream_name, "LPAIF_RXTX", strlen(stream_name)))
  207. return QUAT_MI2S_TDM_AUXPCM;
  208. else if (strnstr(stream_name, "LPAIF_WSA", strlen(stream_name)))
  209. return SEN_MI2S_TDM_AUXPCM;
  210. else if (strnstr(stream_name, "LPAIF_VA", strlen(stream_name)))
  211. return QUIN_MI2S_TDM_AUXPCM;
  212. else if (strnstr(stream_name, "LPAIF_AUD", strlen(stream_name)))
  213. return SEC_MI2S_TDM_AUXPCM;
  214. else if (strnstr(stream_name, "LPAIF", strlen(stream_name))) {
  215. if (strnstr(stream_name, "PRIMARY", strlen(stream_name)))
  216. return PRI_MI2S_TDM_AUXPCM;
  217. else if (strnstr(stream_name, "TERTIARY", strlen(stream_name)))
  218. return TER_MI2S_TDM_AUXPCM;
  219. }
  220. pr_debug("%s: stream name %s does not match\n", __func__, stream_name);
  221. return -EINVAL;
  222. }
  223. static bool is_fractional_sample_rate(unsigned int sample_rate)
  224. {
  225. switch (sample_rate) {
  226. case SAMPLING_RATE_44P1KHZ:
  227. case SAMPLING_RATE_88P2KHZ:
  228. case SAMPLING_RATE_176P4KHZ:
  229. case SAMPLING_RATE_352P8KHZ:
  230. return true;
  231. default:
  232. return false;
  233. }
  234. return false;
  235. }
  236. static int get_mi2s_clk_id(int index)
  237. {
  238. int clk_id = -EINVAL;
  239. switch(index) {
  240. case PRI_MI2S_TDM_AUXPCM:
  241. clk_id = CLOCK_ID_PRI_MI2S_IBIT;
  242. break;
  243. case SEC_MI2S_TDM_AUXPCM:
  244. clk_id = CLOCK_ID_SEP_MI2S_IBIT;
  245. break;
  246. case TER_MI2S_TDM_AUXPCM:
  247. clk_id = CLOCK_ID_TER_MI2S_IBIT;
  248. break;
  249. case QUAT_MI2S_TDM_AUXPCM:
  250. clk_id = CLOCK_ID_QUAD_MI2S_IBIT;
  251. break;
  252. case QUIN_MI2S_TDM_AUXPCM:
  253. clk_id = CLOCK_ID_QUI_MI2S_IBIT;
  254. break;
  255. case SEN_MI2S_TDM_AUXPCM:
  256. clk_id = CLOCK_ID_SEN_MI2S_IBIT;
  257. break;
  258. default:
  259. pr_err("%s: Invalid interface index: %d\n", __func__, index);
  260. }
  261. pr_debug("%s: clk id: %d\n", __func__, clk_id);
  262. return clk_id;
  263. }
  264. static int get_tdm_clk_id(int index)
  265. {
  266. int clk_id = -EINVAL;
  267. switch(index) {
  268. case PRI_MI2S_TDM_AUXPCM:
  269. clk_id = CLOCK_ID_PRI_TDM_IBIT;
  270. break;
  271. case SEC_MI2S_TDM_AUXPCM:
  272. clk_id = CLOCK_ID_SEP_TDM_IBIT;
  273. break;
  274. case TER_MI2S_TDM_AUXPCM:
  275. clk_id = CLOCK_ID_TER_TDM_IBIT;
  276. break;
  277. case QUAT_MI2S_TDM_AUXPCM:
  278. clk_id = CLOCK_ID_QUAD_TDM_IBIT;
  279. break;
  280. case QUIN_MI2S_TDM_AUXPCM:
  281. clk_id = CLOCK_ID_QUI_TDM_IBIT;
  282. break;
  283. case SEN_MI2S_TDM_AUXPCM:
  284. clk_id = CLOCK_ID_SEN_TDM_IBIT;
  285. break;
  286. default:
  287. pr_err("%s: Invalid interface index: %d\n", __func__, index);
  288. }
  289. pr_debug("%s: clk id: %d\n", __func__, clk_id);
  290. return clk_id;
  291. }
  292. int mi2s_tdm_hw_vote_req(struct msm_common_pdata *pdata, int enable)
  293. {
  294. int ret = 0;
  295. if (!pdata || (pdata->lpass_audio_hw_vote == NULL)) {
  296. pr_err("%s: pdata or lpass audio hw vote node NULL", __func__);
  297. return -EINVAL;
  298. }
  299. pr_debug("%s: lpass audio hw vote for fractional sample rate enable: %d\n",
  300. __func__, enable);
  301. if (enable) {
  302. if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) == 0) {
  303. ret = digital_cdc_rsc_mgr_hw_vote_enable(pdata->lpass_audio_hw_vote);
  304. if (ret < 0) {
  305. pr_err("%s lpass audio hw vote enable failed %d\n",
  306. __func__, ret);
  307. return ret;
  308. }
  309. }
  310. atomic_inc(&pdata->lpass_audio_hw_vote_ref_cnt);
  311. } else {
  312. atomic_dec(&pdata->lpass_audio_hw_vote_ref_cnt);
  313. if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) == 0)
  314. digital_cdc_rsc_mgr_hw_vote_disable(pdata->lpass_audio_hw_vote);
  315. else if (atomic_read(&pdata->lpass_audio_hw_vote_ref_cnt) < 0)
  316. atomic_set(&pdata->lpass_audio_hw_vote_ref_cnt, 0);
  317. }
  318. return ret;
  319. }
  320. int msm_common_snd_hw_params(struct snd_pcm_substream *substream,
  321. struct snd_pcm_hw_params *params)
  322. {
  323. int ret = 0;
  324. int slot_width = TDM_SLOT_WIDTH_BITS;
  325. int slots;
  326. int sample_width;
  327. unsigned int rate;
  328. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  329. const char *stream_name = rtd->dai_link->stream_name;
  330. struct snd_soc_card *card = rtd->card;
  331. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  332. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  333. struct clk_cfg intf_clk_cfg;
  334. dev_dbg(rtd->card->dev,
  335. "%s: substream = %s stream = %d\n",
  336. __func__, substream->name, substream->stream);
  337. if (!pdata) {
  338. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  339. return -EINVAL;
  340. }
  341. if (index >= 0) {
  342. mutex_lock(&pdata->lock[index]);
  343. if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) == 0) {
  344. if ((strnstr(stream_name, "TDM", strlen(stream_name)))) {
  345. slots = pdata->tdm_max_slots;
  346. rate = params_rate(params);
  347. ret = get_tdm_clk_id(index);
  348. if ( ret < 0)
  349. goto done;
  350. intf_clk_cfg.clk_id = ret;
  351. intf_clk_cfg.clk_freq_in_hz = rate * slot_width * slots;
  352. intf_clk_cfg.clk_attri = pdata->tdm_clk_attribute[index];
  353. intf_clk_cfg.clk_root = 0;
  354. if (pdata->is_audio_hw_vote_required[index] &&
  355. is_fractional_sample_rate(rate)) {
  356. ret = mi2s_tdm_hw_vote_req(pdata, 1);
  357. if (ret < 0) {
  358. pr_err("%s lpass audio hw vote enable failed %d\n",
  359. __func__, ret);
  360. goto done;
  361. }
  362. }
  363. pr_debug("%s: clk_id :%d clk freq %d\n", __func__,
  364. intf_clk_cfg.clk_id, intf_clk_cfg.clk_freq_in_hz);
  365. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 1);
  366. if (ret < 0) {
  367. pr_err("%s: prm lpass tdm clk cfg set failed ret %d\n",
  368. __func__, ret);
  369. goto done;
  370. }
  371. } else if ((strnstr(stream_name, "MI2S", strlen(stream_name)))) {
  372. ret = get_mi2s_clk_id(index);
  373. if (ret < 0)
  374. goto done;
  375. intf_clk_cfg.clk_id = ret;
  376. rate = params_rate(params);
  377. switch (params_format(params)) {
  378. case SNDRV_PCM_FORMAT_S24_LE:
  379. case SNDRV_PCM_FORMAT_S24_3LE:
  380. case SNDRV_PCM_FORMAT_S32_LE:
  381. sample_width = 32;
  382. break;
  383. case SNDRV_PCM_FORMAT_S16_LE:
  384. default:
  385. sample_width = 16;
  386. pr_debug("%s: bitwidth set to default : %d\n",
  387. __func__, sample_width);
  388. }
  389. intf_clk_cfg.clk_freq_in_hz = rate *
  390. MI2S_NUM_CHANNELS * sample_width;
  391. intf_clk_cfg.clk_attri = pdata->mi2s_clk_attribute[index];
  392. intf_clk_cfg.clk_root = CLOCK_ROOT_DEFAULT;
  393. if (pdata->is_audio_hw_vote_required[index] &&
  394. is_fractional_sample_rate(rate)) {
  395. ret = mi2s_tdm_hw_vote_req(pdata, 1);
  396. if (ret < 0) {
  397. pr_err("%s lpass audio hw vote enable failed %d\n",
  398. __func__, ret);
  399. goto done;
  400. }
  401. }
  402. pr_debug("%s: mi2s clk_id :%d clk freq %d\n", __func__,
  403. intf_clk_cfg.clk_id, intf_clk_cfg.clk_freq_in_hz);
  404. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 1);
  405. if (ret < 0) {
  406. pr_err("%s: prm lpass mi2s clk cfg set failed ret %d\n",
  407. __func__, ret);
  408. goto done;
  409. }
  410. } else {
  411. pr_err("%s: unsupported stream name: %s\n",
  412. __func__, stream_name);
  413. goto done;
  414. }
  415. }
  416. atomic_inc(&pdata->lpass_intf_clk_ref_cnt[index]);
  417. done:
  418. mutex_unlock(&pdata->lock[index]);
  419. }
  420. return ret;
  421. }
  422. int msm_common_snd_startup(struct snd_pcm_substream *substream)
  423. {
  424. int ret = 0;
  425. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  426. struct snd_soc_card *card = rtd->card;
  427. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  428. const char *stream_name = rtd->dai_link->stream_name;
  429. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  430. dev_dbg(rtd->card->dev,
  431. "%s: substream = %s stream = %d\n",
  432. __func__, substream->name, substream->stream);
  433. if (!pdata) {
  434. dev_err(rtd->card->dev, "%s: pdata is NULL\n", __func__);
  435. return -EINVAL;
  436. }
  437. if (index >= 0) {
  438. mutex_lock(&pdata->lock[index]);
  439. if (pdata->mi2s_gpio_p[index]) {
  440. if (atomic_read(&(pdata->mi2s_gpio_ref_cnt[index])) == 0) {
  441. ret = msm_cdc_pinctrl_select_active_state(
  442. pdata->mi2s_gpio_p[index]);
  443. if (ret) {
  444. pr_err("%s:pinctrl set actve fail with %d\n",
  445. __func__, ret);
  446. goto done;
  447. }
  448. }
  449. atomic_inc(&(pdata->mi2s_gpio_ref_cnt[index]));
  450. }
  451. done:
  452. mutex_unlock(&pdata->lock[index]);
  453. }
  454. return ret;
  455. }
  456. void msm_common_snd_shutdown(struct snd_pcm_substream *substream)
  457. {
  458. int ret;
  459. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  460. struct snd_soc_card *card = rtd->card;
  461. struct msm_common_pdata *pdata = msm_common_get_pdata(card);
  462. struct snd_pcm_runtime *runtime = substream->runtime;
  463. const char *stream_name = rtd->dai_link->stream_name;
  464. int index = get_mi2s_tdm_auxpcm_intf_index(stream_name);
  465. struct clk_cfg intf_clk_cfg;
  466. unsigned int rate = runtime->rate;
  467. memset(&intf_clk_cfg, 0, sizeof(struct clk_cfg));
  468. pr_debug("%s(): substream = %s stream = %d\n", __func__,
  469. substream->name, substream->stream);
  470. if (!pdata) {
  471. dev_err(card->dev, "%s: pdata is NULL\n", __func__);
  472. return;
  473. }
  474. check_userspace_service_state(rtd, pdata);
  475. if (index >= 0) {
  476. mutex_lock(&pdata->lock[index]);
  477. atomic_dec(&pdata->lpass_intf_clk_ref_cnt[index]);
  478. if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) == 0) {
  479. if ((strnstr(stream_name, "TDM", strlen(stream_name)))) {
  480. ret = get_tdm_clk_id(index);
  481. if (ret > 0) {
  482. intf_clk_cfg.clk_id = ret;
  483. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 0);
  484. if (ret < 0)
  485. pr_err("%s: prm tdm clk cfg set failed ret %d\n",
  486. __func__, ret);
  487. }
  488. } else if((strnstr(stream_name, "MI2S", strlen(stream_name)))) {
  489. ret = get_mi2s_clk_id(index);
  490. if (ret > 0) {
  491. intf_clk_cfg.clk_id = ret;
  492. ret = audio_prm_set_lpass_clk_cfg(&intf_clk_cfg, 0);
  493. if (ret < 0)
  494. pr_err("%s: prm mi2s clk cfg disable failed ret %d\n",
  495. __func__, ret);
  496. }
  497. } else {
  498. pr_err("%s: unsupported stream name: %s\n",
  499. __func__, stream_name);
  500. }
  501. if (pdata->is_audio_hw_vote_required[index] &&
  502. is_fractional_sample_rate(rate)) {
  503. ret = mi2s_tdm_hw_vote_req(pdata, 0);
  504. }
  505. } else if (atomic_read(&pdata->lpass_intf_clk_ref_cnt[index]) < 0) {
  506. atomic_set(&pdata->lpass_intf_clk_ref_cnt[index], 0);
  507. }
  508. if (pdata->mi2s_gpio_p[index]) {
  509. atomic_dec(&pdata->mi2s_gpio_ref_cnt[index]);
  510. if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) == 0) {
  511. ret = msm_cdc_pinctrl_select_sleep_state(
  512. pdata->mi2s_gpio_p[index]);
  513. if (ret)
  514. dev_err(card->dev,
  515. "%s: pinctrl set actv fail %d\n",
  516. __func__, ret);
  517. } else if (atomic_read(&pdata->mi2s_gpio_ref_cnt[index]) < 0) {
  518. atomic_set(&pdata->mi2s_gpio_ref_cnt[index], 0);
  519. }
  520. }
  521. mutex_unlock(&pdata->lock[index]);
  522. }
  523. }
  524. static void msm_audio_add_qos_request()
  525. {
  526. int i;
  527. int cpu = 0;
  528. int ret = 0;
  529. msm_audio_req = kcalloc(num_possible_cpus(),
  530. sizeof(struct dev_pm_qos_request), GFP_KERNEL);
  531. if (!msm_audio_req)
  532. return;
  533. for (i = 0; i < ARRAY_SIZE(audio_core_list); i++) {
  534. if (audio_core_list[i] >= num_possible_cpus())
  535. pr_err("%s incorrect cpu id: %d specified.\n",
  536. __func__, audio_core_list[i]);
  537. else
  538. cpumask_set_cpu(audio_core_list[i], &audio_cpu_map);
  539. }
  540. for_each_cpu(cpu, &audio_cpu_map) {
  541. ret = dev_pm_qos_add_request(get_cpu_device(cpu),
  542. &msm_audio_req[cpu],
  543. DEV_PM_QOS_RESUME_LATENCY,
  544. PM_QOS_CPU_LATENCY_DEFAULT_VALUE);
  545. if (ret < 0)
  546. pr_err("%s error (%d) adding resume latency to cpu %d.\n",
  547. __func__, ret, cpu);
  548. pr_debug("%s set cpu affinity to core %d.\n", __func__, cpu);
  549. }
  550. }
  551. static void msm_audio_remove_qos_request()
  552. {
  553. int cpu = 0;
  554. int ret = 0;
  555. if (msm_audio_req) {
  556. for_each_cpu(cpu, &audio_cpu_map) {
  557. ret = dev_pm_qos_remove_request(
  558. &msm_audio_req[cpu]);
  559. if (ret < 0)
  560. pr_err("%s error (%d) removing request from cpu %d.\n",
  561. __func__, ret, cpu);
  562. pr_debug("%s remove cpu affinity of core %d.\n", __func__, cpu);
  563. }
  564. kfree(msm_audio_req);
  565. }
  566. }
  567. int msm_common_snd_init(struct platform_device *pdev, struct snd_soc_card *card)
  568. {
  569. struct msm_common_pdata *common_pdata = NULL;
  570. int count, ret = 0;
  571. uint32_t val_array[MI2S_TDM_AUXPCM_MAX] = {0};
  572. struct clk *lpass_audio_hw_vote = NULL;
  573. common_pdata = kcalloc(1, sizeof(struct msm_common_pdata), GFP_KERNEL);
  574. if (!common_pdata)
  575. return -ENOMEM;
  576. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  577. mutex_init(&common_pdata->lock[count]);
  578. atomic_set(&common_pdata->mi2s_gpio_ref_cnt[count], 0);
  579. }
  580. ret = of_property_read_u32(pdev->dev.of_node, "qcom,tdm-max-slots",
  581. &common_pdata->tdm_max_slots);
  582. if (ret) {
  583. dev_info(&pdev->dev, "%s: No DT match for tdm max slots\n",
  584. __func__);
  585. }
  586. if ((common_pdata->tdm_max_slots <= 0) || (common_pdata->tdm_max_slots >
  587. TDM_MAX_SLOTS)) {
  588. common_pdata->tdm_max_slots = TDM_MAX_SLOTS;
  589. dev_info(&pdev->dev, "%s: Using default tdm max slot: %d\n",
  590. __func__, common_pdata->tdm_max_slots);
  591. }
  592. /* Register LPASS audio hw vote */
  593. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  594. if (IS_ERR(lpass_audio_hw_vote)) {
  595. ret = PTR_ERR(lpass_audio_hw_vote);
  596. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  597. __func__, "lpass_audio_hw_vote", ret);
  598. lpass_audio_hw_vote = NULL;
  599. ret = 0;
  600. }
  601. common_pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
  602. ret = of_property_read_u32_array(pdev->dev.of_node,
  603. "qcom,mi2s-tdm-is-hw-vote-needed",
  604. val_array, MI2S_TDM_AUXPCM_MAX);
  605. if (ret) {
  606. dev_dbg(&pdev->dev, "%s:no qcom,mi2s-tdm-is-hw-vote-needed in DT node\n",
  607. __func__);
  608. } else {
  609. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  610. common_pdata->is_audio_hw_vote_required[count] =
  611. val_array[count];
  612. }
  613. }
  614. ret = of_property_read_u32_array(pdev->dev.of_node, "qcom,tdm-clk-attribute",
  615. val_array, MI2S_TDM_AUXPCM_MAX);
  616. if (ret) {
  617. dev_info(&pdev->dev,
  618. "%s: No DT match for tdm clk attribute, set to default\n", __func__);
  619. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  620. common_pdata->tdm_clk_attribute[count] =
  621. CLOCK_ATTRIBUTE_COUPLE_NO;
  622. }
  623. } else {
  624. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  625. common_pdata->tdm_clk_attribute[count] =
  626. val_array[count];
  627. }
  628. }
  629. ret = of_property_read_u32_array(pdev->dev.of_node, "qcom,mi2s-clk-attribute",
  630. val_array, MI2S_TDM_AUXPCM_MAX);
  631. if (ret) {
  632. dev_info(&pdev->dev,
  633. "%s: No DT match for mi2s clk attribute, set to default\n", __func__);
  634. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  635. common_pdata->mi2s_clk_attribute[count] =
  636. CLOCK_ATTRIBUTE_COUPLE_NO;
  637. }
  638. } else {
  639. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  640. common_pdata->mi2s_clk_attribute[count] =
  641. val_array[count];
  642. }
  643. }
  644. common_pdata->mi2s_gpio_p[PRI_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  645. "qcom,pri-mi2s-gpios", 0);
  646. common_pdata->mi2s_gpio_p[SEC_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  647. "qcom,sec-mi2s-gpios", 0);
  648. common_pdata->mi2s_gpio_p[TER_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  649. "qcom,tert-mi2s-gpios", 0);
  650. common_pdata->mi2s_gpio_p[QUAT_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  651. "qcom,quat-mi2s-gpios", 0);
  652. common_pdata->mi2s_gpio_p[QUIN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  653. "qcom,quin-mi2s-gpios", 0);
  654. common_pdata->mi2s_gpio_p[SEN_MI2S_TDM_AUXPCM] = of_parse_phandle(pdev->dev.of_node,
  655. "qcom,sen-mi2s-gpios", 0);
  656. common_pdata->aud_dev_state = devm_kcalloc(&pdev->dev, card->num_links,
  657. sizeof(uint8_t), GFP_KERNEL);
  658. dev_info(&pdev->dev, "num_links %d \n", card->num_links);
  659. common_pdata->num_aud_devs = card->num_links;
  660. aud_dev_sysfs_init(common_pdata);
  661. msm_common_set_pdata(card, common_pdata);
  662. /* Add QoS request for audio tasks */
  663. msm_audio_add_qos_request();
  664. return 0;
  665. };
  666. void msm_common_snd_deinit(struct msm_common_pdata *common_pdata)
  667. {
  668. int count;
  669. if (!common_pdata)
  670. return;
  671. msm_audio_remove_qos_request();
  672. for (count = 0; count < MI2S_TDM_AUXPCM_MAX; count++) {
  673. mutex_destroy(&common_pdata->lock[count]);
  674. }
  675. }
  676. int msm_channel_map_info(struct snd_kcontrol *kcontrol,
  677. struct snd_ctl_elem_info *uinfo)
  678. {
  679. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  680. uinfo->count = sizeof(uint32_t) * MAX_PORT;
  681. return 0;
  682. }
  683. int msm_channel_map_get(struct snd_kcontrol *kcontrol,
  684. struct snd_ctl_elem_value *ucontrol)
  685. {
  686. struct chmap_pdata *kctl_pdata =
  687. (struct chmap_pdata *)kcontrol->private_data;
  688. struct snd_soc_dai *codec_dai = NULL;
  689. int backend_id = 0;
  690. uint32_t rx_ch[MAX_PORT] = {0}, tx_ch[MAX_PORT] = {0};
  691. uint32_t rx_ch_cnt = 0, tx_ch_cnt = 0;
  692. uint32_t *chmap_data = NULL;
  693. int ret = 0, len = 0, i = 0;
  694. if (kctl_pdata == NULL) {
  695. pr_debug("%s: chmap_pdata is not initialized\n", __func__);
  696. return -EINVAL;
  697. }
  698. codec_dai = kctl_pdata->dai[0];
  699. backend_id = kctl_pdata->id;
  700. switch (backend_id) {
  701. case SLIM: {
  702. uint32_t *chmap;
  703. uint32_t ch_cnt;
  704. ret = snd_soc_dai_get_channel_map(codec_dai,
  705. &tx_ch_cnt, tx_ch, &rx_ch_cnt, rx_ch);
  706. if (ret || (tx_ch_cnt == 0 && rx_ch_cnt == 0)) {
  707. pr_debug("%s: got incorrect channel map for backend_id:%d\n",
  708. __func__, backend_id);
  709. return ret;
  710. }
  711. if (rx_ch_cnt) {
  712. chmap = rx_ch;
  713. ch_cnt = rx_ch_cnt;
  714. } else {
  715. chmap = tx_ch;
  716. ch_cnt = tx_ch_cnt;
  717. }
  718. len = sizeof(uint32_t) * (ch_cnt + 1);
  719. chmap_data = kzalloc(len, GFP_KERNEL);
  720. if (!chmap_data)
  721. return -ENOMEM;
  722. chmap_data[0] = ch_cnt;
  723. for (i = 0; i < ch_cnt; i++)
  724. chmap_data[i+1] = chmap[i];
  725. memcpy(ucontrol->value.bytes.data, chmap_data, len);
  726. break;
  727. }
  728. case CODEC_DMA: {
  729. uint32_t cur_rx_ch = 0, cur_tx_ch = 0;
  730. uint32_t cur_rx_ch_cnt = 0, cur_tx_ch_cnt = 0;
  731. for (i = 0; i < kctl_pdata->num_codec_dai; ++i) {
  732. codec_dai = kctl_pdata->dai[i];
  733. if(!codec_dai) {
  734. continue;
  735. }
  736. cur_rx_ch_cnt = 0;
  737. cur_tx_ch_cnt = 0;
  738. cur_tx_ch = 0;
  739. cur_rx_ch = 0;
  740. ret = snd_soc_dai_get_channel_map(codec_dai,
  741. &cur_tx_ch_cnt, &cur_tx_ch,
  742. &cur_rx_ch_cnt, &cur_rx_ch);
  743. /* DAIs that not supports get_channel_map should pass */
  744. if (ret && (ret != -ENOTSUPP)) {
  745. pr_err("%s: get channel map failed for backend_id:%d,"
  746. " ret:%d\n",
  747. __func__, backend_id, ret);
  748. return ret;
  749. }
  750. rx_ch_cnt += cur_rx_ch_cnt;
  751. tx_ch_cnt += cur_tx_ch_cnt;
  752. rx_ch[0] |= cur_rx_ch;
  753. tx_ch[0] |= cur_tx_ch;
  754. }
  755. /* reset return value from the loop above */
  756. ret = 0;
  757. if (rx_ch_cnt == 0 && tx_ch_cnt == 0) {
  758. pr_debug("%s: got incorrect channel map for backend_id:%d, ",
  759. "RX Channel Count:%d,"
  760. "TX Channel Count:%d\n",
  761. __func__, backend_id, rx_ch_cnt, tx_ch_cnt);
  762. return ret;
  763. }
  764. chmap_data = kzalloc(sizeof(uint32_t) * 2, GFP_KERNEL);
  765. if (!chmap_data)
  766. return -ENOMEM;
  767. if (rx_ch_cnt) {
  768. chmap_data[0] = rx_ch_cnt;
  769. chmap_data[1] = rx_ch[0];
  770. } else {
  771. chmap_data[0] = tx_ch_cnt;
  772. chmap_data[1] = tx_ch[0];
  773. }
  774. memcpy(ucontrol->value.bytes.data, chmap_data,
  775. sizeof(uint32_t) * 2);
  776. break;
  777. }
  778. default:
  779. pr_err("%s, Invalid backend %d\n", __func__, backend_id);
  780. ret = -EINVAL;
  781. break;
  782. }
  783. kfree(chmap_data);
  784. return ret;
  785. }
  786. void msm_common_get_backend_name(const char *stream_name, char **backend_name)
  787. {
  788. char arg[ARRAY_SZ] = {0};
  789. char value[61] = {0};
  790. sscanf(stream_name, "%20[^-]-%60s", arg, value);
  791. *backend_name = kzalloc(ARRAY_SZ, GFP_KERNEL);
  792. if (!(*backend_name))
  793. return;
  794. strlcpy(*backend_name, arg, ARRAY_SZ);
  795. }
  796. static void msm_audio_update_qos_request(u32 latency)
  797. {
  798. int cpu = 0;
  799. int ret = -1;
  800. if (msm_audio_req) {
  801. for_each_cpu(cpu, &audio_cpu_map) {
  802. ret = dev_pm_qos_update_request(
  803. &msm_audio_req[cpu], latency);
  804. if (1 == ret ) {
  805. pr_debug("%s: updated latency of core %d to %u.\n",
  806. __func__, cpu, latency);
  807. } else if (0 == ret) {
  808. pr_debug("%s: latency of core %d not changed. latency %u.\n",
  809. __func__, cpu, latency);
  810. } else {
  811. pr_err("%s: failed to update latency of core %d, error %d \n",
  812. __func__, cpu, ret);
  813. }
  814. }
  815. }
  816. }
  817. static int msm_qos_ctl_put(struct snd_kcontrol *kcontrol,
  818. struct snd_ctl_elem_value *ucontrol)
  819. {
  820. qos_vote_status = ucontrol->value.enumerated.item[0];
  821. if (qos_vote_status) {
  822. if (dev_pm_qos_request_active(&latency_pm_qos_req))
  823. dev_pm_qos_remove_request(&latency_pm_qos_req);
  824. qos_client_active_cnt++;
  825. if (qos_client_active_cnt == 1)
  826. msm_audio_update_qos_request(MSM_LL_QOS_VALUE);
  827. } else {
  828. if (qos_client_active_cnt > 0)
  829. qos_client_active_cnt--;
  830. if (qos_client_active_cnt == 0)
  831. msm_audio_update_qos_request(PM_QOS_CPU_LATENCY_DEFAULT_VALUE);
  832. }
  833. return 0;
  834. }
  835. static int msm_qos_ctl_get(struct snd_kcontrol *kcontrol,
  836. struct snd_ctl_elem_value *ucontrol)
  837. {
  838. ucontrol->value.enumerated.item[0] = qos_vote_status;
  839. return 0;
  840. }
  841. static const char *const qos_text[] = {"Disable", "Enable"};
  842. static SOC_ENUM_SINGLE_EXT_DECL(qos_vote, qos_text);
  843. static const struct snd_kcontrol_new card_pm_qos_controls[] = {
  844. SOC_ENUM_EXT("PM_QOS Vote", qos_vote,
  845. msm_qos_ctl_get, msm_qos_ctl_put),
  846. };
  847. static int msm_register_pm_qos_latency_controls(struct snd_soc_pcm_runtime *rtd)
  848. {
  849. struct snd_soc_component *lpass_cdc_component = NULL;
  850. int ret = 0;
  851. lpass_cdc_component = snd_soc_rtdcom_lookup(rtd, "lpass-cdc");
  852. if (!lpass_cdc_component) {
  853. pr_err("%s: could not find component for lpass-cdc\n",
  854. __func__);
  855. return -EINVAL;
  856. }
  857. ret = snd_soc_add_component_controls(lpass_cdc_component,
  858. card_pm_qos_controls, ARRAY_SIZE(card_pm_qos_controls));
  859. if (ret < 0) {
  860. pr_err("%s: add common snd controls failed: %d\n",
  861. __func__, ret);
  862. return -EINVAL;
  863. }
  864. return 0;
  865. }
  866. int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd)
  867. {
  868. struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
  869. struct snd_soc_component *component = NULL;
  870. struct snd_soc_dai_link *dai_link = rtd->dai_link;
  871. struct device *dev = rtd->card->dev;
  872. int ret = 0;
  873. int index = 0;
  874. const char *mixer_ctl_name = CODEC_CHMAP;
  875. char *mixer_str = NULL;
  876. char *backend_name = NULL;
  877. uint32_t ctl_len = 0;
  878. struct chmap_pdata *pdata;
  879. struct snd_kcontrol *kctl;
  880. struct snd_kcontrol_new msm_common_channel_map[1] = {
  881. {
  882. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  883. .name = "?",
  884. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  885. .info = msm_channel_map_info,
  886. .get = msm_channel_map_get,
  887. .private_value = 0,
  888. }
  889. };
  890. if (!codec_dai) {
  891. pr_err("%s: failed to get codec dai", __func__);
  892. return -EINVAL;
  893. }
  894. component = codec_dai->component;
  895. msm_common_get_backend_name(dai_link->stream_name, &backend_name);
  896. if (!backend_name) {
  897. pr_err("%s: failed to get backend name", __func__);
  898. return -EINVAL;
  899. }
  900. pdata = devm_kzalloc(dev, sizeof(struct chmap_pdata), GFP_KERNEL);
  901. if (!pdata)
  902. return -ENOMEM;
  903. if ((!strncmp(backend_name, "SLIM", strlen("SLIM"))) ||
  904. (!strncmp(backend_name, "CODEC_DMA", strlen("CODEC_DMA")))) {
  905. ctl_len = strlen(dai_link->stream_name) + 1 +
  906. strlen(mixer_ctl_name) + 1;
  907. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  908. if (!mixer_str)
  909. return -ENOMEM;
  910. snprintf(mixer_str, ctl_len, "%s %s", dai_link->stream_name,
  911. mixer_ctl_name);
  912. msm_common_channel_map[0].name = mixer_str;
  913. msm_common_channel_map[0].private_value = 0;
  914. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  915. ret = snd_soc_add_component_controls(component,
  916. msm_common_channel_map,
  917. ARRAY_SIZE(msm_common_channel_map));
  918. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  919. if (!kctl) {
  920. pr_err("failed to get kctl %s\n", mixer_str);
  921. ret = -EINVAL;
  922. goto free_mixer_str;
  923. }
  924. pdata->dai[0] = codec_dai;
  925. pdata->num_codec_dai = 1;
  926. if (!strncmp(backend_name, "SLIM", strlen("SLIM"))) {
  927. pdata->id = SLIM;
  928. } else {
  929. pdata->id = CODEC_DMA;
  930. if (rtd->num_codecs <= MAX_CODEC_DAI) {
  931. pdata->num_codec_dai = rtd->num_codecs;
  932. for_each_rtd_codec_dais(rtd, index, codec_dai) {
  933. pdata->dai[index] = codec_dai;
  934. }
  935. }
  936. }
  937. kctl->private_data = pdata;
  938. }
  939. if (!kregister_pm_qos_latency_controls) {
  940. if (!msm_register_pm_qos_latency_controls(rtd))
  941. kregister_pm_qos_latency_controls = true;
  942. }
  943. free_mixer_str:
  944. if (backend_name) {
  945. kfree(backend_name);
  946. backend_name = NULL;
  947. }
  948. if (mixer_str) {
  949. kfree(mixer_str);
  950. mixer_str = NULL;
  951. }
  952. return ret;
  953. }