/* ** ################################################################### ** Compilers: Keil ARM C/C++ Compiler ** Freescale C/C++ for Embedded ARM ** GNU C Compiler ** IAR ANSI C/C++ Compiler for ARM ** ** Reference manual: K22P121M120SF7RM, Rev. 1, March 24, 2014 ** Version: rev. 2.5, 2014-05-06 ** Build: b140604 ** ** Abstract: ** Extension to the CMSIS register access layer header. ** ** Copyright (c) 2014 Freescale Semiconductor, Inc. ** All rights reserved. ** ** Redistribution and use in source and binary forms, with or without modification, ** are permitted provided that the following conditions are met: ** ** o Redistributions of source code must retain the above copyright notice, this list ** of conditions and the following disclaimer. ** ** o Redistributions in binary form must reproduce the above copyright notice, this ** list of conditions and the following disclaimer in the documentation and/or ** other materials provided with the distribution. ** ** o Neither the name of Freescale Semiconductor, Inc. nor the names of its ** contributors may be used to endorse or promote products derived from this ** software without specific prior written permission. ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE ** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ** ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ** (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; ** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ** ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ** ** http: www.freescale.com ** mail: support@freescale.com ** ** Revisions: ** - rev. 1.0 (2013-07-23) ** Initial version. ** - rev. 1.1 (2013-09-17) ** RM rev. 0.4 update. ** - rev. 2.0 (2013-10-29) ** Register accessor macros added to the memory map. ** Symbols for Processor Expert memory map compatibility added to the memory map. ** Startup file for gcc has been updated according to CMSIS 3.2. ** System initialization updated. ** - rev. 2.1 (2013-10-30) ** Definition of BITBAND macros updated to support peripherals with 32-bit acces disabled. ** - rev. 2.2 (2013-12-20) ** Update according to reference manual rev. 0.6, ** - rev. 2.3 (2014-01-13) ** Update according to reference manual rev. 0.61, ** - rev. 2.4 (2014-02-10) ** The declaration of clock configurations has been moved to separate header file system_MK22F51212.h ** - rev. 2.5 (2014-05-06) ** Update according to reference manual rev. 1.0, ** Update of system and startup files. ** Module access macro module_BASES replaced by module_BASE_PTRS. ** ** ################################################################### */ /* * WARNING! DO NOT EDIT THIS FILE DIRECTLY! * * This file was generated automatically and any changes may be lost. */ #ifndef __HW_RCM_REGISTERS_H__ #define __HW_RCM_REGISTERS_H__ #include "MK22F51212.h" #include "fsl_bitaccess.h" /* * MK22F51212 RCM * * Reset Control Module * * Registers defined in this header file: * - HW_RCM_SRS0 - System Reset Status Register 0 * - HW_RCM_SRS1 - System Reset Status Register 1 * - HW_RCM_RPFC - Reset Pin Filter Control register * - HW_RCM_RPFW - Reset Pin Filter Width register * - HW_RCM_MR - Mode Register * - HW_RCM_SSRS0 - Sticky System Reset Status Register 0 * - HW_RCM_SSRS1 - Sticky System Reset Status Register 1 * * - hw_rcm_t - Struct containing all module registers. */ #define HW_RCM_INSTANCE_COUNT (1U) /*!< Number of instances of the RCM module. */ /******************************************************************************* * HW_RCM_SRS0 - System Reset Status Register 0 ******************************************************************************/ /*! * @brief HW_RCM_SRS0 - System Reset Status Register 0 (RO) * * Reset value: 0x82U * * This register includes read-only status flags to indicate the source of the * most recent reset. The reset state of these bits depends on what caused the MCU * to reset. The reset value of this register depends on the reset source: POR * (including LVD) - 0x82 LVD (without POR) - 0x02 VLLS mode wakeup due to RESET * pin assertion - 0x41 VLLS mode wakeup due to other wakeup sources - 0x01 Other * reset - a bit is set if its corresponding reset source caused the reset */ typedef union _hw_rcm_srs0 { uint8_t U; struct _hw_rcm_srs0_bitfields { uint8_t WAKEUP : 1; /*!< [0] Low Leakage Wakeup Reset */ uint8_t LVD : 1; /*!< [1] Low-Voltage Detect Reset */ uint8_t LOC : 1; /*!< [2] Loss-of-Clock Reset */ uint8_t LOL : 1; /*!< [3] Loss-of-Lock Reset */ uint8_t RESERVED0 : 1; /*!< [4] */ uint8_t WDOGb : 1; /*!< [5] Watchdog */ uint8_t PIN : 1; /*!< [6] External Reset Pin */ uint8_t POR : 1; /*!< [7] Power-On Reset */ } B; } hw_rcm_srs0_t; /*! * @name Constants and macros for entire RCM_SRS0 register */ /*@{*/ #define HW_RCM_SRS0_ADDR(x) ((x) + 0x0U) #define HW_RCM_SRS0(x) (*(__I hw_rcm_srs0_t *) HW_RCM_SRS0_ADDR(x)) #define HW_RCM_SRS0_RD(x) (HW_RCM_SRS0(x).U) /*@}*/ /* * Constants & macros for individual RCM_SRS0 bitfields */ /*! * @name Register RCM_SRS0, field WAKEUP[0] (RO) * * Indicates a reset has been caused by an enabled LLWU module wakeup source * while the chip was in a low leakage mode. In LLS mode, the RESET pin is the only * wakeup source that can cause this reset. Any enabled wakeup source in a VLLSx * mode causes a reset. This bit is cleared by any reset except WAKEUP. * * Values: * - 0 - Reset not caused by LLWU module wakeup source * - 1 - Reset caused by LLWU module wakeup source */ /*@{*/ #define BP_RCM_SRS0_WAKEUP (0U) /*!< Bit position for RCM_SRS0_WAKEUP. */ #define BM_RCM_SRS0_WAKEUP (0x01U) /*!< Bit mask for RCM_SRS0_WAKEUP. */ #define BS_RCM_SRS0_WAKEUP (1U) /*!< Bit field size in bits for RCM_SRS0_WAKEUP. */ /*! @brief Read current value of the RCM_SRS0_WAKEUP field. */ #define BR_RCM_SRS0_WAKEUP(x) (BITBAND_ACCESS8(HW_RCM_SRS0_ADDR(x), BP_RCM_SRS0_WAKEUP)) /*@}*/ /*! * @name Register RCM_SRS0, field LVD[1] (RO) * * If PMC_LVDSC1[LVDRE] is set and the supply drops below the LVD trip voltage, * an LVD reset occurs. This field is also set by POR. * * Values: * - 0 - Reset not caused by LVD trip or POR * - 1 - Reset caused by LVD trip or POR */ /*@{*/ #define BP_RCM_SRS0_LVD (1U) /*!< Bit position for RCM_SRS0_LVD. */ #define BM_RCM_SRS0_LVD (0x02U) /*!< Bit mask for RCM_SRS0_LVD. */ #define BS_RCM_SRS0_LVD (1U) /*!< Bit field size in bits for RCM_SRS0_LVD. */ /*! @brief Read current value of the RCM_SRS0_LVD field. */ #define BR_RCM_SRS0_LVD(x) (BITBAND_ACCESS8(HW_RCM_SRS0_ADDR(x), BP_RCM_SRS0_LVD)) /*@}*/ /*! * @name Register RCM_SRS0, field LOC[2] (RO) * * Indicates a reset has been caused by a loss of external clock. The MCG clock * monitor must be enabled for a loss of clock to be detected. Refer to the * detailed MCG description for information on enabling the clock monitor. * * Values: * - 0 - Reset not caused by a loss of external clock. * - 1 - Reset caused by a loss of external clock. */ /*@{*/ #define BP_RCM_SRS0_LOC (2U) /*!< Bit position for RCM_SRS0_LOC. */ #define BM_RCM_SRS0_LOC (0x04U) /*!< Bit mask for RCM_SRS0_LOC. */ #define BS_RCM_SRS0_LOC (1U) /*!< Bit field size in bits for RCM_SRS0_LOC. */ /*! @brief Read current value of the RCM_SRS0_LOC field. */ #define BR_RCM_SRS0_LOC(x) (BITBAND_ACCESS8(HW_RCM_SRS0_ADDR(x), BP_RCM_SRS0_LOC)) /*@}*/ /*! * @name Register RCM_SRS0, field LOL[3] (RO) * * Indicates a reset has been caused by a loss of lock in the MCG PLL. See the * MCG description for information on the loss-of-clock event. * * Values: * - 0 - Reset not caused by a loss of lock in the PLL * - 1 - Reset caused by a loss of lock in the PLL */ /*@{*/ #define BP_RCM_SRS0_LOL (3U) /*!< Bit position for RCM_SRS0_LOL. */ #define BM_RCM_SRS0_LOL (0x08U) /*!< Bit mask for RCM_SRS0_LOL. */ #define BS_RCM_SRS0_LOL (1U) /*!< Bit field size in bits for RCM_SRS0_LOL. */ /*! @brief Read current value of the RCM_SRS0_LOL field. */ #define BR_RCM_SRS0_LOL(x) (BITBAND_ACCESS8(HW_RCM_SRS0_ADDR(x), BP_RCM_SRS0_LOL)) /*@}*/ /*! * @name Register RCM_SRS0, field WDOG[5] (RO) * * Indicates a reset has been caused by the watchdog timer timing out. This * reset source can be blocked by disabling the watchdog. * * Values: * - 0 - Reset not caused by watchdog timeout * - 1 - Reset caused by watchdog timeout */ /*@{*/ #define BP_RCM_SRS0_WDOG (5U) /*!< Bit position for RCM_SRS0_WDOG. */ #define BM_RCM_SRS0_WDOG (0x20U) /*!< Bit mask for RCM_SRS0_WDOG. */ #define BS_RCM_SRS0_WDOG (1U) /*!< Bit field size in bits for RCM_SRS0_WDOG. */ /*! @brief Read current value of the RCM_SRS0_WDOG field. */ #define BR_RCM_SRS0_WDOG(x) (BITBAND_ACCESS8(HW_RCM_SRS0_ADDR(x), BP_RCM_SRS0_WDOG)) /*@}*/ /*! * @name Register RCM_SRS0, field PIN[6] (RO) * * Indicates a reset has been caused by an active-low level on the external * RESET pin. * * Values: * - 0 - Reset not caused by external reset pin * - 1 - Reset caused by external reset pin */ /*@{*/ #define BP_RCM_SRS0_PIN (6U) /*!< Bit position for RCM_SRS0_PIN. */ #define BM_RCM_SRS0_PIN (0x40U) /*!< Bit mask for RCM_SRS0_PIN. */ #define BS_RCM_SRS0_PIN (1U) /*!< Bit field size in bits for RCM_SRS0_PIN. */ /*! @brief Read current value of the RCM_SRS0_PIN field. */ #define BR_RCM_SRS0_PIN(x) (BITBAND_ACCESS8(HW_RCM_SRS0_ADDR(x), BP_RCM_SRS0_PIN)) /*@}*/ /*! * @name Register RCM_SRS0, field POR[7] (RO) * * Indicates a reset has been caused by the power-on detection logic. Because * the internal supply voltage was ramping up at the time, the low-voltage reset * (LVD) status bit is also set to indicate that the reset occurred while the * internal supply was below the LVD threshold. * * Values: * - 0 - Reset not caused by POR * - 1 - Reset caused by POR */ /*@{*/ #define BP_RCM_SRS0_POR (7U) /*!< Bit position for RCM_SRS0_POR. */ #define BM_RCM_SRS0_POR (0x80U) /*!< Bit mask for RCM_SRS0_POR. */ #define BS_RCM_SRS0_POR (1U) /*!< Bit field size in bits for RCM_SRS0_POR. */ /*! @brief Read current value of the RCM_SRS0_POR field. */ #define BR_RCM_SRS0_POR(x) (BITBAND_ACCESS8(HW_RCM_SRS0_ADDR(x), BP_RCM_SRS0_POR)) /*@}*/ /******************************************************************************* * HW_RCM_SRS1 - System Reset Status Register 1 ******************************************************************************/ /*! * @brief HW_RCM_SRS1 - System Reset Status Register 1 (RO) * * Reset value: 0x00U * * This register includes read-only status flags to indicate the source of the * most recent reset. The reset state of these bits depends on what caused the MCU * to reset. The reset value of this register depends on the reset source: POR * (including LVD) - 0x00 LVD (without POR) - 0x00 VLLS mode wakeup - 0x00 Other * reset - a bit is set if its corresponding reset source caused the reset */ typedef union _hw_rcm_srs1 { uint8_t U; struct _hw_rcm_srs1_bitfields { uint8_t JTAG : 1; /*!< [0] JTAG Generated Reset */ uint8_t LOCKUP : 1; /*!< [1] Core Lockup */ uint8_t SW : 1; /*!< [2] Software */ uint8_t MDM_AP : 1; /*!< [3] MDM-AP System Reset Request */ uint8_t EZPT : 1; /*!< [4] EzPort Reset */ uint8_t SACKERR : 1; /*!< [5] Stop Mode Acknowledge Error Reset */ uint8_t RESERVED0 : 2; /*!< [7:6] */ } B; } hw_rcm_srs1_t; /*! * @name Constants and macros for entire RCM_SRS1 register */ /*@{*/ #define HW_RCM_SRS1_ADDR(x) ((x) + 0x1U) #define HW_RCM_SRS1(x) (*(__I hw_rcm_srs1_t *) HW_RCM_SRS1_ADDR(x)) #define HW_RCM_SRS1_RD(x) (HW_RCM_SRS1(x).U) /*@}*/ /* * Constants & macros for individual RCM_SRS1 bitfields */ /*! * @name Register RCM_SRS1, field JTAG[0] (RO) * * Indicates a reset has been caused by JTAG selection of certain IR codes: * EZPORT, EXTEST, HIGHZ, and CLAMP. * * Values: * - 0 - Reset not caused by JTAG * - 1 - Reset caused by JTAG */ /*@{*/ #define BP_RCM_SRS1_JTAG (0U) /*!< Bit position for RCM_SRS1_JTAG. */ #define BM_RCM_SRS1_JTAG (0x01U) /*!< Bit mask for RCM_SRS1_JTAG. */ #define BS_RCM_SRS1_JTAG (1U) /*!< Bit field size in bits for RCM_SRS1_JTAG. */ /*! @brief Read current value of the RCM_SRS1_JTAG field. */ #define BR_RCM_SRS1_JTAG(x) (BITBAND_ACCESS8(HW_RCM_SRS1_ADDR(x), BP_RCM_SRS1_JTAG)) /*@}*/ /*! * @name Register RCM_SRS1, field LOCKUP[1] (RO) * * Indicates a reset has been caused by the ARM core indication of a LOCKUP * event. * * Values: * - 0 - Reset not caused by core LOCKUP event * - 1 - Reset caused by core LOCKUP event */ /*@{*/ #define BP_RCM_SRS1_LOCKUP (1U) /*!< Bit position for RCM_SRS1_LOCKUP. */ #define BM_RCM_SRS1_LOCKUP (0x02U) /*!< Bit mask for RCM_SRS1_LOCKUP. */ #define BS_RCM_SRS1_LOCKUP (1U) /*!< Bit field size in bits for RCM_SRS1_LOCKUP. */ /*! @brief Read current value of the RCM_SRS1_LOCKUP field. */ #define BR_RCM_SRS1_LOCKUP(x) (BITBAND_ACCESS8(HW_RCM_SRS1_ADDR(x), BP_RCM_SRS1_LOCKUP)) /*@}*/ /*! * @name Register RCM_SRS1, field SW[2] (RO) * * Indicates a reset has been caused by software setting of SYSRESETREQ bit in * Application Interrupt and Reset Control Register in the ARM core. * * Values: * - 0 - Reset not caused by software setting of SYSRESETREQ bit * - 1 - Reset caused by software setting of SYSRESETREQ bit */ /*@{*/ #define BP_RCM_SRS1_SW (2U) /*!< Bit position for RCM_SRS1_SW. */ #define BM_RCM_SRS1_SW (0x04U) /*!< Bit mask for RCM_SRS1_SW. */ #define BS_RCM_SRS1_SW (1U) /*!< Bit field size in bits for RCM_SRS1_SW. */ /*! @brief Read current value of the RCM_SRS1_SW field. */ #define BR_RCM_SRS1_SW(x) (BITBAND_ACCESS8(HW_RCM_SRS1_ADDR(x), BP_RCM_SRS1_SW)) /*@}*/ /*! * @name Register RCM_SRS1, field MDM_AP[3] (RO) * * Indicates a reset has been caused by the host debugger system setting of the * System Reset Request bit in the MDM-AP Control Register. * * Values: * - 0 - Reset not caused by host debugger system setting of the System Reset * Request bit * - 1 - Reset caused by host debugger system setting of the System Reset * Request bit */ /*@{*/ #define BP_RCM_SRS1_MDM_AP (3U) /*!< Bit position for RCM_SRS1_MDM_AP. */ #define BM_RCM_SRS1_MDM_AP (0x08U) /*!< Bit mask for RCM_SRS1_MDM_AP. */ #define BS_RCM_SRS1_MDM_AP (1U) /*!< Bit field size in bits for RCM_SRS1_MDM_AP. */ /*! @brief Read current value of the RCM_SRS1_MDM_AP field. */ #define BR_RCM_SRS1_MDM_AP(x) (BITBAND_ACCESS8(HW_RCM_SRS1_ADDR(x), BP_RCM_SRS1_MDM_AP)) /*@}*/ /*! * @name Register RCM_SRS1, field EZPT[4] (RO) * * Indicates a reset has been caused by EzPort receiving the RESET command while * the device is in EzPort mode. * * Values: * - 0 - Reset not caused by EzPort receiving the RESET command while the device * is in EzPort mode * - 1 - Reset caused by EzPort receiving the RESET command while the device is * in EzPort mode */ /*@{*/ #define BP_RCM_SRS1_EZPT (4U) /*!< Bit position for RCM_SRS1_EZPT. */ #define BM_RCM_SRS1_EZPT (0x10U) /*!< Bit mask for RCM_SRS1_EZPT. */ #define BS_RCM_SRS1_EZPT (1U) /*!< Bit field size in bits for RCM_SRS1_EZPT. */ /*! @brief Read current value of the RCM_SRS1_EZPT field. */ #define BR_RCM_SRS1_EZPT(x) (BITBAND_ACCESS8(HW_RCM_SRS1_ADDR(x), BP_RCM_SRS1_EZPT)) /*@}*/ /*! * @name Register RCM_SRS1, field SACKERR[5] (RO) * * Indicates that after an attempt to enter Stop mode, a reset has been caused * by a failure of one or more peripherals to acknowledge within approximately one * second to enter stop mode. * * Values: * - 0 - Reset not caused by peripheral failure to acknowledge attempt to enter * stop mode * - 1 - Reset caused by peripheral failure to acknowledge attempt to enter stop * mode */ /*@{*/ #define BP_RCM_SRS1_SACKERR (5U) /*!< Bit position for RCM_SRS1_SACKERR. */ #define BM_RCM_SRS1_SACKERR (0x20U) /*!< Bit mask for RCM_SRS1_SACKERR. */ #define BS_RCM_SRS1_SACKERR (1U) /*!< Bit field size in bits for RCM_SRS1_SACKERR. */ /*! @brief Read current value of the RCM_SRS1_SACKERR field. */ #define BR_RCM_SRS1_SACKERR(x) (BITBAND_ACCESS8(HW_RCM_SRS1_ADDR(x), BP_RCM_SRS1_SACKERR)) /*@}*/ /******************************************************************************* * HW_RCM_RPFC - Reset Pin Filter Control register ******************************************************************************/ /*! * @brief HW_RCM_RPFC - Reset Pin Filter Control register (RW) * * Reset value: 0x00U * * The reset values of bits 2-0 are for Chip POR only. They are unaffected by * other reset types. The bus clock filter is reset when disabled or when entering * stop mode. The LPO filter is reset when disabled . */ typedef union _hw_rcm_rpfc { uint8_t U; struct _hw_rcm_rpfc_bitfields { uint8_t RSTFLTSRW : 2; /*!< [1:0] Reset Pin Filter Select in Run and * Wait Modes */ uint8_t RSTFLTSS : 1; /*!< [2] Reset Pin Filter Select in Stop Mode */ uint8_t RESERVED0 : 5; /*!< [7:3] */ } B; } hw_rcm_rpfc_t; /*! * @name Constants and macros for entire RCM_RPFC register */ /*@{*/ #define HW_RCM_RPFC_ADDR(x) ((x) + 0x4U) #define HW_RCM_RPFC(x) (*(__IO hw_rcm_rpfc_t *) HW_RCM_RPFC_ADDR(x)) #define HW_RCM_RPFC_RD(x) (HW_RCM_RPFC(x).U) #define HW_RCM_RPFC_WR(x, v) (HW_RCM_RPFC(x).U = (v)) #define HW_RCM_RPFC_SET(x, v) (HW_RCM_RPFC_WR(x, HW_RCM_RPFC_RD(x) | (v))) #define HW_RCM_RPFC_CLR(x, v) (HW_RCM_RPFC_WR(x, HW_RCM_RPFC_RD(x) & ~(v))) #define HW_RCM_RPFC_TOG(x, v) (HW_RCM_RPFC_WR(x, HW_RCM_RPFC_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual RCM_RPFC bitfields */ /*! * @name Register RCM_RPFC, field RSTFLTSRW[1:0] (RW) * * Selects how the reset pin filter is enabled in run and wait modes. * * Values: * - 00 - All filtering disabled * - 01 - Bus clock filter enabled for normal operation * - 10 - LPO clock filter enabled for normal operation * - 11 - Reserved */ /*@{*/ #define BP_RCM_RPFC_RSTFLTSRW (0U) /*!< Bit position for RCM_RPFC_RSTFLTSRW. */ #define BM_RCM_RPFC_RSTFLTSRW (0x03U) /*!< Bit mask for RCM_RPFC_RSTFLTSRW. */ #define BS_RCM_RPFC_RSTFLTSRW (2U) /*!< Bit field size in bits for RCM_RPFC_RSTFLTSRW. */ /*! @brief Read current value of the RCM_RPFC_RSTFLTSRW field. */ #define BR_RCM_RPFC_RSTFLTSRW(x) (HW_RCM_RPFC(x).B.RSTFLTSRW) /*! @brief Format value for bitfield RCM_RPFC_RSTFLTSRW. */ #define BF_RCM_RPFC_RSTFLTSRW(v) ((uint8_t)((uint8_t)(v) << BP_RCM_RPFC_RSTFLTSRW) & BM_RCM_RPFC_RSTFLTSRW) /*! @brief Set the RSTFLTSRW field to a new value. */ #define BW_RCM_RPFC_RSTFLTSRW(x, v) (HW_RCM_RPFC_WR(x, (HW_RCM_RPFC_RD(x) & ~BM_RCM_RPFC_RSTFLTSRW) | BF_RCM_RPFC_RSTFLTSRW(v))) /*@}*/ /*! * @name Register RCM_RPFC, field RSTFLTSS[2] (RW) * * Selects how the reset pin filter is enabled in Stop and VLPS modes , and also * during LLS and VLLS modes. On exit from VLLS mode, this bit should be * reconfigured before clearing PMC_REGSC[ACKISO]. * * Values: * - 0 - All filtering disabled * - 1 - LPO clock filter enabled */ /*@{*/ #define BP_RCM_RPFC_RSTFLTSS (2U) /*!< Bit position for RCM_RPFC_RSTFLTSS. */ #define BM_RCM_RPFC_RSTFLTSS (0x04U) /*!< Bit mask for RCM_RPFC_RSTFLTSS. */ #define BS_RCM_RPFC_RSTFLTSS (1U) /*!< Bit field size in bits for RCM_RPFC_RSTFLTSS. */ /*! @brief Read current value of the RCM_RPFC_RSTFLTSS field. */ #define BR_RCM_RPFC_RSTFLTSS(x) (BITBAND_ACCESS8(HW_RCM_RPFC_ADDR(x), BP_RCM_RPFC_RSTFLTSS)) /*! @brief Format value for bitfield RCM_RPFC_RSTFLTSS. */ #define BF_RCM_RPFC_RSTFLTSS(v) ((uint8_t)((uint8_t)(v) << BP_RCM_RPFC_RSTFLTSS) & BM_RCM_RPFC_RSTFLTSS) /*! @brief Set the RSTFLTSS field to a new value. */ #define BW_RCM_RPFC_RSTFLTSS(x, v) (BITBAND_ACCESS8(HW_RCM_RPFC_ADDR(x), BP_RCM_RPFC_RSTFLTSS) = (v)) /*@}*/ /******************************************************************************* * HW_RCM_RPFW - Reset Pin Filter Width register ******************************************************************************/ /*! * @brief HW_RCM_RPFW - Reset Pin Filter Width register (RW) * * Reset value: 0x00U * * The reset values of the bits in the RSTFLTSEL field are for Chip POR only. * They are unaffected by other reset types. */ typedef union _hw_rcm_rpfw { uint8_t U; struct _hw_rcm_rpfw_bitfields { uint8_t RSTFLTSEL : 5; /*!< [4:0] Reset Pin Filter Bus Clock Select */ uint8_t RESERVED0 : 3; /*!< [7:5] */ } B; } hw_rcm_rpfw_t; /*! * @name Constants and macros for entire RCM_RPFW register */ /*@{*/ #define HW_RCM_RPFW_ADDR(x) ((x) + 0x5U) #define HW_RCM_RPFW(x) (*(__IO hw_rcm_rpfw_t *) HW_RCM_RPFW_ADDR(x)) #define HW_RCM_RPFW_RD(x) (HW_RCM_RPFW(x).U) #define HW_RCM_RPFW_WR(x, v) (HW_RCM_RPFW(x).U = (v)) #define HW_RCM_RPFW_SET(x, v) (HW_RCM_RPFW_WR(x, HW_RCM_RPFW_RD(x) | (v))) #define HW_RCM_RPFW_CLR(x, v) (HW_RCM_RPFW_WR(x, HW_RCM_RPFW_RD(x) & ~(v))) #define HW_RCM_RPFW_TOG(x, v) (HW_RCM_RPFW_WR(x, HW_RCM_RPFW_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual RCM_RPFW bitfields */ /*! * @name Register RCM_RPFW, field RSTFLTSEL[4:0] (RW) * * Selects the reset pin bus clock filter width. * * Values: * - 00000 - Bus clock filter count is 1 * - 00001 - Bus clock filter count is 2 * - 00010 - Bus clock filter count is 3 * - 00011 - Bus clock filter count is 4 * - 00100 - Bus clock filter count is 5 * - 00101 - Bus clock filter count is 6 * - 00110 - Bus clock filter count is 7 * - 00111 - Bus clock filter count is 8 * - 01000 - Bus clock filter count is 9 * - 01001 - Bus clock filter count is 10 * - 01010 - Bus clock filter count is 11 * - 01011 - Bus clock filter count is 12 * - 01100 - Bus clock filter count is 13 * - 01101 - Bus clock filter count is 14 * - 01110 - Bus clock filter count is 15 * - 01111 - Bus clock filter count is 16 * - 10000 - Bus clock filter count is 17 * - 10001 - Bus clock filter count is 18 * - 10010 - Bus clock filter count is 19 * - 10011 - Bus clock filter count is 20 * - 10100 - Bus clock filter count is 21 * - 10101 - Bus clock filter count is 22 * - 10110 - Bus clock filter count is 23 * - 10111 - Bus clock filter count is 24 * - 11000 - Bus clock filter count is 25 * - 11001 - Bus clock filter count is 26 * - 11010 - Bus clock filter count is 27 * - 11011 - Bus clock filter count is 28 * - 11100 - Bus clock filter count is 29 * - 11101 - Bus clock filter count is 30 * - 11110 - Bus clock filter count is 31 * - 11111 - Bus clock filter count is 32 */ /*@{*/ #define BP_RCM_RPFW_RSTFLTSEL (0U) /*!< Bit position for RCM_RPFW_RSTFLTSEL. */ #define BM_RCM_RPFW_RSTFLTSEL (0x1FU) /*!< Bit mask for RCM_RPFW_RSTFLTSEL. */ #define BS_RCM_RPFW_RSTFLTSEL (5U) /*!< Bit field size in bits for RCM_RPFW_RSTFLTSEL. */ /*! @brief Read current value of the RCM_RPFW_RSTFLTSEL field. */ #define BR_RCM_RPFW_RSTFLTSEL(x) (HW_RCM_RPFW(x).B.RSTFLTSEL) /*! @brief Format value for bitfield RCM_RPFW_RSTFLTSEL. */ #define BF_RCM_RPFW_RSTFLTSEL(v) ((uint8_t)((uint8_t)(v) << BP_RCM_RPFW_RSTFLTSEL) & BM_RCM_RPFW_RSTFLTSEL) /*! @brief Set the RSTFLTSEL field to a new value. */ #define BW_RCM_RPFW_RSTFLTSEL(x, v) (HW_RCM_RPFW_WR(x, (HW_RCM_RPFW_RD(x) & ~BM_RCM_RPFW_RSTFLTSEL) | BF_RCM_RPFW_RSTFLTSEL(v))) /*@}*/ /******************************************************************************* * HW_RCM_MR - Mode Register ******************************************************************************/ /*! * @brief HW_RCM_MR - Mode Register (RO) * * Reset value: 0x00U * * This register includes read-only status flags to indicate the state of the * mode pins during the last Chip Reset. */ typedef union _hw_rcm_mr { uint8_t U; struct _hw_rcm_mr_bitfields { uint8_t RESERVED0 : 1; /*!< [0] */ uint8_t EZP_MS : 1; /*!< [1] EZP_MS_B pin state */ uint8_t RESERVED1 : 6; /*!< [7:2] */ } B; } hw_rcm_mr_t; /*! * @name Constants and macros for entire RCM_MR register */ /*@{*/ #define HW_RCM_MR_ADDR(x) ((x) + 0x7U) #define HW_RCM_MR(x) (*(__I hw_rcm_mr_t *) HW_RCM_MR_ADDR(x)) #define HW_RCM_MR_RD(x) (HW_RCM_MR(x).U) /*@}*/ /* * Constants & macros for individual RCM_MR bitfields */ /*! * @name Register RCM_MR, field EZP_MS[1] (RO) * * Reflects the state of the EZP_MS pin during the last Chip Reset * * Values: * - 0 - Pin deasserted (logic 1) * - 1 - Pin asserted (logic 0) */ /*@{*/ #define BP_RCM_MR_EZP_MS (1U) /*!< Bit position for RCM_MR_EZP_MS. */ #define BM_RCM_MR_EZP_MS (0x02U) /*!< Bit mask for RCM_MR_EZP_MS. */ #define BS_RCM_MR_EZP_MS (1U) /*!< Bit field size in bits for RCM_MR_EZP_MS. */ /*! @brief Read current value of the RCM_MR_EZP_MS field. */ #define BR_RCM_MR_EZP_MS(x) (BITBAND_ACCESS8(HW_RCM_MR_ADDR(x), BP_RCM_MR_EZP_MS)) /*@}*/ /******************************************************************************* * HW_RCM_SSRS0 - Sticky System Reset Status Register 0 ******************************************************************************/ /*! * @brief HW_RCM_SSRS0 - Sticky System Reset Status Register 0 (RW) * * Reset value: 0x82U * * This register includes status flags to indicate all reset sources since the * last POR, LVD or VLLS Wakeup that have not been cleared by software. Software * can clear the status flags by writing a logic one to a flag. */ typedef union _hw_rcm_ssrs0 { uint8_t U; struct _hw_rcm_ssrs0_bitfields { uint8_t SWAKEUP : 1; /*!< [0] Sticky Low Leakage Wakeup Reset */ uint8_t SLVD : 1; /*!< [1] Sticky Low-Voltage Detect Reset */ uint8_t SLOC : 1; /*!< [2] Sticky Loss-of-Clock Reset */ uint8_t SLOL : 1; /*!< [3] Sticky Loss-of-Lock Reset */ uint8_t RESERVED0 : 1; /*!< [4] */ uint8_t SWDOG : 1; /*!< [5] Sticky Watchdog */ uint8_t SPIN : 1; /*!< [6] Sticky External Reset Pin */ uint8_t SPOR : 1; /*!< [7] Sticky Power-On Reset */ } B; } hw_rcm_ssrs0_t; /*! * @name Constants and macros for entire RCM_SSRS0 register */ /*@{*/ #define HW_RCM_SSRS0_ADDR(x) ((x) + 0x8U) #define HW_RCM_SSRS0(x) (*(__IO hw_rcm_ssrs0_t *) HW_RCM_SSRS0_ADDR(x)) #define HW_RCM_SSRS0_RD(x) (HW_RCM_SSRS0(x).U) #define HW_RCM_SSRS0_WR(x, v) (HW_RCM_SSRS0(x).U = (v)) #define HW_RCM_SSRS0_SET(x, v) (HW_RCM_SSRS0_WR(x, HW_RCM_SSRS0_RD(x) | (v))) #define HW_RCM_SSRS0_CLR(x, v) (HW_RCM_SSRS0_WR(x, HW_RCM_SSRS0_RD(x) & ~(v))) #define HW_RCM_SSRS0_TOG(x, v) (HW_RCM_SSRS0_WR(x, HW_RCM_SSRS0_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual RCM_SSRS0 bitfields */ /*! * @name Register RCM_SSRS0, field SWAKEUP[0] (W1C) * * Indicates a reset has been caused by an enabled LLWU modulewakeup source * while the chip was in a low leakage mode. In LLS mode, the RESET pin is the only * wakeup source that can cause this reset. Any enabled wakeup source in a VLLSx * mode causes a reset. * * Values: * - 0 - Reset not caused by LLWU module wakeup source * - 1 - Reset caused by LLWU module wakeup source */ /*@{*/ #define BP_RCM_SSRS0_SWAKEUP (0U) /*!< Bit position for RCM_SSRS0_SWAKEUP. */ #define BM_RCM_SSRS0_SWAKEUP (0x01U) /*!< Bit mask for RCM_SSRS0_SWAKEUP. */ #define BS_RCM_SSRS0_SWAKEUP (1U) /*!< Bit field size in bits for RCM_SSRS0_SWAKEUP. */ /*! @brief Read current value of the RCM_SSRS0_SWAKEUP field. */ #define BR_RCM_SSRS0_SWAKEUP(x) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SWAKEUP)) /*! @brief Format value for bitfield RCM_SSRS0_SWAKEUP. */ #define BF_RCM_SSRS0_SWAKEUP(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS0_SWAKEUP) & BM_RCM_SSRS0_SWAKEUP) /*! @brief Set the SWAKEUP field to a new value. */ #define BW_RCM_SSRS0_SWAKEUP(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SWAKEUP) = (v)) /*@}*/ /*! * @name Register RCM_SSRS0, field SLVD[1] (W1C) * * If PMC_LVDSC1[LVDRE] is set and the supply drops below the LVD trip voltage, * an LVD reset occurs. This field is also set by POR. * * Values: * - 0 - Reset not caused by LVD trip or POR * - 1 - Reset caused by LVD trip or POR */ /*@{*/ #define BP_RCM_SSRS0_SLVD (1U) /*!< Bit position for RCM_SSRS0_SLVD. */ #define BM_RCM_SSRS0_SLVD (0x02U) /*!< Bit mask for RCM_SSRS0_SLVD. */ #define BS_RCM_SSRS0_SLVD (1U) /*!< Bit field size in bits for RCM_SSRS0_SLVD. */ /*! @brief Read current value of the RCM_SSRS0_SLVD field. */ #define BR_RCM_SSRS0_SLVD(x) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SLVD)) /*! @brief Format value for bitfield RCM_SSRS0_SLVD. */ #define BF_RCM_SSRS0_SLVD(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS0_SLVD) & BM_RCM_SSRS0_SLVD) /*! @brief Set the SLVD field to a new value. */ #define BW_RCM_SSRS0_SLVD(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SLVD) = (v)) /*@}*/ /*! * @name Register RCM_SSRS0, field SLOC[2] (W1C) * * Indicates a reset has been caused by a loss of external clock. The MCG clock * monitor must be enabled for a loss of clock to be detected. Refer to the * detailed MCG description for information on enabling the clock monitor. * * Values: * - 0 - Reset not caused by a loss of external clock. * - 1 - Reset caused by a loss of external clock. */ /*@{*/ #define BP_RCM_SSRS0_SLOC (2U) /*!< Bit position for RCM_SSRS0_SLOC. */ #define BM_RCM_SSRS0_SLOC (0x04U) /*!< Bit mask for RCM_SSRS0_SLOC. */ #define BS_RCM_SSRS0_SLOC (1U) /*!< Bit field size in bits for RCM_SSRS0_SLOC. */ /*! @brief Read current value of the RCM_SSRS0_SLOC field. */ #define BR_RCM_SSRS0_SLOC(x) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SLOC)) /*! @brief Format value for bitfield RCM_SSRS0_SLOC. */ #define BF_RCM_SSRS0_SLOC(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS0_SLOC) & BM_RCM_SSRS0_SLOC) /*! @brief Set the SLOC field to a new value. */ #define BW_RCM_SSRS0_SLOC(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SLOC) = (v)) /*@}*/ /*! * @name Register RCM_SSRS0, field SLOL[3] (W1C) * * Indicates a reset has been caused by a loss of lock in the MCG PLL. See the * MCG description for information on the loss-of-clock event. * * Values: * - 0 - Reset not caused by a loss of lock in the PLL * - 1 - Reset caused by a loss of lock in the PLL */ /*@{*/ #define BP_RCM_SSRS0_SLOL (3U) /*!< Bit position for RCM_SSRS0_SLOL. */ #define BM_RCM_SSRS0_SLOL (0x08U) /*!< Bit mask for RCM_SSRS0_SLOL. */ #define BS_RCM_SSRS0_SLOL (1U) /*!< Bit field size in bits for RCM_SSRS0_SLOL. */ /*! @brief Read current value of the RCM_SSRS0_SLOL field. */ #define BR_RCM_SSRS0_SLOL(x) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SLOL)) /*! @brief Format value for bitfield RCM_SSRS0_SLOL. */ #define BF_RCM_SSRS0_SLOL(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS0_SLOL) & BM_RCM_SSRS0_SLOL) /*! @brief Set the SLOL field to a new value. */ #define BW_RCM_SSRS0_SLOL(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SLOL) = (v)) /*@}*/ /*! * @name Register RCM_SSRS0, field SWDOG[5] (W1C) * * Indicates a reset has been caused by the watchdog timer timing out. This * reset source can be blocked by disabling the watchdog. * * Values: * - 0 - Reset not caused by watchdog timeout * - 1 - Reset caused by watchdog timeout */ /*@{*/ #define BP_RCM_SSRS0_SWDOG (5U) /*!< Bit position for RCM_SSRS0_SWDOG. */ #define BM_RCM_SSRS0_SWDOG (0x20U) /*!< Bit mask for RCM_SSRS0_SWDOG. */ #define BS_RCM_SSRS0_SWDOG (1U) /*!< Bit field size in bits for RCM_SSRS0_SWDOG. */ /*! @brief Read current value of the RCM_SSRS0_SWDOG field. */ #define BR_RCM_SSRS0_SWDOG(x) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SWDOG)) /*! @brief Format value for bitfield RCM_SSRS0_SWDOG. */ #define BF_RCM_SSRS0_SWDOG(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS0_SWDOG) & BM_RCM_SSRS0_SWDOG) /*! @brief Set the SWDOG field to a new value. */ #define BW_RCM_SSRS0_SWDOG(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SWDOG) = (v)) /*@}*/ /*! * @name Register RCM_SSRS0, field SPIN[6] (W1C) * * Indicates a reset has been caused by an active-low level on the external * RESET pin. * * Values: * - 0 - Reset not caused by external reset pin * - 1 - Reset caused by external reset pin */ /*@{*/ #define BP_RCM_SSRS0_SPIN (6U) /*!< Bit position for RCM_SSRS0_SPIN. */ #define BM_RCM_SSRS0_SPIN (0x40U) /*!< Bit mask for RCM_SSRS0_SPIN. */ #define BS_RCM_SSRS0_SPIN (1U) /*!< Bit field size in bits for RCM_SSRS0_SPIN. */ /*! @brief Read current value of the RCM_SSRS0_SPIN field. */ #define BR_RCM_SSRS0_SPIN(x) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SPIN)) /*! @brief Format value for bitfield RCM_SSRS0_SPIN. */ #define BF_RCM_SSRS0_SPIN(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS0_SPIN) & BM_RCM_SSRS0_SPIN) /*! @brief Set the SPIN field to a new value. */ #define BW_RCM_SSRS0_SPIN(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SPIN) = (v)) /*@}*/ /*! * @name Register RCM_SSRS0, field SPOR[7] (W1C) * * Indicates a reset has been caused by the power-on detection logic. Because * the internal supply voltage was ramping up at the time, the low-voltage reset * (LVD) status bit is also set to indicate that the reset occurred while the * internal supply was below the LVD threshold. * * Values: * - 0 - Reset not caused by POR * - 1 - Reset caused by POR */ /*@{*/ #define BP_RCM_SSRS0_SPOR (7U) /*!< Bit position for RCM_SSRS0_SPOR. */ #define BM_RCM_SSRS0_SPOR (0x80U) /*!< Bit mask for RCM_SSRS0_SPOR. */ #define BS_RCM_SSRS0_SPOR (1U) /*!< Bit field size in bits for RCM_SSRS0_SPOR. */ /*! @brief Read current value of the RCM_SSRS0_SPOR field. */ #define BR_RCM_SSRS0_SPOR(x) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SPOR)) /*! @brief Format value for bitfield RCM_SSRS0_SPOR. */ #define BF_RCM_SSRS0_SPOR(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS0_SPOR) & BM_RCM_SSRS0_SPOR) /*! @brief Set the SPOR field to a new value. */ #define BW_RCM_SSRS0_SPOR(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS0_ADDR(x), BP_RCM_SSRS0_SPOR) = (v)) /*@}*/ /******************************************************************************* * HW_RCM_SSRS1 - Sticky System Reset Status Register 1 ******************************************************************************/ /*! * @brief HW_RCM_SSRS1 - Sticky System Reset Status Register 1 (RW) * * Reset value: 0x00U * * This register includes status flags to indicate all reset sources since the * last POR, LVD or VLLS Wakeup that have not been cleared by software. Software * can clear the status flags by writing a logic one to a flag. */ typedef union _hw_rcm_ssrs1 { uint8_t U; struct _hw_rcm_ssrs1_bitfields { uint8_t SJTAG : 1; /*!< [0] Sticky JTAG Generated Reset */ uint8_t SLOCKUP : 1; /*!< [1] Sticky Core Lockup */ uint8_t SSW : 1; /*!< [2] Sticky Software */ uint8_t SMDM_AP : 1; /*!< [3] Sticky MDM-AP System Reset Request */ uint8_t SEZPT : 1; /*!< [4] Sticky EzPort Reset */ uint8_t SSACKERR : 1; /*!< [5] Sticky Stop Mode Acknowledge Error * Reset */ uint8_t RESERVED0 : 2; /*!< [7:6] */ } B; } hw_rcm_ssrs1_t; /*! * @name Constants and macros for entire RCM_SSRS1 register */ /*@{*/ #define HW_RCM_SSRS1_ADDR(x) ((x) + 0x9U) #define HW_RCM_SSRS1(x) (*(__IO hw_rcm_ssrs1_t *) HW_RCM_SSRS1_ADDR(x)) #define HW_RCM_SSRS1_RD(x) (HW_RCM_SSRS1(x).U) #define HW_RCM_SSRS1_WR(x, v) (HW_RCM_SSRS1(x).U = (v)) #define HW_RCM_SSRS1_SET(x, v) (HW_RCM_SSRS1_WR(x, HW_RCM_SSRS1_RD(x) | (v))) #define HW_RCM_SSRS1_CLR(x, v) (HW_RCM_SSRS1_WR(x, HW_RCM_SSRS1_RD(x) & ~(v))) #define HW_RCM_SSRS1_TOG(x, v) (HW_RCM_SSRS1_WR(x, HW_RCM_SSRS1_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual RCM_SSRS1 bitfields */ /*! * @name Register RCM_SSRS1, field SJTAG[0] (W1C) * * Indicates a reset has been caused by JTAG selection of certain IR codes: * EZPORT, EXTEST, HIGHZ, and CLAMP. * * Values: * - 0 - Reset not caused by JTAG * - 1 - Reset caused by JTAG */ /*@{*/ #define BP_RCM_SSRS1_SJTAG (0U) /*!< Bit position for RCM_SSRS1_SJTAG. */ #define BM_RCM_SSRS1_SJTAG (0x01U) /*!< Bit mask for RCM_SSRS1_SJTAG. */ #define BS_RCM_SSRS1_SJTAG (1U) /*!< Bit field size in bits for RCM_SSRS1_SJTAG. */ /*! @brief Read current value of the RCM_SSRS1_SJTAG field. */ #define BR_RCM_SSRS1_SJTAG(x) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SJTAG)) /*! @brief Format value for bitfield RCM_SSRS1_SJTAG. */ #define BF_RCM_SSRS1_SJTAG(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS1_SJTAG) & BM_RCM_SSRS1_SJTAG) /*! @brief Set the SJTAG field to a new value. */ #define BW_RCM_SSRS1_SJTAG(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SJTAG) = (v)) /*@}*/ /*! * @name Register RCM_SSRS1, field SLOCKUP[1] (W1C) * * Indicates a reset has been caused by the ARM core indication of a LOCKUP * event. * * Values: * - 0 - Reset not caused by core LOCKUP event * - 1 - Reset caused by core LOCKUP event */ /*@{*/ #define BP_RCM_SSRS1_SLOCKUP (1U) /*!< Bit position for RCM_SSRS1_SLOCKUP. */ #define BM_RCM_SSRS1_SLOCKUP (0x02U) /*!< Bit mask for RCM_SSRS1_SLOCKUP. */ #define BS_RCM_SSRS1_SLOCKUP (1U) /*!< Bit field size in bits for RCM_SSRS1_SLOCKUP. */ /*! @brief Read current value of the RCM_SSRS1_SLOCKUP field. */ #define BR_RCM_SSRS1_SLOCKUP(x) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SLOCKUP)) /*! @brief Format value for bitfield RCM_SSRS1_SLOCKUP. */ #define BF_RCM_SSRS1_SLOCKUP(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS1_SLOCKUP) & BM_RCM_SSRS1_SLOCKUP) /*! @brief Set the SLOCKUP field to a new value. */ #define BW_RCM_SSRS1_SLOCKUP(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SLOCKUP) = (v)) /*@}*/ /*! * @name Register RCM_SSRS1, field SSW[2] (W1C) * * Indicates a reset has been caused by software setting of SYSRESETREQ bit in * Application Interrupt and Reset Control Register in the ARM core. * * Values: * - 0 - Reset not caused by software setting of SYSRESETREQ bit * - 1 - Reset caused by software setting of SYSRESETREQ bit */ /*@{*/ #define BP_RCM_SSRS1_SSW (2U) /*!< Bit position for RCM_SSRS1_SSW. */ #define BM_RCM_SSRS1_SSW (0x04U) /*!< Bit mask for RCM_SSRS1_SSW. */ #define BS_RCM_SSRS1_SSW (1U) /*!< Bit field size in bits for RCM_SSRS1_SSW. */ /*! @brief Read current value of the RCM_SSRS1_SSW field. */ #define BR_RCM_SSRS1_SSW(x) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SSW)) /*! @brief Format value for bitfield RCM_SSRS1_SSW. */ #define BF_RCM_SSRS1_SSW(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS1_SSW) & BM_RCM_SSRS1_SSW) /*! @brief Set the SSW field to a new value. */ #define BW_RCM_SSRS1_SSW(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SSW) = (v)) /*@}*/ /*! * @name Register RCM_SSRS1, field SMDM_AP[3] (W1C) * * Indicates a reset has been caused by the host debugger system setting of the * System Reset Request bit in the MDM-AP Control Register. * * Values: * - 0 - Reset not caused by host debugger system setting of the System Reset * Request bit * - 1 - Reset caused by host debugger system setting of the System Reset * Request bit */ /*@{*/ #define BP_RCM_SSRS1_SMDM_AP (3U) /*!< Bit position for RCM_SSRS1_SMDM_AP. */ #define BM_RCM_SSRS1_SMDM_AP (0x08U) /*!< Bit mask for RCM_SSRS1_SMDM_AP. */ #define BS_RCM_SSRS1_SMDM_AP (1U) /*!< Bit field size in bits for RCM_SSRS1_SMDM_AP. */ /*! @brief Read current value of the RCM_SSRS1_SMDM_AP field. */ #define BR_RCM_SSRS1_SMDM_AP(x) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SMDM_AP)) /*! @brief Format value for bitfield RCM_SSRS1_SMDM_AP. */ #define BF_RCM_SSRS1_SMDM_AP(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS1_SMDM_AP) & BM_RCM_SSRS1_SMDM_AP) /*! @brief Set the SMDM_AP field to a new value. */ #define BW_RCM_SSRS1_SMDM_AP(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SMDM_AP) = (v)) /*@}*/ /*! * @name Register RCM_SSRS1, field SEZPT[4] (W1C) * * Indicates a reset has been caused by EzPort receiving the RESET command while * the device is in EzPort mode. * * Values: * - 0 - Reset not caused by EzPort receiving the RESET command while the device * is in EzPort mode * - 1 - Reset caused by EzPort receiving the RESET command while the device is * in EzPort mode */ /*@{*/ #define BP_RCM_SSRS1_SEZPT (4U) /*!< Bit position for RCM_SSRS1_SEZPT. */ #define BM_RCM_SSRS1_SEZPT (0x10U) /*!< Bit mask for RCM_SSRS1_SEZPT. */ #define BS_RCM_SSRS1_SEZPT (1U) /*!< Bit field size in bits for RCM_SSRS1_SEZPT. */ /*! @brief Read current value of the RCM_SSRS1_SEZPT field. */ #define BR_RCM_SSRS1_SEZPT(x) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SEZPT)) /*! @brief Format value for bitfield RCM_SSRS1_SEZPT. */ #define BF_RCM_SSRS1_SEZPT(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS1_SEZPT) & BM_RCM_SSRS1_SEZPT) /*! @brief Set the SEZPT field to a new value. */ #define BW_RCM_SSRS1_SEZPT(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SEZPT) = (v)) /*@}*/ /*! * @name Register RCM_SSRS1, field SSACKERR[5] (W1C) * * Indicates that after an attempt to enter Stop mode, a reset has been caused * by a failure of one or more peripherals to acknowledge within approximately one * second to enter stop mode. * * Values: * - 0 - Reset not caused by peripheral failure to acknowledge attempt to enter * stop mode * - 1 - Reset caused by peripheral failure to acknowledge attempt to enter stop * mode */ /*@{*/ #define BP_RCM_SSRS1_SSACKERR (5U) /*!< Bit position for RCM_SSRS1_SSACKERR. */ #define BM_RCM_SSRS1_SSACKERR (0x20U) /*!< Bit mask for RCM_SSRS1_SSACKERR. */ #define BS_RCM_SSRS1_SSACKERR (1U) /*!< Bit field size in bits for RCM_SSRS1_SSACKERR. */ /*! @brief Read current value of the RCM_SSRS1_SSACKERR field. */ #define BR_RCM_SSRS1_SSACKERR(x) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SSACKERR)) /*! @brief Format value for bitfield RCM_SSRS1_SSACKERR. */ #define BF_RCM_SSRS1_SSACKERR(v) ((uint8_t)((uint8_t)(v) << BP_RCM_SSRS1_SSACKERR) & BM_RCM_SSRS1_SSACKERR) /*! @brief Set the SSACKERR field to a new value. */ #define BW_RCM_SSRS1_SSACKERR(x, v) (BITBAND_ACCESS8(HW_RCM_SSRS1_ADDR(x), BP_RCM_SSRS1_SSACKERR) = (v)) /*@}*/ /******************************************************************************* * hw_rcm_t - module struct ******************************************************************************/ /*! * @brief All RCM module registers. */ #pragma pack(1) typedef struct _hw_rcm { __I hw_rcm_srs0_t SRS0; /*!< [0x0] System Reset Status Register 0 */ __I hw_rcm_srs1_t SRS1; /*!< [0x1] System Reset Status Register 1 */ uint8_t _reserved0[2]; __IO hw_rcm_rpfc_t RPFC; /*!< [0x4] Reset Pin Filter Control register */ __IO hw_rcm_rpfw_t RPFW; /*!< [0x5] Reset Pin Filter Width register */ uint8_t _reserved1[1]; __I hw_rcm_mr_t MR; /*!< [0x7] Mode Register */ __IO hw_rcm_ssrs0_t SSRS0; /*!< [0x8] Sticky System Reset Status Register 0 */ __IO hw_rcm_ssrs1_t SSRS1; /*!< [0x9] Sticky System Reset Status Register 1 */ } hw_rcm_t; #pragma pack() /*! @brief Macro to access all RCM registers. */ /*! @param x RCM module instance base address. */ /*! @return Reference (not a pointer) to the registers struct. To get a pointer to the struct, * use the '&' operator, like &HW_RCM(RCM_BASE). */ #define HW_RCM(x) (*(hw_rcm_t *)(x)) #endif /* __HW_RCM_REGISTERS_H__ */ /* EOF */