msm-pcm-q6-v2.c 82 KB

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