wsa-macro.c 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/module.h>
  5. #include <linux/init.h>
  6. #include <linux/io.h>
  7. #include <linux/platform_device.h>
  8. #include <linux/clk.h>
  9. #include <linux/pm_runtime.h>
  10. #include <sound/soc.h>
  11. #include <sound/soc-dapm.h>
  12. #include <sound/tlv.h>
  13. #include <soc/swr-common.h>
  14. #include <soc/swr-wcd.h>
  15. #include <asoc/msm-cdc-pinctrl.h>
  16. #include "bolero-cdc.h"
  17. #include "bolero-cdc-registers.h"
  18. #include "wsa-macro.h"
  19. #include "bolero-clk-rsc.h"
  20. #define AUTO_SUSPEND_DELAY 50 /* delay in msec */
  21. #define WSA_MACRO_MAX_OFFSET 0x1000
  22. #define WSA_MACRO_RX_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
  23. SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000 |\
  24. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000)
  25. #define WSA_MACRO_RX_MIX_RATES (SNDRV_PCM_RATE_48000 |\
  26. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000)
  27. #define WSA_MACRO_RX_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
  28. SNDRV_PCM_FMTBIT_S24_LE |\
  29. SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
  30. #define WSA_MACRO_ECHO_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
  31. SNDRV_PCM_RATE_48000)
  32. #define WSA_MACRO_ECHO_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
  33. SNDRV_PCM_FMTBIT_S24_LE |\
  34. SNDRV_PCM_FMTBIT_S24_3LE)
  35. #define NUM_INTERPOLATORS 2
  36. #define WSA_MACRO_MUX_INP_SHFT 0x3
  37. #define WSA_MACRO_MUX_INP_MASK1 0x07
  38. #define WSA_MACRO_MUX_INP_MASK2 0x38
  39. #define WSA_MACRO_MUX_CFG_OFFSET 0x8
  40. #define WSA_MACRO_MUX_CFG1_OFFSET 0x4
  41. #define WSA_MACRO_RX_COMP_OFFSET 0x40
  42. #define WSA_MACRO_RX_SOFTCLIP_OFFSET 0x40
  43. #define WSA_MACRO_RX_PATH_OFFSET 0x80
  44. #define WSA_MACRO_RX_PATH_CFG3_OFFSET 0x10
  45. #define WSA_MACRO_RX_PATH_DSMDEM_OFFSET 0x4C
  46. #define WSA_MACRO_FS_RATE_MASK 0x0F
  47. #define WSA_MACRO_EC_MIX_TX0_MASK 0x03
  48. #define WSA_MACRO_EC_MIX_TX1_MASK 0x18
  49. #define WSA_MACRO_MAX_DMA_CH_PER_PORT 0x2
  50. enum {
  51. WSA_MACRO_RX0 = 0,
  52. WSA_MACRO_RX1,
  53. WSA_MACRO_RX_MIX,
  54. WSA_MACRO_RX_MIX0 = WSA_MACRO_RX_MIX,
  55. WSA_MACRO_RX_MIX1,
  56. WSA_MACRO_RX_MAX,
  57. };
  58. enum {
  59. WSA_MACRO_TX0 = 0,
  60. WSA_MACRO_TX1,
  61. WSA_MACRO_TX_MAX,
  62. };
  63. enum {
  64. WSA_MACRO_EC0_MUX = 0,
  65. WSA_MACRO_EC1_MUX,
  66. WSA_MACRO_EC_MUX_MAX,
  67. };
  68. enum {
  69. WSA_MACRO_COMP1, /* SPK_L */
  70. WSA_MACRO_COMP2, /* SPK_R */
  71. WSA_MACRO_COMP_MAX
  72. };
  73. enum {
  74. WSA_MACRO_SOFTCLIP0, /* RX0 */
  75. WSA_MACRO_SOFTCLIP1, /* RX1 */
  76. WSA_MACRO_SOFTCLIP_MAX
  77. };
  78. enum {
  79. INTn_1_INP_SEL_ZERO = 0,
  80. INTn_1_INP_SEL_RX0,
  81. INTn_1_INP_SEL_RX1,
  82. INTn_1_INP_SEL_RX2,
  83. INTn_1_INP_SEL_RX3,
  84. INTn_1_INP_SEL_DEC0,
  85. INTn_1_INP_SEL_DEC1,
  86. };
  87. enum {
  88. INTn_2_INP_SEL_ZERO = 0,
  89. INTn_2_INP_SEL_RX0,
  90. INTn_2_INP_SEL_RX1,
  91. INTn_2_INP_SEL_RX2,
  92. INTn_2_INP_SEL_RX3,
  93. };
  94. struct interp_sample_rate {
  95. int sample_rate;
  96. int rate_val;
  97. };
  98. /*
  99. * Structure used to update codec
  100. * register defaults after reset
  101. */
  102. struct wsa_macro_reg_mask_val {
  103. u16 reg;
  104. u8 mask;
  105. u8 val;
  106. };
  107. static struct interp_sample_rate int_prim_sample_rate_val[] = {
  108. {8000, 0x0}, /* 8K */
  109. {16000, 0x1}, /* 16K */
  110. {24000, -EINVAL},/* 24K */
  111. {32000, 0x3}, /* 32K */
  112. {48000, 0x4}, /* 48K */
  113. {96000, 0x5}, /* 96K */
  114. {192000, 0x6}, /* 192K */
  115. {384000, 0x7}, /* 384K */
  116. {44100, 0x8}, /* 44.1K */
  117. };
  118. static struct interp_sample_rate int_mix_sample_rate_val[] = {
  119. {48000, 0x4}, /* 48K */
  120. {96000, 0x5}, /* 96K */
  121. {192000, 0x6}, /* 192K */
  122. };
  123. #define WSA_MACRO_SWR_STRING_LEN 80
  124. static int wsa_macro_hw_params(struct snd_pcm_substream *substream,
  125. struct snd_pcm_hw_params *params,
  126. struct snd_soc_dai *dai);
  127. static int wsa_macro_get_channel_map(struct snd_soc_dai *dai,
  128. unsigned int *tx_num, unsigned int *tx_slot,
  129. unsigned int *rx_num, unsigned int *rx_slot);
  130. static int wsa_macro_digital_mute(struct snd_soc_dai *dai, int mute);
  131. /* Hold instance to soundwire platform device */
  132. struct wsa_macro_swr_ctrl_data {
  133. struct platform_device *wsa_swr_pdev;
  134. };
  135. struct wsa_macro_swr_ctrl_platform_data {
  136. void *handle; /* holds codec private data */
  137. int (*read)(void *handle, int reg);
  138. int (*write)(void *handle, int reg, int val);
  139. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  140. int (*clk)(void *handle, bool enable);
  141. int (*core_vote)(void *handle, bool enable);
  142. int (*handle_irq)(void *handle,
  143. irqreturn_t (*swrm_irq_handler)(int irq,
  144. void *data),
  145. void *swrm_handle,
  146. int action);
  147. };
  148. struct wsa_macro_bcl_pmic_params {
  149. u8 id;
  150. u8 sid;
  151. u8 ppid;
  152. };
  153. enum {
  154. WSA_MACRO_AIF_INVALID = 0,
  155. WSA_MACRO_AIF1_PB,
  156. WSA_MACRO_AIF_MIX1_PB,
  157. WSA_MACRO_AIF_VI,
  158. WSA_MACRO_AIF_ECHO,
  159. WSA_MACRO_MAX_DAIS,
  160. };
  161. #define WSA_MACRO_CHILD_DEVICES_MAX 3
  162. /*
  163. * @dev: wsa macro device pointer
  164. * @comp_enabled: compander enable mixer value set
  165. * @ec_hq: echo HQ enable mixer value set
  166. * @prim_int_users: Users of interpolator
  167. * @wsa_mclk_users: WSA MCLK users count
  168. * @swr_clk_users: SWR clk users count
  169. * @vi_feed_value: VI sense mask
  170. * @mclk_lock: to lock mclk operations
  171. * @swr_clk_lock: to lock swr master clock operations
  172. * @swr_ctrl_data: SoundWire data structure
  173. * @swr_plat_data: Soundwire platform data
  174. * @wsa_macro_add_child_devices_work: work for adding child devices
  175. * @wsa_swr_gpio_p: used by pinctrl API
  176. * @component: codec handle
  177. * @rx_0_count: RX0 interpolation users
  178. * @rx_1_count: RX1 interpolation users
  179. * @active_ch_mask: channel mask for all AIF DAIs
  180. * @active_ch_cnt: channel count of all AIF DAIs
  181. * @rx_port_value: mixer ctl value of WSA RX MUXes
  182. * @wsa_io_base: Base address of WSA macro addr space
  183. */
  184. struct wsa_macro_priv {
  185. struct device *dev;
  186. int comp_enabled[WSA_MACRO_COMP_MAX];
  187. int ec_hq[WSA_MACRO_RX1 + 1];
  188. u16 prim_int_users[WSA_MACRO_RX1 + 1];
  189. u16 wsa_mclk_users;
  190. u16 swr_clk_users;
  191. bool dapm_mclk_enable;
  192. bool reset_swr;
  193. unsigned int vi_feed_value;
  194. struct mutex mclk_lock;
  195. struct mutex swr_clk_lock;
  196. struct wsa_macro_swr_ctrl_data *swr_ctrl_data;
  197. struct wsa_macro_swr_ctrl_platform_data swr_plat_data;
  198. struct work_struct wsa_macro_add_child_devices_work;
  199. struct device_node *wsa_swr_gpio_p;
  200. struct snd_soc_component *component;
  201. int rx_0_count;
  202. int rx_1_count;
  203. unsigned long active_ch_mask[WSA_MACRO_MAX_DAIS];
  204. unsigned long active_ch_cnt[WSA_MACRO_MAX_DAIS];
  205. int rx_port_value[WSA_MACRO_RX_MAX];
  206. char __iomem *wsa_io_base;
  207. struct platform_device *pdev_child_devices
  208. [WSA_MACRO_CHILD_DEVICES_MAX];
  209. int child_count;
  210. int ear_spkr_gain;
  211. int spkr_gain_offset;
  212. int spkr_mode;
  213. int is_softclip_on[WSA_MACRO_SOFTCLIP_MAX];
  214. int softclip_clk_users[WSA_MACRO_SOFTCLIP_MAX];
  215. struct wsa_macro_bcl_pmic_params bcl_pmic_params;
  216. char __iomem *mclk_mode_muxsel;
  217. u16 default_clk_id;
  218. u32 pcm_rate_vi;
  219. int wsa_digital_mute_status[WSA_MACRO_RX_MAX];
  220. };
  221. static int wsa_macro_config_ear_spkr_gain(struct snd_soc_component *component,
  222. struct wsa_macro_priv *wsa_priv,
  223. int event, int gain_reg);
  224. static struct snd_soc_dai_driver wsa_macro_dai[];
  225. static const DECLARE_TLV_DB_SCALE(digital_gain, 0, 1, 0);
  226. static const char *const rx_text[] = {
  227. "ZERO", "RX0", "RX1", "RX_MIX0", "RX_MIX1", "DEC0", "DEC1"
  228. };
  229. static const char *const rx_mix_text[] = {
  230. "ZERO", "RX0", "RX1", "RX_MIX0", "RX_MIX1"
  231. };
  232. static const char *const rx_mix_ec_text[] = {
  233. "ZERO", "RX_MIX_TX0", "RX_MIX_TX1"
  234. };
  235. static const char *const rx_mux_text[] = {
  236. "ZERO", "AIF1_PB", "AIF_MIX1_PB"
  237. };
  238. static const char *const rx_sidetone_mix_text[] = {
  239. "ZERO", "SRC0"
  240. };
  241. static const char * const wsa_macro_ear_spkr_pa_gain_text[] = {
  242. "G_DEFAULT", "G_0_DB", "G_1_DB", "G_2_DB", "G_3_DB",
  243. "G_4_DB", "G_5_DB", "G_6_DB"
  244. };
  245. static const char * const wsa_macro_speaker_boost_stage_text[] = {
  246. "NO_MAX_STATE", "MAX_STATE_1", "MAX_STATE_2"
  247. };
  248. static const char * const wsa_macro_vbat_bcl_gsm_mode_text[] = {
  249. "OFF", "ON"
  250. };
  251. static const struct snd_kcontrol_new wsa_int0_vbat_mix_switch[] = {
  252. SOC_DAPM_SINGLE("WSA RX0 VBAT Enable", SND_SOC_NOPM, 0, 1, 0)
  253. };
  254. static const struct snd_kcontrol_new wsa_int1_vbat_mix_switch[] = {
  255. SOC_DAPM_SINGLE("WSA RX1 VBAT Enable", SND_SOC_NOPM, 0, 1, 0)
  256. };
  257. static SOC_ENUM_SINGLE_EXT_DECL(wsa_macro_ear_spkr_pa_gain_enum,
  258. wsa_macro_ear_spkr_pa_gain_text);
  259. static SOC_ENUM_SINGLE_EXT_DECL(wsa_macro_spkr_boost_stage_enum,
  260. wsa_macro_speaker_boost_stage_text);
  261. static SOC_ENUM_SINGLE_EXT_DECL(wsa_macro_vbat_bcl_gsm_mode_enum,
  262. wsa_macro_vbat_bcl_gsm_mode_text);
  263. /* RX INT0 */
  264. static const struct soc_enum rx0_prim_inp0_chain_enum =
  265. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_INT0_CFG0,
  266. 0, 7, rx_text);
  267. static const struct soc_enum rx0_prim_inp1_chain_enum =
  268. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_INT0_CFG0,
  269. 3, 7, rx_text);
  270. static const struct soc_enum rx0_prim_inp2_chain_enum =
  271. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_INT0_CFG1,
  272. 3, 7, rx_text);
  273. static const struct soc_enum rx0_mix_chain_enum =
  274. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_INT0_CFG1,
  275. 0, 5, rx_mix_text);
  276. static const struct soc_enum rx0_sidetone_mix_enum =
  277. SOC_ENUM_SINGLE(SND_SOC_NOPM, 0, 2, rx_sidetone_mix_text);
  278. static const struct snd_kcontrol_new rx0_prim_inp0_mux =
  279. SOC_DAPM_ENUM("WSA_RX0 INP0 Mux", rx0_prim_inp0_chain_enum);
  280. static const struct snd_kcontrol_new rx0_prim_inp1_mux =
  281. SOC_DAPM_ENUM("WSA_RX0 INP1 Mux", rx0_prim_inp1_chain_enum);
  282. static const struct snd_kcontrol_new rx0_prim_inp2_mux =
  283. SOC_DAPM_ENUM("WSA_RX0 INP2 Mux", rx0_prim_inp2_chain_enum);
  284. static const struct snd_kcontrol_new rx0_mix_mux =
  285. SOC_DAPM_ENUM("WSA_RX0 MIX Mux", rx0_mix_chain_enum);
  286. static const struct snd_kcontrol_new rx0_sidetone_mix_mux =
  287. SOC_DAPM_ENUM("WSA_RX0 SIDETONE MIX Mux", rx0_sidetone_mix_enum);
  288. /* RX INT1 */
  289. static const struct soc_enum rx1_prim_inp0_chain_enum =
  290. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_INT1_CFG0,
  291. 0, 7, rx_text);
  292. static const struct soc_enum rx1_prim_inp1_chain_enum =
  293. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_INT1_CFG0,
  294. 3, 7, rx_text);
  295. static const struct soc_enum rx1_prim_inp2_chain_enum =
  296. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_INT1_CFG1,
  297. 3, 7, rx_text);
  298. static const struct soc_enum rx1_mix_chain_enum =
  299. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_INT1_CFG1,
  300. 0, 5, rx_mix_text);
  301. static const struct snd_kcontrol_new rx1_prim_inp0_mux =
  302. SOC_DAPM_ENUM("WSA_RX1 INP0 Mux", rx1_prim_inp0_chain_enum);
  303. static const struct snd_kcontrol_new rx1_prim_inp1_mux =
  304. SOC_DAPM_ENUM("WSA_RX1 INP1 Mux", rx1_prim_inp1_chain_enum);
  305. static const struct snd_kcontrol_new rx1_prim_inp2_mux =
  306. SOC_DAPM_ENUM("WSA_RX1 INP2 Mux", rx1_prim_inp2_chain_enum);
  307. static const struct snd_kcontrol_new rx1_mix_mux =
  308. SOC_DAPM_ENUM("WSA_RX1 MIX Mux", rx1_mix_chain_enum);
  309. static const struct soc_enum rx_mix_ec0_enum =
  310. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_MIX_CFG0,
  311. 0, 3, rx_mix_ec_text);
  312. static const struct soc_enum rx_mix_ec1_enum =
  313. SOC_ENUM_SINGLE(BOLERO_CDC_WSA_RX_INP_MUX_RX_MIX_CFG0,
  314. 3, 3, rx_mix_ec_text);
  315. static const struct snd_kcontrol_new rx_mix_ec0_mux =
  316. SOC_DAPM_ENUM("WSA RX_MIX EC0_Mux", rx_mix_ec0_enum);
  317. static const struct snd_kcontrol_new rx_mix_ec1_mux =
  318. SOC_DAPM_ENUM("WSA RX_MIX EC1_Mux", rx_mix_ec1_enum);
  319. static struct snd_soc_dai_ops wsa_macro_dai_ops = {
  320. .hw_params = wsa_macro_hw_params,
  321. .get_channel_map = wsa_macro_get_channel_map,
  322. .digital_mute = wsa_macro_digital_mute,
  323. };
  324. static struct snd_soc_dai_driver wsa_macro_dai[] = {
  325. {
  326. .name = "wsa_macro_rx1",
  327. .id = WSA_MACRO_AIF1_PB,
  328. .playback = {
  329. .stream_name = "WSA_AIF1 Playback",
  330. .rates = WSA_MACRO_RX_RATES,
  331. .formats = WSA_MACRO_RX_FORMATS,
  332. .rate_max = 384000,
  333. .rate_min = 8000,
  334. .channels_min = 1,
  335. .channels_max = 2,
  336. },
  337. .ops = &wsa_macro_dai_ops,
  338. },
  339. {
  340. .name = "wsa_macro_rx_mix",
  341. .id = WSA_MACRO_AIF_MIX1_PB,
  342. .playback = {
  343. .stream_name = "WSA_AIF_MIX1 Playback",
  344. .rates = WSA_MACRO_RX_MIX_RATES,
  345. .formats = WSA_MACRO_RX_FORMATS,
  346. .rate_max = 192000,
  347. .rate_min = 48000,
  348. .channels_min = 1,
  349. .channels_max = 2,
  350. },
  351. .ops = &wsa_macro_dai_ops,
  352. },
  353. {
  354. .name = "wsa_macro_vifeedback",
  355. .id = WSA_MACRO_AIF_VI,
  356. .capture = {
  357. .stream_name = "WSA_AIF_VI Capture",
  358. .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_48000,
  359. .formats = WSA_MACRO_RX_FORMATS,
  360. .rate_max = 48000,
  361. .rate_min = 8000,
  362. .channels_min = 1,
  363. .channels_max = 4,
  364. },
  365. .ops = &wsa_macro_dai_ops,
  366. },
  367. {
  368. .name = "wsa_macro_echo",
  369. .id = WSA_MACRO_AIF_ECHO,
  370. .capture = {
  371. .stream_name = "WSA_AIF_ECHO Capture",
  372. .rates = WSA_MACRO_ECHO_RATES,
  373. .formats = WSA_MACRO_ECHO_FORMATS,
  374. .rate_max = 48000,
  375. .rate_min = 8000,
  376. .channels_min = 1,
  377. .channels_max = 2,
  378. },
  379. .ops = &wsa_macro_dai_ops,
  380. },
  381. };
  382. static const struct wsa_macro_reg_mask_val wsa_macro_spkr_default[] = {
  383. {BOLERO_CDC_WSA_COMPANDER0_CTL3, 0x80, 0x80},
  384. {BOLERO_CDC_WSA_COMPANDER1_CTL3, 0x80, 0x80},
  385. {BOLERO_CDC_WSA_COMPANDER0_CTL7, 0x01, 0x01},
  386. {BOLERO_CDC_WSA_COMPANDER1_CTL7, 0x01, 0x01},
  387. {BOLERO_CDC_WSA_BOOST0_BOOST_CTL, 0x7C, 0x58},
  388. {BOLERO_CDC_WSA_BOOST1_BOOST_CTL, 0x7C, 0x58},
  389. };
  390. static const struct wsa_macro_reg_mask_val wsa_macro_spkr_mode1[] = {
  391. {BOLERO_CDC_WSA_COMPANDER0_CTL3, 0x80, 0x00},
  392. {BOLERO_CDC_WSA_COMPANDER1_CTL3, 0x80, 0x00},
  393. {BOLERO_CDC_WSA_COMPANDER0_CTL7, 0x01, 0x00},
  394. {BOLERO_CDC_WSA_COMPANDER1_CTL7, 0x01, 0x00},
  395. {BOLERO_CDC_WSA_BOOST0_BOOST_CTL, 0x7C, 0x44},
  396. {BOLERO_CDC_WSA_BOOST1_BOOST_CTL, 0x7C, 0x44},
  397. };
  398. static bool wsa_macro_get_data(struct snd_soc_component *component,
  399. struct device **wsa_dev,
  400. struct wsa_macro_priv **wsa_priv,
  401. const char *func_name)
  402. {
  403. *wsa_dev = bolero_get_device_ptr(component->dev, WSA_MACRO);
  404. if (!(*wsa_dev)) {
  405. dev_err(component->dev,
  406. "%s: null device for macro!\n", func_name);
  407. return false;
  408. }
  409. *wsa_priv = dev_get_drvdata((*wsa_dev));
  410. if (!(*wsa_priv) || !(*wsa_priv)->component) {
  411. dev_err(component->dev,
  412. "%s: priv is null for macro!\n", func_name);
  413. return false;
  414. }
  415. return true;
  416. }
  417. static int wsa_macro_set_port_map(struct snd_soc_component *component,
  418. u32 usecase, u32 size, void *data)
  419. {
  420. struct device *wsa_dev = NULL;
  421. struct wsa_macro_priv *wsa_priv = NULL;
  422. struct swrm_port_config port_cfg;
  423. int ret = 0;
  424. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  425. return -EINVAL;
  426. memset(&port_cfg, 0, sizeof(port_cfg));
  427. port_cfg.uc = usecase;
  428. port_cfg.size = size;
  429. port_cfg.params = data;
  430. if (wsa_priv->swr_ctrl_data)
  431. ret = swrm_wcd_notify(
  432. wsa_priv->swr_ctrl_data[0].wsa_swr_pdev,
  433. SWR_SET_PORT_MAP, &port_cfg);
  434. return ret;
  435. }
  436. /**
  437. * wsa_macro_set_spkr_gain_offset - offset the speaker path
  438. * gain with the given offset value.
  439. *
  440. * @component: codec instance
  441. * @offset: Indicates speaker path gain offset value.
  442. *
  443. * Returns 0 on success or -EINVAL on error.
  444. */
  445. int wsa_macro_set_spkr_gain_offset(struct snd_soc_component *component,
  446. int offset)
  447. {
  448. struct device *wsa_dev = NULL;
  449. struct wsa_macro_priv *wsa_priv = NULL;
  450. if (!component) {
  451. pr_err("%s: NULL component pointer!\n", __func__);
  452. return -EINVAL;
  453. }
  454. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  455. return -EINVAL;
  456. wsa_priv->spkr_gain_offset = offset;
  457. return 0;
  458. }
  459. EXPORT_SYMBOL(wsa_macro_set_spkr_gain_offset);
  460. /**
  461. * wsa_macro_set_spkr_mode - Configures speaker compander and smartboost
  462. * settings based on speaker mode.
  463. *
  464. * @component: codec instance
  465. * @mode: Indicates speaker configuration mode.
  466. *
  467. * Returns 0 on success or -EINVAL on error.
  468. */
  469. int wsa_macro_set_spkr_mode(struct snd_soc_component *component, int mode)
  470. {
  471. int i;
  472. const struct wsa_macro_reg_mask_val *regs;
  473. int size;
  474. struct device *wsa_dev = NULL;
  475. struct wsa_macro_priv *wsa_priv = NULL;
  476. if (!component) {
  477. pr_err("%s: NULL codec pointer!\n", __func__);
  478. return -EINVAL;
  479. }
  480. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  481. return -EINVAL;
  482. switch (mode) {
  483. case WSA_MACRO_SPKR_MODE_1:
  484. regs = wsa_macro_spkr_mode1;
  485. size = ARRAY_SIZE(wsa_macro_spkr_mode1);
  486. break;
  487. default:
  488. regs = wsa_macro_spkr_default;
  489. size = ARRAY_SIZE(wsa_macro_spkr_default);
  490. break;
  491. }
  492. wsa_priv->spkr_mode = mode;
  493. for (i = 0; i < size; i++)
  494. snd_soc_component_update_bits(component, regs[i].reg,
  495. regs[i].mask, regs[i].val);
  496. return 0;
  497. }
  498. EXPORT_SYMBOL(wsa_macro_set_spkr_mode);
  499. static int wsa_macro_set_prim_interpolator_rate(struct snd_soc_dai *dai,
  500. u8 int_prim_fs_rate_reg_val,
  501. u32 sample_rate)
  502. {
  503. u8 int_1_mix1_inp;
  504. u32 j, port;
  505. u16 int_mux_cfg0, int_mux_cfg1;
  506. u16 int_fs_reg;
  507. u8 int_mux_cfg0_val, int_mux_cfg1_val;
  508. u8 inp0_sel, inp1_sel, inp2_sel;
  509. struct snd_soc_component *component = dai->component;
  510. struct device *wsa_dev = NULL;
  511. struct wsa_macro_priv *wsa_priv = NULL;
  512. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  513. return -EINVAL;
  514. for_each_set_bit(port, &wsa_priv->active_ch_mask[dai->id],
  515. WSA_MACRO_RX_MAX) {
  516. int_1_mix1_inp = port;
  517. if ((int_1_mix1_inp < WSA_MACRO_RX0) ||
  518. (int_1_mix1_inp > WSA_MACRO_RX_MIX1)) {
  519. dev_err(wsa_dev,
  520. "%s: Invalid RX port, Dai ID is %d\n",
  521. __func__, dai->id);
  522. return -EINVAL;
  523. }
  524. int_mux_cfg0 = BOLERO_CDC_WSA_RX_INP_MUX_RX_INT0_CFG0;
  525. /*
  526. * Loop through all interpolator MUX inputs and find out
  527. * to which interpolator input, the cdc_dma rx port
  528. * is connected
  529. */
  530. for (j = 0; j < NUM_INTERPOLATORS; j++) {
  531. int_mux_cfg1 = int_mux_cfg0 + WSA_MACRO_MUX_CFG1_OFFSET;
  532. int_mux_cfg0_val = snd_soc_component_read32(component,
  533. int_mux_cfg0);
  534. int_mux_cfg1_val = snd_soc_component_read32(component,
  535. int_mux_cfg1);
  536. inp0_sel = int_mux_cfg0_val & WSA_MACRO_MUX_INP_MASK1;
  537. inp1_sel = (int_mux_cfg0_val >>
  538. WSA_MACRO_MUX_INP_SHFT) &
  539. WSA_MACRO_MUX_INP_MASK1;
  540. inp2_sel = (int_mux_cfg1_val >>
  541. WSA_MACRO_MUX_INP_SHFT) &
  542. WSA_MACRO_MUX_INP_MASK1;
  543. if ((inp0_sel == int_1_mix1_inp + INTn_1_INP_SEL_RX0) ||
  544. (inp1_sel == int_1_mix1_inp + INTn_1_INP_SEL_RX0) ||
  545. (inp2_sel == int_1_mix1_inp + INTn_1_INP_SEL_RX0)) {
  546. int_fs_reg = BOLERO_CDC_WSA_RX0_RX_PATH_CTL +
  547. WSA_MACRO_RX_PATH_OFFSET * j;
  548. dev_dbg(wsa_dev,
  549. "%s: AIF_PB DAI(%d) connected to INT%u_1\n",
  550. __func__, dai->id, j);
  551. dev_dbg(wsa_dev,
  552. "%s: set INT%u_1 sample rate to %u\n",
  553. __func__, j, sample_rate);
  554. /* sample_rate is in Hz */
  555. snd_soc_component_update_bits(component,
  556. int_fs_reg,
  557. WSA_MACRO_FS_RATE_MASK,
  558. int_prim_fs_rate_reg_val);
  559. }
  560. int_mux_cfg0 += WSA_MACRO_MUX_CFG_OFFSET;
  561. }
  562. }
  563. return 0;
  564. }
  565. static int wsa_macro_set_mix_interpolator_rate(struct snd_soc_dai *dai,
  566. u8 int_mix_fs_rate_reg_val,
  567. u32 sample_rate)
  568. {
  569. u8 int_2_inp;
  570. u32 j, port;
  571. u16 int_mux_cfg1, int_fs_reg;
  572. u8 int_mux_cfg1_val;
  573. struct snd_soc_component *component = dai->component;
  574. struct device *wsa_dev = NULL;
  575. struct wsa_macro_priv *wsa_priv = NULL;
  576. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  577. return -EINVAL;
  578. for_each_set_bit(port, &wsa_priv->active_ch_mask[dai->id],
  579. WSA_MACRO_RX_MAX) {
  580. int_2_inp = port;
  581. if ((int_2_inp < WSA_MACRO_RX0) ||
  582. (int_2_inp > WSA_MACRO_RX_MIX1)) {
  583. dev_err(wsa_dev,
  584. "%s: Invalid RX port, Dai ID is %d\n",
  585. __func__, dai->id);
  586. return -EINVAL;
  587. }
  588. int_mux_cfg1 = BOLERO_CDC_WSA_RX_INP_MUX_RX_INT0_CFG1;
  589. for (j = 0; j < NUM_INTERPOLATORS; j++) {
  590. int_mux_cfg1_val = snd_soc_component_read32(component,
  591. int_mux_cfg1) &
  592. WSA_MACRO_MUX_INP_MASK1;
  593. if (int_mux_cfg1_val == int_2_inp +
  594. INTn_2_INP_SEL_RX0) {
  595. int_fs_reg =
  596. BOLERO_CDC_WSA_RX0_RX_PATH_MIX_CTL +
  597. WSA_MACRO_RX_PATH_OFFSET * j;
  598. dev_dbg(wsa_dev,
  599. "%s: AIF_PB DAI(%d) connected to INT%u_2\n",
  600. __func__, dai->id, j);
  601. dev_dbg(wsa_dev,
  602. "%s: set INT%u_2 sample rate to %u\n",
  603. __func__, j, sample_rate);
  604. snd_soc_component_update_bits(component,
  605. int_fs_reg,
  606. WSA_MACRO_FS_RATE_MASK,
  607. int_mix_fs_rate_reg_val);
  608. }
  609. int_mux_cfg1 += WSA_MACRO_MUX_CFG_OFFSET;
  610. }
  611. }
  612. return 0;
  613. }
  614. static int wsa_macro_set_interpolator_rate(struct snd_soc_dai *dai,
  615. u32 sample_rate)
  616. {
  617. int rate_val = 0;
  618. int i, ret;
  619. /* set mixing path rate */
  620. for (i = 0; i < ARRAY_SIZE(int_mix_sample_rate_val); i++) {
  621. if (sample_rate ==
  622. int_mix_sample_rate_val[i].sample_rate) {
  623. rate_val =
  624. int_mix_sample_rate_val[i].rate_val;
  625. break;
  626. }
  627. }
  628. if ((i == ARRAY_SIZE(int_mix_sample_rate_val)) ||
  629. (rate_val < 0))
  630. goto prim_rate;
  631. ret = wsa_macro_set_mix_interpolator_rate(dai,
  632. (u8) rate_val, sample_rate);
  633. prim_rate:
  634. /* set primary path sample rate */
  635. for (i = 0; i < ARRAY_SIZE(int_prim_sample_rate_val); i++) {
  636. if (sample_rate ==
  637. int_prim_sample_rate_val[i].sample_rate) {
  638. rate_val =
  639. int_prim_sample_rate_val[i].rate_val;
  640. break;
  641. }
  642. }
  643. if ((i == ARRAY_SIZE(int_prim_sample_rate_val)) ||
  644. (rate_val < 0))
  645. return -EINVAL;
  646. ret = wsa_macro_set_prim_interpolator_rate(dai,
  647. (u8) rate_val, sample_rate);
  648. return ret;
  649. }
  650. static int wsa_macro_hw_params(struct snd_pcm_substream *substream,
  651. struct snd_pcm_hw_params *params,
  652. struct snd_soc_dai *dai)
  653. {
  654. struct snd_soc_component *component = dai->component;
  655. int ret;
  656. struct device *wsa_dev = NULL;
  657. struct wsa_macro_priv *wsa_priv = NULL;
  658. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  659. return -EINVAL;
  660. wsa_priv = dev_get_drvdata(wsa_dev);
  661. if (!wsa_priv)
  662. return -EINVAL;
  663. dev_dbg(component->dev,
  664. "%s: dai_name = %s DAI-ID %x rate %d num_ch %d\n", __func__,
  665. dai->name, dai->id, params_rate(params),
  666. params_channels(params));
  667. switch (substream->stream) {
  668. case SNDRV_PCM_STREAM_PLAYBACK:
  669. ret = wsa_macro_set_interpolator_rate(dai, params_rate(params));
  670. if (ret) {
  671. dev_err(component->dev,
  672. "%s: cannot set sample rate: %u\n",
  673. __func__, params_rate(params));
  674. return ret;
  675. }
  676. break;
  677. case SNDRV_PCM_STREAM_CAPTURE:
  678. if (dai->id == WSA_MACRO_AIF_VI)
  679. wsa_priv->pcm_rate_vi = params_rate(params);
  680. default:
  681. break;
  682. }
  683. return 0;
  684. }
  685. static int wsa_macro_get_channel_map(struct snd_soc_dai *dai,
  686. unsigned int *tx_num, unsigned int *tx_slot,
  687. unsigned int *rx_num, unsigned int *rx_slot)
  688. {
  689. struct snd_soc_component *component = dai->component;
  690. struct device *wsa_dev = NULL;
  691. struct wsa_macro_priv *wsa_priv = NULL;
  692. u16 val = 0, mask = 0, cnt = 0, temp = 0;
  693. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  694. return -EINVAL;
  695. wsa_priv = dev_get_drvdata(wsa_dev);
  696. if (!wsa_priv)
  697. return -EINVAL;
  698. switch (dai->id) {
  699. case WSA_MACRO_AIF_VI:
  700. *tx_slot = wsa_priv->active_ch_mask[dai->id];
  701. *tx_num = wsa_priv->active_ch_cnt[dai->id];
  702. break;
  703. case WSA_MACRO_AIF1_PB:
  704. case WSA_MACRO_AIF_MIX1_PB:
  705. for_each_set_bit(temp, &wsa_priv->active_ch_mask[dai->id],
  706. WSA_MACRO_RX_MAX) {
  707. mask |= (1 << temp);
  708. if (++cnt == WSA_MACRO_MAX_DMA_CH_PER_PORT)
  709. break;
  710. }
  711. if (mask & 0x0C)
  712. mask = mask >> 0x2;
  713. *rx_slot = mask;
  714. *rx_num = cnt;
  715. break;
  716. case WSA_MACRO_AIF_ECHO:
  717. val = snd_soc_component_read32(component,
  718. BOLERO_CDC_WSA_RX_INP_MUX_RX_MIX_CFG0);
  719. if (val & WSA_MACRO_EC_MIX_TX1_MASK) {
  720. mask |= 0x2;
  721. cnt++;
  722. }
  723. if (val & WSA_MACRO_EC_MIX_TX0_MASK) {
  724. mask |= 0x1;
  725. cnt++;
  726. }
  727. *tx_slot = mask;
  728. *tx_num = cnt;
  729. break;
  730. default:
  731. dev_err(wsa_dev, "%s: Invalid AIF\n", __func__);
  732. break;
  733. }
  734. return 0;
  735. }
  736. static int wsa_macro_digital_mute(struct snd_soc_dai *dai, int mute)
  737. {
  738. struct snd_soc_component *component = dai->component;
  739. struct device *wsa_dev = NULL;
  740. struct wsa_macro_priv *wsa_priv = NULL;
  741. uint16_t j = 0, reg = 0, mix_reg = 0, dsm_reg = 0;
  742. u16 int_mux_cfg0 = 0, int_mux_cfg1 = 0;
  743. u8 int_mux_cfg0_val = 0, int_mux_cfg1_val = 0;
  744. if (mute)
  745. return 0;
  746. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  747. return -EINVAL;
  748. switch (dai->id) {
  749. case WSA_MACRO_AIF1_PB:
  750. case WSA_MACRO_AIF_MIX1_PB:
  751. for (j = 0; j < NUM_INTERPOLATORS; j++) {
  752. reg = BOLERO_CDC_WSA_RX0_RX_PATH_CTL +
  753. (j * WSA_MACRO_RX_PATH_OFFSET);
  754. mix_reg = BOLERO_CDC_WSA_RX0_RX_PATH_MIX_CTL +
  755. (j * WSA_MACRO_RX_PATH_OFFSET);
  756. dsm_reg = BOLERO_CDC_WSA_RX0_RX_PATH_CTL +
  757. (j * WSA_MACRO_RX_PATH_OFFSET) +
  758. WSA_MACRO_RX_PATH_DSMDEM_OFFSET;
  759. int_mux_cfg0 = BOLERO_CDC_WSA_RX_INP_MUX_RX_INT0_CFG0 + j * 8;
  760. int_mux_cfg1 = int_mux_cfg0 + 4;
  761. int_mux_cfg0_val = snd_soc_component_read32(component,
  762. int_mux_cfg0);
  763. int_mux_cfg1_val = snd_soc_component_read32(component,
  764. int_mux_cfg1);
  765. if (snd_soc_component_read32(component, dsm_reg) & 0x01) {
  766. if (int_mux_cfg0_val || (int_mux_cfg1_val & 0x38))
  767. snd_soc_component_update_bits(component, reg,
  768. 0x20, 0x20);
  769. if (int_mux_cfg1_val & 0x07) {
  770. snd_soc_component_update_bits(component, reg,
  771. 0x20, 0x20);
  772. snd_soc_component_update_bits(component,
  773. mix_reg, 0x20, 0x20);
  774. }
  775. }
  776. }
  777. bolero_wsa_pa_on(wsa_dev);
  778. break;
  779. default:
  780. break;
  781. }
  782. return 0;
  783. }
  784. static int wsa_macro_mclk_enable(struct wsa_macro_priv *wsa_priv,
  785. bool mclk_enable, bool dapm)
  786. {
  787. struct regmap *regmap = dev_get_regmap(wsa_priv->dev->parent, NULL);
  788. int ret = 0;
  789. if (regmap == NULL) {
  790. dev_err(wsa_priv->dev, "%s: regmap is NULL\n", __func__);
  791. return -EINVAL;
  792. }
  793. dev_dbg(wsa_priv->dev, "%s: mclk_enable = %u, dapm = %d clk_users= %d\n",
  794. __func__, mclk_enable, dapm, wsa_priv->wsa_mclk_users);
  795. mutex_lock(&wsa_priv->mclk_lock);
  796. if (mclk_enable) {
  797. if (wsa_priv->wsa_mclk_users == 0) {
  798. ret = bolero_clk_rsc_request_clock(wsa_priv->dev,
  799. wsa_priv->default_clk_id,
  800. wsa_priv->default_clk_id,
  801. true);
  802. if (ret < 0) {
  803. dev_err_ratelimited(wsa_priv->dev,
  804. "%s: wsa request clock enable failed\n",
  805. __func__);
  806. goto exit;
  807. }
  808. bolero_clk_rsc_fs_gen_request(wsa_priv->dev,
  809. true);
  810. regcache_mark_dirty(regmap);
  811. regcache_sync_region(regmap,
  812. WSA_START_OFFSET,
  813. WSA_MAX_OFFSET);
  814. /* 9.6MHz MCLK, set value 0x00 if other frequency */
  815. regmap_update_bits(regmap,
  816. BOLERO_CDC_WSA_TOP_FREQ_MCLK, 0x01, 0x01);
  817. regmap_update_bits(regmap,
  818. BOLERO_CDC_WSA_CLK_RST_CTRL_MCLK_CONTROL,
  819. 0x01, 0x01);
  820. regmap_update_bits(regmap,
  821. BOLERO_CDC_WSA_CLK_RST_CTRL_FS_CNT_CONTROL,
  822. 0x01, 0x01);
  823. }
  824. wsa_priv->wsa_mclk_users++;
  825. } else {
  826. if (wsa_priv->wsa_mclk_users <= 0) {
  827. dev_err(wsa_priv->dev, "%s: clock already disabled\n",
  828. __func__);
  829. wsa_priv->wsa_mclk_users = 0;
  830. goto exit;
  831. }
  832. wsa_priv->wsa_mclk_users--;
  833. if (wsa_priv->wsa_mclk_users == 0) {
  834. regmap_update_bits(regmap,
  835. BOLERO_CDC_WSA_CLK_RST_CTRL_FS_CNT_CONTROL,
  836. 0x01, 0x00);
  837. regmap_update_bits(regmap,
  838. BOLERO_CDC_WSA_CLK_RST_CTRL_MCLK_CONTROL,
  839. 0x01, 0x00);
  840. bolero_clk_rsc_fs_gen_request(wsa_priv->dev,
  841. false);
  842. bolero_clk_rsc_request_clock(wsa_priv->dev,
  843. wsa_priv->default_clk_id,
  844. wsa_priv->default_clk_id,
  845. false);
  846. }
  847. }
  848. exit:
  849. mutex_unlock(&wsa_priv->mclk_lock);
  850. return ret;
  851. }
  852. static int wsa_macro_mclk_event(struct snd_soc_dapm_widget *w,
  853. struct snd_kcontrol *kcontrol, int event)
  854. {
  855. struct snd_soc_component *component =
  856. snd_soc_dapm_to_component(w->dapm);
  857. int ret = 0;
  858. struct device *wsa_dev = NULL;
  859. struct wsa_macro_priv *wsa_priv = NULL;
  860. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  861. return -EINVAL;
  862. dev_dbg(wsa_dev, "%s: event = %d\n", __func__, event);
  863. switch (event) {
  864. case SND_SOC_DAPM_PRE_PMU:
  865. ret = wsa_macro_mclk_enable(wsa_priv, 1, true);
  866. if (ret)
  867. wsa_priv->dapm_mclk_enable = false;
  868. else
  869. wsa_priv->dapm_mclk_enable = true;
  870. break;
  871. case SND_SOC_DAPM_POST_PMD:
  872. if (wsa_priv->dapm_mclk_enable)
  873. wsa_macro_mclk_enable(wsa_priv, 0, true);
  874. break;
  875. default:
  876. dev_err(wsa_priv->dev,
  877. "%s: invalid DAPM event %d\n", __func__, event);
  878. ret = -EINVAL;
  879. }
  880. return ret;
  881. }
  882. static int wsa_macro_event_handler(struct snd_soc_component *component,
  883. u16 event, u32 data)
  884. {
  885. struct device *wsa_dev = NULL;
  886. struct wsa_macro_priv *wsa_priv = NULL;
  887. int ret = 0;
  888. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  889. return -EINVAL;
  890. switch (event) {
  891. case BOLERO_MACRO_EVT_SSR_DOWN:
  892. trace_printk("%s, enter SSR down\n", __func__);
  893. if (wsa_priv->swr_ctrl_data) {
  894. swrm_wcd_notify(
  895. wsa_priv->swr_ctrl_data[0].wsa_swr_pdev,
  896. SWR_DEVICE_SSR_DOWN, NULL);
  897. }
  898. if ((!pm_runtime_enabled(wsa_dev) ||
  899. !pm_runtime_suspended(wsa_dev))) {
  900. ret = bolero_runtime_suspend(wsa_dev);
  901. if (!ret) {
  902. pm_runtime_disable(wsa_dev);
  903. pm_runtime_set_suspended(wsa_dev);
  904. pm_runtime_enable(wsa_dev);
  905. }
  906. }
  907. break;
  908. case BOLERO_MACRO_EVT_SSR_UP:
  909. trace_printk("%s, enter SSR up\n", __func__);
  910. /* reset swr after ssr/pdr */
  911. wsa_priv->reset_swr = true;
  912. /* enable&disable WSA_CORE_CLK to reset GFMUX reg */
  913. ret = bolero_clk_rsc_request_clock(wsa_priv->dev,
  914. wsa_priv->default_clk_id,
  915. WSA_CORE_CLK, true);
  916. if (ret < 0)
  917. dev_err_ratelimited(wsa_priv->dev,
  918. "%s, failed to enable clk, ret:%d\n",
  919. __func__, ret);
  920. else
  921. bolero_clk_rsc_request_clock(wsa_priv->dev,
  922. wsa_priv->default_clk_id,
  923. WSA_CORE_CLK, false);
  924. if (wsa_priv->swr_ctrl_data)
  925. swrm_wcd_notify(
  926. wsa_priv->swr_ctrl_data[0].wsa_swr_pdev,
  927. SWR_DEVICE_SSR_UP, NULL);
  928. break;
  929. case BOLERO_MACRO_EVT_CLK_RESET:
  930. bolero_rsc_clk_reset(wsa_dev, WSA_CORE_CLK);
  931. break;
  932. }
  933. return 0;
  934. }
  935. static int wsa_macro_enable_vi_feedback(struct snd_soc_dapm_widget *w,
  936. struct snd_kcontrol *kcontrol,
  937. int event)
  938. {
  939. struct snd_soc_component *component =
  940. snd_soc_dapm_to_component(w->dapm);
  941. struct device *wsa_dev = NULL;
  942. struct wsa_macro_priv *wsa_priv = NULL;
  943. u8 val = 0x0;
  944. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  945. return -EINVAL;
  946. switch (wsa_priv->pcm_rate_vi) {
  947. case 48000:
  948. val = 0x04;
  949. break;
  950. case 24000:
  951. val = 0x02;
  952. break;
  953. case 8000:
  954. default:
  955. val = 0x00;
  956. break;
  957. }
  958. switch (event) {
  959. case SND_SOC_DAPM_POST_PMU:
  960. if (test_bit(WSA_MACRO_TX0,
  961. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI])) {
  962. dev_dbg(wsa_dev, "%s: spkr1 enabled\n", __func__);
  963. /* Enable V&I sensing */
  964. snd_soc_component_update_bits(component,
  965. BOLERO_CDC_WSA_TX0_SPKR_PROT_PATH_CTL,
  966. 0x20, 0x20);
  967. snd_soc_component_update_bits(component,
  968. BOLERO_CDC_WSA_TX1_SPKR_PROT_PATH_CTL,
  969. 0x20, 0x20);
  970. snd_soc_component_update_bits(component,
  971. BOLERO_CDC_WSA_TX0_SPKR_PROT_PATH_CTL,
  972. 0x0F, val);
  973. snd_soc_component_update_bits(component,
  974. BOLERO_CDC_WSA_TX1_SPKR_PROT_PATH_CTL,
  975. 0x0F, val);
  976. snd_soc_component_update_bits(component,
  977. BOLERO_CDC_WSA_TX0_SPKR_PROT_PATH_CTL,
  978. 0x10, 0x10);
  979. snd_soc_component_update_bits(component,
  980. BOLERO_CDC_WSA_TX1_SPKR_PROT_PATH_CTL,
  981. 0x10, 0x10);
  982. snd_soc_component_update_bits(component,
  983. BOLERO_CDC_WSA_TX0_SPKR_PROT_PATH_CTL,
  984. 0x20, 0x00);
  985. snd_soc_component_update_bits(component,
  986. BOLERO_CDC_WSA_TX1_SPKR_PROT_PATH_CTL,
  987. 0x20, 0x00);
  988. }
  989. if (test_bit(WSA_MACRO_TX1,
  990. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI])) {
  991. dev_dbg(wsa_dev, "%s: spkr2 enabled\n", __func__);
  992. /* Enable V&I sensing */
  993. snd_soc_component_update_bits(component,
  994. BOLERO_CDC_WSA_TX2_SPKR_PROT_PATH_CTL,
  995. 0x20, 0x20);
  996. snd_soc_component_update_bits(component,
  997. BOLERO_CDC_WSA_TX3_SPKR_PROT_PATH_CTL,
  998. 0x20, 0x20);
  999. snd_soc_component_update_bits(component,
  1000. BOLERO_CDC_WSA_TX2_SPKR_PROT_PATH_CTL,
  1001. 0x0F, val);
  1002. snd_soc_component_update_bits(component,
  1003. BOLERO_CDC_WSA_TX3_SPKR_PROT_PATH_CTL,
  1004. 0x0F, val);
  1005. snd_soc_component_update_bits(component,
  1006. BOLERO_CDC_WSA_TX2_SPKR_PROT_PATH_CTL,
  1007. 0x10, 0x10);
  1008. snd_soc_component_update_bits(component,
  1009. BOLERO_CDC_WSA_TX3_SPKR_PROT_PATH_CTL,
  1010. 0x10, 0x10);
  1011. snd_soc_component_update_bits(component,
  1012. BOLERO_CDC_WSA_TX2_SPKR_PROT_PATH_CTL,
  1013. 0x20, 0x00);
  1014. snd_soc_component_update_bits(component,
  1015. BOLERO_CDC_WSA_TX3_SPKR_PROT_PATH_CTL,
  1016. 0x20, 0x00);
  1017. }
  1018. break;
  1019. case SND_SOC_DAPM_POST_PMD:
  1020. if (test_bit(WSA_MACRO_TX0,
  1021. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI])) {
  1022. /* Disable V&I sensing */
  1023. snd_soc_component_update_bits(component,
  1024. BOLERO_CDC_WSA_TX0_SPKR_PROT_PATH_CTL,
  1025. 0x20, 0x20);
  1026. snd_soc_component_update_bits(component,
  1027. BOLERO_CDC_WSA_TX1_SPKR_PROT_PATH_CTL,
  1028. 0x20, 0x20);
  1029. dev_dbg(wsa_dev, "%s: spkr1 disabled\n", __func__);
  1030. snd_soc_component_update_bits(component,
  1031. BOLERO_CDC_WSA_TX0_SPKR_PROT_PATH_CTL,
  1032. 0x10, 0x00);
  1033. snd_soc_component_update_bits(component,
  1034. BOLERO_CDC_WSA_TX1_SPKR_PROT_PATH_CTL,
  1035. 0x10, 0x00);
  1036. }
  1037. if (test_bit(WSA_MACRO_TX1,
  1038. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI])) {
  1039. /* Disable V&I sensing */
  1040. dev_dbg(wsa_dev, "%s: spkr2 disabled\n", __func__);
  1041. snd_soc_component_update_bits(component,
  1042. BOLERO_CDC_WSA_TX2_SPKR_PROT_PATH_CTL,
  1043. 0x20, 0x20);
  1044. snd_soc_component_update_bits(component,
  1045. BOLERO_CDC_WSA_TX3_SPKR_PROT_PATH_CTL,
  1046. 0x20, 0x20);
  1047. snd_soc_component_update_bits(component,
  1048. BOLERO_CDC_WSA_TX2_SPKR_PROT_PATH_CTL,
  1049. 0x10, 0x00);
  1050. snd_soc_component_update_bits(component,
  1051. BOLERO_CDC_WSA_TX3_SPKR_PROT_PATH_CTL,
  1052. 0x10, 0x00);
  1053. }
  1054. break;
  1055. }
  1056. return 0;
  1057. }
  1058. static int wsa_macro_enable_mix_path(struct snd_soc_dapm_widget *w,
  1059. struct snd_kcontrol *kcontrol, int event)
  1060. {
  1061. struct snd_soc_component *component =
  1062. snd_soc_dapm_to_component(w->dapm);
  1063. u16 gain_reg;
  1064. int offset_val = 0;
  1065. int val = 0;
  1066. dev_dbg(component->dev, "%s %d %s\n", __func__, event, w->name);
  1067. switch (w->reg) {
  1068. case BOLERO_CDC_WSA_RX0_RX_PATH_MIX_CTL:
  1069. gain_reg = BOLERO_CDC_WSA_RX0_RX_VOL_MIX_CTL;
  1070. break;
  1071. case BOLERO_CDC_WSA_RX1_RX_PATH_MIX_CTL:
  1072. gain_reg = BOLERO_CDC_WSA_RX1_RX_VOL_MIX_CTL;
  1073. break;
  1074. default:
  1075. dev_err(component->dev, "%s: No gain register avail for %s\n",
  1076. __func__, w->name);
  1077. return 0;
  1078. }
  1079. switch (event) {
  1080. case SND_SOC_DAPM_POST_PMU:
  1081. val = snd_soc_component_read32(component, gain_reg);
  1082. val += offset_val;
  1083. snd_soc_component_write(component, gain_reg, val);
  1084. break;
  1085. case SND_SOC_DAPM_POST_PMD:
  1086. snd_soc_component_update_bits(component,
  1087. w->reg, 0x20, 0x00);
  1088. break;
  1089. }
  1090. return 0;
  1091. }
  1092. static void wsa_macro_hd2_control(struct snd_soc_component *component,
  1093. u16 reg, int event)
  1094. {
  1095. u16 hd2_scale_reg;
  1096. u16 hd2_enable_reg = 0;
  1097. if (reg == BOLERO_CDC_WSA_RX0_RX_PATH_CTL) {
  1098. hd2_scale_reg = BOLERO_CDC_WSA_RX0_RX_PATH_SEC3;
  1099. hd2_enable_reg = BOLERO_CDC_WSA_RX0_RX_PATH_CFG0;
  1100. }
  1101. if (reg == BOLERO_CDC_WSA_RX1_RX_PATH_CTL) {
  1102. hd2_scale_reg = BOLERO_CDC_WSA_RX1_RX_PATH_SEC3;
  1103. hd2_enable_reg = BOLERO_CDC_WSA_RX1_RX_PATH_CFG0;
  1104. }
  1105. if (hd2_enable_reg && SND_SOC_DAPM_EVENT_ON(event)) {
  1106. snd_soc_component_update_bits(component, hd2_scale_reg,
  1107. 0x3C, 0x10);
  1108. snd_soc_component_update_bits(component, hd2_scale_reg,
  1109. 0x03, 0x01);
  1110. snd_soc_component_update_bits(component, hd2_enable_reg,
  1111. 0x04, 0x04);
  1112. }
  1113. if (hd2_enable_reg && SND_SOC_DAPM_EVENT_OFF(event)) {
  1114. snd_soc_component_update_bits(component, hd2_enable_reg,
  1115. 0x04, 0x00);
  1116. snd_soc_component_update_bits(component, hd2_scale_reg,
  1117. 0x03, 0x00);
  1118. snd_soc_component_update_bits(component, hd2_scale_reg,
  1119. 0x3C, 0x00);
  1120. }
  1121. }
  1122. static int wsa_macro_enable_swr(struct snd_soc_dapm_widget *w,
  1123. struct snd_kcontrol *kcontrol, int event)
  1124. {
  1125. struct snd_soc_component *component =
  1126. snd_soc_dapm_to_component(w->dapm);
  1127. int ch_cnt;
  1128. struct device *wsa_dev = NULL;
  1129. struct wsa_macro_priv *wsa_priv = NULL;
  1130. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1131. return -EINVAL;
  1132. switch (event) {
  1133. case SND_SOC_DAPM_PRE_PMU:
  1134. if (!(strnstr(w->name, "RX0", sizeof("WSA_RX0"))) &&
  1135. !wsa_priv->rx_0_count)
  1136. wsa_priv->rx_0_count++;
  1137. if (!(strnstr(w->name, "RX1", sizeof("WSA_RX1"))) &&
  1138. !wsa_priv->rx_1_count)
  1139. wsa_priv->rx_1_count++;
  1140. ch_cnt = wsa_priv->rx_0_count + wsa_priv->rx_1_count;
  1141. if (wsa_priv->swr_ctrl_data) {
  1142. swrm_wcd_notify(
  1143. wsa_priv->swr_ctrl_data[0].wsa_swr_pdev,
  1144. SWR_DEVICE_UP, NULL);
  1145. swrm_wcd_notify(
  1146. wsa_priv->swr_ctrl_data[0].wsa_swr_pdev,
  1147. SWR_SET_NUM_RX_CH, &ch_cnt);
  1148. }
  1149. break;
  1150. case SND_SOC_DAPM_POST_PMD:
  1151. if (!(strnstr(w->name, "RX0", sizeof("WSA_RX0"))) &&
  1152. wsa_priv->rx_0_count)
  1153. wsa_priv->rx_0_count--;
  1154. if (!(strnstr(w->name, "RX1", sizeof("WSA_RX1"))) &&
  1155. wsa_priv->rx_1_count)
  1156. wsa_priv->rx_1_count--;
  1157. ch_cnt = wsa_priv->rx_0_count + wsa_priv->rx_1_count;
  1158. if (wsa_priv->swr_ctrl_data)
  1159. swrm_wcd_notify(
  1160. wsa_priv->swr_ctrl_data[0].wsa_swr_pdev,
  1161. SWR_SET_NUM_RX_CH, &ch_cnt);
  1162. break;
  1163. }
  1164. dev_dbg(wsa_priv->dev, "%s: current swr ch cnt: %d\n",
  1165. __func__, wsa_priv->rx_0_count + wsa_priv->rx_1_count);
  1166. return 0;
  1167. }
  1168. static int wsa_macro_config_compander(struct snd_soc_component *component,
  1169. int comp, int event)
  1170. {
  1171. u16 comp_ctl0_reg, rx_path_cfg0_reg;
  1172. struct device *wsa_dev = NULL;
  1173. struct wsa_macro_priv *wsa_priv = NULL;
  1174. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1175. return -EINVAL;
  1176. dev_dbg(component->dev, "%s: event %d compander %d, enabled %d\n",
  1177. __func__, event, comp + 1, wsa_priv->comp_enabled[comp]);
  1178. if (!wsa_priv->comp_enabled[comp])
  1179. return 0;
  1180. comp_ctl0_reg = BOLERO_CDC_WSA_COMPANDER0_CTL0 +
  1181. (comp * WSA_MACRO_RX_COMP_OFFSET);
  1182. rx_path_cfg0_reg = BOLERO_CDC_WSA_RX0_RX_PATH_CFG0 +
  1183. (comp * WSA_MACRO_RX_PATH_OFFSET);
  1184. if (SND_SOC_DAPM_EVENT_ON(event)) {
  1185. /* Enable Compander Clock */
  1186. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1187. 0x01, 0x01);
  1188. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1189. 0x02, 0x02);
  1190. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1191. 0x02, 0x00);
  1192. snd_soc_component_update_bits(component, rx_path_cfg0_reg,
  1193. 0x02, 0x02);
  1194. }
  1195. if (SND_SOC_DAPM_EVENT_OFF(event)) {
  1196. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1197. 0x04, 0x04);
  1198. snd_soc_component_update_bits(component, rx_path_cfg0_reg,
  1199. 0x02, 0x00);
  1200. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1201. 0x02, 0x02);
  1202. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1203. 0x02, 0x00);
  1204. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1205. 0x01, 0x00);
  1206. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1207. 0x04, 0x00);
  1208. }
  1209. return 0;
  1210. }
  1211. static void wsa_macro_enable_softclip_clk(struct snd_soc_component *component,
  1212. struct wsa_macro_priv *wsa_priv,
  1213. int path,
  1214. bool enable)
  1215. {
  1216. u16 softclip_clk_reg = BOLERO_CDC_WSA_SOFTCLIP0_CRC +
  1217. (path * WSA_MACRO_RX_SOFTCLIP_OFFSET);
  1218. u8 softclip_mux_mask = (1 << path);
  1219. u8 softclip_mux_value = (1 << path);
  1220. dev_dbg(component->dev, "%s: path %d, enable %d\n",
  1221. __func__, path, enable);
  1222. if (enable) {
  1223. if (wsa_priv->softclip_clk_users[path] == 0) {
  1224. snd_soc_component_update_bits(component,
  1225. softclip_clk_reg, 0x01, 0x01);
  1226. snd_soc_component_update_bits(component,
  1227. BOLERO_CDC_WSA_RX_INP_MUX_SOFTCLIP_CFG0,
  1228. softclip_mux_mask, softclip_mux_value);
  1229. }
  1230. wsa_priv->softclip_clk_users[path]++;
  1231. } else {
  1232. wsa_priv->softclip_clk_users[path]--;
  1233. if (wsa_priv->softclip_clk_users[path] == 0) {
  1234. snd_soc_component_update_bits(component,
  1235. softclip_clk_reg, 0x01, 0x00);
  1236. snd_soc_component_update_bits(component,
  1237. BOLERO_CDC_WSA_RX_INP_MUX_SOFTCLIP_CFG0,
  1238. softclip_mux_mask, 0x00);
  1239. }
  1240. }
  1241. }
  1242. static int wsa_macro_config_softclip(struct snd_soc_component *component,
  1243. int path, int event)
  1244. {
  1245. u16 softclip_ctrl_reg = 0;
  1246. struct device *wsa_dev = NULL;
  1247. struct wsa_macro_priv *wsa_priv = NULL;
  1248. int softclip_path = 0;
  1249. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1250. return -EINVAL;
  1251. if (path == WSA_MACRO_COMP1)
  1252. softclip_path = WSA_MACRO_SOFTCLIP0;
  1253. else if (path == WSA_MACRO_COMP2)
  1254. softclip_path = WSA_MACRO_SOFTCLIP1;
  1255. dev_dbg(component->dev, "%s: event %d path %d, enabled %d\n",
  1256. __func__, event, softclip_path,
  1257. wsa_priv->is_softclip_on[softclip_path]);
  1258. if (!wsa_priv->is_softclip_on[softclip_path])
  1259. return 0;
  1260. softclip_ctrl_reg = BOLERO_CDC_WSA_SOFTCLIP0_SOFTCLIP_CTRL +
  1261. (softclip_path * WSA_MACRO_RX_SOFTCLIP_OFFSET);
  1262. if (SND_SOC_DAPM_EVENT_ON(event)) {
  1263. /* Enable Softclip clock and mux */
  1264. wsa_macro_enable_softclip_clk(component, wsa_priv,
  1265. softclip_path, true);
  1266. /* Enable Softclip control */
  1267. snd_soc_component_update_bits(component, softclip_ctrl_reg,
  1268. 0x01, 0x01);
  1269. }
  1270. if (SND_SOC_DAPM_EVENT_OFF(event)) {
  1271. snd_soc_component_update_bits(component, softclip_ctrl_reg,
  1272. 0x01, 0x00);
  1273. wsa_macro_enable_softclip_clk(component, wsa_priv,
  1274. softclip_path, false);
  1275. }
  1276. return 0;
  1277. }
  1278. static bool wsa_macro_adie_lb(struct snd_soc_component *component,
  1279. int interp_idx)
  1280. {
  1281. u16 int_mux_cfg0 = 0, int_mux_cfg1 = 0;
  1282. u8 int_mux_cfg0_val = 0, int_mux_cfg1_val = 0;
  1283. u8 int_n_inp0 = 0, int_n_inp1 = 0, int_n_inp2 = 0;
  1284. int_mux_cfg0 = BOLERO_CDC_WSA_RX_INP_MUX_RX_INT0_CFG0 + interp_idx * 8;
  1285. int_mux_cfg1 = int_mux_cfg0 + 4;
  1286. int_mux_cfg0_val = snd_soc_component_read32(component, int_mux_cfg0);
  1287. int_mux_cfg1_val = snd_soc_component_read32(component, int_mux_cfg1);
  1288. int_n_inp0 = int_mux_cfg0_val & 0x0F;
  1289. if (int_n_inp0 == INTn_1_INP_SEL_DEC0 ||
  1290. int_n_inp0 == INTn_1_INP_SEL_DEC1)
  1291. return true;
  1292. int_n_inp1 = int_mux_cfg0_val >> 4;
  1293. if (int_n_inp1 == INTn_1_INP_SEL_DEC0 ||
  1294. int_n_inp1 == INTn_1_INP_SEL_DEC1)
  1295. return true;
  1296. int_n_inp2 = int_mux_cfg1_val >> 4;
  1297. if (int_n_inp2 == INTn_1_INP_SEL_DEC0 ||
  1298. int_n_inp2 == INTn_1_INP_SEL_DEC1)
  1299. return true;
  1300. return false;
  1301. }
  1302. static int wsa_macro_enable_main_path(struct snd_soc_dapm_widget *w,
  1303. struct snd_kcontrol *kcontrol,
  1304. int event)
  1305. {
  1306. struct snd_soc_component *component =
  1307. snd_soc_dapm_to_component(w->dapm);
  1308. u16 reg = 0;
  1309. struct device *wsa_dev = NULL;
  1310. struct wsa_macro_priv *wsa_priv = NULL;
  1311. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1312. return -EINVAL;
  1313. reg = BOLERO_CDC_WSA_RX0_RX_PATH_CTL +
  1314. WSA_MACRO_RX_PATH_OFFSET * w->shift;
  1315. switch (event) {
  1316. case SND_SOC_DAPM_PRE_PMU:
  1317. if (wsa_macro_adie_lb(component, w->shift)) {
  1318. snd_soc_component_update_bits(component,
  1319. reg, 0x20, 0x20);
  1320. bolero_wsa_pa_on(wsa_dev);
  1321. }
  1322. break;
  1323. default:
  1324. break;
  1325. }
  1326. return 0;
  1327. }
  1328. static int wsa_macro_interp_get_primary_reg(u16 reg, u16 *ind)
  1329. {
  1330. u16 prim_int_reg = 0;
  1331. switch (reg) {
  1332. case BOLERO_CDC_WSA_RX0_RX_PATH_CTL:
  1333. case BOLERO_CDC_WSA_RX0_RX_PATH_MIX_CTL:
  1334. prim_int_reg = BOLERO_CDC_WSA_RX0_RX_PATH_CTL;
  1335. *ind = 0;
  1336. break;
  1337. case BOLERO_CDC_WSA_RX1_RX_PATH_CTL:
  1338. case BOLERO_CDC_WSA_RX1_RX_PATH_MIX_CTL:
  1339. prim_int_reg = BOLERO_CDC_WSA_RX1_RX_PATH_CTL;
  1340. *ind = 1;
  1341. break;
  1342. }
  1343. return prim_int_reg;
  1344. }
  1345. static int wsa_macro_enable_prim_interpolator(
  1346. struct snd_soc_component *component,
  1347. u16 reg, int event)
  1348. {
  1349. u16 prim_int_reg;
  1350. u16 ind = 0;
  1351. struct device *wsa_dev = NULL;
  1352. struct wsa_macro_priv *wsa_priv = NULL;
  1353. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1354. return -EINVAL;
  1355. prim_int_reg = wsa_macro_interp_get_primary_reg(reg, &ind);
  1356. switch (event) {
  1357. case SND_SOC_DAPM_PRE_PMU:
  1358. wsa_priv->prim_int_users[ind]++;
  1359. if (wsa_priv->prim_int_users[ind] == 1) {
  1360. snd_soc_component_update_bits(component,
  1361. prim_int_reg + WSA_MACRO_RX_PATH_CFG3_OFFSET,
  1362. 0x03, 0x03);
  1363. snd_soc_component_update_bits(component, prim_int_reg,
  1364. 0x10, 0x10);
  1365. wsa_macro_hd2_control(component, prim_int_reg, event);
  1366. snd_soc_component_update_bits(component,
  1367. prim_int_reg + WSA_MACRO_RX_PATH_DSMDEM_OFFSET,
  1368. 0x1, 0x1);
  1369. }
  1370. if ((reg != prim_int_reg) &&
  1371. ((snd_soc_component_read32(
  1372. component, prim_int_reg)) & 0x10))
  1373. snd_soc_component_update_bits(component, reg,
  1374. 0x10, 0x10);
  1375. break;
  1376. case SND_SOC_DAPM_POST_PMD:
  1377. wsa_priv->prim_int_users[ind]--;
  1378. if (wsa_priv->prim_int_users[ind] == 0) {
  1379. snd_soc_component_update_bits(component, prim_int_reg,
  1380. 1 << 0x5, 0 << 0x5);
  1381. snd_soc_component_update_bits(component,
  1382. prim_int_reg + WSA_MACRO_RX_PATH_DSMDEM_OFFSET,
  1383. 0x1, 0x0);
  1384. snd_soc_component_update_bits(component, prim_int_reg,
  1385. 0x40, 0x40);
  1386. snd_soc_component_update_bits(component, prim_int_reg,
  1387. 0x40, 0x00);
  1388. wsa_macro_hd2_control(component, prim_int_reg, event);
  1389. }
  1390. break;
  1391. }
  1392. dev_dbg(component->dev, "%s: primary interpolator: INT%d, users: %d\n",
  1393. __func__, ind, wsa_priv->prim_int_users[ind]);
  1394. return 0;
  1395. }
  1396. static int wsa_macro_enable_interpolator(struct snd_soc_dapm_widget *w,
  1397. struct snd_kcontrol *kcontrol,
  1398. int event)
  1399. {
  1400. struct snd_soc_component *component =
  1401. snd_soc_dapm_to_component(w->dapm);
  1402. u16 gain_reg;
  1403. u16 reg;
  1404. int val;
  1405. int offset_val = 0;
  1406. struct device *wsa_dev = NULL;
  1407. struct wsa_macro_priv *wsa_priv = NULL;
  1408. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1409. return -EINVAL;
  1410. dev_dbg(component->dev, "%s %d %s\n", __func__, event, w->name);
  1411. if (!(strcmp(w->name, "WSA_RX INT0 INTERP"))) {
  1412. reg = BOLERO_CDC_WSA_RX0_RX_PATH_CTL;
  1413. gain_reg = BOLERO_CDC_WSA_RX0_RX_VOL_CTL;
  1414. } else if (!(strcmp(w->name, "WSA_RX INT1 INTERP"))) {
  1415. reg = BOLERO_CDC_WSA_RX1_RX_PATH_CTL;
  1416. gain_reg = BOLERO_CDC_WSA_RX1_RX_VOL_CTL;
  1417. } else {
  1418. dev_err(component->dev, "%s: Interpolator reg not found\n",
  1419. __func__);
  1420. return -EINVAL;
  1421. }
  1422. switch (event) {
  1423. case SND_SOC_DAPM_PRE_PMU:
  1424. /* Reset if needed */
  1425. wsa_macro_enable_prim_interpolator(component, reg, event);
  1426. break;
  1427. case SND_SOC_DAPM_POST_PMU:
  1428. wsa_macro_config_compander(component, w->shift, event);
  1429. wsa_macro_config_softclip(component, w->shift, event);
  1430. /* apply gain after int clk is enabled */
  1431. if ((wsa_priv->spkr_gain_offset ==
  1432. WSA_MACRO_GAIN_OFFSET_M1P5_DB) &&
  1433. (wsa_priv->comp_enabled[WSA_MACRO_COMP1] ||
  1434. wsa_priv->comp_enabled[WSA_MACRO_COMP2]) &&
  1435. (gain_reg == BOLERO_CDC_WSA_RX0_RX_VOL_CTL ||
  1436. gain_reg == BOLERO_CDC_WSA_RX1_RX_VOL_CTL)) {
  1437. snd_soc_component_update_bits(component,
  1438. BOLERO_CDC_WSA_RX0_RX_PATH_SEC1,
  1439. 0x01, 0x01);
  1440. snd_soc_component_update_bits(component,
  1441. BOLERO_CDC_WSA_RX0_RX_PATH_MIX_SEC0,
  1442. 0x01, 0x01);
  1443. snd_soc_component_update_bits(component,
  1444. BOLERO_CDC_WSA_RX1_RX_PATH_SEC1,
  1445. 0x01, 0x01);
  1446. snd_soc_component_update_bits(component,
  1447. BOLERO_CDC_WSA_RX1_RX_PATH_MIX_SEC0,
  1448. 0x01, 0x01);
  1449. offset_val = -2;
  1450. }
  1451. val = snd_soc_component_read32(component, gain_reg);
  1452. val += offset_val;
  1453. snd_soc_component_write(component, gain_reg, val);
  1454. wsa_macro_config_ear_spkr_gain(component, wsa_priv,
  1455. event, gain_reg);
  1456. break;
  1457. case SND_SOC_DAPM_POST_PMD:
  1458. wsa_macro_config_compander(component, w->shift, event);
  1459. wsa_macro_config_softclip(component, w->shift, event);
  1460. wsa_macro_enable_prim_interpolator(component, reg, event);
  1461. if ((wsa_priv->spkr_gain_offset ==
  1462. WSA_MACRO_GAIN_OFFSET_M1P5_DB) &&
  1463. (wsa_priv->comp_enabled[WSA_MACRO_COMP1] ||
  1464. wsa_priv->comp_enabled[WSA_MACRO_COMP2]) &&
  1465. (gain_reg == BOLERO_CDC_WSA_RX0_RX_VOL_CTL ||
  1466. gain_reg == BOLERO_CDC_WSA_RX1_RX_VOL_CTL)) {
  1467. snd_soc_component_update_bits(component,
  1468. BOLERO_CDC_WSA_RX0_RX_PATH_SEC1,
  1469. 0x01, 0x00);
  1470. snd_soc_component_update_bits(component,
  1471. BOLERO_CDC_WSA_RX0_RX_PATH_MIX_SEC0,
  1472. 0x01, 0x00);
  1473. snd_soc_component_update_bits(component,
  1474. BOLERO_CDC_WSA_RX1_RX_PATH_SEC1,
  1475. 0x01, 0x00);
  1476. snd_soc_component_update_bits(component,
  1477. BOLERO_CDC_WSA_RX1_RX_PATH_MIX_SEC0,
  1478. 0x01, 0x00);
  1479. offset_val = 2;
  1480. val = snd_soc_component_read32(component, gain_reg);
  1481. val += offset_val;
  1482. snd_soc_component_write(component, gain_reg, val);
  1483. }
  1484. wsa_macro_config_ear_spkr_gain(component, wsa_priv,
  1485. event, gain_reg);
  1486. break;
  1487. }
  1488. return 0;
  1489. }
  1490. static int wsa_macro_config_ear_spkr_gain(struct snd_soc_component *component,
  1491. struct wsa_macro_priv *wsa_priv,
  1492. int event, int gain_reg)
  1493. {
  1494. int comp_gain_offset, val;
  1495. switch (wsa_priv->spkr_mode) {
  1496. /* Compander gain in WSA_MACRO_SPKR_MODE1 case is 12 dB */
  1497. case WSA_MACRO_SPKR_MODE_1:
  1498. comp_gain_offset = -12;
  1499. break;
  1500. /* Default case compander gain is 15 dB */
  1501. default:
  1502. comp_gain_offset = -15;
  1503. break;
  1504. }
  1505. switch (event) {
  1506. case SND_SOC_DAPM_POST_PMU:
  1507. /* Apply ear spkr gain only if compander is enabled */
  1508. if (wsa_priv->comp_enabled[WSA_MACRO_COMP1] &&
  1509. (gain_reg == BOLERO_CDC_WSA_RX0_RX_VOL_CTL) &&
  1510. (wsa_priv->ear_spkr_gain != 0)) {
  1511. /* For example, val is -8(-12+5-1) for 4dB of gain */
  1512. val = comp_gain_offset + wsa_priv->ear_spkr_gain - 1;
  1513. snd_soc_component_write(component, gain_reg, val);
  1514. dev_dbg(wsa_priv->dev, "%s: RX0 Volume %d dB\n",
  1515. __func__, val);
  1516. }
  1517. break;
  1518. case SND_SOC_DAPM_POST_PMD:
  1519. /*
  1520. * Reset RX0 volume to 0 dB if compander is enabled and
  1521. * ear_spkr_gain is non-zero.
  1522. */
  1523. if (wsa_priv->comp_enabled[WSA_MACRO_COMP1] &&
  1524. (gain_reg == BOLERO_CDC_WSA_RX0_RX_VOL_CTL) &&
  1525. (wsa_priv->ear_spkr_gain != 0)) {
  1526. snd_soc_component_write(component, gain_reg, 0x0);
  1527. dev_dbg(wsa_priv->dev, "%s: Reset RX0 Volume to 0 dB\n",
  1528. __func__);
  1529. }
  1530. break;
  1531. }
  1532. return 0;
  1533. }
  1534. static int wsa_macro_spk_boost_event(struct snd_soc_dapm_widget *w,
  1535. struct snd_kcontrol *kcontrol,
  1536. int event)
  1537. {
  1538. struct snd_soc_component *component =
  1539. snd_soc_dapm_to_component(w->dapm);
  1540. u16 boost_path_ctl, boost_path_cfg1;
  1541. u16 reg, reg_mix;
  1542. dev_dbg(component->dev, "%s %s %d\n", __func__, w->name, event);
  1543. if (!strcmp(w->name, "WSA_RX INT0 CHAIN")) {
  1544. boost_path_ctl = BOLERO_CDC_WSA_BOOST0_BOOST_PATH_CTL;
  1545. boost_path_cfg1 = BOLERO_CDC_WSA_RX0_RX_PATH_CFG1;
  1546. reg = BOLERO_CDC_WSA_RX0_RX_PATH_CTL;
  1547. reg_mix = BOLERO_CDC_WSA_RX0_RX_PATH_MIX_CTL;
  1548. } else if (!strcmp(w->name, "WSA_RX INT1 CHAIN")) {
  1549. boost_path_ctl = BOLERO_CDC_WSA_BOOST1_BOOST_PATH_CTL;
  1550. boost_path_cfg1 = BOLERO_CDC_WSA_RX1_RX_PATH_CFG1;
  1551. reg = BOLERO_CDC_WSA_RX1_RX_PATH_CTL;
  1552. reg_mix = BOLERO_CDC_WSA_RX1_RX_PATH_MIX_CTL;
  1553. } else {
  1554. dev_err(component->dev, "%s: unknown widget: %s\n",
  1555. __func__, w->name);
  1556. return -EINVAL;
  1557. }
  1558. switch (event) {
  1559. case SND_SOC_DAPM_PRE_PMU:
  1560. snd_soc_component_update_bits(component, boost_path_cfg1,
  1561. 0x01, 0x01);
  1562. snd_soc_component_update_bits(component, boost_path_ctl,
  1563. 0x10, 0x10);
  1564. if ((snd_soc_component_read32(component, reg_mix)) & 0x10)
  1565. snd_soc_component_update_bits(component, reg_mix,
  1566. 0x10, 0x00);
  1567. break;
  1568. case SND_SOC_DAPM_POST_PMU:
  1569. snd_soc_component_update_bits(component, reg, 0x10, 0x00);
  1570. break;
  1571. case SND_SOC_DAPM_POST_PMD:
  1572. snd_soc_component_update_bits(component, boost_path_ctl,
  1573. 0x10, 0x00);
  1574. snd_soc_component_update_bits(component, boost_path_cfg1,
  1575. 0x01, 0x00);
  1576. break;
  1577. }
  1578. return 0;
  1579. }
  1580. static int wsa_macro_enable_vbat(struct snd_soc_dapm_widget *w,
  1581. struct snd_kcontrol *kcontrol,
  1582. int event)
  1583. {
  1584. struct snd_soc_component *component =
  1585. snd_soc_dapm_to_component(w->dapm);
  1586. struct device *wsa_dev = NULL;
  1587. struct wsa_macro_priv *wsa_priv = NULL;
  1588. u16 vbat_path_cfg = 0;
  1589. int softclip_path = 0;
  1590. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1591. return -EINVAL;
  1592. dev_dbg(component->dev, "%s %s %d\n", __func__, w->name, event);
  1593. if (!strcmp(w->name, "WSA_RX INT0 VBAT")) {
  1594. vbat_path_cfg = BOLERO_CDC_WSA_RX0_RX_PATH_CFG1;
  1595. softclip_path = WSA_MACRO_SOFTCLIP0;
  1596. } else if (!strcmp(w->name, "WSA_RX INT1 VBAT")) {
  1597. vbat_path_cfg = BOLERO_CDC_WSA_RX1_RX_PATH_CFG1;
  1598. softclip_path = WSA_MACRO_SOFTCLIP1;
  1599. }
  1600. switch (event) {
  1601. case SND_SOC_DAPM_PRE_PMU:
  1602. /* Enable clock for VBAT block */
  1603. snd_soc_component_update_bits(component,
  1604. BOLERO_CDC_WSA_VBAT_BCL_VBAT_PATH_CTL, 0x10, 0x10);
  1605. /* Enable VBAT block */
  1606. snd_soc_component_update_bits(component,
  1607. BOLERO_CDC_WSA_VBAT_BCL_VBAT_CFG, 0x01, 0x01);
  1608. /* Update interpolator with 384K path */
  1609. snd_soc_component_update_bits(component, vbat_path_cfg,
  1610. 0x80, 0x80);
  1611. /* Use attenuation mode */
  1612. snd_soc_component_update_bits(component,
  1613. BOLERO_CDC_WSA_VBAT_BCL_VBAT_CFG, 0x02, 0x00);
  1614. /*
  1615. * BCL block needs softclip clock and mux config to be enabled
  1616. */
  1617. wsa_macro_enable_softclip_clk(component, wsa_priv,
  1618. softclip_path, true);
  1619. /* Enable VBAT at channel level */
  1620. snd_soc_component_update_bits(component, vbat_path_cfg,
  1621. 0x02, 0x02);
  1622. /* Set the ATTK1 gain */
  1623. snd_soc_component_update_bits(component,
  1624. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD1,
  1625. 0xFF, 0xFF);
  1626. snd_soc_component_update_bits(component,
  1627. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD2,
  1628. 0xFF, 0x03);
  1629. snd_soc_component_update_bits(component,
  1630. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD3,
  1631. 0xFF, 0x00);
  1632. /* Set the ATTK2 gain */
  1633. snd_soc_component_update_bits(component,
  1634. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD4,
  1635. 0xFF, 0xFF);
  1636. snd_soc_component_update_bits(component,
  1637. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD5,
  1638. 0xFF, 0x03);
  1639. snd_soc_component_update_bits(component,
  1640. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD6,
  1641. 0xFF, 0x00);
  1642. /* Set the ATTK3 gain */
  1643. snd_soc_component_update_bits(component,
  1644. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD7,
  1645. 0xFF, 0xFF);
  1646. snd_soc_component_update_bits(component,
  1647. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD8,
  1648. 0xFF, 0x03);
  1649. snd_soc_component_update_bits(component,
  1650. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD9,
  1651. 0xFF, 0x00);
  1652. break;
  1653. case SND_SOC_DAPM_POST_PMD:
  1654. snd_soc_component_update_bits(component, vbat_path_cfg,
  1655. 0x80, 0x00);
  1656. snd_soc_component_update_bits(component,
  1657. BOLERO_CDC_WSA_VBAT_BCL_VBAT_CFG,
  1658. 0x02, 0x02);
  1659. snd_soc_component_update_bits(component, vbat_path_cfg,
  1660. 0x02, 0x00);
  1661. snd_soc_component_update_bits(component,
  1662. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD1,
  1663. 0xFF, 0x00);
  1664. snd_soc_component_update_bits(component,
  1665. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD2,
  1666. 0xFF, 0x00);
  1667. snd_soc_component_update_bits(component,
  1668. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD3,
  1669. 0xFF, 0x00);
  1670. snd_soc_component_update_bits(component,
  1671. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD4,
  1672. 0xFF, 0x00);
  1673. snd_soc_component_update_bits(component,
  1674. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD5,
  1675. 0xFF, 0x00);
  1676. snd_soc_component_update_bits(component,
  1677. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD6,
  1678. 0xFF, 0x00);
  1679. snd_soc_component_update_bits(component,
  1680. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD7,
  1681. 0xFF, 0x00);
  1682. snd_soc_component_update_bits(component,
  1683. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD8,
  1684. 0xFF, 0x00);
  1685. snd_soc_component_update_bits(component,
  1686. BOLERO_CDC_WSA_VBAT_BCL_VBAT_BCL_GAIN_UPD9,
  1687. 0xFF, 0x00);
  1688. wsa_macro_enable_softclip_clk(component, wsa_priv,
  1689. softclip_path, false);
  1690. snd_soc_component_update_bits(component,
  1691. BOLERO_CDC_WSA_VBAT_BCL_VBAT_CFG, 0x01, 0x00);
  1692. snd_soc_component_update_bits(component,
  1693. BOLERO_CDC_WSA_VBAT_BCL_VBAT_PATH_CTL, 0x10, 0x00);
  1694. break;
  1695. default:
  1696. dev_err(wsa_dev, "%s: Invalid event %d\n", __func__, event);
  1697. break;
  1698. }
  1699. return 0;
  1700. }
  1701. static int wsa_macro_enable_echo(struct snd_soc_dapm_widget *w,
  1702. struct snd_kcontrol *kcontrol,
  1703. int event)
  1704. {
  1705. struct snd_soc_component *component =
  1706. snd_soc_dapm_to_component(w->dapm);
  1707. struct device *wsa_dev = NULL;
  1708. struct wsa_macro_priv *wsa_priv = NULL;
  1709. u16 val, ec_tx = 0, ec_hq_reg;
  1710. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1711. return -EINVAL;
  1712. dev_dbg(wsa_dev, "%s %d %s\n", __func__, event, w->name);
  1713. val = snd_soc_component_read32(component,
  1714. BOLERO_CDC_WSA_RX_INP_MUX_RX_MIX_CFG0);
  1715. if (!(strcmp(w->name, "WSA RX_MIX EC0_MUX")))
  1716. ec_tx = (val & 0x07) - 1;
  1717. else
  1718. ec_tx = ((val & 0x38) >> 0x3) - 1;
  1719. if (ec_tx < 0 || ec_tx >= (WSA_MACRO_RX1 + 1)) {
  1720. dev_err(wsa_dev, "%s: EC mix control not set correctly\n",
  1721. __func__);
  1722. return -EINVAL;
  1723. }
  1724. if (wsa_priv->ec_hq[ec_tx]) {
  1725. snd_soc_component_update_bits(component,
  1726. BOLERO_CDC_WSA_RX_INP_MUX_RX_MIX_CFG0,
  1727. 0x1 << ec_tx, 0x1 << ec_tx);
  1728. ec_hq_reg = BOLERO_CDC_WSA_EC_HQ0_EC_REF_HQ_PATH_CTL +
  1729. 0x40 * ec_tx;
  1730. snd_soc_component_update_bits(component, ec_hq_reg, 0x01, 0x01);
  1731. ec_hq_reg = BOLERO_CDC_WSA_EC_HQ0_EC_REF_HQ_CFG0 +
  1732. 0x40 * ec_tx;
  1733. /* default set to 48k */
  1734. snd_soc_component_update_bits(component, ec_hq_reg, 0x1E, 0x08);
  1735. }
  1736. return 0;
  1737. }
  1738. static int wsa_macro_get_ec_hq(struct snd_kcontrol *kcontrol,
  1739. struct snd_ctl_elem_value *ucontrol)
  1740. {
  1741. struct snd_soc_component *component =
  1742. snd_soc_kcontrol_component(kcontrol);
  1743. int ec_tx = ((struct soc_multi_mixer_control *)
  1744. kcontrol->private_value)->shift;
  1745. struct device *wsa_dev = NULL;
  1746. struct wsa_macro_priv *wsa_priv = NULL;
  1747. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1748. return -EINVAL;
  1749. ucontrol->value.integer.value[0] = wsa_priv->ec_hq[ec_tx];
  1750. return 0;
  1751. }
  1752. static int wsa_macro_set_ec_hq(struct snd_kcontrol *kcontrol,
  1753. struct snd_ctl_elem_value *ucontrol)
  1754. {
  1755. struct snd_soc_component *component =
  1756. snd_soc_kcontrol_component(kcontrol);
  1757. int ec_tx = ((struct soc_multi_mixer_control *)
  1758. kcontrol->private_value)->shift;
  1759. int value = ucontrol->value.integer.value[0];
  1760. struct device *wsa_dev = NULL;
  1761. struct wsa_macro_priv *wsa_priv = NULL;
  1762. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1763. return -EINVAL;
  1764. dev_dbg(wsa_dev, "%s: enable current %d, new %d\n",
  1765. __func__, wsa_priv->ec_hq[ec_tx], value);
  1766. wsa_priv->ec_hq[ec_tx] = value;
  1767. return 0;
  1768. }
  1769. static int wsa_macro_get_rx_mute_status(struct snd_kcontrol *kcontrol,
  1770. struct snd_ctl_elem_value *ucontrol)
  1771. {
  1772. struct snd_soc_component *component =
  1773. snd_soc_kcontrol_component(kcontrol);
  1774. struct device *wsa_dev = NULL;
  1775. struct wsa_macro_priv *wsa_priv = NULL;
  1776. int wsa_rx_shift = ((struct soc_multi_mixer_control *)
  1777. kcontrol->private_value)->shift;
  1778. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1779. return -EINVAL;
  1780. ucontrol->value.integer.value[0] =
  1781. wsa_priv->wsa_digital_mute_status[wsa_rx_shift];
  1782. return 0;
  1783. }
  1784. static int wsa_macro_set_rx_mute_status(struct snd_kcontrol *kcontrol,
  1785. struct snd_ctl_elem_value *ucontrol)
  1786. {
  1787. struct snd_soc_component *component =
  1788. snd_soc_kcontrol_component(kcontrol);
  1789. struct device *wsa_dev = NULL;
  1790. struct wsa_macro_priv *wsa_priv = NULL;
  1791. int value = ucontrol->value.integer.value[0];
  1792. int wsa_rx_shift = ((struct soc_multi_mixer_control *)
  1793. kcontrol->private_value)->shift;
  1794. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1795. return -EINVAL;
  1796. switch (wsa_rx_shift) {
  1797. case 0:
  1798. snd_soc_component_update_bits(component,
  1799. BOLERO_CDC_WSA_RX0_RX_PATH_CTL,
  1800. 0x10, value << 4);
  1801. break;
  1802. case 1:
  1803. snd_soc_component_update_bits(component,
  1804. BOLERO_CDC_WSA_RX1_RX_PATH_CTL,
  1805. 0x10, value << 4);
  1806. break;
  1807. case 2:
  1808. snd_soc_component_update_bits(component,
  1809. BOLERO_CDC_WSA_RX0_RX_PATH_MIX_CTL,
  1810. 0x10, value << 4);
  1811. break;
  1812. case 3:
  1813. snd_soc_component_update_bits(component,
  1814. BOLERO_CDC_WSA_RX1_RX_PATH_MIX_CTL,
  1815. 0x10, value << 4);
  1816. break;
  1817. default:
  1818. pr_err("%s: invalid argument rx_shift = %d\n", __func__,
  1819. wsa_rx_shift);
  1820. return -EINVAL;
  1821. }
  1822. dev_dbg(component->dev, "%s: WSA Digital Mute RX %d Enable %d\n",
  1823. __func__, wsa_rx_shift, value);
  1824. wsa_priv->wsa_digital_mute_status[wsa_rx_shift] = value;
  1825. return 0;
  1826. }
  1827. static int wsa_macro_get_compander(struct snd_kcontrol *kcontrol,
  1828. struct snd_ctl_elem_value *ucontrol)
  1829. {
  1830. struct snd_soc_component *component =
  1831. snd_soc_kcontrol_component(kcontrol);
  1832. int comp = ((struct soc_multi_mixer_control *)
  1833. kcontrol->private_value)->shift;
  1834. struct device *wsa_dev = NULL;
  1835. struct wsa_macro_priv *wsa_priv = NULL;
  1836. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1837. return -EINVAL;
  1838. ucontrol->value.integer.value[0] = wsa_priv->comp_enabled[comp];
  1839. return 0;
  1840. }
  1841. static int wsa_macro_set_compander(struct snd_kcontrol *kcontrol,
  1842. struct snd_ctl_elem_value *ucontrol)
  1843. {
  1844. struct snd_soc_component *component =
  1845. snd_soc_kcontrol_component(kcontrol);
  1846. int comp = ((struct soc_multi_mixer_control *)
  1847. kcontrol->private_value)->shift;
  1848. int value = ucontrol->value.integer.value[0];
  1849. struct device *wsa_dev = NULL;
  1850. struct wsa_macro_priv *wsa_priv = NULL;
  1851. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1852. return -EINVAL;
  1853. dev_dbg(component->dev, "%s: Compander %d enable current %d, new %d\n",
  1854. __func__, comp + 1, wsa_priv->comp_enabled[comp], value);
  1855. wsa_priv->comp_enabled[comp] = value;
  1856. return 0;
  1857. }
  1858. static int wsa_macro_ear_spkr_pa_gain_get(struct snd_kcontrol *kcontrol,
  1859. struct snd_ctl_elem_value *ucontrol)
  1860. {
  1861. struct snd_soc_component *component =
  1862. snd_soc_kcontrol_component(kcontrol);
  1863. struct device *wsa_dev = NULL;
  1864. struct wsa_macro_priv *wsa_priv = NULL;
  1865. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1866. return -EINVAL;
  1867. ucontrol->value.integer.value[0] = wsa_priv->ear_spkr_gain;
  1868. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  1869. __func__, ucontrol->value.integer.value[0]);
  1870. return 0;
  1871. }
  1872. static int wsa_macro_ear_spkr_pa_gain_put(struct snd_kcontrol *kcontrol,
  1873. struct snd_ctl_elem_value *ucontrol)
  1874. {
  1875. struct snd_soc_component *component =
  1876. snd_soc_kcontrol_component(kcontrol);
  1877. struct device *wsa_dev = NULL;
  1878. struct wsa_macro_priv *wsa_priv = NULL;
  1879. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1880. return -EINVAL;
  1881. wsa_priv->ear_spkr_gain = ucontrol->value.integer.value[0];
  1882. dev_dbg(component->dev, "%s: gain = %d\n", __func__,
  1883. wsa_priv->ear_spkr_gain);
  1884. return 0;
  1885. }
  1886. static int wsa_macro_spkr_left_boost_stage_get(struct snd_kcontrol *kcontrol,
  1887. struct snd_ctl_elem_value *ucontrol)
  1888. {
  1889. u8 bst_state_max = 0;
  1890. struct snd_soc_component *component =
  1891. snd_soc_kcontrol_component(kcontrol);
  1892. bst_state_max = snd_soc_component_read32(component,
  1893. BOLERO_CDC_WSA_BOOST0_BOOST_CTL);
  1894. bst_state_max = (bst_state_max & 0x0c) >> 2;
  1895. ucontrol->value.integer.value[0] = bst_state_max;
  1896. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  1897. __func__, ucontrol->value.integer.value[0]);
  1898. return 0;
  1899. }
  1900. static int wsa_macro_spkr_left_boost_stage_put(struct snd_kcontrol *kcontrol,
  1901. struct snd_ctl_elem_value *ucontrol)
  1902. {
  1903. u8 bst_state_max;
  1904. struct snd_soc_component *component =
  1905. snd_soc_kcontrol_component(kcontrol);
  1906. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  1907. __func__, ucontrol->value.integer.value[0]);
  1908. bst_state_max = ucontrol->value.integer.value[0] << 2;
  1909. /* bolero does not need to limit the boost levels */
  1910. return 0;
  1911. }
  1912. static int wsa_macro_spkr_right_boost_stage_get(struct snd_kcontrol *kcontrol,
  1913. struct snd_ctl_elem_value *ucontrol)
  1914. {
  1915. u8 bst_state_max = 0;
  1916. struct snd_soc_component *component =
  1917. snd_soc_kcontrol_component(kcontrol);
  1918. bst_state_max = snd_soc_component_read32(component,
  1919. BOLERO_CDC_WSA_BOOST1_BOOST_CTL);
  1920. bst_state_max = (bst_state_max & 0x0c) >> 2;
  1921. ucontrol->value.integer.value[0] = bst_state_max;
  1922. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  1923. __func__, ucontrol->value.integer.value[0]);
  1924. return 0;
  1925. }
  1926. static int wsa_macro_spkr_right_boost_stage_put(struct snd_kcontrol *kcontrol,
  1927. struct snd_ctl_elem_value *ucontrol)
  1928. {
  1929. u8 bst_state_max;
  1930. struct snd_soc_component *component =
  1931. snd_soc_kcontrol_component(kcontrol);
  1932. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  1933. __func__, ucontrol->value.integer.value[0]);
  1934. bst_state_max = ucontrol->value.integer.value[0] << 2;
  1935. /* bolero does not need to limit the boost levels */
  1936. return 0;
  1937. }
  1938. static int wsa_macro_rx_mux_get(struct snd_kcontrol *kcontrol,
  1939. struct snd_ctl_elem_value *ucontrol)
  1940. {
  1941. struct snd_soc_dapm_widget *widget =
  1942. snd_soc_dapm_kcontrol_widget(kcontrol);
  1943. struct snd_soc_component *component =
  1944. snd_soc_dapm_to_component(widget->dapm);
  1945. struct device *wsa_dev = NULL;
  1946. struct wsa_macro_priv *wsa_priv = NULL;
  1947. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1948. return -EINVAL;
  1949. ucontrol->value.integer.value[0] =
  1950. wsa_priv->rx_port_value[widget->shift];
  1951. return 0;
  1952. }
  1953. static int wsa_macro_rx_mux_put(struct snd_kcontrol *kcontrol,
  1954. struct snd_ctl_elem_value *ucontrol)
  1955. {
  1956. struct snd_soc_dapm_widget *widget =
  1957. snd_soc_dapm_kcontrol_widget(kcontrol);
  1958. struct snd_soc_component *component =
  1959. snd_soc_dapm_to_component(widget->dapm);
  1960. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1961. struct snd_soc_dapm_update *update = NULL;
  1962. u32 rx_port_value = ucontrol->value.integer.value[0];
  1963. u32 bit_input = 0;
  1964. u32 aif_rst;
  1965. struct device *wsa_dev = NULL;
  1966. struct wsa_macro_priv *wsa_priv = NULL;
  1967. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  1968. return -EINVAL;
  1969. aif_rst = wsa_priv->rx_port_value[widget->shift];
  1970. if (!rx_port_value) {
  1971. if (aif_rst == 0) {
  1972. dev_err(wsa_dev, "%s: AIF reset already\n", __func__);
  1973. return 0;
  1974. }
  1975. if (aif_rst >= WSA_MACRO_RX_MAX) {
  1976. dev_err(wsa_dev, "%s: Invalid AIF reset\n", __func__);
  1977. return 0;
  1978. }
  1979. }
  1980. wsa_priv->rx_port_value[widget->shift] = rx_port_value;
  1981. bit_input = widget->shift;
  1982. dev_dbg(wsa_dev,
  1983. "%s: mux input: %d, mux output: %d, bit: %d\n",
  1984. __func__, rx_port_value, widget->shift, bit_input);
  1985. switch (rx_port_value) {
  1986. case 0:
  1987. if (wsa_priv->active_ch_cnt[aif_rst]) {
  1988. clear_bit(bit_input,
  1989. &wsa_priv->active_ch_mask[aif_rst]);
  1990. wsa_priv->active_ch_cnt[aif_rst]--;
  1991. }
  1992. break;
  1993. case 1:
  1994. case 2:
  1995. set_bit(bit_input,
  1996. &wsa_priv->active_ch_mask[rx_port_value]);
  1997. wsa_priv->active_ch_cnt[rx_port_value]++;
  1998. break;
  1999. default:
  2000. dev_err(wsa_dev,
  2001. "%s: Invalid AIF_ID for WSA RX MUX %d\n",
  2002. __func__, rx_port_value);
  2003. return -EINVAL;
  2004. }
  2005. snd_soc_dapm_mux_update_power(widget->dapm, kcontrol,
  2006. rx_port_value, e, update);
  2007. return 0;
  2008. }
  2009. static int wsa_macro_vbat_bcl_gsm_mode_func_get(struct snd_kcontrol *kcontrol,
  2010. struct snd_ctl_elem_value *ucontrol)
  2011. {
  2012. struct snd_soc_component *component =
  2013. snd_soc_kcontrol_component(kcontrol);
  2014. ucontrol->value.integer.value[0] =
  2015. ((snd_soc_component_read32(
  2016. component, BOLERO_CDC_WSA_VBAT_BCL_VBAT_CFG) & 0x04) ?
  2017. 1 : 0);
  2018. dev_dbg(component->dev, "%s: value: %lu\n", __func__,
  2019. ucontrol->value.integer.value[0]);
  2020. return 0;
  2021. }
  2022. static int wsa_macro_vbat_bcl_gsm_mode_func_put(struct snd_kcontrol *kcontrol,
  2023. struct snd_ctl_elem_value *ucontrol)
  2024. {
  2025. struct snd_soc_component *component =
  2026. snd_soc_kcontrol_component(kcontrol);
  2027. dev_dbg(component->dev, "%s: value: %lu\n", __func__,
  2028. ucontrol->value.integer.value[0]);
  2029. /* Set Vbat register configuration for GSM mode bit based on value */
  2030. if (ucontrol->value.integer.value[0])
  2031. snd_soc_component_update_bits(component,
  2032. BOLERO_CDC_WSA_VBAT_BCL_VBAT_CFG,
  2033. 0x04, 0x04);
  2034. else
  2035. snd_soc_component_update_bits(component,
  2036. BOLERO_CDC_WSA_VBAT_BCL_VBAT_CFG,
  2037. 0x04, 0x00);
  2038. return 0;
  2039. }
  2040. static int wsa_macro_soft_clip_enable_get(struct snd_kcontrol *kcontrol,
  2041. struct snd_ctl_elem_value *ucontrol)
  2042. {
  2043. struct snd_soc_component *component =
  2044. snd_soc_kcontrol_component(kcontrol);
  2045. struct device *wsa_dev = NULL;
  2046. struct wsa_macro_priv *wsa_priv = NULL;
  2047. int path = ((struct soc_multi_mixer_control *)
  2048. kcontrol->private_value)->shift;
  2049. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  2050. return -EINVAL;
  2051. ucontrol->value.integer.value[0] = wsa_priv->is_softclip_on[path];
  2052. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  2053. __func__, ucontrol->value.integer.value[0]);
  2054. return 0;
  2055. }
  2056. static int wsa_macro_soft_clip_enable_put(struct snd_kcontrol *kcontrol,
  2057. struct snd_ctl_elem_value *ucontrol)
  2058. {
  2059. struct snd_soc_component *component =
  2060. snd_soc_kcontrol_component(kcontrol);
  2061. struct device *wsa_dev = NULL;
  2062. struct wsa_macro_priv *wsa_priv = NULL;
  2063. int path = ((struct soc_multi_mixer_control *)
  2064. kcontrol->private_value)->shift;
  2065. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  2066. return -EINVAL;
  2067. wsa_priv->is_softclip_on[path] = ucontrol->value.integer.value[0];
  2068. dev_dbg(component->dev, "%s: soft clip enable for %d: %d\n", __func__,
  2069. path, wsa_priv->is_softclip_on[path]);
  2070. return 0;
  2071. }
  2072. static const struct snd_kcontrol_new wsa_macro_snd_controls[] = {
  2073. SOC_ENUM_EXT("EAR SPKR PA Gain", wsa_macro_ear_spkr_pa_gain_enum,
  2074. wsa_macro_ear_spkr_pa_gain_get,
  2075. wsa_macro_ear_spkr_pa_gain_put),
  2076. SOC_ENUM_EXT("SPKR Left Boost Max State",
  2077. wsa_macro_spkr_boost_stage_enum,
  2078. wsa_macro_spkr_left_boost_stage_get,
  2079. wsa_macro_spkr_left_boost_stage_put),
  2080. SOC_ENUM_EXT("SPKR Right Boost Max State",
  2081. wsa_macro_spkr_boost_stage_enum,
  2082. wsa_macro_spkr_right_boost_stage_get,
  2083. wsa_macro_spkr_right_boost_stage_put),
  2084. SOC_ENUM_EXT("GSM mode Enable", wsa_macro_vbat_bcl_gsm_mode_enum,
  2085. wsa_macro_vbat_bcl_gsm_mode_func_get,
  2086. wsa_macro_vbat_bcl_gsm_mode_func_put),
  2087. SOC_SINGLE_EXT("WSA_Softclip0 Enable", SND_SOC_NOPM,
  2088. WSA_MACRO_SOFTCLIP0, 1, 0,
  2089. wsa_macro_soft_clip_enable_get,
  2090. wsa_macro_soft_clip_enable_put),
  2091. SOC_SINGLE_EXT("WSA_Softclip1 Enable", SND_SOC_NOPM,
  2092. WSA_MACRO_SOFTCLIP1, 1, 0,
  2093. wsa_macro_soft_clip_enable_get,
  2094. wsa_macro_soft_clip_enable_put),
  2095. SOC_SINGLE_S8_TLV("WSA_RX0 Digital Volume",
  2096. BOLERO_CDC_WSA_RX0_RX_VOL_CTL,
  2097. -84, 40, digital_gain),
  2098. SOC_SINGLE_S8_TLV("WSA_RX1 Digital Volume",
  2099. BOLERO_CDC_WSA_RX1_RX_VOL_CTL,
  2100. -84, 40, digital_gain),
  2101. SOC_SINGLE_EXT("WSA_RX0 Digital Mute", SND_SOC_NOPM, WSA_MACRO_RX0, 1,
  2102. 0, wsa_macro_get_rx_mute_status,
  2103. wsa_macro_set_rx_mute_status),
  2104. SOC_SINGLE_EXT("WSA_RX1 Digital Mute", SND_SOC_NOPM, WSA_MACRO_RX1, 1,
  2105. 0, wsa_macro_get_rx_mute_status,
  2106. wsa_macro_set_rx_mute_status),
  2107. SOC_SINGLE_EXT("WSA_RX0_MIX Digital Mute", SND_SOC_NOPM,
  2108. WSA_MACRO_RX_MIX0, 1, 0, wsa_macro_get_rx_mute_status,
  2109. wsa_macro_set_rx_mute_status),
  2110. SOC_SINGLE_EXT("WSA_RX1_MIX Digital Mute", SND_SOC_NOPM,
  2111. WSA_MACRO_RX_MIX1, 1, 0, wsa_macro_get_rx_mute_status,
  2112. wsa_macro_set_rx_mute_status),
  2113. SOC_SINGLE_EXT("WSA_COMP1 Switch", SND_SOC_NOPM, WSA_MACRO_COMP1, 1, 0,
  2114. wsa_macro_get_compander, wsa_macro_set_compander),
  2115. SOC_SINGLE_EXT("WSA_COMP2 Switch", SND_SOC_NOPM, WSA_MACRO_COMP2, 1, 0,
  2116. wsa_macro_get_compander, wsa_macro_set_compander),
  2117. SOC_SINGLE_EXT("WSA_RX0 EC_HQ Switch", SND_SOC_NOPM, WSA_MACRO_RX0,
  2118. 1, 0, wsa_macro_get_ec_hq, wsa_macro_set_ec_hq),
  2119. SOC_SINGLE_EXT("WSA_RX1 EC_HQ Switch", SND_SOC_NOPM, WSA_MACRO_RX1,
  2120. 1, 0, wsa_macro_get_ec_hq, wsa_macro_set_ec_hq),
  2121. };
  2122. static const struct soc_enum rx_mux_enum =
  2123. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(rx_mux_text), rx_mux_text);
  2124. static const struct snd_kcontrol_new rx_mux[WSA_MACRO_RX_MAX] = {
  2125. SOC_DAPM_ENUM_EXT("WSA RX0 Mux", rx_mux_enum,
  2126. wsa_macro_rx_mux_get, wsa_macro_rx_mux_put),
  2127. SOC_DAPM_ENUM_EXT("WSA RX1 Mux", rx_mux_enum,
  2128. wsa_macro_rx_mux_get, wsa_macro_rx_mux_put),
  2129. SOC_DAPM_ENUM_EXT("WSA RX_MIX0 Mux", rx_mux_enum,
  2130. wsa_macro_rx_mux_get, wsa_macro_rx_mux_put),
  2131. SOC_DAPM_ENUM_EXT("WSA RX_MIX1 Mux", rx_mux_enum,
  2132. wsa_macro_rx_mux_get, wsa_macro_rx_mux_put),
  2133. };
  2134. static int wsa_macro_vi_feed_mixer_get(struct snd_kcontrol *kcontrol,
  2135. struct snd_ctl_elem_value *ucontrol)
  2136. {
  2137. struct snd_soc_dapm_widget *widget =
  2138. snd_soc_dapm_kcontrol_widget(kcontrol);
  2139. struct snd_soc_component *component =
  2140. snd_soc_dapm_to_component(widget->dapm);
  2141. struct soc_multi_mixer_control *mixer =
  2142. ((struct soc_multi_mixer_control *)kcontrol->private_value);
  2143. u32 dai_id = widget->shift;
  2144. u32 spk_tx_id = mixer->shift;
  2145. struct device *wsa_dev = NULL;
  2146. struct wsa_macro_priv *wsa_priv = NULL;
  2147. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  2148. return -EINVAL;
  2149. if (test_bit(spk_tx_id, &wsa_priv->active_ch_mask[dai_id]))
  2150. ucontrol->value.integer.value[0] = 1;
  2151. else
  2152. ucontrol->value.integer.value[0] = 0;
  2153. return 0;
  2154. }
  2155. static int wsa_macro_vi_feed_mixer_put(struct snd_kcontrol *kcontrol,
  2156. struct snd_ctl_elem_value *ucontrol)
  2157. {
  2158. struct snd_soc_dapm_widget *widget =
  2159. snd_soc_dapm_kcontrol_widget(kcontrol);
  2160. struct snd_soc_component *component =
  2161. snd_soc_dapm_to_component(widget->dapm);
  2162. struct soc_multi_mixer_control *mixer =
  2163. ((struct soc_multi_mixer_control *)kcontrol->private_value);
  2164. u32 spk_tx_id = mixer->shift;
  2165. u32 enable = ucontrol->value.integer.value[0];
  2166. struct device *wsa_dev = NULL;
  2167. struct wsa_macro_priv *wsa_priv = NULL;
  2168. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  2169. return -EINVAL;
  2170. wsa_priv->vi_feed_value = ucontrol->value.integer.value[0];
  2171. if (enable) {
  2172. if (spk_tx_id == WSA_MACRO_TX0 &&
  2173. !test_bit(WSA_MACRO_TX0,
  2174. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI])) {
  2175. set_bit(WSA_MACRO_TX0,
  2176. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI]);
  2177. wsa_priv->active_ch_cnt[WSA_MACRO_AIF_VI]++;
  2178. }
  2179. if (spk_tx_id == WSA_MACRO_TX1 &&
  2180. !test_bit(WSA_MACRO_TX1,
  2181. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI])) {
  2182. set_bit(WSA_MACRO_TX1,
  2183. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI]);
  2184. wsa_priv->active_ch_cnt[WSA_MACRO_AIF_VI]++;
  2185. }
  2186. } else {
  2187. if (spk_tx_id == WSA_MACRO_TX0 &&
  2188. test_bit(WSA_MACRO_TX0,
  2189. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI])) {
  2190. clear_bit(WSA_MACRO_TX0,
  2191. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI]);
  2192. wsa_priv->active_ch_cnt[WSA_MACRO_AIF_VI]--;
  2193. }
  2194. if (spk_tx_id == WSA_MACRO_TX1 &&
  2195. test_bit(WSA_MACRO_TX1,
  2196. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI])) {
  2197. clear_bit(WSA_MACRO_TX1,
  2198. &wsa_priv->active_ch_mask[WSA_MACRO_AIF_VI]);
  2199. wsa_priv->active_ch_cnt[WSA_MACRO_AIF_VI]--;
  2200. }
  2201. }
  2202. snd_soc_dapm_mixer_update_power(widget->dapm, kcontrol, enable, NULL);
  2203. return 0;
  2204. }
  2205. static const struct snd_kcontrol_new aif_vi_mixer[] = {
  2206. SOC_SINGLE_EXT("WSA_SPKR_VI_1", SND_SOC_NOPM, WSA_MACRO_TX0, 1, 0,
  2207. wsa_macro_vi_feed_mixer_get,
  2208. wsa_macro_vi_feed_mixer_put),
  2209. SOC_SINGLE_EXT("WSA_SPKR_VI_2", SND_SOC_NOPM, WSA_MACRO_TX1, 1, 0,
  2210. wsa_macro_vi_feed_mixer_get,
  2211. wsa_macro_vi_feed_mixer_put),
  2212. };
  2213. static const struct snd_soc_dapm_widget wsa_macro_dapm_widgets[] = {
  2214. SND_SOC_DAPM_AIF_IN("WSA AIF1 PB", "WSA_AIF1 Playback", 0,
  2215. SND_SOC_NOPM, 0, 0),
  2216. SND_SOC_DAPM_AIF_IN("WSA AIF_MIX1 PB", "WSA_AIF_MIX1 Playback", 0,
  2217. SND_SOC_NOPM, 0, 0),
  2218. SND_SOC_DAPM_AIF_OUT_E("WSA AIF_VI", "WSA_AIF_VI Capture", 0,
  2219. SND_SOC_NOPM, WSA_MACRO_AIF_VI, 0,
  2220. wsa_macro_enable_vi_feedback,
  2221. SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
  2222. SND_SOC_DAPM_AIF_OUT("WSA AIF_ECHO", "WSA_AIF_ECHO Capture", 0,
  2223. SND_SOC_NOPM, 0, 0),
  2224. SND_SOC_DAPM_MIXER("WSA_AIF_VI Mixer", SND_SOC_NOPM, WSA_MACRO_AIF_VI,
  2225. 0, aif_vi_mixer, ARRAY_SIZE(aif_vi_mixer)),
  2226. SND_SOC_DAPM_MUX_E("WSA RX_MIX EC0_MUX", SND_SOC_NOPM,
  2227. WSA_MACRO_EC0_MUX, 0,
  2228. &rx_mix_ec0_mux, wsa_macro_enable_echo,
  2229. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2230. SND_SOC_DAPM_MUX_E("WSA RX_MIX EC1_MUX", SND_SOC_NOPM,
  2231. WSA_MACRO_EC1_MUX, 0,
  2232. &rx_mix_ec1_mux, wsa_macro_enable_echo,
  2233. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2234. SND_SOC_DAPM_MUX("WSA RX0 MUX", SND_SOC_NOPM, WSA_MACRO_RX0, 0,
  2235. &rx_mux[WSA_MACRO_RX0]),
  2236. SND_SOC_DAPM_MUX("WSA RX1 MUX", SND_SOC_NOPM, WSA_MACRO_RX1, 0,
  2237. &rx_mux[WSA_MACRO_RX1]),
  2238. SND_SOC_DAPM_MUX("WSA RX_MIX0 MUX", SND_SOC_NOPM, WSA_MACRO_RX_MIX0, 0,
  2239. &rx_mux[WSA_MACRO_RX_MIX0]),
  2240. SND_SOC_DAPM_MUX("WSA RX_MIX1 MUX", SND_SOC_NOPM, WSA_MACRO_RX_MIX1, 0,
  2241. &rx_mux[WSA_MACRO_RX_MIX1]),
  2242. SND_SOC_DAPM_MIXER("WSA RX0", SND_SOC_NOPM, 0, 0, NULL, 0),
  2243. SND_SOC_DAPM_MIXER("WSA RX1", SND_SOC_NOPM, 0, 0, NULL, 0),
  2244. SND_SOC_DAPM_MIXER("WSA RX_MIX0", SND_SOC_NOPM, 0, 0, NULL, 0),
  2245. SND_SOC_DAPM_MIXER("WSA RX_MIX1", SND_SOC_NOPM, 0, 0, NULL, 0),
  2246. SND_SOC_DAPM_MUX_E("WSA_RX0 INP0", SND_SOC_NOPM, 0, 0,
  2247. &rx0_prim_inp0_mux, wsa_macro_enable_swr,
  2248. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2249. SND_SOC_DAPM_MUX_E("WSA_RX0 INP1", SND_SOC_NOPM, 0, 0,
  2250. &rx0_prim_inp1_mux, wsa_macro_enable_swr,
  2251. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2252. SND_SOC_DAPM_MUX_E("WSA_RX0 INP2", SND_SOC_NOPM, 0, 0,
  2253. &rx0_prim_inp2_mux, wsa_macro_enable_swr,
  2254. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2255. SND_SOC_DAPM_MUX_E("WSA_RX0 MIX INP", BOLERO_CDC_WSA_RX0_RX_PATH_MIX_CTL,
  2256. 0, 0, &rx0_mix_mux, wsa_macro_enable_mix_path,
  2257. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2258. SND_SOC_DAPM_MUX_E("WSA_RX1 INP0", SND_SOC_NOPM, 0, 0,
  2259. &rx1_prim_inp0_mux, wsa_macro_enable_swr,
  2260. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2261. SND_SOC_DAPM_MUX_E("WSA_RX1 INP1", SND_SOC_NOPM, 0, 0,
  2262. &rx1_prim_inp1_mux, wsa_macro_enable_swr,
  2263. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2264. SND_SOC_DAPM_MUX_E("WSA_RX1 INP2", SND_SOC_NOPM, 0, 0,
  2265. &rx1_prim_inp2_mux, wsa_macro_enable_swr,
  2266. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2267. SND_SOC_DAPM_MUX_E("WSA_RX1 MIX INP", BOLERO_CDC_WSA_RX1_RX_PATH_MIX_CTL,
  2268. 0, 0, &rx1_mix_mux, wsa_macro_enable_mix_path,
  2269. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2270. SND_SOC_DAPM_MIXER_E("WSA_RX INT0 MIX", SND_SOC_NOPM,
  2271. 0, 0, NULL, 0, wsa_macro_enable_main_path,
  2272. SND_SOC_DAPM_PRE_PMU),
  2273. SND_SOC_DAPM_MIXER_E("WSA_RX INT1 MIX", SND_SOC_NOPM,
  2274. 1, 0, NULL, 0, wsa_macro_enable_main_path,
  2275. SND_SOC_DAPM_PRE_PMU),
  2276. SND_SOC_DAPM_MIXER("WSA_RX INT0 SEC MIX", SND_SOC_NOPM, 0, 0, NULL, 0),
  2277. SND_SOC_DAPM_MIXER("WSA_RX INT1 SEC MIX", SND_SOC_NOPM, 0, 0, NULL, 0),
  2278. SND_SOC_DAPM_MUX_E("WSA_RX0 INT0 SIDETONE MIX",
  2279. BOLERO_CDC_WSA_RX0_RX_PATH_CFG1, 4, 0,
  2280. &rx0_sidetone_mix_mux, wsa_macro_enable_swr,
  2281. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2282. SND_SOC_DAPM_INPUT("WSA SRC0_INP"),
  2283. SND_SOC_DAPM_INPUT("WSA_TX DEC0_INP"),
  2284. SND_SOC_DAPM_INPUT("WSA_TX DEC1_INP"),
  2285. SND_SOC_DAPM_MIXER_E("WSA_RX INT0 INTERP", SND_SOC_NOPM,
  2286. WSA_MACRO_COMP1, 0, NULL, 0, wsa_macro_enable_interpolator,
  2287. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2288. SND_SOC_DAPM_POST_PMD),
  2289. SND_SOC_DAPM_MIXER_E("WSA_RX INT1 INTERP", SND_SOC_NOPM,
  2290. WSA_MACRO_COMP2, 0, NULL, 0, wsa_macro_enable_interpolator,
  2291. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2292. SND_SOC_DAPM_POST_PMD),
  2293. SND_SOC_DAPM_MIXER_E("WSA_RX INT0 CHAIN", SND_SOC_NOPM, 0, 0,
  2294. NULL, 0, wsa_macro_spk_boost_event,
  2295. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2296. SND_SOC_DAPM_POST_PMD),
  2297. SND_SOC_DAPM_MIXER_E("WSA_RX INT1 CHAIN", SND_SOC_NOPM, 0, 0,
  2298. NULL, 0, wsa_macro_spk_boost_event,
  2299. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2300. SND_SOC_DAPM_POST_PMD),
  2301. SND_SOC_DAPM_MIXER_E("WSA_RX INT0 VBAT", SND_SOC_NOPM,
  2302. 0, 0, wsa_int0_vbat_mix_switch,
  2303. ARRAY_SIZE(wsa_int0_vbat_mix_switch),
  2304. wsa_macro_enable_vbat,
  2305. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2306. SND_SOC_DAPM_MIXER_E("WSA_RX INT1 VBAT", SND_SOC_NOPM,
  2307. 0, 0, wsa_int1_vbat_mix_switch,
  2308. ARRAY_SIZE(wsa_int1_vbat_mix_switch),
  2309. wsa_macro_enable_vbat,
  2310. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2311. SND_SOC_DAPM_INPUT("VIINPUT_WSA"),
  2312. SND_SOC_DAPM_OUTPUT("WSA_SPK1 OUT"),
  2313. SND_SOC_DAPM_OUTPUT("WSA_SPK2 OUT"),
  2314. SND_SOC_DAPM_SUPPLY_S("WSA_MCLK", 0, SND_SOC_NOPM, 0, 0,
  2315. wsa_macro_mclk_event, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2316. };
  2317. static const struct snd_soc_dapm_route wsa_audio_map[] = {
  2318. /* VI Feedback */
  2319. {"WSA_AIF_VI Mixer", "WSA_SPKR_VI_1", "VIINPUT_WSA"},
  2320. {"WSA_AIF_VI Mixer", "WSA_SPKR_VI_2", "VIINPUT_WSA"},
  2321. {"WSA AIF_VI", NULL, "WSA_AIF_VI Mixer"},
  2322. {"WSA AIF_VI", NULL, "WSA_MCLK"},
  2323. {"WSA RX_MIX EC0_MUX", "RX_MIX_TX0", "WSA_RX INT0 SEC MIX"},
  2324. {"WSA RX_MIX EC1_MUX", "RX_MIX_TX0", "WSA_RX INT0 SEC MIX"},
  2325. {"WSA RX_MIX EC0_MUX", "RX_MIX_TX1", "WSA_RX INT1 SEC MIX"},
  2326. {"WSA RX_MIX EC1_MUX", "RX_MIX_TX1", "WSA_RX INT1 SEC MIX"},
  2327. {"WSA AIF_ECHO", NULL, "WSA RX_MIX EC0_MUX"},
  2328. {"WSA AIF_ECHO", NULL, "WSA RX_MIX EC1_MUX"},
  2329. {"WSA AIF_ECHO", NULL, "WSA_MCLK"},
  2330. {"WSA AIF1 PB", NULL, "WSA_MCLK"},
  2331. {"WSA AIF_MIX1 PB", NULL, "WSA_MCLK"},
  2332. {"WSA RX0 MUX", "AIF1_PB", "WSA AIF1 PB"},
  2333. {"WSA RX1 MUX", "AIF1_PB", "WSA AIF1 PB"},
  2334. {"WSA RX_MIX0 MUX", "AIF1_PB", "WSA AIF1 PB"},
  2335. {"WSA RX_MIX1 MUX", "AIF1_PB", "WSA AIF1 PB"},
  2336. {"WSA RX0 MUX", "AIF_MIX1_PB", "WSA AIF_MIX1 PB"},
  2337. {"WSA RX1 MUX", "AIF_MIX1_PB", "WSA AIF_MIX1 PB"},
  2338. {"WSA RX_MIX0 MUX", "AIF_MIX1_PB", "WSA AIF_MIX1 PB"},
  2339. {"WSA RX_MIX1 MUX", "AIF_MIX1_PB", "WSA AIF_MIX1 PB"},
  2340. {"WSA RX0", NULL, "WSA RX0 MUX"},
  2341. {"WSA RX1", NULL, "WSA RX1 MUX"},
  2342. {"WSA RX_MIX0", NULL, "WSA RX_MIX0 MUX"},
  2343. {"WSA RX_MIX1", NULL, "WSA RX_MIX1 MUX"},
  2344. {"WSA_RX0 INP0", "RX0", "WSA RX0"},
  2345. {"WSA_RX0 INP0", "RX1", "WSA RX1"},
  2346. {"WSA_RX0 INP0", "RX_MIX0", "WSA RX_MIX0"},
  2347. {"WSA_RX0 INP0", "RX_MIX1", "WSA RX_MIX1"},
  2348. {"WSA_RX0 INP0", "DEC0", "WSA_TX DEC0_INP"},
  2349. {"WSA_RX0 INP0", "DEC1", "WSA_TX DEC1_INP"},
  2350. {"WSA_RX INT0 MIX", NULL, "WSA_RX0 INP0"},
  2351. {"WSA_RX0 INP1", "RX0", "WSA RX0"},
  2352. {"WSA_RX0 INP1", "RX1", "WSA RX1"},
  2353. {"WSA_RX0 INP1", "RX_MIX0", "WSA RX_MIX0"},
  2354. {"WSA_RX0 INP1", "RX_MIX1", "WSA RX_MIX1"},
  2355. {"WSA_RX0 INP1", "DEC0", "WSA_TX DEC0_INP"},
  2356. {"WSA_RX0 INP1", "DEC1", "WSA_TX DEC1_INP"},
  2357. {"WSA_RX INT0 MIX", NULL, "WSA_RX0 INP1"},
  2358. {"WSA_RX0 INP2", "RX0", "WSA RX0"},
  2359. {"WSA_RX0 INP2", "RX1", "WSA RX1"},
  2360. {"WSA_RX0 INP2", "RX_MIX0", "WSA RX_MIX0"},
  2361. {"WSA_RX0 INP2", "RX_MIX1", "WSA RX_MIX1"},
  2362. {"WSA_RX0 INP2", "DEC0", "WSA_TX DEC0_INP"},
  2363. {"WSA_RX0 INP2", "DEC1", "WSA_TX DEC1_INP"},
  2364. {"WSA_RX INT0 MIX", NULL, "WSA_RX0 INP2"},
  2365. {"WSA_RX0 MIX INP", "RX0", "WSA RX0"},
  2366. {"WSA_RX0 MIX INP", "RX1", "WSA RX1"},
  2367. {"WSA_RX0 MIX INP", "RX_MIX0", "WSA RX_MIX0"},
  2368. {"WSA_RX0 MIX INP", "RX_MIX1", "WSA RX_MIX1"},
  2369. {"WSA_RX INT0 SEC MIX", NULL, "WSA_RX0 MIX INP"},
  2370. {"WSA_RX INT0 SEC MIX", NULL, "WSA_RX INT0 MIX"},
  2371. {"WSA_RX INT0 INTERP", NULL, "WSA_RX INT0 SEC MIX"},
  2372. {"WSA_RX0 INT0 SIDETONE MIX", "SRC0", "WSA SRC0_INP"},
  2373. {"WSA_RX INT0 INTERP", NULL, "WSA_RX0 INT0 SIDETONE MIX"},
  2374. {"WSA_RX INT0 CHAIN", NULL, "WSA_RX INT0 INTERP"},
  2375. {"WSA_RX INT0 VBAT", "WSA RX0 VBAT Enable", "WSA_RX INT0 INTERP"},
  2376. {"WSA_RX INT0 CHAIN", NULL, "WSA_RX INT0 VBAT"},
  2377. {"WSA_SPK1 OUT", NULL, "WSA_RX INT0 CHAIN"},
  2378. {"WSA_SPK1 OUT", NULL, "WSA_MCLK"},
  2379. {"WSA_RX1 INP0", "RX0", "WSA RX0"},
  2380. {"WSA_RX1 INP0", "RX1", "WSA RX1"},
  2381. {"WSA_RX1 INP0", "RX_MIX0", "WSA RX_MIX0"},
  2382. {"WSA_RX1 INP0", "RX_MIX1", "WSA RX_MIX1"},
  2383. {"WSA_RX1 INP0", "DEC0", "WSA_TX DEC0_INP"},
  2384. {"WSA_RX1 INP0", "DEC1", "WSA_TX DEC1_INP"},
  2385. {"WSA_RX INT1 MIX", NULL, "WSA_RX1 INP0"},
  2386. {"WSA_RX1 INP1", "RX0", "WSA RX0"},
  2387. {"WSA_RX1 INP1", "RX1", "WSA RX1"},
  2388. {"WSA_RX1 INP1", "RX_MIX0", "WSA RX_MIX0"},
  2389. {"WSA_RX1 INP1", "RX_MIX1", "WSA RX_MIX1"},
  2390. {"WSA_RX1 INP1", "DEC0", "WSA_TX DEC0_INP"},
  2391. {"WSA_RX1 INP1", "DEC1", "WSA_TX DEC1_INP"},
  2392. {"WSA_RX INT1 MIX", NULL, "WSA_RX1 INP1"},
  2393. {"WSA_RX1 INP2", "RX0", "WSA RX0"},
  2394. {"WSA_RX1 INP2", "RX1", "WSA RX1"},
  2395. {"WSA_RX1 INP2", "RX_MIX0", "WSA RX_MIX0"},
  2396. {"WSA_RX1 INP2", "RX_MIX1", "WSA RX_MIX1"},
  2397. {"WSA_RX1 INP2", "DEC0", "WSA_TX DEC0_INP"},
  2398. {"WSA_RX1 INP2", "DEC1", "WSA_TX DEC1_INP"},
  2399. {"WSA_RX INT1 MIX", NULL, "WSA_RX1 INP2"},
  2400. {"WSA_RX1 MIX INP", "RX0", "WSA RX0"},
  2401. {"WSA_RX1 MIX INP", "RX1", "WSA RX1"},
  2402. {"WSA_RX1 MIX INP", "RX_MIX0", "WSA RX_MIX0"},
  2403. {"WSA_RX1 MIX INP", "RX_MIX1", "WSA RX_MIX1"},
  2404. {"WSA_RX INT1 SEC MIX", NULL, "WSA_RX1 MIX INP"},
  2405. {"WSA_RX INT1 SEC MIX", NULL, "WSA_RX INT1 MIX"},
  2406. {"WSA_RX INT1 INTERP", NULL, "WSA_RX INT1 SEC MIX"},
  2407. {"WSA_RX INT1 VBAT", "WSA RX1 VBAT Enable", "WSA_RX INT1 INTERP"},
  2408. {"WSA_RX INT1 CHAIN", NULL, "WSA_RX INT1 VBAT"},
  2409. {"WSA_RX INT1 CHAIN", NULL, "WSA_RX INT1 INTERP"},
  2410. {"WSA_SPK2 OUT", NULL, "WSA_RX INT1 CHAIN"},
  2411. {"WSA_SPK2 OUT", NULL, "WSA_MCLK"},
  2412. };
  2413. static const struct wsa_macro_reg_mask_val wsa_macro_reg_init[] = {
  2414. {BOLERO_CDC_WSA_BOOST0_BOOST_CFG1, 0x3F, 0x12},
  2415. {BOLERO_CDC_WSA_BOOST0_BOOST_CFG2, 0x1C, 0x08},
  2416. {BOLERO_CDC_WSA_COMPANDER0_CTL7, 0x1E, 0x0C},
  2417. {BOLERO_CDC_WSA_BOOST1_BOOST_CFG1, 0x3F, 0x12},
  2418. {BOLERO_CDC_WSA_BOOST1_BOOST_CFG2, 0x1C, 0x08},
  2419. {BOLERO_CDC_WSA_COMPANDER1_CTL7, 0x1E, 0x0C},
  2420. {BOLERO_CDC_WSA_BOOST0_BOOST_CTL, 0x70, 0x58},
  2421. {BOLERO_CDC_WSA_BOOST1_BOOST_CTL, 0x70, 0x58},
  2422. {BOLERO_CDC_WSA_RX0_RX_PATH_CFG1, 0x08, 0x08},
  2423. {BOLERO_CDC_WSA_RX1_RX_PATH_CFG1, 0x08, 0x08},
  2424. {BOLERO_CDC_WSA_TOP_TOP_CFG1, 0x02, 0x02},
  2425. {BOLERO_CDC_WSA_TOP_TOP_CFG1, 0x01, 0x01},
  2426. {BOLERO_CDC_WSA_TX0_SPKR_PROT_PATH_CFG0, 0x01, 0x01},
  2427. {BOLERO_CDC_WSA_TX1_SPKR_PROT_PATH_CFG0, 0x01, 0x01},
  2428. {BOLERO_CDC_WSA_TX2_SPKR_PROT_PATH_CFG0, 0x01, 0x01},
  2429. {BOLERO_CDC_WSA_TX3_SPKR_PROT_PATH_CFG0, 0x01, 0x01},
  2430. {BOLERO_CDC_WSA_COMPANDER0_CTL7, 0x01, 0x01},
  2431. {BOLERO_CDC_WSA_COMPANDER1_CTL7, 0x01, 0x01},
  2432. {BOLERO_CDC_WSA_RX0_RX_PATH_CFG0, 0x01, 0x01},
  2433. {BOLERO_CDC_WSA_RX1_RX_PATH_CFG0, 0x01, 0x01},
  2434. {BOLERO_CDC_WSA_RX0_RX_PATH_MIX_CFG, 0x01, 0x01},
  2435. {BOLERO_CDC_WSA_RX1_RX_PATH_MIX_CFG, 0x01, 0x01},
  2436. };
  2437. static void wsa_macro_init_bcl_pmic_reg(struct snd_soc_component *component)
  2438. {
  2439. struct device *wsa_dev = NULL;
  2440. struct wsa_macro_priv *wsa_priv = NULL;
  2441. if (!component) {
  2442. pr_err("%s: NULL component pointer!\n", __func__);
  2443. return;
  2444. }
  2445. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  2446. return;
  2447. switch (wsa_priv->bcl_pmic_params.id) {
  2448. case 0:
  2449. /* Enable ID0 to listen to respective PMIC group interrupts */
  2450. snd_soc_component_update_bits(component,
  2451. BOLERO_CDC_WSA_VBAT_BCL_VBAT_DECODE_CTL1, 0x02, 0x02);
  2452. /* Update MC_SID0 */
  2453. snd_soc_component_update_bits(component,
  2454. BOLERO_CDC_WSA_VBAT_BCL_VBAT_DECODE_CFG1, 0x0F,
  2455. wsa_priv->bcl_pmic_params.sid);
  2456. /* Update MC_PPID0 */
  2457. snd_soc_component_update_bits(component,
  2458. BOLERO_CDC_WSA_VBAT_BCL_VBAT_DECODE_CFG2, 0xFF,
  2459. wsa_priv->bcl_pmic_params.ppid);
  2460. break;
  2461. case 1:
  2462. /* Enable ID1 to listen to respective PMIC group interrupts */
  2463. snd_soc_component_update_bits(component,
  2464. BOLERO_CDC_WSA_VBAT_BCL_VBAT_DECODE_CTL1, 0x01, 0x01);
  2465. /* Update MC_SID1 */
  2466. snd_soc_component_update_bits(component,
  2467. BOLERO_CDC_WSA_VBAT_BCL_VBAT_DECODE_CFG3, 0x0F,
  2468. wsa_priv->bcl_pmic_params.sid);
  2469. /* Update MC_PPID1 */
  2470. snd_soc_component_update_bits(component,
  2471. BOLERO_CDC_WSA_VBAT_BCL_VBAT_DECODE_CFG4, 0xFF,
  2472. wsa_priv->bcl_pmic_params.ppid);
  2473. break;
  2474. default:
  2475. dev_err(wsa_dev, "%s: PMIC ID is invalid %d\n",
  2476. __func__, wsa_priv->bcl_pmic_params.id);
  2477. break;
  2478. }
  2479. }
  2480. static void wsa_macro_init_reg(struct snd_soc_component *component)
  2481. {
  2482. int i;
  2483. for (i = 0; i < ARRAY_SIZE(wsa_macro_reg_init); i++)
  2484. snd_soc_component_update_bits(component,
  2485. wsa_macro_reg_init[i].reg,
  2486. wsa_macro_reg_init[i].mask,
  2487. wsa_macro_reg_init[i].val);
  2488. wsa_macro_init_bcl_pmic_reg(component);
  2489. }
  2490. static int wsa_macro_core_vote(void *handle, bool enable)
  2491. {
  2492. struct wsa_macro_priv *wsa_priv = (struct wsa_macro_priv *) handle;
  2493. if (wsa_priv == NULL) {
  2494. pr_err("%s: wsa priv data is NULL\n", __func__);
  2495. return -EINVAL;
  2496. }
  2497. if (enable) {
  2498. pm_runtime_get_sync(wsa_priv->dev);
  2499. pm_runtime_put_autosuspend(wsa_priv->dev);
  2500. pm_runtime_mark_last_busy(wsa_priv->dev);
  2501. }
  2502. if (bolero_check_core_votes(wsa_priv->dev))
  2503. return 0;
  2504. else
  2505. return -EINVAL;
  2506. }
  2507. static int wsa_swrm_clock(void *handle, bool enable)
  2508. {
  2509. struct wsa_macro_priv *wsa_priv = (struct wsa_macro_priv *) handle;
  2510. struct regmap *regmap = dev_get_regmap(wsa_priv->dev->parent, NULL);
  2511. int ret = 0;
  2512. if (regmap == NULL) {
  2513. dev_err(wsa_priv->dev, "%s: regmap is NULL\n", __func__);
  2514. return -EINVAL;
  2515. }
  2516. mutex_lock(&wsa_priv->swr_clk_lock);
  2517. trace_printk("%s: %s swrm clock %s\n",
  2518. dev_name(wsa_priv->dev), __func__,
  2519. (enable ? "enable" : "disable"));
  2520. dev_dbg(wsa_priv->dev, "%s: swrm clock %s\n",
  2521. __func__, (enable ? "enable" : "disable"));
  2522. if (enable) {
  2523. pm_runtime_get_sync(wsa_priv->dev);
  2524. if (wsa_priv->swr_clk_users == 0) {
  2525. ret = msm_cdc_pinctrl_select_active_state(
  2526. wsa_priv->wsa_swr_gpio_p);
  2527. if (ret < 0) {
  2528. dev_err_ratelimited(wsa_priv->dev,
  2529. "%s: wsa swr pinctrl enable failed\n",
  2530. __func__);
  2531. pm_runtime_mark_last_busy(wsa_priv->dev);
  2532. pm_runtime_put_autosuspend(wsa_priv->dev);
  2533. goto exit;
  2534. }
  2535. ret = wsa_macro_mclk_enable(wsa_priv, 1, true);
  2536. if (ret < 0) {
  2537. msm_cdc_pinctrl_select_sleep_state(
  2538. wsa_priv->wsa_swr_gpio_p);
  2539. dev_err_ratelimited(wsa_priv->dev,
  2540. "%s: wsa request clock enable failed\n",
  2541. __func__);
  2542. pm_runtime_mark_last_busy(wsa_priv->dev);
  2543. pm_runtime_put_autosuspend(wsa_priv->dev);
  2544. goto exit;
  2545. }
  2546. if (wsa_priv->reset_swr)
  2547. regmap_update_bits(regmap,
  2548. BOLERO_CDC_WSA_CLK_RST_CTRL_SWR_CONTROL,
  2549. 0x02, 0x02);
  2550. regmap_update_bits(regmap,
  2551. BOLERO_CDC_WSA_CLK_RST_CTRL_SWR_CONTROL,
  2552. 0x01, 0x01);
  2553. if (wsa_priv->reset_swr)
  2554. regmap_update_bits(regmap,
  2555. BOLERO_CDC_WSA_CLK_RST_CTRL_SWR_CONTROL,
  2556. 0x02, 0x00);
  2557. wsa_priv->reset_swr = false;
  2558. }
  2559. wsa_priv->swr_clk_users++;
  2560. pm_runtime_mark_last_busy(wsa_priv->dev);
  2561. pm_runtime_put_autosuspend(wsa_priv->dev);
  2562. } else {
  2563. if (wsa_priv->swr_clk_users <= 0) {
  2564. dev_err(wsa_priv->dev, "%s: clock already disabled\n",
  2565. __func__);
  2566. wsa_priv->swr_clk_users = 0;
  2567. goto exit;
  2568. }
  2569. wsa_priv->swr_clk_users--;
  2570. if (wsa_priv->swr_clk_users == 0) {
  2571. regmap_update_bits(regmap,
  2572. BOLERO_CDC_WSA_CLK_RST_CTRL_SWR_CONTROL,
  2573. 0x01, 0x00);
  2574. wsa_macro_mclk_enable(wsa_priv, 0, true);
  2575. ret = msm_cdc_pinctrl_select_sleep_state(
  2576. wsa_priv->wsa_swr_gpio_p);
  2577. if (ret < 0) {
  2578. dev_err_ratelimited(wsa_priv->dev,
  2579. "%s: wsa swr pinctrl disable failed\n",
  2580. __func__);
  2581. goto exit;
  2582. }
  2583. }
  2584. }
  2585. trace_printk("%s: %s swrm clock users: %d\n",
  2586. dev_name(wsa_priv->dev), __func__,
  2587. wsa_priv->swr_clk_users);
  2588. dev_dbg(wsa_priv->dev, "%s: swrm clock users %d\n",
  2589. __func__, wsa_priv->swr_clk_users);
  2590. exit:
  2591. mutex_unlock(&wsa_priv->swr_clk_lock);
  2592. return ret;
  2593. }
  2594. static int wsa_macro_init(struct snd_soc_component *component)
  2595. {
  2596. struct snd_soc_dapm_context *dapm =
  2597. snd_soc_component_get_dapm(component);
  2598. int ret;
  2599. struct device *wsa_dev = NULL;
  2600. struct wsa_macro_priv *wsa_priv = NULL;
  2601. wsa_dev = bolero_get_device_ptr(component->dev, WSA_MACRO);
  2602. if (!wsa_dev) {
  2603. dev_err(component->dev,
  2604. "%s: null device for macro!\n", __func__);
  2605. return -EINVAL;
  2606. }
  2607. wsa_priv = dev_get_drvdata(wsa_dev);
  2608. if (!wsa_priv) {
  2609. dev_err(component->dev,
  2610. "%s: priv is null for macro!\n", __func__);
  2611. return -EINVAL;
  2612. }
  2613. ret = snd_soc_dapm_new_controls(dapm, wsa_macro_dapm_widgets,
  2614. ARRAY_SIZE(wsa_macro_dapm_widgets));
  2615. if (ret < 0) {
  2616. dev_err(wsa_dev, "%s: Failed to add controls\n", __func__);
  2617. return ret;
  2618. }
  2619. ret = snd_soc_dapm_add_routes(dapm, wsa_audio_map,
  2620. ARRAY_SIZE(wsa_audio_map));
  2621. if (ret < 0) {
  2622. dev_err(wsa_dev, "%s: Failed to add routes\n", __func__);
  2623. return ret;
  2624. }
  2625. ret = snd_soc_dapm_new_widgets(dapm->card);
  2626. if (ret < 0) {
  2627. dev_err(wsa_dev, "%s: Failed to add widgets\n", __func__);
  2628. return ret;
  2629. }
  2630. ret = snd_soc_add_component_controls(component, wsa_macro_snd_controls,
  2631. ARRAY_SIZE(wsa_macro_snd_controls));
  2632. if (ret < 0) {
  2633. dev_err(wsa_dev, "%s: Failed to add snd_ctls\n", __func__);
  2634. return ret;
  2635. }
  2636. snd_soc_dapm_ignore_suspend(dapm, "WSA_AIF1 Playback");
  2637. snd_soc_dapm_ignore_suspend(dapm, "WSA_AIF_MIX1 Playback");
  2638. snd_soc_dapm_ignore_suspend(dapm, "WSA_AIF_VI Capture");
  2639. snd_soc_dapm_ignore_suspend(dapm, "WSA_AIF_ECHO Capture");
  2640. snd_soc_dapm_ignore_suspend(dapm, "WSA_SPK1 OUT");
  2641. snd_soc_dapm_ignore_suspend(dapm, "WSA_SPK2 OUT");
  2642. snd_soc_dapm_ignore_suspend(dapm, "VIINPUT_WSA");
  2643. snd_soc_dapm_ignore_suspend(dapm, "WSA SRC0_INP");
  2644. snd_soc_dapm_ignore_suspend(dapm, "WSA_TX DEC0_INP");
  2645. snd_soc_dapm_ignore_suspend(dapm, "WSA_TX DEC1_INP");
  2646. snd_soc_dapm_sync(dapm);
  2647. wsa_priv->component = component;
  2648. wsa_priv->spkr_gain_offset = WSA_MACRO_GAIN_OFFSET_0_DB;
  2649. wsa_macro_init_reg(component);
  2650. return 0;
  2651. }
  2652. static int wsa_macro_deinit(struct snd_soc_component *component)
  2653. {
  2654. struct device *wsa_dev = NULL;
  2655. struct wsa_macro_priv *wsa_priv = NULL;
  2656. if (!wsa_macro_get_data(component, &wsa_dev, &wsa_priv, __func__))
  2657. return -EINVAL;
  2658. wsa_priv->component = NULL;
  2659. return 0;
  2660. }
  2661. static void wsa_macro_add_child_devices(struct work_struct *work)
  2662. {
  2663. struct wsa_macro_priv *wsa_priv;
  2664. struct platform_device *pdev;
  2665. struct device_node *node;
  2666. struct wsa_macro_swr_ctrl_data *swr_ctrl_data = NULL, *temp;
  2667. int ret;
  2668. u16 count = 0, ctrl_num = 0;
  2669. struct wsa_macro_swr_ctrl_platform_data *platdata;
  2670. char plat_dev_name[WSA_MACRO_SWR_STRING_LEN];
  2671. wsa_priv = container_of(work, struct wsa_macro_priv,
  2672. wsa_macro_add_child_devices_work);
  2673. if (!wsa_priv) {
  2674. pr_err("%s: Memory for wsa_priv does not exist\n",
  2675. __func__);
  2676. return;
  2677. }
  2678. if (!wsa_priv->dev || !wsa_priv->dev->of_node) {
  2679. dev_err(wsa_priv->dev,
  2680. "%s: DT node for wsa_priv does not exist\n", __func__);
  2681. return;
  2682. }
  2683. platdata = &wsa_priv->swr_plat_data;
  2684. wsa_priv->child_count = 0;
  2685. for_each_available_child_of_node(wsa_priv->dev->of_node, node) {
  2686. if (strnstr(node->name, "wsa_swr_master",
  2687. strlen("wsa_swr_master")) != NULL)
  2688. strlcpy(plat_dev_name, "wsa_swr_ctrl",
  2689. (WSA_MACRO_SWR_STRING_LEN - 1));
  2690. else if (strnstr(node->name, "msm_cdc_pinctrl",
  2691. strlen("msm_cdc_pinctrl")) != NULL)
  2692. strlcpy(plat_dev_name, node->name,
  2693. (WSA_MACRO_SWR_STRING_LEN - 1));
  2694. else
  2695. continue;
  2696. pdev = platform_device_alloc(plat_dev_name, -1);
  2697. if (!pdev) {
  2698. dev_err(wsa_priv->dev, "%s: pdev memory alloc failed\n",
  2699. __func__);
  2700. ret = -ENOMEM;
  2701. goto err;
  2702. }
  2703. pdev->dev.parent = wsa_priv->dev;
  2704. pdev->dev.of_node = node;
  2705. if (strnstr(node->name, "wsa_swr_master",
  2706. strlen("wsa_swr_master")) != NULL) {
  2707. ret = platform_device_add_data(pdev, platdata,
  2708. sizeof(*platdata));
  2709. if (ret) {
  2710. dev_err(&pdev->dev,
  2711. "%s: cannot add plat data ctrl:%d\n",
  2712. __func__, ctrl_num);
  2713. goto fail_pdev_add;
  2714. }
  2715. }
  2716. ret = platform_device_add(pdev);
  2717. if (ret) {
  2718. dev_err(&pdev->dev,
  2719. "%s: Cannot add platform device\n",
  2720. __func__);
  2721. goto fail_pdev_add;
  2722. }
  2723. if (!strcmp(node->name, "wsa_swr_master")) {
  2724. temp = krealloc(swr_ctrl_data,
  2725. (ctrl_num + 1) * sizeof(
  2726. struct wsa_macro_swr_ctrl_data),
  2727. GFP_KERNEL);
  2728. if (!temp) {
  2729. dev_err(&pdev->dev, "out of memory\n");
  2730. ret = -ENOMEM;
  2731. goto err;
  2732. }
  2733. swr_ctrl_data = temp;
  2734. swr_ctrl_data[ctrl_num].wsa_swr_pdev = pdev;
  2735. ctrl_num++;
  2736. dev_dbg(&pdev->dev,
  2737. "%s: Added soundwire ctrl device(s)\n",
  2738. __func__);
  2739. wsa_priv->swr_ctrl_data = swr_ctrl_data;
  2740. }
  2741. if (wsa_priv->child_count < WSA_MACRO_CHILD_DEVICES_MAX)
  2742. wsa_priv->pdev_child_devices[
  2743. wsa_priv->child_count++] = pdev;
  2744. else
  2745. goto err;
  2746. }
  2747. return;
  2748. fail_pdev_add:
  2749. for (count = 0; count < wsa_priv->child_count; count++)
  2750. platform_device_put(wsa_priv->pdev_child_devices[count]);
  2751. err:
  2752. return;
  2753. }
  2754. static void wsa_macro_init_ops(struct macro_ops *ops,
  2755. char __iomem *wsa_io_base)
  2756. {
  2757. memset(ops, 0, sizeof(struct macro_ops));
  2758. ops->init = wsa_macro_init;
  2759. ops->exit = wsa_macro_deinit;
  2760. ops->io_base = wsa_io_base;
  2761. ops->dai_ptr = wsa_macro_dai;
  2762. ops->num_dais = ARRAY_SIZE(wsa_macro_dai);
  2763. ops->event_handler = wsa_macro_event_handler;
  2764. ops->set_port_map = wsa_macro_set_port_map;
  2765. }
  2766. static int wsa_macro_probe(struct platform_device *pdev)
  2767. {
  2768. struct macro_ops ops;
  2769. struct wsa_macro_priv *wsa_priv;
  2770. u32 wsa_base_addr, default_clk_id;
  2771. char __iomem *wsa_io_base;
  2772. int ret = 0;
  2773. u8 bcl_pmic_params[3];
  2774. u32 is_used_wsa_swr_gpio = 1;
  2775. const char *is_used_wsa_swr_gpio_dt = "qcom,is-used-swr-gpio";
  2776. wsa_priv = devm_kzalloc(&pdev->dev, sizeof(struct wsa_macro_priv),
  2777. GFP_KERNEL);
  2778. if (!wsa_priv)
  2779. return -ENOMEM;
  2780. wsa_priv->dev = &pdev->dev;
  2781. ret = of_property_read_u32(pdev->dev.of_node, "reg",
  2782. &wsa_base_addr);
  2783. if (ret) {
  2784. dev_err(&pdev->dev, "%s: could not find %s entry in dt\n",
  2785. __func__, "reg");
  2786. return ret;
  2787. }
  2788. if (of_find_property(pdev->dev.of_node, is_used_wsa_swr_gpio_dt,
  2789. NULL)) {
  2790. ret = of_property_read_u32(pdev->dev.of_node,
  2791. is_used_wsa_swr_gpio_dt,
  2792. &is_used_wsa_swr_gpio);
  2793. if (ret) {
  2794. dev_err(&pdev->dev, "%s: error reading %s in dt\n",
  2795. __func__, is_used_wsa_swr_gpio_dt);
  2796. is_used_wsa_swr_gpio = 1;
  2797. }
  2798. }
  2799. wsa_priv->wsa_swr_gpio_p = of_parse_phandle(pdev->dev.of_node,
  2800. "qcom,wsa-swr-gpios", 0);
  2801. if (!wsa_priv->wsa_swr_gpio_p && is_used_wsa_swr_gpio) {
  2802. dev_err(&pdev->dev, "%s: swr_gpios handle not provided!\n",
  2803. __func__);
  2804. return -EINVAL;
  2805. }
  2806. if (msm_cdc_pinctrl_get_state(wsa_priv->wsa_swr_gpio_p) < 0 &&
  2807. is_used_wsa_swr_gpio) {
  2808. dev_err(&pdev->dev, "%s: failed to get swr pin state\n",
  2809. __func__);
  2810. return -EPROBE_DEFER;
  2811. }
  2812. wsa_io_base = devm_ioremap(&pdev->dev,
  2813. wsa_base_addr, WSA_MACRO_MAX_OFFSET);
  2814. if (!wsa_io_base) {
  2815. dev_err(&pdev->dev, "%s: ioremap failed\n", __func__);
  2816. return -EINVAL;
  2817. }
  2818. wsa_priv->wsa_io_base = wsa_io_base;
  2819. wsa_priv->reset_swr = true;
  2820. INIT_WORK(&wsa_priv->wsa_macro_add_child_devices_work,
  2821. wsa_macro_add_child_devices);
  2822. wsa_priv->swr_plat_data.handle = (void *) wsa_priv;
  2823. wsa_priv->swr_plat_data.read = NULL;
  2824. wsa_priv->swr_plat_data.write = NULL;
  2825. wsa_priv->swr_plat_data.bulk_write = NULL;
  2826. wsa_priv->swr_plat_data.clk = wsa_swrm_clock;
  2827. wsa_priv->swr_plat_data.core_vote = wsa_macro_core_vote;
  2828. wsa_priv->swr_plat_data.handle_irq = NULL;
  2829. ret = of_property_read_u32(pdev->dev.of_node, "qcom,default-clk-id",
  2830. &default_clk_id);
  2831. if (ret) {
  2832. dev_err(&pdev->dev, "%s: could not find %s entry in dt\n",
  2833. __func__, "qcom,mux0-clk-id");
  2834. default_clk_id = WSA_CORE_CLK;
  2835. }
  2836. ret = of_property_read_u8_array(pdev->dev.of_node,
  2837. "qcom,wsa-bcl-pmic-params", bcl_pmic_params,
  2838. sizeof(bcl_pmic_params));
  2839. if (ret) {
  2840. dev_dbg(&pdev->dev, "%s: could not find %s entry in dt\n",
  2841. __func__, "qcom,wsa-bcl-pmic-params");
  2842. } else {
  2843. wsa_priv->bcl_pmic_params.id = bcl_pmic_params[0];
  2844. wsa_priv->bcl_pmic_params.sid = bcl_pmic_params[1];
  2845. wsa_priv->bcl_pmic_params.ppid = bcl_pmic_params[2];
  2846. }
  2847. wsa_priv->default_clk_id = default_clk_id;
  2848. dev_set_drvdata(&pdev->dev, wsa_priv);
  2849. mutex_init(&wsa_priv->mclk_lock);
  2850. mutex_init(&wsa_priv->swr_clk_lock);
  2851. wsa_macro_init_ops(&ops, wsa_io_base);
  2852. ops.clk_id_req = wsa_priv->default_clk_id;
  2853. ops.default_clk_id = wsa_priv->default_clk_id;
  2854. ret = bolero_register_macro(&pdev->dev, WSA_MACRO, &ops);
  2855. if (ret < 0) {
  2856. dev_err(&pdev->dev, "%s: register macro failed\n", __func__);
  2857. goto reg_macro_fail;
  2858. }
  2859. schedule_work(&wsa_priv->wsa_macro_add_child_devices_work);
  2860. pm_runtime_set_autosuspend_delay(&pdev->dev, AUTO_SUSPEND_DELAY);
  2861. pm_runtime_use_autosuspend(&pdev->dev);
  2862. pm_runtime_set_suspended(&pdev->dev);
  2863. pm_suspend_ignore_children(&pdev->dev, true);
  2864. pm_runtime_enable(&pdev->dev);
  2865. return ret;
  2866. reg_macro_fail:
  2867. mutex_destroy(&wsa_priv->mclk_lock);
  2868. mutex_destroy(&wsa_priv->swr_clk_lock);
  2869. return ret;
  2870. }
  2871. static int wsa_macro_remove(struct platform_device *pdev)
  2872. {
  2873. struct wsa_macro_priv *wsa_priv;
  2874. u16 count = 0;
  2875. wsa_priv = dev_get_drvdata(&pdev->dev);
  2876. if (!wsa_priv)
  2877. return -EINVAL;
  2878. for (count = 0; count < wsa_priv->child_count &&
  2879. count < WSA_MACRO_CHILD_DEVICES_MAX; count++)
  2880. platform_device_unregister(wsa_priv->pdev_child_devices[count]);
  2881. pm_runtime_disable(&pdev->dev);
  2882. pm_runtime_set_suspended(&pdev->dev);
  2883. bolero_unregister_macro(&pdev->dev, WSA_MACRO);
  2884. mutex_destroy(&wsa_priv->mclk_lock);
  2885. mutex_destroy(&wsa_priv->swr_clk_lock);
  2886. return 0;
  2887. }
  2888. static const struct of_device_id wsa_macro_dt_match[] = {
  2889. {.compatible = "qcom,wsa-macro"},
  2890. {}
  2891. };
  2892. static const struct dev_pm_ops bolero_dev_pm_ops = {
  2893. SET_SYSTEM_SLEEP_PM_OPS(
  2894. pm_runtime_force_suspend,
  2895. pm_runtime_force_resume
  2896. )
  2897. SET_RUNTIME_PM_OPS(
  2898. bolero_runtime_suspend,
  2899. bolero_runtime_resume,
  2900. NULL
  2901. )
  2902. };
  2903. static struct platform_driver wsa_macro_driver = {
  2904. .driver = {
  2905. .name = "wsa_macro",
  2906. .owner = THIS_MODULE,
  2907. .pm = &bolero_dev_pm_ops,
  2908. .of_match_table = wsa_macro_dt_match,
  2909. .suppress_bind_attrs = true,
  2910. },
  2911. .probe = wsa_macro_probe,
  2912. .remove = wsa_macro_remove,
  2913. };
  2914. module_platform_driver(wsa_macro_driver);
  2915. MODULE_DESCRIPTION("WSA macro driver");
  2916. MODULE_LICENSE("GPL v2");