clk_reg.h 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698
  1. /**************************************************************************//**
  2. * @file clk_reg.h
  3. * @version V1.00
  4. * @brief CLK register definition header file
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. * @copyright (C) 2017-2020 Nuvoton Technology Corp. All rights reserved.
  8. *****************************************************************************/
  9. #ifndef __CLK_REG_H__
  10. #define __CLK_REG_H__
  11. #if defined ( __CC_ARM )
  12. #pragma anon_unions
  13. #endif
  14. /**
  15. @addtogroup REGISTER Control Register
  16. @{
  17. */
  18. /**
  19. @addtogroup CLK System Clock Controller(CLK)
  20. Memory Mapped Structure for CLK Controller
  21. @{ */
  22. typedef struct
  23. {
  24. /**
  25. * @var CLK_T::PWRCTL
  26. * Offset: 0x00 System Power-down Control Register
  27. * ---------------------------------------------------------------------------------------------------
  28. * |Bits |Field |Descriptions
  29. * | :----: | :----: | :---- |
  30. * |[0] |HXTEN |HXT Enable Bit (Write Protect)
  31. * | | |The bit default value is set by flash controller user configuration register CONFIG0 [26]
  32. * | | |When the default clock source is from HXT, this bit is set to 1 automatically.
  33. * | | |0 = 4~24 MHz external high speed crystal (HXT) Disabled.
  34. * | | |1 = 4~24 MHz external high speed crystal (HXT) Enabled.
  35. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  36. * |[1] |LXTEN |LXT Enable Bit (Write Protect)
  37. * | | |0 = 32.768 kHz external low speed crystal (LXT) Disabled.
  38. * | | |1 = 32.768 kHz external low speed crystal (LXT) Enabled.
  39. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  40. * |[2] |HIRCEN |HIRC Enable Bit (Write Protect)
  41. * | | |0 = 12 MHz internal high speed RC oscillator (HIRC) Disabled.
  42. * | | |1 = 12 MHz internal high speed RC oscillator (HIRC) Enabled.
  43. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  44. * |[3] |LIRCEN |LIRC Enable Bit (Write Protect)
  45. * | | |0 = 10 kHz internal low speed RC oscillator (LIRC) Disabled.
  46. * | | |1 = 10 kHz internal low speed RC oscillator (LIRC) Enabled.
  47. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  48. * |[4] |PDWKDLY |Enable the Wake-up Delay Counter (Write Protect)
  49. * | | |When the chip wakes up from Power-down mode, the clock control will delay certain clock cycles to wait system clock stable.
  50. * | | |The delayed clock cycle is 4096 clock cycles when chip works at 4~24 MHz external high speed crystal oscillator (HXT), and 256 clock cycles when chip works at 12 MHz internal high speed RC oscillator (HIRC).
  51. * | | |0 = Clock cycles delay Disabled.
  52. * | | |1 = Clock cycles delay Enabled.
  53. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  54. * |[5] |PDWKIEN |Power-down Mode Wake-up Interrupt Enable Bit (Write Protect)
  55. * | | |0 = Power-down mode wake-up interrupt Disabled.
  56. * | | |1 = Power-down mode wake-up interrupt Enabled.
  57. * | | |Note1: The interrupt will occur when both PDWKIF and PDWKIEN are high.
  58. * | | |Note2: This bit is write protected. Refer to the SYS_REGLCTL register.
  59. * |[6] |PDWKIF |Power-down Mode Wake-up Interrupt Status
  60. * | | |Set by "Power-down wake-up event", it indicates that resume from Power-down mode.
  61. * | | |The flag is set if any wake-up source is occurred. Refer Power Modes and Wake-up Sources chapter.
  62. * | | |Note1: Write 1 to clear the bit to 0.
  63. * | | |Note2: This bit works only if PDWKIEN (CLK_PWRCTL[5]) set to 1.
  64. * |[7] |PDEN |System Power-down Enable (Write Protect)
  65. * | | |When this bit is set to 1, Power-down mode is enabled and chip keeps active till the CPU sleep mode is also active and then the chip enters Power-down mode.
  66. * | | |When chip wakes up from Power-down mode, this bit is auto cleared
  67. * | | |Users need to set this bit again for next Power-down.
  68. * | | |In Power-down mode, HXT and the HIRC will be disabled in this mode, but LXT and LIRC are not controlled by Power-down mode.
  69. * | | |In Power-down mode, the PLL and system clock are disabled, and ignored the clock source selection
  70. * | | |The clocks of peripheral are not controlled by Power-down mode, if the peripheral clock source is from LXT or LIRC.
  71. * | | |0 = Chip will not enter Power-down mode after CPU sleep command WFI.
  72. * | | |1 = Chip enters Power-down mode after CPU sleep command WFI.
  73. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  74. * |[11:10] |HXTGAIN |HXT Gain Control Bit (Write Protect)
  75. * | | |This is a protected register. Please refer to open lock sequence to program it.
  76. * | | |Gain control is used to enlarge the gain of crystal to make sure crystal work normally
  77. * | | |If gain control is enabled, crystal will consume more power than gain control off.
  78. * | | |00 = HXT frequency is lower than from 8 MHz.
  79. * | | |01 = HXT frequency is from 8 MHz to 12 MHz.
  80. * | | |10 = HXT frequency is from 12 MHz to 16 MHz.
  81. * | | |11 = HXT frequency is higher than 16 MHz.
  82. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  83. * |[12] |HXTSELTYP |HXT Crystal Type Select Bit (Write Protect)
  84. * | | |This is a protected register. Please refer to open lock sequence to program it.
  85. * | | |0 = Select INV type.
  86. * | | |1 = Select GM type.
  87. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  88. * |[13] |HXTTBEN |HXT Crystal TURBO Mode (Write Protect)
  89. * | | |This is a protected register. Please refer to open lock sequence to program it.
  90. * | | |0 = HXT Crystal TURBO mode disabled.
  91. * | | |1 = HXT Crystal TURBO mode enabled.
  92. * |[17:16] |HIRCSTBS |HIRC Stable Count Select (Write Protect)
  93. * | | |00 = HIRC stable count is 64 clocks.
  94. * | | |01 = HIRC stable count is 24 clocks.
  95. * | | |others = Reserved.
  96. * |[18] |HIRCEN |HIRC48M Enable Bit (Write Protect)
  97. * | | |0 = 48 MHz internal high speed RC oscillator (HIRC) Disabled.
  98. * | | |1 = 48 MHz internal high speed RC oscillator (HIRC) Enabled.
  99. * @var CLK_T::AHBCLK
  100. * Offset: 0x04 AHB Devices Clock Enable Control Register
  101. * ---------------------------------------------------------------------------------------------------
  102. * |Bits |Field |Descriptions
  103. * | :----: | :----: | :---- |
  104. * |[1] |PDMACKEN |PDMA Controller Clock Enable Bit
  105. * | | |0 = PDMA peripheral clock Disabled.
  106. * | | |1 = PDMA peripheral clock Enabled.
  107. * |[2] |ISPCKEN |Flash ISP Controller Clock Enable Bit
  108. * | | |0 = Flash ISP peripheral clock Disabled.
  109. * | | |1 = Flash ISP peripheral clock Enabled.
  110. * |[3] |EBICKEN |EBI Controller Clock Enable Bit
  111. * | | |0 = EBI peripheral clock Disabled.
  112. * | | |1 = EBI peripheral clock Enabled.
  113. * |[5] |EMACCKEN |Ethernet Controller Clock Enable Bit
  114. * | | |0 = Ethernet Controller engine clock Disabled.
  115. * | | |1 = Ethernet Controller engine clock Enabled.
  116. * |[6] |SDH0CKEN |SD0 Controller Clock Enable Bit
  117. * | | |0 = SD0 engine clock Disabled.
  118. * | | |1 = SD0 engine clock Enabled.
  119. * |[7] |CRCCKEN |CRC Generator Controller Clock Enable Bit
  120. * | | |0 = CRC peripheral clock Disabled.
  121. * | | |1 = CRC peripheral clock Enabled.
  122. * |[10] |HSUSBDCKEN|HSUSB Device Clock Enable Bit
  123. * | | |0 = HSUSB device controller's clock Disabled.
  124. * | | |1 = HSUSB device controller's clock Enabled.
  125. * |[12] |CRPTCKEN |Cryptographic Accelerator Clock Enable Bit
  126. * | | |0 = Cryptographic Accelerator clock Disabled.
  127. * | | |1 = Cryptographic Accelerator clock Enabled.
  128. * |[14] |SPIMCKEN |SPIM Controller Clock Enable Bit
  129. * | | |0 = SPIM controller clock Disabled.
  130. * | | |1 = SPIM controller clock Enabled.
  131. * |[15] |FMCIDLE |Flash Memory Controller Clock Enable Bit in IDLE Mode
  132. * | | |0 = FMC clock Disabled when chip is under IDLE mode.
  133. * | | |1 = FMC clock Enabled when chip is under IDLE mode.
  134. * |[16] |USBHCKEN |USB HOST Controller Clock Enable Bit
  135. * | | |0 = USB HOST peripheral clock Disabled.
  136. * | | |1 = USB HOST peripheral clock Enabled.
  137. * |[17] |SDH1CKEN |SD1 Controller Clock Enable Bit
  138. * | | |0 = SD1 engine clock Disabled.
  139. * | | |1 = SD1 engine clock Enabled.
  140. * @var CLK_T::APBCLK0
  141. * Offset: 0x08 APB Devices Clock Enable Control Register 0
  142. * ---------------------------------------------------------------------------------------------------
  143. * |Bits |Field |Descriptions
  144. * | :----: | :----: | :---- |
  145. * |[0] |WDTCKEN |Watchdog Timer Clock Enable Bit (Write Protect)
  146. * | | |0 = Watchdog timer clock Disabled.
  147. * | | |1 = Watchdog timer clock Enabled.
  148. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  149. * |[1] |RTCCKEN |Real-time-clock APB Interface Clock Enable Bit
  150. * | | |This bit is used to control the RTC APB clock only
  151. * | | |The RTC peripheral clock source is selected from RTCSEL(CLK_CLKSEL3[8])
  152. * | | |It can be selected to 32.768 kHz external low speed crystal or 10 kHz internal low speed RC oscillator (LIRC).
  153. * | | |0 = RTC clock Disabled.
  154. * | | |1 = RTC clock Enabled.
  155. * |[2] |TMR0CKEN |Timer0 Clock Enable Bit
  156. * | | |0 = Timer0 clock Disabled.
  157. * | | |1 = Timer0 clock Enabled.
  158. * |[3] |TMR1CKEN |Timer1 Clock Enable Bit
  159. * | | |0 = Timer1 clock Disabled.
  160. * | | |1 = Timer1 clock Enabled.
  161. * |[4] |TMR2CKEN |Timer2 Clock Enable Bit
  162. * | | |0 = Timer2 clock Disabled.
  163. * | | |1 = Timer2 clock Enabled.
  164. * |[5] |TMR3CKEN |Timer3 Clock Enable Bit
  165. * | | |0 = Timer3 clock Disabled.
  166. * | | |1 = Timer3 clock Enabled.
  167. * |[6] |CLKOCKEN |CLKO Clock Enable Bit
  168. * | | |0 = CLKO clock Disabled.
  169. * | | |1 = CLKO clock Enabled.
  170. * |[7] |ACMP01CKEN|Analog Comparator 0/1 Clock Enable Bit
  171. * | | |0 = Analog comparator 0/1 clock Disabled.
  172. * | | |1 = Analog comparator 0/1 clock Enabled.
  173. * |[8] |I2C0CKEN |I2C0 Clock Enable Bit
  174. * | | |0 = I2C0 clock Disabled.
  175. * | | |1 = I2C0 clock Enabled.
  176. * |[9] |I2C1CKEN |I2C1 Clock Enable Bit
  177. * | | |0 = I2C1 clock Disabled.
  178. * | | |1 = I2C1 clock Enabled.
  179. * |[10] |I2C2CKEN |I2C2 Clock Enable Bit
  180. * | | |0 = I2C2 clock Disabled.
  181. * | | |1 = I2C2 clock Enabled.
  182. * |[12] |QSPI0CKEN |QSPI0 Clock Enable Bit
  183. * | | |0 = QSPI0 clock Disabled.
  184. * | | |1 = QSPI0 clock Enabled.
  185. * |[13] |SPI0CKEN |SPI0 Clock Enable Bit
  186. * | | |0 = SPI0 clock Disabled.
  187. * | | |1 = SPI0 clock Enabled.
  188. * |[14] |SPI1CKEN |SPI1 Clock Enable Bit
  189. * | | |0 = SPI1 clock Disabled.
  190. * | | |1 = SPI1 clock Enabled.
  191. * |[15] |SPI2CKEN |SPI2 Clock Enable Bit
  192. * | | |0 = SPI2 clock Disabled.
  193. * | | |1 = SPI2 clock Enabled.
  194. * |[16] |UART0CKEN |UART0 Clock Enable Bit
  195. * | | |0 = UART0 clock Disabled.
  196. * | | |1 = UART0 clock Enabled.
  197. * |[17] |UART1CKEN |UART1 Clock Enable Bit
  198. * | | |0 = UART1 clock Disabled.
  199. * | | |1 = UART1 clock Enabled.
  200. * |[18] |UART2CKEN |UART2 Clock Enable Bit
  201. * | | |0 = UART2 clock Disabled.
  202. * | | |1 = UART2 clock Enabled.
  203. * |[19] |UART3CKEN |UART3 Clock Enable Bit
  204. * | | |0 = UART3 clock Disabled.
  205. * | | |1 = UART3 clock Enabled.
  206. * |[20] |UART4CKEN |UART4 Clock Enable Bit
  207. * | | |0 = UART4 clock Disabled.
  208. * | | |1 = UART4 clock Enabled.
  209. * |[21] |UART5CKEN |UART5 Clock Enable Bit
  210. * | | |0 = UART5 clock Disabled.
  211. * | | |1 = UART5 clock Enabled.
  212. * |[24] |CAN0CKEN |CAN0 Clock Enable Bit
  213. * | | |0 = CAN0 clock Disabled.
  214. * | | |1 = CAN0 clock Enabled.
  215. * |[25] |CAN1CKEN |CAN1 Clock Enable Bit
  216. * | | |0 = CAN1 clock Disabled.
  217. * | | |1 = CAN1 clock Enabled.
  218. * |[26] |OTGCKEN |USB OTG Clock Enable Bit
  219. * | | |0 = USB OTG clock Disabled.
  220. * | | |1 = USB OTG clock Enabled.
  221. * |[27] |USBDCKEN |USB Device Clock Enable Bit
  222. * | | |0 = USB Device clock Disabled.
  223. * | | |1 = USB Device clock Enabled.
  224. * |[28] |EADCCKEN |Enhanced Analog-digital-converter (EADC) Clock Enable Bit
  225. * | | |0 = EADC clock Disabled.
  226. * | | |1 = EADC clock Enabled.
  227. * |[29] |I2S0CKEN |I2S0 Clock Enable Bit
  228. * | | |0 = I2S0 Clock Disabled.
  229. * | | |1 = I2S0 Clock Enabled.
  230. * |[30] |HSOTGCKEN |HSUSB OTG Clock Enable Bit
  231. * | | |0 = HSUSB OTG clock Disabled.
  232. * | | |1 = HSUSB OTG clock Enabled.
  233. * @var CLK_T::APBCLK1
  234. * Offset: 0x0C APB Devices Clock Enable Control Register 1
  235. * ---------------------------------------------------------------------------------------------------
  236. * |Bits |Field |Descriptions
  237. * | :----: | :----: | :---- |
  238. * |[0] |SC0CKEN |SC0 Clock Enable Bit
  239. * | | |0 = SC0 clock Disabled.
  240. * | | |1 = SC0 clock Enabled.
  241. * |[1] |SC1CKEN |SC1 Clock Enable Bit
  242. * | | |0 = SC1 clock Disabled.
  243. * | | |1 = SC1 clock Enabled.
  244. * |[2] |SC2CKEN |SC2 Clock Enable Bit
  245. * | | |0 = SC2 clock Disabled.
  246. * | | |1 = SC2 clock Enabled.
  247. * |[6] |SPI3CKEN |SPI3 Clock Enable Bit
  248. * | | |0 = SPI3 clock Disabled.
  249. * | | |1 = SPI3 clock Enabled.
  250. * |[8] |USCI0CKEN |USCI0 Clock Enable Bit
  251. * | | |0 = USCI0 clock Disabled.
  252. * | | |1 = USCI0 clock Enabled.
  253. * |[9] |USCI1CKEN |USCI1 Clock Enable Bit
  254. * | | |0 = USCI1 clock Disabled.
  255. * | | |1 = USCI1 clock Enabled.
  256. * |[12] |DACCKEN |DAC Clock Enable Bit
  257. * | | |0 = DAC clock Disabled.
  258. * | | |1 = DAC clock Enabled.
  259. * |[16] |EPWM0CKEN |EPWM0 Clock Enable Bit
  260. * | | |0 = EPWM0 clock Disabled.
  261. * | | |1 = EPWM0 clock Enabled.
  262. * |[17] |EPWM1CKEN |EPWM1 Clock Enable Bit
  263. * | | |0 = EPWM1 clock Disabled.
  264. * | | |1 = EPWM1 clock Enabled.
  265. * |[18] |BPWM0CKEN |BPWM0 Clock Enable Bit
  266. * | | |0 = BPWM0 clock Disabled.
  267. * | | |1 = BPWM0 clock Enabled.
  268. * |[19] |BPWM1CKEN |BPWM1 Clock Enable Bit
  269. * | | |0 = BPWM1 clock Disabled.
  270. * | | |1 = BPWM1 clock Enabled.
  271. * |[22] |QEI0CKEN |QEI0 Clock Enable Bit
  272. * | | |0 = QEI0 clock Disabled.
  273. * | | |1 = QEI0 clock Enabled.
  274. * |[23] |QEI1CKEN |QEI1 Clock Enable Bit
  275. * | | |0 = QEI1 clock Disabled.
  276. * | | |1 = QEI1 clock Enabled.
  277. * |[26] |ECAP0CKEN |ECAP0 Clock Enable Bit
  278. * | | |0 = ECAP0 clock Disabled.
  279. * | | |1 = ECAP0 clock Enabled.
  280. * |[27] |ECAP1CKEN |ECAP1 Clock Enable Bit
  281. * | | |0 = ECAP1 clock Disabled.
  282. * | | |1 = ECAP1 clock Enabled.
  283. * |[30] |OPACKEN |OP Amplifier (OPA) Clock Enable Bit
  284. * | | |0 = OPA clock Disabled.
  285. * | | |1 = OPA clock Enabled.
  286. * @var CLK_T::CLKSEL0
  287. * Offset: 0x10 Clock Source Select Control Register 0
  288. * ---------------------------------------------------------------------------------------------------
  289. * |Bits |Field |Descriptions
  290. * | :----: | :----: | :---- |
  291. * |[2:0] |HCLKSEL |HCLK Clock Source Selection (Write Protect)
  292. * | | |Before clock switching, the related clock sources (both pre-select and new-select) must be turned on.
  293. * | | |The default value is reloaded from the value of CFOSC (CONFIG0[26]) in user configuration register of Flash controller by any reset
  294. * | | |Therefore the default value is either 000b or 111b.
  295. * | | |000 = Clock source from HXT.
  296. * | | |001 = Clock source from LXT.
  297. * | | |010 = Clock source from PLL.
  298. * | | |011 = Clock source from LIRC.
  299. * | | |111 = Clock source from HIRC.
  300. * | | |Other = Reserved.
  301. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  302. * |[5:3] |STCLKSEL |Cortex-M4 SysTick Clock Source Selection (Write Protect)
  303. * | | |If SYST_CTRL[2]=0, SysTick uses listed clock source below.
  304. * | | |000 = Clock source from HXT.
  305. * | | |001 = Clock source from LXT.
  306. * | | |010 = Clock source from HXT/2.
  307. * | | |011 = Clock source from HCLK/2.
  308. * | | |111 = Clock source from HIRC/2.
  309. * | | |Note: if SysTick clock source is not from HCLK (i.e
  310. * | | |SYST_CTRL[2] = 0), SysTick clock source must less than or equal to HCLK/2.
  311. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  312. * |[8] |USBSEL |USB Clock Source Selection (Write Protect)
  313. * | | |0 = Clock source from RC48M.
  314. * | | |1 = Clock source from PLL.
  315. * |[21:20] |SDH0SEL |SD0 Engine Clock Source Selection (Write Protect)
  316. * | | |00 = Clock source from HXT clock.
  317. * | | |01 = Clock source from PLL clock.
  318. * | | |10 = Clock source from HCLK.
  319. * | | |11 = Clock source from HIRC clock.
  320. * |[23:22] |SDH1SEL |SD1 Engine Clock Source Selection (Write Protect)
  321. * | | |00 = Clock source from HXT clock.
  322. * | | |01 = Clock source from PLL clock.
  323. * | | |10 = Clock source from HCLK.
  324. * | | |11 = Clock source from HIRC clock.
  325. * @var CLK_T::CLKSEL1
  326. * Offset: 0x14 Clock Source Select Control Register 1
  327. * ---------------------------------------------------------------------------------------------------
  328. * |Bits |Field |Descriptions
  329. * | :----: | :----: | :---- |
  330. * |[1:0] |WDTSEL |Watchdog Timer Clock Source Selection (Write Protect)
  331. * | | |00 = Reserved.
  332. * | | |01 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  333. * | | |10 = Clock source from HCLK/2048.
  334. * | | |11 = Clock source from 10 kHz internal low speed RC oscillator (LIRC).
  335. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  336. * |[10:8] |TMR0SEL |TIMER0 Clock Source Selection
  337. * | | |000 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  338. * | | |001 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  339. * | | |010 = Clock source from PCLK0.
  340. * | | |011 = Clock source from external clock TM0 pin.
  341. * | | |101 = Clock source from 10 kHz internal low speed RC oscillator (LIRC).
  342. * | | |111 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  343. * | | |Others = Reserved.
  344. * |[14:12] |TMR1SEL |TIMER1 Clock Source Selection
  345. * | | |000 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  346. * | | |001 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  347. * | | |010 = Clock source from PCLK0.
  348. * | | |011 = Clock source from external clock TM1 pin.
  349. * | | |101 = Clock source from 10 kHz internal low speed RC oscillator (LIRC).
  350. * | | |111 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  351. * | | |Others = Reserved.
  352. * |[18:16] |TMR2SEL |TIMER2 Clock Source Selection
  353. * | | |000 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  354. * | | |001 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  355. * | | |010 = Clock source from PCLK1.
  356. * | | |011 = Clock source from external clock TM2 pin.
  357. * | | |101 = Clock source from 10 kHz internal low speed RC oscillator (LIRC).
  358. * | | |111 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  359. * | | |Others = Reserved.
  360. * |[22:20] |TMR3SEL |TIMER3 Clock Source Selection
  361. * | | |000 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  362. * | | |001 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  363. * | | |010 = Clock source from PCLK1.
  364. * | | |011 = Clock source from external clock TM3 pin.
  365. * | | |101 = Clock source from 10 kHz internal low speed RC oscillator (LIRC).
  366. * | | |111 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  367. * | | |Others = Reserved.
  368. * |[25:24] |UART0SEL |UART0 Clock Source Selection
  369. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  370. * | | |01 = Clock source from PLL.
  371. * | | |10 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  372. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  373. * |[27:26] |UART1SEL |UART1 Clock Source Selection
  374. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  375. * | | |01 = Clock source from PLL.
  376. * | | |10 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  377. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  378. * |[29:28] |CLKOSEL |Clock Divider Clock Source Selection
  379. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  380. * | | |01 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  381. * | | |10 = Clock source from HCLK.
  382. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  383. * |[31:30] |WWDTSEL |Window Watchdog Timer Clock Source Selection
  384. * | | |10 = Clock source from HCLK/2048.
  385. * | | |11 = Clock source from 10 kHz internal low speed RC oscillator (LIRC).
  386. * | | |Others = Reserved.
  387. * @var CLK_T::CLKSEL2
  388. * Offset: 0x18 Clock Source Select Control Register 2
  389. * ---------------------------------------------------------------------------------------------------
  390. * |Bits |Field |Descriptions
  391. * | :----: | :----: | :---- |
  392. * |[0] |EPWM0SEL |EPWM0 Clock Source Selection
  393. * | | |The peripheral clock source of EPWM0 is defined by EPWM0SEL.
  394. * | | |0 = Clock source from PLL.
  395. * | | |1 = Clock source from PCLK0.
  396. * |[1] |EPWM1SEL |EPWM1 Clock Source Selection
  397. * | | |The peripheral clock source of EPWM1 is defined by EPWM1SEL.
  398. * | | |0 = Clock source from PLL.
  399. * | | |1 = Clock source from PCLK1.
  400. * |[3:2] |QSPI0SEL |QSPI0 Clock Source Selection
  401. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  402. * | | |01 = Clock source from PLL.
  403. * | | |10 = Clock source from PCLK0.
  404. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  405. * |[5:4] |SPI0SEL |SPI0 Clock Source Selection
  406. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  407. * | | |01 = Clock source from PLL.
  408. * | | |10 = Clock source from PCLK1.
  409. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  410. * |[7:6] |SPI1SEL |SPI1 Clock Source Selection
  411. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  412. * | | |01 = Clock source from PLL.
  413. * | | |10 = Clock source from PCLK0.
  414. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  415. * |[8] |BPWM0SEL |BPWM0 Clock Source Selection
  416. * | | |The peripheral clock source of BPWM0 is defined by BPWM0SEL.
  417. * | | |0 = Clock source from PLL.
  418. * | | |1 = Clock source from PCLK0.
  419. * |[9] |BPWM1SEL |BPWM1 Clock Source Selection
  420. * | | |The peripheral clock source of BPWM1 is defined by BPWM1SEL.
  421. * | | |0 = Clock source from PLL.
  422. * | | |1 = Clock source from PCLK1.
  423. * |[11:10] |SPI2SEL |SPI2 Clock Source Selection
  424. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  425. * | | |01 = Clock source from PLL.
  426. * | | |10 = Clock source from PCLK1.
  427. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  428. * |[13:12] |SPI3SEL |SPI3 Clock Source Selection
  429. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  430. * | | |01 = Clock source from PLL.
  431. * | | |10 = Clock source from PCLK0.
  432. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  433. * @var CLK_T::CLKSEL3
  434. * Offset: 0x1C Clock Source Select Control Register 3
  435. * ---------------------------------------------------------------------------------------------------
  436. * |Bits |Field |Descriptions
  437. * | :----: | :----: | :---- |
  438. * |[1:0] |SC0SEL |SC0 Clock Source Selection
  439. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  440. * | | |01 = Clock source from PLL.
  441. * | | |10 = Clock source from PCLK0.
  442. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  443. * |[3:2] |SC1SEL |SC0 Clock Source Selection
  444. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  445. * | | |01 = Clock source from PLL.
  446. * | | |10 = Clock source from PCLK1.
  447. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  448. * |[5:4] |SC2SEL |SC2 Clock Source Selection
  449. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  450. * | | |01 = Clock source from PLL.
  451. * | | |10 = Clock source from PCLK0.
  452. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  453. * |[8] |RTCSEL |RTC Clock Source Selection
  454. * | | |0 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  455. * | | |1 = Clock source from 10 kHz internal low speed RC oscillator (LIRC).
  456. * |[17:16] |I2S0SEL |I2S0 Clock Source Selection
  457. * | | |00 = Clock source from HXT clock.
  458. * | | |01 = Clock source from PLL clock.
  459. * | | |10 = Clock source from PCLK.
  460. * | | |11 = Clock source from HIRC clock.
  461. * |[25:24] |UART2SEL |UART2 Clock Source Selection
  462. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  463. * | | |01 = Clock source from PLL.
  464. * | | |10 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  465. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  466. * |[27:26] |UART3SEL |UART3 Clock Source Selection
  467. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  468. * | | |01 = Clock source from PLL.
  469. * | | |10 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  470. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  471. * |[29:28] |UART4SEL |UART4 Clock Source Selection
  472. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  473. * | | |01 = Clock source from PLL.
  474. * | | |10 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  475. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  476. * |[31:30] |UART5SEL |UART5 Clock Source Selection
  477. * | | |00 = Clock source from 4~24 MHz external high speed crystal oscillator (HXT).
  478. * | | |01 = Clock source from PLL.
  479. * | | |10 = Clock source from 32.768 kHz external low speed crystal oscillator (LXT).
  480. * | | |11 = Clock source from 12 MHz internal high speed RC oscillator (HIRC).
  481. * @var CLK_T::CLKDIV0
  482. * Offset: 0x20 Clock Divider Number Register 0
  483. * ---------------------------------------------------------------------------------------------------
  484. * |Bits |Field |Descriptions
  485. * | :----: | :----: | :---- |
  486. * |[3:0] |HCLKDIV |HCLK Clock Divide Number From HCLK Clock Source
  487. * | | |HCLK clock frequency = (HCLK clock source frequency) / (HCLKDIV + 1).
  488. * |[7:4] |USBDIV |USB Clock Divide Number From PLL Clock
  489. * | | |USB clock frequency = (PLL frequency) / (USBDIV + 1).
  490. * |[11:8] |UART0DIV |UART0 Clock Divide Number From UART0 Clock Source
  491. * | | |UART0 clock frequency = (UART0 clock source frequency) / (UART0DIV + 1).
  492. * |[15:12] |UART1DIV |UART1 Clock Divide Number From UART1 Clock Source
  493. * | | |UART1 clock frequency = (UART1 clock source frequency) / (UART1DIV + 1).
  494. * |[23:16] |EADCDIV |EADC Clock Divide Number From EADC Clock Source
  495. * | | |EADC clock frequency = (EADC clock source frequency) / (EADCDIV + 1).
  496. * |[31:24] |SDH0DIV |SD0 Clock Divide Number From SD0 Clock Source
  497. * | | |SD0 clock frequency = (SD0 clock source frequency) / (SDH0DIV + 1).
  498. * @var CLK_T::CLKDIV1
  499. * Offset: 0x24 Clock Divider Number Register 1
  500. * ---------------------------------------------------------------------------------------------------
  501. * |Bits |Field |Descriptions
  502. * | :----: | :----: | :---- |
  503. * |[7:0] |SC0DIV |SC0 Clock Divide Number From SC0 Clock Source
  504. * | | |SC0 clock frequency = (SC0 clock source frequency ) / (SC0DIV + 1).
  505. * |[15:8] |SC1DIV |SC1 Clock Divide Number From SC1 Clock Source
  506. * | | |SC1 clock frequency = (SC1 clock source frequency ) / (SC1DIV + 1).
  507. * |[23:16] |SC2DIV |SC2 Clock Divide Number From SC2 Clock Source
  508. * | | |SC2 clock frequency = (SC2 clock source frequency ) / (SC2DIV + 1).
  509. * @var CLK_T::CLKDIV3
  510. * Offset: 0x2C Clock Divider Number Register 3
  511. * ---------------------------------------------------------------------------------------------------
  512. * |Bits |Field |Descriptions
  513. * | :----: | :----: | :---- |
  514. * |[23:16] |EMACDIV |Ethernet Clock Divide Number Form HCLK
  515. * | | |EMAC MDCLK clock frequency = (HCLK) / (EMACDIV + 1).
  516. * |[31:24] |SDH1DIV |SD1 Clock Divide Number From SD1 Clock Source
  517. * | | |SD1 clock frequency = (SD1 clock source frequency) / (SDH1DIV + 1).
  518. * @var CLK_T::CLKDIV4
  519. * Offset: 0x30 Clock Divider Number Register 4
  520. * ---------------------------------------------------------------------------------------------------
  521. * |Bits |Field |Descriptions
  522. * | :----: | :----: | :---- |
  523. * |[3:0] |UART2DIV |UART2 Clock Divide Number From UART2 Clock Source
  524. * | | |UART2 clock frequency = (UART2 clock source frequency) / (UART2DIV + 1).
  525. * |[7:4] |UART3DIV |UART3 Clock Divide Number From UART3 Clock Source
  526. * | | |UART3 clock frequency = (UART3 clock source frequency) / (UART3DIV + 1).
  527. * |[11:8] |UART4DIV |UART4 Clock Divide Number From UART4 Clock Source
  528. * | | |UART4 clock frequency = (UART4 clock source frequency) / (UART4DIV + 1).
  529. * |[15:12] |UART5DIV |UART5 Clock Divide Number From UART5 Clock Source
  530. * | | |UART5 clock frequency = (UART5 clock source frequency) / (UART5DIV + 1).
  531. * @var CLK_T::PCLKDIV
  532. * Offset: 0x34 APB Clock Divider Register
  533. * ---------------------------------------------------------------------------------------------------
  534. * |Bits |Field |Descriptions
  535. * | :----: | :----: | :---- |
  536. * |[2:0] |APB0DIV |APB0 Clock Divider
  537. * | | |APB0 clock can be divided from HCLK
  538. * | | |000: PCLK0 = HCLK.
  539. * | | |001: PCLK0 = 1/2 HCLK.
  540. * | | |010: PCLK0 = 1/4 HCLK.
  541. * | | |011: PCLK0 = 1/8 HCLK.
  542. * | | |100: PCLK0 = 1/16 HCLK.
  543. * | | |Others: Reserved.
  544. * |[6:4] |APB1DIV |APB1 Clock Divider
  545. * | | |APB1 clock can be divided from HCLK
  546. * | | |000: PCLK1 = HCLK.
  547. * | | |001: PCLK1 = 1/2 HCLK.
  548. * | | |010: PCLK1 = 1/4 HCLK.
  549. * | | |011: PCLK1 = 1/8 HCLK.
  550. * | | |100: PCLK1 = 1/16 HCLK.
  551. * | | |Others: Reserved.
  552. * @var CLK_T::PLLCTL
  553. * Offset: 0x40 PLL Control Register
  554. * ---------------------------------------------------------------------------------------------------
  555. * |Bits |Field |Descriptions
  556. * | :----: | :----: | :---- |
  557. * |[8:0] |FBDIV |PLL Feedback Divider Control (Write Protect)
  558. * | | |Refer to the formulas below the table.
  559. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  560. * |[13:9] |INDIV |PLL Input Divider Control (Write Protect)
  561. * | | |Refer to the formulas below the table.
  562. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  563. * |[15:14] |OUTDIV |PLL Output Divider Control (Write Protect)
  564. * | | |Refer to the formulas below the table.
  565. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  566. * |[16] |PD |Power-down Mode (Write Protect)
  567. * | | |If set the PDEN bit to 1 in CLK_PWRCTL register, the PLL will enter Power-down mode, too.
  568. * | | |0 = PLL is in normal mode.
  569. * | | |1 = PLL is in Power-down mode (default).
  570. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  571. * |[17] |BP |PLL Bypass Control (Write Protect)
  572. * | | |0 = PLL is in normal mode (default).
  573. * | | |1 = PLL clock output is same as PLL input clock FIN.
  574. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  575. * |[18] |OE |PLL OE (FOUT Enable) Pin Control (Write Protect)
  576. * | | |0 = PLL FOUT Enabled.
  577. * | | |1 = PLL FOUT is fixed low.
  578. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  579. * |[19] |PLLSRC |PLL Source Clock Selection (Write Protect)
  580. * | | |0 = PLL source clock from 4~24 MHz external high-speed crystal oscillator (HXT).
  581. * | | |1 = PLL source clock from 12 MHz internal high-speed oscillator (HIRC).
  582. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  583. * |[23] |STBSEL |PLL Stable Counter Selection (Write Protect)
  584. * | | |0 = PLL stable time is 6144 PLL source clock (suitable for source clock is equal to or less than 12 MHz).
  585. * | | |1 = PLL stable time is 12288 PLL source clock (suitable for source clock is larger than 12 MHz).
  586. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  587. * @var CLK_T::STATUS
  588. * Offset: 0x50 Clock Status Monitor Register
  589. * ---------------------------------------------------------------------------------------------------
  590. * |Bits |Field |Descriptions
  591. * | :----: | :----: | :---- |
  592. * |[0] |HXTSTB |HXT Clock Source Stable Flag (Read Only)
  593. * | | |0 = 4~24 MHz external high speed crystal oscillator (HXT) clock is not stable or disabled.
  594. * | | |1 = 4~24 MHz external high speed crystal oscillator (HXT) clock is stable and enabled.
  595. * |[1] |LXTSTB |LXT Clock Source Stable Flag (Read Only)
  596. * | | |0 = 32.768 kHz external low speed crystal oscillator (LXT) clock is not stable or disabled.
  597. * | | |1 = 32.768 kHz external low speed crystal oscillator (LXT) clock is stabled and enabled.
  598. * |[2] |PLLSTB |Internal PLL Clock Source Stable Flag (Read Only)
  599. * | | |0 = Internal PLL clock is not stable or disabled.
  600. * | | |1 = Internal PLL clock is stable and enabled.
  601. * |[3] |LIRCSTB |LIRC Clock Source Stable Flag (Read Only)
  602. * | | |0 = 10 kHz internal low speed RC oscillator (LIRC) clock is not stable or disabled.
  603. * | | |1 = 10 kHz internal low speed RC oscillator (LIRC) clock is stable and enabled.
  604. * |[4] |HIRCSTB |HIRC Clock Source Stable Flag (Read Only)
  605. * | | |0 = 12 MHz internal high speed RC oscillator (HIRC) clock is not stable or disabled.
  606. * | | |1 = 12 MHz internal high speed RC oscillator (HIRC) clock is stable and enabled.
  607. * | | |Note: This bit is read only.
  608. * |[6] |HIRC48MSTB|HIRC 48MHz Clock Source Stable Flag (Read Only)
  609. * | | |0 = 48 MHz internal high speed RC oscillator (HIRC) clock is not stable or disabled.
  610. * | | |1 = 48 MHz internal high speed RC oscillator (HIRC) clock is stable and enabled.
  611. * | | |Note: This bit is read only.
  612. * |[7] |CLKSFAIL |Clock Switching Fail Flag (Read Only)
  613. * | | |This bit is updated when software switches system clock source
  614. * | | |If switch target clock is stable, this bit will be set to 0
  615. * | | |If switch target clock is not stable, this bit will be set to 1.
  616. * | | |0 = Clock switching success.
  617. * | | |1 = Clock switching failure.
  618. * | | |Note: Write 1 to clear the bit to 0.
  619. * @var CLK_T::CLKOCTL
  620. * Offset: 0x60 Clock Output Control Register
  621. * ---------------------------------------------------------------------------------------------------
  622. * |Bits |Field |Descriptions
  623. * | :----: | :----: | :---- |
  624. * |[3:0] |FREQSEL |Clock Output Frequency Selection
  625. * | | |The formula of output frequency is
  626. * | | |Fout = Fin/2(N+1).
  627. * | | |Fin is the input clock frequency.
  628. * | | |Fout is the frequency of divider output clock.
  629. * | | |N is the 4-bit value of FREQSEL[3:0].
  630. * |[4] |CLKOEN |Clock Output Enable Bit
  631. * | | |0 = Clock Output function Disabled.
  632. * | | |1 = Clock Output function Enabled.
  633. * |[5] |DIV1EN |Clock Output Divide One Enable Bit
  634. * | | |0 = Clock Output will output clock with source frequency divided by FREQSEL.
  635. * | | |1 = Clock Output will output clock with source frequency.
  636. * |[6] |CLK1HZEN |Clock Output 1Hz Enable Bit
  637. * | | |0 = 1 Hz clock output for 32.768 kHz frequency compensation Disabled.
  638. * | | |1 = 1 Hz clock output for 32.768 kHz frequency compensation Enabled.
  639. * @var CLK_T::CLKDCTL
  640. * Offset: 0x70 Clock Fail Detector Control Register
  641. * ---------------------------------------------------------------------------------------------------
  642. * |Bits |Field |Descriptions
  643. * | :----: | :----: | :---- |
  644. * |[4] |HXTFDEN |HXT Clock Fail Detector Enable Bit
  645. * | | |0 = 4~24 MHz external high speed crystal oscillator (HXT) clock fail detector Disabled.
  646. * | | |1 = 4~24 MHz external high speed crystal oscillator (HXT) clock fail detector Enabled.
  647. * |[5] |HXTFIEN |HXT Clock Fail Interrupt Enable Bit
  648. * | | |0 = 4~24 MHz external high speed crystal oscillator (HXT) clock fail interrupt Disabled.
  649. * | | |1 = 4~24 MHz external high speed crystal oscillator (HXT) clock fail interrupt Enabled.
  650. * |[12] |LXTFDEN |LXT Clock Fail Detector Enable Bit
  651. * | | |0 = 32.768 kHz external low speed crystal oscillator (LXT) clock fail detector Disabled.
  652. * | | |1 = 32.768 kHz external low speed crystal oscillator (LXT) clock fail detector Enabled.
  653. * |[13] |LXTFIEN |LXT Clock Fail Interrupt Enable Bit
  654. * | | |0 = 32.768 kHz external low speed crystal oscillator (LXT) clock fail interrupt Disabled.
  655. * | | |1 = 32.768 kHz external low speed crystal oscillator (LXT) clock fail interrupt Enabled.
  656. * |[16] |HXTFQDEN |HXT Clock Frequency Range Detector Enable Bit
  657. * | | |0 = 4~24 MHz external high speed crystal oscillator (HXT) clock frequency range detector Disabled.
  658. * | | |1 = 4~24 MHz external high speed crystal oscillator (HXT) clock frequency range detector Enabled.
  659. * |[17] |HXTFQIEN |HXT Clock Frequency Range Detector Interrupt Enable Bit
  660. * | | |0 = 4~24 MHz external high speed crystal oscillator (HXT) clock frequency range detector fail interrupt Disabled.
  661. * | | |1 = 4~24 MHz external high speed crystal oscillator (HXT) clock frequency range detector fail interrupt Enabled.
  662. * @var CLK_T::CLKDSTS
  663. * Offset: 0x74 Clock Fail Detector Status Register
  664. * ---------------------------------------------------------------------------------------------------
  665. * |Bits |Field |Descriptions
  666. * | :----: | :----: | :---- |
  667. * |[0] |HXTFIF |HXT Clock Fail Interrupt Flag
  668. * | | |0 = 4~24 MHz external high speed crystal oscillator (HXT) clock is normal.
  669. * | | |1 = 4~24 MHz external high speed crystal oscillator (HXT) clock stops.
  670. * | | |Note: Write 1 to clear the bit to 0.
  671. * |[1] |LXTFIF |LXT Clock Fail Interrupt Flag
  672. * | | |0 = 32.768 kHz external low speed crystal oscillator (LXT) clock is normal.
  673. * | | |1 = 32.768 kHz external low speed crystal oscillator (LXT) stops.
  674. * | | |Note: Write 1 to clear the bit to 0.
  675. * |[8] |HXTFQIF |HXT Clock Frequency Range Detector Interrupt Flag
  676. * | | |0 = 4~24 MHz external high speed crystal oscillator (HXT) clock frequency is normal.
  677. * | | |1 = 4~24 MHz external high speed crystal oscillator (HXT) clock frequency is abnormal.
  678. * | | |Note: Write 1 to clear the bit to 0.
  679. * @var CLK_T::CDUPB
  680. * Offset: 0x78 Clock Frequency Range Detector Upper Boundary Register
  681. * ---------------------------------------------------------------------------------------------------
  682. * |Bits |Field |Descriptions
  683. * | :----: | :----: | :---- |
  684. * |[9:0] |UPERBD |HXT Clock Frequency Range Detector Upper Boundary Value
  685. * | | |The bits define the maximum value of frequency range detector window.
  686. * | | |When HXT frequency higher than this maximum frequency value, the HXT Clock Frequency Range Detector Interrupt Flag will set to 1.
  687. * @var CLK_T::CDLOWB
  688. * Offset: 0x7C Clock Frequency Range Detector Lower Boundary Register
  689. * ---------------------------------------------------------------------------------------------------
  690. * |Bits |Field |Descriptions
  691. * | :----: | :----: | :---- |
  692. * |[9:0] |LOWERBD |HXT Clock Frequency Range Detector Lower Boundary Value
  693. * | | |The bits define the minimum value of frequency range detector window.
  694. * | | |When HXT frequency lower than this minimum frequency value, the HXT Clock Frequency Range Detector Interrupt Flag will set to 1.
  695. * @var CLK_T::PMUCTL
  696. * Offset: 0x90 Power Manager Control Register
  697. * ---------------------------------------------------------------------------------------------------
  698. * |Bits |Field |Descriptions
  699. * | :----: | :----: | :---- |
  700. * |[2:0] |PDMSEL |Power-down Mode Selection (Write Protect)
  701. * | | |This is a protected register. Please refer to open lock sequence to program it.
  702. * | | |These bits control chip power-down mode grade selection when CPU execute WFI/WFE instruction.
  703. * | | |000 = Power-down mode is selected. (PD)
  704. * | | |001 = Low leakage Power-down mode is selected (LLPD).
  705. * | | |010 =Fast wake-up Power-down mode is selected (FWPD).
  706. * | | |011 = Reserved.
  707. * | | |100 = Standby Power-down mode 0 is selected (SPD0) (SRAM retention).
  708. * | | |101 = Standby Power-down mode 1 is selected (SPD1).
  709. * | | |110 = Deep Power-down mode is selected (DPD).
  710. * | | |111 = Reserved.
  711. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  712. * |[3] |DPDHOLDEN |Deep-Power-Down Mode GPIO Hold Enable
  713. * | | |0 = When GPIO enters deep power-down mode, all I/O status are tri-state.
  714. * | | |1 = When GPIO enters deep power-down mode, all I/O status are hold to keep normal operating status.
  715. * | | | After chip was waked up from deep power-down mode, the I/O are still keep hold status until user set CLK_IOPDCTL[0]
  716. * | | | to release I/O hold status.
  717. * |[8] |WKTMREN |Wake-up Timer Enable (Write Protect)
  718. * | | |This is a protected register. Please refer to open lock sequence to program it.
  719. * | | |0 = Wake-up timer disable at DPD/SPD mode.
  720. * | | |1 = Wake-up timer enabled at DPD/SPD mode.
  721. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  722. * |[11:9] |WKTMRIS |Wake-up Timer Time-out Interval Select (Write Protect)
  723. * | | |This is a protected register. Please refer to open lock sequence to program it.
  724. * | | |These bits control wake-up timer time-out interval when chip at DPD/SPD mode.
  725. * | | |000 = Time-out interval is 128 OSC10K clocks (12.8 ms).
  726. * | | |001 = Time-out interval is 256 OSC10K clocks (25.6 ms).
  727. * | | |010 = Time-out interval is 512 OSC10K clocks (51.2 ms).
  728. * | | |011 = Time-out interval is 1024 OSC10K clocks (102.4ms).
  729. * | | |100 = Time-out interval is 4096 OSC10K clocks (409.6ms).
  730. * | | |101 = Time-out interval is 8192 OSC10K clocks (819.2ms).
  731. * | | |110 = Time-out interval is 16384 OSC10K clocks (1638.4ms).
  732. * | | |111 = Time-out interval is 65536 OSC10K clocks (6553.6ms).
  733. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  734. * |[17:16] |WKPINEN |Wake-up Pin Enable (Write Protect)
  735. * | | |This is a protected register. Please refer to open lock sequence to program it.
  736. * | | |00 = Wake-up pin disable at Deep Power-down mode.
  737. * | | |01 = Wake-up pin rising edge enabled at Deep Power-down mode.
  738. * | | |10 = Wake-up pin falling edge enabled at Deep Power-down mode.
  739. * | | |11 = Wake-up pin both edge enabled at Deep Power-down mode.
  740. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  741. * |[18] |ACMPSPWK |ACMP Standby Power-down Mode Wake-up Enable (Write Protect)
  742. * | | |This is a protected register. Please refer to open lock sequence to program it.
  743. * | | |0 = ACMP wake-up disable at Standby Power-down mode.
  744. * | | |1 = ACMP wake-up enabled at Standby Power-down mode.
  745. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  746. * |[23] |RTCWKEN |RTC Wake-up Enable (Write Protect)
  747. * | | |This is a protected register. Please refer to open lock sequence to program it.
  748. * | | |0 = RTC wake-up disable at Deep Power-down mode or Standby Power-down mode.
  749. * | | |1 = RTC wake-up enabled at Deep Power-down mode or Standby Power-down mode.
  750. * | | |Note: This bit is write protected. Refer to the SYS_REGLCTL register.
  751. * @var CLK_T::PMUSTS
  752. * Offset: 0x94 Power Manager Status Register
  753. * ---------------------------------------------------------------------------------------------------
  754. * |Bits |Field |Descriptions
  755. * | :----: | :----: | :---- |
  756. * |[0] |PINWK |Pin Wake-up Flag (Read Only)
  757. * | | |This flag indicates that wake-up of chip from Deep Power-down mode was requested by a transition of the WAKEUP pin (GPC.0)
  758. * | | |This flag is cleared when DPD mode is entered.
  759. * |[1] |TMRWK |Timer Wake-up Flag (Read Only)
  760. * | | |This flag indicates that wake-up of chip from Deep Power-down mode (DPD) or Standby Power-down (SPD) mode was requested by wakeup timer time-out
  761. * | | |This flag is cleared when DPD or SPD mode is entered.
  762. * |[2] |RTCWK |RTC Wake-up Flag (Read Only)
  763. * | | |This flag indicates that wakeup of device from Deep Power-down mode (DPD) or Standby Power-down (SPD) mode was requested with a RTC alarm, tick time or tamper happened
  764. * | | |This flag is cleared when DPD or SPD mode is entered.
  765. * |[8] |GPAWK |GPA Wake-up Flag (Read Only)
  766. * | | |This flag indicates that wake-up of chip from Standby Power-down mode was requested by a transition of selected one GPA group pins
  767. * | | |This flag is cleared when SPD mode is entered.
  768. * |[9] |GPBWK |GPB Wake-up Flag (Read Only)
  769. * | | |This flag indicates that wake-up of chip from Standby Power-down mode was requested by a transition of selected one GPB group pins
  770. * | | |This flag is cleared when SPD mode is entered.
  771. * |[10] |GPCWK |GPC Wake-up Flag (Read Only)
  772. * | | |This flag indicates that wake-up of chip from Standby Power-down mode was requested by a transition of selected one GPC group pins
  773. * | | |This flag is cleared when SPD mode is entered.
  774. * |[11] |GPDWK |GPD Wake-up Flag (Read Only)
  775. * | | |This flag indicates that wake-up of chip from Standby Power-down mode was requested by a transition of selected one GPD group pins
  776. * | | |This flag is cleared when SPD mode is entered.
  777. * |[12] |LVRWK |LVR Wake-up Flag (Read Only)
  778. * | | |This flag indicates that wakeup of device from Standby Power-down mode was requested with a LVR happened
  779. * | | |This flag is cleared when SPD mode is entered.
  780. * |[13] |BODWK |BOD Wake-up Flag (Read Only)
  781. * | | |This flag indicates that wakeup of device from Standby Power-down mode (SPD) was requested with a BOD happened
  782. * | | |This flag is cleared when SPD mode is entered.
  783. * |[14] |ACMPWK |ACMP Wake-up Flag (Read Only)
  784. * | | |This flag indicates that wakeup of device from Standby Power-down mode (SPD) was requested with a ACMP transition
  785. * | | |This flag is cleared when SPD mode is entered.
  786. * |[31] |CLRWK |Clear Wake-up Flag
  787. * | | |0 = No clear.
  788. * | | |1 = Clear all wake-up flag.
  789. * @var CLK_T::LDOCTL
  790. * Offset: 0x98 LDO Control Register
  791. * ---------------------------------------------------------------------------------------------------
  792. * |Bits |Field |Descriptions
  793. * | :----: | :----: | :---- |
  794. * |[18] |PDBIASEN |Power-down Bias Enable Bit
  795. * | | |0 = Reserved.
  796. * | | |1 = Power-down bias enabled.
  797. * | | |Note: This bit should set to 1 before chip enter power-down mode.
  798. * @var CLK_T::SWKDBCTL
  799. * Offset: 0x9C Standby Power-down Wake-up De-bounce Control Register
  800. * ---------------------------------------------------------------------------------------------------
  801. * |Bits |Field |Descriptions
  802. * | :----: | :----: | :---- |
  803. * |[3:0] |SWKDBCLKSEL|Standby Power-down Wake-up De-bounce Sampling Cycle Selection
  804. * | | |0000 = Sample wake-up input once per 1 clocks.
  805. * | | |0001 = Sample wake-up input once per 2 clocks.
  806. * | | |0010 = Sample wake-up input once per 4 clocks.
  807. * | | |0011 = Sample wake-up input once per 8 clocks.
  808. * | | |0100 = Sample wake-up input once per 16 clocks.
  809. * | | |0101 = Sample wake-up input once per 32 clocks.
  810. * | | |0110 = Sample wake-up input once per 64 clocks.
  811. * | | |0111 = Sample wake-up input once per 128 clocks.
  812. * | | |1000 = Sample wake-up input once per 256 clocks.
  813. * | | |1001 = Sample wake-up input once per 2*256 clocks.
  814. * | | |1010 = Sample wake-up input once per 4*256 clocks.
  815. * | | |1011 = Sample wake-up input once per 8*256 clocks.
  816. * | | |1100 = Sample wake-up input once per 16*256 clocks.
  817. * | | |1101 = Sample wake-up input once per 32*256 clocks.
  818. * | | |1110 = Sample wake-up input once per 64*256 clocks.
  819. * | | |1111 = Sample wake-up input once per 128*256 clocks.
  820. * | | |Note: De-bounce counter clock source is the 10 kHz internal low speed RC oscillator (LIRC).
  821. * @var CLK_T::PASWKCTL
  822. * Offset: 0xA0 GPA Standby Power-down Wake-up Control Register
  823. * ---------------------------------------------------------------------------------------------------
  824. * |Bits |Field |Descriptions
  825. * | :----: | :----: | :---- |
  826. * |[0] |WKEN |Standby Power-down Pin Wake-up Enable Bit
  827. * | | |0 = GPA group pin wake-up function disabled.
  828. * | | |1 = GPA group pin wake-up function enabled.
  829. * |[1] |PRWKEN |Pin Rising Edge Wake-up Enable Bit
  830. * | | |0 = GPA group pin rising edge wake-up function disabled.
  831. * | | |1 = GPA group pin rising edge wake-up function enabled.
  832. * |[2] |PFWKEN |Pin Falling Edge Wake-up Enable Bit
  833. * | | |0 = GPA group pin falling edge wake-up function disabled.
  834. * | | |1 = GPA group pin falling edge wake-up function enabled.
  835. * |[7:4] |WKPSEL |GPA Standby Power-down Wake-up Pin Select
  836. * | | |0000 = GPA.0 wake-up function enabled.
  837. * | | |0001 = GPA.1 wake-up function enabled.
  838. * | | |0010 = GPA.2 wake-up function enabled.
  839. * | | |0011 = GPA.3 wake-up function enabled.
  840. * | | |0100 = GPA.4 wake-up function enabled.
  841. * | | |0101 = GPA.5 wake-up function enabled.
  842. * | | |0110 = GPA.6 wake-up function enabled.
  843. * | | |0111 = GPA.7 wake-up function enabled.
  844. * | | |1000 = GPA.8 wake-up function enabled.
  845. * | | |1001 = GPA.9 wake-up function enabled.
  846. * | | |1010 = GPA.10 wake-up function enabled.
  847. * | | |1011 = GPA.11 wake-up function enabled.
  848. * | | |1100 = GPA.12 wake-up function enabled.
  849. * | | |1101 = GPA.13 wake-up function enabled.
  850. * | | |1110 = GPA.14 wake-up function enabled.
  851. * | | |1111 = GPA.15 wake-up function enabled.
  852. * |[8] |DBEN |GPA Input Signal De-bounce Enable Bit
  853. * | | |The DBEN bit is used to enable the de-bounce function for each corresponding IO
  854. * | | |If the input signal pulse width cannot be sampled by continuous two de-bounce sample cycle, the input signal transition is seen as the signal bounce and will not trigger the wake-up
  855. * | | |The de-bounce clock source is the 10 kHz internal low speed RC oscillator.
  856. * | | |0 = Standby power-down wake-up pin De-bounce function disable.
  857. * | | |1 = Standby power-down wake-up pin De-bounce function enable.
  858. * | | |The de-bounce function is valid only for edge triggered.
  859. * @var CLK_T::PBSWKCTL
  860. * Offset: 0xA4 GPB Standby Power-down Wake-up Control Register
  861. * ---------------------------------------------------------------------------------------------------
  862. * |Bits |Field |Descriptions
  863. * | :----: | :----: | :---- |
  864. * |[0] |WKEN |Standby Power-down Pin Wake-up Enable Bit
  865. * | | |0 = GPB group pin wake-up function disabled.
  866. * | | |1 = GPB group pin wake-up function enabled.
  867. * |[1] |PRWKEN |Pin Rising Edge Wake-up Enable Bit
  868. * | | |0 = GPB group pin rising edge wake-up function disabled.
  869. * | | |1 = GPB group pin rising edge wake-up function enabled.
  870. * |[2] |PFWKEN |Pin Falling Edge Wake-up Enable Bit
  871. * | | |0 = GPB group pin falling edge wake-up function disabled.
  872. * | | |1 = GPB group pin falling edge wake-up function enabled.
  873. * |[7:4] |WKPSEL |GPB Standby Power-down Wake-up Pin Select
  874. * | | |0000 = GPB.0 wake-up function enabled.
  875. * | | |0001 = GPB.1 wake-up function enabled.
  876. * | | |0010 = GPB.2 wake-up function enabled.
  877. * | | |0011 = GPB.3 wake-up function enabled.
  878. * | | |0100 = GPB.4 wake-up function enabled.
  879. * | | |0101 = GPB.5 wake-up function enabled.
  880. * | | |0110 = GPB.6 wake-up function enabled.
  881. * | | |0111 = GPB.7 wake-up function enabled.
  882. * | | |1000 = GPB.8 wake-up function enabled.
  883. * | | |1001 = GPB.9 wake-up function enabled.
  884. * | | |1010 = GPB.10 wake-up function enabled.
  885. * | | |1011 = GPB.11 wake-up function enabled.
  886. * | | |1100 = GPB.12 wake-up function enabled.
  887. * | | |1101 = GPB.13 wake-up function enabled.
  888. * | | |1110 = GPB.14 wake-up function enabled.
  889. * | | |1111 = GPB.15 wake-up function enabled.
  890. * |[8] |DBEN |GPB Input Signal De-bounce Enable Bit
  891. * | | |The DBEN bit is used to enable the de-bounce function for each corresponding IO
  892. * | | |If the input signal pulse width cannot be sampled by continuous two de-bounce sample cycle, the input signal transition is seen as the signal bounce and will not trigger the wake-up
  893. * | | |The de-bounce clock source is the 10 kHz internal low speed RC oscillator.
  894. * | | |0 = Standby power-down wake-up pin De-bounce function disable.
  895. * | | |1 = Standby power-down wake-up pin De-bounce function enable.
  896. * | | |The de-bounce function is valid only for edge triggered.
  897. * @var CLK_T::PCSWKCTL
  898. * Offset: 0xA8 GPC Standby Power-down Wake-up Control Register
  899. * ---------------------------------------------------------------------------------------------------
  900. * |Bits |Field |Descriptions
  901. * | :----: | :----: | :---- |
  902. * |[0] |WKEN |Standby Power-down Pin Wake-up Enable Bit
  903. * | | |0 = GPC group pin wake-up function disabled.
  904. * | | |1 = GPC group pin wake-up function enabled.
  905. * |[1] |PRWKEN |Pin Rising Edge Wake-up Enable Bit
  906. * | | |0 = GPC group pin rising edge wake-up function disabled.
  907. * | | |1 = GPC group pin rising edge wake-up function enabled.
  908. * |[2] |PFWKEN |Pin Falling Edge Wake-up Enable Bit
  909. * | | |0 = GPC group pin falling edge wake-up function disabled.
  910. * | | |1 = GPC group pin falling edge wake-up function enabled.
  911. * |[7:4] |WKPSEL |GPC Standby Power-down Wake-up Pin Select
  912. * | | |0000 = GPC.0 wake-up function enabled.
  913. * | | |0001 = GPC.1 wake-up function enabled.
  914. * | | |0010 = GPC.2 wake-up function enabled.
  915. * | | |0011 = GPC.3 wake-up function enabled.
  916. * | | |0100 = GPC.4 wake-up function enabled.
  917. * | | |0101 = GPC.5 wake-up function enabled.
  918. * | | |0110 = GPC.6 wake-up function enabled.
  919. * | | |0111 = GPC.7 wake-up function enabled.
  920. * | | |1000 = GPC.8 wake-up function enabled.
  921. * | | |1001 = GPC.9 wake-up function enabled.
  922. * | | |1010 = GPC.10 wake-up function enabled.
  923. * | | |1011 = GPC.11 wake-up function enabled.
  924. * | | |1100 = GPC.12 wake-up function enabled.
  925. * | | |1101 = GPC.13 wake-up function enabled.
  926. * | | |1110 = GPC.14 wake-up function enabled.
  927. * | | |1111 = GPC.15 wake-up function enabled.
  928. * |[8] |DBEN |GPC Input Signal De-bounce Enable Bit
  929. * | | |The DBEN bit is used to enable the de-bounce function for each corresponding IO
  930. * | | |If the input signal pulse width cannot be sampled by continuous two de-bounce sample cycle, the input signal transition is seen as the signal bounce and will not trigger the wake-up
  931. * | | |The de-bounce clock source is the 10 kHz internal low speed RC oscillator.
  932. * | | |0 = Standby power-down wake-up pin De-bounce function disable.
  933. * | | |1 = Standby power-down wake-up pin De-bounce function enable.
  934. * | | |The de-bounce function is valid only for edge triggered.
  935. * @var CLK_T::PDSWKCTL
  936. * Offset: 0xAC GPD Standby Power-down Wake-up Control Register
  937. * ---------------------------------------------------------------------------------------------------
  938. * |Bits |Field |Descriptions
  939. * | :----: | :----: | :---- |
  940. * |[0] |WKEN |Standby Power-down Pin Wake-up Enable Bit
  941. * | | |0 = GPD group pin wake-up function disabled.
  942. * | | |1 = GPD group pin wake-up function enabled.
  943. * |[1] |PRWKEN |Pin Rising Edge Wake-up Enable Bit
  944. * | | |0 = GPD group pin rising edge wake-up function disabled.
  945. * | | |1 = GPD group pin rising edge wake-up function enabled.
  946. * |[2] |PFWKEN |Pin Falling Edge Wake-up Enable Bit
  947. * | | |0 = GPD group pin falling edge wake-up function disabled.
  948. * | | |1 = GPD group pin falling edge wake-up function enabled.
  949. * |[7:4] |WKPSEL |GPD Standby Power-down Wake-up Pin Select
  950. * | | |0000 = GPD.0 wake-up function enabled.
  951. * | | |0001 = GPD.1 wake-up function enabled.
  952. * | | |0010 = GPD.2 wake-up function enabled.
  953. * | | |0011 = GPD.3 wake-up function enabled.
  954. * | | |0100 = GPD.4 wake-up function enabled.
  955. * | | |0101 = GPD.5 wake-up function enabled.
  956. * | | |0110 = GPD.6 wake-up function enabled.
  957. * | | |0111 = GPD.7 wake-up function enabled.
  958. * | | |1000 = GPD.8 wake-up function enabled.
  959. * | | |1001 = GPD.9 wake-up function enabled.
  960. * | | |1010 = GPD.10 wake-up function enabled.
  961. * | | |1011 = GPD.11 wake-up function enabled.
  962. * | | |1100 = GPD.12 wake-up function enabled.
  963. * | | |1101 = GPD.13 wake-up function enabled.
  964. * | | |1110 = GPD.14 wake-up function enabled.
  965. * | | |1111 = GPD.15 wake-up function enabled.
  966. * |[8] |DBEN |GPD Input Signal De-bounce Enable Bit
  967. * | | |The DBEN bit is used to enable the de-bounce function for each corresponding IO
  968. * | | |If the input signal pulse width cannot be sampled by continuous two de-bounce sample cycle, the input signal transition is seen as the signal bounce and will not trigger the wake-up
  969. * | | |The de-bounce clock source is the 10 kHz internal low speed RC oscillator.
  970. * | | |0 = Standby power-down wake-up pin De-bounce function disable.
  971. * | | |1 = Standby power-down wake-up pin De-bounce function enable.
  972. * | | |The de-bounce function is valid only for edge triggered.
  973. * @var CLK_T::IOPDCTL
  974. * Offset: 0xB0 GPIO Standby Power-down Control Register
  975. * ---------------------------------------------------------------------------------------------------
  976. * |Bits |Field |Descriptions
  977. * | :----: | :----: | :---- |
  978. * |[0] |IOHR |GPIO Hold Release
  979. * | | |When GPIO enter standby power-down mode, all I/O status are hold to keep normal operating status
  980. * | | |After chip was waked up from standby power-down mode, the I/O are still keep hold status until user set this bit to release I/O hold status.
  981. * | | |This bit is auto cleared by hardware.
  982. */
  983. __IO uint32_t PWRCTL; /*!< [0x0000] System Power-down Control Register */
  984. __IO uint32_t AHBCLK; /*!< [0x0004] AHB Devices Clock Enable Control Register */
  985. __IO uint32_t APBCLK0; /*!< [0x0008] APB Devices Clock Enable Control Register 0 */
  986. __IO uint32_t APBCLK1; /*!< [0x000c] APB Devices Clock Enable Control Register 1 */
  987. __IO uint32_t CLKSEL0; /*!< [0x0010] Clock Source Select Control Register 0 */
  988. __IO uint32_t CLKSEL1; /*!< [0x0014] Clock Source Select Control Register 1 */
  989. __IO uint32_t CLKSEL2; /*!< [0x0018] Clock Source Select Control Register 2 */
  990. __IO uint32_t CLKSEL3; /*!< [0x001c] Clock Source Select Control Register 3 */
  991. __IO uint32_t CLKDIV0; /*!< [0x0020] Clock Divider Number Register 0 */
  992. __IO uint32_t CLKDIV1; /*!< [0x0024] Clock Divider Number Register 1 */
  993. __IO uint32_t CLKDIV2; /*!< [0x0028] Clock Divider Number Register 2 */
  994. __IO uint32_t CLKDIV3; /*!< [0x002c] Clock Divider Number Register 3 */
  995. __IO uint32_t CLKDIV4; /*!< [0x0030] Clock Divider Number Register 4 */
  996. __IO uint32_t PCLKDIV; /*!< [0x0034] APB Clock Divider Register */
  997. /** @cond HIDDEN_SYMBOLS */
  998. __I uint32_t RESERVE1[2];
  999. /** @endcond */
  1000. __IO uint32_t PLLCTL; /*!< [0x0040] PLL Control Register */
  1001. /** @cond HIDDEN_SYMBOLS */
  1002. __I uint32_t RESERVE2[3];
  1003. /** @endcond */
  1004. __I uint32_t STATUS; /*!< [0x0050] Clock Status Monitor Register */
  1005. /** @cond HIDDEN_SYMBOLS */
  1006. __I uint32_t RESERVE3[3];
  1007. /** @endcond */
  1008. __IO uint32_t CLKOCTL; /*!< [0x0060] Clock Output Control Register */
  1009. /** @cond HIDDEN_SYMBOLS */
  1010. __I uint32_t RESERVE4[3];
  1011. /** @endcond */
  1012. __IO uint32_t CLKDCTL; /*!< [0x0070] Clock Fail Detector Control Register */
  1013. __IO uint32_t CLKDSTS; /*!< [0x0074] Clock Fail Detector Status Register */
  1014. __IO uint32_t CDUPB; /*!< [0x0078] Clock Frequency Range Detector Upper Boundary Register */
  1015. __IO uint32_t CDLOWB; /*!< [0x007c] Clock Frequency Range Detector Lower Boundary Register */
  1016. /** @cond HIDDEN_SYMBOLS */
  1017. __I uint32_t RESERVE5[4];
  1018. /** @endcond */
  1019. __IO uint32_t PMUCTL; /*!< [0x0090] Power Manager Control Register */
  1020. __IO uint32_t PMUSTS; /*!< [0x0094] Power Manager Status Register */
  1021. __IO uint32_t LDOCTL; /*!< [0x0098] LDO Control Register */
  1022. __IO uint32_t SWKDBCTL; /*!< [0x009c] Standby Power-down Wake-up De-bounce Control Register */
  1023. __IO uint32_t PASWKCTL; /*!< [0x00a0] GPA Standby Power-down Wake-up Control Register */
  1024. __IO uint32_t PBSWKCTL; /*!< [0x00a4] GPB Standby Power-down Wake-up Control Register */
  1025. __IO uint32_t PCSWKCTL; /*!< [0x00a8] GPC Standby Power-down Wake-up Control Register */
  1026. __IO uint32_t PDSWKCTL; /*!< [0x00ac] GPD Standby Power-down Wake-up Control Register */
  1027. __IO uint32_t IOPDCTL; /*!< [0x00b0] GPIO Standby Power-down Control Register */
  1028. } CLK_T;
  1029. /**
  1030. @addtogroup CLK_CONST CLK Bit Field Definition
  1031. Constant Definitions for CLK Controller
  1032. @{ */
  1033. #define CLK_PWRCTL_HXTEN_Pos (0) /*!< CLK_T::PWRCTL: HXTEN Position */
  1034. #define CLK_PWRCTL_HXTEN_Msk (0x1ul << CLK_PWRCTL_HXTEN_Pos) /*!< CLK_T::PWRCTL: HXTEN Mask */
  1035. #define CLK_PWRCTL_LXTEN_Pos (1) /*!< CLK_T::PWRCTL: LXTEN Position */
  1036. #define CLK_PWRCTL_LXTEN_Msk (0x1ul << CLK_PWRCTL_LXTEN_Pos) /*!< CLK_T::PWRCTL: LXTEN Mask */
  1037. #define CLK_PWRCTL_HIRCEN_Pos (2) /*!< CLK_T::PWRCTL: HIRCEN Position */
  1038. #define CLK_PWRCTL_HIRCEN_Msk (0x1ul << CLK_PWRCTL_HIRCEN_Pos) /*!< CLK_T::PWRCTL: HIRCEN Mask */
  1039. #define CLK_PWRCTL_LIRCEN_Pos (3) /*!< CLK_T::PWRCTL: LIRCEN Position */
  1040. #define CLK_PWRCTL_LIRCEN_Msk (0x1ul << CLK_PWRCTL_LIRCEN_Pos) /*!< CLK_T::PWRCTL: LIRCEN Mask */
  1041. #define CLK_PWRCTL_PDWKDLY_Pos (4) /*!< CLK_T::PWRCTL: PDWKDLY Position */
  1042. #define CLK_PWRCTL_PDWKDLY_Msk (0x1ul << CLK_PWRCTL_PDWKDLY_Pos) /*!< CLK_T::PWRCTL: PDWKDLY Mask */
  1043. #define CLK_PWRCTL_PDWKIEN_Pos (5) /*!< CLK_T::PWRCTL: PDWKIEN Position */
  1044. #define CLK_PWRCTL_PDWKIEN_Msk (0x1ul << CLK_PWRCTL_PDWKIEN_Pos) /*!< CLK_T::PWRCTL: PDWKIEN Mask */
  1045. #define CLK_PWRCTL_PDWKIF_Pos (6) /*!< CLK_T::PWRCTL: PDWKIF Position */
  1046. #define CLK_PWRCTL_PDWKIF_Msk (0x1ul << CLK_PWRCTL_PDWKIF_Pos) /*!< CLK_T::PWRCTL: PDWKIF Mask */
  1047. #define CLK_PWRCTL_PDEN_Pos (7) /*!< CLK_T::PWRCTL: PDEN Position */
  1048. #define CLK_PWRCTL_PDEN_Msk (0x1ul << CLK_PWRCTL_PDEN_Pos) /*!< CLK_T::PWRCTL: PDEN Mask */
  1049. #define CLK_PWRCTL_HXTGAIN_Pos (10) /*!< CLK_T::PWRCTL: HXTGAIN Position */
  1050. #define CLK_PWRCTL_HXTGAIN_Msk (0x3ul << CLK_PWRCTL_HXTGAIN_Pos) /*!< CLK_T::PWRCTL: HXTGAIN Mask */
  1051. #define CLK_PWRCTL_HXTSELTYP_Pos (12) /*!< CLK_T::PWRCTL: HXTSELTYP Position */
  1052. #define CLK_PWRCTL_HXTSELTYP_Msk (0x1ul << CLK_PWRCTL_HXTSELTYP_Pos) /*!< CLK_T::PWRCTL: HXTSELTYP Mask */
  1053. #define CLK_PWRCTL_HXTTBEN_Pos (13) /*!< CLK_T::PWRCTL: HXTTBEN Position */
  1054. #define CLK_PWRCTL_HXTTBEN_Msk (0x1ul << CLK_PWRCTL_HXTTBEN_Pos) /*!< CLK_T::PWRCTL: HXTTBEN Mask */
  1055. #define CLK_PWRCTL_HIRCSTBS_Pos (16) /*!< CLK_T::PWRCTL: HIRCSTBS Position */
  1056. #define CLK_PWRCTL_HIRCSTBS_Msk (0x3ul << CLK_PWRCTL_HIRCSTBS_Pos) /*!< CLK_T::PWRCTL: HIRCSTBS Mask */
  1057. #define CLK_PWRCTL_HIRC48MEN_Pos (18) /*!< CLK_T::PWRCTL: HIRC48MEN Position */
  1058. #define CLK_PWRCTL_HIRC48MEN_Msk (0x1ul << CLK_PWRCTL_HIRC48MEN_Pos) /*!< CLK_T::PWRCTL: HIRC48MEN Mask */
  1059. #define CLK_AHBCLK_PDMACKEN_Pos (1) /*!< CLK_T::AHBCLK: PDMACKEN Position */
  1060. #define CLK_AHBCLK_PDMACKEN_Msk (0x1ul << CLK_AHBCLK_PDMACKEN_Pos) /*!< CLK_T::AHBCLK: PDMACKEN Mask */
  1061. #define CLK_AHBCLK_ISPCKEN_Pos (2) /*!< CLK_T::AHBCLK: ISPCKEN Position */
  1062. #define CLK_AHBCLK_ISPCKEN_Msk (0x1ul << CLK_AHBCLK_ISPCKEN_Pos) /*!< CLK_T::AHBCLK: ISPCKEN Mask */
  1063. #define CLK_AHBCLK_EBICKEN_Pos (3) /*!< CLK_T::AHBCLK: EBICKEN Position */
  1064. #define CLK_AHBCLK_EBICKEN_Msk (0x1ul << CLK_AHBCLK_EBICKEN_Pos) /*!< CLK_T::AHBCLK: EBICKEN Mask */
  1065. #define CLK_AHBCLK_EMACCKEN_Pos (5) /*!< CLK_T::AHBCLK: EMACCKEN Position */
  1066. #define CLK_AHBCLK_EMACCKEN_Msk (0x1ul << CLK_AHBCLK_EMACCKEN_Pos) /*!< CLK_T::AHBCLK: EMACCKEN Mask */
  1067. #define CLK_AHBCLK_SDH0CKEN_Pos (6) /*!< CLK_T::AHBCLK: SDH0CKEN Position */
  1068. #define CLK_AHBCLK_SDH0CKEN_Msk (0x1ul << CLK_AHBCLK_SDH0CKEN_Pos) /*!< CLK_T::AHBCLK: SDH0CKEN Mask */
  1069. #define CLK_AHBCLK_CRCCKEN_Pos (7) /*!< CLK_T::AHBCLK: CRCCKEN Position */
  1070. #define CLK_AHBCLK_CRCCKEN_Msk (0x1ul << CLK_AHBCLK_CRCCKEN_Pos) /*!< CLK_T::AHBCLK: CRCCKEN Mask */
  1071. #define CLK_AHBCLK_CCAPCKEN_Pos (8) /*!< CLK_T::AHBCLK: CCAPCKEN Position */
  1072. #define CLK_AHBCLK_CCAPCKEN_Msk (0x1ul << CLK_AHBCLK_CCAPCKEN_Pos) /*!< CLK_T::AHBCLK: CCAPCKEN Mask */
  1073. #define CLK_AHBCLK_SENCKEN_Pos (9) /*!< CLK_T::AHBCLK: SENCKEN Position */
  1074. #define CLK_AHBCLK_SENCKEN_Msk (0x1ul << CLK_AHBCLK_SENCKEN_Pos) /*!< CLK_T::AHBCLK: SENCKEN Mask */
  1075. #define CLK_AHBCLK_HSUSBDCKEN_Pos (10) /*!< CLK_T::AHBCLK: HSUSBDCKEN Position */
  1076. #define CLK_AHBCLK_HSUSBDCKEN_Msk (0x1ul << CLK_AHBCLK_HSUSBDCKEN_Pos) /*!< CLK_T::AHBCLK: HSUSBDCKEN Mask */
  1077. #define CLK_AHBCLK_CRPTCKEN_Pos (12) /*!< CLK_T::AHBCLK: CRPTCKEN Position */
  1078. #define CLK_AHBCLK_CRPTCKEN_Msk (0x1ul << CLK_AHBCLK_CRPTCKEN_Pos) /*!< CLK_T::AHBCLK: CRPTCKEN Mask */
  1079. #define CLK_AHBCLK_SPIMCKEN_Pos (14) /*!< CLK_T::AHBCLK: SPIMCKEN Position */
  1080. #define CLK_AHBCLK_SPIMCKEN_Msk (0x1ul << CLK_AHBCLK_SPIMCKEN_Pos) /*!< CLK_T::AHBCLK: SPIMCKEN Mask */
  1081. #define CLK_AHBCLK_FMCIDLE_Pos (15) /*!< CLK_T::AHBCLK: FMCIDLE Position */
  1082. #define CLK_AHBCLK_FMCIDLE_Msk (0x1ul << CLK_AHBCLK_FMCIDLE_Pos) /*!< CLK_T::AHBCLK: FMCIDLE Mask */
  1083. #define CLK_AHBCLK_USBHCKEN_Pos (16) /*!< CLK_T::AHBCLK: USBHCKEN Position */
  1084. #define CLK_AHBCLK_USBHCKEN_Msk (0x1ul << CLK_AHBCLK_USBHCKEN_Pos) /*!< CLK_T::AHBCLK: USBHCKEN Mask */
  1085. #define CLK_AHBCLK_SDH1CKEN_Pos (17) /*!< CLK_T::AHBCLK: SDH1CKEN Position */
  1086. #define CLK_AHBCLK_SDH1CKEN_Msk (0x1ul << CLK_AHBCLK_SDH1CKEN_Pos) /*!< CLK_T::AHBCLK: SDH1CKEN Mask */
  1087. #define CLK_APBCLK0_WDTCKEN_Pos (0) /*!< CLK_T::APBCLK0: WDTCKEN Position */
  1088. #define CLK_APBCLK0_WDTCKEN_Msk (0x1ul << CLK_APBCLK0_WDTCKEN_Pos) /*!< CLK_T::APBCLK0: WDTCKEN Mask */
  1089. #define CLK_APBCLK0_RTCCKEN_Pos (1) /*!< CLK_T::APBCLK0: RTCCKEN Position */
  1090. #define CLK_APBCLK0_RTCCKEN_Msk (0x1ul << CLK_APBCLK0_RTCCKEN_Pos) /*!< CLK_T::APBCLK0: RTCCKEN Mask */
  1091. #define CLK_APBCLK0_TMR0CKEN_Pos (2) /*!< CLK_T::APBCLK0: TMR0CKEN Position */
  1092. #define CLK_APBCLK0_TMR0CKEN_Msk (0x1ul << CLK_APBCLK0_TMR0CKEN_Pos) /*!< CLK_T::APBCLK0: TMR0CKEN Mask */
  1093. #define CLK_APBCLK0_TMR1CKEN_Pos (3) /*!< CLK_T::APBCLK0: TMR1CKEN Position */
  1094. #define CLK_APBCLK0_TMR1CKEN_Msk (0x1ul << CLK_APBCLK0_TMR1CKEN_Pos) /*!< CLK_T::APBCLK0: TMR1CKEN Mask */
  1095. #define CLK_APBCLK0_TMR2CKEN_Pos (4) /*!< CLK_T::APBCLK0: TMR2CKEN Position */
  1096. #define CLK_APBCLK0_TMR2CKEN_Msk (0x1ul << CLK_APBCLK0_TMR2CKEN_Pos) /*!< CLK_T::APBCLK0: TMR2CKEN Mask */
  1097. #define CLK_APBCLK0_TMR3CKEN_Pos (5) /*!< CLK_T::APBCLK0: TMR3CKEN Position */
  1098. #define CLK_APBCLK0_TMR3CKEN_Msk (0x1ul << CLK_APBCLK0_TMR3CKEN_Pos) /*!< CLK_T::APBCLK0: TMR3CKEN Mask */
  1099. #define CLK_APBCLK0_CLKOCKEN_Pos (6) /*!< CLK_T::APBCLK0: CLKOCKEN Position */
  1100. #define CLK_APBCLK0_CLKOCKEN_Msk (0x1ul << CLK_APBCLK0_CLKOCKEN_Pos) /*!< CLK_T::APBCLK0: CLKOCKEN Mask */
  1101. #define CLK_APBCLK0_ACMP01CKEN_Pos (7) /*!< CLK_T::APBCLK0: ACMP01CKEN Position */
  1102. #define CLK_APBCLK0_ACMP01CKEN_Msk (0x1ul << CLK_APBCLK0_ACMP01CKEN_Pos) /*!< CLK_T::APBCLK0: ACMP01CKEN Mask */
  1103. #define CLK_APBCLK0_I2C0CKEN_Pos (8) /*!< CLK_T::APBCLK0: I2C0CKEN Position */
  1104. #define CLK_APBCLK0_I2C0CKEN_Msk (0x1ul << CLK_APBCLK0_I2C0CKEN_Pos) /*!< CLK_T::APBCLK0: I2C0CKEN Mask */
  1105. #define CLK_APBCLK0_I2C1CKEN_Pos (9) /*!< CLK_T::APBCLK0: I2C1CKEN Position */
  1106. #define CLK_APBCLK0_I2C1CKEN_Msk (0x1ul << CLK_APBCLK0_I2C1CKEN_Pos) /*!< CLK_T::APBCLK0: I2C1CKEN Mask */
  1107. #define CLK_APBCLK0_I2C2CKEN_Pos (10) /*!< CLK_T::APBCLK0: I2C2CKEN Position */
  1108. #define CLK_APBCLK0_I2C2CKEN_Msk (0x1ul << CLK_APBCLK0_I2C2CKEN_Pos) /*!< CLK_T::APBCLK0: I2C2CKEN Mask */
  1109. #define CLK_APBCLK0_QSPI0CKEN_Pos (12) /*!< CLK_T::APBCLK0: QSPI0CKEN Position */
  1110. #define CLK_APBCLK0_QSPI0CKEN_Msk (0x1ul << CLK_APBCLK0_QSPI0CKEN_Pos) /*!< CLK_T::APBCLK0: QSPI0CKEN Mask */
  1111. #define CLK_APBCLK0_SPI0CKEN_Pos (13) /*!< CLK_T::APBCLK0: SPI0CKEN Position */
  1112. #define CLK_APBCLK0_SPI0CKEN_Msk (0x1ul << CLK_APBCLK0_SPI0CKEN_Pos) /*!< CLK_T::APBCLK0: SPI0CKEN Mask */
  1113. #define CLK_APBCLK0_SPI1CKEN_Pos (14) /*!< CLK_T::APBCLK0: SPI1CKEN Position */
  1114. #define CLK_APBCLK0_SPI1CKEN_Msk (0x1ul << CLK_APBCLK0_SPI1CKEN_Pos) /*!< CLK_T::APBCLK0: SPI1CKEN Mask */
  1115. #define CLK_APBCLK0_SPI2CKEN_Pos (15) /*!< CLK_T::APBCLK0: SPI2CKEN Position */
  1116. #define CLK_APBCLK0_SPI2CKEN_Msk (0x1ul << CLK_APBCLK0_SPI2CKEN_Pos) /*!< CLK_T::APBCLK0: SPI2CKEN Mask */
  1117. #define CLK_APBCLK0_UART0CKEN_Pos (16) /*!< CLK_T::APBCLK0: UART0CKEN Position */
  1118. #define CLK_APBCLK0_UART0CKEN_Msk (0x1ul << CLK_APBCLK0_UART0CKEN_Pos) /*!< CLK_T::APBCLK0: UART0CKEN Mask */
  1119. #define CLK_APBCLK0_UART1CKEN_Pos (17) /*!< CLK_T::APBCLK0: UART1CKEN Position */
  1120. #define CLK_APBCLK0_UART1CKEN_Msk (0x1ul << CLK_APBCLK0_UART1CKEN_Pos) /*!< CLK_T::APBCLK0: UART1CKEN Mask */
  1121. #define CLK_APBCLK0_UART2CKEN_Pos (18) /*!< CLK_T::APBCLK0: UART2CKEN Position */
  1122. #define CLK_APBCLK0_UART2CKEN_Msk (0x1ul << CLK_APBCLK0_UART2CKEN_Pos) /*!< CLK_T::APBCLK0: UART2CKEN Mask */
  1123. #define CLK_APBCLK0_UART3CKEN_Pos (19) /*!< CLK_T::APBCLK0: UART3CKEN Position */
  1124. #define CLK_APBCLK0_UART3CKEN_Msk (0x1ul << CLK_APBCLK0_UART3CKEN_Pos) /*!< CLK_T::APBCLK0: UART3CKEN Mask */
  1125. #define CLK_APBCLK0_UART4CKEN_Pos (20) /*!< CLK_T::APBCLK0: UART4CKEN Position */
  1126. #define CLK_APBCLK0_UART4CKEN_Msk (0x1ul << CLK_APBCLK0_UART4CKEN_Pos) /*!< CLK_T::APBCLK0: UART4CKEN Mask */
  1127. #define CLK_APBCLK0_UART5CKEN_Pos (21) /*!< CLK_T::APBCLK0: UART5CKEN Position */
  1128. #define CLK_APBCLK0_UART5CKEN_Msk (0x1ul << CLK_APBCLK0_UART5CKEN_Pos) /*!< CLK_T::APBCLK0: UART5CKEN Mask */
  1129. #define CLK_APBCLK0_UART6CKEN_Pos (22) /*!< CLK_T::APBCLK0: UART6CKEN Position */
  1130. #define CLK_APBCLK0_UART6CKEN_Msk (0x1ul << CLK_APBCLK0_UART6CKEN_Pos) /*!< CLK_T::APBCLK0: UART6CKEN Mask */
  1131. #define CLK_APBCLK0_UART7CKEN_Pos (23) /*!< CLK_T::APBCLK0: UART7CKEN Position */
  1132. #define CLK_APBCLK0_UART7CKEN_Msk (0x1ul << CLK_APBCLK0_UART7CKEN_Pos) /*!< CLK_T::APBCLK0: UART7CKEN Mask */
  1133. #define CLK_APBCLK0_CAN0CKEN_Pos (24) /*!< CLK_T::APBCLK0: CAN0CKEN Position */
  1134. #define CLK_APBCLK0_CAN0CKEN_Msk (0x1ul << CLK_APBCLK0_CAN0CKEN_Pos) /*!< CLK_T::APBCLK0: CAN0CKEN Mask */
  1135. #define CLK_APBCLK0_CAN1CKEN_Pos (25) /*!< CLK_T::APBCLK0: CAN1CKEN Position */
  1136. #define CLK_APBCLK0_CAN1CKEN_Msk (0x1ul << CLK_APBCLK0_CAN1CKEN_Pos) /*!< CLK_T::APBCLK0: CAN1CKEN Mask */
  1137. #define CLK_APBCLK0_OTGCKEN_Pos (26) /*!< CLK_T::APBCLK0: OTGCKEN Position */
  1138. #define CLK_APBCLK0_OTGCKEN_Msk (0x1ul << CLK_APBCLK0_OTGCKEN_Pos) /*!< CLK_T::APBCLK0: OTGCKEN Mask */
  1139. #define CLK_APBCLK0_USBDCKEN_Pos (27) /*!< CLK_T::APBCLK0: USBDCKEN Position */
  1140. #define CLK_APBCLK0_USBDCKEN_Msk (0x1ul << CLK_APBCLK0_USBDCKEN_Pos) /*!< CLK_T::APBCLK0: USBDCKEN Mask */
  1141. #define CLK_APBCLK0_EADCCKEN_Pos (28) /*!< CLK_T::APBCLK0: EADCCKEN Position */
  1142. #define CLK_APBCLK0_EADCCKEN_Msk (0x1ul << CLK_APBCLK0_EADCCKEN_Pos) /*!< CLK_T::APBCLK0: EADCCKEN Mask */
  1143. #define CLK_APBCLK0_I2S0CKEN_Pos (29) /*!< CLK_T::APBCLK0: I2S0CKEN Position */
  1144. #define CLK_APBCLK0_I2S0CKEN_Msk (0x1ul << CLK_APBCLK0_I2S0CKEN_Pos) /*!< CLK_T::APBCLK0: I2S0CKEN Mask */
  1145. #define CLK_APBCLK0_HSOTGCKEN_Pos (30) /*!< CLK_T::APBCLK0: HSOTGCKEN Position */
  1146. #define CLK_APBCLK0_HSOTGCKEN_Msk (0x1ul << CLK_APBCLK0_HSOTGCKEN_Pos) /*!< CLK_T::APBCLK0: HSOTGCKEN Mask */
  1147. #define CLK_APBCLK1_SC0CKEN_Pos (0) /*!< CLK_T::APBCLK1: SC0CKEN Position */
  1148. #define CLK_APBCLK1_SC0CKEN_Msk (0x1ul << CLK_APBCLK1_SC0CKEN_Pos) /*!< CLK_T::APBCLK1: SC0CKEN Mask */
  1149. #define CLK_APBCLK1_SC1CKEN_Pos (1) /*!< CLK_T::APBCLK1: SC1CKEN Position */
  1150. #define CLK_APBCLK1_SC1CKEN_Msk (0x1ul << CLK_APBCLK1_SC1CKEN_Pos) /*!< CLK_T::APBCLK1: SC1CKEN Mask */
  1151. #define CLK_APBCLK1_SC2CKEN_Pos (2) /*!< CLK_T::APBCLK1: SC2CKEN Position */
  1152. #define CLK_APBCLK1_SC2CKEN_Msk (0x1ul << CLK_APBCLK1_SC2CKEN_Pos) /*!< CLK_T::APBCLK1: SC2CKEN Mask */
  1153. #define CLK_APBCLK1_QSPI1CKEN_Pos (4) /*!< CLK_T::APBCLK1: QSPI1CKEN Position */
  1154. #define CLK_APBCLK1_QSPI1CKEN_Msk (0x1ul << CLK_APBCLK1_QSPI1CKEN_Pos) /*!< CLK_T::APBCLK1: QSPI1CKEN Mask */
  1155. #define CLK_APBCLK1_SPI3CKEN_Pos (6) /*!< CLK_T::APBCLK1: SPI3CKEN Position */
  1156. #define CLK_APBCLK1_SPI3CKEN_Msk (0x1ul << CLK_APBCLK1_SPI3CKEN_Pos) /*!< CLK_T::APBCLK1: SPI3CKEN Mask */
  1157. #define CLK_APBCLK1_USCI0CKEN_Pos (8) /*!< CLK_T::APBCLK1: USCI0CKEN Position */
  1158. #define CLK_APBCLK1_USCI0CKEN_Msk (0x1ul << CLK_APBCLK1_USCI0CKEN_Pos) /*!< CLK_T::APBCLK1: USCI0CKEN Mask */
  1159. #define CLK_APBCLK1_USCI1CKEN_Pos (9) /*!< CLK_T::APBCLK1: USCI1CKEN Position */
  1160. #define CLK_APBCLK1_USCI1CKEN_Msk (0x1ul << CLK_APBCLK1_USCI1CKEN_Pos) /*!< CLK_T::APBCLK1: USCI1CKEN Mask */
  1161. #define CLK_APBCLK1_DACCKEN_Pos (12) /*!< CLK_T::APBCLK1: DACCKEN Position */
  1162. #define CLK_APBCLK1_DACCKEN_Msk (0x1ul << CLK_APBCLK1_DACCKEN_Pos) /*!< CLK_T::APBCLK1: DACCKEN Mask */
  1163. #define CLK_APBCLK1_EPWM0CKEN_Pos (16) /*!< CLK_T::APBCLK1: EPWM0CKEN Position */
  1164. #define CLK_APBCLK1_EPWM0CKEN_Msk (0x1ul << CLK_APBCLK1_EPWM0CKEN_Pos) /*!< CLK_T::APBCLK1: EPWM0CKEN Mask */
  1165. #define CLK_APBCLK1_EPWM1CKEN_Pos (17) /*!< CLK_T::APBCLK1: EPWM1CKEN Position */
  1166. #define CLK_APBCLK1_EPWM1CKEN_Msk (0x1ul << CLK_APBCLK1_EPWM1CKEN_Pos) /*!< CLK_T::APBCLK1: EPWM1CKEN Mask */
  1167. #define CLK_APBCLK1_BPWM0CKEN_Pos (18) /*!< CLK_T::APBCLK1: BPWM0CKEN Position */
  1168. #define CLK_APBCLK1_BPWM0CKEN_Msk (0x1ul << CLK_APBCLK1_BPWM0CKEN_Pos) /*!< CLK_T::APBCLK1: BPWM0CKEN Mask */
  1169. #define CLK_APBCLK1_BPWM1CKEN_Pos (19) /*!< CLK_T::APBCLK1: BPWM1CKEN Position */
  1170. #define CLK_APBCLK1_BPWM1CKEN_Msk (0x1ul << CLK_APBCLK1_BPWM1CKEN_Pos) /*!< CLK_T::APBCLK1: BPWM1CKEN Mask */
  1171. #define CLK_APBCLK1_QEI0CKEN_Pos (22) /*!< CLK_T::APBCLK1: QEI0CKEN Position */
  1172. #define CLK_APBCLK1_QEI0CKEN_Msk (0x1ul << CLK_APBCLK1_QEI0CKEN_Pos) /*!< CLK_T::APBCLK1: QEI0CKEN Mask */
  1173. #define CLK_APBCLK1_QEI1CKEN_Pos (23) /*!< CLK_T::APBCLK1: QEI1CKEN Position */
  1174. #define CLK_APBCLK1_QEI1CKEN_Msk (0x1ul << CLK_APBCLK1_QEI1CKEN_Pos) /*!< CLK_T::APBCLK1: QEI1CKEN Mask */
  1175. #define CLK_APBCLK1_TRNGCKEN_Pos (25) /*!< CLK_T::APBCLK1: TRNGCKEN Position */
  1176. #define CLK_APBCLK1_TRNGCKEN_Msk (0x1ul << CLK_APBCLK1_TRNGCKEN_Pos) /*!< CLK_T::APBCLK1: TRNGCKEN Mask */
  1177. #define CLK_APBCLK1_ECAP0CKEN_Pos (26) /*!< CLK_T::APBCLK1: ECAP0CKEN Position */
  1178. #define CLK_APBCLK1_ECAP0CKEN_Msk (0x1ul << CLK_APBCLK1_ECAP0CKEN_Pos) /*!< CLK_T::APBCLK1: ECAP0CKEN Mask */
  1179. #define CLK_APBCLK1_ECAP1CKEN_Pos (27) /*!< CLK_T::APBCLK1: ECAP1CKEN Position */
  1180. #define CLK_APBCLK1_ECAP1CKEN_Msk (0x1ul << CLK_APBCLK1_ECAP1CKEN_Pos) /*!< CLK_T::APBCLK1: ECAP1CKEN Mask */
  1181. #define CLK_APBCLK1_CAN2CKEN_Pos (28) /*!< CLK_T::APBCLK1: CAN2CKEN Position */
  1182. #define CLK_APBCLK1_CAN2CKEN_Msk (0x1ul << CLK_APBCLK1_CAN2CKEN_Pos) /*!< CLK_T::APBCLK1: CAN2CKEN Mask */
  1183. #define CLK_APBCLK1_OPACKEN_Pos (30) /*!< CLK_T::APBCLK1: OPACKEN Position */
  1184. #define CLK_APBCLK1_OPACKEN_Msk (0x1ul << CLK_APBCLK1_OPACKEN_Pos) /*!< CLK_T::APBCLK1: OPACKEN Mask */
  1185. #define CLK_APBCLK1_EADC1CKEN_Pos (31) /*!< CLK_T::APBCLK1: EADC1CKEN Position */
  1186. #define CLK_APBCLK1_EADC1CKEN_Msk (0x1ul << CLK_APBCLK1_EADC1CKEN_Pos) /*!< CLK_T::APBCLK1: EADC1CKEN Mask */
  1187. #define CLK_CLKSEL0_HCLKSEL_Pos (0) /*!< CLK_T::CLKSEL0: HCLKSEL Position */
  1188. #define CLK_CLKSEL0_HCLKSEL_Msk (0x7ul << CLK_CLKSEL0_HCLKSEL_Pos) /*!< CLK_T::CLKSEL0: HCLKSEL Mask */
  1189. #define CLK_CLKSEL0_STCLKSEL_Pos (3) /*!< CLK_T::CLKSEL0: STCLKSEL Position */
  1190. #define CLK_CLKSEL0_STCLKSEL_Msk (0x7ul << CLK_CLKSEL0_STCLKSEL_Pos) /*!< CLK_T::CLKSEL0: STCLKSEL Mask */
  1191. #define CLK_CLKSEL0_USBSEL_Pos (8) /*!< CLK_T::CLKSEL0: PCLK0SEL Position */
  1192. #define CLK_CLKSEL0_USBSEL_Msk (0x1ul << CLK_CLKSEL0_USBSEL_Pos) /*!< CLK_T::CLKSEL0: PCLK0SEL Mask */
  1193. #define CLK_CLKSEL0_CCAPSEL_Pos (16) /*!< CLK_T::CLKSEL0: CCAPSEL Position */
  1194. #define CLK_CLKSEL0_CCAPSEL_Msk (0x3ul << CLK_CLKSEL0_CCAPSEL_Pos) /*!< CLK_T::CLKSEL0: CCAPSEL Mask */
  1195. #define CLK_CLKSEL0_SDH0SEL_Pos (20) /*!< CLK_T::CLKSEL0: SDH0SEL Position */
  1196. #define CLK_CLKSEL0_SDH0SEL_Msk (0x3ul << CLK_CLKSEL0_SDH0SEL_Pos) /*!< CLK_T::CLKSEL0: SDH0SEL Mask */
  1197. #define CLK_CLKSEL0_SDH1SEL_Pos (22) /*!< CLK_T::CLKSEL0: SDH1SEL Position */
  1198. #define CLK_CLKSEL0_SDH1SEL_Msk (0x3ul << CLK_CLKSEL0_SDH1SEL_Pos) /*!< CLK_T::CLKSEL0: SDH1SEL Mask */
  1199. #define CLK_CLKSEL1_WDTSEL_Pos (0) /*!< CLK_T::CLKSEL1: WDTSEL Position */
  1200. #define CLK_CLKSEL1_WDTSEL_Msk (0x3ul << CLK_CLKSEL1_WDTSEL_Pos) /*!< CLK_T::CLKSEL1: WDTSEL Mask */
  1201. #define CLK_CLKSEL1_TMR0SEL_Pos (8) /*!< CLK_T::CLKSEL1: TMR0SEL Position */
  1202. #define CLK_CLKSEL1_TMR0SEL_Msk (0x7ul << CLK_CLKSEL1_TMR0SEL_Pos) /*!< CLK_T::CLKSEL1: TMR0SEL Mask */
  1203. #define CLK_CLKSEL1_TMR1SEL_Pos (12) /*!< CLK_T::CLKSEL1: TMR1SEL Position */
  1204. #define CLK_CLKSEL1_TMR1SEL_Msk (0x7ul << CLK_CLKSEL1_TMR1SEL_Pos) /*!< CLK_T::CLKSEL1: TMR1SEL Mask */
  1205. #define CLK_CLKSEL1_TMR2SEL_Pos (16) /*!< CLK_T::CLKSEL1: TMR2SEL Position */
  1206. #define CLK_CLKSEL1_TMR2SEL_Msk (0x7ul << CLK_CLKSEL1_TMR2SEL_Pos) /*!< CLK_T::CLKSEL1: TMR2SEL Mask */
  1207. #define CLK_CLKSEL1_TMR3SEL_Pos (20) /*!< CLK_T::CLKSEL1: TMR3SEL Position */
  1208. #define CLK_CLKSEL1_TMR3SEL_Msk (0x7ul << CLK_CLKSEL1_TMR3SEL_Pos) /*!< CLK_T::CLKSEL1: TMR3SEL Mask */
  1209. #define CLK_CLKSEL1_UART0SEL_Pos (24) /*!< CLK_T::CLKSEL1: UART0SEL Position */
  1210. #define CLK_CLKSEL1_UART0SEL_Msk (0x3ul << CLK_CLKSEL1_UART0SEL_Pos) /*!< CLK_T::CLKSEL1: UART0SEL Mask */
  1211. #define CLK_CLKSEL1_UART1SEL_Pos (26) /*!< CLK_T::CLKSEL1: UART1SEL Position */
  1212. #define CLK_CLKSEL1_UART1SEL_Msk (0x3ul << CLK_CLKSEL1_UART1SEL_Pos) /*!< CLK_T::CLKSEL1: UART1SEL Mask */
  1213. #define CLK_CLKSEL1_CLKOSEL_Pos (28) /*!< CLK_T::CLKSEL1: CLKOSEL Position */
  1214. #define CLK_CLKSEL1_CLKOSEL_Msk (0x3ul << CLK_CLKSEL1_CLKOSEL_Pos) /*!< CLK_T::CLKSEL1: CLKOSEL Mask */
  1215. #define CLK_CLKSEL1_WWDTSEL_Pos (30) /*!< CLK_T::CLKSEL1: WWDTSEL Position */
  1216. #define CLK_CLKSEL1_WWDTSEL_Msk (0x3ul << CLK_CLKSEL1_WWDTSEL_Pos) /*!< CLK_T::CLKSEL1: WWDTSEL Mask */
  1217. #define CLK_CLKSEL2_EPWM0SEL_Pos (0) /*!< CLK_T::CLKSEL2: EPWM0SEL Position */
  1218. #define CLK_CLKSEL2_EPWM0SEL_Msk (0x1ul << CLK_CLKSEL2_EPWM0SEL_Pos) /*!< CLK_T::CLKSEL2: EPWM0SEL Mask */
  1219. #define CLK_CLKSEL2_EPWM1SEL_Pos (1) /*!< CLK_T::CLKSEL2: EPWM1SEL Position */
  1220. #define CLK_CLKSEL2_EPWM1SEL_Msk (0x1ul << CLK_CLKSEL2_EPWM1SEL_Pos) /*!< CLK_T::CLKSEL2: EPWM1SEL Mask */
  1221. #define CLK_CLKSEL2_QSPI0SEL_Pos (2) /*!< CLK_T::CLKSEL2: QSPI0SEL Position */
  1222. #define CLK_CLKSEL2_QSPI0SEL_Msk (0x3ul << CLK_CLKSEL2_QSPI0SEL_Pos) /*!< CLK_T::CLKSEL2: QSPI0SEL Mask */
  1223. #define CLK_CLKSEL2_SPI0SEL_Pos (4) /*!< CLK_T::CLKSEL2: SPI0SEL Position */
  1224. #define CLK_CLKSEL2_SPI0SEL_Msk (0x3ul << CLK_CLKSEL2_SPI0SEL_Pos) /*!< CLK_T::CLKSEL2: SPI0SEL Mask */
  1225. #define CLK_CLKSEL2_SPI1SEL_Pos (6) /*!< CLK_T::CLKSEL2: SPI1SEL Position */
  1226. #define CLK_CLKSEL2_SPI1SEL_Msk (0x3ul << CLK_CLKSEL2_SPI1SEL_Pos) /*!< CLK_T::CLKSEL2: SPI1SEL Mask */
  1227. #define CLK_CLKSEL2_BPWM0SEL_Pos (8) /*!< CLK_T::CLKSEL2: BPWM0SEL Position */
  1228. #define CLK_CLKSEL2_BPWM0SEL_Msk (0x1ul << CLK_CLKSEL2_BPWM0SEL_Pos) /*!< CLK_T::CLKSEL2: BPWM0SEL Mask */
  1229. #define CLK_CLKSEL2_BPWM1SEL_Pos (9) /*!< CLK_T::CLKSEL2: BPWM1SEL Position */
  1230. #define CLK_CLKSEL2_BPWM1SEL_Msk (0x1ul << CLK_CLKSEL2_BPWM1SEL_Pos) /*!< CLK_T::CLKSEL2: BPWM1SEL Mask */
  1231. #define CLK_CLKSEL2_SPI2SEL_Pos (10) /*!< CLK_T::CLKSEL2: SPI2SEL Position */
  1232. #define CLK_CLKSEL2_SPI2SEL_Msk (0x3ul << CLK_CLKSEL2_SPI2SEL_Pos) /*!< CLK_T::CLKSEL2: SPI2SEL Mask */
  1233. #define CLK_CLKSEL2_SPI3SEL_Pos (12) /*!< CLK_T::CLKSEL2: SPI3SEL Position */
  1234. #define CLK_CLKSEL2_SPI3SEL_Msk (0x3ul << CLK_CLKSEL2_SPI3SEL_Pos) /*!< CLK_T::CLKSEL2: SPI3SEL Mask */
  1235. #define CLK_CLKSEL3_SC0SEL_Pos (0) /*!< CLK_T::CLKSEL3: SC0SEL Position */
  1236. #define CLK_CLKSEL3_SC0SEL_Msk (0x3ul << CLK_CLKSEL3_SC0SEL_Pos) /*!< CLK_T::CLKSEL3: SC0SEL Mask */
  1237. #define CLK_CLKSEL3_SC1SEL_Pos (2) /*!< CLK_T::CLKSEL3: SC1SEL Position */
  1238. #define CLK_CLKSEL3_SC1SEL_Msk (0x3ul << CLK_CLKSEL3_SC1SEL_Pos) /*!< CLK_T::CLKSEL3: SC1SEL Mask */
  1239. #define CLK_CLKSEL3_SC2SEL_Pos (4) /*!< CLK_T::CLKSEL3: SC2SEL Position */
  1240. #define CLK_CLKSEL3_SC2SEL_Msk (0x3ul << CLK_CLKSEL3_SC2SEL_Pos) /*!< CLK_T::CLKSEL3: SC2SEL Mask */
  1241. #define CLK_CLKSEL3_RTCSEL_Pos (8) /*!< CLK_T::CLKSEL3: RTCSEL Position */
  1242. #define CLK_CLKSEL3_RTCSEL_Msk (0x1ul << CLK_CLKSEL3_RTCSEL_Pos) /*!< CLK_T::CLKSEL3: RTCSEL Mask */
  1243. #define CLK_CLKSEL3_QSPI1SEL_Pos (12) /*!< CLK_T::CLKSEL3: QSPI1SEL Position */
  1244. #define CLK_CLKSEL3_QSPI1SEL_Msk (0x3ul << CLK_CLKSEL3_QSPI1SEL_Pos) /*!< CLK_T::CLKSEL3: QSPI1SEL Mask */
  1245. #define CLK_CLKSEL3_I2S0SEL_Pos (16) /*!< CLK_T::CLKSEL3: I2S0SEL Position */
  1246. #define CLK_CLKSEL3_I2S0SEL_Msk (0x3ul << CLK_CLKSEL3_I2S0SEL_Pos) /*!< CLK_T::CLKSEL3: I2S0SEL Mask */
  1247. #define CLK_CLKSEL3_UART6SEL_Pos (20) /*!< CLK_T::CLKSEL3: UART6SEL Position */
  1248. #define CLK_CLKSEL3_UART6SEL_Msk (0x3ul << CLK_CLKSEL3_UART6SEL_Pos) /*!< CLK_T::CLKSEL3: UART6SEL Mask */
  1249. #define CLK_CLKSEL3_UART7SEL_Pos (22) /*!< CLK_T::CLKSEL3: UART7SEL Position */
  1250. #define CLK_CLKSEL3_UART7SEL_Msk (0x3ul << CLK_CLKSEL3_UART7SEL_Pos) /*!< CLK_T::CLKSEL3: UART7SEL Mask */
  1251. #define CLK_CLKSEL3_UART2SEL_Pos (24) /*!< CLK_T::CLKSEL3: UART2SEL Position */
  1252. #define CLK_CLKSEL3_UART2SEL_Msk (0x3ul << CLK_CLKSEL3_UART2SEL_Pos) /*!< CLK_T::CLKSEL3: UART2SEL Mask */
  1253. #define CLK_CLKSEL3_UART3SEL_Pos (26) /*!< CLK_T::CLKSEL3: UART3SEL Position */
  1254. #define CLK_CLKSEL3_UART3SEL_Msk (0x3ul << CLK_CLKSEL3_UART3SEL_Pos) /*!< CLK_T::CLKSEL3: UART3SEL Mask */
  1255. #define CLK_CLKSEL3_UART4SEL_Pos (28) /*!< CLK_T::CLKSEL3: UART4SEL Position */
  1256. #define CLK_CLKSEL3_UART4SEL_Msk (0x3ul << CLK_CLKSEL3_UART4SEL_Pos) /*!< CLK_T::CLKSEL3: UART4SEL Mask */
  1257. #define CLK_CLKSEL3_UART5SEL_Pos (30) /*!< CLK_T::CLKSEL3: UART5SEL Position */
  1258. #define CLK_CLKSEL3_UART5SEL_Msk (0x3ul << CLK_CLKSEL3_UART5SEL_Pos) /*!< CLK_T::CLKSEL3: UART5SEL Mask */
  1259. #define CLK_CLKDIV0_HCLKDIV_Pos (0) /*!< CLK_T::CLKDIV0: HCLKDIV Position */
  1260. #define CLK_CLKDIV0_HCLKDIV_Msk (0xful << CLK_CLKDIV0_HCLKDIV_Pos) /*!< CLK_T::CLKDIV0: HCLKDIV Mask */
  1261. #define CLK_CLKDIV0_USBDIV_Pos (4) /*!< CLK_T::CLKDIV0: USBDIV Position */
  1262. #define CLK_CLKDIV0_USBDIV_Msk (0xful << CLK_CLKDIV0_USBDIV_Pos) /*!< CLK_T::CLKDIV0: USBDIV Mask */
  1263. #define CLK_CLKDIV0_UART0DIV_Pos (8) /*!< CLK_T::CLKDIV0: UART0DIV Position */
  1264. #define CLK_CLKDIV0_UART0DIV_Msk (0xful << CLK_CLKDIV0_UART0DIV_Pos) /*!< CLK_T::CLKDIV0: UART0DIV Mask */
  1265. #define CLK_CLKDIV0_UART1DIV_Pos (12) /*!< CLK_T::CLKDIV0: UART1DIV Position */
  1266. #define CLK_CLKDIV0_UART1DIV_Msk (0xful << CLK_CLKDIV0_UART1DIV_Pos) /*!< CLK_T::CLKDIV0: UART1DIV Mask */
  1267. #define CLK_CLKDIV0_EADCDIV_Pos (16) /*!< CLK_T::CLKDIV0: EADCDIV Position */
  1268. #define CLK_CLKDIV0_EADCDIV_Msk (0xfful << CLK_CLKDIV0_EADCDIV_Pos) /*!< CLK_T::CLKDIV0: EADCDIV Mask */
  1269. #define CLK_CLKDIV0_SDH0DIV_Pos (24) /*!< CLK_T::CLKDIV0: SDH0DIV Position */
  1270. #define CLK_CLKDIV0_SDH0DIV_Msk (0xfful << CLK_CLKDIV0_SDH0DIV_Pos) /*!< CLK_T::CLKDIV0: SDH0DIV Mask */
  1271. #define CLK_CLKDIV1_SC0DIV_Pos (0) /*!< CLK_T::CLKDIV1: SC0DIV Position */
  1272. #define CLK_CLKDIV1_SC0DIV_Msk (0xfful << CLK_CLKDIV1_SC0DIV_Pos) /*!< CLK_T::CLKDIV1: SC0DIV Mask */
  1273. #define CLK_CLKDIV1_SC1DIV_Pos (8) /*!< CLK_T::CLKDIV1: SC1DIV Position */
  1274. #define CLK_CLKDIV1_SC1DIV_Msk (0xfful << CLK_CLKDIV1_SC1DIV_Pos) /*!< CLK_T::CLKDIV1: SC1DIV Mask */
  1275. #define CLK_CLKDIV1_SC2DIV_Pos (16) /*!< CLK_T::CLKDIV1: SC2DIV Position */
  1276. #define CLK_CLKDIV1_SC2DIV_Msk (0xfful << CLK_CLKDIV1_SC2DIV_Pos) /*!< CLK_T::CLKDIV1: SC2DIV Mask */
  1277. #define CLK_CLKDIV2_I2SDIV_Pos (0) /*!< CLK_T::CLKDIV2: I2SDIV Position */
  1278. #define CLK_CLKDIV2_I2SDIV_Msk (0xful << CLK_CLKDIV2_I2SDIV_Pos) /*!< CLK_T::CLKDIV2: I2SDIV Mask */
  1279. #define CLK_CLKDIV2_EADC1DIV_Pos (24) /*!< CLK_T::CLKDIV2: EADC1DIV Position */
  1280. #define CLK_CLKDIV2_EADC1DIV_Msk (0xfful << CLK_CLKDIV2_EADC1DIV_Pos) /*!< CLK_T::CLKDIV2: EADC1DIV Mask */
  1281. #define CLK_CLKDIV3_CCAPDIV_Pos (0) /*!< CLK_T::CLKDIV3: CCAPDIV Position */
  1282. #define CLK_CLKDIV3_CCAPDIV_Msk (0xfful << CLK_CLKDIV3_CCAPDIV_Pos) /*!< CLK_T::CLKDIV3: CCAPDIV Mask */
  1283. #define CLK_CLKDIV3_VSENSEDIV_Pos (8) /*!< CLK_T::CLKDIV3: VSENSEDIV Position */
  1284. #define CLK_CLKDIV3_VSENSEDIV_Msk (0xfful << CLK_CLKDIV3_VSENSEDIV_Pos) /*!< CLK_T::CLKDIV3: VSENSEDIV Mask */
  1285. #define CLK_CLKDIV3_EMACDIV_Pos (16) /*!< CLK_T::CLKDIV3: EMACDIV Position */
  1286. #define CLK_CLKDIV3_EMACDIV_Msk (0xfful << CLK_CLKDIV3_EMACDIV_Pos) /*!< CLK_T::CLKDIV3: EMACDIV Mask */
  1287. #define CLK_CLKDIV3_SDH1DIV_Pos (24) /*!< CLK_T::CLKDIV3: SDH1DIV Position */
  1288. #define CLK_CLKDIV3_SDH1DIV_Msk (0xfful << CLK_CLKDIV3_SDH1DIV_Pos) /*!< CLK_T::CLKDIV3: SDH1DIV Mask */
  1289. #define CLK_CLKDIV4_UART2DIV_Pos (0) /*!< CLK_T::CLKDIV4: UART2DIV Position */
  1290. #define CLK_CLKDIV4_UART2DIV_Msk (0xful << CLK_CLKDIV4_UART2DIV_Pos) /*!< CLK_T::CLKDIV4: UART2DIV Mask */
  1291. #define CLK_CLKDIV4_UART3DIV_Pos (4) /*!< CLK_T::CLKDIV4: UART3DIV Position */
  1292. #define CLK_CLKDIV4_UART3DIV_Msk (0xful << CLK_CLKDIV4_UART3DIV_Pos) /*!< CLK_T::CLKDIV4: UART3DIV Mask */
  1293. #define CLK_CLKDIV4_UART4DIV_Pos (8) /*!< CLK_T::CLKDIV4: UART4DIV Position */
  1294. #define CLK_CLKDIV4_UART4DIV_Msk (0xful << CLK_CLKDIV4_UART4DIV_Pos) /*!< CLK_T::CLKDIV4: UART4DIV Mask */
  1295. #define CLK_CLKDIV4_UART5DIV_Pos (12) /*!< CLK_T::CLKDIV4: UART5DIV Position */
  1296. #define CLK_CLKDIV4_UART5DIV_Msk (0xful << CLK_CLKDIV4_UART5DIV_Pos) /*!< CLK_T::CLKDIV4: UART5DIV Mask */
  1297. #define CLK_CLKDIV4_UART6DIV_Pos (16) /*!< CLK_T::CLKDIV4: UART6DIV Position */
  1298. #define CLK_CLKDIV4_UART6DIV_Msk (0xful << CLK_CLKDIV4_UART6DIV_Pos) /*!< CLK_T::CLKDIV4: UART6DIV Mask */
  1299. #define CLK_CLKDIV4_UART7DIV_Pos (20) /*!< CLK_T::CLKDIV4: UART7DIV Position */
  1300. #define CLK_CLKDIV4_UART7DIV_Msk (0xful << CLK_CLKDIV4_UART7DIV_Pos) /*!< CLK_T::CLKDIV4: UART7DIV Mask */
  1301. #define CLK_PCLKDIV_APB0DIV_Pos (0) /*!< CLK_T::PCLKDIV: APB0DIV Position */
  1302. #define CLK_PCLKDIV_APB0DIV_Msk (0x7ul << CLK_PCLKDIV_APB0DIV_Pos) /*!< CLK_T::PCLKDIV: APB0DIV Mask */
  1303. #define CLK_PCLKDIV_APB1DIV_Pos (4) /*!< CLK_T::PCLKDIV: APB1DIV Position */
  1304. #define CLK_PCLKDIV_APB1DIV_Msk (0x7ul << CLK_PCLKDIV_APB1DIV_Pos) /*!< CLK_T::PCLKDIV: APB1DIV Mask */
  1305. #define CLK_PLLCTL_FBDIV_Pos (0) /*!< CLK_T::PLLCTL: FBDIV Position */
  1306. #define CLK_PLLCTL_FBDIV_Msk (0x1fful << CLK_PLLCTL_FBDIV_Pos) /*!< CLK_T::PLLCTL: FBDIV Mask */
  1307. #define CLK_PLLCTL_INDIV_Pos (9) /*!< CLK_T::PLLCTL: INDIV Position */
  1308. #define CLK_PLLCTL_INDIV_Msk (0x1ful << CLK_PLLCTL_INDIV_Pos) /*!< CLK_T::PLLCTL: INDIV Mask */
  1309. #define CLK_PLLCTL_OUTDIV_Pos (14) /*!< CLK_T::PLLCTL: OUTDIV Position */
  1310. #define CLK_PLLCTL_OUTDIV_Msk (0x3ul << CLK_PLLCTL_OUTDIV_Pos) /*!< CLK_T::PLLCTL: OUTDIV Mask */
  1311. #define CLK_PLLCTL_PD_Pos (16) /*!< CLK_T::PLLCTL: PD Position */
  1312. #define CLK_PLLCTL_PD_Msk (0x1ul << CLK_PLLCTL_PD_Pos) /*!< CLK_T::PLLCTL: PD Mask */
  1313. #define CLK_PLLCTL_BP_Pos (17) /*!< CLK_T::PLLCTL: BP Position */
  1314. #define CLK_PLLCTL_BP_Msk (0x1ul << CLK_PLLCTL_BP_Pos) /*!< CLK_T::PLLCTL: BP Mask */
  1315. #define CLK_PLLCTL_OE_Pos (18) /*!< CLK_T::PLLCTL: OE Position */
  1316. #define CLK_PLLCTL_OE_Msk (0x1ul << CLK_PLLCTL_OE_Pos) /*!< CLK_T::PLLCTL: OE Mask */
  1317. #define CLK_PLLCTL_PLLSRC_Pos (19) /*!< CLK_T::PLLCTL: PLLSRC Position */
  1318. #define CLK_PLLCTL_PLLSRC_Msk (0x1ul << CLK_PLLCTL_PLLSRC_Pos) /*!< CLK_T::PLLCTL: PLLSRC Mask */
  1319. #define CLK_PLLCTL_STBSEL_Pos (23) /*!< CLK_T::PLLCTL: STBSEL Position */
  1320. #define CLK_PLLCTL_STBSEL_Msk (0x1ul << CLK_PLLCTL_STBSEL_Pos) /*!< CLK_T::PLLCTL: STBSEL Mask */
  1321. #define CLK_STATUS_HXTSTB_Pos (0) /*!< CLK_T::STATUS: HXTSTB Position */
  1322. #define CLK_STATUS_HXTSTB_Msk (0x1ul << CLK_STATUS_HXTSTB_Pos) /*!< CLK_T::STATUS: HXTSTB Mask */
  1323. #define CLK_STATUS_LXTSTB_Pos (1) /*!< CLK_T::STATUS: LXTSTB Position */
  1324. #define CLK_STATUS_LXTSTB_Msk (0x1ul << CLK_STATUS_LXTSTB_Pos) /*!< CLK_T::STATUS: LXTSTB Mask */
  1325. #define CLK_STATUS_PLLSTB_Pos (2) /*!< CLK_T::STATUS: PLLSTB Position */
  1326. #define CLK_STATUS_PLLSTB_Msk (0x1ul << CLK_STATUS_PLLSTB_Pos) /*!< CLK_T::STATUS: PLLSTB Mask */
  1327. #define CLK_STATUS_LIRCSTB_Pos (3) /*!< CLK_T::STATUS: LIRCSTB Position */
  1328. #define CLK_STATUS_LIRCSTB_Msk (0x1ul << CLK_STATUS_LIRCSTB_Pos) /*!< CLK_T::STATUS: LIRCSTB Mask */
  1329. #define CLK_STATUS_HIRCSTB_Pos (4) /*!< CLK_T::STATUS: HIRCSTB Position */
  1330. #define CLK_STATUS_HIRCSTB_Msk (0x1ul << CLK_STATUS_HIRCSTB_Pos) /*!< CLK_T::STATUS: HIRCSTB Mask */
  1331. #define CLK_STATUS_HIRC48MSTB_Pos (6) /*!< CLK_T::STATUS: HIRC48MSTB Position */
  1332. #define CLK_STATUS_HIRC48MSTB_Msk (0x1ul << CLK_STATUS_HIRC48MSTB_Pos) /*!< CLK_T::STATUS: HIRC48MSTB Mask */
  1333. #define CLK_STATUS_CLKSFAIL_Pos (7) /*!< CLK_T::STATUS: CLKSFAIL Position */
  1334. #define CLK_STATUS_CLKSFAIL_Msk (0x1ul << CLK_STATUS_CLKSFAIL_Pos) /*!< CLK_T::STATUS: CLKSFAIL Mask */
  1335. #define CLK_CLKOCTL_FREQSEL_Pos (0) /*!< CLK_T::CLKOCTL: FREQSEL Position */
  1336. #define CLK_CLKOCTL_FREQSEL_Msk (0xful << CLK_CLKOCTL_FREQSEL_Pos) /*!< CLK_T::CLKOCTL: FREQSEL Mask */
  1337. #define CLK_CLKOCTL_CLKOEN_Pos (4) /*!< CLK_T::CLKOCTL: CLKOEN Position */
  1338. #define CLK_CLKOCTL_CLKOEN_Msk (0x1ul << CLK_CLKOCTL_CLKOEN_Pos) /*!< CLK_T::CLKOCTL: CLKOEN Mask */
  1339. #define CLK_CLKOCTL_DIV1EN_Pos (5) /*!< CLK_T::CLKOCTL: DIV1EN Position */
  1340. #define CLK_CLKOCTL_DIV1EN_Msk (0x1ul << CLK_CLKOCTL_DIV1EN_Pos) /*!< CLK_T::CLKOCTL: DIV1EN Mask */
  1341. #define CLK_CLKOCTL_CLK1HZEN_Pos (6) /*!< CLK_T::CLKOCTL: CLK1HZEN Position */
  1342. #define CLK_CLKOCTL_CLK1HZEN_Msk (0x1ul << CLK_CLKOCTL_CLK1HZEN_Pos) /*!< CLK_T::CLKOCTL: CLK1HZEN Mask */
  1343. #define CLK_CLKDCTL_HXTFDEN_Pos (4) /*!< CLK_T::CLKDCTL: HXTFDEN Position */
  1344. #define CLK_CLKDCTL_HXTFDEN_Msk (0x1ul << CLK_CLKDCTL_HXTFDEN_Pos) /*!< CLK_T::CLKDCTL: HXTFDEN Mask */
  1345. #define CLK_CLKDCTL_HXTFIEN_Pos (5) /*!< CLK_T::CLKDCTL: HXTFIEN Position */
  1346. #define CLK_CLKDCTL_HXTFIEN_Msk (0x1ul << CLK_CLKDCTL_HXTFIEN_Pos) /*!< CLK_T::CLKDCTL: HXTFIEN Mask */
  1347. #define CLK_CLKDCTL_LXTFDEN_Pos (12) /*!< CLK_T::CLKDCTL: LXTFDEN Position */
  1348. #define CLK_CLKDCTL_LXTFDEN_Msk (0x1ul << CLK_CLKDCTL_LXTFDEN_Pos) /*!< CLK_T::CLKDCTL: LXTFDEN Mask */
  1349. #define CLK_CLKDCTL_LXTFIEN_Pos (13) /*!< CLK_T::CLKDCTL: LXTFIEN Position */
  1350. #define CLK_CLKDCTL_LXTFIEN_Msk (0x1ul << CLK_CLKDCTL_LXTFIEN_Pos) /*!< CLK_T::CLKDCTL: LXTFIEN Mask */
  1351. #define CLK_CLKDCTL_HXTFQDEN_Pos (16) /*!< CLK_T::CLKDCTL: HXTFQDEN Position */
  1352. #define CLK_CLKDCTL_HXTFQDEN_Msk (0x1ul << CLK_CLKDCTL_HXTFQDEN_Pos) /*!< CLK_T::CLKDCTL: HXTFQDEN Mask */
  1353. #define CLK_CLKDCTL_HXTFQIEN_Pos (17) /*!< CLK_T::CLKDCTL: HXTFQIEN Position */
  1354. #define CLK_CLKDCTL_HXTFQIEN_Msk (0x1ul << CLK_CLKDCTL_HXTFQIEN_Pos) /*!< CLK_T::CLKDCTL: HXTFQIEN Mask */
  1355. #define CLK_CLKDSTS_HXTFIF_Pos (0) /*!< CLK_T::CLKDSTS: HXTFIF Position */
  1356. #define CLK_CLKDSTS_HXTFIF_Msk (0x1ul << CLK_CLKDSTS_HXTFIF_Pos) /*!< CLK_T::CLKDSTS: HXTFIF Mask */
  1357. #define CLK_CLKDSTS_LXTFIF_Pos (1) /*!< CLK_T::CLKDSTS: LXTFIF Position */
  1358. #define CLK_CLKDSTS_LXTFIF_Msk (0x1ul << CLK_CLKDSTS_LXTFIF_Pos) /*!< CLK_T::CLKDSTS: LXTFIF Mask */
  1359. #define CLK_CLKDSTS_HXTFQIF_Pos (8) /*!< CLK_T::CLKDSTS: HXTFQIF Position */
  1360. #define CLK_CLKDSTS_HXTFQIF_Msk (0x1ul << CLK_CLKDSTS_HXTFQIF_Pos) /*!< CLK_T::CLKDSTS: HXTFQIF Mask */
  1361. #define CLK_CDUPB_UPERBD_Pos (0) /*!< CLK_T::CDUPB: UPERBD Position */
  1362. #define CLK_CDUPB_UPERBD_Msk (0x3fful << CLK_CDUPB_UPERBD_Pos) /*!< CLK_T::CDUPB: UPERBD Mask */
  1363. #define CLK_CDLOWB_LOWERBD_Pos (0) /*!< CLK_T::CDLOWB: LOWERBD Position */
  1364. #define CLK_CDLOWB_LOWERBD_Msk (0x3fful << CLK_CDLOWB_LOWERBD_Pos) /*!< CLK_T::CDLOWB: LOWERBD Mask */
  1365. #define CLK_PMUCTL_PDMSEL_Pos (0) /*!< CLK_T::PMUCTL: PDMSEL Position */
  1366. #define CLK_PMUCTL_PDMSEL_Msk (0x7ul << CLK_PMUCTL_PDMSEL_Pos) /*!< CLK_T::PMUCTL: PDMSEL Mask */
  1367. #define CLK_PMUCTL_DPDHOLDEN_Pos (3) /*!< CLK_T::PMUCTL: DPDHOLDEN Position */
  1368. #define CLK_PMUCTL_DPDHOLDEN_Msk (0x1ul << CLK_PMUCTL_DPDHOLDEN_Pos) /*!< CLK_T::PMUCTL: DPDHOLDEN Mask */
  1369. #define CLK_PMUCTL_SRETSEL_Pos (4) /*!< CLK_T::PMUCTL: SRETSEL Position */
  1370. #define CLK_PMUCTL_SRETSEL_Msk (0x7ul << CLK_PMUCTL_SRETSEL_Pos) /*!< CLK_T::PMUCTL: SRETSEL Mask */
  1371. #define CLK_PMUCTL_WKTMREN_Pos (8) /*!< CLK_T::PMUCTL: WKTMREN Position */
  1372. #define CLK_PMUCTL_WKTMREN_Msk (0x1ul << CLK_PMUCTL_WKTMREN_Pos) /*!< CLK_T::PMUCTL: WKTMREN Mask */
  1373. #define CLK_PMUCTL_WKTMRIS_Pos (9) /*!< CLK_T::PMUCTL: WKTMRIS Position */
  1374. #define CLK_PMUCTL_WKTMRIS_Msk (0xful << CLK_PMUCTL_WKTMRIS_Pos) /*!< CLK_T::PMUCTL: WKTMRIS Mask */
  1375. #define CLK_PMUCTL_WKPINEN_Pos (16) /*!< CLK_T::PMUCTL: WKPINEN Position */
  1376. #define CLK_PMUCTL_WKPINEN_Msk (0x3ul << CLK_PMUCTL_WKPINEN_Pos) /*!< CLK_T::PMUCTL: WKPINEN Mask */
  1377. #define CLK_PMUCTL_ACMPSPWK_Pos (18) /*!< CLK_T::PMUCTL: ACMPSPWK Position */
  1378. #define CLK_PMUCTL_ACMPSPWK_Msk (0x1ul << CLK_PMUCTL_ACMPSPWK_Pos) /*!< CLK_T::PMUCTL: ACMPSPWK Mask */
  1379. #define CLK_PMUCTL_RTCWKEN_Pos (23) /*!< CLK_T::PMUCTL: RTCWKEN Position */
  1380. #define CLK_PMUCTL_RTCWKEN_Msk (0x1ul << CLK_PMUCTL_RTCWKEN_Pos) /*!< CLK_T::PMUCTL: RTCWKEN Mask */
  1381. #define CLK_PMUCTL_WKPINEN1_Pos (24) /*!< CLK_T::PMUCTL: WKPINEN1 Position */
  1382. #define CLK_PMUCTL_WKPINEN1_Msk (0x3ul << CLK_PMUCTL_WKPINEN1_Pos) /*!< CLK_T::PMUCTL: WKPINEN1 Mask */
  1383. #define CLK_PMUCTL_WKPINEN2_Pos (26) /*!< CLK_T::PMUCTL: WKPINEN2 Position */
  1384. #define CLK_PMUCTL_WKPINEN2_Msk (0x3ul << CLK_PMUCTL_WKPINEN2_Pos) /*!< CLK_T::PMUCTL: WKPINEN2 Mask */
  1385. #define CLK_PMUCTL_WKPINEN3_Pos (28) /*!< CLK_T::PMUCTL: WKPINEN3 Position */
  1386. #define CLK_PMUCTL_WKPINEN3_Msk (0x3ul << CLK_PMUCTL_WKPINEN3_Pos) /*!< CLK_T::PMUCTL: WKPINEN3 Mask */
  1387. #define CLK_PMUCTL_WKPINEN4_Pos (30) /*!< CLK_T::PMUCTL: WKPINEN4 Position */
  1388. #define CLK_PMUCTL_WKPINEN4_Msk (0x3ul << CLK_PMUCTL_WKPINEN4_Pos) /*!< CLK_T::PMUCTL: WKPINEN4 Mask */
  1389. #define CLK_PMUSTS_PINWK_Pos (0) /*!< CLK_T::PMUSTS: PINWK Position */
  1390. #define CLK_PMUSTS_PINWK_Msk (0x1ul << CLK_PMUSTS_PINWK_Pos) /*!< CLK_T::PMUSTS: PINWK Mask */
  1391. #define CLK_PMUSTS_TMRWK_Pos (1) /*!< CLK_T::PMUSTS: TMRWK Position */
  1392. #define CLK_PMUSTS_TMRWK_Msk (0x1ul << CLK_PMUSTS_TMRWK_Pos) /*!< CLK_T::PMUSTS: TMRWK Mask */
  1393. #define CLK_PMUSTS_RTCWK_Pos (2) /*!< CLK_T::PMUSTS: RTCWK Position */
  1394. #define CLK_PMUSTS_RTCWK_Msk (0x1ul << CLK_PMUSTS_RTCWK_Pos) /*!< CLK_T::PMUSTS: RTCWK Mask */
  1395. #define CLK_PMUSTS_PINWK1_Pos (3) /*!< CLK_T::PMUSTS: PINWK1 Position */
  1396. #define CLK_PMUSTS_PINWK1_Msk (0x1ul << CLK_PMUSTS_PINWK1_Pos) /*!< CLK_T::PMUSTS: PINWK1 Mask */
  1397. #define CLK_PMUSTS_PINWK2_Pos (4) /*!< CLK_T::PMUSTS: PINWK2 Position */
  1398. #define CLK_PMUSTS_PINWK2_Msk (0x1ul << CLK_PMUSTS_PINWK2_Pos) /*!< CLK_T::PMUSTS: PINWK2 Mask */
  1399. #define CLK_PMUSTS_PINWK3_Pos (5) /*!< CLK_T::PMUSTS: PINWK3 Position */
  1400. #define CLK_PMUSTS_PINWK3_Msk (0x1ul << CLK_PMUSTS_PINWK3_Pos) /*!< CLK_T::PMUSTS: PINWK3 Mask */
  1401. #define CLK_PMUSTS_PINWK4_Pos (6) /*!< CLK_T::PMUSTS: PINWK4 Position */
  1402. #define CLK_PMUSTS_PINWK4_Msk (0x1ul << CLK_PMUSTS_PINWK4_Pos) /*!< CLK_T::PMUSTS: PINWK4 Mask */
  1403. #define CLK_PMUSTS_GPAWK_Pos (8) /*!< CLK_T::PMUSTS: GPAWK Position */
  1404. #define CLK_PMUSTS_GPAWK_Msk (0x1ul << CLK_PMUSTS_GPAWK_Pos) /*!< CLK_T::PMUSTS: GPAWK Mask */
  1405. #define CLK_PMUSTS_GPBWK_Pos (9) /*!< CLK_T::PMUSTS: GPBWK Position */
  1406. #define CLK_PMUSTS_GPBWK_Msk (0x1ul << CLK_PMUSTS_GPBWK_Pos) /*!< CLK_T::PMUSTS: GPBWK Mask */
  1407. #define CLK_PMUSTS_GPCWK_Pos (10) /*!< CLK_T::PMUSTS: GPCWK Position */
  1408. #define CLK_PMUSTS_GPCWK_Msk (0x1ul << CLK_PMUSTS_GPCWK_Pos) /*!< CLK_T::PMUSTS: GPCWK Mask */
  1409. #define CLK_PMUSTS_GPDWK_Pos (11) /*!< CLK_T::PMUSTS: GPDWK Position */
  1410. #define CLK_PMUSTS_GPDWK_Msk (0x1ul << CLK_PMUSTS_GPDWK_Pos) /*!< CLK_T::PMUSTS: GPDWK Mask */
  1411. #define CLK_PMUSTS_LVRWK_Pos (12) /*!< CLK_T::PMUSTS: LVRWK Position */
  1412. #define CLK_PMUSTS_LVRWK_Msk (0x1ul << CLK_PMUSTS_LVRWK_Pos) /*!< CLK_T::PMUSTS: LVRWK Mask */
  1413. #define CLK_PMUSTS_BODWK_Pos (13) /*!< CLK_T::PMUSTS: BODWK Position */
  1414. #define CLK_PMUSTS_BODWK_Msk (0x1ul << CLK_PMUSTS_BODWK_Pos) /*!< CLK_T::PMUSTS: BODWK Mask */
  1415. #define CLK_PMUSTS_ACMPWK_Pos (14) /*!< CLK_T::PMUSTS: ACMPWK Position */
  1416. #define CLK_PMUSTS_ACMPWK_Msk (0x1ul << CLK_PMUSTS_ACMPWK_Pos) /*!< CLK_T::PMUSTS: ACMPWK Mask */
  1417. #define CLK_PMUSTS_CLRWK_Pos (31) /*!< CLK_T::PMUSTS: CLRWK Position */
  1418. #define CLK_PMUSTS_CLRWK_Msk (0x1ul << CLK_PMUSTS_CLRWK_Pos) /*!< CLK_T::PMUSTS: CLRWK Mask */
  1419. #define CLK_LDOCTL_PDBIASEN_Pos (18) /*!< CLK_T::LDOCTL: PDBIASEN Position */
  1420. #define CLK_LDOCTL_PDBIASEN_Msk (0x1ul << CLK_LDOCTL_PDBIASEN_Pos) /*!< CLK_T::LDOCTL: PDBIASEN Mask */
  1421. #define CLK_SWKDBCTL_SWKDBCLKSEL_Pos (0) /*!< CLK_T::SWKDBCTL: SWKDBCLKSEL Position */
  1422. #define CLK_SWKDBCTL_SWKDBCLKSEL_Msk (0xful << CLK_SWKDBCTL_SWKDBCLKSEL_Pos) /*!< CLK_T::SWKDBCTL: SWKDBCLKSEL Mask */
  1423. #define CLK_PASWKCTL_WKEN_Pos (0) /*!< CLK_T::PASWKCTL: WKEN Position */
  1424. #define CLK_PASWKCTL_WKEN_Msk (0x1ul << CLK_PASWKCTL_WKEN_Pos) /*!< CLK_T::PASWKCTL: WKEN Mask */
  1425. #define CLK_PASWKCTL_PRWKEN_Pos (1) /*!< CLK_T::PASWKCTL: PRWKEN Position */
  1426. #define CLK_PASWKCTL_PRWKEN_Msk (0x1ul << CLK_PASWKCTL_PRWKEN_Pos) /*!< CLK_T::PASWKCTL: PRWKEN Mask */
  1427. #define CLK_PASWKCTL_PFWKEN_Pos (2) /*!< CLK_T::PASWKCTL: PFWKEN Position */
  1428. #define CLK_PASWKCTL_PFWKEN_Msk (0x1ul << CLK_PASWKCTL_PFWKEN_Pos) /*!< CLK_T::PASWKCTL: PFWKEN Mask */
  1429. #define CLK_PASWKCTL_WKPSEL_Pos (4) /*!< CLK_T::PASWKCTL: WKPSEL Position */
  1430. #define CLK_PASWKCTL_WKPSEL_Msk (0xful << CLK_PASWKCTL_WKPSEL_Pos) /*!< CLK_T::PASWKCTL: WKPSEL Mask */
  1431. #define CLK_PASWKCTL_DBEN_Pos (8) /*!< CLK_T::PASWKCTL: DBEN Position */
  1432. #define CLK_PASWKCTL_DBEN_Msk (0x1ul << CLK_PASWKCTL_DBEN_Pos) /*!< CLK_T::PASWKCTL: DBEN Mask */
  1433. #define CLK_PBSWKCTL_WKEN_Pos (0) /*!< CLK_T::PBSWKCTL: WKEN Position */
  1434. #define CLK_PBSWKCTL_WKEN_Msk (0x1ul << CLK_PBSWKCTL_WKEN_Pos) /*!< CLK_T::PBSWKCTL: WKEN Mask */
  1435. #define CLK_PBSWKCTL_PRWKEN_Pos (1) /*!< CLK_T::PBSWKCTL: PRWKEN Position */
  1436. #define CLK_PBSWKCTL_PRWKEN_Msk (0x1ul << CLK_PBSWKCTL_PRWKEN_Pos) /*!< CLK_T::PBSWKCTL: PRWKEN Mask */
  1437. #define CLK_PBSWKCTL_PFWKEN_Pos (2) /*!< CLK_T::PBSWKCTL: PFWKEN Position */
  1438. #define CLK_PBSWKCTL_PFWKEN_Msk (0x1ul << CLK_PBSWKCTL_PFWKEN_Pos) /*!< CLK_T::PBSWKCTL: PFWKEN Mask */
  1439. #define CLK_PBSWKCTL_WKPSEL_Pos (4) /*!< CLK_T::PBSWKCTL: WKPSEL Position */
  1440. #define CLK_PBSWKCTL_WKPSEL_Msk (0xful << CLK_PBSWKCTL_WKPSEL_Pos) /*!< CLK_T::PBSWKCTL: WKPSEL Mask */
  1441. #define CLK_PBSWKCTL_DBEN_Pos (8) /*!< CLK_T::PBSWKCTL: DBEN Position */
  1442. #define CLK_PBSWKCTL_DBEN_Msk (0x1ul << CLK_PBSWKCTL_DBEN_Pos) /*!< CLK_T::PBSWKCTL: DBEN Mask */
  1443. #define CLK_PCSWKCTL_WKEN_Pos (0) /*!< CLK_T::PCSWKCTL: WKEN Position */
  1444. #define CLK_PCSWKCTL_WKEN_Msk (0x1ul << CLK_PCSWKCTL_WKEN_Pos) /*!< CLK_T::PCSWKCTL: WKEN Mask */
  1445. #define CLK_PCSWKCTL_PRWKEN_Pos (1) /*!< CLK_T::PCSWKCTL: PRWKEN Position */
  1446. #define CLK_PCSWKCTL_PRWKEN_Msk (0x1ul << CLK_PCSWKCTL_PRWKEN_Pos) /*!< CLK_T::PCSWKCTL: PRWKEN Mask */
  1447. #define CLK_PCSWKCTL_PFWKEN_Pos (2) /*!< CLK_T::PCSWKCTL: PFWKEN Position */
  1448. #define CLK_PCSWKCTL_PFWKEN_Msk (0x1ul << CLK_PCSWKCTL_PFWKEN_Pos) /*!< CLK_T::PCSWKCTL: PFWKEN Mask */
  1449. #define CLK_PCSWKCTL_WKPSEL_Pos (4) /*!< CLK_T::PCSWKCTL: WKPSEL Position */
  1450. #define CLK_PCSWKCTL_WKPSEL_Msk (0xful << CLK_PCSWKCTL_WKPSEL_Pos) /*!< CLK_T::PCSWKCTL: WKPSEL Mask */
  1451. #define CLK_PCSWKCTL_DBEN_Pos (8) /*!< CLK_T::PCSWKCTL: DBEN Position */
  1452. #define CLK_PCSWKCTL_DBEN_Msk (0x1ul << CLK_PCSWKCTL_DBEN_Pos) /*!< CLK_T::PCSWKCTL: DBEN Mask */
  1453. #define CLK_PDSWKCTL_WKEN_Pos (0) /*!< CLK_T::PDSWKCTL: WKEN Position */
  1454. #define CLK_PDSWKCTL_WKEN_Msk (0x1ul << CLK_PDSWKCTL_WKEN_Pos) /*!< CLK_T::PDSWKCTL: WKEN Mask */
  1455. #define CLK_PDSWKCTL_PRWKEN_Pos (1) /*!< CLK_T::PDSWKCTL: PRWKEN Position */
  1456. #define CLK_PDSWKCTL_PRWKEN_Msk (0x1ul << CLK_PDSWKCTL_PRWKEN_Pos) /*!< CLK_T::PDSWKCTL: PRWKEN Mask */
  1457. #define CLK_PDSWKCTL_PFWKEN_Pos (2) /*!< CLK_T::PDSWKCTL: PFWKEN Position */
  1458. #define CLK_PDSWKCTL_PFWKEN_Msk (0x1ul << CLK_PDSWKCTL_PFWKEN_Pos) /*!< CLK_T::PDSWKCTL: PFWKEN Mask */
  1459. #define CLK_PDSWKCTL_WKPSEL_Pos (4) /*!< CLK_T::PDSWKCTL: WKPSEL Position */
  1460. #define CLK_PDSWKCTL_WKPSEL_Msk (0xful << CLK_PDSWKCTL_WKPSEL_Pos) /*!< CLK_T::PDSWKCTL: WKPSEL Mask */
  1461. #define CLK_PDSWKCTL_DBEN_Pos (8) /*!< CLK_T::PDSWKCTL: DBEN Position */
  1462. #define CLK_PDSWKCTL_DBEN_Msk (0x1ul << CLK_PDSWKCTL_DBEN_Pos) /*!< CLK_T::PDSWKCTL: DBEN Mask */
  1463. #define CLK_IOPDCTL_IOHR_Pos (0) /*!< CLK_T::IOPDCTL: IOHR Position */
  1464. #define CLK_IOPDCTL_IOHR_Msk (0x1ul << CLK_IOPDCTL_IOHR_Pos) /*!< CLK_T::IOPDCTL: IOHR Mask */
  1465. /**@}*/ /* CLK_CONST */
  1466. /**@}*/ /* end of CLK register group */
  1467. /**@}*/ /* end of REGISTER group */
  1468. #if defined ( __CC_ARM )
  1469. #pragma no_anon_unions
  1470. #endif
  1471. #endif /* __CLK_REG_H__ */