msm-pcm-q6-v2.c 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/init.h>
  5. #include <linux/err.h>
  6. #include <linux/module.h>
  7. #include <linux/moduleparam.h>
  8. #include <linux/time.h>
  9. #include <linux/wait.h>
  10. #include <linux/platform_device.h>
  11. #include <linux/slab.h>
  12. #include <sound/core.h>
  13. #include <sound/soc.h>
  14. #include <sound/soc-dapm.h>
  15. #include <sound/pcm.h>
  16. #include <sound/initval.h>
  17. #include <sound/control.h>
  18. #include <sound/timer.h>
  19. #include <asm/dma.h>
  20. #include <linux/dma-mapping.h>
  21. #include <linux/msm_audio.h>
  22. #include <linux/of_device.h>
  23. #include <sound/tlv.h>
  24. #include <sound/pcm_params.h>
  25. #include <sound/devdep_params.h>
  26. #include <dsp/msm_audio_ion.h>
  27. #include <dsp/q6audio-v2.h>
  28. #include <dsp/q6core.h>
  29. #include <dsp/q6asm-v2.h>
  30. #include "msm-pcm-q6-v2.h"
  31. #include "msm-pcm-routing-v2.h"
  32. #include "msm-qti-pp-config.h"
  33. #define DRV_NAME "msm-pcm-q6-v2"
  34. #define TIMEOUT_MS 1000
  35. enum stream_state {
  36. IDLE = 0,
  37. STOPPED,
  38. RUNNING,
  39. };
  40. static struct audio_locks the_locks;
  41. #define PCM_MASTER_VOL_MAX_STEPS 0x2000
  42. static const DECLARE_TLV_DB_LINEAR(msm_pcm_vol_gain, 0,
  43. PCM_MASTER_VOL_MAX_STEPS);
  44. struct snd_msm {
  45. struct snd_card *card;
  46. struct snd_pcm *pcm;
  47. };
  48. #define CMD_EOS_MIN_TIMEOUT_LENGTH 50
  49. #define CMD_EOS_TIMEOUT_MULTIPLIER (HZ * 50)
  50. #define MAX_PB_COPY_RETRIES 3
  51. static struct snd_pcm_hardware msm_pcm_hardware_capture = {
  52. .info = (SNDRV_PCM_INFO_MMAP |
  53. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  54. SNDRV_PCM_INFO_MMAP_VALID |
  55. SNDRV_PCM_INFO_INTERLEAVED |
  56. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
  57. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  58. SNDRV_PCM_FMTBIT_S24_LE |
  59. SNDRV_PCM_FMTBIT_S24_3LE |
  60. SNDRV_PCM_FMTBIT_S32_LE),
  61. .rates = SNDRV_PCM_RATE_8000_384000,
  62. .rate_min = 8000,
  63. .rate_max = 384000,
  64. .channels_min = 1,
  65. .channels_max = 4,
  66. .buffer_bytes_max = CAPTURE_MAX_NUM_PERIODS *
  67. CAPTURE_MAX_PERIOD_SIZE,
  68. .period_bytes_min = CAPTURE_MIN_PERIOD_SIZE,
  69. .period_bytes_max = CAPTURE_MAX_PERIOD_SIZE,
  70. .periods_min = CAPTURE_MIN_NUM_PERIODS,
  71. .periods_max = CAPTURE_MAX_NUM_PERIODS,
  72. .fifo_size = 0,
  73. };
  74. static struct snd_pcm_hardware msm_pcm_hardware_playback = {
  75. .info = (SNDRV_PCM_INFO_MMAP |
  76. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  77. SNDRV_PCM_INFO_MMAP_VALID |
  78. SNDRV_PCM_INFO_INTERLEAVED |
  79. SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
  80. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  81. SNDRV_PCM_FMTBIT_S24_LE |
  82. SNDRV_PCM_FMTBIT_S24_3LE |
  83. SNDRV_PCM_FMTBIT_S32_LE),
  84. .rates = SNDRV_PCM_RATE_8000_384000,
  85. .rate_min = 8000,
  86. .rate_max = 384000,
  87. .channels_min = 1,
  88. .channels_max = 8,
  89. .buffer_bytes_max = PLAYBACK_MAX_NUM_PERIODS *
  90. PLAYBACK_MAX_PERIOD_SIZE,
  91. .period_bytes_min = PLAYBACK_MIN_PERIOD_SIZE,
  92. .period_bytes_max = PLAYBACK_MAX_PERIOD_SIZE,
  93. .periods_min = PLAYBACK_MIN_NUM_PERIODS,
  94. .periods_max = PLAYBACK_MAX_NUM_PERIODS,
  95. .fifo_size = 0,
  96. };
  97. /* Conventional and unconventional sample rate supported */
  98. static unsigned int supported_sample_rates[] = {
  99. 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000,
  100. 88200, 96000, 176400, 192000, 352800, 384000
  101. };
  102. static struct snd_pcm_hw_constraint_list constraints_sample_rates = {
  103. .count = ARRAY_SIZE(supported_sample_rates),
  104. .list = supported_sample_rates,
  105. .mask = 0,
  106. };
  107. static void msm_pcm_route_event_handler(enum msm_pcm_routing_event event,
  108. void *priv_data)
  109. {
  110. struct msm_audio *prtd = priv_data;
  111. WARN_ON(!prtd);
  112. pr_debug("%s: event %x\n", __func__, event);
  113. switch (event) {
  114. case MSM_PCM_RT_EVT_BUF_RECFG:
  115. q6asm_cmd(prtd->audio_client, CMD_PAUSE);
  116. q6asm_cmd(prtd->audio_client, CMD_FLUSH);
  117. q6asm_run(prtd->audio_client, 0, 0, 0);
  118. /* fallthrough */
  119. default:
  120. break;
  121. }
  122. }
  123. static void event_handler(uint32_t opcode,
  124. uint32_t token, uint32_t *payload, void *priv)
  125. {
  126. struct msm_audio *prtd = priv;
  127. struct snd_pcm_substream *substream = prtd->substream;
  128. uint32_t *ptrmem = (uint32_t *)payload;
  129. uint32_t idx = 0;
  130. uint32_t size = 0;
  131. uint8_t buf_index;
  132. struct snd_soc_pcm_runtime *rtd;
  133. int ret = 0;
  134. switch (opcode) {
  135. case ASM_DATA_EVENT_WRITE_DONE_V2: {
  136. pr_debug("ASM_DATA_EVENT_WRITE_DONE_V2\n");
  137. pr_debug("Buffer Consumed = 0x%08x\n", *ptrmem);
  138. prtd->pcm_irq_pos += prtd->pcm_count;
  139. if (atomic_read(&prtd->start))
  140. snd_pcm_period_elapsed(substream);
  141. atomic_inc(&prtd->out_count);
  142. wake_up(&the_locks.write_wait);
  143. if (!atomic_read(&prtd->start))
  144. break;
  145. if (!prtd->mmap_flag || prtd->reset_event)
  146. break;
  147. if (q6asm_is_cpu_buf_avail_nolock(IN,
  148. prtd->audio_client,
  149. &size, &idx)) {
  150. pr_debug("%s:writing %d bytes of buffer to dsp 2\n",
  151. __func__, prtd->pcm_count);
  152. q6asm_write_nolock(prtd->audio_client,
  153. prtd->pcm_count, 0, 0, NO_TIMESTAMP);
  154. }
  155. break;
  156. }
  157. case ASM_DATA_EVENT_RENDERED_EOS:
  158. pr_debug("ASM_DATA_EVENT_RENDERED_EOS\n");
  159. clear_bit(CMD_EOS, &prtd->cmd_pending);
  160. wake_up(&the_locks.eos_wait);
  161. break;
  162. case ASM_DATA_EVENT_READ_DONE_V2: {
  163. pr_debug("ASM_DATA_EVENT_READ_DONE_V2\n");
  164. buf_index = q6asm_get_buf_index_from_token(token);
  165. if (buf_index >= CAPTURE_MAX_NUM_PERIODS) {
  166. pr_err("%s: buffer index %u is out of range.\n",
  167. __func__, buf_index);
  168. return;
  169. }
  170. pr_debug("%s: token=0x%08x buf_index=0x%08x\n",
  171. __func__, token, buf_index);
  172. prtd->in_frame_info[buf_index].size = payload[4];
  173. prtd->in_frame_info[buf_index].offset = payload[5];
  174. /* assume data size = 0 during flushing */
  175. if (prtd->in_frame_info[buf_index].size) {
  176. prtd->pcm_irq_pos +=
  177. prtd->in_frame_info[buf_index].size;
  178. pr_debug("pcm_irq_pos=%d\n", prtd->pcm_irq_pos);
  179. if (atomic_read(&prtd->start))
  180. snd_pcm_period_elapsed(substream);
  181. if (atomic_read(&prtd->in_count) <= prtd->periods)
  182. atomic_inc(&prtd->in_count);
  183. wake_up(&the_locks.read_wait);
  184. if (prtd->mmap_flag &&
  185. q6asm_is_cpu_buf_avail_nolock(OUT,
  186. prtd->audio_client,
  187. &size, &idx) &&
  188. (substream->runtime->status->state ==
  189. SNDRV_PCM_STATE_RUNNING))
  190. q6asm_read_nolock(prtd->audio_client);
  191. } else {
  192. pr_debug("%s: reclaim flushed buf in_count %x\n",
  193. __func__, atomic_read(&prtd->in_count));
  194. prtd->pcm_irq_pos += prtd->pcm_count;
  195. if (prtd->mmap_flag) {
  196. if (q6asm_is_cpu_buf_avail_nolock(OUT,
  197. prtd->audio_client,
  198. &size, &idx) &&
  199. (substream->runtime->status->state ==
  200. SNDRV_PCM_STATE_RUNNING))
  201. q6asm_read_nolock(prtd->audio_client);
  202. } else {
  203. atomic_inc(&prtd->in_count);
  204. }
  205. if (atomic_read(&prtd->in_count) == prtd->periods) {
  206. pr_info("%s: reclaimed all bufs\n", __func__);
  207. if (atomic_read(&prtd->start))
  208. snd_pcm_period_elapsed(substream);
  209. wake_up(&the_locks.read_wait);
  210. }
  211. }
  212. break;
  213. }
  214. case ASM_STREAM_PP_EVENT:
  215. case ASM_STREAM_CMD_ENCDEC_EVENTS: {
  216. pr_debug("%s: ASM_STREAM_EVENT (0x%x)\n", __func__, opcode);
  217. if (!substream) {
  218. pr_err("%s: substream is NULL.\n", __func__);
  219. return;
  220. }
  221. rtd = substream->private_data;
  222. if (!rtd) {
  223. pr_err("%s: rtd is NULL\n", __func__);
  224. return;
  225. }
  226. ret = msm_adsp_inform_mixer_ctl(rtd, payload);
  227. if (ret) {
  228. pr_err("%s: failed to inform mixer ctl. err = %d\n",
  229. __func__, ret);
  230. return;
  231. }
  232. break;
  233. }
  234. case APR_BASIC_RSP_RESULT: {
  235. switch (payload[0]) {
  236. case ASM_SESSION_CMD_RUN_V2:
  237. if (substream->stream
  238. != SNDRV_PCM_STREAM_PLAYBACK) {
  239. atomic_set(&prtd->start, 1);
  240. break;
  241. }
  242. if (prtd->mmap_flag) {
  243. pr_debug("%s:writing %d bytes of buffer to dsp\n",
  244. __func__,
  245. prtd->pcm_count);
  246. q6asm_write_nolock(prtd->audio_client,
  247. prtd->pcm_count,
  248. 0, 0, NO_TIMESTAMP);
  249. } else {
  250. while (atomic_read(&prtd->out_needed)) {
  251. pr_debug("%s:writing %d bytes of buffer to dsp\n",
  252. __func__,
  253. prtd->pcm_count);
  254. q6asm_write_nolock(prtd->audio_client,
  255. prtd->pcm_count,
  256. 0, 0, NO_TIMESTAMP);
  257. atomic_dec(&prtd->out_needed);
  258. wake_up(&the_locks.write_wait);
  259. };
  260. }
  261. atomic_set(&prtd->start, 1);
  262. break;
  263. case ASM_STREAM_CMD_REGISTER_PP_EVENTS:
  264. pr_debug("%s: ASM_STREAM_CMD_REGISTER_PP_EVENTS:",
  265. __func__);
  266. break;
  267. default:
  268. pr_debug("%s:Payload = [0x%x]stat[0x%x]\n",
  269. __func__, payload[0], payload[1]);
  270. break;
  271. }
  272. }
  273. break;
  274. case RESET_EVENTS:
  275. pr_debug("%s RESET_EVENTS\n", __func__);
  276. prtd->pcm_irq_pos += prtd->pcm_count;
  277. atomic_inc(&prtd->out_count);
  278. atomic_inc(&prtd->in_count);
  279. prtd->reset_event = true;
  280. if (atomic_read(&prtd->start))
  281. snd_pcm_period_elapsed(substream);
  282. wake_up(&the_locks.eos_wait);
  283. wake_up(&the_locks.write_wait);
  284. wake_up(&the_locks.read_wait);
  285. break;
  286. default:
  287. pr_debug("Not Supported Event opcode[0x%x]\n", opcode);
  288. break;
  289. }
  290. }
  291. static int msm_pcm_playback_prepare(struct snd_pcm_substream *substream)
  292. {
  293. struct snd_pcm_runtime *runtime = substream->runtime;
  294. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  295. struct snd_soc_component *component =
  296. snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  297. struct msm_audio *prtd = runtime->private_data;
  298. struct msm_plat_data *pdata;
  299. struct snd_pcm_hw_params *params;
  300. int ret;
  301. uint32_t fmt_type = FORMAT_LINEAR_PCM;
  302. uint16_t bits_per_sample;
  303. uint16_t sample_word_size;
  304. if (!component) {
  305. pr_err("%s: component is NULL\n", __func__);
  306. return -EINVAL;
  307. }
  308. pdata = (struct msm_plat_data *)
  309. dev_get_drvdata(component->dev);
  310. if (!pdata) {
  311. pr_err("%s: platform data not populated\n", __func__);
  312. return -EINVAL;
  313. }
  314. if (!prtd || !prtd->audio_client) {
  315. pr_err("%s: private data null or audio client freed\n",
  316. __func__);
  317. return -EINVAL;
  318. }
  319. params = &soc_prtd->dpcm[substream->stream].hw_params;
  320. pr_debug("%s\n", __func__);
  321. prtd->pcm_size = snd_pcm_lib_buffer_bytes(substream);
  322. prtd->pcm_count = snd_pcm_lib_period_bytes(substream);
  323. prtd->pcm_irq_pos = 0;
  324. /* rate and channels are sent to audio driver */
  325. prtd->samp_rate = runtime->rate;
  326. prtd->channel_mode = runtime->channels;
  327. if (prtd->enabled)
  328. return 0;
  329. prtd->audio_client->perf_mode = pdata->perf_mode;
  330. pr_debug("%s: perf: %x\n", __func__, pdata->perf_mode);
  331. switch (params_format(params)) {
  332. case SNDRV_PCM_FORMAT_S32_LE:
  333. bits_per_sample = 32;
  334. sample_word_size = 32;
  335. break;
  336. case SNDRV_PCM_FORMAT_S24_LE:
  337. bits_per_sample = 24;
  338. sample_word_size = 32;
  339. break;
  340. case SNDRV_PCM_FORMAT_S24_3LE:
  341. bits_per_sample = 24;
  342. sample_word_size = 24;
  343. break;
  344. case SNDRV_PCM_FORMAT_S16_LE:
  345. default:
  346. bits_per_sample = 16;
  347. sample_word_size = 16;
  348. break;
  349. }
  350. if (prtd->compress_enable) {
  351. fmt_type = FORMAT_GEN_COMPR;
  352. pr_debug("%s: Compressed enabled!\n", __func__);
  353. ret = q6asm_open_write_compressed(prtd->audio_client, fmt_type,
  354. COMPRESSED_PASSTHROUGH_GEN);
  355. if (ret < 0) {
  356. pr_err("%s: q6asm_open_write_compressed failed (%d)\n",
  357. __func__, ret);
  358. q6asm_audio_client_free(prtd->audio_client);
  359. prtd->audio_client = NULL;
  360. return -ENOMEM;
  361. }
  362. } else {
  363. if ((q6core_get_avcs_api_version_per_service(
  364. APRV2_IDS_SERVICE_ID_ADSP_ASM_V) >=
  365. ADSP_ASM_API_VERSION_V2))
  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. ret = q6asm_media_format_block_multi_ch_pcm_v5(
  411. prtd->audio_client, runtime->rate,
  412. runtime->channels, !prtd->set_channel_map,
  413. prtd->channel_map, bits_per_sample,
  414. sample_word_size, ASM_LITTLE_ENDIAN,
  415. DEFAULT_QF);
  416. } else {
  417. ret = q6asm_media_format_block_multi_ch_pcm_v4(
  418. prtd->audio_client, runtime->rate,
  419. runtime->channels, !prtd->set_channel_map,
  420. prtd->channel_map, bits_per_sample,
  421. sample_word_size, ASM_LITTLE_ENDIAN,
  422. DEFAULT_QF);
  423. }
  424. }
  425. if (ret < 0)
  426. pr_info("%s: CMD Format block failed\n", __func__);
  427. atomic_set(&prtd->out_count, runtime->periods);
  428. prtd->enabled = 1;
  429. prtd->cmd_pending = 0;
  430. prtd->cmd_interrupt = 0;
  431. return 0;
  432. }
  433. static int msm_pcm_capture_prepare(struct snd_pcm_substream *substream)
  434. {
  435. struct snd_pcm_runtime *runtime = substream->runtime;
  436. struct msm_audio *prtd = runtime->private_data;
  437. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  438. struct snd_soc_component *component =
  439. snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  440. struct msm_plat_data *pdata;
  441. struct snd_pcm_hw_params *params;
  442. struct msm_pcm_routing_evt event;
  443. int ret = 0;
  444. int i = 0;
  445. uint16_t bits_per_sample = 16;
  446. uint16_t sample_word_size;
  447. if (!component) {
  448. pr_err("%s: component is NULL\n", __func__);
  449. return -EINVAL;
  450. }
  451. pdata = (struct msm_plat_data *)
  452. dev_get_drvdata(component->dev);
  453. if (!pdata) {
  454. pr_err("%s: platform data not populated\n", __func__);
  455. return -EINVAL;
  456. }
  457. if (!prtd || !prtd->audio_client) {
  458. pr_err("%s: private data null or audio client freed\n",
  459. __func__);
  460. return -EINVAL;
  461. }
  462. if (prtd->enabled == IDLE) {
  463. pr_debug("%s:perf_mode=%d periods=%d\n", __func__,
  464. pdata->perf_mode, runtime->periods);
  465. params = &soc_prtd->dpcm[substream->stream].hw_params;
  466. if ((params_format(params) == SNDRV_PCM_FORMAT_S24_LE) ||
  467. (params_format(params) == SNDRV_PCM_FORMAT_S24_3LE))
  468. bits_per_sample = 24;
  469. else if (params_format(params) == SNDRV_PCM_FORMAT_S32_LE)
  470. bits_per_sample = 32;
  471. /* ULL mode is not supported in capture path */
  472. if (pdata->perf_mode == LEGACY_PCM_MODE)
  473. prtd->audio_client->perf_mode = LEGACY_PCM_MODE;
  474. else
  475. prtd->audio_client->perf_mode = LOW_LATENCY_PCM_MODE;
  476. pr_debug("%s Opening %d-ch PCM read stream, perf_mode %d\n",
  477. __func__, params_channels(params),
  478. prtd->audio_client->perf_mode);
  479. if ((q6core_get_avcs_api_version_per_service(
  480. APRV2_IDS_SERVICE_ID_ADSP_ASM_V) >=
  481. ADSP_ASM_API_VERSION_V2))
  482. ret = q6asm_open_read_v5(prtd->audio_client,
  483. FORMAT_LINEAR_PCM,
  484. bits_per_sample, false, ENC_CFG_ID_NONE);
  485. else
  486. ret = q6asm_open_read_v4(prtd->audio_client,
  487. FORMAT_LINEAR_PCM,
  488. bits_per_sample, false, ENC_CFG_ID_NONE);
  489. if (ret < 0) {
  490. pr_err("%s: q6asm_open_read failed\n", __func__);
  491. q6asm_audio_client_free(prtd->audio_client);
  492. prtd->audio_client = NULL;
  493. return -ENOMEM;
  494. }
  495. ret = q6asm_send_cal(prtd->audio_client);
  496. if (ret < 0)
  497. pr_debug("%s : Send cal failed : %d", __func__, ret);
  498. pr_debug("%s: session ID %d\n",
  499. __func__, prtd->audio_client->session);
  500. prtd->session_id = prtd->audio_client->session;
  501. event.event_func = msm_pcm_route_event_handler;
  502. event.priv_data = (void *) prtd;
  503. ret = msm_pcm_routing_reg_phy_stream_v2(
  504. soc_prtd->dai_link->id,
  505. prtd->audio_client->perf_mode,
  506. prtd->session_id, substream->stream,
  507. event);
  508. if (ret) {
  509. pr_err("%s: stream reg failed ret:%d\n", __func__, ret);
  510. return ret;
  511. }
  512. }
  513. prtd->pcm_size = snd_pcm_lib_buffer_bytes(substream);
  514. prtd->pcm_count = snd_pcm_lib_period_bytes(substream);
  515. prtd->pcm_irq_pos = 0;
  516. /* rate and channels are sent to audio driver */
  517. prtd->samp_rate = runtime->rate;
  518. prtd->channel_mode = runtime->channels;
  519. if (prtd->enabled == IDLE || prtd->enabled == STOPPED) {
  520. for (i = 0; i < runtime->periods; i++)
  521. q6asm_read(prtd->audio_client);
  522. prtd->periods = runtime->periods;
  523. }
  524. if (prtd->enabled != IDLE)
  525. return 0;
  526. switch (runtime->format) {
  527. case SNDRV_PCM_FORMAT_S32_LE:
  528. bits_per_sample = 32;
  529. sample_word_size = 32;
  530. break;
  531. case SNDRV_PCM_FORMAT_S24_LE:
  532. bits_per_sample = 24;
  533. sample_word_size = 32;
  534. break;
  535. case SNDRV_PCM_FORMAT_S24_3LE:
  536. bits_per_sample = 24;
  537. sample_word_size = 24;
  538. break;
  539. case SNDRV_PCM_FORMAT_S16_LE:
  540. default:
  541. bits_per_sample = 16;
  542. sample_word_size = 16;
  543. break;
  544. }
  545. pr_debug("%s: Samp_rate = %d Channel = %d bit width = %d, word size = %d\n",
  546. __func__, prtd->samp_rate, prtd->channel_mode,
  547. bits_per_sample, sample_word_size);
  548. if ((q6core_get_avcs_api_version_per_service(
  549. APRV2_IDS_SERVICE_ID_ADSP_ASM_V) >=
  550. ADSP_ASM_API_VERSION_V2))
  551. ret = q6asm_enc_cfg_blk_pcm_format_support_v5(
  552. prtd->audio_client,
  553. prtd->samp_rate,
  554. prtd->channel_mode,
  555. bits_per_sample,
  556. sample_word_size,
  557. ASM_LITTLE_ENDIAN,
  558. DEFAULT_QF);
  559. else
  560. ret = q6asm_enc_cfg_blk_pcm_format_support_v4(
  561. prtd->audio_client,
  562. prtd->samp_rate,
  563. prtd->channel_mode,
  564. bits_per_sample,
  565. sample_word_size,
  566. ASM_LITTLE_ENDIAN,
  567. DEFAULT_QF);
  568. if (ret < 0)
  569. pr_debug("%s: cmd cfg pcm was block failed", __func__);
  570. prtd->enabled = RUNNING;
  571. return ret;
  572. }
  573. static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  574. {
  575. int ret = 0;
  576. struct snd_pcm_runtime *runtime = substream->runtime;
  577. struct msm_audio *prtd = runtime->private_data;
  578. switch (cmd) {
  579. case SNDRV_PCM_TRIGGER_START:
  580. case SNDRV_PCM_TRIGGER_RESUME:
  581. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  582. pr_debug("%s: Trigger start\n", __func__);
  583. ret = q6asm_run_nowait(prtd->audio_client, 0, 0, 0);
  584. break;
  585. case SNDRV_PCM_TRIGGER_STOP:
  586. pr_debug("SNDRV_PCM_TRIGGER_STOP\n");
  587. atomic_set(&prtd->start, 0);
  588. if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK) {
  589. prtd->enabled = STOPPED;
  590. ret = q6asm_cmd_nowait(prtd->audio_client, CMD_PAUSE);
  591. break;
  592. }
  593. /* pending CMD_EOS isn't expected */
  594. WARN_ON_ONCE(test_bit(CMD_EOS, &prtd->cmd_pending));
  595. set_bit(CMD_EOS, &prtd->cmd_pending);
  596. ret = q6asm_cmd_nowait(prtd->audio_client, CMD_EOS);
  597. if (ret)
  598. clear_bit(CMD_EOS, &prtd->cmd_pending);
  599. break;
  600. case SNDRV_PCM_TRIGGER_SUSPEND:
  601. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  602. pr_debug("SNDRV_PCM_TRIGGER_PAUSE\n");
  603. ret = q6asm_cmd_nowait(prtd->audio_client, CMD_PAUSE);
  604. atomic_set(&prtd->start, 0);
  605. break;
  606. default:
  607. ret = -EINVAL;
  608. break;
  609. }
  610. return ret;
  611. }
  612. static int msm_pcm_open(struct snd_pcm_substream *substream)
  613. {
  614. struct snd_pcm_runtime *runtime = substream->runtime;
  615. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  616. struct snd_soc_component *component =
  617. snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  618. struct msm_audio *prtd;
  619. struct msm_plat_data *pdata;
  620. int ret = 0;
  621. if (!component) {
  622. pr_err("%s: component is NULL\n", __func__);
  623. return -EINVAL;
  624. }
  625. pdata = (struct msm_plat_data *)
  626. dev_get_drvdata(component->dev);
  627. if (!pdata) {
  628. pr_err("%s: platform data not populated\n", __func__);
  629. return -EINVAL;
  630. }
  631. prtd = kzalloc(sizeof(struct msm_audio), GFP_KERNEL);
  632. if (prtd == NULL)
  633. return -ENOMEM;
  634. prtd->substream = substream;
  635. prtd->audio_client = q6asm_audio_client_alloc(
  636. (app_cb)event_handler, prtd);
  637. if (!prtd->audio_client) {
  638. pr_info("%s: Could not allocate memory\n", __func__);
  639. kfree(prtd);
  640. prtd = NULL;
  641. return -ENOMEM;
  642. }
  643. prtd->audio_client->dev = component->dev;
  644. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  645. runtime->hw = msm_pcm_hardware_playback;
  646. /* Capture path */
  647. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  648. runtime->hw = msm_pcm_hardware_capture;
  649. else {
  650. pr_err("Invalid Stream type %d\n", substream->stream);
  651. return -EINVAL;
  652. }
  653. ret = snd_pcm_hw_constraint_list(runtime, 0,
  654. SNDRV_PCM_HW_PARAM_RATE,
  655. &constraints_sample_rates);
  656. if (ret < 0)
  657. pr_info("snd_pcm_hw_constraint_list failed\n");
  658. /* Ensure that buffer size is a multiple of period size */
  659. ret = snd_pcm_hw_constraint_integer(runtime,
  660. SNDRV_PCM_HW_PARAM_PERIODS);
  661. if (ret < 0)
  662. pr_info("snd_pcm_hw_constraint_integer failed\n");
  663. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  664. ret = snd_pcm_hw_constraint_minmax(runtime,
  665. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  666. PLAYBACK_MIN_NUM_PERIODS * PLAYBACK_MIN_PERIOD_SIZE,
  667. PLAYBACK_MAX_NUM_PERIODS * PLAYBACK_MAX_PERIOD_SIZE);
  668. if (ret < 0) {
  669. pr_err("constraint for buffer bytes min max ret = %d\n",
  670. ret);
  671. }
  672. }
  673. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  674. ret = snd_pcm_hw_constraint_minmax(runtime,
  675. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  676. CAPTURE_MIN_NUM_PERIODS * CAPTURE_MIN_PERIOD_SIZE,
  677. CAPTURE_MAX_NUM_PERIODS * CAPTURE_MAX_PERIOD_SIZE);
  678. if (ret < 0) {
  679. pr_err("constraint for buffer bytes min max ret = %d\n",
  680. ret);
  681. }
  682. }
  683. ret = snd_pcm_hw_constraint_step(runtime, 0,
  684. SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 32);
  685. if (ret < 0) {
  686. pr_err("constraint for period bytes step ret = %d\n",
  687. ret);
  688. }
  689. ret = snd_pcm_hw_constraint_step(runtime, 0,
  690. SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 32);
  691. if (ret < 0) {
  692. pr_err("constraint for buffer bytes step ret = %d\n",
  693. ret);
  694. }
  695. prtd->enabled = IDLE;
  696. prtd->dsp_cnt = 0;
  697. prtd->set_channel_map = false;
  698. prtd->reset_event = false;
  699. runtime->private_data = prtd;
  700. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  701. msm_adsp_init_mixer_ctl_pp_event_queue(soc_prtd);
  702. /* Vote to update the Rx thread priority to RT Thread for playback */
  703. if ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK) &&
  704. (pdata->perf_mode == LOW_LATENCY_PCM_MODE))
  705. apr_start_rx_rt(prtd->audio_client->apr);
  706. return 0;
  707. }
  708. static int msm_pcm_playback_copy(struct snd_pcm_substream *substream, int a,
  709. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  710. {
  711. int ret = 0;
  712. int xfer = 0;
  713. char *bufptr = NULL;
  714. void *data = NULL;
  715. uint32_t idx = 0;
  716. uint32_t size = 0;
  717. uint32_t retries = 0;
  718. struct snd_pcm_runtime *runtime = substream->runtime;
  719. struct msm_audio *prtd = runtime->private_data;
  720. pr_debug("%s: prtd->out_count = %d\n",
  721. __func__, atomic_read(&prtd->out_count));
  722. while ((fbytes > 0) && (retries < MAX_PB_COPY_RETRIES)) {
  723. if (prtd->reset_event) {
  724. pr_err("%s: In SSR return ENETRESET before wait\n",
  725. __func__);
  726. return -ENETRESET;
  727. }
  728. ret = wait_event_timeout(the_locks.write_wait,
  729. (atomic_read(&prtd->out_count)),
  730. msecs_to_jiffies(TIMEOUT_MS));
  731. if (!ret) {
  732. pr_err("%s: wait_event_timeout failed\n", __func__);
  733. ret = -ETIMEDOUT;
  734. goto fail;
  735. }
  736. ret = 0;
  737. if (prtd->reset_event) {
  738. pr_err("%s: In SSR return ENETRESET after wait\n",
  739. __func__);
  740. return -ENETRESET;
  741. }
  742. if (!atomic_read(&prtd->out_count)) {
  743. pr_err("%s: pcm stopped out_count 0\n", __func__);
  744. return 0;
  745. }
  746. data = q6asm_is_cpu_buf_avail(IN, prtd->audio_client, &size,
  747. &idx);
  748. if (data == NULL) {
  749. retries++;
  750. continue;
  751. } else {
  752. retries = 0;
  753. }
  754. if (fbytes > size)
  755. xfer = size;
  756. else
  757. xfer = fbytes;
  758. bufptr = data;
  759. if (bufptr) {
  760. pr_debug("%s:fbytes =%lu: xfer=%d size=%d\n",
  761. __func__, fbytes, xfer, size);
  762. if (copy_from_user(bufptr, buf, xfer)) {
  763. ret = -EFAULT;
  764. pr_err("%s: copy_from_user failed\n",
  765. __func__);
  766. q6asm_cpu_buf_release(IN, prtd->audio_client);
  767. goto fail;
  768. }
  769. buf += xfer;
  770. fbytes -= xfer;
  771. pr_debug("%s:fbytes = %lu: xfer=%d\n", __func__,
  772. fbytes, xfer);
  773. if (atomic_read(&prtd->start)) {
  774. pr_debug("%s:writing %d bytes of buffer to dsp\n",
  775. __func__, xfer);
  776. ret = q6asm_write(prtd->audio_client, xfer,
  777. 0, 0, NO_TIMESTAMP);
  778. if (ret < 0) {
  779. ret = -EFAULT;
  780. q6asm_cpu_buf_release(IN,
  781. prtd->audio_client);
  782. goto fail;
  783. }
  784. } else
  785. atomic_inc(&prtd->out_needed);
  786. atomic_dec(&prtd->out_count);
  787. }
  788. }
  789. fail:
  790. if (retries >= MAX_PB_COPY_RETRIES)
  791. ret = -ENOMEM;
  792. return ret;
  793. }
  794. static int msm_pcm_playback_close(struct snd_pcm_substream *substream)
  795. {
  796. struct snd_pcm_runtime *runtime = substream->runtime;
  797. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  798. struct msm_audio *prtd = runtime->private_data;
  799. struct snd_soc_component *component =
  800. snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  801. struct msm_plat_data *pdata;
  802. uint32_t timeout;
  803. int dir = 0;
  804. int ret = 0;
  805. pr_debug("%s: cmd_pending 0x%lx\n", __func__, prtd->cmd_pending);
  806. if (prtd->audio_client) {
  807. dir = IN;
  808. if (!component) {
  809. pr_err("%s: component is NULL\n", __func__);
  810. return -EINVAL;
  811. }
  812. /*
  813. * Unvote to downgrade the Rx thread priority from
  814. * RT Thread for Low-Latency use case.
  815. */
  816. pdata = (struct msm_plat_data *)
  817. dev_get_drvdata(component->dev);
  818. if (pdata) {
  819. if (pdata->perf_mode == LOW_LATENCY_PCM_MODE)
  820. apr_end_rx_rt(prtd->audio_client->apr);
  821. }
  822. /* determine timeout length */
  823. if (runtime->frame_bits == 0 || runtime->rate == 0) {
  824. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  825. } else {
  826. timeout = (runtime->period_size *
  827. CMD_EOS_TIMEOUT_MULTIPLIER) /
  828. ((runtime->frame_bits / 8) *
  829. runtime->rate);
  830. if (timeout < CMD_EOS_MIN_TIMEOUT_LENGTH)
  831. timeout = CMD_EOS_MIN_TIMEOUT_LENGTH;
  832. }
  833. pr_debug("%s: CMD_EOS timeout is %d\n", __func__, timeout);
  834. ret = wait_event_timeout(the_locks.eos_wait,
  835. !test_bit(CMD_EOS, &prtd->cmd_pending),
  836. timeout);
  837. if (!ret)
  838. pr_err("%s: CMD_EOS failed, cmd_pending 0x%lx\n",
  839. __func__, prtd->cmd_pending);
  840. q6asm_cmd(prtd->audio_client, CMD_CLOSE);
  841. q6asm_audio_client_buf_free_contiguous(dir,
  842. prtd->audio_client);
  843. q6asm_audio_client_free(prtd->audio_client);
  844. }
  845. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  846. SNDRV_PCM_STREAM_PLAYBACK);
  847. msm_adsp_clean_mixer_ctl_pp_event_queue(soc_prtd);
  848. kfree(prtd);
  849. runtime->private_data = NULL;
  850. return 0;
  851. }
  852. static int msm_pcm_capture_copy(struct snd_pcm_substream *substream,
  853. int channel, unsigned long hwoff, void __user *buf,
  854. unsigned long fbytes)
  855. {
  856. int ret = 0;
  857. int xfer;
  858. char *bufptr;
  859. void *data = NULL;
  860. uint32_t idx = 0;
  861. uint32_t size = 0;
  862. uint32_t offset = 0;
  863. struct snd_pcm_runtime *runtime = substream->runtime;
  864. struct msm_audio *prtd = substream->runtime->private_data;
  865. pr_debug("%s\n", __func__);
  866. pr_debug("appl_ptr %d\n", (int)runtime->control->appl_ptr);
  867. pr_debug("hw_ptr %d\n", (int)runtime->status->hw_ptr);
  868. pr_debug("avail_min %d\n", (int)runtime->control->avail_min);
  869. if (prtd->reset_event) {
  870. pr_err("%s: In SSR return ENETRESET before wait\n", __func__);
  871. return -ENETRESET;
  872. }
  873. ret = wait_event_timeout(the_locks.read_wait,
  874. (atomic_read(&prtd->in_count)),
  875. msecs_to_jiffies(TIMEOUT_MS));
  876. if (!ret) {
  877. pr_debug("%s: wait_event_timeout failed\n", __func__);
  878. goto fail;
  879. }
  880. if (prtd->reset_event) {
  881. pr_err("%s: In SSR return ENETRESET after wait\n", __func__);
  882. return -ENETRESET;
  883. }
  884. if (!atomic_read(&prtd->in_count)) {
  885. pr_debug("%s: pcm stopped in_count 0\n", __func__);
  886. return 0;
  887. }
  888. pr_debug("Checking if valid buffer is available...%pK\n",
  889. data);
  890. data = q6asm_is_cpu_buf_avail(OUT, prtd->audio_client, &size, &idx);
  891. bufptr = data;
  892. pr_debug("Size = %d\n", size);
  893. pr_debug("fbytes = %lu\n", fbytes);
  894. pr_debug("idx = %d\n", idx);
  895. if (bufptr) {
  896. xfer = fbytes;
  897. if (xfer > size)
  898. xfer = size;
  899. offset = prtd->in_frame_info[idx].offset;
  900. pr_debug("Offset value = %d\n", offset);
  901. if (copy_to_user(buf, bufptr+offset, xfer)) {
  902. pr_err("Failed to copy buf to user\n");
  903. ret = -EFAULT;
  904. q6asm_cpu_buf_release(OUT, prtd->audio_client);
  905. goto fail;
  906. }
  907. fbytes -= xfer;
  908. size -= xfer;
  909. prtd->in_frame_info[idx].offset += xfer;
  910. pr_debug("%s:fbytes = %lu: size=%d: xfer=%d\n",
  911. __func__, fbytes, size, xfer);
  912. pr_debug(" Sending next buffer to dsp\n");
  913. memset(&prtd->in_frame_info[idx], 0,
  914. sizeof(struct msm_audio_in_frame_info));
  915. atomic_dec(&prtd->in_count);
  916. ret = q6asm_read(prtd->audio_client);
  917. if (ret < 0) {
  918. pr_err("q6asm read failed\n");
  919. ret = -EFAULT;
  920. q6asm_cpu_buf_release(OUT, prtd->audio_client);
  921. goto fail;
  922. }
  923. } else
  924. pr_err("No valid buffer\n");
  925. pr_debug("Returning from capture_copy... %d\n", ret);
  926. fail:
  927. return ret;
  928. }
  929. static int msm_pcm_capture_close(struct snd_pcm_substream *substream)
  930. {
  931. struct snd_pcm_runtime *runtime = substream->runtime;
  932. struct snd_soc_pcm_runtime *soc_prtd = substream->private_data;
  933. struct msm_audio *prtd = runtime->private_data;
  934. int dir = OUT;
  935. pr_debug("%s\n", __func__);
  936. if (prtd->audio_client) {
  937. q6asm_cmd(prtd->audio_client, CMD_CLOSE);
  938. q6asm_audio_client_buf_free_contiguous(dir,
  939. prtd->audio_client);
  940. q6asm_audio_client_free(prtd->audio_client);
  941. }
  942. msm_pcm_routing_dereg_phy_stream(soc_prtd->dai_link->id,
  943. SNDRV_PCM_STREAM_CAPTURE);
  944. kfree(prtd);
  945. runtime->private_data = NULL;
  946. return 0;
  947. }
  948. static int msm_pcm_copy(struct snd_pcm_substream *substream, int a,
  949. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  950. {
  951. int ret = 0;
  952. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  953. ret = msm_pcm_playback_copy(substream, a, hwoff, buf, fbytes);
  954. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  955. ret = msm_pcm_capture_copy(substream, a, hwoff, buf, fbytes);
  956. return ret;
  957. }
  958. static int msm_pcm_close(struct snd_pcm_substream *substream)
  959. {
  960. int ret = 0;
  961. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  962. ret = msm_pcm_playback_close(substream);
  963. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  964. ret = msm_pcm_capture_close(substream);
  965. return ret;
  966. }
  967. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  968. {
  969. int ret = 0;
  970. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  971. ret = msm_pcm_playback_prepare(substream);
  972. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  973. ret = msm_pcm_capture_prepare(substream);
  974. return ret;
  975. }
  976. static snd_pcm_uframes_t msm_pcm_pointer(struct snd_pcm_substream *substream)
  977. {
  978. struct snd_pcm_runtime *runtime = substream->runtime;
  979. struct msm_audio *prtd = runtime->private_data;
  980. if (prtd->pcm_irq_pos >= prtd->pcm_size)
  981. prtd->pcm_irq_pos = 0;
  982. pr_debug("pcm_irq_pos = %d\n", prtd->pcm_irq_pos);
  983. return bytes_to_frames(runtime, (prtd->pcm_irq_pos));
  984. }
  985. static int msm_pcm_mmap(struct snd_pcm_substream *substream,
  986. struct vm_area_struct *vma)
  987. {
  988. struct snd_pcm_runtime *runtime = substream->runtime;
  989. struct msm_audio *prtd = runtime->private_data;
  990. struct audio_client *ac = prtd->audio_client;
  991. struct audio_port_data *apd = ac->port;
  992. struct audio_buffer *ab;
  993. int dir = -1;
  994. prtd->mmap_flag = 1;
  995. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  996. dir = IN;
  997. else
  998. dir = OUT;
  999. ab = &(apd[dir].buf[0]);
  1000. return msm_audio_ion_mmap(ab, vma);
  1001. }
  1002. static int msm_pcm_hw_params(struct snd_pcm_substream *substream,
  1003. struct snd_pcm_hw_params *params)
  1004. {
  1005. struct snd_pcm_runtime *runtime = substream->runtime;
  1006. struct msm_audio *prtd = runtime->private_data;
  1007. struct snd_dma_buffer *dma_buf = &substream->dma_buffer;
  1008. struct audio_buffer *buf;
  1009. int dir, ret;
  1010. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  1011. dir = IN;
  1012. else
  1013. dir = OUT;
  1014. ret = q6asm_audio_client_buf_alloc_contiguous(dir,
  1015. prtd->audio_client,
  1016. (params_buffer_bytes(params) / params_periods(params)),
  1017. params_periods(params));
  1018. if (ret < 0) {
  1019. pr_err("Audio Start: Buffer Allocation failed rc = %d\n",
  1020. ret);
  1021. return -ENOMEM;
  1022. }
  1023. buf = prtd->audio_client->port[dir].buf;
  1024. if (buf == NULL || buf[0].data == NULL)
  1025. return -ENOMEM;
  1026. pr_debug("%s:buf = %pK\n", __func__, buf);
  1027. dma_buf->dev.type = SNDRV_DMA_TYPE_DEV;
  1028. dma_buf->dev.dev = substream->pcm->card->dev;
  1029. dma_buf->private_data = NULL;
  1030. dma_buf->area = buf[0].data;
  1031. dma_buf->addr = buf[0].phys;
  1032. dma_buf->bytes = params_buffer_bytes(params);
  1033. if (!dma_buf->area)
  1034. return -ENOMEM;
  1035. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  1036. return 0;
  1037. }
  1038. static int msm_pcm_ioctl(struct snd_pcm_substream *substream,
  1039. unsigned int cmd, void __user *arg)
  1040. {
  1041. struct msm_audio *prtd = NULL;
  1042. struct snd_soc_pcm_runtime *rtd = NULL;
  1043. uint64_t ses_time = 0, abs_time = 0;
  1044. int64_t av_offset = 0;
  1045. int32_t clock_id = -EINVAL;
  1046. int rc = 0;
  1047. struct snd_pcm_prsnt_position userarg;
  1048. if (!substream || !substream->private_data) {
  1049. pr_err("%s: Invalid %s\n", __func__,
  1050. (!substream) ? "substream" : "private_data");
  1051. return -EINVAL;
  1052. }
  1053. if (!substream->runtime) {
  1054. pr_err("%s substream runtime not found\n", __func__);
  1055. return -EINVAL;
  1056. }
  1057. prtd = substream->runtime->private_data;
  1058. if (!prtd) {
  1059. pr_err("%s prtd is null.\n", __func__);
  1060. return -EINVAL;
  1061. }
  1062. rtd = substream->private_data;
  1063. switch (cmd) {
  1064. case SNDRV_PCM_IOCTL_DSP_POSITION:
  1065. dev_dbg(rtd->dev, "%s: SNDRV_PCM_DSP_POSITION", __func__);
  1066. if (!arg) {
  1067. dev_err(rtd->dev, "%s: Invalid params DSP_POSITION\n",
  1068. __func__);
  1069. rc = -EINVAL;
  1070. goto done;
  1071. }
  1072. memset(&userarg, 0, sizeof(userarg));
  1073. if (copy_from_user(&userarg, arg, sizeof(userarg))) {
  1074. dev_err(rtd->dev, "%s: err copyuser DSP_POSITION\n",
  1075. __func__);
  1076. rc = -EFAULT;
  1077. goto done;
  1078. }
  1079. clock_id = userarg.clock_id;
  1080. rc = q6asm_get_session_time_v2(prtd->audio_client, &ses_time,
  1081. &abs_time);
  1082. if (rc) {
  1083. pr_err("%s: q6asm_get_session_time_v2 failed, rc=%d\n",
  1084. __func__, rc);
  1085. goto done;
  1086. }
  1087. userarg.frames = div64_u64((ses_time * prtd->samp_rate),
  1088. 1000000);
  1089. rc = avcs_core_query_timer_offset(&av_offset, clock_id);
  1090. if (rc) {
  1091. pr_err("%s: avcs offset query failed, rc=%d\n",
  1092. __func__, rc);
  1093. goto done;
  1094. }
  1095. userarg.timestamp = abs_time + av_offset;
  1096. if (copy_to_user(arg, &userarg, sizeof(userarg))) {
  1097. dev_err(rtd->dev, "%s: err copy to user DSP_POSITION\n",
  1098. __func__);
  1099. rc = -EFAULT;
  1100. goto done;
  1101. }
  1102. pr_debug("%s, vals f %lld, t %lld, avoff %lld, abst %lld, sess_time %llu sr %d\n",
  1103. __func__, userarg.frames, userarg.timestamp,
  1104. av_offset, abs_time, ses_time, prtd->samp_rate);
  1105. break;
  1106. default:
  1107. rc = snd_pcm_lib_ioctl(substream, cmd, arg);
  1108. break;
  1109. }
  1110. done:
  1111. return rc;
  1112. }
  1113. #ifdef CONFIG_COMPAT
  1114. static int msm_pcm_compat_ioctl(struct snd_pcm_substream *substream,
  1115. unsigned int cmd, void __user *arg)
  1116. {
  1117. return msm_pcm_ioctl(substream, cmd, arg);
  1118. }
  1119. #else
  1120. #define msm_pcm_compat_ioctl NULL
  1121. #endif
  1122. static const struct snd_pcm_ops msm_pcm_ops = {
  1123. .open = msm_pcm_open,
  1124. .copy_user = msm_pcm_copy,
  1125. .hw_params = msm_pcm_hw_params,
  1126. .close = msm_pcm_close,
  1127. .ioctl = msm_pcm_ioctl,
  1128. .compat_ioctl = msm_pcm_compat_ioctl,
  1129. .prepare = msm_pcm_prepare,
  1130. .trigger = msm_pcm_trigger,
  1131. .pointer = msm_pcm_pointer,
  1132. .mmap = msm_pcm_mmap,
  1133. };
  1134. static int msm_pcm_adsp_stream_cmd_put(struct snd_kcontrol *kcontrol,
  1135. struct snd_ctl_elem_value *ucontrol)
  1136. {
  1137. struct snd_soc_component *component =
  1138. snd_soc_kcontrol_component(kcontrol);
  1139. struct msm_plat_data *pdata = NULL;
  1140. struct snd_pcm_substream *substream;
  1141. struct msm_audio *prtd;
  1142. int ret = 0;
  1143. struct msm_adsp_event_data *event_data = NULL;
  1144. if (!component) {
  1145. pr_err("%s: component is NULL\n", __func__);
  1146. return -EINVAL;
  1147. }
  1148. pdata = dev_get_drvdata(component->dev);
  1149. if (!pdata) {
  1150. pr_err("%s pdata is NULL\n", __func__);
  1151. ret = -ENODEV;
  1152. goto done;
  1153. }
  1154. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1155. if (!substream) {
  1156. pr_err("%s substream not found\n", __func__);
  1157. ret = -EINVAL;
  1158. goto done;
  1159. }
  1160. if (!substream->runtime) {
  1161. pr_err("%s substream runtime not found\n", __func__);
  1162. ret = -EINVAL;
  1163. goto done;
  1164. }
  1165. prtd = substream->runtime->private_data;
  1166. if (prtd == NULL) {
  1167. pr_err("%s prtd is null.\n", __func__);
  1168. ret = -EINVAL;
  1169. goto done;
  1170. }
  1171. if (prtd->audio_client == NULL) {
  1172. pr_err("%s prtd is null.\n", __func__);
  1173. ret = -EINVAL;
  1174. goto done;
  1175. }
  1176. event_data = (struct msm_adsp_event_data *)ucontrol->value.bytes.data;
  1177. if ((event_data->event_type < ADSP_STREAM_PP_EVENT) ||
  1178. (event_data->event_type >= ADSP_STREAM_EVENT_MAX)) {
  1179. pr_err("%s: invalid event_type=%d",
  1180. __func__, event_data->event_type);
  1181. ret = -EINVAL;
  1182. goto done;
  1183. }
  1184. if (event_data->payload_len > sizeof(ucontrol->value.bytes.data)
  1185. - sizeof(struct msm_adsp_event_data)) {
  1186. pr_err("%s param length=%d exceeds limit",
  1187. __func__, event_data->payload_len);
  1188. ret = -EINVAL;
  1189. goto done;
  1190. }
  1191. ret = q6asm_send_stream_cmd(prtd->audio_client, event_data);
  1192. if (ret < 0)
  1193. pr_err("%s: failed to send stream event cmd, err = %d\n",
  1194. __func__, ret);
  1195. done:
  1196. return ret;
  1197. }
  1198. static int msm_pcm_add_audio_adsp_stream_cmd_control(
  1199. struct snd_soc_pcm_runtime *rtd)
  1200. {
  1201. struct snd_soc_component *component = NULL;
  1202. const char *mixer_ctl_name = DSP_STREAM_CMD;
  1203. const char *deviceNo = "NN";
  1204. char *mixer_str = NULL;
  1205. int ctl_len = 0, ret = 0;
  1206. struct snd_kcontrol_new fe_audio_adsp_stream_cmd_config_control[1] = {
  1207. {
  1208. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1209. .name = "?",
  1210. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1211. .info = msm_adsp_stream_cmd_info,
  1212. .put = msm_pcm_adsp_stream_cmd_put,
  1213. .private_value = 0,
  1214. }
  1215. };
  1216. if (!rtd) {
  1217. pr_err("%s rtd is NULL\n", __func__);
  1218. ret = -EINVAL;
  1219. goto done;
  1220. }
  1221. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1222. if (!component) {
  1223. pr_err("%s: component is NULL\n", __func__);
  1224. return -EINVAL;
  1225. }
  1226. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1;
  1227. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1228. if (!mixer_str) {
  1229. ret = -ENOMEM;
  1230. goto done;
  1231. }
  1232. snprintf(mixer_str, ctl_len, "%s %d", mixer_ctl_name, rtd->pcm->device);
  1233. fe_audio_adsp_stream_cmd_config_control[0].name = mixer_str;
  1234. fe_audio_adsp_stream_cmd_config_control[0].private_value =
  1235. rtd->dai_link->id;
  1236. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  1237. ret = snd_soc_add_component_controls(component,
  1238. fe_audio_adsp_stream_cmd_config_control,
  1239. ARRAY_SIZE(fe_audio_adsp_stream_cmd_config_control));
  1240. if (ret < 0)
  1241. pr_err("%s: failed add ctl %s. err = %d\n",
  1242. __func__, mixer_str, ret);
  1243. kfree(mixer_str);
  1244. done:
  1245. return ret;
  1246. }
  1247. static int msm_pcm_add_audio_adsp_stream_callback_control(
  1248. struct snd_soc_pcm_runtime *rtd)
  1249. {
  1250. struct snd_soc_component *component = NULL;
  1251. const char *mixer_ctl_name = DSP_STREAM_CALLBACK;
  1252. const char *deviceNo = "NN";
  1253. char *mixer_str = NULL;
  1254. int ctl_len = 0, ret = 0;
  1255. struct snd_kcontrol *kctl;
  1256. struct snd_kcontrol_new fe_audio_adsp_callback_config_control[1] = {
  1257. {
  1258. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1259. .name = "?",
  1260. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1261. .info = msm_adsp_stream_callback_info,
  1262. .get = msm_adsp_stream_callback_get,
  1263. .private_value = 0,
  1264. }
  1265. };
  1266. if (!rtd) {
  1267. pr_err("%s NULL rtd\n", __func__);
  1268. ret = -EINVAL;
  1269. goto done;
  1270. }
  1271. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1272. if (!component) {
  1273. pr_err("%s: component is NULL\n", __func__);
  1274. return -EINVAL;
  1275. }
  1276. pr_debug("%s: added new pcm FE with name %s, id %d, cpu dai %s, device no %d\n",
  1277. __func__, rtd->dai_link->name, rtd->dai_link->id,
  1278. rtd->dai_link->cpu_dai_name, rtd->pcm->device);
  1279. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1;
  1280. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1281. if (!mixer_str) {
  1282. ret = -ENOMEM;
  1283. goto done;
  1284. }
  1285. snprintf(mixer_str, ctl_len, "%s %d", mixer_ctl_name, rtd->pcm->device);
  1286. fe_audio_adsp_callback_config_control[0].name = mixer_str;
  1287. fe_audio_adsp_callback_config_control[0].private_value =
  1288. rtd->dai_link->id;
  1289. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  1290. ret = snd_soc_add_component_controls(component,
  1291. fe_audio_adsp_callback_config_control,
  1292. ARRAY_SIZE(fe_audio_adsp_callback_config_control));
  1293. if (ret < 0) {
  1294. pr_err("%s: failed to add ctl %s. err = %d\n",
  1295. __func__, mixer_str, ret);
  1296. ret = -EINVAL;
  1297. goto free_mixer_str;
  1298. }
  1299. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  1300. if (!kctl) {
  1301. pr_err("%s: failed to get kctl %s.\n", __func__, mixer_str);
  1302. ret = -EINVAL;
  1303. goto free_mixer_str;
  1304. }
  1305. kctl->private_data = NULL;
  1306. free_mixer_str:
  1307. kfree(mixer_str);
  1308. done:
  1309. return ret;
  1310. }
  1311. static int msm_pcm_set_volume(struct msm_audio *prtd, uint32_t volume)
  1312. {
  1313. int rc = 0;
  1314. if (prtd && prtd->audio_client) {
  1315. pr_debug("%s: channels %d volume 0x%x\n", __func__,
  1316. prtd->channel_mode, volume);
  1317. rc = q6asm_set_volume(prtd->audio_client, volume);
  1318. if (rc < 0) {
  1319. pr_err("%s: Send Volume command failed rc=%d\n",
  1320. __func__, rc);
  1321. }
  1322. }
  1323. return rc;
  1324. }
  1325. static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
  1326. struct snd_ctl_elem_value *ucontrol)
  1327. {
  1328. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  1329. struct snd_pcm_substream *substream =
  1330. vol->pcm->streams[vol->stream].substream;
  1331. struct msm_audio *prtd;
  1332. pr_debug("%s\n", __func__);
  1333. if (!substream) {
  1334. pr_err("%s substream not found\n", __func__);
  1335. return -ENODEV;
  1336. }
  1337. if (!substream->runtime) {
  1338. pr_debug("%s substream runtime not found\n", __func__);
  1339. return 0;
  1340. }
  1341. prtd = substream->runtime->private_data;
  1342. if (prtd)
  1343. ucontrol->value.integer.value[0] = prtd->volume;
  1344. return 0;
  1345. }
  1346. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  1347. struct snd_ctl_elem_value *ucontrol)
  1348. {
  1349. int rc = 0;
  1350. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  1351. struct snd_pcm_substream *substream =
  1352. vol->pcm->streams[vol->stream].substream;
  1353. struct msm_audio *prtd;
  1354. int volume = ucontrol->value.integer.value[0];
  1355. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  1356. if (!substream) {
  1357. pr_err("%s substream not found\n", __func__);
  1358. return -ENODEV;
  1359. }
  1360. if (!substream->runtime) {
  1361. pr_err("%s substream runtime not found\n", __func__);
  1362. return 0;
  1363. }
  1364. prtd = substream->runtime->private_data;
  1365. if (prtd) {
  1366. rc = msm_pcm_set_volume(prtd, volume);
  1367. prtd->volume = volume;
  1368. }
  1369. return rc;
  1370. }
  1371. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd,
  1372. int stream)
  1373. {
  1374. int ret = 0;
  1375. struct snd_pcm *pcm = rtd->pcm;
  1376. struct snd_pcm_volume *volume_info;
  1377. struct snd_kcontrol *kctl;
  1378. dev_dbg(rtd->dev, "%s, volume control add\n", __func__);
  1379. ret = snd_pcm_add_volume_ctls(pcm, stream,
  1380. NULL, 1, rtd->dai_link->id,
  1381. &volume_info);
  1382. if (ret < 0) {
  1383. pr_err("%s volume control failed ret %d\n", __func__, ret);
  1384. return ret;
  1385. }
  1386. kctl = volume_info->kctl;
  1387. kctl->put = msm_pcm_volume_ctl_put;
  1388. kctl->get = msm_pcm_volume_ctl_get;
  1389. kctl->tlv.p = msm_pcm_vol_gain;
  1390. return 0;
  1391. }
  1392. static int msm_pcm_compress_ctl_info(struct snd_kcontrol *kcontrol,
  1393. struct snd_ctl_elem_info *uinfo)
  1394. {
  1395. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1396. uinfo->count = 1;
  1397. uinfo->value.integer.min = 0;
  1398. uinfo->value.integer.max = 0x2000;
  1399. return 0;
  1400. }
  1401. static int msm_pcm_compress_ctl_get(struct snd_kcontrol *kcontrol,
  1402. struct snd_ctl_elem_value *ucontrol)
  1403. {
  1404. struct snd_soc_component *comp = snd_soc_kcontrol_component(kcontrol);
  1405. struct msm_plat_data *pdata = dev_get_drvdata(comp->dev);
  1406. struct snd_pcm_substream *substream;
  1407. struct msm_audio *prtd;
  1408. if (!pdata) {
  1409. pr_err("%s pdata is NULL\n", __func__);
  1410. return -ENODEV;
  1411. }
  1412. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1413. if (!substream) {
  1414. pr_err("%s substream not found\n", __func__);
  1415. return -EINVAL;
  1416. }
  1417. if (!substream->runtime) {
  1418. pr_debug("%s substream runtime not found\n", __func__);
  1419. return 0;
  1420. }
  1421. prtd = substream->runtime->private_data;
  1422. if (prtd)
  1423. ucontrol->value.integer.value[0] = prtd->compress_enable;
  1424. return 0;
  1425. }
  1426. static int msm_pcm_compress_ctl_put(struct snd_kcontrol *kcontrol,
  1427. struct snd_ctl_elem_value *ucontrol)
  1428. {
  1429. int rc = 0;
  1430. struct snd_soc_component *comp = snd_soc_kcontrol_component(kcontrol);
  1431. struct msm_plat_data *pdata = dev_get_drvdata(comp->dev);
  1432. struct snd_pcm_substream *substream;
  1433. struct msm_audio *prtd;
  1434. int compress = ucontrol->value.integer.value[0];
  1435. if (!pdata) {
  1436. pr_err("%s pdata is NULL\n", __func__);
  1437. return -ENODEV;
  1438. }
  1439. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1440. pr_debug("%s: compress : 0x%x\n", __func__, compress);
  1441. if (!substream) {
  1442. pr_err("%s substream not found\n", __func__);
  1443. return -EINVAL;
  1444. }
  1445. if (!substream->runtime) {
  1446. pr_err("%s substream runtime not found\n", __func__);
  1447. return 0;
  1448. }
  1449. prtd = substream->runtime->private_data;
  1450. if (prtd) {
  1451. pr_debug("%s: setting compress flag to 0x%x\n",
  1452. __func__, compress);
  1453. prtd->compress_enable = compress;
  1454. }
  1455. return rc;
  1456. }
  1457. static int msm_pcm_add_compress_control(struct snd_soc_pcm_runtime *rtd)
  1458. {
  1459. struct snd_soc_component *component = NULL;
  1460. const char *mixer_ctl_name = "Playback ";
  1461. const char *mixer_ctl_end_name = " Compress";
  1462. const char *deviceNo = "NN";
  1463. char *mixer_str = NULL;
  1464. int ctl_len;
  1465. int ret = 0;
  1466. struct msm_plat_data *pdata;
  1467. struct snd_kcontrol_new pcm_compress_control[1] = {
  1468. {
  1469. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1470. .name = "?",
  1471. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1472. .info = msm_pcm_compress_ctl_info,
  1473. .get = msm_pcm_compress_ctl_get,
  1474. .put = msm_pcm_compress_ctl_put,
  1475. .private_value = 0,
  1476. }
  1477. };
  1478. if (!rtd) {
  1479. pr_err("%s: NULL rtd\n", __func__);
  1480. return -EINVAL;
  1481. }
  1482. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1483. if (!component) {
  1484. pr_err("%s: component is NULL\n", __func__);
  1485. return -EINVAL;
  1486. }
  1487. ctl_len = strlen(mixer_ctl_name) + strlen(deviceNo) +
  1488. strlen(mixer_ctl_end_name) + 1;
  1489. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1490. if (!mixer_str)
  1491. return -ENOMEM;
  1492. snprintf(mixer_str, ctl_len, "%s%d%s", mixer_ctl_name,
  1493. rtd->pcm->device, mixer_ctl_end_name);
  1494. pcm_compress_control[0].name = mixer_str;
  1495. pcm_compress_control[0].private_value = rtd->dai_link->id;
  1496. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  1497. pdata = dev_get_drvdata(component->dev);
  1498. if (pdata) {
  1499. if (!pdata->pcm) {
  1500. pdata->pcm = rtd->pcm;
  1501. snd_soc_add_component_controls(component,
  1502. pcm_compress_control,
  1503. ARRAY_SIZE
  1504. (pcm_compress_control));
  1505. pr_debug("%s: add control success plt = %pK\n",
  1506. __func__, component);
  1507. }
  1508. } else {
  1509. pr_err("%s: NULL pdata\n", __func__);
  1510. ret = -EINVAL;
  1511. }
  1512. kfree(mixer_str);
  1513. return ret;
  1514. }
  1515. static int msm_pcm_chmap_ctl_put(struct snd_kcontrol *kcontrol,
  1516. struct snd_ctl_elem_value *ucontrol)
  1517. {
  1518. int i;
  1519. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1520. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1521. struct snd_pcm_substream *substream;
  1522. struct msm_audio *prtd;
  1523. struct snd_soc_pcm_runtime *rtd = NULL;
  1524. struct msm_plat_data *pdata = NULL;
  1525. struct msm_pcm_channel_mixer *chmixer_pspd = NULL;
  1526. struct snd_soc_component *component = NULL;
  1527. u64 fe_id = 0;
  1528. pr_debug("%s", __func__);
  1529. substream = snd_pcm_chmap_substream(info, idx);
  1530. if (!substream)
  1531. return -ENODEV;
  1532. if (!substream->runtime)
  1533. return 0;
  1534. prtd = substream->runtime->private_data;
  1535. if (prtd) {
  1536. prtd->set_channel_map = true;
  1537. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1538. prtd->channel_map[i] =
  1539. (char)(ucontrol->value.integer.value[i]);
  1540. /* update chmixer_pspd chmap cached with routing driver as well */
  1541. rtd = substream->private_data;
  1542. if (rtd) {
  1543. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1544. if (component) {
  1545. fe_id = rtd->dai_link->id;
  1546. pdata = (struct msm_plat_data *)
  1547. dev_get_drvdata(component->dev);
  1548. chmixer_pspd = pdata ?
  1549. pdata->chmixer_pspd[fe_id][SESSION_TYPE_RX] : NULL;
  1550. if (chmixer_pspd && chmixer_pspd->enable) {
  1551. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1552. chmixer_pspd->in_ch_map[i] = prtd->channel_map[i];
  1553. chmixer_pspd->override_in_ch_map = true;
  1554. msm_pcm_routing_set_channel_mixer_cfg(fe_id,
  1555. SESSION_TYPE_RX, chmixer_pspd);
  1556. }
  1557. }
  1558. }
  1559. }
  1560. return 0;
  1561. }
  1562. static int msm_pcm_chmap_ctl_get(struct snd_kcontrol *kcontrol,
  1563. struct snd_ctl_elem_value *ucontrol)
  1564. {
  1565. int i;
  1566. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1567. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1568. struct snd_pcm_substream *substream;
  1569. struct msm_audio *prtd;
  1570. pr_debug("%s", __func__);
  1571. substream = snd_pcm_chmap_substream(info, idx);
  1572. if (!substream)
  1573. return -ENODEV;
  1574. memset(ucontrol->value.integer.value, 0,
  1575. sizeof(ucontrol->value.integer.value));
  1576. if (!substream->runtime)
  1577. return 0; /* no channels set */
  1578. prtd = substream->runtime->private_data;
  1579. if (prtd && prtd->set_channel_map == true) {
  1580. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1581. ucontrol->value.integer.value[i] =
  1582. (int)prtd->channel_map[i];
  1583. } else {
  1584. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1585. ucontrol->value.integer.value[i] = 0;
  1586. }
  1587. return 0;
  1588. }
  1589. static int msm_pcm_add_chmap_controls(struct snd_soc_pcm_runtime *rtd)
  1590. {
  1591. struct snd_pcm *pcm = rtd->pcm;
  1592. struct snd_pcm_chmap *chmap_info;
  1593. struct snd_kcontrol *kctl;
  1594. char device_num[12];
  1595. int i, ret = 0;
  1596. pr_debug("%s, Channel map cntrl add\n", __func__);
  1597. ret = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1598. snd_pcm_std_chmaps,
  1599. PCM_FORMAT_MAX_NUM_CHANNEL_V8, 0,
  1600. &chmap_info);
  1601. if (ret < 0) {
  1602. pr_err("%s, channel map cntrl add failed\n", __func__);
  1603. return ret;
  1604. }
  1605. kctl = chmap_info->kctl;
  1606. for (i = 0; i < kctl->count; i++)
  1607. kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
  1608. snprintf(device_num, sizeof(device_num), "%d", pcm->device);
  1609. strlcat(kctl->id.name, device_num, sizeof(kctl->id.name));
  1610. pr_debug("%s, Overwriting channel map control name to: %s\n",
  1611. __func__, kctl->id.name);
  1612. kctl->put = msm_pcm_chmap_ctl_put;
  1613. kctl->get = msm_pcm_chmap_ctl_get;
  1614. return 0;
  1615. }
  1616. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1617. struct snd_ctl_elem_value *ucontrol)
  1618. {
  1619. u64 fe_id = kcontrol->private_value;
  1620. int session_type = SESSION_TYPE_RX;
  1621. int be_id = ucontrol->value.integer.value[3];
  1622. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  1623. int ret = 0;
  1624. cfg_data.app_type = ucontrol->value.integer.value[0];
  1625. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  1626. if (ucontrol->value.integer.value[2] != 0)
  1627. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  1628. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  1629. __func__, fe_id, session_type, be_id,
  1630. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1631. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1632. be_id, &cfg_data);
  1633. if (ret < 0)
  1634. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1635. __func__, ret);
  1636. return ret;
  1637. }
  1638. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1639. struct snd_ctl_elem_value *ucontrol)
  1640. {
  1641. u64 fe_id = kcontrol->private_value;
  1642. int session_type = SESSION_TYPE_RX;
  1643. int be_id = 0;
  1644. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1645. int ret = 0;
  1646. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1647. &be_id, &cfg_data);
  1648. if (ret < 0) {
  1649. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1650. __func__, ret);
  1651. goto done;
  1652. }
  1653. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1654. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1655. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1656. ucontrol->value.integer.value[3] = be_id;
  1657. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1658. __func__, fe_id, session_type, be_id,
  1659. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1660. done:
  1661. return ret;
  1662. }
  1663. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1664. struct snd_ctl_elem_value *ucontrol)
  1665. {
  1666. u64 fe_id = kcontrol->private_value;
  1667. int session_type = SESSION_TYPE_TX;
  1668. int be_id = ucontrol->value.integer.value[3];
  1669. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
  1670. int ret = 0;
  1671. cfg_data.app_type = ucontrol->value.integer.value[0];
  1672. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  1673. if (ucontrol->value.integer.value[2] != 0)
  1674. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  1675. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
  1676. __func__, fe_id, session_type, be_id,
  1677. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1678. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1679. be_id, &cfg_data);
  1680. if (ret < 0)
  1681. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1682. __func__, ret);
  1683. return ret;
  1684. }
  1685. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1686. struct snd_ctl_elem_value *ucontrol)
  1687. {
  1688. u64 fe_id = kcontrol->private_value;
  1689. int session_type = SESSION_TYPE_TX;
  1690. int be_id = 0;
  1691. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1692. int ret = 0;
  1693. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1694. &be_id, &cfg_data);
  1695. if (ret < 0) {
  1696. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1697. __func__, ret);
  1698. goto done;
  1699. }
  1700. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1701. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1702. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1703. ucontrol->value.integer.value[3] = be_id;
  1704. pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
  1705. __func__, fe_id, session_type, be_id,
  1706. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
  1707. done:
  1708. return ret;
  1709. }
  1710. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1711. {
  1712. struct snd_pcm *pcm = rtd->pcm;
  1713. struct snd_pcm_usr *app_type_info;
  1714. struct snd_kcontrol *kctl;
  1715. const char *playback_mixer_ctl_name = "Audio Stream";
  1716. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  1717. const char *deviceNo = "NN";
  1718. const char *suffix = "App Type Cfg";
  1719. int ctl_len, ret = 0;
  1720. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  1721. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  1722. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1723. pr_debug("%s: Playback app type cntrl add\n", __func__);
  1724. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1725. NULL, 1, ctl_len, rtd->dai_link->id,
  1726. &app_type_info);
  1727. if (ret < 0) {
  1728. pr_err("%s: playback app type cntrl add failed: %d\n",
  1729. __func__, ret);
  1730. return ret;
  1731. }
  1732. kctl = app_type_info->kctl;
  1733. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1734. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  1735. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  1736. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  1737. }
  1738. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  1739. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  1740. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1741. pr_debug("%s: Capture app type cntrl add\n", __func__);
  1742. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  1743. NULL, 1, ctl_len, rtd->dai_link->id,
  1744. &app_type_info);
  1745. if (ret < 0) {
  1746. pr_err("%s: capture app type cntrl add failed: %d\n",
  1747. __func__, ret);
  1748. return ret;
  1749. }
  1750. kctl = app_type_info->kctl;
  1751. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1752. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  1753. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  1754. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  1755. }
  1756. return 0;
  1757. }
  1758. static struct msm_pcm_channel_mixer *msm_pcm_get_chmixer(
  1759. struct msm_plat_data *pdata,
  1760. u64 fe_id, int session_type)
  1761. {
  1762. if (!pdata) {
  1763. pr_err("%s: missing pdata\n", __func__);
  1764. return NULL;
  1765. }
  1766. if (fe_id >= MSM_FRONTEND_DAI_MM_SIZE) {
  1767. pr_err("%s: invalid FE %llu\n", __func__, fe_id);
  1768. return NULL;
  1769. }
  1770. if ((session_type != SESSION_TYPE_TX) &&
  1771. (session_type != SESSION_TYPE_RX)) {
  1772. pr_err("%s: invalid session type %d\n", __func__, session_type);
  1773. return NULL;
  1774. }
  1775. return pdata->chmixer_pspd[fe_id][session_type];
  1776. }
  1777. static int msm_pcm_channel_mixer_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1778. struct snd_ctl_elem_value *ucontrol)
  1779. {
  1780. u64 fe_id = kcontrol->private_value & 0xFF;
  1781. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  1782. int ret = 0;
  1783. int stream_id = 0;
  1784. int be_id = 0, i = 0;
  1785. struct msm_audio *prtd = NULL;
  1786. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  1787. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  1788. struct snd_pcm *pcm = NULL;
  1789. struct snd_pcm_substream *substream = NULL;
  1790. struct msm_pcm_channel_mixer *chmixer_pspd = NULL;
  1791. u8 asm_ch_map[PCM_FORMAT_MAX_NUM_CHANNEL_V8] = {0};
  1792. bool reset_override_out_ch_map = false;
  1793. bool reset_override_in_ch_map = false;
  1794. pcm = pdata->pcm_device[fe_id];
  1795. if (!pcm) {
  1796. pr_err("%s invalid pcm handle for fe_id %llu\n",
  1797. __func__, fe_id);
  1798. return -EINVAL;
  1799. }
  1800. if (session_type == SESSION_TYPE_RX)
  1801. substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1802. else
  1803. substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
  1804. if (!substream) {
  1805. pr_err("%s substream not found\n", __func__);
  1806. return -EINVAL;
  1807. }
  1808. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  1809. if (!chmixer_pspd) {
  1810. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  1811. return -EINVAL;
  1812. }
  1813. chmixer_pspd->enable = ucontrol->value.integer.value[0];
  1814. chmixer_pspd->rule = ucontrol->value.integer.value[1];
  1815. chmixer_pspd->input_channel = ucontrol->value.integer.value[2];
  1816. chmixer_pspd->output_channel = ucontrol->value.integer.value[3];
  1817. chmixer_pspd->port_idx = ucontrol->value.integer.value[4];
  1818. if (chmixer_pspd->input_channel < 0 ||
  1819. chmixer_pspd->input_channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8 ||
  1820. chmixer_pspd->output_channel < 0 ||
  1821. chmixer_pspd->output_channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  1822. pr_err("%s: Invalid channels, in %d, out %d\n",
  1823. __func__, chmixer_pspd->input_channel,
  1824. chmixer_pspd->output_channel);
  1825. return -EINVAL;
  1826. }
  1827. prtd = substream->runtime ? substream->runtime->private_data : NULL;
  1828. if (chmixer_pspd->enable && prtd) {
  1829. if (session_type == SESSION_TYPE_RX &&
  1830. !chmixer_pspd->override_in_ch_map) {
  1831. if (prtd->set_channel_map) {
  1832. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1833. chmixer_pspd->in_ch_map[i] = prtd->channel_map[i];
  1834. } else {
  1835. q6asm_map_channels(asm_ch_map,
  1836. chmixer_pspd->input_channel, false);
  1837. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1838. chmixer_pspd->in_ch_map[i] = asm_ch_map[i];
  1839. }
  1840. chmixer_pspd->override_in_ch_map = true;
  1841. reset_override_in_ch_map = true;
  1842. } else if (session_type == SESSION_TYPE_TX &&
  1843. !chmixer_pspd->override_out_ch_map) {
  1844. /*
  1845. * Channel map set in prtd is for plyback only,
  1846. * hence always use default for capture path.
  1847. */
  1848. q6asm_map_channels(asm_ch_map,
  1849. chmixer_pspd->output_channel, false);
  1850. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1851. chmixer_pspd->out_ch_map[i] = asm_ch_map[i];
  1852. chmixer_pspd->override_out_ch_map = true;
  1853. reset_override_out_ch_map = true;
  1854. }
  1855. } else {
  1856. chmixer_pspd->override_out_ch_map = false;
  1857. chmixer_pspd->override_in_ch_map = false;
  1858. }
  1859. /* cache value and take effect during adm_open stage */
  1860. msm_pcm_routing_set_channel_mixer_cfg(fe_id,
  1861. session_type,
  1862. chmixer_pspd);
  1863. if (chmixer_pspd->enable && prtd && prtd->audio_client) {
  1864. stream_id = prtd->audio_client->session;
  1865. be_id = chmixer_pspd->port_idx;
  1866. msm_pcm_routing_set_channel_mixer_runtime(be_id,
  1867. stream_id,
  1868. session_type,
  1869. chmixer_pspd);
  1870. }
  1871. if (reset_override_out_ch_map)
  1872. chmixer_pspd->override_out_ch_map = false;
  1873. if (reset_override_in_ch_map)
  1874. chmixer_pspd->override_in_ch_map = false;
  1875. return ret;
  1876. }
  1877. static int msm_pcm_channel_mixer_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1878. struct snd_ctl_elem_value *ucontrol)
  1879. {
  1880. u64 fe_id = kcontrol->private_value & 0xFF;
  1881. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  1882. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  1883. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  1884. struct msm_pcm_channel_mixer *chmixer_pspd;
  1885. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  1886. if (!chmixer_pspd) {
  1887. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  1888. return -EINVAL;
  1889. }
  1890. ucontrol->value.integer.value[0] = chmixer_pspd->enable;
  1891. ucontrol->value.integer.value[1] = chmixer_pspd->rule;
  1892. ucontrol->value.integer.value[2] = chmixer_pspd->input_channel;
  1893. ucontrol->value.integer.value[3] = chmixer_pspd->output_channel;
  1894. ucontrol->value.integer.value[4] = chmixer_pspd->port_idx;
  1895. return 0;
  1896. }
  1897. static int msm_pcm_channel_mixer_output_map_ctl_put(
  1898. struct snd_kcontrol *kcontrol,
  1899. struct snd_ctl_elem_value *ucontrol)
  1900. {
  1901. u64 fe_id = kcontrol->private_value & 0xFF;
  1902. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  1903. int i = 0;
  1904. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  1905. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  1906. struct msm_pcm_channel_mixer *chmixer_pspd;
  1907. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  1908. if (!chmixer_pspd) {
  1909. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  1910. return -EINVAL;
  1911. }
  1912. chmixer_pspd->override_out_ch_map = true;
  1913. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1914. chmixer_pspd->out_ch_map[i] =
  1915. ucontrol->value.integer.value[i];
  1916. return 0;
  1917. }
  1918. static int msm_pcm_channel_mixer_output_map_ctl_get(
  1919. struct snd_kcontrol *kcontrol,
  1920. struct snd_ctl_elem_value *ucontrol)
  1921. {
  1922. u64 fe_id = kcontrol->private_value & 0xFF;
  1923. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  1924. int i = 0;
  1925. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  1926. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  1927. struct msm_pcm_channel_mixer *chmixer_pspd;
  1928. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  1929. if (!chmixer_pspd) {
  1930. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  1931. return -EINVAL;
  1932. }
  1933. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1934. ucontrol->value.integer.value[i] =
  1935. chmixer_pspd->out_ch_map[i];
  1936. return 0;
  1937. }
  1938. static int msm_pcm_channel_mixer_input_map_ctl_put(
  1939. struct snd_kcontrol *kcontrol,
  1940. struct snd_ctl_elem_value *ucontrol)
  1941. {
  1942. u64 fe_id = kcontrol->private_value & 0xFF;
  1943. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  1944. int i = 0;
  1945. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  1946. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  1947. struct msm_pcm_channel_mixer *chmixer_pspd;
  1948. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  1949. if (!chmixer_pspd) {
  1950. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  1951. return -EINVAL;
  1952. }
  1953. chmixer_pspd->override_in_ch_map = true;
  1954. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1955. chmixer_pspd->in_ch_map[i] = ucontrol->value.integer.value[i];
  1956. return 0;
  1957. }
  1958. static int msm_pcm_channel_mixer_input_map_ctl_get(
  1959. struct snd_kcontrol *kcontrol,
  1960. struct snd_ctl_elem_value *ucontrol)
  1961. {
  1962. u64 fe_id = kcontrol->private_value & 0xFF;
  1963. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  1964. int i = 0;
  1965. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  1966. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  1967. struct msm_pcm_channel_mixer *chmixer_pspd;
  1968. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  1969. if (!chmixer_pspd) {
  1970. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  1971. return -EINVAL;
  1972. }
  1973. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1974. ucontrol->value.integer.value[i] =
  1975. chmixer_pspd->in_ch_map[i];
  1976. return 0;
  1977. }
  1978. static int msm_pcm_channel_mixer_weight_ctl_put(
  1979. struct snd_kcontrol *kcontrol,
  1980. struct snd_ctl_elem_value *ucontrol)
  1981. {
  1982. u64 fe_id = kcontrol->private_value & 0xFF;
  1983. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  1984. int channel = (kcontrol->private_value >> 16) & 0xFF;
  1985. int i = 0;
  1986. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  1987. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  1988. struct msm_pcm_channel_mixer *chmixer_pspd;
  1989. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  1990. if (!chmixer_pspd) {
  1991. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  1992. return -EINVAL;
  1993. }
  1994. if (channel <= 0 || channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  1995. pr_err("%s: invalid channel number %d\n", __func__, channel);
  1996. return -EINVAL;
  1997. }
  1998. channel--;
  1999. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2000. chmixer_pspd->channel_weight[channel][i] =
  2001. ucontrol->value.integer.value[i];
  2002. return 0;
  2003. }
  2004. static int msm_pcm_channel_mixer_weight_ctl_get(
  2005. struct snd_kcontrol *kcontrol,
  2006. struct snd_ctl_elem_value *ucontrol)
  2007. {
  2008. u64 fe_id = kcontrol->private_value & 0xFF;
  2009. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  2010. int channel = (kcontrol->private_value >> 16) & 0xFF;
  2011. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  2012. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  2013. int i = 0;
  2014. struct msm_pcm_channel_mixer *chmixer_pspd;
  2015. if (channel <= 0 || channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  2016. pr_err("%s: invalid channel number %d\n", __func__, channel);
  2017. return -EINVAL;
  2018. }
  2019. channel--;
  2020. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  2021. if (!chmixer_pspd) {
  2022. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  2023. return -EINVAL;
  2024. }
  2025. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2026. ucontrol->value.integer.value[i] =
  2027. chmixer_pspd->channel_weight[channel][i];
  2028. return 0;
  2029. }
  2030. static int msm_pcm_add_platform_controls(struct snd_kcontrol_new *kctl,
  2031. struct snd_soc_pcm_runtime *rtd, const char *name_prefix,
  2032. const char *name_suffix, int session_type, int channels)
  2033. {
  2034. int ret = -EINVAL;
  2035. char *mixer_name = NULL;
  2036. struct snd_pcm *pcm = rtd->pcm;
  2037. const char *deviceNo = "NN";
  2038. const char *channelNo = "NN";
  2039. int ctl_len = 0;
  2040. struct snd_soc_component *component = NULL;
  2041. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  2042. if (!component) {
  2043. pr_err("%s: component is NULL\n", __func__);
  2044. return -EINVAL;
  2045. }
  2046. ctl_len = strlen(name_prefix) + 1 + strlen(deviceNo) + 1 +
  2047. strlen(channelNo) + 1 + strlen(name_suffix) + 1;
  2048. mixer_name = kzalloc(ctl_len, GFP_KERNEL);
  2049. if (mixer_name == NULL)
  2050. return -ENOMEM;
  2051. if (channels >= 0) {
  2052. snprintf(mixer_name, ctl_len, "%s %d %s %d",
  2053. name_prefix, pcm->device, name_suffix, channels);
  2054. kctl->private_value = (rtd->dai_link->id) | (session_type << 8) |
  2055. (channels << 16);
  2056. } else {
  2057. snprintf(mixer_name, ctl_len, "%s %d %s",
  2058. name_prefix, pcm->device, name_suffix);
  2059. kctl->private_value = (rtd->dai_link->id) | (session_type << 8);
  2060. }
  2061. kctl->name = mixer_name;
  2062. ret = snd_soc_add_component_controls(component, kctl, 1);
  2063. kfree(mixer_name);
  2064. return ret;
  2065. }
  2066. static int msm_pcm_channel_mixer_output_map_info(struct snd_kcontrol *kcontrol,
  2067. struct snd_ctl_elem_info *uinfo)
  2068. {
  2069. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  2070. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  2071. /* Valid channel map value ranges from 1 to 64 */
  2072. uinfo->value.integer.min = 1;
  2073. uinfo->value.integer.max = 64;
  2074. return 0;
  2075. }
  2076. static int msm_pcm_add_channel_mixer_output_map_controls(
  2077. struct snd_soc_pcm_runtime *rtd)
  2078. {
  2079. struct snd_pcm *pcm = rtd->pcm;
  2080. const char *playback_mixer_ctl_name = "AudStr";
  2081. const char *capture_mixer_ctl_name = "AudStr Capture";
  2082. const char *suffix = "ChMixer Output Map";
  2083. int session_type = 0, ret = 0, channel = -1;
  2084. struct snd_kcontrol_new channel_mixer_output_map_control = {
  2085. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2086. .name = "?",
  2087. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  2088. .info = msm_pcm_channel_mixer_output_map_info,
  2089. .put = msm_pcm_channel_mixer_output_map_ctl_put,
  2090. .get = msm_pcm_channel_mixer_output_map_ctl_get,
  2091. .private_value = 0,
  2092. };
  2093. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  2094. session_type = SESSION_TYPE_RX;
  2095. ret = msm_pcm_add_platform_controls(&channel_mixer_output_map_control,
  2096. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  2097. if (ret < 0)
  2098. goto fail;
  2099. }
  2100. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  2101. session_type = SESSION_TYPE_TX;
  2102. ret = msm_pcm_add_platform_controls(&channel_mixer_output_map_control,
  2103. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  2104. if (ret < 0)
  2105. goto fail;
  2106. }
  2107. return 0;
  2108. fail:
  2109. pr_err("%s: failed add platform ctl, err = %d\n",
  2110. __func__, ret);
  2111. return ret;
  2112. }
  2113. static int msm_pcm_channel_mixer_input_map_info(struct snd_kcontrol *kcontrol,
  2114. struct snd_ctl_elem_info *uinfo)
  2115. {
  2116. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  2117. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  2118. /* Valid channel map value ranges from 1 to 64 */
  2119. uinfo->value.integer.min = 1;
  2120. uinfo->value.integer.max = 64;
  2121. return 0;
  2122. }
  2123. static int msm_pcm_add_channel_mixer_input_map_controls(
  2124. struct snd_soc_pcm_runtime *rtd)
  2125. {
  2126. struct snd_pcm *pcm = rtd->pcm;
  2127. const char *playback_mixer_ctl_name = "AudStr";
  2128. const char *capture_mixer_ctl_name = "AudStr Capture";
  2129. const char *suffix = "ChMixer Input Map";
  2130. int session_type = 0, ret = 0, channel = -1;
  2131. struct snd_kcontrol_new channel_mixer_input_map_control = {
  2132. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2133. .name = "?",
  2134. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  2135. .info = msm_pcm_channel_mixer_input_map_info,
  2136. .put = msm_pcm_channel_mixer_input_map_ctl_put,
  2137. .get = msm_pcm_channel_mixer_input_map_ctl_get,
  2138. .private_value = 0,
  2139. };
  2140. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  2141. session_type = SESSION_TYPE_RX;
  2142. ret = msm_pcm_add_platform_controls(&channel_mixer_input_map_control,
  2143. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  2144. if (ret < 0)
  2145. goto fail;
  2146. }
  2147. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  2148. session_type = SESSION_TYPE_TX;
  2149. ret = msm_pcm_add_platform_controls(&channel_mixer_input_map_control,
  2150. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  2151. if (ret < 0)
  2152. goto fail;
  2153. }
  2154. return 0;
  2155. fail:
  2156. pr_err("%s: failed add platform ctl, err = %d\n",
  2157. __func__, ret);
  2158. return ret;
  2159. }
  2160. static int msm_pcm_channel_mixer_cfg_info(struct snd_kcontrol *kcontrol,
  2161. struct snd_ctl_elem_info *uinfo)
  2162. {
  2163. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  2164. /* five int values: enable, rule, in_channels, out_channels and port_id */
  2165. uinfo->count = 5;
  2166. /* Valid range is all positive values to support above controls */
  2167. uinfo->value.integer.min = 0;
  2168. uinfo->value.integer.max = INT_MAX;
  2169. return 0;
  2170. }
  2171. static int msm_pcm_add_channel_mixer_cfg_controls(
  2172. struct snd_soc_pcm_runtime *rtd)
  2173. {
  2174. struct snd_pcm *pcm = rtd->pcm;
  2175. const char *playback_mixer_ctl_name = "AudStr";
  2176. const char *capture_mixer_ctl_name = "AudStr Capture";
  2177. const char *suffix = "ChMixer Cfg";
  2178. int session_type = 0, ret = 0, channel = -1;
  2179. struct msm_plat_data *pdata = NULL;
  2180. struct snd_soc_component *component = NULL;
  2181. struct snd_kcontrol_new channel_mixer_cfg_control = {
  2182. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2183. .name = "?",
  2184. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  2185. .info = msm_pcm_channel_mixer_cfg_info,
  2186. .put = msm_pcm_channel_mixer_cfg_ctl_put,
  2187. .get = msm_pcm_channel_mixer_cfg_ctl_get,
  2188. .private_value = 0,
  2189. };
  2190. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  2191. if (!component) {
  2192. pr_err("%s: component is NULL\n", __func__);
  2193. return -EINVAL;
  2194. }
  2195. pdata = (struct msm_plat_data *)
  2196. dev_get_drvdata(component->dev);
  2197. pdata->pcm_device[rtd->dai_link->id] = rtd->pcm;
  2198. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  2199. session_type = SESSION_TYPE_RX;
  2200. ret = msm_pcm_add_platform_controls(&channel_mixer_cfg_control,
  2201. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  2202. if (ret < 0)
  2203. goto fail;
  2204. }
  2205. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  2206. session_type = SESSION_TYPE_TX;
  2207. ret = msm_pcm_add_platform_controls(&channel_mixer_cfg_control,
  2208. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  2209. if (ret < 0)
  2210. goto fail;
  2211. }
  2212. return 0;
  2213. fail:
  2214. pr_err("%s: failed add platform ctl, err = %d\n",
  2215. __func__, ret);
  2216. return ret;
  2217. }
  2218. static int msm_pcm_channel_mixer_weight_info(struct snd_kcontrol *kcontrol,
  2219. struct snd_ctl_elem_info *uinfo)
  2220. {
  2221. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  2222. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  2223. /* Valid range: 0 to 0x4000(Unity) gain weightage */
  2224. uinfo->value.integer.min = 0;
  2225. uinfo->value.integer.max = 0x4000;
  2226. return 0;
  2227. }
  2228. static int msm_pcm_add_channel_mixer_weight_controls(
  2229. struct snd_soc_pcm_runtime *rtd,
  2230. int channel)
  2231. {
  2232. struct snd_pcm *pcm = rtd->pcm;
  2233. const char *playback_mixer_ctl_name = "AudStr";
  2234. const char *capture_mixer_ctl_name = "AudStr Capture";
  2235. const char *suffix = "ChMixer Weight Ch";
  2236. int session_type = 0, ret = 0;
  2237. struct snd_kcontrol_new channel_mixer_weight_control = {
  2238. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2239. .name = "?",
  2240. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  2241. .info = msm_pcm_channel_mixer_weight_info,
  2242. .put = msm_pcm_channel_mixer_weight_ctl_put,
  2243. .get = msm_pcm_channel_mixer_weight_ctl_get,
  2244. .private_value = 0,
  2245. };
  2246. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  2247. session_type = SESSION_TYPE_RX;
  2248. ret = msm_pcm_add_platform_controls(&channel_mixer_weight_control,
  2249. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  2250. if (ret < 0)
  2251. goto fail;
  2252. }
  2253. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  2254. session_type = SESSION_TYPE_TX;
  2255. ret = msm_pcm_add_platform_controls(&channel_mixer_weight_control,
  2256. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  2257. if (ret < 0)
  2258. goto fail;
  2259. }
  2260. return 0;
  2261. fail:
  2262. pr_err("%s: failed add platform ctl, err = %d\n",
  2263. __func__, ret);
  2264. return ret;
  2265. }
  2266. static int msm_pcm_add_channel_mixer_controls(struct snd_soc_pcm_runtime *rtd)
  2267. {
  2268. int i, ret = 0;
  2269. struct snd_pcm *pcm = NULL;
  2270. struct msm_plat_data *pdata = NULL;
  2271. struct snd_soc_component *component = NULL;
  2272. if (!rtd || !rtd->pcm) {
  2273. pr_err("%s invalid rtd or pcm\n", __func__);
  2274. return -EINVAL;
  2275. }
  2276. pcm = rtd->pcm;
  2277. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  2278. if (!component) {
  2279. pr_err("%s: component is NULL\n", __func__);
  2280. return -EINVAL;
  2281. }
  2282. pdata = (struct msm_plat_data *)
  2283. dev_get_drvdata(component->dev);
  2284. if (!pdata) {
  2285. pr_err("%s: platform data not populated\n", __func__);
  2286. return -EINVAL;
  2287. }
  2288. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream &&
  2289. !pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]) {
  2290. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX] =
  2291. kzalloc(sizeof(struct msm_pcm_channel_mixer), GFP_KERNEL);
  2292. if (!pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]) {
  2293. ret = -ENOMEM;
  2294. goto fail;
  2295. }
  2296. }
  2297. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream &&
  2298. !pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]) {
  2299. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX] =
  2300. kzalloc(sizeof(struct msm_pcm_channel_mixer), GFP_KERNEL);
  2301. if (!pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]) {
  2302. ret = -ENOMEM;
  2303. goto fail;
  2304. }
  2305. }
  2306. ret = msm_pcm_add_channel_mixer_cfg_controls(rtd);
  2307. if (ret) {
  2308. pr_err("%s: pcm add channel mixer cfg controls failed:%d\n",
  2309. __func__, ret);
  2310. goto fail;
  2311. }
  2312. ret = msm_pcm_add_channel_mixer_input_map_controls(rtd);
  2313. if (ret) {
  2314. pr_err("%s: pcm add channel mixer input map controls failed:%d\n",
  2315. __func__, ret);
  2316. goto fail;
  2317. }
  2318. ret = msm_pcm_add_channel_mixer_output_map_controls(rtd);
  2319. if (ret) {
  2320. pr_err("%s: pcm add channel mixer output map controls failed:%d\n",
  2321. __func__, ret);
  2322. goto fail;
  2323. }
  2324. for (i = 1; i <= PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++) {
  2325. ret = msm_pcm_add_channel_mixer_weight_controls(rtd, i);
  2326. if (ret) {
  2327. pr_err("%s: pcm add channel mixer weight controls failed:%d\n",
  2328. __func__, ret);
  2329. goto fail;
  2330. }
  2331. }
  2332. return 0;
  2333. fail:
  2334. kfree(pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]);
  2335. kfree(pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]);
  2336. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX] = NULL;
  2337. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX] = NULL;
  2338. return ret;
  2339. }
  2340. static int msm_pcm_add_controls(struct snd_soc_pcm_runtime *rtd)
  2341. {
  2342. int ret = 0;
  2343. pr_debug("%s\n", __func__);
  2344. ret = msm_pcm_add_chmap_controls(rtd);
  2345. if (ret)
  2346. pr_err("%s: pcm add controls failed:%d\n", __func__, ret);
  2347. ret = msm_pcm_add_app_type_controls(rtd);
  2348. if (ret)
  2349. pr_err("%s: pcm add app type controls failed:%d\n",
  2350. __func__, ret);
  2351. ret = msm_pcm_add_channel_mixer_controls(rtd);
  2352. if (ret)
  2353. pr_err("%s: pcm add channel mixer controls failed:%d\n",
  2354. __func__, ret);
  2355. return ret;
  2356. }
  2357. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  2358. {
  2359. struct snd_card *card = rtd->card->snd_card;
  2360. int ret = 0;
  2361. if (!card->dev->coherent_dma_mask)
  2362. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  2363. ret = msm_pcm_add_controls(rtd);
  2364. if (ret) {
  2365. pr_err("%s, kctl add failed:%d\n", __func__, ret);
  2366. return ret;
  2367. }
  2368. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_PLAYBACK);
  2369. if (ret)
  2370. pr_err("%s: Could not add pcm Volume Control %d\n",
  2371. __func__, ret);
  2372. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_CAPTURE);
  2373. if (ret)
  2374. pr_err("%s: Could not add pcm Volume Control %d\n",
  2375. __func__, ret);
  2376. ret = msm_pcm_add_compress_control(rtd);
  2377. if (ret)
  2378. pr_err("%s: Could not add pcm Compress Control %d\n",
  2379. __func__, ret);
  2380. ret = msm_pcm_add_audio_adsp_stream_cmd_control(rtd);
  2381. if (ret)
  2382. pr_err("%s: Could not add pcm ADSP Stream Cmd Control\n",
  2383. __func__);
  2384. ret = msm_pcm_add_audio_adsp_stream_callback_control(rtd);
  2385. if (ret)
  2386. pr_err("%s: Could not add pcm ADSP Stream Callback Control\n",
  2387. __func__);
  2388. return ret;
  2389. }
  2390. static snd_pcm_sframes_t msm_pcm_delay_blk(struct snd_pcm_substream *substream,
  2391. struct snd_soc_dai *dai)
  2392. {
  2393. struct snd_pcm_runtime *runtime = substream->runtime;
  2394. struct msm_audio *prtd = runtime->private_data;
  2395. struct audio_client *ac = prtd->audio_client;
  2396. snd_pcm_sframes_t frames;
  2397. int ret;
  2398. ret = q6asm_get_path_delay(prtd->audio_client);
  2399. if (ret) {
  2400. pr_err("%s: get_path_delay failed, ret=%d\n", __func__, ret);
  2401. return 0;
  2402. }
  2403. /* convert microseconds to frames */
  2404. frames = ac->path_delay / 1000 * runtime->rate / 1000;
  2405. /* also convert the remainder from the initial division */
  2406. frames += ac->path_delay % 1000 * runtime->rate / 1000000;
  2407. /* overcompensate for the loss of precision (empirical) */
  2408. frames += 2;
  2409. return frames;
  2410. }
  2411. static struct snd_soc_component_driver msm_soc_component = {
  2412. .name = DRV_NAME,
  2413. .ops = &msm_pcm_ops,
  2414. .pcm_new = msm_asoc_pcm_new,
  2415. .delay_blk = msm_pcm_delay_blk,
  2416. };
  2417. static int msm_pcm_probe(struct platform_device *pdev)
  2418. {
  2419. int rc;
  2420. int id;
  2421. struct msm_plat_data *pdata;
  2422. const char *latency_level;
  2423. rc = of_property_read_u32(pdev->dev.of_node,
  2424. "qcom,msm-pcm-dsp-id", &id);
  2425. if (rc) {
  2426. dev_err(&pdev->dev, "%s: qcom,msm-pcm-dsp-id missing in DT node\n",
  2427. __func__);
  2428. return rc;
  2429. }
  2430. pdata = kzalloc(sizeof(struct msm_plat_data), GFP_KERNEL);
  2431. if (!pdata)
  2432. return -ENOMEM;
  2433. if (of_property_read_bool(pdev->dev.of_node,
  2434. "qcom,msm-pcm-low-latency")) {
  2435. pdata->perf_mode = LOW_LATENCY_PCM_MODE;
  2436. rc = of_property_read_string(pdev->dev.of_node,
  2437. "qcom,latency-level", &latency_level);
  2438. if (!rc) {
  2439. if (!strcmp(latency_level, "ultra"))
  2440. pdata->perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  2441. else if (!strcmp(latency_level, "ull-pp"))
  2442. pdata->perf_mode =
  2443. ULL_POST_PROCESSING_PCM_MODE;
  2444. }
  2445. } else {
  2446. pdata->perf_mode = LEGACY_PCM_MODE;
  2447. }
  2448. dev_set_drvdata(&pdev->dev, pdata);
  2449. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  2450. __func__, dev_name(&pdev->dev));
  2451. return snd_soc_register_component(&pdev->dev,
  2452. &msm_soc_component,
  2453. NULL, 0);
  2454. }
  2455. static int msm_pcm_remove(struct platform_device *pdev)
  2456. {
  2457. struct msm_plat_data *pdata;
  2458. int i = 0;
  2459. pdata = dev_get_drvdata(&pdev->dev);
  2460. if (pdata) {
  2461. for (i = 0; i < MSM_FRONTEND_DAI_MM_SIZE; i++) {
  2462. kfree(pdata->chmixer_pspd[i][SESSION_TYPE_RX]);
  2463. kfree(pdata->chmixer_pspd[i][SESSION_TYPE_TX]);
  2464. }
  2465. }
  2466. kfree(pdata);
  2467. snd_soc_unregister_component(&pdev->dev);
  2468. return 0;
  2469. }
  2470. static const struct of_device_id msm_pcm_dt_match[] = {
  2471. {.compatible = "qcom,msm-pcm-dsp"},
  2472. {}
  2473. };
  2474. MODULE_DEVICE_TABLE(of, msm_pcm_dt_match);
  2475. static struct platform_driver msm_pcm_driver = {
  2476. .driver = {
  2477. .name = "msm-pcm-dsp",
  2478. .owner = THIS_MODULE,
  2479. .of_match_table = msm_pcm_dt_match,
  2480. .suppress_bind_attrs = true,
  2481. },
  2482. .probe = msm_pcm_probe,
  2483. .remove = msm_pcm_remove,
  2484. };
  2485. int __init msm_pcm_dsp_init(void)
  2486. {
  2487. init_waitqueue_head(&the_locks.enable_wait);
  2488. init_waitqueue_head(&the_locks.eos_wait);
  2489. init_waitqueue_head(&the_locks.write_wait);
  2490. init_waitqueue_head(&the_locks.read_wait);
  2491. return platform_driver_register(&msm_pcm_driver);
  2492. }
  2493. void msm_pcm_dsp_exit(void)
  2494. {
  2495. platform_driver_unregister(&msm_pcm_driver);
  2496. }
  2497. MODULE_DESCRIPTION("PCM module platform driver");
  2498. MODULE_LICENSE("GPL v2");