core_cm0plus.h 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103
  1. /*
  2. * Copyright (c) 2009-2024 Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the License); you may
  7. * not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  14. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. /*
  19. * CMSIS Cortex-M0+ Core Peripheral Access Layer Header File
  20. */
  21. #if defined ( __ICCARM__ )
  22. #pragma system_include /* treat file as system include file for MISRA check */
  23. #elif defined (__clang__)
  24. #pragma clang system_header /* treat file as system include file */
  25. #elif defined ( __GNUC__ )
  26. #pragma GCC diagnostic ignored "-Wpedantic" /* disable pedantic warning due to unnamed structs/unions */
  27. #endif
  28. #ifndef __CORE_CM0PLUS_H_GENERIC
  29. #define __CORE_CM0PLUS_H_GENERIC
  30. #include <stdint.h>
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /**
  35. \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions
  36. CMSIS violates the following MISRA-C:2004 rules:
  37. \li Required Rule 8.5, object/function definition in header file.<br>
  38. Function definitions in header files are used to allow 'inlining'.
  39. \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.<br>
  40. Unions are used for effective representation of core registers.
  41. \li Advisory Rule 19.7, Function-like macro defined.<br>
  42. Function-like macros are used to allow more efficient code.
  43. */
  44. /*******************************************************************************
  45. * CMSIS definitions
  46. ******************************************************************************/
  47. /**
  48. \ingroup Cortex-M0+
  49. @{
  50. */
  51. #include "cmsis_version.h"
  52. /* CMSIS CM0+ definitions */
  53. #define __CORTEX_M (0U) /*!< Cortex-M Core */
  54. /** __FPU_USED indicates whether an FPU is used or not.
  55. This core does not support an FPU at all
  56. */
  57. #define __FPU_USED 0U
  58. #if defined ( __CC_ARM )
  59. #if defined (__TARGET_FPU_VFP)
  60. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  61. #endif
  62. #elif defined (__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
  63. #if defined (__ARM_FP)
  64. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  65. #endif
  66. #elif defined (__ti__)
  67. #if defined (__ARM_FP)
  68. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  69. #endif
  70. #elif defined ( __GNUC__ )
  71. #if defined (__VFP_FP__) && !defined(__SOFTFP__)
  72. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  73. #endif
  74. #elif defined ( __ICCARM__ )
  75. #if defined (__ARMVFP__)
  76. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  77. #endif
  78. #elif defined ( __TI_ARM__ )
  79. #if defined (__TI_VFP_SUPPORT__)
  80. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  81. #endif
  82. #elif defined ( __TASKING__ )
  83. #if defined (__FPU_VFP__)
  84. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  85. #endif
  86. #elif defined ( __CSMC__ )
  87. #if ( __CSMC__ & 0x400U)
  88. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  89. #endif
  90. #endif
  91. #include "cmsis_compiler.h" /* CMSIS compiler specific defines */
  92. #ifdef __cplusplus
  93. }
  94. #endif
  95. #endif /* __CORE_CM0PLUS_H_GENERIC */
  96. #ifndef __CMSIS_GENERIC
  97. #ifndef __CORE_CM0PLUS_H_DEPENDANT
  98. #define __CORE_CM0PLUS_H_DEPENDANT
  99. #ifdef __cplusplus
  100. extern "C" {
  101. #endif
  102. /* check device defines and use defaults */
  103. #if defined __CHECK_DEVICE_DEFINES
  104. #ifndef __CM0PLUS_REV
  105. #define __CM0PLUS_REV 0x0000U
  106. #warning "__CM0PLUS_REV not defined in device header file; using default!"
  107. #endif
  108. #ifndef __MPU_PRESENT
  109. #define __MPU_PRESENT 0U
  110. #warning "__MPU_PRESENT not defined in device header file; using default!"
  111. #endif
  112. #ifndef __VTOR_PRESENT
  113. #define __VTOR_PRESENT 0U
  114. #warning "__VTOR_PRESENT not defined in device header file; using default!"
  115. #endif
  116. #ifndef __NVIC_PRIO_BITS
  117. #define __NVIC_PRIO_BITS 2U
  118. #warning "__NVIC_PRIO_BITS not defined in device header file; using default!"
  119. #endif
  120. #ifndef __Vendor_SysTickConfig
  121. #define __Vendor_SysTickConfig 0U
  122. #warning "__Vendor_SysTickConfig not defined in device header file; using default!"
  123. #endif
  124. #endif
  125. /* IO definitions (access restrictions to peripheral registers) */
  126. /**
  127. \defgroup CMSIS_glob_defs CMSIS Global Defines
  128. <strong>IO Type Qualifiers</strong> are used
  129. \li to specify the access to peripheral variables.
  130. \li for automatic generation of peripheral register debug information.
  131. */
  132. #ifdef __cplusplus
  133. #define __I volatile /*!< Defines 'read only' permissions */
  134. #else
  135. #define __I volatile const /*!< Defines 'read only' permissions */
  136. #endif
  137. #define __O volatile /*!< Defines 'write only' permissions */
  138. #define __IO volatile /*!< Defines 'read / write' permissions */
  139. /* following defines should be used for structure members */
  140. #define __IM volatile const /*! Defines 'read only' structure member permissions */
  141. #define __OM volatile /*! Defines 'write only' structure member permissions */
  142. #define __IOM volatile /*! Defines 'read / write' structure member permissions */
  143. /*@} end of group Cortex-M0+ */
  144. /*******************************************************************************
  145. * Register Abstraction
  146. Core Register contain:
  147. - Core Register
  148. - Core NVIC Register
  149. - Core SCB Register
  150. - Core SysTick Register
  151. - Core MPU Register
  152. ******************************************************************************/
  153. /**
  154. \defgroup CMSIS_core_register Defines and Type Definitions
  155. \brief Type definitions and defines for Cortex-M processor based devices.
  156. */
  157. /**
  158. \ingroup CMSIS_core_register
  159. \defgroup CMSIS_CORE Status and Control Registers
  160. \brief Core Register type definitions.
  161. @{
  162. */
  163. /**
  164. \brief Union type to access the Application Program Status Register (APSR).
  165. */
  166. typedef union
  167. {
  168. struct
  169. {
  170. uint32_t _reserved0:28; /*!< bit: 0..27 Reserved */
  171. uint32_t V:1; /*!< bit: 28 Overflow condition code flag */
  172. uint32_t C:1; /*!< bit: 29 Carry condition code flag */
  173. uint32_t Z:1; /*!< bit: 30 Zero condition code flag */
  174. uint32_t N:1; /*!< bit: 31 Negative condition code flag */
  175. } b; /*!< Structure used for bit access */
  176. uint32_t w; /*!< Type used for word access */
  177. } APSR_Type;
  178. /** \brief APSR Register Definitions */
  179. #define APSR_N_Pos 31U /*!< APSR: N Position */
  180. #define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */
  181. #define APSR_Z_Pos 30U /*!< APSR: Z Position */
  182. #define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */
  183. #define APSR_C_Pos 29U /*!< APSR: C Position */
  184. #define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */
  185. #define APSR_V_Pos 28U /*!< APSR: V Position */
  186. #define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */
  187. /**
  188. \brief Union type to access the Interrupt Program Status Register (IPSR).
  189. */
  190. typedef union
  191. {
  192. struct
  193. {
  194. uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */
  195. uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */
  196. } b; /*!< Structure used for bit access */
  197. uint32_t w; /*!< Type used for word access */
  198. } IPSR_Type;
  199. /** \brief IPSR Register Definitions */
  200. #define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */
  201. #define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */
  202. /**
  203. \brief Union type to access the Special-Purpose Program Status Registers (xPSR).
  204. */
  205. typedef union
  206. {
  207. struct
  208. {
  209. uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */
  210. uint32_t _reserved0:15; /*!< bit: 9..23 Reserved */
  211. uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */
  212. uint32_t _reserved1:3; /*!< bit: 25..27 Reserved */
  213. uint32_t V:1; /*!< bit: 28 Overflow condition code flag */
  214. uint32_t C:1; /*!< bit: 29 Carry condition code flag */
  215. uint32_t Z:1; /*!< bit: 30 Zero condition code flag */
  216. uint32_t N:1; /*!< bit: 31 Negative condition code flag */
  217. } b; /*!< Structure used for bit access */
  218. uint32_t w; /*!< Type used for word access */
  219. } xPSR_Type;
  220. /** \brief xPSR Register Definitions */
  221. #define xPSR_N_Pos 31U /*!< xPSR: N Position */
  222. #define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */
  223. #define xPSR_Z_Pos 30U /*!< xPSR: Z Position */
  224. #define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */
  225. #define xPSR_C_Pos 29U /*!< xPSR: C Position */
  226. #define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */
  227. #define xPSR_V_Pos 28U /*!< xPSR: V Position */
  228. #define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */
  229. #define xPSR_T_Pos 24U /*!< xPSR: T Position */
  230. #define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */
  231. #define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */
  232. #define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */
  233. /**
  234. \brief Union type to access the Control Registers (CONTROL).
  235. */
  236. typedef union
  237. {
  238. struct
  239. {
  240. uint32_t nPRIV:1; /*!< bit: 0 Execution privilege in Thread mode */
  241. uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */
  242. uint32_t _reserved1:30; /*!< bit: 2..31 Reserved */
  243. } b; /*!< Structure used for bit access */
  244. uint32_t w; /*!< Type used for word access */
  245. } CONTROL_Type;
  246. /** \brief CONTROL Register Definitions */
  247. #define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */
  248. #define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */
  249. #define CONTROL_nPRIV_Pos 0U /*!< CONTROL: nPRIV Position */
  250. #define CONTROL_nPRIV_Msk (1UL /*<< CONTROL_nPRIV_Pos*/) /*!< CONTROL: nPRIV Mask */
  251. /*@} end of group CMSIS_CORE */
  252. /**
  253. \ingroup CMSIS_core_register
  254. \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC)
  255. \brief Type definitions for the NVIC Registers
  256. @{
  257. */
  258. /**
  259. \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC).
  260. */
  261. typedef struct
  262. {
  263. __IOM uint32_t ISER[1U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */
  264. uint32_t RESERVED0[31U];
  265. __IOM uint32_t ICER[1U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */
  266. uint32_t RESERVED1[31U];
  267. __IOM uint32_t ISPR[1U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */
  268. uint32_t RESERVED2[31U];
  269. __IOM uint32_t ICPR[1U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */
  270. uint32_t RESERVED3[31U];
  271. uint32_t RESERVED4[64U];
  272. __IOM uint32_t IPR[8U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register */
  273. } NVIC_Type;
  274. /*@} end of group CMSIS_NVIC */
  275. /**
  276. \ingroup CMSIS_core_register
  277. \defgroup CMSIS_SCB System Control Block (SCB)
  278. \brief Type definitions for the System Control Block Registers
  279. @{
  280. */
  281. /**
  282. \brief Structure type to access the System Control Block (SCB).
  283. */
  284. typedef struct
  285. {
  286. __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */
  287. __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */
  288. #if defined (__VTOR_PRESENT) && (__VTOR_PRESENT == 1U)
  289. __IOM uint32_t VTOR; /*!< Offset: 0x008 (R/W) Vector Table Offset Register */
  290. #else
  291. uint32_t RESERVED0;
  292. #endif
  293. __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */
  294. __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */
  295. __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */
  296. uint32_t RESERVED1;
  297. __IOM uint32_t SHPR[2U]; /*!< Offset: 0x01C (R/W) System Handlers Priority Registers. [0] is RESERVED */
  298. __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */
  299. } SCB_Type;
  300. /** \brief SCB CPUID Register Definitions */
  301. #define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */
  302. #define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */
  303. #define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */
  304. #define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */
  305. #define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */
  306. #define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */
  307. #define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */
  308. #define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */
  309. #define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */
  310. #define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */
  311. /** \brief SCB Interrupt Control State Register Definitions */
  312. #define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */
  313. #define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */
  314. #define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */
  315. #define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */
  316. #define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */
  317. #define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */
  318. #define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */
  319. #define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */
  320. #define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */
  321. #define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */
  322. #define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */
  323. #define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */
  324. #define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */
  325. #define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */
  326. #define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */
  327. #define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */
  328. #define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */
  329. #define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */
  330. #if defined (__VTOR_PRESENT) && (__VTOR_PRESENT == 1U)
  331. /** \brief SCB Vector Table Offset Register Definitions */
  332. #define SCB_VTOR_TBLOFF_Pos 8U /*!< SCB VTOR: TBLOFF Position */
  333. #define SCB_VTOR_TBLOFF_Msk (0xFFFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */
  334. #endif
  335. /** \brief SCB Application Interrupt and Reset Control Register Definitions */
  336. #define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */
  337. #define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */
  338. #define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */
  339. #define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */
  340. #define SCB_AIRCR_ENDIANNESS_Pos 15U /*!< SCB AIRCR: ENDIANNESS Position */
  341. #define SCB_AIRCR_ENDIANNESS_Msk (1UL << SCB_AIRCR_ENDIANNESS_Pos) /*!< SCB AIRCR: ENDIANNESS Mask */
  342. #define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */
  343. #define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */
  344. #define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */
  345. #define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */
  346. /** \brief SCB System Control Register Definitions */
  347. #define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */
  348. #define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */
  349. #define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */
  350. #define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */
  351. #define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */
  352. #define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */
  353. /** \brief SCB Configuration Control Register Definitions */
  354. #define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */
  355. #define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */
  356. #define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */
  357. #define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */
  358. /** \brief SCB System Handler Control and State Register Definitions */
  359. #define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */
  360. #define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */
  361. /*@} end of group CMSIS_SCB */
  362. /**
  363. \ingroup CMSIS_core_register
  364. \defgroup CMSIS_SysTick System Tick Timer (SysTick)
  365. \brief Type definitions for the System Timer Registers.
  366. @{
  367. */
  368. /**
  369. \brief Structure type to access the System Timer (SysTick).
  370. */
  371. typedef struct
  372. {
  373. __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */
  374. __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */
  375. __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */
  376. __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */
  377. } SysTick_Type;
  378. /** \brief SysTick Control / Status Register Definitions */
  379. #define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */
  380. #define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */
  381. #define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */
  382. #define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */
  383. #define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */
  384. #define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */
  385. #define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */
  386. #define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */
  387. /** \brief SysTick Reload Register Definitions */
  388. #define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */
  389. #define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */
  390. /** \brief SysTick Current Register Definitions */
  391. #define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */
  392. #define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */
  393. /** \brief SysTick Calibration Register Definitions */
  394. #define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */
  395. #define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */
  396. #define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */
  397. #define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */
  398. #define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */
  399. #define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */
  400. /*@} end of group CMSIS_SysTick */
  401. #if defined (__MPU_PRESENT) && (__MPU_PRESENT == 1U)
  402. /**
  403. \ingroup CMSIS_core_register
  404. \defgroup CMSIS_MPU Memory Protection Unit (MPU)
  405. \brief Type definitions for the Memory Protection Unit (MPU)
  406. @{
  407. */
  408. /**
  409. \brief Structure type to access the Memory Protection Unit (MPU).
  410. */
  411. typedef struct
  412. {
  413. __IM uint32_t TYPE; /*!< Offset: 0x000 (R/ ) MPU Type Register */
  414. __IOM uint32_t CTRL; /*!< Offset: 0x004 (R/W) MPU Control Register */
  415. __IOM uint32_t RNR; /*!< Offset: 0x008 (R/W) MPU Region Number Register */
  416. __IOM uint32_t RBAR; /*!< Offset: 0x00C (R/W) MPU Region Base Address Register */
  417. __IOM uint32_t RASR; /*!< Offset: 0x010 (R/W) MPU Region Attribute and Size Register */
  418. } MPU_Type;
  419. #define MPU_TYPE_RALIASES 1U
  420. /** \brief MPU Type Register Definitions */
  421. #define MPU_TYPE_IREGION_Pos 16U /*!< MPU TYPE: IREGION Position */
  422. #define MPU_TYPE_IREGION_Msk (0xFFUL << MPU_TYPE_IREGION_Pos) /*!< MPU TYPE: IREGION Mask */
  423. #define MPU_TYPE_DREGION_Pos 8U /*!< MPU TYPE: DREGION Position */
  424. #define MPU_TYPE_DREGION_Msk (0xFFUL << MPU_TYPE_DREGION_Pos) /*!< MPU TYPE: DREGION Mask */
  425. #define MPU_TYPE_SEPARATE_Pos 0U /*!< MPU TYPE: SEPARATE Position */
  426. #define MPU_TYPE_SEPARATE_Msk (1UL /*<< MPU_TYPE_SEPARATE_Pos*/) /*!< MPU TYPE: SEPARATE Mask */
  427. /** \brief MPU Control Register Definitions */
  428. #define MPU_CTRL_PRIVDEFENA_Pos 2U /*!< MPU CTRL: PRIVDEFENA Position */
  429. #define MPU_CTRL_PRIVDEFENA_Msk (1UL << MPU_CTRL_PRIVDEFENA_Pos) /*!< MPU CTRL: PRIVDEFENA Mask */
  430. #define MPU_CTRL_HFNMIENA_Pos 1U /*!< MPU CTRL: HFNMIENA Position */
  431. #define MPU_CTRL_HFNMIENA_Msk (1UL << MPU_CTRL_HFNMIENA_Pos) /*!< MPU CTRL: HFNMIENA Mask */
  432. #define MPU_CTRL_ENABLE_Pos 0U /*!< MPU CTRL: ENABLE Position */
  433. #define MPU_CTRL_ENABLE_Msk (1UL /*<< MPU_CTRL_ENABLE_Pos*/) /*!< MPU CTRL: ENABLE Mask */
  434. /** \brief MPU Region Number Register Definitions */
  435. #define MPU_RNR_REGION_Pos 0U /*!< MPU RNR: REGION Position */
  436. #define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU RNR: REGION Mask */
  437. /** \brief MPU Region Base Address Register Definitions */
  438. #define MPU_RBAR_ADDR_Pos 8U /*!< MPU RBAR: ADDR Position */
  439. #define MPU_RBAR_ADDR_Msk (0xFFFFFFUL << MPU_RBAR_ADDR_Pos) /*!< MPU RBAR: ADDR Mask */
  440. #define MPU_RBAR_VALID_Pos 4U /*!< MPU RBAR: VALID Position */
  441. #define MPU_RBAR_VALID_Msk (1UL << MPU_RBAR_VALID_Pos) /*!< MPU RBAR: VALID Mask */
  442. #define MPU_RBAR_REGION_Pos 0U /*!< MPU RBAR: REGION Position */
  443. #define MPU_RBAR_REGION_Msk (0xFUL /*<< MPU_RBAR_REGION_Pos*/) /*!< MPU RBAR: REGION Mask */
  444. /** \brief MPU Region Attribute and Size Register Definitions */
  445. #define MPU_RASR_ATTRS_Pos 16U /*!< MPU RASR: MPU Region Attribute field Position */
  446. #define MPU_RASR_ATTRS_Msk (0xFFFFUL << MPU_RASR_ATTRS_Pos) /*!< MPU RASR: MPU Region Attribute field Mask */
  447. #define MPU_RASR_XN_Pos 28U /*!< MPU RASR: ATTRS.XN Position */
  448. #define MPU_RASR_XN_Msk (1UL << MPU_RASR_XN_Pos) /*!< MPU RASR: ATTRS.XN Mask */
  449. #define MPU_RASR_AP_Pos 24U /*!< MPU RASR: ATTRS.AP Position */
  450. #define MPU_RASR_AP_Msk (0x7UL << MPU_RASR_AP_Pos) /*!< MPU RASR: ATTRS.AP Mask */
  451. #define MPU_RASR_TEX_Pos 19U /*!< MPU RASR: ATTRS.TEX Position */
  452. #define MPU_RASR_TEX_Msk (0x7UL << MPU_RASR_TEX_Pos) /*!< MPU RASR: ATTRS.TEX Mask */
  453. #define MPU_RASR_S_Pos 18U /*!< MPU RASR: ATTRS.S Position */
  454. #define MPU_RASR_S_Msk (1UL << MPU_RASR_S_Pos) /*!< MPU RASR: ATTRS.S Mask */
  455. #define MPU_RASR_C_Pos 17U /*!< MPU RASR: ATTRS.C Position */
  456. #define MPU_RASR_C_Msk (1UL << MPU_RASR_C_Pos) /*!< MPU RASR: ATTRS.C Mask */
  457. #define MPU_RASR_B_Pos 16U /*!< MPU RASR: ATTRS.B Position */
  458. #define MPU_RASR_B_Msk (1UL << MPU_RASR_B_Pos) /*!< MPU RASR: ATTRS.B Mask */
  459. #define MPU_RASR_SRD_Pos 8U /*!< MPU RASR: Sub-Region Disable Position */
  460. #define MPU_RASR_SRD_Msk (0xFFUL << MPU_RASR_SRD_Pos) /*!< MPU RASR: Sub-Region Disable Mask */
  461. #define MPU_RASR_SIZE_Pos 1U /*!< MPU RASR: Region Size Field Position */
  462. #define MPU_RASR_SIZE_Msk (0x1FUL << MPU_RASR_SIZE_Pos) /*!< MPU RASR: Region Size Field Mask */
  463. #define MPU_RASR_ENABLE_Pos 0U /*!< MPU RASR: Region enable bit Position */
  464. #define MPU_RASR_ENABLE_Msk (1UL /*<< MPU_RASR_ENABLE_Pos*/) /*!< MPU RASR: Region enable bit Disable Mask */
  465. /*@} end of group CMSIS_MPU */
  466. #endif
  467. /**
  468. \ingroup CMSIS_core_register
  469. \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug)
  470. \brief Cortex-M0+ Core Debug Registers (DCB registers, SHCSR, and DFSR) are only accessible over DAP and not via processor.
  471. Therefore they are not covered by the Cortex-M0+ header file.
  472. @{
  473. */
  474. /*@} end of group CMSIS_CoreDebug */
  475. /**
  476. \ingroup CMSIS_core_register
  477. \defgroup CMSIS_core_bitfield Core register bit field macros
  478. \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk).
  479. @{
  480. */
  481. /**
  482. \brief Mask and shift a bit field value for use in a register bit range.
  483. \param[in] field Name of the register bit field.
  484. \param[in] value Value of the bit field. This parameter is interpreted as an uint32_t type.
  485. \return Masked and shifted value.
  486. */
  487. #define _VAL2FLD(field, value) (((uint32_t)(value) << field ## _Pos) & field ## _Msk)
  488. /**
  489. \brief Mask and shift a register value to extract a bit filed value.
  490. \param[in] field Name of the register bit field.
  491. \param[in] value Value of register. This parameter is interpreted as an uint32_t type.
  492. \return Masked and shifted bit field value.
  493. */
  494. #define _FLD2VAL(field, value) (((uint32_t)(value) & field ## _Msk) >> field ## _Pos)
  495. /*@} end of group CMSIS_core_bitfield */
  496. /**
  497. \ingroup CMSIS_core_register
  498. \defgroup CMSIS_core_base Core Definitions
  499. \brief Definitions for base addresses, unions, and structures.
  500. @{
  501. */
  502. /* Memory mapping of Core Hardware */
  503. #define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */
  504. #define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */
  505. #define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */
  506. #define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */
  507. #define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */
  508. #define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */
  509. #define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */
  510. #if defined (__MPU_PRESENT) && (__MPU_PRESENT == 1U)
  511. #define MPU_BASE (SCS_BASE + 0x0D90UL) /*!< Memory Protection Unit */
  512. #define MPU ((MPU_Type *) MPU_BASE ) /*!< Memory Protection Unit */
  513. #endif
  514. /*@} */
  515. /**
  516. \defgroup CMSIS_deprecated_aliases Backwards Compatibility Aliases
  517. \brief Alias definitions present for backwards compatibility for deprecated symbols.
  518. @{
  519. */
  520. #ifndef CMSIS_DISABLE_DEPRECATED
  521. #define SCB_AIRCR_ENDIANESS_Pos SCB_AIRCR_ENDIANNESS_Pos
  522. #define SCB_AIRCR_ENDIANESS_Msk SCB_AIRCR_ENDIANNESS_Msk
  523. #endif // CMSIS_DISABLE_DEPRECATED
  524. /*@} */
  525. /*******************************************************************************
  526. * Hardware Abstraction Layer
  527. Core Function Interface contains:
  528. - Core NVIC Functions
  529. - Core SysTick Functions
  530. - Core Register Access Functions
  531. ******************************************************************************/
  532. /**
  533. \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference
  534. */
  535. /* ########################## NVIC functions #################################### */
  536. /**
  537. \ingroup CMSIS_Core_FunctionInterface
  538. \defgroup CMSIS_Core_NVICFunctions NVIC Functions
  539. \brief Functions that manage interrupts and exceptions via the NVIC.
  540. @{
  541. */
  542. #ifdef CMSIS_NVIC_VIRTUAL
  543. #ifndef CMSIS_NVIC_VIRTUAL_HEADER_FILE
  544. #define CMSIS_NVIC_VIRTUAL_HEADER_FILE "cmsis_nvic_virtual.h"
  545. #endif
  546. #include CMSIS_NVIC_VIRTUAL_HEADER_FILE
  547. #else
  548. #define NVIC_SetPriorityGrouping __NVIC_SetPriorityGrouping
  549. #define NVIC_GetPriorityGrouping __NVIC_GetPriorityGrouping
  550. #define NVIC_EnableIRQ __NVIC_EnableIRQ
  551. #define NVIC_GetEnableIRQ __NVIC_GetEnableIRQ
  552. #define NVIC_DisableIRQ __NVIC_DisableIRQ
  553. #define NVIC_GetPendingIRQ __NVIC_GetPendingIRQ
  554. #define NVIC_SetPendingIRQ __NVIC_SetPendingIRQ
  555. #define NVIC_ClearPendingIRQ __NVIC_ClearPendingIRQ
  556. /* NVIC_GetActive not available for Cortex-M0+ */
  557. #define NVIC_SetPriority __NVIC_SetPriority
  558. #define NVIC_GetPriority __NVIC_GetPriority
  559. #define NVIC_SystemReset __NVIC_SystemReset
  560. #endif /* CMSIS_NVIC_VIRTUAL */
  561. #ifdef CMSIS_VECTAB_VIRTUAL
  562. #ifndef CMSIS_VECTAB_VIRTUAL_HEADER_FILE
  563. #define CMSIS_VECTAB_VIRTUAL_HEADER_FILE "cmsis_vectab_virtual.h"
  564. #endif
  565. #include CMSIS_VECTAB_VIRTUAL_HEADER_FILE
  566. #else
  567. #define NVIC_SetVector __NVIC_SetVector
  568. #define NVIC_GetVector __NVIC_GetVector
  569. #endif /* (CMSIS_VECTAB_VIRTUAL) */
  570. #define NVIC_USER_IRQ_OFFSET 16
  571. /* The following EXC_RETURN values are saved the LR on exception entry */
  572. #define EXC_RETURN_HANDLER (0xFFFFFFF1UL) /* return to Handler mode, uses MSP after return */
  573. #define EXC_RETURN_THREAD_MSP (0xFFFFFFF9UL) /* return to Thread mode, uses MSP after return */
  574. #define EXC_RETURN_THREAD_PSP (0xFFFFFFFDUL) /* return to Thread mode, uses PSP after return */
  575. /* Interrupt Priorities are WORD accessible only under Armv6-M */
  576. /* The following MACROS handle generation of the register offset and byte masks */
  577. #define _BIT_SHIFT(IRQn) ( ((((uint32_t)(int32_t)(IRQn)) ) & 0x03UL) * 8UL)
  578. #define _SHP_IDX(IRQn) ( (((((uint32_t)(int32_t)(IRQn)) & 0x0FUL)-8UL) >> 2UL) )
  579. #define _IP_IDX(IRQn) ( (((uint32_t)(int32_t)(IRQn)) >> 2UL) )
  580. #define __NVIC_SetPriorityGrouping(X) (void)(X)
  581. #define __NVIC_GetPriorityGrouping() (0U)
  582. /**
  583. \brief Enable Interrupt
  584. \details Enables a device specific interrupt in the NVIC interrupt controller.
  585. \param [in] IRQn Device specific interrupt number.
  586. \note IRQn must not be negative.
  587. */
  588. __STATIC_INLINE void __NVIC_EnableIRQ(IRQn_Type IRQn)
  589. {
  590. if ((int32_t)(IRQn) >= 0)
  591. {
  592. __COMPILER_BARRIER();
  593. NVIC->ISER[0U] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL));
  594. __COMPILER_BARRIER();
  595. }
  596. }
  597. /**
  598. \brief Get Interrupt Enable status
  599. \details Returns a device specific interrupt enable status from the NVIC interrupt controller.
  600. \param [in] IRQn Device specific interrupt number.
  601. \return 0 Interrupt is not enabled.
  602. \return 1 Interrupt is enabled.
  603. \note IRQn must not be negative.
  604. */
  605. __STATIC_INLINE uint32_t __NVIC_GetEnableIRQ(IRQn_Type IRQn)
  606. {
  607. if ((int32_t)(IRQn) >= 0)
  608. {
  609. return((uint32_t)(((NVIC->ISER[0U] & (1UL << (((uint32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL));
  610. }
  611. else
  612. {
  613. return(0U);
  614. }
  615. }
  616. /**
  617. \brief Disable Interrupt
  618. \details Disables a device specific interrupt in the NVIC interrupt controller.
  619. \param [in] IRQn Device specific interrupt number.
  620. \note IRQn must not be negative.
  621. */
  622. __STATIC_INLINE void __NVIC_DisableIRQ(IRQn_Type IRQn)
  623. {
  624. if ((int32_t)(IRQn) >= 0)
  625. {
  626. NVIC->ICER[0U] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL));
  627. __DSB();
  628. __ISB();
  629. }
  630. }
  631. /**
  632. \brief Get Pending Interrupt
  633. \details Reads the NVIC pending register and returns the pending bit for the specified device specific interrupt.
  634. \param [in] IRQn Device specific interrupt number.
  635. \return 0 Interrupt status is not pending.
  636. \return 1 Interrupt status is pending.
  637. \note IRQn must not be negative.
  638. */
  639. __STATIC_INLINE uint32_t __NVIC_GetPendingIRQ(IRQn_Type IRQn)
  640. {
  641. if ((int32_t)(IRQn) >= 0)
  642. {
  643. return((uint32_t)(((NVIC->ISPR[0U] & (1UL << (((uint32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL));
  644. }
  645. else
  646. {
  647. return(0U);
  648. }
  649. }
  650. /**
  651. \brief Set Pending Interrupt
  652. \details Sets the pending bit of a device specific interrupt in the NVIC pending register.
  653. \param [in] IRQn Device specific interrupt number.
  654. \note IRQn must not be negative.
  655. */
  656. __STATIC_INLINE void __NVIC_SetPendingIRQ(IRQn_Type IRQn)
  657. {
  658. if ((int32_t)(IRQn) >= 0)
  659. {
  660. NVIC->ISPR[0U] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL));
  661. }
  662. }
  663. /**
  664. \brief Clear Pending Interrupt
  665. \details Clears the pending bit of a device specific interrupt in the NVIC pending register.
  666. \param [in] IRQn Device specific interrupt number.
  667. \note IRQn must not be negative.
  668. */
  669. __STATIC_INLINE void __NVIC_ClearPendingIRQ(IRQn_Type IRQn)
  670. {
  671. if ((int32_t)(IRQn) >= 0)
  672. {
  673. NVIC->ICPR[0U] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL));
  674. }
  675. }
  676. /**
  677. \brief Set Interrupt Priority
  678. \details Sets the priority of a device specific interrupt or a processor exception.
  679. The interrupt number can be positive to specify a device specific interrupt,
  680. or negative to specify a processor exception.
  681. \param [in] IRQn Interrupt number.
  682. \param [in] priority Priority to set.
  683. \note The priority cannot be set for every processor exception.
  684. */
  685. __STATIC_INLINE void __NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority)
  686. {
  687. if ((int32_t)(IRQn) >= 0)
  688. {
  689. NVIC->IPR[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IPR[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) |
  690. (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn)));
  691. }
  692. else
  693. {
  694. SCB->SHPR[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHPR[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) |
  695. (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn)));
  696. }
  697. }
  698. /**
  699. \brief Get Interrupt Priority
  700. \details Reads the priority of a device specific interrupt or a processor exception.
  701. The interrupt number can be positive to specify a device specific interrupt,
  702. or negative to specify a processor exception.
  703. \param [in] IRQn Interrupt number.
  704. \return Interrupt Priority.
  705. Value is aligned automatically to the implemented priority bits of the microcontroller.
  706. */
  707. __STATIC_INLINE uint32_t __NVIC_GetPriority(IRQn_Type IRQn)
  708. {
  709. if ((int32_t)(IRQn) >= 0)
  710. {
  711. return((uint32_t)(((NVIC->IPR[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS)));
  712. }
  713. else
  714. {
  715. return((uint32_t)(((SCB->SHPR[_SHP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS)));
  716. }
  717. }
  718. /**
  719. \brief Encode Priority
  720. \details Encodes the priority for an interrupt with the given priority group,
  721. preemptive priority value, and subpriority value.
  722. In case of a conflict between priority grouping and available
  723. priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set.
  724. \param [in] PriorityGroup Used priority group.
  725. \param [in] PreemptPriority Preemptive priority value (starting from 0).
  726. \param [in] SubPriority Subpriority value (starting from 0).
  727. \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority().
  728. */
  729. __STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority)
  730. {
  731. uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */
  732. uint32_t PreemptPriorityBits;
  733. uint32_t SubPriorityBits;
  734. PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp);
  735. SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS));
  736. return (
  737. ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) |
  738. ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL)))
  739. );
  740. }
  741. /**
  742. \brief Decode Priority
  743. \details Decodes an interrupt priority value with a given priority group to
  744. preemptive priority value and subpriority value.
  745. In case of a conflict between priority grouping and available
  746. priority bits (__NVIC_PRIO_BITS) the smallest possible priority group is set.
  747. \param [in] Priority Priority value, which can be retrieved with the function \ref NVIC_GetPriority().
  748. \param [in] PriorityGroup Used priority group.
  749. \param [out] pPreemptPriority Preemptive priority value (starting from 0).
  750. \param [out] pSubPriority Subpriority value (starting from 0).
  751. */
  752. __STATIC_INLINE void NVIC_DecodePriority (uint32_t Priority, uint32_t PriorityGroup, uint32_t* const pPreemptPriority, uint32_t* const pSubPriority)
  753. {
  754. uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */
  755. uint32_t PreemptPriorityBits;
  756. uint32_t SubPriorityBits;
  757. PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp);
  758. SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS));
  759. *pPreemptPriority = (Priority >> SubPriorityBits) & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL);
  760. *pSubPriority = (Priority ) & (uint32_t)((1UL << (SubPriorityBits )) - 1UL);
  761. }
  762. /**
  763. \brief Set Interrupt Vector
  764. \details Sets an interrupt vector in SRAM based interrupt vector table.
  765. The interrupt number can be positive to specify a device specific interrupt,
  766. or negative to specify a processor exception.
  767. VTOR must been relocated to SRAM before.
  768. If VTOR is not present address 0 must be mapped to SRAM.
  769. \param [in] IRQn Interrupt number
  770. \param [in] vector Address of interrupt handler function
  771. */
  772. __STATIC_INLINE void __NVIC_SetVector(IRQn_Type IRQn, uint32_t vector)
  773. {
  774. #if defined (__VTOR_PRESENT) && (__VTOR_PRESENT == 1U)
  775. uint32_t *vectors = (uint32_t *) ((uintptr_t) SCB->VTOR);
  776. vectors[(int32_t)IRQn + NVIC_USER_IRQ_OFFSET] = vector;
  777. #else
  778. uint32_t *vectors = (uint32_t *)(NVIC_USER_IRQ_OFFSET << 2); /* point to 1st user interrupt */
  779. *(vectors + (int32_t)IRQn) = vector; /* use pointer arithmetic to access vector */
  780. #endif
  781. /* ARM Application Note 321 states that the M0+ does not require the architectural barrier */
  782. }
  783. /**
  784. \brief Get Interrupt Vector
  785. \details Reads an interrupt vector from interrupt vector table.
  786. The interrupt number can be positive to specify a device specific interrupt,
  787. or negative to specify a processor exception.
  788. \param [in] IRQn Interrupt number.
  789. \return Address of interrupt handler function
  790. */
  791. __STATIC_INLINE uint32_t __NVIC_GetVector(IRQn_Type IRQn)
  792. {
  793. #if defined (__VTOR_PRESENT) && (__VTOR_PRESENT == 1U)
  794. uint32_t *vectors = (uint32_t *) ((uintptr_t) SCB->VTOR);
  795. return vectors[(int32_t)IRQn + NVIC_USER_IRQ_OFFSET];
  796. #else
  797. uint32_t *vectors = (uint32_t *)(NVIC_USER_IRQ_OFFSET << 2); /* point to 1st user interrupt */
  798. return *(vectors + (int32_t)IRQn); /* use pointer arithmetic to access vector */
  799. #endif
  800. }
  801. /**
  802. \brief System Reset
  803. \details Initiates a system reset request to reset the MCU.
  804. */
  805. __NO_RETURN __STATIC_INLINE void __NVIC_SystemReset(void)
  806. {
  807. __DSB(); /* Ensure all outstanding memory accesses included
  808. buffered write are completed before reset */
  809. SCB->AIRCR = ((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) |
  810. SCB_AIRCR_SYSRESETREQ_Msk);
  811. __DSB(); /* Ensure completion of memory access */
  812. for(;;) /* wait until reset */
  813. {
  814. __NOP();
  815. }
  816. }
  817. /*@} end of CMSIS_Core_NVICFunctions */
  818. /* ########################## MPU functions #################################### */
  819. #if defined (__MPU_PRESENT) && (__MPU_PRESENT == 1U)
  820. #include "m-profile/armv7m_mpu.h"
  821. #endif
  822. /* ########################## FPU functions #################################### */
  823. /**
  824. \ingroup CMSIS_Core_FunctionInterface
  825. \defgroup CMSIS_Core_FpuFunctions FPU Functions
  826. \brief Function that provides FPU type.
  827. @{
  828. */
  829. /**
  830. \brief get FPU type
  831. \details returns the FPU type
  832. \returns
  833. - \b 0: No FPU
  834. - \b 1: Single precision FPU
  835. - \b 2: Double + Single precision FPU
  836. */
  837. __STATIC_INLINE uint32_t SCB_GetFPUType(void)
  838. {
  839. return 0U; /* No FPU */
  840. }
  841. /*@} end of CMSIS_Core_FpuFunctions */
  842. /* ################################## SysTick function ############################################ */
  843. /**
  844. \ingroup CMSIS_Core_FunctionInterface
  845. \defgroup CMSIS_Core_SysTickFunctions SysTick Functions
  846. \brief Functions that configure the System.
  847. @{
  848. */
  849. #if defined (__Vendor_SysTickConfig) && (__Vendor_SysTickConfig == 0U)
  850. /**
  851. \brief System Tick Configuration
  852. \details Initializes the System Timer and its interrupt, and starts the System Tick Timer.
  853. Counter is in free running mode to generate periodic interrupts.
  854. \param [in] ticks Number of ticks between two interrupts.
  855. \return 0 Function succeeded.
  856. \return 1 Function failed.
  857. \note When the variable <b>__Vendor_SysTickConfig</b> is set to 1, then the
  858. function <b>SysTick_Config</b> is not included. In this case, the file <b><i>device</i>.h</b>
  859. must contain a vendor-specific implementation of this function.
  860. */
  861. __STATIC_INLINE uint32_t SysTick_Config(uint32_t ticks)
  862. {
  863. if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk)
  864. {
  865. return (1UL); /* Reload value impossible */
  866. }
  867. SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */
  868. NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */
  869. SysTick->VAL = 0UL; /* Load the SysTick Counter Value */
  870. SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk |
  871. SysTick_CTRL_TICKINT_Msk |
  872. SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */
  873. return (0UL); /* Function successful */
  874. }
  875. #endif
  876. /*@} end of CMSIS_Core_SysTickFunctions */
  877. #ifdef __cplusplus
  878. }
  879. #endif
  880. #endif /* __CORE_CM0PLUS_H_DEPENDANT */
  881. #endif /* __CMSIS_GENERIC */