msm-pcm-q6-v2.c 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003
  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 <audio/linux/msm_audio.h>
  23. #include <linux/of_device.h>
  24. #include <sound/tlv.h>
  25. #include <sound/pcm_params.h>
  26. #include <audio/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. if (substream->ref_count <= 0) {
  1197. pr_err_ratelimited("%s substream ref_count:%d invalid\n",
  1198. __func__, substream->ref_count);
  1199. ret = -EINVAL;
  1200. goto done;
  1201. }
  1202. prtd = substream->runtime->private_data;
  1203. if (prtd == NULL) {
  1204. pr_err("%s prtd is null.\n", __func__);
  1205. ret = -EINVAL;
  1206. goto done;
  1207. }
  1208. if (prtd->audio_client == NULL) {
  1209. pr_err("%s prtd is null.\n", __func__);
  1210. ret = -EINVAL;
  1211. goto done;
  1212. }
  1213. event_data = (struct msm_adsp_event_data *)ucontrol->value.bytes.data;
  1214. if ((event_data->event_type < ADSP_STREAM_PP_EVENT) ||
  1215. (event_data->event_type >= ADSP_STREAM_EVENT_MAX)) {
  1216. pr_err("%s: invalid event_type=%d",
  1217. __func__, event_data->event_type);
  1218. ret = -EINVAL;
  1219. goto done;
  1220. }
  1221. if (event_data->payload_len > sizeof(ucontrol->value.bytes.data)
  1222. - sizeof(struct msm_adsp_event_data)) {
  1223. pr_err("%s param length=%d exceeds limit",
  1224. __func__, event_data->payload_len);
  1225. ret = -EINVAL;
  1226. goto done;
  1227. }
  1228. ret = q6asm_send_stream_cmd(prtd->audio_client, event_data);
  1229. if (ret < 0)
  1230. pr_err("%s: failed to send stream event cmd, err = %d\n",
  1231. __func__, ret);
  1232. done:
  1233. mutex_unlock(&pdata->lock);
  1234. return ret;
  1235. }
  1236. static int msm_pcm_add_audio_adsp_stream_cmd_control(
  1237. struct snd_soc_pcm_runtime *rtd)
  1238. {
  1239. struct snd_soc_component *component = NULL;
  1240. const char *mixer_ctl_name = DSP_STREAM_CMD;
  1241. const char *deviceNo = "NN";
  1242. char *mixer_str = NULL;
  1243. int ctl_len = 0, ret = 0;
  1244. struct snd_kcontrol_new fe_audio_adsp_stream_cmd_config_control[1] = {
  1245. {
  1246. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1247. .name = "?",
  1248. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1249. .info = msm_adsp_stream_cmd_info,
  1250. .put = msm_pcm_adsp_stream_cmd_put,
  1251. .private_value = 0,
  1252. }
  1253. };
  1254. if (!rtd) {
  1255. pr_err("%s rtd is NULL\n", __func__);
  1256. ret = -EINVAL;
  1257. goto done;
  1258. }
  1259. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1260. if (!component) {
  1261. pr_err("%s: component is NULL\n", __func__);
  1262. return -EINVAL;
  1263. }
  1264. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1;
  1265. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1266. if (!mixer_str) {
  1267. ret = -ENOMEM;
  1268. goto done;
  1269. }
  1270. snprintf(mixer_str, ctl_len, "%s %d", mixer_ctl_name, rtd->pcm->device);
  1271. fe_audio_adsp_stream_cmd_config_control[0].name = mixer_str;
  1272. fe_audio_adsp_stream_cmd_config_control[0].private_value =
  1273. rtd->dai_link->id;
  1274. pr_debug("Registering new mixer ctl %s\n", mixer_str);
  1275. ret = snd_soc_add_component_controls(component,
  1276. fe_audio_adsp_stream_cmd_config_control,
  1277. ARRAY_SIZE(fe_audio_adsp_stream_cmd_config_control));
  1278. if (ret < 0)
  1279. pr_err("%s: failed add ctl %s. err = %d\n",
  1280. __func__, mixer_str, ret);
  1281. kfree(mixer_str);
  1282. done:
  1283. return ret;
  1284. }
  1285. static int msm_pcm_add_audio_adsp_stream_callback_control(
  1286. struct snd_soc_pcm_runtime *rtd)
  1287. {
  1288. struct snd_soc_component *component = NULL;
  1289. const char *mixer_ctl_name = DSP_STREAM_CALLBACK;
  1290. const char *deviceNo = "NN";
  1291. char *mixer_str = NULL;
  1292. int ctl_len = 0, ret = 0;
  1293. struct snd_kcontrol *kctl;
  1294. struct snd_kcontrol_new fe_audio_adsp_callback_config_control[1] = {
  1295. {
  1296. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1297. .name = "?",
  1298. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1299. .info = msm_adsp_stream_callback_info,
  1300. .get = msm_adsp_stream_callback_get,
  1301. .private_value = 0,
  1302. }
  1303. };
  1304. if (!rtd) {
  1305. pr_err("%s NULL rtd\n", __func__);
  1306. ret = -EINVAL;
  1307. goto done;
  1308. }
  1309. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1310. if (!component) {
  1311. pr_err("%s: component is NULL\n", __func__);
  1312. return -EINVAL;
  1313. }
  1314. pr_debug("%s: added new pcm FE with name %s, id %d, cpu dai %s, device no %d\n",
  1315. __func__, rtd->dai_link->name, rtd->dai_link->id,
  1316. rtd->dai_link->cpus->dai_name, rtd->pcm->device);
  1317. ctl_len = strlen(mixer_ctl_name) + 1 + strlen(deviceNo) + 1;
  1318. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1319. if (!mixer_str) {
  1320. ret = -ENOMEM;
  1321. goto done;
  1322. }
  1323. snprintf(mixer_str, ctl_len, "%s %d", mixer_ctl_name, rtd->pcm->device);
  1324. fe_audio_adsp_callback_config_control[0].name = mixer_str;
  1325. fe_audio_adsp_callback_config_control[0].private_value =
  1326. rtd->dai_link->id;
  1327. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  1328. ret = snd_soc_add_component_controls(component,
  1329. fe_audio_adsp_callback_config_control,
  1330. ARRAY_SIZE(fe_audio_adsp_callback_config_control));
  1331. if (ret < 0) {
  1332. pr_err("%s: failed to add ctl %s. err = %d\n",
  1333. __func__, mixer_str, ret);
  1334. ret = -EINVAL;
  1335. goto free_mixer_str;
  1336. }
  1337. kctl = snd_soc_card_get_kcontrol(rtd->card, mixer_str);
  1338. if (!kctl) {
  1339. pr_err("%s: failed to get kctl %s.\n", __func__, mixer_str);
  1340. ret = -EINVAL;
  1341. goto free_mixer_str;
  1342. }
  1343. kctl->private_data = NULL;
  1344. free_mixer_str:
  1345. kfree(mixer_str);
  1346. done:
  1347. return ret;
  1348. }
  1349. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1350. static int msm_pcm_set_volume(struct msm_audio *prtd, uint32_t volume)
  1351. {
  1352. int rc = 0;
  1353. if (prtd && prtd->audio_client) {
  1354. pr_debug("%s: channels %d volume 0x%x\n", __func__,
  1355. prtd->channel_mode, volume);
  1356. rc = q6asm_set_volume(prtd->audio_client, volume);
  1357. if (rc < 0) {
  1358. pr_err("%s: Send Volume command failed rc=%d\n",
  1359. __func__, rc);
  1360. }
  1361. }
  1362. return rc;
  1363. }
  1364. static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
  1365. struct snd_ctl_elem_value *ucontrol)
  1366. {
  1367. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  1368. struct msm_plat_data *pdata = NULL;
  1369. struct snd_pcm_substream *substream = NULL;
  1370. struct snd_soc_pcm_runtime *soc_prtd = NULL;
  1371. struct snd_soc_component *component = NULL;
  1372. struct msm_audio *prtd;
  1373. pr_debug("%s\n", __func__);
  1374. if (!vol) {
  1375. pr_err("%s: vol is NULL\n", __func__);
  1376. return -ENODEV;
  1377. }
  1378. if (!vol->pcm) {
  1379. pr_err("%s: vol->pcm is NULL\n", __func__);
  1380. return -ENODEV;
  1381. }
  1382. substream = vol->pcm->streams[vol->stream].substream;
  1383. if (!substream) {
  1384. pr_err("%s substream not found\n", __func__);
  1385. return -ENODEV;
  1386. }
  1387. soc_prtd = substream->private_data;
  1388. if (!substream->runtime || !soc_prtd) {
  1389. pr_debug("%s substream runtime or private_data not found\n",
  1390. __func__);
  1391. return 0;
  1392. }
  1393. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  1394. if (!component) {
  1395. pr_err("%s: component is NULL\n", __func__);
  1396. return -EINVAL;
  1397. }
  1398. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  1399. if (!pdata) {
  1400. pr_err("%s: pdata not found\n", __func__);
  1401. return -ENODEV;
  1402. }
  1403. mutex_lock(&pdata->lock);
  1404. if (substream->ref_count > 0) {
  1405. prtd = substream->runtime->private_data;
  1406. if (prtd)
  1407. ucontrol->value.integer.value[0] = prtd->volume;
  1408. }
  1409. mutex_unlock(&pdata->lock);
  1410. return 0;
  1411. }
  1412. static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
  1413. struct snd_ctl_elem_value *ucontrol)
  1414. {
  1415. int rc = 0;
  1416. struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
  1417. struct msm_plat_data *pdata = NULL;
  1418. struct snd_pcm_substream *substream =
  1419. vol->pcm->streams[vol->stream].substream;
  1420. struct snd_soc_pcm_runtime *soc_prtd = NULL;
  1421. struct snd_soc_component *component = NULL;
  1422. struct msm_audio *prtd;
  1423. int volume = ucontrol->value.integer.value[0];
  1424. pr_debug("%s: volume : 0x%x\n", __func__, volume);
  1425. if (!substream) {
  1426. pr_err("%s: substream not found\n", __func__);
  1427. return -ENODEV;
  1428. }
  1429. soc_prtd = substream->private_data;
  1430. if (!substream->runtime || !soc_prtd) {
  1431. pr_err("%s: substream runtime or private_data not found\n",
  1432. __func__);
  1433. return 0;
  1434. }
  1435. component = snd_soc_rtdcom_lookup(soc_prtd, DRV_NAME);
  1436. if (!component) {
  1437. pr_err("%s: component is NULL\n", __func__);
  1438. return -EINVAL;
  1439. }
  1440. pdata = (struct msm_plat_data *) dev_get_drvdata(component->dev);
  1441. if (!pdata) {
  1442. pr_err("%s: pdata not found\n", __func__);
  1443. return -ENODEV;
  1444. }
  1445. mutex_lock(&pdata->lock);
  1446. if (substream->ref_count > 0) {
  1447. prtd = substream->runtime->private_data;
  1448. if (prtd) {
  1449. rc = msm_pcm_set_volume(prtd, volume);
  1450. prtd->volume = volume;
  1451. }
  1452. }
  1453. mutex_unlock(&pdata->lock);
  1454. return rc;
  1455. }
  1456. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd,
  1457. int stream)
  1458. {
  1459. int ret = 0;
  1460. struct snd_pcm *pcm = rtd->pcm;
  1461. struct snd_pcm_volume *volume_info;
  1462. struct snd_kcontrol *kctl;
  1463. dev_dbg(rtd->dev, "%s, volume control add\n", __func__);
  1464. ret = snd_pcm_add_volume_ctls(pcm, stream,
  1465. NULL, 1, rtd->dai_link->id,
  1466. &volume_info);
  1467. if (ret < 0) {
  1468. pr_err("%s volume control failed ret %d\n", __func__, ret);
  1469. return ret;
  1470. }
  1471. kctl = volume_info->kctl;
  1472. kctl->put = msm_pcm_volume_ctl_put;
  1473. kctl->get = msm_pcm_volume_ctl_get;
  1474. kctl->tlv.p = msm_pcm_vol_gain;
  1475. return 0;
  1476. }
  1477. #else
  1478. static int msm_pcm_add_volume_control(struct snd_soc_pcm_runtime *rtd,
  1479. int stream)
  1480. {
  1481. return 0;
  1482. }
  1483. #endif /* CONFIG_AUDIO_QGKI */
  1484. static int msm_pcm_compress_ctl_info(struct snd_kcontrol *kcontrol,
  1485. struct snd_ctl_elem_info *uinfo)
  1486. {
  1487. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1488. uinfo->count = 1;
  1489. uinfo->value.integer.min = 0;
  1490. uinfo->value.integer.max = 0x2000;
  1491. return 0;
  1492. }
  1493. static int msm_pcm_compress_ctl_get(struct snd_kcontrol *kcontrol,
  1494. struct snd_ctl_elem_value *ucontrol)
  1495. {
  1496. struct snd_soc_component *comp = snd_soc_kcontrol_component(kcontrol);
  1497. struct msm_plat_data *pdata = dev_get_drvdata(comp->dev);
  1498. struct snd_pcm_substream *substream;
  1499. struct msm_audio *prtd;
  1500. if (!pdata) {
  1501. pr_err("%s pdata is NULL\n", __func__);
  1502. return -ENODEV;
  1503. }
  1504. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1505. if (!substream) {
  1506. pr_err("%s substream not found\n", __func__);
  1507. return -EINVAL;
  1508. }
  1509. if (!substream->runtime) {
  1510. pr_debug("%s substream runtime not found\n", __func__);
  1511. return 0;
  1512. }
  1513. mutex_lock(&pdata->lock);
  1514. if (substream->ref_count > 0) {
  1515. prtd = substream->runtime->private_data;
  1516. if (prtd)
  1517. ucontrol->value.integer.value[0] = prtd->compress_enable;
  1518. }
  1519. mutex_unlock(&pdata->lock);
  1520. return 0;
  1521. }
  1522. static int msm_pcm_compress_ctl_put(struct snd_kcontrol *kcontrol,
  1523. struct snd_ctl_elem_value *ucontrol)
  1524. {
  1525. int rc = 0;
  1526. struct snd_soc_component *comp = snd_soc_kcontrol_component(kcontrol);
  1527. struct msm_plat_data *pdata = dev_get_drvdata(comp->dev);
  1528. struct snd_pcm_substream *substream;
  1529. struct msm_audio *prtd;
  1530. int compress = ucontrol->value.integer.value[0];
  1531. if (!pdata) {
  1532. pr_err("%s pdata is NULL\n", __func__);
  1533. return -ENODEV;
  1534. }
  1535. substream = pdata->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1536. pr_debug("%s: compress : 0x%x\n", __func__, compress);
  1537. if (!substream) {
  1538. pr_err("%s substream not found\n", __func__);
  1539. return -EINVAL;
  1540. }
  1541. if (!substream->runtime) {
  1542. pr_err("%s substream runtime not found\n", __func__);
  1543. return 0;
  1544. }
  1545. mutex_lock(&pdata->lock);
  1546. if (substream->ref_count > 0) {
  1547. prtd = substream->runtime->private_data;
  1548. if (prtd) {
  1549. pr_debug("%s: setting compress flag to 0x%x\n",
  1550. __func__, compress);
  1551. prtd->compress_enable = compress;
  1552. }
  1553. }
  1554. mutex_unlock(&pdata->lock);
  1555. return rc;
  1556. }
  1557. static int msm_pcm_add_compress_control(struct snd_soc_pcm_runtime *rtd)
  1558. {
  1559. struct snd_soc_component *component = NULL;
  1560. const char *mixer_ctl_name = "Playback ";
  1561. const char *mixer_ctl_end_name = " Compress";
  1562. const char *deviceNo = "NN";
  1563. char *mixer_str = NULL;
  1564. int ctl_len;
  1565. int ret = 0;
  1566. struct msm_plat_data *pdata;
  1567. struct snd_kcontrol_new pcm_compress_control[1] = {
  1568. {
  1569. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  1570. .name = "?",
  1571. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  1572. .info = msm_pcm_compress_ctl_info,
  1573. .get = msm_pcm_compress_ctl_get,
  1574. .put = msm_pcm_compress_ctl_put,
  1575. .private_value = 0,
  1576. }
  1577. };
  1578. if (!rtd) {
  1579. pr_err("%s: NULL rtd\n", __func__);
  1580. return -EINVAL;
  1581. }
  1582. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1583. if (!component) {
  1584. pr_err("%s: component is NULL\n", __func__);
  1585. return -EINVAL;
  1586. }
  1587. ctl_len = strlen(mixer_ctl_name) + strlen(deviceNo) +
  1588. strlen(mixer_ctl_end_name) + 1;
  1589. mixer_str = kzalloc(ctl_len, GFP_KERNEL);
  1590. if (!mixer_str)
  1591. return -ENOMEM;
  1592. snprintf(mixer_str, ctl_len, "%s%d%s", mixer_ctl_name,
  1593. rtd->pcm->device, mixer_ctl_end_name);
  1594. pcm_compress_control[0].name = mixer_str;
  1595. pcm_compress_control[0].private_value = rtd->dai_link->id;
  1596. pr_debug("%s: Registering new mixer ctl %s\n", __func__, mixer_str);
  1597. pdata = dev_get_drvdata(component->dev);
  1598. if (pdata) {
  1599. if (!pdata->pcm) {
  1600. pdata->pcm = rtd->pcm;
  1601. snd_soc_add_component_controls(component,
  1602. pcm_compress_control,
  1603. ARRAY_SIZE
  1604. (pcm_compress_control));
  1605. pr_debug("%s: add control success plt = %pK\n",
  1606. __func__, component);
  1607. }
  1608. } else {
  1609. pr_err("%s: NULL pdata\n", __func__);
  1610. ret = -EINVAL;
  1611. }
  1612. kfree(mixer_str);
  1613. return ret;
  1614. }
  1615. static int msm_pcm_chmap_ctl_put(struct snd_kcontrol *kcontrol,
  1616. struct snd_ctl_elem_value *ucontrol)
  1617. {
  1618. int i;
  1619. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1620. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1621. struct snd_pcm_substream *substream;
  1622. struct msm_audio *prtd;
  1623. struct snd_soc_pcm_runtime *rtd = NULL;
  1624. struct msm_plat_data *pdata = NULL;
  1625. struct msm_pcm_channel_mixer *chmixer_pspd = NULL;
  1626. struct snd_soc_component *component = NULL;
  1627. u64 fe_id = 0;
  1628. pr_debug("%s", __func__);
  1629. substream = snd_pcm_chmap_substream(info, idx);
  1630. if (!substream)
  1631. return -ENODEV;
  1632. rtd = substream->private_data;
  1633. if (rtd) {
  1634. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1635. if (component) {
  1636. pdata = (struct msm_plat_data *)
  1637. dev_get_drvdata(component->dev);
  1638. if (!pdata) {
  1639. pr_err("%s: pdata not found\n", __func__);
  1640. return -ENODEV;
  1641. }
  1642. } else {
  1643. pr_err("%s: component is NULL\n", __func__);
  1644. return -EINVAL;
  1645. }
  1646. }
  1647. if (!rtd)
  1648. return 0;
  1649. mutex_lock(&pdata->lock);
  1650. if (substream->ref_count <= 0) {
  1651. pr_err_ratelimited("%s: substream ref_count:%d invalid\n",
  1652. __func__, substream->ref_count);
  1653. mutex_unlock(&pdata->lock);
  1654. return -EINVAL;
  1655. }
  1656. prtd = substream->runtime ? substream->runtime->private_data : NULL;
  1657. if (prtd) {
  1658. prtd->set_channel_map = true;
  1659. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1660. prtd->channel_map[i] =
  1661. (char)(ucontrol->value.integer.value[i]);
  1662. /* update chmixer_pspd chmap cached with routing driver as well */
  1663. if (rtd) {
  1664. if (component) {
  1665. fe_id = rtd->dai_link->id;
  1666. chmixer_pspd = pdata ?
  1667. pdata->chmixer_pspd[fe_id][SESSION_TYPE_RX] : NULL;
  1668. if (chmixer_pspd && chmixer_pspd->enable) {
  1669. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1670. chmixer_pspd->in_ch_map[i] = prtd->channel_map[i];
  1671. chmixer_pspd->override_in_ch_map = true;
  1672. msm_pcm_routing_set_channel_mixer_cfg(fe_id,
  1673. SESSION_TYPE_RX, chmixer_pspd);
  1674. }
  1675. }
  1676. }
  1677. }
  1678. mutex_unlock(&pdata->lock);
  1679. return 0;
  1680. }
  1681. static int msm_pcm_chmap_ctl_get(struct snd_kcontrol *kcontrol,
  1682. struct snd_ctl_elem_value *ucontrol)
  1683. {
  1684. int i;
  1685. struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
  1686. unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
  1687. struct snd_pcm_substream *substream;
  1688. struct msm_audio *prtd;
  1689. struct snd_soc_pcm_runtime *rtd = NULL;
  1690. struct msm_plat_data *pdata = NULL;
  1691. struct snd_soc_component *component = NULL;
  1692. pr_debug("%s", __func__);
  1693. substream = snd_pcm_chmap_substream(info, idx);
  1694. if (!substream)
  1695. return -ENODEV;
  1696. rtd = substream->private_data;
  1697. if (rtd) {
  1698. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  1699. if (component) {
  1700. pdata = (struct msm_plat_data *)
  1701. dev_get_drvdata(component->dev);
  1702. if (!pdata) {
  1703. pr_err("%s: pdata not found\n", __func__);
  1704. return -ENODEV;
  1705. }
  1706. } else {
  1707. pr_err("%s: component is NULL\n", __func__);
  1708. return -EINVAL;
  1709. }
  1710. }
  1711. memset(ucontrol->value.integer.value, 0,
  1712. sizeof(ucontrol->value.integer.value));
  1713. if (!rtd)
  1714. return 0; /* no channels set */
  1715. mutex_lock(&pdata->lock);
  1716. if (substream->ref_count <= 0) {
  1717. pr_err_ratelimited("%s: substream ref_count:%d invalid\n",
  1718. __func__, substream->ref_count);
  1719. mutex_unlock(&pdata->lock);
  1720. return -EINVAL;
  1721. }
  1722. prtd = substream->runtime ? substream->runtime->private_data : NULL;
  1723. if (prtd && prtd->set_channel_map == true) {
  1724. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1725. ucontrol->value.integer.value[i] =
  1726. (int)prtd->channel_map[i];
  1727. } else {
  1728. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  1729. ucontrol->value.integer.value[i] = 0;
  1730. }
  1731. mutex_unlock(&pdata->lock);
  1732. return 0;
  1733. }
  1734. static int msm_pcm_add_chmap_controls(struct snd_soc_pcm_runtime *rtd)
  1735. {
  1736. struct snd_pcm *pcm = rtd->pcm;
  1737. struct snd_pcm_chmap *chmap_info;
  1738. struct snd_kcontrol *kctl;
  1739. char device_num[12];
  1740. int i, ret = 0;
  1741. pr_debug("%s, Channel map cntrl add\n", __func__);
  1742. ret = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1743. snd_pcm_std_chmaps,
  1744. PCM_FORMAT_MAX_NUM_CHANNEL_V8, 0,
  1745. &chmap_info);
  1746. if (ret < 0) {
  1747. pr_err("%s, channel map cntrl add failed\n", __func__);
  1748. return ret;
  1749. }
  1750. kctl = chmap_info->kctl;
  1751. for (i = 0; i < kctl->count; i++)
  1752. kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
  1753. snprintf(device_num, sizeof(device_num), "%d", pcm->device);
  1754. strlcat(kctl->id.name, device_num, sizeof(kctl->id.name));
  1755. pr_debug("%s, Overwriting channel map control name to: %s\n",
  1756. __func__, kctl->id.name);
  1757. kctl->put = msm_pcm_chmap_ctl_put;
  1758. kctl->get = msm_pcm_chmap_ctl_get;
  1759. return 0;
  1760. }
  1761. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1762. static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1763. struct snd_ctl_elem_value *ucontrol)
  1764. {
  1765. u64 fe_id = kcontrol->private_value;
  1766. int session_type = SESSION_TYPE_RX;
  1767. int be_id = ucontrol->value.integer.value[3];
  1768. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000, 0};
  1769. int ret = 0;
  1770. cfg_data.app_type = ucontrol->value.integer.value[0];
  1771. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  1772. if (ucontrol->value.integer.value[2] != 0)
  1773. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  1774. if (ucontrol->value.integer.value[4] != 0)
  1775. cfg_data.copp_token = ucontrol->value.integer.value[4];
  1776. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d copp_token %d\n",
  1777. __func__, fe_id, session_type, be_id,
  1778. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate,
  1779. cfg_data.copp_token);
  1780. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1781. be_id, &cfg_data);
  1782. if (ret < 0)
  1783. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1784. __func__, ret);
  1785. return ret;
  1786. }
  1787. static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1788. struct snd_ctl_elem_value *ucontrol)
  1789. {
  1790. u64 fe_id = kcontrol->private_value;
  1791. int session_type = SESSION_TYPE_RX;
  1792. int be_id = 0;
  1793. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1794. int ret = 0;
  1795. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1796. &be_id, &cfg_data);
  1797. if (ret < 0) {
  1798. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1799. __func__, ret);
  1800. goto done;
  1801. }
  1802. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1803. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1804. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1805. ucontrol->value.integer.value[3] = be_id;
  1806. ucontrol->value.integer.value[4] = cfg_data.copp_token;
  1807. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d copp_token %d\n",
  1808. __func__, fe_id, session_type, be_id,
  1809. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate,
  1810. cfg_data.copp_token);
  1811. done:
  1812. return ret;
  1813. }
  1814. static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1815. struct snd_ctl_elem_value *ucontrol)
  1816. {
  1817. u64 fe_id = kcontrol->private_value;
  1818. int session_type = SESSION_TYPE_TX;
  1819. int be_id = ucontrol->value.integer.value[3];
  1820. struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000, 0};
  1821. int ret = 0;
  1822. cfg_data.app_type = ucontrol->value.integer.value[0];
  1823. cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
  1824. if (ucontrol->value.integer.value[2] != 0)
  1825. cfg_data.sample_rate = ucontrol->value.integer.value[2];
  1826. if (ucontrol->value.integer.value[4] != 0)
  1827. cfg_data.copp_token = ucontrol->value.integer.value[4];
  1828. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d copp_token %d\n",
  1829. __func__, fe_id, session_type, be_id,
  1830. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate,
  1831. cfg_data.copp_token);
  1832. ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
  1833. be_id, &cfg_data);
  1834. if (ret < 0)
  1835. pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
  1836. __func__, ret);
  1837. return ret;
  1838. }
  1839. static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  1840. struct snd_ctl_elem_value *ucontrol)
  1841. {
  1842. u64 fe_id = kcontrol->private_value;
  1843. int session_type = SESSION_TYPE_TX;
  1844. int be_id = 0;
  1845. struct msm_pcm_stream_app_type_cfg cfg_data = {0};
  1846. int ret = 0;
  1847. ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
  1848. &be_id, &cfg_data);
  1849. if (ret < 0) {
  1850. pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
  1851. __func__, ret);
  1852. goto done;
  1853. }
  1854. ucontrol->value.integer.value[0] = cfg_data.app_type;
  1855. ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
  1856. ucontrol->value.integer.value[2] = cfg_data.sample_rate;
  1857. ucontrol->value.integer.value[3] = be_id;
  1858. ucontrol->value.integer.value[4] = cfg_data.copp_token;
  1859. pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d copp_token %d\n",
  1860. __func__, fe_id, session_type, be_id,
  1861. cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate,
  1862. cfg_data.copp_token);
  1863. done:
  1864. return ret;
  1865. }
  1866. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1867. {
  1868. struct snd_pcm *pcm = rtd->pcm;
  1869. struct snd_pcm_usr *app_type_info;
  1870. struct snd_kcontrol *kctl;
  1871. const char *playback_mixer_ctl_name = "Audio Stream";
  1872. const char *capture_mixer_ctl_name = "Audio Stream Capture";
  1873. const char *deviceNo = "NN";
  1874. const char *suffix = "App Type Cfg";
  1875. int ctl_len, ret = 0;
  1876. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  1877. ctl_len = strlen(playback_mixer_ctl_name) + 1 +
  1878. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1879. pr_debug("%s: Playback app type cntrl add\n", __func__);
  1880. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  1881. NULL, 1, ctl_len, rtd->dai_link->id,
  1882. &app_type_info);
  1883. if (ret < 0) {
  1884. pr_err("%s: playback app type cntrl add failed: %d\n",
  1885. __func__, ret);
  1886. return ret;
  1887. }
  1888. kctl = app_type_info->kctl;
  1889. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1890. playback_mixer_ctl_name, rtd->pcm->device, suffix);
  1891. kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
  1892. kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
  1893. }
  1894. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  1895. ctl_len = strlen(capture_mixer_ctl_name) + 1 +
  1896. strlen(deviceNo) + 1 + strlen(suffix) + 1;
  1897. pr_debug("%s: Capture app type cntrl add\n", __func__);
  1898. ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
  1899. NULL, 1, ctl_len, rtd->dai_link->id,
  1900. &app_type_info);
  1901. if (ret < 0) {
  1902. pr_err("%s: capture app type cntrl add failed: %d\n",
  1903. __func__, ret);
  1904. return ret;
  1905. }
  1906. kctl = app_type_info->kctl;
  1907. snprintf(kctl->id.name, ctl_len, "%s %d %s",
  1908. capture_mixer_ctl_name, rtd->pcm->device, suffix);
  1909. kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
  1910. kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
  1911. }
  1912. return 0;
  1913. }
  1914. #else
  1915. static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
  1916. {
  1917. return 0;
  1918. }
  1919. #endif /* CONFIG_AUDIO_QGKI */
  1920. static struct msm_pcm_channel_mixer *msm_pcm_get_chmixer(
  1921. struct msm_plat_data *pdata,
  1922. u64 fe_id, int session_type)
  1923. {
  1924. if (!pdata) {
  1925. pr_err("%s: missing pdata\n", __func__);
  1926. return NULL;
  1927. }
  1928. if (fe_id >= MSM_FRONTEND_DAI_MM_SIZE) {
  1929. pr_err("%s: invalid FE %llu\n", __func__, fe_id);
  1930. return NULL;
  1931. }
  1932. if ((session_type != SESSION_TYPE_TX) &&
  1933. (session_type != SESSION_TYPE_RX)) {
  1934. pr_err("%s: invalid session type %d\n", __func__, session_type);
  1935. return NULL;
  1936. }
  1937. return pdata->chmixer_pspd[fe_id][session_type];
  1938. }
  1939. static int msm_pcm_channel_mixer_cfg_ctl_put(struct snd_kcontrol *kcontrol,
  1940. struct snd_ctl_elem_value *ucontrol)
  1941. {
  1942. u64 fe_id = kcontrol->private_value & 0xFF;
  1943. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  1944. int ret = 0;
  1945. int stream_id = 0;
  1946. int be_id = 0, i = 0;
  1947. struct msm_audio *prtd = NULL;
  1948. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  1949. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  1950. struct snd_pcm *pcm = NULL;
  1951. struct snd_pcm_substream *substream = NULL;
  1952. struct msm_pcm_channel_mixer *chmixer_pspd = NULL;
  1953. u8 asm_ch_map[PCM_FORMAT_MAX_NUM_CHANNEL_V8] = {0};
  1954. bool reset_override_out_ch_map = false;
  1955. bool reset_override_in_ch_map = false;
  1956. pcm = pdata->pcm_device[fe_id];
  1957. if (!pcm) {
  1958. pr_err("%s invalid pcm handle for fe_id %llu\n",
  1959. __func__, fe_id);
  1960. return -EINVAL;
  1961. }
  1962. if (session_type == SESSION_TYPE_RX)
  1963. substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
  1964. else
  1965. substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
  1966. if (!substream) {
  1967. pr_err("%s substream not found\n", __func__);
  1968. return -EINVAL;
  1969. }
  1970. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  1971. if (!chmixer_pspd) {
  1972. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  1973. return -EINVAL;
  1974. }
  1975. chmixer_pspd->enable = ucontrol->value.integer.value[0];
  1976. chmixer_pspd->rule = ucontrol->value.integer.value[1];
  1977. chmixer_pspd->input_channel = ucontrol->value.integer.value[2];
  1978. chmixer_pspd->output_channel = ucontrol->value.integer.value[3];
  1979. chmixer_pspd->port_idx = ucontrol->value.integer.value[4];
  1980. if (chmixer_pspd->input_channel < 0 ||
  1981. chmixer_pspd->input_channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8 ||
  1982. chmixer_pspd->output_channel < 0 ||
  1983. chmixer_pspd->output_channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  1984. pr_err("%s: Invalid channels, in %d, out %d\n",
  1985. __func__, chmixer_pspd->input_channel,
  1986. chmixer_pspd->output_channel);
  1987. return -EINVAL;
  1988. }
  1989. mutex_lock(&pdata->lock);
  1990. if (substream->ref_count <= 0) {
  1991. pr_err_ratelimited("%s: substream ref_count:%d invalid\n",
  1992. __func__, substream->ref_count);
  1993. mutex_unlock(&pdata->lock);
  1994. return -EINVAL;
  1995. }
  1996. prtd = substream->runtime ? substream->runtime->private_data : NULL;
  1997. if (chmixer_pspd->enable && prtd) {
  1998. if (session_type == SESSION_TYPE_RX &&
  1999. !chmixer_pspd->override_in_ch_map) {
  2000. if (prtd->set_channel_map) {
  2001. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2002. chmixer_pspd->in_ch_map[i] = prtd->channel_map[i];
  2003. } else {
  2004. q6asm_map_channels(asm_ch_map,
  2005. chmixer_pspd->input_channel, false);
  2006. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2007. chmixer_pspd->in_ch_map[i] = asm_ch_map[i];
  2008. }
  2009. chmixer_pspd->override_in_ch_map = true;
  2010. reset_override_in_ch_map = true;
  2011. } else if (session_type == SESSION_TYPE_TX &&
  2012. !chmixer_pspd->override_out_ch_map) {
  2013. /*
  2014. * Channel map set in prtd is for plyback only,
  2015. * hence always use default for capture path.
  2016. */
  2017. q6asm_map_channels(asm_ch_map,
  2018. chmixer_pspd->output_channel, false);
  2019. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2020. chmixer_pspd->out_ch_map[i] = asm_ch_map[i];
  2021. chmixer_pspd->override_out_ch_map = true;
  2022. reset_override_out_ch_map = true;
  2023. }
  2024. } else {
  2025. chmixer_pspd->override_out_ch_map = false;
  2026. chmixer_pspd->override_in_ch_map = false;
  2027. }
  2028. /* cache value and take effect during adm_open stage */
  2029. msm_pcm_routing_set_channel_mixer_cfg(fe_id,
  2030. session_type,
  2031. chmixer_pspd);
  2032. if (chmixer_pspd->enable && prtd && prtd->audio_client) {
  2033. stream_id = prtd->audio_client->session;
  2034. be_id = chmixer_pspd->port_idx;
  2035. msm_pcm_routing_set_channel_mixer_runtime(be_id,
  2036. stream_id,
  2037. session_type,
  2038. chmixer_pspd);
  2039. }
  2040. if (reset_override_out_ch_map)
  2041. chmixer_pspd->override_out_ch_map = false;
  2042. if (reset_override_in_ch_map)
  2043. chmixer_pspd->override_in_ch_map = false;
  2044. mutex_unlock(&pdata->lock);
  2045. return ret;
  2046. }
  2047. static int msm_pcm_channel_mixer_cfg_ctl_get(struct snd_kcontrol *kcontrol,
  2048. struct snd_ctl_elem_value *ucontrol)
  2049. {
  2050. u64 fe_id = kcontrol->private_value & 0xFF;
  2051. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  2052. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  2053. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  2054. struct msm_pcm_channel_mixer *chmixer_pspd;
  2055. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  2056. if (!chmixer_pspd) {
  2057. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  2058. return -EINVAL;
  2059. }
  2060. ucontrol->value.integer.value[0] = chmixer_pspd->enable;
  2061. ucontrol->value.integer.value[1] = chmixer_pspd->rule;
  2062. ucontrol->value.integer.value[2] = chmixer_pspd->input_channel;
  2063. ucontrol->value.integer.value[3] = chmixer_pspd->output_channel;
  2064. ucontrol->value.integer.value[4] = chmixer_pspd->port_idx;
  2065. return 0;
  2066. }
  2067. static int msm_pcm_channel_mixer_output_map_ctl_put(
  2068. struct snd_kcontrol *kcontrol,
  2069. struct snd_ctl_elem_value *ucontrol)
  2070. {
  2071. u64 fe_id = kcontrol->private_value & 0xFF;
  2072. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  2073. int i = 0;
  2074. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  2075. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  2076. struct msm_pcm_channel_mixer *chmixer_pspd;
  2077. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  2078. if (!chmixer_pspd) {
  2079. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  2080. return -EINVAL;
  2081. }
  2082. chmixer_pspd->override_out_ch_map = true;
  2083. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2084. chmixer_pspd->out_ch_map[i] =
  2085. ucontrol->value.integer.value[i];
  2086. return 0;
  2087. }
  2088. static int msm_pcm_channel_mixer_output_map_ctl_get(
  2089. struct snd_kcontrol *kcontrol,
  2090. struct snd_ctl_elem_value *ucontrol)
  2091. {
  2092. u64 fe_id = kcontrol->private_value & 0xFF;
  2093. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  2094. int i = 0;
  2095. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  2096. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  2097. struct msm_pcm_channel_mixer *chmixer_pspd;
  2098. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  2099. if (!chmixer_pspd) {
  2100. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  2101. return -EINVAL;
  2102. }
  2103. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2104. ucontrol->value.integer.value[i] =
  2105. chmixer_pspd->out_ch_map[i];
  2106. return 0;
  2107. }
  2108. static int msm_pcm_channel_mixer_input_map_ctl_put(
  2109. struct snd_kcontrol *kcontrol,
  2110. struct snd_ctl_elem_value *ucontrol)
  2111. {
  2112. u64 fe_id = kcontrol->private_value & 0xFF;
  2113. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  2114. int i = 0;
  2115. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  2116. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  2117. struct msm_pcm_channel_mixer *chmixer_pspd;
  2118. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  2119. if (!chmixer_pspd) {
  2120. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  2121. return -EINVAL;
  2122. }
  2123. chmixer_pspd->override_in_ch_map = true;
  2124. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2125. chmixer_pspd->in_ch_map[i] = ucontrol->value.integer.value[i];
  2126. return 0;
  2127. }
  2128. static int msm_pcm_channel_mixer_input_map_ctl_get(
  2129. struct snd_kcontrol *kcontrol,
  2130. struct snd_ctl_elem_value *ucontrol)
  2131. {
  2132. u64 fe_id = kcontrol->private_value & 0xFF;
  2133. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  2134. int i = 0;
  2135. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  2136. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  2137. struct msm_pcm_channel_mixer *chmixer_pspd;
  2138. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  2139. if (!chmixer_pspd) {
  2140. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  2141. return -EINVAL;
  2142. }
  2143. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2144. ucontrol->value.integer.value[i] =
  2145. chmixer_pspd->in_ch_map[i];
  2146. return 0;
  2147. }
  2148. static int msm_pcm_channel_mixer_weight_ctl_put(
  2149. struct snd_kcontrol *kcontrol,
  2150. struct snd_ctl_elem_value *ucontrol)
  2151. {
  2152. u64 fe_id = kcontrol->private_value & 0xFF;
  2153. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  2154. int channel = (kcontrol->private_value >> 16) & 0xFF;
  2155. int i = 0;
  2156. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  2157. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  2158. struct msm_pcm_channel_mixer *chmixer_pspd;
  2159. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  2160. if (!chmixer_pspd) {
  2161. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  2162. return -EINVAL;
  2163. }
  2164. if (channel <= 0 || channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  2165. pr_err("%s: invalid channel number %d\n", __func__, channel);
  2166. return -EINVAL;
  2167. }
  2168. channel--;
  2169. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2170. chmixer_pspd->channel_weight[channel][i] =
  2171. ucontrol->value.integer.value[i];
  2172. return 0;
  2173. }
  2174. static int msm_pcm_channel_mixer_weight_ctl_get(
  2175. struct snd_kcontrol *kcontrol,
  2176. struct snd_ctl_elem_value *ucontrol)
  2177. {
  2178. u64 fe_id = kcontrol->private_value & 0xFF;
  2179. int session_type = (kcontrol->private_value >> 8) & 0xFF;
  2180. int channel = (kcontrol->private_value >> 16) & 0xFF;
  2181. struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
  2182. struct msm_plat_data *pdata = dev_get_drvdata(component->dev);
  2183. int i = 0;
  2184. struct msm_pcm_channel_mixer *chmixer_pspd;
  2185. if (channel <= 0 || channel > PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  2186. pr_err("%s: invalid channel number %d\n", __func__, channel);
  2187. return -EINVAL;
  2188. }
  2189. channel--;
  2190. chmixer_pspd = msm_pcm_get_chmixer(pdata, fe_id, session_type);
  2191. if (!chmixer_pspd) {
  2192. pr_err("%s: invalid chmixer_pspd in pdata", __func__);
  2193. return -EINVAL;
  2194. }
  2195. for (i = 0; i < PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++)
  2196. ucontrol->value.integer.value[i] =
  2197. chmixer_pspd->channel_weight[channel][i];
  2198. return 0;
  2199. }
  2200. static int msm_pcm_add_platform_controls(struct snd_kcontrol_new *kctl,
  2201. struct snd_soc_pcm_runtime *rtd, const char *name_prefix,
  2202. const char *name_suffix, int session_type, int channels)
  2203. {
  2204. int ret = -EINVAL;
  2205. char *mixer_name = NULL;
  2206. struct snd_pcm *pcm = rtd->pcm;
  2207. const char *deviceNo = "NN";
  2208. const char *channelNo = "NN";
  2209. int ctl_len = 0;
  2210. struct snd_soc_component *component = NULL;
  2211. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  2212. if (!component) {
  2213. pr_err("%s: component is NULL\n", __func__);
  2214. return -EINVAL;
  2215. }
  2216. ctl_len = strlen(name_prefix) + 1 + strlen(deviceNo) + 1 +
  2217. strlen(channelNo) + 1 + strlen(name_suffix) + 1;
  2218. mixer_name = kzalloc(ctl_len, GFP_KERNEL);
  2219. if (mixer_name == NULL)
  2220. return -ENOMEM;
  2221. if (channels >= 0) {
  2222. snprintf(mixer_name, ctl_len, "%s %d %s %d",
  2223. name_prefix, pcm->device, name_suffix, channels);
  2224. kctl->private_value = (rtd->dai_link->id) | (session_type << 8) |
  2225. (channels << 16);
  2226. } else {
  2227. snprintf(mixer_name, ctl_len, "%s %d %s",
  2228. name_prefix, pcm->device, name_suffix);
  2229. kctl->private_value = (rtd->dai_link->id) | (session_type << 8);
  2230. }
  2231. kctl->name = mixer_name;
  2232. ret = snd_soc_add_component_controls(component, kctl, 1);
  2233. kfree(mixer_name);
  2234. return ret;
  2235. }
  2236. static int msm_pcm_channel_mixer_output_map_info(struct snd_kcontrol *kcontrol,
  2237. struct snd_ctl_elem_info *uinfo)
  2238. {
  2239. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  2240. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  2241. /* Valid channel map value ranges from 1 to 64 */
  2242. uinfo->value.integer.min = 1;
  2243. uinfo->value.integer.max = 64;
  2244. return 0;
  2245. }
  2246. static int msm_pcm_add_channel_mixer_output_map_controls(
  2247. struct snd_soc_pcm_runtime *rtd)
  2248. {
  2249. struct snd_pcm *pcm = rtd->pcm;
  2250. const char *playback_mixer_ctl_name = "AudStr";
  2251. const char *capture_mixer_ctl_name = "AudStr Capture";
  2252. const char *suffix = "ChMixer Output Map";
  2253. int session_type = 0, ret = 0, channel = -1;
  2254. struct snd_kcontrol_new channel_mixer_output_map_control = {
  2255. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2256. .name = "?",
  2257. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  2258. .info = msm_pcm_channel_mixer_output_map_info,
  2259. .put = msm_pcm_channel_mixer_output_map_ctl_put,
  2260. .get = msm_pcm_channel_mixer_output_map_ctl_get,
  2261. .private_value = 0,
  2262. };
  2263. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  2264. session_type = SESSION_TYPE_RX;
  2265. ret = msm_pcm_add_platform_controls(&channel_mixer_output_map_control,
  2266. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  2267. if (ret < 0)
  2268. goto fail;
  2269. }
  2270. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  2271. session_type = SESSION_TYPE_TX;
  2272. ret = msm_pcm_add_platform_controls(&channel_mixer_output_map_control,
  2273. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  2274. if (ret < 0)
  2275. goto fail;
  2276. }
  2277. return 0;
  2278. fail:
  2279. pr_err("%s: failed add platform ctl, err = %d\n",
  2280. __func__, ret);
  2281. return ret;
  2282. }
  2283. static int msm_pcm_channel_mixer_input_map_info(struct snd_kcontrol *kcontrol,
  2284. struct snd_ctl_elem_info *uinfo)
  2285. {
  2286. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  2287. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  2288. /* Valid channel map value ranges from 1 to 64 */
  2289. uinfo->value.integer.min = 1;
  2290. uinfo->value.integer.max = 64;
  2291. return 0;
  2292. }
  2293. static int msm_pcm_add_channel_mixer_input_map_controls(
  2294. struct snd_soc_pcm_runtime *rtd)
  2295. {
  2296. struct snd_pcm *pcm = rtd->pcm;
  2297. const char *playback_mixer_ctl_name = "AudStr";
  2298. const char *capture_mixer_ctl_name = "AudStr Capture";
  2299. const char *suffix = "ChMixer Input Map";
  2300. int session_type = 0, ret = 0, channel = -1;
  2301. struct snd_kcontrol_new channel_mixer_input_map_control = {
  2302. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2303. .name = "?",
  2304. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  2305. .info = msm_pcm_channel_mixer_input_map_info,
  2306. .put = msm_pcm_channel_mixer_input_map_ctl_put,
  2307. .get = msm_pcm_channel_mixer_input_map_ctl_get,
  2308. .private_value = 0,
  2309. };
  2310. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  2311. session_type = SESSION_TYPE_RX;
  2312. ret = msm_pcm_add_platform_controls(&channel_mixer_input_map_control,
  2313. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  2314. if (ret < 0)
  2315. goto fail;
  2316. }
  2317. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  2318. session_type = SESSION_TYPE_TX;
  2319. ret = msm_pcm_add_platform_controls(&channel_mixer_input_map_control,
  2320. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  2321. if (ret < 0)
  2322. goto fail;
  2323. }
  2324. return 0;
  2325. fail:
  2326. pr_err("%s: failed add platform ctl, err = %d\n",
  2327. __func__, ret);
  2328. return ret;
  2329. }
  2330. static int msm_pcm_channel_mixer_cfg_info(struct snd_kcontrol *kcontrol,
  2331. struct snd_ctl_elem_info *uinfo)
  2332. {
  2333. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  2334. /* five int values: enable, rule, in_channels, out_channels and port_id */
  2335. uinfo->count = 5;
  2336. /* Valid range is all positive values to support above controls */
  2337. uinfo->value.integer.min = 0;
  2338. uinfo->value.integer.max = INT_MAX;
  2339. return 0;
  2340. }
  2341. static int msm_pcm_add_channel_mixer_cfg_controls(
  2342. struct snd_soc_pcm_runtime *rtd)
  2343. {
  2344. struct snd_pcm *pcm = rtd->pcm;
  2345. const char *playback_mixer_ctl_name = "AudStr";
  2346. const char *capture_mixer_ctl_name = "AudStr Capture";
  2347. const char *suffix = "ChMixer Cfg";
  2348. int session_type = 0, ret = 0, channel = -1;
  2349. struct msm_plat_data *pdata = NULL;
  2350. struct snd_soc_component *component = NULL;
  2351. struct snd_kcontrol_new channel_mixer_cfg_control = {
  2352. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2353. .name = "?",
  2354. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  2355. .info = msm_pcm_channel_mixer_cfg_info,
  2356. .put = msm_pcm_channel_mixer_cfg_ctl_put,
  2357. .get = msm_pcm_channel_mixer_cfg_ctl_get,
  2358. .private_value = 0,
  2359. };
  2360. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  2361. if (!component) {
  2362. pr_err("%s: component is NULL\n", __func__);
  2363. return -EINVAL;
  2364. }
  2365. pdata = (struct msm_plat_data *)
  2366. dev_get_drvdata(component->dev);
  2367. pdata->pcm_device[rtd->dai_link->id] = rtd->pcm;
  2368. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  2369. session_type = SESSION_TYPE_RX;
  2370. ret = msm_pcm_add_platform_controls(&channel_mixer_cfg_control,
  2371. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  2372. if (ret < 0)
  2373. goto fail;
  2374. }
  2375. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  2376. session_type = SESSION_TYPE_TX;
  2377. ret = msm_pcm_add_platform_controls(&channel_mixer_cfg_control,
  2378. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  2379. if (ret < 0)
  2380. goto fail;
  2381. }
  2382. return 0;
  2383. fail:
  2384. pr_err("%s: failed add platform ctl, err = %d\n",
  2385. __func__, ret);
  2386. return ret;
  2387. }
  2388. static int msm_pcm_channel_mixer_weight_info(struct snd_kcontrol *kcontrol,
  2389. struct snd_ctl_elem_info *uinfo)
  2390. {
  2391. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  2392. uinfo->count = PCM_FORMAT_MAX_NUM_CHANNEL_V8;
  2393. /* Valid range: 0 to 0x4000(Unity) gain weightage */
  2394. uinfo->value.integer.min = 0;
  2395. uinfo->value.integer.max = 0x4000;
  2396. return 0;
  2397. }
  2398. static int msm_pcm_add_channel_mixer_weight_controls(
  2399. struct snd_soc_pcm_runtime *rtd,
  2400. int channel)
  2401. {
  2402. struct snd_pcm *pcm = rtd->pcm;
  2403. const char *playback_mixer_ctl_name = "AudStr";
  2404. const char *capture_mixer_ctl_name = "AudStr Capture";
  2405. const char *suffix = "ChMixer Weight Ch";
  2406. int session_type = 0, ret = 0;
  2407. struct snd_kcontrol_new channel_mixer_weight_control = {
  2408. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  2409. .name = "?",
  2410. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
  2411. .info = msm_pcm_channel_mixer_weight_info,
  2412. .put = msm_pcm_channel_mixer_weight_ctl_put,
  2413. .get = msm_pcm_channel_mixer_weight_ctl_get,
  2414. .private_value = 0,
  2415. };
  2416. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream != NULL) {
  2417. session_type = SESSION_TYPE_RX;
  2418. ret = msm_pcm_add_platform_controls(&channel_mixer_weight_control,
  2419. rtd, playback_mixer_ctl_name, suffix, session_type, channel);
  2420. if (ret < 0)
  2421. goto fail;
  2422. }
  2423. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream != NULL) {
  2424. session_type = SESSION_TYPE_TX;
  2425. ret = msm_pcm_add_platform_controls(&channel_mixer_weight_control,
  2426. rtd, capture_mixer_ctl_name, suffix, session_type, channel);
  2427. if (ret < 0)
  2428. goto fail;
  2429. }
  2430. return 0;
  2431. fail:
  2432. pr_err("%s: failed add platform ctl, err = %d\n",
  2433. __func__, ret);
  2434. return ret;
  2435. }
  2436. static int msm_pcm_add_channel_mixer_controls(struct snd_soc_pcm_runtime *rtd)
  2437. {
  2438. int i, ret = 0;
  2439. struct snd_pcm *pcm = NULL;
  2440. struct msm_plat_data *pdata = NULL;
  2441. struct snd_soc_component *component = NULL;
  2442. if (!rtd || !rtd->pcm) {
  2443. pr_err("%s invalid rtd or pcm\n", __func__);
  2444. return -EINVAL;
  2445. }
  2446. pcm = rtd->pcm;
  2447. component = snd_soc_rtdcom_lookup(rtd, DRV_NAME);
  2448. if (!component) {
  2449. pr_err("%s: component is NULL\n", __func__);
  2450. return -EINVAL;
  2451. }
  2452. pdata = (struct msm_plat_data *)
  2453. dev_get_drvdata(component->dev);
  2454. if (!pdata) {
  2455. pr_err("%s: platform data not populated\n", __func__);
  2456. return -EINVAL;
  2457. }
  2458. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream &&
  2459. !pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]) {
  2460. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX] =
  2461. kzalloc(sizeof(struct msm_pcm_channel_mixer), GFP_KERNEL);
  2462. if (!pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]) {
  2463. ret = -ENOMEM;
  2464. goto fail;
  2465. }
  2466. }
  2467. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream &&
  2468. !pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]) {
  2469. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX] =
  2470. kzalloc(sizeof(struct msm_pcm_channel_mixer), GFP_KERNEL);
  2471. if (!pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]) {
  2472. ret = -ENOMEM;
  2473. goto fail;
  2474. }
  2475. }
  2476. ret = msm_pcm_add_channel_mixer_cfg_controls(rtd);
  2477. if (ret) {
  2478. pr_err("%s: pcm add channel mixer cfg controls failed:%d\n",
  2479. __func__, ret);
  2480. goto fail;
  2481. }
  2482. ret = msm_pcm_add_channel_mixer_input_map_controls(rtd);
  2483. if (ret) {
  2484. pr_err("%s: pcm add channel mixer input map controls failed:%d\n",
  2485. __func__, ret);
  2486. goto fail;
  2487. }
  2488. ret = msm_pcm_add_channel_mixer_output_map_controls(rtd);
  2489. if (ret) {
  2490. pr_err("%s: pcm add channel mixer output map controls failed:%d\n",
  2491. __func__, ret);
  2492. goto fail;
  2493. }
  2494. for (i = 1; i <= PCM_FORMAT_MAX_NUM_CHANNEL_V8; i++) {
  2495. ret = msm_pcm_add_channel_mixer_weight_controls(rtd, i);
  2496. if (ret) {
  2497. pr_err("%s: pcm add channel mixer weight controls failed:%d\n",
  2498. __func__, ret);
  2499. goto fail;
  2500. }
  2501. }
  2502. return 0;
  2503. fail:
  2504. kfree(pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX]);
  2505. kfree(pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX]);
  2506. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_RX] = NULL;
  2507. pdata->chmixer_pspd[rtd->dai_link->id][SESSION_TYPE_TX] = NULL;
  2508. return ret;
  2509. }
  2510. static int msm_pcm_add_controls(struct snd_soc_pcm_runtime *rtd)
  2511. {
  2512. int ret = 0;
  2513. pr_debug("%s\n", __func__);
  2514. ret = msm_pcm_add_chmap_controls(rtd);
  2515. if (ret)
  2516. pr_err("%s: pcm add controls failed:%d\n", __func__, ret);
  2517. ret = msm_pcm_add_app_type_controls(rtd);
  2518. if (ret)
  2519. pr_err("%s: pcm add app type controls failed:%d\n",
  2520. __func__, ret);
  2521. ret = msm_pcm_add_channel_mixer_controls(rtd);
  2522. if (ret)
  2523. pr_err("%s: pcm add channel mixer controls failed:%d\n",
  2524. __func__, ret);
  2525. return ret;
  2526. }
  2527. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  2528. {
  2529. struct snd_card *card = rtd->card->snd_card;
  2530. int ret = 0;
  2531. if (!card->dev->coherent_dma_mask)
  2532. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  2533. ret = msm_pcm_add_controls(rtd);
  2534. if (ret) {
  2535. pr_err("%s, kctl add failed:%d\n", __func__, ret);
  2536. return ret;
  2537. }
  2538. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_PLAYBACK);
  2539. if (ret)
  2540. pr_err("%s: Could not add pcm Volume Control %d\n",
  2541. __func__, ret);
  2542. ret = msm_pcm_add_volume_control(rtd, SNDRV_PCM_STREAM_CAPTURE);
  2543. if (ret)
  2544. pr_err("%s: Could not add pcm Volume Control %d\n",
  2545. __func__, ret);
  2546. ret = msm_pcm_add_compress_control(rtd);
  2547. if (ret)
  2548. pr_err("%s: Could not add pcm Compress Control %d\n",
  2549. __func__, ret);
  2550. ret = msm_pcm_add_audio_adsp_stream_cmd_control(rtd);
  2551. if (ret)
  2552. pr_err("%s: Could not add pcm ADSP Stream Cmd Control\n",
  2553. __func__);
  2554. ret = msm_pcm_add_audio_adsp_stream_callback_control(rtd);
  2555. if (ret)
  2556. pr_err("%s: Could not add pcm ADSP Stream Callback Control\n",
  2557. __func__);
  2558. return ret;
  2559. }
  2560. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  2561. static snd_pcm_sframes_t msm_pcm_delay_blk(struct snd_pcm_substream *substream,
  2562. struct snd_soc_dai *dai)
  2563. {
  2564. struct snd_pcm_runtime *runtime = substream->runtime;
  2565. struct msm_audio *prtd = runtime->private_data;
  2566. struct audio_client *ac = prtd->audio_client;
  2567. snd_pcm_sframes_t frames;
  2568. int ret;
  2569. ret = q6asm_get_path_delay(prtd->audio_client);
  2570. if (ret) {
  2571. pr_err("%s: get_path_delay failed, ret=%d\n", __func__, ret);
  2572. return 0;
  2573. }
  2574. /* convert microseconds to frames */
  2575. frames = ac->path_delay / 1000 * runtime->rate / 1000;
  2576. /* also convert the remainder from the initial division */
  2577. frames += ac->path_delay % 1000 * runtime->rate / 1000000;
  2578. /* overcompensate for the loss of precision (empirical) */
  2579. frames += 2;
  2580. return frames;
  2581. }
  2582. #endif /* CONFIG_AUDIO_QGKI */
  2583. static struct snd_soc_component_driver msm_soc_component = {
  2584. .name = DRV_NAME,
  2585. .ops = &msm_pcm_ops,
  2586. .pcm_new = msm_asoc_pcm_new,
  2587. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  2588. .delay_blk = msm_pcm_delay_blk,
  2589. #endif /* CONFIG_AUDIO_QGKI */
  2590. };
  2591. static int msm_pcm_probe(struct platform_device *pdev)
  2592. {
  2593. int rc;
  2594. int id;
  2595. struct msm_plat_data *pdata;
  2596. const char *latency_level;
  2597. rc = of_property_read_u32(pdev->dev.of_node,
  2598. "qcom,msm-pcm-dsp-id", &id);
  2599. if (rc) {
  2600. dev_err(&pdev->dev, "%s: qcom,msm-pcm-dsp-id missing in DT node\n",
  2601. __func__);
  2602. return rc;
  2603. }
  2604. pdata = kzalloc(sizeof(struct msm_plat_data), GFP_KERNEL);
  2605. if (!pdata)
  2606. return -ENOMEM;
  2607. if (of_property_read_bool(pdev->dev.of_node,
  2608. "qcom,msm-pcm-low-latency")) {
  2609. pdata->perf_mode = LOW_LATENCY_PCM_MODE;
  2610. rc = of_property_read_string(pdev->dev.of_node,
  2611. "qcom,latency-level", &latency_level);
  2612. if (!rc) {
  2613. if (!strcmp(latency_level, "ultra"))
  2614. pdata->perf_mode = ULTRA_LOW_LATENCY_PCM_MODE;
  2615. else if (!strcmp(latency_level, "ull-pp"))
  2616. pdata->perf_mode =
  2617. ULL_POST_PROCESSING_PCM_MODE;
  2618. }
  2619. } else {
  2620. pdata->perf_mode = LEGACY_PCM_MODE;
  2621. }
  2622. mutex_init(&pdata->lock);
  2623. dev_set_drvdata(&pdev->dev, pdata);
  2624. dev_dbg(&pdev->dev, "%s: dev name %s\n",
  2625. __func__, dev_name(&pdev->dev));
  2626. return snd_soc_register_component(&pdev->dev,
  2627. &msm_soc_component,
  2628. NULL, 0);
  2629. }
  2630. static int msm_pcm_remove(struct platform_device *pdev)
  2631. {
  2632. struct msm_plat_data *pdata;
  2633. int i = 0;
  2634. pdata = dev_get_drvdata(&pdev->dev);
  2635. if (pdata) {
  2636. for (i = 0; i < MSM_FRONTEND_DAI_MM_SIZE; i++) {
  2637. kfree(pdata->chmixer_pspd[i][SESSION_TYPE_RX]);
  2638. kfree(pdata->chmixer_pspd[i][SESSION_TYPE_TX]);
  2639. }
  2640. }
  2641. mutex_destroy(&pdata->lock);
  2642. kfree(pdata);
  2643. snd_soc_unregister_component(&pdev->dev);
  2644. return 0;
  2645. }
  2646. static const struct of_device_id msm_pcm_dt_match[] = {
  2647. {.compatible = "qcom,msm-pcm-dsp"},
  2648. {}
  2649. };
  2650. MODULE_DEVICE_TABLE(of, msm_pcm_dt_match);
  2651. static struct platform_driver msm_pcm_driver = {
  2652. .driver = {
  2653. .name = "msm-pcm-dsp",
  2654. .owner = THIS_MODULE,
  2655. .of_match_table = msm_pcm_dt_match,
  2656. .suppress_bind_attrs = true,
  2657. },
  2658. .probe = msm_pcm_probe,
  2659. .remove = msm_pcm_remove,
  2660. };
  2661. int __init msm_pcm_dsp_init(void)
  2662. {
  2663. init_waitqueue_head(&the_locks.enable_wait);
  2664. init_waitqueue_head(&the_locks.eos_wait);
  2665. init_waitqueue_head(&the_locks.write_wait);
  2666. init_waitqueue_head(&the_locks.read_wait);
  2667. return platform_driver_register(&msm_pcm_driver);
  2668. }
  2669. void msm_pcm_dsp_exit(void)
  2670. {
  2671. platform_driver_unregister(&msm_pcm_driver);
  2672. }
  2673. MODULE_DESCRIPTION("PCM module platform driver");
  2674. MODULE_LICENSE("GPL v2");