tx-macro.c 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513
  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/bitops.h>
  7. #include <linux/clk.h>
  8. #include <linux/io.h>
  9. #include <linux/platform_device.h>
  10. #include <linux/regmap.h>
  11. #include <linux/pm_runtime.h>
  12. #include <sound/soc.h>
  13. #include <sound/soc-dapm.h>
  14. #include <sound/tlv.h>
  15. #include <soc/swr-common.h>
  16. #include <soc/swr-wcd.h>
  17. #include <asoc/msm-cdc-pinctrl.h>
  18. #include "bolero-cdc.h"
  19. #include "bolero-cdc-registers.h"
  20. #include "bolero-clk-rsc.h"
  21. #define AUTO_SUSPEND_DELAY 50 /* delay in msec */
  22. #define TX_MACRO_MAX_OFFSET 0x1000
  23. #define NUM_DECIMATORS 8
  24. #define TX_MACRO_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
  25. SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000 |\
  26. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000)
  27. #define TX_MACRO_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
  28. SNDRV_PCM_FMTBIT_S24_LE |\
  29. SNDRV_PCM_FMTBIT_S24_3LE)
  30. #define TX_HPF_CUT_OFF_FREQ_MASK 0x60
  31. #define CF_MIN_3DB_4HZ 0x0
  32. #define CF_MIN_3DB_75HZ 0x1
  33. #define CF_MIN_3DB_150HZ 0x2
  34. #define TX_MACRO_DMIC_SAMPLE_RATE_UNDEFINED 0
  35. #define TX_MACRO_MCLK_FREQ 9600000
  36. #define TX_MACRO_TX_PATH_OFFSET 0x80
  37. #define TX_MACRO_SWR_MIC_MUX_SEL_MASK 0xF
  38. #define TX_MACRO_ADC_MUX_CFG_OFFSET 0x8
  39. #define TX_MACRO_ADC_MODE_CFG0_SHIFT 1
  40. #define TX_MACRO_DMIC_UNMUTE_DELAY_MS 40
  41. #define TX_MACRO_AMIC_UNMUTE_DELAY_MS 100
  42. #define TX_MACRO_DMIC_HPF_DELAY_MS 300
  43. #define TX_MACRO_AMIC_HPF_DELAY_MS 300
  44. static int tx_unmute_delay = TX_MACRO_DMIC_UNMUTE_DELAY_MS;
  45. module_param(tx_unmute_delay, int, 0664);
  46. MODULE_PARM_DESC(tx_unmute_delay, "delay to unmute the tx path");
  47. static const DECLARE_TLV_DB_SCALE(digital_gain, 0, 1, 0);
  48. static int tx_macro_hw_params(struct snd_pcm_substream *substream,
  49. struct snd_pcm_hw_params *params,
  50. struct snd_soc_dai *dai);
  51. static int tx_macro_get_channel_map(struct snd_soc_dai *dai,
  52. unsigned int *tx_num, unsigned int *tx_slot,
  53. unsigned int *rx_num, unsigned int *rx_slot);
  54. #define TX_MACRO_SWR_STRING_LEN 80
  55. #define TX_MACRO_CHILD_DEVICES_MAX 3
  56. /* Hold instance to soundwire platform device */
  57. struct tx_macro_swr_ctrl_data {
  58. struct platform_device *tx_swr_pdev;
  59. };
  60. struct tx_macro_swr_ctrl_platform_data {
  61. void *handle; /* holds codec private data */
  62. int (*read)(void *handle, int reg);
  63. int (*write)(void *handle, int reg, int val);
  64. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  65. int (*clk)(void *handle, bool enable);
  66. int (*core_vote)(void *handle, bool enable);
  67. int (*handle_irq)(void *handle,
  68. irqreturn_t (*swrm_irq_handler)(int irq,
  69. void *data),
  70. void *swrm_handle,
  71. int action);
  72. };
  73. enum {
  74. TX_MACRO_AIF_INVALID = 0,
  75. TX_MACRO_AIF1_CAP,
  76. TX_MACRO_AIF2_CAP,
  77. TX_MACRO_AIF3_CAP,
  78. TX_MACRO_MAX_DAIS
  79. };
  80. enum {
  81. TX_MACRO_DEC0,
  82. TX_MACRO_DEC1,
  83. TX_MACRO_DEC2,
  84. TX_MACRO_DEC3,
  85. TX_MACRO_DEC4,
  86. TX_MACRO_DEC5,
  87. TX_MACRO_DEC6,
  88. TX_MACRO_DEC7,
  89. TX_MACRO_DEC_MAX,
  90. };
  91. enum {
  92. TX_MACRO_CLK_DIV_2,
  93. TX_MACRO_CLK_DIV_3,
  94. TX_MACRO_CLK_DIV_4,
  95. TX_MACRO_CLK_DIV_6,
  96. TX_MACRO_CLK_DIV_8,
  97. TX_MACRO_CLK_DIV_16,
  98. };
  99. enum {
  100. MSM_DMIC,
  101. SWR_MIC,
  102. ANC_FB_TUNE1
  103. };
  104. enum {
  105. TX_MCLK,
  106. VA_MCLK,
  107. };
  108. struct tx_macro_reg_mask_val {
  109. u16 reg;
  110. u8 mask;
  111. u8 val;
  112. };
  113. struct tx_mute_work {
  114. struct tx_macro_priv *tx_priv;
  115. u32 decimator;
  116. struct delayed_work dwork;
  117. };
  118. struct hpf_work {
  119. struct tx_macro_priv *tx_priv;
  120. u8 decimator;
  121. u8 hpf_cut_off_freq;
  122. struct delayed_work dwork;
  123. };
  124. struct tx_macro_priv {
  125. struct device *dev;
  126. bool dec_active[NUM_DECIMATORS];
  127. int tx_mclk_users;
  128. int swr_clk_users;
  129. bool dapm_mclk_enable;
  130. bool reset_swr;
  131. struct mutex mclk_lock;
  132. struct mutex swr_clk_lock;
  133. struct snd_soc_component *component;
  134. struct device_node *tx_swr_gpio_p;
  135. struct tx_macro_swr_ctrl_data *swr_ctrl_data;
  136. struct tx_macro_swr_ctrl_platform_data swr_plat_data;
  137. struct work_struct tx_macro_add_child_devices_work;
  138. struct hpf_work tx_hpf_work[NUM_DECIMATORS];
  139. struct tx_mute_work tx_mute_dwork[NUM_DECIMATORS];
  140. u16 dmic_clk_div;
  141. u32 version;
  142. u32 is_used_tx_swr_gpio;
  143. unsigned long active_ch_mask[TX_MACRO_MAX_DAIS];
  144. char __iomem *tx_io_base;
  145. struct platform_device *pdev_child_devices
  146. [TX_MACRO_CHILD_DEVICES_MAX];
  147. int child_count;
  148. int tx_swr_clk_cnt;
  149. int va_swr_clk_cnt;
  150. int va_clk_status;
  151. int tx_clk_status;
  152. bool bcs_enable;
  153. int dec_mode[NUM_DECIMATORS];
  154. int bcs_ch;
  155. bool bcs_clk_en;
  156. bool hs_slow_insert_complete;
  157. int amic_sample_rate;
  158. bool lpi_enable;
  159. bool register_event_listener;
  160. };
  161. static bool tx_macro_get_data(struct snd_soc_component *component,
  162. struct device **tx_dev,
  163. struct tx_macro_priv **tx_priv,
  164. const char *func_name)
  165. {
  166. *tx_dev = bolero_get_device_ptr(component->dev, TX_MACRO);
  167. if (!(*tx_dev)) {
  168. dev_err(component->dev,
  169. "%s: null device for macro!\n", func_name);
  170. return false;
  171. }
  172. *tx_priv = dev_get_drvdata((*tx_dev));
  173. if (!(*tx_priv)) {
  174. dev_err(component->dev,
  175. "%s: priv is null for macro!\n", func_name);
  176. return false;
  177. }
  178. if (!(*tx_priv)->component) {
  179. dev_err(component->dev,
  180. "%s: tx_priv->component not initialized!\n", func_name);
  181. return false;
  182. }
  183. return true;
  184. }
  185. static int tx_macro_mclk_enable(struct tx_macro_priv *tx_priv,
  186. bool mclk_enable)
  187. {
  188. struct regmap *regmap = dev_get_regmap(tx_priv->dev->parent, NULL);
  189. int ret = 0;
  190. if (regmap == NULL) {
  191. dev_err(tx_priv->dev, "%s: regmap is NULL\n", __func__);
  192. return -EINVAL;
  193. }
  194. dev_dbg(tx_priv->dev, "%s: mclk_enable = %u,clk_users= %d\n",
  195. __func__, mclk_enable, tx_priv->tx_mclk_users);
  196. mutex_lock(&tx_priv->mclk_lock);
  197. if (mclk_enable) {
  198. ret = bolero_clk_rsc_request_clock(tx_priv->dev,
  199. TX_CORE_CLK,
  200. TX_CORE_CLK,
  201. true);
  202. if (ret < 0) {
  203. dev_err_ratelimited(tx_priv->dev,
  204. "%s: request clock enable failed\n",
  205. __func__);
  206. goto exit;
  207. }
  208. bolero_clk_rsc_fs_gen_request(tx_priv->dev,
  209. true);
  210. regcache_mark_dirty(regmap);
  211. regcache_sync_region(regmap,
  212. TX_START_OFFSET,
  213. TX_MAX_OFFSET);
  214. if (tx_priv->tx_mclk_users == 0) {
  215. /* 9.6MHz MCLK, set value 0x00 if other frequency */
  216. regmap_update_bits(regmap,
  217. BOLERO_CDC_TX_TOP_CSR_FREQ_MCLK, 0x01, 0x01);
  218. regmap_update_bits(regmap,
  219. BOLERO_CDC_TX_CLK_RST_CTRL_MCLK_CONTROL,
  220. 0x01, 0x01);
  221. regmap_update_bits(regmap,
  222. BOLERO_CDC_TX_CLK_RST_CTRL_FS_CNT_CONTROL,
  223. 0x01, 0x01);
  224. }
  225. tx_priv->tx_mclk_users++;
  226. } else {
  227. if (tx_priv->tx_mclk_users <= 0) {
  228. dev_err(tx_priv->dev, "%s: clock already disabled\n",
  229. __func__);
  230. tx_priv->tx_mclk_users = 0;
  231. goto exit;
  232. }
  233. tx_priv->tx_mclk_users--;
  234. if (tx_priv->tx_mclk_users == 0) {
  235. regmap_update_bits(regmap,
  236. BOLERO_CDC_TX_CLK_RST_CTRL_FS_CNT_CONTROL,
  237. 0x01, 0x00);
  238. regmap_update_bits(regmap,
  239. BOLERO_CDC_TX_CLK_RST_CTRL_MCLK_CONTROL,
  240. 0x01, 0x00);
  241. }
  242. bolero_clk_rsc_fs_gen_request(tx_priv->dev,
  243. false);
  244. bolero_clk_rsc_request_clock(tx_priv->dev,
  245. TX_CORE_CLK,
  246. TX_CORE_CLK,
  247. false);
  248. }
  249. exit:
  250. mutex_unlock(&tx_priv->mclk_lock);
  251. return ret;
  252. }
  253. static int __tx_macro_mclk_enable(struct snd_soc_component *component,
  254. bool enable)
  255. {
  256. struct device *tx_dev = NULL;
  257. struct tx_macro_priv *tx_priv = NULL;
  258. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  259. return -EINVAL;
  260. return tx_macro_mclk_enable(tx_priv, enable);
  261. }
  262. static int tx_macro_va_swr_clk_event(struct snd_soc_dapm_widget *w,
  263. struct snd_kcontrol *kcontrol, int event)
  264. {
  265. struct device *tx_dev = NULL;
  266. struct tx_macro_priv *tx_priv = NULL;
  267. struct snd_soc_component *component =
  268. snd_soc_dapm_to_component(w->dapm);
  269. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  270. return -EINVAL;
  271. if (SND_SOC_DAPM_EVENT_ON(event))
  272. ++tx_priv->va_swr_clk_cnt;
  273. if (SND_SOC_DAPM_EVENT_OFF(event))
  274. --tx_priv->va_swr_clk_cnt;
  275. return 0;
  276. }
  277. static int tx_macro_tx_swr_clk_event(struct snd_soc_dapm_widget *w,
  278. struct snd_kcontrol *kcontrol, int event)
  279. {
  280. struct device *tx_dev = NULL;
  281. struct tx_macro_priv *tx_priv = NULL;
  282. struct snd_soc_component *component =
  283. snd_soc_dapm_to_component(w->dapm);
  284. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  285. return -EINVAL;
  286. if (SND_SOC_DAPM_EVENT_ON(event))
  287. ++tx_priv->tx_swr_clk_cnt;
  288. if (SND_SOC_DAPM_EVENT_OFF(event))
  289. --tx_priv->tx_swr_clk_cnt;
  290. return 0;
  291. }
  292. static int tx_macro_swr_pwr_event(struct snd_soc_dapm_widget *w,
  293. struct snd_kcontrol *kcontrol, int event)
  294. {
  295. struct snd_soc_component *component =
  296. snd_soc_dapm_to_component(w->dapm);
  297. int ret = 0;
  298. struct device *tx_dev = NULL;
  299. struct tx_macro_priv *tx_priv = NULL;
  300. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  301. return -EINVAL;
  302. dev_dbg(tx_dev, "%s: event = %d, lpi_enable = %d\n",
  303. __func__, event, tx_priv->lpi_enable);
  304. if (!tx_priv->lpi_enable)
  305. return ret;
  306. switch (event) {
  307. case SND_SOC_DAPM_PRE_PMU:
  308. if (tx_priv->lpi_enable) {
  309. bolero_register_event_listener(component, true);
  310. tx_priv->register_event_listener = true;
  311. }
  312. break;
  313. case SND_SOC_DAPM_POST_PMD:
  314. if (tx_priv->register_event_listener) {
  315. tx_priv->register_event_listener = false;
  316. bolero_register_event_listener(component, false);
  317. }
  318. break;
  319. default:
  320. dev_err(tx_priv->dev,
  321. "%s: invalid DAPM event %d\n", __func__, event);
  322. ret = -EINVAL;
  323. }
  324. return ret;
  325. }
  326. static int tx_macro_mclk_event(struct snd_soc_dapm_widget *w,
  327. struct snd_kcontrol *kcontrol, int event)
  328. {
  329. struct snd_soc_component *component =
  330. snd_soc_dapm_to_component(w->dapm);
  331. int ret = 0;
  332. struct device *tx_dev = NULL;
  333. struct tx_macro_priv *tx_priv = NULL;
  334. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  335. return -EINVAL;
  336. dev_dbg(tx_dev, "%s: event = %d\n", __func__, event);
  337. switch (event) {
  338. case SND_SOC_DAPM_PRE_PMU:
  339. ret = tx_macro_mclk_enable(tx_priv, 1);
  340. if (ret)
  341. tx_priv->dapm_mclk_enable = false;
  342. else
  343. tx_priv->dapm_mclk_enable = true;
  344. break;
  345. case SND_SOC_DAPM_POST_PMD:
  346. if (tx_priv->dapm_mclk_enable)
  347. ret = tx_macro_mclk_enable(tx_priv, 0);
  348. break;
  349. default:
  350. dev_err(tx_priv->dev,
  351. "%s: invalid DAPM event %d\n", __func__, event);
  352. ret = -EINVAL;
  353. }
  354. return ret;
  355. }
  356. static int tx_macro_event_handler(struct snd_soc_component *component,
  357. u16 event, u32 data)
  358. {
  359. struct device *tx_dev = NULL;
  360. struct tx_macro_priv *tx_priv = NULL;
  361. int ret = 0;
  362. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  363. return -EINVAL;
  364. switch (event) {
  365. case BOLERO_MACRO_EVT_SSR_DOWN:
  366. trace_printk("%s, enter SSR down\n", __func__);
  367. if (tx_priv->swr_ctrl_data) {
  368. swrm_wcd_notify(
  369. tx_priv->swr_ctrl_data[0].tx_swr_pdev,
  370. SWR_DEVICE_SSR_DOWN, NULL);
  371. }
  372. if ((!pm_runtime_enabled(tx_dev) ||
  373. !pm_runtime_suspended(tx_dev))) {
  374. ret = bolero_runtime_suspend(tx_dev);
  375. if (!ret) {
  376. pm_runtime_disable(tx_dev);
  377. pm_runtime_set_suspended(tx_dev);
  378. pm_runtime_enable(tx_dev);
  379. }
  380. }
  381. break;
  382. case BOLERO_MACRO_EVT_SSR_UP:
  383. trace_printk("%s, enter SSR up\n", __func__);
  384. /* reset swr after ssr/pdr */
  385. tx_priv->reset_swr = true;
  386. if (tx_priv->swr_ctrl_data)
  387. swrm_wcd_notify(
  388. tx_priv->swr_ctrl_data[0].tx_swr_pdev,
  389. SWR_DEVICE_SSR_UP, NULL);
  390. break;
  391. case BOLERO_MACRO_EVT_CLK_RESET:
  392. bolero_rsc_clk_reset(tx_dev, TX_CORE_CLK);
  393. break;
  394. case BOLERO_MACRO_EVT_BCS_CLK_OFF:
  395. if (tx_priv->bcs_clk_en)
  396. snd_soc_component_update_bits(component,
  397. BOLERO_CDC_TX0_TX_PATH_SEC7, 0x40, data << 6);
  398. if (data)
  399. tx_priv->hs_slow_insert_complete = true;
  400. else
  401. tx_priv->hs_slow_insert_complete = false;
  402. break;
  403. default:
  404. pr_debug("%s Invalid Event\n", __func__);
  405. break;
  406. }
  407. return 0;
  408. }
  409. static int tx_macro_reg_wake_irq(struct snd_soc_component *component,
  410. u32 data)
  411. {
  412. struct device *tx_dev = NULL;
  413. struct tx_macro_priv *tx_priv = NULL;
  414. u32 ipc_wakeup = data;
  415. int ret = 0;
  416. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  417. return -EINVAL;
  418. if (tx_priv->swr_ctrl_data)
  419. ret = swrm_wcd_notify(
  420. tx_priv->swr_ctrl_data[0].tx_swr_pdev,
  421. SWR_REGISTER_WAKE_IRQ, &ipc_wakeup);
  422. return ret;
  423. }
  424. static bool is_amic_enabled(struct snd_soc_component *component, int decimator)
  425. {
  426. u16 adc_mux_reg = 0, adc_reg = 0;
  427. u16 adc_n = BOLERO_ADC_MAX;
  428. bool ret = false;
  429. struct device *tx_dev = NULL;
  430. struct tx_macro_priv *tx_priv = NULL;
  431. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  432. return ret;
  433. adc_mux_reg = BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG1 +
  434. TX_MACRO_ADC_MUX_CFG_OFFSET * decimator;
  435. if (snd_soc_component_read32(component, adc_mux_reg) & SWR_MIC) {
  436. if (tx_priv->version == BOLERO_VERSION_2_1)
  437. return true;
  438. adc_reg = BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0 +
  439. TX_MACRO_ADC_MUX_CFG_OFFSET * decimator;
  440. adc_n = snd_soc_component_read32(component, adc_reg) &
  441. TX_MACRO_SWR_MIC_MUX_SEL_MASK;
  442. if (adc_n < BOLERO_ADC_MAX)
  443. return true;
  444. }
  445. return ret;
  446. }
  447. static void tx_macro_tx_hpf_corner_freq_callback(struct work_struct *work)
  448. {
  449. struct delayed_work *hpf_delayed_work = NULL;
  450. struct hpf_work *hpf_work = NULL;
  451. struct tx_macro_priv *tx_priv = NULL;
  452. struct snd_soc_component *component = NULL;
  453. u16 dec_cfg_reg = 0, hpf_gate_reg = 0;
  454. u8 hpf_cut_off_freq = 0;
  455. u16 adc_reg = 0, adc_n = 0;
  456. hpf_delayed_work = to_delayed_work(work);
  457. hpf_work = container_of(hpf_delayed_work, struct hpf_work, dwork);
  458. tx_priv = hpf_work->tx_priv;
  459. component = tx_priv->component;
  460. hpf_cut_off_freq = hpf_work->hpf_cut_off_freq;
  461. dec_cfg_reg = BOLERO_CDC_TX0_TX_PATH_CFG0 +
  462. TX_MACRO_TX_PATH_OFFSET * hpf_work->decimator;
  463. hpf_gate_reg = BOLERO_CDC_TX0_TX_PATH_SEC2 +
  464. TX_MACRO_TX_PATH_OFFSET * hpf_work->decimator;
  465. dev_dbg(component->dev, "%s: decimator %u hpf_cut_of_freq 0x%x\n",
  466. __func__, hpf_work->decimator, hpf_cut_off_freq);
  467. if (is_amic_enabled(component, hpf_work->decimator)) {
  468. adc_reg = BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0 +
  469. TX_MACRO_ADC_MUX_CFG_OFFSET * hpf_work->decimator;
  470. adc_n = snd_soc_component_read32(component, adc_reg) &
  471. TX_MACRO_SWR_MIC_MUX_SEL_MASK;
  472. /* analog mic clear TX hold */
  473. bolero_clear_amic_tx_hold(component->dev, adc_n);
  474. snd_soc_component_update_bits(component,
  475. dec_cfg_reg, TX_HPF_CUT_OFF_FREQ_MASK,
  476. hpf_cut_off_freq << 5);
  477. snd_soc_component_update_bits(component, hpf_gate_reg,
  478. 0x03, 0x02);
  479. /* Add delay between toggle hpf gate based on sample rate */
  480. switch(tx_priv->amic_sample_rate) {
  481. case 8000:
  482. usleep_range(125, 130);
  483. break;
  484. case 16000:
  485. usleep_range(62, 65);
  486. break;
  487. case 32000:
  488. usleep_range(31, 32);
  489. break;
  490. case 48000:
  491. usleep_range(20, 21);
  492. break;
  493. case 96000:
  494. usleep_range(10, 11);
  495. break;
  496. case 192000:
  497. usleep_range(5, 6);
  498. break;
  499. default:
  500. usleep_range(125, 130);
  501. }
  502. snd_soc_component_update_bits(component, hpf_gate_reg,
  503. 0x03, 0x01);
  504. } else {
  505. snd_soc_component_update_bits(component,
  506. dec_cfg_reg, TX_HPF_CUT_OFF_FREQ_MASK,
  507. hpf_cut_off_freq << 5);
  508. snd_soc_component_update_bits(component, hpf_gate_reg,
  509. 0x02, 0x02);
  510. /* Minimum 1 clk cycle delay is required as per HW spec */
  511. usleep_range(1000, 1010);
  512. snd_soc_component_update_bits(component, hpf_gate_reg,
  513. 0x02, 0x00);
  514. }
  515. }
  516. static void tx_macro_mute_update_callback(struct work_struct *work)
  517. {
  518. struct tx_mute_work *tx_mute_dwork = NULL;
  519. struct snd_soc_component *component = NULL;
  520. struct tx_macro_priv *tx_priv = NULL;
  521. struct delayed_work *delayed_work = NULL;
  522. u16 tx_vol_ctl_reg = 0;
  523. u8 decimator = 0;
  524. delayed_work = to_delayed_work(work);
  525. tx_mute_dwork = container_of(delayed_work, struct tx_mute_work, dwork);
  526. tx_priv = tx_mute_dwork->tx_priv;
  527. component = tx_priv->component;
  528. decimator = tx_mute_dwork->decimator;
  529. tx_vol_ctl_reg =
  530. BOLERO_CDC_TX0_TX_PATH_CTL +
  531. TX_MACRO_TX_PATH_OFFSET * decimator;
  532. snd_soc_component_update_bits(component, tx_vol_ctl_reg, 0x10, 0x00);
  533. dev_dbg(tx_priv->dev, "%s: decimator %u unmute\n",
  534. __func__, decimator);
  535. }
  536. static int tx_macro_put_dec_enum(struct snd_kcontrol *kcontrol,
  537. struct snd_ctl_elem_value *ucontrol)
  538. {
  539. struct snd_soc_dapm_widget *widget =
  540. snd_soc_dapm_kcontrol_widget(kcontrol);
  541. struct snd_soc_component *component =
  542. snd_soc_dapm_to_component(widget->dapm);
  543. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  544. unsigned int val = 0;
  545. u16 mic_sel_reg = 0;
  546. u16 dmic_clk_reg = 0;
  547. struct device *tx_dev = NULL;
  548. struct tx_macro_priv *tx_priv = NULL;
  549. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  550. return -EINVAL;
  551. val = ucontrol->value.enumerated.item[0];
  552. if (val > e->items - 1)
  553. return -EINVAL;
  554. dev_dbg(component->dev, "%s: wname: %s, val: 0x%x\n", __func__,
  555. widget->name, val);
  556. switch (e->reg) {
  557. case BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0:
  558. mic_sel_reg = BOLERO_CDC_TX0_TX_PATH_CFG0;
  559. break;
  560. case BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG0:
  561. mic_sel_reg = BOLERO_CDC_TX1_TX_PATH_CFG0;
  562. break;
  563. case BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG0:
  564. mic_sel_reg = BOLERO_CDC_TX2_TX_PATH_CFG0;
  565. break;
  566. case BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG0:
  567. mic_sel_reg = BOLERO_CDC_TX3_TX_PATH_CFG0;
  568. break;
  569. case BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG0:
  570. mic_sel_reg = BOLERO_CDC_TX4_TX_PATH_CFG0;
  571. break;
  572. case BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG0:
  573. mic_sel_reg = BOLERO_CDC_TX5_TX_PATH_CFG0;
  574. break;
  575. case BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG0:
  576. mic_sel_reg = BOLERO_CDC_TX6_TX_PATH_CFG0;
  577. break;
  578. case BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG0:
  579. mic_sel_reg = BOLERO_CDC_TX7_TX_PATH_CFG0;
  580. break;
  581. default:
  582. dev_err(component->dev, "%s: e->reg: 0x%x not expected\n",
  583. __func__, e->reg);
  584. return -EINVAL;
  585. }
  586. if (strnstr(widget->name, "SMIC", strlen(widget->name))) {
  587. if (val != 0) {
  588. if (val < 5) {
  589. snd_soc_component_update_bits(component,
  590. mic_sel_reg,
  591. 1 << 7, 0x0 << 7);
  592. } else {
  593. snd_soc_component_update_bits(component,
  594. mic_sel_reg,
  595. 1 << 7, 0x1 << 7);
  596. snd_soc_component_update_bits(component,
  597. BOLERO_CDC_VA_TOP_CSR_DMIC_CFG,
  598. 0x80, 0x00);
  599. dmic_clk_reg =
  600. BOLERO_CDC_TX_TOP_CSR_SWR_DMIC0_CTL +
  601. ((val - 5)/2) * 4;
  602. snd_soc_component_update_bits(component,
  603. dmic_clk_reg,
  604. 0x0E, tx_priv->dmic_clk_div << 0x1);
  605. }
  606. }
  607. } else {
  608. /* DMIC selected */
  609. if (val != 0)
  610. snd_soc_component_update_bits(component, mic_sel_reg,
  611. 1 << 7, 1 << 7);
  612. }
  613. return snd_soc_dapm_put_enum_double(kcontrol, ucontrol);
  614. }
  615. static int tx_macro_tx_mixer_get(struct snd_kcontrol *kcontrol,
  616. struct snd_ctl_elem_value *ucontrol)
  617. {
  618. struct snd_soc_dapm_widget *widget =
  619. snd_soc_dapm_kcontrol_widget(kcontrol);
  620. struct snd_soc_component *component =
  621. snd_soc_dapm_to_component(widget->dapm);
  622. struct soc_multi_mixer_control *mixer =
  623. ((struct soc_multi_mixer_control *)kcontrol->private_value);
  624. u32 dai_id = widget->shift;
  625. u32 dec_id = mixer->shift;
  626. struct device *tx_dev = NULL;
  627. struct tx_macro_priv *tx_priv = NULL;
  628. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  629. return -EINVAL;
  630. if (test_bit(dec_id, &tx_priv->active_ch_mask[dai_id]))
  631. ucontrol->value.integer.value[0] = 1;
  632. else
  633. ucontrol->value.integer.value[0] = 0;
  634. return 0;
  635. }
  636. static int tx_macro_tx_mixer_put(struct snd_kcontrol *kcontrol,
  637. struct snd_ctl_elem_value *ucontrol)
  638. {
  639. struct snd_soc_dapm_widget *widget =
  640. snd_soc_dapm_kcontrol_widget(kcontrol);
  641. struct snd_soc_component *component =
  642. snd_soc_dapm_to_component(widget->dapm);
  643. struct snd_soc_dapm_update *update = NULL;
  644. struct soc_multi_mixer_control *mixer =
  645. ((struct soc_multi_mixer_control *)kcontrol->private_value);
  646. u32 dai_id = widget->shift;
  647. u32 dec_id = mixer->shift;
  648. u32 enable = ucontrol->value.integer.value[0];
  649. struct device *tx_dev = NULL;
  650. struct tx_macro_priv *tx_priv = NULL;
  651. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  652. return -EINVAL;
  653. if (enable)
  654. set_bit(dec_id, &tx_priv->active_ch_mask[dai_id]);
  655. else
  656. clear_bit(dec_id, &tx_priv->active_ch_mask[dai_id]);
  657. snd_soc_dapm_mixer_update_power(widget->dapm, kcontrol, enable, update);
  658. return 0;
  659. }
  660. static inline int tx_macro_path_get(const char *wname,
  661. unsigned int *path_num)
  662. {
  663. int ret = 0;
  664. char *widget_name = NULL;
  665. char *w_name = NULL;
  666. char *path_num_char = NULL;
  667. char *path_name = NULL;
  668. widget_name = kstrndup(wname, 10, GFP_KERNEL);
  669. if (!widget_name)
  670. return -EINVAL;
  671. w_name = widget_name;
  672. path_name = strsep(&widget_name, " ");
  673. if (!path_name) {
  674. pr_err("%s: Invalid widget name = %s\n",
  675. __func__, widget_name);
  676. ret = -EINVAL;
  677. goto err;
  678. }
  679. path_num_char = strpbrk(path_name, "01234567");
  680. if (!path_num_char) {
  681. pr_err("%s: tx path index not found\n",
  682. __func__);
  683. ret = -EINVAL;
  684. goto err;
  685. }
  686. ret = kstrtouint(path_num_char, 10, path_num);
  687. if (ret < 0)
  688. pr_err("%s: Invalid tx path = %s\n",
  689. __func__, w_name);
  690. err:
  691. kfree(w_name);
  692. return ret;
  693. }
  694. static int tx_macro_dec_mode_get(struct snd_kcontrol *kcontrol,
  695. struct snd_ctl_elem_value *ucontrol)
  696. {
  697. struct snd_soc_component *component =
  698. snd_soc_kcontrol_component(kcontrol);
  699. struct tx_macro_priv *tx_priv = NULL;
  700. struct device *tx_dev = NULL;
  701. int ret = 0;
  702. int path = 0;
  703. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  704. return -EINVAL;
  705. ret = tx_macro_path_get(kcontrol->id.name, &path);
  706. if (ret)
  707. return ret;
  708. ucontrol->value.integer.value[0] = tx_priv->dec_mode[path];
  709. return 0;
  710. }
  711. static int tx_macro_dec_mode_put(struct snd_kcontrol *kcontrol,
  712. struct snd_ctl_elem_value *ucontrol)
  713. {
  714. struct snd_soc_component *component =
  715. snd_soc_kcontrol_component(kcontrol);
  716. struct tx_macro_priv *tx_priv = NULL;
  717. struct device *tx_dev = NULL;
  718. int value = ucontrol->value.integer.value[0];
  719. int ret = 0;
  720. int path = 0;
  721. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  722. return -EINVAL;
  723. ret = tx_macro_path_get(kcontrol->id.name, &path);
  724. if (ret)
  725. return ret;
  726. tx_priv->dec_mode[path] = value;
  727. return 0;
  728. }
  729. static int tx_macro_lpi_get(struct snd_kcontrol *kcontrol,
  730. struct snd_ctl_elem_value *ucontrol)
  731. {
  732. struct snd_soc_component *component =
  733. snd_soc_kcontrol_component(kcontrol);
  734. struct device *tx_dev = NULL;
  735. struct tx_macro_priv *tx_priv = NULL;
  736. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  737. return -EINVAL;
  738. ucontrol->value.integer.value[0] = tx_priv->lpi_enable;
  739. return 0;
  740. }
  741. static int tx_macro_lpi_put(struct snd_kcontrol *kcontrol,
  742. struct snd_ctl_elem_value *ucontrol)
  743. {
  744. struct snd_soc_component *component =
  745. snd_soc_kcontrol_component(kcontrol);
  746. struct device *tx_dev = NULL;
  747. struct tx_macro_priv *tx_priv = NULL;
  748. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  749. return -EINVAL;
  750. tx_priv->lpi_enable = ucontrol->value.integer.value[0];
  751. return 0;
  752. }
  753. static int tx_macro_bcs_ch_get(struct snd_kcontrol *kcontrol,
  754. struct snd_ctl_elem_value *ucontrol)
  755. {
  756. struct snd_soc_component *component =
  757. snd_soc_kcontrol_component(kcontrol);
  758. struct tx_macro_priv *tx_priv = NULL;
  759. struct device *tx_dev = NULL;
  760. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  761. return -EINVAL;
  762. ucontrol->value.enumerated.item[0] = tx_priv->bcs_ch;
  763. return 0;
  764. }
  765. static int tx_macro_bcs_ch_put(struct snd_kcontrol *kcontrol,
  766. struct snd_ctl_elem_value *ucontrol)
  767. {
  768. struct snd_soc_component *component =
  769. snd_soc_kcontrol_component(kcontrol);
  770. struct tx_macro_priv *tx_priv = NULL;
  771. struct device *tx_dev = NULL;
  772. int value = ucontrol->value.enumerated.item[0];
  773. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  774. return -EINVAL;
  775. tx_priv->bcs_ch = value;
  776. return 0;
  777. }
  778. static int tx_macro_get_bcs(struct snd_kcontrol *kcontrol,
  779. struct snd_ctl_elem_value *ucontrol)
  780. {
  781. struct snd_soc_component *component =
  782. snd_soc_kcontrol_component(kcontrol);
  783. struct tx_macro_priv *tx_priv = NULL;
  784. struct device *tx_dev = NULL;
  785. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  786. return -EINVAL;
  787. ucontrol->value.integer.value[0] = tx_priv->bcs_enable;
  788. return 0;
  789. }
  790. static int tx_macro_set_bcs(struct snd_kcontrol *kcontrol,
  791. struct snd_ctl_elem_value *ucontrol)
  792. {
  793. struct snd_soc_component *component =
  794. snd_soc_kcontrol_component(kcontrol);
  795. struct tx_macro_priv *tx_priv = NULL;
  796. struct device *tx_dev = NULL;
  797. int value = ucontrol->value.integer.value[0];
  798. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  799. return -EINVAL;
  800. tx_priv->bcs_enable = value;
  801. return 0;
  802. }
  803. static const char * const bcs_ch_sel_mux_text[] = {
  804. "SWR_MIC0", "SWR_MIC1", "SWR_MIC2", "SWR_MIC3",
  805. "SWR_MIC4", "SWR_MIC5", "SWR_MIC6", "SWR_MIC7",
  806. "SWR_MIC8", "SWR_MIC9", "SWR_MIC10", "SWR_MIC11",
  807. };
  808. static const struct soc_enum bcs_ch_sel_mux_enum =
  809. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(bcs_ch_sel_mux_text),
  810. bcs_ch_sel_mux_text);
  811. static int tx_macro_get_bcs_ch_sel(struct snd_kcontrol *kcontrol,
  812. struct snd_ctl_elem_value *ucontrol)
  813. {
  814. struct snd_soc_component *component =
  815. snd_soc_kcontrol_component(kcontrol);
  816. struct tx_macro_priv *tx_priv = NULL;
  817. struct device *tx_dev = NULL;
  818. int value = 0;
  819. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  820. return -EINVAL;
  821. if (tx_priv->version == BOLERO_VERSION_2_1)
  822. value = (snd_soc_component_read32(component,
  823. BOLERO_CDC_VA_TOP_CSR_SWR_CTRL)) & 0x0F;
  824. else if (tx_priv->version == BOLERO_VERSION_2_0)
  825. value = (snd_soc_component_read32(component,
  826. BOLERO_CDC_TX_TOP_CSR_SWR_CTRL)) & 0x0F;
  827. ucontrol->value.integer.value[0] = value;
  828. return 0;
  829. }
  830. static int tx_macro_put_bcs_ch_sel(struct snd_kcontrol *kcontrol,
  831. struct snd_ctl_elem_value *ucontrol)
  832. {
  833. struct snd_soc_component *component =
  834. snd_soc_kcontrol_component(kcontrol);
  835. struct tx_macro_priv *tx_priv = NULL;
  836. struct device *tx_dev = NULL;
  837. int value;
  838. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  839. return -EINVAL;
  840. if (ucontrol->value.integer.value[0] < 0 ||
  841. ucontrol->value.integer.value[0] > ARRAY_SIZE(bcs_ch_sel_mux_text))
  842. return -EINVAL;
  843. value = ucontrol->value.integer.value[0];
  844. if (tx_priv->version == BOLERO_VERSION_2_1)
  845. snd_soc_component_update_bits(component,
  846. BOLERO_CDC_VA_TOP_CSR_SWR_CTRL, 0x0F, value);
  847. else if (tx_priv->version == BOLERO_VERSION_2_0)
  848. snd_soc_component_update_bits(component,
  849. BOLERO_CDC_TX_TOP_CSR_SWR_CTRL, 0x0F, value);
  850. return 0;
  851. }
  852. static int tx_macro_enable_dmic(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. unsigned int dmic = 0;
  858. int ret = 0;
  859. char *wname = NULL;
  860. wname = strpbrk(w->name, "01234567");
  861. if (!wname) {
  862. dev_err(component->dev, "%s: widget not found\n", __func__);
  863. return -EINVAL;
  864. }
  865. ret = kstrtouint(wname, 10, &dmic);
  866. if (ret < 0) {
  867. dev_err(component->dev, "%s: Invalid DMIC line on the codec\n",
  868. __func__);
  869. return -EINVAL;
  870. }
  871. dev_dbg(component->dev, "%s: event %d DMIC%d\n",
  872. __func__, event, dmic);
  873. switch (event) {
  874. case SND_SOC_DAPM_PRE_PMU:
  875. bolero_dmic_clk_enable(component, dmic, DMIC_TX, true);
  876. break;
  877. case SND_SOC_DAPM_POST_PMD:
  878. bolero_dmic_clk_enable(component, dmic, DMIC_TX, false);
  879. break;
  880. }
  881. return 0;
  882. }
  883. static int tx_macro_enable_dec(struct snd_soc_dapm_widget *w,
  884. struct snd_kcontrol *kcontrol, int event)
  885. {
  886. struct snd_soc_component *component =
  887. snd_soc_dapm_to_component(w->dapm);
  888. unsigned int decimator = 0;
  889. u16 tx_vol_ctl_reg = 0;
  890. u16 dec_cfg_reg = 0;
  891. u16 hpf_gate_reg = 0;
  892. u16 tx_gain_ctl_reg = 0;
  893. u16 tx_fs_reg = 0;
  894. u8 hpf_cut_off_freq = 0;
  895. u16 adc_mux_reg = 0;
  896. int hpf_delay = TX_MACRO_DMIC_HPF_DELAY_MS;
  897. int unmute_delay = TX_MACRO_DMIC_UNMUTE_DELAY_MS;
  898. struct device *tx_dev = NULL;
  899. struct tx_macro_priv *tx_priv = NULL;
  900. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  901. return -EINVAL;
  902. decimator = w->shift;
  903. dev_dbg(component->dev, "%s(): widget = %s decimator = %u\n", __func__,
  904. w->name, decimator);
  905. tx_vol_ctl_reg = BOLERO_CDC_TX0_TX_PATH_CTL +
  906. TX_MACRO_TX_PATH_OFFSET * decimator;
  907. hpf_gate_reg = BOLERO_CDC_TX0_TX_PATH_SEC2 +
  908. TX_MACRO_TX_PATH_OFFSET * decimator;
  909. dec_cfg_reg = BOLERO_CDC_TX0_TX_PATH_CFG0 +
  910. TX_MACRO_TX_PATH_OFFSET * decimator;
  911. tx_gain_ctl_reg = BOLERO_CDC_TX0_TX_VOL_CTL +
  912. TX_MACRO_TX_PATH_OFFSET * decimator;
  913. adc_mux_reg = BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG1 +
  914. TX_MACRO_ADC_MUX_CFG_OFFSET * decimator;
  915. tx_fs_reg = BOLERO_CDC_TX0_TX_PATH_CTL +
  916. TX_MACRO_TX_PATH_OFFSET * decimator;
  917. tx_priv->amic_sample_rate = (snd_soc_component_read32(component,
  918. tx_fs_reg) & 0x0F);
  919. switch (event) {
  920. case SND_SOC_DAPM_PRE_PMU:
  921. snd_soc_component_update_bits(component,
  922. dec_cfg_reg, 0x06, tx_priv->dec_mode[decimator] <<
  923. TX_MACRO_ADC_MODE_CFG0_SHIFT);
  924. /* Enable TX PGA Mute */
  925. snd_soc_component_update_bits(component,
  926. tx_vol_ctl_reg, 0x10, 0x10);
  927. break;
  928. case SND_SOC_DAPM_POST_PMU:
  929. snd_soc_component_update_bits(component,
  930. tx_vol_ctl_reg, 0x20, 0x20);
  931. if (!is_amic_enabled(component, decimator)) {
  932. snd_soc_component_update_bits(component,
  933. hpf_gate_reg, 0x01, 0x00);
  934. /*
  935. * Minimum 1 clk cycle delay is required as per HW spec
  936. */
  937. usleep_range(1000, 1010);
  938. }
  939. hpf_cut_off_freq = (
  940. snd_soc_component_read32(component, dec_cfg_reg) &
  941. TX_HPF_CUT_OFF_FREQ_MASK) >> 5;
  942. tx_priv->tx_hpf_work[decimator].hpf_cut_off_freq =
  943. hpf_cut_off_freq;
  944. if (hpf_cut_off_freq != CF_MIN_3DB_150HZ)
  945. snd_soc_component_update_bits(component, dec_cfg_reg,
  946. TX_HPF_CUT_OFF_FREQ_MASK,
  947. CF_MIN_3DB_150HZ << 5);
  948. if (is_amic_enabled(component, decimator)) {
  949. hpf_delay = TX_MACRO_AMIC_HPF_DELAY_MS;
  950. unmute_delay = TX_MACRO_AMIC_UNMUTE_DELAY_MS;
  951. }
  952. if (tx_unmute_delay < unmute_delay)
  953. tx_unmute_delay = unmute_delay;
  954. /* schedule work queue to Remove Mute */
  955. queue_delayed_work(system_freezable_wq,
  956. &tx_priv->tx_mute_dwork[decimator].dwork,
  957. msecs_to_jiffies(tx_unmute_delay));
  958. if (tx_priv->tx_hpf_work[decimator].hpf_cut_off_freq !=
  959. CF_MIN_3DB_150HZ) {
  960. queue_delayed_work(system_freezable_wq,
  961. &tx_priv->tx_hpf_work[decimator].dwork,
  962. msecs_to_jiffies(hpf_delay));
  963. snd_soc_component_update_bits(component,
  964. hpf_gate_reg, 0x03, 0x02);
  965. if (!is_amic_enabled(component, decimator))
  966. snd_soc_component_update_bits(component,
  967. hpf_gate_reg, 0x03, 0x00);
  968. snd_soc_component_update_bits(component,
  969. hpf_gate_reg, 0x03, 0x01);
  970. /*
  971. * 6ms delay is required as per HW spec
  972. */
  973. usleep_range(6000, 6010);
  974. }
  975. /* apply gain after decimator is enabled */
  976. snd_soc_component_write(component, tx_gain_ctl_reg,
  977. snd_soc_component_read32(component,
  978. tx_gain_ctl_reg));
  979. if (tx_priv->bcs_enable) {
  980. if (tx_priv->version == BOLERO_VERSION_2_1)
  981. snd_soc_component_update_bits(component,
  982. BOLERO_CDC_VA_TOP_CSR_SWR_CTRL, 0x0F,
  983. tx_priv->bcs_ch);
  984. else if (tx_priv->version == BOLERO_VERSION_2_0)
  985. snd_soc_component_update_bits(component,
  986. BOLERO_CDC_TX_TOP_CSR_SWR_CTRL, 0xF0,
  987. (tx_priv->bcs_ch << 4));
  988. snd_soc_component_update_bits(component, dec_cfg_reg,
  989. 0x01, 0x01);
  990. tx_priv->bcs_clk_en = true;
  991. if (tx_priv->hs_slow_insert_complete)
  992. snd_soc_component_update_bits(component,
  993. BOLERO_CDC_TX0_TX_PATH_SEC7, 0x40,
  994. 0x40);
  995. }
  996. if (tx_priv->version == BOLERO_VERSION_2_0) {
  997. if (snd_soc_component_read32(component, adc_mux_reg)
  998. & SWR_MIC) {
  999. snd_soc_component_update_bits(component,
  1000. BOLERO_CDC_TX_TOP_CSR_SWR_CTRL,
  1001. 0x01, 0x01);
  1002. snd_soc_component_update_bits(component,
  1003. BOLERO_CDC_TX_TOP_CSR_SWR_MIC0_CTL,
  1004. 0x0E, 0x0C);
  1005. snd_soc_component_update_bits(component,
  1006. BOLERO_CDC_TX_TOP_CSR_SWR_MIC1_CTL,
  1007. 0x0E, 0x0C);
  1008. snd_soc_component_update_bits(component,
  1009. BOLERO_CDC_TX_TOP_CSR_SWR_MIC2_CTL,
  1010. 0x0E, 0x00);
  1011. snd_soc_component_update_bits(component,
  1012. BOLERO_CDC_TX_TOP_CSR_SWR_MIC3_CTL,
  1013. 0x0E, 0x00);
  1014. snd_soc_component_update_bits(component,
  1015. BOLERO_CDC_TX_TOP_CSR_SWR_MIC4_CTL,
  1016. 0x0E, 0x00);
  1017. snd_soc_component_update_bits(component,
  1018. BOLERO_CDC_TX_TOP_CSR_SWR_MIC5_CTL,
  1019. 0x0E, 0x00);
  1020. }
  1021. }
  1022. break;
  1023. case SND_SOC_DAPM_PRE_PMD:
  1024. hpf_cut_off_freq =
  1025. tx_priv->tx_hpf_work[decimator].hpf_cut_off_freq;
  1026. snd_soc_component_update_bits(component,
  1027. tx_vol_ctl_reg, 0x10, 0x10);
  1028. if (cancel_delayed_work_sync(
  1029. &tx_priv->tx_hpf_work[decimator].dwork)) {
  1030. if (hpf_cut_off_freq != CF_MIN_3DB_150HZ) {
  1031. snd_soc_component_update_bits(
  1032. component, dec_cfg_reg,
  1033. TX_HPF_CUT_OFF_FREQ_MASK,
  1034. hpf_cut_off_freq << 5);
  1035. if (is_amic_enabled(component, decimator))
  1036. snd_soc_component_update_bits(component,
  1037. hpf_gate_reg,
  1038. 0x03, 0x02);
  1039. else
  1040. snd_soc_component_update_bits(component,
  1041. hpf_gate_reg,
  1042. 0x03, 0x03);
  1043. /*
  1044. * Minimum 1 clk cycle delay is required
  1045. * as per HW spec
  1046. */
  1047. usleep_range(1000, 1010);
  1048. snd_soc_component_update_bits(component,
  1049. hpf_gate_reg,
  1050. 0x03, 0x01);
  1051. }
  1052. }
  1053. cancel_delayed_work_sync(
  1054. &tx_priv->tx_mute_dwork[decimator].dwork);
  1055. if (tx_priv->version == BOLERO_VERSION_2_0) {
  1056. if (snd_soc_component_read32(component, adc_mux_reg)
  1057. & SWR_MIC)
  1058. snd_soc_component_update_bits(component,
  1059. BOLERO_CDC_TX_TOP_CSR_SWR_CTRL,
  1060. 0x01, 0x00);
  1061. }
  1062. break;
  1063. case SND_SOC_DAPM_POST_PMD:
  1064. snd_soc_component_update_bits(component, tx_vol_ctl_reg,
  1065. 0x20, 0x00);
  1066. snd_soc_component_update_bits(component,
  1067. dec_cfg_reg, 0x06, 0x00);
  1068. snd_soc_component_update_bits(component, tx_vol_ctl_reg,
  1069. 0x10, 0x00);
  1070. if (tx_priv->bcs_enable) {
  1071. snd_soc_component_update_bits(component, dec_cfg_reg,
  1072. 0x01, 0x00);
  1073. snd_soc_component_update_bits(component,
  1074. BOLERO_CDC_TX0_TX_PATH_SEC7, 0x40, 0x00);
  1075. tx_priv->bcs_clk_en = false;
  1076. if (tx_priv->version == BOLERO_VERSION_2_1)
  1077. snd_soc_component_update_bits(component,
  1078. BOLERO_CDC_VA_TOP_CSR_SWR_CTRL, 0x0F,
  1079. 0x00);
  1080. else if (tx_priv->version == BOLERO_VERSION_2_0)
  1081. snd_soc_component_update_bits(component,
  1082. BOLERO_CDC_TX_TOP_CSR_SWR_CTRL, 0xF0,
  1083. 0x00);
  1084. }
  1085. break;
  1086. }
  1087. return 0;
  1088. }
  1089. static int tx_macro_enable_micbias(struct snd_soc_dapm_widget *w,
  1090. struct snd_kcontrol *kcontrol, int event)
  1091. {
  1092. return 0;
  1093. }
  1094. /* Cutoff frequency for high pass filter */
  1095. static const char * const cf_text[] = {
  1096. "CF_NEG_3DB_4HZ", "CF_NEG_3DB_75HZ", "CF_NEG_3DB_150HZ"
  1097. };
  1098. static SOC_ENUM_SINGLE_DECL(cf_dec0_enum, BOLERO_CDC_TX0_TX_PATH_CFG0, 5,
  1099. cf_text);
  1100. static SOC_ENUM_SINGLE_DECL(cf_dec1_enum, BOLERO_CDC_TX1_TX_PATH_CFG0, 5,
  1101. cf_text);
  1102. static SOC_ENUM_SINGLE_DECL(cf_dec2_enum, BOLERO_CDC_TX2_TX_PATH_CFG0, 5,
  1103. cf_text);
  1104. static SOC_ENUM_SINGLE_DECL(cf_dec3_enum, BOLERO_CDC_TX3_TX_PATH_CFG0, 5,
  1105. cf_text);
  1106. static SOC_ENUM_SINGLE_DECL(cf_dec4_enum, BOLERO_CDC_TX4_TX_PATH_CFG0, 5,
  1107. cf_text);
  1108. static SOC_ENUM_SINGLE_DECL(cf_dec5_enum, BOLERO_CDC_TX5_TX_PATH_CFG0, 5,
  1109. cf_text);
  1110. static SOC_ENUM_SINGLE_DECL(cf_dec6_enum, BOLERO_CDC_TX6_TX_PATH_CFG0, 5,
  1111. cf_text);
  1112. static SOC_ENUM_SINGLE_DECL(cf_dec7_enum, BOLERO_CDC_TX7_TX_PATH_CFG0, 5,
  1113. cf_text);
  1114. static int tx_macro_hw_params(struct snd_pcm_substream *substream,
  1115. struct snd_pcm_hw_params *params,
  1116. struct snd_soc_dai *dai)
  1117. {
  1118. int tx_fs_rate = -EINVAL;
  1119. struct snd_soc_component *component = dai->component;
  1120. u32 decimator = 0;
  1121. u32 sample_rate = 0;
  1122. u16 tx_fs_reg = 0;
  1123. struct device *tx_dev = NULL;
  1124. struct tx_macro_priv *tx_priv = NULL;
  1125. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  1126. return -EINVAL;
  1127. pr_debug("%s: dai_name = %s DAI-ID %x rate %d num_ch %d\n", __func__,
  1128. dai->name, dai->id, params_rate(params),
  1129. params_channels(params));
  1130. sample_rate = params_rate(params);
  1131. switch (sample_rate) {
  1132. case 8000:
  1133. tx_fs_rate = 0;
  1134. break;
  1135. case 16000:
  1136. tx_fs_rate = 1;
  1137. break;
  1138. case 32000:
  1139. tx_fs_rate = 3;
  1140. break;
  1141. case 48000:
  1142. tx_fs_rate = 4;
  1143. break;
  1144. case 96000:
  1145. tx_fs_rate = 5;
  1146. break;
  1147. case 192000:
  1148. tx_fs_rate = 6;
  1149. break;
  1150. case 384000:
  1151. tx_fs_rate = 7;
  1152. break;
  1153. default:
  1154. dev_err(component->dev, "%s: Invalid TX sample rate: %d\n",
  1155. __func__, params_rate(params));
  1156. return -EINVAL;
  1157. }
  1158. for_each_set_bit(decimator, &tx_priv->active_ch_mask[dai->id],
  1159. TX_MACRO_DEC_MAX) {
  1160. if (decimator >= 0) {
  1161. tx_fs_reg = BOLERO_CDC_TX0_TX_PATH_CTL +
  1162. TX_MACRO_TX_PATH_OFFSET * decimator;
  1163. dev_dbg(component->dev, "%s: set DEC%u rate to %u\n",
  1164. __func__, decimator, sample_rate);
  1165. snd_soc_component_update_bits(component, tx_fs_reg,
  1166. 0x0F, tx_fs_rate);
  1167. } else {
  1168. dev_err(component->dev,
  1169. "%s: ERROR: Invalid decimator: %d\n",
  1170. __func__, decimator);
  1171. return -EINVAL;
  1172. }
  1173. }
  1174. return 0;
  1175. }
  1176. static int tx_macro_get_channel_map(struct snd_soc_dai *dai,
  1177. unsigned int *tx_num, unsigned int *tx_slot,
  1178. unsigned int *rx_num, unsigned int *rx_slot)
  1179. {
  1180. struct snd_soc_component *component = dai->component;
  1181. struct device *tx_dev = NULL;
  1182. struct tx_macro_priv *tx_priv = NULL;
  1183. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  1184. return -EINVAL;
  1185. switch (dai->id) {
  1186. case TX_MACRO_AIF1_CAP:
  1187. case TX_MACRO_AIF2_CAP:
  1188. case TX_MACRO_AIF3_CAP:
  1189. *tx_slot = tx_priv->active_ch_mask[dai->id];
  1190. *tx_num = hweight_long(tx_priv->active_ch_mask[dai->id]);
  1191. break;
  1192. default:
  1193. dev_err(tx_dev, "%s: Invalid AIF\n", __func__);
  1194. break;
  1195. }
  1196. return 0;
  1197. }
  1198. static struct snd_soc_dai_ops tx_macro_dai_ops = {
  1199. .hw_params = tx_macro_hw_params,
  1200. .get_channel_map = tx_macro_get_channel_map,
  1201. };
  1202. static struct snd_soc_dai_driver tx_macro_dai[] = {
  1203. {
  1204. .name = "tx_macro_tx1",
  1205. .id = TX_MACRO_AIF1_CAP,
  1206. .capture = {
  1207. .stream_name = "TX_AIF1 Capture",
  1208. .rates = TX_MACRO_RATES,
  1209. .formats = TX_MACRO_FORMATS,
  1210. .rate_max = 192000,
  1211. .rate_min = 8000,
  1212. .channels_min = 1,
  1213. .channels_max = 8,
  1214. },
  1215. .ops = &tx_macro_dai_ops,
  1216. },
  1217. {
  1218. .name = "tx_macro_tx2",
  1219. .id = TX_MACRO_AIF2_CAP,
  1220. .capture = {
  1221. .stream_name = "TX_AIF2 Capture",
  1222. .rates = TX_MACRO_RATES,
  1223. .formats = TX_MACRO_FORMATS,
  1224. .rate_max = 192000,
  1225. .rate_min = 8000,
  1226. .channels_min = 1,
  1227. .channels_max = 8,
  1228. },
  1229. .ops = &tx_macro_dai_ops,
  1230. },
  1231. {
  1232. .name = "tx_macro_tx3",
  1233. .id = TX_MACRO_AIF3_CAP,
  1234. .capture = {
  1235. .stream_name = "TX_AIF3 Capture",
  1236. .rates = TX_MACRO_RATES,
  1237. .formats = TX_MACRO_FORMATS,
  1238. .rate_max = 192000,
  1239. .rate_min = 8000,
  1240. .channels_min = 1,
  1241. .channels_max = 8,
  1242. },
  1243. .ops = &tx_macro_dai_ops,
  1244. },
  1245. };
  1246. #define STRING(name) #name
  1247. #define TX_MACRO_DAPM_ENUM(name, reg, offset, text) \
  1248. static SOC_ENUM_SINGLE_DECL(name##_enum, reg, offset, text); \
  1249. static const struct snd_kcontrol_new name##_mux = \
  1250. SOC_DAPM_ENUM(STRING(name), name##_enum)
  1251. #define TX_MACRO_DAPM_ENUM_EXT(name, reg, offset, text, getname, putname) \
  1252. static SOC_ENUM_SINGLE_DECL(name##_enum, reg, offset, text); \
  1253. static const struct snd_kcontrol_new name##_mux = \
  1254. SOC_DAPM_ENUM_EXT(STRING(name), name##_enum, getname, putname)
  1255. #define TX_MACRO_DAPM_MUX(name, shift, kctl) \
  1256. SND_SOC_DAPM_MUX(name, SND_SOC_NOPM, shift, 0, &kctl##_mux)
  1257. static const char * const adc_mux_text[] = {
  1258. "MSM_DMIC", "SWR_MIC", "ANC_FB_TUNE1"
  1259. };
  1260. TX_MACRO_DAPM_ENUM(tx_dec0, BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG1,
  1261. 0, adc_mux_text);
  1262. TX_MACRO_DAPM_ENUM(tx_dec1, BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG1,
  1263. 0, adc_mux_text);
  1264. TX_MACRO_DAPM_ENUM(tx_dec2, BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG1,
  1265. 0, adc_mux_text);
  1266. TX_MACRO_DAPM_ENUM(tx_dec3, BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG1,
  1267. 0, adc_mux_text);
  1268. TX_MACRO_DAPM_ENUM(tx_dec4, BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG1,
  1269. 0, adc_mux_text);
  1270. TX_MACRO_DAPM_ENUM(tx_dec5, BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG1,
  1271. 0, adc_mux_text);
  1272. TX_MACRO_DAPM_ENUM(tx_dec6, BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG1,
  1273. 0, adc_mux_text);
  1274. TX_MACRO_DAPM_ENUM(tx_dec7, BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG1,
  1275. 0, adc_mux_text);
  1276. static const char * const dmic_mux_text[] = {
  1277. "ZERO", "DMIC0", "DMIC1", "DMIC2", "DMIC3",
  1278. "DMIC4", "DMIC5", "DMIC6", "DMIC7"
  1279. };
  1280. TX_MACRO_DAPM_ENUM_EXT(tx_dmic0, BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0,
  1281. 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
  1282. tx_macro_put_dec_enum);
  1283. TX_MACRO_DAPM_ENUM_EXT(tx_dmic1, BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG0,
  1284. 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
  1285. tx_macro_put_dec_enum);
  1286. TX_MACRO_DAPM_ENUM_EXT(tx_dmic2, BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG0,
  1287. 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
  1288. tx_macro_put_dec_enum);
  1289. TX_MACRO_DAPM_ENUM_EXT(tx_dmic3, BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG0,
  1290. 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
  1291. tx_macro_put_dec_enum);
  1292. TX_MACRO_DAPM_ENUM_EXT(tx_dmic4, BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG0,
  1293. 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
  1294. tx_macro_put_dec_enum);
  1295. TX_MACRO_DAPM_ENUM_EXT(tx_dmic5, BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG0,
  1296. 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
  1297. tx_macro_put_dec_enum);
  1298. TX_MACRO_DAPM_ENUM_EXT(tx_dmic6, BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG0,
  1299. 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
  1300. tx_macro_put_dec_enum);
  1301. TX_MACRO_DAPM_ENUM_EXT(tx_dmic7, BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG0,
  1302. 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
  1303. tx_macro_put_dec_enum);
  1304. static const char * const smic_mux_text[] = {
  1305. "ZERO", "ADC0", "ADC1", "ADC2", "ADC3", "SWR_DMIC0",
  1306. "SWR_DMIC1", "SWR_DMIC2", "SWR_DMIC3", "SWR_DMIC4",
  1307. "SWR_DMIC5", "SWR_DMIC6", "SWR_DMIC7"
  1308. };
  1309. TX_MACRO_DAPM_ENUM_EXT(tx_smic0, BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0,
  1310. 0, smic_mux_text, snd_soc_dapm_get_enum_double,
  1311. tx_macro_put_dec_enum);
  1312. TX_MACRO_DAPM_ENUM_EXT(tx_smic1, BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG0,
  1313. 0, smic_mux_text, snd_soc_dapm_get_enum_double,
  1314. tx_macro_put_dec_enum);
  1315. TX_MACRO_DAPM_ENUM_EXT(tx_smic2, BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG0,
  1316. 0, smic_mux_text, snd_soc_dapm_get_enum_double,
  1317. tx_macro_put_dec_enum);
  1318. TX_MACRO_DAPM_ENUM_EXT(tx_smic3, BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG0,
  1319. 0, smic_mux_text, snd_soc_dapm_get_enum_double,
  1320. tx_macro_put_dec_enum);
  1321. TX_MACRO_DAPM_ENUM_EXT(tx_smic4, BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG0,
  1322. 0, smic_mux_text, snd_soc_dapm_get_enum_double,
  1323. tx_macro_put_dec_enum);
  1324. TX_MACRO_DAPM_ENUM_EXT(tx_smic5, BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG0,
  1325. 0, smic_mux_text, snd_soc_dapm_get_enum_double,
  1326. tx_macro_put_dec_enum);
  1327. TX_MACRO_DAPM_ENUM_EXT(tx_smic6, BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG0,
  1328. 0, smic_mux_text, snd_soc_dapm_get_enum_double,
  1329. tx_macro_put_dec_enum);
  1330. TX_MACRO_DAPM_ENUM_EXT(tx_smic7, BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG0,
  1331. 0, smic_mux_text, snd_soc_dapm_get_enum_double,
  1332. tx_macro_put_dec_enum);
  1333. static const char * const smic_mux_text_v2[] = {
  1334. "ZERO", "SWR_MIC0", "SWR_MIC1", "SWR_MIC2", "SWR_MIC3",
  1335. "SWR_MIC4", "SWR_MIC5", "SWR_MIC6", "SWR_MIC7",
  1336. "SWR_MIC8", "SWR_MIC9", "SWR_MIC10", "SWR_MIC11"
  1337. };
  1338. TX_MACRO_DAPM_ENUM_EXT(tx_smic0_v2, BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0,
  1339. 0, smic_mux_text_v2, snd_soc_dapm_get_enum_double,
  1340. tx_macro_put_dec_enum);
  1341. TX_MACRO_DAPM_ENUM_EXT(tx_smic1_v2, BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG0,
  1342. 0, smic_mux_text_v2, snd_soc_dapm_get_enum_double,
  1343. tx_macro_put_dec_enum);
  1344. TX_MACRO_DAPM_ENUM_EXT(tx_smic2_v2, BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG0,
  1345. 0, smic_mux_text_v2, snd_soc_dapm_get_enum_double,
  1346. tx_macro_put_dec_enum);
  1347. TX_MACRO_DAPM_ENUM_EXT(tx_smic3_v2, BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG0,
  1348. 0, smic_mux_text_v2, snd_soc_dapm_get_enum_double,
  1349. tx_macro_put_dec_enum);
  1350. TX_MACRO_DAPM_ENUM_EXT(tx_smic4_v3, BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG0,
  1351. 0, smic_mux_text_v2, snd_soc_dapm_get_enum_double,
  1352. tx_macro_put_dec_enum);
  1353. TX_MACRO_DAPM_ENUM_EXT(tx_smic5_v3, BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG0,
  1354. 0, smic_mux_text_v2, snd_soc_dapm_get_enum_double,
  1355. tx_macro_put_dec_enum);
  1356. TX_MACRO_DAPM_ENUM_EXT(tx_smic6_v3, BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG0,
  1357. 0, smic_mux_text_v2, snd_soc_dapm_get_enum_double,
  1358. tx_macro_put_dec_enum);
  1359. TX_MACRO_DAPM_ENUM_EXT(tx_smic7_v3, BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG0,
  1360. 0, smic_mux_text_v2, snd_soc_dapm_get_enum_double,
  1361. tx_macro_put_dec_enum);
  1362. static const char * const dec_mode_mux_text[] = {
  1363. "ADC_DEFAULT", "ADC_LOW_PWR", "ADC_HIGH_PERF",
  1364. };
  1365. static const struct soc_enum dec_mode_mux_enum =
  1366. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(dec_mode_mux_text),
  1367. dec_mode_mux_text);
  1368. static const char * const bcs_ch_enum_text[] = {
  1369. "CH0", "CH1", "CH2", "CH3", "CH4", "CH5", "CH6", "CH7", "CH8", "CH9",
  1370. "CH10", "CH11",
  1371. };
  1372. static const struct soc_enum bcs_ch_enum =
  1373. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(bcs_ch_enum_text),
  1374. bcs_ch_enum_text);
  1375. static const struct snd_kcontrol_new tx_aif1_cap_mixer[] = {
  1376. SOC_SINGLE_EXT("DEC0", SND_SOC_NOPM, TX_MACRO_DEC0, 1, 0,
  1377. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1378. SOC_SINGLE_EXT("DEC1", SND_SOC_NOPM, TX_MACRO_DEC1, 1, 0,
  1379. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1380. SOC_SINGLE_EXT("DEC2", SND_SOC_NOPM, TX_MACRO_DEC2, 1, 0,
  1381. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1382. SOC_SINGLE_EXT("DEC3", SND_SOC_NOPM, TX_MACRO_DEC3, 1, 0,
  1383. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1384. SOC_SINGLE_EXT("DEC4", SND_SOC_NOPM, TX_MACRO_DEC4, 1, 0,
  1385. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1386. SOC_SINGLE_EXT("DEC5", SND_SOC_NOPM, TX_MACRO_DEC5, 1, 0,
  1387. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1388. SOC_SINGLE_EXT("DEC6", SND_SOC_NOPM, TX_MACRO_DEC6, 1, 0,
  1389. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1390. SOC_SINGLE_EXT("DEC7", SND_SOC_NOPM, TX_MACRO_DEC7, 1, 0,
  1391. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1392. };
  1393. static const struct snd_kcontrol_new tx_aif2_cap_mixer[] = {
  1394. SOC_SINGLE_EXT("DEC0", SND_SOC_NOPM, TX_MACRO_DEC0, 1, 0,
  1395. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1396. SOC_SINGLE_EXT("DEC1", SND_SOC_NOPM, TX_MACRO_DEC1, 1, 0,
  1397. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1398. SOC_SINGLE_EXT("DEC2", SND_SOC_NOPM, TX_MACRO_DEC2, 1, 0,
  1399. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1400. SOC_SINGLE_EXT("DEC3", SND_SOC_NOPM, TX_MACRO_DEC3, 1, 0,
  1401. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1402. SOC_SINGLE_EXT("DEC4", SND_SOC_NOPM, TX_MACRO_DEC4, 1, 0,
  1403. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1404. SOC_SINGLE_EXT("DEC5", SND_SOC_NOPM, TX_MACRO_DEC5, 1, 0,
  1405. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1406. SOC_SINGLE_EXT("DEC6", SND_SOC_NOPM, TX_MACRO_DEC6, 1, 0,
  1407. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1408. SOC_SINGLE_EXT("DEC7", SND_SOC_NOPM, TX_MACRO_DEC7, 1, 0,
  1409. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1410. };
  1411. static const struct snd_kcontrol_new tx_aif3_cap_mixer[] = {
  1412. SOC_SINGLE_EXT("DEC0", SND_SOC_NOPM, TX_MACRO_DEC0, 1, 0,
  1413. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1414. SOC_SINGLE_EXT("DEC1", SND_SOC_NOPM, TX_MACRO_DEC1, 1, 0,
  1415. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1416. SOC_SINGLE_EXT("DEC2", SND_SOC_NOPM, TX_MACRO_DEC2, 1, 0,
  1417. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1418. SOC_SINGLE_EXT("DEC3", SND_SOC_NOPM, TX_MACRO_DEC3, 1, 0,
  1419. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1420. SOC_SINGLE_EXT("DEC4", SND_SOC_NOPM, TX_MACRO_DEC4, 1, 0,
  1421. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1422. SOC_SINGLE_EXT("DEC5", SND_SOC_NOPM, TX_MACRO_DEC5, 1, 0,
  1423. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1424. SOC_SINGLE_EXT("DEC6", SND_SOC_NOPM, TX_MACRO_DEC6, 1, 0,
  1425. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1426. SOC_SINGLE_EXT("DEC7", SND_SOC_NOPM, TX_MACRO_DEC7, 1, 0,
  1427. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1428. };
  1429. static const struct snd_kcontrol_new tx_aif1_cap_mixer_v2[] = {
  1430. SOC_SINGLE_EXT("DEC0", SND_SOC_NOPM, TX_MACRO_DEC0, 1, 0,
  1431. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1432. SOC_SINGLE_EXT("DEC1", SND_SOC_NOPM, TX_MACRO_DEC1, 1, 0,
  1433. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1434. SOC_SINGLE_EXT("DEC2", SND_SOC_NOPM, TX_MACRO_DEC2, 1, 0,
  1435. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1436. SOC_SINGLE_EXT("DEC3", SND_SOC_NOPM, TX_MACRO_DEC3, 1, 0,
  1437. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1438. };
  1439. static const struct snd_kcontrol_new tx_aif2_cap_mixer_v2[] = {
  1440. SOC_SINGLE_EXT("DEC0", SND_SOC_NOPM, TX_MACRO_DEC0, 1, 0,
  1441. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1442. SOC_SINGLE_EXT("DEC1", SND_SOC_NOPM, TX_MACRO_DEC1, 1, 0,
  1443. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1444. SOC_SINGLE_EXT("DEC2", SND_SOC_NOPM, TX_MACRO_DEC2, 1, 0,
  1445. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1446. SOC_SINGLE_EXT("DEC3", SND_SOC_NOPM, TX_MACRO_DEC3, 1, 0,
  1447. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1448. };
  1449. static const struct snd_kcontrol_new tx_aif3_cap_mixer_v2[] = {
  1450. SOC_SINGLE_EXT("DEC0", SND_SOC_NOPM, TX_MACRO_DEC0, 1, 0,
  1451. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1452. SOC_SINGLE_EXT("DEC1", SND_SOC_NOPM, TX_MACRO_DEC1, 1, 0,
  1453. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1454. SOC_SINGLE_EXT("DEC2", SND_SOC_NOPM, TX_MACRO_DEC2, 1, 0,
  1455. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1456. SOC_SINGLE_EXT("DEC3", SND_SOC_NOPM, TX_MACRO_DEC3, 1, 0,
  1457. tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
  1458. };
  1459. static const struct snd_soc_dapm_widget tx_macro_dapm_widgets_common[] = {
  1460. SND_SOC_DAPM_AIF_OUT("TX_AIF1 CAP", "TX_AIF1 Capture", 0,
  1461. SND_SOC_NOPM, TX_MACRO_AIF1_CAP, 0),
  1462. SND_SOC_DAPM_AIF_OUT("TX_AIF2 CAP", "TX_AIF2 Capture", 0,
  1463. SND_SOC_NOPM, TX_MACRO_AIF2_CAP, 0),
  1464. SND_SOC_DAPM_AIF_OUT("TX_AIF3 CAP", "TX_AIF3 Capture", 0,
  1465. SND_SOC_NOPM, TX_MACRO_AIF3_CAP, 0),
  1466. TX_MACRO_DAPM_MUX("TX DMIC MUX0", 0, tx_dmic0),
  1467. TX_MACRO_DAPM_MUX("TX DMIC MUX1", 0, tx_dmic1),
  1468. TX_MACRO_DAPM_MUX("TX DMIC MUX2", 0, tx_dmic2),
  1469. TX_MACRO_DAPM_MUX("TX DMIC MUX3", 0, tx_dmic3),
  1470. TX_MACRO_DAPM_MUX("TX SMIC MUX0", 0, tx_smic0_v2),
  1471. TX_MACRO_DAPM_MUX("TX SMIC MUX1", 0, tx_smic1_v2),
  1472. TX_MACRO_DAPM_MUX("TX SMIC MUX2", 0, tx_smic2_v2),
  1473. TX_MACRO_DAPM_MUX("TX SMIC MUX3", 0, tx_smic3_v2),
  1474. SND_SOC_DAPM_SUPPLY("TX MIC BIAS1", SND_SOC_NOPM, 0, 0,
  1475. tx_macro_enable_micbias,
  1476. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1477. SND_SOC_DAPM_ADC_E("TX DMIC0", NULL, SND_SOC_NOPM, 0, 0,
  1478. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1479. SND_SOC_DAPM_POST_PMD),
  1480. SND_SOC_DAPM_ADC_E("TX DMIC1", NULL, SND_SOC_NOPM, 0, 0,
  1481. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1482. SND_SOC_DAPM_POST_PMD),
  1483. SND_SOC_DAPM_ADC_E("TX DMIC2", NULL, SND_SOC_NOPM, 0, 0,
  1484. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1485. SND_SOC_DAPM_POST_PMD),
  1486. SND_SOC_DAPM_ADC_E("TX DMIC3", NULL, SND_SOC_NOPM, 0, 0,
  1487. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1488. SND_SOC_DAPM_POST_PMD),
  1489. SND_SOC_DAPM_ADC_E("TX DMIC4", NULL, SND_SOC_NOPM, 0, 0,
  1490. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1491. SND_SOC_DAPM_POST_PMD),
  1492. SND_SOC_DAPM_ADC_E("TX DMIC5", NULL, SND_SOC_NOPM, 0, 0,
  1493. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1494. SND_SOC_DAPM_POST_PMD),
  1495. SND_SOC_DAPM_ADC_E("TX DMIC6", NULL, SND_SOC_NOPM, 0, 0,
  1496. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1497. SND_SOC_DAPM_POST_PMD),
  1498. SND_SOC_DAPM_ADC_E("TX DMIC7", NULL, SND_SOC_NOPM, 0, 0,
  1499. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1500. SND_SOC_DAPM_POST_PMD),
  1501. SND_SOC_DAPM_INPUT("TX SWR_INPUT"),
  1502. SND_SOC_DAPM_MUX_E("TX DEC0 MUX", SND_SOC_NOPM,
  1503. TX_MACRO_DEC0, 0,
  1504. &tx_dec0_mux, tx_macro_enable_dec,
  1505. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1506. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1507. SND_SOC_DAPM_MUX_E("TX DEC1 MUX", SND_SOC_NOPM,
  1508. TX_MACRO_DEC1, 0,
  1509. &tx_dec1_mux, tx_macro_enable_dec,
  1510. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1511. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1512. SND_SOC_DAPM_MUX_E("TX DEC2 MUX", SND_SOC_NOPM,
  1513. TX_MACRO_DEC2, 0,
  1514. &tx_dec2_mux, tx_macro_enable_dec,
  1515. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1516. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1517. SND_SOC_DAPM_MUX_E("TX DEC3 MUX", SND_SOC_NOPM,
  1518. TX_MACRO_DEC3, 0,
  1519. &tx_dec3_mux, tx_macro_enable_dec,
  1520. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1521. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1522. SND_SOC_DAPM_SUPPLY_S("TX_MCLK", 0, SND_SOC_NOPM, 0, 0,
  1523. tx_macro_mclk_event, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1524. SND_SOC_DAPM_SUPPLY_S("TX_SWR_PWR", -1, SND_SOC_NOPM, 0, 0,
  1525. tx_macro_swr_pwr_event,
  1526. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1527. };
  1528. static const struct snd_soc_dapm_widget tx_macro_dapm_widgets_v2[] = {
  1529. SND_SOC_DAPM_MIXER("TX_AIF1_CAP Mixer", SND_SOC_NOPM,
  1530. TX_MACRO_AIF1_CAP, 0,
  1531. tx_aif1_cap_mixer_v2, ARRAY_SIZE(tx_aif1_cap_mixer_v2)),
  1532. SND_SOC_DAPM_MIXER("TX_AIF2_CAP Mixer", SND_SOC_NOPM,
  1533. TX_MACRO_AIF2_CAP, 0,
  1534. tx_aif2_cap_mixer_v2, ARRAY_SIZE(tx_aif2_cap_mixer_v2)),
  1535. SND_SOC_DAPM_MIXER("TX_AIF3_CAP Mixer", SND_SOC_NOPM,
  1536. TX_MACRO_AIF3_CAP, 0,
  1537. tx_aif3_cap_mixer_v2, ARRAY_SIZE(tx_aif3_cap_mixer_v2)),
  1538. };
  1539. static const struct snd_soc_dapm_widget tx_macro_dapm_widgets_v3[] = {
  1540. SND_SOC_DAPM_MIXER("TX_AIF1_CAP Mixer", SND_SOC_NOPM,
  1541. TX_MACRO_AIF1_CAP, 0,
  1542. tx_aif1_cap_mixer, ARRAY_SIZE(tx_aif1_cap_mixer)),
  1543. SND_SOC_DAPM_MIXER("TX_AIF2_CAP Mixer", SND_SOC_NOPM,
  1544. TX_MACRO_AIF2_CAP, 0,
  1545. tx_aif2_cap_mixer, ARRAY_SIZE(tx_aif2_cap_mixer)),
  1546. SND_SOC_DAPM_MIXER("TX_AIF3_CAP Mixer", SND_SOC_NOPM,
  1547. TX_MACRO_AIF3_CAP, 0,
  1548. tx_aif3_cap_mixer, ARRAY_SIZE(tx_aif3_cap_mixer)),
  1549. TX_MACRO_DAPM_MUX("TX DMIC MUX4", 0, tx_dmic4),
  1550. TX_MACRO_DAPM_MUX("TX DMIC MUX5", 0, tx_dmic5),
  1551. TX_MACRO_DAPM_MUX("TX DMIC MUX6", 0, tx_dmic6),
  1552. TX_MACRO_DAPM_MUX("TX DMIC MUX7", 0, tx_dmic7),
  1553. TX_MACRO_DAPM_MUX("TX SMIC MUX4", 0, tx_smic4_v3),
  1554. TX_MACRO_DAPM_MUX("TX SMIC MUX5", 0, tx_smic5_v3),
  1555. TX_MACRO_DAPM_MUX("TX SMIC MUX6", 0, tx_smic6_v3),
  1556. TX_MACRO_DAPM_MUX("TX SMIC MUX7", 0, tx_smic7_v3),
  1557. SND_SOC_DAPM_MUX_E("TX DEC4 MUX", SND_SOC_NOPM,
  1558. TX_MACRO_DEC4, 0,
  1559. &tx_dec4_mux, tx_macro_enable_dec,
  1560. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1561. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1562. SND_SOC_DAPM_MUX_E("TX DEC5 MUX", SND_SOC_NOPM,
  1563. TX_MACRO_DEC5, 0,
  1564. &tx_dec5_mux, tx_macro_enable_dec,
  1565. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1566. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1567. SND_SOC_DAPM_MUX_E("TX DEC6 MUX", SND_SOC_NOPM,
  1568. TX_MACRO_DEC6, 0,
  1569. &tx_dec6_mux, tx_macro_enable_dec,
  1570. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1571. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1572. SND_SOC_DAPM_MUX_E("TX DEC7 MUX", SND_SOC_NOPM,
  1573. TX_MACRO_DEC7, 0,
  1574. &tx_dec7_mux, tx_macro_enable_dec,
  1575. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1576. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1577. SND_SOC_DAPM_SUPPLY_S("TX_SWR_CLK", 0, SND_SOC_NOPM, 0, 0,
  1578. tx_macro_tx_swr_clk_event,
  1579. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1580. SND_SOC_DAPM_SUPPLY_S("VA_SWR_CLK", 0, SND_SOC_NOPM, 0, 0,
  1581. tx_macro_va_swr_clk_event,
  1582. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1583. };
  1584. static const struct snd_soc_dapm_widget tx_macro_dapm_widgets[] = {
  1585. SND_SOC_DAPM_AIF_OUT("TX_AIF1 CAP", "TX_AIF1 Capture", 0,
  1586. SND_SOC_NOPM, TX_MACRO_AIF1_CAP, 0),
  1587. SND_SOC_DAPM_AIF_OUT("TX_AIF2 CAP", "TX_AIF2 Capture", 0,
  1588. SND_SOC_NOPM, TX_MACRO_AIF2_CAP, 0),
  1589. SND_SOC_DAPM_AIF_OUT("TX_AIF3 CAP", "TX_AIF3 Capture", 0,
  1590. SND_SOC_NOPM, TX_MACRO_AIF3_CAP, 0),
  1591. SND_SOC_DAPM_MIXER("TX_AIF1_CAP Mixer", SND_SOC_NOPM, TX_MACRO_AIF1_CAP, 0,
  1592. tx_aif1_cap_mixer, ARRAY_SIZE(tx_aif1_cap_mixer)),
  1593. SND_SOC_DAPM_MIXER("TX_AIF2_CAP Mixer", SND_SOC_NOPM, TX_MACRO_AIF2_CAP, 0,
  1594. tx_aif2_cap_mixer, ARRAY_SIZE(tx_aif2_cap_mixer)),
  1595. SND_SOC_DAPM_MIXER("TX_AIF3_CAP Mixer", SND_SOC_NOPM, TX_MACRO_AIF3_CAP, 0,
  1596. tx_aif3_cap_mixer, ARRAY_SIZE(tx_aif3_cap_mixer)),
  1597. TX_MACRO_DAPM_MUX("TX DMIC MUX0", 0, tx_dmic0),
  1598. TX_MACRO_DAPM_MUX("TX DMIC MUX1", 0, tx_dmic1),
  1599. TX_MACRO_DAPM_MUX("TX DMIC MUX2", 0, tx_dmic2),
  1600. TX_MACRO_DAPM_MUX("TX DMIC MUX3", 0, tx_dmic3),
  1601. TX_MACRO_DAPM_MUX("TX DMIC MUX4", 0, tx_dmic4),
  1602. TX_MACRO_DAPM_MUX("TX DMIC MUX5", 0, tx_dmic5),
  1603. TX_MACRO_DAPM_MUX("TX DMIC MUX6", 0, tx_dmic6),
  1604. TX_MACRO_DAPM_MUX("TX DMIC MUX7", 0, tx_dmic7),
  1605. TX_MACRO_DAPM_MUX("TX SMIC MUX0", 0, tx_smic0),
  1606. TX_MACRO_DAPM_MUX("TX SMIC MUX1", 0, tx_smic1),
  1607. TX_MACRO_DAPM_MUX("TX SMIC MUX2", 0, tx_smic2),
  1608. TX_MACRO_DAPM_MUX("TX SMIC MUX3", 0, tx_smic3),
  1609. TX_MACRO_DAPM_MUX("TX SMIC MUX4", 0, tx_smic4),
  1610. TX_MACRO_DAPM_MUX("TX SMIC MUX5", 0, tx_smic5),
  1611. TX_MACRO_DAPM_MUX("TX SMIC MUX6", 0, tx_smic6),
  1612. TX_MACRO_DAPM_MUX("TX SMIC MUX7", 0, tx_smic7),
  1613. SND_SOC_DAPM_SUPPLY("TX MIC BIAS1", SND_SOC_NOPM, 0, 0,
  1614. tx_macro_enable_micbias,
  1615. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1616. SND_SOC_DAPM_ADC_E("TX DMIC0", NULL, SND_SOC_NOPM, 0, 0,
  1617. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1618. SND_SOC_DAPM_POST_PMD),
  1619. SND_SOC_DAPM_ADC_E("TX DMIC1", NULL, SND_SOC_NOPM, 0, 0,
  1620. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1621. SND_SOC_DAPM_POST_PMD),
  1622. SND_SOC_DAPM_ADC_E("TX DMIC2", NULL, SND_SOC_NOPM, 0, 0,
  1623. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1624. SND_SOC_DAPM_POST_PMD),
  1625. SND_SOC_DAPM_ADC_E("TX DMIC3", NULL, SND_SOC_NOPM, 0, 0,
  1626. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1627. SND_SOC_DAPM_POST_PMD),
  1628. SND_SOC_DAPM_ADC_E("TX DMIC4", NULL, SND_SOC_NOPM, 0, 0,
  1629. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1630. SND_SOC_DAPM_POST_PMD),
  1631. SND_SOC_DAPM_ADC_E("TX DMIC5", NULL, SND_SOC_NOPM, 0, 0,
  1632. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1633. SND_SOC_DAPM_POST_PMD),
  1634. SND_SOC_DAPM_ADC_E("TX DMIC6", NULL, SND_SOC_NOPM, 0, 0,
  1635. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1636. SND_SOC_DAPM_POST_PMD),
  1637. SND_SOC_DAPM_ADC_E("TX DMIC7", NULL, SND_SOC_NOPM, 0, 0,
  1638. tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
  1639. SND_SOC_DAPM_POST_PMD),
  1640. SND_SOC_DAPM_INPUT("TX SWR_ADC0"),
  1641. SND_SOC_DAPM_INPUT("TX SWR_ADC1"),
  1642. SND_SOC_DAPM_INPUT("TX SWR_ADC2"),
  1643. SND_SOC_DAPM_INPUT("TX SWR_ADC3"),
  1644. SND_SOC_DAPM_INPUT("TX SWR_DMIC0"),
  1645. SND_SOC_DAPM_INPUT("TX SWR_DMIC1"),
  1646. SND_SOC_DAPM_INPUT("TX SWR_DMIC2"),
  1647. SND_SOC_DAPM_INPUT("TX SWR_DMIC3"),
  1648. SND_SOC_DAPM_INPUT("TX SWR_DMIC4"),
  1649. SND_SOC_DAPM_INPUT("TX SWR_DMIC5"),
  1650. SND_SOC_DAPM_INPUT("TX SWR_DMIC6"),
  1651. SND_SOC_DAPM_INPUT("TX SWR_DMIC7"),
  1652. SND_SOC_DAPM_MUX_E("TX DEC0 MUX", SND_SOC_NOPM,
  1653. TX_MACRO_DEC0, 0,
  1654. &tx_dec0_mux, tx_macro_enable_dec,
  1655. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1656. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1657. SND_SOC_DAPM_MUX_E("TX DEC1 MUX", SND_SOC_NOPM,
  1658. TX_MACRO_DEC1, 0,
  1659. &tx_dec1_mux, tx_macro_enable_dec,
  1660. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1661. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1662. SND_SOC_DAPM_MUX_E("TX DEC2 MUX", SND_SOC_NOPM,
  1663. TX_MACRO_DEC2, 0,
  1664. &tx_dec2_mux, tx_macro_enable_dec,
  1665. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1666. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1667. SND_SOC_DAPM_MUX_E("TX DEC3 MUX", SND_SOC_NOPM,
  1668. TX_MACRO_DEC3, 0,
  1669. &tx_dec3_mux, tx_macro_enable_dec,
  1670. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1671. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1672. SND_SOC_DAPM_MUX_E("TX DEC4 MUX", SND_SOC_NOPM,
  1673. TX_MACRO_DEC4, 0,
  1674. &tx_dec4_mux, tx_macro_enable_dec,
  1675. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1676. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1677. SND_SOC_DAPM_MUX_E("TX DEC5 MUX", SND_SOC_NOPM,
  1678. TX_MACRO_DEC5, 0,
  1679. &tx_dec5_mux, tx_macro_enable_dec,
  1680. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1681. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1682. SND_SOC_DAPM_MUX_E("TX DEC6 MUX", SND_SOC_NOPM,
  1683. TX_MACRO_DEC6, 0,
  1684. &tx_dec6_mux, tx_macro_enable_dec,
  1685. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1686. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1687. SND_SOC_DAPM_MUX_E("TX DEC7 MUX", SND_SOC_NOPM,
  1688. TX_MACRO_DEC7, 0,
  1689. &tx_dec7_mux, tx_macro_enable_dec,
  1690. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1691. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1692. SND_SOC_DAPM_SUPPLY_S("TX_MCLK", 0, SND_SOC_NOPM, 0, 0,
  1693. tx_macro_mclk_event, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1694. SND_SOC_DAPM_SUPPLY_S("TX_SWR_CLK", 0, SND_SOC_NOPM, 0, 0,
  1695. tx_macro_tx_swr_clk_event,
  1696. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1697. SND_SOC_DAPM_SUPPLY_S("VA_SWR_CLK", 0, SND_SOC_NOPM, 0, 0,
  1698. tx_macro_va_swr_clk_event,
  1699. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1700. };
  1701. static const struct snd_soc_dapm_route tx_audio_map_common[] = {
  1702. {"TX_AIF1 CAP", NULL, "TX_MCLK"},
  1703. {"TX_AIF2 CAP", NULL, "TX_MCLK"},
  1704. {"TX_AIF3 CAP", NULL, "TX_MCLK"},
  1705. {"TX_AIF1 CAP", NULL, "TX_AIF1_CAP Mixer"},
  1706. {"TX_AIF2 CAP", NULL, "TX_AIF2_CAP Mixer"},
  1707. {"TX_AIF3 CAP", NULL, "TX_AIF3_CAP Mixer"},
  1708. {"TX_AIF1_CAP Mixer", "DEC0", "TX DEC0 MUX"},
  1709. {"TX_AIF1_CAP Mixer", "DEC1", "TX DEC1 MUX"},
  1710. {"TX_AIF1_CAP Mixer", "DEC2", "TX DEC2 MUX"},
  1711. {"TX_AIF1_CAP Mixer", "DEC3", "TX DEC3 MUX"},
  1712. {"TX_AIF2_CAP Mixer", "DEC0", "TX DEC0 MUX"},
  1713. {"TX_AIF2_CAP Mixer", "DEC1", "TX DEC1 MUX"},
  1714. {"TX_AIF2_CAP Mixer", "DEC2", "TX DEC2 MUX"},
  1715. {"TX_AIF2_CAP Mixer", "DEC3", "TX DEC3 MUX"},
  1716. {"TX_AIF3_CAP Mixer", "DEC0", "TX DEC0 MUX"},
  1717. {"TX_AIF3_CAP Mixer", "DEC1", "TX DEC1 MUX"},
  1718. {"TX_AIF3_CAP Mixer", "DEC2", "TX DEC2 MUX"},
  1719. {"TX_AIF3_CAP Mixer", "DEC3", "TX DEC3 MUX"},
  1720. {"TX DEC0 MUX", NULL, "TX_MCLK"},
  1721. {"TX DEC1 MUX", NULL, "TX_MCLK"},
  1722. {"TX DEC2 MUX", NULL, "TX_MCLK"},
  1723. {"TX DEC3 MUX", NULL, "TX_MCLK"},
  1724. {"TX DEC0 MUX", "MSM_DMIC", "TX DMIC MUX0"},
  1725. {"TX DMIC MUX0", "DMIC0", "TX DMIC0"},
  1726. {"TX DMIC MUX0", "DMIC1", "TX DMIC1"},
  1727. {"TX DMIC MUX0", "DMIC2", "TX DMIC2"},
  1728. {"TX DMIC MUX0", "DMIC3", "TX DMIC3"},
  1729. {"TX DMIC MUX0", "DMIC4", "TX DMIC4"},
  1730. {"TX DMIC MUX0", "DMIC5", "TX DMIC5"},
  1731. {"TX DMIC MUX0", "DMIC6", "TX DMIC6"},
  1732. {"TX DMIC MUX0", "DMIC7", "TX DMIC7"},
  1733. {"TX DEC0 MUX", "SWR_MIC", "TX SMIC MUX0"},
  1734. {"TX SMIC MUX0", "SWR_MIC0", "TX SWR_INPUT"},
  1735. {"TX SMIC MUX0", "SWR_MIC1", "TX SWR_INPUT"},
  1736. {"TX SMIC MUX0", "SWR_MIC2", "TX SWR_INPUT"},
  1737. {"TX SMIC MUX0", "SWR_MIC3", "TX SWR_INPUT"},
  1738. {"TX SMIC MUX0", "SWR_MIC4", "TX SWR_INPUT"},
  1739. {"TX SMIC MUX0", "SWR_MIC5", "TX SWR_INPUT"},
  1740. {"TX SMIC MUX0", "SWR_MIC6", "TX SWR_INPUT"},
  1741. {"TX SMIC MUX0", "SWR_MIC7", "TX SWR_INPUT"},
  1742. {"TX SMIC MUX0", "SWR_MIC8", "TX SWR_INPUT"},
  1743. {"TX SMIC MUX0", "SWR_MIC9", "TX SWR_INPUT"},
  1744. {"TX SMIC MUX0", "SWR_MIC10", "TX SWR_INPUT"},
  1745. {"TX SMIC MUX0", "SWR_MIC11", "TX SWR_INPUT"},
  1746. {"TX DEC1 MUX", "MSM_DMIC", "TX DMIC MUX1"},
  1747. {"TX DMIC MUX1", "DMIC0", "TX DMIC0"},
  1748. {"TX DMIC MUX1", "DMIC1", "TX DMIC1"},
  1749. {"TX DMIC MUX1", "DMIC2", "TX DMIC2"},
  1750. {"TX DMIC MUX1", "DMIC3", "TX DMIC3"},
  1751. {"TX DMIC MUX1", "DMIC4", "TX DMIC4"},
  1752. {"TX DMIC MUX1", "DMIC5", "TX DMIC5"},
  1753. {"TX DMIC MUX1", "DMIC6", "TX DMIC6"},
  1754. {"TX DMIC MUX1", "DMIC7", "TX DMIC7"},
  1755. {"TX DEC1 MUX", "SWR_MIC", "TX SMIC MUX1"},
  1756. {"TX SMIC MUX1", "SWR_MIC0", "TX SWR_INPUT"},
  1757. {"TX SMIC MUX1", "SWR_MIC1", "TX SWR_INPUT"},
  1758. {"TX SMIC MUX1", "SWR_MIC2", "TX SWR_INPUT"},
  1759. {"TX SMIC MUX1", "SWR_MIC3", "TX SWR_INPUT"},
  1760. {"TX SMIC MUX1", "SWR_MIC4", "TX SWR_INPUT"},
  1761. {"TX SMIC MUX1", "SWR_MIC5", "TX SWR_INPUT"},
  1762. {"TX SMIC MUX1", "SWR_MIC6", "TX SWR_INPUT"},
  1763. {"TX SMIC MUX1", "SWR_MIC7", "TX SWR_INPUT"},
  1764. {"TX SMIC MUX1", "SWR_MIC8", "TX SWR_INPUT"},
  1765. {"TX SMIC MUX1", "SWR_MIC9", "TX SWR_INPUT"},
  1766. {"TX SMIC MUX1", "SWR_MIC10", "TX SWR_INPUT"},
  1767. {"TX SMIC MUX1", "SWR_MIC11", "TX SWR_INPUT"},
  1768. {"TX DEC2 MUX", "MSM_DMIC", "TX DMIC MUX2"},
  1769. {"TX DMIC MUX2", "DMIC0", "TX DMIC0"},
  1770. {"TX DMIC MUX2", "DMIC1", "TX DMIC1"},
  1771. {"TX DMIC MUX2", "DMIC2", "TX DMIC2"},
  1772. {"TX DMIC MUX2", "DMIC3", "TX DMIC3"},
  1773. {"TX DMIC MUX2", "DMIC4", "TX DMIC4"},
  1774. {"TX DMIC MUX2", "DMIC5", "TX DMIC5"},
  1775. {"TX DMIC MUX2", "DMIC6", "TX DMIC6"},
  1776. {"TX DMIC MUX2", "DMIC7", "TX DMIC7"},
  1777. {"TX DEC2 MUX", "SWR_MIC", "TX SMIC MUX2"},
  1778. {"TX SMIC MUX2", "SWR_MIC0", "TX SWR_INPUT"},
  1779. {"TX SMIC MUX2", "SWR_MIC1", "TX SWR_INPUT"},
  1780. {"TX SMIC MUX2", "SWR_MIC2", "TX SWR_INPUT"},
  1781. {"TX SMIC MUX2", "SWR_MIC3", "TX SWR_INPUT"},
  1782. {"TX SMIC MUX2", "SWR_MIC4", "TX SWR_INPUT"},
  1783. {"TX SMIC MUX2", "SWR_MIC5", "TX SWR_INPUT"},
  1784. {"TX SMIC MUX2", "SWR_MIC6", "TX SWR_INPUT"},
  1785. {"TX SMIC MUX2", "SWR_MIC7", "TX SWR_INPUT"},
  1786. {"TX SMIC MUX2", "SWR_MIC8", "TX SWR_INPUT"},
  1787. {"TX SMIC MUX2", "SWR_MIC9", "TX SWR_INPUT"},
  1788. {"TX SMIC MUX2", "SWR_MIC10", "TX SWR_INPUT"},
  1789. {"TX SMIC MUX2", "SWR_MIC11", "TX SWR_INPUT"},
  1790. {"TX DEC3 MUX", "MSM_DMIC", "TX DMIC MUX3"},
  1791. {"TX DMIC MUX3", "DMIC0", "TX DMIC0"},
  1792. {"TX DMIC MUX3", "DMIC1", "TX DMIC1"},
  1793. {"TX DMIC MUX3", "DMIC2", "TX DMIC2"},
  1794. {"TX DMIC MUX3", "DMIC3", "TX DMIC3"},
  1795. {"TX DMIC MUX3", "DMIC4", "TX DMIC4"},
  1796. {"TX DMIC MUX3", "DMIC5", "TX DMIC5"},
  1797. {"TX DMIC MUX3", "DMIC6", "TX DMIC6"},
  1798. {"TX DMIC MUX3", "DMIC7", "TX DMIC7"},
  1799. {"TX DEC3 MUX", "SWR_MIC", "TX SMIC MUX3"},
  1800. {"TX SMIC MUX3", "SWR_MIC0", "TX SWR_INPUT"},
  1801. {"TX SMIC MUX3", "SWR_MIC1", "TX SWR_INPUT"},
  1802. {"TX SMIC MUX3", "SWR_MIC2", "TX SWR_INPUT"},
  1803. {"TX SMIC MUX3", "SWR_MIC3", "TX SWR_INPUT"},
  1804. {"TX SMIC MUX3", "SWR_MIC4", "TX SWR_INPUT"},
  1805. {"TX SMIC MUX3", "SWR_MIC5", "TX SWR_INPUT"},
  1806. {"TX SMIC MUX3", "SWR_MIC6", "TX SWR_INPUT"},
  1807. {"TX SMIC MUX3", "SWR_MIC7", "TX SWR_INPUT"},
  1808. {"TX SMIC MUX3", "SWR_MIC8", "TX SWR_INPUT"},
  1809. {"TX SMIC MUX3", "SWR_MIC9", "TX SWR_INPUT"},
  1810. {"TX SMIC MUX3", "SWR_MIC10", "TX SWR_INPUT"},
  1811. {"TX SMIC MUX3", "SWR_MIC11", "TX SWR_INPUT"},
  1812. };
  1813. static const struct snd_soc_dapm_route tx_audio_map_v3[] = {
  1814. {"TX_AIF1_CAP Mixer", "DEC4", "TX DEC4 MUX"},
  1815. {"TX_AIF1_CAP Mixer", "DEC5", "TX DEC5 MUX"},
  1816. {"TX_AIF1_CAP Mixer", "DEC6", "TX DEC6 MUX"},
  1817. {"TX_AIF1_CAP Mixer", "DEC7", "TX DEC7 MUX"},
  1818. {"TX_AIF2_CAP Mixer", "DEC4", "TX DEC4 MUX"},
  1819. {"TX_AIF2_CAP Mixer", "DEC5", "TX DEC5 MUX"},
  1820. {"TX_AIF2_CAP Mixer", "DEC6", "TX DEC6 MUX"},
  1821. {"TX_AIF2_CAP Mixer", "DEC7", "TX DEC7 MUX"},
  1822. {"TX_AIF3_CAP Mixer", "DEC4", "TX DEC4 MUX"},
  1823. {"TX_AIF3_CAP Mixer", "DEC5", "TX DEC5 MUX"},
  1824. {"TX_AIF3_CAP Mixer", "DEC6", "TX DEC6 MUX"},
  1825. {"TX_AIF3_CAP Mixer", "DEC7", "TX DEC7 MUX"},
  1826. {"TX DEC4 MUX", NULL, "TX_MCLK"},
  1827. {"TX DEC5 MUX", NULL, "TX_MCLK"},
  1828. {"TX DEC6 MUX", NULL, "TX_MCLK"},
  1829. {"TX DEC7 MUX", NULL, "TX_MCLK"},
  1830. {"TX DEC4 MUX", "MSM_DMIC", "TX DMIC MUX4"},
  1831. {"TX DMIC MUX4", "DMIC0", "TX DMIC0"},
  1832. {"TX DMIC MUX4", "DMIC1", "TX DMIC1"},
  1833. {"TX DMIC MUX4", "DMIC2", "TX DMIC2"},
  1834. {"TX DMIC MUX4", "DMIC3", "TX DMIC3"},
  1835. {"TX DMIC MUX4", "DMIC4", "TX DMIC4"},
  1836. {"TX DMIC MUX4", "DMIC5", "TX DMIC5"},
  1837. {"TX DMIC MUX4", "DMIC6", "TX DMIC6"},
  1838. {"TX DMIC MUX4", "DMIC7", "TX DMIC7"},
  1839. {"TX DEC4 MUX", "SWR_MIC", "TX SMIC MUX4"},
  1840. {"TX SMIC MUX4", "SWR_MIC0", "TX SWR_INPUT"},
  1841. {"TX SMIC MUX4", "SWR_MIC1", "TX SWR_INPUT"},
  1842. {"TX SMIC MUX4", "SWR_MIC2", "TX SWR_INPUT"},
  1843. {"TX SMIC MUX4", "SWR_MIC3", "TX SWR_INPUT"},
  1844. {"TX SMIC MUX4", "SWR_MIC4", "TX SWR_INPUT"},
  1845. {"TX SMIC MUX4", "SWR_MIC5", "TX SWR_INPUT"},
  1846. {"TX SMIC MUX4", "SWR_MIC6", "TX SWR_INPUT"},
  1847. {"TX SMIC MUX4", "SWR_MIC7", "TX SWR_INPUT"},
  1848. {"TX SMIC MUX4", "SWR_MIC8", "TX SWR_INPUT"},
  1849. {"TX SMIC MUX4", "SWR_MIC9", "TX SWR_INPUT"},
  1850. {"TX SMIC MUX4", "SWR_MIC10", "TX SWR_INPUT"},
  1851. {"TX SMIC MUX4", "SWR_MIC11", "TX SWR_INPUT"},
  1852. {"TX DEC5 MUX", "MSM_DMIC", "TX DMIC MUX5"},
  1853. {"TX DMIC MUX5", "DMIC0", "TX DMIC0"},
  1854. {"TX DMIC MUX5", "DMIC1", "TX DMIC1"},
  1855. {"TX DMIC MUX5", "DMIC2", "TX DMIC2"},
  1856. {"TX DMIC MUX5", "DMIC3", "TX DMIC3"},
  1857. {"TX DMIC MUX5", "DMIC4", "TX DMIC4"},
  1858. {"TX DMIC MUX5", "DMIC5", "TX DMIC5"},
  1859. {"TX DMIC MUX5", "DMIC6", "TX DMIC6"},
  1860. {"TX DMIC MUX5", "DMIC7", "TX DMIC7"},
  1861. {"TX DEC5 MUX", "SWR_MIC", "TX SMIC MUX5"},
  1862. {"TX SMIC MUX5", "SWR_MIC0", "TX SWR_INPUT"},
  1863. {"TX SMIC MUX5", "SWR_MIC1", "TX SWR_INPUT"},
  1864. {"TX SMIC MUX5", "SWR_MIC2", "TX SWR_INPUT"},
  1865. {"TX SMIC MUX5", "SWR_MIC3", "TX SWR_INPUT"},
  1866. {"TX SMIC MUX5", "SWR_MIC4", "TX SWR_INPUT"},
  1867. {"TX SMIC MUX5", "SWR_MIC5", "TX SWR_INPUT"},
  1868. {"TX SMIC MUX5", "SWR_MIC6", "TX SWR_INPUT"},
  1869. {"TX SMIC MUX5", "SWR_MIC7", "TX SWR_INPUT"},
  1870. {"TX SMIC MUX5", "SWR_MIC8", "TX SWR_INPUT"},
  1871. {"TX SMIC MUX5", "SWR_MIC9", "TX SWR_INPUT"},
  1872. {"TX SMIC MUX5", "SWR_MIC10", "TX SWR_INPUT"},
  1873. {"TX SMIC MUX5", "SWR_MIC11", "TX SWR_INPUT"},
  1874. {"TX DEC6 MUX", "MSM_DMIC", "TX DMIC MUX6"},
  1875. {"TX DMIC MUX6", "DMIC0", "TX DMIC0"},
  1876. {"TX DMIC MUX6", "DMIC1", "TX DMIC1"},
  1877. {"TX DMIC MUX6", "DMIC2", "TX DMIC2"},
  1878. {"TX DMIC MUX6", "DMIC3", "TX DMIC3"},
  1879. {"TX DMIC MUX6", "DMIC4", "TX DMIC4"},
  1880. {"TX DMIC MUX6", "DMIC5", "TX DMIC5"},
  1881. {"TX DMIC MUX6", "DMIC6", "TX DMIC6"},
  1882. {"TX DMIC MUX6", "DMIC7", "TX DMIC7"},
  1883. {"TX DEC6 MUX", "SWR_MIC", "TX SMIC MUX6"},
  1884. {"TX SMIC MUX6", "SWR_MIC0", "TX SWR_INPUT"},
  1885. {"TX SMIC MUX6", "SWR_MIC1", "TX SWR_INPUT"},
  1886. {"TX SMIC MUX6", "SWR_MIC2", "TX SWR_INPUT"},
  1887. {"TX SMIC MUX6", "SWR_MIC3", "TX SWR_INPUT"},
  1888. {"TX SMIC MUX6", "SWR_MIC4", "TX SWR_INPUT"},
  1889. {"TX SMIC MUX6", "SWR_MIC5", "TX SWR_INPUT"},
  1890. {"TX SMIC MUX6", "SWR_MIC6", "TX SWR_INPUT"},
  1891. {"TX SMIC MUX6", "SWR_MIC7", "TX SWR_INPUT"},
  1892. {"TX SMIC MUX6", "SWR_MIC8", "TX SWR_INPUT"},
  1893. {"TX SMIC MUX6", "SWR_MIC9", "TX SWR_INPUT"},
  1894. {"TX SMIC MUX6", "SWR_MIC10", "TX SWR_INPUT"},
  1895. {"TX SMIC MUX6", "SWR_MIC11", "TX SWR_INPUT"},
  1896. {"TX DEC7 MUX", "MSM_DMIC", "TX DMIC MUX7"},
  1897. {"TX DMIC MUX7", "DMIC0", "TX DMIC0"},
  1898. {"TX DMIC MUX7", "DMIC1", "TX DMIC1"},
  1899. {"TX DMIC MUX7", "DMIC2", "TX DMIC2"},
  1900. {"TX DMIC MUX7", "DMIC3", "TX DMIC3"},
  1901. {"TX DMIC MUX7", "DMIC4", "TX DMIC4"},
  1902. {"TX DMIC MUX7", "DMIC5", "TX DMIC5"},
  1903. {"TX DMIC MUX7", "DMIC6", "TX DMIC6"},
  1904. {"TX DMIC MUX7", "DMIC7", "TX DMIC7"},
  1905. {"TX DEC7 MUX", "SWR_MIC", "TX SMIC MUX7"},
  1906. {"TX SMIC MUX7", "SWR_MIC0", "TX SWR_INPUT"},
  1907. {"TX SMIC MUX7", "SWR_MIC1", "TX SWR_INPUT"},
  1908. {"TX SMIC MUX7", "SWR_MIC2", "TX SWR_INPUT"},
  1909. {"TX SMIC MUX7", "SWR_MIC3", "TX SWR_INPUT"},
  1910. {"TX SMIC MUX7", "SWR_MIC4", "TX SWR_INPUT"},
  1911. {"TX SMIC MUX7", "SWR_MIC5", "TX SWR_INPUT"},
  1912. {"TX SMIC MUX7", "SWR_MIC6", "TX SWR_INPUT"},
  1913. {"TX SMIC MUX7", "SWR_MIC7", "TX SWR_INPUT"},
  1914. {"TX SMIC MUX7", "SWR_MIC8", "TX SWR_INPUT"},
  1915. {"TX SMIC MUX7", "SWR_MIC9", "TX SWR_INPUT"},
  1916. {"TX SMIC MUX7", "SWR_MIC10", "TX SWR_INPUT"},
  1917. {"TX SMIC MUX7", "SWR_MIC11", "TX SWR_INPUT"},
  1918. {"TX SMIC MUX0", NULL, "TX_SWR_CLK"},
  1919. {"TX SMIC MUX1", NULL, "TX_SWR_CLK"},
  1920. {"TX SMIC MUX2", NULL, "TX_SWR_CLK"},
  1921. {"TX SMIC MUX3", NULL, "TX_SWR_CLK"},
  1922. {"TX SMIC MUX4", NULL, "TX_SWR_CLK"},
  1923. {"TX SMIC MUX5", NULL, "TX_SWR_CLK"},
  1924. {"TX SMIC MUX6", NULL, "TX_SWR_CLK"},
  1925. {"TX SMIC MUX7", NULL, "TX_SWR_CLK"},
  1926. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1927. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1928. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1929. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1930. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1931. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1932. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1933. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1934. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1935. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1936. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1937. {"TX SWR_INPUT", NULL, "TX_SWR_PWR"},
  1938. };
  1939. static const struct snd_soc_dapm_route tx_audio_map[] = {
  1940. {"TX_AIF1 CAP", NULL, "TX_MCLK"},
  1941. {"TX_AIF2 CAP", NULL, "TX_MCLK"},
  1942. {"TX_AIF3 CAP", NULL, "TX_MCLK"},
  1943. {"TX_AIF1 CAP", NULL, "TX_AIF1_CAP Mixer"},
  1944. {"TX_AIF2 CAP", NULL, "TX_AIF2_CAP Mixer"},
  1945. {"TX_AIF3 CAP", NULL, "TX_AIF3_CAP Mixer"},
  1946. {"TX_AIF1_CAP Mixer", "DEC0", "TX DEC0 MUX"},
  1947. {"TX_AIF1_CAP Mixer", "DEC1", "TX DEC1 MUX"},
  1948. {"TX_AIF1_CAP Mixer", "DEC2", "TX DEC2 MUX"},
  1949. {"TX_AIF1_CAP Mixer", "DEC3", "TX DEC3 MUX"},
  1950. {"TX_AIF1_CAP Mixer", "DEC4", "TX DEC4 MUX"},
  1951. {"TX_AIF1_CAP Mixer", "DEC5", "TX DEC5 MUX"},
  1952. {"TX_AIF1_CAP Mixer", "DEC6", "TX DEC6 MUX"},
  1953. {"TX_AIF1_CAP Mixer", "DEC7", "TX DEC7 MUX"},
  1954. {"TX_AIF2_CAP Mixer", "DEC0", "TX DEC0 MUX"},
  1955. {"TX_AIF2_CAP Mixer", "DEC1", "TX DEC1 MUX"},
  1956. {"TX_AIF2_CAP Mixer", "DEC2", "TX DEC2 MUX"},
  1957. {"TX_AIF2_CAP Mixer", "DEC3", "TX DEC3 MUX"},
  1958. {"TX_AIF2_CAP Mixer", "DEC4", "TX DEC4 MUX"},
  1959. {"TX_AIF2_CAP Mixer", "DEC5", "TX DEC5 MUX"},
  1960. {"TX_AIF2_CAP Mixer", "DEC6", "TX DEC6 MUX"},
  1961. {"TX_AIF2_CAP Mixer", "DEC7", "TX DEC7 MUX"},
  1962. {"TX_AIF3_CAP Mixer", "DEC0", "TX DEC0 MUX"},
  1963. {"TX_AIF3_CAP Mixer", "DEC1", "TX DEC1 MUX"},
  1964. {"TX_AIF3_CAP Mixer", "DEC2", "TX DEC2 MUX"},
  1965. {"TX_AIF3_CAP Mixer", "DEC3", "TX DEC3 MUX"},
  1966. {"TX_AIF3_CAP Mixer", "DEC4", "TX DEC4 MUX"},
  1967. {"TX_AIF3_CAP Mixer", "DEC5", "TX DEC5 MUX"},
  1968. {"TX_AIF3_CAP Mixer", "DEC6", "TX DEC6 MUX"},
  1969. {"TX_AIF3_CAP Mixer", "DEC7", "TX DEC7 MUX"},
  1970. {"TX DEC0 MUX", NULL, "TX_MCLK"},
  1971. {"TX DEC1 MUX", NULL, "TX_MCLK"},
  1972. {"TX DEC2 MUX", NULL, "TX_MCLK"},
  1973. {"TX DEC3 MUX", NULL, "TX_MCLK"},
  1974. {"TX DEC4 MUX", NULL, "TX_MCLK"},
  1975. {"TX DEC5 MUX", NULL, "TX_MCLK"},
  1976. {"TX DEC6 MUX", NULL, "TX_MCLK"},
  1977. {"TX DEC7 MUX", NULL, "TX_MCLK"},
  1978. {"TX DEC0 MUX", "MSM_DMIC", "TX DMIC MUX0"},
  1979. {"TX DMIC MUX0", "DMIC0", "TX DMIC0"},
  1980. {"TX DMIC MUX0", "DMIC1", "TX DMIC1"},
  1981. {"TX DMIC MUX0", "DMIC2", "TX DMIC2"},
  1982. {"TX DMIC MUX0", "DMIC3", "TX DMIC3"},
  1983. {"TX DMIC MUX0", "DMIC4", "TX DMIC4"},
  1984. {"TX DMIC MUX0", "DMIC5", "TX DMIC5"},
  1985. {"TX DMIC MUX0", "DMIC6", "TX DMIC6"},
  1986. {"TX DMIC MUX0", "DMIC7", "TX DMIC7"},
  1987. {"TX DEC0 MUX", "SWR_MIC", "TX SMIC MUX0"},
  1988. {"TX SMIC MUX0", NULL, "TX_SWR_CLK"},
  1989. {"TX SMIC MUX0", "ADC0", "TX SWR_ADC0"},
  1990. {"TX SMIC MUX0", "ADC1", "TX SWR_ADC1"},
  1991. {"TX SMIC MUX0", "ADC2", "TX SWR_ADC2"},
  1992. {"TX SMIC MUX0", "ADC3", "TX SWR_ADC3"},
  1993. {"TX SMIC MUX0", "SWR_DMIC0", "TX SWR_DMIC0"},
  1994. {"TX SMIC MUX0", "SWR_DMIC1", "TX SWR_DMIC1"},
  1995. {"TX SMIC MUX0", "SWR_DMIC2", "TX SWR_DMIC2"},
  1996. {"TX SMIC MUX0", "SWR_DMIC3", "TX SWR_DMIC3"},
  1997. {"TX SMIC MUX0", "SWR_DMIC4", "TX SWR_DMIC4"},
  1998. {"TX SMIC MUX0", "SWR_DMIC5", "TX SWR_DMIC5"},
  1999. {"TX SMIC MUX0", "SWR_DMIC6", "TX SWR_DMIC6"},
  2000. {"TX SMIC MUX0", "SWR_DMIC7", "TX SWR_DMIC7"},
  2001. {"TX DEC1 MUX", "MSM_DMIC", "TX DMIC MUX1"},
  2002. {"TX DMIC MUX1", "DMIC0", "TX DMIC0"},
  2003. {"TX DMIC MUX1", "DMIC1", "TX DMIC1"},
  2004. {"TX DMIC MUX1", "DMIC2", "TX DMIC2"},
  2005. {"TX DMIC MUX1", "DMIC3", "TX DMIC3"},
  2006. {"TX DMIC MUX1", "DMIC4", "TX DMIC4"},
  2007. {"TX DMIC MUX1", "DMIC5", "TX DMIC5"},
  2008. {"TX DMIC MUX1", "DMIC6", "TX DMIC6"},
  2009. {"TX DMIC MUX1", "DMIC7", "TX DMIC7"},
  2010. {"TX DEC1 MUX", "SWR_MIC", "TX SMIC MUX1"},
  2011. {"TX SMIC MUX1", NULL, "TX_SWR_CLK"},
  2012. {"TX SMIC MUX1", "ADC0", "TX SWR_ADC0"},
  2013. {"TX SMIC MUX1", "ADC1", "TX SWR_ADC1"},
  2014. {"TX SMIC MUX1", "ADC2", "TX SWR_ADC2"},
  2015. {"TX SMIC MUX1", "ADC3", "TX SWR_ADC3"},
  2016. {"TX SMIC MUX1", "SWR_DMIC0", "TX SWR_DMIC0"},
  2017. {"TX SMIC MUX1", "SWR_DMIC1", "TX SWR_DMIC1"},
  2018. {"TX SMIC MUX1", "SWR_DMIC2", "TX SWR_DMIC2"},
  2019. {"TX SMIC MUX1", "SWR_DMIC3", "TX SWR_DMIC3"},
  2020. {"TX SMIC MUX1", "SWR_DMIC4", "TX SWR_DMIC4"},
  2021. {"TX SMIC MUX1", "SWR_DMIC5", "TX SWR_DMIC5"},
  2022. {"TX SMIC MUX1", "SWR_DMIC6", "TX SWR_DMIC6"},
  2023. {"TX SMIC MUX1", "SWR_DMIC7", "TX SWR_DMIC7"},
  2024. {"TX DEC2 MUX", "MSM_DMIC", "TX DMIC MUX2"},
  2025. {"TX DMIC MUX2", "DMIC0", "TX DMIC0"},
  2026. {"TX DMIC MUX2", "DMIC1", "TX DMIC1"},
  2027. {"TX DMIC MUX2", "DMIC2", "TX DMIC2"},
  2028. {"TX DMIC MUX2", "DMIC3", "TX DMIC3"},
  2029. {"TX DMIC MUX2", "DMIC4", "TX DMIC4"},
  2030. {"TX DMIC MUX2", "DMIC5", "TX DMIC5"},
  2031. {"TX DMIC MUX2", "DMIC6", "TX DMIC6"},
  2032. {"TX DMIC MUX2", "DMIC7", "TX DMIC7"},
  2033. {"TX DEC2 MUX", "SWR_MIC", "TX SMIC MUX2"},
  2034. {"TX SMIC MUX2", NULL, "TX_SWR_CLK"},
  2035. {"TX SMIC MUX2", "ADC0", "TX SWR_ADC0"},
  2036. {"TX SMIC MUX2", "ADC1", "TX SWR_ADC1"},
  2037. {"TX SMIC MUX2", "ADC2", "TX SWR_ADC2"},
  2038. {"TX SMIC MUX2", "ADC3", "TX SWR_ADC3"},
  2039. {"TX SMIC MUX2", "SWR_DMIC0", "TX SWR_DMIC0"},
  2040. {"TX SMIC MUX2", "SWR_DMIC1", "TX SWR_DMIC1"},
  2041. {"TX SMIC MUX2", "SWR_DMIC2", "TX SWR_DMIC2"},
  2042. {"TX SMIC MUX2", "SWR_DMIC3", "TX SWR_DMIC3"},
  2043. {"TX SMIC MUX2", "SWR_DMIC4", "TX SWR_DMIC4"},
  2044. {"TX SMIC MUX2", "SWR_DMIC5", "TX SWR_DMIC5"},
  2045. {"TX SMIC MUX2", "SWR_DMIC6", "TX SWR_DMIC6"},
  2046. {"TX SMIC MUX2", "SWR_DMIC7", "TX SWR_DMIC7"},
  2047. {"TX DEC3 MUX", "MSM_DMIC", "TX DMIC MUX3"},
  2048. {"TX DMIC MUX3", "DMIC0", "TX DMIC0"},
  2049. {"TX DMIC MUX3", "DMIC1", "TX DMIC1"},
  2050. {"TX DMIC MUX3", "DMIC2", "TX DMIC2"},
  2051. {"TX DMIC MUX3", "DMIC3", "TX DMIC3"},
  2052. {"TX DMIC MUX3", "DMIC4", "TX DMIC4"},
  2053. {"TX DMIC MUX3", "DMIC5", "TX DMIC5"},
  2054. {"TX DMIC MUX3", "DMIC6", "TX DMIC6"},
  2055. {"TX DMIC MUX3", "DMIC7", "TX DMIC7"},
  2056. {"TX DEC3 MUX", "SWR_MIC", "TX SMIC MUX3"},
  2057. {"TX SMIC MUX3", NULL, "TX_SWR_CLK"},
  2058. {"TX SMIC MUX3", "ADC0", "TX SWR_ADC0"},
  2059. {"TX SMIC MUX3", "ADC1", "TX SWR_ADC1"},
  2060. {"TX SMIC MUX3", "ADC2", "TX SWR_ADC2"},
  2061. {"TX SMIC MUX3", "ADC3", "TX SWR_ADC3"},
  2062. {"TX SMIC MUX3", "SWR_DMIC0", "TX SWR_DMIC0"},
  2063. {"TX SMIC MUX3", "SWR_DMIC1", "TX SWR_DMIC1"},
  2064. {"TX SMIC MUX3", "SWR_DMIC2", "TX SWR_DMIC2"},
  2065. {"TX SMIC MUX3", "SWR_DMIC3", "TX SWR_DMIC3"},
  2066. {"TX SMIC MUX3", "SWR_DMIC4", "TX SWR_DMIC4"},
  2067. {"TX SMIC MUX3", "SWR_DMIC5", "TX SWR_DMIC5"},
  2068. {"TX SMIC MUX3", "SWR_DMIC6", "TX SWR_DMIC6"},
  2069. {"TX SMIC MUX3", "SWR_DMIC7", "TX SWR_DMIC7"},
  2070. {"TX DEC4 MUX", "MSM_DMIC", "TX DMIC MUX4"},
  2071. {"TX DMIC MUX4", "DMIC0", "TX DMIC0"},
  2072. {"TX DMIC MUX4", "DMIC1", "TX DMIC1"},
  2073. {"TX DMIC MUX4", "DMIC2", "TX DMIC2"},
  2074. {"TX DMIC MUX4", "DMIC3", "TX DMIC3"},
  2075. {"TX DMIC MUX4", "DMIC4", "TX DMIC4"},
  2076. {"TX DMIC MUX4", "DMIC5", "TX DMIC5"},
  2077. {"TX DMIC MUX4", "DMIC6", "TX DMIC6"},
  2078. {"TX DMIC MUX4", "DMIC7", "TX DMIC7"},
  2079. {"TX DEC4 MUX", "SWR_MIC", "TX SMIC MUX4"},
  2080. {"TX SMIC MUX4", NULL, "TX_SWR_CLK"},
  2081. {"TX SMIC MUX4", "ADC0", "TX SWR_ADC0"},
  2082. {"TX SMIC MUX4", "ADC1", "TX SWR_ADC1"},
  2083. {"TX SMIC MUX4", "ADC2", "TX SWR_ADC2"},
  2084. {"TX SMIC MUX4", "ADC3", "TX SWR_ADC3"},
  2085. {"TX SMIC MUX4", "SWR_DMIC0", "TX SWR_DMIC0"},
  2086. {"TX SMIC MUX4", "SWR_DMIC1", "TX SWR_DMIC1"},
  2087. {"TX SMIC MUX4", "SWR_DMIC2", "TX SWR_DMIC2"},
  2088. {"TX SMIC MUX4", "SWR_DMIC3", "TX SWR_DMIC3"},
  2089. {"TX SMIC MUX4", "SWR_DMIC4", "TX SWR_DMIC4"},
  2090. {"TX SMIC MUX4", "SWR_DMIC5", "TX SWR_DMIC5"},
  2091. {"TX SMIC MUX4", "SWR_DMIC6", "TX SWR_DMIC6"},
  2092. {"TX SMIC MUX4", "SWR_DMIC7", "TX SWR_DMIC7"},
  2093. {"TX DEC5 MUX", "MSM_DMIC", "TX DMIC MUX5"},
  2094. {"TX DMIC MUX5", "DMIC0", "TX DMIC0"},
  2095. {"TX DMIC MUX5", "DMIC1", "TX DMIC1"},
  2096. {"TX DMIC MUX5", "DMIC2", "TX DMIC2"},
  2097. {"TX DMIC MUX5", "DMIC3", "TX DMIC3"},
  2098. {"TX DMIC MUX5", "DMIC4", "TX DMIC4"},
  2099. {"TX DMIC MUX5", "DMIC5", "TX DMIC5"},
  2100. {"TX DMIC MUX5", "DMIC6", "TX DMIC6"},
  2101. {"TX DMIC MUX5", "DMIC7", "TX DMIC7"},
  2102. {"TX DEC5 MUX", "SWR_MIC", "TX SMIC MUX5"},
  2103. {"TX SMIC MUX5", NULL, "TX_SWR_CLK"},
  2104. {"TX SMIC MUX5", "ADC0", "TX SWR_ADC0"},
  2105. {"TX SMIC MUX5", "ADC1", "TX SWR_ADC1"},
  2106. {"TX SMIC MUX5", "ADC2", "TX SWR_ADC2"},
  2107. {"TX SMIC MUX5", "ADC3", "TX SWR_ADC3"},
  2108. {"TX SMIC MUX5", "SWR_DMIC0", "TX SWR_DMIC0"},
  2109. {"TX SMIC MUX5", "SWR_DMIC1", "TX SWR_DMIC1"},
  2110. {"TX SMIC MUX5", "SWR_DMIC2", "TX SWR_DMIC2"},
  2111. {"TX SMIC MUX5", "SWR_DMIC3", "TX SWR_DMIC3"},
  2112. {"TX SMIC MUX5", "SWR_DMIC4", "TX SWR_DMIC4"},
  2113. {"TX SMIC MUX5", "SWR_DMIC5", "TX SWR_DMIC5"},
  2114. {"TX SMIC MUX5", "SWR_DMIC6", "TX SWR_DMIC6"},
  2115. {"TX SMIC MUX5", "SWR_DMIC7", "TX SWR_DMIC7"},
  2116. {"TX DEC6 MUX", "MSM_DMIC", "TX DMIC MUX6"},
  2117. {"TX DMIC MUX6", "DMIC0", "TX DMIC0"},
  2118. {"TX DMIC MUX6", "DMIC1", "TX DMIC1"},
  2119. {"TX DMIC MUX6", "DMIC2", "TX DMIC2"},
  2120. {"TX DMIC MUX6", "DMIC3", "TX DMIC3"},
  2121. {"TX DMIC MUX6", "DMIC4", "TX DMIC4"},
  2122. {"TX DMIC MUX6", "DMIC5", "TX DMIC5"},
  2123. {"TX DMIC MUX6", "DMIC6", "TX DMIC6"},
  2124. {"TX DMIC MUX6", "DMIC7", "TX DMIC7"},
  2125. {"TX DEC6 MUX", "SWR_MIC", "TX SMIC MUX6"},
  2126. {"TX SMIC MUX6", NULL, "TX_SWR_CLK"},
  2127. {"TX SMIC MUX6", "ADC0", "TX SWR_ADC0"},
  2128. {"TX SMIC MUX6", "ADC1", "TX SWR_ADC1"},
  2129. {"TX SMIC MUX6", "ADC2", "TX SWR_ADC2"},
  2130. {"TX SMIC MUX6", "ADC3", "TX SWR_ADC3"},
  2131. {"TX SMIC MUX6", "SWR_DMIC0", "TX SWR_DMIC0"},
  2132. {"TX SMIC MUX6", "SWR_DMIC1", "TX SWR_DMIC1"},
  2133. {"TX SMIC MUX6", "SWR_DMIC2", "TX SWR_DMIC2"},
  2134. {"TX SMIC MUX6", "SWR_DMIC3", "TX SWR_DMIC3"},
  2135. {"TX SMIC MUX6", "SWR_DMIC4", "TX SWR_DMIC4"},
  2136. {"TX SMIC MUX6", "SWR_DMIC5", "TX SWR_DMIC5"},
  2137. {"TX SMIC MUX6", "SWR_DMIC6", "TX SWR_DMIC6"},
  2138. {"TX SMIC MUX6", "SWR_DMIC7", "TX SWR_DMIC7"},
  2139. {"TX DEC7 MUX", "MSM_DMIC", "TX DMIC MUX7"},
  2140. {"TX DMIC MUX7", "DMIC0", "TX DMIC0"},
  2141. {"TX DMIC MUX7", "DMIC1", "TX DMIC1"},
  2142. {"TX DMIC MUX7", "DMIC2", "TX DMIC2"},
  2143. {"TX DMIC MUX7", "DMIC3", "TX DMIC3"},
  2144. {"TX DMIC MUX7", "DMIC4", "TX DMIC4"},
  2145. {"TX DMIC MUX7", "DMIC5", "TX DMIC5"},
  2146. {"TX DMIC MUX7", "DMIC6", "TX DMIC6"},
  2147. {"TX DMIC MUX7", "DMIC7", "TX DMIC7"},
  2148. {"TX DEC7 MUX", "SWR_MIC", "TX SMIC MUX7"},
  2149. {"TX SMIC MUX7", NULL, "TX_SWR_CLK"},
  2150. {"TX SMIC MUX7", "ADC0", "TX SWR_ADC0"},
  2151. {"TX SMIC MUX7", "ADC1", "TX SWR_ADC1"},
  2152. {"TX SMIC MUX7", "ADC2", "TX SWR_ADC2"},
  2153. {"TX SMIC MUX7", "ADC3", "TX SWR_ADC3"},
  2154. {"TX SMIC MUX7", "SWR_DMIC0", "TX SWR_DMIC0"},
  2155. {"TX SMIC MUX7", "SWR_DMIC1", "TX SWR_DMIC1"},
  2156. {"TX SMIC MUX7", "SWR_DMIC2", "TX SWR_DMIC2"},
  2157. {"TX SMIC MUX7", "SWR_DMIC3", "TX SWR_DMIC3"},
  2158. {"TX SMIC MUX7", "SWR_DMIC4", "TX SWR_DMIC4"},
  2159. {"TX SMIC MUX7", "SWR_DMIC5", "TX SWR_DMIC5"},
  2160. {"TX SMIC MUX7", "SWR_DMIC6", "TX SWR_DMIC6"},
  2161. {"TX SMIC MUX7", "SWR_DMIC7", "TX SWR_DMIC7"},
  2162. };
  2163. static const struct snd_kcontrol_new tx_macro_snd_controls_common[] = {
  2164. SOC_SINGLE_S8_TLV("TX_DEC0 Volume",
  2165. BOLERO_CDC_TX0_TX_VOL_CTL,
  2166. -84, 40, digital_gain),
  2167. SOC_SINGLE_S8_TLV("TX_DEC1 Volume",
  2168. BOLERO_CDC_TX1_TX_VOL_CTL,
  2169. -84, 40, digital_gain),
  2170. SOC_SINGLE_S8_TLV("TX_DEC2 Volume",
  2171. BOLERO_CDC_TX2_TX_VOL_CTL,
  2172. -84, 40, digital_gain),
  2173. SOC_SINGLE_S8_TLV("TX_DEC3 Volume",
  2174. BOLERO_CDC_TX3_TX_VOL_CTL,
  2175. -84, 40, digital_gain),
  2176. SOC_SINGLE_EXT("TX LPI Enable", 0, 0, 1, 0,
  2177. tx_macro_lpi_get, tx_macro_lpi_put),
  2178. SOC_ENUM_EXT("DEC0 MODE", dec_mode_mux_enum,
  2179. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2180. SOC_ENUM_EXT("DEC1 MODE", dec_mode_mux_enum,
  2181. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2182. SOC_ENUM_EXT("DEC2 MODE", dec_mode_mux_enum,
  2183. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2184. SOC_ENUM_EXT("DEC3 MODE", dec_mode_mux_enum,
  2185. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2186. SOC_SINGLE_EXT("DEC0_BCS Switch", SND_SOC_NOPM, 0, 1, 0,
  2187. tx_macro_get_bcs, tx_macro_set_bcs),
  2188. SOC_ENUM_EXT("BCS Channel", bcs_ch_enum,
  2189. tx_macro_bcs_ch_get, tx_macro_bcs_ch_put),
  2190. SOC_ENUM_EXT("BCS CH_SEL", bcs_ch_sel_mux_enum,
  2191. tx_macro_get_bcs_ch_sel, tx_macro_put_bcs_ch_sel),
  2192. };
  2193. static const struct snd_kcontrol_new tx_macro_snd_controls_v3[] = {
  2194. SOC_SINGLE_S8_TLV("TX_DEC4 Volume",
  2195. BOLERO_CDC_TX4_TX_VOL_CTL,
  2196. -84, 40, digital_gain),
  2197. SOC_SINGLE_S8_TLV("TX_DEC5 Volume",
  2198. BOLERO_CDC_TX5_TX_VOL_CTL,
  2199. -84, 40, digital_gain),
  2200. SOC_SINGLE_S8_TLV("TX_DEC6 Volume",
  2201. BOLERO_CDC_TX6_TX_VOL_CTL,
  2202. -84, 40, digital_gain),
  2203. SOC_SINGLE_S8_TLV("TX_DEC7 Volume",
  2204. BOLERO_CDC_TX7_TX_VOL_CTL,
  2205. -84, 40, digital_gain),
  2206. SOC_ENUM_EXT("DEC4 MODE", dec_mode_mux_enum,
  2207. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2208. SOC_ENUM_EXT("DEC5 MODE", dec_mode_mux_enum,
  2209. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2210. SOC_ENUM_EXT("DEC6 MODE", dec_mode_mux_enum,
  2211. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2212. SOC_ENUM_EXT("DEC7 MODE", dec_mode_mux_enum,
  2213. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2214. };
  2215. static const struct snd_kcontrol_new tx_macro_snd_controls[] = {
  2216. SOC_SINGLE_S8_TLV("TX_DEC0 Volume",
  2217. BOLERO_CDC_TX0_TX_VOL_CTL,
  2218. -84, 40, digital_gain),
  2219. SOC_SINGLE_S8_TLV("TX_DEC1 Volume",
  2220. BOLERO_CDC_TX1_TX_VOL_CTL,
  2221. -84, 40, digital_gain),
  2222. SOC_SINGLE_S8_TLV("TX_DEC2 Volume",
  2223. BOLERO_CDC_TX2_TX_VOL_CTL,
  2224. -84, 40, digital_gain),
  2225. SOC_SINGLE_S8_TLV("TX_DEC3 Volume",
  2226. BOLERO_CDC_TX3_TX_VOL_CTL,
  2227. -84, 40, digital_gain),
  2228. SOC_SINGLE_S8_TLV("TX_DEC4 Volume",
  2229. BOLERO_CDC_TX4_TX_VOL_CTL,
  2230. -84, 40, digital_gain),
  2231. SOC_SINGLE_S8_TLV("TX_DEC5 Volume",
  2232. BOLERO_CDC_TX5_TX_VOL_CTL,
  2233. -84, 40, digital_gain),
  2234. SOC_SINGLE_S8_TLV("TX_DEC6 Volume",
  2235. BOLERO_CDC_TX6_TX_VOL_CTL,
  2236. -84, 40, digital_gain),
  2237. SOC_SINGLE_S8_TLV("TX_DEC7 Volume",
  2238. BOLERO_CDC_TX7_TX_VOL_CTL,
  2239. -84, 40, digital_gain),
  2240. SOC_ENUM_EXT("DEC0 MODE", dec_mode_mux_enum,
  2241. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2242. SOC_ENUM_EXT("DEC1 MODE", dec_mode_mux_enum,
  2243. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2244. SOC_ENUM_EXT("DEC2 MODE", dec_mode_mux_enum,
  2245. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2246. SOC_ENUM_EXT("DEC3 MODE", dec_mode_mux_enum,
  2247. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2248. SOC_ENUM_EXT("DEC4 MODE", dec_mode_mux_enum,
  2249. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2250. SOC_ENUM_EXT("DEC5 MODE", dec_mode_mux_enum,
  2251. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2252. SOC_ENUM_EXT("DEC6 MODE", dec_mode_mux_enum,
  2253. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2254. SOC_ENUM_EXT("DEC7 MODE", dec_mode_mux_enum,
  2255. tx_macro_dec_mode_get, tx_macro_dec_mode_put),
  2256. SOC_ENUM("TX0 HPF cut off", cf_dec0_enum),
  2257. SOC_ENUM("TX1 HPF cut off", cf_dec1_enum),
  2258. SOC_ENUM("TX2 HPF cut off", cf_dec2_enum),
  2259. SOC_ENUM("TX3 HPF cut off", cf_dec3_enum),
  2260. SOC_ENUM("TX4 HPF cut off", cf_dec4_enum),
  2261. SOC_ENUM("TX5 HPF cut off", cf_dec5_enum),
  2262. SOC_ENUM("TX6 HPF cut off", cf_dec6_enum),
  2263. SOC_ENUM("TX7 HPF cut off", cf_dec7_enum),
  2264. SOC_SINGLE_EXT("DEC0_BCS Switch", SND_SOC_NOPM, 0, 1, 0,
  2265. tx_macro_get_bcs, tx_macro_set_bcs),
  2266. };
  2267. static int tx_macro_register_event_listener(struct snd_soc_component *component,
  2268. bool enable)
  2269. {
  2270. struct device *tx_dev = NULL;
  2271. struct tx_macro_priv *tx_priv = NULL;
  2272. int ret = 0;
  2273. if (!component)
  2274. return -EINVAL;
  2275. tx_dev = bolero_get_device_ptr(component->dev, TX_MACRO);
  2276. if (!tx_dev) {
  2277. dev_err(component->dev,
  2278. "%s: null device for macro!\n", __func__);
  2279. return -EINVAL;
  2280. }
  2281. tx_priv = dev_get_drvdata(tx_dev);
  2282. if (!tx_priv) {
  2283. dev_err(component->dev,
  2284. "%s: priv is null for macro!\n", __func__);
  2285. return -EINVAL;
  2286. }
  2287. if (tx_priv->swr_ctrl_data &&
  2288. (!tx_priv->tx_swr_clk_cnt || !tx_priv->va_swr_clk_cnt)) {
  2289. if (enable) {
  2290. ret = swrm_wcd_notify(
  2291. tx_priv->swr_ctrl_data[0].tx_swr_pdev,
  2292. SWR_REGISTER_WAKEUP, NULL);
  2293. msm_cdc_pinctrl_set_wakeup_capable(
  2294. tx_priv->tx_swr_gpio_p, false);
  2295. } else {
  2296. msm_cdc_pinctrl_set_wakeup_capable(
  2297. tx_priv->tx_swr_gpio_p, true);
  2298. ret = swrm_wcd_notify(
  2299. tx_priv->swr_ctrl_data[0].tx_swr_pdev,
  2300. SWR_DEREGISTER_WAKEUP, NULL);
  2301. }
  2302. }
  2303. return ret;
  2304. }
  2305. static int tx_macro_tx_va_mclk_enable(struct tx_macro_priv *tx_priv,
  2306. struct regmap *regmap, int clk_type,
  2307. bool enable)
  2308. {
  2309. int ret = 0, clk_tx_ret = 0;
  2310. trace_printk("%s: clock type %s, enable: %s tx_mclk_users: %d\n",
  2311. __func__, (clk_type ? "VA_MCLK" : "TX_MCLK"),
  2312. (enable ? "enable" : "disable"), tx_priv->tx_mclk_users);
  2313. dev_dbg(tx_priv->dev,
  2314. "%s: clock type %s, enable: %s tx_mclk_users: %d\n",
  2315. __func__, (clk_type ? "VA_MCLK" : "TX_MCLK"),
  2316. (enable ? "enable" : "disable"), tx_priv->tx_mclk_users);
  2317. if (enable) {
  2318. if (tx_priv->swr_clk_users == 0) {
  2319. trace_printk("%s: tx swr clk users 0\n", __func__);
  2320. ret = msm_cdc_pinctrl_select_active_state(
  2321. tx_priv->tx_swr_gpio_p);
  2322. if (ret < 0) {
  2323. dev_err_ratelimited(tx_priv->dev,
  2324. "%s: tx swr pinctrl enable failed\n",
  2325. __func__);
  2326. goto exit;
  2327. }
  2328. }
  2329. clk_tx_ret = bolero_clk_rsc_request_clock(tx_priv->dev,
  2330. TX_CORE_CLK,
  2331. TX_CORE_CLK,
  2332. true);
  2333. if (clk_type == TX_MCLK) {
  2334. trace_printk("%s: requesting TX_MCLK\n", __func__);
  2335. ret = tx_macro_mclk_enable(tx_priv, 1);
  2336. if (ret < 0) {
  2337. if (tx_priv->swr_clk_users == 0)
  2338. msm_cdc_pinctrl_select_sleep_state(
  2339. tx_priv->tx_swr_gpio_p);
  2340. dev_err_ratelimited(tx_priv->dev,
  2341. "%s: request clock enable failed\n",
  2342. __func__);
  2343. goto done;
  2344. }
  2345. }
  2346. if (clk_type == VA_MCLK) {
  2347. trace_printk("%s: requesting VA_MCLK\n", __func__);
  2348. ret = bolero_clk_rsc_request_clock(tx_priv->dev,
  2349. TX_CORE_CLK,
  2350. VA_CORE_CLK,
  2351. true);
  2352. if (ret < 0) {
  2353. if (tx_priv->swr_clk_users == 0)
  2354. msm_cdc_pinctrl_select_sleep_state(
  2355. tx_priv->tx_swr_gpio_p);
  2356. dev_err_ratelimited(tx_priv->dev,
  2357. "%s: swr request clk failed\n",
  2358. __func__);
  2359. goto done;
  2360. }
  2361. bolero_clk_rsc_fs_gen_request(tx_priv->dev,
  2362. true);
  2363. if (tx_priv->tx_mclk_users == 0) {
  2364. regmap_update_bits(regmap,
  2365. BOLERO_CDC_TX_TOP_CSR_FREQ_MCLK,
  2366. 0x01, 0x01);
  2367. regmap_update_bits(regmap,
  2368. BOLERO_CDC_TX_CLK_RST_CTRL_MCLK_CONTROL,
  2369. 0x01, 0x01);
  2370. regmap_update_bits(regmap,
  2371. BOLERO_CDC_TX_CLK_RST_CTRL_FS_CNT_CONTROL,
  2372. 0x01, 0x01);
  2373. }
  2374. tx_priv->tx_mclk_users++;
  2375. }
  2376. if (tx_priv->swr_clk_users == 0) {
  2377. dev_dbg(tx_priv->dev, "%s: reset_swr: %d\n",
  2378. __func__, tx_priv->reset_swr);
  2379. trace_printk("%s: reset_swr: %d\n",
  2380. __func__, tx_priv->reset_swr);
  2381. if (tx_priv->reset_swr)
  2382. regmap_update_bits(regmap,
  2383. BOLERO_CDC_TX_CLK_RST_CTRL_SWR_CONTROL,
  2384. 0x02, 0x02);
  2385. regmap_update_bits(regmap,
  2386. BOLERO_CDC_TX_CLK_RST_CTRL_SWR_CONTROL,
  2387. 0x01, 0x01);
  2388. if (tx_priv->reset_swr)
  2389. regmap_update_bits(regmap,
  2390. BOLERO_CDC_TX_CLK_RST_CTRL_SWR_CONTROL,
  2391. 0x02, 0x00);
  2392. tx_priv->reset_swr = false;
  2393. }
  2394. if (!clk_tx_ret)
  2395. ret = bolero_clk_rsc_request_clock(tx_priv->dev,
  2396. TX_CORE_CLK,
  2397. TX_CORE_CLK,
  2398. false);
  2399. tx_priv->swr_clk_users++;
  2400. } else {
  2401. if (tx_priv->swr_clk_users <= 0) {
  2402. dev_err_ratelimited(tx_priv->dev,
  2403. "tx swrm clock users already 0\n");
  2404. tx_priv->swr_clk_users = 0;
  2405. return 0;
  2406. }
  2407. clk_tx_ret = bolero_clk_rsc_request_clock(tx_priv->dev,
  2408. TX_CORE_CLK,
  2409. TX_CORE_CLK,
  2410. true);
  2411. tx_priv->swr_clk_users--;
  2412. if (tx_priv->swr_clk_users == 0)
  2413. regmap_update_bits(regmap,
  2414. BOLERO_CDC_TX_CLK_RST_CTRL_SWR_CONTROL,
  2415. 0x01, 0x00);
  2416. if (clk_type == TX_MCLK)
  2417. tx_macro_mclk_enable(tx_priv, 0);
  2418. if (clk_type == VA_MCLK) {
  2419. if (tx_priv->tx_mclk_users <= 0) {
  2420. dev_err(tx_priv->dev, "%s: clock already disabled\n",
  2421. __func__);
  2422. tx_priv->tx_mclk_users = 0;
  2423. goto tx_clk;
  2424. }
  2425. tx_priv->tx_mclk_users--;
  2426. if (tx_priv->tx_mclk_users == 0) {
  2427. regmap_update_bits(regmap,
  2428. BOLERO_CDC_TX_CLK_RST_CTRL_FS_CNT_CONTROL,
  2429. 0x01, 0x00);
  2430. regmap_update_bits(regmap,
  2431. BOLERO_CDC_TX_CLK_RST_CTRL_MCLK_CONTROL,
  2432. 0x01, 0x00);
  2433. }
  2434. bolero_clk_rsc_fs_gen_request(tx_priv->dev,
  2435. false);
  2436. ret = bolero_clk_rsc_request_clock(tx_priv->dev,
  2437. TX_CORE_CLK,
  2438. VA_CORE_CLK,
  2439. false);
  2440. if (ret < 0) {
  2441. dev_err_ratelimited(tx_priv->dev,
  2442. "%s: swr request clk failed\n",
  2443. __func__);
  2444. goto done;
  2445. }
  2446. }
  2447. tx_clk:
  2448. if (!clk_tx_ret)
  2449. ret = bolero_clk_rsc_request_clock(tx_priv->dev,
  2450. TX_CORE_CLK,
  2451. TX_CORE_CLK,
  2452. false);
  2453. if (tx_priv->swr_clk_users == 0) {
  2454. ret = msm_cdc_pinctrl_select_sleep_state(
  2455. tx_priv->tx_swr_gpio_p);
  2456. if (ret < 0) {
  2457. dev_err_ratelimited(tx_priv->dev,
  2458. "%s: tx swr pinctrl disable failed\n",
  2459. __func__);
  2460. goto exit;
  2461. }
  2462. }
  2463. }
  2464. return 0;
  2465. done:
  2466. if (!clk_tx_ret)
  2467. bolero_clk_rsc_request_clock(tx_priv->dev,
  2468. TX_CORE_CLK,
  2469. TX_CORE_CLK,
  2470. false);
  2471. exit:
  2472. trace_printk("%s: exit\n", __func__);
  2473. return ret;
  2474. }
  2475. static int tx_macro_clk_div_get(struct snd_soc_component *component)
  2476. {
  2477. struct device *tx_dev = NULL;
  2478. struct tx_macro_priv *tx_priv = NULL;
  2479. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  2480. return -EINVAL;
  2481. return tx_priv->dmic_clk_div;
  2482. }
  2483. static int tx_macro_core_vote(void *handle, bool enable)
  2484. {
  2485. struct tx_macro_priv *tx_priv = (struct tx_macro_priv *) handle;
  2486. if (tx_priv == NULL) {
  2487. pr_err("%s: tx priv data is NULL\n", __func__);
  2488. return -EINVAL;
  2489. }
  2490. if (enable) {
  2491. pm_runtime_get_sync(tx_priv->dev);
  2492. pm_runtime_put_autosuspend(tx_priv->dev);
  2493. pm_runtime_mark_last_busy(tx_priv->dev);
  2494. }
  2495. if (bolero_check_core_votes(tx_priv->dev))
  2496. return 0;
  2497. else
  2498. return -EINVAL;
  2499. }
  2500. static int tx_macro_swrm_clock(void *handle, bool enable)
  2501. {
  2502. struct tx_macro_priv *tx_priv = (struct tx_macro_priv *) handle;
  2503. struct regmap *regmap = dev_get_regmap(tx_priv->dev->parent, NULL);
  2504. int ret = 0;
  2505. if (regmap == NULL) {
  2506. dev_err(tx_priv->dev, "%s: regmap is NULL\n", __func__);
  2507. return -EINVAL;
  2508. }
  2509. mutex_lock(&tx_priv->swr_clk_lock);
  2510. trace_printk("%s: swrm clock %s tx_swr_clk_cnt: %d va_swr_clk_cnt: %d\n",
  2511. __func__,
  2512. (enable ? "enable" : "disable"),
  2513. tx_priv->tx_swr_clk_cnt, tx_priv->va_swr_clk_cnt);
  2514. dev_dbg(tx_priv->dev,
  2515. "%s: swrm clock %s tx_swr_clk_cnt: %d va_swr_clk_cnt: %d\n",
  2516. __func__, (enable ? "enable" : "disable"),
  2517. tx_priv->tx_swr_clk_cnt, tx_priv->va_swr_clk_cnt);
  2518. if (enable) {
  2519. pm_runtime_get_sync(tx_priv->dev);
  2520. if (tx_priv->va_swr_clk_cnt && !tx_priv->tx_swr_clk_cnt) {
  2521. ret = tx_macro_tx_va_mclk_enable(tx_priv, regmap,
  2522. VA_MCLK, enable);
  2523. if (ret) {
  2524. pm_runtime_mark_last_busy(tx_priv->dev);
  2525. pm_runtime_put_autosuspend(tx_priv->dev);
  2526. goto done;
  2527. }
  2528. tx_priv->va_clk_status++;
  2529. } else {
  2530. ret = tx_macro_tx_va_mclk_enable(tx_priv, regmap,
  2531. TX_MCLK, enable);
  2532. if (ret) {
  2533. pm_runtime_mark_last_busy(tx_priv->dev);
  2534. pm_runtime_put_autosuspend(tx_priv->dev);
  2535. goto done;
  2536. }
  2537. tx_priv->tx_clk_status++;
  2538. }
  2539. pm_runtime_mark_last_busy(tx_priv->dev);
  2540. pm_runtime_put_autosuspend(tx_priv->dev);
  2541. } else {
  2542. if (tx_priv->va_clk_status && !tx_priv->tx_clk_status) {
  2543. ret = tx_macro_tx_va_mclk_enable(tx_priv, regmap,
  2544. VA_MCLK, enable);
  2545. if (ret)
  2546. goto done;
  2547. --tx_priv->va_clk_status;
  2548. } else if (!tx_priv->va_clk_status && tx_priv->tx_clk_status) {
  2549. ret = tx_macro_tx_va_mclk_enable(tx_priv, regmap,
  2550. TX_MCLK, enable);
  2551. if (ret)
  2552. goto done;
  2553. --tx_priv->tx_clk_status;
  2554. } else if (tx_priv->va_clk_status && tx_priv->tx_clk_status) {
  2555. if (!tx_priv->va_swr_clk_cnt && tx_priv->tx_swr_clk_cnt) {
  2556. ret = tx_macro_tx_va_mclk_enable(tx_priv, regmap,
  2557. VA_MCLK, enable);
  2558. if (ret)
  2559. goto done;
  2560. --tx_priv->va_clk_status;
  2561. } else {
  2562. ret = tx_macro_tx_va_mclk_enable(tx_priv, regmap,
  2563. TX_MCLK, enable);
  2564. if (ret)
  2565. goto done;
  2566. --tx_priv->tx_clk_status;
  2567. }
  2568. } else {
  2569. dev_dbg(tx_priv->dev,
  2570. "%s: Both clocks are disabled\n", __func__);
  2571. }
  2572. }
  2573. trace_printk("%s: swrm clock users %d tx_clk_sts_cnt: %d va_clk_sts_cnt: %d\n",
  2574. __func__, tx_priv->swr_clk_users, tx_priv->tx_clk_status,
  2575. tx_priv->va_clk_status);
  2576. dev_dbg(tx_priv->dev,
  2577. "%s: swrm clock users %d tx_clk_sts_cnt: %d va_clk_sts_cnt: %d\n",
  2578. __func__, tx_priv->swr_clk_users, tx_priv->tx_clk_status,
  2579. tx_priv->va_clk_status);
  2580. done:
  2581. mutex_unlock(&tx_priv->swr_clk_lock);
  2582. return ret;
  2583. }
  2584. static int tx_macro_validate_dmic_sample_rate(u32 dmic_sample_rate,
  2585. struct tx_macro_priv *tx_priv)
  2586. {
  2587. u32 div_factor = TX_MACRO_CLK_DIV_2;
  2588. u32 mclk_rate = TX_MACRO_MCLK_FREQ;
  2589. if (dmic_sample_rate == TX_MACRO_DMIC_SAMPLE_RATE_UNDEFINED ||
  2590. mclk_rate % dmic_sample_rate != 0)
  2591. goto undefined_rate;
  2592. div_factor = mclk_rate / dmic_sample_rate;
  2593. switch (div_factor) {
  2594. case 2:
  2595. tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_2;
  2596. break;
  2597. case 3:
  2598. tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_3;
  2599. break;
  2600. case 4:
  2601. tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_4;
  2602. break;
  2603. case 6:
  2604. tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_6;
  2605. break;
  2606. case 8:
  2607. tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_8;
  2608. break;
  2609. case 16:
  2610. tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_16;
  2611. break;
  2612. default:
  2613. /* Any other DIV factor is invalid */
  2614. goto undefined_rate;
  2615. }
  2616. /* Valid dmic DIV factors */
  2617. dev_dbg(tx_priv->dev, "%s: DMIC_DIV = %u, mclk_rate = %u\n",
  2618. __func__, div_factor, mclk_rate);
  2619. return dmic_sample_rate;
  2620. undefined_rate:
  2621. dev_dbg(tx_priv->dev, "%s: Invalid rate %d, for mclk %d\n",
  2622. __func__, dmic_sample_rate, mclk_rate);
  2623. dmic_sample_rate = TX_MACRO_DMIC_SAMPLE_RATE_UNDEFINED;
  2624. return dmic_sample_rate;
  2625. }
  2626. static const struct tx_macro_reg_mask_val tx_macro_reg_init[] = {
  2627. {BOLERO_CDC_TX0_TX_PATH_SEC7, 0x3F, 0x0A},
  2628. };
  2629. static int tx_macro_init(struct snd_soc_component *component)
  2630. {
  2631. struct snd_soc_dapm_context *dapm =
  2632. snd_soc_component_get_dapm(component);
  2633. int ret = 0, i = 0;
  2634. struct device *tx_dev = NULL;
  2635. struct tx_macro_priv *tx_priv = NULL;
  2636. tx_dev = bolero_get_device_ptr(component->dev, TX_MACRO);
  2637. if (!tx_dev) {
  2638. dev_err(component->dev,
  2639. "%s: null device for macro!\n", __func__);
  2640. return -EINVAL;
  2641. }
  2642. tx_priv = dev_get_drvdata(tx_dev);
  2643. if (!tx_priv) {
  2644. dev_err(component->dev,
  2645. "%s: priv is null for macro!\n", __func__);
  2646. return -EINVAL;
  2647. }
  2648. tx_priv->lpi_enable = false;
  2649. tx_priv->register_event_listener = false;
  2650. tx_priv->version = bolero_get_version(tx_dev);
  2651. if (tx_priv->version >= BOLERO_VERSION_2_0) {
  2652. ret = snd_soc_dapm_new_controls(dapm,
  2653. tx_macro_dapm_widgets_common,
  2654. ARRAY_SIZE(tx_macro_dapm_widgets_common));
  2655. if (ret < 0) {
  2656. dev_err(tx_dev, "%s: Failed to add controls\n",
  2657. __func__);
  2658. return ret;
  2659. }
  2660. if (tx_priv->version == BOLERO_VERSION_2_1)
  2661. ret = snd_soc_dapm_new_controls(dapm,
  2662. tx_macro_dapm_widgets_v2,
  2663. ARRAY_SIZE(tx_macro_dapm_widgets_v2));
  2664. else if (tx_priv->version == BOLERO_VERSION_2_0)
  2665. ret = snd_soc_dapm_new_controls(dapm,
  2666. tx_macro_dapm_widgets_v3,
  2667. ARRAY_SIZE(tx_macro_dapm_widgets_v3));
  2668. if (ret < 0) {
  2669. dev_err(tx_dev, "%s: Failed to add controls\n",
  2670. __func__);
  2671. return ret;
  2672. }
  2673. } else {
  2674. ret = snd_soc_dapm_new_controls(dapm, tx_macro_dapm_widgets,
  2675. ARRAY_SIZE(tx_macro_dapm_widgets));
  2676. if (ret < 0) {
  2677. dev_err(tx_dev, "%s: Failed to add controls\n",
  2678. __func__);
  2679. return ret;
  2680. }
  2681. }
  2682. if (tx_priv->version >= BOLERO_VERSION_2_0) {
  2683. ret = snd_soc_dapm_add_routes(dapm,
  2684. tx_audio_map_common,
  2685. ARRAY_SIZE(tx_audio_map_common));
  2686. if (ret < 0) {
  2687. dev_err(tx_dev, "%s: Failed to add routes\n",
  2688. __func__);
  2689. return ret;
  2690. }
  2691. if (tx_priv->version == BOLERO_VERSION_2_0)
  2692. ret = snd_soc_dapm_add_routes(dapm,
  2693. tx_audio_map_v3,
  2694. ARRAY_SIZE(tx_audio_map_v3));
  2695. if (ret < 0) {
  2696. dev_err(tx_dev, "%s: Failed to add routes\n",
  2697. __func__);
  2698. return ret;
  2699. }
  2700. } else {
  2701. ret = snd_soc_dapm_add_routes(dapm, tx_audio_map,
  2702. ARRAY_SIZE(tx_audio_map));
  2703. if (ret < 0) {
  2704. dev_err(tx_dev, "%s: Failed to add routes\n",
  2705. __func__);
  2706. return ret;
  2707. }
  2708. }
  2709. ret = snd_soc_dapm_new_widgets(dapm->card);
  2710. if (ret < 0) {
  2711. dev_err(tx_dev, "%s: Failed to add widgets\n", __func__);
  2712. return ret;
  2713. }
  2714. if (tx_priv->version >= BOLERO_VERSION_2_0) {
  2715. ret = snd_soc_add_component_controls(component,
  2716. tx_macro_snd_controls_common,
  2717. ARRAY_SIZE(tx_macro_snd_controls_common));
  2718. if (ret < 0) {
  2719. dev_err(tx_dev, "%s: Failed to add snd_ctls\n",
  2720. __func__);
  2721. return ret;
  2722. }
  2723. if (tx_priv->version == BOLERO_VERSION_2_0)
  2724. ret = snd_soc_add_component_controls(component,
  2725. tx_macro_snd_controls_v3,
  2726. ARRAY_SIZE(tx_macro_snd_controls_v3));
  2727. if (ret < 0) {
  2728. dev_err(tx_dev, "%s: Failed to add snd_ctls\n",
  2729. __func__);
  2730. return ret;
  2731. }
  2732. } else {
  2733. ret = snd_soc_add_component_controls(component,
  2734. tx_macro_snd_controls,
  2735. ARRAY_SIZE(tx_macro_snd_controls));
  2736. if (ret < 0) {
  2737. dev_err(tx_dev, "%s: Failed to add snd_ctls\n",
  2738. __func__);
  2739. return ret;
  2740. }
  2741. }
  2742. snd_soc_dapm_ignore_suspend(dapm, "TX_AIF1 Capture");
  2743. snd_soc_dapm_ignore_suspend(dapm, "TX_AIF2 Capture");
  2744. snd_soc_dapm_ignore_suspend(dapm, "TX_AIF3 Capture");
  2745. if (tx_priv->version >= BOLERO_VERSION_2_0) {
  2746. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_INPUT");
  2747. } else {
  2748. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_ADC0");
  2749. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_ADC1");
  2750. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_ADC2");
  2751. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_ADC3");
  2752. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_DMIC0");
  2753. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_DMIC1");
  2754. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_DMIC2");
  2755. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_DMIC3");
  2756. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_DMIC4");
  2757. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_DMIC5");
  2758. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_DMIC6");
  2759. snd_soc_dapm_ignore_suspend(dapm, "TX SWR_DMIC7");
  2760. }
  2761. snd_soc_dapm_sync(dapm);
  2762. for (i = 0; i < NUM_DECIMATORS; i++) {
  2763. tx_priv->tx_hpf_work[i].tx_priv = tx_priv;
  2764. tx_priv->tx_hpf_work[i].decimator = i;
  2765. INIT_DELAYED_WORK(&tx_priv->tx_hpf_work[i].dwork,
  2766. tx_macro_tx_hpf_corner_freq_callback);
  2767. }
  2768. for (i = 0; i < NUM_DECIMATORS; i++) {
  2769. tx_priv->tx_mute_dwork[i].tx_priv = tx_priv;
  2770. tx_priv->tx_mute_dwork[i].decimator = i;
  2771. INIT_DELAYED_WORK(&tx_priv->tx_mute_dwork[i].dwork,
  2772. tx_macro_mute_update_callback);
  2773. }
  2774. tx_priv->component = component;
  2775. for (i = 0; i < ARRAY_SIZE(tx_macro_reg_init); i++)
  2776. snd_soc_component_update_bits(component,
  2777. tx_macro_reg_init[i].reg,
  2778. tx_macro_reg_init[i].mask,
  2779. tx_macro_reg_init[i].val);
  2780. return 0;
  2781. }
  2782. static int tx_macro_deinit(struct snd_soc_component *component)
  2783. {
  2784. struct device *tx_dev = NULL;
  2785. struct tx_macro_priv *tx_priv = NULL;
  2786. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  2787. return -EINVAL;
  2788. tx_priv->component = NULL;
  2789. return 0;
  2790. }
  2791. static void tx_macro_add_child_devices(struct work_struct *work)
  2792. {
  2793. struct tx_macro_priv *tx_priv = NULL;
  2794. struct platform_device *pdev = NULL;
  2795. struct device_node *node = NULL;
  2796. struct tx_macro_swr_ctrl_data *swr_ctrl_data = NULL, *temp = NULL;
  2797. int ret = 0;
  2798. u16 count = 0, ctrl_num = 0;
  2799. struct tx_macro_swr_ctrl_platform_data *platdata = NULL;
  2800. char plat_dev_name[TX_MACRO_SWR_STRING_LEN] = "";
  2801. bool tx_swr_master_node = false;
  2802. tx_priv = container_of(work, struct tx_macro_priv,
  2803. tx_macro_add_child_devices_work);
  2804. if (!tx_priv) {
  2805. pr_err("%s: Memory for tx_priv does not exist\n",
  2806. __func__);
  2807. return;
  2808. }
  2809. if (!tx_priv->dev) {
  2810. pr_err("%s: tx dev does not exist\n", __func__);
  2811. return;
  2812. }
  2813. if (!tx_priv->dev->of_node) {
  2814. dev_err(tx_priv->dev,
  2815. "%s: DT node for tx_priv does not exist\n", __func__);
  2816. return;
  2817. }
  2818. platdata = &tx_priv->swr_plat_data;
  2819. tx_priv->child_count = 0;
  2820. for_each_available_child_of_node(tx_priv->dev->of_node, node) {
  2821. tx_swr_master_node = false;
  2822. if (strnstr(node->name, "tx_swr_master",
  2823. strlen("tx_swr_master")) != NULL)
  2824. tx_swr_master_node = true;
  2825. if (tx_swr_master_node)
  2826. strlcpy(plat_dev_name, "tx_swr_ctrl",
  2827. (TX_MACRO_SWR_STRING_LEN - 1));
  2828. else
  2829. strlcpy(plat_dev_name, node->name,
  2830. (TX_MACRO_SWR_STRING_LEN - 1));
  2831. pdev = platform_device_alloc(plat_dev_name, -1);
  2832. if (!pdev) {
  2833. dev_err(tx_priv->dev, "%s: pdev memory alloc failed\n",
  2834. __func__);
  2835. ret = -ENOMEM;
  2836. goto err;
  2837. }
  2838. pdev->dev.parent = tx_priv->dev;
  2839. pdev->dev.of_node = node;
  2840. if (tx_swr_master_node) {
  2841. ret = platform_device_add_data(pdev, platdata,
  2842. sizeof(*platdata));
  2843. if (ret) {
  2844. dev_err(&pdev->dev,
  2845. "%s: cannot add plat data ctrl:%d\n",
  2846. __func__, ctrl_num);
  2847. goto fail_pdev_add;
  2848. }
  2849. }
  2850. ret = platform_device_add(pdev);
  2851. if (ret) {
  2852. dev_err(&pdev->dev,
  2853. "%s: Cannot add platform device\n",
  2854. __func__);
  2855. goto fail_pdev_add;
  2856. }
  2857. if (tx_swr_master_node) {
  2858. temp = krealloc(swr_ctrl_data,
  2859. (ctrl_num + 1) * sizeof(
  2860. struct tx_macro_swr_ctrl_data),
  2861. GFP_KERNEL);
  2862. if (!temp) {
  2863. ret = -ENOMEM;
  2864. goto fail_pdev_add;
  2865. }
  2866. swr_ctrl_data = temp;
  2867. swr_ctrl_data[ctrl_num].tx_swr_pdev = pdev;
  2868. ctrl_num++;
  2869. dev_dbg(&pdev->dev,
  2870. "%s: Added soundwire ctrl device(s)\n",
  2871. __func__);
  2872. tx_priv->swr_ctrl_data = swr_ctrl_data;
  2873. }
  2874. if (tx_priv->child_count < TX_MACRO_CHILD_DEVICES_MAX)
  2875. tx_priv->pdev_child_devices[
  2876. tx_priv->child_count++] = pdev;
  2877. else
  2878. goto err;
  2879. }
  2880. return;
  2881. fail_pdev_add:
  2882. for (count = 0; count < tx_priv->child_count; count++)
  2883. platform_device_put(tx_priv->pdev_child_devices[count]);
  2884. err:
  2885. return;
  2886. }
  2887. static int tx_macro_set_port_map(struct snd_soc_component *component,
  2888. u32 usecase, u32 size, void *data)
  2889. {
  2890. struct device *tx_dev = NULL;
  2891. struct tx_macro_priv *tx_priv = NULL;
  2892. struct swrm_port_config port_cfg;
  2893. int ret = 0;
  2894. if (!tx_macro_get_data(component, &tx_dev, &tx_priv, __func__))
  2895. return -EINVAL;
  2896. memset(&port_cfg, 0, sizeof(port_cfg));
  2897. port_cfg.uc = usecase;
  2898. port_cfg.size = size;
  2899. port_cfg.params = data;
  2900. if (tx_priv->swr_ctrl_data)
  2901. ret = swrm_wcd_notify(
  2902. tx_priv->swr_ctrl_data[0].tx_swr_pdev,
  2903. SWR_SET_PORT_MAP, &port_cfg);
  2904. return ret;
  2905. }
  2906. static void tx_macro_init_ops(struct macro_ops *ops,
  2907. char __iomem *tx_io_base)
  2908. {
  2909. memset(ops, 0, sizeof(struct macro_ops));
  2910. ops->init = tx_macro_init;
  2911. ops->exit = tx_macro_deinit;
  2912. ops->io_base = tx_io_base;
  2913. ops->dai_ptr = tx_macro_dai;
  2914. ops->num_dais = ARRAY_SIZE(tx_macro_dai);
  2915. ops->event_handler = tx_macro_event_handler;
  2916. ops->reg_wake_irq = tx_macro_reg_wake_irq;
  2917. ops->set_port_map = tx_macro_set_port_map;
  2918. ops->clk_div_get = tx_macro_clk_div_get;
  2919. ops->reg_evt_listener = tx_macro_register_event_listener;
  2920. ops->clk_enable = __tx_macro_mclk_enable;
  2921. }
  2922. static int tx_macro_probe(struct platform_device *pdev)
  2923. {
  2924. struct macro_ops ops = {0};
  2925. struct tx_macro_priv *tx_priv = NULL;
  2926. u32 tx_base_addr = 0, sample_rate = 0;
  2927. char __iomem *tx_io_base = NULL;
  2928. int ret = 0;
  2929. const char *dmic_sample_rate = "qcom,tx-dmic-sample-rate";
  2930. u32 is_used_tx_swr_gpio = 1;
  2931. const char *is_used_tx_swr_gpio_dt = "qcom,is-used-swr-gpio";
  2932. if (!bolero_is_va_macro_registered(&pdev->dev)) {
  2933. dev_err(&pdev->dev,
  2934. "%s: va-macro not registered yet, defer\n", __func__);
  2935. return -EPROBE_DEFER;
  2936. }
  2937. tx_priv = devm_kzalloc(&pdev->dev, sizeof(struct tx_macro_priv),
  2938. GFP_KERNEL);
  2939. if (!tx_priv)
  2940. return -ENOMEM;
  2941. platform_set_drvdata(pdev, tx_priv);
  2942. tx_priv->dev = &pdev->dev;
  2943. ret = of_property_read_u32(pdev->dev.of_node, "reg",
  2944. &tx_base_addr);
  2945. if (ret) {
  2946. dev_err(&pdev->dev, "%s: could not find %s entry in dt\n",
  2947. __func__, "reg");
  2948. return ret;
  2949. }
  2950. dev_set_drvdata(&pdev->dev, tx_priv);
  2951. if (of_find_property(pdev->dev.of_node, is_used_tx_swr_gpio_dt,
  2952. NULL)) {
  2953. ret = of_property_read_u32(pdev->dev.of_node,
  2954. is_used_tx_swr_gpio_dt,
  2955. &is_used_tx_swr_gpio);
  2956. if (ret) {
  2957. dev_err(&pdev->dev, "%s: error reading %s in dt\n",
  2958. __func__, is_used_tx_swr_gpio_dt);
  2959. is_used_tx_swr_gpio = 1;
  2960. }
  2961. }
  2962. tx_priv->tx_swr_gpio_p = of_parse_phandle(pdev->dev.of_node,
  2963. "qcom,tx-swr-gpios", 0);
  2964. if (!tx_priv->tx_swr_gpio_p && is_used_tx_swr_gpio) {
  2965. dev_err(&pdev->dev, "%s: swr_gpios handle not provided!\n",
  2966. __func__);
  2967. return -EINVAL;
  2968. }
  2969. if (msm_cdc_pinctrl_get_state(tx_priv->tx_swr_gpio_p) < 0 &&
  2970. is_used_tx_swr_gpio) {
  2971. dev_err(&pdev->dev, "%s: failed to get swr pin state\n",
  2972. __func__);
  2973. return -EPROBE_DEFER;
  2974. }
  2975. tx_io_base = devm_ioremap(&pdev->dev,
  2976. tx_base_addr, TX_MACRO_MAX_OFFSET);
  2977. if (!tx_io_base) {
  2978. dev_err(&pdev->dev, "%s: ioremap failed\n", __func__);
  2979. return -ENOMEM;
  2980. }
  2981. tx_priv->tx_io_base = tx_io_base;
  2982. ret = of_property_read_u32(pdev->dev.of_node, dmic_sample_rate,
  2983. &sample_rate);
  2984. if (ret) {
  2985. dev_err(&pdev->dev,
  2986. "%s: could not find sample_rate entry in dt\n",
  2987. __func__);
  2988. tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_2;
  2989. } else {
  2990. if (tx_macro_validate_dmic_sample_rate(
  2991. sample_rate, tx_priv) == TX_MACRO_DMIC_SAMPLE_RATE_UNDEFINED)
  2992. return -EINVAL;
  2993. }
  2994. if (is_used_tx_swr_gpio) {
  2995. tx_priv->reset_swr = true;
  2996. INIT_WORK(&tx_priv->tx_macro_add_child_devices_work,
  2997. tx_macro_add_child_devices);
  2998. tx_priv->swr_plat_data.handle = (void *) tx_priv;
  2999. tx_priv->swr_plat_data.read = NULL;
  3000. tx_priv->swr_plat_data.write = NULL;
  3001. tx_priv->swr_plat_data.bulk_write = NULL;
  3002. tx_priv->swr_plat_data.clk = tx_macro_swrm_clock;
  3003. tx_priv->swr_plat_data.core_vote = tx_macro_core_vote;
  3004. tx_priv->swr_plat_data.handle_irq = NULL;
  3005. mutex_init(&tx_priv->swr_clk_lock);
  3006. }
  3007. tx_priv->is_used_tx_swr_gpio = is_used_tx_swr_gpio;
  3008. mutex_init(&tx_priv->mclk_lock);
  3009. tx_macro_init_ops(&ops, tx_io_base);
  3010. ops.clk_id_req = TX_CORE_CLK;
  3011. ops.default_clk_id = TX_CORE_CLK;
  3012. ret = bolero_register_macro(&pdev->dev, TX_MACRO, &ops);
  3013. if (ret) {
  3014. dev_err(&pdev->dev,
  3015. "%s: register macro failed\n", __func__);
  3016. goto err_reg_macro;
  3017. }
  3018. if (is_used_tx_swr_gpio)
  3019. schedule_work(&tx_priv->tx_macro_add_child_devices_work);
  3020. pm_runtime_set_autosuspend_delay(&pdev->dev, AUTO_SUSPEND_DELAY);
  3021. pm_runtime_use_autosuspend(&pdev->dev);
  3022. pm_runtime_set_suspended(&pdev->dev);
  3023. pm_suspend_ignore_children(&pdev->dev, true);
  3024. pm_runtime_enable(&pdev->dev);
  3025. return 0;
  3026. err_reg_macro:
  3027. mutex_destroy(&tx_priv->mclk_lock);
  3028. if (is_used_tx_swr_gpio)
  3029. mutex_destroy(&tx_priv->swr_clk_lock);
  3030. return ret;
  3031. }
  3032. static int tx_macro_remove(struct platform_device *pdev)
  3033. {
  3034. struct tx_macro_priv *tx_priv = NULL;
  3035. u16 count = 0;
  3036. tx_priv = platform_get_drvdata(pdev);
  3037. if (!tx_priv)
  3038. return -EINVAL;
  3039. if (tx_priv->is_used_tx_swr_gpio) {
  3040. if (tx_priv->swr_ctrl_data)
  3041. kfree(tx_priv->swr_ctrl_data);
  3042. for (count = 0; count < tx_priv->child_count &&
  3043. count < TX_MACRO_CHILD_DEVICES_MAX; count++)
  3044. platform_device_unregister(
  3045. tx_priv->pdev_child_devices[count]);
  3046. }
  3047. pm_runtime_disable(&pdev->dev);
  3048. pm_runtime_set_suspended(&pdev->dev);
  3049. mutex_destroy(&tx_priv->mclk_lock);
  3050. if (tx_priv->is_used_tx_swr_gpio)
  3051. mutex_destroy(&tx_priv->swr_clk_lock);
  3052. bolero_unregister_macro(&pdev->dev, TX_MACRO);
  3053. return 0;
  3054. }
  3055. static const struct of_device_id tx_macro_dt_match[] = {
  3056. {.compatible = "qcom,tx-macro"},
  3057. {}
  3058. };
  3059. static const struct dev_pm_ops bolero_dev_pm_ops = {
  3060. SET_SYSTEM_SLEEP_PM_OPS(
  3061. pm_runtime_force_suspend,
  3062. pm_runtime_force_resume
  3063. )
  3064. SET_RUNTIME_PM_OPS(
  3065. bolero_runtime_suspend,
  3066. bolero_runtime_resume,
  3067. NULL
  3068. )
  3069. };
  3070. static struct platform_driver tx_macro_driver = {
  3071. .driver = {
  3072. .name = "tx_macro",
  3073. .owner = THIS_MODULE,
  3074. .pm = &bolero_dev_pm_ops,
  3075. .of_match_table = tx_macro_dt_match,
  3076. .suppress_bind_attrs = true,
  3077. },
  3078. .probe = tx_macro_probe,
  3079. .remove = tx_macro_remove,
  3080. };
  3081. module_platform_driver(tx_macro_driver);
  3082. MODULE_DESCRIPTION("TX macro driver");
  3083. MODULE_LICENSE("GPL v2");