msm-pcm-q6-v2.c 82 KB

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