stm32l4xx_hal_rcc_ex.h 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126
  1. /**
  2. ******************************************************************************
  3. * @file stm32l4xx_hal_rcc_ex.h
  4. * @author MCD Application Team
  5. * @brief Header file of RCC HAL Extended module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef __STM32L4xx_HAL_RCC_EX_H
  21. #define __STM32L4xx_HAL_RCC_EX_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Includes ------------------------------------------------------------------*/
  26. #include "stm32l4xx_hal_def.h"
  27. /** @addtogroup STM32L4xx_HAL_Driver
  28. * @{
  29. */
  30. /** @addtogroup RCCEx
  31. * @{
  32. */
  33. /* Exported types ------------------------------------------------------------*/
  34. /** @defgroup RCCEx_Exported_Types RCCEx Exported Types
  35. * @{
  36. */
  37. #if defined(RCC_PLLSAI1_SUPPORT)
  38. /**
  39. * @brief PLLSAI1 Clock structure definition
  40. */
  41. typedef struct
  42. {
  43. uint32_t PLLSAI1Source; /*!< PLLSAI1Source: PLLSAI1 entry clock source.
  44. This parameter must be a value of @ref RCC_PLL_Clock_Source */
  45. #if defined(RCC_PLLSAI1M_DIV_1_16_SUPPORT)
  46. uint32_t PLLSAI1M; /*!< PLLSAI1M: specifies the division factor for PLLSAI1 input clock.
  47. This parameter must be a number between Min_Data = 1 and Max_Data = 16 */
  48. #else
  49. uint32_t PLLSAI1M; /*!< PLLSAI1M: specifies the division factor for PLLSAI1 input clock.
  50. This parameter must be a number between Min_Data = 1 and Max_Data = 8 */
  51. #endif
  52. uint32_t PLLSAI1N; /*!< PLLSAI1N: specifies the multiplication factor for PLLSAI1 VCO output clock.
  53. This parameter must be a number between 8 and 86 or 127 depending on devices. */
  54. uint32_t PLLSAI1P; /*!< PLLSAI1P: specifies the division factor for SAI clock.
  55. This parameter must be a value of @ref RCC_PLLP_Clock_Divider */
  56. uint32_t PLLSAI1Q; /*!< PLLSAI1Q: specifies the division factor for USB/RNG/SDMMC1 clock.
  57. This parameter must be a value of @ref RCC_PLLQ_Clock_Divider */
  58. uint32_t PLLSAI1R; /*!< PLLSAI1R: specifies the division factor for ADC clock.
  59. This parameter must be a value of @ref RCC_PLLR_Clock_Divider */
  60. uint32_t PLLSAI1ClockOut; /*!< PLLSAIClockOut: specifies PLLSAI1 output clock to be enabled.
  61. This parameter must be a value of @ref RCC_PLLSAI1_Clock_Output */
  62. }RCC_PLLSAI1InitTypeDef;
  63. #endif /* RCC_PLLSAI1_SUPPORT */
  64. #if defined(RCC_PLLSAI2_SUPPORT)
  65. /**
  66. * @brief PLLSAI2 Clock structure definition
  67. */
  68. typedef struct
  69. {
  70. uint32_t PLLSAI2Source; /*!< PLLSAI2Source: PLLSAI2 entry clock source.
  71. This parameter must be a value of @ref RCC_PLL_Clock_Source */
  72. #if defined(RCC_PLLSAI2M_DIV_1_16_SUPPORT)
  73. uint32_t PLLSAI2M; /*!< PLLSAI2M: specifies the division factor for PLLSAI2 input clock.
  74. This parameter must be a number between Min_Data = 1 and Max_Data = 16 */
  75. #else
  76. uint32_t PLLSAI2M; /*!< PLLSAI2M: specifies the division factor for PLLSAI2 input clock.
  77. This parameter must be a number between Min_Data = 1 and Max_Data = 8 */
  78. #endif
  79. uint32_t PLLSAI2N; /*!< PLLSAI2N: specifies the multiplication factor for PLLSAI2 VCO output clock.
  80. This parameter must be a number between 8 and 86 or 127 depending on devices. */
  81. uint32_t PLLSAI2P; /*!< PLLSAI2P: specifies the division factor for SAI clock.
  82. This parameter must be a value of @ref RCC_PLLP_Clock_Divider */
  83. #if defined(RCC_PLLSAI2Q_DIV_SUPPORT)
  84. uint32_t PLLSAI2Q; /*!< PLLSAI2Q: specifies the division factor for DSI clock.
  85. This parameter must be a value of @ref RCC_PLLQ_Clock_Divider */
  86. #endif
  87. uint32_t PLLSAI2R; /*!< PLLSAI2R: specifies the division factor for ADC clock.
  88. This parameter must be a value of @ref RCC_PLLR_Clock_Divider */
  89. uint32_t PLLSAI2ClockOut; /*!< PLLSAIClockOut: specifies PLLSAI2 output clock to be enabled.
  90. This parameter must be a value of @ref RCC_PLLSAI2_Clock_Output */
  91. }RCC_PLLSAI2InitTypeDef;
  92. #endif /* RCC_PLLSAI2_SUPPORT */
  93. /**
  94. * @brief RCC extended clocks structure definition
  95. */
  96. typedef struct
  97. {
  98. uint32_t PeriphClockSelection; /*!< The Extended Clock to be configured.
  99. This parameter can be a value of @ref RCCEx_Periph_Clock_Selection */
  100. #if defined(RCC_PLLSAI1_SUPPORT)
  101. RCC_PLLSAI1InitTypeDef PLLSAI1; /*!< PLLSAI1 structure parameters.
  102. This parameter will be used only when PLLSAI1 is selected as Clock Source for SAI1, USB/RNG/SDMMC1 or ADC */
  103. #endif /* RCC_PLLSAI1_SUPPORT */
  104. #if defined(RCC_PLLSAI2_SUPPORT)
  105. RCC_PLLSAI2InitTypeDef PLLSAI2; /*!< PLLSAI2 structure parameters.
  106. This parameter will be used only when PLLSAI2 is selected as Clock Source for SAI2 or ADC */
  107. #endif /* RCC_PLLSAI2_SUPPORT */
  108. uint32_t Usart1ClockSelection; /*!< Specifies USART1 clock source.
  109. This parameter can be a value of @ref RCCEx_USART1_Clock_Source */
  110. uint32_t Usart2ClockSelection; /*!< Specifies USART2 clock source.
  111. This parameter can be a value of @ref RCCEx_USART2_Clock_Source */
  112. #if defined(USART3)
  113. uint32_t Usart3ClockSelection; /*!< Specifies USART3 clock source.
  114. This parameter can be a value of @ref RCCEx_USART3_Clock_Source */
  115. #endif /* USART3 */
  116. #if defined(UART4)
  117. uint32_t Uart4ClockSelection; /*!< Specifies UART4 clock source.
  118. This parameter can be a value of @ref RCCEx_UART4_Clock_Source */
  119. #endif /* UART4 */
  120. #if defined(UART5)
  121. uint32_t Uart5ClockSelection; /*!< Specifies UART5 clock source.
  122. This parameter can be a value of @ref RCCEx_UART5_Clock_Source */
  123. #endif /* UART5 */
  124. uint32_t Lpuart1ClockSelection; /*!< Specifies LPUART1 clock source.
  125. This parameter can be a value of @ref RCCEx_LPUART1_Clock_Source */
  126. uint32_t I2c1ClockSelection; /*!< Specifies I2C1 clock source.
  127. This parameter can be a value of @ref RCCEx_I2C1_Clock_Source */
  128. #if defined(I2C2)
  129. uint32_t I2c2ClockSelection; /*!< Specifies I2C2 clock source.
  130. This parameter can be a value of @ref RCCEx_I2C2_Clock_Source */
  131. #endif /* I2C2 */
  132. uint32_t I2c3ClockSelection; /*!< Specifies I2C3 clock source.
  133. This parameter can be a value of @ref RCCEx_I2C3_Clock_Source */
  134. #if defined(I2C4)
  135. uint32_t I2c4ClockSelection; /*!< Specifies I2C4 clock source.
  136. This parameter can be a value of @ref RCCEx_I2C4_Clock_Source */
  137. #endif /* I2C4 */
  138. uint32_t Lptim1ClockSelection; /*!< Specifies LPTIM1 clock source.
  139. This parameter can be a value of @ref RCCEx_LPTIM1_Clock_Source */
  140. uint32_t Lptim2ClockSelection; /*!< Specifies LPTIM2 clock source.
  141. This parameter can be a value of @ref RCCEx_LPTIM2_Clock_Source */
  142. #if defined(SAI1)
  143. uint32_t Sai1ClockSelection; /*!< Specifies SAI1 clock source.
  144. This parameter can be a value of @ref RCCEx_SAI1_Clock_Source */
  145. #endif /* SAI1 */
  146. #if defined(SAI2)
  147. uint32_t Sai2ClockSelection; /*!< Specifies SAI2 clock source.
  148. This parameter can be a value of @ref RCCEx_SAI2_Clock_Source */
  149. #endif /* SAI2 */
  150. #if defined(USB_OTG_FS) || defined(USB)
  151. uint32_t UsbClockSelection; /*!< Specifies USB clock source (warning: same source for SDMMC1 and RNG).
  152. This parameter can be a value of @ref RCCEx_USB_Clock_Source */
  153. #endif /* USB_OTG_FS || USB */
  154. #if defined(SDMMC1)
  155. uint32_t Sdmmc1ClockSelection; /*!< Specifies SDMMC1 clock source (warning: same source for USB and RNG).
  156. This parameter can be a value of @ref RCCEx_SDMMC1_Clock_Source */
  157. #endif /* SDMMC1 */
  158. uint32_t RngClockSelection; /*!< Specifies RNG clock source (warning: same source for USB and SDMMC1).
  159. This parameter can be a value of @ref RCCEx_RNG_Clock_Source */
  160. #if !defined(STM32L412xx) && !defined(STM32L422xx)
  161. uint32_t AdcClockSelection; /*!< Specifies ADC interface clock source.
  162. This parameter can be a value of @ref RCCEx_ADC_Clock_Source */
  163. #endif /* !STM32L412xx && !STM32L422xx */
  164. #if defined(SWPMI1)
  165. uint32_t Swpmi1ClockSelection; /*!< Specifies SWPMI1 clock source.
  166. This parameter can be a value of @ref RCCEx_SWPMI1_Clock_Source */
  167. #endif /* SWPMI1 */
  168. #if defined(DFSDM1_Filter0)
  169. uint32_t Dfsdm1ClockSelection; /*!< Specifies DFSDM1 clock source.
  170. This parameter can be a value of @ref RCCEx_DFSDM1_Clock_Source */
  171. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  172. uint32_t Dfsdm1AudioClockSelection; /*!< Specifies DFSDM1 audio clock source.
  173. This parameter can be a value of @ref RCCEx_DFSDM1_Audio_Clock_Source */
  174. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  175. #endif /* DFSDM1_Filter0 */
  176. #if defined(LTDC)
  177. uint32_t LtdcClockSelection; /*!< Specifies LTDC clock source.
  178. This parameter can be a value of @ref RCCEx_LTDC_Clock_Source */
  179. #endif /* LTDC */
  180. #if defined(DSI)
  181. uint32_t DsiClockSelection; /*!< Specifies DSI clock source.
  182. This parameter can be a value of @ref RCCEx_DSI_Clock_Source */
  183. #endif /* DSI */
  184. #if defined(OCTOSPI1) || defined(OCTOSPI2)
  185. uint32_t OspiClockSelection; /*!< Specifies OctoSPI clock source.
  186. This parameter can be a value of @ref RCCEx_OSPI_Clock_Source */
  187. #endif
  188. uint32_t RTCClockSelection; /*!< Specifies RTC clock source.
  189. This parameter can be a value of @ref RCC_RTC_Clock_Source */
  190. }RCC_PeriphCLKInitTypeDef;
  191. #if defined(CRS)
  192. /**
  193. * @brief RCC_CRS Init structure definition
  194. */
  195. typedef struct
  196. {
  197. uint32_t Prescaler; /*!< Specifies the division factor of the SYNC signal.
  198. This parameter can be a value of @ref RCCEx_CRS_SynchroDivider */
  199. uint32_t Source; /*!< Specifies the SYNC signal source.
  200. This parameter can be a value of @ref RCCEx_CRS_SynchroSource */
  201. uint32_t Polarity; /*!< Specifies the input polarity for the SYNC signal source.
  202. This parameter can be a value of @ref RCCEx_CRS_SynchroPolarity */
  203. uint32_t ReloadValue; /*!< Specifies the value to be loaded in the frequency error counter with each SYNC event.
  204. It can be calculated in using macro __HAL_RCC_CRS_RELOADVALUE_CALCULATE(__FTARGET__, __FSYNC__)
  205. This parameter must be a number between 0 and 0xFFFF or a value of @ref RCCEx_CRS_ReloadValueDefault .*/
  206. uint32_t ErrorLimitValue; /*!< Specifies the value to be used to evaluate the captured frequency error value.
  207. This parameter must be a number between 0 and 0xFF or a value of @ref RCCEx_CRS_ErrorLimitDefault */
  208. uint32_t HSI48CalibrationValue; /*!< Specifies a user-programmable trimming value to the HSI48 oscillator.
  209. This parameter must be a number between 0 and 0x7F for STM32L412xx/L422xx, between 0 and 0x3F otherwise,
  210. or a value of @ref RCCEx_CRS_HSI48CalibrationDefault */
  211. }RCC_CRSInitTypeDef;
  212. /**
  213. * @brief RCC_CRS Synchronization structure definition
  214. */
  215. typedef struct
  216. {
  217. uint32_t ReloadValue; /*!< Specifies the value loaded in the Counter reload value.
  218. This parameter must be a number between 0 and 0xFFFF */
  219. uint32_t HSI48CalibrationValue; /*!< Specifies value loaded in HSI48 oscillator smooth trimming.
  220. This parameter must be a number between 0 and 0x7F for STM32L412xx/L422xx, between 0 and 0x3F otherwise */
  221. uint32_t FreqErrorCapture; /*!< Specifies the value loaded in the .FECAP, the frequency error counter
  222. value latched in the time of the last SYNC event.
  223. This parameter must be a number between 0 and 0xFFFF */
  224. uint32_t FreqErrorDirection; /*!< Specifies the value loaded in the .FEDIR, the counting direction of the
  225. frequency error counter latched in the time of the last SYNC event.
  226. It shows whether the actual frequency is below or above the target.
  227. This parameter must be a value of @ref RCCEx_CRS_FreqErrorDirection*/
  228. }RCC_CRSSynchroInfoTypeDef;
  229. #endif /* CRS */
  230. /**
  231. * @}
  232. */
  233. /* Exported constants --------------------------------------------------------*/
  234. /** @defgroup RCCEx_Exported_Constants RCCEx Exported Constants
  235. * @{
  236. */
  237. /** @defgroup RCCEx_LSCO_Clock_Source Low Speed Clock Source
  238. * @{
  239. */
  240. #define RCC_LSCOSOURCE_LSI 0x00000000U /*!< LSI selection for low speed clock output */
  241. #define RCC_LSCOSOURCE_LSE RCC_BDCR_LSCOSEL /*!< LSE selection for low speed clock output */
  242. /**
  243. * @}
  244. */
  245. /** @defgroup RCCEx_Periph_Clock_Selection Periph Clock Selection
  246. * @{
  247. */
  248. #define RCC_PERIPHCLK_USART1 0x00000001U
  249. #define RCC_PERIPHCLK_USART2 0x00000002U
  250. #if defined(USART3)
  251. #define RCC_PERIPHCLK_USART3 0x00000004U
  252. #endif
  253. #if defined(UART4)
  254. #define RCC_PERIPHCLK_UART4 0x00000008U
  255. #endif
  256. #if defined(UART5)
  257. #define RCC_PERIPHCLK_UART5 0x00000010U
  258. #endif
  259. #define RCC_PERIPHCLK_LPUART1 0x00000020U
  260. #define RCC_PERIPHCLK_I2C1 0x00000040U
  261. #if defined(I2C2)
  262. #define RCC_PERIPHCLK_I2C2 0x00000080U
  263. #endif
  264. #define RCC_PERIPHCLK_I2C3 0x00000100U
  265. #define RCC_PERIPHCLK_LPTIM1 0x00000200U
  266. #define RCC_PERIPHCLK_LPTIM2 0x00000400U
  267. #if defined(SAI1)
  268. #define RCC_PERIPHCLK_SAI1 0x00000800U
  269. #endif
  270. #if defined(SAI2)
  271. #define RCC_PERIPHCLK_SAI2 0x00001000U
  272. #endif
  273. #if defined(USB_OTG_FS) || defined(USB)
  274. #define RCC_PERIPHCLK_USB 0x00002000U
  275. #endif
  276. #define RCC_PERIPHCLK_ADC 0x00004000U
  277. #if defined(SWPMI1)
  278. #define RCC_PERIPHCLK_SWPMI1 0x00008000U
  279. #endif
  280. #if defined(DFSDM1_Filter0)
  281. #define RCC_PERIPHCLK_DFSDM1 0x00010000U
  282. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  283. #define RCC_PERIPHCLK_DFSDM1AUDIO 0x00200000U
  284. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  285. #endif
  286. #define RCC_PERIPHCLK_RTC 0x00020000U
  287. #define RCC_PERIPHCLK_RNG 0x00040000U
  288. #if defined(SDMMC1)
  289. #define RCC_PERIPHCLK_SDMMC1 0x00080000U
  290. #endif
  291. #if defined(I2C4)
  292. #define RCC_PERIPHCLK_I2C4 0x00100000U
  293. #endif
  294. #if defined(LTDC)
  295. #define RCC_PERIPHCLK_LTDC 0x00400000U
  296. #endif
  297. #if defined(DSI)
  298. #define RCC_PERIPHCLK_DSI 0x00800000U
  299. #endif
  300. #if defined(OCTOSPI1) || defined(OCTOSPI2)
  301. #define RCC_PERIPHCLK_OSPI 0x01000000U
  302. #endif
  303. /**
  304. * @}
  305. */
  306. /** @defgroup RCCEx_USART1_Clock_Source USART1 Clock Source
  307. * @{
  308. */
  309. #define RCC_USART1CLKSOURCE_PCLK2 0x00000000U
  310. #define RCC_USART1CLKSOURCE_SYSCLK RCC_CCIPR_USART1SEL_0
  311. #define RCC_USART1CLKSOURCE_HSI RCC_CCIPR_USART1SEL_1
  312. #define RCC_USART1CLKSOURCE_LSE (RCC_CCIPR_USART1SEL_0 | RCC_CCIPR_USART1SEL_1)
  313. /**
  314. * @}
  315. */
  316. /** @defgroup RCCEx_USART2_Clock_Source USART2 Clock Source
  317. * @{
  318. */
  319. #define RCC_USART2CLKSOURCE_PCLK1 0x00000000U
  320. #define RCC_USART2CLKSOURCE_SYSCLK RCC_CCIPR_USART2SEL_0
  321. #define RCC_USART2CLKSOURCE_HSI RCC_CCIPR_USART2SEL_1
  322. #define RCC_USART2CLKSOURCE_LSE (RCC_CCIPR_USART2SEL_0 | RCC_CCIPR_USART2SEL_1)
  323. /**
  324. * @}
  325. */
  326. #if defined(USART3)
  327. /** @defgroup RCCEx_USART3_Clock_Source USART3 Clock Source
  328. * @{
  329. */
  330. #define RCC_USART3CLKSOURCE_PCLK1 0x00000000U
  331. #define RCC_USART3CLKSOURCE_SYSCLK RCC_CCIPR_USART3SEL_0
  332. #define RCC_USART3CLKSOURCE_HSI RCC_CCIPR_USART3SEL_1
  333. #define RCC_USART3CLKSOURCE_LSE (RCC_CCIPR_USART3SEL_0 | RCC_CCIPR_USART3SEL_1)
  334. /**
  335. * @}
  336. */
  337. #endif /* USART3 */
  338. #if defined(UART4)
  339. /** @defgroup RCCEx_UART4_Clock_Source UART4 Clock Source
  340. * @{
  341. */
  342. #define RCC_UART4CLKSOURCE_PCLK1 0x00000000U
  343. #define RCC_UART4CLKSOURCE_SYSCLK RCC_CCIPR_UART4SEL_0
  344. #define RCC_UART4CLKSOURCE_HSI RCC_CCIPR_UART4SEL_1
  345. #define RCC_UART4CLKSOURCE_LSE (RCC_CCIPR_UART4SEL_0 | RCC_CCIPR_UART4SEL_1)
  346. /**
  347. * @}
  348. */
  349. #endif /* UART4 */
  350. #if defined(UART5)
  351. /** @defgroup RCCEx_UART5_Clock_Source UART5 Clock Source
  352. * @{
  353. */
  354. #define RCC_UART5CLKSOURCE_PCLK1 0x00000000U
  355. #define RCC_UART5CLKSOURCE_SYSCLK RCC_CCIPR_UART5SEL_0
  356. #define RCC_UART5CLKSOURCE_HSI RCC_CCIPR_UART5SEL_1
  357. #define RCC_UART5CLKSOURCE_LSE (RCC_CCIPR_UART5SEL_0 | RCC_CCIPR_UART5SEL_1)
  358. /**
  359. * @}
  360. */
  361. #endif /* UART5 */
  362. /** @defgroup RCCEx_LPUART1_Clock_Source LPUART1 Clock Source
  363. * @{
  364. */
  365. #define RCC_LPUART1CLKSOURCE_PCLK1 0x00000000U
  366. #define RCC_LPUART1CLKSOURCE_SYSCLK RCC_CCIPR_LPUART1SEL_0
  367. #define RCC_LPUART1CLKSOURCE_HSI RCC_CCIPR_LPUART1SEL_1
  368. #define RCC_LPUART1CLKSOURCE_LSE (RCC_CCIPR_LPUART1SEL_0 | RCC_CCIPR_LPUART1SEL_1)
  369. /**
  370. * @}
  371. */
  372. /** @defgroup RCCEx_I2C1_Clock_Source I2C1 Clock Source
  373. * @{
  374. */
  375. #define RCC_I2C1CLKSOURCE_PCLK1 0x00000000U
  376. #define RCC_I2C1CLKSOURCE_SYSCLK RCC_CCIPR_I2C1SEL_0
  377. #define RCC_I2C1CLKSOURCE_HSI RCC_CCIPR_I2C1SEL_1
  378. /**
  379. * @}
  380. */
  381. #if defined(I2C2)
  382. /** @defgroup RCCEx_I2C2_Clock_Source I2C2 Clock Source
  383. * @{
  384. */
  385. #define RCC_I2C2CLKSOURCE_PCLK1 0x00000000U
  386. #define RCC_I2C2CLKSOURCE_SYSCLK RCC_CCIPR_I2C2SEL_0
  387. #define RCC_I2C2CLKSOURCE_HSI RCC_CCIPR_I2C2SEL_1
  388. /**
  389. * @}
  390. */
  391. #endif /* I2C2 */
  392. /** @defgroup RCCEx_I2C3_Clock_Source I2C3 Clock Source
  393. * @{
  394. */
  395. #define RCC_I2C3CLKSOURCE_PCLK1 0x00000000U
  396. #define RCC_I2C3CLKSOURCE_SYSCLK RCC_CCIPR_I2C3SEL_0
  397. #define RCC_I2C3CLKSOURCE_HSI RCC_CCIPR_I2C3SEL_1
  398. /**
  399. * @}
  400. */
  401. #if defined(I2C4)
  402. /** @defgroup RCCEx_I2C4_Clock_Source I2C4 Clock Source
  403. * @{
  404. */
  405. #define RCC_I2C4CLKSOURCE_PCLK1 0x00000000U
  406. #define RCC_I2C4CLKSOURCE_SYSCLK RCC_CCIPR2_I2C4SEL_0
  407. #define RCC_I2C4CLKSOURCE_HSI RCC_CCIPR2_I2C4SEL_1
  408. /**
  409. * @}
  410. */
  411. #endif /* I2C4 */
  412. #if defined(SAI1)
  413. /** @defgroup RCCEx_SAI1_Clock_Source SAI1 Clock Source
  414. * @{
  415. */
  416. #define RCC_SAI1CLKSOURCE_PLLSAI1 0x00000000U
  417. #if defined(RCC_PLLSAI2_SUPPORT)
  418. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  419. #define RCC_SAI1CLKSOURCE_PLLSAI2 RCC_CCIPR2_SAI1SEL_0
  420. #else
  421. #define RCC_SAI1CLKSOURCE_PLLSAI2 RCC_CCIPR_SAI1SEL_0
  422. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  423. #endif /* RCC_PLLSAI2_SUPPORT */
  424. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  425. #define RCC_SAI1CLKSOURCE_PLL RCC_CCIPR2_SAI1SEL_1
  426. #define RCC_SAI1CLKSOURCE_PIN (RCC_CCIPR2_SAI1SEL_1 | RCC_CCIPR2_SAI1SEL_0)
  427. #define RCC_SAI1CLKSOURCE_HSI RCC_CCIPR2_SAI1SEL_2
  428. #else
  429. #define RCC_SAI1CLKSOURCE_PLL RCC_CCIPR_SAI1SEL_1
  430. #define RCC_SAI1CLKSOURCE_PIN RCC_CCIPR_SAI1SEL
  431. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  432. /**
  433. * @}
  434. */
  435. #endif /* SAI1 */
  436. #if defined(SAI2)
  437. /** @defgroup RCCEx_SAI2_Clock_Source SAI2 Clock Source
  438. * @{
  439. */
  440. #define RCC_SAI2CLKSOURCE_PLLSAI1 0x00000000U
  441. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  442. #define RCC_SAI2CLKSOURCE_PLLSAI2 RCC_CCIPR2_SAI2SEL_0
  443. #define RCC_SAI2CLKSOURCE_PLL RCC_CCIPR2_SAI2SEL_1
  444. #define RCC_SAI2CLKSOURCE_PIN (RCC_CCIPR2_SAI2SEL_1 | RCC_CCIPR2_SAI2SEL_0)
  445. #define RCC_SAI2CLKSOURCE_HSI RCC_CCIPR2_SAI2SEL_2
  446. #else
  447. #define RCC_SAI2CLKSOURCE_PLLSAI2 RCC_CCIPR_SAI2SEL_0
  448. #define RCC_SAI2CLKSOURCE_PLL RCC_CCIPR_SAI2SEL_1
  449. #define RCC_SAI2CLKSOURCE_PIN RCC_CCIPR_SAI2SEL
  450. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  451. /**
  452. * @}
  453. */
  454. #endif /* SAI2 */
  455. /** @defgroup RCCEx_LPTIM1_Clock_Source LPTIM1 Clock Source
  456. * @{
  457. */
  458. #define RCC_LPTIM1CLKSOURCE_PCLK1 0x00000000U
  459. #define RCC_LPTIM1CLKSOURCE_LSI RCC_CCIPR_LPTIM1SEL_0
  460. #define RCC_LPTIM1CLKSOURCE_HSI RCC_CCIPR_LPTIM1SEL_1
  461. #define RCC_LPTIM1CLKSOURCE_LSE RCC_CCIPR_LPTIM1SEL
  462. /**
  463. * @}
  464. */
  465. /** @defgroup RCCEx_LPTIM2_Clock_Source LPTIM2 Clock Source
  466. * @{
  467. */
  468. #define RCC_LPTIM2CLKSOURCE_PCLK1 0x00000000U
  469. #define RCC_LPTIM2CLKSOURCE_LSI RCC_CCIPR_LPTIM2SEL_0
  470. #define RCC_LPTIM2CLKSOURCE_HSI RCC_CCIPR_LPTIM2SEL_1
  471. #define RCC_LPTIM2CLKSOURCE_LSE RCC_CCIPR_LPTIM2SEL
  472. /**
  473. * @}
  474. */
  475. #if defined(SDMMC1)
  476. /** @defgroup RCCEx_SDMMC1_Clock_Source SDMMC1 Clock Source
  477. * @{
  478. */
  479. #if defined(RCC_HSI48_SUPPORT)
  480. #define RCC_SDMMC1CLKSOURCE_HSI48 0x00000000U /*!< HSI48 clock selected as SDMMC1 clock */
  481. #else
  482. #define RCC_SDMMC1CLKSOURCE_NONE 0x00000000U /*!< No clock selected as SDMMC1 clock */
  483. #endif /* RCC_HSI48_SUPPORT */
  484. #define RCC_SDMMC1CLKSOURCE_PLLSAI1 RCC_CCIPR_CLK48SEL_0 /*!< PLLSAI1 "Q" clock selected as SDMMC1 clock */
  485. #define RCC_SDMMC1CLKSOURCE_PLL RCC_CCIPR_CLK48SEL_1 /*!< PLL "Q" clock selected as SDMMC1 clock */
  486. #define RCC_SDMMC1CLKSOURCE_MSI RCC_CCIPR_CLK48SEL /*!< MSI clock selected as SDMMC1 clock */
  487. #if defined(RCC_CCIPR2_SDMMCSEL)
  488. #define RCC_SDMMC1CLKSOURCE_PLLP RCC_CCIPR2_SDMMCSEL /*!< PLL "P" clock selected as SDMMC1 kernel clock */
  489. #endif /* RCC_CCIPR2_SDMMCSEL */
  490. /**
  491. * @}
  492. */
  493. #endif /* SDMMC1 */
  494. /** @defgroup RCCEx_RNG_Clock_Source RNG Clock Source
  495. * @{
  496. */
  497. #if defined(RCC_HSI48_SUPPORT)
  498. #define RCC_RNGCLKSOURCE_HSI48 0x00000000U
  499. #else
  500. #define RCC_RNGCLKSOURCE_NONE 0x00000000U
  501. #endif /* RCC_HSI48_SUPPORT */
  502. #if defined(RCC_PLLSAI1_SUPPORT)
  503. #define RCC_RNGCLKSOURCE_PLLSAI1 RCC_CCIPR_CLK48SEL_0
  504. #endif /* RCC_PLLSAI1_SUPPORT */
  505. #define RCC_RNGCLKSOURCE_PLL RCC_CCIPR_CLK48SEL_1
  506. #define RCC_RNGCLKSOURCE_MSI RCC_CCIPR_CLK48SEL
  507. /**
  508. * @}
  509. */
  510. #if defined(USB_OTG_FS) || defined(USB)
  511. /** @defgroup RCCEx_USB_Clock_Source USB Clock Source
  512. * @{
  513. */
  514. #if defined(RCC_HSI48_SUPPORT)
  515. #define RCC_USBCLKSOURCE_HSI48 0x00000000U
  516. #else
  517. #define RCC_USBCLKSOURCE_NONE 0x00000000U
  518. #endif /* RCC_HSI48_SUPPORT */
  519. #if defined(RCC_PLLSAI1_SUPPORT)
  520. #define RCC_USBCLKSOURCE_PLLSAI1 RCC_CCIPR_CLK48SEL_0
  521. #endif /* RCC_PLLSAI1_SUPPORT */
  522. #define RCC_USBCLKSOURCE_PLL RCC_CCIPR_CLK48SEL_1
  523. #define RCC_USBCLKSOURCE_MSI RCC_CCIPR_CLK48SEL
  524. /**
  525. * @}
  526. */
  527. #endif /* USB_OTG_FS || USB */
  528. /** @defgroup RCCEx_ADC_Clock_Source ADC Clock Source
  529. * @{
  530. */
  531. #define RCC_ADCCLKSOURCE_NONE 0x00000000U
  532. #if defined(RCC_PLLSAI1_SUPPORT)
  533. #define RCC_ADCCLKSOURCE_PLLSAI1 RCC_CCIPR_ADCSEL_0
  534. #endif /* RCC_PLLSAI1_SUPPORT */
  535. #if defined(STM32L471xx) || defined(STM32L475xx) || defined(STM32L476xx) || defined(STM32L485xx) || defined(STM32L486xx) || defined(STM32L496xx) || defined(STM32L4A6xx)
  536. #define RCC_ADCCLKSOURCE_PLLSAI2 RCC_CCIPR_ADCSEL_1
  537. #endif /* STM32L471xx || STM32L475xx || STM32L476xx || STM32L485xx || STM32L486xx || STM32L496xx || STM32L4A6xx */
  538. #if defined(RCC_CCIPR_ADCSEL)
  539. #define RCC_ADCCLKSOURCE_SYSCLK RCC_CCIPR_ADCSEL
  540. #else
  541. #define RCC_ADCCLKSOURCE_SYSCLK 0x30000000U
  542. #endif /* RCC_CCIPR_ADCSEL */
  543. /**
  544. * @}
  545. */
  546. #if defined(SWPMI1)
  547. /** @defgroup RCCEx_SWPMI1_Clock_Source SWPMI1 Clock Source
  548. * @{
  549. */
  550. #define RCC_SWPMI1CLKSOURCE_PCLK1 0x00000000U
  551. #define RCC_SWPMI1CLKSOURCE_HSI RCC_CCIPR_SWPMI1SEL
  552. /**
  553. * @}
  554. */
  555. #endif /* SWPMI1 */
  556. #if defined(DFSDM1_Filter0)
  557. /** @defgroup RCCEx_DFSDM1_Clock_Source DFSDM1 Clock Source
  558. * @{
  559. */
  560. #define RCC_DFSDM1CLKSOURCE_PCLK2 0x00000000U
  561. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  562. #define RCC_DFSDM1CLKSOURCE_SYSCLK RCC_CCIPR2_DFSDM1SEL
  563. #else
  564. #define RCC_DFSDM1CLKSOURCE_SYSCLK RCC_CCIPR_DFSDM1SEL
  565. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  566. /**
  567. * @}
  568. */
  569. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  570. /** @defgroup RCCEx_DFSDM1_Audio_Clock_Source DFSDM1 Audio Clock Source
  571. * @{
  572. */
  573. #define RCC_DFSDM1AUDIOCLKSOURCE_SAI1 0x00000000U
  574. #define RCC_DFSDM1AUDIOCLKSOURCE_HSI RCC_CCIPR2_ADFSDM1SEL_0
  575. #define RCC_DFSDM1AUDIOCLKSOURCE_MSI RCC_CCIPR2_ADFSDM1SEL_1
  576. /**
  577. * @}
  578. */
  579. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  580. #endif /* DFSDM1_Filter0 */
  581. #if defined(LTDC)
  582. /** @defgroup RCCEx_LTDC_Clock_Source LTDC Clock Source
  583. * @{
  584. */
  585. #define RCC_LTDCCLKSOURCE_PLLSAI2_DIV2 0x00000000U
  586. #define RCC_LTDCCLKSOURCE_PLLSAI2_DIV4 RCC_CCIPR2_PLLSAI2DIVR_0
  587. #define RCC_LTDCCLKSOURCE_PLLSAI2_DIV8 RCC_CCIPR2_PLLSAI2DIVR_1
  588. #define RCC_LTDCCLKSOURCE_PLLSAI2_DIV16 RCC_CCIPR2_PLLSAI2DIVR
  589. /**
  590. * @}
  591. */
  592. #endif /* LTDC */
  593. #if defined(DSI)
  594. /** @defgroup RCCEx_DSI_Clock_Source DSI Clock Source
  595. * @{
  596. */
  597. #define RCC_DSICLKSOURCE_DSIPHY 0x00000000U
  598. #define RCC_DSICLKSOURCE_PLLSAI2 RCC_CCIPR2_DSISEL
  599. /**
  600. * @}
  601. */
  602. #endif /* DSI */
  603. #if defined(OCTOSPI1) || defined(OCTOSPI2)
  604. /** @defgroup RCCEx_OSPI_Clock_Source OctoSPI Clock Source
  605. * @{
  606. */
  607. #define RCC_OSPICLKSOURCE_SYSCLK 0x00000000U
  608. #define RCC_OSPICLKSOURCE_MSI RCC_CCIPR2_OSPISEL_0
  609. #define RCC_OSPICLKSOURCE_PLL RCC_CCIPR2_OSPISEL_1
  610. /**
  611. * @}
  612. */
  613. #endif /* OCTOSPI1 || OCTOSPI2 */
  614. /** @defgroup RCCEx_EXTI_LINE_LSECSS RCC LSE CSS external interrupt line
  615. * @{
  616. */
  617. #define RCC_EXTI_LINE_LSECSS EXTI_IMR1_IM19 /*!< External interrupt line 19 connected to the LSE CSS EXTI Line */
  618. /**
  619. * @}
  620. */
  621. #if defined(CRS)
  622. /** @defgroup RCCEx_CRS_Status RCCEx CRS Status
  623. * @{
  624. */
  625. #define RCC_CRS_NONE 0x00000000U
  626. #define RCC_CRS_TIMEOUT 0x00000001U
  627. #define RCC_CRS_SYNCOK 0x00000002U
  628. #define RCC_CRS_SYNCWARN 0x00000004U
  629. #define RCC_CRS_SYNCERR 0x00000008U
  630. #define RCC_CRS_SYNCMISS 0x00000010U
  631. #define RCC_CRS_TRIMOVF 0x00000020U
  632. /**
  633. * @}
  634. */
  635. /** @defgroup RCCEx_CRS_SynchroSource RCCEx CRS SynchroSource
  636. * @{
  637. */
  638. #define RCC_CRS_SYNC_SOURCE_GPIO 0x00000000U /*!< Synchro Signal source GPIO */
  639. #define RCC_CRS_SYNC_SOURCE_LSE CRS_CFGR_SYNCSRC_0 /*!< Synchro Signal source LSE */
  640. #define RCC_CRS_SYNC_SOURCE_USB CRS_CFGR_SYNCSRC_1 /*!< Synchro Signal source USB SOF (default)*/
  641. /**
  642. * @}
  643. */
  644. /** @defgroup RCCEx_CRS_SynchroDivider RCCEx CRS SynchroDivider
  645. * @{
  646. */
  647. #define RCC_CRS_SYNC_DIV1 0x00000000U /*!< Synchro Signal not divided (default) */
  648. #define RCC_CRS_SYNC_DIV2 CRS_CFGR_SYNCDIV_0 /*!< Synchro Signal divided by 2 */
  649. #define RCC_CRS_SYNC_DIV4 CRS_CFGR_SYNCDIV_1 /*!< Synchro Signal divided by 4 */
  650. #define RCC_CRS_SYNC_DIV8 (CRS_CFGR_SYNCDIV_1 | CRS_CFGR_SYNCDIV_0) /*!< Synchro Signal divided by 8 */
  651. #define RCC_CRS_SYNC_DIV16 CRS_CFGR_SYNCDIV_2 /*!< Synchro Signal divided by 16 */
  652. #define RCC_CRS_SYNC_DIV32 (CRS_CFGR_SYNCDIV_2 | CRS_CFGR_SYNCDIV_0) /*!< Synchro Signal divided by 32 */
  653. #define RCC_CRS_SYNC_DIV64 (CRS_CFGR_SYNCDIV_2 | CRS_CFGR_SYNCDIV_1) /*!< Synchro Signal divided by 64 */
  654. #define RCC_CRS_SYNC_DIV128 CRS_CFGR_SYNCDIV /*!< Synchro Signal divided by 128 */
  655. /**
  656. * @}
  657. */
  658. /** @defgroup RCCEx_CRS_SynchroPolarity RCCEx CRS SynchroPolarity
  659. * @{
  660. */
  661. #define RCC_CRS_SYNC_POLARITY_RISING 0x00000000U /*!< Synchro Active on rising edge (default) */
  662. #define RCC_CRS_SYNC_POLARITY_FALLING CRS_CFGR_SYNCPOL /*!< Synchro Active on falling edge */
  663. /**
  664. * @}
  665. */
  666. /** @defgroup RCCEx_CRS_ReloadValueDefault RCCEx CRS ReloadValueDefault
  667. * @{
  668. */
  669. #define RCC_CRS_RELOADVALUE_DEFAULT 0x0000BB7FU /*!< The reset value of the RELOAD field corresponds
  670. to a target frequency of 48 MHz and a synchronization signal frequency of 1 kHz (SOF signal from USB). */
  671. /**
  672. * @}
  673. */
  674. /** @defgroup RCCEx_CRS_ErrorLimitDefault RCCEx CRS ErrorLimitDefault
  675. * @{
  676. */
  677. #define RCC_CRS_ERRORLIMIT_DEFAULT 0x00000022U /*!< Default Frequency error limit */
  678. /**
  679. * @}
  680. */
  681. /** @defgroup RCCEx_CRS_HSI48CalibrationDefault RCCEx CRS HSI48CalibrationDefault
  682. * @{
  683. */
  684. #if defined(STM32L412xx) || defined(STM32L422xx)
  685. #define RCC_CRS_HSI48CALIBRATION_DEFAULT 0x00000040U /*!< The default value is 64, which corresponds to the middle of the trimming interval.
  686. The trimming step is specified in the product datasheet. A higher TRIM value
  687. corresponds to a higher output frequency */
  688. #else
  689. #define RCC_CRS_HSI48CALIBRATION_DEFAULT 0x00000020U /*!< The default value is 32, which corresponds to the middle of the trimming interval.
  690. The trimming step is specified in the product datasheet. A higher TRIM value
  691. corresponds to a higher output frequency */
  692. #endif
  693. /**
  694. * @}
  695. */
  696. /** @defgroup RCCEx_CRS_FreqErrorDirection RCCEx CRS FreqErrorDirection
  697. * @{
  698. */
  699. #define RCC_CRS_FREQERRORDIR_UP 0x00000000U /*!< Upcounting direction, the actual frequency is above the target */
  700. #define RCC_CRS_FREQERRORDIR_DOWN CRS_ISR_FEDIR /*!< Downcounting direction, the actual frequency is below the target */
  701. /**
  702. * @}
  703. */
  704. /** @defgroup RCCEx_CRS_Interrupt_Sources RCCEx CRS Interrupt Sources
  705. * @{
  706. */
  707. #define RCC_CRS_IT_SYNCOK CRS_CR_SYNCOKIE /*!< SYNC event OK */
  708. #define RCC_CRS_IT_SYNCWARN CRS_CR_SYNCWARNIE /*!< SYNC warning */
  709. #define RCC_CRS_IT_ERR CRS_CR_ERRIE /*!< Error */
  710. #define RCC_CRS_IT_ESYNC CRS_CR_ESYNCIE /*!< Expected SYNC */
  711. #define RCC_CRS_IT_SYNCERR CRS_CR_ERRIE /*!< SYNC error */
  712. #define RCC_CRS_IT_SYNCMISS CRS_CR_ERRIE /*!< SYNC missed */
  713. #define RCC_CRS_IT_TRIMOVF CRS_CR_ERRIE /*!< Trimming overflow or underflow */
  714. /**
  715. * @}
  716. */
  717. /** @defgroup RCCEx_CRS_Flags RCCEx CRS Flags
  718. * @{
  719. */
  720. #define RCC_CRS_FLAG_SYNCOK CRS_ISR_SYNCOKF /*!< SYNC event OK flag */
  721. #define RCC_CRS_FLAG_SYNCWARN CRS_ISR_SYNCWARNF /*!< SYNC warning flag */
  722. #define RCC_CRS_FLAG_ERR CRS_ISR_ERRF /*!< Error flag */
  723. #define RCC_CRS_FLAG_ESYNC CRS_ISR_ESYNCF /*!< Expected SYNC flag */
  724. #define RCC_CRS_FLAG_SYNCERR CRS_ISR_SYNCERR /*!< SYNC error */
  725. #define RCC_CRS_FLAG_SYNCMISS CRS_ISR_SYNCMISS /*!< SYNC missed*/
  726. #define RCC_CRS_FLAG_TRIMOVF CRS_ISR_TRIMOVF /*!< Trimming overflow or underflow */
  727. /**
  728. * @}
  729. */
  730. #endif /* CRS */
  731. /**
  732. * @}
  733. */
  734. /* Exported macros -----------------------------------------------------------*/
  735. /** @defgroup RCCEx_Exported_Macros RCCEx Exported Macros
  736. * @{
  737. */
  738. #if defined(RCC_PLLSAI1_SUPPORT)
  739. /**
  740. * @brief Macro to configure the PLLSAI1 clock multiplication and division factors.
  741. *
  742. * @note This function must be used only when the PLLSAI1 is disabled.
  743. * @note PLLSAI1 clock source is common with the main PLL (configured through
  744. * __HAL_RCC_PLL_CONFIG() macro)
  745. *
  746. @if STM32L4S9xx
  747. * @param __PLLSAI1M__ specifies the division factor of PLLSAI1 input clock.
  748. * This parameter must be a number between Min_Data = 1 and Max_Data = 16.
  749. *
  750. @endif
  751. * @param __PLLSAI1N__ specifies the multiplication factor for PLLSAI1 VCO output clock.
  752. * This parameter must be a number between 8 and 86.
  753. * @note You have to set the PLLSAI1N parameter correctly to ensure that the VCO
  754. * output frequency is between 64 and 344 MHz.
  755. * PLLSAI1 clock frequency = f(PLLSAI1) multiplied by PLLSAI1N
  756. *
  757. * @param __PLLSAI1P__ specifies the division factor for SAI clock.
  758. * This parameter must be a number in the range (7 or 17) for STM32L47xxx/L48xxx
  759. * else (2 to 31).
  760. * SAI1 clock frequency = f(PLLSAI1) / PLLSAI1P
  761. *
  762. * @param __PLLSAI1Q__ specifies the division factor for USB/RNG/SDMMC1 clock.
  763. * This parameter must be in the range (2, 4, 6 or 8).
  764. * USB/RNG/SDMMC1 clock frequency = f(PLLSAI1) / PLLSAI1Q
  765. *
  766. * @param __PLLSAI1R__ specifies the division factor for SAR ADC clock.
  767. * This parameter must be in the range (2, 4, 6 or 8).
  768. * ADC clock frequency = f(PLLSAI1) / PLLSAI1R
  769. *
  770. * @retval None
  771. */
  772. #if defined(RCC_PLLSAI1M_DIV_1_16_SUPPORT)
  773. #if defined(RCC_PLLSAI1P_DIV_2_31_SUPPORT)
  774. #define __HAL_RCC_PLLSAI1_CONFIG(__PLLSAI1M__, __PLLSAI1N__, __PLLSAI1P__, __PLLSAI1Q__, __PLLSAI1R__) \
  775. MODIFY_REG(RCC->PLLSAI1CFGR, \
  776. (RCC_PLLSAI1CFGR_PLLSAI1M | RCC_PLLSAI1CFGR_PLLSAI1N | RCC_PLLSAI1CFGR_PLLSAI1P | \
  777. RCC_PLLSAI1CFGR_PLLSAI1Q | RCC_PLLSAI1CFGR_PLLSAI1R | RCC_PLLSAI1CFGR_PLLSAI1PDIV), \
  778. ((((__PLLSAI1M__) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1M_Pos) | \
  779. ((__PLLSAI1N__) << RCC_PLLSAI1CFGR_PLLSAI1N_Pos) | \
  780. ((((__PLLSAI1Q__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1Q_Pos) | \
  781. ((((__PLLSAI1R__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1R_Pos) | \
  782. ((uint32_t)(__PLLSAI1P__) << RCC_PLLSAI1CFGR_PLLSAI1PDIV_Pos)))
  783. #else
  784. #define __HAL_RCC_PLLSAI1_CONFIG(__PLLSAI1M__, __PLLSAI1N__, __PLLSAI1P__, __PLLSAI1Q__, __PLLSAI1R__) \
  785. MODIFY_REG(RCC->PLLSAI1CFGR, \
  786. (RCC_PLLSAI1CFGR_PLLSAI1M | RCC_PLLSAI1CFGR_PLLSAI1N | RCC_PLLSAI1CFGR_PLLSAI1P | \
  787. RCC_PLLSAI1CFGR_PLLSAI1Q | RCC_PLLSAI1CFGR_PLLSAI1R), \
  788. ((((__PLLSAI1M__) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1M_Pos) | \
  789. ((__PLLSAI1N__) << RCC_PLLSAI1CFGR_PLLSAI1N_Pos) | \
  790. ((((__PLLSAI1Q__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1Q_Pos) | \
  791. ((((__PLLSAI1R__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1R_Pos) | \
  792. (((__PLLSAI1P__) >> 4U) << RCC_PLLSAI1CFGR_PLLSAI1P_Pos)))
  793. #endif /* RCC_PLLSAI1P_DIV_2_31_SUPPORT */
  794. #else
  795. #if defined(RCC_PLLSAI1P_DIV_2_31_SUPPORT)
  796. #define __HAL_RCC_PLLSAI1_CONFIG(__PLLSAI1N__, __PLLSAI1P__, __PLLSAI1Q__, __PLLSAI1R__) \
  797. MODIFY_REG(RCC->PLLSAI1CFGR, \
  798. (RCC_PLLSAI1CFGR_PLLSAI1N | RCC_PLLSAI1CFGR_PLLSAI1P | \
  799. RCC_PLLSAI1CFGR_PLLSAI1Q | RCC_PLLSAI1CFGR_PLLSAI1R | RCC_PLLSAI1CFGR_PLLSAI1PDIV), \
  800. (((__PLLSAI1N__) << RCC_PLLSAI1CFGR_PLLSAI1N_Pos) | \
  801. ((((__PLLSAI1Q__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1Q_Pos) | \
  802. ((((__PLLSAI1R__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1R_Pos) | \
  803. ((uint32_t)(__PLLSAI1P__) << RCC_PLLSAI1CFGR_PLLSAI1PDIV_Pos)))
  804. #else
  805. #define __HAL_RCC_PLLSAI1_CONFIG(__PLLSAI1N__, __PLLSAI1P__, __PLLSAI1Q__, __PLLSAI1R__) \
  806. MODIFY_REG(RCC->PLLSAI1CFGR, \
  807. (RCC_PLLSAI1CFGR_PLLSAI1N | RCC_PLLSAI1CFGR_PLLSAI1P | \
  808. RCC_PLLSAI1CFGR_PLLSAI1Q | RCC_PLLSAI1CFGR_PLLSAI1R), \
  809. (((__PLLSAI1N__) << RCC_PLLSAI1CFGR_PLLSAI1N_Pos) | \
  810. ((((__PLLSAI1Q__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1Q_Pos) | \
  811. ((((__PLLSAI1R__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1R_Pos) | \
  812. (((__PLLSAI1P__) >> 4U) << RCC_PLLSAI1CFGR_PLLSAI1P_Pos)))
  813. #endif /* RCC_PLLSAI1P_DIV_2_31_SUPPORT */
  814. #endif /* RCC_PLLSAI1M_DIV_1_16_SUPPORT */
  815. /**
  816. * @brief Macro to configure the PLLSAI1 clock multiplication factor N.
  817. *
  818. * @note This function must be used only when the PLLSAI1 is disabled.
  819. * @note PLLSAI1 clock source is common with the main PLL (configured through
  820. * __HAL_RCC_PLL_CONFIG() macro)
  821. *
  822. * @param __PLLSAI1N__ specifies the multiplication factor for PLLSAI1 VCO output clock.
  823. * This parameter must be a number between 8 and 86.
  824. * @note You have to set the PLLSAI1N parameter correctly to ensure that the VCO
  825. * output frequency is between 64 and 344 MHz.
  826. * Use to set PLLSAI1 clock frequency = f(PLLSAI1) multiplied by PLLSAI1N
  827. *
  828. * @retval None
  829. */
  830. #define __HAL_RCC_PLLSAI1_MULN_CONFIG(__PLLSAI1N__) \
  831. MODIFY_REG(RCC->PLLSAI1CFGR, RCC_PLLSAI1CFGR_PLLSAI1N, (__PLLSAI1N__) << RCC_PLLSAI1CFGR_PLLSAI1N_Pos)
  832. #if defined(RCC_PLLSAI1M_DIV_1_16_SUPPORT)
  833. /** @brief Macro to configure the PLLSAI1 input clock division factor M.
  834. *
  835. * @note This function must be used only when the PLLSAI1 is disabled.
  836. * @note PLLSAI1 clock source is common with the main PLL (configured through
  837. * __HAL_RCC_PLL_CONFIG() macro)
  838. *
  839. * @param __PLLSAI1M__ specifies the division factor for PLLSAI1 clock.
  840. * This parameter must be a number between Min_Data = 1 and Max_Data = 16.
  841. *
  842. * @retval None
  843. */
  844. #define __HAL_RCC_PLLSAI1_DIVM_CONFIG(__PLLSAI1M__) \
  845. MODIFY_REG(RCC->PLLSAI1CFGR, RCC_PLLSAI1CFGR_PLLSAI1M, ((__PLLSAI1M__) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1M_Pos)
  846. #endif /* RCC_PLLSAI1M_DIV_1_16_SUPPORT */
  847. /** @brief Macro to configure the PLLSAI1 clock division factor P.
  848. *
  849. * @note This function must be used only when the PLLSAI1 is disabled.
  850. * @note PLLSAI1 clock source is common with the main PLL (configured through
  851. * __HAL_RCC_PLL_CONFIG() macro)
  852. *
  853. * @param __PLLSAI1P__ specifies the division factor for SAI clock.
  854. * This parameter must be a number in the range (7 or 17) for STM32L47xxx/L48xxx
  855. * else (2 to 31).
  856. * Use to set SAI1 clock frequency = f(PLLSAI1) / PLLSAI1P
  857. *
  858. * @retval None
  859. */
  860. #if defined(RCC_PLLSAI1P_DIV_2_31_SUPPORT)
  861. #define __HAL_RCC_PLLSAI1_DIVP_CONFIG(__PLLSAI1P__) \
  862. MODIFY_REG(RCC->PLLSAI1CFGR, RCC_PLLSAI1CFGR_PLLSAI1PDIV, (__PLLSAI1P__) << RCC_PLLSAI1CFGR_PLLSAI1PDIV_Pos)
  863. #else
  864. #define __HAL_RCC_PLLSAI1_DIVP_CONFIG(__PLLSAI1P__) \
  865. MODIFY_REG(RCC->PLLSAI1CFGR, RCC_PLLSAI1CFGR_PLLSAI1P, ((__PLLSAI1P__) >> 4U) << RCC_PLLSAI1CFGR_PLLSAI1P_Pos)
  866. #endif /* RCC_PLLSAI1P_DIV_2_31_SUPPORT */
  867. /** @brief Macro to configure the PLLSAI1 clock division factor Q.
  868. *
  869. * @note This function must be used only when the PLLSAI1 is disabled.
  870. * @note PLLSAI1 clock source is common with the main PLL (configured through
  871. * __HAL_RCC_PLL_CONFIG() macro)
  872. *
  873. * @param __PLLSAI1Q__ specifies the division factor for USB/RNG/SDMMC1 clock.
  874. * This parameter must be in the range (2, 4, 6 or 8).
  875. * Use to set USB/RNG/SDMMC1 clock frequency = f(PLLSAI1) / PLLSAI1Q
  876. *
  877. * @retval None
  878. */
  879. #define __HAL_RCC_PLLSAI1_DIVQ_CONFIG(__PLLSAI1Q__) \
  880. MODIFY_REG(RCC->PLLSAI1CFGR, RCC_PLLSAI1CFGR_PLLSAI1Q, (((__PLLSAI1Q__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1Q_Pos)
  881. /** @brief Macro to configure the PLLSAI1 clock division factor R.
  882. *
  883. * @note This function must be used only when the PLLSAI1 is disabled.
  884. * @note PLLSAI1 clock source is common with the main PLL (configured through
  885. * __HAL_RCC_PLL_CONFIG() macro)
  886. *
  887. * @param __PLLSAI1R__ specifies the division factor for ADC clock.
  888. * This parameter must be in the range (2, 4, 6 or 8)
  889. * Use to set ADC clock frequency = f(PLLSAI1) / PLLSAI1R
  890. *
  891. * @retval None
  892. */
  893. #define __HAL_RCC_PLLSAI1_DIVR_CONFIG(__PLLSAI1R__) \
  894. MODIFY_REG(RCC->PLLSAI1CFGR, RCC_PLLSAI1CFGR_PLLSAI1R, (((__PLLSAI1R__) >> 1U) - 1U) << RCC_PLLSAI1CFGR_PLLSAI1R_Pos)
  895. /**
  896. * @brief Macros to enable or disable the PLLSAI1.
  897. * @note The PLLSAI1 is disabled by hardware when entering STOP and STANDBY modes.
  898. * @retval None
  899. */
  900. #define __HAL_RCC_PLLSAI1_ENABLE() SET_BIT(RCC->CR, RCC_CR_PLLSAI1ON)
  901. #define __HAL_RCC_PLLSAI1_DISABLE() CLEAR_BIT(RCC->CR, RCC_CR_PLLSAI1ON)
  902. /**
  903. * @brief Macros to enable or disable each clock output (PLLSAI1_SAI1, PLLSAI1_USB2 and PLLSAI1_ADC1).
  904. * @note Enabling and disabling those clocks can be done without the need to stop the PLL.
  905. * This is mainly used to save Power.
  906. * @param __PLLSAI1_CLOCKOUT__ specifies the PLLSAI1 clock to be output.
  907. * This parameter can be one or a combination of the following values:
  908. * @arg @ref RCC_PLLSAI1_SAI1CLK This clock is used to generate an accurate clock to achieve
  909. * high-quality audio performance on SAI interface in case.
  910. * @arg @ref RCC_PLLSAI1_48M2CLK This clock is used to generate the clock for the USB OTG FS (48 MHz),
  911. * the random number generator (<=48 MHz) and the SDIO (<= 48 MHz).
  912. * @arg @ref RCC_PLLSAI1_ADC1CLK Clock used to clock ADC peripheral.
  913. * @retval None
  914. */
  915. #define __HAL_RCC_PLLSAI1CLKOUT_ENABLE(__PLLSAI1_CLOCKOUT__) SET_BIT(RCC->PLLSAI1CFGR, (__PLLSAI1_CLOCKOUT__))
  916. #define __HAL_RCC_PLLSAI1CLKOUT_DISABLE(__PLLSAI1_CLOCKOUT__) CLEAR_BIT(RCC->PLLSAI1CFGR, (__PLLSAI1_CLOCKOUT__))
  917. /**
  918. * @brief Macro to get clock output enable status (PLLSAI1_SAI1, PLLSAI1_USB2 and PLLSAI1_ADC1).
  919. * @param __PLLSAI1_CLOCKOUT__ specifies the PLLSAI1 clock to be output.
  920. * This parameter can be one of the following values:
  921. * @arg @ref RCC_PLLSAI1_SAI1CLK This clock is used to generate an accurate clock to achieve
  922. * high-quality audio performance on SAI interface in case.
  923. * @arg @ref RCC_PLLSAI1_48M2CLK This clock is used to generate the clock for the USB OTG FS (48 MHz),
  924. * the random number generator (<=48 MHz) and the SDIO (<= 48 MHz).
  925. * @arg @ref RCC_PLLSAI1_ADC1CLK Clock used to clock ADC peripheral.
  926. * @retval SET / RESET
  927. */
  928. #define __HAL_RCC_GET_PLLSAI1CLKOUT_CONFIG(__PLLSAI1_CLOCKOUT__) READ_BIT(RCC->PLLSAI1CFGR, (__PLLSAI1_CLOCKOUT__))
  929. #endif /* RCC_PLLSAI1_SUPPORT */
  930. #if defined(RCC_PLLSAI2_SUPPORT)
  931. /**
  932. * @brief Macro to configure the PLLSAI2 clock multiplication and division factors.
  933. *
  934. * @note This function must be used only when the PLLSAI2 is disabled.
  935. * @note PLLSAI2 clock source is common with the main PLL (configured through
  936. * __HAL_RCC_PLL_CONFIG() macro)
  937. *
  938. @if STM32L4S9xx
  939. * @param __PLLSAI2M__ specifies the division factor of PLLSAI2 input clock.
  940. * This parameter must be a number between Min_Data = 1 and Max_Data = 16.
  941. *
  942. @endif
  943. * @param __PLLSAI2N__ specifies the multiplication factor for PLLSAI2 VCO output clock.
  944. * This parameter must be a number between 8 and 86.
  945. * @note You have to set the PLLSAI2N parameter correctly to ensure that the VCO
  946. * output frequency is between 64 and 344 MHz.
  947. *
  948. * @param __PLLSAI2P__ specifies the division factor for SAI clock.
  949. * This parameter must be a number in the range (7 or 17) for STM32L47xxx/L48xxx
  950. * else (2 to 31).
  951. * SAI2 clock frequency = f(PLLSAI2) / PLLSAI2P
  952. *
  953. @if STM32L4S9xx
  954. * @param __PLLSAI2Q__ specifies the division factor for DSI clock.
  955. * This parameter must be in the range (2, 4, 6 or 8).
  956. * DSI clock frequency = f(PLLSAI2) / PLLSAI2Q
  957. *
  958. @endif
  959. * @param __PLLSAI2R__ specifies the division factor for SAR ADC clock.
  960. * This parameter must be in the range (2, 4, 6 or 8).
  961. *
  962. * @retval None
  963. */
  964. #if defined(RCC_PLLSAI2M_DIV_1_16_SUPPORT)
  965. # if defined(RCC_PLLSAI2P_DIV_2_31_SUPPORT) && defined(RCC_PLLSAI2Q_DIV_SUPPORT)
  966. #define __HAL_RCC_PLLSAI2_CONFIG(__PLLSAI2M__, __PLLSAI2N__, __PLLSAI2P__, __PLLSAI2Q__, __PLLSAI2R__) \
  967. MODIFY_REG(RCC->PLLSAI2CFGR, \
  968. (RCC_PLLSAI2CFGR_PLLSAI2M | RCC_PLLSAI2CFGR_PLLSAI2N | RCC_PLLSAI2CFGR_PLLSAI2P | \
  969. RCC_PLLSAI2CFGR_PLLSAI2Q | RCC_PLLSAI2CFGR_PLLSAI2R | RCC_PLLSAI2CFGR_PLLSAI2PDIV), \
  970. ((((__PLLSAI2M__) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2M_Pos) | \
  971. ((__PLLSAI2N__) << RCC_PLLSAI2CFGR_PLLSAI2N_Pos) | \
  972. ((((__PLLSAI2Q__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2Q_Pos) | \
  973. ((((__PLLSAI2R__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2R_Pos) | \
  974. ((uint32_t)(__PLLSAI2P__) << RCC_PLLSAI2CFGR_PLLSAI2PDIV_Pos)))
  975. # elif defined(RCC_PLLSAI2P_DIV_2_31_SUPPORT)
  976. #define __HAL_RCC_PLLSAI2_CONFIG(__PLLSAI2M__, __PLLSAI2N__, __PLLSAI2P__, __PLLSAI2R__) \
  977. MODIFY_REG(RCC->PLLSAI2CFGR, \
  978. (RCC_PLLSAI2CFGR_PLLSAI2M | RCC_PLLSAI2CFGR_PLLSAI2N | RCC_PLLSAI2CFGR_PLLSAI2P | \
  979. RCC_PLLSAI2CFGR_PLLSAI2R | RCC_PLLSAI2CFGR_PLLSAI2PDIV), \
  980. ((((__PLLSAI2M__) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2M_Pos) | \
  981. ((__PLLSAI2N__) << RCC_PLLSAI2CFGR_PLLSAI2N_Pos) | \
  982. ((((__PLLSAI2R__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2R_Pos) | \
  983. ((uint32_t)(__PLLSAI2P__) << RCC_PLLSAI2CFGR_PLLSAI2PDIV_Pos)))
  984. # else
  985. #define __HAL_RCC_PLLSAI2_CONFIG(__PLLSAI2M__, __PLLSAI2N__, __PLLSAI2P__, __PLLSAI2R__) \
  986. MODIFY_REG(RCC->PLLSAI2CFGR, \
  987. (RCC_PLLSAI2CFGR_PLLSAI2M | RCC_PLLSAI2CFGR_PLLSAI2N | RCC_PLLSAI2CFGR_PLLSAI2P | \
  988. RCC_PLLSAI2CFGR_PLLSAI2R), \
  989. ((((__PLLSAI2M__) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2M_Pos) | \
  990. ((__PLLSAI2N__) << RCC_PLLSAI2CFGR_PLLSAI2N_Pos) | \
  991. ((((__PLLSAI2R__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2R_Pos) | \
  992. (((__PLLSAI2P__) >> 4U) << RCC_PLLSAI2CFGR_PLLSAI2P_Pos)))
  993. # endif /* RCC_PLLSAI2P_DIV_2_31_SUPPORT && RCC_PLLSAI2Q_DIV_SUPPORT */
  994. #else
  995. # if defined(RCC_PLLSAI2P_DIV_2_31_SUPPORT) && defined(RCC_PLLSAI2Q_DIV_SUPPORT)
  996. #define __HAL_RCC_PLLSAI2_CONFIG(__PLLSAI2N__, __PLLSAI2P__, __PLLSAI2Q__, __PLLSAI2R__) \
  997. MODIFY_REG(RCC->PLLSAI2CFGR, \
  998. (RCC_PLLSAI2CFGR_PLLSAI2N | RCC_PLLSAI2CFGR_PLLSAI2P | \
  999. RCC_PLLSAI2CFGR_PLLSAI2Q | RCC_PLLSAI2CFGR_PLLSAI2R | RCC_PLLSAI2CFGR_PLLSAI2PDIV), \
  1000. (((__PLLSAI2N__) << RCC_PLLSAI2CFGR_PLLSAI2N_Pos) | \
  1001. ((((__PLLSAI2Q__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2Q_Pos) | \
  1002. ((((__PLLSAI2R__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2R_Pos) | \
  1003. ((uint32_t)(__PLLSAI2P__) << RCC_PLLSAI2CFGR_PLLSAI2PDIV_Pos)))
  1004. # elif defined(RCC_PLLSAI2P_DIV_2_31_SUPPORT)
  1005. #define __HAL_RCC_PLLSAI2_CONFIG(__PLLSAI2N__, __PLLSAI2P__, __PLLSAI2R__) \
  1006. MODIFY_REG(RCC->PLLSAI2CFGR, \
  1007. (RCC_PLLSAI2CFGR_PLLSAI2N | RCC_PLLSAI2CFGR_PLLSAI2P | \
  1008. RCC_PLLSAI2CFGR_PLLSAI2R | RCC_PLLSAI2CFGR_PLLSAI2PDIV), \
  1009. (((__PLLSAI2N__) << RCC_PLLSAI2CFGR_PLLSAI2N_Pos) | \
  1010. ((((__PLLSAI2R__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2R_Pos) | \
  1011. ((uint32_t)(__PLLSAI2P__) << RCC_PLLSAI2CFGR_PLLSAI2PDIV_Pos)))
  1012. # else
  1013. #define __HAL_RCC_PLLSAI2_CONFIG(__PLLSAI2N__, __PLLSAI2P__, __PLLSAI2R__) \
  1014. MODIFY_REG(RCC->PLLSAI2CFGR, \
  1015. (RCC_PLLSAI2CFGR_PLLSAI2N | RCC_PLLSAI2CFGR_PLLSAI2P | \
  1016. RCC_PLLSAI2CFGR_PLLSAI2R), \
  1017. (((__PLLSAI2N__) << RCC_PLLSAI2CFGR_PLLSAI2N_Pos) | \
  1018. ((((__PLLSAI2R__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2R_Pos) | \
  1019. (((__PLLSAI2P__) >> 4U) << RCC_PLLSAI2CFGR_PLLSAI2P_Pos)))
  1020. # endif /* RCC_PLLSAI2P_DIV_2_31_SUPPORT && RCC_PLLSAI2Q_DIV_SUPPORT */
  1021. #endif /* RCC_PLLSAI2M_DIV_1_16_SUPPORT */
  1022. /**
  1023. * @brief Macro to configure the PLLSAI2 clock multiplication factor N.
  1024. *
  1025. * @note This function must be used only when the PLLSAI2 is disabled.
  1026. * @note PLLSAI2 clock source is common with the main PLL (configured through
  1027. * __HAL_RCC_PLL_CONFIG() macro)
  1028. *
  1029. * @param __PLLSAI2N__ specifies the multiplication factor for PLLSAI2 VCO output clock.
  1030. * This parameter must be a number between 8 and 86.
  1031. * @note You have to set the PLLSAI2N parameter correctly to ensure that the VCO
  1032. * output frequency is between 64 and 344 MHz.
  1033. * PLLSAI1 clock frequency = f(PLLSAI1) multiplied by PLLSAI2N
  1034. *
  1035. * @retval None
  1036. */
  1037. #define __HAL_RCC_PLLSAI2_MULN_CONFIG(__PLLSAI2N__) \
  1038. MODIFY_REG(RCC->PLLSAI2CFGR, RCC_PLLSAI2CFGR_PLLSAI2N, (__PLLSAI2N__) << RCC_PLLSAI2CFGR_PLLSAI2N_Pos)
  1039. #if defined(RCC_PLLSAI2M_DIV_1_16_SUPPORT)
  1040. /** @brief Macro to configure the PLLSAI2 input clock division factor M.
  1041. *
  1042. * @note This function must be used only when the PLLSAI2 is disabled.
  1043. * @note PLLSAI2 clock source is common with the main PLL (configured through
  1044. * __HAL_RCC_PLL_CONFIG() macro)
  1045. *
  1046. * @param __PLLSAI2M__ specifies the division factor for PLLSAI2 clock.
  1047. * This parameter must be a number between Min_Data = 1 and Max_Data = 16.
  1048. *
  1049. * @retval None
  1050. */
  1051. #define __HAL_RCC_PLLSAI2_DIVM_CONFIG(__PLLSAI2M__) \
  1052. MODIFY_REG(RCC->PLLSAI2CFGR, RCC_PLLSAI2CFGR_PLLSAI2M, ((__PLLSAI2M__) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2M_Pos)
  1053. #endif /* RCC_PLLSAI2M_DIV_1_16_SUPPORT */
  1054. /** @brief Macro to configure the PLLSAI2 clock division factor P.
  1055. *
  1056. * @note This function must be used only when the PLLSAI2 is disabled.
  1057. * @note PLLSAI2 clock source is common with the main PLL (configured through
  1058. * __HAL_RCC_PLL_CONFIG() macro)
  1059. *
  1060. * @param __PLLSAI2P__ specifies the division factor.
  1061. * This parameter must be a number in the range (7 or 17).
  1062. * Use to set SAI2 clock frequency = f(PLLSAI2) / __PLLSAI2P__
  1063. *
  1064. * @retval None
  1065. */
  1066. #define __HAL_RCC_PLLSAI2_DIVP_CONFIG(__PLLSAI2P__) \
  1067. MODIFY_REG(RCC->PLLSAI2CFGR, RCC_PLLSAI2CFGR_PLLSAI2P, ((__PLLSAI2P__) >> 4U) << RCC_PLLSAI2CFGR_PLLSAI2P_Pos)
  1068. #if defined(RCC_PLLSAI2Q_DIV_SUPPORT)
  1069. /** @brief Macro to configure the PLLSAI2 clock division factor Q.
  1070. *
  1071. * @note This function must be used only when the PLLSAI2 is disabled.
  1072. * @note PLLSAI2 clock source is common with the main PLL (configured through
  1073. * __HAL_RCC_PLL_CONFIG() macro)
  1074. *
  1075. * @param __PLLSAI2Q__ specifies the division factor for USB/RNG/SDMMC1 clock.
  1076. * This parameter must be in the range (2, 4, 6 or 8).
  1077. * Use to set USB/RNG/SDMMC1 clock frequency = f(PLLSAI2) / PLLSAI2Q
  1078. *
  1079. * @retval None
  1080. */
  1081. #define __HAL_RCC_PLLSAI2_DIVQ_CONFIG(__PLLSAI2Q__) \
  1082. MODIFY_REG(RCC->PLLSAI2CFGR, RCC_PLLSAI2CFGR_PLLSAI2Q, (((__PLLSAI2Q__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2Q_Pos)
  1083. #endif /* RCC_PLLSAI2Q_DIV_SUPPORT */
  1084. /** @brief Macro to configure the PLLSAI2 clock division factor R.
  1085. *
  1086. * @note This function must be used only when the PLLSAI2 is disabled.
  1087. * @note PLLSAI2 clock source is common with the main PLL (configured through
  1088. * __HAL_RCC_PLL_CONFIG() macro)
  1089. *
  1090. * @param __PLLSAI2R__ specifies the division factor.
  1091. * This parameter must be in the range (2, 4, 6 or 8).
  1092. * Use to set ADC clock frequency = f(PLLSAI2) / __PLLSAI2R__
  1093. *
  1094. * @retval None
  1095. */
  1096. #define __HAL_RCC_PLLSAI2_DIVR_CONFIG(__PLLSAI2R__) \
  1097. MODIFY_REG(RCC->PLLSAI2CFGR, RCC_PLLSAI2CFGR_PLLSAI2R, (((__PLLSAI2R__) >> 1U) - 1U) << RCC_PLLSAI2CFGR_PLLSAI2R_Pos)
  1098. /**
  1099. * @brief Macros to enable or disable the PLLSAI2.
  1100. * @note The PLLSAI2 is disabled by hardware when entering STOP and STANDBY modes.
  1101. * @retval None
  1102. */
  1103. #define __HAL_RCC_PLLSAI2_ENABLE() SET_BIT(RCC->CR, RCC_CR_PLLSAI2ON)
  1104. #define __HAL_RCC_PLLSAI2_DISABLE() CLEAR_BIT(RCC->CR, RCC_CR_PLLSAI2ON)
  1105. /**
  1106. * @brief Macros to enable or disable each clock output (PLLSAI2_SAI2, PLLSAI2_ADC2 and RCC_PLLSAI2_DSICLK).
  1107. * @note Enabling and disabling those clocks can be done without the need to stop the PLL.
  1108. * This is mainly used to save Power.
  1109. * @param __PLLSAI2_CLOCKOUT__ specifies the PLLSAI2 clock to be output.
  1110. * This parameter can be one or a combination of the following values:
  1111. @if STM32L486xx
  1112. * @arg @ref RCC_PLLSAI2_SAI2CLK This clock is used to generate an accurate clock to achieve
  1113. * high-quality audio performance on SAI interface in case.
  1114. * @arg @ref RCC_PLLSAI2_ADC2CLK Clock used to clock ADC peripheral.
  1115. @endif
  1116. @if STM32L4A6xx
  1117. * @arg @ref RCC_PLLSAI2_SAI2CLK This clock is used to generate an accurate clock to achieve
  1118. * high-quality audio performance on SAI interface in case.
  1119. * @arg @ref RCC_PLLSAI2_ADC2CLK Clock used to clock ADC peripheral.
  1120. @endif
  1121. @if STM32L4S9xx
  1122. * @arg @ref RCC_PLLSAI2_SAI2CLK This clock is used to generate an accurate clock to achieve
  1123. * high-quality audio performance on SAI interface in case.
  1124. * @arg @ref RCC_PLLSAI2_DSICLK Clock used to clock DSI peripheral.
  1125. @endif
  1126. * @retval None
  1127. */
  1128. #define __HAL_RCC_PLLSAI2CLKOUT_ENABLE(__PLLSAI2_CLOCKOUT__) SET_BIT(RCC->PLLSAI2CFGR, (__PLLSAI2_CLOCKOUT__))
  1129. #define __HAL_RCC_PLLSAI2CLKOUT_DISABLE(__PLLSAI2_CLOCKOUT__) CLEAR_BIT(RCC->PLLSAI2CFGR, (__PLLSAI2_CLOCKOUT__))
  1130. /**
  1131. * @brief Macro to get clock output enable status (PLLSAI2_SAI2, PLLSAI2_ADC2 and RCC_PLLSAI2_DSICLK).
  1132. * @param __PLLSAI2_CLOCKOUT__ specifies the PLLSAI2 clock to be output.
  1133. * This parameter can be one of the following values:
  1134. @if STM32L486xx
  1135. * @arg @ref RCC_PLLSAI2_SAI2CLK This clock is used to generate an accurate clock to achieve
  1136. * high-quality audio performance on SAI interface in case.
  1137. * @arg @ref RCC_PLLSAI2_ADC2CLK Clock used to clock ADC peripheral.
  1138. @endif
  1139. @if STM32L4A6xx
  1140. * @arg @ref RCC_PLLSAI2_SAI2CLK This clock is used to generate an accurate clock to achieve
  1141. * high-quality audio performance on SAI interface in case.
  1142. * @arg @ref RCC_PLLSAI2_ADC2CLK Clock used to clock ADC peripheral.
  1143. @endif
  1144. @if STM32L4S9xx
  1145. * @arg @ref RCC_PLLSAI2_SAI2CLK This clock is used to generate an accurate clock to achieve
  1146. * high-quality audio performance on SAI interface in case.
  1147. * @arg @ref RCC_PLLSAI2_DSICLK Clock used to clock DSI peripheral.
  1148. @endif
  1149. * @retval SET / RESET
  1150. */
  1151. #define __HAL_RCC_GET_PLLSAI2CLKOUT_CONFIG(__PLLSAI2_CLOCKOUT__) READ_BIT(RCC->PLLSAI2CFGR, (__PLLSAI2_CLOCKOUT__))
  1152. #endif /* RCC_PLLSAI2_SUPPORT */
  1153. #if defined(SAI1)
  1154. /**
  1155. * @brief Macro to configure the SAI1 clock source.
  1156. * @param __SAI1_CLKSOURCE__ defines the SAI1 clock source. This clock is derived
  1157. * from the PLLSAI1, system PLL or external clock (through a dedicated pin).
  1158. * This parameter can be one of the following values:
  1159. * @arg @ref RCC_SAI1CLKSOURCE_PLLSAI1 SAI1 clock = PLLSAI1 "P" clock (PLLSAI1CLK)
  1160. @if STM32L486xx
  1161. * @arg @ref RCC_SAI1CLKSOURCE_PLLSAI2 SAI1 clock = PLLSAI2 "P" clock (PLLSAI2CLK) for devices with PLLSAI2
  1162. @endif
  1163. * @arg @ref RCC_SAI1CLKSOURCE_PLL SAI1 clock = PLL "P" clock (PLLSAI3CLK if PLLSAI2 exists, else PLLSAI2CLK)
  1164. * @arg @ref RCC_SAI1CLKSOURCE_PIN SAI1 clock = External Clock (SAI1_EXTCLK)
  1165. @if STM32L4S9xx
  1166. * @arg @ref RCC_SAI1CLKSOURCE_HSI SAI1 clock = HSI16
  1167. @endif
  1168. *
  1169. @if STM32L443xx
  1170. * @note HSI16 is automatically set as SAI1 clock source when PLL are disabled for devices without PLLSAI2.
  1171. @endif
  1172. *
  1173. * @retval None
  1174. */
  1175. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  1176. #define __HAL_RCC_SAI1_CONFIG(__SAI1_CLKSOURCE__)\
  1177. MODIFY_REG(RCC->CCIPR2, RCC_CCIPR2_SAI1SEL, (__SAI1_CLKSOURCE__))
  1178. #else
  1179. #define __HAL_RCC_SAI1_CONFIG(__SAI1_CLKSOURCE__)\
  1180. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_SAI1SEL, (__SAI1_CLKSOURCE__))
  1181. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  1182. /** @brief Macro to get the SAI1 clock source.
  1183. * @retval The clock source can be one of the following values:
  1184. * @arg @ref RCC_SAI1CLKSOURCE_PLLSAI1 SAI1 clock = PLLSAI1 "P" clock (PLLSAI1CLK)
  1185. @if STM32L486xx
  1186. * @arg @ref RCC_SAI1CLKSOURCE_PLLSAI2 SAI1 clock = PLLSAI2 "P" clock (PLLSAI2CLK) for devices with PLLSAI2
  1187. @endif
  1188. * @arg @ref RCC_SAI1CLKSOURCE_PLL SAI1 clock = PLL "P" clock (PLLSAI3CLK if PLLSAI2 exists, else PLLSAI2CLK)
  1189. * @arg @ref RCC_SAI1CLKSOURCE_PIN SAI1 clock = External Clock (SAI1_EXTCLK)
  1190. *
  1191. * @note Despite returned values RCC_SAI1CLKSOURCE_PLLSAI1 or RCC_SAI1CLKSOURCE_PLL, HSI16 is automatically set as SAI1
  1192. * clock source when PLLs are disabled for devices without PLLSAI2.
  1193. *
  1194. */
  1195. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  1196. #define __HAL_RCC_GET_SAI1_SOURCE() (READ_BIT(RCC->CCIPR2, RCC_CCIPR2_SAI1SEL))
  1197. #else
  1198. #define __HAL_RCC_GET_SAI1_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_SAI1SEL))
  1199. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  1200. #endif /* SAI1 */
  1201. #if defined(SAI2)
  1202. /**
  1203. * @brief Macro to configure the SAI2 clock source.
  1204. * @param __SAI2_CLKSOURCE__ defines the SAI2 clock source. This clock is derived
  1205. * from the PLLSAI2, system PLL or external clock (through a dedicated pin).
  1206. * This parameter can be one of the following values:
  1207. * @arg @ref RCC_SAI2CLKSOURCE_PLLSAI1 SAI2 clock = PLLSAI1 "P" clock (PLLSAI1CLK)
  1208. * @arg @ref RCC_SAI2CLKSOURCE_PLLSAI2 SAI2 clock = PLLSAI2 "P" clock (PLLSAI2CLK)
  1209. * @arg @ref RCC_SAI2CLKSOURCE_PLL SAI2 clock = PLL "P" clock (PLLSAI3CLK)
  1210. * @arg @ref RCC_SAI2CLKSOURCE_PIN SAI2 clock = External Clock (SAI2_EXTCLK)
  1211. @if STM32L4S9xx
  1212. * @arg @ref RCC_SAI2CLKSOURCE_HSI SAI2 clock = HSI16
  1213. @endif
  1214. *
  1215. * @retval None
  1216. */
  1217. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  1218. #define __HAL_RCC_SAI2_CONFIG(__SAI2_CLKSOURCE__ )\
  1219. MODIFY_REG(RCC->CCIPR2, RCC_CCIPR2_SAI2SEL, (__SAI2_CLKSOURCE__))
  1220. #else
  1221. #define __HAL_RCC_SAI2_CONFIG(__SAI2_CLKSOURCE__ )\
  1222. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_SAI2SEL, (__SAI2_CLKSOURCE__))
  1223. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  1224. /** @brief Macro to get the SAI2 clock source.
  1225. * @retval The clock source can be one of the following values:
  1226. * @arg @ref RCC_SAI2CLKSOURCE_PLLSAI1 SAI2 clock = PLLSAI1 "P" clock (PLLSAI1CLK)
  1227. * @arg @ref RCC_SAI2CLKSOURCE_PLLSAI2 SAI2 clock = PLLSAI2 "P" clock (PLLSAI2CLK)
  1228. * @arg @ref RCC_SAI2CLKSOURCE_PLL SAI2 clock = PLL "P" clock (PLLSAI3CLK)
  1229. * @arg @ref RCC_SAI2CLKSOURCE_PIN SAI2 clock = External Clock (SAI2_EXTCLK)
  1230. */
  1231. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  1232. #define __HAL_RCC_GET_SAI2_SOURCE() (READ_BIT(RCC->CCIPR2, RCC_CCIPR2_SAI2SEL))
  1233. #else
  1234. #define __HAL_RCC_GET_SAI2_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_SAI2SEL))
  1235. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  1236. #endif /* SAI2 */
  1237. /** @brief Macro to configure the I2C1 clock (I2C1CLK).
  1238. *
  1239. * @param __I2C1_CLKSOURCE__ specifies the I2C1 clock source.
  1240. * This parameter can be one of the following values:
  1241. * @arg @ref RCC_I2C1CLKSOURCE_PCLK1 PCLK1 selected as I2C1 clock
  1242. * @arg @ref RCC_I2C1CLKSOURCE_HSI HSI selected as I2C1 clock
  1243. * @arg @ref RCC_I2C1CLKSOURCE_SYSCLK System Clock selected as I2C1 clock
  1244. * @retval None
  1245. */
  1246. #define __HAL_RCC_I2C1_CONFIG(__I2C1_CLKSOURCE__) \
  1247. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_I2C1SEL, (__I2C1_CLKSOURCE__))
  1248. /** @brief Macro to get the I2C1 clock source.
  1249. * @retval The clock source can be one of the following values:
  1250. * @arg @ref RCC_I2C1CLKSOURCE_PCLK1 PCLK1 selected as I2C1 clock
  1251. * @arg @ref RCC_I2C1CLKSOURCE_HSI HSI selected as I2C1 clock
  1252. * @arg @ref RCC_I2C1CLKSOURCE_SYSCLK System Clock selected as I2C1 clock
  1253. */
  1254. #define __HAL_RCC_GET_I2C1_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_I2C1SEL))
  1255. #if defined(I2C2)
  1256. /** @brief Macro to configure the I2C2 clock (I2C2CLK).
  1257. *
  1258. * @param __I2C2_CLKSOURCE__ specifies the I2C2 clock source.
  1259. * This parameter can be one of the following values:
  1260. * @arg @ref RCC_I2C2CLKSOURCE_PCLK1 PCLK1 selected as I2C2 clock
  1261. * @arg @ref RCC_I2C2CLKSOURCE_HSI HSI selected as I2C2 clock
  1262. * @arg @ref RCC_I2C2CLKSOURCE_SYSCLK System Clock selected as I2C2 clock
  1263. * @retval None
  1264. */
  1265. #define __HAL_RCC_I2C2_CONFIG(__I2C2_CLKSOURCE__) \
  1266. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_I2C2SEL, (__I2C2_CLKSOURCE__))
  1267. /** @brief Macro to get the I2C2 clock source.
  1268. * @retval The clock source can be one of the following values:
  1269. * @arg @ref RCC_I2C2CLKSOURCE_PCLK1 PCLK1 selected as I2C2 clock
  1270. * @arg @ref RCC_I2C2CLKSOURCE_HSI HSI selected as I2C2 clock
  1271. * @arg @ref RCC_I2C2CLKSOURCE_SYSCLK System Clock selected as I2C2 clock
  1272. */
  1273. #define __HAL_RCC_GET_I2C2_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_I2C2SEL))
  1274. #endif /* I2C2 */
  1275. /** @brief Macro to configure the I2C3 clock (I2C3CLK).
  1276. *
  1277. * @param __I2C3_CLKSOURCE__ specifies the I2C3 clock source.
  1278. * This parameter can be one of the following values:
  1279. * @arg @ref RCC_I2C3CLKSOURCE_PCLK1 PCLK1 selected as I2C3 clock
  1280. * @arg @ref RCC_I2C3CLKSOURCE_HSI HSI selected as I2C3 clock
  1281. * @arg @ref RCC_I2C3CLKSOURCE_SYSCLK System Clock selected as I2C3 clock
  1282. * @retval None
  1283. */
  1284. #define __HAL_RCC_I2C3_CONFIG(__I2C3_CLKSOURCE__) \
  1285. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_I2C3SEL, (__I2C3_CLKSOURCE__))
  1286. /** @brief Macro to get the I2C3 clock source.
  1287. * @retval The clock source can be one of the following values:
  1288. * @arg @ref RCC_I2C3CLKSOURCE_PCLK1 PCLK1 selected as I2C3 clock
  1289. * @arg @ref RCC_I2C3CLKSOURCE_HSI HSI selected as I2C3 clock
  1290. * @arg @ref RCC_I2C3CLKSOURCE_SYSCLK System Clock selected as I2C3 clock
  1291. */
  1292. #define __HAL_RCC_GET_I2C3_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_I2C3SEL))
  1293. #if defined(I2C4)
  1294. /** @brief Macro to configure the I2C4 clock (I2C4CLK).
  1295. *
  1296. * @param __I2C4_CLKSOURCE__ specifies the I2C4 clock source.
  1297. * This parameter can be one of the following values:
  1298. * @arg @ref RCC_I2C4CLKSOURCE_PCLK1 PCLK1 selected as I2C4 clock
  1299. * @arg @ref RCC_I2C4CLKSOURCE_HSI HSI selected as I2C4 clock
  1300. * @arg @ref RCC_I2C4CLKSOURCE_SYSCLK System Clock selected as I2C4 clock
  1301. * @retval None
  1302. */
  1303. #define __HAL_RCC_I2C4_CONFIG(__I2C4_CLKSOURCE__) \
  1304. MODIFY_REG(RCC->CCIPR2, RCC_CCIPR2_I2C4SEL, (__I2C4_CLKSOURCE__))
  1305. /** @brief Macro to get the I2C4 clock source.
  1306. * @retval The clock source can be one of the following values:
  1307. * @arg @ref RCC_I2C4CLKSOURCE_PCLK1 PCLK1 selected as I2C4 clock
  1308. * @arg @ref RCC_I2C4CLKSOURCE_HSI HSI selected as I2C4 clock
  1309. * @arg @ref RCC_I2C4CLKSOURCE_SYSCLK System Clock selected as I2C4 clock
  1310. */
  1311. #define __HAL_RCC_GET_I2C4_SOURCE() (READ_BIT(RCC->CCIPR2, RCC_CCIPR2_I2C4SEL))
  1312. #endif /* I2C4 */
  1313. /** @brief Macro to configure the USART1 clock (USART1CLK).
  1314. *
  1315. * @param __USART1_CLKSOURCE__ specifies the USART1 clock source.
  1316. * This parameter can be one of the following values:
  1317. * @arg @ref RCC_USART1CLKSOURCE_PCLK2 PCLK2 selected as USART1 clock
  1318. * @arg @ref RCC_USART1CLKSOURCE_HSI HSI selected as USART1 clock
  1319. * @arg @ref RCC_USART1CLKSOURCE_SYSCLK System Clock selected as USART1 clock
  1320. * @arg @ref RCC_USART1CLKSOURCE_LSE SE selected as USART1 clock
  1321. * @retval None
  1322. */
  1323. #define __HAL_RCC_USART1_CONFIG(__USART1_CLKSOURCE__) \
  1324. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_USART1SEL, (__USART1_CLKSOURCE__))
  1325. /** @brief Macro to get the USART1 clock source.
  1326. * @retval The clock source can be one of the following values:
  1327. * @arg @ref RCC_USART1CLKSOURCE_PCLK2 PCLK2 selected as USART1 clock
  1328. * @arg @ref RCC_USART1CLKSOURCE_HSI HSI selected as USART1 clock
  1329. * @arg @ref RCC_USART1CLKSOURCE_SYSCLK System Clock selected as USART1 clock
  1330. * @arg @ref RCC_USART1CLKSOURCE_LSE LSE selected as USART1 clock
  1331. */
  1332. #define __HAL_RCC_GET_USART1_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_USART1SEL))
  1333. /** @brief Macro to configure the USART2 clock (USART2CLK).
  1334. *
  1335. * @param __USART2_CLKSOURCE__ specifies the USART2 clock source.
  1336. * This parameter can be one of the following values:
  1337. * @arg @ref RCC_USART2CLKSOURCE_PCLK1 PCLK1 selected as USART2 clock
  1338. * @arg @ref RCC_USART2CLKSOURCE_HSI HSI selected as USART2 clock
  1339. * @arg @ref RCC_USART2CLKSOURCE_SYSCLK System Clock selected as USART2 clock
  1340. * @arg @ref RCC_USART2CLKSOURCE_LSE LSE selected as USART2 clock
  1341. * @retval None
  1342. */
  1343. #define __HAL_RCC_USART2_CONFIG(__USART2_CLKSOURCE__) \
  1344. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_USART2SEL, (__USART2_CLKSOURCE__))
  1345. /** @brief Macro to get the USART2 clock source.
  1346. * @retval The clock source can be one of the following values:
  1347. * @arg @ref RCC_USART2CLKSOURCE_PCLK1 PCLK1 selected as USART2 clock
  1348. * @arg @ref RCC_USART2CLKSOURCE_HSI HSI selected as USART2 clock
  1349. * @arg @ref RCC_USART2CLKSOURCE_SYSCLK System Clock selected as USART2 clock
  1350. * @arg @ref RCC_USART2CLKSOURCE_LSE LSE selected as USART2 clock
  1351. */
  1352. #define __HAL_RCC_GET_USART2_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_USART2SEL))
  1353. #if defined(USART3)
  1354. /** @brief Macro to configure the USART3 clock (USART3CLK).
  1355. *
  1356. * @param __USART3_CLKSOURCE__ specifies the USART3 clock source.
  1357. * This parameter can be one of the following values:
  1358. * @arg @ref RCC_USART3CLKSOURCE_PCLK1 PCLK1 selected as USART3 clock
  1359. * @arg @ref RCC_USART3CLKSOURCE_HSI HSI selected as USART3 clock
  1360. * @arg @ref RCC_USART3CLKSOURCE_SYSCLK System Clock selected as USART3 clock
  1361. * @arg @ref RCC_USART3CLKSOURCE_LSE LSE selected as USART3 clock
  1362. * @retval None
  1363. */
  1364. #define __HAL_RCC_USART3_CONFIG(__USART3_CLKSOURCE__) \
  1365. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_USART3SEL, (__USART3_CLKSOURCE__))
  1366. /** @brief Macro to get the USART3 clock source.
  1367. * @retval The clock source can be one of the following values:
  1368. * @arg @ref RCC_USART3CLKSOURCE_PCLK1 PCLK1 selected as USART3 clock
  1369. * @arg @ref RCC_USART3CLKSOURCE_HSI HSI selected as USART3 clock
  1370. * @arg @ref RCC_USART3CLKSOURCE_SYSCLK System Clock selected as USART3 clock
  1371. * @arg @ref RCC_USART3CLKSOURCE_LSE LSE selected as USART3 clock
  1372. */
  1373. #define __HAL_RCC_GET_USART3_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_USART3SEL))
  1374. #endif /* USART3 */
  1375. #if defined(UART4)
  1376. /** @brief Macro to configure the UART4 clock (UART4CLK).
  1377. *
  1378. * @param __UART4_CLKSOURCE__ specifies the UART4 clock source.
  1379. * This parameter can be one of the following values:
  1380. * @arg @ref RCC_UART4CLKSOURCE_PCLK1 PCLK1 selected as UART4 clock
  1381. * @arg @ref RCC_UART4CLKSOURCE_HSI HSI selected as UART4 clock
  1382. * @arg @ref RCC_UART4CLKSOURCE_SYSCLK System Clock selected as UART4 clock
  1383. * @arg @ref RCC_UART4CLKSOURCE_LSE LSE selected as UART4 clock
  1384. * @retval None
  1385. */
  1386. #define __HAL_RCC_UART4_CONFIG(__UART4_CLKSOURCE__) \
  1387. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_UART4SEL, (__UART4_CLKSOURCE__))
  1388. /** @brief Macro to get the UART4 clock source.
  1389. * @retval The clock source can be one of the following values:
  1390. * @arg @ref RCC_UART4CLKSOURCE_PCLK1 PCLK1 selected as UART4 clock
  1391. * @arg @ref RCC_UART4CLKSOURCE_HSI HSI selected as UART4 clock
  1392. * @arg @ref RCC_UART4CLKSOURCE_SYSCLK System Clock selected as UART4 clock
  1393. * @arg @ref RCC_UART4CLKSOURCE_LSE LSE selected as UART4 clock
  1394. */
  1395. #define __HAL_RCC_GET_UART4_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_UART4SEL))
  1396. #endif /* UART4 */
  1397. #if defined(UART5)
  1398. /** @brief Macro to configure the UART5 clock (UART5CLK).
  1399. *
  1400. * @param __UART5_CLKSOURCE__ specifies the UART5 clock source.
  1401. * This parameter can be one of the following values:
  1402. * @arg @ref RCC_UART5CLKSOURCE_PCLK1 PCLK1 selected as UART5 clock
  1403. * @arg @ref RCC_UART5CLKSOURCE_HSI HSI selected as UART5 clock
  1404. * @arg @ref RCC_UART5CLKSOURCE_SYSCLK System Clock selected as UART5 clock
  1405. * @arg @ref RCC_UART5CLKSOURCE_LSE LSE selected as UART5 clock
  1406. * @retval None
  1407. */
  1408. #define __HAL_RCC_UART5_CONFIG(__UART5_CLKSOURCE__) \
  1409. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_UART5SEL, (__UART5_CLKSOURCE__))
  1410. /** @brief Macro to get the UART5 clock source.
  1411. * @retval The clock source can be one of the following values:
  1412. * @arg @ref RCC_UART5CLKSOURCE_PCLK1 PCLK1 selected as UART5 clock
  1413. * @arg @ref RCC_UART5CLKSOURCE_HSI HSI selected as UART5 clock
  1414. * @arg @ref RCC_UART5CLKSOURCE_SYSCLK System Clock selected as UART5 clock
  1415. * @arg @ref RCC_UART5CLKSOURCE_LSE LSE selected as UART5 clock
  1416. */
  1417. #define __HAL_RCC_GET_UART5_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_UART5SEL))
  1418. #endif /* UART5 */
  1419. /** @brief Macro to configure the LPUART1 clock (LPUART1CLK).
  1420. *
  1421. * @param __LPUART1_CLKSOURCE__ specifies the LPUART1 clock source.
  1422. * This parameter can be one of the following values:
  1423. * @arg @ref RCC_LPUART1CLKSOURCE_PCLK1 PCLK1 selected as LPUART1 clock
  1424. * @arg @ref RCC_LPUART1CLKSOURCE_HSI HSI selected as LPUART1 clock
  1425. * @arg @ref RCC_LPUART1CLKSOURCE_SYSCLK System Clock selected as LPUART1 clock
  1426. * @arg @ref RCC_LPUART1CLKSOURCE_LSE LSE selected as LPUART1 clock
  1427. * @retval None
  1428. */
  1429. #define __HAL_RCC_LPUART1_CONFIG(__LPUART1_CLKSOURCE__) \
  1430. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_LPUART1SEL, (__LPUART1_CLKSOURCE__))
  1431. /** @brief Macro to get the LPUART1 clock source.
  1432. * @retval The clock source can be one of the following values:
  1433. * @arg @ref RCC_LPUART1CLKSOURCE_PCLK1 PCLK1 selected as LPUART1 clock
  1434. * @arg @ref RCC_LPUART1CLKSOURCE_HSI HSI selected as LPUART1 clock
  1435. * @arg @ref RCC_LPUART1CLKSOURCE_SYSCLK System Clock selected as LPUART1 clock
  1436. * @arg @ref RCC_LPUART1CLKSOURCE_LSE LSE selected as LPUART1 clock
  1437. */
  1438. #define __HAL_RCC_GET_LPUART1_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_LPUART1SEL))
  1439. /** @brief Macro to configure the LPTIM1 clock (LPTIM1CLK).
  1440. *
  1441. * @param __LPTIM1_CLKSOURCE__ specifies the LPTIM1 clock source.
  1442. * This parameter can be one of the following values:
  1443. * @arg @ref RCC_LPTIM1CLKSOURCE_PCLK1 PCLK1 selected as LPTIM1 clock
  1444. * @arg @ref RCC_LPTIM1CLKSOURCE_LSI HSI selected as LPTIM1 clock
  1445. * @arg @ref RCC_LPTIM1CLKSOURCE_HSI LSI selected as LPTIM1 clock
  1446. * @arg @ref RCC_LPTIM1CLKSOURCE_LSE LSE selected as LPTIM1 clock
  1447. * @retval None
  1448. */
  1449. #define __HAL_RCC_LPTIM1_CONFIG(__LPTIM1_CLKSOURCE__) \
  1450. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_LPTIM1SEL, (__LPTIM1_CLKSOURCE__))
  1451. /** @brief Macro to get the LPTIM1 clock source.
  1452. * @retval The clock source can be one of the following values:
  1453. * @arg @ref RCC_LPTIM1CLKSOURCE_PCLK1 PCLK1 selected as LPUART1 clock
  1454. * @arg @ref RCC_LPTIM1CLKSOURCE_LSI HSI selected as LPUART1 clock
  1455. * @arg @ref RCC_LPTIM1CLKSOURCE_HSI System Clock selected as LPUART1 clock
  1456. * @arg @ref RCC_LPTIM1CLKSOURCE_LSE LSE selected as LPUART1 clock
  1457. */
  1458. #define __HAL_RCC_GET_LPTIM1_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_LPTIM1SEL))
  1459. /** @brief Macro to configure the LPTIM2 clock (LPTIM2CLK).
  1460. *
  1461. * @param __LPTIM2_CLKSOURCE__ specifies the LPTIM2 clock source.
  1462. * This parameter can be one of the following values:
  1463. * @arg @ref RCC_LPTIM2CLKSOURCE_PCLK1 PCLK1 selected as LPTIM2 clock
  1464. * @arg @ref RCC_LPTIM2CLKSOURCE_LSI HSI selected as LPTIM2 clock
  1465. * @arg @ref RCC_LPTIM2CLKSOURCE_HSI LSI selected as LPTIM2 clock
  1466. * @arg @ref RCC_LPTIM2CLKSOURCE_LSE LSE selected as LPTIM2 clock
  1467. * @retval None
  1468. */
  1469. #define __HAL_RCC_LPTIM2_CONFIG(__LPTIM2_CLKSOURCE__) \
  1470. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_LPTIM2SEL, (__LPTIM2_CLKSOURCE__))
  1471. /** @brief Macro to get the LPTIM2 clock source.
  1472. * @retval The clock source can be one of the following values:
  1473. * @arg @ref RCC_LPTIM2CLKSOURCE_PCLK1 PCLK1 selected as LPUART1 clock
  1474. * @arg @ref RCC_LPTIM2CLKSOURCE_LSI HSI selected as LPUART1 clock
  1475. * @arg @ref RCC_LPTIM2CLKSOURCE_HSI System Clock selected as LPUART1 clock
  1476. * @arg @ref RCC_LPTIM2CLKSOURCE_LSE LSE selected as LPUART1 clock
  1477. */
  1478. #define __HAL_RCC_GET_LPTIM2_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_LPTIM2SEL))
  1479. #if defined(SDMMC1)
  1480. /** @brief Macro to configure the SDMMC1 clock.
  1481. *
  1482. @if STM32L486xx
  1483. * @note USB, RNG and SDMMC1 peripherals share the same 48MHz clock source.
  1484. @endif
  1485. *
  1486. @if STM32L443xx
  1487. * @note USB, RNG and SDMMC1 peripherals share the same 48MHz clock source.
  1488. @endif
  1489. *
  1490. * @param __SDMMC1_CLKSOURCE__ specifies the SDMMC1 clock source.
  1491. * This parameter can be one of the following values:
  1492. @if STM32L486xx
  1493. * @arg @ref RCC_SDMMC1CLKSOURCE_NONE No clock selected as SDMMC1 clock for devices without HSI48
  1494. * @arg @ref RCC_SDMMC1CLKSOURCE_MSI MSI selected as SDMMC1 clock
  1495. * @arg @ref RCC_SDMMC1CLKSOURCE_PLLSAI1 PLLSAI1 "Q" Clock selected as SDMMC1 clock
  1496. @endif
  1497. @if STM32L443xx
  1498. * @arg @ref RCC_SDMMC1CLKSOURCE_HSI48 HSI48 selected as SDMMC1 clock for devices with HSI48
  1499. * @arg @ref RCC_SDMMC1CLKSOURCE_MSI MSI selected as SDMMC1 clock
  1500. * @arg @ref RCC_SDMMC1CLKSOURCE_PLLSAI1 PLLSAI1 "Q" Clock selected as SDMMC1 clock
  1501. @endif
  1502. @if STM32L4S9xx
  1503. * @arg @ref RCC_SDMMC1CLKSOURCE_HSI48 HSI48 selected as SDMMC1 clock for devices with HSI48
  1504. * @arg @ref RCC_SDMMC1CLKSOURCE_MSI MSI selected as SDMMC1 clock
  1505. * @arg @ref RCC_SDMMC1CLKSOURCE_PLLSAI1 PLLSAI1 "Q" Clock selected as SDMMC1 clock
  1506. * @arg @ref RCC_SDMMC1CLKSOURCE_PLLP PLL "P" Clock selected as SDMMC1 clock
  1507. @endif
  1508. * @arg @ref RCC_SDMMC1CLKSOURCE_PLL PLL "Q" Clock selected as SDMMC1 clock
  1509. * @retval None
  1510. */
  1511. #if defined(RCC_CCIPR2_SDMMCSEL)
  1512. #define __HAL_RCC_SDMMC1_CONFIG(__SDMMC1_CLKSOURCE__) \
  1513. do \
  1514. { \
  1515. if((__SDMMC1_CLKSOURCE__) == RCC_SDMMC1CLKSOURCE_PLLP) \
  1516. { \
  1517. SET_BIT(RCC->CCIPR2, RCC_CCIPR2_SDMMCSEL); \
  1518. } \
  1519. else \
  1520. { \
  1521. CLEAR_BIT(RCC->CCIPR2, RCC_CCIPR2_SDMMCSEL); \
  1522. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_CLK48SEL, (__SDMMC1_CLKSOURCE__)); \
  1523. } \
  1524. } while(0)
  1525. #else
  1526. #define __HAL_RCC_SDMMC1_CONFIG(__SDMMC1_CLKSOURCE__) \
  1527. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_CLK48SEL, (__SDMMC1_CLKSOURCE__))
  1528. #endif /* RCC_CCIPR2_SDMMCSEL */
  1529. /** @brief Macro to get the SDMMC1 clock.
  1530. * @retval The clock source can be one of the following values:
  1531. @if STM32L486xx
  1532. * @arg @ref RCC_SDMMC1CLKSOURCE_NONE No clock selected as SDMMC1 clock for devices without HSI48
  1533. * @arg @ref RCC_SDMMC1CLKSOURCE_MSI MSI selected as SDMMC1 clock
  1534. * @arg @ref RCC_SDMMC1CLKSOURCE_PLLSAI1 PLLSAI1 "Q" clock (PLL48M2CLK) selected as SDMMC1 clock
  1535. @endif
  1536. @if STM32L443xx
  1537. * @arg @ref RCC_SDMMC1CLKSOURCE_HSI48 HSI48 selected as SDMMC1 clock for devices with HSI48
  1538. * @arg @ref RCC_SDMMC1CLKSOURCE_MSI MSI selected as SDMMC1 clock
  1539. * @arg @ref RCC_SDMMC1CLKSOURCE_PLLSAI1 PLLSAI1 "Q" clock (PLL48M2CLK) selected as SDMMC1 clock
  1540. @endif
  1541. @if STM32L4S9xx
  1542. * @arg @ref RCC_SDMMC1CLKSOURCE_HSI48 HSI48 selected as SDMMC1 clock for devices with HSI48
  1543. * @arg @ref RCC_SDMMC1CLKSOURCE_MSI MSI selected as SDMMC1 clock
  1544. * @arg @ref RCC_SDMMC1CLKSOURCE_PLLSAI1 PLLSAI1 "Q" clock (PLL48M2CLK) selected as SDMMC1 clock
  1545. * @arg @ref RCC_SDMMC1CLKSOURCE_PLLP PLL "P" clock (PLLSAI3CLK) selected as SDMMC1 kernel clock
  1546. @endif
  1547. * @arg @ref RCC_SDMMC1CLKSOURCE_PLL PLL "Q" clock (PLL48M1CLK) selected as SDMMC1 clock
  1548. */
  1549. #if defined(RCC_CCIPR2_SDMMCSEL)
  1550. #define __HAL_RCC_GET_SDMMC1_SOURCE() \
  1551. ((READ_BIT(RCC->CCIPR2, RCC_CCIPR2_SDMMCSEL) != 0U) ? RCC_SDMMC1CLKSOURCE_PLLP : (READ_BIT(RCC->CCIPR, RCC_CCIPR_CLK48SEL)))
  1552. #else
  1553. #define __HAL_RCC_GET_SDMMC1_SOURCE() \
  1554. (READ_BIT(RCC->CCIPR, RCC_CCIPR_CLK48SEL))
  1555. #endif /* RCC_CCIPR2_SDMMCSEL */
  1556. #endif /* SDMMC1 */
  1557. /** @brief Macro to configure the RNG clock.
  1558. *
  1559. * @note USB, RNG and SDMMC1 peripherals share the same 48MHz clock source.
  1560. *
  1561. * @param __RNG_CLKSOURCE__ specifies the RNG clock source.
  1562. * This parameter can be one of the following values:
  1563. @if STM32L486xx
  1564. * @arg @ref RCC_RNGCLKSOURCE_NONE No clock selected as RNG clock for devices without HSI48
  1565. @endif
  1566. @if STM32L443xx
  1567. * @arg @ref RCC_RNGCLKSOURCE_HSI48 HSI48 selected as RNG clock clock for devices with HSI48
  1568. @endif
  1569. * @arg @ref RCC_RNGCLKSOURCE_MSI MSI selected as RNG clock
  1570. * @arg @ref RCC_RNGCLKSOURCE_PLLSAI1 PLLSAI1 Clock selected as RNG clock
  1571. * @arg @ref RCC_RNGCLKSOURCE_PLL PLL Clock selected as RNG clock
  1572. * @retval None
  1573. */
  1574. #define __HAL_RCC_RNG_CONFIG(__RNG_CLKSOURCE__) \
  1575. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_CLK48SEL, (__RNG_CLKSOURCE__))
  1576. /** @brief Macro to get the RNG clock.
  1577. * @retval The clock source can be one of the following values:
  1578. @if STM32L486xx
  1579. * @arg @ref RCC_RNGCLKSOURCE_NONE No clock selected as RNG clock for devices without HSI48
  1580. @endif
  1581. @if STM32L443xx
  1582. * @arg @ref RCC_RNGCLKSOURCE_HSI48 HSI48 selected as RNG clock clock for devices with HSI48
  1583. @endif
  1584. * @arg @ref RCC_RNGCLKSOURCE_MSI MSI selected as RNG clock
  1585. * @arg @ref RCC_RNGCLKSOURCE_PLLSAI1 PLLSAI1 "Q" clock (PLL48M2CLK) selected as RNG clock
  1586. * @arg @ref RCC_RNGCLKSOURCE_PLL PLL "Q" clock (PLL48M1CLK) selected as RNG clock
  1587. */
  1588. #define __HAL_RCC_GET_RNG_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_CLK48SEL))
  1589. #if defined(USB_OTG_FS) || defined(USB)
  1590. /** @brief Macro to configure the USB clock (USBCLK).
  1591. *
  1592. * @note USB, RNG and SDMMC1 peripherals share the same 48MHz clock source.
  1593. *
  1594. * @param __USB_CLKSOURCE__ specifies the USB clock source.
  1595. * This parameter can be one of the following values:
  1596. @if STM32L486xx
  1597. * @arg @ref RCC_USBCLKSOURCE_NONE No clock selected as 48MHz clock for devices without HSI48
  1598. @endif
  1599. @if STM32L443xx
  1600. * @arg @ref RCC_USBCLKSOURCE_HSI48 HSI48 selected as 48MHz clock for devices with HSI48
  1601. @endif
  1602. * @arg @ref RCC_USBCLKSOURCE_MSI MSI selected as USB clock
  1603. * @arg @ref RCC_USBCLKSOURCE_PLLSAI1 PLLSAI1 "Q" clock (PLL48M2CLK) selected as USB clock
  1604. * @arg @ref RCC_USBCLKSOURCE_PLL PLL "Q" clock (PLL48M1CLK) selected as USB clock
  1605. * @retval None
  1606. */
  1607. #define __HAL_RCC_USB_CONFIG(__USB_CLKSOURCE__) \
  1608. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_CLK48SEL, (__USB_CLKSOURCE__))
  1609. /** @brief Macro to get the USB clock source.
  1610. * @retval The clock source can be one of the following values:
  1611. @if STM32L486xx
  1612. * @arg @ref RCC_USBCLKSOURCE_NONE No clock selected as 48MHz clock for devices without HSI48
  1613. @endif
  1614. @if STM32L443xx
  1615. * @arg @ref RCC_USBCLKSOURCE_HSI48 HSI48 selected as 48MHz clock for devices with HSI48
  1616. @endif
  1617. * @arg @ref RCC_USBCLKSOURCE_MSI MSI selected as USB clock
  1618. * @arg @ref RCC_USBCLKSOURCE_PLLSAI1 PLLSAI1 "Q" clock (PLL48M2CLK) selected as USB clock
  1619. * @arg @ref RCC_USBCLKSOURCE_PLL PLL "Q" clock (PLL48M1CLK) selected as USB clock
  1620. */
  1621. #define __HAL_RCC_GET_USB_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_CLK48SEL))
  1622. #endif /* USB_OTG_FS || USB */
  1623. #if defined(RCC_CCIPR_ADCSEL)
  1624. /** @brief Macro to configure the ADC interface clock.
  1625. * @param __ADC_CLKSOURCE__ specifies the ADC digital interface clock source.
  1626. * This parameter can be one of the following values:
  1627. * @arg @ref RCC_ADCCLKSOURCE_NONE No clock selected as ADC clock
  1628. * @arg @ref RCC_ADCCLKSOURCE_PLLSAI1 PLLSAI1 Clock selected as ADC clock
  1629. @if STM32L486xx
  1630. * @arg @ref RCC_ADCCLKSOURCE_PLLSAI2 PLLSAI2 Clock selected as ADC clock for STM32L47x/STM32L48x/STM32L49x/STM32L4Ax devices
  1631. @endif
  1632. * @arg @ref RCC_ADCCLKSOURCE_SYSCLK System Clock selected as ADC clock
  1633. * @retval None
  1634. */
  1635. #define __HAL_RCC_ADC_CONFIG(__ADC_CLKSOURCE__) \
  1636. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_ADCSEL, (__ADC_CLKSOURCE__))
  1637. /** @brief Macro to get the ADC clock source.
  1638. * @retval The clock source can be one of the following values:
  1639. * @arg @ref RCC_ADCCLKSOURCE_NONE No clock selected as ADC clock
  1640. * @arg @ref RCC_ADCCLKSOURCE_PLLSAI1 PLLSAI1 Clock selected as ADC clock
  1641. @if STM32L486xx
  1642. * @arg @ref RCC_ADCCLKSOURCE_PLLSAI2 PLLSAI2 Clock selected as ADC clock for STM32L47x/STM32L48x/STM32L49x/STM32L4Ax devices
  1643. @endif
  1644. * @arg @ref RCC_ADCCLKSOURCE_SYSCLK System Clock selected as ADC clock
  1645. */
  1646. #define __HAL_RCC_GET_ADC_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_ADCSEL))
  1647. #else
  1648. /** @brief Macro to get the ADC clock source.
  1649. * @retval The clock source can be one of the following values:
  1650. * @arg @ref RCC_ADCCLKSOURCE_NONE No clock selected as ADC clock
  1651. * @arg @ref RCC_ADCCLKSOURCE_SYSCLK System Clock selected as ADC clock
  1652. */
  1653. #define __HAL_RCC_GET_ADC_SOURCE() ((__HAL_RCC_ADC_IS_CLK_ENABLED() != 0U) ? RCC_ADCCLKSOURCE_SYSCLK : RCC_ADCCLKSOURCE_NONE)
  1654. #endif /* RCC_CCIPR_ADCSEL */
  1655. #if defined(SWPMI1)
  1656. /** @brief Macro to configure the SWPMI1 clock.
  1657. * @param __SWPMI1_CLKSOURCE__ specifies the SWPMI1 clock source.
  1658. * This parameter can be one of the following values:
  1659. * @arg @ref RCC_SWPMI1CLKSOURCE_PCLK1 PCLK1 Clock selected as SWPMI1 clock
  1660. * @arg @ref RCC_SWPMI1CLKSOURCE_HSI HSI Clock selected as SWPMI1 clock
  1661. * @retval None
  1662. */
  1663. #define __HAL_RCC_SWPMI1_CONFIG(__SWPMI1_CLKSOURCE__) \
  1664. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_SWPMI1SEL, (__SWPMI1_CLKSOURCE__))
  1665. /** @brief Macro to get the SWPMI1 clock source.
  1666. * @retval The clock source can be one of the following values:
  1667. * @arg @ref RCC_SWPMI1CLKSOURCE_PCLK1 PCLK1 Clock selected as SWPMI1 clock
  1668. * @arg @ref RCC_SWPMI1CLKSOURCE_HSI HSI Clock selected as SWPMI1 clock
  1669. */
  1670. #define __HAL_RCC_GET_SWPMI1_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_SWPMI1SEL))
  1671. #endif /* SWPMI1 */
  1672. #if defined(DFSDM1_Filter0)
  1673. /** @brief Macro to configure the DFSDM1 clock.
  1674. * @param __DFSDM1_CLKSOURCE__ specifies the DFSDM1 clock source.
  1675. * This parameter can be one of the following values:
  1676. * @arg @ref RCC_DFSDM1CLKSOURCE_PCLK2 PCLK2 Clock selected as DFSDM1 clock
  1677. * @arg @ref RCC_DFSDM1CLKSOURCE_SYSCLK System Clock selected as DFSDM1 clock
  1678. * @retval None
  1679. */
  1680. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  1681. #define __HAL_RCC_DFSDM1_CONFIG(__DFSDM1_CLKSOURCE__) \
  1682. MODIFY_REG(RCC->CCIPR2, RCC_CCIPR2_DFSDM1SEL, (__DFSDM1_CLKSOURCE__))
  1683. #else
  1684. #define __HAL_RCC_DFSDM1_CONFIG(__DFSDM1_CLKSOURCE__) \
  1685. MODIFY_REG(RCC->CCIPR, RCC_CCIPR_DFSDM1SEL, (__DFSDM1_CLKSOURCE__))
  1686. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  1687. /** @brief Macro to get the DFSDM1 clock source.
  1688. * @retval The clock source can be one of the following values:
  1689. * @arg @ref RCC_DFSDM1CLKSOURCE_PCLK2 PCLK2 Clock selected as DFSDM1 clock
  1690. * @arg @ref RCC_DFSDM1CLKSOURCE_SYSCLK System Clock selected as DFSDM1 clock
  1691. */
  1692. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  1693. #define __HAL_RCC_GET_DFSDM1_SOURCE() (READ_BIT(RCC->CCIPR2, RCC_CCIPR2_DFSDM1SEL))
  1694. #else
  1695. #define __HAL_RCC_GET_DFSDM1_SOURCE() (READ_BIT(RCC->CCIPR, RCC_CCIPR_DFSDM1SEL))
  1696. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  1697. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  1698. /** @brief Macro to configure the DFSDM1 audio clock.
  1699. * @param __DFSDM1AUDIO_CLKSOURCE__ specifies the DFSDM1 audio clock source.
  1700. * This parameter can be one of the following values:
  1701. * @arg @ref RCC_DFSDM1AUDIOCLKSOURCE_SAI1 SAI1 clock selected as DFSDM1 audio clock
  1702. * @arg @ref RCC_DFSDM1AUDIOCLKSOURCE_HSI HSI clock selected as DFSDM1 audio clock
  1703. * @arg @ref RCC_DFSDM1AUDIOCLKSOURCE_MSI MSI clock selected as DFSDM1 audio clock
  1704. * @retval None
  1705. */
  1706. #define __HAL_RCC_DFSDM1AUDIO_CONFIG(__DFSDM1AUDIO_CLKSOURCE__) \
  1707. MODIFY_REG(RCC->CCIPR2, RCC_CCIPR2_ADFSDM1SEL, (__DFSDM1AUDIO_CLKSOURCE__))
  1708. /** @brief Macro to get the DFSDM1 audio clock source.
  1709. * @retval The clock source can be one of the following values:
  1710. * @arg @ref RCC_DFSDM1AUDIOCLKSOURCE_SAI1 SAI1 clock selected as DFSDM1 audio clock
  1711. * @arg @ref RCC_DFSDM1AUDIOCLKSOURCE_HSI HSI clock selected as DFSDM1 audio clock
  1712. * @arg @ref RCC_DFSDM1AUDIOCLKSOURCE_MSI MSI clock selected as DFSDM1 audio clock
  1713. */
  1714. #define __HAL_RCC_GET_DFSDM1AUDIO_SOURCE() (READ_BIT(RCC->CCIPR2, RCC_CCIPR2_ADFSDM1SEL))
  1715. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  1716. #endif /* DFSDM1_Filter0 */
  1717. #if defined(LTDC)
  1718. /** @brief Macro to configure the LTDC clock.
  1719. * @param __LTDC_CLKSOURCE__ specifies the DSI clock source.
  1720. * This parameter can be one of the following values:
  1721. * @arg @ref RCC_LTDCCLKSOURCE_PLLSAI2_DIV2 PLLSAI2 divider R divided by 2 clock selected as LTDC clock
  1722. * @arg @ref RCC_LTDCCLKSOURCE_PLLSAI2_DIV4 PLLSAI2 divider R divided by 4 clock selected as LTDC clock
  1723. * @arg @ref RCC_LTDCCLKSOURCE_PLLSAI2_DIV8 PLLSAI2 divider R divided by 8 clock selected as LTDC clock
  1724. * @arg @ref RCC_LTDCCLKSOURCE_PLLSAI2_DIV16 PLLSAI2 divider R divided by 16 clock selected as LTDC clock
  1725. * @retval None
  1726. */
  1727. #define __HAL_RCC_LTDC_CONFIG(__LTDC_CLKSOURCE__) \
  1728. MODIFY_REG(RCC->CCIPR2, RCC_CCIPR2_PLLSAI2DIVR, (__LTDC_CLKSOURCE__))
  1729. /** @brief Macro to get the LTDC clock source.
  1730. * @retval The clock source can be one of the following values:
  1731. * @arg @ref RCC_LTDCCLKSOURCE_PLLSAI2_DIV2 PLLSAI2 divider R divided by 2 clock selected as LTDC clock
  1732. * @arg @ref RCC_LTDCCLKSOURCE_PLLSAI2_DIV4 PLLSAI2 divider R divided by 4 clock selected as LTDC clock
  1733. * @arg @ref RCC_LTDCCLKSOURCE_PLLSAI2_DIV8 PLLSAI2 divider R divided by 8 clock selected as LTDC clock
  1734. * @arg @ref RCC_LTDCCLKSOURCE_PLLSAI2_DIV16 PLLSAI2 divider R divided by 16 clock selected as LTDC clock
  1735. */
  1736. #define __HAL_RCC_GET_LTDC_SOURCE() (READ_BIT(RCC->CCIPR2, RCC_CCIPR2_PLLSAI2DIVR))
  1737. #endif /* LTDC */
  1738. #if defined(DSI)
  1739. /** @brief Macro to configure the DSI clock.
  1740. * @param __DSI_CLKSOURCE__ specifies the DSI clock source.
  1741. * This parameter can be one of the following values:
  1742. * @arg @ref RCC_DSICLKSOURCE_DSIPHY DSI-PHY clock selected as DSI clock
  1743. * @arg @ref RCC_DSICLKSOURCE_PLLSAI2 PLLSAI2 R divider clock selected as DSI clock
  1744. * @retval None
  1745. */
  1746. #define __HAL_RCC_DSI_CONFIG(__DSI_CLKSOURCE__) \
  1747. MODIFY_REG(RCC->CCIPR2, RCC_CCIPR2_DSISEL, (__DSI_CLKSOURCE__))
  1748. /** @brief Macro to get the DSI clock source.
  1749. * @retval The clock source can be one of the following values:
  1750. * @arg @ref RCC_DSICLKSOURCE_DSIPHY DSI-PHY clock selected as DSI clock
  1751. * @arg @ref RCC_DSICLKSOURCE_PLLSAI2 PLLSAI2 R divider clock selected as DSI clock
  1752. */
  1753. #define __HAL_RCC_GET_DSI_SOURCE() (READ_BIT(RCC->CCIPR2, RCC_CCIPR2_DSISEL))
  1754. #endif /* DSI */
  1755. #if defined(OCTOSPI1) || defined(OCTOSPI2)
  1756. /** @brief Macro to configure the OctoSPI clock.
  1757. * @param __OSPI_CLKSOURCE__ specifies the OctoSPI clock source.
  1758. * This parameter can be one of the following values:
  1759. * @arg @ref RCC_OSPICLKSOURCE_SYSCLK System Clock selected as OctoSPI clock
  1760. * @arg @ref RCC_OSPICLKSOURCE_MSI MSI clock selected as OctoSPI clock
  1761. * @arg @ref RCC_OSPICLKSOURCE_PLL PLL Q divider clock selected as OctoSPI clock
  1762. * @retval None
  1763. */
  1764. #define __HAL_RCC_OSPI_CONFIG(__OSPI_CLKSOURCE__) \
  1765. MODIFY_REG(RCC->CCIPR2, RCC_CCIPR2_OSPISEL, (__OSPI_CLKSOURCE__))
  1766. /** @brief Macro to get the OctoSPI clock source.
  1767. * @retval The clock source can be one of the following values:
  1768. * @arg @ref RCC_OSPICLKSOURCE_SYSCLK System Clock selected as OctoSPI clock
  1769. * @arg @ref RCC_OSPICLKSOURCE_MSI MSI clock selected as OctoSPI clock
  1770. * @arg @ref RCC_OSPICLKSOURCE_PLL PLL Q divider clock selected as OctoSPI clock
  1771. */
  1772. #define __HAL_RCC_GET_OSPI_SOURCE() (READ_BIT(RCC->CCIPR2, RCC_CCIPR2_OSPISEL))
  1773. #endif /* OCTOSPI1 || OCTOSPI2 */
  1774. /** @defgroup RCCEx_Flags_Interrupts_Management Flags Interrupts Management
  1775. * @brief macros to manage the specified RCC Flags and interrupts.
  1776. * @{
  1777. */
  1778. #if defined(RCC_PLLSAI1_SUPPORT)
  1779. /** @brief Enable PLLSAI1RDY interrupt.
  1780. * @retval None
  1781. */
  1782. #define __HAL_RCC_PLLSAI1_ENABLE_IT() SET_BIT(RCC->CIER, RCC_CIER_PLLSAI1RDYIE)
  1783. /** @brief Disable PLLSAI1RDY interrupt.
  1784. * @retval None
  1785. */
  1786. #define __HAL_RCC_PLLSAI1_DISABLE_IT() CLEAR_BIT(RCC->CIER, RCC_CIER_PLLSAI1RDYIE)
  1787. /** @brief Clear the PLLSAI1RDY interrupt pending bit.
  1788. * @retval None
  1789. */
  1790. #define __HAL_RCC_PLLSAI1_CLEAR_IT() WRITE_REG(RCC->CICR, RCC_CICR_PLLSAI1RDYC)
  1791. /** @brief Check whether PLLSAI1RDY interrupt has occurred or not.
  1792. * @retval TRUE or FALSE.
  1793. */
  1794. #define __HAL_RCC_PLLSAI1_GET_IT_SOURCE() (READ_BIT(RCC->CIFR, RCC_CIFR_PLLSAI1RDYF) == RCC_CIFR_PLLSAI1RDYF)
  1795. /** @brief Check whether the PLLSAI1RDY flag is set or not.
  1796. * @retval TRUE or FALSE.
  1797. */
  1798. #define __HAL_RCC_PLLSAI1_GET_FLAG() (READ_BIT(RCC->CR, RCC_CR_PLLSAI1RDY) == (RCC_CR_PLLSAI1RDY))
  1799. #endif /* RCC_PLLSAI1_SUPPORT */
  1800. #if defined(RCC_PLLSAI2_SUPPORT)
  1801. /** @brief Enable PLLSAI2RDY interrupt.
  1802. * @retval None
  1803. */
  1804. #define __HAL_RCC_PLLSAI2_ENABLE_IT() SET_BIT(RCC->CIER, RCC_CIER_PLLSAI2RDYIE)
  1805. /** @brief Disable PLLSAI2RDY interrupt.
  1806. * @retval None
  1807. */
  1808. #define __HAL_RCC_PLLSAI2_DISABLE_IT() CLEAR_BIT(RCC->CIER, RCC_CIER_PLLSAI2RDYIE)
  1809. /** @brief Clear the PLLSAI2RDY interrupt pending bit.
  1810. * @retval None
  1811. */
  1812. #define __HAL_RCC_PLLSAI2_CLEAR_IT() WRITE_REG(RCC->CICR, RCC_CICR_PLLSAI2RDYC)
  1813. /** @brief Check whether the PLLSAI2RDY interrupt has occurred or not.
  1814. * @retval TRUE or FALSE.
  1815. */
  1816. #define __HAL_RCC_PLLSAI2_GET_IT_SOURCE() (READ_BIT(RCC->CIFR, RCC_CIFR_PLLSAI2RDYF) == RCC_CIFR_PLLSAI2RDYF)
  1817. /** @brief Check whether the PLLSAI2RDY flag is set or not.
  1818. * @retval TRUE or FALSE.
  1819. */
  1820. #define __HAL_RCC_PLLSAI2_GET_FLAG() (READ_BIT(RCC->CR, RCC_CR_PLLSAI2RDY) == (RCC_CR_PLLSAI2RDY))
  1821. #endif /* RCC_PLLSAI2_SUPPORT */
  1822. /**
  1823. * @brief Enable the RCC LSE CSS Extended Interrupt Line.
  1824. * @retval None
  1825. */
  1826. #define __HAL_RCC_LSECSS_EXTI_ENABLE_IT() SET_BIT(EXTI->IMR1, RCC_EXTI_LINE_LSECSS)
  1827. /**
  1828. * @brief Disable the RCC LSE CSS Extended Interrupt Line.
  1829. * @retval None
  1830. */
  1831. #define __HAL_RCC_LSECSS_EXTI_DISABLE_IT() CLEAR_BIT(EXTI->IMR1, RCC_EXTI_LINE_LSECSS)
  1832. /**
  1833. * @brief Enable the RCC LSE CSS Event Line.
  1834. * @retval None.
  1835. */
  1836. #define __HAL_RCC_LSECSS_EXTI_ENABLE_EVENT() SET_BIT(EXTI->EMR1, RCC_EXTI_LINE_LSECSS)
  1837. /**
  1838. * @brief Disable the RCC LSE CSS Event Line.
  1839. * @retval None.
  1840. */
  1841. #define __HAL_RCC_LSECSS_EXTI_DISABLE_EVENT() CLEAR_BIT(EXTI->EMR1, RCC_EXTI_LINE_LSECSS)
  1842. /**
  1843. * @brief Enable the RCC LSE CSS Extended Interrupt Falling Trigger.
  1844. * @retval None.
  1845. */
  1846. #define __HAL_RCC_LSECSS_EXTI_ENABLE_FALLING_EDGE() SET_BIT(EXTI->FTSR1, RCC_EXTI_LINE_LSECSS)
  1847. /**
  1848. * @brief Disable the RCC LSE CSS Extended Interrupt Falling Trigger.
  1849. * @retval None.
  1850. */
  1851. #define __HAL_RCC_LSECSS_EXTI_DISABLE_FALLING_EDGE() CLEAR_BIT(EXTI->FTSR1, RCC_EXTI_LINE_LSECSS)
  1852. /**
  1853. * @brief Enable the RCC LSE CSS Extended Interrupt Rising Trigger.
  1854. * @retval None.
  1855. */
  1856. #define __HAL_RCC_LSECSS_EXTI_ENABLE_RISING_EDGE() SET_BIT(EXTI->RTSR1, RCC_EXTI_LINE_LSECSS)
  1857. /**
  1858. * @brief Disable the RCC LSE CSS Extended Interrupt Rising Trigger.
  1859. * @retval None.
  1860. */
  1861. #define __HAL_RCC_LSECSS_EXTI_DISABLE_RISING_EDGE() CLEAR_BIT(EXTI->RTSR1, RCC_EXTI_LINE_LSECSS)
  1862. /**
  1863. * @brief Enable the RCC LSE CSS Extended Interrupt Rising & Falling Trigger.
  1864. * @retval None.
  1865. */
  1866. #define __HAL_RCC_LSECSS_EXTI_ENABLE_RISING_FALLING_EDGE() \
  1867. do { \
  1868. __HAL_RCC_LSECSS_EXTI_ENABLE_RISING_EDGE(); \
  1869. __HAL_RCC_LSECSS_EXTI_ENABLE_FALLING_EDGE(); \
  1870. } while(0)
  1871. /**
  1872. * @brief Disable the RCC LSE CSS Extended Interrupt Rising & Falling Trigger.
  1873. * @retval None.
  1874. */
  1875. #define __HAL_RCC_LSECSS_EXTI_DISABLE_RISING_FALLING_EDGE() \
  1876. do { \
  1877. __HAL_RCC_LSECSS_EXTI_DISABLE_RISING_EDGE(); \
  1878. __HAL_RCC_LSECSS_EXTI_DISABLE_FALLING_EDGE(); \
  1879. } while(0)
  1880. /**
  1881. * @brief Check whether the specified RCC LSE CSS EXTI interrupt flag is set or not.
  1882. * @retval EXTI RCC LSE CSS Line Status.
  1883. */
  1884. #define __HAL_RCC_LSECSS_EXTI_GET_FLAG() (READ_BIT(EXTI->PR1, RCC_EXTI_LINE_LSECSS) == RCC_EXTI_LINE_LSECSS)
  1885. /**
  1886. * @brief Clear the RCC LSE CSS EXTI flag.
  1887. * @retval None.
  1888. */
  1889. #define __HAL_RCC_LSECSS_EXTI_CLEAR_FLAG() WRITE_REG(EXTI->PR1, RCC_EXTI_LINE_LSECSS)
  1890. /**
  1891. * @brief Generate a Software interrupt on the RCC LSE CSS EXTI line.
  1892. * @retval None.
  1893. */
  1894. #define __HAL_RCC_LSECSS_EXTI_GENERATE_SWIT() SET_BIT(EXTI->SWIER1, RCC_EXTI_LINE_LSECSS)
  1895. #if defined(CRS)
  1896. /**
  1897. * @brief Enable the specified CRS interrupts.
  1898. * @param __INTERRUPT__ specifies the CRS interrupt sources to be enabled.
  1899. * This parameter can be any combination of the following values:
  1900. * @arg @ref RCC_CRS_IT_SYNCOK SYNC event OK interrupt
  1901. * @arg @ref RCC_CRS_IT_SYNCWARN SYNC warning interrupt
  1902. * @arg @ref RCC_CRS_IT_ERR Synchronization or trimming error interrupt
  1903. * @arg @ref RCC_CRS_IT_ESYNC Expected SYNC interrupt
  1904. * @retval None
  1905. */
  1906. #define __HAL_RCC_CRS_ENABLE_IT(__INTERRUPT__) SET_BIT(CRS->CR, (__INTERRUPT__))
  1907. /**
  1908. * @brief Disable the specified CRS interrupts.
  1909. * @param __INTERRUPT__ specifies the CRS interrupt sources to be disabled.
  1910. * This parameter can be any combination of the following values:
  1911. * @arg @ref RCC_CRS_IT_SYNCOK SYNC event OK interrupt
  1912. * @arg @ref RCC_CRS_IT_SYNCWARN SYNC warning interrupt
  1913. * @arg @ref RCC_CRS_IT_ERR Synchronization or trimming error interrupt
  1914. * @arg @ref RCC_CRS_IT_ESYNC Expected SYNC interrupt
  1915. * @retval None
  1916. */
  1917. #define __HAL_RCC_CRS_DISABLE_IT(__INTERRUPT__) CLEAR_BIT(CRS->CR, (__INTERRUPT__))
  1918. /** @brief Check whether the CRS interrupt has occurred or not.
  1919. * @param __INTERRUPT__ specifies the CRS interrupt source to check.
  1920. * This parameter can be one of the following values:
  1921. * @arg @ref RCC_CRS_IT_SYNCOK SYNC event OK interrupt
  1922. * @arg @ref RCC_CRS_IT_SYNCWARN SYNC warning interrupt
  1923. * @arg @ref RCC_CRS_IT_ERR Synchronization or trimming error interrupt
  1924. * @arg @ref RCC_CRS_IT_ESYNC Expected SYNC interrupt
  1925. * @retval The new state of __INTERRUPT__ (SET or RESET).
  1926. */
  1927. #define __HAL_RCC_CRS_GET_IT_SOURCE(__INTERRUPT__) ((READ_BIT(CRS->CR, (__INTERRUPT__)) != 0U) ? SET : RESET)
  1928. /** @brief Clear the CRS interrupt pending bits
  1929. * @param __INTERRUPT__ specifies the interrupt pending bit to clear.
  1930. * This parameter can be any combination of the following values:
  1931. * @arg @ref RCC_CRS_IT_SYNCOK SYNC event OK interrupt
  1932. * @arg @ref RCC_CRS_IT_SYNCWARN SYNC warning interrupt
  1933. * @arg @ref RCC_CRS_IT_ERR Synchronization or trimming error interrupt
  1934. * @arg @ref RCC_CRS_IT_ESYNC Expected SYNC interrupt
  1935. * @arg @ref RCC_CRS_IT_TRIMOVF Trimming overflow or underflow interrupt
  1936. * @arg @ref RCC_CRS_IT_SYNCERR SYNC error interrupt
  1937. * @arg @ref RCC_CRS_IT_SYNCMISS SYNC missed interrupt
  1938. */
  1939. /* CRS IT Error Mask */
  1940. #define RCC_CRS_IT_ERROR_MASK (RCC_CRS_IT_TRIMOVF | RCC_CRS_IT_SYNCERR | RCC_CRS_IT_SYNCMISS)
  1941. #define __HAL_RCC_CRS_CLEAR_IT(__INTERRUPT__) do { \
  1942. if(((__INTERRUPT__) & RCC_CRS_IT_ERROR_MASK) != 0U) \
  1943. { \
  1944. WRITE_REG(CRS->ICR, CRS_ICR_ERRC | ((__INTERRUPT__) & ~RCC_CRS_IT_ERROR_MASK)); \
  1945. } \
  1946. else \
  1947. { \
  1948. WRITE_REG(CRS->ICR, (__INTERRUPT__)); \
  1949. } \
  1950. } while(0)
  1951. /**
  1952. * @brief Check whether the specified CRS flag is set or not.
  1953. * @param __FLAG__ specifies the flag to check.
  1954. * This parameter can be one of the following values:
  1955. * @arg @ref RCC_CRS_FLAG_SYNCOK SYNC event OK
  1956. * @arg @ref RCC_CRS_FLAG_SYNCWARN SYNC warning
  1957. * @arg @ref RCC_CRS_FLAG_ERR Error
  1958. * @arg @ref RCC_CRS_FLAG_ESYNC Expected SYNC
  1959. * @arg @ref RCC_CRS_FLAG_TRIMOVF Trimming overflow or underflow
  1960. * @arg @ref RCC_CRS_FLAG_SYNCERR SYNC error
  1961. * @arg @ref RCC_CRS_FLAG_SYNCMISS SYNC missed
  1962. * @retval The new state of _FLAG_ (TRUE or FALSE).
  1963. */
  1964. #define __HAL_RCC_CRS_GET_FLAG(__FLAG__) (READ_BIT(CRS->ISR, (__FLAG__)) == (__FLAG__))
  1965. /**
  1966. * @brief Clear the CRS specified FLAG.
  1967. * @param __FLAG__ specifies the flag to clear.
  1968. * This parameter can be one of the following values:
  1969. * @arg @ref RCC_CRS_FLAG_SYNCOK SYNC event OK
  1970. * @arg @ref RCC_CRS_FLAG_SYNCWARN SYNC warning
  1971. * @arg @ref RCC_CRS_FLAG_ERR Error
  1972. * @arg @ref RCC_CRS_FLAG_ESYNC Expected SYNC
  1973. * @arg @ref RCC_CRS_FLAG_TRIMOVF Trimming overflow or underflow
  1974. * @arg @ref RCC_CRS_FLAG_SYNCERR SYNC error
  1975. * @arg @ref RCC_CRS_FLAG_SYNCMISS SYNC missed
  1976. * @note RCC_CRS_FLAG_ERR clears RCC_CRS_FLAG_TRIMOVF, RCC_CRS_FLAG_SYNCERR, RCC_CRS_FLAG_SYNCMISS and consequently RCC_CRS_FLAG_ERR
  1977. * @retval None
  1978. */
  1979. /* CRS Flag Error Mask */
  1980. #define RCC_CRS_FLAG_ERROR_MASK (RCC_CRS_FLAG_TRIMOVF | RCC_CRS_FLAG_SYNCERR | RCC_CRS_FLAG_SYNCMISS)
  1981. #define __HAL_RCC_CRS_CLEAR_FLAG(__FLAG__) do { \
  1982. if(((__FLAG__) & RCC_CRS_FLAG_ERROR_MASK) != 0U) \
  1983. { \
  1984. WRITE_REG(CRS->ICR, CRS_ICR_ERRC | ((__FLAG__) & ~RCC_CRS_FLAG_ERROR_MASK)); \
  1985. } \
  1986. else \
  1987. { \
  1988. WRITE_REG(CRS->ICR, (__FLAG__)); \
  1989. } \
  1990. } while(0)
  1991. #endif /* CRS */
  1992. /**
  1993. * @}
  1994. */
  1995. #if defined(CRS)
  1996. /** @defgroup RCCEx_CRS_Extended_Features RCCEx CRS Extended Features
  1997. * @{
  1998. */
  1999. /**
  2000. * @brief Enable the oscillator clock for frequency error counter.
  2001. * @note when the CEN bit is set the CRS_CFGR register becomes write-protected.
  2002. * @retval None
  2003. */
  2004. #define __HAL_RCC_CRS_FREQ_ERROR_COUNTER_ENABLE() SET_BIT(CRS->CR, CRS_CR_CEN)
  2005. /**
  2006. * @brief Disable the oscillator clock for frequency error counter.
  2007. * @retval None
  2008. */
  2009. #define __HAL_RCC_CRS_FREQ_ERROR_COUNTER_DISABLE() CLEAR_BIT(CRS->CR, CRS_CR_CEN)
  2010. /**
  2011. * @brief Enable the automatic hardware adjustement of TRIM bits.
  2012. * @note When the AUTOTRIMEN bit is set the CRS_CFGR register becomes write-protected.
  2013. * @retval None
  2014. */
  2015. #define __HAL_RCC_CRS_AUTOMATIC_CALIB_ENABLE() SET_BIT(CRS->CR, CRS_CR_AUTOTRIMEN)
  2016. /**
  2017. * @brief Enable or disable the automatic hardware adjustement of TRIM bits.
  2018. * @retval None
  2019. */
  2020. #define __HAL_RCC_CRS_AUTOMATIC_CALIB_DISABLE() CLEAR_BIT(CRS->CR, CRS_CR_AUTOTRIMEN)
  2021. /**
  2022. * @brief Macro to calculate reload value to be set in CRS register according to target and sync frequencies
  2023. * @note The RELOAD value should be selected according to the ratio between the target frequency and the frequency
  2024. * of the synchronization source after prescaling. It is then decreased by one in order to
  2025. * reach the expected synchronization on the zero value. The formula is the following:
  2026. * RELOAD = (fTARGET / fSYNC) -1
  2027. * @param __FTARGET__ Target frequency (value in Hz)
  2028. * @param __FSYNC__ Synchronization signal frequency (value in Hz)
  2029. * @retval None
  2030. */
  2031. #define __HAL_RCC_CRS_RELOADVALUE_CALCULATE(__FTARGET__, __FSYNC__) (((__FTARGET__) / (__FSYNC__)) - 1U)
  2032. /**
  2033. * @}
  2034. */
  2035. #endif /* CRS */
  2036. /**
  2037. * @}
  2038. */
  2039. /* Exported functions --------------------------------------------------------*/
  2040. /** @addtogroup RCCEx_Exported_Functions
  2041. * @{
  2042. */
  2043. /** @addtogroup RCCEx_Exported_Functions_Group1
  2044. * @{
  2045. */
  2046. HAL_StatusTypeDef HAL_RCCEx_PeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit);
  2047. void HAL_RCCEx_GetPeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit);
  2048. uint32_t HAL_RCCEx_GetPeriphCLKFreq(uint32_t PeriphClk);
  2049. /**
  2050. * @}
  2051. */
  2052. /** @addtogroup RCCEx_Exported_Functions_Group2
  2053. * @{
  2054. */
  2055. #if defined(RCC_PLLSAI1_SUPPORT)
  2056. HAL_StatusTypeDef HAL_RCCEx_EnablePLLSAI1(RCC_PLLSAI1InitTypeDef *PLLSAI1Init);
  2057. HAL_StatusTypeDef HAL_RCCEx_DisablePLLSAI1(void);
  2058. #endif /* RCC_PLLSAI1_SUPPORT */
  2059. #if defined(RCC_PLLSAI2_SUPPORT)
  2060. HAL_StatusTypeDef HAL_RCCEx_EnablePLLSAI2(RCC_PLLSAI2InitTypeDef *PLLSAI2Init);
  2061. HAL_StatusTypeDef HAL_RCCEx_DisablePLLSAI2(void);
  2062. #endif /* RCC_PLLSAI2_SUPPORT */
  2063. void HAL_RCCEx_WakeUpStopCLKConfig(uint32_t WakeUpClk);
  2064. void HAL_RCCEx_StandbyMSIRangeConfig(uint32_t MSIRange);
  2065. void HAL_RCCEx_EnableLSECSS(void);
  2066. void HAL_RCCEx_DisableLSECSS(void);
  2067. void HAL_RCCEx_EnableLSECSS_IT(void);
  2068. void HAL_RCCEx_LSECSS_IRQHandler(void);
  2069. void HAL_RCCEx_LSECSS_Callback(void);
  2070. void HAL_RCCEx_EnableLSCO(uint32_t LSCOSource);
  2071. void HAL_RCCEx_DisableLSCO(void);
  2072. void HAL_RCCEx_EnableMSIPLLMode(void);
  2073. void HAL_RCCEx_DisableMSIPLLMode(void);
  2074. /**
  2075. * @}
  2076. */
  2077. #if defined(CRS)
  2078. /** @addtogroup RCCEx_Exported_Functions_Group3
  2079. * @{
  2080. */
  2081. void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *pInit);
  2082. void HAL_RCCEx_CRSSoftwareSynchronizationGenerate(void);
  2083. void HAL_RCCEx_CRSGetSynchronizationInfo(RCC_CRSSynchroInfoTypeDef *pSynchroInfo);
  2084. uint32_t HAL_RCCEx_CRSWaitSynchronization(uint32_t Timeout);
  2085. void HAL_RCCEx_CRS_IRQHandler(void);
  2086. void HAL_RCCEx_CRS_SyncOkCallback(void);
  2087. void HAL_RCCEx_CRS_SyncWarnCallback(void);
  2088. void HAL_RCCEx_CRS_ExpectedSyncCallback(void);
  2089. void HAL_RCCEx_CRS_ErrorCallback(uint32_t Error);
  2090. /**
  2091. * @}
  2092. */
  2093. #endif /* CRS */
  2094. /**
  2095. * @}
  2096. */
  2097. /* Private macros ------------------------------------------------------------*/
  2098. /** @addtogroup RCCEx_Private_Macros
  2099. * @{
  2100. */
  2101. #define IS_RCC_LSCOSOURCE(__SOURCE__) (((__SOURCE__) == RCC_LSCOSOURCE_LSI) || \
  2102. ((__SOURCE__) == RCC_LSCOSOURCE_LSE))
  2103. #if defined(STM32L412xx) || defined(STM32L422xx)
  2104. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2105. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2106. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2107. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2108. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2109. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2110. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2111. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2112. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2113. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2114. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2115. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2116. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2117. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG))
  2118. #elif defined(STM32L431xx)
  2119. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2120. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2121. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2122. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2123. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2124. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2125. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2126. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2127. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2128. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2129. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2130. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2131. (((__SELECTION__) & RCC_PERIPHCLK_SWPMI1) == RCC_PERIPHCLK_SWPMI1) || \
  2132. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2133. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2134. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1))
  2135. #elif defined(STM32L432xx) || defined(STM32L442xx)
  2136. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2137. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2138. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2139. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2140. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2141. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2142. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2143. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2144. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2145. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2146. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2147. (((__SELECTION__) & RCC_PERIPHCLK_SWPMI1) == RCC_PERIPHCLK_SWPMI1) || \
  2148. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2149. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG))
  2150. #elif defined(STM32L433xx) || defined(STM32L443xx)
  2151. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2152. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2153. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2154. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2155. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2156. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2157. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2158. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2159. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2160. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2161. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2162. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2163. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2164. (((__SELECTION__) & RCC_PERIPHCLK_SWPMI1) == RCC_PERIPHCLK_SWPMI1) || \
  2165. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2166. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2167. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1))
  2168. #elif defined(STM32L451xx)
  2169. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2170. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2171. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2172. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2173. (((__SELECTION__) & RCC_PERIPHCLK_UART4) == RCC_PERIPHCLK_UART4) || \
  2174. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2175. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2176. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2177. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2178. (((__SELECTION__) & RCC_PERIPHCLK_I2C4) == RCC_PERIPHCLK_I2C4) || \
  2179. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2180. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2181. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2182. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2183. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1) == RCC_PERIPHCLK_DFSDM1) || \
  2184. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2185. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2186. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1))
  2187. #elif defined(STM32L452xx) || defined(STM32L462xx)
  2188. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2189. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2190. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2191. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2192. (((__SELECTION__) & RCC_PERIPHCLK_UART4) == RCC_PERIPHCLK_UART4) || \
  2193. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2194. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2195. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2196. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2197. (((__SELECTION__) & RCC_PERIPHCLK_I2C4) == RCC_PERIPHCLK_I2C4) || \
  2198. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2199. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2200. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2201. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2202. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2203. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1) == RCC_PERIPHCLK_DFSDM1) || \
  2204. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2205. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2206. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1))
  2207. #elif defined(STM32L471xx)
  2208. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2209. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2210. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2211. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2212. (((__SELECTION__) & RCC_PERIPHCLK_UART4) == RCC_PERIPHCLK_UART4) || \
  2213. (((__SELECTION__) & RCC_PERIPHCLK_UART5) == RCC_PERIPHCLK_UART5) || \
  2214. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2215. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2216. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2217. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2218. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2219. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2220. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2221. (((__SELECTION__) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) || \
  2222. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2223. (((__SELECTION__) & RCC_PERIPHCLK_SWPMI1) == RCC_PERIPHCLK_SWPMI1) || \
  2224. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1) == RCC_PERIPHCLK_DFSDM1) || \
  2225. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2226. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2227. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1))
  2228. #elif defined(STM32L496xx) || defined(STM32L4A6xx)
  2229. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2230. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2231. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2232. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2233. (((__SELECTION__) & RCC_PERIPHCLK_UART4) == RCC_PERIPHCLK_UART4) || \
  2234. (((__SELECTION__) & RCC_PERIPHCLK_UART5) == RCC_PERIPHCLK_UART5) || \
  2235. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2236. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2237. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2238. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2239. (((__SELECTION__) & RCC_PERIPHCLK_I2C4) == RCC_PERIPHCLK_I2C4) || \
  2240. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2241. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2242. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2243. (((__SELECTION__) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) || \
  2244. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2245. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2246. (((__SELECTION__) & RCC_PERIPHCLK_SWPMI1) == RCC_PERIPHCLK_SWPMI1) || \
  2247. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1) == RCC_PERIPHCLK_DFSDM1) || \
  2248. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2249. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2250. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1))
  2251. #elif defined(STM32L4R5xx) || defined(STM32L4S5xx)
  2252. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2253. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2254. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2255. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2256. (((__SELECTION__) & RCC_PERIPHCLK_UART4) == RCC_PERIPHCLK_UART4) || \
  2257. (((__SELECTION__) & RCC_PERIPHCLK_UART5) == RCC_PERIPHCLK_UART5) || \
  2258. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2259. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2260. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2261. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2262. (((__SELECTION__) & RCC_PERIPHCLK_I2C4) == RCC_PERIPHCLK_I2C4) || \
  2263. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2264. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2265. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2266. (((__SELECTION__) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) || \
  2267. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2268. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2269. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1) == RCC_PERIPHCLK_DFSDM1) || \
  2270. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1AUDIO) == RCC_PERIPHCLK_DFSDM1AUDIO) || \
  2271. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2272. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2273. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1) || \
  2274. (((__SELECTION__) & RCC_PERIPHCLK_OSPI) == RCC_PERIPHCLK_OSPI))
  2275. #elif defined(STM32L4R7xx) || defined(STM32L4S7xx)
  2276. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2277. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2278. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2279. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2280. (((__SELECTION__) & RCC_PERIPHCLK_UART4) == RCC_PERIPHCLK_UART4) || \
  2281. (((__SELECTION__) & RCC_PERIPHCLK_UART5) == RCC_PERIPHCLK_UART5) || \
  2282. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2283. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2284. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2285. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2286. (((__SELECTION__) & RCC_PERIPHCLK_I2C4) == RCC_PERIPHCLK_I2C4) || \
  2287. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2288. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2289. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2290. (((__SELECTION__) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) || \
  2291. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2292. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2293. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1) == RCC_PERIPHCLK_DFSDM1) || \
  2294. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1AUDIO) == RCC_PERIPHCLK_DFSDM1AUDIO) || \
  2295. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2296. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2297. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1) || \
  2298. (((__SELECTION__) & RCC_PERIPHCLK_OSPI) == RCC_PERIPHCLK_OSPI) || \
  2299. (((__SELECTION__) & RCC_PERIPHCLK_LTDC) == RCC_PERIPHCLK_LTDC))
  2300. #elif defined(STM32L4R9xx) || defined(STM32L4S9xx)
  2301. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2302. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2303. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2304. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2305. (((__SELECTION__) & RCC_PERIPHCLK_UART4) == RCC_PERIPHCLK_UART4) || \
  2306. (((__SELECTION__) & RCC_PERIPHCLK_UART5) == RCC_PERIPHCLK_UART5) || \
  2307. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2308. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2309. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2310. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2311. (((__SELECTION__) & RCC_PERIPHCLK_I2C4) == RCC_PERIPHCLK_I2C4) || \
  2312. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2313. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2314. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2315. (((__SELECTION__) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) || \
  2316. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2317. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2318. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1) == RCC_PERIPHCLK_DFSDM1) || \
  2319. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1AUDIO) == RCC_PERIPHCLK_DFSDM1AUDIO) || \
  2320. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2321. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2322. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1) || \
  2323. (((__SELECTION__) & RCC_PERIPHCLK_OSPI) == RCC_PERIPHCLK_OSPI) || \
  2324. (((__SELECTION__) & RCC_PERIPHCLK_LTDC) == RCC_PERIPHCLK_LTDC) || \
  2325. (((__SELECTION__) & RCC_PERIPHCLK_DSI) == RCC_PERIPHCLK_DSI))
  2326. #else
  2327. #define IS_RCC_PERIPHCLOCK(__SELECTION__) \
  2328. ((((__SELECTION__) & RCC_PERIPHCLK_USART1) == RCC_PERIPHCLK_USART1) || \
  2329. (((__SELECTION__) & RCC_PERIPHCLK_USART2) == RCC_PERIPHCLK_USART2) || \
  2330. (((__SELECTION__) & RCC_PERIPHCLK_USART3) == RCC_PERIPHCLK_USART3) || \
  2331. (((__SELECTION__) & RCC_PERIPHCLK_UART4) == RCC_PERIPHCLK_UART4) || \
  2332. (((__SELECTION__) & RCC_PERIPHCLK_UART5) == RCC_PERIPHCLK_UART5) || \
  2333. (((__SELECTION__) & RCC_PERIPHCLK_LPUART1) == RCC_PERIPHCLK_LPUART1) || \
  2334. (((__SELECTION__) & RCC_PERIPHCLK_I2C1) == RCC_PERIPHCLK_I2C1) || \
  2335. (((__SELECTION__) & RCC_PERIPHCLK_I2C2) == RCC_PERIPHCLK_I2C2) || \
  2336. (((__SELECTION__) & RCC_PERIPHCLK_I2C3) == RCC_PERIPHCLK_I2C3) || \
  2337. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM1) == RCC_PERIPHCLK_LPTIM1) || \
  2338. (((__SELECTION__) & RCC_PERIPHCLK_LPTIM2) == RCC_PERIPHCLK_LPTIM2) || \
  2339. (((__SELECTION__) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) || \
  2340. (((__SELECTION__) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) || \
  2341. (((__SELECTION__) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) || \
  2342. (((__SELECTION__) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) || \
  2343. (((__SELECTION__) & RCC_PERIPHCLK_SWPMI1) == RCC_PERIPHCLK_SWPMI1) || \
  2344. (((__SELECTION__) & RCC_PERIPHCLK_DFSDM1) == RCC_PERIPHCLK_DFSDM1) || \
  2345. (((__SELECTION__) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC) || \
  2346. (((__SELECTION__) & RCC_PERIPHCLK_RNG) == RCC_PERIPHCLK_RNG) || \
  2347. (((__SELECTION__) & RCC_PERIPHCLK_SDMMC1) == RCC_PERIPHCLK_SDMMC1))
  2348. #endif /* STM32L412xx || STM32L422xx */
  2349. #define IS_RCC_USART1CLKSOURCE(__SOURCE__) \
  2350. (((__SOURCE__) == RCC_USART1CLKSOURCE_PCLK2) || \
  2351. ((__SOURCE__) == RCC_USART1CLKSOURCE_SYSCLK) || \
  2352. ((__SOURCE__) == RCC_USART1CLKSOURCE_LSE) || \
  2353. ((__SOURCE__) == RCC_USART1CLKSOURCE_HSI))
  2354. #define IS_RCC_USART2CLKSOURCE(__SOURCE__) \
  2355. (((__SOURCE__) == RCC_USART2CLKSOURCE_PCLK1) || \
  2356. ((__SOURCE__) == RCC_USART2CLKSOURCE_SYSCLK) || \
  2357. ((__SOURCE__) == RCC_USART2CLKSOURCE_LSE) || \
  2358. ((__SOURCE__) == RCC_USART2CLKSOURCE_HSI))
  2359. #if defined(USART3)
  2360. #define IS_RCC_USART3CLKSOURCE(__SOURCE__) \
  2361. (((__SOURCE__) == RCC_USART3CLKSOURCE_PCLK1) || \
  2362. ((__SOURCE__) == RCC_USART3CLKSOURCE_SYSCLK) || \
  2363. ((__SOURCE__) == RCC_USART3CLKSOURCE_LSE) || \
  2364. ((__SOURCE__) == RCC_USART3CLKSOURCE_HSI))
  2365. #endif /* USART3 */
  2366. #if defined(UART4)
  2367. #define IS_RCC_UART4CLKSOURCE(__SOURCE__) \
  2368. (((__SOURCE__) == RCC_UART4CLKSOURCE_PCLK1) || \
  2369. ((__SOURCE__) == RCC_UART4CLKSOURCE_SYSCLK) || \
  2370. ((__SOURCE__) == RCC_UART4CLKSOURCE_LSE) || \
  2371. ((__SOURCE__) == RCC_UART4CLKSOURCE_HSI))
  2372. #endif /* UART4 */
  2373. #if defined(UART5)
  2374. #define IS_RCC_UART5CLKSOURCE(__SOURCE__) \
  2375. (((__SOURCE__) == RCC_UART5CLKSOURCE_PCLK1) || \
  2376. ((__SOURCE__) == RCC_UART5CLKSOURCE_SYSCLK) || \
  2377. ((__SOURCE__) == RCC_UART5CLKSOURCE_LSE) || \
  2378. ((__SOURCE__) == RCC_UART5CLKSOURCE_HSI))
  2379. #endif /* UART5 */
  2380. #define IS_RCC_LPUART1CLKSOURCE(__SOURCE__) \
  2381. (((__SOURCE__) == RCC_LPUART1CLKSOURCE_PCLK1) || \
  2382. ((__SOURCE__) == RCC_LPUART1CLKSOURCE_SYSCLK) || \
  2383. ((__SOURCE__) == RCC_LPUART1CLKSOURCE_LSE) || \
  2384. ((__SOURCE__) == RCC_LPUART1CLKSOURCE_HSI))
  2385. #define IS_RCC_I2C1CLKSOURCE(__SOURCE__) \
  2386. (((__SOURCE__) == RCC_I2C1CLKSOURCE_PCLK1) || \
  2387. ((__SOURCE__) == RCC_I2C1CLKSOURCE_SYSCLK)|| \
  2388. ((__SOURCE__) == RCC_I2C1CLKSOURCE_HSI))
  2389. #if defined(I2C2)
  2390. #define IS_RCC_I2C2CLKSOURCE(__SOURCE__) \
  2391. (((__SOURCE__) == RCC_I2C2CLKSOURCE_PCLK1) || \
  2392. ((__SOURCE__) == RCC_I2C2CLKSOURCE_SYSCLK)|| \
  2393. ((__SOURCE__) == RCC_I2C2CLKSOURCE_HSI))
  2394. #endif /* I2C2 */
  2395. #define IS_RCC_I2C3CLKSOURCE(__SOURCE__) \
  2396. (((__SOURCE__) == RCC_I2C3CLKSOURCE_PCLK1) || \
  2397. ((__SOURCE__) == RCC_I2C3CLKSOURCE_SYSCLK)|| \
  2398. ((__SOURCE__) == RCC_I2C3CLKSOURCE_HSI))
  2399. #if defined(I2C4)
  2400. #define IS_RCC_I2C4CLKSOURCE(__SOURCE__) \
  2401. (((__SOURCE__) == RCC_I2C4CLKSOURCE_PCLK1) || \
  2402. ((__SOURCE__) == RCC_I2C4CLKSOURCE_SYSCLK)|| \
  2403. ((__SOURCE__) == RCC_I2C4CLKSOURCE_HSI))
  2404. #endif /* I2C4 */
  2405. #if defined(RCC_PLLSAI2_SUPPORT)
  2406. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  2407. #define IS_RCC_SAI1CLK(__SOURCE__) \
  2408. (((__SOURCE__) == RCC_SAI1CLKSOURCE_PLLSAI1) || \
  2409. ((__SOURCE__) == RCC_SAI1CLKSOURCE_PLLSAI2) || \
  2410. ((__SOURCE__) == RCC_SAI1CLKSOURCE_PLL) || \
  2411. ((__SOURCE__) == RCC_SAI1CLKSOURCE_PIN) || \
  2412. ((__SOURCE__) == RCC_SAI1CLKSOURCE_HSI))
  2413. #else
  2414. #define IS_RCC_SAI1CLK(__SOURCE__) \
  2415. (((__SOURCE__) == RCC_SAI1CLKSOURCE_PLLSAI1) || \
  2416. ((__SOURCE__) == RCC_SAI1CLKSOURCE_PLLSAI2) || \
  2417. ((__SOURCE__) == RCC_SAI1CLKSOURCE_PLL) || \
  2418. ((__SOURCE__) == RCC_SAI1CLKSOURCE_PIN))
  2419. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  2420. #elif defined(RCC_PLLSAI1_SUPPORT)
  2421. #define IS_RCC_SAI1CLK(__SOURCE__) \
  2422. (((__SOURCE__) == RCC_SAI1CLKSOURCE_PLLSAI1) || \
  2423. ((__SOURCE__) == RCC_SAI1CLKSOURCE_PLL) || \
  2424. ((__SOURCE__) == RCC_SAI1CLKSOURCE_PIN))
  2425. #endif /* RCC_PLLSAI2_SUPPORT */
  2426. #if defined(RCC_PLLSAI2_SUPPORT)
  2427. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  2428. #define IS_RCC_SAI2CLK(__SOURCE__) \
  2429. (((__SOURCE__) == RCC_SAI2CLKSOURCE_PLLSAI1) || \
  2430. ((__SOURCE__) == RCC_SAI2CLKSOURCE_PLLSAI2) || \
  2431. ((__SOURCE__) == RCC_SAI2CLKSOURCE_PLL) || \
  2432. ((__SOURCE__) == RCC_SAI2CLKSOURCE_PIN) || \
  2433. ((__SOURCE__) == RCC_SAI2CLKSOURCE_HSI))
  2434. #else
  2435. #define IS_RCC_SAI2CLK(__SOURCE__) \
  2436. (((__SOURCE__) == RCC_SAI2CLKSOURCE_PLLSAI1) || \
  2437. ((__SOURCE__) == RCC_SAI2CLKSOURCE_PLLSAI2) || \
  2438. ((__SOURCE__) == RCC_SAI2CLKSOURCE_PLL) || \
  2439. ((__SOURCE__) == RCC_SAI2CLKSOURCE_PIN))
  2440. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  2441. #endif /* RCC_PLLSAI2_SUPPORT */
  2442. #define IS_RCC_LPTIM1CLK(__SOURCE__) \
  2443. (((__SOURCE__) == RCC_LPTIM1CLKSOURCE_PCLK1) || \
  2444. ((__SOURCE__) == RCC_LPTIM1CLKSOURCE_LSI) || \
  2445. ((__SOURCE__) == RCC_LPTIM1CLKSOURCE_HSI) || \
  2446. ((__SOURCE__) == RCC_LPTIM1CLKSOURCE_LSE))
  2447. #define IS_RCC_LPTIM2CLK(__SOURCE__) \
  2448. (((__SOURCE__) == RCC_LPTIM2CLKSOURCE_PCLK1) || \
  2449. ((__SOURCE__) == RCC_LPTIM2CLKSOURCE_LSI) || \
  2450. ((__SOURCE__) == RCC_LPTIM2CLKSOURCE_HSI) || \
  2451. ((__SOURCE__) == RCC_LPTIM2CLKSOURCE_LSE))
  2452. #if defined(SDMMC1)
  2453. #if defined(RCC_HSI48_SUPPORT) && defined(RCC_CCIPR2_SDMMCSEL)
  2454. #define IS_RCC_SDMMC1CLKSOURCE(__SOURCE__) \
  2455. (((__SOURCE__) == RCC_SDMMC1CLKSOURCE_PLLP) || \
  2456. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_HSI48) || \
  2457. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_PLLSAI1) || \
  2458. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_PLL) || \
  2459. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_MSI))
  2460. #elif defined(RCC_HSI48_SUPPORT)
  2461. #define IS_RCC_SDMMC1CLKSOURCE(__SOURCE__) \
  2462. (((__SOURCE__) == RCC_SDMMC1CLKSOURCE_HSI48) || \
  2463. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_PLLSAI1) || \
  2464. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_PLL) || \
  2465. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_MSI))
  2466. #else
  2467. #define IS_RCC_SDMMC1CLKSOURCE(__SOURCE__) \
  2468. (((__SOURCE__) == RCC_SDMMC1CLKSOURCE_NONE) || \
  2469. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_PLLSAI1) || \
  2470. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_PLL) || \
  2471. ((__SOURCE__) == RCC_SDMMC1CLKSOURCE_MSI))
  2472. #endif /* RCC_HSI48_SUPPORT */
  2473. #endif /* SDMMC1 */
  2474. #if defined(RCC_HSI48_SUPPORT)
  2475. #if defined(RCC_PLLSAI1_SUPPORT)
  2476. #define IS_RCC_RNGCLKSOURCE(__SOURCE__) \
  2477. (((__SOURCE__) == RCC_RNGCLKSOURCE_HSI48) || \
  2478. ((__SOURCE__) == RCC_RNGCLKSOURCE_PLLSAI1) || \
  2479. ((__SOURCE__) == RCC_RNGCLKSOURCE_PLL) || \
  2480. ((__SOURCE__) == RCC_RNGCLKSOURCE_MSI))
  2481. #else
  2482. #define IS_RCC_RNGCLKSOURCE(__SOURCE__) \
  2483. (((__SOURCE__) == RCC_RNGCLKSOURCE_HSI48) || \
  2484. ((__SOURCE__) == RCC_RNGCLKSOURCE_PLL) || \
  2485. ((__SOURCE__) == RCC_RNGCLKSOURCE_MSI))
  2486. #endif /* RCC_PLLSAI1_SUPPORT */
  2487. #else
  2488. #define IS_RCC_RNGCLKSOURCE(__SOURCE__) \
  2489. (((__SOURCE__) == RCC_RNGCLKSOURCE_NONE) || \
  2490. ((__SOURCE__) == RCC_RNGCLKSOURCE_PLLSAI1) || \
  2491. ((__SOURCE__) == RCC_RNGCLKSOURCE_PLL) || \
  2492. ((__SOURCE__) == RCC_RNGCLKSOURCE_MSI))
  2493. #endif /* RCC_HSI48_SUPPORT */
  2494. #if defined(USB_OTG_FS) || defined(USB)
  2495. #if defined(RCC_HSI48_SUPPORT)
  2496. #if defined(RCC_PLLSAI1_SUPPORT)
  2497. #define IS_RCC_USBCLKSOURCE(__SOURCE__) \
  2498. (((__SOURCE__) == RCC_USBCLKSOURCE_HSI48) || \
  2499. ((__SOURCE__) == RCC_USBCLKSOURCE_PLLSAI1) || \
  2500. ((__SOURCE__) == RCC_USBCLKSOURCE_PLL) || \
  2501. ((__SOURCE__) == RCC_USBCLKSOURCE_MSI))
  2502. #else
  2503. #define IS_RCC_USBCLKSOURCE(__SOURCE__) \
  2504. (((__SOURCE__) == RCC_USBCLKSOURCE_HSI48) || \
  2505. ((__SOURCE__) == RCC_USBCLKSOURCE_PLL) || \
  2506. ((__SOURCE__) == RCC_USBCLKSOURCE_MSI))
  2507. #endif /* RCC_PLLSAI1_SUPPORT */
  2508. #else
  2509. #define IS_RCC_USBCLKSOURCE(__SOURCE__) \
  2510. (((__SOURCE__) == RCC_USBCLKSOURCE_NONE) || \
  2511. ((__SOURCE__) == RCC_USBCLKSOURCE_PLLSAI1) || \
  2512. ((__SOURCE__) == RCC_USBCLKSOURCE_PLL) || \
  2513. ((__SOURCE__) == RCC_USBCLKSOURCE_MSI))
  2514. #endif /* RCC_HSI48_SUPPORT */
  2515. #endif /* USB_OTG_FS || USB */
  2516. #if defined(STM32L471xx) || defined(STM32L475xx) || defined(STM32L476xx) || defined(STM32L485xx) || defined(STM32L486xx) || defined(STM32L496xx) || defined(STM32L4A6xx)
  2517. #define IS_RCC_ADCCLKSOURCE(__SOURCE__) \
  2518. (((__SOURCE__) == RCC_ADCCLKSOURCE_NONE) || \
  2519. ((__SOURCE__) == RCC_ADCCLKSOURCE_PLLSAI1) || \
  2520. ((__SOURCE__) == RCC_ADCCLKSOURCE_PLLSAI2) || \
  2521. ((__SOURCE__) == RCC_ADCCLKSOURCE_SYSCLK))
  2522. #else
  2523. #if defined(RCC_PLLSAI1_SUPPORT)
  2524. #define IS_RCC_ADCCLKSOURCE(__SOURCE__) \
  2525. (((__SOURCE__) == RCC_ADCCLKSOURCE_NONE) || \
  2526. ((__SOURCE__) == RCC_ADCCLKSOURCE_PLLSAI1) || \
  2527. ((__SOURCE__) == RCC_ADCCLKSOURCE_SYSCLK))
  2528. #else
  2529. #define IS_RCC_ADCCLKSOURCE(__SOURCE__) \
  2530. (((__SOURCE__) == RCC_ADCCLKSOURCE_NONE) || \
  2531. ((__SOURCE__) == RCC_ADCCLKSOURCE_SYSCLK))
  2532. #endif /* RCC_PLLSAI1_SUPPORT */
  2533. #endif /* STM32L471xx || STM32L475xx || STM32L476xx || STM32L485xx || STM32L486xx || STM32L496xx || STM32L4A6xx */
  2534. #if defined(SWPMI1)
  2535. #define IS_RCC_SWPMI1CLKSOURCE(__SOURCE__) \
  2536. (((__SOURCE__) == RCC_SWPMI1CLKSOURCE_PCLK1) || \
  2537. ((__SOURCE__) == RCC_SWPMI1CLKSOURCE_HSI))
  2538. #endif /* SWPMI1 */
  2539. #if defined(DFSDM1_Filter0)
  2540. #define IS_RCC_DFSDM1CLKSOURCE(__SOURCE__) \
  2541. (((__SOURCE__) == RCC_DFSDM1CLKSOURCE_PCLK2) || \
  2542. ((__SOURCE__) == RCC_DFSDM1CLKSOURCE_SYSCLK))
  2543. #if defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  2544. #define IS_RCC_DFSDM1AUDIOCLKSOURCE(__SOURCE__) \
  2545. (((__SOURCE__) == RCC_DFSDM1AUDIOCLKSOURCE_SAI1) || \
  2546. ((__SOURCE__) == RCC_DFSDM1AUDIOCLKSOURCE_HSI) || \
  2547. ((__SOURCE__) == RCC_DFSDM1AUDIOCLKSOURCE_MSI))
  2548. #endif /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  2549. #endif /* DFSDM1_Filter0 */
  2550. #if defined(LTDC)
  2551. #define IS_RCC_LTDCCLKSOURCE(__SOURCE__) \
  2552. (((__SOURCE__) == RCC_LTDCCLKSOURCE_PLLSAI2_DIV2) || \
  2553. ((__SOURCE__) == RCC_LTDCCLKSOURCE_PLLSAI2_DIV4) || \
  2554. ((__SOURCE__) == RCC_LTDCCLKSOURCE_PLLSAI2_DIV8) || \
  2555. ((__SOURCE__) == RCC_LTDCCLKSOURCE_PLLSAI2_DIV16))
  2556. #endif /* LTDC */
  2557. #if defined(DSI)
  2558. #define IS_RCC_DSICLKSOURCE(__SOURCE__) \
  2559. (((__SOURCE__) == RCC_DSICLKSOURCE_DSIPHY) || \
  2560. ((__SOURCE__) == RCC_DSICLKSOURCE_PLLSAI2))
  2561. #endif /* DSI */
  2562. #if defined(OCTOSPI1) || defined(OCTOSPI2)
  2563. #define IS_RCC_OSPICLKSOURCE(__SOURCE__) \
  2564. (((__SOURCE__) == RCC_OSPICLKSOURCE_SYSCLK) || \
  2565. ((__SOURCE__) == RCC_OSPICLKSOURCE_MSI) || \
  2566. ((__SOURCE__) == RCC_OSPICLKSOURCE_PLL))
  2567. #endif /* OCTOSPI1 || OCTOSPI2 */
  2568. #if defined(RCC_PLLSAI1_SUPPORT)
  2569. #define IS_RCC_PLLSAI1SOURCE(__VALUE__) IS_RCC_PLLSOURCE(__VALUE__)
  2570. #if defined(RCC_PLLSAI1M_DIV_1_16_SUPPORT)
  2571. #define IS_RCC_PLLSAI1M_VALUE(__VALUE__) ((1U <= (__VALUE__)) && ((__VALUE__) <= 16U))
  2572. #else
  2573. #define IS_RCC_PLLSAI1M_VALUE(__VALUE__) ((1U <= (__VALUE__)) && ((__VALUE__) <= 8U))
  2574. #endif /* RCC_PLLSAI1M_DIV_1_16_SUPPORT */
  2575. #define IS_RCC_PLLSAI1N_VALUE(__VALUE__) ((8U <= (__VALUE__)) && ((__VALUE__) <= 86U))
  2576. #if defined(RCC_PLLSAI1P_DIV_2_31_SUPPORT)
  2577. #define IS_RCC_PLLSAI1P_VALUE(__VALUE__) (((__VALUE__) >= 2U) && ((__VALUE__) <= 31U))
  2578. #else
  2579. #define IS_RCC_PLLSAI1P_VALUE(__VALUE__) (((__VALUE__) == 7U) || ((__VALUE__) == 17U))
  2580. #endif /* RCC_PLLSAI1P_DIV_2_31_SUPPORT */
  2581. #define IS_RCC_PLLSAI1Q_VALUE(__VALUE__) (((__VALUE__) == 2U) || ((__VALUE__) == 4U) || \
  2582. ((__VALUE__) == 6U) || ((__VALUE__) == 8U))
  2583. #define IS_RCC_PLLSAI1R_VALUE(__VALUE__) (((__VALUE__) == 2U) || ((__VALUE__) == 4U) || \
  2584. ((__VALUE__) == 6U) || ((__VALUE__) == 8U))
  2585. #endif /* RCC_PLLSAI1_SUPPORT */
  2586. #if defined(RCC_PLLSAI2_SUPPORT)
  2587. #define IS_RCC_PLLSAI2SOURCE(__VALUE__) IS_RCC_PLLSOURCE(__VALUE__)
  2588. #if defined(RCC_PLLSAI2M_DIV_1_16_SUPPORT)
  2589. #define IS_RCC_PLLSAI2M_VALUE(__VALUE__) ((1U <= (__VALUE__)) && ((__VALUE__) <= 16U))
  2590. #else
  2591. #define IS_RCC_PLLSAI2M_VALUE(__VALUE__) ((1U <= (__VALUE__)) && ((__VALUE__) <= 8U))
  2592. #endif /* RCC_PLLSAI2M_DIV_1_16_SUPPORT */
  2593. #define IS_RCC_PLLSAI2N_VALUE(__VALUE__) ((8U <= (__VALUE__)) && ((__VALUE__) <= 86U))
  2594. #if defined(RCC_PLLSAI2P_DIV_2_31_SUPPORT)
  2595. #define IS_RCC_PLLSAI2P_VALUE(__VALUE__) (((__VALUE__) >= 2U) && ((__VALUE__) <= 31U))
  2596. #else
  2597. #define IS_RCC_PLLSAI2P_VALUE(__VALUE__) (((__VALUE__) == 7U) || ((__VALUE__) == 17U))
  2598. #endif /* RCC_PLLSAI2P_DIV_2_31_SUPPORT */
  2599. #if defined(RCC_PLLSAI2Q_DIV_SUPPORT)
  2600. #define IS_RCC_PLLSAI2Q_VALUE(__VALUE__) (((__VALUE__) == 2U) || ((__VALUE__) == 4U) || \
  2601. ((__VALUE__) == 6U) || ((__VALUE__) == 8U))
  2602. #endif /* RCC_PLLSAI2Q_DIV_SUPPORT */
  2603. #define IS_RCC_PLLSAI2R_VALUE(__VALUE__) (((__VALUE__) == 2U) || ((__VALUE__) == 4U) || \
  2604. ((__VALUE__) == 6U) || ((__VALUE__) == 8U))
  2605. #endif /* RCC_PLLSAI2_SUPPORT */
  2606. #if defined(CRS)
  2607. #define IS_RCC_CRS_SYNC_SOURCE(__SOURCE__) (((__SOURCE__) == RCC_CRS_SYNC_SOURCE_GPIO) || \
  2608. ((__SOURCE__) == RCC_CRS_SYNC_SOURCE_LSE) || \
  2609. ((__SOURCE__) == RCC_CRS_SYNC_SOURCE_USB))
  2610. #define IS_RCC_CRS_SYNC_DIV(__DIV__) (((__DIV__) == RCC_CRS_SYNC_DIV1) || ((__DIV__) == RCC_CRS_SYNC_DIV2) || \
  2611. ((__DIV__) == RCC_CRS_SYNC_DIV4) || ((__DIV__) == RCC_CRS_SYNC_DIV8) || \
  2612. ((__DIV__) == RCC_CRS_SYNC_DIV16) || ((__DIV__) == RCC_CRS_SYNC_DIV32) || \
  2613. ((__DIV__) == RCC_CRS_SYNC_DIV64) || ((__DIV__) == RCC_CRS_SYNC_DIV128))
  2614. #define IS_RCC_CRS_SYNC_POLARITY(__POLARITY__) (((__POLARITY__) == RCC_CRS_SYNC_POLARITY_RISING) || \
  2615. ((__POLARITY__) == RCC_CRS_SYNC_POLARITY_FALLING))
  2616. #define IS_RCC_CRS_RELOADVALUE(__VALUE__) (((__VALUE__) <= 0xFFFFU))
  2617. #define IS_RCC_CRS_ERRORLIMIT(__VALUE__) (((__VALUE__) <= 0xFFU))
  2618. #define IS_RCC_CRS_HSI48CALIBRATION(__VALUE__) (((__VALUE__) <= 0x3FU))
  2619. #define IS_RCC_CRS_FREQERRORDIR(__DIR__) (((__DIR__) == RCC_CRS_FREQERRORDIR_UP) || \
  2620. ((__DIR__) == RCC_CRS_FREQERRORDIR_DOWN))
  2621. #endif /* CRS */
  2622. /**
  2623. * @}
  2624. */
  2625. /**
  2626. * @}
  2627. */
  2628. /**
  2629. * @}
  2630. */
  2631. #ifdef __cplusplus
  2632. }
  2633. #endif
  2634. #endif /* __STM32L4xx_HAL_RCC_EX_H */
  2635. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/