msm-pcm-q6-v2.c 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  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. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  647. msm_adsp_init_mixer_ctl_pp_event_queue(soc_prtd);
  648. /* Vote to update the Rx thread priority to RT Thread for playback */
  649. if ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK) &&
  650. (pdata->perf_mode == LOW_LATENCY_PCM_MODE))
  651. apr_start_rx_rt(prtd->audio_client->apr);
  652. return 0;
  653. }
  654. static int msm_pcm_playback_copy(struct snd_pcm_substream *substream, int a,
  655. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  656. {
  657. int ret = 0;
  658. int xfer = 0;
  659. char *bufptr = NULL;
  660. void *data = NULL;
  661. uint32_t idx = 0;
  662. uint32_t size = 0;
  663. uint32_t retries = 0;
  664. struct snd_pcm_runtime *runtime = substream->runtime;
  665. struct msm_audio *prtd = runtime->private_data;
  666. pr_debug("%s: prtd->out_count = %d\n",
  667. __func__, atomic_read(&prtd->out_count));
  668. while ((fbytes > 0) && (retries < MAX_PB_COPY_RETRIES)) {
  669. if (prtd->reset_event) {
  670. pr_err("%s: In SSR return ENETRESET before wait\n",
  671. __func__);
  672. return -ENETRESET;
  673. }
  674. ret = wait_event_timeout(the_locks.write_wait,
  675. (atomic_read(&prtd->out_count)), 5 * HZ);
  676. if (!ret) {
  677. pr_err("%s: wait_event_timeout failed\n", __func__);
  678. ret = -ETIMEDOUT;
  679. goto fail;
  680. }
  681. ret = 0;
  682. if (prtd->reset_event) {
  683. pr_err("%s: In SSR return ENETRESET after wait\n",
  684. __func__);
  685. return -ENETRESET;
  686. }
  687. if (!atomic_read(&prtd->out_count)) {
  688. pr_err("%s: pcm stopped out_count 0\n", __func__);
  689. return 0;
  690. }
  691. data = q6asm_is_cpu_buf_avail(IN, prtd->audio_client, &size,
  692. &idx);
  693. if (data == NULL) {
  694. retries++;
  695. continue;
  696. } else {
  697. retries = 0;
  698. }
  699. if (fbytes > size)
  700. xfer = size;
  701. else
  702. xfer = fbytes;
  703. bufptr = data;
  704. if (bufptr) {
  705. pr_debug("%s:fbytes =%lu: xfer=%d size=%d\n",
  706. __func__, fbytes, xfer, size);
  707. if (copy_from_user(bufptr, buf, xfer)) {
  708. ret = -EFAULT;
  709. pr_err("%s: copy_from_user failed\n",
  710. __func__);
  711. q6asm_cpu_buf_release(IN, prtd->audio_client);
  712. goto fail;
  713. }
  714. buf += xfer;
  715. fbytes -= xfer;
  716. pr_debug("%s:fbytes = %lu: xfer=%d\n", __func__,
  717. fbytes, xfer);
  718. if (atomic_read(&prtd->start)) {
  719. pr_debug("%s:writing %d bytes of buffer to dsp\n",
  720. __func__, xfer);
  721. ret = q6asm_write(prtd->audio_client, xfer,
  722. 0, 0, NO_TIMESTAMP);
  723. if (ret < 0) {
  724. ret = -EFAULT;
  725. q6asm_cpu_buf_release(IN,
  726. prtd->audio_client);
  727. goto fail;
  728. }
  729. } else
  730. atomic_inc(&prtd->out_needed);
  731. atomic_dec(&prtd->out_count);
  732. }
  733. }
  734. fail:
  735. if (retries >= MAX_PB_COPY_RETRIES)
  736. ret = -ENOMEM;
  737. return ret;
  738. }
  739. static int msm_pcm_playback_close(struct snd_pcm_substream *substream)
  740. {
  741. struct snd_pcm_runtime *runtime = substream->runtime;
  742. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  743. struct msm_audio *prtd = runtime->private_data;
  744. struct msm_plat_data *pdata;
  745. uint32_t timeout;
  746. int dir = 0;
  747. int ret = 0;
  748. pr_debug("%s: cmd_pending 0x%lx\n", __func__, prtd->cmd_pending);
  749. if (prtd->audio_client) {
  750. dir = IN;
  751. /*
  752. * Unvote to downgrade the Rx thread priority from
  753. * RT Thread for Low-Latency use case.
  754. */
  755. pdata = (struct msm_plat_data *)
  756. dev_get_drvdata(soc_prtd->platform->dev);
  757. if (pdata) {
  758. if (pdata->perf_mode == LOW_LATENCY_PCM_MODE)
  759. apr_end_rx_rt(prtd->audio_client->apr);
  760. }
  761. /* determine timeout length */
  762. if (runtime->frame_bits == 0 || runtime->rate == 0) {
  763. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  764. } else {
  765. timeout = (runtime->period_size *
  766. CMD_EOS_TIMEOUT_MULTIPLIER) /
  767. ((runtime->frame_bits / 8) *
  768. runtime->rate);
  769. if (timeout < CMD_EOS_MIN_TIMEOUT_LENGTH)
  770. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  771. }
  772. pr_debug("%s: CMD_EOS timeout is %d\n", __func__, timeout);
  773. ret = wait_event_timeout(the_locks.eos_wait,
  774. !test_bit(CMD_EOS, &prtd->cmd_pending),
  775. timeout);
  776. if (!ret)
  777. pr_err("%s: CMD_EOS failed, cmd_pending 0x%lx\n",
  778. __func__, prtd->cmd_pending);
  779. q6asm_cmd(prtd->audio_client, CMD_CLOSE);
  780. q6asm_audio_client_buf_free_contiguous(dir,
  781. prtd->audio_client);
  782. q6asm_audio_client_free(prtd->audio_client);
  783. }
  784. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  785. SNDRV_PCM_STREAM_PLAYBACK);
  786. msm_adsp_clean_mixer_ctl_pp_event_queue(soc_prtd);
  787. kfree(prtd);
  788. runtime->private_data = NULL;
  789. return 0;
  790. }
  791. static int msm_pcm_capture_copy(struct snd_pcm_substream *substream,
  792. int channel, unsigned long hwoff, void __user *buf,
  793. unsigned long fbytes)
  794. {
  795. int ret = 0;
  796. int xfer;
  797. char *bufptr;
  798. void *data = NULL;
  799. static uint32_t idx;
  800. static uint32_t size;
  801. uint32_t offset = 0;
  802. struct snd_pcm_runtime *runtime = substream->runtime;
  803. struct msm_audio *prtd = substream->runtime->private_data;
  804. pr_debug("%s\n", __func__);
  805. pr_debug("appl_ptr %d\n", (int)runtime->control->appl_ptr);
  806. pr_debug("hw_ptr %d\n", (int)runtime->status->hw_ptr);
  807. pr_debug("avail_min %d\n", (int)runtime->control->avail_min);
  808. if (prtd->reset_event) {
  809. pr_err("%s: In SSR return ENETRESET before wait\n", __func__);
  810. return -ENETRESET;
  811. }
  812. ret = wait_event_timeout(the_locks.read_wait,
  813. (atomic_read(&prtd->in_count)), 5 * HZ);
  814. if (!ret) {
  815. pr_debug("%s: wait_event_timeout failed\n", __func__);
  816. goto fail;
  817. }
  818. if (prtd->reset_event) {
  819. pr_err("%s: In SSR return ENETRESET after wait\n", __func__);
  820. return -ENETRESET;
  821. }
  822. if (!atomic_read(&prtd->in_count)) {
  823. pr_debug("%s: pcm stopped in_count 0\n", __func__);
  824. return 0;
  825. }
  826. pr_debug("Checking if valid buffer is available...%pK\n",
  827. data);
  828. data = q6asm_is_cpu_buf_avail(OUT, prtd->audio_client, &size, &idx);
  829. bufptr = data;
  830. pr_debug("Size = %d\n", size);
  831. pr_debug("fbytes = %lu\n", fbytes);
  832. pr_debug("idx = %d\n", idx);
  833. if (bufptr) {
  834. xfer = fbytes;
  835. if (xfer > size)
  836. xfer = size;
  837. offset = prtd->in_frame_info[idx].offset;
  838. pr_debug("Offset value = %d\n", offset);
  839. if (copy_to_user(buf, bufptr+offset, xfer)) {
  840. pr_err("Failed to copy buf to user\n");
  841. ret = -EFAULT;
  842. q6asm_cpu_buf_release(OUT, prtd->audio_client);
  843. goto fail;
  844. }
  845. fbytes -= xfer;
  846. size -= xfer;
  847. prtd->in_frame_info[idx].offset += xfer;
  848. pr_debug("%s:fbytes = %lu: size=%d: xfer=%d\n",
  849. __func__, fbytes, size, xfer);
  850. pr_debug(" Sending next buffer to dsp\n");
  851. memset(&prtd->in_frame_info[idx], 0,
  852. sizeof(struct msm_audio_in_frame_info));
  853. atomic_dec(&prtd->in_count);
  854. ret = q6asm_read(prtd->audio_client);
  855. if (ret < 0) {
  856. pr_err("q6asm read failed\n");
  857. ret = -EFAULT;
  858. q6asm_cpu_buf_release(OUT, prtd->audio_client);
  859. goto fail;
  860. }
  861. } else
  862. pr_err("No valid buffer\n");
  863. pr_debug("Returning from capture_copy... %d\n", ret);
  864. fail:
  865. return ret;
  866. }
  867. static int msm_pcm_capture_close(struct snd_pcm_substream *substream)
  868. {
  869. struct snd_pcm_runtime *runtime = substream->runtime;
  870. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  871. struct msm_audio *prtd = runtime->private_data;
  872. int dir = OUT;
  873. pr_debug("%s\n", __func__);
  874. if (prtd->audio_client) {
  875. q6asm_cmd(prtd->audio_client, CMD_CLOSE);
  876. q6asm_audio_client_buf_free_contiguous(dir,
  877. prtd->audio_client);
  878. q6asm_audio_client_free(prtd->audio_client);
  879. }
  880. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  881. SNDRV_PCM_STREAM_CAPTURE);
  882. kfree(prtd);
  883. runtime->private_data = NULL;
  884. return 0;
  885. }
  886. static int msm_pcm_copy(struct snd_pcm_substream *substream, int a,
  887. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  888. {
  889. int ret = 0;
  890. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  891. ret = msm_pcm_playback_copy(substream, a, hwoff, buf, fbytes);
  892. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  893. ret = msm_pcm_capture_copy(substream, a, hwoff, buf, fbytes);
  894. return ret;
  895. }
  896. static int msm_pcm_close(struct snd_pcm_substream *substream)
  897. {
  898. int ret = 0;
  899. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  900. ret = msm_pcm_playback_close(substream);
  901. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  902. ret = msm_pcm_capture_close(substream);
  903. return ret;
  904. }
  905. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  906. {
  907. int ret = 0;
  908. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  909. ret = msm_pcm_playback_prepare(substream);
  910. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  911. ret = msm_pcm_capture_prepare(substream);
  912. return ret;
  913. }
  914. static snd_pcm_uframes_t msm_pcm_pointer(struct snd_pcm_substream *substream)
  915. {
  916. struct snd_pcm_runtime *runtime = substream->runtime;
  917. struct msm_audio *prtd = runtime->private_data;
  918. if (prtd->pcm_irq_pos >= prtd->pcm_size)
  919. prtd->pcm_irq_pos = 0;
  920. pr_debug("pcm_irq_pos = %d\n", prtd->pcm_irq_pos);
  921. return bytes_to_frames(runtime, (prtd->pcm_irq_pos));
  922. }
  923. static int msm_pcm_mmap(struct snd_pcm_substream *substream,
  924. struct vm_area_struct *vma)
  925. {
  926. struct snd_pcm_runtime *runtime = substream->runtime;
  927. struct msm_audio *prtd = runtime->private_data;
  928. struct audio_client *ac = prtd->audio_client;
  929. struct audio_port_data *apd = ac->port;
  930. struct audio_buffer *ab;
  931. int dir = -1;
  932. prtd->mmap_flag = 1;
  933. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  934. dir = IN;
  935. else
  936. dir = OUT;
  937. ab = &(apd[dir].buf[0]);
  938. return msm_audio_ion_mmap(ab, vma);
  939. }
  940. static int msm_pcm_hw_params(struct snd_pcm_substream *substream,
  941. struct snd_pcm_hw_params *params)
  942. {
  943. struct snd_pcm_runtime *runtime = substream->runtime;
  944. struct msm_audio *prtd = runtime->private_data;
  945. struct snd_dma_buffer *dma_buf = &substream->dma_buffer;
  946. struct audio_buffer *buf;
  947. int dir, ret;
  948. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  949. dir = IN;
  950. else
  951. dir = OUT;
  952. ret = q6asm_audio_client_buf_alloc_contiguous(dir,
  953. prtd->audio_client,
  954. (params_buffer_bytes(params) / params_periods(params)),
  955. params_periods(params));
  956. if (ret < 0) {
  957. pr_err("Audio Start: Buffer Allocation failed rc = %d\n",
  958. ret);
  959. return -ENOMEM;
  960. }
  961. buf = prtd->audio_client->port[dir].buf;
  962. if (buf == NULL || buf[0].data == NULL)
  963. return -ENOMEM;
  964. pr_debug("%s:buf = %pK\n", __func__, buf);
  965. dma_buf->dev.type = SNDRV_DMA_TYPE_DEV;
  966. dma_buf->dev.dev = substream->pcm->card->dev;
  967. dma_buf->private_data = NULL;
  968. dma_buf->area = buf[0].data;
  969. dma_buf->addr = buf[0].phys;
  970. dma_buf->bytes = params_buffer_bytes(params);
  971. if (!dma_buf->area)
  972. return -ENOMEM;
  973. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  974. return 0;
  975. }
  976. static const struct snd_pcm_ops msm_pcm_ops = {
  977. .open = msm_pcm_open,
  978. .copy_user = msm_pcm_copy,
  979. .hw_params = msm_pcm_hw_params,
  980. .close = msm_pcm_close,
  981. .ioctl = snd_pcm_lib_ioctl,
  982. .prepare = msm_pcm_prepare,
  983. .trigger = msm_pcm_trigger,
  984. .pointer = msm_pcm_pointer,
  985. .mmap = msm_pcm_mmap,
  986. };
  987. static int msm_pcm_adsp_stream_cmd_put(struct snd_kcontrol *kcontrol,
  988. struct snd_ctl_elem_value *ucontrol)
  989. {
  990. struct snd_soc_component *pcm = snd_kcontrol_chip(kcontrol);
  991. struct snd_soc_platform *platform = snd_soc_component_to_platform(pcm);
  992. struct msm_plat_data *pdata = dev_get_drvdata(platform->dev);
  993. struct snd_pcm_substream *substream;
  994. struct msm_audio *prtd;
  995. int ret = 0;
  996. struct msm_adsp_event_data *event_data = NULL;
  997. if (!pdata) {
  998. pr_err("%s pdata is NULL\n", __func__);
  999. ret = -ENODEV;
  1000. goto done;
  1001. }
  1002. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1003. if (!substream) {
  1004. pr_err("%s substream not found\n", __func__);
  1005. ret = -EINVAL;
  1006. goto done;
  1007. }
  1008. if (!substream->runtime) {
  1009. pr_err("%s substream runtime not found\n", __func__);
  1010. ret = -EINVAL;
  1011. goto done;
  1012. }
  1013. prtd = substream->runtime->private_data;
  1014. if (prtd->audio_client == NULL) {
  1015. pr_err("%s prtd is null.\n", __func__);
  1016. ret = -EINVAL;
  1017. goto done;
  1018. }
  1019. event_data = (struct msm_adsp_event_data *)ucontrol->value.bytes.data;
  1020. if ((event_data->event_type < ADSP_STREAM_PP_EVENT) ||
  1021. (event_data->event_type >= ADSP_STREAM_EVENT_MAX)) {
  1022. pr_err("%s: invalid event_type=%d",
  1023. __func__, event_data->event_type);
  1024. ret = -EINVAL;
  1025. goto done;
  1026. }
  1027. if (event_data->payload_len > sizeof(ucontrol->value.bytes.data)
  1028. - sizeof(struct msm_adsp_event_data)) {
  1029. pr_err("%s param length=%d exceeds limit",
  1030. __func__, event_data->payload_len);
  1031. ret = -EINVAL;
  1032. goto done;
  1033. }
  1034. ret = q6asm_send_stream_cmd(prtd->audio_client, event_data);
  1035. if (ret < 0)
  1036. pr_err("%s: failed to send stream event cmd, err = %d\n",
  1037. __func__, ret);
  1038. done:
  1039. return ret;
  1040. }
  1041. static int msm_pcm_add_audio_adsp_stream_cmd_control(
  1042. struct snd_soc_pcm_runtime *rtd)
  1043. {
  1044. const char *mixer_ctl_name = DSP_STREAM_CMD;
  1045. const char *deviceNo = "NN";
  1046. char *mixer_str = NULL;
  1047. int ctl_len = 0, ret = 0;
  1048. struct snd_kcontrol_new fe_audio_adsp_stream_cmd_config_control[1] = {
  1049. {
  1050. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1051. .name = "?",
  1052. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1053. .info = msm_adsp_stream_cmd_info,
  1054. .put = msm_pcm_adsp_stream_cmd_put,
  1055. .private_value = 0,
  1056. }
  1057. };
  1058. if (!rtd) {
  1059. pr_err("%s rtd is NULL\n", __func__);
  1060. ret = -EINVAL;
  1061. goto done;
  1062. }
  1063. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1;
  1064. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1065. if (!mixer_str) {
  1066. ret = -ENOMEM;
  1067. goto done;
  1068. }
  1069. snprintf(mixer_str, ctl_len, "%s %d", mixer_ctl_name, rtd->pcm->device);
  1070. fe_audio_adsp_stream_cmd_config_control[0].name = mixer_str;
  1071. fe_audio_adsp_stream_cmd_config_control[0].private_value =
  1072. rtd->dai_link->id;
  1073. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  1074. ret = snd_soc_add_platform_controls(rtd->platform,
  1075. fe_audio_adsp_stream_cmd_config_control,
  1076. ARRAY_SIZE(fe_audio_adsp_stream_cmd_config_control));
  1077. if (ret < 0)
  1078. pr_err("%s: failed add ctl %s. err = %d\n",
  1079. __func__, mixer_str, ret);
  1080. kfree(mixer_str);
  1081. done:
  1082. return ret;
  1083. }
  1084. static int msm_pcm_add_audio_adsp_stream_callback_control(
  1085. struct snd_soc_pcm_runtime *rtd)
  1086. {
  1087. const char *mixer_ctl_name = DSP_STREAM_CALLBACK;
  1088. const char *deviceNo = "NN";
  1089. char *mixer_str = NULL;
  1090. int ctl_len = 0, ret = 0;
  1091. struct snd_kcontrol *kctl;
  1092. struct snd_kcontrol_new fe_audio_adsp_callback_config_control[1] = {
  1093. {
  1094. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1095. .name = "?",
  1096. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1097. .info = msm_adsp_stream_callback_info,
  1098. .get = msm_adsp_stream_callback_get,
  1099. .private_value = 0,
  1100. }
  1101. };
  1102. if (!rtd) {
  1103. pr_err("%s NULL rtd\n", __func__);
  1104. ret = -EINVAL;
  1105. goto done;
  1106. }
  1107. pr_debug("%s: added new pcm FE with name %s, id %d, cpu dai %s, device no %d\n",
  1108. __func__, rtd->dai_link->name, rtd->dai_link->id,
  1109. rtd->dai_link->cpu_dai_name, rtd->pcm->device);
  1110. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1;
  1111. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1112. if (!mixer_str) {
  1113. ret = -ENOMEM;
  1114. goto done;
  1115. }
  1116. snprintf(mixer_str, ctl_len, "%s %d", mixer_ctl_name, rtd->pcm->device);
  1117. fe_audio_adsp_callback_config_control[0].name = mixer_str;
  1118. fe_audio_adsp_callback_config_control[0].private_value =
  1119. rtd->dai_link->id;
  1120. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  1121. ret = snd_soc_add_platform_controls(rtd->platform,
  1122. fe_audio_adsp_callback_config_control,
  1123. ARRAY_SIZE(fe_audio_adsp_callback_config_control));
  1124. if (ret < 0) {
  1125. pr_err("%s: failed to add ctl %s. err = %d\n",
  1126. __func__, mixer_str, ret);
  1127. ret = -EINVAL;
  1128. goto free_mixer_str;
  1129. }
  1130. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  1131. if (!kctl) {
  1132. pr_err("%s: failed to get kctl %s.\n", __func__, mixer_str);
  1133. ret = -EINVAL;
  1134. goto free_mixer_str;
  1135. }
  1136. kctl->private_data = NULL;
  1137. free_mixer_str:
  1138. kfree(mixer_str);
  1139. done:
  1140. return ret;
  1141. }
  1142. static int msm_pcm_set_volume(struct msm_audio *prtd, uint32_t volume)
  1143. {
  1144. int rc = 0;
  1145. if (prtd && prtd->audio_client) {
  1146. pr_debug("%s: channels %d volume 0x%x\n", __func__,
  1147. prtd->channel_mode, volume);
  1148. rc = q6asm_set_volume(prtd->audio_client, volume);
  1149. if (rc < 0) {
  1150. pr_err("%s: Send Volume command failed rc=%d\n",
  1151. __func__, rc);
  1152. }
  1153. }
  1154. return rc;
  1155. }
  1156. static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
  1157. struct snd_ctl_elem_value *ucontrol)
  1158. {
  1159. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  1160. struct snd_pcm_substream *substream =
  1161. vol->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1162. struct msm_audio *prtd;
  1163. pr_debug("%s\n", __func__);
  1164. if (!substream) {
  1165. pr_err("%s substream not found\n", __func__);
  1166. return -ENODEV;
  1167. }
  1168. if (!substream->runtime) {
  1169. pr_debug("%s substream runtime not found\n", __func__);
  1170. return 0;
  1171. }
  1172. prtd = substream->runtime->private_data;
  1173. if (prtd)
  1174. ucontrol->value.integer.value[0] = prtd->volume;
  1175. return 0;
  1176. }
  1177. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  1178. struct snd_ctl_elem_value *ucontrol)
  1179. {
  1180. int rc = 0;
  1181. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  1182. struct snd_pcm_substream *substream =
  1183. vol->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1184. struct msm_audio *prtd;
  1185. int volume = ucontrol->value.integer.value[0];
  1186. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  1187. if (!substream) {
  1188. pr_err("%s substream not found\n", __func__);
  1189. return -ENODEV;
  1190. }
  1191. if (!substream->runtime) {
  1192. pr_err("%s substream runtime not found\n", __func__);
  1193. return 0;
  1194. }
  1195. prtd = substream->runtime->private_data;
  1196. if (prtd) {
  1197. rc = msm_pcm_set_volume(prtd, volume);
  1198. prtd->volume = volume;
  1199. }
  1200. return rc;
  1201. }
  1202. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd)
  1203. {
  1204. int ret = 0;
  1205. struct snd_pcm *pcm = rtd->pcm;
  1206. struct snd_pcm_volume *volume_info;
  1207. struct snd_kcontrol *kctl;
  1208. dev_dbg(rtd->dev, "%s, Volume control add\n", __func__);
  1209. ret = snd_pcm_add_volume_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1210. NULL, 1, rtd->dai_link->id,
  1211. &volume_info);
  1212. if (ret < 0) {
  1213. pr_err("%s volume control failed ret %d\n", __func__, ret);
  1214. return ret;
  1215. }
  1216. kctl = volume_info->kctl;
  1217. kctl->put = msm_pcm_volume_ctl_put;
  1218. kctl->get = msm_pcm_volume_ctl_get;
  1219. kctl->tlv.p = msm_pcm_vol_gain;
  1220. return 0;
  1221. }
  1222. static int msm_pcm_compress_ctl_info(struct snd_kcontrol *kcontrol,
  1223. struct snd_ctl_elem_info *uinfo)
  1224. {
  1225. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1226. uinfo->count = 1;
  1227. uinfo->value.integer.min = 0;
  1228. uinfo->value.integer.max = 0x2000;
  1229. return 0;
  1230. }
  1231. static int msm_pcm_compress_ctl_get(struct snd_kcontrol *kcontrol,
  1232. struct snd_ctl_elem_value *ucontrol)
  1233. {
  1234. struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol);
  1235. struct snd_soc_platform *platform = snd_soc_component_to_platform(comp);
  1236. struct msm_plat_data *pdata = dev_get_drvdata(platform->dev);
  1237. struct snd_pcm_substream *substream;
  1238. struct msm_audio *prtd;
  1239. if (!pdata) {
  1240. pr_err("%s pdata is NULL\n", __func__);
  1241. return -ENODEV;
  1242. }
  1243. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1244. if (!substream) {
  1245. pr_err("%s substream not found\n", __func__);
  1246. return -EINVAL;
  1247. }
  1248. if (!substream->runtime) {
  1249. pr_debug("%s substream runtime not found\n", __func__);
  1250. return 0;
  1251. }
  1252. prtd = substream->runtime->private_data;
  1253. if (prtd)
  1254. ucontrol->value.integer.value[0] = prtd->compress_enable;
  1255. return 0;
  1256. }
  1257. static int msm_pcm_compress_ctl_put(struct snd_kcontrol *kcontrol,
  1258. struct snd_ctl_elem_value *ucontrol)
  1259. {
  1260. int rc = 0;
  1261. struct snd_soc_component *comp = snd_kcontrol_chip(kcontrol);
  1262. struct snd_soc_platform *platform = snd_soc_component_to_platform(comp);
  1263. struct msm_plat_data *pdata = dev_get_drvdata(platform->dev);
  1264. struct snd_pcm_substream *substream;
  1265. struct msm_audio *prtd;
  1266. int compress = ucontrol->value.integer.value[0];
  1267. if (!pdata) {
  1268. pr_err("%s pdata is NULL\n", __func__);
  1269. return -ENODEV;
  1270. }
  1271. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1272. pr_debug("%s: compress : 0x%x\n", __func__, compress);
  1273. if (!substream) {
  1274. pr_err("%s substream not found\n", __func__);
  1275. return -EINVAL;
  1276. }
  1277. if (!substream->runtime) {
  1278. pr_err("%s substream runtime not found\n", __func__);
  1279. return 0;
  1280. }
  1281. prtd = substream->runtime->private_data;
  1282. if (prtd) {
  1283. pr_debug("%s: setting compress flag to 0x%x\n",
  1284. __func__, compress);
  1285. prtd->compress_enable = compress;
  1286. }
  1287. return rc;
  1288. }
  1289. static int msm_pcm_add_compress_control(struct snd_soc_pcm_runtime *rtd)
  1290. {
  1291. const char *mixer_ctl_name = "Playback ";
  1292. const char *mixer_ctl_end_name = " Compress";
  1293. const char *deviceNo = "NN";
  1294. char *mixer_str = NULL;
  1295. int ctl_len;
  1296. int ret = 0;
  1297. struct msm_plat_data *pdata;
  1298. struct snd_kcontrol_new pcm_compress_control[1] = {
  1299. {
  1300. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1301. .name = "?",
  1302. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1303. .info = msm_pcm_compress_ctl_info,
  1304. .get = msm_pcm_compress_ctl_get,
  1305. .put = msm_pcm_compress_ctl_put,
  1306. .private_value = 0,
  1307. }
  1308. };
  1309. if (!rtd) {
  1310. pr_err("%s: NULL rtd\n", __func__);
  1311. return -EINVAL;
  1312. }
  1313. ctl_len = strlen(mixer_ctl_name) + strlen(deviceNo) +
  1314. strlen(mixer_ctl_end_name) + 1;
  1315. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1316. if (!mixer_str)
  1317. return -ENOMEM;
  1318. snprintf(mixer_str, ctl_len, "%s%d%s", mixer_ctl_name,
  1319. rtd->pcm->device, mixer_ctl_end_name);
  1320. pcm_compress_control[0].name = mixer_str;
  1321. pcm_compress_control[0].private_value = rtd->dai_link->id;
  1322. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  1323. pdata = dev_get_drvdata(rtd->platform->dev);
  1324. if (pdata) {
  1325. if (!pdata->pcm) {
  1326. pdata->pcm = rtd->pcm;
  1327. snd_soc_add_platform_controls(rtd->platform,
  1328. pcm_compress_control,
  1329. ARRAY_SIZE
  1330. (pcm_compress_control));
  1331. pr_debug("%s: add control success plt = %pK\n",
  1332. __func__, rtd->platform);
  1333. }
  1334. } else {
  1335. pr_err("%s: NULL pdata\n", __func__);
  1336. ret = -EINVAL;
  1337. }
  1338. kfree(mixer_str);
  1339. return ret;
  1340. }
  1341. static int msm_pcm_chmap_ctl_put(struct snd_kcontrol *kcontrol,
  1342. struct snd_ctl_elem_value *ucontrol)
  1343. {
  1344. int i;
  1345. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1346. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1347. struct snd_pcm_substream *substream;
  1348. struct msm_audio *prtd;
  1349. pr_debug("%s", __func__);
  1350. substream = snd_pcm_chmap_substream(info, idx);
  1351. if (!substream)
  1352. return -ENODEV;
  1353. if (!substream->runtime)
  1354. return 0;
  1355. prtd = substream->runtime->private_data;
  1356. if (prtd) {
  1357. prtd->set_channel_map = true;
  1358. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  1359. prtd->channel_map[i] =
  1360. (char)(ucontrol->value.integer.value[i]);
  1361. }
  1362. return 0;
  1363. }
  1364. static int msm_pcm_chmap_ctl_get(struct snd_kcontrol *kcontrol,
  1365. struct snd_ctl_elem_value *ucontrol)
  1366. {
  1367. int i;
  1368. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1369. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1370. struct snd_pcm_substream *substream;
  1371. struct msm_audio *prtd;
  1372. pr_debug("%s", __func__);
  1373. substream = snd_pcm_chmap_substream(info, idx);
  1374. if (!substream)
  1375. return -ENODEV;
  1376. memset(ucontrol->value.integer.value, 0,
  1377. sizeof(ucontrol->value.integer.value));
  1378. if (!substream->runtime)
  1379. return 0; /* no channels set */
  1380. prtd = substream->runtime->private_data;
  1381. if (prtd && prtd->set_channel_map == true) {
  1382. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  1383. ucontrol->value.integer.value[i] =
  1384. (int)prtd->channel_map[i];
  1385. } else {
  1386. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL; i++)
  1387. ucontrol->value.integer.value[i] = 0;
  1388. }
  1389. return 0;
  1390. }
  1391. static int msm_pcm_add_chmap_controls(struct snd_soc_pcm_runtime *rtd)
  1392. {
  1393. struct snd_pcm *pcm = rtd->pcm;
  1394. struct snd_pcm_chmap *chmap_info;
  1395. struct snd_kcontrol *kctl;
  1396. char device_num[12];
  1397. int i, ret = 0;
  1398. pr_debug("%s, Channel map cntrl add\n", __func__);
  1399. ret = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1400. snd_pcm_std_chmaps,
  1401. PCM_FORMAT_MAX_NUM_CHANNEL, 0,
  1402. &chmap_info);
  1403. if (ret < 0) {
  1404. pr_err("%s, channel map cntrl add failed\n", __func__);
  1405. return ret;
  1406. }
  1407. kctl = chmap_info->kctl;
  1408. for (i = 0; i < kctl->count; i++)
  1409. kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
  1410. snprintf(device_num, sizeof(device_num), "%d", pcm->device);
  1411. strlcat(kctl->id.name, device_num, sizeof(kctl->id.name));
  1412. pr_debug("%s, Overwriting channel map control name to: %s\n",
  1413. __func__, kctl->id.name);
  1414. kctl->put = msm_pcm_chmap_ctl_put;
  1415. kctl->get = msm_pcm_chmap_ctl_get;
  1416. return 0;
  1417. }
  1418. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1419. struct snd_ctl_elem_value *ucontrol)
  1420. {
  1421. u64 fe_id = kcontrol->private_value;
  1422. int session_type = SESSION_TYPE_RX;
  1423. int be_id = ucontrol->value.integer.value[3];
  1424. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  1425. int ret = 0;
  1426. cfg_data.app_type = ucontrol->value.integer.value[0];
  1427. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  1428. if (ucontrol->value.integer.value[2] != 0)
  1429. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  1430. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  1431. __func__, fe_id, session_type, be_id,
  1432. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1433. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1434. be_id, &cfg_data);
  1435. if (ret < 0)
  1436. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1437. __func__, ret);
  1438. return ret;
  1439. }
  1440. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1441. struct snd_ctl_elem_value *ucontrol)
  1442. {
  1443. u64 fe_id = kcontrol->private_value;
  1444. int session_type = SESSION_TYPE_RX;
  1445. int be_id = 0;
  1446. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1447. int ret = 0;
  1448. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1449. &be_id, &cfg_data);
  1450. if (ret < 0) {
  1451. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1452. __func__, ret);
  1453. goto done;
  1454. }
  1455. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1456. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1457. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1458. ucontrol->value.integer.value[3] = be_id;
  1459. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1460. __func__, fe_id, session_type, be_id,
  1461. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1462. done:
  1463. return ret;
  1464. }
  1465. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1466. struct snd_ctl_elem_value *ucontrol)
  1467. {
  1468. u64 fe_id = kcontrol->private_value;
  1469. int session_type = SESSION_TYPE_TX;
  1470. int be_id = ucontrol->value.integer.value[3];
  1471. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  1472. int ret = 0;
  1473. cfg_data.app_type = ucontrol->value.integer.value[0];
  1474. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  1475. if (ucontrol->value.integer.value[2] != 0)
  1476. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  1477. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  1478. __func__, fe_id, session_type, be_id,
  1479. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1480. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1481. be_id, &cfg_data);
  1482. if (ret < 0)
  1483. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1484. __func__, ret);
  1485. return ret;
  1486. }
  1487. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1488. struct snd_ctl_elem_value *ucontrol)
  1489. {
  1490. u64 fe_id = kcontrol->private_value;
  1491. int session_type = SESSION_TYPE_TX;
  1492. int be_id = 0;
  1493. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1494. int ret = 0;
  1495. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1496. &be_id, &cfg_data);
  1497. if (ret < 0) {
  1498. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1499. __func__, ret);
  1500. goto done;
  1501. }
  1502. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1503. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1504. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1505. ucontrol->value.integer.value[3] = be_id;
  1506. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1507. __func__, fe_id, session_type, be_id,
  1508. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1509. done:
  1510. return ret;
  1511. }
  1512. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1513. {
  1514. struct snd_pcm *pcm = rtd->pcm;
  1515. struct snd_pcm_usr *app_type_info;
  1516. struct snd_kcontrol *kctl;
  1517. const char *playback_mixer_ctl_name = "Audio Stream";
  1518. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  1519. const char *deviceNo = "NN";
  1520. const char *suffix = "App Type Cfg";
  1521. int ctl_len, ret = 0;
  1522. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  1523. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  1524. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1525. pr_debug("%s: Playback app type cntrl add\n", __func__);
  1526. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1527. NULL, 1, ctl_len, rtd->dai_link->id,
  1528. &app_type_info);
  1529. if (ret < 0) {
  1530. pr_err("%s: playback app type cntrl add failed: %d\n",
  1531. __func__, ret);
  1532. return ret;
  1533. }
  1534. kctl = app_type_info->kctl;
  1535. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1536. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  1537. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  1538. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  1539. }
  1540. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  1541. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  1542. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1543. pr_debug("%s: Capture app type cntrl add\n", __func__);
  1544. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  1545. NULL, 1, ctl_len, rtd->dai_link->id,
  1546. &app_type_info);
  1547. if (ret < 0) {
  1548. pr_err("%s: capture app type cntrl add failed: %d\n",
  1549. __func__, ret);
  1550. return ret;
  1551. }
  1552. kctl = app_type_info->kctl;
  1553. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1554. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  1555. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  1556. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  1557. }
  1558. return 0;
  1559. }
  1560. static int msm_pcm_add_controls(struct snd_soc_pcm_runtime *rtd)
  1561. {
  1562. int ret = 0;
  1563. pr_debug("%s\n", __func__);
  1564. ret = msm_pcm_add_chmap_controls(rtd);
  1565. if (ret)
  1566. pr_err("%s: pcm add controls failed:%d\n", __func__, ret);
  1567. ret = msm_pcm_add_app_type_controls(rtd);
  1568. if (ret)
  1569. pr_err("%s: pcm add app type controls failed:%d\n",
  1570. __func__, ret);
  1571. return ret;
  1572. }
  1573. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  1574. {
  1575. struct snd_card *card = rtd->card->snd_card;
  1576. int ret = 0;
  1577. if (!card->dev->coherent_dma_mask)
  1578. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  1579. ret = msm_pcm_add_controls(rtd);
  1580. if (ret) {
  1581. pr_err("%s, kctl add failed:%d\n", __func__, ret);
  1582. return ret;
  1583. }
  1584. ret = msm_pcm_add_volume_control(rtd);
  1585. if (ret)
  1586. pr_err("%s: Could not add pcm Volume Control %d\n",
  1587. __func__, ret);
  1588. ret = msm_pcm_add_compress_control(rtd);
  1589. if (ret)
  1590. pr_err("%s: Could not add pcm Compress Control %d\n",
  1591. __func__, ret);
  1592. ret = msm_pcm_add_audio_adsp_stream_cmd_control(rtd);
  1593. if (ret)
  1594. pr_err("%s: Could not add pcm ADSP Stream Cmd Control\n",
  1595. __func__);
  1596. ret = msm_pcm_add_audio_adsp_stream_callback_control(rtd);
  1597. if (ret)
  1598. pr_err("%s: Could not add pcm ADSP Stream Callback Control\n",
  1599. __func__);
  1600. return ret;
  1601. }
  1602. static snd_pcm_sframes_t msm_pcm_delay_blk(struct snd_pcm_substream *substream,
  1603. struct snd_soc_dai *dai)
  1604. {
  1605. struct snd_pcm_runtime *runtime = substream->runtime;
  1606. struct msm_audio *prtd = runtime->private_data;
  1607. struct audio_client *ac = prtd->audio_client;
  1608. snd_pcm_sframes_t frames;
  1609. int ret;
  1610. ret = q6asm_get_path_delay(prtd->audio_client);
  1611. if (ret) {
  1612. pr_err("%s: get_path_delay failed, ret=%d\n", __func__, ret);
  1613. return 0;
  1614. }
  1615. /* convert microseconds to frames */
  1616. frames = ac->path_delay / 1000 * runtime->rate / 1000;
  1617. /* also convert the remainder from the initial division */
  1618. frames += ac->path_delay % 1000 * runtime->rate / 1000000;
  1619. /* overcompensate for the loss of precision (empirical) */
  1620. frames += 2;
  1621. return frames;
  1622. }
  1623. static struct snd_soc_platform_driver msm_soc_platform = {
  1624. .ops = &msm_pcm_ops,
  1625. .pcm_new = msm_asoc_pcm_new,
  1626. .delay_blk = msm_pcm_delay_blk,
  1627. };
  1628. static int msm_pcm_probe(struct platform_device *pdev)
  1629. {
  1630. int rc;
  1631. int id;
  1632. struct msm_plat_data *pdata;
  1633. const char *latency_level;
  1634. rc = of_property_read_u32(pdev->dev.of_node,
  1635. "qcom,msm-pcm-dsp-id", &id);
  1636. if (rc) {
  1637. dev_err(&pdev->dev, "%s: qcom,msm-pcm-dsp-id missing in DT node\n",
  1638. __func__);
  1639. return rc;
  1640. }
  1641. pdata = kzalloc(sizeof(struct msm_plat_data), GFP_KERNEL);
  1642. if (!pdata)
  1643. return -ENOMEM;
  1644. if (of_property_read_bool(pdev->dev.of_node,
  1645. "qcom,msm-pcm-low-latency")) {
  1646. pdata->perf_mode = LOW_LATENCY_PCM_MODE;
  1647. rc = of_property_read_string(pdev->dev.of_node,
  1648. "qcom,latency-level", &latency_level);
  1649. if (!rc) {
  1650. if (!strcmp(latency_level, "ultra"))
  1651. pdata->perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  1652. else if (!strcmp(latency_level, "ull-pp"))
  1653. pdata->perf_mode =
  1654. ULL_POST_PROCESSING_PCM_MODE;
  1655. }
  1656. } else {
  1657. pdata->perf_mode = LEGACY_PCM_MODE;
  1658. }
  1659. dev_set_drvdata(&pdev->dev, pdata);
  1660. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  1661. __func__, dev_name(&pdev->dev));
  1662. return snd_soc_register_platform(&pdev->dev,
  1663. &msm_soc_platform);
  1664. }
  1665. static int msm_pcm_remove(struct platform_device *pdev)
  1666. {
  1667. struct msm_plat_data *pdata;
  1668. pdata = dev_get_drvdata(&pdev->dev);
  1669. kfree(pdata);
  1670. snd_soc_unregister_platform(&pdev->dev);
  1671. return 0;
  1672. }
  1673. static const struct of_device_id msm_pcm_dt_match[] = {
  1674. {.compatible = "qcom,msm-pcm-dsp"},
  1675. {}
  1676. };
  1677. MODULE_DEVICE_TABLE(of, msm_pcm_dt_match);
  1678. static struct platform_driver msm_pcm_driver = {
  1679. .driver = {
  1680. .name = "msm-pcm-dsp",
  1681. .owner = THIS_MODULE,
  1682. .of_match_table = msm_pcm_dt_match,
  1683. },
  1684. .probe = msm_pcm_probe,
  1685. .remove = msm_pcm_remove,
  1686. };
  1687. int __init msm_pcm_dsp_init(void)
  1688. {
  1689. init_waitqueue_head(&the_locks.enable_wait);
  1690. init_waitqueue_head(&the_locks.eos_wait);
  1691. init_waitqueue_head(&the_locks.write_wait);
  1692. init_waitqueue_head(&the_locks.read_wait);
  1693. return platform_driver_register(&msm_pcm_driver);
  1694. }
  1695. void msm_pcm_dsp_exit(void)
  1696. {
  1697. platform_driver_unregister(&msm_pcm_driver);
  1698. }
  1699. MODULE_DESCRIPTION("PCM module platform driver");
  1700. MODULE_LICENSE("GPL v2");