fsl_snvs_hp.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
  1. /*
  2. * Copyright (c) 2016, Freescale Semiconductor, Inc.
  3. * Copyright 2017-2021, NXP
  4. * All rights reserved.
  5. *
  6. * SPDX-License-Identifier: BSD-3-Clause
  7. */
  8. #ifndef _FSL_SNVS_HP_H_
  9. #define _FSL_SNVS_HP_H_
  10. #include "fsl_common.h"
  11. /*!
  12. * @addtogroup snvs_hp
  13. * @{
  14. */
  15. /*******************************************************************************
  16. * Definitions
  17. ******************************************************************************/
  18. /*! @name Driver version */
  19. /*@{*/
  20. #define FSL_SNVS_HP_DRIVER_VERSION (MAKE_VERSION(2, 3, 1)) /*!< Version 2.3.1 */
  21. /*@}*/
  22. /*! @brief List of SNVS interrupts */
  23. typedef enum _snvs_hp_interrupts
  24. {
  25. kSNVS_RTC_AlarmInterrupt = SNVS_HPCR_HPTA_EN_MASK, /*!< RTC time alarm */
  26. kSNVS_RTC_PeriodicInterrupt = SNVS_HPCR_PI_EN_MASK, /*!< RTC periodic interrupt */
  27. } snvs_hp_interrupts_t;
  28. /*! @brief List of SNVS flags */
  29. typedef enum _snvs_hp_status_flags
  30. {
  31. kSNVS_RTC_AlarmInterruptFlag = SNVS_HPSR_HPTA_MASK, /*!< RTC time alarm flag */
  32. kSNVS_RTC_PeriodicInterruptFlag = SNVS_HPSR_PI_MASK, /*!< RTC periodic interrupt flag */
  33. kSNVS_ZMK_ZeroFlag = (int)SNVS_HPSR_ZMK_ZERO_MASK, /*!< The ZMK is zero */
  34. kSNVS_OTPMK_ZeroFlag = SNVS_HPSR_OTPMK_ZERO_MASK, /*!< The OTPMK is zero */
  35. } snvs_hp_status_flags_t;
  36. /* Re-map Security Violation for RT11xx specific violation*/
  37. #ifndef SNVS_HPSVSR_SV0_MASK
  38. #define SNVS_HPSVSR_SV0_MASK SNVS_HPSVSR_CAAM_MASK
  39. #endif
  40. #ifndef SNVS_HPSVSR_SV1_MASK
  41. #define SNVS_HPSVSR_SV1_MASK SNVS_HPSVSR_JTAGC_MASK
  42. #endif
  43. #ifndef SNVS_HPSVSR_SV2_MASK
  44. #define SNVS_HPSVSR_SV2_MASK SNVS_HPSVSR_WDOG2_MASK
  45. #endif
  46. #ifndef SNVS_HPSVSR_SV4_MASK
  47. #define SNVS_HPSVSR_SV4_MASK SNVS_HPSVSR_SRC_MASK
  48. #endif
  49. #ifndef SNVS_HPSVSR_SV5_MASK
  50. #define SNVS_HPSVSR_SV5_MASK SNVS_HPSVSR_OCOTP_MASK
  51. #endif
  52. /*! @brief List of SNVS security violation flags */
  53. typedef enum _snvs_hp_sv_status_flags
  54. {
  55. kSNVS_LP_ViolationFlag = SNVS_HPSVSR_SW_LPSV_MASK, /*!< Low Power section Security Violation */
  56. kSNVS_ZMK_EccFailFlag = SNVS_HPSVSR_ZMK_ECC_FAIL_MASK, /*!< Zeroizable Master Key Error Correcting Code Check
  57. Failure */
  58. kSNVS_LP_SoftwareViolationFlag = SNVS_HPSVSR_SW_LPSV_MASK, /*!< LP Software Security Violation */
  59. kSNVS_FatalSoftwareViolationFlag = SNVS_HPSVSR_SW_FSV_MASK, /*!< Software Fatal Security Violation */
  60. kSNVS_SoftwareViolationFlag = SNVS_HPSVSR_SW_SV_MASK, /*!< Software Security Violation */
  61. kSNVS_Violation0Flag = SNVS_HPSVSR_SV0_MASK, /*!< Security Violation 0 */
  62. kSNVS_Violation1Flag = SNVS_HPSVSR_SV1_MASK, /*!< Security Violation 1 */
  63. kSNVS_Violation2Flag = SNVS_HPSVSR_SV2_MASK, /*!< Security Violation 2 */
  64. #if defined(SNVS_HPSVSR_SV3_MASK)
  65. kSNVS_Violation3Flag = SNVS_HPSVSR_SV3_MASK, /*!< Security Violation 3 */
  66. #endif /* SNVS_HPSVSR_SV3_MASK */
  67. kSNVS_Violation4Flag = SNVS_HPSVSR_SV4_MASK, /*!< Security Violation 4 */
  68. kSNVS_Violation5Flag = SNVS_HPSVSR_SV5_MASK, /*!< Security Violation 5 */
  69. } snvs_hp_sv_status_flags_t;
  70. /*!
  71. * @brief Macro to make security violation flag
  72. *
  73. * Macro help to make security violation flag kSNVS_Violation0Flag to kSNVS_Violation5Flag,
  74. * For example, SNVS_MAKE_HP_SV_FLAG(0) is kSNVS_Violation0Flag.
  75. */
  76. #define SNVS_MAKE_HP_SV_FLAG(x) (1U << (SNVS_HPSVSR_SV0_SHIFT + (x)))
  77. /*! @brief Structure is used to hold the date and time */
  78. typedef struct _snvs_hp_rtc_datetime
  79. {
  80. uint16_t year; /*!< Range from 1970 to 2099.*/
  81. uint8_t month; /*!< Range from 1 to 12.*/
  82. uint8_t day; /*!< Range from 1 to 31 (depending on month).*/
  83. uint8_t hour; /*!< Range from 0 to 23.*/
  84. uint8_t minute; /*!< Range from 0 to 59.*/
  85. uint8_t second; /*!< Range from 0 to 59.*/
  86. } snvs_hp_rtc_datetime_t;
  87. /*!
  88. * @brief SNVS config structure
  89. *
  90. * This structure holds the configuration settings for the SNVS peripheral. To initialize this
  91. * structure to reasonable defaults, call the SNVS_GetDefaultConfig() function and pass a
  92. * pointer to your config structure instance.
  93. *
  94. * The config struct can be made const so it resides in flash
  95. */
  96. typedef struct _snvs_hp_rtc_config
  97. {
  98. bool rtcCalEnable; /*!< true: RTC calibration mechanism is enabled;
  99. false:No calibration is used */
  100. uint32_t rtcCalValue; /*!< Defines signed calibration value for nonsecure RTC;
  101. This is a 5-bit 2's complement value, range from -16 to +15 */
  102. uint32_t periodicInterruptFreq; /*!< Defines frequency of the periodic interrupt;
  103. Range from 0 to 15 */
  104. } snvs_hp_rtc_config_t;
  105. /*! @brief List of SNVS Security State Machine State */
  106. typedef enum _snvs_hp_ssm_state
  107. {
  108. kSNVS_SSMInit = 0x00, /*!< Init */
  109. kSNVS_SSMHardFail = 0x01, /*!< Hard Fail */
  110. kSNVS_SSMSoftFail = 0x03, /*!< Soft Fail */
  111. kSNVS_SSMInitInter = 0x08, /*!< Init Intermediate (transition state between Init and Check) */
  112. kSNVS_SSMCheck = 0x09, /*!< Check */
  113. kSNVS_SSMNonSecure = 0x0B, /*!< Non-Secure */
  114. kSNVS_SSMTrusted = 0x0D, /*!< Trusted */
  115. kSNVS_SSMSecure = 0x0F, /*!< Secure */
  116. } snvs_hp_ssm_state_t;
  117. /*******************************************************************************
  118. * API
  119. ******************************************************************************/
  120. #if defined(__cplusplus)
  121. extern "C" {
  122. #endif
  123. /*!
  124. * @name Initialization and deinitialization
  125. * @{
  126. */
  127. /*!
  128. * @brief Initialize the SNVS.
  129. *
  130. * @note This API should be called at the beginning of the application using the SNVS driver.
  131. *
  132. * @param base SNVS peripheral base address
  133. */
  134. void SNVS_HP_Init(SNVS_Type *base);
  135. /*!
  136. * @brief Deinitialize the SNVS.
  137. *
  138. * @param base SNVS peripheral base address
  139. */
  140. void SNVS_HP_Deinit(SNVS_Type *base);
  141. /*!
  142. * @brief Ungates the SNVS clock and configures the peripheral for basic operation.
  143. *
  144. * @note This API should be called at the beginning of the application using the SNVS driver.
  145. *
  146. * @param base SNVS peripheral base address
  147. * @param config Pointer to the user's SNVS configuration structure.
  148. */
  149. void SNVS_HP_RTC_Init(SNVS_Type *base, const snvs_hp_rtc_config_t *config);
  150. /*!
  151. * @brief Stops the RTC and SRTC timers.
  152. *
  153. * @param base SNVS peripheral base address
  154. */
  155. void SNVS_HP_RTC_Deinit(SNVS_Type *base);
  156. /*!
  157. * @brief Fills in the SNVS config struct with the default settings.
  158. *
  159. * The default values are as follows.
  160. * @code
  161. * config->rtccalenable = false;
  162. * config->rtccalvalue = 0U;
  163. * config->PIFreq = 0U;
  164. * @endcode
  165. * @param config Pointer to the user's SNVS configuration structure.
  166. */
  167. void SNVS_HP_RTC_GetDefaultConfig(snvs_hp_rtc_config_t *config);
  168. /*! @}*/
  169. /*!
  170. * @name Non secure RTC current Time & Alarm
  171. * @{
  172. */
  173. /*!
  174. * @brief Sets the SNVS RTC date and time according to the given time structure.
  175. *
  176. * @param base SNVS peripheral base address
  177. * @param datetime Pointer to the structure where the date and time details are stored.
  178. *
  179. * @return kStatus_Success: Success in setting the time and starting the SNVS RTC
  180. * kStatus_InvalidArgument: Error because the datetime format is incorrect
  181. */
  182. status_t SNVS_HP_RTC_SetDatetime(SNVS_Type *base, const snvs_hp_rtc_datetime_t *datetime);
  183. /*!
  184. * @brief Gets the SNVS RTC time and stores it in the given time structure.
  185. *
  186. * @param base SNVS peripheral base address
  187. * @param datetime Pointer to the structure where the date and time details are stored.
  188. */
  189. void SNVS_HP_RTC_GetDatetime(SNVS_Type *base, snvs_hp_rtc_datetime_t *datetime);
  190. /*!
  191. * @brief Sets the SNVS RTC alarm time.
  192. *
  193. * The function sets the RTC alarm. It also checks whether the specified alarm time
  194. * is greater than the present time. If not, the function does not set the alarm
  195. * and returns an error.
  196. *
  197. * @param base SNVS peripheral base address
  198. * @param alarmTime Pointer to the structure where the alarm time is stored.
  199. *
  200. * @return kStatus_Success: success in setting the SNVS RTC alarm
  201. * kStatus_InvalidArgument: Error because the alarm datetime format is incorrect
  202. * kStatus_Fail: Error because the alarm time has already passed
  203. */
  204. status_t SNVS_HP_RTC_SetAlarm(SNVS_Type *base, const snvs_hp_rtc_datetime_t *alarmTime);
  205. /*!
  206. * @brief Returns the SNVS RTC alarm time.
  207. *
  208. * @param base SNVS peripheral base address
  209. * @param datetime Pointer to the structure where the alarm date and time details are stored.
  210. */
  211. void SNVS_HP_RTC_GetAlarm(SNVS_Type *base, snvs_hp_rtc_datetime_t *datetime);
  212. #if (defined(FSL_FEATURE_SNVS_HAS_SRTC) && (FSL_FEATURE_SNVS_HAS_SRTC > 0))
  213. /*!
  214. * @brief The function synchronizes RTC counter value with SRTC.
  215. *
  216. * @param base SNVS peripheral base address
  217. */
  218. void SNVS_HP_RTC_TimeSynchronize(SNVS_Type *base);
  219. #endif /* FSL_FEATURE_SNVS_HAS_SRTC */
  220. /*! @}*/
  221. /*!
  222. * @name Interrupt Interface
  223. * @{
  224. */
  225. /*!
  226. * @brief Enables the selected SNVS interrupts.
  227. *
  228. * @param base SNVS peripheral base address
  229. * @param mask The interrupts to enable. This is a logical OR of members of the
  230. * enumeration :: _snvs_hp_interrupts_t
  231. */
  232. static inline void SNVS_HP_RTC_EnableInterrupts(SNVS_Type *base, uint32_t mask)
  233. {
  234. base->HPCR |= mask;
  235. }
  236. /*!
  237. * @brief Disables the selected SNVS interrupts.
  238. *
  239. * @param base SNVS peripheral base address
  240. * @param mask The interrupts to disable. This is a logical OR of members of the
  241. * enumeration :: _snvs_hp_interrupts_t
  242. */
  243. static inline void SNVS_HP_RTC_DisableInterrupts(SNVS_Type *base, uint32_t mask)
  244. {
  245. base->HPCR &= ~mask;
  246. }
  247. /*!
  248. * @brief Gets the enabled SNVS interrupts.
  249. *
  250. * @param base SNVS peripheral base address
  251. *
  252. * @return The enabled interrupts. This is the logical OR of members of the
  253. * enumeration :: _snvs_hp_interrupts_t
  254. */
  255. uint32_t SNVS_HP_RTC_GetEnabledInterrupts(SNVS_Type *base);
  256. /*! @}*/
  257. /*!
  258. * @name Status Interface
  259. * @{
  260. */
  261. /*!
  262. * @brief Gets the SNVS status flags.
  263. *
  264. * @param base SNVS peripheral base address
  265. *
  266. * @return The status flags. This is the logical OR of members of the
  267. * enumeration :: _snvs_hp_status_flags_t
  268. */
  269. uint32_t SNVS_HP_RTC_GetStatusFlags(SNVS_Type *base);
  270. /*!
  271. * @brief Clears the SNVS status flags.
  272. *
  273. * @param base SNVS peripheral base address
  274. * @param mask The status flags to clear. This is a logical OR of members of the
  275. * enumeration :: _snvs_hp_status_flags_t
  276. */
  277. static inline void SNVS_HP_RTC_ClearStatusFlags(SNVS_Type *base, uint32_t mask)
  278. {
  279. base->HPSR |= mask;
  280. }
  281. /*! @}*/
  282. /*!
  283. * @name Timer Start and Stop
  284. * @{
  285. */
  286. /*!
  287. * @brief Starts the SNVS RTC time counter.
  288. *
  289. * @param base SNVS peripheral base address
  290. */
  291. static inline void SNVS_HP_RTC_StartTimer(SNVS_Type *base)
  292. {
  293. base->HPCR |= SNVS_HPCR_RTC_EN_MASK;
  294. while (0U == (base->HPCR & SNVS_HPCR_RTC_EN_MASK))
  295. {
  296. }
  297. }
  298. /*!
  299. * @brief Stops the SNVS RTC time counter.
  300. *
  301. * @param base SNVS peripheral base address
  302. */
  303. static inline void SNVS_HP_RTC_StopTimer(SNVS_Type *base)
  304. {
  305. base->HPCR &= ~SNVS_HPCR_RTC_EN_MASK;
  306. while ((base->HPCR & SNVS_HPCR_RTC_EN_MASK) != 0U)
  307. {
  308. }
  309. }
  310. /*! @}*/
  311. /*!
  312. * @brief Enable or disable master key selection.
  313. *
  314. * @param base SNVS peripheral base address
  315. * @param enable Pass true to enable, false to disable.
  316. */
  317. static inline void SNVS_HP_EnableMasterKeySelection(SNVS_Type *base, bool enable)
  318. {
  319. if (enable)
  320. {
  321. base->HPCOMR |= SNVS_HPCOMR_MKS_EN_MASK;
  322. }
  323. else
  324. {
  325. base->HPCOMR &= (~SNVS_HPCOMR_MKS_EN_MASK);
  326. }
  327. }
  328. /*!
  329. * @brief Trigger to program Zeroizable Master Key.
  330. *
  331. * @param base SNVS peripheral base address
  332. */
  333. static inline void SNVS_HP_ProgramZeroizableMasterKey(SNVS_Type *base)
  334. {
  335. base->HPCOMR |= SNVS_HPCOMR_PROG_ZMK_MASK;
  336. }
  337. /*!
  338. * @brief Trigger SSM State Transition
  339. *
  340. * Trigger state transition of the system security monitor (SSM). It results only
  341. * the following transitions of the SSM:
  342. * - Check State -> Non-Secure (when Non-Secure Boot and not in Fab Configuration)
  343. * - Check State --> Trusted (when Secure Boot or in Fab Configuration )
  344. * - Trusted State --> Secure
  345. * - Secure State --> Trusted
  346. * - Soft Fail --> Non-Secure
  347. *
  348. * @param base SNVS peripheral base address
  349. */
  350. static inline void SNVS_HP_ChangeSSMState(SNVS_Type *base)
  351. {
  352. base->HPCOMR |= SNVS_HPCOMR_SSM_ST_MASK;
  353. }
  354. /*!
  355. * @brief Trigger Software Fatal Security Violation
  356. *
  357. * The result SSM state transition is:
  358. * - Check State -> Soft Fail
  359. * - Non-Secure State -> Soft Fail
  360. * - Trusted State -> Soft Fail
  361. * - Secure State -> Soft Fail
  362. *
  363. * @param base SNVS peripheral base address
  364. */
  365. static inline void SNVS_HP_SetSoftwareFatalSecurityViolation(SNVS_Type *base)
  366. {
  367. base->HPCOMR |= SNVS_HPCOMR_SW_FSV_MASK;
  368. }
  369. /*!
  370. * @brief Trigger Software Security Violation
  371. *
  372. * The result SSM state transition is:
  373. * - Check -> Non-Secure
  374. * - Trusted -> Soft Fail
  375. * - Secure -> Soft Fail
  376. *
  377. * @param base SNVS peripheral base address
  378. */
  379. static inline void SNVS_HP_SetSoftwareSecurityViolation(SNVS_Type *base)
  380. {
  381. base->HPCOMR |= SNVS_HPCOMR_SW_SV_MASK;
  382. }
  383. /*!
  384. * @brief Get current SSM State
  385. *
  386. * @param base SNVS peripheral base address
  387. * @return Current SSM state
  388. */
  389. static inline snvs_hp_ssm_state_t SNVS_HP_GetSSMState(SNVS_Type *base)
  390. {
  391. return (snvs_hp_ssm_state_t)((uint32_t)((base->HPSR & SNVS_HPSR_SSM_STATE_MASK) >> SNVS_HPSR_SSM_STATE_SHIFT));
  392. }
  393. /*!
  394. * @brief Reset the SNVS LP section.
  395. *
  396. * Reset the LP section except SRTC and Time alarm.
  397. *
  398. * @param base SNVS peripheral base address
  399. */
  400. static inline void SNVS_HP_ResetLP(SNVS_Type *base)
  401. {
  402. base->HPCOMR |= SNVS_HPCOMR_LP_SWR_MASK;
  403. }
  404. /*!
  405. * @name High Assurance Counter (HAC)
  406. * @{
  407. */
  408. /*!
  409. * @brief Enable or disable the High Assurance Counter (HAC)
  410. *
  411. * @param base SNVS peripheral base address
  412. * @param enable Pass true to enable, false to disable.
  413. */
  414. static inline void SNVS_HP_EnableHighAssuranceCounter(SNVS_Type *base, bool enable)
  415. {
  416. if (enable)
  417. {
  418. base->HPCOMR |= SNVS_HPCOMR_HAC_EN_MASK;
  419. }
  420. else
  421. {
  422. base->HPCOMR &= (~SNVS_HPCOMR_HAC_EN_MASK);
  423. }
  424. }
  425. /*!
  426. * @brief Start or stop the High Assurance Counter (HAC)
  427. *
  428. * @param base SNVS peripheral base address
  429. * @param start Pass true to start, false to stop.
  430. */
  431. static inline void SNVS_HP_StartHighAssuranceCounter(SNVS_Type *base, bool start)
  432. {
  433. if (start)
  434. {
  435. base->HPCOMR &= (~SNVS_HPCOMR_HAC_STOP_MASK);
  436. }
  437. else
  438. {
  439. base->HPCOMR |= SNVS_HPCOMR_HAC_STOP_MASK;
  440. }
  441. }
  442. /*!
  443. * @brief Set the High Assurance Counter (HAC) initialize value.
  444. *
  445. * @param base SNVS peripheral base address
  446. * @param value The initial value to set.
  447. */
  448. static inline void SNVS_HP_SetHighAssuranceCounterInitialValue(SNVS_Type *base, uint32_t value)
  449. {
  450. base->HPHACIVR = value;
  451. }
  452. /*!
  453. * @brief Load the High Assurance Counter (HAC)
  454. *
  455. * This function loads the HAC initialize value to counter register.
  456. *
  457. * @param base SNVS peripheral base address
  458. */
  459. static inline void SNVS_HP_LoadHighAssuranceCounter(SNVS_Type *base)
  460. {
  461. base->HPCOMR |= SNVS_HPCOMR_HAC_LOAD_MASK;
  462. }
  463. /*!
  464. * @brief Get the current High Assurance Counter (HAC) value
  465. *
  466. * @param base SNVS peripheral base address
  467. * @return HAC currnet value.
  468. */
  469. static inline uint32_t SNVS_HP_GetHighAssuranceCounter(SNVS_Type *base)
  470. {
  471. return base->HPHACR;
  472. }
  473. /*!
  474. * @brief Clear the High Assurance Counter (HAC)
  475. *
  476. * This function can be called in a functional or soft fail state. When the HAC
  477. * is enabled:
  478. * - If the HAC is cleared in the soft fail state, the SSM transitions to the
  479. * hard fail state immediately;
  480. * - If the HAC is cleared in functional state, the SSM will transition to
  481. * hard fail immediately after transitioning to soft fail.
  482. *
  483. * @param base SNVS peripheral base address
  484. */
  485. static inline void SNVS_HP_ClearHighAssuranceCounter(SNVS_Type *base)
  486. {
  487. base->HPCOMR |= SNVS_HPCOMR_HAC_CLEAR_MASK;
  488. }
  489. /*!
  490. * @brief Lock the High Assurance Counter (HAC)
  491. *
  492. * Once locked, the HAC initialize value could not be changed, the HAC enable
  493. * status could not be changed. This could only be unlocked by system reset.
  494. *
  495. * @param base SNVS peripheral base address
  496. */
  497. static inline void SNVS_HP_LockHighAssuranceCounter(SNVS_Type *base)
  498. {
  499. base->HPLR |= SNVS_HPLR_HAC_L_MASK;
  500. }
  501. /*! @}*/
  502. /*!
  503. * @brief Get the SNVS HP status flags.
  504. *
  505. * The flags are returned as the OR'ed value f the
  506. * enumeration :: _snvs_hp_status_flags_t.
  507. *
  508. * @param base SNVS peripheral base address
  509. * @return The OR'ed value of status flags.
  510. */
  511. static inline uint32_t SNVS_HP_GetStatusFlags(SNVS_Type *base)
  512. {
  513. return base->HPSR;
  514. }
  515. /*!
  516. * @brief Clear the SNVS HP status flags.
  517. *
  518. * The flags to clear are passed in as the OR'ed value of the
  519. * enumeration :: _snvs_hp_status_flags_t.
  520. * Only these flags could be cleared using this API.
  521. * - @ref kSNVS_RTC_PeriodicInterruptFlag
  522. * - @ref kSNVS_RTC_AlarmInterruptFlag
  523. *
  524. * @param base SNVS peripheral base address
  525. * @param mask OR'ed value of the flags to clear.
  526. */
  527. static inline void SNVS_HP_ClearStatusFlags(SNVS_Type *base, uint32_t mask)
  528. {
  529. base->HPSR = mask;
  530. }
  531. /*!
  532. * @brief Get the SNVS HP security violation status flags.
  533. *
  534. * The flags are returned as the OR'ed value of the
  535. * enumeration :: _snvs_hp_sv_status_flags_t.
  536. *
  537. * @param base SNVS peripheral base address
  538. * @return The OR'ed value of security violation status flags.
  539. */
  540. static inline uint32_t SNVS_HP_GetSecurityViolationStatusFlags(SNVS_Type *base)
  541. {
  542. return base->HPSVSR;
  543. }
  544. /*!
  545. * @brief Clear the SNVS HP security violation status flags.
  546. *
  547. * The flags to clear are passed in as the OR'ed value of the
  548. * enumeration :: _snvs_hp_sv_status_flags_t.
  549. * Only these flags could be cleared using this API.
  550. *
  551. * - @ref kSNVS_ZMK_EccFailFlag
  552. * - @ref kSNVS_Violation0Flag
  553. * - @ref kSNVS_Violation1Flag
  554. * - @ref kSNVS_Violation2Flag
  555. * - kSNVS_Violation3Flag
  556. * - @ref kSNVS_Violation4Flag
  557. * - @ref kSNVS_Violation5Flag
  558. *
  559. * @param base SNVS peripheral base address
  560. * @param mask OR'ed value of the flags to clear.
  561. */
  562. static inline void SNVS_HP_ClearSecurityViolationStatusFlags(SNVS_Type *base, uint32_t mask)
  563. {
  564. base->HPSVSR = mask;
  565. }
  566. #if defined(FSL_FEATURE_SNVS_HAS_SET_LOCK) && (FSL_FEATURE_SNVS_HAS_SET_LOCK > 0)
  567. /*!
  568. * brief Set SNVS HP Set locks.
  569. *
  570. * param base SNVS peripheral base address
  571. *
  572. */
  573. void SNVS_HP_SetLocks(SNVS_Type *base);
  574. #endif /* FSL_FEATURE_SNVS_HAS_SET_LOCK */
  575. #if defined(__cplusplus)
  576. }
  577. #endif
  578. /*! @}*/
  579. #endif /* _FSL_SNVS_HP_H_ */