msm-pcm-q6-v2.c 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. /* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/err.h>
  14. #include <linux/module.h>
  15. #include <linux/moduleparam.h>
  16. #include <linux/time.h>
  17. #include <linux/wait.h>
  18. #include <linux/platform_device.h>
  19. #include <linux/slab.h>
  20. #include <sound/core.h>
  21. #include <sound/soc.h>
  22. #include <sound/soc-dapm.h>
  23. #include <sound/pcm.h>
  24. #include <sound/initval.h>
  25. #include <sound/control.h>
  26. #include <sound/timer.h>
  27. #include <asm/dma.h>
  28. #include <linux/dma-mapping.h>
  29. #include <linux/msm_audio.h>
  30. #include <linux/of_device.h>
  31. #include <sound/tlv.h>
  32. #include <sound/pcm_params.h>
  33. #include <dsp/msm_audio_ion.h>
  34. #include <dsp/q6audio-v2.h>
  35. #include "msm-pcm-q6-v2.h"
  36. #include "msm-pcm-routing-v2.h"
  37. #include "msm-qti-pp-config.h"
  38. enum stream_state {
  39. IDLE = 0,
  40. STOPPED,
  41. RUNNING,
  42. };
  43. static struct audio_locks the_locks;
  44. #define PCM_MASTER_VOL_MAX_STEPS 0x2000
  45. static const DECLARE_TLV_DB_LINEAR(msm_pcm_vol_gain, 0,
  46. PCM_MASTER_VOL_MAX_STEPS);
  47. struct snd_msm {
  48. struct snd_card *card;
  49. struct snd_pcm *pcm;
  50. };
  51. #define CMD_EOS_MIN_TIMEOUT_LENGTH 50
  52. #define CMD_EOS_TIMEOUT_MULTIPLIER (HZ * 50)
  53. #define MAX_PB_COPY_RETRIES 3
  54. static struct snd_pcm_hardware msm_pcm_hardware_capture = {
  55. .info = (SNDRV_PCM_INFO_MMAP |
  56. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  57. SNDRV_PCM_INFO_MMAP_VALID |
  58. SNDRV_PCM_INFO_INTERLEAVED |
  59. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
  60. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  61. SNDRV_PCM_FMTBIT_S24_LE |
  62. SNDRV_PCM_FMTBIT_S24_3LE |
  63. SNDRV_PCM_FMTBIT_S32_LE),
  64. .rates = SNDRV_PCM_RATE_8000_384000,
  65. .rate_min = 8000,
  66. .rate_max = 384000,
  67. .channels_min = 1,
  68. .channels_max = 4,
  69. .buffer_bytes_max = CAPTURE_MAX_NUM_PERIODS *
  70. CAPTURE_MAX_PERIOD_SIZE,
  71. .period_bytes_min = CAPTURE_MIN_PERIOD_SIZE,
  72. .period_bytes_max = CAPTURE_MAX_PERIOD_SIZE,
  73. .periods_min = CAPTURE_MIN_NUM_PERIODS,
  74. .periods_max = CAPTURE_MAX_NUM_PERIODS,
  75. .fifo_size = 0,
  76. };
  77. static struct snd_pcm_hardware msm_pcm_hardware_playback = {
  78. .info = (SNDRV_PCM_INFO_MMAP |
  79. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  80. SNDRV_PCM_INFO_MMAP_VALID |
  81. SNDRV_PCM_INFO_INTERLEAVED |
  82. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
  83. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  84. SNDRV_PCM_FMTBIT_S24_LE |
  85. SNDRV_PCM_FMTBIT_S24_3LE |
  86. SNDRV_PCM_FMTBIT_S32_LE),
  87. .rates = SNDRV_PCM_RATE_8000_384000,
  88. .rate_min = 8000,
  89. .rate_max = 384000,
  90. .channels_min = 1,
  91. .channels_max = 8,
  92. .buffer_bytes_max = PLAYBACK_MAX_NUM_PERIODS *
  93. PLAYBACK_MAX_PERIOD_SIZE,
  94. .period_bytes_min = PLAYBACK_MIN_PERIOD_SIZE,
  95. .period_bytes_max = PLAYBACK_MAX_PERIOD_SIZE,
  96. .periods_min = PLAYBACK_MIN_NUM_PERIODS,
  97. .periods_max = PLAYBACK_MAX_NUM_PERIODS,
  98. .fifo_size = 0,
  99. };
  100. /* Conventional and unconventional sample rate supported */
  101. static unsigned int supported_sample_rates[] = {
  102. 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000,
  103. 88200, 96000, 176400, 192000, 352800, 384000
  104. };
  105. static struct snd_pcm_hw_constraint_list constraints_sample_rates = {
  106. .count = ARRAY_SIZE(supported_sample_rates),
  107. .list = supported_sample_rates,
  108. .mask = 0,
  109. };
  110. static void msm_pcm_route_event_handler(enum msm_pcm_routing_event event,
  111. void *priv_data)
  112. {
  113. struct msm_audio *prtd = priv_data;
  114. WARN_ON(!prtd);
  115. pr_debug("%s: event %x\n", __func__, event);
  116. switch (event) {
  117. case MSM_PCM_RT_EVT_BUF_RECFG:
  118. q6asm_cmd(prtd->audio_client, CMD_PAUSE);
  119. q6asm_cmd(prtd->audio_client, CMD_FLUSH);
  120. q6asm_run(prtd->audio_client, 0, 0, 0);
  121. /* fallthrough */
  122. default:
  123. break;
  124. }
  125. }
  126. static void event_handler(uint32_t opcode,
  127. uint32_t token, uint32_t *payload, void *priv)
  128. {
  129. struct msm_audio *prtd = priv;
  130. struct snd_pcm_substream *substream = prtd->substream;
  131. uint32_t *ptrmem = (uint32_t *)payload;
  132. uint32_t idx = 0;
  133. uint32_t size = 0;
  134. uint8_t buf_index;
  135. struct snd_soc_pcm_runtime *rtd;
  136. int ret = 0;
  137. switch (opcode) {
  138. case ASM_DATA_EVENT_WRITE_DONE_V2: {
  139. pr_debug("ASM_DATA_EVENT_WRITE_DONE_V2\n");
  140. pr_debug("Buffer Consumed = 0x%08x\n", *ptrmem);
  141. prtd->pcm_irq_pos += prtd->pcm_count;
  142. if (atomic_read(&prtd->start))
  143. snd_pcm_period_elapsed(substream);
  144. atomic_inc(&prtd->out_count);
  145. wake_up(&the_locks.write_wait);
  146. if (!atomic_read(&prtd->start))
  147. break;
  148. if (!prtd->mmap_flag || prtd->reset_event)
  149. break;
  150. if (q6asm_is_cpu_buf_avail_nolock(IN,
  151. prtd->audio_client,
  152. &size, &idx)) {
  153. pr_debug("%s:writing %d bytes of buffer to dsp 2\n",
  154. __func__, prtd->pcm_count);
  155. q6asm_write_nolock(prtd->audio_client,
  156. prtd->pcm_count, 0, 0, NO_TIMESTAMP);
  157. }
  158. break;
  159. }
  160. case ASM_DATA_EVENT_RENDERED_EOS:
  161. pr_debug("ASM_DATA_EVENT_RENDERED_EOS\n");
  162. clear_bit(CMD_EOS, &prtd->cmd_pending);
  163. wake_up(&the_locks.eos_wait);
  164. break;
  165. case ASM_DATA_EVENT_READ_DONE_V2: {
  166. pr_debug("ASM_DATA_EVENT_READ_DONE_V2\n");
  167. buf_index = q6asm_get_buf_index_from_token(token);
  168. if (buf_index >= CAPTURE_MAX_NUM_PERIODS) {
  169. pr_err("%s: buffer index %u is out of range.\n",
  170. __func__, buf_index);
  171. return;
  172. }
  173. pr_debug("%s: token=0x%08x buf_index=0x%08x\n",
  174. __func__, token, buf_index);
  175. prtd->in_frame_info[buf_index].size = payload[4];
  176. prtd->in_frame_info[buf_index].offset = payload[5];
  177. /* assume data size = 0 during flushing */
  178. if (prtd->in_frame_info[buf_index].size) {
  179. prtd->pcm_irq_pos +=
  180. prtd->in_frame_info[buf_index].size;
  181. pr_debug("pcm_irq_pos=%d\n", prtd->pcm_irq_pos);
  182. if (atomic_read(&prtd->start))
  183. snd_pcm_period_elapsed(substream);
  184. if (atomic_read(&prtd->in_count) <= prtd->periods)
  185. atomic_inc(&prtd->in_count);
  186. wake_up(&the_locks.read_wait);
  187. if (prtd->mmap_flag &&
  188. q6asm_is_cpu_buf_avail_nolock(OUT,
  189. prtd->audio_client,
  190. &size, &idx) &&
  191. (substream->runtime->status->state ==
  192. SNDRV_PCM_STATE_RUNNING))
  193. q6asm_read_nolock(prtd->audio_client);
  194. } else {
  195. pr_debug("%s: reclaim flushed buf in_count %x\n",
  196. __func__, atomic_read(&prtd->in_count));
  197. prtd->pcm_irq_pos += prtd->pcm_count;
  198. if (prtd->mmap_flag) {
  199. if (q6asm_is_cpu_buf_avail_nolock(OUT,
  200. prtd->audio_client,
  201. &size, &idx) &&
  202. (substream->runtime->status->state ==
  203. SNDRV_PCM_STATE_RUNNING))
  204. q6asm_read_nolock(prtd->audio_client);
  205. } else {
  206. atomic_inc(&prtd->in_count);
  207. }
  208. if (atomic_read(&prtd->in_count) == prtd->periods) {
  209. pr_info("%s: reclaimed all bufs\n", __func__);
  210. if (atomic_read(&prtd->start))
  211. snd_pcm_period_elapsed(substream);
  212. wake_up(&the_locks.read_wait);
  213. }
  214. }
  215. break;
  216. }
  217. case ASM_STREAM_PP_EVENT:
  218. case ASM_STREAM_CMD_ENCDEC_EVENTS: {
  219. pr_debug("%s: ASM_STREAM_EVENT (0x%x)\n", __func__, opcode);
  220. if (!substream) {
  221. pr_err("%s: substream is NULL.\n", __func__);
  222. return;
  223. }
  224. rtd = substream->private_data;
  225. if (!rtd) {
  226. pr_err("%s: rtd is NULL\n", __func__);
  227. return;
  228. }
  229. ret = msm_adsp_inform_mixer_ctl(rtd, payload);
  230. if (ret) {
  231. pr_err("%s: failed to inform mixer ctl. err = %d\n",
  232. __func__, ret);
  233. return;
  234. }
  235. break;
  236. }
  237. case APR_BASIC_RSP_RESULT: {
  238. switch (payload[0]) {
  239. case ASM_SESSION_CMD_RUN_V2:
  240. if (substream->stream
  241. != SNDRV_PCM_STREAM_PLAYBACK) {
  242. atomic_set(&prtd->start, 1);
  243. break;
  244. }
  245. if (prtd->mmap_flag) {
  246. pr_debug("%s:writing %d bytes of buffer to dsp\n",
  247. __func__,
  248. prtd->pcm_count);
  249. q6asm_write_nolock(prtd->audio_client,
  250. prtd->pcm_count,
  251. 0, 0, NO_TIMESTAMP);
  252. } else {
  253. while (atomic_read(&prtd->out_needed)) {
  254. pr_debug("%s:writing %d bytes of buffer to dsp\n",
  255. __func__,
  256. prtd->pcm_count);
  257. q6asm_write_nolock(prtd->audio_client,
  258. prtd->pcm_count,
  259. 0, 0, NO_TIMESTAMP);
  260. atomic_dec(&prtd->out_needed);
  261. wake_up(&the_locks.write_wait);
  262. };
  263. }
  264. atomic_set(&prtd->start, 1);
  265. break;
  266. case ASM_STREAM_CMD_REGISTER_PP_EVENTS:
  267. pr_debug("%s: ASM_STREAM_CMD_REGISTER_PP_EVENTS:",
  268. __func__);
  269. break;
  270. default:
  271. pr_debug("%s:Payload = [0x%x]stat[0x%x]\n",
  272. __func__, payload[0], payload[1]);
  273. break;
  274. }
  275. }
  276. break;
  277. case RESET_EVENTS:
  278. pr_debug("%s RESET_EVENTS\n", __func__);
  279. prtd->pcm_irq_pos += prtd->pcm_count;
  280. atomic_inc(&prtd->out_count);
  281. atomic_inc(&prtd->in_count);
  282. prtd->reset_event = true;
  283. if (atomic_read(&prtd->start))
  284. snd_pcm_period_elapsed(substream);
  285. wake_up(&the_locks.eos_wait);
  286. wake_up(&the_locks.write_wait);
  287. wake_up(&the_locks.read_wait);
  288. break;
  289. default:
  290. pr_debug("Not Supported Event opcode[0x%x]\n", opcode);
  291. break;
  292. }
  293. }
  294. static int msm_pcm_playback_prepare(struct snd_pcm_substream *substream)
  295. {
  296. struct snd_pcm_runtime *runtime = substream->runtime;
  297. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  298. struct msm_audio *prtd = runtime->private_data;
  299. struct msm_plat_data *pdata;
  300. struct snd_pcm_hw_params *params;
  301. int ret;
  302. uint32_t fmt_type = FORMAT_LINEAR_PCM;
  303. uint16_t bits_per_sample;
  304. uint16_t sample_word_size;
  305. pdata = (struct msm_plat_data *)
  306. dev_get_drvdata(soc_prtd->platform->dev);
  307. if (!pdata) {
  308. pr_err("%s: platform data not populated\n", __func__);
  309. return -EINVAL;
  310. }
  311. if (!prtd || !prtd->audio_client) {
  312. pr_err("%s: private data null or audio client freed\n",
  313. __func__);
  314. return -EINVAL;
  315. }
  316. params = &soc_prtd->dpcm[substream->stream].hw_params;
  317. pr_debug("%s\n", __func__);
  318. prtd->pcm_size = snd_pcm_lib_buffer_bytes(substream);
  319. prtd->pcm_count = snd_pcm_lib_period_bytes(substream);
  320. prtd->pcm_irq_pos = 0;
  321. /* rate and channels are sent to audio driver */
  322. prtd->samp_rate = runtime->rate;
  323. prtd->channel_mode = runtime->channels;
  324. if (prtd->enabled)
  325. return 0;
  326. prtd->audio_client->perf_mode = pdata->perf_mode;
  327. pr_debug("%s: perf: %x\n", __func__, pdata->perf_mode);
  328. switch (params_format(params)) {
  329. case SNDRV_PCM_FORMAT_S32_LE:
  330. bits_per_sample = 32;
  331. sample_word_size = 32;
  332. break;
  333. case SNDRV_PCM_FORMAT_S24_LE:
  334. bits_per_sample = 24;
  335. sample_word_size = 32;
  336. break;
  337. case SNDRV_PCM_FORMAT_S24_3LE:
  338. bits_per_sample = 24;
  339. sample_word_size = 24;
  340. break;
  341. case SNDRV_PCM_FORMAT_S16_LE:
  342. default:
  343. bits_per_sample = 16;
  344. sample_word_size = 16;
  345. break;
  346. }
  347. if (prtd->compress_enable) {
  348. fmt_type = FORMAT_GEN_COMPR;
  349. pr_debug("%s: Compressed enabled!\n", __func__);
  350. ret = q6asm_open_write_compressed(prtd->audio_client, fmt_type,
  351. COMPRESSED_PASSTHROUGH_GEN);
  352. if (ret < 0) {
  353. pr_err("%s: q6asm_open_write_compressed failed (%d)\n",
  354. __func__, ret);
  355. q6asm_audio_client_free(prtd->audio_client);
  356. prtd->audio_client = NULL;
  357. return -ENOMEM;
  358. }
  359. } else {
  360. ret = q6asm_open_write_v4(prtd->audio_client,
  361. fmt_type, bits_per_sample);
  362. if (ret < 0) {
  363. pr_err("%s: q6asm_open_write_v4 failed (%d)\n",
  364. __func__, ret);
  365. q6asm_audio_client_free(prtd->audio_client);
  366. prtd->audio_client = NULL;
  367. return -ENOMEM;
  368. }
  369. ret = q6asm_send_cal(prtd->audio_client);
  370. if (ret < 0)
  371. pr_debug("%s : Send cal failed : %d", __func__, ret);
  372. }
  373. pr_debug("%s: session ID %d\n", __func__,
  374. prtd->audio_client->session);
  375. prtd->session_id = prtd->audio_client->session;
  376. if (prtd->compress_enable) {
  377. ret = msm_pcm_routing_reg_phy_compr_stream(
  378. soc_prtd->dai_link->id,
  379. prtd->audio_client->perf_mode,
  380. prtd->session_id,
  381. SNDRV_PCM_STREAM_PLAYBACK,
  382. COMPRESSED_PASSTHROUGH_GEN);
  383. } else {
  384. ret = msm_pcm_routing_reg_phy_stream(soc_prtd->dai_link->id,
  385. prtd->audio_client->perf_mode,
  386. prtd->session_id, substream->stream);
  387. }
  388. if (ret) {
  389. pr_err("%s: stream reg failed ret:%d\n", __func__, ret);
  390. return ret;
  391. }
  392. if (prtd->compress_enable) {
  393. ret = q6asm_media_format_block_gen_compr(
  394. prtd->audio_client, runtime->rate,
  395. runtime->channels, !prtd->set_channel_map,
  396. prtd->channel_map, bits_per_sample);
  397. } else {
  398. ret = q6asm_media_format_block_multi_ch_pcm_v4(
  399. prtd->audio_client, runtime->rate,
  400. runtime->channels, !prtd->set_channel_map,
  401. prtd->channel_map, bits_per_sample,
  402. sample_word_size, ASM_LITTLE_ENDIAN,
  403. DEFAULT_QF);
  404. }
  405. if (ret < 0)
  406. pr_info("%s: CMD Format block failed\n", __func__);
  407. atomic_set(&prtd->out_count, runtime->periods);
  408. prtd->enabled = 1;
  409. prtd->cmd_pending = 0;
  410. prtd->cmd_interrupt = 0;
  411. return 0;
  412. }
  413. static int msm_pcm_capture_prepare(struct snd_pcm_substream *substream)
  414. {
  415. struct snd_pcm_runtime *runtime = substream->runtime;
  416. struct msm_audio *prtd = runtime->private_data;
  417. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  418. struct msm_plat_data *pdata;
  419. struct snd_pcm_hw_params *params;
  420. struct msm_pcm_routing_evt event;
  421. int ret = 0;
  422. int i = 0;
  423. uint16_t bits_per_sample = 16;
  424. uint16_t sample_word_size;
  425. pdata = (struct msm_plat_data *)
  426. dev_get_drvdata(soc_prtd->platform->dev);
  427. if (!pdata) {
  428. pr_err("%s: platform data not populated\n", __func__);
  429. return -EINVAL;
  430. }
  431. if (!prtd || !prtd->audio_client) {
  432. pr_err("%s: private data null or audio client freed\n",
  433. __func__);
  434. return -EINVAL;
  435. }
  436. if (prtd->enabled == IDLE) {
  437. pr_debug("%s:perf_mode=%d periods=%d\n", __func__,
  438. pdata->perf_mode, runtime->periods);
  439. params = &soc_prtd->dpcm[substream->stream].hw_params;
  440. if ((params_format(params) == SNDRV_PCM_FORMAT_S24_LE) ||
  441. (params_format(params) == SNDRV_PCM_FORMAT_S24_3LE))
  442. bits_per_sample = 24;
  443. else if (params_format(params) == SNDRV_PCM_FORMAT_S32_LE)
  444. bits_per_sample = 32;
  445. /* ULL mode is not supported in capture path */
  446. if (pdata->perf_mode == LEGACY_PCM_MODE)
  447. prtd->audio_client->perf_mode = LEGACY_PCM_MODE;
  448. else
  449. prtd->audio_client->perf_mode = LOW_LATENCY_PCM_MODE;
  450. pr_debug("%s Opening %d-ch PCM read stream, perf_mode %d\n",
  451. __func__, params_channels(params),
  452. prtd->audio_client->perf_mode);
  453. ret = q6asm_open_read_v4(prtd->audio_client, FORMAT_LINEAR_PCM,
  454. bits_per_sample, false, ENC_CFG_ID_NONE);
  455. if (ret < 0) {
  456. pr_err("%s: q6asm_open_read failed\n", __func__);
  457. q6asm_audio_client_free(prtd->audio_client);
  458. prtd->audio_client = NULL;
  459. return -ENOMEM;
  460. }
  461. ret = q6asm_send_cal(prtd->audio_client);
  462. if (ret < 0)
  463. pr_debug("%s : Send cal failed : %d", __func__, ret);
  464. pr_debug("%s: session ID %d\n",
  465. __func__, prtd->audio_client->session);
  466. prtd->session_id = prtd->audio_client->session;
  467. event.event_func = msm_pcm_route_event_handler;
  468. event.priv_data = (void *) prtd;
  469. ret = msm_pcm_routing_reg_phy_stream_v2(
  470. soc_prtd->dai_link->id,
  471. prtd->audio_client->perf_mode,
  472. prtd->session_id, substream->stream,
  473. event);
  474. if (ret) {
  475. pr_err("%s: stream reg failed ret:%d\n", __func__, ret);
  476. return ret;
  477. }
  478. }
  479. prtd->pcm_size = snd_pcm_lib_buffer_bytes(substream);
  480. prtd->pcm_count = snd_pcm_lib_period_bytes(substream);
  481. prtd->pcm_irq_pos = 0;
  482. /* rate and channels are sent to audio driver */
  483. prtd->samp_rate = runtime->rate;
  484. prtd->channel_mode = runtime->channels;
  485. if (prtd->enabled == IDLE || prtd->enabled == STOPPED) {
  486. for (i = 0; i < runtime->periods; i++)
  487. q6asm_read(prtd->audio_client);
  488. prtd->periods = runtime->periods;
  489. }
  490. if (prtd->enabled != IDLE)
  491. return 0;
  492. switch (runtime->format) {
  493. case SNDRV_PCM_FORMAT_S32_LE:
  494. bits_per_sample = 32;
  495. sample_word_size = 32;
  496. break;
  497. case SNDRV_PCM_FORMAT_S24_LE:
  498. bits_per_sample = 24;
  499. sample_word_size = 32;
  500. break;
  501. case SNDRV_PCM_FORMAT_S24_3LE:
  502. bits_per_sample = 24;
  503. sample_word_size = 24;
  504. break;
  505. case SNDRV_PCM_FORMAT_S16_LE:
  506. default:
  507. bits_per_sample = 16;
  508. sample_word_size = 16;
  509. break;
  510. }
  511. pr_debug("%s: Samp_rate = %d Channel = %d bit width = %d, word size = %d\n",
  512. __func__, prtd->samp_rate, prtd->channel_mode,
  513. bits_per_sample, sample_word_size);
  514. ret = q6asm_enc_cfg_blk_pcm_format_support_v4(prtd->audio_client,
  515. prtd->samp_rate,
  516. prtd->channel_mode,
  517. bits_per_sample,
  518. sample_word_size,
  519. ASM_LITTLE_ENDIAN,
  520. DEFAULT_QF);
  521. if (ret < 0)
  522. pr_debug("%s: cmd cfg pcm was block failed", __func__);
  523. prtd->enabled = RUNNING;
  524. return ret;
  525. }
  526. static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  527. {
  528. int ret = 0;
  529. struct snd_pcm_runtime *runtime = substream->runtime;
  530. struct msm_audio *prtd = runtime->private_data;
  531. switch (cmd) {
  532. case SNDRV_PCM_TRIGGER_START:
  533. case SNDRV_PCM_TRIGGER_RESUME:
  534. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  535. pr_debug("%s: Trigger start\n", __func__);
  536. ret = q6asm_run_nowait(prtd->audio_client, 0, 0, 0);
  537. break;
  538. case SNDRV_PCM_TRIGGER_STOP:
  539. pr_debug("SNDRV_PCM_TRIGGER_STOP\n");
  540. atomic_set(&prtd->start, 0);
  541. if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK) {
  542. prtd->enabled = STOPPED;
  543. ret = q6asm_cmd_nowait(prtd->audio_client, CMD_PAUSE);
  544. break;
  545. }
  546. /* pending CMD_EOS isn't expected */
  547. WARN_ON_ONCE(test_bit(CMD_EOS, &prtd->cmd_pending));
  548. set_bit(CMD_EOS, &prtd->cmd_pending);
  549. ret = q6asm_cmd_nowait(prtd->audio_client, CMD_EOS);
  550. if (ret)
  551. clear_bit(CMD_EOS, &prtd->cmd_pending);
  552. break;
  553. case SNDRV_PCM_TRIGGER_SUSPEND:
  554. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  555. pr_debug("SNDRV_PCM_TRIGGER_PAUSE\n");
  556. ret = q6asm_cmd_nowait(prtd->audio_client, CMD_PAUSE);
  557. atomic_set(&prtd->start, 0);
  558. break;
  559. default:
  560. ret = -EINVAL;
  561. break;
  562. }
  563. return ret;
  564. }
  565. static int msm_pcm_open(struct snd_pcm_substream *substream)
  566. {
  567. struct snd_pcm_runtime *runtime = substream->runtime;
  568. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  569. struct msm_audio *prtd;
  570. struct msm_plat_data *pdata;
  571. int ret = 0;
  572. pdata = (struct msm_plat_data *)
  573. dev_get_drvdata(soc_prtd->platform->dev);
  574. if (!pdata) {
  575. pr_err("%s: platform data not populated\n", __func__);
  576. return -EINVAL;
  577. }
  578. prtd = kzalloc(sizeof(struct msm_audio), GFP_KERNEL);
  579. if (prtd == NULL)
  580. return -ENOMEM;
  581. prtd->substream = substream;
  582. prtd->audio_client = q6asm_audio_client_alloc(
  583. (app_cb)event_handler, prtd);
  584. if (!prtd->audio_client) {
  585. pr_info("%s: Could not allocate memory\n", __func__);
  586. kfree(prtd);
  587. return -ENOMEM;
  588. }
  589. prtd->audio_client->dev = soc_prtd->platform->dev;
  590. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  591. runtime->hw = msm_pcm_hardware_playback;
  592. /* Capture path */
  593. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  594. runtime->hw = msm_pcm_hardware_capture;
  595. else {
  596. pr_err("Invalid Stream type %d\n", substream->stream);
  597. return -EINVAL;
  598. }
  599. ret = snd_pcm_hw_constraint_list(runtime, 0,
  600. SNDRV_PCM_HW_PARAM_RATE,
  601. &constraints_sample_rates);
  602. if (ret < 0)
  603. pr_info("snd_pcm_hw_constraint_list failed\n");
  604. /* Ensure that buffer size is a multiple of period size */
  605. ret = snd_pcm_hw_constraint_integer(runtime,
  606. SNDRV_PCM_HW_PARAM_PERIODS);
  607. if (ret < 0)
  608. pr_info("snd_pcm_hw_constraint_integer failed\n");
  609. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  610. ret = snd_pcm_hw_constraint_minmax(runtime,
  611. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  612. PLAYBACK_MIN_NUM_PERIODS * PLAYBACK_MIN_PERIOD_SIZE,
  613. PLAYBACK_MAX_NUM_PERIODS * PLAYBACK_MAX_PERIOD_SIZE);
  614. if (ret < 0) {
  615. pr_err("constraint for buffer bytes min max ret = %d\n",
  616. ret);
  617. }
  618. }
  619. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  620. ret = snd_pcm_hw_constraint_minmax(runtime,
  621. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  622. CAPTURE_MIN_NUM_PERIODS * CAPTURE_MIN_PERIOD_SIZE,
  623. CAPTURE_MAX_NUM_PERIODS * CAPTURE_MAX_PERIOD_SIZE);
  624. if (ret < 0) {
  625. pr_err("constraint for buffer bytes min max ret = %d\n",
  626. ret);
  627. }
  628. }
  629. ret = snd_pcm_hw_constraint_step(runtime, 0,
  630. SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 32);
  631. if (ret < 0) {
  632. pr_err("constraint for period bytes step ret = %d\n",
  633. ret);
  634. }
  635. ret = snd_pcm_hw_constraint_step(runtime, 0,
  636. SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 32);
  637. if (ret < 0) {
  638. pr_err("constraint for buffer bytes step ret = %d\n",
  639. ret);
  640. }
  641. prtd->enabled = IDLE;
  642. prtd->dsp_cnt = 0;
  643. prtd->set_channel_map = false;
  644. prtd->reset_event = false;
  645. runtime->private_data = prtd;
  646. msm_adsp_init_mixer_ctl_pp_event_queue(soc_prtd);
  647. /* Vote to update the Rx thread priority to RT Thread for playback */
  648. if ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK) &&
  649. (pdata->perf_mode == LOW_LATENCY_PCM_MODE))
  650. apr_start_rx_rt(prtd->audio_client->apr);
  651. return 0;
  652. }
  653. static int msm_pcm_playback_copy(struct snd_pcm_substream *substream, int a,
  654. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  655. {
  656. int ret = 0;
  657. int xfer = 0;
  658. char *bufptr = NULL;
  659. void *data = NULL;
  660. uint32_t idx = 0;
  661. uint32_t size = 0;
  662. uint32_t retries = 0;
  663. struct snd_pcm_runtime *runtime = substream->runtime;
  664. struct msm_audio *prtd = runtime->private_data;
  665. pr_debug("%s: prtd->out_count = %d\n",
  666. __func__, atomic_read(&prtd->out_count));
  667. while ((fbytes > 0) && (retries < MAX_PB_COPY_RETRIES)) {
  668. if (prtd->reset_event) {
  669. pr_err("%s: In SSR return ENETRESET before wait\n",
  670. __func__);
  671. return -ENETRESET;
  672. }
  673. ret = wait_event_timeout(the_locks.write_wait,
  674. (atomic_read(&prtd->out_count)), 5 * HZ);
  675. if (!ret) {
  676. pr_err("%s: wait_event_timeout failed\n", __func__);
  677. ret = -ETIMEDOUT;
  678. goto fail;
  679. }
  680. ret = 0;
  681. if (prtd->reset_event) {
  682. pr_err("%s: In SSR return ENETRESET after wait\n",
  683. __func__);
  684. return -ENETRESET;
  685. }
  686. if (!atomic_read(&prtd->out_count)) {
  687. pr_err("%s: pcm stopped out_count 0\n", __func__);
  688. return 0;
  689. }
  690. data = q6asm_is_cpu_buf_avail(IN, prtd->audio_client, &size,
  691. &idx);
  692. if (data == NULL) {
  693. retries++;
  694. continue;
  695. } else {
  696. retries = 0;
  697. }
  698. if (fbytes > size)
  699. xfer = size;
  700. else
  701. xfer = fbytes;
  702. bufptr = data;
  703. if (bufptr) {
  704. pr_debug("%s:fbytes =%lu: xfer=%d size=%d\n",
  705. __func__, fbytes, xfer, size);
  706. if (copy_from_user(bufptr, buf, xfer)) {
  707. ret = -EFAULT;
  708. pr_err("%s: copy_from_user failed\n",
  709. __func__);
  710. q6asm_cpu_buf_release(IN, prtd->audio_client);
  711. goto fail;
  712. }
  713. buf += xfer;
  714. fbytes -= xfer;
  715. pr_debug("%s:fbytes = %lu: xfer=%d\n", __func__,
  716. fbytes, xfer);
  717. if (atomic_read(&prtd->start)) {
  718. pr_debug("%s:writing %d bytes of buffer to dsp\n",
  719. __func__, xfer);
  720. ret = q6asm_write(prtd->audio_client, xfer,
  721. 0, 0, NO_TIMESTAMP);
  722. if (ret < 0) {
  723. ret = -EFAULT;
  724. q6asm_cpu_buf_release(IN,
  725. prtd->audio_client);
  726. goto fail;
  727. }
  728. } else
  729. atomic_inc(&prtd->out_needed);
  730. atomic_dec(&prtd->out_count);
  731. }
  732. }
  733. fail:
  734. if (retries >= MAX_PB_COPY_RETRIES)
  735. ret = -ENOMEM;
  736. return ret;
  737. }
  738. static int msm_pcm_playback_close(struct snd_pcm_substream *substream)
  739. {
  740. struct snd_pcm_runtime *runtime = substream->runtime;
  741. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  742. struct msm_audio *prtd = runtime->private_data;
  743. struct msm_plat_data *pdata;
  744. uint32_t timeout;
  745. int dir = 0;
  746. int ret = 0;
  747. pr_debug("%s: cmd_pending 0x%lx\n", __func__, prtd->cmd_pending);
  748. if (prtd->audio_client) {
  749. dir = IN;
  750. /*
  751. * Unvote to downgrade the Rx thread priority from
  752. * RT Thread for Low-Latency use case.
  753. */
  754. pdata = (struct msm_plat_data *)
  755. dev_get_drvdata(soc_prtd->platform->dev);
  756. if (pdata) {
  757. if (pdata->perf_mode == LOW_LATENCY_PCM_MODE)
  758. apr_end_rx_rt(prtd->audio_client->apr);
  759. }
  760. /* determine timeout length */
  761. if (runtime->frame_bits == 0 || runtime->rate == 0) {
  762. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  763. } else {
  764. timeout = (runtime->period_size *
  765. CMD_EOS_TIMEOUT_MULTIPLIER) /
  766. ((runtime->frame_bits / 8) *
  767. runtime->rate);
  768. if (timeout < CMD_EOS_MIN_TIMEOUT_LENGTH)
  769. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  770. }
  771. pr_debug("%s: CMD_EOS timeout is %d\n", __func__, timeout);
  772. ret = wait_event_timeout(the_locks.eos_wait,
  773. !test_bit(CMD_EOS, &prtd->cmd_pending),
  774. timeout);
  775. if (!ret)
  776. pr_err("%s: CMD_EOS failed, cmd_pending 0x%lx\n",
  777. __func__, prtd->cmd_pending);
  778. q6asm_cmd(prtd->audio_client, CMD_CLOSE);
  779. q6asm_audio_client_buf_free_contiguous(dir,
  780. prtd->audio_client);
  781. q6asm_audio_client_free(prtd->audio_client);
  782. }
  783. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  784. SNDRV_PCM_STREAM_PLAYBACK);
  785. msm_adsp_clean_mixer_ctl_pp_event_queue(soc_prtd);
  786. kfree(prtd);
  787. runtime->private_data = NULL;
  788. return 0;
  789. }
  790. static int msm_pcm_capture_copy(struct snd_pcm_substream *substream,
  791. int channel, unsigned long hwoff, void __user *buf,
  792. unsigned long fbytes)
  793. {
  794. int ret = 0;
  795. int xfer;
  796. char *bufptr;
  797. void *data = NULL;
  798. static uint32_t idx;
  799. static uint32_t size;
  800. uint32_t offset = 0;
  801. struct snd_pcm_runtime *runtime = substream->runtime;
  802. struct msm_audio *prtd = substream->runtime->private_data;
  803. pr_debug("%s\n", __func__);
  804. pr_debug("appl_ptr %d\n", (int)runtime->control->appl_ptr);
  805. pr_debug("hw_ptr %d\n", (int)runtime->status->hw_ptr);
  806. pr_debug("avail_min %d\n", (int)runtime->control->avail_min);
  807. if (prtd->reset_event) {
  808. pr_err("%s: In SSR return ENETRESET before wait\n", __func__);
  809. return -ENETRESET;
  810. }
  811. ret = wait_event_timeout(the_locks.read_wait,
  812. (atomic_read(&prtd->in_count)), 5 * HZ);
  813. if (!ret) {
  814. pr_debug("%s: wait_event_timeout failed\n", __func__);
  815. goto fail;
  816. }
  817. if (prtd->reset_event) {
  818. pr_err("%s: In SSR return ENETRESET after wait\n", __func__);
  819. return -ENETRESET;
  820. }
  821. if (!atomic_read(&prtd->in_count)) {
  822. pr_debug("%s: pcm stopped in_count 0\n", __func__);
  823. return 0;
  824. }
  825. pr_debug("Checking if valid buffer is available...%pK\n",
  826. data);
  827. data = q6asm_is_cpu_buf_avail(OUT, prtd->audio_client, &size, &idx);
  828. bufptr = data;
  829. pr_debug("Size = %d\n", size);
  830. pr_debug("fbytes = %lu\n", fbytes);
  831. pr_debug("idx = %d\n", idx);
  832. if (bufptr) {
  833. xfer = fbytes;
  834. if (xfer > size)
  835. xfer = size;
  836. offset = prtd->in_frame_info[idx].offset;
  837. pr_debug("Offset value = %d\n", offset);
  838. if (copy_to_user(buf, bufptr+offset, xfer)) {
  839. pr_err("Failed to copy buf to user\n");
  840. ret = -EFAULT;
  841. q6asm_cpu_buf_release(OUT, prtd->audio_client);
  842. goto fail;
  843. }
  844. fbytes -= xfer;
  845. size -= xfer;
  846. prtd->in_frame_info[idx].offset += xfer;
  847. pr_debug("%s:fbytes = %lu: size=%d: xfer=%d\n",
  848. __func__, fbytes, size, xfer);
  849. pr_debug(" Sending next buffer to dsp\n");
  850. memset(&prtd->in_frame_info[idx], 0,
  851. sizeof(struct msm_audio_in_frame_info));
  852. atomic_dec(&prtd->in_count);
  853. ret = q6asm_read(prtd->audio_client);
  854. if (ret < 0) {
  855. pr_err("q6asm read failed\n");
  856. ret = -EFAULT;
  857. q6asm_cpu_buf_release(OUT, prtd->audio_client);
  858. goto fail;
  859. }
  860. } else
  861. pr_err("No valid buffer\n");
  862. pr_debug("Returning from capture_copy... %d\n", ret);
  863. fail:
  864. return ret;
  865. }
  866. static int msm_pcm_capture_close(struct snd_pcm_substream *substream)
  867. {
  868. struct snd_pcm_runtime *runtime = substream->runtime;
  869. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  870. struct msm_audio *prtd = runtime->private_data;
  871. int dir = OUT;
  872. pr_debug("%s\n", __func__);
  873. if (prtd->audio_client) {
  874. q6asm_cmd(prtd->audio_client, CMD_CLOSE);
  875. q6asm_audio_client_buf_free_contiguous(dir,
  876. prtd->audio_client);
  877. q6asm_audio_client_free(prtd->audio_client);
  878. }
  879. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  880. SNDRV_PCM_STREAM_CAPTURE);
  881. kfree(prtd);
  882. runtime->private_data = NULL;
  883. return 0;
  884. }
  885. static int msm_pcm_copy(struct snd_pcm_substream *substream, int a,
  886. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  887. {
  888. int ret = 0;
  889. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  890. ret = msm_pcm_playback_copy(substream, a, hwoff, buf, fbytes);
  891. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  892. ret = msm_pcm_capture_copy(substream, a, hwoff, buf, fbytes);
  893. return ret;
  894. }
  895. static int msm_pcm_close(struct snd_pcm_substream *substream)
  896. {
  897. int ret = 0;
  898. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  899. ret = msm_pcm_playback_close(substream);
  900. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  901. ret = msm_pcm_capture_close(substream);
  902. return ret;
  903. }
  904. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  905. {
  906. int ret = 0;
  907. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  908. ret = msm_pcm_playback_prepare(substream);
  909. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  910. ret = msm_pcm_capture_prepare(substream);
  911. return ret;
  912. }
  913. static snd_pcm_uframes_t msm_pcm_pointer(struct snd_pcm_substream *substream)
  914. {
  915. struct snd_pcm_runtime *runtime = substream->runtime;
  916. struct msm_audio *prtd = runtime->private_data;
  917. if (prtd->pcm_irq_pos >= prtd->pcm_size)
  918. prtd->pcm_irq_pos = 0;
  919. pr_debug("pcm_irq_pos = %d\n", prtd->pcm_irq_pos);
  920. return bytes_to_frames(runtime, (prtd->pcm_irq_pos));
  921. }
  922. static int msm_pcm_mmap(struct snd_pcm_substream *substream,
  923. struct vm_area_struct *vma)
  924. {
  925. struct snd_pcm_runtime *runtime = substream->runtime;
  926. struct msm_audio *prtd = runtime->private_data;
  927. struct audio_client *ac = prtd->audio_client;
  928. struct audio_port_data *apd = ac->port;
  929. struct audio_buffer *ab;
  930. int dir = -1;
  931. prtd->mmap_flag = 1;
  932. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  933. dir = IN;
  934. else
  935. dir = OUT;
  936. ab = &(apd[dir].buf[0]);
  937. return msm_audio_ion_mmap(ab, vma);
  938. }
  939. static int msm_pcm_hw_params(struct snd_pcm_substream *substream,
  940. struct snd_pcm_hw_params *params)
  941. {
  942. struct snd_pcm_runtime *runtime = substream->runtime;
  943. struct msm_audio *prtd = runtime->private_data;
  944. struct snd_dma_buffer *dma_buf = &substream->dma_buffer;
  945. struct audio_buffer *buf;
  946. int dir, ret;
  947. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  948. dir = IN;
  949. else
  950. dir = OUT;
  951. ret = q6asm_audio_client_buf_alloc_contiguous(dir,
  952. prtd->audio_client,
  953. (params_buffer_bytes(params) / params_periods(params)),
  954. params_periods(params));
  955. if (ret < 0) {
  956. pr_err("Audio Start: Buffer Allocation failed rc = %d\n",
  957. ret);
  958. return -ENOMEM;
  959. }
  960. buf = prtd->audio_client->port[dir].buf;
  961. if (buf == NULL || buf[0].data == NULL)
  962. return -ENOMEM;
  963. pr_debug("%s:buf = %pK\n", __func__, buf);
  964. dma_buf->dev.type = SNDRV_DMA_TYPE_DEV;
  965. dma_buf->dev.dev = substream->pcm->card->dev;
  966. dma_buf->private_data = NULL;
  967. dma_buf->area = buf[0].data;
  968. dma_buf->addr = buf[0].phys;
  969. dma_buf->bytes = params_buffer_bytes(params);
  970. if (!dma_buf->area)
  971. return -ENOMEM;
  972. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  973. return 0;
  974. }
  975. static const struct snd_pcm_ops msm_pcm_ops = {
  976. .open = msm_pcm_open,
  977. .copy_user = msm_pcm_copy,
  978. .hw_params = msm_pcm_hw_params,
  979. .close = msm_pcm_close,
  980. .ioctl = snd_pcm_lib_ioctl,
  981. .prepare = msm_pcm_prepare,
  982. .trigger = msm_pcm_trigger,
  983. .pointer = msm_pcm_pointer,
  984. .mmap = msm_pcm_mmap,
  985. };
  986. static int msm_pcm_adsp_stream_cmd_put(struct snd_kcontrol *kcontrol,
  987. struct snd_ctl_elem_value *ucontrol)
  988. {
  989. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  990. struct snd_soc_platform *platform = snd_soc_component_to_platform(pcm);
  991. struct msm_plat_data *pdata = dev_get_drvdata(platform->dev);
  992. struct snd_pcm_substream *substream;
  993. struct msm_audio *prtd;
  994. int ret = 0;
  995. struct msm_adsp_event_data *event_data = NULL;
  996. if (!pdata) {
  997. pr_err("%s pdata is NULL\n", __func__);
  998. ret = -ENODEV;
  999. goto done;
  1000. }
  1001. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1002. if (!substream) {
  1003. pr_err("%s substream not found\n", __func__);
  1004. ret = -EINVAL;
  1005. goto done;
  1006. }
  1007. if (!substream->runtime) {
  1008. pr_err("%s substream runtime not found\n", __func__);
  1009. ret = -EINVAL;
  1010. goto done;
  1011. }
  1012. prtd = substream->runtime->private_data;
  1013. if (prtd->audio_client == NULL) {
  1014. pr_err("%s prtd is null.\n", __func__);
  1015. ret = -EINVAL;
  1016. goto done;
  1017. }
  1018. event_data = (struct msm_adsp_event_data *)ucontrol->value.bytes.data;
  1019. if ((event_data->event_type < ADSP_STREAM_PP_EVENT) ||
  1020. (event_data->event_type >= ADSP_STREAM_EVENT_MAX)) {
  1021. pr_err("%s: invalid event_type=%d",
  1022. __func__, event_data->event_type);
  1023. ret = -EINVAL;
  1024. goto done;
  1025. }
  1026. if (event_data->payload_len > sizeof(ucontrol->value.bytes.data)
  1027. - sizeof(struct msm_adsp_event_data)) {
  1028. pr_err("%s param length=%d exceeds limit",
  1029. __func__, event_data->payload_len);
  1030. ret = -EINVAL;
  1031. goto done;
  1032. }
  1033. ret = q6asm_send_stream_cmd(prtd->audio_client, event_data);
  1034. if (ret < 0)
  1035. pr_err("%s: failed to send stream event cmd, err = %d\n",
  1036. __func__, ret);
  1037. done:
  1038. return ret;
  1039. }
  1040. static int msm_pcm_add_audio_adsp_stream_cmd_control(
  1041. struct snd_soc_pcm_runtime *rtd)
  1042. {
  1043. const char *mixer_ctl_name = DSP_STREAM_CMD;
  1044. const char *deviceNo = "NN";
  1045. char *mixer_str = NULL;
  1046. int ctl_len = 0, ret = 0;
  1047. struct snd_kcontrol_new fe_audio_adsp_stream_cmd_config_control[1] = {
  1048. {
  1049. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1050. .name = "?",
  1051. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1052. .info = msm_adsp_stream_cmd_info,
  1053. .put = msm_pcm_adsp_stream_cmd_put,
  1054. .private_value = 0,
  1055. }
  1056. };
  1057. if (!rtd) {
  1058. pr_err("%s rtd is NULL\n", __func__);
  1059. ret = -EINVAL;
  1060. goto done;
  1061. }
  1062. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1;
  1063. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1064. if (!mixer_str) {
  1065. ret = -ENOMEM;
  1066. goto done;
  1067. }
  1068. snprintf(mixer_str, ctl_len, "%s %d", mixer_ctl_name, rtd->pcm->device);
  1069. fe_audio_adsp_stream_cmd_config_control[0].name = mixer_str;
  1070. fe_audio_adsp_stream_cmd_config_control[0].private_value =
  1071. rtd->dai_link->id;
  1072. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  1073. ret = snd_soc_add_platform_controls(rtd->platform,
  1074. fe_audio_adsp_stream_cmd_config_control,
  1075. ARRAY_SIZE(fe_audio_adsp_stream_cmd_config_control));
  1076. if (ret < 0)
  1077. pr_err("%s: failed add ctl %s. err = %d\n",
  1078. __func__, mixer_str, ret);
  1079. kfree(mixer_str);
  1080. done:
  1081. return ret;
  1082. }
  1083. static int msm_pcm_add_audio_adsp_stream_callback_control(
  1084. struct snd_soc_pcm_runtime *rtd)
  1085. {
  1086. const char *mixer_ctl_name = DSP_STREAM_CALLBACK;
  1087. const char *deviceNo = "NN";
  1088. char *mixer_str = NULL;
  1089. int ctl_len = 0, ret = 0;
  1090. struct snd_kcontrol *kctl;
  1091. struct snd_kcontrol_new fe_audio_adsp_callback_config_control[1] = {
  1092. {
  1093. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1094. .name = "?",
  1095. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1096. .info = msm_adsp_stream_callback_info,
  1097. .get = msm_adsp_stream_callback_get,
  1098. .private_value = 0,
  1099. }
  1100. };
  1101. if (!rtd) {
  1102. pr_err("%s NULL rtd\n", __func__);
  1103. ret = -EINVAL;
  1104. goto done;
  1105. }
  1106. pr_debug("%s: added new pcm FE with name %s, id %d, cpu dai %s, device no %d\n",
  1107. __func__, rtd->dai_link->name, rtd->dai_link->id,
  1108. rtd->dai_link->cpu_dai_name, rtd->pcm->device);
  1109. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1;
  1110. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1111. if (!mixer_str) {
  1112. ret = -ENOMEM;
  1113. goto done;
  1114. }
  1115. snprintf(mixer_str, ctl_len, "%s %d", mixer_ctl_name, rtd->pcm->device);
  1116. fe_audio_adsp_callback_config_control[0].name = mixer_str;
  1117. fe_audio_adsp_callback_config_control[0].private_value =
  1118. rtd->dai_link->id;
  1119. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  1120. ret = snd_soc_add_platform_controls(rtd->platform,
  1121. fe_audio_adsp_callback_config_control,
  1122. ARRAY_SIZE(fe_audio_adsp_callback_config_control));
  1123. if (ret < 0) {
  1124. pr_err("%s: failed to add ctl %s. err = %d\n",
  1125. __func__, mixer_str, ret);
  1126. ret = -EINVAL;
  1127. goto free_mixer_str;
  1128. }
  1129. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  1130. if (!kctl) {
  1131. pr_err("%s: failed to get kctl %s.\n", __func__, mixer_str);
  1132. ret = -EINVAL;
  1133. goto free_mixer_str;
  1134. }
  1135. kctl->private_data = NULL;
  1136. free_mixer_str:
  1137. kfree(mixer_str);
  1138. done:
  1139. return ret;
  1140. }
  1141. static int msm_pcm_set_volume(struct msm_audio *prtd, uint32_t volume)
  1142. {
  1143. int rc = 0;
  1144. if (prtd && prtd->audio_client) {
  1145. pr_debug("%s: channels %d volume 0x%x\n", __func__,
  1146. prtd->channel_mode, volume);
  1147. rc = q6asm_set_volume(prtd->audio_client, volume);
  1148. if (rc < 0) {
  1149. pr_err("%s: Send Volume command failed rc=%d\n",
  1150. __func__, rc);
  1151. }
  1152. }
  1153. return rc;
  1154. }
  1155. static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
  1156. struct snd_ctl_elem_value *ucontrol)
  1157. {
  1158. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  1159. struct snd_pcm_substream *substream =
  1160. vol->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1161. struct msm_audio *prtd;
  1162. pr_debug("%s\n", __func__);
  1163. if (!substream) {
  1164. pr_err("%s substream not found\n", __func__);
  1165. return -ENODEV;
  1166. }
  1167. if (!substream->runtime) {
  1168. pr_err("%s substream runtime not found\n", __func__);
  1169. return 0;
  1170. }
  1171. prtd = substream->runtime->private_data;
  1172. if (prtd)
  1173. ucontrol->value.integer.value[0] = prtd->volume;
  1174. return 0;
  1175. }
  1176. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  1177. struct snd_ctl_elem_value *ucontrol)
  1178. {
  1179. int rc = 0;
  1180. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  1181. struct snd_pcm_substream *substream =
  1182. vol->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1183. struct msm_audio *prtd;
  1184. int volume = ucontrol->value.integer.value[0];
  1185. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  1186. if (!substream) {
  1187. pr_err("%s substream not found\n", __func__);
  1188. return -ENODEV;
  1189. }
  1190. if (!substream->runtime) {
  1191. pr_err("%s substream runtime not found\n", __func__);
  1192. return 0;
  1193. }
  1194. prtd = substream->runtime->private_data;
  1195. if (prtd) {
  1196. rc = msm_pcm_set_volume(prtd, volume);
  1197. prtd->volume = volume;
  1198. }
  1199. return rc;
  1200. }
  1201. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd)
  1202. {
  1203. int ret = 0;
  1204. struct snd_pcm *pcm = rtd->pcm;
  1205. struct snd_pcm_volume *volume_info;
  1206. struct snd_kcontrol *kctl;
  1207. dev_dbg(rtd->dev, "%s, Volume control add\n", __func__);
  1208. ret = snd_pcm_add_volume_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1209. NULL, 1, rtd->dai_link->id,
  1210. &volume_info);
  1211. if (ret < 0) {
  1212. pr_err("%s volume control failed ret %d\n", __func__, ret);
  1213. return ret;
  1214. }
  1215. kctl = volume_info->kctl;
  1216. kctl->put = msm_pcm_volume_ctl_put;
  1217. kctl->get = msm_pcm_volume_ctl_get;
  1218. kctl->tlv.p = msm_pcm_vol_gain;
  1219. return 0;
  1220. }
  1221. static int msm_pcm_compress_ctl_info(struct snd_kcontrol *kcontrol,
  1222. struct snd_ctl_elem_info *uinfo)
  1223. {
  1224. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1225. uinfo->count = 1;
  1226. uinfo->value.integer.min = 0;
  1227. uinfo->value.integer.max = 0x2000;
  1228. return 0;
  1229. }
  1230. static int msm_pcm_compress_ctl_get(struct snd_kcontrol *kcontrol,
  1231. struct snd_ctl_elem_value *ucontrol)
  1232. {
  1233. struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol);
  1234. struct snd_soc_platform *platform = snd_soc_component_to_platform(comp);
  1235. struct msm_plat_data *pdata = dev_get_drvdata(platform->dev);
  1236. struct snd_pcm_substream *substream;
  1237. struct msm_audio *prtd;
  1238. if (!pdata) {
  1239. pr_err("%s pdata is NULL\n", __func__);
  1240. return -ENODEV;
  1241. }
  1242. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1243. if (!substream) {
  1244. pr_err("%s substream not found\n", __func__);
  1245. return -EINVAL;
  1246. }
  1247. if (!substream->runtime) {
  1248. pr_err("%s substream runtime not found\n", __func__);
  1249. return 0;
  1250. }
  1251. prtd = substream->runtime->private_data;
  1252. if (prtd)
  1253. ucontrol->value.integer.value[0] = prtd->compress_enable;
  1254. return 0;
  1255. }
  1256. static int msm_pcm_compress_ctl_put(struct snd_kcontrol *kcontrol,
  1257. struct snd_ctl_elem_value *ucontrol)
  1258. {
  1259. int rc = 0;
  1260. struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol);
  1261. struct snd_soc_platform *platform = snd_soc_component_to_platform(comp);
  1262. struct msm_plat_data *pdata = dev_get_drvdata(platform->dev);
  1263. struct snd_pcm_substream *substream;
  1264. struct msm_audio *prtd;
  1265. int compress = ucontrol->value.integer.value[0];
  1266. if (!pdata) {
  1267. pr_err("%s pdata is NULL\n", __func__);
  1268. return -ENODEV;
  1269. }
  1270. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1271. pr_debug("%s: compress : 0x%x\n", __func__, compress);
  1272. if (!substream) {
  1273. pr_err("%s substream not found\n", __func__);
  1274. return -EINVAL;
  1275. }
  1276. if (!substream->runtime) {
  1277. pr_err("%s substream runtime not found\n", __func__);
  1278. return 0;
  1279. }
  1280. prtd = substream->runtime->private_data;
  1281. if (prtd) {
  1282. pr_debug("%s: setting compress flag to 0x%x\n",
  1283. __func__, compress);
  1284. prtd->compress_enable = compress;
  1285. }
  1286. return rc;
  1287. }
  1288. static int msm_pcm_add_compress_control(struct snd_soc_pcm_runtime *rtd)
  1289. {
  1290. const char *mixer_ctl_name = "Playback ";
  1291. const char *mixer_ctl_end_name = " Compress";
  1292. const char *deviceNo = "NN";
  1293. char *mixer_str = NULL;
  1294. int ctl_len;
  1295. int ret = 0;
  1296. struct msm_plat_data *pdata;
  1297. struct snd_kcontrol_new pcm_compress_control[1] = {
  1298. {
  1299. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1300. .name = "?",
  1301. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1302. .info = msm_pcm_compress_ctl_info,
  1303. .get = msm_pcm_compress_ctl_get,
  1304. .put = msm_pcm_compress_ctl_put,
  1305. .private_value = 0,
  1306. }
  1307. };
  1308. if (!rtd) {
  1309. pr_err("%s: NULL rtd\n", __func__);
  1310. return -EINVAL;
  1311. }
  1312. ctl_len = strlen(mixer_ctl_name) + strlen(deviceNo) +
  1313. strlen(mixer_ctl_end_name) + 1;
  1314. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1315. if (!mixer_str)
  1316. return -ENOMEM;
  1317. snprintf(mixer_str, ctl_len, "%s%d%s", mixer_ctl_name,
  1318. rtd->pcm->device, mixer_ctl_end_name);
  1319. pcm_compress_control[0].name = mixer_str;
  1320. pcm_compress_control[0].private_value = rtd->dai_link->id;
  1321. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  1322. pdata = dev_get_drvdata(rtd->platform->dev);
  1323. if (pdata) {
  1324. if (!pdata->pcm) {
  1325. pdata->pcm = rtd->pcm;
  1326. snd_soc_add_platform_controls(rtd->platform,
  1327. pcm_compress_control,
  1328. ARRAY_SIZE
  1329. (pcm_compress_control));
  1330. pr_debug("%s: add control success plt = %pK\n",
  1331. __func__, rtd->platform);
  1332. }
  1333. } else {
  1334. pr_err("%s: NULL pdata\n", __func__);
  1335. ret = -EINVAL;
  1336. }
  1337. kfree(mixer_str);
  1338. return ret;
  1339. }
  1340. static int msm_pcm_chmap_ctl_put(struct snd_kcontrol *kcontrol,
  1341. struct snd_ctl_elem_value *ucontrol)
  1342. {
  1343. int i;
  1344. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1345. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1346. struct snd_pcm_substream *substream;
  1347. struct msm_audio *prtd;
  1348. pr_debug("%s", __func__);
  1349. substream = snd_pcm_chmap_substream(info, idx);
  1350. if (!substream)
  1351. return -ENODEV;
  1352. if (!substream->runtime)
  1353. return 0;
  1354. prtd = substream->runtime->private_data;
  1355. if (prtd) {
  1356. prtd->set_channel_map = true;
  1357. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  1358. prtd->channel_map[i] =
  1359. (char)(ucontrol->value.integer.value[i]);
  1360. }
  1361. return 0;
  1362. }
  1363. static int msm_pcm_chmap_ctl_get(struct snd_kcontrol *kcontrol,
  1364. struct snd_ctl_elem_value *ucontrol)
  1365. {
  1366. int i;
  1367. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1368. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1369. struct snd_pcm_substream *substream;
  1370. struct msm_audio *prtd;
  1371. pr_debug("%s", __func__);
  1372. substream = snd_pcm_chmap_substream(info, idx);
  1373. if (!substream)
  1374. return -ENODEV;
  1375. memset(ucontrol->value.integer.value, 0,
  1376. sizeof(ucontrol->value.integer.value));
  1377. if (!substream->runtime)
  1378. return 0; /* no channels set */
  1379. prtd = substream->runtime->private_data;
  1380. if (prtd && prtd->set_channel_map == true) {
  1381. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  1382. ucontrol->value.integer.value[i] =
  1383. (int)prtd->channel_map[i];
  1384. } else {
  1385. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  1386. ucontrol->value.integer.value[i] = 0;
  1387. }
  1388. return 0;
  1389. }
  1390. static int msm_pcm_add_chmap_controls(struct snd_soc_pcm_runtime *rtd)
  1391. {
  1392. struct snd_pcm *pcm = rtd->pcm;
  1393. struct snd_pcm_chmap *chmap_info;
  1394. struct snd_kcontrol *kctl;
  1395. char device_num[12];
  1396. int i, ret = 0;
  1397. pr_debug("%s, Channel map cntrl add\n", __func__);
  1398. ret = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1399. snd_pcm_std_chmaps,
  1400. PCM_FORMAT_MAX_NUM_CHANNEL, 0,
  1401. &chmap_info);
  1402. if (ret < 0) {
  1403. pr_err("%s, channel map cntrl add failed\n", __func__);
  1404. return ret;
  1405. }
  1406. kctl = chmap_info->kctl;
  1407. for (i = 0; i < kctl->count; i++)
  1408. kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
  1409. snprintf(device_num, sizeof(device_num), "%d", pcm->device);
  1410. strlcat(kctl->id.name, device_num, sizeof(kctl->id.name));
  1411. pr_debug("%s, Overwriting channel map control name to: %s\n",
  1412. __func__, kctl->id.name);
  1413. kctl->put = msm_pcm_chmap_ctl_put;
  1414. kctl->get = msm_pcm_chmap_ctl_get;
  1415. return 0;
  1416. }
  1417. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1418. struct snd_ctl_elem_value *ucontrol)
  1419. {
  1420. u64 fe_id = kcontrol->private_value;
  1421. int session_type = SESSION_TYPE_RX;
  1422. int be_id = ucontrol->value.integer.value[3];
  1423. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  1424. int ret = 0;
  1425. cfg_data.app_type = ucontrol->value.integer.value[0];
  1426. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  1427. if (ucontrol->value.integer.value[2] != 0)
  1428. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  1429. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  1430. __func__, fe_id, session_type, be_id,
  1431. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1432. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1433. be_id, &cfg_data);
  1434. if (ret < 0)
  1435. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1436. __func__, ret);
  1437. return ret;
  1438. }
  1439. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1440. struct snd_ctl_elem_value *ucontrol)
  1441. {
  1442. u64 fe_id = kcontrol->private_value;
  1443. int session_type = SESSION_TYPE_RX;
  1444. int be_id = 0;
  1445. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1446. int ret = 0;
  1447. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1448. &be_id, &cfg_data);
  1449. if (ret < 0) {
  1450. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1451. __func__, ret);
  1452. goto done;
  1453. }
  1454. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1455. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1456. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1457. ucontrol->value.integer.value[3] = be_id;
  1458. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1459. __func__, fe_id, session_type, be_id,
  1460. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1461. done:
  1462. return ret;
  1463. }
  1464. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1465. struct snd_ctl_elem_value *ucontrol)
  1466. {
  1467. u64 fe_id = kcontrol->private_value;
  1468. int session_type = SESSION_TYPE_TX;
  1469. int be_id = ucontrol->value.integer.value[3];
  1470. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  1471. int ret = 0;
  1472. cfg_data.app_type = ucontrol->value.integer.value[0];
  1473. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  1474. if (ucontrol->value.integer.value[2] != 0)
  1475. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  1476. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  1477. __func__, fe_id, session_type, be_id,
  1478. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1479. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1480. be_id, &cfg_data);
  1481. if (ret < 0)
  1482. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1483. __func__, ret);
  1484. return ret;
  1485. }
  1486. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1487. struct snd_ctl_elem_value *ucontrol)
  1488. {
  1489. u64 fe_id = kcontrol->private_value;
  1490. int session_type = SESSION_TYPE_TX;
  1491. int be_id = 0;
  1492. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1493. int ret = 0;
  1494. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1495. &be_id, &cfg_data);
  1496. if (ret < 0) {
  1497. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1498. __func__, ret);
  1499. goto done;
  1500. }
  1501. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1502. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1503. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1504. ucontrol->value.integer.value[3] = be_id;
  1505. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1506. __func__, fe_id, session_type, be_id,
  1507. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1508. done:
  1509. return ret;
  1510. }
  1511. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1512. {
  1513. struct snd_pcm *pcm = rtd->pcm;
  1514. struct snd_pcm_usr *app_type_info;
  1515. struct snd_kcontrol *kctl;
  1516. const char *playback_mixer_ctl_name = "Audio Stream";
  1517. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  1518. const char *deviceNo = "NN";
  1519. const char *suffix = "App Type Cfg";
  1520. int ctl_len, ret = 0;
  1521. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  1522. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  1523. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1524. pr_debug("%s: Playback app type cntrl add\n", __func__);
  1525. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1526. NULL, 1, ctl_len, rtd->dai_link->id,
  1527. &app_type_info);
  1528. if (ret < 0) {
  1529. pr_err("%s: playback app type cntrl add failed: %d\n",
  1530. __func__, ret);
  1531. return ret;
  1532. }
  1533. kctl = app_type_info->kctl;
  1534. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1535. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  1536. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  1537. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  1538. }
  1539. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  1540. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  1541. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1542. pr_debug("%s: Capture app type cntrl add\n", __func__);
  1543. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  1544. NULL, 1, ctl_len, rtd->dai_link->id,
  1545. &app_type_info);
  1546. if (ret < 0) {
  1547. pr_err("%s: capture app type cntrl add failed: %d\n",
  1548. __func__, ret);
  1549. return ret;
  1550. }
  1551. kctl = app_type_info->kctl;
  1552. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1553. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  1554. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  1555. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  1556. }
  1557. return 0;
  1558. }
  1559. static int msm_pcm_add_controls(struct snd_soc_pcm_runtime *rtd)
  1560. {
  1561. int ret = 0;
  1562. pr_debug("%s\n", __func__);
  1563. ret = msm_pcm_add_chmap_controls(rtd);
  1564. if (ret)
  1565. pr_err("%s: pcm add controls failed:%d\n", __func__, ret);
  1566. ret = msm_pcm_add_app_type_controls(rtd);
  1567. if (ret)
  1568. pr_err("%s: pcm add app type controls failed:%d\n",
  1569. __func__, ret);
  1570. return ret;
  1571. }
  1572. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1573. {
  1574. struct snd_card *card = rtd->card->snd_card;
  1575. int ret = 0;
  1576. if (!card->dev->coherent_dma_mask)
  1577. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1578. ret = msm_pcm_add_controls(rtd);
  1579. if (ret) {
  1580. pr_err("%s, kctl add failed:%d\n", __func__, ret);
  1581. return ret;
  1582. }
  1583. ret = msm_pcm_add_volume_control(rtd);
  1584. if (ret)
  1585. pr_err("%s: Could not add pcm Volume Control %d\n",
  1586. __func__, ret);
  1587. ret = msm_pcm_add_compress_control(rtd);
  1588. if (ret)
  1589. pr_err("%s: Could not add pcm Compress Control %d\n",
  1590. __func__, ret);
  1591. ret = msm_pcm_add_audio_adsp_stream_cmd_control(rtd);
  1592. if (ret)
  1593. pr_err("%s: Could not add pcm ADSP Stream Cmd Control\n",
  1594. __func__);
  1595. ret = msm_pcm_add_audio_adsp_stream_callback_control(rtd);
  1596. if (ret)
  1597. pr_err("%s: Could not add pcm ADSP Stream Callback Control\n",
  1598. __func__);
  1599. return ret;
  1600. }
  1601. static snd_pcm_sframes_t msm_pcm_delay_blk(struct snd_pcm_substream *substream,
  1602. struct snd_soc_dai *dai)
  1603. {
  1604. struct snd_pcm_runtime *runtime = substream->runtime;
  1605. struct msm_audio *prtd = runtime->private_data;
  1606. struct audio_client *ac = prtd->audio_client;
  1607. snd_pcm_sframes_t frames;
  1608. int ret;
  1609. ret = q6asm_get_path_delay(prtd->audio_client);
  1610. if (ret) {
  1611. pr_err("%s: get_path_delay failed, ret=%d\n", __func__, ret);
  1612. return 0;
  1613. }
  1614. /* convert microseconds to frames */
  1615. frames = ac->path_delay / 1000 * runtime->rate / 1000;
  1616. /* also convert the remainder from the initial division */
  1617. frames += ac->path_delay % 1000 * runtime->rate / 1000000;
  1618. /* overcompensate for the loss of precision (empirical) */
  1619. frames += 2;
  1620. return frames;
  1621. }
  1622. static struct snd_soc_platform_driver msm_soc_platform = {
  1623. .ops = &msm_pcm_ops,
  1624. .pcm_new = msm_asoc_pcm_new,
  1625. .delay_blk = msm_pcm_delay_blk,
  1626. };
  1627. static int msm_pcm_probe(struct platform_device *pdev)
  1628. {
  1629. int rc;
  1630. int id;
  1631. struct msm_plat_data *pdata;
  1632. const char *latency_level;
  1633. rc = of_property_read_u32(pdev->dev.of_node,
  1634. "qcom,msm-pcm-dsp-id", &id);
  1635. if (rc) {
  1636. dev_err(&pdev->dev, "%s: qcom,msm-pcm-dsp-id missing in DT node\n",
  1637. __func__);
  1638. return rc;
  1639. }
  1640. pdata = kzalloc(sizeof(struct msm_plat_data), GFP_KERNEL);
  1641. if (!pdata)
  1642. return -ENOMEM;
  1643. if (of_property_read_bool(pdev->dev.of_node,
  1644. "qcom,msm-pcm-low-latency")) {
  1645. pdata->perf_mode = LOW_LATENCY_PCM_MODE;
  1646. rc = of_property_read_string(pdev->dev.of_node,
  1647. "qcom,latency-level", &latency_level);
  1648. if (!rc) {
  1649. if (!strcmp(latency_level, "ultra"))
  1650. pdata->perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  1651. else if (!strcmp(latency_level, "ull-pp"))
  1652. pdata->perf_mode =
  1653. ULL_POST_PROCESSING_PCM_MODE;
  1654. }
  1655. } else {
  1656. pdata->perf_mode = LEGACY_PCM_MODE;
  1657. }
  1658. dev_set_drvdata(&pdev->dev, pdata);
  1659. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  1660. __func__, dev_name(&pdev->dev));
  1661. return snd_soc_register_platform(&pdev->dev,
  1662. &msm_soc_platform);
  1663. }
  1664. static int msm_pcm_remove(struct platform_device *pdev)
  1665. {
  1666. struct msm_plat_data *pdata;
  1667. pdata = dev_get_drvdata(&pdev->dev);
  1668. kfree(pdata);
  1669. snd_soc_unregister_platform(&pdev->dev);
  1670. return 0;
  1671. }
  1672. static const struct of_device_id msm_pcm_dt_match[] = {
  1673. {.compatible = "qcom,msm-pcm-dsp"},
  1674. {}
  1675. };
  1676. MODULE_DEVICE_TABLE(of, msm_pcm_dt_match);
  1677. static struct platform_driver msm_pcm_driver = {
  1678. .driver = {
  1679. .name = "msm-pcm-dsp",
  1680. .owner = THIS_MODULE,
  1681. .of_match_table = msm_pcm_dt_match,
  1682. },
  1683. .probe = msm_pcm_probe,
  1684. .remove = msm_pcm_remove,
  1685. };
  1686. int __init msm_pcm_dsp_init(void)
  1687. {
  1688. init_waitqueue_head(&the_locks.enable_wait);
  1689. init_waitqueue_head(&the_locks.eos_wait);
  1690. init_waitqueue_head(&the_locks.write_wait);
  1691. init_waitqueue_head(&the_locks.read_wait);
  1692. return platform_driver_register(&msm_pcm_driver);
  1693. }
  1694. void msm_pcm_dsp_exit(void)
  1695. {
  1696. platform_driver_unregister(&msm_pcm_driver);
  1697. }
  1698. MODULE_DESCRIPTION("PCM module platform driver");
  1699. MODULE_LICENSE("GPL v2");