idle_timer.h 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501
  1. /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
  2. * All rights reserved.
  3. *
  4. * This software is supplied "AS IS" without any warranties.
  5. * RDA assumes no responsibility or liability for the use of the software,
  6. * conveys no license or title under any patent, copyright, or mask work
  7. * right to the product. RDA reserves the right to make changes in the
  8. * software without notification. RDA also make no representation or
  9. * warranty that such application will be suitable for the specified use
  10. * without further testing or modification.
  11. */
  12. #ifndef _IDLE_TIMER_H_
  13. #define _IDLE_TIMER_H_
  14. // Auto generated by dtools(see dtools.txt for its version).
  15. // Don't edit it manually!
  16. #define REG_IDLE_TIMER_BASE (0x51507000)
  17. typedef volatile struct
  18. {
  19. uint32_t idl_ctrl_sys1; // 0x00000000
  20. uint32_t idl_ctrl_sys2; // 0x00000004
  21. uint32_t idl_en; // 0x00000008
  22. uint32_t idl_m_timer; // 0x0000000c
  23. uint32_t idl_wcn_en; // 0x00000010
  24. uint32_t idl_ctrl_timer; // 0x00000014
  25. uint32_t idl_m2_sys; // 0x00000018
  26. uint32_t idl_tc_start; // 0x0000001c
  27. uint32_t idl_tc_end; // 0x00000020
  28. uint32_t idl_awk_timer; // 0x00000024
  29. uint32_t gsm_lp_pu_done; // 0x00000028
  30. uint32_t gsm_frame_inten; // 0x0000002c
  31. uint32_t gsm_frame_int_sta; // 0x00000030
  32. uint32_t ltem1_frame_inten; // 0x00000034
  33. uint32_t ltem1_frame_int_sta; // 0x00000038
  34. uint32_t ltem2_frame_inten; // 0x0000003c
  35. uint32_t ltem2_frame_int_sta; // 0x00000040
  36. uint32_t idl_sta; // 0x00000044
  37. uint32_t idl_h_ctrl; // 0x00000048
  38. uint32_t idl_h_val; // 0x0000004c
  39. uint32_t idl_h_gsm; // 0x00000050
  40. uint32_t idl_h_ltem; // 0x00000054
  41. uint32_t idl_awk_en; // 0x00000058
  42. uint32_t idl_awk_st; // 0x0000005c
  43. uint32_t idl_awk_self; // 0x00000060
  44. uint32_t idl_osw1_en; // 0x00000064
  45. uint32_t idl_osw1_cont; // 0x00000068
  46. uint32_t idl_fn_gsm; // 0x0000006c
  47. uint32_t idl_fn_ltem1; // 0x00000070
  48. uint32_t idl_fn_ltem2; // 0x00000074
  49. uint32_t idl_ltem_rfl; // 0x00000078
  50. uint32_t idl_ltem_sfl; // 0x0000007c
  51. uint32_t idl_sig_en; // 0x00000080
  52. uint32_t idl_sig_timer; // 0x00000084
  53. uint32_t idl_32k_ref; // 0x00000088
  54. uint32_t idl_cp_inten; // 0x0000008c
  55. uint32_t idl_cp_inten_set; // 0x00000090
  56. uint32_t idl_cp_inten_clr; // 0x00000094
  57. uint32_t idl_cp_int_sta; // 0x00000098
  58. uint32_t idl_ap_inten; // 0x0000009c
  59. uint32_t idl_ap_inten_set; // 0x000000a0
  60. uint32_t idl_ap_inten_clr; // 0x000000a4
  61. uint32_t idl_ap_int_sta; // 0x000000a8
  62. uint32_t ltem1_cfsr_hfn; // 0x000000ac
  63. uint32_t ltem1_cfsr_fn; // 0x000000b0
  64. uint32_t ltem1_cfsrs; // 0x000000b4
  65. uint32_t ltem1_cfsr_rdh; // 0x000000b8
  66. uint32_t ltem1_cfsr_rdl; // 0x000000bc
  67. uint32_t ltem1_framc; // 0x000000c0
  68. uint32_t ltem1_framl; // 0x000000c4
  69. uint32_t ltem1_framls; // 0x000000c8
  70. uint32_t ltem1_cfsr_tph; // 0x000000cc
  71. uint32_t ltem1_cfsr_tpl; // 0x000000d0
  72. uint32_t ltem1_framc_tp; // 0x000000d4
  73. uint32_t ltem2_cfsr_hfn; // 0x000000d8
  74. uint32_t ltem2_cfsr_fn; // 0x000000dc
  75. uint32_t ltem2_cfsrs; // 0x000000e0
  76. uint32_t ltem2_cfsr_rdh; // 0x000000e4
  77. uint32_t ltem2_cfsr_rdl; // 0x000000e8
  78. uint32_t ltem2_framc; // 0x000000ec
  79. uint32_t ltem2_framl; // 0x000000f0
  80. uint32_t ltem2_framls; // 0x000000f4
  81. uint32_t ltem2_cfsr_tph; // 0x000000f8
  82. uint32_t ltem2_cfsr_tpl; // 0x000000fc
  83. uint32_t ltem2_framc_tp; // 0x00000100
  84. uint32_t gsm_cfsr; // 0x00000104
  85. uint32_t gsm_cfsrs; // 0x00000108
  86. uint32_t gsm_cfsro; // 0x0000010c
  87. uint32_t ltem1_fhl; // 0x00000110
  88. uint32_t ltem1_fll; // 0x00000114
  89. uint32_t ltem1_fcl; // 0x00000118
  90. uint32_t ltem2_fhl; // 0x0000011c
  91. uint32_t ltem2_fll; // 0x00000120
  92. uint32_t ltem2_fcl; // 0x00000124
  93. uint32_t gsm_fl; // 0x00000128
  94. uint32_t gsm_fcl; // 0x0000012c
  95. uint32_t idl_tpctrl; // 0x00000130
  96. uint32_t layoutt; // 0x00000134
  97. uint32_t layoutctrl; // 0x00000138
  98. uint32_t ltem1_fint_dly1; // 0x0000013c
  99. uint32_t ltem1_fint_dly2; // 0x00000140
  100. uint32_t ltem2_fint_dly1; // 0x00000144
  101. uint32_t ltem2_fint_dly2; // 0x00000148
  102. uint32_t ltem1_fint_en; // 0x0000014c
  103. uint32_t timer_en; // 0x00000150
  104. uint32_t idle_frame_sta; // 0x00000154
  105. uint32_t idle_frame_ltem1; // 0x00000158
  106. uint32_t idle_frame_ltem2; // 0x0000015c
  107. uint32_t idle_frame_gsm; // 0x00000160
  108. uint32_t idle_frame_lte; // 0x00000164
  109. uint32_t idle_frame_lte_conf; // 0x00000168
  110. uint32_t ltem_ref_fn; // 0x0000016c
  111. uint32_t ltem_ref_fnl; // 0x00000170
  112. uint32_t ltem_ref_fcl; // 0x00000174
  113. uint32_t ref_32k_fnl; // 0x00000178
  114. uint32_t ltem_ref_fc; // 0x0000017c
  115. uint32_t gsm_framl; // 0x00000180
  116. uint32_t idl_osw2_en; // 0x00000184
  117. uint32_t idl_osw2_cont; // 0x00000188
  118. uint32_t idle_framc_gsm; // 0x0000018c
  119. uint32_t ltem1_fint_dly3; // 0x00000190
  120. uint32_t ltem2_fint_dly3; // 0x00000194
  121. uint32_t idle_time_sel; // 0x00000198
  122. uint32_t idle_time; // 0x0000019c
  123. uint32_t idl_h_gsm_lp; // 0x000001a0
  124. uint32_t idl_h_ltem_lp; // 0x000001a4
  125. uint32_t idl_tc_start_nb; // 0x000001a8
  126. uint32_t idl_tc_end_nb; // 0x000001ac
  127. uint32_t nb_lp_pu_done; // 0x000001b0
  128. uint32_t idl_h_nb; // 0x000001b4
  129. uint32_t idl_h_nb_lp; // 0x000001b8
  130. uint32_t idl_fn_nb; // 0x000001bc
  131. uint32_t nb_frame_inten; // 0x000001c0
  132. uint32_t nb_frame_int_sta; // 0x000001c4
  133. uint32_t nb_cfsr; // 0x000001c8
  134. uint32_t nb_framl; // 0x000001cc
  135. uint32_t nb_cfsrs; // 0x000001d0
  136. uint32_t nb_cfsro; // 0x000001d4
  137. uint32_t nb_fl; // 0x000001d8
  138. uint32_t nb_fcl; // 0x000001dc
  139. uint32_t idle_frame_nb; // 0x000001e0
  140. uint32_t idle_framc_nb; // 0x000001e4
  141. uint32_t idl_awk_en_set; // 0x000001e8
  142. uint32_t idl_awk_en_clr; // 0x000001ec
  143. uint32_t gsm_framc; // 0x000001f0
  144. uint32_t nb_framc; // 0x000001f4
  145. uint32_t eliminat_jitter; // 0x000001f8
  146. uint32_t gsm_en_sel; // 0x000001fc
  147. uint32_t nb_en_sel; // 0x00000200
  148. uint32_t pd_pll_sw; // 0x00000204
  149. uint32_t pd_pll_sw_set; // 0x00000208
  150. uint32_t pd_pll_sw_clr; // 0x0000020c
  151. uint32_t pd_pll_sel; // 0x00000210
  152. uint32_t pd_pll_sel_set; // 0x00000214
  153. uint32_t pd_pll_sel_clr; // 0x00000218
  154. uint32_t idle_cg_sw; // 0x0000021c
  155. uint32_t idle_cg_sw_set; // 0x00000220
  156. uint32_t idle_cg_sw_clr; // 0x00000224
  157. uint32_t idle_cg_sel; // 0x00000228
  158. uint32_t idle_cg_sel_set; // 0x0000022c
  159. uint32_t idle_cg_sel_clr; // 0x00000230
  160. uint32_t rf_idle_enable_sw; // 0x00000234
  161. uint32_t rf_idle_enable_sel; // 0x00000238
  162. uint32_t idle_res0; // 0x0000023c
  163. uint32_t idle_res1; // 0x00000240
  164. uint32_t idle_res2; // 0x00000244
  165. uint32_t idle_res3; // 0x00000248
  166. uint32_t idle_res4; // 0x0000024c
  167. uint32_t idle_res5; // 0x00000250
  168. uint32_t idle_res6; // 0x00000254
  169. uint32_t idle_res7; // 0x00000258
  170. uint32_t mem_ema_cfg; // 0x0000025c
  171. uint32_t uart_ctrl; // 0x00000260
  172. uint32_t ddr_latch; // 0x00000264
  173. uint32_t pad_ctrl; // 0x00000268
  174. uint32_t idle_res8; // 0x0000026c
  175. uint32_t idle_res9; // 0x00000270
  176. uint32_t idle_res10; // 0x00000274
  177. uint32_t idle_res11; // 0x00000278
  178. uint32_t pad_ctrl_uart_txd; // 0x0000027c
  179. uint32_t mon_sel; // 0x00000280
  180. uint32_t mon_sel_set; // 0x00000284
  181. uint32_t mon_sel_clr; // 0x00000288
  182. uint32_t target_timer; // 0x0000028c
  183. uint32_t target_timer_en; // 0x00000290
  184. uint32_t target_value_lock; // 0x00000294
  185. uint32_t target_timer_stat; // 0x00000298
  186. uint32_t slow_sys_clk_sel_hwen; // 0x0000029c
  187. uint32_t slow_clk_sel_hwen; // 0x000002a0
  188. uint32_t sleep_prot_time; // 0x000002a4
  189. uint32_t h_val_sel; // 0x000002a8
  190. uint32_t tp_sta; // 0x000002ac
  191. uint32_t ltem1_framls_rel; // 0x000002b0
  192. uint32_t ltem1_framls_abs; // 0x000002b4
  193. uint32_t ltem2_framls_rel; // 0x000002b8
  194. uint32_t ltem2_framls_abs; // 0x000002bc
  195. uint32_t ltem1_load_en; // 0x000002c0
  196. uint32_t ltem2_load_en; // 0x000002c4
  197. uint32_t ltem2_fint_en; // 0x000002c8
  198. uint32_t gnss_tstamp_en; // 0x000002cc
  199. uint32_t gnss_rtc_ltem1_fhl; // 0x000002d0
  200. uint32_t gnss_rtc_ltem1_fll; // 0x000002d4
  201. uint32_t gnss_rtc_ltem1_fcl; // 0x000002d8
  202. uint32_t gnss_rtc_ltem2_fhl; // 0x000002dc
  203. uint32_t gnss_rtc_ltem2_fll; // 0x000002e0
  204. uint32_t gnss_rtc_ltem2_fcl; // 0x000002e4
  205. uint32_t gnss_rtc_ltem3_fhl; // 0x000002e8
  206. uint32_t gnss_rtc_ltem3_fll; // 0x000002ec
  207. uint32_t gnss_rtc_ltem3_fcl; // 0x000002f0
  208. uint32_t gnss_cpu_ltem1_fhl; // 0x000002f4
  209. uint32_t gnss_cpu_ltem1_fll; // 0x000002f8
  210. uint32_t gnss_cpu_ltem1_fcl; // 0x000002fc
  211. uint32_t gnss_cpu_ltem2_fhl; // 0x00000300
  212. uint32_t gnss_cpu_ltem2_fll; // 0x00000304
  213. uint32_t gnss_cpu_ltem2_fcl; // 0x00000308
  214. uint32_t gnss_cpu_ltem3_fhl; // 0x0000030c
  215. uint32_t gnss_cpu_ltem3_fll; // 0x00000310
  216. uint32_t gnss_cpu_ltem3_fcl; // 0x00000314
  217. uint32_t gnss_cpu_rtc_ltem1_fhl; // 0x00000318
  218. uint32_t gnss_cpu_rtc_ltem1_fll; // 0x0000031c
  219. uint32_t gnss_cpu_rtc_ltem1_fcl; // 0x00000320
  220. uint32_t gnss_cpu_rtc_ltem2_fhl; // 0x00000324
  221. uint32_t gnss_cpu_rtc_ltem2_fll; // 0x00000328
  222. uint32_t gnss_cpu_rtc_ltem2_fcl; // 0x0000032c
  223. uint32_t gnss_cpu_rtc_ltem3_fhl; // 0x00000330
  224. uint32_t gnss_cpu_rtc_ltem3_fll; // 0x00000334
  225. uint32_t gnss_cpu_rtc_ltem3_fcl; // 0x00000338
  226. uint32_t gnss_em_ltem1_fhl; // 0x0000033c
  227. uint32_t gnss_em_ltem1_fll; // 0x00000340
  228. uint32_t gnss_em_ltem1_fcl; // 0x00000344
  229. uint32_t gnss_em_ltem2_fhl; // 0x00000348
  230. uint32_t gnss_em_ltem2_fll; // 0x0000034c
  231. uint32_t gnss_em_ltem2_fcl; // 0x00000350
  232. uint32_t gnss_em_ltem3_fhl; // 0x00000354
  233. uint32_t gnss_em_ltem3_fll; // 0x00000358
  234. uint32_t gnss_em_ltem3_fcl; // 0x0000035c
  235. uint32_t ltem3_load_en; // 0x00000360
  236. uint32_t idl_fn_ltem3; // 0x00000364
  237. uint32_t ltem3_frame_inten; // 0x00000368
  238. uint32_t ltem3_frame_int_sta; // 0x0000036c
  239. uint32_t ltem3_cfsr_hfn; // 0x00000370
  240. uint32_t ltem3_cfsr_fn; // 0x00000374
  241. uint32_t ltem3_cfsrs; // 0x00000378
  242. uint32_t ltem3_cfsr_rdh; // 0x0000037c
  243. uint32_t ltem3_cfsr_rdl; // 0x00000380
  244. uint32_t ltem3_framc; // 0x00000384
  245. uint32_t ltem3_framl; // 0x00000388
  246. uint32_t ltem3_framls; // 0x0000038c
  247. uint32_t ltem3_cfsr_tph; // 0x00000390
  248. uint32_t ltem3_cfsr_tpl; // 0x00000394
  249. uint32_t ltem3_framc_tp; // 0x00000398
  250. uint32_t ltem3_framls_rel; // 0x0000039c
  251. uint32_t ltem3_framls_abs; // 0x000003a0
  252. uint32_t lte3_fint_dly1; // 0x000003a4
  253. uint32_t ltem3_fint_dly2; // 0x000003a8
  254. uint32_t ltem3_fint_dly3; // 0x000003ac
  255. uint32_t ltem3_fint_en; // 0x000003b0
  256. uint32_t ltem3_fhl; // 0x000003b4
  257. uint32_t ltem3_fll; // 0x000003b8
  258. uint32_t ltem3_fcl; // 0x000003bc
  259. uint32_t idle_frame_ltem3; // 0x000003c0
  260. } HWP_IDLE_TIMER_T;
  261. #define hwp_idleTimer ((HWP_IDLE_TIMER_T *)REG_ACCESS_ADDRESS(REG_IDLE_TIMER_BASE))
  262. // idl_ctrl_sys1
  263. typedef union {
  264. uint32_t v;
  265. struct
  266. {
  267. uint32_t idct_ctrl_sys1 : 1; // [0]
  268. uint32_t __31_1 : 31; // [31:1]
  269. } b;
  270. } REG_IDLE_TIMER_IDL_CTRL_SYS1_T;
  271. // idl_ctrl_sys2
  272. typedef union {
  273. uint32_t v;
  274. struct
  275. {
  276. uint32_t idct_ctrl_sys2 : 1; // [0]
  277. uint32_t __31_1 : 31; // [31:1]
  278. } b;
  279. } REG_IDLE_TIMER_IDL_CTRL_SYS2_T;
  280. // idl_en
  281. typedef union {
  282. uint32_t v;
  283. struct
  284. {
  285. uint32_t idl_cp_en : 1; // [0]
  286. uint32_t idl_ap_en : 1; // [1]
  287. uint32_t __31_2 : 30; // [31:2]
  288. } b;
  289. } REG_IDLE_TIMER_IDL_EN_T;
  290. // idl_wcn_en
  291. typedef union {
  292. uint32_t v;
  293. struct
  294. {
  295. uint32_t wcn_chip_pd : 1; // [0]
  296. uint32_t wcn_pd_xtal : 1; // [1]
  297. uint32_t wcn_pd_pll : 1; // [2]
  298. uint32_t wcn_idle_cg : 1; // [3]
  299. uint32_t wcn_res_val : 1; // [4]
  300. uint32_t __31_5 : 27; // [31:5]
  301. } b;
  302. } REG_IDLE_TIMER_IDL_WCN_EN_T;
  303. // idl_ctrl_timer
  304. typedef union {
  305. uint32_t v;
  306. struct
  307. {
  308. uint32_t idct_ctrl_timer : 1; // [0]
  309. uint32_t __31_1 : 31; // [31:1]
  310. } b;
  311. } REG_IDLE_TIMER_IDL_CTRL_TIMER_T;
  312. // idl_m2_sys
  313. typedef union {
  314. uint32_t v;
  315. struct
  316. {
  317. uint32_t m2_sys : 16; // [15:0]
  318. uint32_t m1_sys : 16; // [31:16]
  319. } b;
  320. } REG_IDLE_TIMER_IDL_M2_SYS_T;
  321. // idl_tc_start
  322. typedef union {
  323. uint32_t v;
  324. struct
  325. {
  326. uint32_t tc_start_mod : 2; // [1:0]
  327. uint32_t __31_2 : 30; // [31:2]
  328. } b;
  329. } REG_IDLE_TIMER_IDL_TC_START_T;
  330. // idl_tc_end
  331. typedef union {
  332. uint32_t v;
  333. struct
  334. {
  335. uint32_t tc_end_mod : 2; // [1:0]
  336. uint32_t __3_2 : 2; // [3:2]
  337. uint32_t tc_end_framc : 17; // [20:4]
  338. uint32_t __31_21 : 11; // [31:21]
  339. } b;
  340. } REG_IDLE_TIMER_IDL_TC_END_T;
  341. // idl_awk_timer
  342. typedef union {
  343. uint32_t v;
  344. struct
  345. {
  346. uint32_t wake_timer : 1; // [0]
  347. uint32_t __31_1 : 31; // [31:1]
  348. } b;
  349. } REG_IDLE_TIMER_IDL_AWK_TIMER_T;
  350. // gsm_lp_pu_done
  351. typedef union {
  352. uint32_t v;
  353. struct
  354. {
  355. uint32_t lp_pu_done : 1; // [0]
  356. uint32_t __31_1 : 31; // [31:1]
  357. } b;
  358. } REG_IDLE_TIMER_GSM_LP_PU_DONE_T;
  359. // gsm_frame_inten
  360. typedef union {
  361. uint32_t v;
  362. struct
  363. {
  364. uint32_t gsm_frame_irq_en : 1; // [0]
  365. uint32_t __31_1 : 31; // [31:1]
  366. } b;
  367. } REG_IDLE_TIMER_GSM_FRAME_INTEN_T;
  368. // gsm_frame_int_sta
  369. typedef union {
  370. uint32_t v;
  371. struct
  372. {
  373. uint32_t gsm_frame_int_sta : 1; // [0]
  374. uint32_t __31_1 : 31; // [31:1]
  375. } b;
  376. } REG_IDLE_TIMER_GSM_FRAME_INT_STA_T;
  377. // ltem1_frame_inten
  378. typedef union {
  379. uint32_t v;
  380. struct
  381. {
  382. uint32_t ltem1_frame1_irq_en : 1; // [0]
  383. uint32_t ltem1_frame2_irq_en : 1; // [1]
  384. uint32_t ltem1_frame3_irq_en : 1; // [2]
  385. uint32_t __31_3 : 29; // [31:3]
  386. } b;
  387. } REG_IDLE_TIMER_LTEM1_FRAME_INTEN_T;
  388. // ltem1_frame_int_sta
  389. typedef union {
  390. uint32_t v;
  391. struct
  392. {
  393. uint32_t ltem1_frame_int_sta : 3; // [2:0], write clear
  394. uint32_t __31_3 : 29; // [31:3]
  395. } b;
  396. } REG_IDLE_TIMER_LTEM1_FRAME_INT_STA_T;
  397. // ltem2_frame_inten
  398. typedef union {
  399. uint32_t v;
  400. struct
  401. {
  402. uint32_t ltem2_frame1_irq_en : 1; // [0]
  403. uint32_t ltem2_frame2_irq_en : 1; // [1]
  404. uint32_t ltem2_frame3_irq_en : 1; // [2]
  405. uint32_t __31_3 : 29; // [31:3]
  406. } b;
  407. } REG_IDLE_TIMER_LTEM2_FRAME_INTEN_T;
  408. // ltem2_frame_int_sta
  409. typedef union {
  410. uint32_t v;
  411. struct
  412. {
  413. uint32_t ltem2_frame_int_sta : 3; // [2:0], write clear
  414. uint32_t __31_3 : 29; // [31:3]
  415. } b;
  416. } REG_IDLE_TIMER_LTEM2_FRAME_INT_STA_T;
  417. // idl_sta
  418. typedef union {
  419. uint32_t v;
  420. struct
  421. {
  422. uint32_t idle_sys_stat : 1; // [0], read only
  423. uint32_t idle_gsm_timer_stat : 1; // [1], read only
  424. uint32_t idle_ltem1_timer_stat : 1; // [2], read only
  425. uint32_t idle_ltem2_timer_stat : 1; // [3], read only
  426. uint32_t h_stat : 1; // [4], read only
  427. uint32_t idle_nb_timer_stat : 1; // [5], read only
  428. uint32_t idle_ltem3_timer_stat : 1; // [6], read only
  429. uint32_t __31_7 : 25; // [31:7]
  430. } b;
  431. } REG_IDLE_TIMER_IDL_STA_T;
  432. // idl_h_ctrl
  433. typedef union {
  434. uint32_t v;
  435. struct
  436. {
  437. uint32_t __0_0 : 1; // [0]
  438. uint32_t h_ctrl_en : 1; // [1]
  439. uint32_t h_auto_en : 1; // [2]
  440. uint32_t h_run_time : 4; // [6:3]
  441. uint32_t __31_7 : 25; // [31:7]
  442. } b;
  443. } REG_IDLE_TIMER_IDL_H_CTRL_T;
  444. // idl_h_val
  445. typedef union {
  446. uint32_t v;
  447. struct
  448. {
  449. uint32_t h_value : 27; // [26:0]
  450. uint32_t __31_27 : 5; // [31:27]
  451. } b;
  452. } REG_IDLE_TIMER_IDL_H_VAL_T;
  453. // idl_h_gsm
  454. typedef union {
  455. uint32_t v;
  456. struct
  457. {
  458. uint32_t h_value : 27; // [26:0]
  459. uint32_t __31_27 : 5; // [31:27]
  460. } b;
  461. } REG_IDLE_TIMER_IDL_H_GSM_T;
  462. // idl_h_ltem
  463. typedef union {
  464. uint32_t v;
  465. struct
  466. {
  467. uint32_t h_value : 27; // [26:0]
  468. uint32_t __31_27 : 5; // [31:27]
  469. } b;
  470. } REG_IDLE_TIMER_IDL_H_LTEM_T;
  471. // idl_awk_en
  472. typedef union {
  473. uint32_t v;
  474. struct
  475. {
  476. uint32_t awk0_en : 1; // [0]
  477. uint32_t awk1_en : 1; // [1]
  478. uint32_t awk2_en : 1; // [2]
  479. uint32_t awk3_en : 1; // [3]
  480. uint32_t awk4_en : 1; // [4]
  481. uint32_t awk5_en : 1; // [5]
  482. uint32_t awk6_en : 1; // [6]
  483. uint32_t awk7_en : 1; // [7]
  484. uint32_t awk8_en : 1; // [8]
  485. uint32_t awk9_en : 1; // [9]
  486. uint32_t awk10_en : 1; // [10]
  487. uint32_t awk11_en : 1; // [11]
  488. uint32_t awk12_en : 1; // [12]
  489. uint32_t awk13_en : 1; // [13]
  490. uint32_t awk14_en : 1; // [14]
  491. uint32_t awk15_en : 1; // [15]
  492. uint32_t awk_osw1_en : 1; // [16]
  493. uint32_t awk_osw2_en : 1; // [17]
  494. uint32_t awk_self_en : 1; // [18]
  495. uint32_t gsm_lp_pu_reach_en : 1; // [19]
  496. uint32_t nb_lp_pu_reach_en : 1; // [20]
  497. uint32_t __31_21 : 11; // [31:21]
  498. } b;
  499. } REG_IDLE_TIMER_IDL_AWK_EN_T;
  500. // idl_awk_st
  501. typedef union {
  502. uint32_t v;
  503. struct
  504. {
  505. uint32_t awk0_awk_stat : 1; // [0], write clear
  506. uint32_t awk1_awk_stat : 1; // [1], write clear
  507. uint32_t awk2_awk_stat : 1; // [2], write clear
  508. uint32_t awk3_awk_stat : 1; // [3], write clear
  509. uint32_t awk4_awk_stat : 1; // [4], write clear
  510. uint32_t awk5_awk_stat : 1; // [5], write clear
  511. uint32_t awk6_awk_stat : 1; // [6], write clear
  512. uint32_t awk7_awk_stat : 1; // [7], write clear
  513. uint32_t awk8_awk_stat : 1; // [8], write clear
  514. uint32_t awk9_awk_stat : 1; // [9], write clear
  515. uint32_t awk10_awk_stat : 1; // [10], write clear
  516. uint32_t awk11_awk_stat : 1; // [11], write clear
  517. uint32_t awk12_awk_stat : 1; // [12], write clear
  518. uint32_t awk13_awk_stat : 1; // [13], write clear
  519. uint32_t awk14_awk_stat : 1; // [14], write clear
  520. uint32_t awk15_awk_stat : 1; // [15], write clear
  521. uint32_t awk_osw1_stat : 1; // [16], write clear
  522. uint32_t awk_osw2_stat : 1; // [17], write clear
  523. uint32_t awk_self_stat : 1; // [18], write clear
  524. uint32_t gsm_lp_pu_reach_stat : 1; // [19], write clear
  525. uint32_t nb_lp_pu_reach_stat : 1; // [20], write clear
  526. uint32_t awk_up_stat : 1; // [21], write clear
  527. uint32_t idle_stat : 1; // [22], write clear
  528. uint32_t pow_sta : 1; // [23], write clear
  529. uint32_t thr_sta : 1; // [24], write clear
  530. uint32_t pow_dfe_sta : 1; // [25], read only
  531. uint32_t __31_26 : 6; // [31:26]
  532. } b;
  533. } REG_IDLE_TIMER_IDL_AWK_ST_T;
  534. // idl_awk_self
  535. typedef union {
  536. uint32_t v;
  537. struct
  538. {
  539. uint32_t wake_self : 1; // [0]
  540. uint32_t __31_1 : 31; // [31:1]
  541. } b;
  542. } REG_IDLE_TIMER_IDL_AWK_SELF_T;
  543. // idl_osw1_en
  544. typedef union {
  545. uint32_t v;
  546. struct
  547. {
  548. uint32_t osw1_time : 31; // [30:0]
  549. uint32_t osw1_en : 1; // [31]
  550. } b;
  551. } REG_IDLE_TIMER_IDL_OSW1_EN_T;
  552. // idl_fn_ltem1
  553. typedef union {
  554. uint32_t v;
  555. struct
  556. {
  557. uint32_t idfn_sub_ltem : 4; // [3:0], read only
  558. uint32_t idfn_rad_ltem : 28; // [31:4], read only
  559. } b;
  560. } REG_IDLE_TIMER_IDL_FN_LTEM1_T;
  561. // idl_fn_ltem2
  562. typedef union {
  563. uint32_t v;
  564. struct
  565. {
  566. uint32_t idfn_sub_ltem : 4; // [3:0], read only
  567. uint32_t idfn_rad_ltem : 28; // [31:4], read only
  568. } b;
  569. } REG_IDLE_TIMER_IDL_FN_LTEM2_T;
  570. // idl_ltem_rfl
  571. typedef union {
  572. uint32_t v;
  573. struct
  574. {
  575. uint32_t ltem_idle_radioframe_parameter : 21; // [20:0]
  576. uint32_t __31_21 : 11; // [31:21]
  577. } b;
  578. } REG_IDLE_TIMER_IDL_LTEM_RFL_T;
  579. // idl_ltem_sfl
  580. typedef union {
  581. uint32_t v;
  582. struct
  583. {
  584. uint32_t ltem_idle_frame_parameter : 17; // [16:0]
  585. uint32_t __31_17 : 15; // [31:17]
  586. } b;
  587. } REG_IDLE_TIMER_IDL_LTEM_SFL_T;
  588. // idl_sig_en
  589. typedef union {
  590. uint32_t v;
  591. struct
  592. {
  593. uint32_t chip_pd_en : 1; // [0]
  594. uint32_t pd_xtal_en : 1; // [1]
  595. uint32_t pd_pll_en : 1; // [2]
  596. uint32_t idle_cg_en : 1; // [3]
  597. uint32_t __31_4 : 28; // [31:4]
  598. } b;
  599. } REG_IDLE_TIMER_IDL_SIG_EN_T;
  600. // idl_sig_timer
  601. typedef union {
  602. uint32_t v;
  603. struct
  604. {
  605. uint32_t t1 : 8; // [7:0]
  606. uint32_t t2 : 8; // [15:8]
  607. uint32_t t3 : 8; // [23:16]
  608. uint32_t t4 : 8; // [31:24]
  609. } b;
  610. } REG_IDLE_TIMER_IDL_SIG_TIMER_T;
  611. // idl_cp_inten
  612. typedef union {
  613. uint32_t v;
  614. struct
  615. {
  616. uint32_t layout_irq : 1; // [0]
  617. uint32_t idle_h_irq : 1; // [1]
  618. uint32_t idle_frame_irq : 1; // [2]
  619. uint32_t idl_tstamp_irq : 1; // [3]
  620. uint32_t osw1_irq : 1; // [4]
  621. uint32_t gsm_tc_start_irq : 1; // [5]
  622. uint32_t gsm_tc_end_irq : 1; // [6]
  623. uint32_t cp_gsm_pu_reach_irq : 1; // [7]
  624. uint32_t cp_timer_awk_irq : 1; // [8]
  625. uint32_t sys_wak_irq : 1; // [9]
  626. uint32_t nb_tc_start_irq : 1; // [10]
  627. uint32_t nb_tc_end_irq : 1; // [11]
  628. uint32_t cp_nb_pu_reach_irq : 1; // [12]
  629. uint32_t cp_target_irq : 1; // [13]
  630. uint32_t cp_timer_idle_irq : 1; // [14]
  631. uint32_t cp_load_end_irq : 1; // [15]
  632. uint32_t cp_rtc_latch_irq : 1; // [16]
  633. uint32_t cp_cpu_latch_irq : 1; // [17]
  634. uint32_t cp_em_latch_irq : 1; // [18]
  635. uint32_t __31_19 : 13; // [31:19]
  636. } b;
  637. } REG_IDLE_TIMER_IDL_CP_INTEN_T;
  638. // idl_cp_inten_set
  639. typedef union {
  640. uint32_t v;
  641. struct
  642. {
  643. uint32_t idl_cp_int_en_set : 19; // [18:0], write set
  644. uint32_t __31_19 : 13; // [31:19]
  645. } b;
  646. } REG_IDLE_TIMER_IDL_CP_INTEN_SET_T;
  647. // idl_cp_inten_clr
  648. typedef union {
  649. uint32_t v;
  650. struct
  651. {
  652. uint32_t idl_cp_int_en_clr : 19; // [18:0], write clear
  653. uint32_t __31_19 : 13; // [31:19]
  654. } b;
  655. } REG_IDLE_TIMER_IDL_CP_INTEN_CLR_T;
  656. // idl_cp_int_sta
  657. typedef union {
  658. uint32_t v;
  659. struct
  660. {
  661. uint32_t idl_cp_int_sta : 19; // [18:0], write clear
  662. uint32_t __31_19 : 13; // [31:19]
  663. } b;
  664. } REG_IDLE_TIMER_IDL_CP_INT_STA_T;
  665. // idl_ap_inten
  666. typedef union {
  667. uint32_t v;
  668. struct
  669. {
  670. uint32_t osw2_irq : 1; // [0]
  671. uint32_t ap_gsm_pu_reach_irq : 1; // [1]
  672. uint32_t ap_timer_awk_irq : 1; // [2]
  673. uint32_t sys_wak_irq : 1; // [3]
  674. uint32_t ap_nb_pu_reach_irq : 1; // [4]
  675. uint32_t ap_target_irq : 1; // [5]
  676. uint32_t ap_timer_idle_irq : 1; // [6]
  677. uint32_t ap_load_end_irq : 1; // [7]
  678. uint32_t ap_rtc_latch_irq : 1; // [8]
  679. uint32_t ap_cpu_latch_irq : 1; // [9]
  680. uint32_t ap_em_latch_irq : 1; // [10]
  681. uint32_t __31_11 : 21; // [31:11]
  682. } b;
  683. } REG_IDLE_TIMER_IDL_AP_INTEN_T;
  684. // idl_ap_inten_set
  685. typedef union {
  686. uint32_t v;
  687. struct
  688. {
  689. uint32_t idl_ap_int_en_set : 11; // [10:0], write set
  690. uint32_t __31_11 : 21; // [31:11]
  691. } b;
  692. } REG_IDLE_TIMER_IDL_AP_INTEN_SET_T;
  693. // idl_ap_inten_clr
  694. typedef union {
  695. uint32_t v;
  696. struct
  697. {
  698. uint32_t idl_ap_int_en_clr : 11; // [10:0], write clear
  699. uint32_t __31_11 : 21; // [31:11]
  700. } b;
  701. } REG_IDLE_TIMER_IDL_AP_INTEN_CLR_T;
  702. // idl_ap_int_sta
  703. typedef union {
  704. uint32_t v;
  705. struct
  706. {
  707. uint32_t idl_ap_int_sta : 11; // [10:0], write clear
  708. uint32_t __31_11 : 21; // [31:11]
  709. } b;
  710. } REG_IDLE_TIMER_IDL_AP_INT_STA_T;
  711. // ltem1_cfsr_hfn
  712. typedef union {
  713. uint32_t v;
  714. struct
  715. {
  716. uint32_t ltem1_cfsr_hfn : 22; // [21:0]
  717. uint32_t __31_22 : 10; // [31:22]
  718. } b;
  719. } REG_IDLE_TIMER_LTEM1_CFSR_HFN_T;
  720. // ltem1_cfsr_fn
  721. typedef union {
  722. uint32_t v;
  723. struct
  724. {
  725. uint32_t ltem1_cfsr_sub : 4; // [3:0]
  726. uint32_t ltem1_cfsr_rad : 10; // [13:4]
  727. uint32_t __31_14 : 18; // [31:14]
  728. } b;
  729. } REG_IDLE_TIMER_LTEM1_CFSR_FN_T;
  730. // ltem1_cfsrs
  731. typedef union {
  732. uint32_t v;
  733. struct
  734. {
  735. uint32_t ltem1_cfsrs : 24; // [23:0]
  736. uint32_t adjust_direct1_cfsr : 1; // [24]
  737. uint32_t active_time1_cfsr : 1; // [25]
  738. uint32_t __31_26 : 6; // [31:26]
  739. } b;
  740. } REG_IDLE_TIMER_LTEM1_CFSRS_T;
  741. // ltem1_cfsr_rdh
  742. typedef union {
  743. uint32_t v;
  744. struct
  745. {
  746. uint32_t ltem1_cfsr_rdh : 22; // [21:0], read only
  747. uint32_t __31_22 : 10; // [31:22]
  748. } b;
  749. } REG_IDLE_TIMER_LTEM1_CFSR_RDH_T;
  750. // ltem1_cfsr_rdl
  751. typedef union {
  752. uint32_t v;
  753. struct
  754. {
  755. uint32_t ltem1_cfsr_rdl_sub : 4; // [3:0], read only
  756. uint32_t ltem1_cfsr_rdl_rad : 10; // [13:4], read only
  757. uint32_t __31_14 : 18; // [31:14]
  758. } b;
  759. } REG_IDLE_TIMER_LTEM1_CFSR_RDL_T;
  760. // ltem1_framc
  761. typedef union {
  762. uint32_t v;
  763. struct
  764. {
  765. uint32_t ltem1_framc : 16; // [15:0], read only
  766. uint32_t __31_16 : 16; // [31:16]
  767. } b;
  768. } REG_IDLE_TIMER_LTEM1_FRAMC_T;
  769. // ltem1_framl
  770. typedef union {
  771. uint32_t v;
  772. struct
  773. {
  774. uint32_t ltem1_framl : 16; // [15:0]
  775. uint32_t __31_16 : 16; // [31:16]
  776. } b;
  777. } REG_IDLE_TIMER_LTEM1_FRAML_T;
  778. // ltem1_framls
  779. typedef union {
  780. uint32_t v;
  781. struct
  782. {
  783. uint32_t ltem1_framls : 16; // [15:0]
  784. uint32_t active_time1_framls : 1; // [16]
  785. uint32_t __31_17 : 15; // [31:17]
  786. } b;
  787. } REG_IDLE_TIMER_LTEM1_FRAMLS_T;
  788. // ltem1_cfsr_tph
  789. typedef union {
  790. uint32_t v;
  791. struct
  792. {
  793. uint32_t ltem1_cfsr_tph : 22; // [21:0]
  794. uint32_t __31_22 : 10; // [31:22]
  795. } b;
  796. } REG_IDLE_TIMER_LTEM1_CFSR_TPH_T;
  797. // ltem1_cfsr_tpl
  798. typedef union {
  799. uint32_t v;
  800. struct
  801. {
  802. uint32_t ltem1_cfsr_tpl : 14; // [13:0]
  803. uint32_t __31_14 : 18; // [31:14]
  804. } b;
  805. } REG_IDLE_TIMER_LTEM1_CFSR_TPL_T;
  806. // ltem1_framc_tp
  807. typedef union {
  808. uint32_t v;
  809. struct
  810. {
  811. uint32_t ltem1_framc_tp : 16; // [15:0]
  812. uint32_t __31_16 : 16; // [31:16]
  813. } b;
  814. } REG_IDLE_TIMER_LTEM1_FRAMC_TP_T;
  815. // ltem2_cfsr_hfn
  816. typedef union {
  817. uint32_t v;
  818. struct
  819. {
  820. uint32_t ltem2_cfsr_hfn : 22; // [21:0]
  821. uint32_t __31_22 : 10; // [31:22]
  822. } b;
  823. } REG_IDLE_TIMER_LTEM2_CFSR_HFN_T;
  824. // ltem2_cfsr_fn
  825. typedef union {
  826. uint32_t v;
  827. struct
  828. {
  829. uint32_t ltem2_cfsr_sub : 4; // [3:0]
  830. uint32_t ltem2_cfsr_rad : 10; // [13:4]
  831. uint32_t __31_14 : 18; // [31:14]
  832. } b;
  833. } REG_IDLE_TIMER_LTEM2_CFSR_FN_T;
  834. // ltem2_cfsrs
  835. typedef union {
  836. uint32_t v;
  837. struct
  838. {
  839. uint32_t ltem2_cfsrs : 24; // [23:0]
  840. uint32_t adjust_direct2_cfsr : 1; // [24]
  841. uint32_t active_time2_cfsr : 1; // [25]
  842. uint32_t __31_26 : 6; // [31:26]
  843. } b;
  844. } REG_IDLE_TIMER_LTEM2_CFSRS_T;
  845. // ltem2_cfsr_rdh
  846. typedef union {
  847. uint32_t v;
  848. struct
  849. {
  850. uint32_t ltem2_cfsr_rdh : 22; // [21:0], read only
  851. uint32_t __31_22 : 10; // [31:22]
  852. } b;
  853. } REG_IDLE_TIMER_LTEM2_CFSR_RDH_T;
  854. // ltem2_cfsr_rdl
  855. typedef union {
  856. uint32_t v;
  857. struct
  858. {
  859. uint32_t ltem2_cfsr_rdl_sub : 4; // [3:0], read only
  860. uint32_t ltem2_cfsr_rdl_rad : 10; // [13:4], read only
  861. uint32_t __31_14 : 18; // [31:14]
  862. } b;
  863. } REG_IDLE_TIMER_LTEM2_CFSR_RDL_T;
  864. // ltem2_framc
  865. typedef union {
  866. uint32_t v;
  867. struct
  868. {
  869. uint32_t ltem2_lframc : 16; // [15:0], read only
  870. uint32_t __31_16 : 16; // [31:16]
  871. } b;
  872. } REG_IDLE_TIMER_LTEM2_FRAMC_T;
  873. // ltem2_framl
  874. typedef union {
  875. uint32_t v;
  876. struct
  877. {
  878. uint32_t ltem2_lframl : 16; // [15:0]
  879. uint32_t __31_16 : 16; // [31:16]
  880. } b;
  881. } REG_IDLE_TIMER_LTEM2_FRAML_T;
  882. // ltem2_framls
  883. typedef union {
  884. uint32_t v;
  885. struct
  886. {
  887. uint32_t ltem2_framls : 16; // [15:0]
  888. uint32_t active_time2_framls : 1; // [16]
  889. uint32_t __31_17 : 15; // [31:17]
  890. } b;
  891. } REG_IDLE_TIMER_LTEM2_FRAMLS_T;
  892. // ltem2_cfsr_tph
  893. typedef union {
  894. uint32_t v;
  895. struct
  896. {
  897. uint32_t ltem2_cfsr_tph : 22; // [21:0]
  898. uint32_t __31_22 : 10; // [31:22]
  899. } b;
  900. } REG_IDLE_TIMER_LTEM2_CFSR_TPH_T;
  901. // ltem2_cfsr_tpl
  902. typedef union {
  903. uint32_t v;
  904. struct
  905. {
  906. uint32_t ltem2_cfsr_tpl : 14; // [13:0]
  907. uint32_t __31_14 : 18; // [31:14]
  908. } b;
  909. } REG_IDLE_TIMER_LTEM2_CFSR_TPL_T;
  910. // ltem2_framc_tp
  911. typedef union {
  912. uint32_t v;
  913. struct
  914. {
  915. uint32_t ltem2_framc_tp : 16; // [15:0]
  916. uint32_t __31_16 : 16; // [31:16]
  917. } b;
  918. } REG_IDLE_TIMER_LTEM2_FRAMC_TP_T;
  919. // gsm_cfsr
  920. typedef union {
  921. uint32_t v;
  922. struct
  923. {
  924. uint32_t gsm_cfsr : 24; // [23:0]
  925. uint32_t __31_24 : 8; // [31:24]
  926. } b;
  927. } REG_IDLE_TIMER_GSM_CFSR_T;
  928. // gsm_cfsrs
  929. typedef union {
  930. uint32_t v;
  931. struct
  932. {
  933. uint32_t gsm_cfsrs : 24; // [23:0]
  934. uint32_t adjust_direct : 1; // [24]
  935. uint32_t __31_25 : 7; // [31:25]
  936. } b;
  937. } REG_IDLE_TIMER_GSM_CFSRS_T;
  938. // gsm_cfsro
  939. typedef union {
  940. uint32_t v;
  941. struct
  942. {
  943. uint32_t gsm_cfsr_overflow : 24; // [23:0]
  944. uint32_t __31_24 : 8; // [31:24]
  945. } b;
  946. } REG_IDLE_TIMER_GSM_CFSRO_T;
  947. // ltem1_fhl
  948. typedef union {
  949. uint32_t v;
  950. struct
  951. {
  952. uint32_t ltem_fhl : 22; // [21:0], read only
  953. uint32_t __31_22 : 10; // [31:22]
  954. } b;
  955. } REG_IDLE_TIMER_LTEM1_FHL_T;
  956. // ltem1_fll
  957. typedef union {
  958. uint32_t v;
  959. struct
  960. {
  961. uint32_t ltem_fll : 14; // [13:0], read only
  962. uint32_t __31_14 : 18; // [31:14]
  963. } b;
  964. } REG_IDLE_TIMER_LTEM1_FLL_T;
  965. // ltem1_fcl
  966. typedef union {
  967. uint32_t v;
  968. struct
  969. {
  970. uint32_t ltem_fcl : 16; // [15:0], read only
  971. uint32_t __31_16 : 16; // [31:16]
  972. } b;
  973. } REG_IDLE_TIMER_LTEM1_FCL_T;
  974. // ltem2_fhl
  975. typedef union {
  976. uint32_t v;
  977. struct
  978. {
  979. uint32_t ltem_fhl : 22; // [21:0], read only
  980. uint32_t __31_22 : 10; // [31:22]
  981. } b;
  982. } REG_IDLE_TIMER_LTEM2_FHL_T;
  983. // ltem2_fll
  984. typedef union {
  985. uint32_t v;
  986. struct
  987. {
  988. uint32_t ltem_fll : 14; // [13:0], read only
  989. uint32_t __31_14 : 18; // [31:14]
  990. } b;
  991. } REG_IDLE_TIMER_LTEM2_FLL_T;
  992. // ltem2_fcl
  993. typedef union {
  994. uint32_t v;
  995. struct
  996. {
  997. uint32_t ltem_fcl : 16; // [15:0], read only
  998. uint32_t __31_16 : 16; // [31:16]
  999. } b;
  1000. } REG_IDLE_TIMER_LTEM2_FCL_T;
  1001. // gsm_fl
  1002. typedef union {
  1003. uint32_t v;
  1004. struct
  1005. {
  1006. uint32_t fl : 24; // [23:0], read only
  1007. uint32_t __31_24 : 8; // [31:24]
  1008. } b;
  1009. } REG_IDLE_TIMER_GSM_FL_T;
  1010. // gsm_fcl
  1011. typedef union {
  1012. uint32_t v;
  1013. struct
  1014. {
  1015. uint32_t gsm_fcl : 17; // [16:0], read only
  1016. uint32_t __31_17 : 15; // [31:17]
  1017. } b;
  1018. } REG_IDLE_TIMER_GSM_FCL_T;
  1019. // idl_tpctrl
  1020. typedef union {
  1021. uint32_t v;
  1022. struct
  1023. {
  1024. uint32_t idle_inner_ctrl : 1; // [0]
  1025. uint32_t __3_1 : 3; // [3:1]
  1026. uint32_t idle_inner_confg : 2; // [5:4]
  1027. uint32_t __7_6 : 2; // [7:6]
  1028. uint32_t idle_mod_sel : 3; // [10:8]
  1029. uint32_t __31_11 : 21; // [31:11]
  1030. } b;
  1031. } REG_IDLE_TIMER_IDL_TPCTRL_T;
  1032. // layoutctrl
  1033. typedef union {
  1034. uint32_t v;
  1035. struct
  1036. {
  1037. uint32_t enable : 1; // [0]
  1038. uint32_t timer_select : 1; // [1]
  1039. uint32_t __7_2 : 6; // [7:2]
  1040. uint32_t chip_count : 15; // [22:8]
  1041. uint32_t __31_23 : 9; // [31:23]
  1042. } b;
  1043. } REG_IDLE_TIMER_LAYOUTCTRL_T;
  1044. // ltem1_fint_dly1
  1045. typedef union {
  1046. uint32_t v;
  1047. struct
  1048. {
  1049. uint32_t delay_time : 16; // [15:0]
  1050. uint32_t __31_16 : 16; // [31:16]
  1051. } b;
  1052. } REG_IDLE_TIMER_LTEM1_FINT_DLY1_T;
  1053. // ltem1_fint_dly2
  1054. typedef union {
  1055. uint32_t v;
  1056. struct
  1057. {
  1058. uint32_t delay_time : 16; // [15:0]
  1059. uint32_t __31_16 : 16; // [31:16]
  1060. } b;
  1061. } REG_IDLE_TIMER_LTEM1_FINT_DLY2_T;
  1062. // ltem2_fint_dly1
  1063. typedef union {
  1064. uint32_t v;
  1065. struct
  1066. {
  1067. uint32_t delay_time : 16; // [15:0]
  1068. uint32_t __31_16 : 16; // [31:16]
  1069. } b;
  1070. } REG_IDLE_TIMER_LTEM2_FINT_DLY1_T;
  1071. // ltem2_fint_dly2
  1072. typedef union {
  1073. uint32_t v;
  1074. struct
  1075. {
  1076. uint32_t delay_time : 16; // [15:0]
  1077. uint32_t __31_16 : 16; // [31:16]
  1078. } b;
  1079. } REG_IDLE_TIMER_LTEM2_FINT_DLY2_T;
  1080. // ltem1_fint_en
  1081. typedef union {
  1082. uint32_t v;
  1083. struct
  1084. {
  1085. uint32_t lte_m1_fint_enable : 10; // [9:0]
  1086. uint32_t __31_10 : 22; // [31:10]
  1087. } b;
  1088. } REG_IDLE_TIMER_LTEM1_FINT_EN_T;
  1089. // timer_en
  1090. typedef union {
  1091. uint32_t v;
  1092. struct
  1093. {
  1094. uint32_t lte_m1_timer_enable : 1; // [0]
  1095. uint32_t lte_m2_timer_enable : 1; // [1]
  1096. uint32_t gsm_timer_enable : 1; // [2]
  1097. uint32_t ltem_timer_enable : 1; // [3]
  1098. uint32_t nb_timer_enable : 1; // [4]
  1099. uint32_t gnss_ltem_timer_enable : 1; // [5]
  1100. uint32_t __31_6 : 26; // [31:6]
  1101. } b;
  1102. } REG_IDLE_TIMER_TIMER_EN_T;
  1103. // idle_frame_sta
  1104. typedef union {
  1105. uint32_t v;
  1106. struct
  1107. {
  1108. uint32_t lte_m1_frame_state : 1; // [0], write clear
  1109. uint32_t lte_m2_frame_state : 1; // [1], write clear
  1110. uint32_t gsm_frame_state : 1; // [2], write clear
  1111. uint32_t lte_m_frame_state : 1; // [3], write clear
  1112. uint32_t nb_frame_state : 1; // [4], write clear
  1113. uint32_t gnss_lte_m_frame_state : 1; // [5], write clear
  1114. uint32_t __31_6 : 26; // [31:6]
  1115. } b;
  1116. } REG_IDLE_TIMER_IDLE_FRAME_STA_T;
  1117. // idle_frame_ltem1
  1118. typedef union {
  1119. uint32_t v;
  1120. struct
  1121. {
  1122. uint32_t frame_cfsr : 22; // [21:0]
  1123. uint32_t __23_22 : 2; // [23:22]
  1124. uint32_t frame_conf : 1; // [24]
  1125. uint32_t __31_25 : 7; // [31:25]
  1126. } b;
  1127. } REG_IDLE_TIMER_IDLE_FRAME_LTEM1_T;
  1128. // idle_frame_ltem2
  1129. typedef union {
  1130. uint32_t v;
  1131. struct
  1132. {
  1133. uint32_t frame_cfsr : 22; // [21:0]
  1134. uint32_t __23_22 : 2; // [23:22]
  1135. uint32_t frame_conf : 1; // [24]
  1136. uint32_t __31_25 : 7; // [31:25]
  1137. } b;
  1138. } REG_IDLE_TIMER_IDLE_FRAME_LTEM2_T;
  1139. // idle_frame_gsm
  1140. typedef union {
  1141. uint32_t v;
  1142. struct
  1143. {
  1144. uint32_t frame_cfsr : 24; // [23:0]
  1145. uint32_t frame_conf : 1; // [24]
  1146. uint32_t __31_25 : 7; // [31:25]
  1147. } b;
  1148. } REG_IDLE_TIMER_IDLE_FRAME_GSM_T;
  1149. // idle_frame_lte_conf
  1150. typedef union {
  1151. uint32_t v;
  1152. struct
  1153. {
  1154. uint32_t frame_ref_lte_conf : 1; // [0]
  1155. uint32_t resrved : 31; // [31:1], read only
  1156. } b;
  1157. } REG_IDLE_TIMER_IDLE_FRAME_LTE_CONF_T;
  1158. // ltem_ref_fcl
  1159. typedef union {
  1160. uint32_t v;
  1161. struct
  1162. {
  1163. uint32_t ref_ltem_fcl : 15; // [14:0], read only
  1164. uint32_t __31_15 : 17; // [31:15]
  1165. } b;
  1166. } REG_IDLE_TIMER_LTEM_REF_FCL_T;
  1167. // ltem_ref_fc
  1168. typedef union {
  1169. uint32_t v;
  1170. struct
  1171. {
  1172. uint32_t ltem_ref_fc : 15; // [14:0], read only
  1173. uint32_t __31_15 : 17; // [31:15]
  1174. } b;
  1175. } REG_IDLE_TIMER_LTEM_REF_FC_T;
  1176. // gsm_framl
  1177. typedef union {
  1178. uint32_t v;
  1179. struct
  1180. {
  1181. uint32_t gsm_framl : 17; // [16:0]
  1182. uint32_t __31_17 : 15; // [31:17]
  1183. } b;
  1184. } REG_IDLE_TIMER_GSM_FRAML_T;
  1185. // idl_osw2_en
  1186. typedef union {
  1187. uint32_t v;
  1188. struct
  1189. {
  1190. uint32_t osw2_time : 31; // [30:0]
  1191. uint32_t osw2_en : 1; // [31]
  1192. } b;
  1193. } REG_IDLE_TIMER_IDL_OSW2_EN_T;
  1194. // idle_framc_gsm
  1195. typedef union {
  1196. uint32_t v;
  1197. struct
  1198. {
  1199. uint32_t framc_cfsr : 17; // [16:0]
  1200. uint32_t __31_17 : 15; // [31:17]
  1201. } b;
  1202. } REG_IDLE_TIMER_IDLE_FRAMC_GSM_T;
  1203. // ltem1_fint_dly3
  1204. typedef union {
  1205. uint32_t v;
  1206. struct
  1207. {
  1208. uint32_t delay_time : 16; // [15:0]
  1209. uint32_t __31_16 : 16; // [31:16]
  1210. } b;
  1211. } REG_IDLE_TIMER_LTEM1_FINT_DLY3_T;
  1212. // ltem2_fint_dly3
  1213. typedef union {
  1214. uint32_t v;
  1215. struct
  1216. {
  1217. uint32_t delay_time : 16; // [15:0]
  1218. uint32_t __31_16 : 16; // [31:16]
  1219. } b;
  1220. } REG_IDLE_TIMER_LTEM2_FINT_DLY3_T;
  1221. // idle_time_sel
  1222. typedef union {
  1223. uint32_t v;
  1224. struct
  1225. {
  1226. uint32_t time_sel : 1; // [0]
  1227. uint32_t __31_1 : 31; // [31:1]
  1228. } b;
  1229. } REG_IDLE_TIMER_IDLE_TIME_SEL_T;
  1230. // idl_h_gsm_lp
  1231. typedef union {
  1232. uint32_t v;
  1233. struct
  1234. {
  1235. uint32_t h_value : 27; // [26:0]
  1236. uint32_t __31_27 : 5; // [31:27]
  1237. } b;
  1238. } REG_IDLE_TIMER_IDL_H_GSM_LP_T;
  1239. // idl_h_ltem_lp
  1240. typedef union {
  1241. uint32_t v;
  1242. struct
  1243. {
  1244. uint32_t h_value : 27; // [26:0]
  1245. uint32_t __31_27 : 5; // [31:27]
  1246. } b;
  1247. } REG_IDLE_TIMER_IDL_H_LTEM_LP_T;
  1248. // idl_tc_start_nb
  1249. typedef union {
  1250. uint32_t v;
  1251. struct
  1252. {
  1253. uint32_t tc_start_mod : 2; // [1:0]
  1254. uint32_t __31_2 : 30; // [31:2]
  1255. } b;
  1256. } REG_IDLE_TIMER_IDL_TC_START_NB_T;
  1257. // idl_tc_end_nb
  1258. typedef union {
  1259. uint32_t v;
  1260. struct
  1261. {
  1262. uint32_t tc_end_mod : 2; // [1:0]
  1263. uint32_t __3_2 : 2; // [3:2]
  1264. uint32_t tc_end_framc : 17; // [20:4]
  1265. uint32_t __31_21 : 11; // [31:21]
  1266. } b;
  1267. } REG_IDLE_TIMER_IDL_TC_END_NB_T;
  1268. // nb_lp_pu_done
  1269. typedef union {
  1270. uint32_t v;
  1271. struct
  1272. {
  1273. uint32_t lp_pu_done : 1; // [0]
  1274. uint32_t __31_1 : 31; // [31:1]
  1275. } b;
  1276. } REG_IDLE_TIMER_NB_LP_PU_DONE_T;
  1277. // idl_h_nb
  1278. typedef union {
  1279. uint32_t v;
  1280. struct
  1281. {
  1282. uint32_t h_value : 27; // [26:0]
  1283. uint32_t __31_27 : 5; // [31:27]
  1284. } b;
  1285. } REG_IDLE_TIMER_IDL_H_NB_T;
  1286. // idl_h_nb_lp
  1287. typedef union {
  1288. uint32_t v;
  1289. struct
  1290. {
  1291. uint32_t h_value : 27; // [26:0]
  1292. uint32_t __31_27 : 5; // [31:27]
  1293. } b;
  1294. } REG_IDLE_TIMER_IDL_H_NB_LP_T;
  1295. // nb_frame_inten
  1296. typedef union {
  1297. uint32_t v;
  1298. struct
  1299. {
  1300. uint32_t nb_frame_irq_en : 1; // [0]
  1301. uint32_t __31_1 : 31; // [31:1]
  1302. } b;
  1303. } REG_IDLE_TIMER_NB_FRAME_INTEN_T;
  1304. // nb_frame_int_sta
  1305. typedef union {
  1306. uint32_t v;
  1307. struct
  1308. {
  1309. uint32_t gsm_frame_int_sta : 1; // [0]
  1310. uint32_t __31_1 : 31; // [31:1]
  1311. } b;
  1312. } REG_IDLE_TIMER_NB_FRAME_INT_STA_T;
  1313. // nb_cfsr
  1314. typedef union {
  1315. uint32_t v;
  1316. struct
  1317. {
  1318. uint32_t gsm_cfsr : 24; // [23:0]
  1319. uint32_t __31_24 : 8; // [31:24]
  1320. } b;
  1321. } REG_IDLE_TIMER_NB_CFSR_T;
  1322. // nb_framl
  1323. typedef union {
  1324. uint32_t v;
  1325. struct
  1326. {
  1327. uint32_t nb_framl : 17; // [16:0]
  1328. uint32_t __31_17 : 15; // [31:17]
  1329. } b;
  1330. } REG_IDLE_TIMER_NB_FRAML_T;
  1331. // nb_cfsrs
  1332. typedef union {
  1333. uint32_t v;
  1334. struct
  1335. {
  1336. uint32_t nb_cfsrs : 24; // [23:0]
  1337. uint32_t adjust_direct : 1; // [24]
  1338. uint32_t __31_25 : 7; // [31:25]
  1339. } b;
  1340. } REG_IDLE_TIMER_NB_CFSRS_T;
  1341. // nb_cfsro
  1342. typedef union {
  1343. uint32_t v;
  1344. struct
  1345. {
  1346. uint32_t nb_cfsr_overflow : 24; // [23:0]
  1347. uint32_t __31_24 : 8; // [31:24]
  1348. } b;
  1349. } REG_IDLE_TIMER_NB_CFSRO_T;
  1350. // nb_fl
  1351. typedef union {
  1352. uint32_t v;
  1353. struct
  1354. {
  1355. uint32_t fl : 24; // [23:0], read only
  1356. uint32_t __31_24 : 8; // [31:24]
  1357. } b;
  1358. } REG_IDLE_TIMER_NB_FL_T;
  1359. // nb_fcl
  1360. typedef union {
  1361. uint32_t v;
  1362. struct
  1363. {
  1364. uint32_t nb_fcl : 17; // [16:0], read only
  1365. uint32_t __31_17 : 15; // [31:17]
  1366. } b;
  1367. } REG_IDLE_TIMER_NB_FCL_T;
  1368. // idle_frame_nb
  1369. typedef union {
  1370. uint32_t v;
  1371. struct
  1372. {
  1373. uint32_t frame_cfsr : 24; // [23:0]
  1374. uint32_t frame_conf : 1; // [24]
  1375. uint32_t __31_25 : 7; // [31:25]
  1376. } b;
  1377. } REG_IDLE_TIMER_IDLE_FRAME_NB_T;
  1378. // idle_framc_nb
  1379. typedef union {
  1380. uint32_t v;
  1381. struct
  1382. {
  1383. uint32_t framc_cfsr : 17; // [16:0]
  1384. uint32_t __31_17 : 15; // [31:17]
  1385. } b;
  1386. } REG_IDLE_TIMER_IDLE_FRAMC_NB_T;
  1387. // idl_awk_en_set
  1388. typedef union {
  1389. uint32_t v;
  1390. struct
  1391. {
  1392. uint32_t awk_en_set : 21; // [20:0], write set
  1393. uint32_t __31_21 : 11; // [31:21]
  1394. } b;
  1395. } REG_IDLE_TIMER_IDL_AWK_EN_SET_T;
  1396. // idl_awk_en_clr
  1397. typedef union {
  1398. uint32_t v;
  1399. struct
  1400. {
  1401. uint32_t awk_en_clear : 21; // [20:0], write clear
  1402. uint32_t __31_21 : 11; // [31:21]
  1403. } b;
  1404. } REG_IDLE_TIMER_IDL_AWK_EN_CLR_T;
  1405. // gsm_framc
  1406. typedef union {
  1407. uint32_t v;
  1408. struct
  1409. {
  1410. uint32_t framc : 17; // [16:0], read only
  1411. uint32_t __19_17 : 3; // [19:17]
  1412. uint32_t rd_enable : 1; // [20]
  1413. uint32_t __31_21 : 11; // [31:21]
  1414. } b;
  1415. } REG_IDLE_TIMER_GSM_FRAMC_T;
  1416. // nb_framc
  1417. typedef union {
  1418. uint32_t v;
  1419. struct
  1420. {
  1421. uint32_t framc : 17; // [16:0], read only
  1422. uint32_t __19_17 : 3; // [19:17]
  1423. uint32_t rd_enable : 1; // [20]
  1424. uint32_t __31_21 : 11; // [31:21]
  1425. } b;
  1426. } REG_IDLE_TIMER_NB_FRAMC_T;
  1427. // eliminat_jitter
  1428. typedef union {
  1429. uint32_t v;
  1430. struct
  1431. {
  1432. uint32_t elimiate_en : 16; // [15:0]
  1433. uint32_t eliminat_time : 8; // [23:16]
  1434. uint32_t __31_24 : 8; // [31:24]
  1435. } b;
  1436. } REG_IDLE_TIMER_ELIMINAT_JITTER_T;
  1437. // gsm_en_sel
  1438. typedef union {
  1439. uint32_t v;
  1440. struct
  1441. {
  1442. uint32_t select : 1; // [0]
  1443. uint32_t __31_1 : 31; // [31:1]
  1444. } b;
  1445. } REG_IDLE_TIMER_GSM_EN_SEL_T;
  1446. // nb_en_sel
  1447. typedef union {
  1448. uint32_t v;
  1449. struct
  1450. {
  1451. uint32_t select : 1; // [0]
  1452. uint32_t __31_1 : 31; // [31:1]
  1453. } b;
  1454. } REG_IDLE_TIMER_NB_EN_SEL_T;
  1455. // pd_pll_sw
  1456. typedef union {
  1457. uint32_t v;
  1458. struct
  1459. {
  1460. uint32_t bbpll1 : 1; // [0]
  1461. uint32_t bbpll2 : 1; // [1]
  1462. uint32_t apll : 1; // [2]
  1463. uint32_t audiopll : 1; // [3]
  1464. uint32_t usbpll : 1; // [4]
  1465. uint32_t mempll : 1; // [5]
  1466. uint32_t dsipll : 1; // [6]
  1467. uint32_t __31_7 : 25; // [31:7]
  1468. } b;
  1469. } REG_IDLE_TIMER_PD_PLL_SW_T;
  1470. // pd_pll_sw_set
  1471. typedef union {
  1472. uint32_t v;
  1473. struct
  1474. {
  1475. uint32_t pdpllswset : 7; // [6:0], write set
  1476. uint32_t __31_7 : 25; // [31:7]
  1477. } b;
  1478. } REG_IDLE_TIMER_PD_PLL_SW_SET_T;
  1479. // pd_pll_sw_clr
  1480. typedef union {
  1481. uint32_t v;
  1482. struct
  1483. {
  1484. uint32_t pdpllswclr : 7; // [6:0], write clear
  1485. uint32_t __31_7 : 25; // [31:7]
  1486. } b;
  1487. } REG_IDLE_TIMER_PD_PLL_SW_CLR_T;
  1488. // pd_pll_sel
  1489. typedef union {
  1490. uint32_t v;
  1491. struct
  1492. {
  1493. uint32_t bbpll1 : 1; // [0]
  1494. uint32_t bbpll2 : 1; // [1]
  1495. uint32_t apll : 1; // [2]
  1496. uint32_t audiopll : 1; // [3]
  1497. uint32_t usbpll : 1; // [4]
  1498. uint32_t mempll : 1; // [5]
  1499. uint32_t dsipll : 1; // [6]
  1500. uint32_t __31_7 : 25; // [31:7]
  1501. } b;
  1502. } REG_IDLE_TIMER_PD_PLL_SEL_T;
  1503. // pd_pll_sel_set
  1504. typedef union {
  1505. uint32_t v;
  1506. struct
  1507. {
  1508. uint32_t pdpllselset : 7; // [6:0], write set
  1509. uint32_t __31_7 : 25; // [31:7]
  1510. } b;
  1511. } REG_IDLE_TIMER_PD_PLL_SEL_SET_T;
  1512. // pd_pll_sel_clr
  1513. typedef union {
  1514. uint32_t v;
  1515. struct
  1516. {
  1517. uint32_t pdpllselclr : 7; // [6:0], write clear
  1518. uint32_t __31_7 : 25; // [31:7]
  1519. } b;
  1520. } REG_IDLE_TIMER_PD_PLL_SEL_CLR_T;
  1521. // idle_cg_sw
  1522. typedef union {
  1523. uint32_t v;
  1524. struct
  1525. {
  1526. uint32_t bbpll1 : 1; // [0]
  1527. uint32_t bbpll2 : 1; // [1]
  1528. uint32_t apll : 1; // [2]
  1529. uint32_t audiopll : 1; // [3]
  1530. uint32_t usbpll : 1; // [4]
  1531. uint32_t mempll : 1; // [5]
  1532. uint32_t dsipll : 1; // [6]
  1533. uint32_t __31_7 : 25; // [31:7]
  1534. } b;
  1535. } REG_IDLE_TIMER_IDLE_CG_SW_T;
  1536. // idle_cg_sw_set
  1537. typedef union {
  1538. uint32_t v;
  1539. struct
  1540. {
  1541. uint32_t idlecgswset : 7; // [6:0], write set
  1542. uint32_t __31_7 : 25; // [31:7]
  1543. } b;
  1544. } REG_IDLE_TIMER_IDLE_CG_SW_SET_T;
  1545. // idle_cg_sw_clr
  1546. typedef union {
  1547. uint32_t v;
  1548. struct
  1549. {
  1550. uint32_t idlecgswclr : 7; // [6:0], write clear
  1551. uint32_t __31_7 : 25; // [31:7]
  1552. } b;
  1553. } REG_IDLE_TIMER_IDLE_CG_SW_CLR_T;
  1554. // idle_cg_sel
  1555. typedef union {
  1556. uint32_t v;
  1557. struct
  1558. {
  1559. uint32_t bbpll1 : 1; // [0]
  1560. uint32_t bbpll2 : 1; // [1]
  1561. uint32_t apll : 1; // [2]
  1562. uint32_t audiopll : 1; // [3]
  1563. uint32_t usbpll : 1; // [4]
  1564. uint32_t mempll : 1; // [5]
  1565. uint32_t dsipll : 1; // [6]
  1566. uint32_t __31_7 : 25; // [31:7]
  1567. } b;
  1568. } REG_IDLE_TIMER_IDLE_CG_SEL_T;
  1569. // idle_cg_sel_set
  1570. typedef union {
  1571. uint32_t v;
  1572. struct
  1573. {
  1574. uint32_t idlecgselset : 7; // [6:0], write set
  1575. uint32_t __31_7 : 25; // [31:7]
  1576. } b;
  1577. } REG_IDLE_TIMER_IDLE_CG_SEL_SET_T;
  1578. // idle_cg_sel_clr
  1579. typedef union {
  1580. uint32_t v;
  1581. struct
  1582. {
  1583. uint32_t idlecgselclr : 7; // [6:0], write clear
  1584. uint32_t __31_7 : 25; // [31:7]
  1585. } b;
  1586. } REG_IDLE_TIMER_IDLE_CG_SEL_CLR_T;
  1587. // rf_idle_enable_sw
  1588. typedef union {
  1589. uint32_t v;
  1590. struct
  1591. {
  1592. uint32_t rfidleenablesw : 1; // [0]
  1593. uint32_t __31_1 : 31; // [31:1]
  1594. } b;
  1595. } REG_IDLE_TIMER_RF_IDLE_ENABLE_SW_T;
  1596. // rf_idle_enable_sel
  1597. typedef union {
  1598. uint32_t v;
  1599. struct
  1600. {
  1601. uint32_t rfidleenablesel : 1; // [0]
  1602. uint32_t __31_1 : 31; // [31:1]
  1603. } b;
  1604. } REG_IDLE_TIMER_RF_IDLE_ENABLE_SEL_T;
  1605. // mem_ema_cfg
  1606. typedef union {
  1607. uint32_t v;
  1608. struct
  1609. {
  1610. uint32_t rftpd_rmea : 1; // [0]
  1611. uint32_t rftpd_rma : 4; // [4:1]
  1612. uint32_t rftpd_rmeb : 1; // [5]
  1613. uint32_t rftpd_rmb : 4; // [9:6]
  1614. uint32_t __31_10 : 22; // [31:10]
  1615. } b;
  1616. } REG_IDLE_TIMER_MEM_EMA_CFG_T;
  1617. // uart_ctrl
  1618. typedef union {
  1619. uint32_t v;
  1620. struct
  1621. {
  1622. uint32_t enable_clk_uart : 1; // [0]
  1623. uint32_t rst_ctrl_uart : 1; // [1]
  1624. uint32_t __31_2 : 30; // [31:2]
  1625. } b;
  1626. } REG_IDLE_TIMER_UART_CTRL_T;
  1627. // ddr_latch
  1628. typedef union {
  1629. uint32_t v;
  1630. struct
  1631. {
  1632. uint32_t lpddr_latch : 1; // [0]
  1633. uint32_t psram_latch : 1; // [1]
  1634. uint32_t __31_2 : 30; // [31:2]
  1635. } b;
  1636. } REG_IDLE_TIMER_DDR_LATCH_T;
  1637. // pad_ctrl
  1638. typedef union {
  1639. uint32_t v;
  1640. struct
  1641. {
  1642. uint32_t pad_uart_1_rxd_wpus : 1; // [0]
  1643. uint32_t pad_uart_1_rxd_se : 1; // [1]
  1644. uint32_t pad_uart_1_rxd_pull_up : 1; // [2]
  1645. uint32_t pad_uart_1_rxd_pull_dowe : 1; // [3]
  1646. uint32_t pad_uart_1_rxd_drv : 2; // [5:4]
  1647. uint32_t pad_uart_1_rxd_pull_frc : 1; // [6]
  1648. uint32_t pad_chip_pd_wpus : 1; // [7]
  1649. uint32_t pad_chip_pd_se : 1; // [8]
  1650. uint32_t pad_chip_pd_pull_up : 1; // [9]
  1651. uint32_t pad_chip_pd_pull_dowe : 1; // [10]
  1652. uint32_t pad_chip_pd_drv : 2; // [12:11]
  1653. uint32_t pad_chip_pd_pull_frc : 1; // [13]
  1654. uint32_t pad_chip_pd_out_frc : 1; // [14]
  1655. uint32_t pad_chip_pd_out : 1; // [15]
  1656. uint32_t pad_gpio_6_wpus : 1; // [16]
  1657. uint32_t pad_gpio_6_se : 1; // [17]
  1658. uint32_t pad_gpio_6_pull_up : 1; // [18]
  1659. uint32_t pad_gpio_6_pull_dowe : 1; // [19]
  1660. uint32_t pad_gpio_6_drv : 2; // [21:20]
  1661. uint32_t pad_gpio_6_pull_frc : 1; // [22]
  1662. uint32_t pad_osc_32k_wpus : 1; // [23]
  1663. uint32_t pad_osc_32k_se : 1; // [24]
  1664. uint32_t pad_osc_32k_drv : 2; // [26:25]
  1665. uint32_t pad_misc_idle_wpdi : 1; // [27]
  1666. uint32_t __31_28 : 4; // [31:28]
  1667. } b;
  1668. } REG_IDLE_TIMER_PAD_CTRL_T;
  1669. // pad_ctrl_uart_txd
  1670. typedef union {
  1671. uint32_t v;
  1672. struct
  1673. {
  1674. uint32_t pad_uart_1_txd_wpus : 1; // [0]
  1675. uint32_t pad_uart_1_txd_se : 1; // [1]
  1676. uint32_t pad_uart_1_txd_pull_up : 1; // [2]
  1677. uint32_t pad_uart_1_txd_pull_dowe : 1; // [3]
  1678. uint32_t pad_uart_1_txd_drv : 2; // [5:4]
  1679. uint32_t pad_uart_1_txd_pull_frc : 1; // [6]
  1680. uint32_t pad_uart_1_txd_out_frc : 1; // [7]
  1681. uint32_t pad_uart_1_txd_out : 1; // [8]
  1682. uint32_t __31_9 : 23; // [31:9]
  1683. } b;
  1684. } REG_IDLE_TIMER_PAD_CTRL_UART_TXD_T;
  1685. // mon_sel
  1686. typedef union {
  1687. uint32_t v;
  1688. struct
  1689. {
  1690. uint32_t mon0_sel : 2; // [1:0]
  1691. uint32_t mon1_sel : 2; // [3:2]
  1692. uint32_t mon2_sel : 2; // [5:4]
  1693. uint32_t mon3_sel : 2; // [7:6]
  1694. uint32_t mon4_sel : 2; // [9:8]
  1695. uint32_t mon5_sel : 2; // [11:10]
  1696. uint32_t mon6_sel : 2; // [13:12]
  1697. uint32_t mon7_sel : 2; // [15:14]
  1698. uint32_t mon8_sel : 2; // [17:16]
  1699. uint32_t mon9_sel : 2; // [19:18]
  1700. uint32_t mon10_sel : 2; // [21:20]
  1701. uint32_t mon11_sel : 2; // [23:22]
  1702. uint32_t mon12_sel : 2; // [25:24]
  1703. uint32_t mon13_sel : 2; // [27:26]
  1704. uint32_t mon14_sel : 2; // [29:28]
  1705. uint32_t mon15_sel : 2; // [31:30]
  1706. } b;
  1707. } REG_IDLE_TIMER_MON_SEL_T;
  1708. // target_timer_en
  1709. typedef union {
  1710. uint32_t v;
  1711. struct
  1712. {
  1713. uint32_t disable_target_timer : 1; // [0]
  1714. uint32_t __31_1 : 31; // [31:1]
  1715. } b;
  1716. } REG_IDLE_TIMER_TARGET_TIMER_EN_T;
  1717. // target_timer_stat
  1718. typedef union {
  1719. uint32_t v;
  1720. struct
  1721. {
  1722. uint32_t timer_stat_122m : 1; // [0], read only
  1723. uint32_t timer_stat_32k : 1; // [1], read only
  1724. uint32_t __31_2 : 30; // [31:2]
  1725. } b;
  1726. } REG_IDLE_TIMER_TARGET_TIMER_STAT_T;
  1727. // slow_sys_clk_sel_hwen
  1728. typedef union {
  1729. uint32_t v;
  1730. struct
  1731. {
  1732. uint32_t slow_sys_clk_sel_hwen : 1; // [0]
  1733. uint32_t __31_1 : 31; // [31:1]
  1734. } b;
  1735. } REG_IDLE_TIMER_SLOW_SYS_CLK_SEL_HWEN_T;
  1736. // slow_clk_sel_hwen
  1737. typedef union {
  1738. uint32_t v;
  1739. struct
  1740. {
  1741. uint32_t slow_clk_sel_hwen : 1; // [0]
  1742. uint32_t __31_1 : 31; // [31:1]
  1743. } b;
  1744. } REG_IDLE_TIMER_SLOW_CLK_SEL_HWEN_T;
  1745. // sleep_prot_time
  1746. typedef union {
  1747. uint32_t v;
  1748. struct
  1749. {
  1750. uint32_t prot_time : 8; // [7:0]
  1751. uint32_t __31_8 : 24; // [31:8]
  1752. } b;
  1753. } REG_IDLE_TIMER_SLEEP_PROT_TIME_T;
  1754. // h_val_sel
  1755. typedef union {
  1756. uint32_t v;
  1757. struct
  1758. {
  1759. uint32_t h_val_sel : 1; // [0]
  1760. uint32_t __31_1 : 31; // [31:1]
  1761. } b;
  1762. } REG_IDLE_TIMER_H_VAL_SEL_T;
  1763. // tp_sta
  1764. typedef union {
  1765. uint32_t v;
  1766. struct
  1767. {
  1768. uint32_t tp_sta0 : 1; // [0], write clear
  1769. uint32_t tp_sta1 : 1; // [1], read only
  1770. uint32_t tp_sta2 : 1; // [2], read only
  1771. uint32_t __31_3 : 29; // [31:3]
  1772. } b;
  1773. } REG_IDLE_TIMER_TP_STA_T;
  1774. // ltem1_framls_rel
  1775. typedef union {
  1776. uint32_t v;
  1777. struct
  1778. {
  1779. uint32_t ltem1_framls_ref : 16; // [15:0]
  1780. uint32_t adjust_direct : 1; // [16]
  1781. uint32_t __31_17 : 15; // [31:17]
  1782. } b;
  1783. } REG_IDLE_TIMER_LTEM1_FRAMLS_REL_T;
  1784. // ltem1_framls_abs
  1785. typedef union {
  1786. uint32_t v;
  1787. struct
  1788. {
  1789. uint32_t ltem1_framls_abs : 16; // [15:0]
  1790. uint32_t adjust_direct : 1; // [16]
  1791. uint32_t __31_17 : 15; // [31:17]
  1792. } b;
  1793. } REG_IDLE_TIMER_LTEM1_FRAMLS_ABS_T;
  1794. // ltem2_framls_rel
  1795. typedef union {
  1796. uint32_t v;
  1797. struct
  1798. {
  1799. uint32_t ltem2_framls_ref : 16; // [15:0]
  1800. uint32_t adjust_direct : 1; // [16]
  1801. uint32_t __31_17 : 15; // [31:17]
  1802. } b;
  1803. } REG_IDLE_TIMER_LTEM2_FRAMLS_REL_T;
  1804. // ltem2_framls_abs
  1805. typedef union {
  1806. uint32_t v;
  1807. struct
  1808. {
  1809. uint32_t ltem2_framls_abs : 16; // [15:0]
  1810. uint32_t adjust_direct : 1; // [16]
  1811. uint32_t __31_17 : 15; // [31:17]
  1812. } b;
  1813. } REG_IDLE_TIMER_LTEM2_FRAMLS_ABS_T;
  1814. // ltem1_load_en
  1815. typedef union {
  1816. uint32_t v;
  1817. struct
  1818. {
  1819. uint32_t ltem1_load_en : 1; // [0]
  1820. uint32_t __31_1 : 31; // [31:1]
  1821. } b;
  1822. } REG_IDLE_TIMER_LTEM1_LOAD_EN_T;
  1823. // ltem2_load_en
  1824. typedef union {
  1825. uint32_t v;
  1826. struct
  1827. {
  1828. uint32_t ltem2_load_en : 1; // [0]
  1829. uint32_t __31_1 : 31; // [31:1]
  1830. } b;
  1831. } REG_IDLE_TIMER_LTEM2_LOAD_EN_T;
  1832. // ltem2_fint_en
  1833. typedef union {
  1834. uint32_t v;
  1835. struct
  1836. {
  1837. uint32_t lte_m2_fint_enable : 10; // [9:0]
  1838. uint32_t __31_10 : 22; // [31:10]
  1839. } b;
  1840. } REG_IDLE_TIMER_LTEM2_FINT_EN_T;
  1841. // gnss_tstamp_en
  1842. typedef union {
  1843. uint32_t v;
  1844. struct
  1845. {
  1846. uint32_t rtc_latch_en : 1; // [0]
  1847. uint32_t cpu_latch_en : 1; // [1]
  1848. uint32_t em_latch_en : 1; // [2]
  1849. uint32_t __31_3 : 29; // [31:3]
  1850. } b;
  1851. } REG_IDLE_TIMER_GNSS_TSTAMP_EN_T;
  1852. // gnss_rtc_ltem1_fhl
  1853. typedef union {
  1854. uint32_t v;
  1855. struct
  1856. {
  1857. uint32_t gnss_rtc_ltem1_fhl : 22; // [21:0], read only
  1858. uint32_t __31_22 : 10; // [31:22]
  1859. } b;
  1860. } REG_IDLE_TIMER_GNSS_RTC_LTEM1_FHL_T;
  1861. // gnss_rtc_ltem1_fll
  1862. typedef union {
  1863. uint32_t v;
  1864. struct
  1865. {
  1866. uint32_t gnss_rtc_ltem1_fll : 14; // [13:0], read only
  1867. uint32_t __31_14 : 18; // [31:14]
  1868. } b;
  1869. } REG_IDLE_TIMER_GNSS_RTC_LTEM1_FLL_T;
  1870. // gnss_rtc_ltem1_fcl
  1871. typedef union {
  1872. uint32_t v;
  1873. struct
  1874. {
  1875. uint32_t gnss_rtc_ltem1_fcl : 18; // [17:0], read only
  1876. uint32_t __31_18 : 14; // [31:18]
  1877. } b;
  1878. } REG_IDLE_TIMER_GNSS_RTC_LTEM1_FCL_T;
  1879. // gnss_rtc_ltem2_fhl
  1880. typedef union {
  1881. uint32_t v;
  1882. struct
  1883. {
  1884. uint32_t gnss_rtc_ltem2_fhl : 22; // [21:0], read only
  1885. uint32_t __31_22 : 10; // [31:22]
  1886. } b;
  1887. } REG_IDLE_TIMER_GNSS_RTC_LTEM2_FHL_T;
  1888. // gnss_rtc_ltem2_fll
  1889. typedef union {
  1890. uint32_t v;
  1891. struct
  1892. {
  1893. uint32_t gnss_rtc_ltem2_fll : 14; // [13:0], read only
  1894. uint32_t __31_14 : 18; // [31:14]
  1895. } b;
  1896. } REG_IDLE_TIMER_GNSS_RTC_LTEM2_FLL_T;
  1897. // gnss_rtc_ltem2_fcl
  1898. typedef union {
  1899. uint32_t v;
  1900. struct
  1901. {
  1902. uint32_t gnss_rtc_ltem2_fcl : 18; // [17:0], read only
  1903. uint32_t __31_18 : 14; // [31:18]
  1904. } b;
  1905. } REG_IDLE_TIMER_GNSS_RTC_LTEM2_FCL_T;
  1906. // gnss_rtc_ltem3_fhl
  1907. typedef union {
  1908. uint32_t v;
  1909. struct
  1910. {
  1911. uint32_t gnss_rtc_ltem3_fhl : 22; // [21:0], read only
  1912. uint32_t __31_22 : 10; // [31:22]
  1913. } b;
  1914. } REG_IDLE_TIMER_GNSS_RTC_LTEM3_FHL_T;
  1915. // gnss_rtc_ltem3_fll
  1916. typedef union {
  1917. uint32_t v;
  1918. struct
  1919. {
  1920. uint32_t gnss_rtc_ltem3_fll : 14; // [13:0], read only
  1921. uint32_t __31_14 : 18; // [31:14]
  1922. } b;
  1923. } REG_IDLE_TIMER_GNSS_RTC_LTEM3_FLL_T;
  1924. // gnss_rtc_ltem3_fcl
  1925. typedef union {
  1926. uint32_t v;
  1927. struct
  1928. {
  1929. uint32_t gnss_rtc_ltem3_fcl : 18; // [17:0], read only
  1930. uint32_t __31_18 : 14; // [31:18]
  1931. } b;
  1932. } REG_IDLE_TIMER_GNSS_RTC_LTEM3_FCL_T;
  1933. // gnss_cpu_ltem1_fhl
  1934. typedef union {
  1935. uint32_t v;
  1936. struct
  1937. {
  1938. uint32_t gnss_cpu_ltem1_fhl : 22; // [21:0], read only
  1939. uint32_t __31_22 : 10; // [31:22]
  1940. } b;
  1941. } REG_IDLE_TIMER_GNSS_CPU_LTEM1_FHL_T;
  1942. // gnss_cpu_ltem1_fll
  1943. typedef union {
  1944. uint32_t v;
  1945. struct
  1946. {
  1947. uint32_t gnss_cpu_ltem1_fll : 14; // [13:0], read only
  1948. uint32_t __31_14 : 18; // [31:14]
  1949. } b;
  1950. } REG_IDLE_TIMER_GNSS_CPU_LTEM1_FLL_T;
  1951. // gnss_cpu_ltem1_fcl
  1952. typedef union {
  1953. uint32_t v;
  1954. struct
  1955. {
  1956. uint32_t gnss_cpu_ltem1_fcl : 18; // [17:0], read only
  1957. uint32_t __31_18 : 14; // [31:18]
  1958. } b;
  1959. } REG_IDLE_TIMER_GNSS_CPU_LTEM1_FCL_T;
  1960. // gnss_cpu_ltem2_fhl
  1961. typedef union {
  1962. uint32_t v;
  1963. struct
  1964. {
  1965. uint32_t gnss_cpu_ltem2_fhl : 22; // [21:0], read only
  1966. uint32_t __31_22 : 10; // [31:22]
  1967. } b;
  1968. } REG_IDLE_TIMER_GNSS_CPU_LTEM2_FHL_T;
  1969. // gnss_cpu_ltem2_fll
  1970. typedef union {
  1971. uint32_t v;
  1972. struct
  1973. {
  1974. uint32_t gnss_cpu_ltem2_fll : 14; // [13:0], read only
  1975. uint32_t __31_14 : 18; // [31:14]
  1976. } b;
  1977. } REG_IDLE_TIMER_GNSS_CPU_LTEM2_FLL_T;
  1978. // gnss_cpu_ltem2_fcl
  1979. typedef union {
  1980. uint32_t v;
  1981. struct
  1982. {
  1983. uint32_t gnss_cpu_ltem2_fcl : 18; // [17:0], read only
  1984. uint32_t __31_18 : 14; // [31:18]
  1985. } b;
  1986. } REG_IDLE_TIMER_GNSS_CPU_LTEM2_FCL_T;
  1987. // gnss_cpu_ltem3_fhl
  1988. typedef union {
  1989. uint32_t v;
  1990. struct
  1991. {
  1992. uint32_t gnss_cpu_ltem3_fhl : 22; // [21:0], read only
  1993. uint32_t __31_22 : 10; // [31:22]
  1994. } b;
  1995. } REG_IDLE_TIMER_GNSS_CPU_LTEM3_FHL_T;
  1996. // gnss_cpu_ltem3_fll
  1997. typedef union {
  1998. uint32_t v;
  1999. struct
  2000. {
  2001. uint32_t gnss_cpu_ltem3_fll : 14; // [13:0], read only
  2002. uint32_t __31_14 : 18; // [31:14]
  2003. } b;
  2004. } REG_IDLE_TIMER_GNSS_CPU_LTEM3_FLL_T;
  2005. // gnss_cpu_ltem3_fcl
  2006. typedef union {
  2007. uint32_t v;
  2008. struct
  2009. {
  2010. uint32_t gnss_cpu_ltem3_fcl : 18; // [17:0], read only
  2011. uint32_t __31_18 : 14; // [31:18]
  2012. } b;
  2013. } REG_IDLE_TIMER_GNSS_CPU_LTEM3_FCL_T;
  2014. // gnss_cpu_rtc_ltem1_fhl
  2015. typedef union {
  2016. uint32_t v;
  2017. struct
  2018. {
  2019. uint32_t gnss_cpu_rtc_ltem1_fhl : 22; // [21:0], read only
  2020. uint32_t __31_22 : 10; // [31:22]
  2021. } b;
  2022. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM1_FHL_T;
  2023. // gnss_cpu_rtc_ltem1_fll
  2024. typedef union {
  2025. uint32_t v;
  2026. struct
  2027. {
  2028. uint32_t gnss_cpu_rtc_ltem1_fll : 14; // [13:0], read only
  2029. uint32_t __31_14 : 18; // [31:14]
  2030. } b;
  2031. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM1_FLL_T;
  2032. // gnss_cpu_rtc_ltem1_fcl
  2033. typedef union {
  2034. uint32_t v;
  2035. struct
  2036. {
  2037. uint32_t gnss_cpu_rtc_ltem1_fcl : 18; // [17:0], read only
  2038. uint32_t __31_18 : 14; // [31:18]
  2039. } b;
  2040. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM1_FCL_T;
  2041. // gnss_cpu_rtc_ltem2_fhl
  2042. typedef union {
  2043. uint32_t v;
  2044. struct
  2045. {
  2046. uint32_t gnss_cpu_rtc_ltem2_fhl : 22; // [21:0], read only
  2047. uint32_t __31_22 : 10; // [31:22]
  2048. } b;
  2049. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM2_FHL_T;
  2050. // gnss_cpu_rtc_ltem2_fll
  2051. typedef union {
  2052. uint32_t v;
  2053. struct
  2054. {
  2055. uint32_t gnss_cpu_rtc_ltem2_fll : 14; // [13:0], read only
  2056. uint32_t __31_14 : 18; // [31:14]
  2057. } b;
  2058. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM2_FLL_T;
  2059. // gnss_cpu_rtc_ltem2_fcl
  2060. typedef union {
  2061. uint32_t v;
  2062. struct
  2063. {
  2064. uint32_t gnss_cpu_rtc_ltem2_fcl : 18; // [17:0], read only
  2065. uint32_t __31_18 : 14; // [31:18]
  2066. } b;
  2067. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM2_FCL_T;
  2068. // gnss_cpu_rtc_ltem3_fhl
  2069. typedef union {
  2070. uint32_t v;
  2071. struct
  2072. {
  2073. uint32_t gnss_cpu_rtc_ltem3_fhl : 22; // [21:0], read only
  2074. uint32_t __31_22 : 10; // [31:22]
  2075. } b;
  2076. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM3_FHL_T;
  2077. // gnss_cpu_rtc_ltem3_fll
  2078. typedef union {
  2079. uint32_t v;
  2080. struct
  2081. {
  2082. uint32_t gnss_cpu_rtc_ltem3_fll : 14; // [13:0], read only
  2083. uint32_t __31_14 : 18; // [31:14]
  2084. } b;
  2085. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM3_FLL_T;
  2086. // gnss_cpu_rtc_ltem3_fcl
  2087. typedef union {
  2088. uint32_t v;
  2089. struct
  2090. {
  2091. uint32_t gnss_cpu_rtc_ltem3_fcl : 18; // [17:0], read only
  2092. uint32_t __31_18 : 14; // [31:18]
  2093. } b;
  2094. } REG_IDLE_TIMER_GNSS_CPU_RTC_LTEM3_FCL_T;
  2095. // gnss_em_ltem1_fhl
  2096. typedef union {
  2097. uint32_t v;
  2098. struct
  2099. {
  2100. uint32_t gnss_em_ltem1_fhl : 22; // [21:0], read only
  2101. uint32_t __31_22 : 10; // [31:22]
  2102. } b;
  2103. } REG_IDLE_TIMER_GNSS_EM_LTEM1_FHL_T;
  2104. // gnss_em_ltem1_fll
  2105. typedef union {
  2106. uint32_t v;
  2107. struct
  2108. {
  2109. uint32_t gnss_em_ltem1_fll : 14; // [13:0], read only
  2110. uint32_t __31_14 : 18; // [31:14]
  2111. } b;
  2112. } REG_IDLE_TIMER_GNSS_EM_LTEM1_FLL_T;
  2113. // gnss_em_ltem1_fcl
  2114. typedef union {
  2115. uint32_t v;
  2116. struct
  2117. {
  2118. uint32_t gnss_em_ltem1_fcl : 18; // [17:0], read only
  2119. uint32_t __31_18 : 14; // [31:18]
  2120. } b;
  2121. } REG_IDLE_TIMER_GNSS_EM_LTEM1_FCL_T;
  2122. // gnss_em_ltem2_fhl
  2123. typedef union {
  2124. uint32_t v;
  2125. struct
  2126. {
  2127. uint32_t gnss_em_ltem2_fhl : 22; // [21:0], read only
  2128. uint32_t __31_22 : 10; // [31:22]
  2129. } b;
  2130. } REG_IDLE_TIMER_GNSS_EM_LTEM2_FHL_T;
  2131. // gnss_em_ltem2_fll
  2132. typedef union {
  2133. uint32_t v;
  2134. struct
  2135. {
  2136. uint32_t gnss_em_ltem2_fll : 14; // [13:0], read only
  2137. uint32_t __31_14 : 18; // [31:14]
  2138. } b;
  2139. } REG_IDLE_TIMER_GNSS_EM_LTEM2_FLL_T;
  2140. // gnss_em_ltem2_fcl
  2141. typedef union {
  2142. uint32_t v;
  2143. struct
  2144. {
  2145. uint32_t gnss_em_ltem2_fcl : 18; // [17:0], read only
  2146. uint32_t __31_18 : 14; // [31:18]
  2147. } b;
  2148. } REG_IDLE_TIMER_GNSS_EM_LTEM2_FCL_T;
  2149. // gnss_em_ltem3_fhl
  2150. typedef union {
  2151. uint32_t v;
  2152. struct
  2153. {
  2154. uint32_t gnss_em_ltem3_fhl : 22; // [21:0], read only
  2155. uint32_t __31_22 : 10; // [31:22]
  2156. } b;
  2157. } REG_IDLE_TIMER_GNSS_EM_LTEM3_FHL_T;
  2158. // gnss_em_ltem3_fll
  2159. typedef union {
  2160. uint32_t v;
  2161. struct
  2162. {
  2163. uint32_t gnss_em_ltem3_fll : 14; // [13:0], read only
  2164. uint32_t __31_14 : 18; // [31:14]
  2165. } b;
  2166. } REG_IDLE_TIMER_GNSS_EM_LTEM3_FLL_T;
  2167. // gnss_em_ltem3_fcl
  2168. typedef union {
  2169. uint32_t v;
  2170. struct
  2171. {
  2172. uint32_t gnss_em_ltem3_fcl : 18; // [17:0], read only
  2173. uint32_t __31_18 : 14; // [31:18]
  2174. } b;
  2175. } REG_IDLE_TIMER_GNSS_EM_LTEM3_FCL_T;
  2176. // ltem3_load_en
  2177. typedef union {
  2178. uint32_t v;
  2179. struct
  2180. {
  2181. uint32_t ltem3_load_en : 1; // [0]
  2182. uint32_t __31_1 : 31; // [31:1]
  2183. } b;
  2184. } REG_IDLE_TIMER_LTEM3_LOAD_EN_T;
  2185. // idl_fn_ltem3
  2186. typedef union {
  2187. uint32_t v;
  2188. struct
  2189. {
  2190. uint32_t idfn_sub_ltem3 : 4; // [3:0], read only
  2191. uint32_t idfn_rad_ltem3 : 28; // [31:4], read only
  2192. } b;
  2193. } REG_IDLE_TIMER_IDL_FN_LTEM3_T;
  2194. // ltem3_frame_inten
  2195. typedef union {
  2196. uint32_t v;
  2197. struct
  2198. {
  2199. uint32_t ltem3_frame1_irq_en : 1; // [0]
  2200. uint32_t ltem3_frame2_irq_en : 1; // [1]
  2201. uint32_t ltem3_frame3_irq_en : 1; // [2]
  2202. uint32_t __31_3 : 29; // [31:3]
  2203. } b;
  2204. } REG_IDLE_TIMER_LTEM3_FRAME_INTEN_T;
  2205. // ltem3_frame_int_sta
  2206. typedef union {
  2207. uint32_t v;
  2208. struct
  2209. {
  2210. uint32_t ltem3_frame_int_sta : 3; // [2:0], write clear
  2211. uint32_t __31_3 : 29; // [31:3]
  2212. } b;
  2213. } REG_IDLE_TIMER_LTEM3_FRAME_INT_STA_T;
  2214. // ltem3_cfsr_hfn
  2215. typedef union {
  2216. uint32_t v;
  2217. struct
  2218. {
  2219. uint32_t ltem3_cfsr_hfn : 22; // [21:0]
  2220. uint32_t __31_22 : 10; // [31:22]
  2221. } b;
  2222. } REG_IDLE_TIMER_LTEM3_CFSR_HFN_T;
  2223. // ltem3_cfsr_fn
  2224. typedef union {
  2225. uint32_t v;
  2226. struct
  2227. {
  2228. uint32_t ltem3_cfsr_sub : 4; // [3:0]
  2229. uint32_t ltem3_cfsr_rad : 10; // [13:4]
  2230. uint32_t __31_14 : 18; // [31:14]
  2231. } b;
  2232. } REG_IDLE_TIMER_LTEM3_CFSR_FN_T;
  2233. // ltem3_cfsrs
  2234. typedef union {
  2235. uint32_t v;
  2236. struct
  2237. {
  2238. uint32_t ltem3_cfsrs : 24; // [23:0]
  2239. uint32_t adjust_direct3_cfsr : 1; // [24]
  2240. uint32_t active_time3_cfsr : 1; // [25]
  2241. uint32_t __31_26 : 6; // [31:26]
  2242. } b;
  2243. } REG_IDLE_TIMER_LTEM3_CFSRS_T;
  2244. // ltem3_cfsr_rdh
  2245. typedef union {
  2246. uint32_t v;
  2247. struct
  2248. {
  2249. uint32_t ltem3_cfsr_rdh : 22; // [21:0], read only
  2250. uint32_t __31_22 : 10; // [31:22]
  2251. } b;
  2252. } REG_IDLE_TIMER_LTEM3_CFSR_RDH_T;
  2253. // ltem3_cfsr_rdl
  2254. typedef union {
  2255. uint32_t v;
  2256. struct
  2257. {
  2258. uint32_t ltem3_cfsr_rdl_sub : 4; // [3:0], read only
  2259. uint32_t ltem3_cfsr_rdl_rad : 10; // [13:4], read only
  2260. uint32_t __31_14 : 18; // [31:14]
  2261. } b;
  2262. } REG_IDLE_TIMER_LTEM3_CFSR_RDL_T;
  2263. // ltem3_framc
  2264. typedef union {
  2265. uint32_t v;
  2266. struct
  2267. {
  2268. uint32_t lframc3 : 16; // [15:0], read only
  2269. uint32_t __31_16 : 16; // [31:16]
  2270. } b;
  2271. } REG_IDLE_TIMER_LTEM3_FRAMC_T;
  2272. // ltem3_framl
  2273. typedef union {
  2274. uint32_t v;
  2275. struct
  2276. {
  2277. uint32_t lframl3 : 16; // [15:0]
  2278. uint32_t __31_16 : 16; // [31:16]
  2279. } b;
  2280. } REG_IDLE_TIMER_LTEM3_FRAML_T;
  2281. // ltem3_framls
  2282. typedef union {
  2283. uint32_t v;
  2284. struct
  2285. {
  2286. uint32_t lframls3 : 16; // [15:0]
  2287. uint32_t active_time3_framls : 1; // [16]
  2288. uint32_t __31_17 : 15; // [31:17]
  2289. } b;
  2290. } REG_IDLE_TIMER_LTEM3_FRAMLS_T;
  2291. // ltem3_cfsr_tph
  2292. typedef union {
  2293. uint32_t v;
  2294. struct
  2295. {
  2296. uint32_t ltem3_cfsr_tph : 22; // [21:0]
  2297. uint32_t __31_22 : 10; // [31:22]
  2298. } b;
  2299. } REG_IDLE_TIMER_LTEM3_CFSR_TPH_T;
  2300. // ltem3_cfsr_tpl
  2301. typedef union {
  2302. uint32_t v;
  2303. struct
  2304. {
  2305. uint32_t ltem3_cfsr_tpl : 14; // [13:0]
  2306. uint32_t __31_14 : 18; // [31:14]
  2307. } b;
  2308. } REG_IDLE_TIMER_LTEM3_CFSR_TPL_T;
  2309. // ltem3_framc_tp
  2310. typedef union {
  2311. uint32_t v;
  2312. struct
  2313. {
  2314. uint32_t ltem3_framc_tp : 16; // [15:0]
  2315. uint32_t __31_16 : 16; // [31:16]
  2316. } b;
  2317. } REG_IDLE_TIMER_LTEM3_FRAMC_TP_T;
  2318. // ltem3_framls_rel
  2319. typedef union {
  2320. uint32_t v;
  2321. struct
  2322. {
  2323. uint32_t ltem3_framls_ref : 16; // [15:0]
  2324. uint32_t adjust_direct : 1; // [16]
  2325. uint32_t __31_17 : 15; // [31:17]
  2326. } b;
  2327. } REG_IDLE_TIMER_LTEM3_FRAMLS_REL_T;
  2328. // ltem3_framls_abs
  2329. typedef union {
  2330. uint32_t v;
  2331. struct
  2332. {
  2333. uint32_t ltem3_framls_abs : 16; // [15:0]
  2334. uint32_t adjust_direct : 1; // [16]
  2335. uint32_t __31_17 : 15; // [31:17]
  2336. } b;
  2337. } REG_IDLE_TIMER_LTEM3_FRAMLS_ABS_T;
  2338. // lte3_fint_dly1
  2339. typedef union {
  2340. uint32_t v;
  2341. struct
  2342. {
  2343. uint32_t delay3_time1 : 16; // [15:0]
  2344. uint32_t __31_16 : 16; // [31:16]
  2345. } b;
  2346. } REG_IDLE_TIMER_LTE3_FINT_DLY1_T;
  2347. // ltem3_fint_dly2
  2348. typedef union {
  2349. uint32_t v;
  2350. struct
  2351. {
  2352. uint32_t delay3_time2 : 16; // [15:0]
  2353. uint32_t __31_16 : 16; // [31:16]
  2354. } b;
  2355. } REG_IDLE_TIMER_LTEM3_FINT_DLY2_T;
  2356. // ltem3_fint_dly3
  2357. typedef union {
  2358. uint32_t v;
  2359. struct
  2360. {
  2361. uint32_t delay3_time3 : 16; // [15:0]
  2362. uint32_t __31_16 : 16; // [31:16]
  2363. } b;
  2364. } REG_IDLE_TIMER_LTEM3_FINT_DLY3_T;
  2365. // ltem3_fint_en
  2366. typedef union {
  2367. uint32_t v;
  2368. struct
  2369. {
  2370. uint32_t lte_m3_fint_enable : 10; // [9:0]
  2371. uint32_t __31_10 : 22; // [31:10]
  2372. } b;
  2373. } REG_IDLE_TIMER_LTEM3_FINT_EN_T;
  2374. // ltem3_fhl
  2375. typedef union {
  2376. uint32_t v;
  2377. struct
  2378. {
  2379. uint32_t ltem3_fhl : 22; // [21:0], read only
  2380. uint32_t __31_22 : 10; // [31:22]
  2381. } b;
  2382. } REG_IDLE_TIMER_LTEM3_FHL_T;
  2383. // ltem3_fll
  2384. typedef union {
  2385. uint32_t v;
  2386. struct
  2387. {
  2388. uint32_t ltem3_fll : 14; // [13:0], read only
  2389. uint32_t __31_14 : 18; // [31:14]
  2390. } b;
  2391. } REG_IDLE_TIMER_LTEM3_FLL_T;
  2392. // ltem3_fcl
  2393. typedef union {
  2394. uint32_t v;
  2395. struct
  2396. {
  2397. uint32_t ltem3_fcl : 16; // [15:0], read only
  2398. uint32_t __31_16 : 16; // [31:16]
  2399. } b;
  2400. } REG_IDLE_TIMER_LTEM3_FCL_T;
  2401. // idle_frame_ltem3
  2402. typedef union {
  2403. uint32_t v;
  2404. struct
  2405. {
  2406. uint32_t frame3_cfsr : 22; // [21:0]
  2407. uint32_t __23_22 : 2; // [23:22]
  2408. uint32_t frame3_conf : 1; // [24]
  2409. uint32_t __31_25 : 7; // [31:25]
  2410. } b;
  2411. } REG_IDLE_TIMER_IDLE_FRAME_LTEM3_T;
  2412. // idl_ctrl_sys1
  2413. #define IDLE_TIMER_IDCT_CTRL_SYS1 (1 << 0)
  2414. // idl_ctrl_sys2
  2415. #define IDLE_TIMER_IDCT_CTRL_SYS2 (1 << 0)
  2416. // idl_en
  2417. #define IDLE_TIMER_IDL_CP_EN (1 << 0)
  2418. #define IDLE_TIMER_IDL_AP_EN (1 << 1)
  2419. // idl_wcn_en
  2420. #define IDLE_TIMER_WCN_CHIP_PD (1 << 0)
  2421. #define IDLE_TIMER_WCN_PD_XTAL (1 << 1)
  2422. #define IDLE_TIMER_WCN_PD_PLL (1 << 2)
  2423. #define IDLE_TIMER_WCN_IDLE_CG (1 << 3)
  2424. #define IDLE_TIMER_WCN_RES_VAL (1 << 4)
  2425. // idl_ctrl_timer
  2426. #define IDLE_TIMER_IDCT_CTRL_TIMER (1 << 0)
  2427. // idl_m2_sys
  2428. #define IDLE_TIMER_M2_SYS(n) (((n)&0xffff) << 0)
  2429. #define IDLE_TIMER_M1_SYS(n) (((n)&0xffff) << 16)
  2430. // idl_tc_start
  2431. #define IDLE_TIMER_TC_START_MOD(n) (((n)&0x3) << 0)
  2432. // idl_tc_end
  2433. #define IDLE_TIMER_TC_END_MOD(n) (((n)&0x3) << 0)
  2434. #define IDLE_TIMER_TC_END_FRAMC(n) (((n)&0x1ffff) << 4)
  2435. // idl_awk_timer
  2436. #define IDLE_TIMER_WAKE_TIMER (1 << 0)
  2437. // gsm_lp_pu_done
  2438. #define IDLE_TIMER_LP_PU_DONE (1 << 0)
  2439. // gsm_frame_inten
  2440. #define IDLE_TIMER_GSM_FRAME_IRQ_EN (1 << 0)
  2441. // gsm_frame_int_sta
  2442. #define IDLE_TIMER_GSM_FRAME_INT_STA (1 << 0)
  2443. // ltem1_frame_inten
  2444. #define IDLE_TIMER_LTEM1_FRAME1_IRQ_EN (1 << 0)
  2445. #define IDLE_TIMER_LTEM1_FRAME2_IRQ_EN (1 << 1)
  2446. #define IDLE_TIMER_LTEM1_FRAME3_IRQ_EN (1 << 2)
  2447. // ltem1_frame_int_sta
  2448. #define IDLE_TIMER_LTEM1_FRAME_INT_STA(n) (((n)&0x7) << 0)
  2449. // ltem2_frame_inten
  2450. #define IDLE_TIMER_LTEM2_FRAME1_IRQ_EN (1 << 0)
  2451. #define IDLE_TIMER_LTEM2_FRAME2_IRQ_EN (1 << 1)
  2452. #define IDLE_TIMER_LTEM2_FRAME3_IRQ_EN (1 << 2)
  2453. // ltem2_frame_int_sta
  2454. #define IDLE_TIMER_LTEM2_FRAME_INT_STA(n) (((n)&0x7) << 0)
  2455. // idl_sta
  2456. #define IDLE_TIMER_IDLE_SYS_STAT (1 << 0)
  2457. #define IDLE_TIMER_IDLE_GSM_TIMER_STAT (1 << 1)
  2458. #define IDLE_TIMER_IDLE_LTEM1_TIMER_STAT (1 << 2)
  2459. #define IDLE_TIMER_IDLE_LTEM2_TIMER_STAT (1 << 3)
  2460. #define IDLE_TIMER_H_STAT (1 << 4)
  2461. #define IDLE_TIMER_IDLE_NB_TIMER_STAT (1 << 5)
  2462. #define IDLE_TIMER_IDLE_LTEM3_TIMER_STAT (1 << 6)
  2463. // idl_h_ctrl
  2464. #define IDLE_TIMER_H_CTRL_EN (1 << 1)
  2465. #define IDLE_TIMER_H_AUTO_EN (1 << 2)
  2466. #define IDLE_TIMER_H_RUN_TIME(n) (((n)&0xf) << 3)
  2467. // idl_h_val
  2468. #define IDLE_TIMER_H_VALUE(n) (((n)&0x7ffffff) << 0)
  2469. // idl_h_gsm
  2470. #define IDLE_TIMER_H_VALUE(n) (((n)&0x7ffffff) << 0)
  2471. // idl_h_ltem
  2472. #define IDLE_TIMER_H_VALUE(n) (((n)&0x7ffffff) << 0)
  2473. // idl_awk_en
  2474. #define IDLE_TIMER_AWK0_EN (1 << 0)
  2475. #define IDLE_TIMER_AWK1_EN (1 << 1)
  2476. #define IDLE_TIMER_AWK2_EN (1 << 2)
  2477. #define IDLE_TIMER_AWK3_EN (1 << 3)
  2478. #define IDLE_TIMER_AWK4_EN (1 << 4)
  2479. #define IDLE_TIMER_AWK5_EN (1 << 5)
  2480. #define IDLE_TIMER_AWK6_EN (1 << 6)
  2481. #define IDLE_TIMER_AWK7_EN (1 << 7)
  2482. #define IDLE_TIMER_AWK8_EN (1 << 8)
  2483. #define IDLE_TIMER_AWK9_EN (1 << 9)
  2484. #define IDLE_TIMER_AWK10_EN (1 << 10)
  2485. #define IDLE_TIMER_AWK11_EN (1 << 11)
  2486. #define IDLE_TIMER_AWK12_EN (1 << 12)
  2487. #define IDLE_TIMER_AWK13_EN (1 << 13)
  2488. #define IDLE_TIMER_AWK14_EN (1 << 14)
  2489. #define IDLE_TIMER_AWK15_EN (1 << 15)
  2490. #define IDLE_TIMER_AWK_OSW1_EN (1 << 16)
  2491. #define IDLE_TIMER_AWK_OSW2_EN (1 << 17)
  2492. #define IDLE_TIMER_AWK_SELF_EN (1 << 18)
  2493. #define IDLE_TIMER_GSM_LP_PU_REACH_EN (1 << 19)
  2494. #define IDLE_TIMER_NB_LP_PU_REACH_EN (1 << 20)
  2495. // idl_awk_st
  2496. #define IDLE_TIMER_AWK0_AWK_STAT (1 << 0)
  2497. #define IDLE_TIMER_AWK1_AWK_STAT (1 << 1)
  2498. #define IDLE_TIMER_AWK2_AWK_STAT (1 << 2)
  2499. #define IDLE_TIMER_AWK3_AWK_STAT (1 << 3)
  2500. #define IDLE_TIMER_AWK4_AWK_STAT (1 << 4)
  2501. #define IDLE_TIMER_AWK5_AWK_STAT (1 << 5)
  2502. #define IDLE_TIMER_AWK6_AWK_STAT (1 << 6)
  2503. #define IDLE_TIMER_AWK7_AWK_STAT (1 << 7)
  2504. #define IDLE_TIMER_AWK8_AWK_STAT (1 << 8)
  2505. #define IDLE_TIMER_AWK9_AWK_STAT (1 << 9)
  2506. #define IDLE_TIMER_AWK10_AWK_STAT (1 << 10)
  2507. #define IDLE_TIMER_AWK11_AWK_STAT (1 << 11)
  2508. #define IDLE_TIMER_AWK12_AWK_STAT (1 << 12)
  2509. #define IDLE_TIMER_AWK13_AWK_STAT (1 << 13)
  2510. #define IDLE_TIMER_AWK14_AWK_STAT (1 << 14)
  2511. #define IDLE_TIMER_AWK15_AWK_STAT (1 << 15)
  2512. #define IDLE_TIMER_AWK_OSW1_STAT (1 << 16)
  2513. #define IDLE_TIMER_AWK_OSW2_STAT (1 << 17)
  2514. #define IDLE_TIMER_AWK_SELF_STAT (1 << 18)
  2515. #define IDLE_TIMER_GSM_LP_PU_REACH_STAT (1 << 19)
  2516. #define IDLE_TIMER_NB_LP_PU_REACH_STAT (1 << 20)
  2517. #define IDLE_TIMER_AWK_UP_STAT (1 << 21)
  2518. #define IDLE_TIMER_IDLE_STAT (1 << 22)
  2519. #define IDLE_TIMER_POW_STA (1 << 23)
  2520. #define IDLE_TIMER_THR_STA (1 << 24)
  2521. #define IDLE_TIMER_POW_DFE_STA (1 << 25)
  2522. // idl_awk_self
  2523. #define IDLE_TIMER_WAKE_SELF (1 << 0)
  2524. // idl_osw1_en
  2525. #define IDLE_TIMER_OSW1_TIME(n) (((n)&0x7fffffff) << 0)
  2526. #define IDLE_TIMER_OSW1_EN (1 << 31)
  2527. // idl_fn_ltem1
  2528. #define IDLE_TIMER_IDFN_SUB_LTEM(n) (((n)&0xf) << 0)
  2529. #define IDLE_TIMER_IDFN_RAD_LTEM(n) (((n)&0xfffffff) << 4)
  2530. // idl_fn_ltem2
  2531. #define IDLE_TIMER_IDFN_SUB_LTEM(n) (((n)&0xf) << 0)
  2532. #define IDLE_TIMER_IDFN_RAD_LTEM(n) (((n)&0xfffffff) << 4)
  2533. // idl_ltem_rfl
  2534. #define IDLE_TIMER_LTEM_IDLE_RADIOFRAME_PARAMETER(n) (((n)&0x1fffff) << 0)
  2535. // idl_ltem_sfl
  2536. #define IDLE_TIMER_LTEM_IDLE_FRAME_PARAMETER(n) (((n)&0x1ffff) << 0)
  2537. // idl_sig_en
  2538. #define IDLE_TIMER_CHIP_PD_EN (1 << 0)
  2539. #define IDLE_TIMER_PD_XTAL_EN (1 << 1)
  2540. #define IDLE_TIMER_PD_PLL_EN (1 << 2)
  2541. #define IDLE_TIMER_IDLE_CG_EN (1 << 3)
  2542. // idl_sig_timer
  2543. #define IDLE_TIMER_T1(n) (((n)&0xff) << 0)
  2544. #define IDLE_TIMER_T2(n) (((n)&0xff) << 8)
  2545. #define IDLE_TIMER_T3(n) (((n)&0xff) << 16)
  2546. #define IDLE_TIMER_T4(n) (((n)&0xff) << 24)
  2547. // idl_cp_inten
  2548. #define IDLE_TIMER_LAYOUT_IRQ (1 << 0)
  2549. #define IDLE_TIMER_IDLE_H_IRQ (1 << 1)
  2550. #define IDLE_TIMER_IDLE_FRAME_IRQ (1 << 2)
  2551. #define IDLE_TIMER_IDL_TSTAMP_IRQ (1 << 3)
  2552. #define IDLE_TIMER_OSW1_IRQ (1 << 4)
  2553. #define IDLE_TIMER_GSM_TC_START_IRQ (1 << 5)
  2554. #define IDLE_TIMER_GSM_TC_END_IRQ (1 << 6)
  2555. #define IDLE_TIMER_CP_GSM_PU_REACH_IRQ (1 << 7)
  2556. #define IDLE_TIMER_CP_TIMER_AWK_IRQ (1 << 8)
  2557. #define IDLE_TIMER_IDL_CP_INTEN_SYS_WAK_IRQ (1 << 9)
  2558. #define IDLE_TIMER_NB_TC_START_IRQ (1 << 10)
  2559. #define IDLE_TIMER_NB_TC_END_IRQ (1 << 11)
  2560. #define IDLE_TIMER_CP_NB_PU_REACH_IRQ (1 << 12)
  2561. #define IDLE_TIMER_CP_TARGET_IRQ (1 << 13)
  2562. #define IDLE_TIMER_CP_TIMER_IDLE_IRQ (1 << 14)
  2563. #define IDLE_TIMER_CP_LOAD_END_IRQ (1 << 15)
  2564. #define IDLE_TIMER_CP_RTC_LATCH_IRQ (1 << 16)
  2565. #define IDLE_TIMER_CP_CPU_LATCH_IRQ (1 << 17)
  2566. #define IDLE_TIMER_CP_EM_LATCH_IRQ (1 << 18)
  2567. // idl_cp_inten_set
  2568. #define IDLE_TIMER_IDL_CP_INT_EN_SET(n) (((n)&0x7ffff) << 0)
  2569. // idl_cp_inten_clr
  2570. #define IDLE_TIMER_IDL_CP_INT_EN_CLR(n) (((n)&0x7ffff) << 0)
  2571. // idl_cp_int_sta
  2572. #define IDLE_TIMER_IDL_CP_INT_STA(n) (((n)&0x7ffff) << 0)
  2573. // idl_ap_inten
  2574. #define IDLE_TIMER_OSW2_IRQ (1 << 0)
  2575. #define IDLE_TIMER_AP_GSM_PU_REACH_IRQ (1 << 1)
  2576. #define IDLE_TIMER_AP_TIMER_AWK_IRQ (1 << 2)
  2577. #define IDLE_TIMER_IDL_AP_INTEN_SYS_WAK_IRQ (1 << 3)
  2578. #define IDLE_TIMER_AP_NB_PU_REACH_IRQ (1 << 4)
  2579. #define IDLE_TIMER_AP_TARGET_IRQ (1 << 5)
  2580. #define IDLE_TIMER_AP_TIMER_IDLE_IRQ (1 << 6)
  2581. #define IDLE_TIMER_AP_LOAD_END_IRQ (1 << 7)
  2582. #define IDLE_TIMER_AP_RTC_LATCH_IRQ (1 << 8)
  2583. #define IDLE_TIMER_AP_CPU_LATCH_IRQ (1 << 9)
  2584. #define IDLE_TIMER_AP_EM_LATCH_IRQ (1 << 10)
  2585. // idl_ap_inten_set
  2586. #define IDLE_TIMER_IDL_AP_INT_EN_SET(n) (((n)&0x7ff) << 0)
  2587. // idl_ap_inten_clr
  2588. #define IDLE_TIMER_IDL_AP_INT_EN_CLR(n) (((n)&0x7ff) << 0)
  2589. // idl_ap_int_sta
  2590. #define IDLE_TIMER_IDL_AP_INT_STA(n) (((n)&0x7ff) << 0)
  2591. // ltem1_cfsr_hfn
  2592. #define IDLE_TIMER_LTEM1_CFSR_HFN(n) (((n)&0x3fffff) << 0)
  2593. // ltem1_cfsr_fn
  2594. #define IDLE_TIMER_LTEM1_CFSR_SUB(n) (((n)&0xf) << 0)
  2595. #define IDLE_TIMER_LTEM1_CFSR_RAD(n) (((n)&0x3ff) << 4)
  2596. // ltem1_cfsrs
  2597. #define IDLE_TIMER_LTEM1_CFSRS(n) (((n)&0xffffff) << 0)
  2598. #define IDLE_TIMER_ADJUST_DIRECT1_CFSR (1 << 24)
  2599. #define IDLE_TIMER_ACTIVE_TIME1_CFSR (1 << 25)
  2600. // ltem1_cfsr_rdh
  2601. #define IDLE_TIMER_LTEM1_CFSR_RDH(n) (((n)&0x3fffff) << 0)
  2602. // ltem1_cfsr_rdl
  2603. #define IDLE_TIMER_LTEM1_CFSR_RDL_SUB(n) (((n)&0xf) << 0)
  2604. #define IDLE_TIMER_LTEM1_CFSR_RDL_RAD(n) (((n)&0x3ff) << 4)
  2605. // ltem1_framc
  2606. #define IDLE_TIMER_LTEM1_FRAMC(n) (((n)&0xffff) << 0)
  2607. // ltem1_framl
  2608. #define IDLE_TIMER_LTEM1_FRAML(n) (((n)&0xffff) << 0)
  2609. // ltem1_framls
  2610. #define IDLE_TIMER_LTEM1_FRAMLS(n) (((n)&0xffff) << 0)
  2611. #define IDLE_TIMER_ACTIVE_TIME1_FRAMLS (1 << 16)
  2612. // ltem1_cfsr_tph
  2613. #define IDLE_TIMER_LTEM1_CFSR_TPH(n) (((n)&0x3fffff) << 0)
  2614. // ltem1_cfsr_tpl
  2615. #define IDLE_TIMER_LTEM1_CFSR_TPL(n) (((n)&0x3fff) << 0)
  2616. // ltem1_framc_tp
  2617. #define IDLE_TIMER_LTEM1_FRAMC_TP(n) (((n)&0xffff) << 0)
  2618. // ltem2_cfsr_hfn
  2619. #define IDLE_TIMER_LTEM2_CFSR_HFN(n) (((n)&0x3fffff) << 0)
  2620. // ltem2_cfsr_fn
  2621. #define IDLE_TIMER_LTEM2_CFSR_SUB(n) (((n)&0xf) << 0)
  2622. #define IDLE_TIMER_LTEM2_CFSR_RAD(n) (((n)&0x3ff) << 4)
  2623. // ltem2_cfsrs
  2624. #define IDLE_TIMER_LTEM2_CFSRS(n) (((n)&0xffffff) << 0)
  2625. #define IDLE_TIMER_ADJUST_DIRECT2_CFSR (1 << 24)
  2626. #define IDLE_TIMER_ACTIVE_TIME2_CFSR (1 << 25)
  2627. // ltem2_cfsr_rdh
  2628. #define IDLE_TIMER_LTEM2_CFSR_RDH(n) (((n)&0x3fffff) << 0)
  2629. // ltem2_cfsr_rdl
  2630. #define IDLE_TIMER_LTEM2_CFSR_RDL_SUB(n) (((n)&0xf) << 0)
  2631. #define IDLE_TIMER_LTEM2_CFSR_RDL_RAD(n) (((n)&0x3ff) << 4)
  2632. // ltem2_framc
  2633. #define IDLE_TIMER_LTEM2_LFRAMC(n) (((n)&0xffff) << 0)
  2634. // ltem2_framl
  2635. #define IDLE_TIMER_LTEM2_LFRAML(n) (((n)&0xffff) << 0)
  2636. // ltem2_framls
  2637. #define IDLE_TIMER_LTEM2_FRAMLS(n) (((n)&0xffff) << 0)
  2638. #define IDLE_TIMER_ACTIVE_TIME2_FRAMLS (1 << 16)
  2639. // ltem2_cfsr_tph
  2640. #define IDLE_TIMER_LTEM2_CFSR_TPH(n) (((n)&0x3fffff) << 0)
  2641. // ltem2_cfsr_tpl
  2642. #define IDLE_TIMER_LTEM2_CFSR_TPL(n) (((n)&0x3fff) << 0)
  2643. // ltem2_framc_tp
  2644. #define IDLE_TIMER_LTEM2_FRAMC_TP(n) (((n)&0xffff) << 0)
  2645. // gsm_cfsr
  2646. #define IDLE_TIMER_GSM_CFSR(n) (((n)&0xffffff) << 0)
  2647. // gsm_cfsrs
  2648. #define IDLE_TIMER_GSM_CFSRS(n) (((n)&0xffffff) << 0)
  2649. #define IDLE_TIMER_GSM_CFSRS_ADJUST_DIRECT (1 << 24)
  2650. // gsm_cfsro
  2651. #define IDLE_TIMER_GSM_CFSR_OVERFLOW(n) (((n)&0xffffff) << 0)
  2652. // ltem1_fhl
  2653. #define IDLE_TIMER_LTEM_FHL(n) (((n)&0x3fffff) << 0)
  2654. // ltem1_fll
  2655. #define IDLE_TIMER_LTEM_FLL(n) (((n)&0x3fff) << 0)
  2656. // ltem1_fcl
  2657. #define IDLE_TIMER_LTEM_FCL(n) (((n)&0xffff) << 0)
  2658. // ltem2_fhl
  2659. #define IDLE_TIMER_LTEM_FHL(n) (((n)&0x3fffff) << 0)
  2660. // ltem2_fll
  2661. #define IDLE_TIMER_LTEM_FLL(n) (((n)&0x3fff) << 0)
  2662. // ltem2_fcl
  2663. #define IDLE_TIMER_LTEM_FCL(n) (((n)&0xffff) << 0)
  2664. // gsm_fl
  2665. #define IDLE_TIMER_FL(n) (((n)&0xffffff) << 0)
  2666. // gsm_fcl
  2667. #define IDLE_TIMER_GSM_FCL(n) (((n)&0x1ffff) << 0)
  2668. // idl_tpctrl
  2669. #define IDLE_TIMER_IDLE_INNER_CTRL (1 << 0)
  2670. #define IDLE_TIMER_IDLE_INNER_CONFG(n) (((n)&0x3) << 4)
  2671. #define IDLE_TIMER_IDLE_MOD_SEL(n) (((n)&0x7) << 8)
  2672. // layoutctrl
  2673. #define IDLE_TIMER_ENABLE (1 << 0)
  2674. #define IDLE_TIMER_TIMER_SELECT (1 << 1)
  2675. #define IDLE_TIMER_CHIP_COUNT(n) (((n)&0x7fff) << 8)
  2676. // ltem1_fint_dly1
  2677. #define IDLE_TIMER_DELAY_TIME(n) (((n)&0xffff) << 0)
  2678. // ltem1_fint_dly2
  2679. #define IDLE_TIMER_DELAY_TIME(n) (((n)&0xffff) << 0)
  2680. // ltem2_fint_dly1
  2681. #define IDLE_TIMER_DELAY_TIME(n) (((n)&0xffff) << 0)
  2682. // ltem2_fint_dly2
  2683. #define IDLE_TIMER_DELAY_TIME(n) (((n)&0xffff) << 0)
  2684. // ltem1_fint_en
  2685. #define IDLE_TIMER_LTE_M1_FINT_ENABLE(n) (((n)&0x3ff) << 0)
  2686. // timer_en
  2687. #define IDLE_TIMER_LTE_M1_TIMER_ENABLE (1 << 0)
  2688. #define IDLE_TIMER_LTE_M2_TIMER_ENABLE (1 << 1)
  2689. #define IDLE_TIMER_GSM_TIMER_ENABLE (1 << 2)
  2690. #define IDLE_TIMER_LTEM_TIMER_ENABLE (1 << 3)
  2691. #define IDLE_TIMER_NB_TIMER_ENABLE (1 << 4)
  2692. #define IDLE_TIMER_GNSS_LTEM_TIMER_ENABLE (1 << 5)
  2693. // idle_frame_sta
  2694. #define IDLE_TIMER_LTE_M1_FRAME_STATE (1 << 0)
  2695. #define IDLE_TIMER_LTE_M2_FRAME_STATE (1 << 1)
  2696. #define IDLE_TIMER_GSM_FRAME_STATE (1 << 2)
  2697. #define IDLE_TIMER_LTE_M_FRAME_STATE (1 << 3)
  2698. #define IDLE_TIMER_NB_FRAME_STATE (1 << 4)
  2699. #define IDLE_TIMER_GNSS_LTE_M_FRAME_STATE (1 << 5)
  2700. // idle_frame_ltem1
  2701. #define IDLE_TIMER_IDLE_FRAME_LTEM1_FRAME_CFSR(n) (((n)&0x3fffff) << 0)
  2702. #define IDLE_TIMER_FRAME_CONF (1 << 24)
  2703. // idle_frame_ltem2
  2704. #define IDLE_TIMER_IDLE_FRAME_LTEM2_FRAME_CFSR(n) (((n)&0x3fffff) << 0)
  2705. #define IDLE_TIMER_FRAME_CONF (1 << 24)
  2706. // idle_frame_gsm
  2707. #define IDLE_TIMER_IDLE_FRAME_GSM_FRAME_CFSR(n) (((n)&0xffffff) << 0)
  2708. #define IDLE_TIMER_FRAME_CONF (1 << 24)
  2709. // idle_frame_lte_conf
  2710. #define IDLE_TIMER_FRAME_REF_LTE_CONF (1 << 0)
  2711. #define IDLE_TIMER_RESRVED(n) (((n)&0x7fffffff) << 1)
  2712. // ltem_ref_fcl
  2713. #define IDLE_TIMER_REF_LTEM_FCL(n) (((n)&0x7fff) << 0)
  2714. // ltem_ref_fc
  2715. #define IDLE_TIMER_LTEM_REF_FC(n) (((n)&0x7fff) << 0)
  2716. // gsm_framl
  2717. #define IDLE_TIMER_GSM_FRAML(n) (((n)&0x1ffff) << 0)
  2718. // idl_osw2_en
  2719. #define IDLE_TIMER_OSW2_TIME(n) (((n)&0x7fffffff) << 0)
  2720. #define IDLE_TIMER_OSW2_EN (1 << 31)
  2721. // idle_framc_gsm
  2722. #define IDLE_TIMER_FRAMC_CFSR(n) (((n)&0x1ffff) << 0)
  2723. // ltem1_fint_dly3
  2724. #define IDLE_TIMER_DELAY_TIME(n) (((n)&0xffff) << 0)
  2725. // ltem2_fint_dly3
  2726. #define IDLE_TIMER_DELAY_TIME(n) (((n)&0xffff) << 0)
  2727. // idle_time_sel
  2728. #define IDLE_TIMER_TIME_SEL (1 << 0)
  2729. // idl_h_gsm_lp
  2730. #define IDLE_TIMER_H_VALUE(n) (((n)&0x7ffffff) << 0)
  2731. // idl_h_ltem_lp
  2732. #define IDLE_TIMER_H_VALUE(n) (((n)&0x7ffffff) << 0)
  2733. // idl_tc_start_nb
  2734. #define IDLE_TIMER_TC_START_MOD(n) (((n)&0x3) << 0)
  2735. // idl_tc_end_nb
  2736. #define IDLE_TIMER_TC_END_MOD(n) (((n)&0x3) << 0)
  2737. #define IDLE_TIMER_TC_END_FRAMC(n) (((n)&0x1ffff) << 4)
  2738. // nb_lp_pu_done
  2739. #define IDLE_TIMER_LP_PU_DONE (1 << 0)
  2740. // idl_h_nb
  2741. #define IDLE_TIMER_H_VALUE(n) (((n)&0x7ffffff) << 0)
  2742. // idl_h_nb_lp
  2743. #define IDLE_TIMER_H_VALUE(n) (((n)&0x7ffffff) << 0)
  2744. // nb_frame_inten
  2745. #define IDLE_TIMER_NB_FRAME_IRQ_EN (1 << 0)
  2746. // nb_frame_int_sta
  2747. #define IDLE_TIMER_GSM_FRAME_INT_STA (1 << 0)
  2748. // nb_cfsr
  2749. #define IDLE_TIMER_GSM_CFSR(n) (((n)&0xffffff) << 0)
  2750. // nb_framl
  2751. #define IDLE_TIMER_NB_FRAML(n) (((n)&0x1ffff) << 0)
  2752. // nb_cfsrs
  2753. #define IDLE_TIMER_NB_CFSRS(n) (((n)&0xffffff) << 0)
  2754. #define IDLE_TIMER_NB_CFSRS_ADJUST_DIRECT (1 << 24)
  2755. // nb_cfsro
  2756. #define IDLE_TIMER_NB_CFSR_OVERFLOW(n) (((n)&0xffffff) << 0)
  2757. // nb_fl
  2758. #define IDLE_TIMER_FL(n) (((n)&0xffffff) << 0)
  2759. // nb_fcl
  2760. #define IDLE_TIMER_NB_FCL(n) (((n)&0x1ffff) << 0)
  2761. // idle_frame_nb
  2762. #define IDLE_TIMER_IDLE_FRAME_NB_FRAME_CFSR(n) (((n)&0xffffff) << 0)
  2763. #define IDLE_TIMER_FRAME_CONF (1 << 24)
  2764. // idle_framc_nb
  2765. #define IDLE_TIMER_FRAMC_CFSR(n) (((n)&0x1ffff) << 0)
  2766. // idl_awk_en_set
  2767. #define IDLE_TIMER_AWK_EN_SET(n) (((n)&0x1fffff) << 0)
  2768. // idl_awk_en_clr
  2769. #define IDLE_TIMER_AWK_EN_CLEAR(n) (((n)&0x1fffff) << 0)
  2770. // gsm_framc
  2771. #define IDLE_TIMER_FRAMC(n) (((n)&0x1ffff) << 0)
  2772. #define IDLE_TIMER_RD_ENABLE (1 << 20)
  2773. // nb_framc
  2774. #define IDLE_TIMER_FRAMC(n) (((n)&0x1ffff) << 0)
  2775. #define IDLE_TIMER_RD_ENABLE (1 << 20)
  2776. // eliminat_jitter
  2777. #define IDLE_TIMER_ELIMIATE_EN(n) (((n)&0xffff) << 0)
  2778. #define IDLE_TIMER_ELIMINAT_TIME(n) (((n)&0xff) << 16)
  2779. // gsm_en_sel
  2780. #define IDLE_TIMER_SELECT (1 << 0)
  2781. // nb_en_sel
  2782. #define IDLE_TIMER_SELECT (1 << 0)
  2783. // pd_pll_sw
  2784. #define IDLE_TIMER_BBPLL1 (1 << 0)
  2785. #define IDLE_TIMER_BBPLL2 (1 << 1)
  2786. #define IDLE_TIMER_APLL (1 << 2)
  2787. #define IDLE_TIMER_AUDIOPLL (1 << 3)
  2788. #define IDLE_TIMER_USBPLL (1 << 4)
  2789. #define IDLE_TIMER_MEMPLL (1 << 5)
  2790. #define IDLE_TIMER_DSIPLL (1 << 6)
  2791. // pd_pll_sw_set
  2792. #define IDLE_TIMER_PDPLLSWSET(n) (((n)&0x7f) << 0)
  2793. // pd_pll_sw_clr
  2794. #define IDLE_TIMER_PDPLLSWCLR(n) (((n)&0x7f) << 0)
  2795. // pd_pll_sel
  2796. #define IDLE_TIMER_BBPLL1 (1 << 0)
  2797. #define IDLE_TIMER_BBPLL2 (1 << 1)
  2798. #define IDLE_TIMER_APLL (1 << 2)
  2799. #define IDLE_TIMER_AUDIOPLL (1 << 3)
  2800. #define IDLE_TIMER_USBPLL (1 << 4)
  2801. #define IDLE_TIMER_MEMPLL (1 << 5)
  2802. #define IDLE_TIMER_DSIPLL (1 << 6)
  2803. // pd_pll_sel_set
  2804. #define IDLE_TIMER_PDPLLSELSET(n) (((n)&0x7f) << 0)
  2805. // pd_pll_sel_clr
  2806. #define IDLE_TIMER_PDPLLSELCLR(n) (((n)&0x7f) << 0)
  2807. // idle_cg_sw
  2808. #define IDLE_TIMER_BBPLL1 (1 << 0)
  2809. #define IDLE_TIMER_BBPLL2 (1 << 1)
  2810. #define IDLE_TIMER_APLL (1 << 2)
  2811. #define IDLE_TIMER_AUDIOPLL (1 << 3)
  2812. #define IDLE_TIMER_USBPLL (1 << 4)
  2813. #define IDLE_TIMER_MEMPLL (1 << 5)
  2814. #define IDLE_TIMER_DSIPLL (1 << 6)
  2815. // idle_cg_sw_set
  2816. #define IDLE_TIMER_IDLECGSWSET(n) (((n)&0x7f) << 0)
  2817. // idle_cg_sw_clr
  2818. #define IDLE_TIMER_IDLECGSWCLR(n) (((n)&0x7f) << 0)
  2819. // idle_cg_sel
  2820. #define IDLE_TIMER_BBPLL1 (1 << 0)
  2821. #define IDLE_TIMER_BBPLL2 (1 << 1)
  2822. #define IDLE_TIMER_APLL (1 << 2)
  2823. #define IDLE_TIMER_AUDIOPLL (1 << 3)
  2824. #define IDLE_TIMER_USBPLL (1 << 4)
  2825. #define IDLE_TIMER_MEMPLL (1 << 5)
  2826. #define IDLE_TIMER_DSIPLL (1 << 6)
  2827. // idle_cg_sel_set
  2828. #define IDLE_TIMER_IDLECGSELSET(n) (((n)&0x7f) << 0)
  2829. // idle_cg_sel_clr
  2830. #define IDLE_TIMER_IDLECGSELCLR(n) (((n)&0x7f) << 0)
  2831. // rf_idle_enable_sw
  2832. #define IDLE_TIMER_RFIDLEENABLESW (1 << 0)
  2833. // rf_idle_enable_sel
  2834. #define IDLE_TIMER_RFIDLEENABLESEL (1 << 0)
  2835. // mem_ema_cfg
  2836. #define IDLE_TIMER_RFTPD_RMEA (1 << 0)
  2837. #define IDLE_TIMER_RFTPD_RMA(n) (((n)&0xf) << 1)
  2838. #define IDLE_TIMER_RFTPD_RMEB (1 << 5)
  2839. #define IDLE_TIMER_RFTPD_RMB(n) (((n)&0xf) << 6)
  2840. // uart_ctrl
  2841. #define IDLE_TIMER_ENABLE_CLK_UART (1 << 0)
  2842. #define IDLE_TIMER_RST_CTRL_UART (1 << 1)
  2843. // ddr_latch
  2844. #define IDLE_TIMER_LPDDR_LATCH (1 << 0)
  2845. #define IDLE_TIMER_PSRAM_LATCH (1 << 1)
  2846. // pad_ctrl
  2847. #define IDLE_TIMER_PAD_UART_1_RXD_WPUS (1 << 0)
  2848. #define IDLE_TIMER_PAD_UART_1_RXD_SE (1 << 1)
  2849. #define IDLE_TIMER_PAD_UART_1_RXD_PULL_UP (1 << 2)
  2850. #define IDLE_TIMER_PAD_UART_1_RXD_PULL_DOWE (1 << 3)
  2851. #define IDLE_TIMER_PAD_UART_1_RXD_DRV(n) (((n)&0x3) << 4)
  2852. #define IDLE_TIMER_PAD_UART_1_RXD_PULL_FRC (1 << 6)
  2853. #define IDLE_TIMER_PAD_CHIP_PD_WPUS (1 << 7)
  2854. #define IDLE_TIMER_PAD_CHIP_PD_SE (1 << 8)
  2855. #define IDLE_TIMER_PAD_CHIP_PD_PULL_UP (1 << 9)
  2856. #define IDLE_TIMER_PAD_CHIP_PD_PULL_DOWE (1 << 10)
  2857. #define IDLE_TIMER_PAD_CHIP_PD_DRV(n) (((n)&0x3) << 11)
  2858. #define IDLE_TIMER_PAD_CHIP_PD_PULL_FRC (1 << 13)
  2859. #define IDLE_TIMER_PAD_CHIP_PD_OUT_FRC (1 << 14)
  2860. #define IDLE_TIMER_PAD_CHIP_PD_OUT (1 << 15)
  2861. #define IDLE_TIMER_PAD_GPIO_6_WPUS (1 << 16)
  2862. #define IDLE_TIMER_PAD_GPIO_6_SE (1 << 17)
  2863. #define IDLE_TIMER_PAD_GPIO_6_PULL_UP (1 << 18)
  2864. #define IDLE_TIMER_PAD_GPIO_6_PULL_DOWE (1 << 19)
  2865. #define IDLE_TIMER_PAD_GPIO_6_DRV(n) (((n)&0x3) << 20)
  2866. #define IDLE_TIMER_PAD_GPIO_6_PULL_FRC (1 << 22)
  2867. #define IDLE_TIMER_PAD_OSC_32K_WPUS (1 << 23)
  2868. #define IDLE_TIMER_PAD_OSC_32K_SE (1 << 24)
  2869. #define IDLE_TIMER_PAD_OSC_32K_DRV(n) (((n)&0x3) << 25)
  2870. #define IDLE_TIMER_PAD_MISC_IDLE_WPDI (1 << 27)
  2871. // pad_ctrl_uart_txd
  2872. #define IDLE_TIMER_PAD_UART_1_TXD_WPUS (1 << 0)
  2873. #define IDLE_TIMER_PAD_UART_1_TXD_SE (1 << 1)
  2874. #define IDLE_TIMER_PAD_UART_1_TXD_PULL_UP (1 << 2)
  2875. #define IDLE_TIMER_PAD_UART_1_TXD_PULL_DOWE (1 << 3)
  2876. #define IDLE_TIMER_PAD_UART_1_TXD_DRV(n) (((n)&0x3) << 4)
  2877. #define IDLE_TIMER_PAD_UART_1_TXD_PULL_FRC (1 << 6)
  2878. #define IDLE_TIMER_PAD_UART_1_TXD_OUT_FRC (1 << 7)
  2879. #define IDLE_TIMER_PAD_UART_1_TXD_OUT (1 << 8)
  2880. // mon_sel
  2881. #define IDLE_TIMER_MON0_SEL(n) (((n)&0x3) << 0)
  2882. #define IDLE_TIMER_MON1_SEL(n) (((n)&0x3) << 2)
  2883. #define IDLE_TIMER_MON2_SEL(n) (((n)&0x3) << 4)
  2884. #define IDLE_TIMER_MON3_SEL(n) (((n)&0x3) << 6)
  2885. #define IDLE_TIMER_MON4_SEL(n) (((n)&0x3) << 8)
  2886. #define IDLE_TIMER_MON5_SEL(n) (((n)&0x3) << 10)
  2887. #define IDLE_TIMER_MON6_SEL(n) (((n)&0x3) << 12)
  2888. #define IDLE_TIMER_MON7_SEL(n) (((n)&0x3) << 14)
  2889. #define IDLE_TIMER_MON8_SEL(n) (((n)&0x3) << 16)
  2890. #define IDLE_TIMER_MON9_SEL(n) (((n)&0x3) << 18)
  2891. #define IDLE_TIMER_MON10_SEL(n) (((n)&0x3) << 20)
  2892. #define IDLE_TIMER_MON11_SEL(n) (((n)&0x3) << 22)
  2893. #define IDLE_TIMER_MON12_SEL(n) (((n)&0x3) << 24)
  2894. #define IDLE_TIMER_MON13_SEL(n) (((n)&0x3) << 26)
  2895. #define IDLE_TIMER_MON14_SEL(n) (((n)&0x3) << 28)
  2896. #define IDLE_TIMER_MON15_SEL(n) (((n)&0x3) << 30)
  2897. // target_timer_en
  2898. #define IDLE_TIMER_DISABLE_TARGET_TIMER (1 << 0)
  2899. // target_timer_stat
  2900. #define IDLE_TIMER_TIMER_STAT_122M (1 << 0)
  2901. #define IDLE_TIMER_TIMER_STAT_32K (1 << 1)
  2902. // slow_sys_clk_sel_hwen
  2903. #define IDLE_TIMER_SLOW_SYS_CLK_SEL_HWEN (1 << 0)
  2904. // slow_clk_sel_hwen
  2905. #define IDLE_TIMER_SLOW_CLK_SEL_HWEN (1 << 0)
  2906. // sleep_prot_time
  2907. #define IDLE_TIMER_PROT_TIME(n) (((n)&0xff) << 0)
  2908. // h_val_sel
  2909. #define IDLE_TIMER_H_VAL_SEL (1 << 0)
  2910. // tp_sta
  2911. #define IDLE_TIMER_TP_STA0 (1 << 0)
  2912. #define IDLE_TIMER_TP_STA1 (1 << 1)
  2913. #define IDLE_TIMER_TP_STA2 (1 << 2)
  2914. // ltem1_framls_rel
  2915. #define IDLE_TIMER_LTEM1_FRAMLS_REF(n) (((n)&0xffff) << 0)
  2916. #define IDLE_TIMER_LTEM1_FRAMLS_REL_ADJUST_DIRECT (1 << 16)
  2917. // ltem1_framls_abs
  2918. #define IDLE_TIMER_LTEM1_FRAMLS_ABS(n) (((n)&0xffff) << 0)
  2919. #define IDLE_TIMER_LTEM1_FRAMLS_ABS_ADJUST_DIRECT (1 << 16)
  2920. // ltem2_framls_rel
  2921. #define IDLE_TIMER_LTEM2_FRAMLS_REF(n) (((n)&0xffff) << 0)
  2922. #define IDLE_TIMER_LTEM2_FRAMLS_REL_ADJUST_DIRECT (1 << 16)
  2923. // ltem2_framls_abs
  2924. #define IDLE_TIMER_LTEM2_FRAMLS_ABS(n) (((n)&0xffff) << 0)
  2925. #define IDLE_TIMER_LTEM2_FRAMLS_ABS_ADJUST_DIRECT (1 << 16)
  2926. // ltem1_load_en
  2927. #define IDLE_TIMER_LTEM1_LOAD_EN (1 << 0)
  2928. // ltem2_load_en
  2929. #define IDLE_TIMER_LTEM2_LOAD_EN (1 << 0)
  2930. // ltem2_fint_en
  2931. #define IDLE_TIMER_LTE_M2_FINT_ENABLE(n) (((n)&0x3ff) << 0)
  2932. // gnss_tstamp_en
  2933. #define IDLE_TIMER_RTC_LATCH_EN (1 << 0)
  2934. #define IDLE_TIMER_CPU_LATCH_EN (1 << 1)
  2935. #define IDLE_TIMER_EM_LATCH_EN (1 << 2)
  2936. // gnss_rtc_ltem1_fhl
  2937. #define IDLE_TIMER_GNSS_RTC_LTEM1_FHL(n) (((n)&0x3fffff) << 0)
  2938. // gnss_rtc_ltem1_fll
  2939. #define IDLE_TIMER_GNSS_RTC_LTEM1_FLL(n) (((n)&0x3fff) << 0)
  2940. // gnss_rtc_ltem1_fcl
  2941. #define IDLE_TIMER_GNSS_RTC_LTEM1_FCL(n) (((n)&0x3ffff) << 0)
  2942. // gnss_rtc_ltem2_fhl
  2943. #define IDLE_TIMER_GNSS_RTC_LTEM2_FHL(n) (((n)&0x3fffff) << 0)
  2944. // gnss_rtc_ltem2_fll
  2945. #define IDLE_TIMER_GNSS_RTC_LTEM2_FLL(n) (((n)&0x3fff) << 0)
  2946. // gnss_rtc_ltem2_fcl
  2947. #define IDLE_TIMER_GNSS_RTC_LTEM2_FCL(n) (((n)&0x3ffff) << 0)
  2948. // gnss_rtc_ltem3_fhl
  2949. #define IDLE_TIMER_GNSS_RTC_LTEM3_FHL(n) (((n)&0x3fffff) << 0)
  2950. // gnss_rtc_ltem3_fll
  2951. #define IDLE_TIMER_GNSS_RTC_LTEM3_FLL(n) (((n)&0x3fff) << 0)
  2952. // gnss_rtc_ltem3_fcl
  2953. #define IDLE_TIMER_GNSS_RTC_LTEM3_FCL(n) (((n)&0x3ffff) << 0)
  2954. // gnss_cpu_ltem1_fhl
  2955. #define IDLE_TIMER_GNSS_CPU_LTEM1_FHL(n) (((n)&0x3fffff) << 0)
  2956. // gnss_cpu_ltem1_fll
  2957. #define IDLE_TIMER_GNSS_CPU_LTEM1_FLL(n) (((n)&0x3fff) << 0)
  2958. // gnss_cpu_ltem1_fcl
  2959. #define IDLE_TIMER_GNSS_CPU_LTEM1_FCL(n) (((n)&0x3ffff) << 0)
  2960. // gnss_cpu_ltem2_fhl
  2961. #define IDLE_TIMER_GNSS_CPU_LTEM2_FHL(n) (((n)&0x3fffff) << 0)
  2962. // gnss_cpu_ltem2_fll
  2963. #define IDLE_TIMER_GNSS_CPU_LTEM2_FLL(n) (((n)&0x3fff) << 0)
  2964. // gnss_cpu_ltem2_fcl
  2965. #define IDLE_TIMER_GNSS_CPU_LTEM2_FCL(n) (((n)&0x3ffff) << 0)
  2966. // gnss_cpu_ltem3_fhl
  2967. #define IDLE_TIMER_GNSS_CPU_LTEM3_FHL(n) (((n)&0x3fffff) << 0)
  2968. // gnss_cpu_ltem3_fll
  2969. #define IDLE_TIMER_GNSS_CPU_LTEM3_FLL(n) (((n)&0x3fff) << 0)
  2970. // gnss_cpu_ltem3_fcl
  2971. #define IDLE_TIMER_GNSS_CPU_LTEM3_FCL(n) (((n)&0x3ffff) << 0)
  2972. // gnss_cpu_rtc_ltem1_fhl
  2973. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM1_FHL(n) (((n)&0x3fffff) << 0)
  2974. // gnss_cpu_rtc_ltem1_fll
  2975. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM1_FLL(n) (((n)&0x3fff) << 0)
  2976. // gnss_cpu_rtc_ltem1_fcl
  2977. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM1_FCL(n) (((n)&0x3ffff) << 0)
  2978. // gnss_cpu_rtc_ltem2_fhl
  2979. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM2_FHL(n) (((n)&0x3fffff) << 0)
  2980. // gnss_cpu_rtc_ltem2_fll
  2981. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM2_FLL(n) (((n)&0x3fff) << 0)
  2982. // gnss_cpu_rtc_ltem2_fcl
  2983. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM2_FCL(n) (((n)&0x3ffff) << 0)
  2984. // gnss_cpu_rtc_ltem3_fhl
  2985. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM3_FHL(n) (((n)&0x3fffff) << 0)
  2986. // gnss_cpu_rtc_ltem3_fll
  2987. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM3_FLL(n) (((n)&0x3fff) << 0)
  2988. // gnss_cpu_rtc_ltem3_fcl
  2989. #define IDLE_TIMER_GNSS_CPU_RTC_LTEM3_FCL(n) (((n)&0x3ffff) << 0)
  2990. // gnss_em_ltem1_fhl
  2991. #define IDLE_TIMER_GNSS_EM_LTEM1_FHL(n) (((n)&0x3fffff) << 0)
  2992. // gnss_em_ltem1_fll
  2993. #define IDLE_TIMER_GNSS_EM_LTEM1_FLL(n) (((n)&0x3fff) << 0)
  2994. // gnss_em_ltem1_fcl
  2995. #define IDLE_TIMER_GNSS_EM_LTEM1_FCL(n) (((n)&0x3ffff) << 0)
  2996. // gnss_em_ltem2_fhl
  2997. #define IDLE_TIMER_GNSS_EM_LTEM2_FHL(n) (((n)&0x3fffff) << 0)
  2998. // gnss_em_ltem2_fll
  2999. #define IDLE_TIMER_GNSS_EM_LTEM2_FLL(n) (((n)&0x3fff) << 0)
  3000. // gnss_em_ltem2_fcl
  3001. #define IDLE_TIMER_GNSS_EM_LTEM2_FCL(n) (((n)&0x3ffff) << 0)
  3002. // gnss_em_ltem3_fhl
  3003. #define IDLE_TIMER_GNSS_EM_LTEM3_FHL(n) (((n)&0x3fffff) << 0)
  3004. // gnss_em_ltem3_fll
  3005. #define IDLE_TIMER_GNSS_EM_LTEM3_FLL(n) (((n)&0x3fff) << 0)
  3006. // gnss_em_ltem3_fcl
  3007. #define IDLE_TIMER_GNSS_EM_LTEM3_FCL(n) (((n)&0x3ffff) << 0)
  3008. // ltem3_load_en
  3009. #define IDLE_TIMER_LTEM3_LOAD_EN (1 << 0)
  3010. // idl_fn_ltem3
  3011. #define IDLE_TIMER_IDFN_SUB_LTEM3(n) (((n)&0xf) << 0)
  3012. #define IDLE_TIMER_IDFN_RAD_LTEM3(n) (((n)&0xfffffff) << 4)
  3013. // ltem3_frame_inten
  3014. #define IDLE_TIMER_LTEM3_FRAME1_IRQ_EN (1 << 0)
  3015. #define IDLE_TIMER_LTEM3_FRAME2_IRQ_EN (1 << 1)
  3016. #define IDLE_TIMER_LTEM3_FRAME3_IRQ_EN (1 << 2)
  3017. // ltem3_frame_int_sta
  3018. #define IDLE_TIMER_LTEM3_FRAME_INT_STA(n) (((n)&0x7) << 0)
  3019. // ltem3_cfsr_hfn
  3020. #define IDLE_TIMER_LTEM3_CFSR_HFN(n) (((n)&0x3fffff) << 0)
  3021. // ltem3_cfsr_fn
  3022. #define IDLE_TIMER_LTEM3_CFSR_SUB(n) (((n)&0xf) << 0)
  3023. #define IDLE_TIMER_LTEM3_CFSR_RAD(n) (((n)&0x3ff) << 4)
  3024. // ltem3_cfsrs
  3025. #define IDLE_TIMER_LTEM3_CFSRS(n) (((n)&0xffffff) << 0)
  3026. #define IDLE_TIMER_ADJUST_DIRECT3_CFSR (1 << 24)
  3027. #define IDLE_TIMER_ACTIVE_TIME3_CFSR (1 << 25)
  3028. // ltem3_cfsr_rdh
  3029. #define IDLE_TIMER_LTEM3_CFSR_RDH(n) (((n)&0x3fffff) << 0)
  3030. // ltem3_cfsr_rdl
  3031. #define IDLE_TIMER_LTEM3_CFSR_RDL_SUB(n) (((n)&0xf) << 0)
  3032. #define IDLE_TIMER_LTEM3_CFSR_RDL_RAD(n) (((n)&0x3ff) << 4)
  3033. // ltem3_framc
  3034. #define IDLE_TIMER_LFRAMC3(n) (((n)&0xffff) << 0)
  3035. // ltem3_framl
  3036. #define IDLE_TIMER_LFRAML3(n) (((n)&0xffff) << 0)
  3037. // ltem3_framls
  3038. #define IDLE_TIMER_LFRAMLS3(n) (((n)&0xffff) << 0)
  3039. #define IDLE_TIMER_ACTIVE_TIME3_FRAMLS (1 << 16)
  3040. // ltem3_cfsr_tph
  3041. #define IDLE_TIMER_LTEM3_CFSR_TPH(n) (((n)&0x3fffff) << 0)
  3042. // ltem3_cfsr_tpl
  3043. #define IDLE_TIMER_LTEM3_CFSR_TPL(n) (((n)&0x3fff) << 0)
  3044. // ltem3_framc_tp
  3045. #define IDLE_TIMER_LTEM3_FRAMC_TP(n) (((n)&0xffff) << 0)
  3046. // ltem3_framls_rel
  3047. #define IDLE_TIMER_LTEM3_FRAMLS_REF(n) (((n)&0xffff) << 0)
  3048. #define IDLE_TIMER_LTEM3_FRAMLS_REL_ADJUST_DIRECT (1 << 16)
  3049. // ltem3_framls_abs
  3050. #define IDLE_TIMER_LTEM3_FRAMLS_ABS(n) (((n)&0xffff) << 0)
  3051. #define IDLE_TIMER_LTEM3_FRAMLS_ABS_ADJUST_DIRECT (1 << 16)
  3052. // lte3_fint_dly1
  3053. #define IDLE_TIMER_DELAY3_TIME1(n) (((n)&0xffff) << 0)
  3054. // ltem3_fint_dly2
  3055. #define IDLE_TIMER_DELAY3_TIME2(n) (((n)&0xffff) << 0)
  3056. // ltem3_fint_dly3
  3057. #define IDLE_TIMER_DELAY3_TIME3(n) (((n)&0xffff) << 0)
  3058. // ltem3_fint_en
  3059. #define IDLE_TIMER_LTE_M3_FINT_ENABLE(n) (((n)&0x3ff) << 0)
  3060. // ltem3_fhl
  3061. #define IDLE_TIMER_LTEM3_FHL(n) (((n)&0x3fffff) << 0)
  3062. // ltem3_fll
  3063. #define IDLE_TIMER_LTEM3_FLL(n) (((n)&0x3fff) << 0)
  3064. // ltem3_fcl
  3065. #define IDLE_TIMER_LTEM3_FCL(n) (((n)&0xffff) << 0)
  3066. // idle_frame_ltem3
  3067. #define IDLE_TIMER_FRAME3_CFSR(n) (((n)&0x3fffff) << 0)
  3068. #define IDLE_TIMER_FRAME3_CONF (1 << 24)
  3069. #endif // _IDLE_TIMER_H_