msm-pcm-q6-v2.c 54 KB

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