msm_common.c 35 KB

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