msm-cpe-lsm.c 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342
  1. /*
  2. * Copyright (c) 2013-2017, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/module.h>
  15. #include <linux/device.h>
  16. #include <linux/slab.h>
  17. #include <linux/vmalloc.h>
  18. #include <linux/kthread.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/of.h>
  21. #include <linux/delay.h>
  22. #include <linux/sched.h>
  23. #include <linux/freezer.h>
  24. #include <sound/soc.h>
  25. #include <sound/lsm_params.h>
  26. #include <sound/pcm_params.h>
  27. #include "msm-slim-dma.h"
  28. #include "codecs/cpe_core.h"
  29. #define SAMPLE_RATE_48KHZ 48000
  30. #define SAMPLE_RATE_16KHZ 16000
  31. #define LSM_VOICE_WAKEUP_APP_V2 2
  32. #define AFE_PORT_ID_1 1
  33. #define AFE_PORT_ID_3 3
  34. #define AFE_OUT_PORT_2 2
  35. #define LISTEN_MIN_NUM_PERIODS 2
  36. #define LISTEN_MAX_NUM_PERIODS 12
  37. #define LISTEN_MAX_PERIOD_SIZE 61440
  38. #define LISTEN_MIN_PERIOD_SIZE 320
  39. #define LISTEN_MAX_STATUS_PAYLOAD_SIZE 256
  40. #define MSM_CPE_MAX_CUSTOM_PARAM_SIZE 2048
  41. #define MSM_CPE_LAB_THREAD_TIMEOUT (3 * (HZ/10))
  42. #define MSM_CPE_LSM_GRAB_LOCK(lock, name) \
  43. { \
  44. pr_debug("%s: %s lock acquire\n", \
  45. __func__, name); \
  46. mutex_lock(lock); \
  47. }
  48. #define MSM_CPE_LSM_REL_LOCK(lock, name) \
  49. { \
  50. pr_debug("%s: %s lock release\n", \
  51. __func__, name); \
  52. mutex_unlock(lock); \
  53. }
  54. /* Conventional and unconventional sample rate supported */
  55. static unsigned int supported_sample_rates[] = {
  56. 8000, 16000, 48000, 192000, 384000
  57. };
  58. static struct snd_pcm_hw_constraint_list constraints_sample_rates = {
  59. .count = ARRAY_SIZE(supported_sample_rates),
  60. .list = supported_sample_rates,
  61. .mask = 0,
  62. };
  63. static struct snd_pcm_hardware msm_pcm_hardware_listen = {
  64. .info = (SNDRV_PCM_INFO_BLOCK_TRANSFER |
  65. SNDRV_PCM_INFO_MMAP_VALID |
  66. SNDRV_PCM_INFO_INTERLEAVED |
  67. SNDRV_PCM_INFO_PAUSE |
  68. SNDRV_PCM_INFO_RESUME),
  69. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  70. SNDRV_PCM_FMTBIT_S24_LE |
  71. SNDRV_PCM_FMTBIT_S32_LE),
  72. .rates = (SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_48000 |
  73. SNDRV_PCM_RATE_192000 | SNDRV_PCM_RATE_384000),
  74. .rate_min = 16000,
  75. .rate_max = 384000,
  76. .channels_min = 1,
  77. .channels_max = 1,
  78. .buffer_bytes_max = LISTEN_MAX_NUM_PERIODS *
  79. LISTEN_MAX_PERIOD_SIZE,
  80. .period_bytes_min = LISTEN_MIN_PERIOD_SIZE,
  81. .period_bytes_max = LISTEN_MAX_PERIOD_SIZE,
  82. .periods_min = LISTEN_MIN_NUM_PERIODS,
  83. .periods_max = LISTEN_MAX_NUM_PERIODS,
  84. .fifo_size = 0,
  85. };
  86. enum {
  87. AFE_CMD_INVALID = 0,
  88. AFE_CMD_PORT_START,
  89. AFE_CMD_PORT_SUSPEND,
  90. AFE_CMD_PORT_RESUME,
  91. AFE_CMD_PORT_STOP,
  92. };
  93. enum cpe_lab_thread_status {
  94. MSM_LSM_LAB_THREAD_STOP,
  95. MSM_LSM_LAB_THREAD_RUNNING,
  96. MSM_LSM_LAB_THREAD_ERROR,
  97. };
  98. struct cpe_hw_params {
  99. u32 sample_rate;
  100. u16 sample_size;
  101. u32 buf_sz;
  102. u32 period_count;
  103. u16 channels;
  104. };
  105. struct cpe_data_pcm_buf {
  106. u8 *mem;
  107. phys_addr_t phys;
  108. };
  109. struct cpe_lsm_lab {
  110. atomic_t in_count;
  111. atomic_t abort_read;
  112. u32 dma_write;
  113. u32 buf_idx;
  114. u32 pcm_size;
  115. enum cpe_lab_thread_status thread_status;
  116. struct cpe_data_pcm_buf *pcm_buf;
  117. wait_queue_head_t period_wait;
  118. struct completion comp;
  119. struct completion thread_complete;
  120. };
  121. struct cpe_priv {
  122. void *core_handle;
  123. struct snd_soc_codec *codec;
  124. struct wcd_cpe_lsm_ops lsm_ops;
  125. struct wcd_cpe_afe_ops afe_ops;
  126. bool afe_mad_ctl;
  127. u32 input_port_id;
  128. };
  129. struct cpe_lsm_data {
  130. struct device *dev;
  131. struct cpe_lsm_session *lsm_session;
  132. struct mutex lsm_api_lock;
  133. struct cpe_lsm_lab lab;
  134. struct cpe_hw_params hw_params;
  135. struct snd_pcm_substream *substream;
  136. wait_queue_head_t event_wait;
  137. atomic_t event_avail;
  138. atomic_t event_stop;
  139. u8 ev_det_status;
  140. u8 ev_det_pld_size;
  141. u8 *ev_det_payload;
  142. bool cpe_prepared;
  143. };
  144. static int msm_cpe_afe_mad_ctl_get(struct snd_kcontrol *kcontrol,
  145. struct snd_ctl_elem_value *ucontrol)
  146. {
  147. struct cpe_priv *cpe = kcontrol->private_data;
  148. ucontrol->value.integer.value[0] = cpe->afe_mad_ctl;
  149. return 0;
  150. }
  151. static int msm_cpe_afe_mad_ctl_put(struct snd_kcontrol *kcontrol,
  152. struct snd_ctl_elem_value *ucontrol)
  153. {
  154. struct cpe_priv *cpe = kcontrol->private_data;
  155. cpe->afe_mad_ctl = ucontrol->value.integer.value[0];
  156. return 0;
  157. }
  158. static struct snd_kcontrol_new msm_cpe_kcontrols[] = {
  159. SOC_SINGLE_EXT("CPE AFE MAD Enable", SND_SOC_NOPM, 0, 1, 0,
  160. msm_cpe_afe_mad_ctl_get, msm_cpe_afe_mad_ctl_put),
  161. };
  162. /*
  163. * cpe_get_private_data: obtain ASoC platform driver private data
  164. * @substream: ASoC substream for which private data to be obtained
  165. */
  166. static struct cpe_priv *cpe_get_private_data(
  167. struct snd_pcm_substream *substream)
  168. {
  169. struct snd_soc_pcm_runtime *rtd;
  170. if (!substream || !substream->private_data) {
  171. pr_err("%s: %s is invalid\n",
  172. __func__,
  173. (!substream) ? "substream" : "private_data");
  174. goto err_ret;
  175. }
  176. rtd = substream->private_data;
  177. if (!rtd || !rtd->platform) {
  178. pr_err("%s: %s is invalid\n",
  179. __func__,
  180. (!rtd) ? "runtime" : "platform");
  181. goto err_ret;
  182. }
  183. return snd_soc_platform_get_drvdata(rtd->platform);
  184. err_ret:
  185. return NULL;
  186. }
  187. /*
  188. * cpe_get_lsm_data: obtain the lsm session data given the substream
  189. * @substream: ASoC substream for which lsm session data to be obtained
  190. */
  191. static struct cpe_lsm_data *cpe_get_lsm_data(
  192. struct snd_pcm_substream *substream)
  193. {
  194. struct snd_pcm_runtime *runtime = substream->runtime;
  195. return runtime->private_data;
  196. }
  197. static void msm_cpe_process_event_status(void *data,
  198. u8 detect_status, u8 size, u8 *payload)
  199. {
  200. struct cpe_lsm_data *lsm_d = data;
  201. lsm_d->ev_det_status = detect_status;
  202. lsm_d->ev_det_pld_size = size;
  203. lsm_d->ev_det_payload = kzalloc(size, GFP_KERNEL);
  204. if (!lsm_d->ev_det_payload)
  205. return;
  206. memcpy(lsm_d->ev_det_payload, payload, size);
  207. atomic_set(&lsm_d->event_avail, 1);
  208. wake_up(&lsm_d->event_wait);
  209. }
  210. static void msm_cpe_process_event_status_done(struct cpe_lsm_data *lsm_data)
  211. {
  212. kfree(lsm_data->ev_det_payload);
  213. lsm_data->ev_det_payload = NULL;
  214. lsm_data->ev_det_status = 0;
  215. lsm_data->ev_det_pld_size = 0;
  216. }
  217. /*
  218. * msm_cpe_afe_port_cntl: Perform the afe port control
  219. * @substream: substream for which afe port command to be performed
  220. * @core_handle: handle to core
  221. * @afe_ops: handle to the afe operations
  222. * @afe_cfg: afe port configuration data
  223. * @cmd: command to be sent to AFE
  224. *
  225. */
  226. static int msm_cpe_afe_port_cntl(
  227. struct snd_pcm_substream *substream,
  228. void *core_handle,
  229. struct wcd_cpe_afe_ops *afe_ops,
  230. struct wcd_cpe_afe_port_cfg *afe_cfg,
  231. int cmd)
  232. {
  233. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  234. int rc = 0;
  235. if (!afe_cfg->port_id) {
  236. /*
  237. * It is possible driver can get closed without prepare,
  238. * in which case afe ports will not be initialized.
  239. */
  240. dev_dbg(rtd->dev,
  241. "%s: Invalid afe port id\n",
  242. __func__);
  243. return 0;
  244. }
  245. switch (cmd) {
  246. case AFE_CMD_PORT_START:
  247. rc = afe_ops->afe_port_start(core_handle, afe_cfg);
  248. if (rc != 0)
  249. dev_err(rtd->dev,
  250. "%s: AFE port start failed\n",
  251. __func__);
  252. break;
  253. case AFE_CMD_PORT_SUSPEND:
  254. rc = afe_ops->afe_port_suspend(core_handle, afe_cfg);
  255. if (rc != 0)
  256. dev_err(rtd->dev,
  257. "%s: afe_suspend failed, err = %d\n",
  258. __func__, rc);
  259. break;
  260. case AFE_CMD_PORT_RESUME:
  261. rc = afe_ops->afe_port_resume(core_handle, afe_cfg);
  262. if (rc != 0)
  263. dev_err(rtd->dev,
  264. "%s: afe_resume failed, err = %d\n",
  265. __func__, rc);
  266. break;
  267. case AFE_CMD_PORT_STOP:
  268. rc = afe_ops->afe_port_stop(core_handle, afe_cfg);
  269. if (rc != 0)
  270. dev_err(rtd->dev,
  271. "%s: afe_stopfailed, err = %d\n",
  272. __func__, rc);
  273. break;
  274. }
  275. return rc;
  276. }
  277. static int msm_cpe_lsm_lab_stop(struct snd_pcm_substream *substream)
  278. {
  279. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  280. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  281. struct cpe_priv *cpe = cpe_get_private_data(substream);
  282. struct wcd_cpe_lsm_ops *lsm_ops;
  283. struct wcd_cpe_afe_ops *afe_ops;
  284. struct cpe_lsm_session *session;
  285. struct cpe_lsm_lab *lab_d = &lsm_d->lab;
  286. struct msm_slim_dma_data *dma_data = NULL;
  287. int rc;
  288. /*
  289. * the caller is not aware of LAB status and will
  290. * try to stop lab even if it is already stopped.
  291. * return success right away is LAB is already stopped
  292. */
  293. if (lab_d->thread_status == MSM_LSM_LAB_THREAD_STOP) {
  294. dev_dbg(rtd->dev,
  295. "%s: lab already stopped\n",
  296. __func__);
  297. return 0;
  298. }
  299. if (!cpe || !cpe->core_handle) {
  300. dev_err(rtd->dev,
  301. "%s: Invalid private data\n",
  302. __func__);
  303. return -EINVAL;
  304. }
  305. if (!lsm_d->lsm_session) {
  306. dev_err(rtd->dev,
  307. "%s: Invalid session data\n",
  308. __func__);
  309. return -EINVAL;
  310. }
  311. lsm_ops = &cpe->lsm_ops;
  312. afe_ops = &cpe->afe_ops;
  313. session = lsm_d->lsm_session;
  314. if (rtd->cpu_dai)
  315. dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai,
  316. substream);
  317. if (!dma_data || !dma_data->dai_channel_ctl) {
  318. dev_err(rtd->dev,
  319. "%s: dma_data is not set\n",
  320. __func__);
  321. return -EINVAL;
  322. }
  323. if (lab_d->thread_status == MSM_LSM_LAB_THREAD_RUNNING) {
  324. dev_dbg(rtd->dev, "%s: stopping lab thread\n",
  325. __func__);
  326. rc = kthread_stop(session->lsm_lab_thread);
  327. /*
  328. * kthread_stop returns EINTR if the thread_fn
  329. * was not scheduled before calling kthread_stop.
  330. * In this case, we dont need to wait for lab
  331. * thread to complete as lab thread will not be
  332. * scheduled at all.
  333. */
  334. if (rc == -EINTR)
  335. goto done;
  336. /* Wait for the lab thread to exit */
  337. rc = wait_for_completion_timeout(
  338. &lab_d->thread_complete,
  339. MSM_CPE_LAB_THREAD_TIMEOUT);
  340. if (!rc) {
  341. dev_err(rtd->dev,
  342. "%s: Wait for lab thread timedout\n",
  343. __func__);
  344. return -ETIMEDOUT;
  345. }
  346. }
  347. rc = lsm_ops->lab_ch_setup(cpe->core_handle,
  348. session,
  349. WCD_CPE_PRE_DISABLE);
  350. if (rc)
  351. dev_err(rtd->dev,
  352. "%s: PRE ch teardown failed, err = %d\n",
  353. __func__, rc);
  354. /* continue with teardown even if any intermediate step fails */
  355. rc = dma_data->dai_channel_ctl(dma_data, rtd->cpu_dai, false);
  356. if (rc)
  357. dev_err(rtd->dev,
  358. "%s: open data failed %d\n", __func__, rc);
  359. dma_data->ph = 0;
  360. /*
  361. * Even though LAB stop failed,
  362. * output AFE port needs to be stopped
  363. */
  364. rc = afe_ops->afe_port_stop(cpe->core_handle,
  365. &session->afe_out_port_cfg);
  366. if (rc)
  367. dev_err(rtd->dev,
  368. "%s: AFE out port stop failed, err = %d\n",
  369. __func__, rc);
  370. rc = lsm_ops->lab_ch_setup(cpe->core_handle,
  371. session,
  372. WCD_CPE_POST_DISABLE);
  373. if (rc)
  374. dev_err(rtd->dev,
  375. "%s: POST ch teardown failed, err = %d\n",
  376. __func__, rc);
  377. done:
  378. lab_d->thread_status = MSM_LSM_LAB_THREAD_STOP;
  379. lab_d->buf_idx = 0;
  380. atomic_set(&lab_d->in_count, 0);
  381. lab_d->dma_write = 0;
  382. return 0;
  383. }
  384. static int msm_cpe_lab_buf_alloc(struct snd_pcm_substream *substream,
  385. struct cpe_lsm_session *session,
  386. struct msm_slim_dma_data *dma_data)
  387. {
  388. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  389. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  390. struct cpe_lsm_lab *lab_d = &lsm_d->lab;
  391. struct cpe_hw_params *hw_params = &lsm_d->hw_params;
  392. struct cpe_data_pcm_buf *pcm_buf = NULL;
  393. int rc = 0;
  394. int dma_alloc = 0;
  395. u32 count = 0;
  396. u32 bufsz, bufcnt;
  397. if (lab_d->pcm_buf &&
  398. lab_d->pcm_buf->mem) {
  399. dev_dbg(rtd->dev,
  400. "%s: LAB buf already allocated\n",
  401. __func__);
  402. goto exit;
  403. }
  404. bufsz = hw_params->buf_sz;
  405. bufcnt = hw_params->period_count;
  406. dev_dbg(rtd->dev,
  407. "%s:Buf Size %d Buf count %d\n",
  408. __func__,
  409. bufsz, bufcnt);
  410. pcm_buf = kzalloc(((sizeof(struct cpe_data_pcm_buf)) * bufcnt),
  411. GFP_KERNEL);
  412. if (!pcm_buf) {
  413. rc = -ENOMEM;
  414. goto exit;
  415. }
  416. lab_d->pcm_buf = pcm_buf;
  417. dma_alloc = bufsz * bufcnt;
  418. pcm_buf->mem = NULL;
  419. pcm_buf->mem = dma_alloc_coherent(dma_data->sdev->dev.parent,
  420. dma_alloc,
  421. &(pcm_buf->phys),
  422. GFP_KERNEL);
  423. if (!pcm_buf->mem) {
  424. dev_err(rtd->dev,
  425. "%s:DMA alloc failed size = %x\n",
  426. __func__, dma_alloc);
  427. rc = -ENOMEM;
  428. goto fail;
  429. }
  430. count = 0;
  431. while (count < bufcnt) {
  432. pcm_buf[count].mem = pcm_buf[0].mem + (count * bufsz);
  433. pcm_buf[count].phys = pcm_buf[0].phys + (count * bufsz);
  434. dev_dbg(rtd->dev,
  435. "%s: pcm_buf[%d].mem %pK pcm_buf[%d].phys %pK\n",
  436. __func__, count,
  437. (void *)pcm_buf[count].mem,
  438. count, &(pcm_buf[count].phys));
  439. count++;
  440. }
  441. return 0;
  442. fail:
  443. if (pcm_buf) {
  444. if (pcm_buf->mem)
  445. dma_free_coherent(dma_data->sdev->dev.parent, dma_alloc,
  446. pcm_buf->mem, pcm_buf->phys);
  447. kfree(pcm_buf);
  448. lab_d->pcm_buf = NULL;
  449. }
  450. exit:
  451. return rc;
  452. }
  453. static int msm_cpe_lab_buf_dealloc(struct snd_pcm_substream *substream,
  454. struct cpe_lsm_session *session, struct msm_slim_dma_data *dma_data)
  455. {
  456. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  457. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  458. struct cpe_lsm_lab *lab_d = &lsm_d->lab;
  459. struct cpe_hw_params *hw_params = &lsm_d->hw_params;
  460. int rc = 0;
  461. int dma_alloc = 0;
  462. struct cpe_data_pcm_buf *pcm_buf = NULL;
  463. int bufsz, bufcnt;
  464. bufsz = hw_params->buf_sz;
  465. bufcnt = hw_params->period_count;
  466. dev_dbg(rtd->dev,
  467. "%s:Buf Size %d Buf count %d\n", __func__,
  468. bufsz, bufcnt);
  469. if (bufcnt <= 0 || bufsz <= 0) {
  470. dev_err(rtd->dev,
  471. "%s: Invalid params, bufsz = %u, bufcnt = %u\n",
  472. __func__, bufsz, bufcnt);
  473. return -EINVAL;
  474. }
  475. pcm_buf = lab_d->pcm_buf;
  476. dma_alloc = bufsz * bufcnt;
  477. if (dma_data && pcm_buf)
  478. dma_free_coherent(dma_data->sdev->dev.parent, dma_alloc,
  479. pcm_buf->mem, pcm_buf->phys);
  480. kfree(pcm_buf);
  481. lab_d->pcm_buf = NULL;
  482. return rc;
  483. }
  484. /*
  485. * msm_cpe_lab_thread: Initiated on KW detection
  486. * @data: lab data
  487. *
  488. * Start lab thread and call CPE core API for SLIM
  489. * read operations.
  490. */
  491. static int msm_cpe_lab_thread(void *data)
  492. {
  493. struct cpe_lsm_data *lsm_d = data;
  494. struct cpe_lsm_session *session = lsm_d->lsm_session;
  495. struct snd_pcm_substream *substream = lsm_d->substream;
  496. struct cpe_lsm_lab *lab_d = &lsm_d->lab;
  497. struct cpe_hw_params *hw_params = &lsm_d->hw_params;
  498. struct cpe_priv *cpe = cpe_get_private_data(substream);
  499. struct wcd_cpe_lsm_ops *lsm_ops;
  500. struct wcd_cpe_afe_ops *afe_ops;
  501. struct cpe_data_pcm_buf *cur_buf, *next_buf;
  502. struct msm_slim_dma_data *dma_data = NULL;
  503. struct snd_soc_pcm_runtime *rtd = NULL;
  504. bool wait_timedout = false;
  505. int rc = 0;
  506. u32 done_len = 0;
  507. u32 buf_count = 0;
  508. u32 prd_cnt;
  509. allow_signal(SIGKILL);
  510. set_current_state(TASK_INTERRUPTIBLE);
  511. pr_debug("%s: Lab thread start\n", __func__);
  512. init_completion(&lab_d->comp);
  513. if (PCM_RUNTIME_CHECK(substream)) {
  514. rc = -EINVAL;
  515. goto done;
  516. }
  517. if (!cpe || !cpe->core_handle) {
  518. pr_err("%s: Handle to %s is invalid\n",
  519. __func__,
  520. (!cpe) ? "cpe" : "core");
  521. rc = -EINVAL;
  522. goto done;
  523. }
  524. rtd = substream->private_data;
  525. if (rtd->cpu_dai)
  526. dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai,
  527. substream);
  528. if (!dma_data || !dma_data->dai_channel_ctl) {
  529. pr_err("%s: dma_data is not set\n", __func__);
  530. rc = -EINVAL;
  531. goto done;
  532. }
  533. lsm_ops = &cpe->lsm_ops;
  534. afe_ops = &cpe->afe_ops;
  535. rc = lsm_ops->lab_ch_setup(cpe->core_handle,
  536. session,
  537. WCD_CPE_PRE_ENABLE);
  538. if (rc) {
  539. dev_err(rtd->dev,
  540. "%s: PRE ch setup failed, err = %d\n",
  541. __func__, rc);
  542. goto done;
  543. }
  544. rc = dma_data->dai_channel_ctl(dma_data, rtd->cpu_dai, true);
  545. if (rc) {
  546. dev_err(rtd->dev,
  547. "%s: open data failed %d\n", __func__, rc);
  548. goto done;
  549. }
  550. dev_dbg(rtd->dev, "%s: Established data channel\n",
  551. __func__);
  552. init_waitqueue_head(&lab_d->period_wait);
  553. memset(lab_d->pcm_buf[0].mem, 0, lab_d->pcm_size);
  554. rc = slim_port_xfer(dma_data->sdev, dma_data->ph,
  555. lab_d->pcm_buf[0].phys,
  556. hw_params->buf_sz, &lab_d->comp);
  557. if (rc) {
  558. dev_err(rtd->dev,
  559. "%s: buf[0] slim_port_xfer failed, err = %d\n",
  560. __func__, rc);
  561. goto done;
  562. }
  563. rc = slim_port_xfer(dma_data->sdev, dma_data->ph,
  564. lab_d->pcm_buf[1].phys,
  565. hw_params->buf_sz, &lab_d->comp);
  566. if (rc) {
  567. dev_err(rtd->dev,
  568. "%s: buf[0] slim_port_xfer failed, err = %d\n",
  569. __func__, rc);
  570. goto done;
  571. }
  572. cur_buf = &lab_d->pcm_buf[0];
  573. next_buf = &lab_d->pcm_buf[2];
  574. prd_cnt = hw_params->period_count;
  575. rc = lsm_ops->lab_ch_setup(cpe->core_handle,
  576. session,
  577. WCD_CPE_POST_ENABLE);
  578. if (rc) {
  579. dev_err(rtd->dev,
  580. "%s: POST ch setup failed, err = %d\n",
  581. __func__, rc);
  582. goto done;
  583. }
  584. rc = afe_ops->afe_port_start(cpe->core_handle,
  585. &session->afe_out_port_cfg);
  586. if (rc) {
  587. dev_err(rtd->dev,
  588. "%s: AFE out port start failed, err = %d\n",
  589. __func__, rc);
  590. goto done;
  591. }
  592. while (!kthread_should_stop() &&
  593. lab_d->thread_status != MSM_LSM_LAB_THREAD_ERROR) {
  594. rc = slim_port_xfer(dma_data->sdev, dma_data->ph,
  595. next_buf->phys,
  596. hw_params->buf_sz, &lab_d->comp);
  597. if (rc) {
  598. dev_err(rtd->dev,
  599. "%s: slim_port_xfer failed, err = %d\n",
  600. __func__, rc);
  601. lab_d->thread_status = MSM_LSM_LAB_THREAD_ERROR;
  602. }
  603. rc = wait_for_completion_timeout(&lab_d->comp, (2 * HZ/10));
  604. if (!rc) {
  605. dev_err(rtd->dev,
  606. "%s: wait timedout for slim buffer\n",
  607. __func__);
  608. wait_timedout = true;
  609. } else {
  610. wait_timedout = false;
  611. }
  612. rc = slim_port_get_xfer_status(dma_data->sdev,
  613. dma_data->ph,
  614. &cur_buf->phys, &done_len);
  615. if (rc ||
  616. (!rc && wait_timedout)) {
  617. dev_err(rtd->dev,
  618. "%s: xfer_status failure, rc = %d, wait_timedout = %s\n",
  619. __func__, rc,
  620. (wait_timedout ? "true" : "false"));
  621. lab_d->thread_status = MSM_LSM_LAB_THREAD_ERROR;
  622. }
  623. if (done_len ||
  624. ((!done_len) &&
  625. lab_d->thread_status == MSM_LSM_LAB_THREAD_ERROR)) {
  626. atomic_inc(&lab_d->in_count);
  627. lab_d->dma_write += snd_pcm_lib_period_bytes(substream);
  628. snd_pcm_period_elapsed(substream);
  629. wake_up(&lab_d->period_wait);
  630. buf_count++;
  631. cur_buf = &lab_d->pcm_buf[buf_count % prd_cnt];
  632. next_buf = &lab_d->pcm_buf[(buf_count + 2) % prd_cnt];
  633. dev_dbg(rtd->dev,
  634. "%s: Cur buf.mem = %pK Next Buf.mem = %pK\n"
  635. " buf count = 0x%x\n", __func__,
  636. cur_buf->mem, next_buf->mem, buf_count);
  637. } else {
  638. dev_err(rtd->dev,
  639. "%s: SB get status, invalid len = 0x%x\n",
  640. __func__, done_len);
  641. }
  642. done_len = 0;
  643. }
  644. done:
  645. if (rc)
  646. lab_d->thread_status = MSM_LSM_LAB_THREAD_ERROR;
  647. pr_debug("%s: Exit lab_thread, exit_status=%d, thread_status=%d\n",
  648. __func__, rc, lab_d->thread_status);
  649. complete(&lab_d->thread_complete);
  650. return 0;
  651. }
  652. /*
  653. * msm_cpe_lsm_open: ASoC call to open the stream
  654. * @substream: substream that is to be opened
  655. *
  656. * Create session data for lsm session and open the lsm session
  657. * on CPE.
  658. */
  659. static int msm_cpe_lsm_open(struct snd_pcm_substream *substream)
  660. {
  661. struct cpe_lsm_data *lsm_d;
  662. struct snd_pcm_runtime *runtime = substream->runtime;
  663. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  664. struct cpe_priv *cpe = cpe_get_private_data(substream);
  665. struct wcd_cpe_lsm_ops *lsm_ops;
  666. int rc = 0;
  667. if (!cpe || !cpe->codec) {
  668. dev_err(rtd->dev,
  669. "%s: Invalid private data\n",
  670. __func__);
  671. return -EINVAL;
  672. }
  673. runtime->hw = msm_pcm_hardware_listen;
  674. rc = snd_pcm_hw_constraint_list(runtime, 0,
  675. SNDRV_PCM_HW_PARAM_RATE,
  676. &constraints_sample_rates);
  677. if (rc < 0) {
  678. pr_err("snd_pcm_hw_constraint_list failed rc %d\n", rc);
  679. return -EINVAL;
  680. }
  681. /* Ensure that buffer size is a multiple of period size */
  682. rc = snd_pcm_hw_constraint_integer(runtime,
  683. SNDRV_PCM_HW_PARAM_PERIODS);
  684. if (rc < 0) {
  685. pr_err("%s: Unable to set pcm_param_periods, rc %d\n",
  686. __func__, rc);
  687. return -EINVAL;
  688. }
  689. rc = snd_pcm_hw_constraint_minmax(runtime,
  690. SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
  691. LISTEN_MIN_NUM_PERIODS * LISTEN_MIN_PERIOD_SIZE,
  692. LISTEN_MAX_NUM_PERIODS * LISTEN_MAX_PERIOD_SIZE);
  693. if (rc < 0) {
  694. pr_err("%s: Unable to set pcm constraints, rc %d\n",
  695. __func__, rc);
  696. return -EINVAL;
  697. }
  698. cpe->core_handle = wcd_cpe_get_core_handle(cpe->codec);
  699. if (!cpe->core_handle) {
  700. dev_err(rtd->dev,
  701. "%s: Invalid handle to codec core\n",
  702. __func__);
  703. return -EINVAL;
  704. }
  705. lsm_ops = &cpe->lsm_ops;
  706. lsm_d = kzalloc(sizeof(struct cpe_lsm_data), GFP_KERNEL);
  707. if (!lsm_d) {
  708. dev_err(rtd->dev,
  709. "%s: ENOMEM for lsm session, size = %zd\n",
  710. __func__, sizeof(struct cpe_lsm_data));
  711. rc = -ENOMEM;
  712. goto fail_return;
  713. }
  714. mutex_init(&lsm_d->lsm_api_lock);
  715. lsm_d->lsm_session = lsm_ops->lsm_alloc_session(cpe->core_handle,
  716. lsm_d, msm_cpe_process_event_status);
  717. if (!lsm_d->lsm_session) {
  718. dev_err(rtd->dev,
  719. "%s: session allocation failed",
  720. __func__);
  721. rc = -EINVAL;
  722. goto fail_session_alloc;
  723. }
  724. /* Explicitly Assign the LAB thread to STOP state */
  725. lsm_d->lab.thread_status = MSM_LSM_LAB_THREAD_STOP;
  726. lsm_d->lsm_session->started = false;
  727. lsm_d->substream = substream;
  728. init_waitqueue_head(&lsm_d->lab.period_wait);
  729. lsm_d->cpe_prepared = false;
  730. dev_dbg(rtd->dev, "%s: allocated session with id = %d\n",
  731. __func__, lsm_d->lsm_session->id);
  732. rc = lsm_ops->lsm_open_tx(cpe->core_handle, lsm_d->lsm_session,
  733. LSM_VOICE_WAKEUP_APP_V2, 16000);
  734. if (rc < 0) {
  735. dev_err(rtd->dev,
  736. "%s: OPEN_TX cmd failed, err = %d\n",
  737. __func__, rc);
  738. goto fail_open_tx;
  739. }
  740. init_waitqueue_head(&lsm_d->event_wait);
  741. atomic_set(&lsm_d->event_avail, 0);
  742. atomic_set(&lsm_d->event_stop, 0);
  743. runtime->private_data = lsm_d;
  744. return 0;
  745. fail_open_tx:
  746. lsm_ops->lsm_dealloc_session(cpe->core_handle, lsm_d->lsm_session);
  747. fail_session_alloc:
  748. mutex_destroy(&lsm_d->lsm_api_lock);
  749. kfree(lsm_d);
  750. fail_return:
  751. return rc;
  752. }
  753. /*
  754. * msm_cpe_lsm_close: ASoC call to close/cleanup the stream
  755. * @substream: substream that is to be closed
  756. *
  757. * Deallocate the session and release the AFE port. It is not
  758. * required to deregister the sound model as long as we close
  759. * the lsm session on CPE.
  760. */
  761. static int msm_cpe_lsm_close(struct snd_pcm_substream *substream)
  762. {
  763. struct snd_pcm_runtime *runtime = substream->runtime;
  764. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  765. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  766. struct cpe_priv *cpe = cpe_get_private_data(substream);
  767. struct wcd_cpe_lsm_ops *lsm_ops;
  768. struct cpe_lsm_session *session;
  769. struct wcd_cpe_afe_ops *afe_ops;
  770. struct wcd_cpe_afe_port_cfg *afe_cfg;
  771. int rc = 0;
  772. if (!cpe || !cpe->core_handle) {
  773. dev_err(rtd->dev,
  774. "%s: Invalid private data\n",
  775. __func__);
  776. return -EINVAL;
  777. }
  778. if (!lsm_d || !lsm_d->lsm_session) {
  779. dev_err(rtd->dev,
  780. "%s: Invalid session data\n",
  781. __func__);
  782. return -EINVAL;
  783. }
  784. lsm_ops = &cpe->lsm_ops;
  785. session = lsm_d->lsm_session;
  786. afe_ops = &cpe->afe_ops;
  787. afe_cfg = &(lsm_d->lsm_session->afe_port_cfg);
  788. /*
  789. * If driver is closed without stopping LAB,
  790. * explicitly stop LAB before cleaning up the
  791. * driver resources.
  792. */
  793. rc = msm_cpe_lsm_lab_stop(substream);
  794. if (rc) {
  795. dev_err(rtd->dev,
  796. "%s: Failed to stop lab, error = %d\n",
  797. __func__, rc);
  798. return rc;
  799. }
  800. rc = msm_cpe_afe_port_cntl(substream,
  801. cpe->core_handle,
  802. afe_ops, afe_cfg,
  803. AFE_CMD_PORT_STOP);
  804. lsm_d->cpe_prepared = false;
  805. rc = lsm_ops->lsm_close_tx(cpe->core_handle, session);
  806. if (rc != 0) {
  807. dev_err(rtd->dev,
  808. "%s: lsm_close fail, err = %d\n",
  809. __func__, rc);
  810. return rc;
  811. }
  812. lsm_ops->lsm_dealloc_session(cpe->core_handle, session);
  813. runtime->private_data = NULL;
  814. mutex_destroy(&lsm_d->lsm_api_lock);
  815. kfree(lsm_d);
  816. return rc;
  817. }
  818. static int msm_cpe_lsm_get_conf_levels(
  819. struct cpe_lsm_session *session,
  820. u8 *conf_levels_ptr)
  821. {
  822. int rc = 0;
  823. if (session->num_confidence_levels <= 0) {
  824. pr_debug("%s: conf_levels (%u), skip set params\n",
  825. __func__,
  826. session->num_confidence_levels);
  827. goto done;
  828. }
  829. session->conf_levels = kzalloc(session->num_confidence_levels,
  830. GFP_KERNEL);
  831. if (!session->conf_levels) {
  832. rc = -ENOMEM;
  833. goto done;
  834. }
  835. if (copy_from_user(session->conf_levels,
  836. conf_levels_ptr,
  837. session->num_confidence_levels)) {
  838. pr_err("%s: copy_from_user failed for confidence levels %u\n",
  839. __func__, session->num_confidence_levels);
  840. kfree(session->conf_levels);
  841. session->conf_levels = NULL;
  842. rc = -EFAULT;
  843. goto done;
  844. }
  845. done:
  846. return rc;
  847. }
  848. static int msm_cpe_lsm_validate_out_format(
  849. struct snd_pcm_substream *substream,
  850. struct snd_lsm_output_format_cfg *cfg)
  851. {
  852. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  853. int rc = 0;
  854. if (!cfg) {
  855. dev_err(rtd->dev,
  856. "%s: Invalid lsm out cfg\n", __func__);
  857. rc = -EINVAL;
  858. goto done;
  859. }
  860. if (cfg->format != LSM_OUT_FORMAT_PCM &&
  861. cfg->format != LSM_OUT_FORMAT_ADPCM) {
  862. dev_err(rtd->dev,
  863. "%s: Invalid format %u\n",
  864. __func__, cfg->format);
  865. rc = -EINVAL;
  866. goto done;
  867. }
  868. if (cfg->packing != LSM_OUT_DATA_RAW &&
  869. cfg->packing != LSM_OUT_DATA_PACKED) {
  870. dev_err(rtd->dev,
  871. "%s: Invalid packing method %u\n",
  872. __func__, cfg->packing);
  873. rc = -EINVAL;
  874. goto done;
  875. }
  876. if (cfg->events != LSM_OUT_DATA_EVENTS_DISABLED &&
  877. cfg->events != LSM_OUT_DATA_EVENTS_ENABLED) {
  878. dev_err(rtd->dev,
  879. "%s: Invalid events provided %u\n",
  880. __func__, cfg->events);
  881. rc = -EINVAL;
  882. goto done;
  883. }
  884. if (cfg->mode != LSM_OUT_TRANSFER_MODE_RT &&
  885. cfg->mode != LSM_OUT_TRANSFER_MODE_FTRT) {
  886. dev_err(rtd->dev,
  887. "%s: Invalid transfer mode %u\n",
  888. __func__, cfg->mode);
  889. rc = -EINVAL;
  890. goto done;
  891. }
  892. done:
  893. return rc;
  894. }
  895. /*
  896. * msm_cpe_lsm_ioctl_shared: Shared IOCTL for this platform driver
  897. * @substream: ASoC substream for which the operation is invoked
  898. * @cmd: command for the ioctl
  899. * @arg: argument for the ioctl
  900. *
  901. * Perform dedicated listen functions like register sound model,
  902. * deregister sound model, etc
  903. * Called with lsm_api_lock acquired.
  904. */
  905. static int msm_cpe_lsm_ioctl_shared(struct snd_pcm_substream *substream,
  906. unsigned int cmd, void *arg)
  907. {
  908. struct snd_lsm_sound_model_v2 snd_model;
  909. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  910. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  911. struct cpe_priv *cpe = cpe_get_private_data(substream);
  912. struct cpe_lsm_session *session;
  913. struct wcd_cpe_lsm_ops *lsm_ops;
  914. struct cpe_lsm_lab *lab_d = &lsm_d->lab;
  915. struct snd_dma_buffer *dma_buf = &substream->dma_buffer;
  916. struct msm_slim_dma_data *dma_data = NULL;
  917. struct snd_lsm_detection_params det_params;
  918. int rc = 0;
  919. if (!cpe || !cpe->core_handle) {
  920. dev_err(rtd->dev,
  921. "%s: Invalid private data\n",
  922. __func__);
  923. return -EINVAL;
  924. }
  925. if (!lsm_d || !lsm_d->lsm_session) {
  926. dev_err(rtd->dev,
  927. "%s: Invalid session data\n",
  928. __func__);
  929. return -EINVAL;
  930. }
  931. session = lsm_d->lsm_session;
  932. lsm_ops = &cpe->lsm_ops;
  933. switch (cmd) {
  934. case SNDRV_LSM_STOP_LAB:
  935. dev_dbg(rtd->dev,
  936. "%s: %s, lab_enable = %d, lab_thread_ststus = %d\n",
  937. __func__, "SNDRV_LSM_STOP_LAB",
  938. session->lab_enable,
  939. lab_d->thread_status);
  940. if (session->lab_enable &&
  941. lab_d->thread_status != MSM_LSM_LAB_THREAD_STOP) {
  942. atomic_inc(&lab_d->abort_read);
  943. wake_up(&lab_d->period_wait);
  944. rc = msm_cpe_lsm_lab_stop(substream);
  945. if (rc) {
  946. dev_err(rtd->dev,
  947. "%s: stop LAB failed, error = %d\n",
  948. __func__, rc);
  949. return rc;
  950. }
  951. } else if (!session->lab_enable) {
  952. dev_dbg(rtd->dev,
  953. "%s: LAB already stopped\n",
  954. __func__);
  955. }
  956. break;
  957. case SNDRV_LSM_LAB_CONTROL:
  958. if (copy_from_user(&session->lab_enable, (void *)arg,
  959. sizeof(u32))) {
  960. dev_err(rtd->dev,
  961. "%s: copy_from_user failed, size %zd\n",
  962. __func__, sizeof(u32));
  963. return -EFAULT;
  964. }
  965. dev_dbg(rtd->dev,
  966. "%s: %s, lab_enable = %d\n",
  967. __func__, "SNDRV_LSM_LAB_CONTROL",
  968. session->lab_enable);
  969. if (rtd->cpu_dai)
  970. dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai,
  971. substream);
  972. if (!dma_data || !dma_data->dai_channel_ctl) {
  973. dev_err(rtd->dev,
  974. "%s: dma_data is not set\n", __func__);
  975. return -EINVAL;
  976. }
  977. if (session->lab_enable) {
  978. rc = msm_cpe_lab_buf_alloc(substream,
  979. session, dma_data);
  980. if (rc < 0) {
  981. dev_err(rtd->dev,
  982. "%s: lab buffer alloc failed, err = %d\n",
  983. __func__, rc);
  984. return rc;
  985. }
  986. dma_buf->dev.type = SNDRV_DMA_TYPE_DEV;
  987. dma_buf->dev.dev = substream->pcm->card->dev;
  988. dma_buf->private_data = NULL;
  989. dma_buf->area = lab_d->pcm_buf[0].mem;
  990. dma_buf->addr = lab_d->pcm_buf[0].phys;
  991. dma_buf->bytes = (lsm_d->hw_params.buf_sz *
  992. lsm_d->hw_params.period_count);
  993. init_completion(&lab_d->thread_complete);
  994. snd_pcm_set_runtime_buffer(substream,
  995. &substream->dma_buffer);
  996. rc = lsm_ops->lsm_lab_control(cpe->core_handle,
  997. session, true);
  998. if (rc < 0) {
  999. dev_err(rtd->dev,
  1000. "%s: Lab Enable Failed rc %d\n",
  1001. __func__, rc);
  1002. return rc;
  1003. }
  1004. } else {
  1005. /*
  1006. * It is possible that lab is still enabled
  1007. * when trying to de-allocate the lab buffer.
  1008. * Make sure to disable lab before de-allocating
  1009. * the lab buffer.
  1010. */
  1011. rc = msm_cpe_lsm_lab_stop(substream);
  1012. if (rc < 0) {
  1013. dev_err(rtd->dev,
  1014. "%s: LAB stop failed, error = %d\n",
  1015. __func__, rc);
  1016. return rc;
  1017. }
  1018. /*
  1019. * Buffer has to be de-allocated even if
  1020. * lab_control failed.
  1021. */
  1022. rc = msm_cpe_lab_buf_dealloc(substream,
  1023. session, dma_data);
  1024. if (rc < 0) {
  1025. dev_err(rtd->dev,
  1026. "%s: lab buffer free failed, err = %d\n",
  1027. __func__, rc);
  1028. return rc;
  1029. }
  1030. }
  1031. break;
  1032. case SNDRV_LSM_REG_SND_MODEL_V2:
  1033. dev_dbg(rtd->dev,
  1034. "%s: %s\n",
  1035. __func__, "SNDRV_LSM_REG_SND_MODEL_V2");
  1036. memcpy(&snd_model, arg,
  1037. sizeof(struct snd_lsm_sound_model_v2));
  1038. session->num_confidence_levels =
  1039. snd_model.num_confidence_levels;
  1040. rc = msm_cpe_lsm_get_conf_levels(session,
  1041. snd_model.confidence_level);
  1042. if (rc) {
  1043. dev_err(rtd->dev,
  1044. "%s: %s get_conf_levels fail, err = %d\n",
  1045. __func__, "SNDRV_LSM_REG_SND_MODEL_V2",
  1046. rc);
  1047. break;
  1048. }
  1049. session->snd_model_data = kzalloc(snd_model.data_size,
  1050. GFP_KERNEL);
  1051. if (!session->snd_model_data) {
  1052. kfree(session->conf_levels);
  1053. session->conf_levels = NULL;
  1054. return -ENOMEM;
  1055. }
  1056. session->snd_model_size = snd_model.data_size;
  1057. if (copy_from_user(session->snd_model_data,
  1058. snd_model.data, snd_model.data_size)) {
  1059. dev_err(rtd->dev,
  1060. "%s: copy_from_user failed for snd_model\n",
  1061. __func__);
  1062. kfree(session->conf_levels);
  1063. kfree(session->snd_model_data);
  1064. session->conf_levels = NULL;
  1065. session->snd_model_data = NULL;
  1066. return -EFAULT;
  1067. }
  1068. rc = lsm_ops->lsm_shmem_alloc(cpe->core_handle, session,
  1069. session->snd_model_size);
  1070. if (rc != 0) {
  1071. dev_err(rtd->dev,
  1072. "%s: shared memory allocation failed, err = %d\n",
  1073. __func__, rc);
  1074. kfree(session->snd_model_data);
  1075. kfree(session->conf_levels);
  1076. session->snd_model_data = NULL;
  1077. session->conf_levels = NULL;
  1078. return rc;
  1079. }
  1080. rc = lsm_ops->lsm_register_snd_model(cpe->core_handle, session,
  1081. snd_model.detection_mode,
  1082. snd_model.detect_failure);
  1083. if (rc != 0) {
  1084. dev_err(rtd->dev,
  1085. "%s: snd_model_reg failed, err = %d\n",
  1086. __func__, rc);
  1087. lsm_ops->lsm_shmem_dealloc(cpe->core_handle, session);
  1088. kfree(session->snd_model_data);
  1089. kfree(session->conf_levels);
  1090. session->snd_model_data = NULL;
  1091. session->conf_levels = NULL;
  1092. return rc;
  1093. }
  1094. break;
  1095. case SNDRV_LSM_DEREG_SND_MODEL:
  1096. dev_dbg(rtd->dev,
  1097. "%s: %s\n",
  1098. __func__, "SNDRV_LSM_DEREG_SND_MODEL");
  1099. if (session->lab_enable) {
  1100. /*
  1101. * It is possible that lab is still enabled
  1102. * when trying to deregister sound model.
  1103. * Make sure to disable lab before de-allocating
  1104. * the lab buffer.
  1105. */
  1106. rc = msm_cpe_lsm_lab_stop(substream);
  1107. if (rc) {
  1108. dev_err(rtd->dev,
  1109. "%s: LAB stop failed, error = %d\n",
  1110. __func__, rc);
  1111. return rc;
  1112. }
  1113. rc = lsm_ops->lsm_lab_control(cpe->core_handle,
  1114. session, false);
  1115. if (rc)
  1116. dev_err(rtd->dev,
  1117. "%s: Lab Disable Failed rc %d\n",
  1118. __func__, rc);
  1119. dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai,
  1120. substream);
  1121. if (!dma_data || !dma_data->dai_channel_ctl)
  1122. dev_err(rtd->dev,
  1123. "%s: dma_data is not set\n", __func__);
  1124. /*
  1125. * Buffer has to be de-allocated even if
  1126. * lab_control failed and/or dma data is invalid.
  1127. */
  1128. rc = msm_cpe_lab_buf_dealloc(substream,
  1129. session, dma_data);
  1130. if (rc < 0)
  1131. dev_err(rtd->dev,
  1132. "%s: lab buffer free failed, err = %d\n",
  1133. __func__, rc);
  1134. }
  1135. rc = lsm_ops->lsm_deregister_snd_model(
  1136. cpe->core_handle, session);
  1137. if (rc != 0) {
  1138. dev_err(rtd->dev,
  1139. "%s: snd_model de-reg failed, err = %d\n",
  1140. __func__, rc);
  1141. return rc;
  1142. }
  1143. kfree(session->snd_model_data);
  1144. kfree(session->conf_levels);
  1145. session->snd_model_data = NULL;
  1146. session->conf_levels = NULL;
  1147. rc = lsm_ops->lsm_shmem_dealloc(cpe->core_handle, session);
  1148. if (rc != 0) {
  1149. dev_err(rtd->dev,
  1150. "%s: LSM shared memory dealloc failed, err = %d\n",
  1151. __func__, rc);
  1152. return rc;
  1153. }
  1154. break;
  1155. case SNDRV_LSM_EVENT_STATUS:
  1156. case SNDRV_LSM_EVENT_STATUS_V3: {
  1157. struct snd_lsm_event_status *user;
  1158. struct snd_lsm_event_status_v3 *user_v3;
  1159. dev_dbg(rtd->dev,
  1160. "%s: %s\n",
  1161. __func__, "SNDRV_LSM_EVENT_STATUS(_V3)");
  1162. if (!arg) {
  1163. dev_err(rtd->dev,
  1164. "%s: Invalid argument to ioctl %s\n",
  1165. __func__,
  1166. "SNDRV_LSM_EVENT_STATUS(_V3)");
  1167. return -EINVAL;
  1168. }
  1169. /*
  1170. * Release the api lock before wait to allow
  1171. * other IOCTLs to be invoked while waiting
  1172. * for event
  1173. */
  1174. MSM_CPE_LSM_REL_LOCK(&lsm_d->lsm_api_lock,
  1175. "lsm_api_lock");
  1176. rc = wait_event_freezable(lsm_d->event_wait,
  1177. (atomic_read(&lsm_d->event_avail) == 1) ||
  1178. (atomic_read(&lsm_d->event_stop) == 1));
  1179. MSM_CPE_LSM_GRAB_LOCK(&lsm_d->lsm_api_lock,
  1180. "lsm_api_lock");
  1181. if (!rc) {
  1182. if (atomic_read(&lsm_d->event_avail) == 1) {
  1183. rc = 0;
  1184. atomic_set(&lsm_d->event_avail, 0);
  1185. if (cmd == SNDRV_LSM_EVENT_STATUS) {
  1186. user = arg;
  1187. if (lsm_d->ev_det_pld_size >
  1188. user->payload_size) {
  1189. dev_err(rtd->dev,
  1190. "%s: avail pld_bytes = %u, needed = %u\n",
  1191. __func__,
  1192. user->payload_size,
  1193. lsm_d->ev_det_pld_size);
  1194. return -EINVAL;
  1195. }
  1196. user->status = lsm_d->ev_det_status;
  1197. user->payload_size =
  1198. lsm_d->ev_det_pld_size;
  1199. memcpy(user->payload,
  1200. lsm_d->ev_det_payload,
  1201. lsm_d->ev_det_pld_size);
  1202. } else {
  1203. user_v3 = arg;
  1204. if (lsm_d->ev_det_pld_size >
  1205. user_v3->payload_size) {
  1206. dev_err(rtd->dev,
  1207. "%s: avail pld_bytes = %u, needed = %u\n",
  1208. __func__,
  1209. user_v3->payload_size,
  1210. lsm_d->ev_det_pld_size);
  1211. return -EINVAL;
  1212. }
  1213. /* event status timestamp not supported
  1214. * on CPE mode. Set msw and lsw to 0.
  1215. */
  1216. user_v3->timestamp_lsw = 0;
  1217. user_v3->timestamp_msw = 0;
  1218. user_v3->status = lsm_d->ev_det_status;
  1219. user_v3->payload_size =
  1220. lsm_d->ev_det_pld_size;
  1221. memcpy(user_v3->payload,
  1222. lsm_d->ev_det_payload,
  1223. lsm_d->ev_det_pld_size);
  1224. }
  1225. } else if (atomic_read(&lsm_d->event_stop) == 1) {
  1226. dev_dbg(rtd->dev,
  1227. "%s: wait_aborted\n", __func__);
  1228. if (cmd == SNDRV_LSM_EVENT_STATUS) {
  1229. user = arg;
  1230. user->payload_size = 0;
  1231. } else {
  1232. user_v3 = arg;
  1233. user_v3->payload_size = 0;
  1234. }
  1235. rc = 0;
  1236. }
  1237. }
  1238. }
  1239. break;
  1240. case SNDRV_LSM_ABORT_EVENT:
  1241. dev_dbg(rtd->dev,
  1242. "%s: %s\n",
  1243. __func__, "SNDRV_LSM_ABORT_EVENT");
  1244. atomic_set(&lsm_d->event_stop, 1);
  1245. wake_up(&lsm_d->event_wait);
  1246. break;
  1247. case SNDRV_LSM_START:
  1248. dev_dbg(rtd->dev,
  1249. "%s: %s\n",
  1250. __func__, "SNDRV_LSM_START");
  1251. rc = lsm_ops->lsm_start(cpe->core_handle, session);
  1252. if (rc != 0) {
  1253. dev_err(rtd->dev,
  1254. "%s: lsm_start fail, err = %d\n",
  1255. __func__, rc);
  1256. return rc;
  1257. }
  1258. session->started = true;
  1259. break;
  1260. case SNDRV_LSM_STOP:
  1261. dev_dbg(rtd->dev,
  1262. "%s: %s, lab_enable = %d, lab_thread_status = %d\n",
  1263. __func__, "SNDRV_LSM_STOP",
  1264. session->lab_enable,
  1265. lab_d->thread_status);
  1266. if ((session->lab_enable &&
  1267. lab_d->thread_status ==
  1268. MSM_LSM_LAB_THREAD_RUNNING)) {
  1269. /* Explicitly stop LAB */
  1270. rc = msm_cpe_lsm_lab_stop(substream);
  1271. if (rc) {
  1272. dev_err(rtd->dev,
  1273. "%s: lab_stop failed, err = %d\n",
  1274. __func__, rc);
  1275. return rc;
  1276. }
  1277. }
  1278. rc = lsm_ops->lsm_stop(cpe->core_handle, session);
  1279. if (rc != 0) {
  1280. dev_err(rtd->dev,
  1281. "%s: lsm_stop fail err = %d\n",
  1282. __func__, rc);
  1283. return rc;
  1284. }
  1285. session->started = false;
  1286. break;
  1287. case SNDRV_LSM_SET_PARAMS:
  1288. memcpy(&det_params, arg,
  1289. sizeof(det_params));
  1290. if (det_params.num_confidence_levels <= 0) {
  1291. dev_err(rtd->dev,
  1292. "%s: %s: Invalid confidence levels %u\n",
  1293. __func__, "SNDRV_LSM_SET_PARAMS",
  1294. det_params.num_confidence_levels);
  1295. return -EINVAL;
  1296. }
  1297. session->num_confidence_levels =
  1298. det_params.num_confidence_levels;
  1299. rc = msm_cpe_lsm_get_conf_levels(session,
  1300. det_params.conf_level);
  1301. if (rc) {
  1302. dev_err(rtd->dev,
  1303. "%s: %s get_conf_levels fail, err = %d\n",
  1304. __func__, "SNDRV_LSM_SET_PARAMS",
  1305. rc);
  1306. break;
  1307. }
  1308. rc = lsm_ops->lsm_set_data(cpe->core_handle, session,
  1309. det_params.detect_mode,
  1310. det_params.detect_failure);
  1311. if (rc) {
  1312. dev_err(rtd->dev,
  1313. "%s: lsm_set_data failed, err = %d\n",
  1314. __func__, rc);
  1315. return rc;
  1316. }
  1317. kfree(session->conf_levels);
  1318. session->conf_levels = NULL;
  1319. break;
  1320. case SNDRV_LSM_OUT_FORMAT_CFG: {
  1321. struct snd_lsm_output_format_cfg u_fmt_cfg;
  1322. if (!arg) {
  1323. dev_err(rtd->dev,
  1324. "%s: Invalid argument to ioctl %s\n",
  1325. __func__, "SNDRV_LSM_OUT_FORMAT_CFG");
  1326. return -EINVAL;
  1327. }
  1328. if (copy_from_user(&u_fmt_cfg, arg,
  1329. sizeof(u_fmt_cfg))) {
  1330. dev_err(rtd->dev,
  1331. "%s: copy_from_user failed for out_fmt_cfg\n",
  1332. __func__);
  1333. return -EFAULT;
  1334. }
  1335. if (msm_cpe_lsm_validate_out_format(substream,
  1336. &u_fmt_cfg))
  1337. return -EINVAL;
  1338. session->out_fmt_cfg.format = u_fmt_cfg.format;
  1339. session->out_fmt_cfg.pack_mode = u_fmt_cfg.packing;
  1340. session->out_fmt_cfg.data_path_events =
  1341. u_fmt_cfg.events;
  1342. session->out_fmt_cfg.transfer_mode = u_fmt_cfg.mode;
  1343. rc = lsm_ops->lsm_set_fmt_cfg(cpe->core_handle,
  1344. session);
  1345. if (rc) {
  1346. dev_err(rtd->dev,
  1347. "%s: lsm_set_fmt_cfg failed, err = %d\n",
  1348. __func__, rc);
  1349. return rc;
  1350. }
  1351. }
  1352. break;
  1353. case SNDRV_LSM_SET_PORT: {
  1354. u32 port_id = cpe->input_port_id;
  1355. dev_dbg(rtd->dev, "%s: %s\n", __func__, "SNDRV_LSM_SET_PORT");
  1356. rc = lsm_ops->lsm_set_port(cpe->core_handle, session, &port_id);
  1357. if (rc) {
  1358. dev_err(rtd->dev,
  1359. "%s: lsm_set_port failed, err = %d\n",
  1360. __func__, rc);
  1361. return rc;
  1362. }
  1363. }
  1364. break;
  1365. default:
  1366. dev_dbg(rtd->dev,
  1367. "%s: Default snd_lib_ioctl cmd 0x%x\n",
  1368. __func__, cmd);
  1369. rc = snd_pcm_lib_ioctl(substream, cmd, arg);
  1370. }
  1371. return rc;
  1372. }
  1373. static int msm_cpe_lsm_lab_start(struct snd_pcm_substream *substream,
  1374. u16 event_det_status)
  1375. {
  1376. struct snd_soc_pcm_runtime *rtd;
  1377. struct cpe_lsm_data *lsm_d = NULL;
  1378. struct cpe_priv *cpe = NULL;
  1379. struct cpe_lsm_session *session = NULL;
  1380. struct cpe_lsm_lab *lab_d = NULL;
  1381. struct cpe_hw_params *hw_params;
  1382. struct wcd_cpe_lsm_ops *lsm_ops;
  1383. struct wcd_cpe_afe_ops *afe_ops;
  1384. struct wcd_cpe_afe_port_cfg *out_port;
  1385. int rc;
  1386. if (!substream || !substream->private_data) {
  1387. pr_err("%s: invalid substream (%pK)\n",
  1388. __func__, substream);
  1389. return -EINVAL;
  1390. }
  1391. rtd = substream->private_data;
  1392. lsm_d = cpe_get_lsm_data(substream);
  1393. cpe = cpe_get_private_data(substream);
  1394. if (!cpe || !cpe->core_handle) {
  1395. dev_err(rtd->dev,
  1396. "%s: Invalid private data\n",
  1397. __func__);
  1398. return -EINVAL;
  1399. }
  1400. if (!lsm_d || !lsm_d->lsm_session) {
  1401. dev_err(rtd->dev,
  1402. "%s: Invalid session data\n",
  1403. __func__);
  1404. return -EINVAL;
  1405. }
  1406. session = lsm_d->lsm_session;
  1407. lsm_ops = &cpe->lsm_ops;
  1408. lab_d = &lsm_d->lab;
  1409. afe_ops = &cpe->afe_ops;
  1410. hw_params = &lsm_d->hw_params;
  1411. if (!session->started) {
  1412. dev_dbg(rtd->dev,
  1413. "%s: Session is stopped, cannot start LAB\n",
  1414. __func__);
  1415. return 0;
  1416. }
  1417. reinit_completion(&lab_d->thread_complete);
  1418. if (session->lab_enable &&
  1419. event_det_status ==
  1420. LSM_VOICE_WAKEUP_STATUS_DETECTED) {
  1421. out_port = &session->afe_out_port_cfg;
  1422. out_port->port_id = session->afe_out_port_id;
  1423. out_port->bit_width = hw_params->sample_size;
  1424. out_port->num_channels = hw_params->channels;
  1425. out_port->sample_rate = hw_params->sample_rate;
  1426. dev_dbg(rtd->dev, "%s: port_id= %u, bit_width= %u, rate= %u\n",
  1427. __func__, out_port->port_id, out_port->bit_width,
  1428. out_port->sample_rate);
  1429. rc = afe_ops->afe_port_cmd_cfg(cpe->core_handle,
  1430. out_port);
  1431. if (rc) {
  1432. dev_err(rtd->dev,
  1433. "%s: Failed afe generic config v2, err = %d\n",
  1434. __func__, rc);
  1435. return rc;
  1436. }
  1437. atomic_set(&lab_d->abort_read, 0);
  1438. dev_dbg(rtd->dev,
  1439. "%s: KW detected, scheduling LAB thread\n",
  1440. __func__);
  1441. /*
  1442. * Even though thread might be only scheduled and
  1443. * not currently running, mark the internal driver
  1444. * status to running so driver can cancel this thread
  1445. * if it needs to before the thread gets chance to run.
  1446. */
  1447. lab_d->thread_status = MSM_LSM_LAB_THREAD_RUNNING;
  1448. session->lsm_lab_thread = kthread_run(
  1449. msm_cpe_lab_thread,
  1450. lsm_d,
  1451. "lab_thread");
  1452. }
  1453. return 0;
  1454. }
  1455. static bool msm_cpe_lsm_is_valid_stream(struct snd_pcm_substream *substream,
  1456. const char *func)
  1457. {
  1458. struct snd_soc_pcm_runtime *rtd;
  1459. struct cpe_lsm_data *lsm_d = NULL;
  1460. struct cpe_priv *cpe = NULL;
  1461. struct cpe_lsm_session *session = NULL;
  1462. struct wcd_cpe_lsm_ops *lsm_ops;
  1463. if (!substream || !substream->private_data) {
  1464. pr_err("%s: invalid substream (%pK)\n",
  1465. func, substream);
  1466. return false;
  1467. }
  1468. rtd = substream->private_data;
  1469. lsm_d = cpe_get_lsm_data(substream);
  1470. cpe = cpe_get_private_data(substream);
  1471. if (!cpe || !cpe->core_handle) {
  1472. dev_err(rtd->dev,
  1473. "%s: Invalid private data\n",
  1474. func);
  1475. return false;
  1476. }
  1477. if (!lsm_d || !lsm_d->lsm_session) {
  1478. dev_err(rtd->dev,
  1479. "%s: Invalid session data\n",
  1480. func);
  1481. return false;
  1482. }
  1483. session = lsm_d->lsm_session;
  1484. lsm_ops = &cpe->lsm_ops;
  1485. if (!lsm_ops) {
  1486. dev_err(rtd->dev,
  1487. "%s: Invalid lsm_ops\n", func);
  1488. return false;
  1489. }
  1490. return true;
  1491. }
  1492. static int msm_cpe_lsm_set_epd(struct snd_pcm_substream *substream,
  1493. struct lsm_params_info *p_info)
  1494. {
  1495. struct snd_soc_pcm_runtime *rtd;
  1496. struct cpe_lsm_data *lsm_d = NULL;
  1497. struct cpe_priv *cpe = NULL;
  1498. struct cpe_lsm_session *session = NULL;
  1499. struct wcd_cpe_lsm_ops *lsm_ops;
  1500. struct snd_lsm_ep_det_thres epd_thres;
  1501. int rc;
  1502. if (!msm_cpe_lsm_is_valid_stream(substream, __func__))
  1503. return -EINVAL;
  1504. rtd = substream->private_data;
  1505. lsm_d = cpe_get_lsm_data(substream);
  1506. cpe = cpe_get_private_data(substream);
  1507. session = lsm_d->lsm_session;
  1508. lsm_ops = &cpe->lsm_ops;
  1509. if (p_info->param_size != sizeof(epd_thres)) {
  1510. dev_err(rtd->dev,
  1511. "%s: Invalid param_size %d\n",
  1512. __func__, p_info->param_size);
  1513. rc = -EINVAL;
  1514. goto done;
  1515. }
  1516. if (copy_from_user(&epd_thres, p_info->param_data,
  1517. p_info->param_size)) {
  1518. dev_err(rtd->dev,
  1519. "%s: copy_from_user failed, size = %d\n",
  1520. __func__, p_info->param_size);
  1521. rc = -EFAULT;
  1522. goto done;
  1523. }
  1524. rc = lsm_ops->lsm_set_one_param(cpe->core_handle,
  1525. session, p_info, &epd_thres,
  1526. LSM_ENDPOINT_DETECT_THRESHOLD);
  1527. if (unlikely(rc))
  1528. dev_err(rtd->dev,
  1529. "%s: set_one_param(epd_threshold) failed, rc %d\n",
  1530. __func__, rc);
  1531. done:
  1532. return rc;
  1533. }
  1534. static int msm_cpe_lsm_set_mode(struct snd_pcm_substream *substream,
  1535. struct lsm_params_info *p_info)
  1536. {
  1537. struct snd_soc_pcm_runtime *rtd;
  1538. struct cpe_lsm_data *lsm_d = NULL;
  1539. struct cpe_priv *cpe = NULL;
  1540. struct cpe_lsm_session *session = NULL;
  1541. struct wcd_cpe_lsm_ops *lsm_ops;
  1542. struct snd_lsm_detect_mode det_mode;
  1543. int rc;
  1544. if (!msm_cpe_lsm_is_valid_stream(substream, __func__))
  1545. return -EINVAL;
  1546. rtd = substream->private_data;
  1547. lsm_d = cpe_get_lsm_data(substream);
  1548. cpe = cpe_get_private_data(substream);
  1549. session = lsm_d->lsm_session;
  1550. lsm_ops = &cpe->lsm_ops;
  1551. if (p_info->param_size != sizeof(det_mode)) {
  1552. dev_err(rtd->dev,
  1553. "%s: Invalid param_size %d\n",
  1554. __func__, p_info->param_size);
  1555. rc = -EINVAL;
  1556. goto done;
  1557. }
  1558. if (copy_from_user(&det_mode, p_info->param_data,
  1559. p_info->param_size)) {
  1560. dev_err(rtd->dev,
  1561. "%s: copy_from_user failed, size = %d\n",
  1562. __func__, p_info->param_size);
  1563. rc = -EFAULT;
  1564. goto done;
  1565. }
  1566. rc = lsm_ops->lsm_set_one_param(cpe->core_handle,
  1567. session, p_info, &det_mode,
  1568. LSM_OPERATION_MODE);
  1569. if (unlikely(rc))
  1570. dev_err(rtd->dev,
  1571. "%s: set_one_param(epd_threshold) failed, rc %d\n",
  1572. __func__, rc);
  1573. done:
  1574. return rc;
  1575. }
  1576. static int msm_cpe_lsm_set_gain(struct snd_pcm_substream *substream,
  1577. struct lsm_params_info *p_info)
  1578. {
  1579. struct snd_soc_pcm_runtime *rtd;
  1580. struct cpe_lsm_data *lsm_d = NULL;
  1581. struct cpe_priv *cpe = NULL;
  1582. struct cpe_lsm_session *session = NULL;
  1583. struct wcd_cpe_lsm_ops *lsm_ops;
  1584. struct snd_lsm_gain gain;
  1585. int rc;
  1586. if (!msm_cpe_lsm_is_valid_stream(substream, __func__))
  1587. return -EINVAL;
  1588. rtd = substream->private_data;
  1589. lsm_d = cpe_get_lsm_data(substream);
  1590. cpe = cpe_get_private_data(substream);
  1591. session = lsm_d->lsm_session;
  1592. lsm_ops = &cpe->lsm_ops;
  1593. if (p_info->param_size != sizeof(gain)) {
  1594. dev_err(rtd->dev,
  1595. "%s: Invalid param_size %d\n",
  1596. __func__, p_info->param_size);
  1597. rc = -EINVAL;
  1598. goto done;
  1599. }
  1600. if (copy_from_user(&gain, p_info->param_data,
  1601. p_info->param_size)) {
  1602. dev_err(rtd->dev,
  1603. "%s: copy_from_user failed, size = %d\n",
  1604. __func__, p_info->param_size);
  1605. rc = -EFAULT;
  1606. goto done;
  1607. }
  1608. rc = lsm_ops->lsm_set_one_param(cpe->core_handle,
  1609. session, p_info, &gain,
  1610. LSM_GAIN);
  1611. if (unlikely(rc))
  1612. dev_err(rtd->dev,
  1613. "%s: set_one_param(epd_threshold) failed, rc %d\n",
  1614. __func__, rc);
  1615. done:
  1616. return rc;
  1617. }
  1618. static int msm_cpe_lsm_set_conf(struct snd_pcm_substream *substream,
  1619. struct lsm_params_info *p_info)
  1620. {
  1621. struct snd_soc_pcm_runtime *rtd;
  1622. struct cpe_lsm_data *lsm_d = NULL;
  1623. struct cpe_priv *cpe = NULL;
  1624. struct cpe_lsm_session *session = NULL;
  1625. struct wcd_cpe_lsm_ops *lsm_ops;
  1626. int rc;
  1627. if (!msm_cpe_lsm_is_valid_stream(substream, __func__))
  1628. return -EINVAL;
  1629. rtd = substream->private_data;
  1630. lsm_d = cpe_get_lsm_data(substream);
  1631. cpe = cpe_get_private_data(substream);
  1632. session = lsm_d->lsm_session;
  1633. lsm_ops = &cpe->lsm_ops;
  1634. session->num_confidence_levels =
  1635. p_info->param_size;
  1636. rc = msm_cpe_lsm_get_conf_levels(session,
  1637. p_info->param_data);
  1638. if (rc) {
  1639. dev_err(rtd->dev,
  1640. "%s: get_conf_levels failed, err = %d\n",
  1641. __func__, rc);
  1642. goto done;
  1643. }
  1644. rc = lsm_ops->lsm_set_one_param(cpe->core_handle,
  1645. session, p_info, NULL,
  1646. LSM_MIN_CONFIDENCE_LEVELS);
  1647. if (unlikely(rc))
  1648. dev_err(rtd->dev,
  1649. "%s: set_one_param(conf_levels) failed, rc %d\n",
  1650. __func__, rc);
  1651. done:
  1652. return rc;
  1653. }
  1654. static int msm_cpe_lsm_reg_model(struct snd_pcm_substream *substream,
  1655. struct lsm_params_info *p_info)
  1656. {
  1657. struct snd_soc_pcm_runtime *rtd;
  1658. struct cpe_lsm_data *lsm_d = NULL;
  1659. struct cpe_priv *cpe = NULL;
  1660. struct cpe_lsm_session *session = NULL;
  1661. struct wcd_cpe_lsm_ops *lsm_ops;
  1662. int rc;
  1663. size_t offset;
  1664. u8 *snd_model_ptr;
  1665. if (!msm_cpe_lsm_is_valid_stream(substream, __func__))
  1666. return -EINVAL;
  1667. rtd = substream->private_data;
  1668. lsm_d = cpe_get_lsm_data(substream);
  1669. cpe = cpe_get_private_data(substream);
  1670. session = lsm_d->lsm_session;
  1671. lsm_ops = &cpe->lsm_ops;
  1672. lsm_ops->lsm_get_snd_model_offset(cpe->core_handle,
  1673. session, &offset);
  1674. /* Check if 'p_info->param_size + offset' crosses U32_MAX. */
  1675. if (p_info->param_size > U32_MAX - offset) {
  1676. dev_err(rtd->dev,
  1677. "%s: Invalid param_size %d\n",
  1678. __func__, p_info->param_size);
  1679. return -EINVAL;
  1680. }
  1681. session->snd_model_size = p_info->param_size + offset;
  1682. session->snd_model_data = vzalloc(session->snd_model_size);
  1683. if (!session->snd_model_data)
  1684. return -ENOMEM;
  1685. snd_model_ptr = ((u8 *) session->snd_model_data) + offset;
  1686. if (copy_from_user(snd_model_ptr,
  1687. p_info->param_data, p_info->param_size)) {
  1688. dev_err(rtd->dev,
  1689. "%s: copy_from_user for snd_model failed\n",
  1690. __func__);
  1691. rc = -EFAULT;
  1692. goto free_snd_model_data;
  1693. }
  1694. rc = lsm_ops->lsm_shmem_alloc(cpe->core_handle, session,
  1695. session->snd_model_size);
  1696. if (rc != 0) {
  1697. dev_err(rtd->dev,
  1698. "%s: shared memory allocation failed, err = %d\n",
  1699. __func__, rc);
  1700. rc = -EINVAL;
  1701. goto free_snd_model_data;
  1702. }
  1703. rc = lsm_ops->lsm_set_one_param(cpe->core_handle,
  1704. session, p_info, NULL,
  1705. LSM_REG_SND_MODEL);
  1706. if (unlikely(rc)) {
  1707. dev_err(rtd->dev,
  1708. "%s: set_one_param(snd_model) failed, rc %d\n",
  1709. __func__, rc);
  1710. goto dealloc_shmem;
  1711. }
  1712. return 0;
  1713. dealloc_shmem:
  1714. lsm_ops->lsm_shmem_dealloc(cpe->core_handle, session);
  1715. free_snd_model_data:
  1716. vfree(session->snd_model_data);
  1717. return rc;
  1718. }
  1719. static int msm_cpe_lsm_dereg_model(struct snd_pcm_substream *substream,
  1720. struct lsm_params_info *p_info)
  1721. {
  1722. struct snd_soc_pcm_runtime *rtd;
  1723. struct cpe_lsm_data *lsm_d = NULL;
  1724. struct cpe_priv *cpe = NULL;
  1725. struct cpe_lsm_session *session = NULL;
  1726. struct wcd_cpe_lsm_ops *lsm_ops;
  1727. int rc;
  1728. if (!msm_cpe_lsm_is_valid_stream(substream, __func__))
  1729. return -EINVAL;
  1730. rtd = substream->private_data;
  1731. lsm_d = cpe_get_lsm_data(substream);
  1732. cpe = cpe_get_private_data(substream);
  1733. session = lsm_d->lsm_session;
  1734. lsm_ops = &cpe->lsm_ops;
  1735. rc = lsm_ops->lsm_set_one_param(cpe->core_handle,
  1736. session, p_info, NULL,
  1737. LSM_DEREG_SND_MODEL);
  1738. if (rc)
  1739. dev_err(rtd->dev,
  1740. "%s: dereg_snd_model failed\n",
  1741. __func__);
  1742. return lsm_ops->lsm_shmem_dealloc(cpe->core_handle, session);
  1743. }
  1744. static int msm_cpe_lsm_set_custom(struct snd_pcm_substream *substream,
  1745. struct lsm_params_info *p_info)
  1746. {
  1747. struct snd_soc_pcm_runtime *rtd;
  1748. struct cpe_lsm_data *lsm_d = NULL;
  1749. struct cpe_priv *cpe = NULL;
  1750. struct cpe_lsm_session *session = NULL;
  1751. struct wcd_cpe_lsm_ops *lsm_ops;
  1752. u8 *data;
  1753. int rc;
  1754. if (!msm_cpe_lsm_is_valid_stream(substream, __func__))
  1755. return -EINVAL;
  1756. rtd = substream->private_data;
  1757. lsm_d = cpe_get_lsm_data(substream);
  1758. cpe = cpe_get_private_data(substream);
  1759. session = lsm_d->lsm_session;
  1760. lsm_ops = &cpe->lsm_ops;
  1761. if (p_info->param_size > MSM_CPE_MAX_CUSTOM_PARAM_SIZE) {
  1762. dev_err(rtd->dev,
  1763. "%s: invalid size %d, max allowed %d\n",
  1764. __func__, p_info->param_size,
  1765. MSM_CPE_MAX_CUSTOM_PARAM_SIZE);
  1766. return -EINVAL;
  1767. }
  1768. data = kzalloc(p_info->param_size, GFP_KERNEL);
  1769. if (!data)
  1770. return -ENOMEM;
  1771. if (copy_from_user(data, p_info->param_data,
  1772. p_info->param_size)) {
  1773. dev_err(rtd->dev,
  1774. "%s: copy_from_user failed for custom params, size = %d\n",
  1775. __func__, p_info->param_size);
  1776. rc = -EFAULT;
  1777. goto err_ret;
  1778. }
  1779. rc = lsm_ops->lsm_set_one_param(cpe->core_handle,
  1780. session, p_info, data,
  1781. LSM_CUSTOM_PARAMS);
  1782. if (rc)
  1783. dev_err(rtd->dev,
  1784. "%s: custom_params failed, err = %d\n",
  1785. __func__, rc);
  1786. err_ret:
  1787. kfree(data);
  1788. return rc;
  1789. }
  1790. static int msm_cpe_lsm_process_params(struct snd_pcm_substream *substream,
  1791. struct snd_lsm_module_params *p_data,
  1792. void *params)
  1793. {
  1794. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  1795. struct lsm_params_info *p_info;
  1796. int i;
  1797. int rc = 0;
  1798. p_info = (struct lsm_params_info *) params;
  1799. for (i = 0; i < p_data->num_params; i++) {
  1800. dev_dbg(rtd->dev,
  1801. "%s: param (%d), module_id = 0x%x, param_id = 0x%x, param_size = 0x%x, param_type = 0x%x\n",
  1802. __func__, i, p_info->module_id,
  1803. p_info->param_id, p_info->param_size,
  1804. p_info->param_type);
  1805. switch (p_info->param_type) {
  1806. case LSM_ENDPOINT_DETECT_THRESHOLD:
  1807. rc = msm_cpe_lsm_set_epd(substream, p_info);
  1808. break;
  1809. case LSM_OPERATION_MODE:
  1810. rc = msm_cpe_lsm_set_mode(substream, p_info);
  1811. break;
  1812. case LSM_GAIN:
  1813. rc = msm_cpe_lsm_set_gain(substream, p_info);
  1814. break;
  1815. case LSM_MIN_CONFIDENCE_LEVELS:
  1816. rc = msm_cpe_lsm_set_conf(substream, p_info);
  1817. break;
  1818. case LSM_REG_SND_MODEL:
  1819. rc = msm_cpe_lsm_reg_model(substream, p_info);
  1820. break;
  1821. case LSM_DEREG_SND_MODEL:
  1822. rc = msm_cpe_lsm_dereg_model(substream, p_info);
  1823. break;
  1824. case LSM_CUSTOM_PARAMS:
  1825. rc = msm_cpe_lsm_set_custom(substream, p_info);
  1826. break;
  1827. default:
  1828. dev_err(rtd->dev,
  1829. "%s: Invalid param_type %d\n",
  1830. __func__, p_info->param_type);
  1831. rc = -EINVAL;
  1832. break;
  1833. }
  1834. if (rc) {
  1835. pr_err("%s: set_param fail for param_type %d\n",
  1836. __func__, p_info->param_type);
  1837. return rc;
  1838. }
  1839. p_info++;
  1840. }
  1841. return rc;
  1842. }
  1843. static int msm_cpe_lsm_ioctl(struct snd_pcm_substream *substream,
  1844. unsigned int cmd, void *arg)
  1845. {
  1846. int err = 0;
  1847. struct snd_soc_pcm_runtime *rtd;
  1848. struct cpe_priv *cpe = NULL;
  1849. struct cpe_lsm_data *lsm_d = NULL;
  1850. struct cpe_lsm_session *session = NULL;
  1851. struct wcd_cpe_lsm_ops *lsm_ops;
  1852. if (!substream || !substream->private_data) {
  1853. pr_err("%s: invalid substream (%pK)\n",
  1854. __func__, substream);
  1855. return -EINVAL;
  1856. }
  1857. rtd = substream->private_data;
  1858. lsm_d = cpe_get_lsm_data(substream);
  1859. cpe = cpe_get_private_data(substream);
  1860. if (!cpe || !cpe->core_handle) {
  1861. dev_err(rtd->dev,
  1862. "%s: Invalid private data\n",
  1863. __func__);
  1864. return -EINVAL;
  1865. }
  1866. if (!lsm_d || !lsm_d->lsm_session) {
  1867. dev_err(rtd->dev,
  1868. "%s: Invalid session data\n",
  1869. __func__);
  1870. return -EINVAL;
  1871. }
  1872. MSM_CPE_LSM_GRAB_LOCK(&lsm_d->lsm_api_lock,
  1873. "lsm_api_lock");
  1874. session = lsm_d->lsm_session;
  1875. lsm_ops = &cpe->lsm_ops;
  1876. switch (cmd) {
  1877. case SNDRV_LSM_REG_SND_MODEL_V2: {
  1878. struct snd_lsm_sound_model_v2 snd_model;
  1879. if (session->is_topology_used) {
  1880. dev_err(rtd->dev,
  1881. "%s: %s: not supported if using topology\n",
  1882. __func__, "LSM_REG_SND_MODEL_V2");
  1883. err = -EINVAL;
  1884. goto done;
  1885. }
  1886. if (copy_from_user(&snd_model, (void *)arg,
  1887. sizeof(struct snd_lsm_sound_model_v2))) {
  1888. dev_err(rtd->dev,
  1889. "%s: copy from user failed, size %zd\n",
  1890. __func__,
  1891. sizeof(struct snd_lsm_sound_model_v2));
  1892. err = -EFAULT;
  1893. goto done;
  1894. }
  1895. err = msm_cpe_lsm_ioctl_shared(substream, cmd,
  1896. &snd_model);
  1897. }
  1898. break;
  1899. case SNDRV_LSM_EVENT_STATUS: {
  1900. struct snd_lsm_event_status u_event_status;
  1901. struct snd_lsm_event_status *event_status = NULL;
  1902. int u_pld_size = 0;
  1903. if (copy_from_user(&u_event_status, (void *)arg,
  1904. sizeof(struct snd_lsm_event_status))) {
  1905. dev_err(rtd->dev,
  1906. "%s: event status copy from user failed, size %zd\n",
  1907. __func__,
  1908. sizeof(struct snd_lsm_event_status));
  1909. err = -EFAULT;
  1910. goto done;
  1911. }
  1912. if (u_event_status.payload_size >
  1913. LISTEN_MAX_STATUS_PAYLOAD_SIZE) {
  1914. dev_err(rtd->dev,
  1915. "%s: payload_size %d is invalid, max allowed = %d\n",
  1916. __func__, u_event_status.payload_size,
  1917. LISTEN_MAX_STATUS_PAYLOAD_SIZE);
  1918. err = -EINVAL;
  1919. goto done;
  1920. }
  1921. u_pld_size = sizeof(struct snd_lsm_event_status) +
  1922. u_event_status.payload_size;
  1923. event_status = kzalloc(u_pld_size, GFP_KERNEL);
  1924. if (!event_status) {
  1925. err = -ENOMEM;
  1926. goto done;
  1927. } else {
  1928. event_status->payload_size =
  1929. u_event_status.payload_size;
  1930. err = msm_cpe_lsm_ioctl_shared(substream,
  1931. cmd, event_status);
  1932. }
  1933. if (!err && copy_to_user(arg, event_status, u_pld_size)) {
  1934. dev_err(rtd->dev,
  1935. "%s: copy to user failed\n",
  1936. __func__);
  1937. kfree(event_status);
  1938. err = -EFAULT;
  1939. goto done;
  1940. }
  1941. msm_cpe_lsm_lab_start(substream, event_status->status);
  1942. msm_cpe_process_event_status_done(lsm_d);
  1943. kfree(event_status);
  1944. }
  1945. break;
  1946. case SNDRV_LSM_EVENT_STATUS_V3: {
  1947. struct snd_lsm_event_status_v3 u_event_status;
  1948. struct snd_lsm_event_status_v3 *event_status = NULL;
  1949. int u_pld_size = 0;
  1950. if (copy_from_user(&u_event_status, (void *)arg,
  1951. sizeof(struct snd_lsm_event_status_v3))) {
  1952. dev_err(rtd->dev,
  1953. "%s: event status copy from user failed, size %zd\n",
  1954. __func__,
  1955. sizeof(struct snd_lsm_event_status_v3));
  1956. err = -EFAULT;
  1957. goto done;
  1958. }
  1959. if (u_event_status.payload_size >
  1960. LISTEN_MAX_STATUS_PAYLOAD_SIZE) {
  1961. dev_err(rtd->dev,
  1962. "%s: payload_size %d is invalid, max allowed = %d\n",
  1963. __func__, u_event_status.payload_size,
  1964. LISTEN_MAX_STATUS_PAYLOAD_SIZE);
  1965. err = -EINVAL;
  1966. goto done;
  1967. }
  1968. u_pld_size = sizeof(struct snd_lsm_event_status_v3) +
  1969. u_event_status.payload_size;
  1970. event_status = kzalloc(u_pld_size, GFP_KERNEL);
  1971. if (!event_status) {
  1972. err = -ENOMEM;
  1973. goto done;
  1974. } else {
  1975. event_status->payload_size =
  1976. u_event_status.payload_size;
  1977. err = msm_cpe_lsm_ioctl_shared(substream,
  1978. cmd, event_status);
  1979. }
  1980. if (!err && copy_to_user(arg, event_status, u_pld_size)) {
  1981. dev_err(rtd->dev,
  1982. "%s: copy to user failed\n",
  1983. __func__);
  1984. kfree(event_status);
  1985. err = -EFAULT;
  1986. goto done;
  1987. }
  1988. msm_cpe_lsm_lab_start(substream, event_status->status);
  1989. msm_cpe_process_event_status_done(lsm_d);
  1990. kfree(event_status);
  1991. }
  1992. break;
  1993. case SNDRV_LSM_SET_PARAMS: {
  1994. struct snd_lsm_detection_params det_params;
  1995. if (session->is_topology_used) {
  1996. dev_err(rtd->dev,
  1997. "%s: %s: not supported if using topology\n",
  1998. __func__, "SNDRV_LSM_SET_PARAMS");
  1999. err = -EINVAL;
  2000. goto done;
  2001. }
  2002. if (copy_from_user(&det_params, (void *) arg,
  2003. sizeof(det_params))) {
  2004. dev_err(rtd->dev,
  2005. "%s: %s: copy_from_user failed, size = %zd\n",
  2006. __func__, "SNDRV_LSM_SET_PARAMS",
  2007. sizeof(det_params));
  2008. err = -EFAULT;
  2009. goto done;
  2010. }
  2011. err = msm_cpe_lsm_ioctl_shared(substream, cmd,
  2012. &det_params);
  2013. }
  2014. break;
  2015. case SNDRV_LSM_SET_MODULE_PARAMS: {
  2016. struct snd_lsm_module_params p_data;
  2017. size_t p_size;
  2018. u8 *params;
  2019. if (!session->is_topology_used) {
  2020. dev_err(rtd->dev,
  2021. "%s: %s: not supported if not using topology\n",
  2022. __func__, "SET_MODULE_PARAMS");
  2023. err = -EINVAL;
  2024. goto done;
  2025. }
  2026. if (!arg) {
  2027. dev_err(rtd->dev,
  2028. "%s: %s: No Param data to set\n",
  2029. __func__, "SET_MODULE_PARAMS");
  2030. err = -EINVAL;
  2031. goto done;
  2032. }
  2033. if (copy_from_user(&p_data, arg,
  2034. sizeof(p_data))) {
  2035. dev_err(rtd->dev,
  2036. "%s: %s: copy_from_user failed, size = %zd\n",
  2037. __func__, "p_data", sizeof(p_data));
  2038. err = -EFAULT;
  2039. goto done;
  2040. }
  2041. if (p_data.num_params > LSM_PARAMS_MAX) {
  2042. dev_err(rtd->dev,
  2043. "%s: %s: Invalid num_params %d\n",
  2044. __func__, "SET_MODULE_PARAMS",
  2045. p_data.num_params);
  2046. err = -EINVAL;
  2047. goto done;
  2048. }
  2049. p_size = p_data.num_params *
  2050. sizeof(struct lsm_params_info);
  2051. if (p_data.data_size != p_size) {
  2052. dev_err(rtd->dev,
  2053. "%s: %s: Invalid size %zd\n",
  2054. __func__, "SET_MODULE_PARAMS", p_size);
  2055. err = -EFAULT;
  2056. goto done;
  2057. }
  2058. params = kzalloc(p_size, GFP_KERNEL);
  2059. if (!params) {
  2060. err = -ENOMEM;
  2061. goto done;
  2062. }
  2063. if (copy_from_user(params, p_data.params,
  2064. p_data.data_size)) {
  2065. dev_err(rtd->dev,
  2066. "%s: %s: copy_from_user failed, size = %d\n",
  2067. __func__, "params", p_data.data_size);
  2068. kfree(params);
  2069. err = -EFAULT;
  2070. goto done;
  2071. }
  2072. err = msm_cpe_lsm_process_params(substream, &p_data, params);
  2073. if (err)
  2074. dev_err(rtd->dev,
  2075. "%s: %s: Failed to set params, err = %d\n",
  2076. __func__, "SET_MODULE_PARAMS", err);
  2077. kfree(params);
  2078. break;
  2079. }
  2080. default:
  2081. err = msm_cpe_lsm_ioctl_shared(substream, cmd, arg);
  2082. break;
  2083. }
  2084. done:
  2085. MSM_CPE_LSM_REL_LOCK(&lsm_d->lsm_api_lock,
  2086. "lsm_api_lock");
  2087. return err;
  2088. }
  2089. #ifdef CONFIG_COMPAT
  2090. struct snd_lsm_sound_model_v2_32 {
  2091. compat_uptr_t data;
  2092. compat_uptr_t confidence_level;
  2093. u32 data_size;
  2094. enum lsm_detection_mode detection_mode;
  2095. u8 num_confidence_levels;
  2096. bool detect_failure;
  2097. };
  2098. struct snd_lsm_detection_params_32 {
  2099. compat_uptr_t conf_level;
  2100. enum lsm_detection_mode detect_mode;
  2101. u8 num_confidence_levels;
  2102. bool detect_failure;
  2103. };
  2104. struct lsm_params_info_32 {
  2105. u32 module_id;
  2106. u32 param_id;
  2107. u32 param_size;
  2108. compat_uptr_t param_data;
  2109. uint32_t param_type;
  2110. };
  2111. struct snd_lsm_module_params_32 {
  2112. compat_uptr_t params;
  2113. u32 num_params;
  2114. u32 data_size;
  2115. };
  2116. enum {
  2117. SNDRV_LSM_REG_SND_MODEL_V2_32 =
  2118. _IOW('U', 0x07, struct snd_lsm_sound_model_v2_32),
  2119. SNDRV_LSM_SET_PARAMS32 =
  2120. _IOW('U', 0x0A, struct snd_lsm_detection_params_32),
  2121. SNDRV_LSM_SET_MODULE_PARAMS_32 =
  2122. _IOW('U', 0x0B, struct snd_lsm_module_params_32),
  2123. };
  2124. static int msm_cpe_lsm_ioctl_compat(struct snd_pcm_substream *substream,
  2125. unsigned int cmd, void *arg)
  2126. {
  2127. int err = 0;
  2128. struct snd_soc_pcm_runtime *rtd;
  2129. struct cpe_priv *cpe = NULL;
  2130. struct cpe_lsm_data *lsm_d = NULL;
  2131. struct cpe_lsm_session *session = NULL;
  2132. struct wcd_cpe_lsm_ops *lsm_ops;
  2133. if (!substream || !substream->private_data) {
  2134. pr_err("%s: invalid substream (%pK)\n",
  2135. __func__, substream);
  2136. return -EINVAL;
  2137. }
  2138. rtd = substream->private_data;
  2139. lsm_d = cpe_get_lsm_data(substream);
  2140. cpe = cpe_get_private_data(substream);
  2141. if (!cpe || !cpe->core_handle) {
  2142. dev_err(rtd->dev,
  2143. "%s: Invalid private data\n",
  2144. __func__);
  2145. return -EINVAL;
  2146. }
  2147. if (!lsm_d || !lsm_d->lsm_session) {
  2148. dev_err(rtd->dev,
  2149. "%s: Invalid session data\n",
  2150. __func__);
  2151. return -EINVAL;
  2152. }
  2153. MSM_CPE_LSM_GRAB_LOCK(&lsm_d->lsm_api_lock,
  2154. "lsm_api_lock");
  2155. session = lsm_d->lsm_session;
  2156. lsm_ops = &cpe->lsm_ops;
  2157. switch (cmd) {
  2158. case SNDRV_LSM_REG_SND_MODEL_V2_32: {
  2159. struct snd_lsm_sound_model_v2 snd_model;
  2160. struct snd_lsm_sound_model_v2_32 snd_model32;
  2161. if (session->is_topology_used) {
  2162. dev_err(rtd->dev,
  2163. "%s: %s: not supported if using topology\n",
  2164. __func__, "LSM_REG_SND_MODEL_V2_32");
  2165. err = -EINVAL;
  2166. goto done;
  2167. }
  2168. dev_dbg(rtd->dev,
  2169. "%s: ioctl %s\n", __func__,
  2170. "SNDRV_LSM_REG_SND_MODEL_V2_32");
  2171. if (copy_from_user(&snd_model32, (void *)arg,
  2172. sizeof(snd_model32))) {
  2173. dev_err(rtd->dev,
  2174. "%s: copy from user failed, size %zd\n",
  2175. __func__,
  2176. sizeof(snd_model32));
  2177. err = -EFAULT;
  2178. goto done;
  2179. }
  2180. snd_model.data = compat_ptr(snd_model32.data);
  2181. snd_model.confidence_level =
  2182. compat_ptr(snd_model32.confidence_level);
  2183. snd_model.data_size = snd_model32.data_size;
  2184. snd_model.detect_failure = snd_model32.detect_failure;
  2185. snd_model.num_confidence_levels =
  2186. snd_model32.num_confidence_levels;
  2187. snd_model.detection_mode = snd_model32.detection_mode;
  2188. cmd = SNDRV_LSM_REG_SND_MODEL_V2;
  2189. err = msm_cpe_lsm_ioctl_shared(substream, cmd, &snd_model);
  2190. if (err)
  2191. dev_err(rtd->dev,
  2192. "%s: %s failed, error = %d\n",
  2193. __func__,
  2194. "SNDRV_LSM_REG_SND_MODEL_V2_32",
  2195. err);
  2196. }
  2197. break;
  2198. case SNDRV_LSM_EVENT_STATUS: {
  2199. struct snd_lsm_event_status *event_status = NULL;
  2200. struct snd_lsm_event_status u_event_status32;
  2201. struct snd_lsm_event_status *udata_32 = NULL;
  2202. int u_pld_size = 0;
  2203. dev_dbg(rtd->dev,
  2204. "%s: ioctl %s\n", __func__,
  2205. "SNDRV_LSM_EVENT_STATUS32");
  2206. if (copy_from_user(&u_event_status32, (void *)arg,
  2207. sizeof(struct snd_lsm_event_status))) {
  2208. dev_err(rtd->dev,
  2209. "%s: event status copy from user failed, size %zd\n",
  2210. __func__,
  2211. sizeof(struct snd_lsm_event_status));
  2212. err = -EFAULT;
  2213. goto done;
  2214. }
  2215. if (u_event_status32.payload_size >
  2216. LISTEN_MAX_STATUS_PAYLOAD_SIZE) {
  2217. dev_err(rtd->dev,
  2218. "%s: payload_size %d is invalid, max allowed = %d\n",
  2219. __func__, u_event_status32.payload_size,
  2220. LISTEN_MAX_STATUS_PAYLOAD_SIZE);
  2221. err = -EINVAL;
  2222. goto done;
  2223. }
  2224. u_pld_size = sizeof(struct snd_lsm_event_status) +
  2225. u_event_status32.payload_size;
  2226. event_status = kzalloc(u_pld_size, GFP_KERNEL);
  2227. if (!event_status) {
  2228. dev_err(rtd->dev,
  2229. "%s: No memory for event status\n",
  2230. __func__);
  2231. err = -ENOMEM;
  2232. goto done;
  2233. } else {
  2234. event_status->payload_size =
  2235. u_event_status32.payload_size;
  2236. err = msm_cpe_lsm_ioctl_shared(substream,
  2237. cmd, event_status);
  2238. if (err)
  2239. dev_err(rtd->dev,
  2240. "%s: %s failed, error = %d\n",
  2241. __func__,
  2242. "SNDRV_LSM_EVENT_STATUS32",
  2243. err);
  2244. }
  2245. if (!err) {
  2246. udata_32 = kzalloc(u_pld_size, GFP_KERNEL);
  2247. if (!udata_32) {
  2248. dev_err(rtd->dev,
  2249. "%s: nomem for udata\n",
  2250. __func__);
  2251. err = -EFAULT;
  2252. } else {
  2253. udata_32->status = event_status->status;
  2254. udata_32->payload_size =
  2255. event_status->payload_size;
  2256. memcpy(udata_32->payload,
  2257. event_status->payload,
  2258. u_pld_size);
  2259. }
  2260. }
  2261. if (!err && copy_to_user(arg, udata_32,
  2262. u_pld_size)) {
  2263. dev_err(rtd->dev,
  2264. "%s: copy to user failed\n",
  2265. __func__);
  2266. kfree(event_status);
  2267. kfree(udata_32);
  2268. err = -EFAULT;
  2269. goto done;
  2270. }
  2271. msm_cpe_lsm_lab_start(substream, event_status->status);
  2272. msm_cpe_process_event_status_done(lsm_d);
  2273. kfree(event_status);
  2274. kfree(udata_32);
  2275. }
  2276. break;
  2277. case SNDRV_LSM_EVENT_STATUS_V3: {
  2278. struct snd_lsm_event_status_v3 *event_status = NULL;
  2279. struct snd_lsm_event_status_v3 u_event_status32;
  2280. struct snd_lsm_event_status_v3 *udata_32 = NULL;
  2281. int u_pld_size = 0;
  2282. dev_dbg(rtd->dev,
  2283. "%s: ioctl %s\n", __func__,
  2284. "SNDRV_LSM_EVENT_STATUS_V3_32");
  2285. if (copy_from_user(&u_event_status32, (void *)arg,
  2286. sizeof(struct snd_lsm_event_status_v3))) {
  2287. dev_err(rtd->dev,
  2288. "%s: event status copy from user failed, size %zd\n",
  2289. __func__,
  2290. sizeof(struct snd_lsm_event_status_v3));
  2291. err = -EFAULT;
  2292. goto done;
  2293. }
  2294. if (u_event_status32.payload_size >
  2295. LISTEN_MAX_STATUS_PAYLOAD_SIZE) {
  2296. dev_err(rtd->dev,
  2297. "%s: payload_size %d is invalid, max allowed = %d\n",
  2298. __func__, u_event_status32.payload_size,
  2299. LISTEN_MAX_STATUS_PAYLOAD_SIZE);
  2300. err = -EINVAL;
  2301. goto done;
  2302. }
  2303. u_pld_size = sizeof(struct snd_lsm_event_status_v3) +
  2304. u_event_status32.payload_size;
  2305. event_status = kzalloc(u_pld_size, GFP_KERNEL);
  2306. if (!event_status) {
  2307. dev_err(rtd->dev,
  2308. "%s: No memory for event status\n",
  2309. __func__);
  2310. err = -ENOMEM;
  2311. goto done;
  2312. } else {
  2313. event_status->payload_size =
  2314. u_event_status32.payload_size;
  2315. err = msm_cpe_lsm_ioctl_shared(substream,
  2316. cmd, event_status);
  2317. if (err)
  2318. dev_err(rtd->dev,
  2319. "%s: %s failed, error = %d\n",
  2320. __func__,
  2321. "SNDRV_LSM_EVENT_STATUS_V3_32",
  2322. err);
  2323. }
  2324. if (!err) {
  2325. udata_32 = kzalloc(u_pld_size, GFP_KERNEL);
  2326. if (!udata_32) {
  2327. dev_err(rtd->dev,
  2328. "%s: nomem for udata\n",
  2329. __func__);
  2330. err = -EFAULT;
  2331. } else {
  2332. udata_32->timestamp_lsw =
  2333. event_status->timestamp_lsw;
  2334. udata_32->timestamp_msw =
  2335. event_status->timestamp_msw;
  2336. udata_32->status = event_status->status;
  2337. udata_32->payload_size =
  2338. event_status->payload_size;
  2339. memcpy(udata_32->payload,
  2340. event_status->payload,
  2341. u_pld_size);
  2342. }
  2343. }
  2344. if (!err && copy_to_user(arg, udata_32,
  2345. u_pld_size)) {
  2346. dev_err(rtd->dev,
  2347. "%s: copy to user failed\n",
  2348. __func__);
  2349. kfree(event_status);
  2350. kfree(udata_32);
  2351. err = -EFAULT;
  2352. goto done;
  2353. }
  2354. msm_cpe_lsm_lab_start(substream, event_status->status);
  2355. msm_cpe_process_event_status_done(lsm_d);
  2356. kfree(event_status);
  2357. kfree(udata_32);
  2358. }
  2359. break;
  2360. case SNDRV_LSM_SET_PARAMS32: {
  2361. struct snd_lsm_detection_params_32 det_params32;
  2362. struct snd_lsm_detection_params det_params;
  2363. if (session->is_topology_used) {
  2364. dev_err(rtd->dev,
  2365. "%s: %s: not supported if using topology\n",
  2366. __func__, "SNDRV_LSM_SET_PARAMS32");
  2367. err = -EINVAL;
  2368. goto done;
  2369. }
  2370. if (copy_from_user(&det_params32, arg,
  2371. sizeof(det_params32))) {
  2372. err = -EFAULT;
  2373. dev_err(rtd->dev,
  2374. "%s: %s: copy_from_user failed, size = %zd\n",
  2375. __func__, "SNDRV_LSM_SET_PARAMS_32",
  2376. sizeof(det_params32));
  2377. } else {
  2378. det_params.conf_level =
  2379. compat_ptr(det_params32.conf_level);
  2380. det_params.detect_mode =
  2381. det_params32.detect_mode;
  2382. det_params.num_confidence_levels =
  2383. det_params32.num_confidence_levels;
  2384. det_params.detect_failure =
  2385. det_params32.detect_failure;
  2386. cmd = SNDRV_LSM_SET_PARAMS;
  2387. err = msm_cpe_lsm_ioctl_shared(substream, cmd,
  2388. &det_params);
  2389. if (err)
  2390. dev_err(rtd->dev,
  2391. "%s: ioctl %s failed\n", __func__,
  2392. "SNDRV_LSM_SET_PARAMS");
  2393. }
  2394. break;
  2395. }
  2396. case SNDRV_LSM_SET_MODULE_PARAMS_32: {
  2397. struct snd_lsm_module_params_32 p_data_32;
  2398. struct snd_lsm_module_params p_data;
  2399. u8 *params, *params32;
  2400. size_t p_size;
  2401. struct lsm_params_info_32 *p_info_32;
  2402. struct lsm_params_info *p_info;
  2403. int i;
  2404. if (!session->is_topology_used) {
  2405. dev_err(rtd->dev,
  2406. "%s: %s: not supported if not using topology\n",
  2407. __func__, "SET_MODULE_PARAMS_32");
  2408. err = -EINVAL;
  2409. goto done;
  2410. }
  2411. if (copy_from_user(&p_data_32, arg,
  2412. sizeof(p_data_32))) {
  2413. dev_err(rtd->dev,
  2414. "%s: %s: copy_from_user failed, size = %zd\n",
  2415. __func__, "SET_MODULE_PARAMS_32",
  2416. sizeof(p_data_32));
  2417. err = -EFAULT;
  2418. goto done;
  2419. }
  2420. p_data.params = compat_ptr(p_data_32.params);
  2421. p_data.num_params = p_data_32.num_params;
  2422. p_data.data_size = p_data_32.data_size;
  2423. if (p_data.num_params > LSM_PARAMS_MAX) {
  2424. dev_err(rtd->dev,
  2425. "%s: %s: Invalid num_params %d\n",
  2426. __func__, "SET_MODULE_PARAMS_32",
  2427. p_data.num_params);
  2428. err = -EINVAL;
  2429. goto done;
  2430. }
  2431. if (p_data.data_size !=
  2432. (p_data.num_params * sizeof(struct lsm_params_info_32))) {
  2433. dev_err(rtd->dev,
  2434. "%s: %s: Invalid size %d\n",
  2435. __func__, "SET_MODULE_PARAMS_32",
  2436. p_data.data_size);
  2437. err = -EINVAL;
  2438. goto done;
  2439. }
  2440. p_size = sizeof(struct lsm_params_info_32) *
  2441. p_data.num_params;
  2442. params32 = kzalloc(p_size, GFP_KERNEL);
  2443. if (!params32) {
  2444. err = -ENOMEM;
  2445. goto done;
  2446. }
  2447. p_size = sizeof(struct lsm_params_info) * p_data.num_params;
  2448. params = kzalloc(p_size, GFP_KERNEL);
  2449. if (!params) {
  2450. kfree(params32);
  2451. err = -ENOMEM;
  2452. goto done;
  2453. }
  2454. if (copy_from_user(params32, p_data.params,
  2455. p_data.data_size)) {
  2456. dev_err(rtd->dev,
  2457. "%s: %s: copy_from_user failed, size = %d\n",
  2458. __func__, "params32", p_data.data_size);
  2459. kfree(params32);
  2460. kfree(params);
  2461. err = -EFAULT;
  2462. goto done;
  2463. }
  2464. p_info_32 = (struct lsm_params_info_32 *) params32;
  2465. p_info = (struct lsm_params_info *) params;
  2466. for (i = 0; i < p_data.num_params; i++) {
  2467. p_info->module_id = p_info_32->module_id;
  2468. p_info->param_id = p_info_32->param_id;
  2469. p_info->param_size = p_info_32->param_size;
  2470. p_info->param_data = compat_ptr(p_info_32->param_data);
  2471. p_info->param_type = p_info_32->param_type;
  2472. p_info_32++;
  2473. p_info++;
  2474. }
  2475. err = msm_cpe_lsm_process_params(substream,
  2476. &p_data, params);
  2477. if (err)
  2478. dev_err(rtd->dev,
  2479. "%s: Failed to process params, err = %d\n",
  2480. __func__, err);
  2481. kfree(params);
  2482. kfree(params32);
  2483. break;
  2484. }
  2485. case SNDRV_LSM_REG_SND_MODEL_V2:
  2486. case SNDRV_LSM_SET_PARAMS:
  2487. case SNDRV_LSM_SET_MODULE_PARAMS:
  2488. /*
  2489. * In ideal cases, the compat_ioctl should never be called
  2490. * with the above unlocked ioctl commands. Print error
  2491. * and return error if it does.
  2492. */
  2493. dev_err(rtd->dev,
  2494. "%s: Invalid cmd for compat_ioctl\n",
  2495. __func__);
  2496. err = -EINVAL;
  2497. break;
  2498. default:
  2499. err = msm_cpe_lsm_ioctl_shared(substream, cmd, arg);
  2500. break;
  2501. }
  2502. done:
  2503. MSM_CPE_LSM_REL_LOCK(&lsm_d->lsm_api_lock,
  2504. "lsm_api_lock");
  2505. return err;
  2506. }
  2507. #else
  2508. #define msm_cpe_lsm_ioctl_compat NULL
  2509. #endif
  2510. /*
  2511. * msm_cpe_lsm_prepare: prepare call from ASoC core for this platform
  2512. * @substream: ASoC substream for which the operation is invoked
  2513. *
  2514. * start the AFE port on CPE associated for this listen session
  2515. */
  2516. static int msm_cpe_lsm_prepare(struct snd_pcm_substream *substream)
  2517. {
  2518. int rc = 0;
  2519. struct cpe_priv *cpe = cpe_get_private_data(substream);
  2520. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  2521. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  2522. struct wcd_cpe_afe_ops *afe_ops;
  2523. struct wcd_cpe_afe_port_cfg *afe_cfg;
  2524. struct cpe_lsm_session *lsm_session;
  2525. struct cpe_lsm_lab *lab_d = &lsm_d->lab;
  2526. struct snd_pcm_runtime *runtime = substream->runtime;
  2527. struct lsm_hw_params lsm_param;
  2528. struct wcd_cpe_lsm_ops *lsm_ops;
  2529. if (!cpe || !cpe->core_handle) {
  2530. dev_err(rtd->dev,
  2531. "%s: Invalid private data\n",
  2532. __func__);
  2533. return -EINVAL;
  2534. }
  2535. if (!lsm_d || !lsm_d->lsm_session) {
  2536. dev_err(rtd->dev,
  2537. "%s: Invalid session data\n",
  2538. __func__);
  2539. return -EINVAL;
  2540. }
  2541. if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
  2542. runtime->status->state == SNDRV_PCM_STATE_PREPARED) {
  2543. pr_err("%s: XRUN ignore for now\n", __func__);
  2544. return 0;
  2545. }
  2546. lsm_session = lsm_d->lsm_session;
  2547. lab_d->pcm_size = snd_pcm_lib_buffer_bytes(substream);
  2548. dev_dbg(rtd->dev,
  2549. "%s: pcm_size 0x%x", __func__, lab_d->pcm_size);
  2550. if (lsm_d->cpe_prepared) {
  2551. dev_dbg(rtd->dev, "%s: CPE is alredy prepared\n",
  2552. __func__);
  2553. return 0;
  2554. }
  2555. lsm_ops = &cpe->lsm_ops;
  2556. afe_ops = &cpe->afe_ops;
  2557. afe_cfg = &(lsm_d->lsm_session->afe_port_cfg);
  2558. switch (cpe->input_port_id) {
  2559. case AFE_PORT_ID_3:
  2560. afe_cfg->port_id = AFE_PORT_ID_3;
  2561. afe_cfg->bit_width = 16;
  2562. afe_cfg->num_channels = 1;
  2563. afe_cfg->sample_rate = SAMPLE_RATE_48KHZ;
  2564. rc = afe_ops->afe_port_cmd_cfg(cpe->core_handle, afe_cfg);
  2565. break;
  2566. case AFE_PORT_ID_1:
  2567. default:
  2568. afe_cfg->port_id = AFE_PORT_ID_1;
  2569. afe_cfg->bit_width = 16;
  2570. afe_cfg->num_channels = 1;
  2571. afe_cfg->sample_rate = SAMPLE_RATE_16KHZ;
  2572. rc = afe_ops->afe_set_params(cpe->core_handle,
  2573. afe_cfg, cpe->afe_mad_ctl);
  2574. break;
  2575. }
  2576. if (rc != 0) {
  2577. dev_err(rtd->dev,
  2578. "%s: cpe afe params failed for port = %d, err = %d\n",
  2579. __func__, afe_cfg->port_id, rc);
  2580. return rc;
  2581. }
  2582. lsm_param.sample_rate = afe_cfg->sample_rate;
  2583. lsm_param.num_chs = afe_cfg->num_channels;
  2584. lsm_param.bit_width = afe_cfg->bit_width;
  2585. rc = lsm_ops->lsm_set_media_fmt_params(cpe->core_handle, lsm_session,
  2586. &lsm_param);
  2587. if (rc)
  2588. dev_dbg(rtd->dev,
  2589. "%s: failed to set lsm media fmt params, err = %d\n",
  2590. __func__, rc);
  2591. /* Send connect to port (input) */
  2592. rc = lsm_ops->lsm_set_port(cpe->core_handle, lsm_session,
  2593. &cpe->input_port_id);
  2594. if (rc) {
  2595. dev_err(rtd->dev,
  2596. "%s: Failed to set connect input port, err=%d\n",
  2597. __func__, rc);
  2598. return rc;
  2599. }
  2600. if (cpe->input_port_id != 3) {
  2601. rc = lsm_ops->lsm_get_afe_out_port_id(cpe->core_handle,
  2602. lsm_session);
  2603. if (rc != 0) {
  2604. dev_err(rtd->dev,
  2605. "%s: failed to get port id, err = %d\n",
  2606. __func__, rc);
  2607. return rc;
  2608. }
  2609. /* Send connect to port (output) */
  2610. rc = lsm_ops->lsm_set_port(cpe->core_handle, lsm_session,
  2611. &lsm_session->afe_out_port_id);
  2612. if (rc) {
  2613. dev_err(rtd->dev,
  2614. "%s: Failed to set connect output port, err=%d\n",
  2615. __func__, rc);
  2616. return rc;
  2617. }
  2618. }
  2619. rc = msm_cpe_afe_port_cntl(substream,
  2620. cpe->core_handle,
  2621. afe_ops, afe_cfg,
  2622. AFE_CMD_PORT_START);
  2623. if (rc)
  2624. dev_err(rtd->dev,
  2625. "%s: cpe_afe_port start failed, err = %d\n",
  2626. __func__, rc);
  2627. else
  2628. lsm_d->cpe_prepared = true;
  2629. return rc;
  2630. }
  2631. /*
  2632. * msm_cpe_lsm_trigger: trigger call from ASoC core for this platform
  2633. * @substream: ASoC substream for which the operation is invoked
  2634. * @cmd: the trigger command from framework
  2635. *
  2636. * suspend/resume the AFE port on CPE associated with listen session
  2637. */
  2638. static int msm_cpe_lsm_trigger(struct snd_pcm_substream *substream,
  2639. int cmd)
  2640. {
  2641. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  2642. struct cpe_priv *cpe = cpe_get_private_data(substream);
  2643. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  2644. struct wcd_cpe_afe_ops *afe_ops;
  2645. struct wcd_cpe_afe_port_cfg *afe_cfg;
  2646. int afe_cmd = AFE_CMD_INVALID;
  2647. int rc = 0;
  2648. if (!cpe || !cpe->core_handle) {
  2649. dev_err(rtd->dev,
  2650. "%s: Invalid private data\n",
  2651. __func__);
  2652. return -EINVAL;
  2653. }
  2654. if (!lsm_d || !lsm_d->lsm_session) {
  2655. dev_err(rtd->dev,
  2656. "%s: Invalid session data\n",
  2657. __func__);
  2658. return -EINVAL;
  2659. }
  2660. afe_ops = &cpe->afe_ops;
  2661. afe_cfg = &(lsm_d->lsm_session->afe_port_cfg);
  2662. switch (cmd) {
  2663. case SNDRV_PCM_TRIGGER_SUSPEND:
  2664. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  2665. afe_cmd = AFE_CMD_PORT_SUSPEND;
  2666. break;
  2667. case SNDRV_PCM_TRIGGER_RESUME:
  2668. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  2669. afe_cmd = AFE_CMD_PORT_RESUME;
  2670. break;
  2671. default:
  2672. afe_cmd = AFE_CMD_INVALID;
  2673. dev_dbg(rtd->dev,
  2674. "%s: unhandled trigger cmd %d\n",
  2675. __func__, cmd);
  2676. break;
  2677. }
  2678. if (afe_cmd != AFE_CMD_INVALID)
  2679. rc = msm_cpe_afe_port_cntl(substream,
  2680. cpe->core_handle,
  2681. afe_ops, afe_cfg,
  2682. afe_cmd);
  2683. return rc;
  2684. }
  2685. static int msm_cpe_lsm_hwparams(struct snd_pcm_substream *substream,
  2686. struct snd_pcm_hw_params *params)
  2687. {
  2688. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  2689. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  2690. struct cpe_priv *cpe = cpe_get_private_data(substream);
  2691. struct cpe_lsm_session *session = NULL;
  2692. struct cpe_hw_params *hw_params = NULL;
  2693. if (!cpe || !cpe->core_handle) {
  2694. dev_err(rtd->dev,
  2695. "%s: Invalid %s\n",
  2696. __func__,
  2697. (!cpe) ? "cpe" : "core");
  2698. return -EINVAL;
  2699. }
  2700. if (!lsm_d || !lsm_d->lsm_session) {
  2701. dev_err(rtd->dev,
  2702. "%s: Invalid %s\n",
  2703. __func__,
  2704. (!lsm_d) ? "priv_data" : "session");
  2705. return -EINVAL;
  2706. }
  2707. session = lsm_d->lsm_session;
  2708. hw_params = &lsm_d->hw_params;
  2709. hw_params->buf_sz = (params_buffer_bytes(params)
  2710. / params_periods(params));
  2711. hw_params->period_count = params_periods(params);
  2712. hw_params->channels = params_channels(params);
  2713. hw_params->sample_rate = params_rate(params);
  2714. if (params_format(params) == SNDRV_PCM_FORMAT_S16_LE)
  2715. hw_params->sample_size = 16;
  2716. else if (params_format(params) ==
  2717. SNDRV_PCM_FORMAT_S24_LE)
  2718. hw_params->sample_size = 24;
  2719. else if (params_format(params) ==
  2720. SNDRV_PCM_FORMAT_S32_LE)
  2721. hw_params->sample_size = 32;
  2722. else {
  2723. dev_err(rtd->dev,
  2724. "%s: Invalid Format 0x%x\n",
  2725. __func__, params_format(params));
  2726. return -EINVAL;
  2727. }
  2728. dev_dbg(rtd->dev,
  2729. "%s: Format %d buffer size(bytes) %d period count %d\n"
  2730. " Channel %d period in bytes 0x%x Period Size 0x%x rate = %d\n",
  2731. __func__, params_format(params), params_buffer_bytes(params),
  2732. params_periods(params), params_channels(params),
  2733. params_period_bytes(params), params_period_size(params),
  2734. params_rate(params));
  2735. return 0;
  2736. }
  2737. static snd_pcm_uframes_t msm_cpe_lsm_pointer(
  2738. struct snd_pcm_substream *substream)
  2739. {
  2740. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  2741. struct snd_pcm_runtime *runtime = substream->runtime;
  2742. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  2743. struct cpe_lsm_session *session;
  2744. struct cpe_lsm_lab *lab_d = &lsm_d->lab;
  2745. session = lsm_d->lsm_session;
  2746. if (lab_d->dma_write >= lab_d->pcm_size)
  2747. lab_d->dma_write = 0;
  2748. dev_dbg(rtd->dev,
  2749. "%s:pcm_dma_pos = %d\n",
  2750. __func__, lab_d->dma_write);
  2751. return bytes_to_frames(runtime, (lab_d->dma_write));
  2752. }
  2753. static int msm_cpe_lsm_copy(struct snd_pcm_substream *substream, int a,
  2754. snd_pcm_uframes_t hwoff, void __user *buf, snd_pcm_uframes_t frames)
  2755. {
  2756. struct cpe_lsm_data *lsm_d = cpe_get_lsm_data(substream);
  2757. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  2758. struct snd_pcm_runtime *runtime = substream->runtime;
  2759. struct cpe_lsm_session *session;
  2760. struct cpe_lsm_lab *lab_d = &lsm_d->lab;
  2761. char *pcm_buf;
  2762. int fbytes = 0;
  2763. int rc = 0;
  2764. fbytes = frames_to_bytes(runtime, frames);
  2765. if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
  2766. runtime->status->state == SNDRV_PCM_STATE_PREPARED) {
  2767. pr_err("%s: XRUN ignore for now\n", __func__);
  2768. return 0;
  2769. }
  2770. session = lsm_d->lsm_session;
  2771. /* Check if buffer reading is already in error state */
  2772. if (lab_d->thread_status == MSM_LSM_LAB_THREAD_ERROR) {
  2773. dev_err(rtd->dev,
  2774. "%s: Bufferring is in error state\n",
  2775. __func__);
  2776. /*
  2777. * Advance the period so there is no wait in case
  2778. * read is invoked even after error is propogated
  2779. */
  2780. atomic_inc(&lab_d->in_count);
  2781. lab_d->dma_write += snd_pcm_lib_period_bytes(substream);
  2782. snd_pcm_period_elapsed(substream);
  2783. return -ENETRESET;
  2784. } else if (lab_d->thread_status == MSM_LSM_LAB_THREAD_STOP) {
  2785. dev_err(rtd->dev,
  2786. "%s: Buferring is in stopped\n",
  2787. __func__);
  2788. return -EIO;
  2789. }
  2790. rc = wait_event_timeout(lab_d->period_wait,
  2791. (atomic_read(&lab_d->in_count) ||
  2792. atomic_read(&lab_d->abort_read)),
  2793. (2 * HZ));
  2794. if (atomic_read(&lab_d->abort_read)) {
  2795. pr_debug("%s: LSM LAB Abort read\n", __func__);
  2796. return -EIO;
  2797. }
  2798. if (lab_d->thread_status != MSM_LSM_LAB_THREAD_RUNNING) {
  2799. pr_err("%s: Lab stopped\n", __func__);
  2800. return -EIO;
  2801. }
  2802. if (!rc) {
  2803. pr_err("%s:LAB err wait_event_timeout\n", __func__);
  2804. rc = -EAGAIN;
  2805. goto fail;
  2806. }
  2807. if (lab_d->buf_idx >= (lsm_d->hw_params.period_count))
  2808. lab_d->buf_idx = 0;
  2809. pcm_buf = (lab_d->pcm_buf[lab_d->buf_idx].mem);
  2810. pr_debug("%s: Buf IDX = 0x%x pcm_buf %pK\n",
  2811. __func__, lab_d->buf_idx, pcm_buf);
  2812. if (pcm_buf) {
  2813. if (copy_to_user(buf, pcm_buf, fbytes)) {
  2814. pr_err("Failed to copy buf to user\n");
  2815. rc = -EFAULT;
  2816. goto fail;
  2817. }
  2818. }
  2819. lab_d->buf_idx++;
  2820. atomic_dec(&lab_d->in_count);
  2821. return 0;
  2822. fail:
  2823. return rc;
  2824. }
  2825. /*
  2826. * msm_asoc_cpe_lsm_probe: ASoC framework for lsm platform driver
  2827. * @platform: platform registered with ASoC core
  2828. *
  2829. * Allocate the private data for this platform and obtain the ops for
  2830. * lsm and afe modules from underlying driver. Also find the codec
  2831. * for this platform as specified by machine driver for ASoC framework.
  2832. */
  2833. static int msm_asoc_cpe_lsm_probe(struct snd_soc_platform *platform)
  2834. {
  2835. struct snd_soc_card *card;
  2836. struct snd_soc_pcm_runtime *rtd;
  2837. struct snd_soc_codec *codec;
  2838. struct cpe_priv *cpe_priv;
  2839. const struct snd_kcontrol_new *kcontrol;
  2840. bool found_runtime = false;
  2841. const char *cpe_dev_id = "qcom,msm-cpe-lsm-id";
  2842. u32 port_id = 0;
  2843. int ret = 0;
  2844. if (!platform || !platform->component.card) {
  2845. pr_err("%s: Invalid platform or card\n",
  2846. __func__);
  2847. return -EINVAL;
  2848. }
  2849. card = platform->component.card;
  2850. /* Match platform to codec */
  2851. list_for_each_entry(rtd, &card->rtd_list, list) {
  2852. if (!rtd->platform)
  2853. continue;
  2854. if (!strcmp(rtd->platform->component.name,
  2855. platform->component.name)) {
  2856. found_runtime = true;
  2857. break;
  2858. }
  2859. }
  2860. if (!found_runtime) {
  2861. dev_err(platform->dev,
  2862. "%s: Failed to find runtime for platform\n",
  2863. __func__);
  2864. return -EINVAL;
  2865. }
  2866. ret = of_property_read_u32(platform->dev->of_node, cpe_dev_id,
  2867. &port_id);
  2868. if (ret) {
  2869. dev_dbg(platform->dev,
  2870. "%s: missing 0x%x in dt node\n", __func__, port_id);
  2871. port_id = 1;
  2872. }
  2873. codec = rtd->codec;
  2874. cpe_priv = kzalloc(sizeof(struct cpe_priv),
  2875. GFP_KERNEL);
  2876. if (!cpe_priv)
  2877. return -ENOMEM;
  2878. cpe_priv->codec = codec;
  2879. cpe_priv->input_port_id = port_id;
  2880. wcd_cpe_get_lsm_ops(&cpe_priv->lsm_ops);
  2881. wcd_cpe_get_afe_ops(&cpe_priv->afe_ops);
  2882. snd_soc_platform_set_drvdata(platform, cpe_priv);
  2883. kcontrol = &msm_cpe_kcontrols[0];
  2884. snd_ctl_add(card->snd_card, snd_ctl_new1(kcontrol, cpe_priv));
  2885. return 0;
  2886. }
  2887. static const struct snd_pcm_ops msm_cpe_lsm_ops = {
  2888. .open = msm_cpe_lsm_open,
  2889. .close = msm_cpe_lsm_close,
  2890. .ioctl = msm_cpe_lsm_ioctl,
  2891. .prepare = msm_cpe_lsm_prepare,
  2892. .trigger = msm_cpe_lsm_trigger,
  2893. .pointer = msm_cpe_lsm_pointer,
  2894. .copy = msm_cpe_lsm_copy,
  2895. .hw_params = msm_cpe_lsm_hwparams,
  2896. .compat_ioctl = msm_cpe_lsm_ioctl_compat,
  2897. };
  2898. static struct snd_soc_platform_driver msm_soc_cpe_platform = {
  2899. .ops = &msm_cpe_lsm_ops,
  2900. .probe = msm_asoc_cpe_lsm_probe,
  2901. };
  2902. /*
  2903. * msm_cpe_lsm_probe: platform driver probe
  2904. * @pdev: platform device
  2905. *
  2906. * Register the ASoC platform driver with ASoC core
  2907. */
  2908. static int msm_cpe_lsm_probe(struct platform_device *pdev)
  2909. {
  2910. return snd_soc_register_platform(&pdev->dev,
  2911. &msm_soc_cpe_platform);
  2912. }
  2913. /*
  2914. * msm_cpe_lsm_remove: platform driver remove
  2915. * @pdev: platform device
  2916. *
  2917. * Deregister the ASoC platform driver
  2918. */
  2919. static int msm_cpe_lsm_remove(struct platform_device *pdev)
  2920. {
  2921. snd_soc_unregister_platform(&pdev->dev);
  2922. return 0;
  2923. }
  2924. static const struct of_device_id msm_cpe_lsm_dt_match[] = {
  2925. {.compatible = "qcom,msm-cpe-lsm" },
  2926. { }
  2927. };
  2928. static struct platform_driver msm_cpe_lsm_driver = {
  2929. .driver = {
  2930. .name = "msm-cpe-lsm",
  2931. .owner = THIS_MODULE,
  2932. .of_match_table = of_match_ptr(msm_cpe_lsm_dt_match),
  2933. },
  2934. .probe = msm_cpe_lsm_probe,
  2935. .remove = msm_cpe_lsm_remove,
  2936. };
  2937. module_platform_driver(msm_cpe_lsm_driver);
  2938. MODULE_DESCRIPTION("CPE LSM platform driver");
  2939. MODULE_DEVICE_TABLE(of, msm_cpe_lsm_dt_match);
  2940. MODULE_LICENSE("GPL v2");