fsl_common.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. /*
  2. * The Clear BSD License
  3. * Copyright (c) 2015-2016, Freescale Semiconductor, Inc.
  4. * Copyright 2016-2017 NXP
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without modification,
  8. * are permitted (subject to the limitations in the disclaimer below) provided
  9. * that the following conditions are met:
  10. *
  11. * o Redistributions of source code must retain the above copyright notice, this list
  12. * of conditions and the following disclaimer.
  13. *
  14. * o Redistributions in binary form must reproduce the above copyright notice, this
  15. * list of conditions and the following disclaimer in the documentation and/or
  16. * other materials provided with the distribution.
  17. *
  18. * o Neither the name of the copyright holder nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE.
  23. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  24. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  25. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  26. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  27. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  28. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  29. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  30. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  31. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  32. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. #ifndef _FSL_COMMON_H_
  35. #define _FSL_COMMON_H_
  36. #include <assert.h>
  37. #include <stdbool.h>
  38. #include <stdint.h>
  39. #include <string.h>
  40. //#if defined(__ICCARM__)
  41. #include <stddef.h>
  42. //#endif
  43. #include "fsl_device_registers.h"
  44. /*!
  45. * @addtogroup ksdk_common
  46. * @{
  47. */
  48. /*******************************************************************************
  49. * Definitions
  50. ******************************************************************************/
  51. /*! @brief Construct a status code value from a group and code number. */
  52. #define MAKE_STATUS(group, code) ((((group)*100) + (code)))
  53. /*! @brief Construct the version number for drivers. */
  54. #define MAKE_VERSION(major, minor, bugfix) (((major) << 16) | ((minor) << 8) | (bugfix))
  55. /*! @name Driver version */
  56. /*@{*/
  57. /*! @brief common driver version 2.0.0. */
  58. #define FSL_COMMON_DRIVER_VERSION (MAKE_VERSION(2, 0, 0))
  59. /*@}*/
  60. /* Debug console type definition. */
  61. #define DEBUG_CONSOLE_DEVICE_TYPE_NONE 0U /*!< No debug console. */
  62. #define DEBUG_CONSOLE_DEVICE_TYPE_UART 1U /*!< Debug console base on UART. */
  63. #define DEBUG_CONSOLE_DEVICE_TYPE_LPUART 2U /*!< Debug console base on LPUART. */
  64. #define DEBUG_CONSOLE_DEVICE_TYPE_LPSCI 3U /*!< Debug console base on LPSCI. */
  65. #define DEBUG_CONSOLE_DEVICE_TYPE_USBCDC 4U /*!< Debug console base on USBCDC. */
  66. #define DEBUG_CONSOLE_DEVICE_TYPE_FLEXCOMM 5U /*!< Debug console base on USBCDC. */
  67. #define DEBUG_CONSOLE_DEVICE_TYPE_IUART 6U /*!< Debug console base on i.MX UART. */
  68. #define DEBUG_CONSOLE_DEVICE_TYPE_VUSART 7U /*!< Debug console base on LPC_USART. */
  69. /*! @brief Status group numbers. */
  70. enum _status_groups
  71. {
  72. kStatusGroup_Generic = 0, /*!< Group number for generic status codes. */
  73. kStatusGroup_FLASH = 1, /*!< Group number for FLASH status codes. */
  74. kStatusGroup_LPSPI = 4, /*!< Group number for LPSPI status codes. */
  75. kStatusGroup_FLEXIO_SPI = 5, /*!< Group number for FLEXIO SPI status codes. */
  76. kStatusGroup_DSPI = 6, /*!< Group number for DSPI status codes. */
  77. kStatusGroup_FLEXIO_UART = 7, /*!< Group number for FLEXIO UART status codes. */
  78. kStatusGroup_FLEXIO_I2C = 8, /*!< Group number for FLEXIO I2C status codes. */
  79. kStatusGroup_LPI2C = 9, /*!< Group number for LPI2C status codes. */
  80. kStatusGroup_UART = 10, /*!< Group number for UART status codes. */
  81. kStatusGroup_I2C = 11, /*!< Group number for UART status codes. */
  82. kStatusGroup_LPSCI = 12, /*!< Group number for LPSCI status codes. */
  83. kStatusGroup_LPUART = 13, /*!< Group number for LPUART status codes. */
  84. kStatusGroup_SPI = 14, /*!< Group number for SPI status code.*/
  85. kStatusGroup_XRDC = 15, /*!< Group number for XRDC status code.*/
  86. kStatusGroup_SEMA42 = 16, /*!< Group number for SEMA42 status code.*/
  87. kStatusGroup_SDHC = 17, /*!< Group number for SDHC status code */
  88. kStatusGroup_SDMMC = 18, /*!< Group number for SDMMC status code */
  89. kStatusGroup_SAI = 19, /*!< Group number for SAI status code */
  90. kStatusGroup_MCG = 20, /*!< Group number for MCG status codes. */
  91. kStatusGroup_SCG = 21, /*!< Group number for SCG status codes. */
  92. kStatusGroup_SDSPI = 22, /*!< Group number for SDSPI status codes. */
  93. kStatusGroup_FLEXIO_I2S = 23, /*!< Group number for FLEXIO I2S status codes */
  94. kStatusGroup_FLEXIO_MCULCD = 24, /*!< Group number for FLEXIO LCD status codes */
  95. kStatusGroup_FLASHIAP = 25, /*!< Group number for FLASHIAP status codes */
  96. kStatusGroup_FLEXCOMM_I2C = 26, /*!< Group number for FLEXCOMM I2C status codes */
  97. kStatusGroup_I2S = 27, /*!< Group number for I2S status codes */
  98. kStatusGroup_IUART = 28, /*!< Group number for IUART status codes */
  99. kStatusGroup_CSI = 29, /*!< Group number for CSI status codes */
  100. kStatusGroup_MIPI_DSI = 30, /*!< Group number for MIPI DSI status codes */
  101. kStatusGroup_SDRAMC = 35, /*!< Group number for SDRAMC status codes. */
  102. kStatusGroup_POWER = 39, /*!< Group number for POWER status codes. */
  103. kStatusGroup_ENET = 40, /*!< Group number for ENET status codes. */
  104. kStatusGroup_PHY = 41, /*!< Group number for PHY status codes. */
  105. kStatusGroup_TRGMUX = 42, /*!< Group number for TRGMUX status codes. */
  106. kStatusGroup_SMARTCARD = 43, /*!< Group number for SMARTCARD status codes. */
  107. kStatusGroup_LMEM = 44, /*!< Group number for LMEM status codes. */
  108. kStatusGroup_QSPI = 45, /*!< Group number for QSPI status codes. */
  109. kStatusGroup_DMA = 50, /*!< Group number for DMA status codes. */
  110. kStatusGroup_EDMA = 51, /*!< Group number for EDMA status codes. */
  111. kStatusGroup_DMAMGR = 52, /*!< Group number for DMAMGR status codes. */
  112. kStatusGroup_FLEXCAN = 53, /*!< Group number for FlexCAN status codes. */
  113. kStatusGroup_LTC = 54, /*!< Group number for LTC status codes. */
  114. kStatusGroup_FLEXIO_CAMERA = 55, /*!< Group number for FLEXIO CAMERA status codes. */
  115. kStatusGroup_LPC_SPI = 56, /*!< Group number for LPC_SPI status codes. */
  116. kStatusGroup_LPC_USART = 57, /*!< Group number for LPC_USART status codes. */
  117. kStatusGroup_DMIC = 58, /*!< Group number for DMIC status codes. */
  118. kStatusGroup_SDIF = 59, /*!< Group number for SDIF status codes.*/
  119. kStatusGroup_SPIFI = 60, /*!< Group number for SPIFI status codes. */
  120. kStatusGroup_OTP = 61, /*!< Group number for OTP status codes. */
  121. kStatusGroup_MCAN = 62, /*!< Group number for MCAN status codes. */
  122. kStatusGroup_CAAM = 63, /*!< Group number for CAAM status codes. */
  123. kStatusGroup_ECSPI = 64, /*!< Group number for ECSPI status codes. */
  124. kStatusGroup_USDHC = 65, /*!< Group number for USDHC status codes.*/
  125. kStatusGroup_LPC_I2C = 66, /*!< Group number for LPC_I2C status codes.*/
  126. kStatusGroup_DCP = 67, /*!< Group number for DCP status codes.*/
  127. kStatusGroup_MSCAN = 68, /*!< Group number for MSCAN status codes.*/
  128. kStatusGroup_ESAI = 69, /*!< Group number for ESAI status codes. */
  129. kStatusGroup_FLEXSPI = 70, /*!< Group number for FLEXSPI status codes. */
  130. kStatusGroup_MMDC = 71, /*!< Group number for MMDC status codes. */
  131. kStatusGroup_MICFIL = 72, /*!< Group number for MIC status codes. */
  132. kStatusGroup_SDMA = 73, /*!< Group number for SDMA status codes. */
  133. kStatusGroup_ICS = 74, /*!< Group number for ICS status codes. */
  134. kStatusGroup_SPDIF = 75, /*!< Group number for SPDIF status codes. */
  135. kStatusGroup_NOTIFIER = 98, /*!< Group number for NOTIFIER status codes. */
  136. kStatusGroup_DebugConsole = 99, /*!< Group number for debug console status codes. */
  137. kStatusGroup_SEMC = 100, /*!< Group number for SEMC status codes. */
  138. kStatusGroup_ApplicationRangeStart = 101, /*!< Starting number for application groups. */
  139. };
  140. /*! @brief Generic status return codes. */
  141. enum _generic_status
  142. {
  143. kStatus_Success = MAKE_STATUS(kStatusGroup_Generic, 0),
  144. kStatus_Fail = MAKE_STATUS(kStatusGroup_Generic, 1),
  145. kStatus_ReadOnly = MAKE_STATUS(kStatusGroup_Generic, 2),
  146. kStatus_OutOfRange = MAKE_STATUS(kStatusGroup_Generic, 3),
  147. kStatus_InvalidArgument = MAKE_STATUS(kStatusGroup_Generic, 4),
  148. kStatus_Timeout = MAKE_STATUS(kStatusGroup_Generic, 5),
  149. kStatus_NoTransferInProgress = MAKE_STATUS(kStatusGroup_Generic, 6),
  150. };
  151. /*! @brief Type used for all status and error return values. */
  152. typedef int32_t status_t;
  153. /*
  154. * The fsl_clock.h is included here because it needs MAKE_VERSION/MAKE_STATUS/status_t
  155. * defined in previous of this file.
  156. */
  157. #include "fsl_clock.h"
  158. /*
  159. * Chip level peripheral reset API, for MCUs that implement peripheral reset control external to a peripheral
  160. */
  161. #if ((defined(FSL_FEATURE_SOC_SYSCON_COUNT) && (FSL_FEATURE_SOC_SYSCON_COUNT > 0)) || \
  162. (defined(FSL_FEATURE_SOC_ASYNC_SYSCON_COUNT) && (FSL_FEATURE_SOC_ASYNC_SYSCON_COUNT > 0)))
  163. #include "fsl_reset.h"
  164. #endif
  165. /*! @name Min/max macros */
  166. /* @{ */
  167. #if !defined(MIN)
  168. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  169. #endif
  170. #if !defined(MAX)
  171. #define MAX(a, b) ((a) > (b) ? (a) : (b))
  172. #endif
  173. /* @} */
  174. /*! @brief Computes the number of elements in an array. */
  175. #if !defined(ARRAY_SIZE)
  176. #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  177. #endif
  178. /*! @name UINT16_MAX/UINT32_MAX value */
  179. /* @{ */
  180. #if !defined(UINT16_MAX)
  181. #define UINT16_MAX ((uint16_t)-1)
  182. #endif
  183. #if !defined(UINT32_MAX)
  184. #define UINT32_MAX ((uint32_t)-1)
  185. #endif
  186. /* @} */
  187. /*! @name Timer utilities */
  188. /* @{ */
  189. /*! Macro to convert a microsecond period to raw count value */
  190. #define USEC_TO_COUNT(us, clockFreqInHz) (uint64_t)((uint64_t)us * clockFreqInHz / 1000000U)
  191. /*! Macro to convert a raw count value to microsecond */
  192. #define COUNT_TO_USEC(count, clockFreqInHz) (uint64_t)((uint64_t)count * 1000000U / clockFreqInHz)
  193. /*! Macro to convert a millisecond period to raw count value */
  194. #define MSEC_TO_COUNT(ms, clockFreqInHz) (uint64_t)((uint64_t)ms * clockFreqInHz / 1000U)
  195. /*! Macro to convert a raw count value to millisecond */
  196. #define COUNT_TO_MSEC(count, clockFreqInHz) (uint64_t)((uint64_t)count * 1000U / clockFreqInHz)
  197. /* @} */
  198. /*! @name Alignment variable definition macros */
  199. /* @{ */
  200. #if (defined(__ICCARM__))
  201. /**
  202. * Workaround to disable MISRA C message suppress warnings for IAR compiler.
  203. * http://supp.iar.com/Support/?note=24725
  204. */
  205. _Pragma("diag_suppress=Pm120")
  206. #define SDK_PRAGMA(x) _Pragma(#x)
  207. _Pragma("diag_error=Pm120")
  208. /*! Macro to define a variable with alignbytes alignment */
  209. #define SDK_ALIGN(var, alignbytes) SDK_PRAGMA(data_alignment = alignbytes) var
  210. /*! Macro to define a variable with L1 d-cache line size alignment */
  211. #if defined(FSL_FEATURE_L1DCACHE_LINESIZE_BYTE)
  212. #define SDK_L1DCACHE_ALIGN(var) SDK_PRAGMA(data_alignment = FSL_FEATURE_L1DCACHE_LINESIZE_BYTE) var
  213. #endif
  214. /*! Macro to define a variable with L2 cache line size alignment */
  215. #if defined(FSL_FEATURE_L2CACHE_LINESIZE_BYTE)
  216. #define SDK_L2CACHE_ALIGN(var) SDK_PRAGMA(data_alignment = FSL_FEATURE_L2CACHE_LINESIZE_BYTE) var
  217. #endif
  218. #elif defined(__ARMCC_VERSION)
  219. /*! Macro to define a variable with alignbytes alignment */
  220. #define SDK_ALIGN(var, alignbytes) __align(alignbytes) var
  221. /*! Macro to define a variable with L1 d-cache line size alignment */
  222. #if defined(FSL_FEATURE_L1DCACHE_LINESIZE_BYTE)
  223. #define SDK_L1DCACHE_ALIGN(var) __align(FSL_FEATURE_L1DCACHE_LINESIZE_BYTE) var
  224. #endif
  225. /*! Macro to define a variable with L2 cache line size alignment */
  226. #if defined(FSL_FEATURE_L2CACHE_LINESIZE_BYTE)
  227. #define SDK_L2CACHE_ALIGN(var) __align(FSL_FEATURE_L2CACHE_LINESIZE_BYTE) var
  228. #endif
  229. #elif defined(__GNUC__)
  230. /*! Macro to define a variable with alignbytes alignment */
  231. #define SDK_ALIGN(var, alignbytes) var __attribute__((aligned(alignbytes)))
  232. /*! Macro to define a variable with L1 d-cache line size alignment */
  233. #if defined(FSL_FEATURE_L1DCACHE_LINESIZE_BYTE)
  234. #define SDK_L1DCACHE_ALIGN(var) var __attribute__((aligned(FSL_FEATURE_L1DCACHE_LINESIZE_BYTE)))
  235. #endif
  236. /*! Macro to define a variable with L2 cache line size alignment */
  237. #if defined(FSL_FEATURE_L2CACHE_LINESIZE_BYTE)
  238. #define SDK_L2CACHE_ALIGN(var) var __attribute__((aligned(FSL_FEATURE_L2CACHE_LINESIZE_BYTE)))
  239. #endif
  240. #else
  241. #error Toolchain not supported
  242. #define SDK_ALIGN(var, alignbytes) var
  243. #if defined(FSL_FEATURE_L1DCACHE_LINESIZE_BYTE)
  244. #define SDK_L1DCACHE_ALIGN(var) var
  245. #endif
  246. #if defined(FSL_FEATURE_L2CACHE_LINESIZE_BYTE)
  247. #define SDK_L2CACHE_ALIGN(var) var
  248. #endif
  249. #endif
  250. /*! Macro to change a value to a given size aligned value */
  251. #define SDK_SIZEALIGN(var, alignbytes) \
  252. ((unsigned int)((var) + ((alignbytes)-1)) & (unsigned int)(~(unsigned int)((alignbytes)-1)))
  253. /* @} */
  254. /*! @name Non-cacheable region definition macros */
  255. /* For initialized non-zero non-cacheable variables, please using "AT_NONCACHEABLE_SECTION_INIT(var) ={xx};" or
  256. * "AT_NONCACHEABLE_SECTION_ALIGN_INIT(var) ={xx};" in your projects to define them, for zero-inited non-cacheable variables,
  257. * please using "AT_NONCACHEABLE_SECTION(var);" or "AT_NONCACHEABLE_SECTION_ALIGN(var);" to define them, these zero-inited variables
  258. * will be initialized to zero in system startup.
  259. */
  260. /* @{ */
  261. #if (defined(__ICCARM__))
  262. #if defined(FSL_FEATURE_L1ICACHE_LINESIZE_BYTE)
  263. #define AT_NONCACHEABLE_SECTION(var) var @"NonCacheable"
  264. #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) SDK_PRAGMA(data_alignment = alignbytes) var @"NonCacheable"
  265. #define AT_NONCACHEABLE_SECTION_INIT(var) var @"NonCacheable.init"
  266. #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) SDK_PRAGMA(data_alignment = alignbytes) var @"NonCacheable.init"
  267. #else
  268. #define AT_NONCACHEABLE_SECTION(var) var
  269. #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) SDK_PRAGMA(data_alignment = alignbytes) var
  270. #define AT_NONCACHEABLE_SECTION_INIT(var) var
  271. #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) SDK_PRAGMA(data_alignment = alignbytes) var
  272. #endif
  273. #elif(defined(__ARMCC_VERSION))
  274. #if defined(FSL_FEATURE_L1ICACHE_LINESIZE_BYTE)
  275. #define AT_NONCACHEABLE_SECTION(var) __attribute__((section("NonCacheable"), zero_init)) var
  276. #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) \
  277. __attribute__((section("NonCacheable"), zero_init)) __align(alignbytes) var
  278. #define AT_NONCACHEABLE_SECTION_INIT(var) __attribute__((section("NonCacheable.init"))) var
  279. #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) \
  280. __attribute__((section("NonCacheable.init"))) __align(alignbytes) var
  281. #else
  282. #define AT_NONCACHEABLE_SECTION(var) var
  283. #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) __align(alignbytes) var
  284. #define AT_NONCACHEABLE_SECTION_INIT(var) var
  285. #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) __align(alignbytes) var
  286. #endif
  287. #elif(defined(__GNUC__))
  288. /* For GCC, when the non-cacheable section is required, please define "__STARTUP_INITIALIZE_NONCACHEDATA"
  289. * in your projects to make sure the non-cacheable section variables will be initialized in system startup.
  290. */
  291. #if defined(FSL_FEATURE_L1ICACHE_LINESIZE_BYTE)
  292. #define AT_NONCACHEABLE_SECTION_INIT(var) __attribute__((section("NonCacheable.init"))) var
  293. #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) \
  294. __attribute__((section("NonCacheable.init"))) var __attribute__((aligned(alignbytes)))
  295. #define AT_NONCACHEABLE_SECTION(var) __attribute__((section("NonCacheable,\"aw\",%nobits @"))) var
  296. #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) \
  297. __attribute__((section("NonCacheable,\"aw\",%nobits @"))) var __attribute__((aligned(alignbytes)))
  298. #else
  299. #define AT_NONCACHEABLE_SECTION(var) var
  300. #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) var __attribute__((aligned(alignbytes)))
  301. #define AT_NONCACHEABLE_SECTION_INIT(var) var
  302. #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) var __attribute__((aligned(alignbytes)))
  303. #endif
  304. #else
  305. #error Toolchain not supported.
  306. #define AT_NONCACHEABLE_SECTION(var) var
  307. #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) var
  308. #define AT_NONCACHEABLE_SECTION_INIT(var) var
  309. #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) var
  310. #endif
  311. /* @} */
  312. /*******************************************************************************
  313. * API
  314. ******************************************************************************/
  315. #if defined(__cplusplus)
  316. extern "C"
  317. {
  318. #endif
  319. /*!
  320. * @brief Enable specific interrupt.
  321. *
  322. * Enable LEVEL1 interrupt. For some devices, there might be multiple interrupt
  323. * levels. For example, there are NVIC and intmux. Here the interrupts connected
  324. * to NVIC are the LEVEL1 interrupts, because they are routed to the core directly.
  325. * The interrupts connected to intmux are the LEVEL2 interrupts, they are routed
  326. * to NVIC first then routed to core.
  327. *
  328. * This function only enables the LEVEL1 interrupts. The number of LEVEL1 interrupts
  329. * is indicated by the feature macro FSL_FEATURE_NUMBER_OF_LEVEL1_INT_VECTORS.
  330. *
  331. * @param interrupt The IRQ number.
  332. * @retval kStatus_Success Interrupt enabled successfully
  333. * @retval kStatus_Fail Failed to enable the interrupt
  334. */
  335. static inline status_t EnableIRQ(IRQn_Type interrupt)
  336. {
  337. if (NotAvail_IRQn == interrupt)
  338. {
  339. return kStatus_Fail;
  340. }
  341. #if defined(FSL_FEATURE_NUMBER_OF_LEVEL1_INT_VECTORS) && (FSL_FEATURE_NUMBER_OF_LEVEL1_INT_VECTORS > 0)
  342. if (interrupt >= FSL_FEATURE_NUMBER_OF_LEVEL1_INT_VECTORS)
  343. {
  344. return kStatus_Fail;
  345. }
  346. #endif
  347. #if defined(__GIC_PRIO_BITS)
  348. GIC_EnableIRQ(interrupt);
  349. #else
  350. NVIC_EnableIRQ(interrupt);
  351. #endif
  352. return kStatus_Success;
  353. }
  354. /*!
  355. * @brief Disable specific interrupt.
  356. *
  357. * Disable LEVEL1 interrupt. For some devices, there might be multiple interrupt
  358. * levels. For example, there are NVIC and intmux. Here the interrupts connected
  359. * to NVIC are the LEVEL1 interrupts, because they are routed to the core directly.
  360. * The interrupts connected to intmux are the LEVEL2 interrupts, they are routed
  361. * to NVIC first then routed to core.
  362. *
  363. * This function only disables the LEVEL1 interrupts. The number of LEVEL1 interrupts
  364. * is indicated by the feature macro FSL_FEATURE_NUMBER_OF_LEVEL1_INT_VECTORS.
  365. *
  366. * @param interrupt The IRQ number.
  367. * @retval kStatus_Success Interrupt disabled successfully
  368. * @retval kStatus_Fail Failed to disable the interrupt
  369. */
  370. static inline status_t DisableIRQ(IRQn_Type interrupt)
  371. {
  372. if (NotAvail_IRQn == interrupt)
  373. {
  374. return kStatus_Fail;
  375. }
  376. #if defined(FSL_FEATURE_NUMBER_OF_LEVEL1_INT_VECTORS) && (FSL_FEATURE_NUMBER_OF_LEVEL1_INT_VECTORS > 0)
  377. if (interrupt >= FSL_FEATURE_NUMBER_OF_LEVEL1_INT_VECTORS)
  378. {
  379. return kStatus_Fail;
  380. }
  381. #endif
  382. #if defined(__GIC_PRIO_BITS)
  383. GIC_DisableIRQ(interrupt);
  384. #else
  385. NVIC_DisableIRQ(interrupt);
  386. #endif
  387. return kStatus_Success;
  388. }
  389. /*!
  390. * @brief Disable the global IRQ
  391. *
  392. * Disable the global interrupt and return the current primask register. User is required to provided the primask
  393. * register for the EnableGlobalIRQ().
  394. *
  395. * @return Current primask value.
  396. */
  397. static inline uint32_t DisableGlobalIRQ(void)
  398. {
  399. #if defined(CPSR_I_Msk)
  400. uint32_t cpsr = __get_CPSR() & CPSR_I_Msk;
  401. __disable_irq();
  402. return cpsr;
  403. #else
  404. uint32_t regPrimask = __get_PRIMASK();
  405. __disable_irq();
  406. return regPrimask;
  407. #endif
  408. }
  409. /*!
  410. * @brief Enaable the global IRQ
  411. *
  412. * Set the primask register with the provided primask value but not just enable the primask. The idea is for the
  413. * convinience of integration of RTOS. some RTOS get its own management mechanism of primask. User is required to
  414. * use the EnableGlobalIRQ() and DisableGlobalIRQ() in pair.
  415. *
  416. * @param primask value of primask register to be restored. The primask value is supposed to be provided by the
  417. * DisableGlobalIRQ().
  418. */
  419. static inline void EnableGlobalIRQ(uint32_t primask)
  420. {
  421. #if defined(CPSR_I_Msk)
  422. __set_CPSR((__get_CPSR() & ~CPSR_I_Msk) | primask);
  423. #else
  424. __set_PRIMASK(primask);
  425. #endif
  426. }
  427. #if defined(ENABLE_RAM_VECTOR_TABLE)
  428. /*!
  429. * @brief install IRQ handler
  430. *
  431. * @param irq IRQ number
  432. * @param irqHandler IRQ handler address
  433. * @return The old IRQ handler address
  434. */
  435. uint32_t InstallIRQHandler(IRQn_Type irq, uint32_t irqHandler);
  436. #endif /* ENABLE_RAM_VECTOR_TABLE. */
  437. #if (defined(FSL_FEATURE_SOC_SYSCON_COUNT) && (FSL_FEATURE_SOC_SYSCON_COUNT > 0))
  438. /*!
  439. * @brief Enable specific interrupt for wake-up from deep-sleep mode.
  440. *
  441. * Enable the interrupt for wake-up from deep sleep mode.
  442. * Some interrupts are typically used in sleep mode only and will not occur during
  443. * deep-sleep mode because relevant clocks are stopped. However, it is possible to enable
  444. * those clocks (significantly increasing power consumption in the reduced power mode),
  445. * making these wake-ups possible.
  446. *
  447. * @note This function also enables the interrupt in the NVIC (EnableIRQ() is called internally).
  448. *
  449. * @param interrupt The IRQ number.
  450. */
  451. void EnableDeepSleepIRQ(IRQn_Type interrupt);
  452. /*!
  453. * @brief Disable specific interrupt for wake-up from deep-sleep mode.
  454. *
  455. * Disable the interrupt for wake-up from deep sleep mode.
  456. * Some interrupts are typically used in sleep mode only and will not occur during
  457. * deep-sleep mode because relevant clocks are stopped. However, it is possible to enable
  458. * those clocks (significantly increasing power consumption in the reduced power mode),
  459. * making these wake-ups possible.
  460. *
  461. * @note This function also disables the interrupt in the NVIC (DisableIRQ() is called internally).
  462. *
  463. * @param interrupt The IRQ number.
  464. */
  465. void DisableDeepSleepIRQ(IRQn_Type interrupt);
  466. #endif /* FSL_FEATURE_SOC_SYSCON_COUNT */
  467. #if defined(__cplusplus)
  468. }
  469. #endif
  470. /*! @} */
  471. #endif /* _FSL_COMMON_H_ */