change some io settings for TWR-K22F-120M

Dependents:   twr_helloworld

Committer:
Jasper_lee
Date:
Tue Dec 23 03:35:08 2014 +0000
Revision:
0:b16d94660a33
change some io setting used in TWR-K22F120M

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jasper_lee 0:b16d94660a33 1 /*
Jasper_lee 0:b16d94660a33 2 ** ###################################################################
Jasper_lee 0:b16d94660a33 3 ** Processor: MKL25Z128VLK4
Jasper_lee 0:b16d94660a33 4 ** Compilers: ARM Compiler
Jasper_lee 0:b16d94660a33 5 ** Freescale C/C++ for Embedded ARM
Jasper_lee 0:b16d94660a33 6 ** GNU C Compiler
Jasper_lee 0:b16d94660a33 7 ** IAR ANSI C/C++ Compiler for ARM
Jasper_lee 0:b16d94660a33 8 **
Jasper_lee 0:b16d94660a33 9 ** Reference manual: KL25RM, Rev.1, Jun 2012
Jasper_lee 0:b16d94660a33 10 ** Version: rev. 1.1, 2012-06-21
Jasper_lee 0:b16d94660a33 11 **
Jasper_lee 0:b16d94660a33 12 ** Abstract:
Jasper_lee 0:b16d94660a33 13 ** CMSIS Peripheral Access Layer for MKL25Z4
Jasper_lee 0:b16d94660a33 14 **
Jasper_lee 0:b16d94660a33 15 ** Copyright: 1997 - 2012 Freescale Semiconductor, Inc. All Rights Reserved.
Jasper_lee 0:b16d94660a33 16 **
Jasper_lee 0:b16d94660a33 17 ** http: www.freescale.com
Jasper_lee 0:b16d94660a33 18 ** mail: support@freescale.com
Jasper_lee 0:b16d94660a33 19 **
Jasper_lee 0:b16d94660a33 20 ** Revisions:
Jasper_lee 0:b16d94660a33 21 ** - rev. 1.0 (2012-06-13)
Jasper_lee 0:b16d94660a33 22 ** Initial version.
Jasper_lee 0:b16d94660a33 23 ** - rev. 1.1 (2012-06-21)
Jasper_lee 0:b16d94660a33 24 ** Update according to reference manual rev. 1.
Jasper_lee 0:b16d94660a33 25 **
Jasper_lee 0:b16d94660a33 26 ** ###################################################################
Jasper_lee 0:b16d94660a33 27 */
Jasper_lee 0:b16d94660a33 28
Jasper_lee 0:b16d94660a33 29 /**
Jasper_lee 0:b16d94660a33 30 * @file MKL25Z4.h
Jasper_lee 0:b16d94660a33 31 * @version 1.1
Jasper_lee 0:b16d94660a33 32 * @date 2012-06-21
Jasper_lee 0:b16d94660a33 33 * @brief CMSIS Peripheral Access Layer for MKL25Z4
Jasper_lee 0:b16d94660a33 34 *
Jasper_lee 0:b16d94660a33 35 * CMSIS Peripheral Access Layer for MKL25Z4
Jasper_lee 0:b16d94660a33 36 */
Jasper_lee 0:b16d94660a33 37
Jasper_lee 0:b16d94660a33 38 #if !defined(MKL25Z4_H_)
Jasper_lee 0:b16d94660a33 39 #define MKL25Z4_H_ /**< Symbol preventing repeated inclusion */
Jasper_lee 0:b16d94660a33 40
Jasper_lee 0:b16d94660a33 41 /** Memory map major version (memory maps with equal major version number are
Jasper_lee 0:b16d94660a33 42 * compatible) */
Jasper_lee 0:b16d94660a33 43 #define MCU_MEM_MAP_VERSION 0x0100u
Jasper_lee 0:b16d94660a33 44 /** Memory map minor version */
Jasper_lee 0:b16d94660a33 45 #define MCU_MEM_MAP_VERSION_MINOR 0x0001u
Jasper_lee 0:b16d94660a33 46
Jasper_lee 0:b16d94660a33 47
Jasper_lee 0:b16d94660a33 48 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 49 -- Interrupt vector numbers
Jasper_lee 0:b16d94660a33 50 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 51
Jasper_lee 0:b16d94660a33 52 /**
Jasper_lee 0:b16d94660a33 53 * @addtogroup Interrupt_vector_numbers Interrupt vector numbers
Jasper_lee 0:b16d94660a33 54 * @{
Jasper_lee 0:b16d94660a33 55 */
Jasper_lee 0:b16d94660a33 56
Jasper_lee 0:b16d94660a33 57 /** Interrupt Number Definitions */
Jasper_lee 0:b16d94660a33 58 typedef enum IRQn {
Jasper_lee 0:b16d94660a33 59 /* Core interrupts */
Jasper_lee 0:b16d94660a33 60 NonMaskableInt_IRQn = -14, /**< Non Maskable Interrupt */
Jasper_lee 0:b16d94660a33 61 HardFault_IRQn = -13, /**< Cortex-M0 SV Hard Fault Interrupt */
Jasper_lee 0:b16d94660a33 62 SVCall_IRQn = -5, /**< Cortex-M0 SV Call Interrupt */
Jasper_lee 0:b16d94660a33 63 PendSV_IRQn = -2, /**< Cortex-M0 Pend SV Interrupt */
Jasper_lee 0:b16d94660a33 64 SysTick_IRQn = -1, /**< Cortex-M0 System Tick Interrupt */
Jasper_lee 0:b16d94660a33 65
Jasper_lee 0:b16d94660a33 66 /* Device specific interrupts */
Jasper_lee 0:b16d94660a33 67 DMA0_IRQn = 0, /**< DMA channel 0 transfer complete interrupt */
Jasper_lee 0:b16d94660a33 68 DMA1_IRQn = 1, /**< DMA channel 1 transfer complete interrupt */
Jasper_lee 0:b16d94660a33 69 DMA2_IRQn = 2, /**< DMA channel 2 transfer complete interrupt */
Jasper_lee 0:b16d94660a33 70 DMA3_IRQn = 3, /**< DMA channel 3 transfer complete interrupt */
Jasper_lee 0:b16d94660a33 71 Reserved20_IRQn = 4, /**< Reserved interrupt 20 */
Jasper_lee 0:b16d94660a33 72 FTFA_IRQn = 5, /**< FTFA interrupt */
Jasper_lee 0:b16d94660a33 73 LVD_LVW_IRQn = 6, /**< Low Voltage Detect, Low Voltage Warning */
Jasper_lee 0:b16d94660a33 74 LLW_IRQn = 7, /**< Low Leakage Wakeup */
Jasper_lee 0:b16d94660a33 75 I2C0_IRQn = 8, /**< I2C0 interrupt */
Jasper_lee 0:b16d94660a33 76 I2C1_IRQn = 9, /**< I2C0 interrupt 25 */
Jasper_lee 0:b16d94660a33 77 SPI0_IRQn = 10, /**< SPI0 interrupt */
Jasper_lee 0:b16d94660a33 78 SPI1_IRQn = 11, /**< SPI1 interrupt */
Jasper_lee 0:b16d94660a33 79 UART0_IRQn = 12, /**< UART0 status/error interrupt */
Jasper_lee 0:b16d94660a33 80 UART1_IRQn = 13, /**< UART1 status/error interrupt */
Jasper_lee 0:b16d94660a33 81 UART2_IRQn = 14, /**< UART2 status/error interrupt */
Jasper_lee 0:b16d94660a33 82 ADC0_IRQn = 15, /**< ADC0 interrupt */
Jasper_lee 0:b16d94660a33 83 CMP0_IRQn = 16, /**< CMP0 interrupt */
Jasper_lee 0:b16d94660a33 84 TPM0_IRQn = 17, /**< TPM0 fault, overflow and channels interrupt */
Jasper_lee 0:b16d94660a33 85 TPM1_IRQn = 18, /**< TPM1 fault, overflow and channels interrupt */
Jasper_lee 0:b16d94660a33 86 TPM2_IRQn = 19, /**< TPM2 fault, overflow and channels interrupt */
Jasper_lee 0:b16d94660a33 87 RTC_IRQn = 20, /**< RTC interrupt */
Jasper_lee 0:b16d94660a33 88 RTC_Seconds_IRQn = 21, /**< RTC seconds interrupt */
Jasper_lee 0:b16d94660a33 89 PIT_IRQn = 22, /**< PIT timer interrupt */
Jasper_lee 0:b16d94660a33 90 Reserved39_IRQn = 23, /**< Reserved interrupt 39 */
Jasper_lee 0:b16d94660a33 91 USB0_IRQn = 24, /**< USB0 interrupt */
Jasper_lee 0:b16d94660a33 92 DAC0_IRQn = 25, /**< DAC interrupt */
Jasper_lee 0:b16d94660a33 93 TSI0_IRQn = 26, /**< TSI0 interrupt */
Jasper_lee 0:b16d94660a33 94 MCG_IRQn = 27, /**< MCG interrupt */
Jasper_lee 0:b16d94660a33 95 LPTimer_IRQn = 28, /**< LPTimer interrupt */
Jasper_lee 0:b16d94660a33 96 Reserved45_IRQn = 29, /**< Reserved interrupt 45 */
Jasper_lee 0:b16d94660a33 97 PORTA_IRQn = 30, /**< Port A interrupt */
Jasper_lee 0:b16d94660a33 98 PORTD_IRQn = 31 /**< Port D interrupt */
Jasper_lee 0:b16d94660a33 99 } IRQn_Type;
Jasper_lee 0:b16d94660a33 100
Jasper_lee 0:b16d94660a33 101 /**
Jasper_lee 0:b16d94660a33 102 * @}
Jasper_lee 0:b16d94660a33 103 */ /* end of group Interrupt_vector_numbers */
Jasper_lee 0:b16d94660a33 104
Jasper_lee 0:b16d94660a33 105
Jasper_lee 0:b16d94660a33 106 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 107 -- Cortex M0 Core Configuration
Jasper_lee 0:b16d94660a33 108 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 109
Jasper_lee 0:b16d94660a33 110 /**
Jasper_lee 0:b16d94660a33 111 * @addtogroup Cortex_Core_Configuration Cortex M0 Core Configuration
Jasper_lee 0:b16d94660a33 112 * @{
Jasper_lee 0:b16d94660a33 113 */
Jasper_lee 0:b16d94660a33 114
Jasper_lee 0:b16d94660a33 115 #define __CM0PLUS_REV 0x0000 /**< Core revision r0p0 */
Jasper_lee 0:b16d94660a33 116 #define __MPU_PRESENT 0 /**< Defines if an MPU is present or not */
Jasper_lee 0:b16d94660a33 117 #define __VTOR_PRESENT 1 /**< Defines if an MPU is present or not */
Jasper_lee 0:b16d94660a33 118 #define __NVIC_PRIO_BITS 2 /**< Number of priority bits implemented in the NVIC */
Jasper_lee 0:b16d94660a33 119 #define __Vendor_SysTickConfig 0 /**< Vendor specific implementation of SysTickConfig is defined */
Jasper_lee 0:b16d94660a33 120
Jasper_lee 0:b16d94660a33 121 #include "core_cm0plus.h" /* Core Peripheral Access Layer */
Jasper_lee 0:b16d94660a33 122 #include "system_MKL25Z4.h" /* Device specific configuration file */
Jasper_lee 0:b16d94660a33 123
Jasper_lee 0:b16d94660a33 124 /**
Jasper_lee 0:b16d94660a33 125 * @}
Jasper_lee 0:b16d94660a33 126 */ /* end of group Cortex_Core_Configuration */
Jasper_lee 0:b16d94660a33 127
Jasper_lee 0:b16d94660a33 128
Jasper_lee 0:b16d94660a33 129 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 130 -- Device Peripheral Access Layer
Jasper_lee 0:b16d94660a33 131 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 132
Jasper_lee 0:b16d94660a33 133 /**
Jasper_lee 0:b16d94660a33 134 * @addtogroup Peripheral_access_layer Device Peripheral Access Layer
Jasper_lee 0:b16d94660a33 135 * @{
Jasper_lee 0:b16d94660a33 136 */
Jasper_lee 0:b16d94660a33 137
Jasper_lee 0:b16d94660a33 138
Jasper_lee 0:b16d94660a33 139 /*
Jasper_lee 0:b16d94660a33 140 ** Start of section using anonymous unions
Jasper_lee 0:b16d94660a33 141 */
Jasper_lee 0:b16d94660a33 142
Jasper_lee 0:b16d94660a33 143 #if defined(__ARMCC_VERSION)
Jasper_lee 0:b16d94660a33 144 #pragma push
Jasper_lee 0:b16d94660a33 145 #pragma anon_unions
Jasper_lee 0:b16d94660a33 146 #elif defined(__CWCC__)
Jasper_lee 0:b16d94660a33 147 #pragma push
Jasper_lee 0:b16d94660a33 148 #pragma cpp_extensions on
Jasper_lee 0:b16d94660a33 149 #elif defined(__GNUC__)
Jasper_lee 0:b16d94660a33 150 /* anonymous unions are enabled by default */
Jasper_lee 0:b16d94660a33 151 #elif defined(__IAR_SYSTEMS_ICC__)
Jasper_lee 0:b16d94660a33 152 #pragma language=extended
Jasper_lee 0:b16d94660a33 153 #else
Jasper_lee 0:b16d94660a33 154 #error Not supported compiler type
Jasper_lee 0:b16d94660a33 155 #endif
Jasper_lee 0:b16d94660a33 156
Jasper_lee 0:b16d94660a33 157 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 158 -- ADC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 159 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 160
Jasper_lee 0:b16d94660a33 161 /**
Jasper_lee 0:b16d94660a33 162 * @addtogroup ADC_Peripheral_Access_Layer ADC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 163 * @{
Jasper_lee 0:b16d94660a33 164 */
Jasper_lee 0:b16d94660a33 165
Jasper_lee 0:b16d94660a33 166 /** ADC - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 167 typedef struct {
Jasper_lee 0:b16d94660a33 168 __IO uint32_t SC1[2]; /**< ADC Status and Control Registers 1, array offset: 0x0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 169 __IO uint32_t CFG1; /**< ADC Configuration Register 1, offset: 0x8 */
Jasper_lee 0:b16d94660a33 170 __IO uint32_t CFG2; /**< ADC Configuration Register 2, offset: 0xC */
Jasper_lee 0:b16d94660a33 171 __I uint32_t R[2]; /**< ADC Data Result Register, array offset: 0x10, array step: 0x4 */
Jasper_lee 0:b16d94660a33 172 __IO uint32_t CV1; /**< Compare Value Registers, offset: 0x18 */
Jasper_lee 0:b16d94660a33 173 __IO uint32_t CV2; /**< Compare Value Registers, offset: 0x1C */
Jasper_lee 0:b16d94660a33 174 __IO uint32_t SC2; /**< Status and Control Register 2, offset: 0x20 */
Jasper_lee 0:b16d94660a33 175 __IO uint32_t SC3; /**< Status and Control Register 3, offset: 0x24 */
Jasper_lee 0:b16d94660a33 176 __IO uint32_t OFS; /**< ADC Offset Correction Register, offset: 0x28 */
Jasper_lee 0:b16d94660a33 177 __IO uint32_t PG; /**< ADC Plus-Side Gain Register, offset: 0x2C */
Jasper_lee 0:b16d94660a33 178 __IO uint32_t MG; /**< ADC Minus-Side Gain Register, offset: 0x30 */
Jasper_lee 0:b16d94660a33 179 __IO uint32_t CLPD; /**< ADC Plus-Side General Calibration Value Register, offset: 0x34 */
Jasper_lee 0:b16d94660a33 180 __IO uint32_t CLPS; /**< ADC Plus-Side General Calibration Value Register, offset: 0x38 */
Jasper_lee 0:b16d94660a33 181 __IO uint32_t CLP4; /**< ADC Plus-Side General Calibration Value Register, offset: 0x3C */
Jasper_lee 0:b16d94660a33 182 __IO uint32_t CLP3; /**< ADC Plus-Side General Calibration Value Register, offset: 0x40 */
Jasper_lee 0:b16d94660a33 183 __IO uint32_t CLP2; /**< ADC Plus-Side General Calibration Value Register, offset: 0x44 */
Jasper_lee 0:b16d94660a33 184 __IO uint32_t CLP1; /**< ADC Plus-Side General Calibration Value Register, offset: 0x48 */
Jasper_lee 0:b16d94660a33 185 __IO uint32_t CLP0; /**< ADC Plus-Side General Calibration Value Register, offset: 0x4C */
Jasper_lee 0:b16d94660a33 186 uint8_t RESERVED_0[4];
Jasper_lee 0:b16d94660a33 187 __IO uint32_t CLMD; /**< ADC Minus-Side General Calibration Value Register, offset: 0x54 */
Jasper_lee 0:b16d94660a33 188 __IO uint32_t CLMS; /**< ADC Minus-Side General Calibration Value Register, offset: 0x58 */
Jasper_lee 0:b16d94660a33 189 __IO uint32_t CLM4; /**< ADC Minus-Side General Calibration Value Register, offset: 0x5C */
Jasper_lee 0:b16d94660a33 190 __IO uint32_t CLM3; /**< ADC Minus-Side General Calibration Value Register, offset: 0x60 */
Jasper_lee 0:b16d94660a33 191 __IO uint32_t CLM2; /**< ADC Minus-Side General Calibration Value Register, offset: 0x64 */
Jasper_lee 0:b16d94660a33 192 __IO uint32_t CLM1; /**< ADC Minus-Side General Calibration Value Register, offset: 0x68 */
Jasper_lee 0:b16d94660a33 193 __IO uint32_t CLM0; /**< ADC Minus-Side General Calibration Value Register, offset: 0x6C */
Jasper_lee 0:b16d94660a33 194 } ADC_Type;
Jasper_lee 0:b16d94660a33 195
Jasper_lee 0:b16d94660a33 196 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 197 -- ADC Register Masks
Jasper_lee 0:b16d94660a33 198 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 199
Jasper_lee 0:b16d94660a33 200 /**
Jasper_lee 0:b16d94660a33 201 * @addtogroup ADC_Register_Masks ADC Register Masks
Jasper_lee 0:b16d94660a33 202 * @{
Jasper_lee 0:b16d94660a33 203 */
Jasper_lee 0:b16d94660a33 204
Jasper_lee 0:b16d94660a33 205 /* SC1 Bit Fields */
Jasper_lee 0:b16d94660a33 206 #define ADC_SC1_ADCH_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 207 #define ADC_SC1_ADCH_SHIFT 0
Jasper_lee 0:b16d94660a33 208 #define ADC_SC1_ADCH(x) (((uint32_t)(((uint32_t)(x))<<ADC_SC1_ADCH_SHIFT))&ADC_SC1_ADCH_MASK)
Jasper_lee 0:b16d94660a33 209 #define ADC_SC1_DIFF_MASK 0x20u
Jasper_lee 0:b16d94660a33 210 #define ADC_SC1_DIFF_SHIFT 5
Jasper_lee 0:b16d94660a33 211 #define ADC_SC1_AIEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 212 #define ADC_SC1_AIEN_SHIFT 6
Jasper_lee 0:b16d94660a33 213 #define ADC_SC1_COCO_MASK 0x80u
Jasper_lee 0:b16d94660a33 214 #define ADC_SC1_COCO_SHIFT 7
Jasper_lee 0:b16d94660a33 215 /* CFG1 Bit Fields */
Jasper_lee 0:b16d94660a33 216 #define ADC_CFG1_ADICLK_MASK 0x3u
Jasper_lee 0:b16d94660a33 217 #define ADC_CFG1_ADICLK_SHIFT 0
Jasper_lee 0:b16d94660a33 218 #define ADC_CFG1_ADICLK(x) (((uint32_t)(((uint32_t)(x))<<ADC_CFG1_ADICLK_SHIFT))&ADC_CFG1_ADICLK_MASK)
Jasper_lee 0:b16d94660a33 219 #define ADC_CFG1_MODE_MASK 0xCu
Jasper_lee 0:b16d94660a33 220 #define ADC_CFG1_MODE_SHIFT 2
Jasper_lee 0:b16d94660a33 221 #define ADC_CFG1_MODE(x) (((uint32_t)(((uint32_t)(x))<<ADC_CFG1_MODE_SHIFT))&ADC_CFG1_MODE_MASK)
Jasper_lee 0:b16d94660a33 222 #define ADC_CFG1_ADLSMP_MASK 0x10u
Jasper_lee 0:b16d94660a33 223 #define ADC_CFG1_ADLSMP_SHIFT 4
Jasper_lee 0:b16d94660a33 224 #define ADC_CFG1_ADIV_MASK 0x60u
Jasper_lee 0:b16d94660a33 225 #define ADC_CFG1_ADIV_SHIFT 5
Jasper_lee 0:b16d94660a33 226 #define ADC_CFG1_ADIV(x) (((uint32_t)(((uint32_t)(x))<<ADC_CFG1_ADIV_SHIFT))&ADC_CFG1_ADIV_MASK)
Jasper_lee 0:b16d94660a33 227 #define ADC_CFG1_ADLPC_MASK 0x80u
Jasper_lee 0:b16d94660a33 228 #define ADC_CFG1_ADLPC_SHIFT 7
Jasper_lee 0:b16d94660a33 229 /* CFG2 Bit Fields */
Jasper_lee 0:b16d94660a33 230 #define ADC_CFG2_ADLSTS_MASK 0x3u
Jasper_lee 0:b16d94660a33 231 #define ADC_CFG2_ADLSTS_SHIFT 0
Jasper_lee 0:b16d94660a33 232 #define ADC_CFG2_ADLSTS(x) (((uint32_t)(((uint32_t)(x))<<ADC_CFG2_ADLSTS_SHIFT))&ADC_CFG2_ADLSTS_MASK)
Jasper_lee 0:b16d94660a33 233 #define ADC_CFG2_ADHSC_MASK 0x4u
Jasper_lee 0:b16d94660a33 234 #define ADC_CFG2_ADHSC_SHIFT 2
Jasper_lee 0:b16d94660a33 235 #define ADC_CFG2_ADACKEN_MASK 0x8u
Jasper_lee 0:b16d94660a33 236 #define ADC_CFG2_ADACKEN_SHIFT 3
Jasper_lee 0:b16d94660a33 237 #define ADC_CFG2_MUXSEL_MASK 0x10u
Jasper_lee 0:b16d94660a33 238 #define ADC_CFG2_MUXSEL_SHIFT 4
Jasper_lee 0:b16d94660a33 239 /* R Bit Fields */
Jasper_lee 0:b16d94660a33 240 #define ADC_R_D_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 241 #define ADC_R_D_SHIFT 0
Jasper_lee 0:b16d94660a33 242 #define ADC_R_D(x) (((uint32_t)(((uint32_t)(x))<<ADC_R_D_SHIFT))&ADC_R_D_MASK)
Jasper_lee 0:b16d94660a33 243 /* CV1 Bit Fields */
Jasper_lee 0:b16d94660a33 244 #define ADC_CV1_CV_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 245 #define ADC_CV1_CV_SHIFT 0
Jasper_lee 0:b16d94660a33 246 #define ADC_CV1_CV(x) (((uint32_t)(((uint32_t)(x))<<ADC_CV1_CV_SHIFT))&ADC_CV1_CV_MASK)
Jasper_lee 0:b16d94660a33 247 /* CV2 Bit Fields */
Jasper_lee 0:b16d94660a33 248 #define ADC_CV2_CV_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 249 #define ADC_CV2_CV_SHIFT 0
Jasper_lee 0:b16d94660a33 250 #define ADC_CV2_CV(x) (((uint32_t)(((uint32_t)(x))<<ADC_CV2_CV_SHIFT))&ADC_CV2_CV_MASK)
Jasper_lee 0:b16d94660a33 251 /* SC2 Bit Fields */
Jasper_lee 0:b16d94660a33 252 #define ADC_SC2_REFSEL_MASK 0x3u
Jasper_lee 0:b16d94660a33 253 #define ADC_SC2_REFSEL_SHIFT 0
Jasper_lee 0:b16d94660a33 254 #define ADC_SC2_REFSEL(x) (((uint32_t)(((uint32_t)(x))<<ADC_SC2_REFSEL_SHIFT))&ADC_SC2_REFSEL_MASK)
Jasper_lee 0:b16d94660a33 255 #define ADC_SC2_DMAEN_MASK 0x4u
Jasper_lee 0:b16d94660a33 256 #define ADC_SC2_DMAEN_SHIFT 2
Jasper_lee 0:b16d94660a33 257 #define ADC_SC2_ACREN_MASK 0x8u
Jasper_lee 0:b16d94660a33 258 #define ADC_SC2_ACREN_SHIFT 3
Jasper_lee 0:b16d94660a33 259 #define ADC_SC2_ACFGT_MASK 0x10u
Jasper_lee 0:b16d94660a33 260 #define ADC_SC2_ACFGT_SHIFT 4
Jasper_lee 0:b16d94660a33 261 #define ADC_SC2_ACFE_MASK 0x20u
Jasper_lee 0:b16d94660a33 262 #define ADC_SC2_ACFE_SHIFT 5
Jasper_lee 0:b16d94660a33 263 #define ADC_SC2_ADTRG_MASK 0x40u
Jasper_lee 0:b16d94660a33 264 #define ADC_SC2_ADTRG_SHIFT 6
Jasper_lee 0:b16d94660a33 265 #define ADC_SC2_ADACT_MASK 0x80u
Jasper_lee 0:b16d94660a33 266 #define ADC_SC2_ADACT_SHIFT 7
Jasper_lee 0:b16d94660a33 267 /* SC3 Bit Fields */
Jasper_lee 0:b16d94660a33 268 #define ADC_SC3_AVGS_MASK 0x3u
Jasper_lee 0:b16d94660a33 269 #define ADC_SC3_AVGS_SHIFT 0
Jasper_lee 0:b16d94660a33 270 #define ADC_SC3_AVGS(x) (((uint32_t)(((uint32_t)(x))<<ADC_SC3_AVGS_SHIFT))&ADC_SC3_AVGS_MASK)
Jasper_lee 0:b16d94660a33 271 #define ADC_SC3_AVGE_MASK 0x4u
Jasper_lee 0:b16d94660a33 272 #define ADC_SC3_AVGE_SHIFT 2
Jasper_lee 0:b16d94660a33 273 #define ADC_SC3_ADCO_MASK 0x8u
Jasper_lee 0:b16d94660a33 274 #define ADC_SC3_ADCO_SHIFT 3
Jasper_lee 0:b16d94660a33 275 #define ADC_SC3_CALF_MASK 0x40u
Jasper_lee 0:b16d94660a33 276 #define ADC_SC3_CALF_SHIFT 6
Jasper_lee 0:b16d94660a33 277 #define ADC_SC3_CAL_MASK 0x80u
Jasper_lee 0:b16d94660a33 278 #define ADC_SC3_CAL_SHIFT 7
Jasper_lee 0:b16d94660a33 279 /* OFS Bit Fields */
Jasper_lee 0:b16d94660a33 280 #define ADC_OFS_OFS_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 281 #define ADC_OFS_OFS_SHIFT 0
Jasper_lee 0:b16d94660a33 282 #define ADC_OFS_OFS(x) (((uint32_t)(((uint32_t)(x))<<ADC_OFS_OFS_SHIFT))&ADC_OFS_OFS_MASK)
Jasper_lee 0:b16d94660a33 283 /* PG Bit Fields */
Jasper_lee 0:b16d94660a33 284 #define ADC_PG_PG_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 285 #define ADC_PG_PG_SHIFT 0
Jasper_lee 0:b16d94660a33 286 #define ADC_PG_PG(x) (((uint32_t)(((uint32_t)(x))<<ADC_PG_PG_SHIFT))&ADC_PG_PG_MASK)
Jasper_lee 0:b16d94660a33 287 /* MG Bit Fields */
Jasper_lee 0:b16d94660a33 288 #define ADC_MG_MG_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 289 #define ADC_MG_MG_SHIFT 0
Jasper_lee 0:b16d94660a33 290 #define ADC_MG_MG(x) (((uint32_t)(((uint32_t)(x))<<ADC_MG_MG_SHIFT))&ADC_MG_MG_MASK)
Jasper_lee 0:b16d94660a33 291 /* CLPD Bit Fields */
Jasper_lee 0:b16d94660a33 292 #define ADC_CLPD_CLPD_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 293 #define ADC_CLPD_CLPD_SHIFT 0
Jasper_lee 0:b16d94660a33 294 #define ADC_CLPD_CLPD(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLPD_CLPD_SHIFT))&ADC_CLPD_CLPD_MASK)
Jasper_lee 0:b16d94660a33 295 /* CLPS Bit Fields */
Jasper_lee 0:b16d94660a33 296 #define ADC_CLPS_CLPS_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 297 #define ADC_CLPS_CLPS_SHIFT 0
Jasper_lee 0:b16d94660a33 298 #define ADC_CLPS_CLPS(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLPS_CLPS_SHIFT))&ADC_CLPS_CLPS_MASK)
Jasper_lee 0:b16d94660a33 299 /* CLP4 Bit Fields */
Jasper_lee 0:b16d94660a33 300 #define ADC_CLP4_CLP4_MASK 0x3FFu
Jasper_lee 0:b16d94660a33 301 #define ADC_CLP4_CLP4_SHIFT 0
Jasper_lee 0:b16d94660a33 302 #define ADC_CLP4_CLP4(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLP4_CLP4_SHIFT))&ADC_CLP4_CLP4_MASK)
Jasper_lee 0:b16d94660a33 303 /* CLP3 Bit Fields */
Jasper_lee 0:b16d94660a33 304 #define ADC_CLP3_CLP3_MASK 0x1FFu
Jasper_lee 0:b16d94660a33 305 #define ADC_CLP3_CLP3_SHIFT 0
Jasper_lee 0:b16d94660a33 306 #define ADC_CLP3_CLP3(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLP3_CLP3_SHIFT))&ADC_CLP3_CLP3_MASK)
Jasper_lee 0:b16d94660a33 307 /* CLP2 Bit Fields */
Jasper_lee 0:b16d94660a33 308 #define ADC_CLP2_CLP2_MASK 0xFFu
Jasper_lee 0:b16d94660a33 309 #define ADC_CLP2_CLP2_SHIFT 0
Jasper_lee 0:b16d94660a33 310 #define ADC_CLP2_CLP2(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLP2_CLP2_SHIFT))&ADC_CLP2_CLP2_MASK)
Jasper_lee 0:b16d94660a33 311 /* CLP1 Bit Fields */
Jasper_lee 0:b16d94660a33 312 #define ADC_CLP1_CLP1_MASK 0x7Fu
Jasper_lee 0:b16d94660a33 313 #define ADC_CLP1_CLP1_SHIFT 0
Jasper_lee 0:b16d94660a33 314 #define ADC_CLP1_CLP1(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLP1_CLP1_SHIFT))&ADC_CLP1_CLP1_MASK)
Jasper_lee 0:b16d94660a33 315 /* CLP0 Bit Fields */
Jasper_lee 0:b16d94660a33 316 #define ADC_CLP0_CLP0_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 317 #define ADC_CLP0_CLP0_SHIFT 0
Jasper_lee 0:b16d94660a33 318 #define ADC_CLP0_CLP0(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLP0_CLP0_SHIFT))&ADC_CLP0_CLP0_MASK)
Jasper_lee 0:b16d94660a33 319 /* CLMD Bit Fields */
Jasper_lee 0:b16d94660a33 320 #define ADC_CLMD_CLMD_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 321 #define ADC_CLMD_CLMD_SHIFT 0
Jasper_lee 0:b16d94660a33 322 #define ADC_CLMD_CLMD(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLMD_CLMD_SHIFT))&ADC_CLMD_CLMD_MASK)
Jasper_lee 0:b16d94660a33 323 /* CLMS Bit Fields */
Jasper_lee 0:b16d94660a33 324 #define ADC_CLMS_CLMS_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 325 #define ADC_CLMS_CLMS_SHIFT 0
Jasper_lee 0:b16d94660a33 326 #define ADC_CLMS_CLMS(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLMS_CLMS_SHIFT))&ADC_CLMS_CLMS_MASK)
Jasper_lee 0:b16d94660a33 327 /* CLM4 Bit Fields */
Jasper_lee 0:b16d94660a33 328 #define ADC_CLM4_CLM4_MASK 0x3FFu
Jasper_lee 0:b16d94660a33 329 #define ADC_CLM4_CLM4_SHIFT 0
Jasper_lee 0:b16d94660a33 330 #define ADC_CLM4_CLM4(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLM4_CLM4_SHIFT))&ADC_CLM4_CLM4_MASK)
Jasper_lee 0:b16d94660a33 331 /* CLM3 Bit Fields */
Jasper_lee 0:b16d94660a33 332 #define ADC_CLM3_CLM3_MASK 0x1FFu
Jasper_lee 0:b16d94660a33 333 #define ADC_CLM3_CLM3_SHIFT 0
Jasper_lee 0:b16d94660a33 334 #define ADC_CLM3_CLM3(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLM3_CLM3_SHIFT))&ADC_CLM3_CLM3_MASK)
Jasper_lee 0:b16d94660a33 335 /* CLM2 Bit Fields */
Jasper_lee 0:b16d94660a33 336 #define ADC_CLM2_CLM2_MASK 0xFFu
Jasper_lee 0:b16d94660a33 337 #define ADC_CLM2_CLM2_SHIFT 0
Jasper_lee 0:b16d94660a33 338 #define ADC_CLM2_CLM2(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLM2_CLM2_SHIFT))&ADC_CLM2_CLM2_MASK)
Jasper_lee 0:b16d94660a33 339 /* CLM1 Bit Fields */
Jasper_lee 0:b16d94660a33 340 #define ADC_CLM1_CLM1_MASK 0x7Fu
Jasper_lee 0:b16d94660a33 341 #define ADC_CLM1_CLM1_SHIFT 0
Jasper_lee 0:b16d94660a33 342 #define ADC_CLM1_CLM1(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLM1_CLM1_SHIFT))&ADC_CLM1_CLM1_MASK)
Jasper_lee 0:b16d94660a33 343 /* CLM0 Bit Fields */
Jasper_lee 0:b16d94660a33 344 #define ADC_CLM0_CLM0_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 345 #define ADC_CLM0_CLM0_SHIFT 0
Jasper_lee 0:b16d94660a33 346 #define ADC_CLM0_CLM0(x) (((uint32_t)(((uint32_t)(x))<<ADC_CLM0_CLM0_SHIFT))&ADC_CLM0_CLM0_MASK)
Jasper_lee 0:b16d94660a33 347
Jasper_lee 0:b16d94660a33 348 /**
Jasper_lee 0:b16d94660a33 349 * @}
Jasper_lee 0:b16d94660a33 350 */ /* end of group ADC_Register_Masks */
Jasper_lee 0:b16d94660a33 351
Jasper_lee 0:b16d94660a33 352
Jasper_lee 0:b16d94660a33 353 /* ADC - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 354 /** Peripheral ADC0 base address */
Jasper_lee 0:b16d94660a33 355 #define ADC0_BASE (0x4003B000u)
Jasper_lee 0:b16d94660a33 356 /** Peripheral ADC0 base pointer */
Jasper_lee 0:b16d94660a33 357 #define ADC0 ((ADC_Type *)ADC0_BASE)
Jasper_lee 0:b16d94660a33 358 /** Array initializer of ADC peripheral base pointers */
Jasper_lee 0:b16d94660a33 359 #define ADC_BASES { ADC0 }
Jasper_lee 0:b16d94660a33 360
Jasper_lee 0:b16d94660a33 361 /**
Jasper_lee 0:b16d94660a33 362 * @}
Jasper_lee 0:b16d94660a33 363 */ /* end of group ADC_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 364
Jasper_lee 0:b16d94660a33 365
Jasper_lee 0:b16d94660a33 366 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 367 -- CMP Peripheral Access Layer
Jasper_lee 0:b16d94660a33 368 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 369
Jasper_lee 0:b16d94660a33 370 /**
Jasper_lee 0:b16d94660a33 371 * @addtogroup CMP_Peripheral_Access_Layer CMP Peripheral Access Layer
Jasper_lee 0:b16d94660a33 372 * @{
Jasper_lee 0:b16d94660a33 373 */
Jasper_lee 0:b16d94660a33 374
Jasper_lee 0:b16d94660a33 375 /** CMP - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 376 typedef struct {
Jasper_lee 0:b16d94660a33 377 __IO uint8_t CR0; /**< CMP Control Register 0, offset: 0x0 */
Jasper_lee 0:b16d94660a33 378 __IO uint8_t CR1; /**< CMP Control Register 1, offset: 0x1 */
Jasper_lee 0:b16d94660a33 379 __IO uint8_t FPR; /**< CMP Filter Period Register, offset: 0x2 */
Jasper_lee 0:b16d94660a33 380 __IO uint8_t SCR; /**< CMP Status and Control Register, offset: 0x3 */
Jasper_lee 0:b16d94660a33 381 __IO uint8_t DACCR; /**< DAC Control Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 382 __IO uint8_t MUXCR; /**< MUX Control Register, offset: 0x5 */
Jasper_lee 0:b16d94660a33 383 } CMP_Type;
Jasper_lee 0:b16d94660a33 384
Jasper_lee 0:b16d94660a33 385 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 386 -- CMP Register Masks
Jasper_lee 0:b16d94660a33 387 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 388
Jasper_lee 0:b16d94660a33 389 /**
Jasper_lee 0:b16d94660a33 390 * @addtogroup CMP_Register_Masks CMP Register Masks
Jasper_lee 0:b16d94660a33 391 * @{
Jasper_lee 0:b16d94660a33 392 */
Jasper_lee 0:b16d94660a33 393
Jasper_lee 0:b16d94660a33 394 /* CR0 Bit Fields */
Jasper_lee 0:b16d94660a33 395 #define CMP_CR0_HYSTCTR_MASK 0x3u
Jasper_lee 0:b16d94660a33 396 #define CMP_CR0_HYSTCTR_SHIFT 0
Jasper_lee 0:b16d94660a33 397 #define CMP_CR0_HYSTCTR(x) (((uint8_t)(((uint8_t)(x))<<CMP_CR0_HYSTCTR_SHIFT))&CMP_CR0_HYSTCTR_MASK)
Jasper_lee 0:b16d94660a33 398 #define CMP_CR0_FILTER_CNT_MASK 0x70u
Jasper_lee 0:b16d94660a33 399 #define CMP_CR0_FILTER_CNT_SHIFT 4
Jasper_lee 0:b16d94660a33 400 #define CMP_CR0_FILTER_CNT(x) (((uint8_t)(((uint8_t)(x))<<CMP_CR0_FILTER_CNT_SHIFT))&CMP_CR0_FILTER_CNT_MASK)
Jasper_lee 0:b16d94660a33 401 /* CR1 Bit Fields */
Jasper_lee 0:b16d94660a33 402 #define CMP_CR1_EN_MASK 0x1u
Jasper_lee 0:b16d94660a33 403 #define CMP_CR1_EN_SHIFT 0
Jasper_lee 0:b16d94660a33 404 #define CMP_CR1_OPE_MASK 0x2u
Jasper_lee 0:b16d94660a33 405 #define CMP_CR1_OPE_SHIFT 1
Jasper_lee 0:b16d94660a33 406 #define CMP_CR1_COS_MASK 0x4u
Jasper_lee 0:b16d94660a33 407 #define CMP_CR1_COS_SHIFT 2
Jasper_lee 0:b16d94660a33 408 #define CMP_CR1_INV_MASK 0x8u
Jasper_lee 0:b16d94660a33 409 #define CMP_CR1_INV_SHIFT 3
Jasper_lee 0:b16d94660a33 410 #define CMP_CR1_PMODE_MASK 0x10u
Jasper_lee 0:b16d94660a33 411 #define CMP_CR1_PMODE_SHIFT 4
Jasper_lee 0:b16d94660a33 412 #define CMP_CR1_TRIGM_MASK 0x20u
Jasper_lee 0:b16d94660a33 413 #define CMP_CR1_TRIGM_SHIFT 5
Jasper_lee 0:b16d94660a33 414 #define CMP_CR1_WE_MASK 0x40u
Jasper_lee 0:b16d94660a33 415 #define CMP_CR1_WE_SHIFT 6
Jasper_lee 0:b16d94660a33 416 #define CMP_CR1_SE_MASK 0x80u
Jasper_lee 0:b16d94660a33 417 #define CMP_CR1_SE_SHIFT 7
Jasper_lee 0:b16d94660a33 418 /* FPR Bit Fields */
Jasper_lee 0:b16d94660a33 419 #define CMP_FPR_FILT_PER_MASK 0xFFu
Jasper_lee 0:b16d94660a33 420 #define CMP_FPR_FILT_PER_SHIFT 0
Jasper_lee 0:b16d94660a33 421 #define CMP_FPR_FILT_PER(x) (((uint8_t)(((uint8_t)(x))<<CMP_FPR_FILT_PER_SHIFT))&CMP_FPR_FILT_PER_MASK)
Jasper_lee 0:b16d94660a33 422 /* SCR Bit Fields */
Jasper_lee 0:b16d94660a33 423 #define CMP_SCR_COUT_MASK 0x1u
Jasper_lee 0:b16d94660a33 424 #define CMP_SCR_COUT_SHIFT 0
Jasper_lee 0:b16d94660a33 425 #define CMP_SCR_CFF_MASK 0x2u
Jasper_lee 0:b16d94660a33 426 #define CMP_SCR_CFF_SHIFT 1
Jasper_lee 0:b16d94660a33 427 #define CMP_SCR_CFR_MASK 0x4u
Jasper_lee 0:b16d94660a33 428 #define CMP_SCR_CFR_SHIFT 2
Jasper_lee 0:b16d94660a33 429 #define CMP_SCR_IEF_MASK 0x8u
Jasper_lee 0:b16d94660a33 430 #define CMP_SCR_IEF_SHIFT 3
Jasper_lee 0:b16d94660a33 431 #define CMP_SCR_IER_MASK 0x10u
Jasper_lee 0:b16d94660a33 432 #define CMP_SCR_IER_SHIFT 4
Jasper_lee 0:b16d94660a33 433 #define CMP_SCR_DMAEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 434 #define CMP_SCR_DMAEN_SHIFT 6
Jasper_lee 0:b16d94660a33 435 /* DACCR Bit Fields */
Jasper_lee 0:b16d94660a33 436 #define CMP_DACCR_VOSEL_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 437 #define CMP_DACCR_VOSEL_SHIFT 0
Jasper_lee 0:b16d94660a33 438 #define CMP_DACCR_VOSEL(x) (((uint8_t)(((uint8_t)(x))<<CMP_DACCR_VOSEL_SHIFT))&CMP_DACCR_VOSEL_MASK)
Jasper_lee 0:b16d94660a33 439 #define CMP_DACCR_VRSEL_MASK 0x40u
Jasper_lee 0:b16d94660a33 440 #define CMP_DACCR_VRSEL_SHIFT 6
Jasper_lee 0:b16d94660a33 441 #define CMP_DACCR_DACEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 442 #define CMP_DACCR_DACEN_SHIFT 7
Jasper_lee 0:b16d94660a33 443 /* MUXCR Bit Fields */
Jasper_lee 0:b16d94660a33 444 #define CMP_MUXCR_MSEL_MASK 0x7u
Jasper_lee 0:b16d94660a33 445 #define CMP_MUXCR_MSEL_SHIFT 0
Jasper_lee 0:b16d94660a33 446 #define CMP_MUXCR_MSEL(x) (((uint8_t)(((uint8_t)(x))<<CMP_MUXCR_MSEL_SHIFT))&CMP_MUXCR_MSEL_MASK)
Jasper_lee 0:b16d94660a33 447 #define CMP_MUXCR_PSEL_MASK 0x38u
Jasper_lee 0:b16d94660a33 448 #define CMP_MUXCR_PSEL_SHIFT 3
Jasper_lee 0:b16d94660a33 449 #define CMP_MUXCR_PSEL(x) (((uint8_t)(((uint8_t)(x))<<CMP_MUXCR_PSEL_SHIFT))&CMP_MUXCR_PSEL_MASK)
Jasper_lee 0:b16d94660a33 450 #define CMP_MUXCR_PSTM_MASK 0x40u
Jasper_lee 0:b16d94660a33 451 #define CMP_MUXCR_PSTM_SHIFT 6
Jasper_lee 0:b16d94660a33 452
Jasper_lee 0:b16d94660a33 453 /**
Jasper_lee 0:b16d94660a33 454 * @}
Jasper_lee 0:b16d94660a33 455 */ /* end of group CMP_Register_Masks */
Jasper_lee 0:b16d94660a33 456
Jasper_lee 0:b16d94660a33 457
Jasper_lee 0:b16d94660a33 458 /* CMP - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 459 /** Peripheral CMP0 base address */
Jasper_lee 0:b16d94660a33 460 #define CMP0_BASE (0x40073000u)
Jasper_lee 0:b16d94660a33 461 /** Peripheral CMP0 base pointer */
Jasper_lee 0:b16d94660a33 462 #define CMP0 ((CMP_Type *)CMP0_BASE)
Jasper_lee 0:b16d94660a33 463 /** Array initializer of CMP peripheral base pointers */
Jasper_lee 0:b16d94660a33 464 #define CMP_BASES { CMP0 }
Jasper_lee 0:b16d94660a33 465
Jasper_lee 0:b16d94660a33 466 /**
Jasper_lee 0:b16d94660a33 467 * @}
Jasper_lee 0:b16d94660a33 468 */ /* end of group CMP_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 469
Jasper_lee 0:b16d94660a33 470
Jasper_lee 0:b16d94660a33 471 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 472 -- DAC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 473 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 474
Jasper_lee 0:b16d94660a33 475 /**
Jasper_lee 0:b16d94660a33 476 * @addtogroup DAC_Peripheral_Access_Layer DAC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 477 * @{
Jasper_lee 0:b16d94660a33 478 */
Jasper_lee 0:b16d94660a33 479
Jasper_lee 0:b16d94660a33 480 /** DAC - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 481 typedef struct {
Jasper_lee 0:b16d94660a33 482 struct { /* offset: 0x0, array step: 0x2 */
Jasper_lee 0:b16d94660a33 483 __IO uint8_t DATL; /**< DAC Data Low Register, array offset: 0x0, array step: 0x2 */
Jasper_lee 0:b16d94660a33 484 __IO uint8_t DATH; /**< DAC Data High Register, array offset: 0x1, array step: 0x2 */
Jasper_lee 0:b16d94660a33 485 } DAT[2];
Jasper_lee 0:b16d94660a33 486 uint8_t RESERVED_0[28];
Jasper_lee 0:b16d94660a33 487 __IO uint8_t SR; /**< DAC Status Register, offset: 0x20 */
Jasper_lee 0:b16d94660a33 488 __IO uint8_t C0; /**< DAC Control Register, offset: 0x21 */
Jasper_lee 0:b16d94660a33 489 __IO uint8_t C1; /**< DAC Control Register 1, offset: 0x22 */
Jasper_lee 0:b16d94660a33 490 __IO uint8_t C2; /**< DAC Control Register 2, offset: 0x23 */
Jasper_lee 0:b16d94660a33 491 } DAC_Type;
Jasper_lee 0:b16d94660a33 492
Jasper_lee 0:b16d94660a33 493 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 494 -- DAC Register Masks
Jasper_lee 0:b16d94660a33 495 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 496
Jasper_lee 0:b16d94660a33 497 /**
Jasper_lee 0:b16d94660a33 498 * @addtogroup DAC_Register_Masks DAC Register Masks
Jasper_lee 0:b16d94660a33 499 * @{
Jasper_lee 0:b16d94660a33 500 */
Jasper_lee 0:b16d94660a33 501
Jasper_lee 0:b16d94660a33 502 /* DATL Bit Fields */
Jasper_lee 0:b16d94660a33 503 #define DAC_DATL_DATA0_MASK 0xFFu
Jasper_lee 0:b16d94660a33 504 #define DAC_DATL_DATA0_SHIFT 0
Jasper_lee 0:b16d94660a33 505 #define DAC_DATL_DATA0(x) (((uint8_t)(((uint8_t)(x))<<DAC_DATL_DATA0_SHIFT))&DAC_DATL_DATA0_MASK)
Jasper_lee 0:b16d94660a33 506 /* DATH Bit Fields */
Jasper_lee 0:b16d94660a33 507 #define DAC_DATH_DATA1_MASK 0xFu
Jasper_lee 0:b16d94660a33 508 #define DAC_DATH_DATA1_SHIFT 0
Jasper_lee 0:b16d94660a33 509 #define DAC_DATH_DATA1(x) (((uint8_t)(((uint8_t)(x))<<DAC_DATH_DATA1_SHIFT))&DAC_DATH_DATA1_MASK)
Jasper_lee 0:b16d94660a33 510 /* SR Bit Fields */
Jasper_lee 0:b16d94660a33 511 #define DAC_SR_DACBFRPBF_MASK 0x1u
Jasper_lee 0:b16d94660a33 512 #define DAC_SR_DACBFRPBF_SHIFT 0
Jasper_lee 0:b16d94660a33 513 #define DAC_SR_DACBFRPTF_MASK 0x2u
Jasper_lee 0:b16d94660a33 514 #define DAC_SR_DACBFRPTF_SHIFT 1
Jasper_lee 0:b16d94660a33 515 /* C0 Bit Fields */
Jasper_lee 0:b16d94660a33 516 #define DAC_C0_DACBBIEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 517 #define DAC_C0_DACBBIEN_SHIFT 0
Jasper_lee 0:b16d94660a33 518 #define DAC_C0_DACBTIEN_MASK 0x2u
Jasper_lee 0:b16d94660a33 519 #define DAC_C0_DACBTIEN_SHIFT 1
Jasper_lee 0:b16d94660a33 520 #define DAC_C0_LPEN_MASK 0x8u
Jasper_lee 0:b16d94660a33 521 #define DAC_C0_LPEN_SHIFT 3
Jasper_lee 0:b16d94660a33 522 #define DAC_C0_DACSWTRG_MASK 0x10u
Jasper_lee 0:b16d94660a33 523 #define DAC_C0_DACSWTRG_SHIFT 4
Jasper_lee 0:b16d94660a33 524 #define DAC_C0_DACTRGSEL_MASK 0x20u
Jasper_lee 0:b16d94660a33 525 #define DAC_C0_DACTRGSEL_SHIFT 5
Jasper_lee 0:b16d94660a33 526 #define DAC_C0_DACRFS_MASK 0x40u
Jasper_lee 0:b16d94660a33 527 #define DAC_C0_DACRFS_SHIFT 6
Jasper_lee 0:b16d94660a33 528 #define DAC_C0_DACEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 529 #define DAC_C0_DACEN_SHIFT 7
Jasper_lee 0:b16d94660a33 530 /* C1 Bit Fields */
Jasper_lee 0:b16d94660a33 531 #define DAC_C1_DACBFEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 532 #define DAC_C1_DACBFEN_SHIFT 0
Jasper_lee 0:b16d94660a33 533 #define DAC_C1_DACBFMD_MASK 0x4u
Jasper_lee 0:b16d94660a33 534 #define DAC_C1_DACBFMD_SHIFT 2
Jasper_lee 0:b16d94660a33 535 #define DAC_C1_DMAEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 536 #define DAC_C1_DMAEN_SHIFT 7
Jasper_lee 0:b16d94660a33 537 /* C2 Bit Fields */
Jasper_lee 0:b16d94660a33 538 #define DAC_C2_DACBFUP_MASK 0x1u
Jasper_lee 0:b16d94660a33 539 #define DAC_C2_DACBFUP_SHIFT 0
Jasper_lee 0:b16d94660a33 540 #define DAC_C2_DACBFRP_MASK 0x10u
Jasper_lee 0:b16d94660a33 541 #define DAC_C2_DACBFRP_SHIFT 4
Jasper_lee 0:b16d94660a33 542
Jasper_lee 0:b16d94660a33 543 /**
Jasper_lee 0:b16d94660a33 544 * @}
Jasper_lee 0:b16d94660a33 545 */ /* end of group DAC_Register_Masks */
Jasper_lee 0:b16d94660a33 546
Jasper_lee 0:b16d94660a33 547
Jasper_lee 0:b16d94660a33 548 /* DAC - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 549 /** Peripheral DAC0 base address */
Jasper_lee 0:b16d94660a33 550 #define DAC0_BASE (0x4003F000u)
Jasper_lee 0:b16d94660a33 551 /** Peripheral DAC0 base pointer */
Jasper_lee 0:b16d94660a33 552 #define DAC0 ((DAC_Type *)DAC0_BASE)
Jasper_lee 0:b16d94660a33 553 /** Array initializer of DAC peripheral base pointers */
Jasper_lee 0:b16d94660a33 554 #define DAC_BASES { DAC0 }
Jasper_lee 0:b16d94660a33 555
Jasper_lee 0:b16d94660a33 556 /**
Jasper_lee 0:b16d94660a33 557 * @}
Jasper_lee 0:b16d94660a33 558 */ /* end of group DAC_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 559
Jasper_lee 0:b16d94660a33 560
Jasper_lee 0:b16d94660a33 561 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 562 -- DMA Peripheral Access Layer
Jasper_lee 0:b16d94660a33 563 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 564
Jasper_lee 0:b16d94660a33 565 /**
Jasper_lee 0:b16d94660a33 566 * @addtogroup DMA_Peripheral_Access_Layer DMA Peripheral Access Layer
Jasper_lee 0:b16d94660a33 567 * @{
Jasper_lee 0:b16d94660a33 568 */
Jasper_lee 0:b16d94660a33 569
Jasper_lee 0:b16d94660a33 570 /** DMA - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 571 typedef struct {
Jasper_lee 0:b16d94660a33 572 union { /* offset: 0x0 */
Jasper_lee 0:b16d94660a33 573 __IO uint8_t REQC_ARR[4]; /**< DMA_REQC0 register...DMA_REQC3 register., array offset: 0x0, array step: 0x1 */
Jasper_lee 0:b16d94660a33 574 };
Jasper_lee 0:b16d94660a33 575 uint8_t RESERVED_0[252];
Jasper_lee 0:b16d94660a33 576 struct { /* offset: 0x100, array step: 0x10 */
Jasper_lee 0:b16d94660a33 577 __IO uint32_t SAR; /**< Source Address Register, array offset: 0x100, array step: 0x10 */
Jasper_lee 0:b16d94660a33 578 __IO uint32_t DAR; /**< Destination Address Register, array offset: 0x104, array step: 0x10 */
Jasper_lee 0:b16d94660a33 579 union { /* offset: 0x108, array step: 0x10 */
Jasper_lee 0:b16d94660a33 580 __IO uint32_t DSR_BCR; /**< DMA Status Register / Byte Count Register, array offset: 0x108, array step: 0x10 */
Jasper_lee 0:b16d94660a33 581 struct { /* offset: 0x108, array step: 0x10 */
Jasper_lee 0:b16d94660a33 582 uint8_t RESERVED_0[3];
Jasper_lee 0:b16d94660a33 583 __IO uint8_t DSR; /**< DMA_DSR0 register...DMA_DSR3 register., array offset: 0x10B, array step: 0x10 */
Jasper_lee 0:b16d94660a33 584 } DMA_DSR_ACCESS8BIT;
Jasper_lee 0:b16d94660a33 585 };
Jasper_lee 0:b16d94660a33 586 __IO uint32_t DCR; /**< DMA Control Register, array offset: 0x10C, array step: 0x10 */
Jasper_lee 0:b16d94660a33 587 } DMA[4];
Jasper_lee 0:b16d94660a33 588 } DMA_Type;
Jasper_lee 0:b16d94660a33 589
Jasper_lee 0:b16d94660a33 590 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 591 -- DMA Register Masks
Jasper_lee 0:b16d94660a33 592 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 593
Jasper_lee 0:b16d94660a33 594 /**
Jasper_lee 0:b16d94660a33 595 * @addtogroup DMA_Register_Masks DMA Register Masks
Jasper_lee 0:b16d94660a33 596 * @{
Jasper_lee 0:b16d94660a33 597 */
Jasper_lee 0:b16d94660a33 598
Jasper_lee 0:b16d94660a33 599 /* REQC_ARR Bit Fields */
Jasper_lee 0:b16d94660a33 600 #define DMA_REQC_ARR_DMAC_MASK 0xFu
Jasper_lee 0:b16d94660a33 601 #define DMA_REQC_ARR_DMAC_SHIFT 0
Jasper_lee 0:b16d94660a33 602 #define DMA_REQC_ARR_DMAC(x) (((uint8_t)(((uint8_t)(x))<<DMA_REQC_ARR_DMAC_SHIFT))&DMA_REQC_ARR_DMAC_MASK)
Jasper_lee 0:b16d94660a33 603 #define DMA_REQC_ARR_CFSM_MASK 0x80u
Jasper_lee 0:b16d94660a33 604 #define DMA_REQC_ARR_CFSM_SHIFT 7
Jasper_lee 0:b16d94660a33 605 /* SAR Bit Fields */
Jasper_lee 0:b16d94660a33 606 #define DMA_SAR_SAR_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 607 #define DMA_SAR_SAR_SHIFT 0
Jasper_lee 0:b16d94660a33 608 #define DMA_SAR_SAR(x) (((uint32_t)(((uint32_t)(x))<<DMA_SAR_SAR_SHIFT))&DMA_SAR_SAR_MASK)
Jasper_lee 0:b16d94660a33 609 /* DAR Bit Fields */
Jasper_lee 0:b16d94660a33 610 #define DMA_DAR_DAR_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 611 #define DMA_DAR_DAR_SHIFT 0
Jasper_lee 0:b16d94660a33 612 #define DMA_DAR_DAR(x) (((uint32_t)(((uint32_t)(x))<<DMA_DAR_DAR_SHIFT))&DMA_DAR_DAR_MASK)
Jasper_lee 0:b16d94660a33 613 /* DSR_BCR Bit Fields */
Jasper_lee 0:b16d94660a33 614 #define DMA_DSR_BCR_BCR_MASK 0xFFFFFFu
Jasper_lee 0:b16d94660a33 615 #define DMA_DSR_BCR_BCR_SHIFT 0
Jasper_lee 0:b16d94660a33 616 #define DMA_DSR_BCR_BCR(x) (((uint32_t)(((uint32_t)(x))<<DMA_DSR_BCR_BCR_SHIFT))&DMA_DSR_BCR_BCR_MASK)
Jasper_lee 0:b16d94660a33 617 #define DMA_DSR_BCR_DONE_MASK 0x1000000u
Jasper_lee 0:b16d94660a33 618 #define DMA_DSR_BCR_DONE_SHIFT 24
Jasper_lee 0:b16d94660a33 619 #define DMA_DSR_BCR_BSY_MASK 0x2000000u
Jasper_lee 0:b16d94660a33 620 #define DMA_DSR_BCR_BSY_SHIFT 25
Jasper_lee 0:b16d94660a33 621 #define DMA_DSR_BCR_REQ_MASK 0x4000000u
Jasper_lee 0:b16d94660a33 622 #define DMA_DSR_BCR_REQ_SHIFT 26
Jasper_lee 0:b16d94660a33 623 #define DMA_DSR_BCR_BED_MASK 0x10000000u
Jasper_lee 0:b16d94660a33 624 #define DMA_DSR_BCR_BED_SHIFT 28
Jasper_lee 0:b16d94660a33 625 #define DMA_DSR_BCR_BES_MASK 0x20000000u
Jasper_lee 0:b16d94660a33 626 #define DMA_DSR_BCR_BES_SHIFT 29
Jasper_lee 0:b16d94660a33 627 #define DMA_DSR_BCR_CE_MASK 0x40000000u
Jasper_lee 0:b16d94660a33 628 #define DMA_DSR_BCR_CE_SHIFT 30
Jasper_lee 0:b16d94660a33 629 /* DCR Bit Fields */
Jasper_lee 0:b16d94660a33 630 #define DMA_DCR_LCH2_MASK 0x3u
Jasper_lee 0:b16d94660a33 631 #define DMA_DCR_LCH2_SHIFT 0
Jasper_lee 0:b16d94660a33 632 #define DMA_DCR_LCH2(x) (((uint32_t)(((uint32_t)(x))<<DMA_DCR_LCH2_SHIFT))&DMA_DCR_LCH2_MASK)
Jasper_lee 0:b16d94660a33 633 #define DMA_DCR_LCH1_MASK 0xCu
Jasper_lee 0:b16d94660a33 634 #define DMA_DCR_LCH1_SHIFT 2
Jasper_lee 0:b16d94660a33 635 #define DMA_DCR_LCH1(x) (((uint32_t)(((uint32_t)(x))<<DMA_DCR_LCH1_SHIFT))&DMA_DCR_LCH1_MASK)
Jasper_lee 0:b16d94660a33 636 #define DMA_DCR_LINKCC_MASK 0x30u
Jasper_lee 0:b16d94660a33 637 #define DMA_DCR_LINKCC_SHIFT 4
Jasper_lee 0:b16d94660a33 638 #define DMA_DCR_LINKCC(x) (((uint32_t)(((uint32_t)(x))<<DMA_DCR_LINKCC_SHIFT))&DMA_DCR_LINKCC_MASK)
Jasper_lee 0:b16d94660a33 639 #define DMA_DCR_D_REQ_MASK 0x80u
Jasper_lee 0:b16d94660a33 640 #define DMA_DCR_D_REQ_SHIFT 7
Jasper_lee 0:b16d94660a33 641 #define DMA_DCR_DMOD_MASK 0xF00u
Jasper_lee 0:b16d94660a33 642 #define DMA_DCR_DMOD_SHIFT 8
Jasper_lee 0:b16d94660a33 643 #define DMA_DCR_DMOD(x) (((uint32_t)(((uint32_t)(x))<<DMA_DCR_DMOD_SHIFT))&DMA_DCR_DMOD_MASK)
Jasper_lee 0:b16d94660a33 644 #define DMA_DCR_SMOD_MASK 0xF000u
Jasper_lee 0:b16d94660a33 645 #define DMA_DCR_SMOD_SHIFT 12
Jasper_lee 0:b16d94660a33 646 #define DMA_DCR_SMOD(x) (((uint32_t)(((uint32_t)(x))<<DMA_DCR_SMOD_SHIFT))&DMA_DCR_SMOD_MASK)
Jasper_lee 0:b16d94660a33 647 #define DMA_DCR_START_MASK 0x10000u
Jasper_lee 0:b16d94660a33 648 #define DMA_DCR_START_SHIFT 16
Jasper_lee 0:b16d94660a33 649 #define DMA_DCR_DSIZE_MASK 0x60000u
Jasper_lee 0:b16d94660a33 650 #define DMA_DCR_DSIZE_SHIFT 17
Jasper_lee 0:b16d94660a33 651 #define DMA_DCR_DSIZE(x) (((uint32_t)(((uint32_t)(x))<<DMA_DCR_DSIZE_SHIFT))&DMA_DCR_DSIZE_MASK)
Jasper_lee 0:b16d94660a33 652 #define DMA_DCR_DINC_MASK 0x80000u
Jasper_lee 0:b16d94660a33 653 #define DMA_DCR_DINC_SHIFT 19
Jasper_lee 0:b16d94660a33 654 #define DMA_DCR_SSIZE_MASK 0x300000u
Jasper_lee 0:b16d94660a33 655 #define DMA_DCR_SSIZE_SHIFT 20
Jasper_lee 0:b16d94660a33 656 #define DMA_DCR_SSIZE(x) (((uint32_t)(((uint32_t)(x))<<DMA_DCR_SSIZE_SHIFT))&DMA_DCR_SSIZE_MASK)
Jasper_lee 0:b16d94660a33 657 #define DMA_DCR_SINC_MASK 0x400000u
Jasper_lee 0:b16d94660a33 658 #define DMA_DCR_SINC_SHIFT 22
Jasper_lee 0:b16d94660a33 659 #define DMA_DCR_EADREQ_MASK 0x800000u
Jasper_lee 0:b16d94660a33 660 #define DMA_DCR_EADREQ_SHIFT 23
Jasper_lee 0:b16d94660a33 661 #define DMA_DCR_AA_MASK 0x10000000u
Jasper_lee 0:b16d94660a33 662 #define DMA_DCR_AA_SHIFT 28
Jasper_lee 0:b16d94660a33 663 #define DMA_DCR_CS_MASK 0x20000000u
Jasper_lee 0:b16d94660a33 664 #define DMA_DCR_CS_SHIFT 29
Jasper_lee 0:b16d94660a33 665 #define DMA_DCR_ERQ_MASK 0x40000000u
Jasper_lee 0:b16d94660a33 666 #define DMA_DCR_ERQ_SHIFT 30
Jasper_lee 0:b16d94660a33 667 #define DMA_DCR_EINT_MASK 0x80000000u
Jasper_lee 0:b16d94660a33 668 #define DMA_DCR_EINT_SHIFT 31
Jasper_lee 0:b16d94660a33 669
Jasper_lee 0:b16d94660a33 670 /**
Jasper_lee 0:b16d94660a33 671 * @}
Jasper_lee 0:b16d94660a33 672 */ /* end of group DMA_Register_Masks */
Jasper_lee 0:b16d94660a33 673
Jasper_lee 0:b16d94660a33 674
Jasper_lee 0:b16d94660a33 675 /* DMA - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 676 /** Peripheral DMA base address */
Jasper_lee 0:b16d94660a33 677 #define DMA_BASE (0x40008000u)
Jasper_lee 0:b16d94660a33 678 /** Peripheral DMA base pointer */
Jasper_lee 0:b16d94660a33 679 #define DMA0 ((DMA_Type *)DMA_BASE)
Jasper_lee 0:b16d94660a33 680 /** Array initializer of DMA peripheral base pointers */
Jasper_lee 0:b16d94660a33 681 #define DMA_BASES { DMA0 }
Jasper_lee 0:b16d94660a33 682
Jasper_lee 0:b16d94660a33 683 /**
Jasper_lee 0:b16d94660a33 684 * @}
Jasper_lee 0:b16d94660a33 685 */ /* end of group DMA_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 686
Jasper_lee 0:b16d94660a33 687
Jasper_lee 0:b16d94660a33 688 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 689 -- DMAMUX Peripheral Access Layer
Jasper_lee 0:b16d94660a33 690 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 691
Jasper_lee 0:b16d94660a33 692 /**
Jasper_lee 0:b16d94660a33 693 * @addtogroup DMAMUX_Peripheral_Access_Layer DMAMUX Peripheral Access Layer
Jasper_lee 0:b16d94660a33 694 * @{
Jasper_lee 0:b16d94660a33 695 */
Jasper_lee 0:b16d94660a33 696
Jasper_lee 0:b16d94660a33 697 /** DMAMUX - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 698 typedef struct {
Jasper_lee 0:b16d94660a33 699 __IO uint8_t CHCFG[4]; /**< Channel Configuration register, array offset: 0x0, array step: 0x1 */
Jasper_lee 0:b16d94660a33 700 } DMAMUX_Type;
Jasper_lee 0:b16d94660a33 701
Jasper_lee 0:b16d94660a33 702 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 703 -- DMAMUX Register Masks
Jasper_lee 0:b16d94660a33 704 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 705
Jasper_lee 0:b16d94660a33 706 /**
Jasper_lee 0:b16d94660a33 707 * @addtogroup DMAMUX_Register_Masks DMAMUX Register Masks
Jasper_lee 0:b16d94660a33 708 * @{
Jasper_lee 0:b16d94660a33 709 */
Jasper_lee 0:b16d94660a33 710
Jasper_lee 0:b16d94660a33 711 /* CHCFG Bit Fields */
Jasper_lee 0:b16d94660a33 712 #define DMAMUX_CHCFG_SOURCE_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 713 #define DMAMUX_CHCFG_SOURCE_SHIFT 0
Jasper_lee 0:b16d94660a33 714 #define DMAMUX_CHCFG_SOURCE(x) (((uint8_t)(((uint8_t)(x))<<DMAMUX_CHCFG_SOURCE_SHIFT))&DMAMUX_CHCFG_SOURCE_MASK)
Jasper_lee 0:b16d94660a33 715 #define DMAMUX_CHCFG_TRIG_MASK 0x40u
Jasper_lee 0:b16d94660a33 716 #define DMAMUX_CHCFG_TRIG_SHIFT 6
Jasper_lee 0:b16d94660a33 717 #define DMAMUX_CHCFG_ENBL_MASK 0x80u
Jasper_lee 0:b16d94660a33 718 #define DMAMUX_CHCFG_ENBL_SHIFT 7
Jasper_lee 0:b16d94660a33 719
Jasper_lee 0:b16d94660a33 720 /**
Jasper_lee 0:b16d94660a33 721 * @}
Jasper_lee 0:b16d94660a33 722 */ /* end of group DMAMUX_Register_Masks */
Jasper_lee 0:b16d94660a33 723
Jasper_lee 0:b16d94660a33 724
Jasper_lee 0:b16d94660a33 725 /* DMAMUX - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 726 /** Peripheral DMAMUX0 base address */
Jasper_lee 0:b16d94660a33 727 #define DMAMUX0_BASE (0x40021000u)
Jasper_lee 0:b16d94660a33 728 /** Peripheral DMAMUX0 base pointer */
Jasper_lee 0:b16d94660a33 729 #define DMAMUX0 ((DMAMUX_Type *)DMAMUX0_BASE)
Jasper_lee 0:b16d94660a33 730 /** Array initializer of DMAMUX peripheral base pointers */
Jasper_lee 0:b16d94660a33 731 #define DMAMUX_BASES { DMAMUX0 }
Jasper_lee 0:b16d94660a33 732
Jasper_lee 0:b16d94660a33 733 /**
Jasper_lee 0:b16d94660a33 734 * @}
Jasper_lee 0:b16d94660a33 735 */ /* end of group DMAMUX_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 736
Jasper_lee 0:b16d94660a33 737
Jasper_lee 0:b16d94660a33 738 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 739 -- FGPIO Peripheral Access Layer
Jasper_lee 0:b16d94660a33 740 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 741
Jasper_lee 0:b16d94660a33 742 /**
Jasper_lee 0:b16d94660a33 743 * @addtogroup FGPIO_Peripheral_Access_Layer FGPIO Peripheral Access Layer
Jasper_lee 0:b16d94660a33 744 * @{
Jasper_lee 0:b16d94660a33 745 */
Jasper_lee 0:b16d94660a33 746
Jasper_lee 0:b16d94660a33 747 /** FGPIO - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 748 typedef struct {
Jasper_lee 0:b16d94660a33 749 __IO uint32_t PDOR; /**< Port Data Output Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 750 __O uint32_t PSOR; /**< Port Set Output Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 751 __O uint32_t PCOR; /**< Port Clear Output Register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 752 __O uint32_t PTOR; /**< Port Toggle Output Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 753 __I uint32_t PDIR; /**< Port Data Input Register, offset: 0x10 */
Jasper_lee 0:b16d94660a33 754 __IO uint32_t PDDR; /**< Port Data Direction Register, offset: 0x14 */
Jasper_lee 0:b16d94660a33 755 } FGPIO_Type;
Jasper_lee 0:b16d94660a33 756
Jasper_lee 0:b16d94660a33 757 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 758 -- FGPIO Register Masks
Jasper_lee 0:b16d94660a33 759 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 760
Jasper_lee 0:b16d94660a33 761 /**
Jasper_lee 0:b16d94660a33 762 * @addtogroup FGPIO_Register_Masks FGPIO Register Masks
Jasper_lee 0:b16d94660a33 763 * @{
Jasper_lee 0:b16d94660a33 764 */
Jasper_lee 0:b16d94660a33 765
Jasper_lee 0:b16d94660a33 766 /* PDOR Bit Fields */
Jasper_lee 0:b16d94660a33 767 #define FGPIO_PDOR_PDO_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 768 #define FGPIO_PDOR_PDO_SHIFT 0
Jasper_lee 0:b16d94660a33 769 #define FGPIO_PDOR_PDO(x) (((uint32_t)(((uint32_t)(x))<<FGPIO_PDOR_PDO_SHIFT))&FGPIO_PDOR_PDO_MASK)
Jasper_lee 0:b16d94660a33 770 /* PSOR Bit Fields */
Jasper_lee 0:b16d94660a33 771 #define FGPIO_PSOR_PTSO_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 772 #define FGPIO_PSOR_PTSO_SHIFT 0
Jasper_lee 0:b16d94660a33 773 #define FGPIO_PSOR_PTSO(x) (((uint32_t)(((uint32_t)(x))<<FGPIO_PSOR_PTSO_SHIFT))&FGPIO_PSOR_PTSO_MASK)
Jasper_lee 0:b16d94660a33 774 /* PCOR Bit Fields */
Jasper_lee 0:b16d94660a33 775 #define FGPIO_PCOR_PTCO_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 776 #define FGPIO_PCOR_PTCO_SHIFT 0
Jasper_lee 0:b16d94660a33 777 #define FGPIO_PCOR_PTCO(x) (((uint32_t)(((uint32_t)(x))<<FGPIO_PCOR_PTCO_SHIFT))&FGPIO_PCOR_PTCO_MASK)
Jasper_lee 0:b16d94660a33 778 /* PTOR Bit Fields */
Jasper_lee 0:b16d94660a33 779 #define FGPIO_PTOR_PTTO_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 780 #define FGPIO_PTOR_PTTO_SHIFT 0
Jasper_lee 0:b16d94660a33 781 #define FGPIO_PTOR_PTTO(x) (((uint32_t)(((uint32_t)(x))<<FGPIO_PTOR_PTTO_SHIFT))&FGPIO_PTOR_PTTO_MASK)
Jasper_lee 0:b16d94660a33 782 /* PDIR Bit Fields */
Jasper_lee 0:b16d94660a33 783 #define FGPIO_PDIR_PDI_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 784 #define FGPIO_PDIR_PDI_SHIFT 0
Jasper_lee 0:b16d94660a33 785 #define FGPIO_PDIR_PDI(x) (((uint32_t)(((uint32_t)(x))<<FGPIO_PDIR_PDI_SHIFT))&FGPIO_PDIR_PDI_MASK)
Jasper_lee 0:b16d94660a33 786 /* PDDR Bit Fields */
Jasper_lee 0:b16d94660a33 787 #define FGPIO_PDDR_PDD_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 788 #define FGPIO_PDDR_PDD_SHIFT 0
Jasper_lee 0:b16d94660a33 789 #define FGPIO_PDDR_PDD(x) (((uint32_t)(((uint32_t)(x))<<FGPIO_PDDR_PDD_SHIFT))&FGPIO_PDDR_PDD_MASK)
Jasper_lee 0:b16d94660a33 790
Jasper_lee 0:b16d94660a33 791 /**
Jasper_lee 0:b16d94660a33 792 * @}
Jasper_lee 0:b16d94660a33 793 */ /* end of group FGPIO_Register_Masks */
Jasper_lee 0:b16d94660a33 794
Jasper_lee 0:b16d94660a33 795
Jasper_lee 0:b16d94660a33 796 /* FGPIO - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 797 /** Peripheral FPTA base address */
Jasper_lee 0:b16d94660a33 798 #define FPTA_BASE (0xF80FF000u)
Jasper_lee 0:b16d94660a33 799 /** Peripheral FPTA base pointer */
Jasper_lee 0:b16d94660a33 800 #define FPTA ((FGPIO_Type *)FPTA_BASE)
Jasper_lee 0:b16d94660a33 801 /** Peripheral FPTB base address */
Jasper_lee 0:b16d94660a33 802 #define FPTB_BASE (0xF80FF040u)
Jasper_lee 0:b16d94660a33 803 /** Peripheral FPTB base pointer */
Jasper_lee 0:b16d94660a33 804 #define FPTB ((FGPIO_Type *)FPTB_BASE)
Jasper_lee 0:b16d94660a33 805 /** Peripheral FPTC base address */
Jasper_lee 0:b16d94660a33 806 #define FPTC_BASE (0xF80FF080u)
Jasper_lee 0:b16d94660a33 807 /** Peripheral FPTC base pointer */
Jasper_lee 0:b16d94660a33 808 #define FPTC ((FGPIO_Type *)FPTC_BASE)
Jasper_lee 0:b16d94660a33 809 /** Peripheral FPTD base address */
Jasper_lee 0:b16d94660a33 810 #define FPTD_BASE (0xF80FF0C0u)
Jasper_lee 0:b16d94660a33 811 /** Peripheral FPTD base pointer */
Jasper_lee 0:b16d94660a33 812 #define FPTD ((FGPIO_Type *)FPTD_BASE)
Jasper_lee 0:b16d94660a33 813 /** Peripheral FPTE base address */
Jasper_lee 0:b16d94660a33 814 #define FPTE_BASE (0xF80FF100u)
Jasper_lee 0:b16d94660a33 815 /** Peripheral FPTE base pointer */
Jasper_lee 0:b16d94660a33 816 #define FPTE ((FGPIO_Type *)FPTE_BASE)
Jasper_lee 0:b16d94660a33 817 /** Array initializer of FGPIO peripheral base pointers */
Jasper_lee 0:b16d94660a33 818 #define FGPIO_BASES { FPTA, FPTB, FPTC, FPTD, FPTE }
Jasper_lee 0:b16d94660a33 819
Jasper_lee 0:b16d94660a33 820 /**
Jasper_lee 0:b16d94660a33 821 * @}
Jasper_lee 0:b16d94660a33 822 */ /* end of group FGPIO_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 823
Jasper_lee 0:b16d94660a33 824
Jasper_lee 0:b16d94660a33 825 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 826 -- FTFA Peripheral Access Layer
Jasper_lee 0:b16d94660a33 827 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 828
Jasper_lee 0:b16d94660a33 829 /**
Jasper_lee 0:b16d94660a33 830 * @addtogroup FTFA_Peripheral_Access_Layer FTFA Peripheral Access Layer
Jasper_lee 0:b16d94660a33 831 * @{
Jasper_lee 0:b16d94660a33 832 */
Jasper_lee 0:b16d94660a33 833
Jasper_lee 0:b16d94660a33 834 /** FTFA - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 835 typedef struct {
Jasper_lee 0:b16d94660a33 836 __IO uint8_t FSTAT; /**< Flash Status Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 837 __IO uint8_t FCNFG; /**< Flash Configuration Register, offset: 0x1 */
Jasper_lee 0:b16d94660a33 838 __I uint8_t FSEC; /**< Flash Security Register, offset: 0x2 */
Jasper_lee 0:b16d94660a33 839 __I uint8_t FOPT; /**< Flash Option Register, offset: 0x3 */
Jasper_lee 0:b16d94660a33 840 __IO uint8_t FCCOB3; /**< Flash Common Command Object Registers, offset: 0x4 */
Jasper_lee 0:b16d94660a33 841 __IO uint8_t FCCOB2; /**< Flash Common Command Object Registers, offset: 0x5 */
Jasper_lee 0:b16d94660a33 842 __IO uint8_t FCCOB1; /**< Flash Common Command Object Registers, offset: 0x6 */
Jasper_lee 0:b16d94660a33 843 __IO uint8_t FCCOB0; /**< Flash Common Command Object Registers, offset: 0x7 */
Jasper_lee 0:b16d94660a33 844 __IO uint8_t FCCOB7; /**< Flash Common Command Object Registers, offset: 0x8 */
Jasper_lee 0:b16d94660a33 845 __IO uint8_t FCCOB6; /**< Flash Common Command Object Registers, offset: 0x9 */
Jasper_lee 0:b16d94660a33 846 __IO uint8_t FCCOB5; /**< Flash Common Command Object Registers, offset: 0xA */
Jasper_lee 0:b16d94660a33 847 __IO uint8_t FCCOB4; /**< Flash Common Command Object Registers, offset: 0xB */
Jasper_lee 0:b16d94660a33 848 __IO uint8_t FCCOBB; /**< Flash Common Command Object Registers, offset: 0xC */
Jasper_lee 0:b16d94660a33 849 __IO uint8_t FCCOBA; /**< Flash Common Command Object Registers, offset: 0xD */
Jasper_lee 0:b16d94660a33 850 __IO uint8_t FCCOB9; /**< Flash Common Command Object Registers, offset: 0xE */
Jasper_lee 0:b16d94660a33 851 __IO uint8_t FCCOB8; /**< Flash Common Command Object Registers, offset: 0xF */
Jasper_lee 0:b16d94660a33 852 __IO uint8_t FPROT3; /**< Program Flash Protection Registers, offset: 0x10 */
Jasper_lee 0:b16d94660a33 853 __IO uint8_t FPROT2; /**< Program Flash Protection Registers, offset: 0x11 */
Jasper_lee 0:b16d94660a33 854 __IO uint8_t FPROT1; /**< Program Flash Protection Registers, offset: 0x12 */
Jasper_lee 0:b16d94660a33 855 __IO uint8_t FPROT0; /**< Program Flash Protection Registers, offset: 0x13 */
Jasper_lee 0:b16d94660a33 856 } FTFA_Type;
Jasper_lee 0:b16d94660a33 857
Jasper_lee 0:b16d94660a33 858 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 859 -- FTFA Register Masks
Jasper_lee 0:b16d94660a33 860 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 861
Jasper_lee 0:b16d94660a33 862 /**
Jasper_lee 0:b16d94660a33 863 * @addtogroup FTFA_Register_Masks FTFA Register Masks
Jasper_lee 0:b16d94660a33 864 * @{
Jasper_lee 0:b16d94660a33 865 */
Jasper_lee 0:b16d94660a33 866
Jasper_lee 0:b16d94660a33 867 /* FSTAT Bit Fields */
Jasper_lee 0:b16d94660a33 868 #define FTFA_FSTAT_MGSTAT0_MASK 0x1u
Jasper_lee 0:b16d94660a33 869 #define FTFA_FSTAT_MGSTAT0_SHIFT 0
Jasper_lee 0:b16d94660a33 870 #define FTFA_FSTAT_FPVIOL_MASK 0x10u
Jasper_lee 0:b16d94660a33 871 #define FTFA_FSTAT_FPVIOL_SHIFT 4
Jasper_lee 0:b16d94660a33 872 #define FTFA_FSTAT_ACCERR_MASK 0x20u
Jasper_lee 0:b16d94660a33 873 #define FTFA_FSTAT_ACCERR_SHIFT 5
Jasper_lee 0:b16d94660a33 874 #define FTFA_FSTAT_RDCOLERR_MASK 0x40u
Jasper_lee 0:b16d94660a33 875 #define FTFA_FSTAT_RDCOLERR_SHIFT 6
Jasper_lee 0:b16d94660a33 876 #define FTFA_FSTAT_CCIF_MASK 0x80u
Jasper_lee 0:b16d94660a33 877 #define FTFA_FSTAT_CCIF_SHIFT 7
Jasper_lee 0:b16d94660a33 878 /* FCNFG Bit Fields */
Jasper_lee 0:b16d94660a33 879 #define FTFA_FCNFG_ERSSUSP_MASK 0x10u
Jasper_lee 0:b16d94660a33 880 #define FTFA_FCNFG_ERSSUSP_SHIFT 4
Jasper_lee 0:b16d94660a33 881 #define FTFA_FCNFG_ERSAREQ_MASK 0x20u
Jasper_lee 0:b16d94660a33 882 #define FTFA_FCNFG_ERSAREQ_SHIFT 5
Jasper_lee 0:b16d94660a33 883 #define FTFA_FCNFG_RDCOLLIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 884 #define FTFA_FCNFG_RDCOLLIE_SHIFT 6
Jasper_lee 0:b16d94660a33 885 #define FTFA_FCNFG_CCIE_MASK 0x80u
Jasper_lee 0:b16d94660a33 886 #define FTFA_FCNFG_CCIE_SHIFT 7
Jasper_lee 0:b16d94660a33 887 /* FSEC Bit Fields */
Jasper_lee 0:b16d94660a33 888 #define FTFA_FSEC_SEC_MASK 0x3u
Jasper_lee 0:b16d94660a33 889 #define FTFA_FSEC_SEC_SHIFT 0
Jasper_lee 0:b16d94660a33 890 #define FTFA_FSEC_SEC(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FSEC_SEC_SHIFT))&FTFA_FSEC_SEC_MASK)
Jasper_lee 0:b16d94660a33 891 #define FTFA_FSEC_FSLACC_MASK 0xCu
Jasper_lee 0:b16d94660a33 892 #define FTFA_FSEC_FSLACC_SHIFT 2
Jasper_lee 0:b16d94660a33 893 #define FTFA_FSEC_FSLACC(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FSEC_FSLACC_SHIFT))&FTFA_FSEC_FSLACC_MASK)
Jasper_lee 0:b16d94660a33 894 #define FTFA_FSEC_MEEN_MASK 0x30u
Jasper_lee 0:b16d94660a33 895 #define FTFA_FSEC_MEEN_SHIFT 4
Jasper_lee 0:b16d94660a33 896 #define FTFA_FSEC_MEEN(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FSEC_MEEN_SHIFT))&FTFA_FSEC_MEEN_MASK)
Jasper_lee 0:b16d94660a33 897 #define FTFA_FSEC_KEYEN_MASK 0xC0u
Jasper_lee 0:b16d94660a33 898 #define FTFA_FSEC_KEYEN_SHIFT 6
Jasper_lee 0:b16d94660a33 899 #define FTFA_FSEC_KEYEN(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FSEC_KEYEN_SHIFT))&FTFA_FSEC_KEYEN_MASK)
Jasper_lee 0:b16d94660a33 900 /* FOPT Bit Fields */
Jasper_lee 0:b16d94660a33 901 #define FTFA_FOPT_OPT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 902 #define FTFA_FOPT_OPT_SHIFT 0
Jasper_lee 0:b16d94660a33 903 #define FTFA_FOPT_OPT(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FOPT_OPT_SHIFT))&FTFA_FOPT_OPT_MASK)
Jasper_lee 0:b16d94660a33 904 /* FCCOB3 Bit Fields */
Jasper_lee 0:b16d94660a33 905 #define FTFA_FCCOB3_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 906 #define FTFA_FCCOB3_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 907 #define FTFA_FCCOB3_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB3_CCOBn_SHIFT))&FTFA_FCCOB3_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 908 /* FCCOB2 Bit Fields */
Jasper_lee 0:b16d94660a33 909 #define FTFA_FCCOB2_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 910 #define FTFA_FCCOB2_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 911 #define FTFA_FCCOB2_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB2_CCOBn_SHIFT))&FTFA_FCCOB2_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 912 /* FCCOB1 Bit Fields */
Jasper_lee 0:b16d94660a33 913 #define FTFA_FCCOB1_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 914 #define FTFA_FCCOB1_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 915 #define FTFA_FCCOB1_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB1_CCOBn_SHIFT))&FTFA_FCCOB1_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 916 /* FCCOB0 Bit Fields */
Jasper_lee 0:b16d94660a33 917 #define FTFA_FCCOB0_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 918 #define FTFA_FCCOB0_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 919 #define FTFA_FCCOB0_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB0_CCOBn_SHIFT))&FTFA_FCCOB0_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 920 /* FCCOB7 Bit Fields */
Jasper_lee 0:b16d94660a33 921 #define FTFA_FCCOB7_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 922 #define FTFA_FCCOB7_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 923 #define FTFA_FCCOB7_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB7_CCOBn_SHIFT))&FTFA_FCCOB7_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 924 /* FCCOB6 Bit Fields */
Jasper_lee 0:b16d94660a33 925 #define FTFA_FCCOB6_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 926 #define FTFA_FCCOB6_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 927 #define FTFA_FCCOB6_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB6_CCOBn_SHIFT))&FTFA_FCCOB6_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 928 /* FCCOB5 Bit Fields */
Jasper_lee 0:b16d94660a33 929 #define FTFA_FCCOB5_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 930 #define FTFA_FCCOB5_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 931 #define FTFA_FCCOB5_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB5_CCOBn_SHIFT))&FTFA_FCCOB5_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 932 /* FCCOB4 Bit Fields */
Jasper_lee 0:b16d94660a33 933 #define FTFA_FCCOB4_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 934 #define FTFA_FCCOB4_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 935 #define FTFA_FCCOB4_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB4_CCOBn_SHIFT))&FTFA_FCCOB4_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 936 /* FCCOBB Bit Fields */
Jasper_lee 0:b16d94660a33 937 #define FTFA_FCCOBB_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 938 #define FTFA_FCCOBB_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 939 #define FTFA_FCCOBB_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOBB_CCOBn_SHIFT))&FTFA_FCCOBB_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 940 /* FCCOBA Bit Fields */
Jasper_lee 0:b16d94660a33 941 #define FTFA_FCCOBA_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 942 #define FTFA_FCCOBA_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 943 #define FTFA_FCCOBA_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOBA_CCOBn_SHIFT))&FTFA_FCCOBA_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 944 /* FCCOB9 Bit Fields */
Jasper_lee 0:b16d94660a33 945 #define FTFA_FCCOB9_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 946 #define FTFA_FCCOB9_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 947 #define FTFA_FCCOB9_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB9_CCOBn_SHIFT))&FTFA_FCCOB9_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 948 /* FCCOB8 Bit Fields */
Jasper_lee 0:b16d94660a33 949 #define FTFA_FCCOB8_CCOBn_MASK 0xFFu
Jasper_lee 0:b16d94660a33 950 #define FTFA_FCCOB8_CCOBn_SHIFT 0
Jasper_lee 0:b16d94660a33 951 #define FTFA_FCCOB8_CCOBn(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FCCOB8_CCOBn_SHIFT))&FTFA_FCCOB8_CCOBn_MASK)
Jasper_lee 0:b16d94660a33 952 /* FPROT3 Bit Fields */
Jasper_lee 0:b16d94660a33 953 #define FTFA_FPROT3_PROT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 954 #define FTFA_FPROT3_PROT_SHIFT 0
Jasper_lee 0:b16d94660a33 955 #define FTFA_FPROT3_PROT(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FPROT3_PROT_SHIFT))&FTFA_FPROT3_PROT_MASK)
Jasper_lee 0:b16d94660a33 956 /* FPROT2 Bit Fields */
Jasper_lee 0:b16d94660a33 957 #define FTFA_FPROT2_PROT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 958 #define FTFA_FPROT2_PROT_SHIFT 0
Jasper_lee 0:b16d94660a33 959 #define FTFA_FPROT2_PROT(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FPROT2_PROT_SHIFT))&FTFA_FPROT2_PROT_MASK)
Jasper_lee 0:b16d94660a33 960 /* FPROT1 Bit Fields */
Jasper_lee 0:b16d94660a33 961 #define FTFA_FPROT1_PROT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 962 #define FTFA_FPROT1_PROT_SHIFT 0
Jasper_lee 0:b16d94660a33 963 #define FTFA_FPROT1_PROT(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FPROT1_PROT_SHIFT))&FTFA_FPROT1_PROT_MASK)
Jasper_lee 0:b16d94660a33 964 /* FPROT0 Bit Fields */
Jasper_lee 0:b16d94660a33 965 #define FTFA_FPROT0_PROT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 966 #define FTFA_FPROT0_PROT_SHIFT 0
Jasper_lee 0:b16d94660a33 967 #define FTFA_FPROT0_PROT(x) (((uint8_t)(((uint8_t)(x))<<FTFA_FPROT0_PROT_SHIFT))&FTFA_FPROT0_PROT_MASK)
Jasper_lee 0:b16d94660a33 968
Jasper_lee 0:b16d94660a33 969 /**
Jasper_lee 0:b16d94660a33 970 * @}
Jasper_lee 0:b16d94660a33 971 */ /* end of group FTFA_Register_Masks */
Jasper_lee 0:b16d94660a33 972
Jasper_lee 0:b16d94660a33 973
Jasper_lee 0:b16d94660a33 974 /* FTFA - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 975 /** Peripheral FTFA base address */
Jasper_lee 0:b16d94660a33 976 #define FTFA_BASE (0x40020000u)
Jasper_lee 0:b16d94660a33 977 /** Peripheral FTFA base pointer */
Jasper_lee 0:b16d94660a33 978 #define FTFA ((FTFA_Type *)FTFA_BASE)
Jasper_lee 0:b16d94660a33 979 /** Array initializer of FTFA peripheral base pointers */
Jasper_lee 0:b16d94660a33 980 #define FTFA_BASES { FTFA }
Jasper_lee 0:b16d94660a33 981
Jasper_lee 0:b16d94660a33 982 /**
Jasper_lee 0:b16d94660a33 983 * @}
Jasper_lee 0:b16d94660a33 984 */ /* end of group FTFA_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 985
Jasper_lee 0:b16d94660a33 986
Jasper_lee 0:b16d94660a33 987 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 988 -- GPIO Peripheral Access Layer
Jasper_lee 0:b16d94660a33 989 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 990
Jasper_lee 0:b16d94660a33 991 /**
Jasper_lee 0:b16d94660a33 992 * @addtogroup GPIO_Peripheral_Access_Layer GPIO Peripheral Access Layer
Jasper_lee 0:b16d94660a33 993 * @{
Jasper_lee 0:b16d94660a33 994 */
Jasper_lee 0:b16d94660a33 995
Jasper_lee 0:b16d94660a33 996 /** GPIO - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 997 typedef struct {
Jasper_lee 0:b16d94660a33 998 __IO uint32_t PDOR; /**< Port Data Output Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 999 __O uint32_t PSOR; /**< Port Set Output Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 1000 __O uint32_t PCOR; /**< Port Clear Output Register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 1001 __O uint32_t PTOR; /**< Port Toggle Output Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 1002 __I uint32_t PDIR; /**< Port Data Input Register, offset: 0x10 */
Jasper_lee 0:b16d94660a33 1003 __IO uint32_t PDDR; /**< Port Data Direction Register, offset: 0x14 */
Jasper_lee 0:b16d94660a33 1004 } GPIO_Type;
Jasper_lee 0:b16d94660a33 1005
Jasper_lee 0:b16d94660a33 1006 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1007 -- GPIO Register Masks
Jasper_lee 0:b16d94660a33 1008 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1009
Jasper_lee 0:b16d94660a33 1010 /**
Jasper_lee 0:b16d94660a33 1011 * @addtogroup GPIO_Register_Masks GPIO Register Masks
Jasper_lee 0:b16d94660a33 1012 * @{
Jasper_lee 0:b16d94660a33 1013 */
Jasper_lee 0:b16d94660a33 1014
Jasper_lee 0:b16d94660a33 1015 /* PDOR Bit Fields */
Jasper_lee 0:b16d94660a33 1016 #define GPIO_PDOR_PDO_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1017 #define GPIO_PDOR_PDO_SHIFT 0
Jasper_lee 0:b16d94660a33 1018 #define GPIO_PDOR_PDO(x) (((uint32_t)(((uint32_t)(x))<<GPIO_PDOR_PDO_SHIFT))&GPIO_PDOR_PDO_MASK)
Jasper_lee 0:b16d94660a33 1019 /* PSOR Bit Fields */
Jasper_lee 0:b16d94660a33 1020 #define GPIO_PSOR_PTSO_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1021 #define GPIO_PSOR_PTSO_SHIFT 0
Jasper_lee 0:b16d94660a33 1022 #define GPIO_PSOR_PTSO(x) (((uint32_t)(((uint32_t)(x))<<GPIO_PSOR_PTSO_SHIFT))&GPIO_PSOR_PTSO_MASK)
Jasper_lee 0:b16d94660a33 1023 /* PCOR Bit Fields */
Jasper_lee 0:b16d94660a33 1024 #define GPIO_PCOR_PTCO_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1025 #define GPIO_PCOR_PTCO_SHIFT 0
Jasper_lee 0:b16d94660a33 1026 #define GPIO_PCOR_PTCO(x) (((uint32_t)(((uint32_t)(x))<<GPIO_PCOR_PTCO_SHIFT))&GPIO_PCOR_PTCO_MASK)
Jasper_lee 0:b16d94660a33 1027 /* PTOR Bit Fields */
Jasper_lee 0:b16d94660a33 1028 #define GPIO_PTOR_PTTO_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1029 #define GPIO_PTOR_PTTO_SHIFT 0
Jasper_lee 0:b16d94660a33 1030 #define GPIO_PTOR_PTTO(x) (((uint32_t)(((uint32_t)(x))<<GPIO_PTOR_PTTO_SHIFT))&GPIO_PTOR_PTTO_MASK)
Jasper_lee 0:b16d94660a33 1031 /* PDIR Bit Fields */
Jasper_lee 0:b16d94660a33 1032 #define GPIO_PDIR_PDI_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1033 #define GPIO_PDIR_PDI_SHIFT 0
Jasper_lee 0:b16d94660a33 1034 #define GPIO_PDIR_PDI(x) (((uint32_t)(((uint32_t)(x))<<GPIO_PDIR_PDI_SHIFT))&GPIO_PDIR_PDI_MASK)
Jasper_lee 0:b16d94660a33 1035 /* PDDR Bit Fields */
Jasper_lee 0:b16d94660a33 1036 #define GPIO_PDDR_PDD_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1037 #define GPIO_PDDR_PDD_SHIFT 0
Jasper_lee 0:b16d94660a33 1038 #define GPIO_PDDR_PDD(x) (((uint32_t)(((uint32_t)(x))<<GPIO_PDDR_PDD_SHIFT))&GPIO_PDDR_PDD_MASK)
Jasper_lee 0:b16d94660a33 1039
Jasper_lee 0:b16d94660a33 1040 /**
Jasper_lee 0:b16d94660a33 1041 * @}
Jasper_lee 0:b16d94660a33 1042 */ /* end of group GPIO_Register_Masks */
Jasper_lee 0:b16d94660a33 1043
Jasper_lee 0:b16d94660a33 1044
Jasper_lee 0:b16d94660a33 1045 /* GPIO - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 1046 /** Peripheral PTA base address */
Jasper_lee 0:b16d94660a33 1047 #define PTA_BASE (0x400FF000u)
Jasper_lee 0:b16d94660a33 1048 /** Peripheral PTA base pointer */
Jasper_lee 0:b16d94660a33 1049 #define PTA ((GPIO_Type *)PTA_BASE)
Jasper_lee 0:b16d94660a33 1050 /** Peripheral PTB base address */
Jasper_lee 0:b16d94660a33 1051 #define PTB_BASE (0x400FF040u)
Jasper_lee 0:b16d94660a33 1052 /** Peripheral PTB base pointer */
Jasper_lee 0:b16d94660a33 1053 #define PTB ((GPIO_Type *)PTB_BASE)
Jasper_lee 0:b16d94660a33 1054 /** Peripheral PTC base address */
Jasper_lee 0:b16d94660a33 1055 #define PTC_BASE (0x400FF080u)
Jasper_lee 0:b16d94660a33 1056 /** Peripheral PTC base pointer */
Jasper_lee 0:b16d94660a33 1057 #define PTC ((GPIO_Type *)PTC_BASE)
Jasper_lee 0:b16d94660a33 1058 /** Peripheral PTD base address */
Jasper_lee 0:b16d94660a33 1059 #define PTD_BASE (0x400FF0C0u)
Jasper_lee 0:b16d94660a33 1060 /** Peripheral PTD base pointer */
Jasper_lee 0:b16d94660a33 1061 #define PTD ((GPIO_Type *)PTD_BASE)
Jasper_lee 0:b16d94660a33 1062 /** Peripheral PTE base address */
Jasper_lee 0:b16d94660a33 1063 #define PTE_BASE (0x400FF100u)
Jasper_lee 0:b16d94660a33 1064 /** Peripheral PTE base pointer */
Jasper_lee 0:b16d94660a33 1065 #define PTE ((GPIO_Type *)PTE_BASE)
Jasper_lee 0:b16d94660a33 1066 /** Array initializer of GPIO peripheral base pointers */
Jasper_lee 0:b16d94660a33 1067 #define GPIO_BASES { PTA, PTB, PTC, PTD, PTE }
Jasper_lee 0:b16d94660a33 1068
Jasper_lee 0:b16d94660a33 1069 /**
Jasper_lee 0:b16d94660a33 1070 * @}
Jasper_lee 0:b16d94660a33 1071 */ /* end of group GPIO_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 1072
Jasper_lee 0:b16d94660a33 1073
Jasper_lee 0:b16d94660a33 1074 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1075 -- I2C Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1076 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1077
Jasper_lee 0:b16d94660a33 1078 /**
Jasper_lee 0:b16d94660a33 1079 * @addtogroup I2C_Peripheral_Access_Layer I2C Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1080 * @{
Jasper_lee 0:b16d94660a33 1081 */
Jasper_lee 0:b16d94660a33 1082
Jasper_lee 0:b16d94660a33 1083 /** I2C - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 1084 typedef struct {
Jasper_lee 0:b16d94660a33 1085 __IO uint8_t A1; /**< I2C Address Register 1, offset: 0x0 */
Jasper_lee 0:b16d94660a33 1086 __IO uint8_t F; /**< I2C Frequency Divider register, offset: 0x1 */
Jasper_lee 0:b16d94660a33 1087 __IO uint8_t C1; /**< I2C Control Register 1, offset: 0x2 */
Jasper_lee 0:b16d94660a33 1088 __IO uint8_t S; /**< I2C Status register, offset: 0x3 */
Jasper_lee 0:b16d94660a33 1089 __IO uint8_t D; /**< I2C Data I/O register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 1090 __IO uint8_t C2; /**< I2C Control Register 2, offset: 0x5 */
Jasper_lee 0:b16d94660a33 1091 __IO uint8_t FLT; /**< I2C Programmable Input Glitch Filter register, offset: 0x6 */
Jasper_lee 0:b16d94660a33 1092 __IO uint8_t RA; /**< I2C Range Address register, offset: 0x7 */
Jasper_lee 0:b16d94660a33 1093 __IO uint8_t SMB; /**< I2C SMBus Control and Status register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 1094 __IO uint8_t A2; /**< I2C Address Register 2, offset: 0x9 */
Jasper_lee 0:b16d94660a33 1095 __IO uint8_t SLTH; /**< I2C SCL Low Timeout Register High, offset: 0xA */
Jasper_lee 0:b16d94660a33 1096 __IO uint8_t SLTL; /**< I2C SCL Low Timeout Register Low, offset: 0xB */
Jasper_lee 0:b16d94660a33 1097 } I2C_Type;
Jasper_lee 0:b16d94660a33 1098
Jasper_lee 0:b16d94660a33 1099 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1100 -- I2C Register Masks
Jasper_lee 0:b16d94660a33 1101 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1102
Jasper_lee 0:b16d94660a33 1103 /**
Jasper_lee 0:b16d94660a33 1104 * @addtogroup I2C_Register_Masks I2C Register Masks
Jasper_lee 0:b16d94660a33 1105 * @{
Jasper_lee 0:b16d94660a33 1106 */
Jasper_lee 0:b16d94660a33 1107
Jasper_lee 0:b16d94660a33 1108 /* A1 Bit Fields */
Jasper_lee 0:b16d94660a33 1109 #define I2C_A1_AD_MASK 0xFEu
Jasper_lee 0:b16d94660a33 1110 #define I2C_A1_AD_SHIFT 1
Jasper_lee 0:b16d94660a33 1111 #define I2C_A1_AD(x) (((uint8_t)(((uint8_t)(x))<<I2C_A1_AD_SHIFT))&I2C_A1_AD_MASK)
Jasper_lee 0:b16d94660a33 1112 /* F Bit Fields */
Jasper_lee 0:b16d94660a33 1113 #define I2C_F_ICR_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 1114 #define I2C_F_ICR_SHIFT 0
Jasper_lee 0:b16d94660a33 1115 #define I2C_F_ICR(x) (((uint8_t)(((uint8_t)(x))<<I2C_F_ICR_SHIFT))&I2C_F_ICR_MASK)
Jasper_lee 0:b16d94660a33 1116 #define I2C_F_MULT_MASK 0xC0u
Jasper_lee 0:b16d94660a33 1117 #define I2C_F_MULT_SHIFT 6
Jasper_lee 0:b16d94660a33 1118 #define I2C_F_MULT(x) (((uint8_t)(((uint8_t)(x))<<I2C_F_MULT_SHIFT))&I2C_F_MULT_MASK)
Jasper_lee 0:b16d94660a33 1119 /* C1 Bit Fields */
Jasper_lee 0:b16d94660a33 1120 #define I2C_C1_DMAEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 1121 #define I2C_C1_DMAEN_SHIFT 0
Jasper_lee 0:b16d94660a33 1122 #define I2C_C1_WUEN_MASK 0x2u
Jasper_lee 0:b16d94660a33 1123 #define I2C_C1_WUEN_SHIFT 1
Jasper_lee 0:b16d94660a33 1124 #define I2C_C1_RSTA_MASK 0x4u
Jasper_lee 0:b16d94660a33 1125 #define I2C_C1_RSTA_SHIFT 2
Jasper_lee 0:b16d94660a33 1126 #define I2C_C1_TXAK_MASK 0x8u
Jasper_lee 0:b16d94660a33 1127 #define I2C_C1_TXAK_SHIFT 3
Jasper_lee 0:b16d94660a33 1128 #define I2C_C1_TX_MASK 0x10u
Jasper_lee 0:b16d94660a33 1129 #define I2C_C1_TX_SHIFT 4
Jasper_lee 0:b16d94660a33 1130 #define I2C_C1_MST_MASK 0x20u
Jasper_lee 0:b16d94660a33 1131 #define I2C_C1_MST_SHIFT 5
Jasper_lee 0:b16d94660a33 1132 #define I2C_C1_IICIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 1133 #define I2C_C1_IICIE_SHIFT 6
Jasper_lee 0:b16d94660a33 1134 #define I2C_C1_IICEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 1135 #define I2C_C1_IICEN_SHIFT 7
Jasper_lee 0:b16d94660a33 1136 /* S Bit Fields */
Jasper_lee 0:b16d94660a33 1137 #define I2C_S_RXAK_MASK 0x1u
Jasper_lee 0:b16d94660a33 1138 #define I2C_S_RXAK_SHIFT 0
Jasper_lee 0:b16d94660a33 1139 #define I2C_S_IICIF_MASK 0x2u
Jasper_lee 0:b16d94660a33 1140 #define I2C_S_IICIF_SHIFT 1
Jasper_lee 0:b16d94660a33 1141 #define I2C_S_SRW_MASK 0x4u
Jasper_lee 0:b16d94660a33 1142 #define I2C_S_SRW_SHIFT 2
Jasper_lee 0:b16d94660a33 1143 #define I2C_S_RAM_MASK 0x8u
Jasper_lee 0:b16d94660a33 1144 #define I2C_S_RAM_SHIFT 3
Jasper_lee 0:b16d94660a33 1145 #define I2C_S_ARBL_MASK 0x10u
Jasper_lee 0:b16d94660a33 1146 #define I2C_S_ARBL_SHIFT 4
Jasper_lee 0:b16d94660a33 1147 #define I2C_S_BUSY_MASK 0x20u
Jasper_lee 0:b16d94660a33 1148 #define I2C_S_BUSY_SHIFT 5
Jasper_lee 0:b16d94660a33 1149 #define I2C_S_IAAS_MASK 0x40u
Jasper_lee 0:b16d94660a33 1150 #define I2C_S_IAAS_SHIFT 6
Jasper_lee 0:b16d94660a33 1151 #define I2C_S_TCF_MASK 0x80u
Jasper_lee 0:b16d94660a33 1152 #define I2C_S_TCF_SHIFT 7
Jasper_lee 0:b16d94660a33 1153 /* D Bit Fields */
Jasper_lee 0:b16d94660a33 1154 #define I2C_D_DATA_MASK 0xFFu
Jasper_lee 0:b16d94660a33 1155 #define I2C_D_DATA_SHIFT 0
Jasper_lee 0:b16d94660a33 1156 #define I2C_D_DATA(x) (((uint8_t)(((uint8_t)(x))<<I2C_D_DATA_SHIFT))&I2C_D_DATA_MASK)
Jasper_lee 0:b16d94660a33 1157 /* C2 Bit Fields */
Jasper_lee 0:b16d94660a33 1158 #define I2C_C2_AD_MASK 0x7u
Jasper_lee 0:b16d94660a33 1159 #define I2C_C2_AD_SHIFT 0
Jasper_lee 0:b16d94660a33 1160 #define I2C_C2_AD(x) (((uint8_t)(((uint8_t)(x))<<I2C_C2_AD_SHIFT))&I2C_C2_AD_MASK)
Jasper_lee 0:b16d94660a33 1161 #define I2C_C2_RMEN_MASK 0x8u
Jasper_lee 0:b16d94660a33 1162 #define I2C_C2_RMEN_SHIFT 3
Jasper_lee 0:b16d94660a33 1163 #define I2C_C2_SBRC_MASK 0x10u
Jasper_lee 0:b16d94660a33 1164 #define I2C_C2_SBRC_SHIFT 4
Jasper_lee 0:b16d94660a33 1165 #define I2C_C2_HDRS_MASK 0x20u
Jasper_lee 0:b16d94660a33 1166 #define I2C_C2_HDRS_SHIFT 5
Jasper_lee 0:b16d94660a33 1167 #define I2C_C2_ADEXT_MASK 0x40u
Jasper_lee 0:b16d94660a33 1168 #define I2C_C2_ADEXT_SHIFT 6
Jasper_lee 0:b16d94660a33 1169 #define I2C_C2_GCAEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 1170 #define I2C_C2_GCAEN_SHIFT 7
Jasper_lee 0:b16d94660a33 1171 /* FLT Bit Fields */
Jasper_lee 0:b16d94660a33 1172 #define I2C_FLT_FLT_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 1173 #define I2C_FLT_FLT_SHIFT 0
Jasper_lee 0:b16d94660a33 1174 #define I2C_FLT_FLT(x) (((uint8_t)(((uint8_t)(x))<<I2C_FLT_FLT_SHIFT))&I2C_FLT_FLT_MASK)
Jasper_lee 0:b16d94660a33 1175 #define I2C_FLT_STOPIE_MASK 0x20u
Jasper_lee 0:b16d94660a33 1176 #define I2C_FLT_STOPIE_SHIFT 5
Jasper_lee 0:b16d94660a33 1177 #define I2C_FLT_STOPF_MASK 0x40u
Jasper_lee 0:b16d94660a33 1178 #define I2C_FLT_STOPF_SHIFT 6
Jasper_lee 0:b16d94660a33 1179 #define I2C_FLT_SHEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 1180 #define I2C_FLT_SHEN_SHIFT 7
Jasper_lee 0:b16d94660a33 1181 /* RA Bit Fields */
Jasper_lee 0:b16d94660a33 1182 #define I2C_RA_RAD_MASK 0xFEu
Jasper_lee 0:b16d94660a33 1183 #define I2C_RA_RAD_SHIFT 1
Jasper_lee 0:b16d94660a33 1184 #define I2C_RA_RAD(x) (((uint8_t)(((uint8_t)(x))<<I2C_RA_RAD_SHIFT))&I2C_RA_RAD_MASK)
Jasper_lee 0:b16d94660a33 1185 /* SMB Bit Fields */
Jasper_lee 0:b16d94660a33 1186 #define I2C_SMB_SHTF2IE_MASK 0x1u
Jasper_lee 0:b16d94660a33 1187 #define I2C_SMB_SHTF2IE_SHIFT 0
Jasper_lee 0:b16d94660a33 1188 #define I2C_SMB_SHTF2_MASK 0x2u
Jasper_lee 0:b16d94660a33 1189 #define I2C_SMB_SHTF2_SHIFT 1
Jasper_lee 0:b16d94660a33 1190 #define I2C_SMB_SHTF1_MASK 0x4u
Jasper_lee 0:b16d94660a33 1191 #define I2C_SMB_SHTF1_SHIFT 2
Jasper_lee 0:b16d94660a33 1192 #define I2C_SMB_SLTF_MASK 0x8u
Jasper_lee 0:b16d94660a33 1193 #define I2C_SMB_SLTF_SHIFT 3
Jasper_lee 0:b16d94660a33 1194 #define I2C_SMB_TCKSEL_MASK 0x10u
Jasper_lee 0:b16d94660a33 1195 #define I2C_SMB_TCKSEL_SHIFT 4
Jasper_lee 0:b16d94660a33 1196 #define I2C_SMB_SIICAEN_MASK 0x20u
Jasper_lee 0:b16d94660a33 1197 #define I2C_SMB_SIICAEN_SHIFT 5
Jasper_lee 0:b16d94660a33 1198 #define I2C_SMB_ALERTEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 1199 #define I2C_SMB_ALERTEN_SHIFT 6
Jasper_lee 0:b16d94660a33 1200 #define I2C_SMB_FACK_MASK 0x80u
Jasper_lee 0:b16d94660a33 1201 #define I2C_SMB_FACK_SHIFT 7
Jasper_lee 0:b16d94660a33 1202 /* A2 Bit Fields */
Jasper_lee 0:b16d94660a33 1203 #define I2C_A2_SAD_MASK 0xFEu
Jasper_lee 0:b16d94660a33 1204 #define I2C_A2_SAD_SHIFT 1
Jasper_lee 0:b16d94660a33 1205 #define I2C_A2_SAD(x) (((uint8_t)(((uint8_t)(x))<<I2C_A2_SAD_SHIFT))&I2C_A2_SAD_MASK)
Jasper_lee 0:b16d94660a33 1206 /* SLTH Bit Fields */
Jasper_lee 0:b16d94660a33 1207 #define I2C_SLTH_SSLT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 1208 #define I2C_SLTH_SSLT_SHIFT 0
Jasper_lee 0:b16d94660a33 1209 #define I2C_SLTH_SSLT(x) (((uint8_t)(((uint8_t)(x))<<I2C_SLTH_SSLT_SHIFT))&I2C_SLTH_SSLT_MASK)
Jasper_lee 0:b16d94660a33 1210 /* SLTL Bit Fields */
Jasper_lee 0:b16d94660a33 1211 #define I2C_SLTL_SSLT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 1212 #define I2C_SLTL_SSLT_SHIFT 0
Jasper_lee 0:b16d94660a33 1213 #define I2C_SLTL_SSLT(x) (((uint8_t)(((uint8_t)(x))<<I2C_SLTL_SSLT_SHIFT))&I2C_SLTL_SSLT_MASK)
Jasper_lee 0:b16d94660a33 1214
Jasper_lee 0:b16d94660a33 1215 /**
Jasper_lee 0:b16d94660a33 1216 * @}
Jasper_lee 0:b16d94660a33 1217 */ /* end of group I2C_Register_Masks */
Jasper_lee 0:b16d94660a33 1218
Jasper_lee 0:b16d94660a33 1219
Jasper_lee 0:b16d94660a33 1220 /* I2C - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 1221 /** Peripheral I2C0 base address */
Jasper_lee 0:b16d94660a33 1222 #define I2C0_BASE (0x40066000u)
Jasper_lee 0:b16d94660a33 1223 /** Peripheral I2C0 base pointer */
Jasper_lee 0:b16d94660a33 1224 #define I2C0 ((I2C_Type *)I2C0_BASE)
Jasper_lee 0:b16d94660a33 1225 /** Peripheral I2C1 base address */
Jasper_lee 0:b16d94660a33 1226 #define I2C1_BASE (0x40067000u)
Jasper_lee 0:b16d94660a33 1227 /** Peripheral I2C1 base pointer */
Jasper_lee 0:b16d94660a33 1228 #define I2C1 ((I2C_Type *)I2C1_BASE)
Jasper_lee 0:b16d94660a33 1229 /** Array initializer of I2C peripheral base pointers */
Jasper_lee 0:b16d94660a33 1230 #define I2C_BASES { I2C0, I2C1 }
Jasper_lee 0:b16d94660a33 1231
Jasper_lee 0:b16d94660a33 1232 /**
Jasper_lee 0:b16d94660a33 1233 * @}
Jasper_lee 0:b16d94660a33 1234 */ /* end of group I2C_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 1235
Jasper_lee 0:b16d94660a33 1236
Jasper_lee 0:b16d94660a33 1237 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1238 -- LLWU Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1239 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1240
Jasper_lee 0:b16d94660a33 1241 /**
Jasper_lee 0:b16d94660a33 1242 * @addtogroup LLWU_Peripheral_Access_Layer LLWU Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1243 * @{
Jasper_lee 0:b16d94660a33 1244 */
Jasper_lee 0:b16d94660a33 1245
Jasper_lee 0:b16d94660a33 1246 /** LLWU - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 1247 typedef struct {
Jasper_lee 0:b16d94660a33 1248 __IO uint8_t PE1; /**< LLWU Pin Enable 1 register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 1249 __IO uint8_t PE2; /**< LLWU Pin Enable 2 register, offset: 0x1 */
Jasper_lee 0:b16d94660a33 1250 __IO uint8_t PE3; /**< LLWU Pin Enable 3 register, offset: 0x2 */
Jasper_lee 0:b16d94660a33 1251 __IO uint8_t PE4; /**< LLWU Pin Enable 4 register, offset: 0x3 */
Jasper_lee 0:b16d94660a33 1252 __IO uint8_t ME; /**< LLWU Module Enable register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 1253 __IO uint8_t F1; /**< LLWU Flag 1 register, offset: 0x5 */
Jasper_lee 0:b16d94660a33 1254 __IO uint8_t F2; /**< LLWU Flag 2 register, offset: 0x6 */
Jasper_lee 0:b16d94660a33 1255 __I uint8_t F3; /**< LLWU Flag 3 register, offset: 0x7 */
Jasper_lee 0:b16d94660a33 1256 __IO uint8_t FILT1; /**< LLWU Pin Filter 1 register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 1257 __IO uint8_t FILT2; /**< LLWU Pin Filter 2 register, offset: 0x9 */
Jasper_lee 0:b16d94660a33 1258 } LLWU_Type;
Jasper_lee 0:b16d94660a33 1259
Jasper_lee 0:b16d94660a33 1260 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1261 -- LLWU Register Masks
Jasper_lee 0:b16d94660a33 1262 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1263
Jasper_lee 0:b16d94660a33 1264 /**
Jasper_lee 0:b16d94660a33 1265 * @addtogroup LLWU_Register_Masks LLWU Register Masks
Jasper_lee 0:b16d94660a33 1266 * @{
Jasper_lee 0:b16d94660a33 1267 */
Jasper_lee 0:b16d94660a33 1268
Jasper_lee 0:b16d94660a33 1269 /* PE1 Bit Fields */
Jasper_lee 0:b16d94660a33 1270 #define LLWU_PE1_WUPE0_MASK 0x3u
Jasper_lee 0:b16d94660a33 1271 #define LLWU_PE1_WUPE0_SHIFT 0
Jasper_lee 0:b16d94660a33 1272 #define LLWU_PE1_WUPE0(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE1_WUPE0_SHIFT))&LLWU_PE1_WUPE0_MASK)
Jasper_lee 0:b16d94660a33 1273 #define LLWU_PE1_WUPE1_MASK 0xCu
Jasper_lee 0:b16d94660a33 1274 #define LLWU_PE1_WUPE1_SHIFT 2
Jasper_lee 0:b16d94660a33 1275 #define LLWU_PE1_WUPE1(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE1_WUPE1_SHIFT))&LLWU_PE1_WUPE1_MASK)
Jasper_lee 0:b16d94660a33 1276 #define LLWU_PE1_WUPE2_MASK 0x30u
Jasper_lee 0:b16d94660a33 1277 #define LLWU_PE1_WUPE2_SHIFT 4
Jasper_lee 0:b16d94660a33 1278 #define LLWU_PE1_WUPE2(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE1_WUPE2_SHIFT))&LLWU_PE1_WUPE2_MASK)
Jasper_lee 0:b16d94660a33 1279 #define LLWU_PE1_WUPE3_MASK 0xC0u
Jasper_lee 0:b16d94660a33 1280 #define LLWU_PE1_WUPE3_SHIFT 6
Jasper_lee 0:b16d94660a33 1281 #define LLWU_PE1_WUPE3(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE1_WUPE3_SHIFT))&LLWU_PE1_WUPE3_MASK)
Jasper_lee 0:b16d94660a33 1282 /* PE2 Bit Fields */
Jasper_lee 0:b16d94660a33 1283 #define LLWU_PE2_WUPE4_MASK 0x3u
Jasper_lee 0:b16d94660a33 1284 #define LLWU_PE2_WUPE4_SHIFT 0
Jasper_lee 0:b16d94660a33 1285 #define LLWU_PE2_WUPE4(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE2_WUPE4_SHIFT))&LLWU_PE2_WUPE4_MASK)
Jasper_lee 0:b16d94660a33 1286 #define LLWU_PE2_WUPE5_MASK 0xCu
Jasper_lee 0:b16d94660a33 1287 #define LLWU_PE2_WUPE5_SHIFT 2
Jasper_lee 0:b16d94660a33 1288 #define LLWU_PE2_WUPE5(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE2_WUPE5_SHIFT))&LLWU_PE2_WUPE5_MASK)
Jasper_lee 0:b16d94660a33 1289 #define LLWU_PE2_WUPE6_MASK 0x30u
Jasper_lee 0:b16d94660a33 1290 #define LLWU_PE2_WUPE6_SHIFT 4
Jasper_lee 0:b16d94660a33 1291 #define LLWU_PE2_WUPE6(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE2_WUPE6_SHIFT))&LLWU_PE2_WUPE6_MASK)
Jasper_lee 0:b16d94660a33 1292 #define LLWU_PE2_WUPE7_MASK 0xC0u
Jasper_lee 0:b16d94660a33 1293 #define LLWU_PE2_WUPE7_SHIFT 6
Jasper_lee 0:b16d94660a33 1294 #define LLWU_PE2_WUPE7(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE2_WUPE7_SHIFT))&LLWU_PE2_WUPE7_MASK)
Jasper_lee 0:b16d94660a33 1295 /* PE3 Bit Fields */
Jasper_lee 0:b16d94660a33 1296 #define LLWU_PE3_WUPE8_MASK 0x3u
Jasper_lee 0:b16d94660a33 1297 #define LLWU_PE3_WUPE8_SHIFT 0
Jasper_lee 0:b16d94660a33 1298 #define LLWU_PE3_WUPE8(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE3_WUPE8_SHIFT))&LLWU_PE3_WUPE8_MASK)
Jasper_lee 0:b16d94660a33 1299 #define LLWU_PE3_WUPE9_MASK 0xCu
Jasper_lee 0:b16d94660a33 1300 #define LLWU_PE3_WUPE9_SHIFT 2
Jasper_lee 0:b16d94660a33 1301 #define LLWU_PE3_WUPE9(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE3_WUPE9_SHIFT))&LLWU_PE3_WUPE9_MASK)
Jasper_lee 0:b16d94660a33 1302 #define LLWU_PE3_WUPE10_MASK 0x30u
Jasper_lee 0:b16d94660a33 1303 #define LLWU_PE3_WUPE10_SHIFT 4
Jasper_lee 0:b16d94660a33 1304 #define LLWU_PE3_WUPE10(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE3_WUPE10_SHIFT))&LLWU_PE3_WUPE10_MASK)
Jasper_lee 0:b16d94660a33 1305 #define LLWU_PE3_WUPE11_MASK 0xC0u
Jasper_lee 0:b16d94660a33 1306 #define LLWU_PE3_WUPE11_SHIFT 6
Jasper_lee 0:b16d94660a33 1307 #define LLWU_PE3_WUPE11(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE3_WUPE11_SHIFT))&LLWU_PE3_WUPE11_MASK)
Jasper_lee 0:b16d94660a33 1308 /* PE4 Bit Fields */
Jasper_lee 0:b16d94660a33 1309 #define LLWU_PE4_WUPE12_MASK 0x3u
Jasper_lee 0:b16d94660a33 1310 #define LLWU_PE4_WUPE12_SHIFT 0
Jasper_lee 0:b16d94660a33 1311 #define LLWU_PE4_WUPE12(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE4_WUPE12_SHIFT))&LLWU_PE4_WUPE12_MASK)
Jasper_lee 0:b16d94660a33 1312 #define LLWU_PE4_WUPE13_MASK 0xCu
Jasper_lee 0:b16d94660a33 1313 #define LLWU_PE4_WUPE13_SHIFT 2
Jasper_lee 0:b16d94660a33 1314 #define LLWU_PE4_WUPE13(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE4_WUPE13_SHIFT))&LLWU_PE4_WUPE13_MASK)
Jasper_lee 0:b16d94660a33 1315 #define LLWU_PE4_WUPE14_MASK 0x30u
Jasper_lee 0:b16d94660a33 1316 #define LLWU_PE4_WUPE14_SHIFT 4
Jasper_lee 0:b16d94660a33 1317 #define LLWU_PE4_WUPE14(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE4_WUPE14_SHIFT))&LLWU_PE4_WUPE14_MASK)
Jasper_lee 0:b16d94660a33 1318 #define LLWU_PE4_WUPE15_MASK 0xC0u
Jasper_lee 0:b16d94660a33 1319 #define LLWU_PE4_WUPE15_SHIFT 6
Jasper_lee 0:b16d94660a33 1320 #define LLWU_PE4_WUPE15(x) (((uint8_t)(((uint8_t)(x))<<LLWU_PE4_WUPE15_SHIFT))&LLWU_PE4_WUPE15_MASK)
Jasper_lee 0:b16d94660a33 1321 /* ME Bit Fields */
Jasper_lee 0:b16d94660a33 1322 #define LLWU_ME_WUME0_MASK 0x1u
Jasper_lee 0:b16d94660a33 1323 #define LLWU_ME_WUME0_SHIFT 0
Jasper_lee 0:b16d94660a33 1324 #define LLWU_ME_WUME1_MASK 0x2u
Jasper_lee 0:b16d94660a33 1325 #define LLWU_ME_WUME1_SHIFT 1
Jasper_lee 0:b16d94660a33 1326 #define LLWU_ME_WUME2_MASK 0x4u
Jasper_lee 0:b16d94660a33 1327 #define LLWU_ME_WUME2_SHIFT 2
Jasper_lee 0:b16d94660a33 1328 #define LLWU_ME_WUME3_MASK 0x8u
Jasper_lee 0:b16d94660a33 1329 #define LLWU_ME_WUME3_SHIFT 3
Jasper_lee 0:b16d94660a33 1330 #define LLWU_ME_WUME4_MASK 0x10u
Jasper_lee 0:b16d94660a33 1331 #define LLWU_ME_WUME4_SHIFT 4
Jasper_lee 0:b16d94660a33 1332 #define LLWU_ME_WUME5_MASK 0x20u
Jasper_lee 0:b16d94660a33 1333 #define LLWU_ME_WUME5_SHIFT 5
Jasper_lee 0:b16d94660a33 1334 #define LLWU_ME_WUME6_MASK 0x40u
Jasper_lee 0:b16d94660a33 1335 #define LLWU_ME_WUME6_SHIFT 6
Jasper_lee 0:b16d94660a33 1336 #define LLWU_ME_WUME7_MASK 0x80u
Jasper_lee 0:b16d94660a33 1337 #define LLWU_ME_WUME7_SHIFT 7
Jasper_lee 0:b16d94660a33 1338 /* F1 Bit Fields */
Jasper_lee 0:b16d94660a33 1339 #define LLWU_F1_WUF0_MASK 0x1u
Jasper_lee 0:b16d94660a33 1340 #define LLWU_F1_WUF0_SHIFT 0
Jasper_lee 0:b16d94660a33 1341 #define LLWU_F1_WUF1_MASK 0x2u
Jasper_lee 0:b16d94660a33 1342 #define LLWU_F1_WUF1_SHIFT 1
Jasper_lee 0:b16d94660a33 1343 #define LLWU_F1_WUF2_MASK 0x4u
Jasper_lee 0:b16d94660a33 1344 #define LLWU_F1_WUF2_SHIFT 2
Jasper_lee 0:b16d94660a33 1345 #define LLWU_F1_WUF3_MASK 0x8u
Jasper_lee 0:b16d94660a33 1346 #define LLWU_F1_WUF3_SHIFT 3
Jasper_lee 0:b16d94660a33 1347 #define LLWU_F1_WUF4_MASK 0x10u
Jasper_lee 0:b16d94660a33 1348 #define LLWU_F1_WUF4_SHIFT 4
Jasper_lee 0:b16d94660a33 1349 #define LLWU_F1_WUF5_MASK 0x20u
Jasper_lee 0:b16d94660a33 1350 #define LLWU_F1_WUF5_SHIFT 5
Jasper_lee 0:b16d94660a33 1351 #define LLWU_F1_WUF6_MASK 0x40u
Jasper_lee 0:b16d94660a33 1352 #define LLWU_F1_WUF6_SHIFT 6
Jasper_lee 0:b16d94660a33 1353 #define LLWU_F1_WUF7_MASK 0x80u
Jasper_lee 0:b16d94660a33 1354 #define LLWU_F1_WUF7_SHIFT 7
Jasper_lee 0:b16d94660a33 1355 /* F2 Bit Fields */
Jasper_lee 0:b16d94660a33 1356 #define LLWU_F2_WUF8_MASK 0x1u
Jasper_lee 0:b16d94660a33 1357 #define LLWU_F2_WUF8_SHIFT 0
Jasper_lee 0:b16d94660a33 1358 #define LLWU_F2_WUF9_MASK 0x2u
Jasper_lee 0:b16d94660a33 1359 #define LLWU_F2_WUF9_SHIFT 1
Jasper_lee 0:b16d94660a33 1360 #define LLWU_F2_WUF10_MASK 0x4u
Jasper_lee 0:b16d94660a33 1361 #define LLWU_F2_WUF10_SHIFT 2
Jasper_lee 0:b16d94660a33 1362 #define LLWU_F2_WUF11_MASK 0x8u
Jasper_lee 0:b16d94660a33 1363 #define LLWU_F2_WUF11_SHIFT 3
Jasper_lee 0:b16d94660a33 1364 #define LLWU_F2_WUF12_MASK 0x10u
Jasper_lee 0:b16d94660a33 1365 #define LLWU_F2_WUF12_SHIFT 4
Jasper_lee 0:b16d94660a33 1366 #define LLWU_F2_WUF13_MASK 0x20u
Jasper_lee 0:b16d94660a33 1367 #define LLWU_F2_WUF13_SHIFT 5
Jasper_lee 0:b16d94660a33 1368 #define LLWU_F2_WUF14_MASK 0x40u
Jasper_lee 0:b16d94660a33 1369 #define LLWU_F2_WUF14_SHIFT 6
Jasper_lee 0:b16d94660a33 1370 #define LLWU_F2_WUF15_MASK 0x80u
Jasper_lee 0:b16d94660a33 1371 #define LLWU_F2_WUF15_SHIFT 7
Jasper_lee 0:b16d94660a33 1372 /* F3 Bit Fields */
Jasper_lee 0:b16d94660a33 1373 #define LLWU_F3_MWUF0_MASK 0x1u
Jasper_lee 0:b16d94660a33 1374 #define LLWU_F3_MWUF0_SHIFT 0
Jasper_lee 0:b16d94660a33 1375 #define LLWU_F3_MWUF1_MASK 0x2u
Jasper_lee 0:b16d94660a33 1376 #define LLWU_F3_MWUF1_SHIFT 1
Jasper_lee 0:b16d94660a33 1377 #define LLWU_F3_MWUF2_MASK 0x4u
Jasper_lee 0:b16d94660a33 1378 #define LLWU_F3_MWUF2_SHIFT 2
Jasper_lee 0:b16d94660a33 1379 #define LLWU_F3_MWUF3_MASK 0x8u
Jasper_lee 0:b16d94660a33 1380 #define LLWU_F3_MWUF3_SHIFT 3
Jasper_lee 0:b16d94660a33 1381 #define LLWU_F3_MWUF4_MASK 0x10u
Jasper_lee 0:b16d94660a33 1382 #define LLWU_F3_MWUF4_SHIFT 4
Jasper_lee 0:b16d94660a33 1383 #define LLWU_F3_MWUF5_MASK 0x20u
Jasper_lee 0:b16d94660a33 1384 #define LLWU_F3_MWUF5_SHIFT 5
Jasper_lee 0:b16d94660a33 1385 #define LLWU_F3_MWUF6_MASK 0x40u
Jasper_lee 0:b16d94660a33 1386 #define LLWU_F3_MWUF6_SHIFT 6
Jasper_lee 0:b16d94660a33 1387 #define LLWU_F3_MWUF7_MASK 0x80u
Jasper_lee 0:b16d94660a33 1388 #define LLWU_F3_MWUF7_SHIFT 7
Jasper_lee 0:b16d94660a33 1389 /* FILT1 Bit Fields */
Jasper_lee 0:b16d94660a33 1390 #define LLWU_FILT1_FILTSEL_MASK 0xFu
Jasper_lee 0:b16d94660a33 1391 #define LLWU_FILT1_FILTSEL_SHIFT 0
Jasper_lee 0:b16d94660a33 1392 #define LLWU_FILT1_FILTSEL(x) (((uint8_t)(((uint8_t)(x))<<LLWU_FILT1_FILTSEL_SHIFT))&LLWU_FILT1_FILTSEL_MASK)
Jasper_lee 0:b16d94660a33 1393 #define LLWU_FILT1_FILTE_MASK 0x60u
Jasper_lee 0:b16d94660a33 1394 #define LLWU_FILT1_FILTE_SHIFT 5
Jasper_lee 0:b16d94660a33 1395 #define LLWU_FILT1_FILTE(x) (((uint8_t)(((uint8_t)(x))<<LLWU_FILT1_FILTE_SHIFT))&LLWU_FILT1_FILTE_MASK)
Jasper_lee 0:b16d94660a33 1396 #define LLWU_FILT1_FILTF_MASK 0x80u
Jasper_lee 0:b16d94660a33 1397 #define LLWU_FILT1_FILTF_SHIFT 7
Jasper_lee 0:b16d94660a33 1398 /* FILT2 Bit Fields */
Jasper_lee 0:b16d94660a33 1399 #define LLWU_FILT2_FILTSEL_MASK 0xFu
Jasper_lee 0:b16d94660a33 1400 #define LLWU_FILT2_FILTSEL_SHIFT 0
Jasper_lee 0:b16d94660a33 1401 #define LLWU_FILT2_FILTSEL(x) (((uint8_t)(((uint8_t)(x))<<LLWU_FILT2_FILTSEL_SHIFT))&LLWU_FILT2_FILTSEL_MASK)
Jasper_lee 0:b16d94660a33 1402 #define LLWU_FILT2_FILTE_MASK 0x60u
Jasper_lee 0:b16d94660a33 1403 #define LLWU_FILT2_FILTE_SHIFT 5
Jasper_lee 0:b16d94660a33 1404 #define LLWU_FILT2_FILTE(x) (((uint8_t)(((uint8_t)(x))<<LLWU_FILT2_FILTE_SHIFT))&LLWU_FILT2_FILTE_MASK)
Jasper_lee 0:b16d94660a33 1405 #define LLWU_FILT2_FILTF_MASK 0x80u
Jasper_lee 0:b16d94660a33 1406 #define LLWU_FILT2_FILTF_SHIFT 7
Jasper_lee 0:b16d94660a33 1407
Jasper_lee 0:b16d94660a33 1408 /**
Jasper_lee 0:b16d94660a33 1409 * @}
Jasper_lee 0:b16d94660a33 1410 */ /* end of group LLWU_Register_Masks */
Jasper_lee 0:b16d94660a33 1411
Jasper_lee 0:b16d94660a33 1412
Jasper_lee 0:b16d94660a33 1413 /* LLWU - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 1414 /** Peripheral LLWU base address */
Jasper_lee 0:b16d94660a33 1415 #define LLWU_BASE (0x4007C000u)
Jasper_lee 0:b16d94660a33 1416 /** Peripheral LLWU base pointer */
Jasper_lee 0:b16d94660a33 1417 #define LLWU ((LLWU_Type *)LLWU_BASE)
Jasper_lee 0:b16d94660a33 1418 /** Array initializer of LLWU peripheral base pointers */
Jasper_lee 0:b16d94660a33 1419 #define LLWU_BASES { LLWU }
Jasper_lee 0:b16d94660a33 1420
Jasper_lee 0:b16d94660a33 1421 /**
Jasper_lee 0:b16d94660a33 1422 * @}
Jasper_lee 0:b16d94660a33 1423 */ /* end of group LLWU_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 1424
Jasper_lee 0:b16d94660a33 1425
Jasper_lee 0:b16d94660a33 1426 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1427 -- LPTMR Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1428 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1429
Jasper_lee 0:b16d94660a33 1430 /**
Jasper_lee 0:b16d94660a33 1431 * @addtogroup LPTMR_Peripheral_Access_Layer LPTMR Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1432 * @{
Jasper_lee 0:b16d94660a33 1433 */
Jasper_lee 0:b16d94660a33 1434
Jasper_lee 0:b16d94660a33 1435 /** LPTMR - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 1436 typedef struct {
Jasper_lee 0:b16d94660a33 1437 __IO uint32_t CSR; /**< Low Power Timer Control Status Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 1438 __IO uint32_t PSR; /**< Low Power Timer Prescale Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 1439 __IO uint32_t CMR; /**< Low Power Timer Compare Register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 1440 __I uint32_t CNR; /**< Low Power Timer Counter Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 1441 } LPTMR_Type;
Jasper_lee 0:b16d94660a33 1442
Jasper_lee 0:b16d94660a33 1443 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1444 -- LPTMR Register Masks
Jasper_lee 0:b16d94660a33 1445 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1446
Jasper_lee 0:b16d94660a33 1447 /**
Jasper_lee 0:b16d94660a33 1448 * @addtogroup LPTMR_Register_Masks LPTMR Register Masks
Jasper_lee 0:b16d94660a33 1449 * @{
Jasper_lee 0:b16d94660a33 1450 */
Jasper_lee 0:b16d94660a33 1451
Jasper_lee 0:b16d94660a33 1452 /* CSR Bit Fields */
Jasper_lee 0:b16d94660a33 1453 #define LPTMR_CSR_TEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 1454 #define LPTMR_CSR_TEN_SHIFT 0
Jasper_lee 0:b16d94660a33 1455 #define LPTMR_CSR_TMS_MASK 0x2u
Jasper_lee 0:b16d94660a33 1456 #define LPTMR_CSR_TMS_SHIFT 1
Jasper_lee 0:b16d94660a33 1457 #define LPTMR_CSR_TFC_MASK 0x4u
Jasper_lee 0:b16d94660a33 1458 #define LPTMR_CSR_TFC_SHIFT 2
Jasper_lee 0:b16d94660a33 1459 #define LPTMR_CSR_TPP_MASK 0x8u
Jasper_lee 0:b16d94660a33 1460 #define LPTMR_CSR_TPP_SHIFT 3
Jasper_lee 0:b16d94660a33 1461 #define LPTMR_CSR_TPS_MASK 0x30u
Jasper_lee 0:b16d94660a33 1462 #define LPTMR_CSR_TPS_SHIFT 4
Jasper_lee 0:b16d94660a33 1463 #define LPTMR_CSR_TPS(x) (((uint32_t)(((uint32_t)(x))<<LPTMR_CSR_TPS_SHIFT))&LPTMR_CSR_TPS_MASK)
Jasper_lee 0:b16d94660a33 1464 #define LPTMR_CSR_TIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 1465 #define LPTMR_CSR_TIE_SHIFT 6
Jasper_lee 0:b16d94660a33 1466 #define LPTMR_CSR_TCF_MASK 0x80u
Jasper_lee 0:b16d94660a33 1467 #define LPTMR_CSR_TCF_SHIFT 7
Jasper_lee 0:b16d94660a33 1468 /* PSR Bit Fields */
Jasper_lee 0:b16d94660a33 1469 #define LPTMR_PSR_PCS_MASK 0x3u
Jasper_lee 0:b16d94660a33 1470 #define LPTMR_PSR_PCS_SHIFT 0
Jasper_lee 0:b16d94660a33 1471 #define LPTMR_PSR_PCS(x) (((uint32_t)(((uint32_t)(x))<<LPTMR_PSR_PCS_SHIFT))&LPTMR_PSR_PCS_MASK)
Jasper_lee 0:b16d94660a33 1472 #define LPTMR_PSR_PBYP_MASK 0x4u
Jasper_lee 0:b16d94660a33 1473 #define LPTMR_PSR_PBYP_SHIFT 2
Jasper_lee 0:b16d94660a33 1474 #define LPTMR_PSR_PRESCALE_MASK 0x78u
Jasper_lee 0:b16d94660a33 1475 #define LPTMR_PSR_PRESCALE_SHIFT 3
Jasper_lee 0:b16d94660a33 1476 #define LPTMR_PSR_PRESCALE(x) (((uint32_t)(((uint32_t)(x))<<LPTMR_PSR_PRESCALE_SHIFT))&LPTMR_PSR_PRESCALE_MASK)
Jasper_lee 0:b16d94660a33 1477 /* CMR Bit Fields */
Jasper_lee 0:b16d94660a33 1478 #define LPTMR_CMR_COMPARE_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 1479 #define LPTMR_CMR_COMPARE_SHIFT 0
Jasper_lee 0:b16d94660a33 1480 #define LPTMR_CMR_COMPARE(x) (((uint32_t)(((uint32_t)(x))<<LPTMR_CMR_COMPARE_SHIFT))&LPTMR_CMR_COMPARE_MASK)
Jasper_lee 0:b16d94660a33 1481 /* CNR Bit Fields */
Jasper_lee 0:b16d94660a33 1482 #define LPTMR_CNR_COUNTER_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 1483 #define LPTMR_CNR_COUNTER_SHIFT 0
Jasper_lee 0:b16d94660a33 1484 #define LPTMR_CNR_COUNTER(x) (((uint32_t)(((uint32_t)(x))<<LPTMR_CNR_COUNTER_SHIFT))&LPTMR_CNR_COUNTER_MASK)
Jasper_lee 0:b16d94660a33 1485
Jasper_lee 0:b16d94660a33 1486 /**
Jasper_lee 0:b16d94660a33 1487 * @}
Jasper_lee 0:b16d94660a33 1488 */ /* end of group LPTMR_Register_Masks */
Jasper_lee 0:b16d94660a33 1489
Jasper_lee 0:b16d94660a33 1490
Jasper_lee 0:b16d94660a33 1491 /* LPTMR - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 1492 /** Peripheral LPTMR0 base address */
Jasper_lee 0:b16d94660a33 1493 #define LPTMR0_BASE (0x40040000u)
Jasper_lee 0:b16d94660a33 1494 /** Peripheral LPTMR0 base pointer */
Jasper_lee 0:b16d94660a33 1495 #define LPTMR0 ((LPTMR_Type *)LPTMR0_BASE)
Jasper_lee 0:b16d94660a33 1496 /** Array initializer of LPTMR peripheral base pointers */
Jasper_lee 0:b16d94660a33 1497 #define LPTMR_BASES { LPTMR0 }
Jasper_lee 0:b16d94660a33 1498
Jasper_lee 0:b16d94660a33 1499 /**
Jasper_lee 0:b16d94660a33 1500 * @}
Jasper_lee 0:b16d94660a33 1501 */ /* end of group LPTMR_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 1502
Jasper_lee 0:b16d94660a33 1503
Jasper_lee 0:b16d94660a33 1504 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1505 -- MCG Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1506 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1507
Jasper_lee 0:b16d94660a33 1508 /**
Jasper_lee 0:b16d94660a33 1509 * @addtogroup MCG_Peripheral_Access_Layer MCG Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1510 * @{
Jasper_lee 0:b16d94660a33 1511 */
Jasper_lee 0:b16d94660a33 1512
Jasper_lee 0:b16d94660a33 1513 /** MCG - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 1514 typedef struct {
Jasper_lee 0:b16d94660a33 1515 __IO uint8_t C1; /**< MCG Control 1 Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 1516 __IO uint8_t C2; /**< MCG Control 2 Register, offset: 0x1 */
Jasper_lee 0:b16d94660a33 1517 __IO uint8_t C3; /**< MCG Control 3 Register, offset: 0x2 */
Jasper_lee 0:b16d94660a33 1518 __IO uint8_t C4; /**< MCG Control 4 Register, offset: 0x3 */
Jasper_lee 0:b16d94660a33 1519 __IO uint8_t C5; /**< MCG Control 5 Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 1520 __IO uint8_t C6; /**< MCG Control 6 Register, offset: 0x5 */
Jasper_lee 0:b16d94660a33 1521 __I uint8_t S; /**< MCG Status Register, offset: 0x6 */
Jasper_lee 0:b16d94660a33 1522 uint8_t RESERVED_0[1];
Jasper_lee 0:b16d94660a33 1523 __IO uint8_t SC; /**< MCG Status and Control Register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 1524 uint8_t RESERVED_1[1];
Jasper_lee 0:b16d94660a33 1525 __IO uint8_t ATCVH; /**< MCG Auto Trim Compare Value High Register, offset: 0xA */
Jasper_lee 0:b16d94660a33 1526 __IO uint8_t ATCVL; /**< MCG Auto Trim Compare Value Low Register, offset: 0xB */
Jasper_lee 0:b16d94660a33 1527 __I uint8_t C7; /**< MCG Control 7 Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 1528 __IO uint8_t C8; /**< MCG Control 8 Register, offset: 0xD */
Jasper_lee 0:b16d94660a33 1529 __I uint8_t C9; /**< MCG Control 9 Register, offset: 0xE */
Jasper_lee 0:b16d94660a33 1530 __I uint8_t C10; /**< MCG Control 10 Register, offset: 0xF */
Jasper_lee 0:b16d94660a33 1531 } MCG_Type;
Jasper_lee 0:b16d94660a33 1532
Jasper_lee 0:b16d94660a33 1533 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1534 -- MCG Register Masks
Jasper_lee 0:b16d94660a33 1535 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1536
Jasper_lee 0:b16d94660a33 1537 /**
Jasper_lee 0:b16d94660a33 1538 * @addtogroup MCG_Register_Masks MCG Register Masks
Jasper_lee 0:b16d94660a33 1539 * @{
Jasper_lee 0:b16d94660a33 1540 */
Jasper_lee 0:b16d94660a33 1541
Jasper_lee 0:b16d94660a33 1542 /* C1 Bit Fields */
Jasper_lee 0:b16d94660a33 1543 #define MCG_C1_IREFSTEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 1544 #define MCG_C1_IREFSTEN_SHIFT 0
Jasper_lee 0:b16d94660a33 1545 #define MCG_C1_IRCLKEN_MASK 0x2u
Jasper_lee 0:b16d94660a33 1546 #define MCG_C1_IRCLKEN_SHIFT 1
Jasper_lee 0:b16d94660a33 1547 #define MCG_C1_IREFS_MASK 0x4u
Jasper_lee 0:b16d94660a33 1548 #define MCG_C1_IREFS_SHIFT 2
Jasper_lee 0:b16d94660a33 1549 #define MCG_C1_FRDIV_MASK 0x38u
Jasper_lee 0:b16d94660a33 1550 #define MCG_C1_FRDIV_SHIFT 3
Jasper_lee 0:b16d94660a33 1551 #define MCG_C1_FRDIV(x) (((uint8_t)(((uint8_t)(x))<<MCG_C1_FRDIV_SHIFT))&MCG_C1_FRDIV_MASK)
Jasper_lee 0:b16d94660a33 1552 #define MCG_C1_CLKS_MASK 0xC0u
Jasper_lee 0:b16d94660a33 1553 #define MCG_C1_CLKS_SHIFT 6
Jasper_lee 0:b16d94660a33 1554 #define MCG_C1_CLKS(x) (((uint8_t)(((uint8_t)(x))<<MCG_C1_CLKS_SHIFT))&MCG_C1_CLKS_MASK)
Jasper_lee 0:b16d94660a33 1555 /* C2 Bit Fields */
Jasper_lee 0:b16d94660a33 1556 #define MCG_C2_IRCS_MASK 0x1u
Jasper_lee 0:b16d94660a33 1557 #define MCG_C2_IRCS_SHIFT 0
Jasper_lee 0:b16d94660a33 1558 #define MCG_C2_LP_MASK 0x2u
Jasper_lee 0:b16d94660a33 1559 #define MCG_C2_LP_SHIFT 1
Jasper_lee 0:b16d94660a33 1560 #define MCG_C2_EREFS0_MASK 0x4u
Jasper_lee 0:b16d94660a33 1561 #define MCG_C2_EREFS0_SHIFT 2
Jasper_lee 0:b16d94660a33 1562 #define MCG_C2_HGO0_MASK 0x8u
Jasper_lee 0:b16d94660a33 1563 #define MCG_C2_HGO0_SHIFT 3
Jasper_lee 0:b16d94660a33 1564 #define MCG_C2_RANGE0_MASK 0x30u
Jasper_lee 0:b16d94660a33 1565 #define MCG_C2_RANGE0_SHIFT 4
Jasper_lee 0:b16d94660a33 1566 #define MCG_C2_RANGE0(x) (((uint8_t)(((uint8_t)(x))<<MCG_C2_RANGE0_SHIFT))&MCG_C2_RANGE0_MASK)
Jasper_lee 0:b16d94660a33 1567 #define MCG_C2_LOCRE0_MASK 0x80u
Jasper_lee 0:b16d94660a33 1568 #define MCG_C2_LOCRE0_SHIFT 7
Jasper_lee 0:b16d94660a33 1569 /* C3 Bit Fields */
Jasper_lee 0:b16d94660a33 1570 #define MCG_C3_SCTRIM_MASK 0xFFu
Jasper_lee 0:b16d94660a33 1571 #define MCG_C3_SCTRIM_SHIFT 0
Jasper_lee 0:b16d94660a33 1572 #define MCG_C3_SCTRIM(x) (((uint8_t)(((uint8_t)(x))<<MCG_C3_SCTRIM_SHIFT))&MCG_C3_SCTRIM_MASK)
Jasper_lee 0:b16d94660a33 1573 /* C4 Bit Fields */
Jasper_lee 0:b16d94660a33 1574 #define MCG_C4_SCFTRIM_MASK 0x1u
Jasper_lee 0:b16d94660a33 1575 #define MCG_C4_SCFTRIM_SHIFT 0
Jasper_lee 0:b16d94660a33 1576 #define MCG_C4_FCTRIM_MASK 0x1Eu
Jasper_lee 0:b16d94660a33 1577 #define MCG_C4_FCTRIM_SHIFT 1
Jasper_lee 0:b16d94660a33 1578 #define MCG_C4_FCTRIM(x) (((uint8_t)(((uint8_t)(x))<<MCG_C4_FCTRIM_SHIFT))&MCG_C4_FCTRIM_MASK)
Jasper_lee 0:b16d94660a33 1579 #define MCG_C4_DRST_DRS_MASK 0x60u
Jasper_lee 0:b16d94660a33 1580 #define MCG_C4_DRST_DRS_SHIFT 5
Jasper_lee 0:b16d94660a33 1581 #define MCG_C4_DRST_DRS(x) (((uint8_t)(((uint8_t)(x))<<MCG_C4_DRST_DRS_SHIFT))&MCG_C4_DRST_DRS_MASK)
Jasper_lee 0:b16d94660a33 1582 #define MCG_C4_DMX32_MASK 0x80u
Jasper_lee 0:b16d94660a33 1583 #define MCG_C4_DMX32_SHIFT 7
Jasper_lee 0:b16d94660a33 1584 /* C5 Bit Fields */
Jasper_lee 0:b16d94660a33 1585 #define MCG_C5_PRDIV0_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 1586 #define MCG_C5_PRDIV0_SHIFT 0
Jasper_lee 0:b16d94660a33 1587 #define MCG_C5_PRDIV0(x) (((uint8_t)(((uint8_t)(x))<<MCG_C5_PRDIV0_SHIFT))&MCG_C5_PRDIV0_MASK)
Jasper_lee 0:b16d94660a33 1588 #define MCG_C5_PLLSTEN0_MASK 0x20u
Jasper_lee 0:b16d94660a33 1589 #define MCG_C5_PLLSTEN0_SHIFT 5
Jasper_lee 0:b16d94660a33 1590 #define MCG_C5_PLLCLKEN0_MASK 0x40u
Jasper_lee 0:b16d94660a33 1591 #define MCG_C5_PLLCLKEN0_SHIFT 6
Jasper_lee 0:b16d94660a33 1592 /* C6 Bit Fields */
Jasper_lee 0:b16d94660a33 1593 #define MCG_C6_VDIV0_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 1594 #define MCG_C6_VDIV0_SHIFT 0
Jasper_lee 0:b16d94660a33 1595 #define MCG_C6_VDIV0(x) (((uint8_t)(((uint8_t)(x))<<MCG_C6_VDIV0_SHIFT))&MCG_C6_VDIV0_MASK)
Jasper_lee 0:b16d94660a33 1596 #define MCG_C6_CME0_MASK 0x20u
Jasper_lee 0:b16d94660a33 1597 #define MCG_C6_CME0_SHIFT 5
Jasper_lee 0:b16d94660a33 1598 #define MCG_C6_PLLS_MASK 0x40u
Jasper_lee 0:b16d94660a33 1599 #define MCG_C6_PLLS_SHIFT 6
Jasper_lee 0:b16d94660a33 1600 #define MCG_C6_LOLIE0_MASK 0x80u
Jasper_lee 0:b16d94660a33 1601 #define MCG_C6_LOLIE0_SHIFT 7
Jasper_lee 0:b16d94660a33 1602 /* S Bit Fields */
Jasper_lee 0:b16d94660a33 1603 #define MCG_S_IRCST_MASK 0x1u
Jasper_lee 0:b16d94660a33 1604 #define MCG_S_IRCST_SHIFT 0
Jasper_lee 0:b16d94660a33 1605 #define MCG_S_OSCINIT0_MASK 0x2u
Jasper_lee 0:b16d94660a33 1606 #define MCG_S_OSCINIT0_SHIFT 1
Jasper_lee 0:b16d94660a33 1607 #define MCG_S_CLKST_MASK 0xCu
Jasper_lee 0:b16d94660a33 1608 #define MCG_S_CLKST_SHIFT 2
Jasper_lee 0:b16d94660a33 1609 #define MCG_S_CLKST(x) (((uint8_t)(((uint8_t)(x))<<MCG_S_CLKST_SHIFT))&MCG_S_CLKST_MASK)
Jasper_lee 0:b16d94660a33 1610 #define MCG_S_IREFST_MASK 0x10u
Jasper_lee 0:b16d94660a33 1611 #define MCG_S_IREFST_SHIFT 4
Jasper_lee 0:b16d94660a33 1612 #define MCG_S_PLLST_MASK 0x20u
Jasper_lee 0:b16d94660a33 1613 #define MCG_S_PLLST_SHIFT 5
Jasper_lee 0:b16d94660a33 1614 #define MCG_S_LOCK0_MASK 0x40u
Jasper_lee 0:b16d94660a33 1615 #define MCG_S_LOCK0_SHIFT 6
Jasper_lee 0:b16d94660a33 1616 #define MCG_S_LOLS_MASK 0x80u
Jasper_lee 0:b16d94660a33 1617 #define MCG_S_LOLS_SHIFT 7
Jasper_lee 0:b16d94660a33 1618 /* SC Bit Fields */
Jasper_lee 0:b16d94660a33 1619 #define MCG_SC_LOCS0_MASK 0x1u
Jasper_lee 0:b16d94660a33 1620 #define MCG_SC_LOCS0_SHIFT 0
Jasper_lee 0:b16d94660a33 1621 #define MCG_SC_FCRDIV_MASK 0xEu
Jasper_lee 0:b16d94660a33 1622 #define MCG_SC_FCRDIV_SHIFT 1
Jasper_lee 0:b16d94660a33 1623 #define MCG_SC_FCRDIV(x) (((uint8_t)(((uint8_t)(x))<<MCG_SC_FCRDIV_SHIFT))&MCG_SC_FCRDIV_MASK)
Jasper_lee 0:b16d94660a33 1624 #define MCG_SC_FLTPRSRV_MASK 0x10u
Jasper_lee 0:b16d94660a33 1625 #define MCG_SC_FLTPRSRV_SHIFT 4
Jasper_lee 0:b16d94660a33 1626 #define MCG_SC_ATMF_MASK 0x20u
Jasper_lee 0:b16d94660a33 1627 #define MCG_SC_ATMF_SHIFT 5
Jasper_lee 0:b16d94660a33 1628 #define MCG_SC_ATMS_MASK 0x40u
Jasper_lee 0:b16d94660a33 1629 #define MCG_SC_ATMS_SHIFT 6
Jasper_lee 0:b16d94660a33 1630 #define MCG_SC_ATME_MASK 0x80u
Jasper_lee 0:b16d94660a33 1631 #define MCG_SC_ATME_SHIFT 7
Jasper_lee 0:b16d94660a33 1632 /* ATCVH Bit Fields */
Jasper_lee 0:b16d94660a33 1633 #define MCG_ATCVH_ATCVH_MASK 0xFFu
Jasper_lee 0:b16d94660a33 1634 #define MCG_ATCVH_ATCVH_SHIFT 0
Jasper_lee 0:b16d94660a33 1635 #define MCG_ATCVH_ATCVH(x) (((uint8_t)(((uint8_t)(x))<<MCG_ATCVH_ATCVH_SHIFT))&MCG_ATCVH_ATCVH_MASK)
Jasper_lee 0:b16d94660a33 1636 /* ATCVL Bit Fields */
Jasper_lee 0:b16d94660a33 1637 #define MCG_ATCVL_ATCVL_MASK 0xFFu
Jasper_lee 0:b16d94660a33 1638 #define MCG_ATCVL_ATCVL_SHIFT 0
Jasper_lee 0:b16d94660a33 1639 #define MCG_ATCVL_ATCVL(x) (((uint8_t)(((uint8_t)(x))<<MCG_ATCVL_ATCVL_SHIFT))&MCG_ATCVL_ATCVL_MASK)
Jasper_lee 0:b16d94660a33 1640 /* C8 Bit Fields */
Jasper_lee 0:b16d94660a33 1641 #define MCG_C8_LOLRE_MASK 0x40u
Jasper_lee 0:b16d94660a33 1642 #define MCG_C8_LOLRE_SHIFT 6
Jasper_lee 0:b16d94660a33 1643
Jasper_lee 0:b16d94660a33 1644 /**
Jasper_lee 0:b16d94660a33 1645 * @}
Jasper_lee 0:b16d94660a33 1646 */ /* end of group MCG_Register_Masks */
Jasper_lee 0:b16d94660a33 1647
Jasper_lee 0:b16d94660a33 1648
Jasper_lee 0:b16d94660a33 1649 /* MCG - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 1650 /** Peripheral MCG base address */
Jasper_lee 0:b16d94660a33 1651 #define MCG_BASE (0x40064000u)
Jasper_lee 0:b16d94660a33 1652 /** Peripheral MCG base pointer */
Jasper_lee 0:b16d94660a33 1653 #define MCG ((MCG_Type *)MCG_BASE)
Jasper_lee 0:b16d94660a33 1654 /** Array initializer of MCG peripheral base pointers */
Jasper_lee 0:b16d94660a33 1655 #define MCG_BASES { MCG }
Jasper_lee 0:b16d94660a33 1656
Jasper_lee 0:b16d94660a33 1657 /**
Jasper_lee 0:b16d94660a33 1658 * @}
Jasper_lee 0:b16d94660a33 1659 */ /* end of group MCG_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 1660
Jasper_lee 0:b16d94660a33 1661
Jasper_lee 0:b16d94660a33 1662 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1663 -- MCM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1664 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1665
Jasper_lee 0:b16d94660a33 1666 /**
Jasper_lee 0:b16d94660a33 1667 * @addtogroup MCM_Peripheral_Access_Layer MCM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1668 * @{
Jasper_lee 0:b16d94660a33 1669 */
Jasper_lee 0:b16d94660a33 1670
Jasper_lee 0:b16d94660a33 1671 /** MCM - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 1672 typedef struct {
Jasper_lee 0:b16d94660a33 1673 uint8_t RESERVED_0[8];
Jasper_lee 0:b16d94660a33 1674 __I uint16_t PLASC; /**< Crossbar Switch (AXBS) Slave Configuration, offset: 0x8 */
Jasper_lee 0:b16d94660a33 1675 __I uint16_t PLAMC; /**< Crossbar Switch (AXBS) Master Configuration, offset: 0xA */
Jasper_lee 0:b16d94660a33 1676 __IO uint32_t PLACR; /**< Platform Control Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 1677 uint8_t RESERVED_1[48];
Jasper_lee 0:b16d94660a33 1678 __IO uint32_t CPO; /**< Compute Operation Control Register, offset: 0x40 */
Jasper_lee 0:b16d94660a33 1679 } MCM_Type;
Jasper_lee 0:b16d94660a33 1680
Jasper_lee 0:b16d94660a33 1681 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1682 -- MCM Register Masks
Jasper_lee 0:b16d94660a33 1683 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1684
Jasper_lee 0:b16d94660a33 1685 /**
Jasper_lee 0:b16d94660a33 1686 * @addtogroup MCM_Register_Masks MCM Register Masks
Jasper_lee 0:b16d94660a33 1687 * @{
Jasper_lee 0:b16d94660a33 1688 */
Jasper_lee 0:b16d94660a33 1689
Jasper_lee 0:b16d94660a33 1690 /* PLASC Bit Fields */
Jasper_lee 0:b16d94660a33 1691 #define MCM_PLASC_ASC_MASK 0xFFu
Jasper_lee 0:b16d94660a33 1692 #define MCM_PLASC_ASC_SHIFT 0
Jasper_lee 0:b16d94660a33 1693 #define MCM_PLASC_ASC(x) (((uint16_t)(((uint16_t)(x))<<MCM_PLASC_ASC_SHIFT))&MCM_PLASC_ASC_MASK)
Jasper_lee 0:b16d94660a33 1694 /* PLAMC Bit Fields */
Jasper_lee 0:b16d94660a33 1695 #define MCM_PLAMC_AMC_MASK 0xFFu
Jasper_lee 0:b16d94660a33 1696 #define MCM_PLAMC_AMC_SHIFT 0
Jasper_lee 0:b16d94660a33 1697 #define MCM_PLAMC_AMC(x) (((uint16_t)(((uint16_t)(x))<<MCM_PLAMC_AMC_SHIFT))&MCM_PLAMC_AMC_MASK)
Jasper_lee 0:b16d94660a33 1698 /* PLACR Bit Fields */
Jasper_lee 0:b16d94660a33 1699 #define MCM_PLACR_ARB_MASK 0x200u
Jasper_lee 0:b16d94660a33 1700 #define MCM_PLACR_ARB_SHIFT 9
Jasper_lee 0:b16d94660a33 1701 #define MCM_PLACR_CFCC_MASK 0x400u
Jasper_lee 0:b16d94660a33 1702 #define MCM_PLACR_CFCC_SHIFT 10
Jasper_lee 0:b16d94660a33 1703 #define MCM_PLACR_DFCDA_MASK 0x800u
Jasper_lee 0:b16d94660a33 1704 #define MCM_PLACR_DFCDA_SHIFT 11
Jasper_lee 0:b16d94660a33 1705 #define MCM_PLACR_DFCIC_MASK 0x1000u
Jasper_lee 0:b16d94660a33 1706 #define MCM_PLACR_DFCIC_SHIFT 12
Jasper_lee 0:b16d94660a33 1707 #define MCM_PLACR_DFCC_MASK 0x2000u
Jasper_lee 0:b16d94660a33 1708 #define MCM_PLACR_DFCC_SHIFT 13
Jasper_lee 0:b16d94660a33 1709 #define MCM_PLACR_EFDS_MASK 0x4000u
Jasper_lee 0:b16d94660a33 1710 #define MCM_PLACR_EFDS_SHIFT 14
Jasper_lee 0:b16d94660a33 1711 #define MCM_PLACR_DFCS_MASK 0x8000u
Jasper_lee 0:b16d94660a33 1712 #define MCM_PLACR_DFCS_SHIFT 15
Jasper_lee 0:b16d94660a33 1713 #define MCM_PLACR_ESFC_MASK 0x10000u
Jasper_lee 0:b16d94660a33 1714 #define MCM_PLACR_ESFC_SHIFT 16
Jasper_lee 0:b16d94660a33 1715 /* CPO Bit Fields */
Jasper_lee 0:b16d94660a33 1716 #define MCM_CPO_CPOREQ_MASK 0x1u
Jasper_lee 0:b16d94660a33 1717 #define MCM_CPO_CPOREQ_SHIFT 0
Jasper_lee 0:b16d94660a33 1718 #define MCM_CPO_CPOACK_MASK 0x2u
Jasper_lee 0:b16d94660a33 1719 #define MCM_CPO_CPOACK_SHIFT 1
Jasper_lee 0:b16d94660a33 1720 #define MCM_CPO_CPOWOI_MASK 0x4u
Jasper_lee 0:b16d94660a33 1721 #define MCM_CPO_CPOWOI_SHIFT 2
Jasper_lee 0:b16d94660a33 1722
Jasper_lee 0:b16d94660a33 1723 /**
Jasper_lee 0:b16d94660a33 1724 * @}
Jasper_lee 0:b16d94660a33 1725 */ /* end of group MCM_Register_Masks */
Jasper_lee 0:b16d94660a33 1726
Jasper_lee 0:b16d94660a33 1727
Jasper_lee 0:b16d94660a33 1728 /* MCM - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 1729 /** Peripheral MCM base address */
Jasper_lee 0:b16d94660a33 1730 #define MCM_BASE (0xF0003000u)
Jasper_lee 0:b16d94660a33 1731 /** Peripheral MCM base pointer */
Jasper_lee 0:b16d94660a33 1732 #define MCM ((MCM_Type *)MCM_BASE)
Jasper_lee 0:b16d94660a33 1733 /** Array initializer of MCM peripheral base pointers */
Jasper_lee 0:b16d94660a33 1734 #define MCM_BASES { MCM }
Jasper_lee 0:b16d94660a33 1735
Jasper_lee 0:b16d94660a33 1736 /**
Jasper_lee 0:b16d94660a33 1737 * @}
Jasper_lee 0:b16d94660a33 1738 */ /* end of group MCM_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 1739
Jasper_lee 0:b16d94660a33 1740
Jasper_lee 0:b16d94660a33 1741 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1742 -- MTB Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1743 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1744
Jasper_lee 0:b16d94660a33 1745 /**
Jasper_lee 0:b16d94660a33 1746 * @addtogroup MTB_Peripheral_Access_Layer MTB Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1747 * @{
Jasper_lee 0:b16d94660a33 1748 */
Jasper_lee 0:b16d94660a33 1749
Jasper_lee 0:b16d94660a33 1750 /** MTB - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 1751 typedef struct {
Jasper_lee 0:b16d94660a33 1752 __IO uint32_t POSITION; /**< MTB Position Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 1753 __IO uint32_t MASTER; /**< MTB Master Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 1754 __IO uint32_t FLOW; /**< MTB Flow Register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 1755 __I uint32_t BASE; /**< MTB Base Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 1756 uint8_t RESERVED_0[3824];
Jasper_lee 0:b16d94660a33 1757 __I uint32_t MODECTRL; /**< Integration Mode Control Register, offset: 0xF00 */
Jasper_lee 0:b16d94660a33 1758 uint8_t RESERVED_1[156];
Jasper_lee 0:b16d94660a33 1759 __I uint32_t TAGSET; /**< Claim TAG Set Register, offset: 0xFA0 */
Jasper_lee 0:b16d94660a33 1760 __I uint32_t TAGCLEAR; /**< Claim TAG Clear Register, offset: 0xFA4 */
Jasper_lee 0:b16d94660a33 1761 uint8_t RESERVED_2[8];
Jasper_lee 0:b16d94660a33 1762 __I uint32_t LOCKACCESS; /**< Lock Access Register, offset: 0xFB0 */
Jasper_lee 0:b16d94660a33 1763 __I uint32_t LOCKSTAT; /**< Lock Status Register, offset: 0xFB4 */
Jasper_lee 0:b16d94660a33 1764 __I uint32_t AUTHSTAT; /**< Authentication Status Register, offset: 0xFB8 */
Jasper_lee 0:b16d94660a33 1765 __I uint32_t DEVICEARCH; /**< Device Architecture Register, offset: 0xFBC */
Jasper_lee 0:b16d94660a33 1766 uint8_t RESERVED_3[8];
Jasper_lee 0:b16d94660a33 1767 __I uint32_t DEVICECFG; /**< Device Configuration Register, offset: 0xFC8 */
Jasper_lee 0:b16d94660a33 1768 __I uint32_t DEVICETYPID; /**< Device Type Identifier Register, offset: 0xFCC */
Jasper_lee 0:b16d94660a33 1769 __I uint32_t PERIPHID[8]; /**< Peripheral ID Register, array offset: 0xFD0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 1770 __I uint32_t COMPID[4]; /**< Component ID Register, array offset: 0xFF0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 1771 } MTB_Type;
Jasper_lee 0:b16d94660a33 1772
Jasper_lee 0:b16d94660a33 1773 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1774 -- MTB Register Masks
Jasper_lee 0:b16d94660a33 1775 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1776
Jasper_lee 0:b16d94660a33 1777 /**
Jasper_lee 0:b16d94660a33 1778 * @addtogroup MTB_Register_Masks MTB Register Masks
Jasper_lee 0:b16d94660a33 1779 * @{
Jasper_lee 0:b16d94660a33 1780 */
Jasper_lee 0:b16d94660a33 1781
Jasper_lee 0:b16d94660a33 1782 /* POSITION Bit Fields */
Jasper_lee 0:b16d94660a33 1783 #define MTB_POSITION_WRAP_MASK 0x4u
Jasper_lee 0:b16d94660a33 1784 #define MTB_POSITION_WRAP_SHIFT 2
Jasper_lee 0:b16d94660a33 1785 #define MTB_POSITION_POINTER_MASK 0xFFFFFFF8u
Jasper_lee 0:b16d94660a33 1786 #define MTB_POSITION_POINTER_SHIFT 3
Jasper_lee 0:b16d94660a33 1787 #define MTB_POSITION_POINTER(x) (((uint32_t)(((uint32_t)(x))<<MTB_POSITION_POINTER_SHIFT))&MTB_POSITION_POINTER_MASK)
Jasper_lee 0:b16d94660a33 1788 /* MASTER Bit Fields */
Jasper_lee 0:b16d94660a33 1789 #define MTB_MASTER_MASK_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 1790 #define MTB_MASTER_MASK_SHIFT 0
Jasper_lee 0:b16d94660a33 1791 #define MTB_MASTER_MASK(x) (((uint32_t)(((uint32_t)(x))<<MTB_MASTER_MASK_SHIFT))&MTB_MASTER_MASK_MASK)
Jasper_lee 0:b16d94660a33 1792 #define MTB_MASTER_TSTARTEN_MASK 0x20u
Jasper_lee 0:b16d94660a33 1793 #define MTB_MASTER_TSTARTEN_SHIFT 5
Jasper_lee 0:b16d94660a33 1794 #define MTB_MASTER_TSTOPEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 1795 #define MTB_MASTER_TSTOPEN_SHIFT 6
Jasper_lee 0:b16d94660a33 1796 #define MTB_MASTER_SFRWPRIV_MASK 0x80u
Jasper_lee 0:b16d94660a33 1797 #define MTB_MASTER_SFRWPRIV_SHIFT 7
Jasper_lee 0:b16d94660a33 1798 #define MTB_MASTER_RAMPRIV_MASK 0x100u
Jasper_lee 0:b16d94660a33 1799 #define MTB_MASTER_RAMPRIV_SHIFT 8
Jasper_lee 0:b16d94660a33 1800 #define MTB_MASTER_HALTREQ_MASK 0x200u
Jasper_lee 0:b16d94660a33 1801 #define MTB_MASTER_HALTREQ_SHIFT 9
Jasper_lee 0:b16d94660a33 1802 #define MTB_MASTER_EN_MASK 0x80000000u
Jasper_lee 0:b16d94660a33 1803 #define MTB_MASTER_EN_SHIFT 31
Jasper_lee 0:b16d94660a33 1804 /* FLOW Bit Fields */
Jasper_lee 0:b16d94660a33 1805 #define MTB_FLOW_AUTOSTOP_MASK 0x1u
Jasper_lee 0:b16d94660a33 1806 #define MTB_FLOW_AUTOSTOP_SHIFT 0
Jasper_lee 0:b16d94660a33 1807 #define MTB_FLOW_AUTOHALT_MASK 0x2u
Jasper_lee 0:b16d94660a33 1808 #define MTB_FLOW_AUTOHALT_SHIFT 1
Jasper_lee 0:b16d94660a33 1809 #define MTB_FLOW_WATERMARK_MASK 0xFFFFFFF8u
Jasper_lee 0:b16d94660a33 1810 #define MTB_FLOW_WATERMARK_SHIFT 3
Jasper_lee 0:b16d94660a33 1811 #define MTB_FLOW_WATERMARK(x) (((uint32_t)(((uint32_t)(x))<<MTB_FLOW_WATERMARK_SHIFT))&MTB_FLOW_WATERMARK_MASK)
Jasper_lee 0:b16d94660a33 1812 /* BASE Bit Fields */
Jasper_lee 0:b16d94660a33 1813 #define MTB_BASE_BASEADDR_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1814 #define MTB_BASE_BASEADDR_SHIFT 0
Jasper_lee 0:b16d94660a33 1815 #define MTB_BASE_BASEADDR(x) (((uint32_t)(((uint32_t)(x))<<MTB_BASE_BASEADDR_SHIFT))&MTB_BASE_BASEADDR_MASK)
Jasper_lee 0:b16d94660a33 1816 /* MODECTRL Bit Fields */
Jasper_lee 0:b16d94660a33 1817 #define MTB_MODECTRL_MODECTRL_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1818 #define MTB_MODECTRL_MODECTRL_SHIFT 0
Jasper_lee 0:b16d94660a33 1819 #define MTB_MODECTRL_MODECTRL(x) (((uint32_t)(((uint32_t)(x))<<MTB_MODECTRL_MODECTRL_SHIFT))&MTB_MODECTRL_MODECTRL_MASK)
Jasper_lee 0:b16d94660a33 1820 /* TAGSET Bit Fields */
Jasper_lee 0:b16d94660a33 1821 #define MTB_TAGSET_TAGSET_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1822 #define MTB_TAGSET_TAGSET_SHIFT 0
Jasper_lee 0:b16d94660a33 1823 #define MTB_TAGSET_TAGSET(x) (((uint32_t)(((uint32_t)(x))<<MTB_TAGSET_TAGSET_SHIFT))&MTB_TAGSET_TAGSET_MASK)
Jasper_lee 0:b16d94660a33 1824 /* TAGCLEAR Bit Fields */
Jasper_lee 0:b16d94660a33 1825 #define MTB_TAGCLEAR_TAGCLEAR_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1826 #define MTB_TAGCLEAR_TAGCLEAR_SHIFT 0
Jasper_lee 0:b16d94660a33 1827 #define MTB_TAGCLEAR_TAGCLEAR(x) (((uint32_t)(((uint32_t)(x))<<MTB_TAGCLEAR_TAGCLEAR_SHIFT))&MTB_TAGCLEAR_TAGCLEAR_MASK)
Jasper_lee 0:b16d94660a33 1828 /* LOCKACCESS Bit Fields */
Jasper_lee 0:b16d94660a33 1829 #define MTB_LOCKACCESS_LOCKACCESS_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1830 #define MTB_LOCKACCESS_LOCKACCESS_SHIFT 0
Jasper_lee 0:b16d94660a33 1831 #define MTB_LOCKACCESS_LOCKACCESS(x) (((uint32_t)(((uint32_t)(x))<<MTB_LOCKACCESS_LOCKACCESS_SHIFT))&MTB_LOCKACCESS_LOCKACCESS_MASK)
Jasper_lee 0:b16d94660a33 1832 /* LOCKSTAT Bit Fields */
Jasper_lee 0:b16d94660a33 1833 #define MTB_LOCKSTAT_LOCKSTAT_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1834 #define MTB_LOCKSTAT_LOCKSTAT_SHIFT 0
Jasper_lee 0:b16d94660a33 1835 #define MTB_LOCKSTAT_LOCKSTAT(x) (((uint32_t)(((uint32_t)(x))<<MTB_LOCKSTAT_LOCKSTAT_SHIFT))&MTB_LOCKSTAT_LOCKSTAT_MASK)
Jasper_lee 0:b16d94660a33 1836 /* AUTHSTAT Bit Fields */
Jasper_lee 0:b16d94660a33 1837 #define MTB_AUTHSTAT_BIT0_MASK 0x1u
Jasper_lee 0:b16d94660a33 1838 #define MTB_AUTHSTAT_BIT0_SHIFT 0
Jasper_lee 0:b16d94660a33 1839 #define MTB_AUTHSTAT_BIT1_MASK 0x2u
Jasper_lee 0:b16d94660a33 1840 #define MTB_AUTHSTAT_BIT1_SHIFT 1
Jasper_lee 0:b16d94660a33 1841 #define MTB_AUTHSTAT_BIT2_MASK 0x4u
Jasper_lee 0:b16d94660a33 1842 #define MTB_AUTHSTAT_BIT2_SHIFT 2
Jasper_lee 0:b16d94660a33 1843 #define MTB_AUTHSTAT_BIT3_MASK 0x8u
Jasper_lee 0:b16d94660a33 1844 #define MTB_AUTHSTAT_BIT3_SHIFT 3
Jasper_lee 0:b16d94660a33 1845 /* DEVICEARCH Bit Fields */
Jasper_lee 0:b16d94660a33 1846 #define MTB_DEVICEARCH_DEVICEARCH_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1847 #define MTB_DEVICEARCH_DEVICEARCH_SHIFT 0
Jasper_lee 0:b16d94660a33 1848 #define MTB_DEVICEARCH_DEVICEARCH(x) (((uint32_t)(((uint32_t)(x))<<MTB_DEVICEARCH_DEVICEARCH_SHIFT))&MTB_DEVICEARCH_DEVICEARCH_MASK)
Jasper_lee 0:b16d94660a33 1849 /* DEVICECFG Bit Fields */
Jasper_lee 0:b16d94660a33 1850 #define MTB_DEVICECFG_DEVICECFG_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1851 #define MTB_DEVICECFG_DEVICECFG_SHIFT 0
Jasper_lee 0:b16d94660a33 1852 #define MTB_DEVICECFG_DEVICECFG(x) (((uint32_t)(((uint32_t)(x))<<MTB_DEVICECFG_DEVICECFG_SHIFT))&MTB_DEVICECFG_DEVICECFG_MASK)
Jasper_lee 0:b16d94660a33 1853 /* DEVICETYPID Bit Fields */
Jasper_lee 0:b16d94660a33 1854 #define MTB_DEVICETYPID_DEVICETYPID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1855 #define MTB_DEVICETYPID_DEVICETYPID_SHIFT 0
Jasper_lee 0:b16d94660a33 1856 #define MTB_DEVICETYPID_DEVICETYPID(x) (((uint32_t)(((uint32_t)(x))<<MTB_DEVICETYPID_DEVICETYPID_SHIFT))&MTB_DEVICETYPID_DEVICETYPID_MASK)
Jasper_lee 0:b16d94660a33 1857 /* PERIPHID Bit Fields */
Jasper_lee 0:b16d94660a33 1858 #define MTB_PERIPHID_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1859 #define MTB_PERIPHID_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 1860 #define MTB_PERIPHID_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<MTB_PERIPHID_PERIPHID_SHIFT))&MTB_PERIPHID_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 1861 /* COMPID Bit Fields */
Jasper_lee 0:b16d94660a33 1862 #define MTB_COMPID_COMPID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1863 #define MTB_COMPID_COMPID_SHIFT 0
Jasper_lee 0:b16d94660a33 1864 #define MTB_COMPID_COMPID(x) (((uint32_t)(((uint32_t)(x))<<MTB_COMPID_COMPID_SHIFT))&MTB_COMPID_COMPID_MASK)
Jasper_lee 0:b16d94660a33 1865
Jasper_lee 0:b16d94660a33 1866 /**
Jasper_lee 0:b16d94660a33 1867 * @}
Jasper_lee 0:b16d94660a33 1868 */ /* end of group MTB_Register_Masks */
Jasper_lee 0:b16d94660a33 1869
Jasper_lee 0:b16d94660a33 1870
Jasper_lee 0:b16d94660a33 1871 /* MTB - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 1872 /** Peripheral MTB base address */
Jasper_lee 0:b16d94660a33 1873 #define MTB_BASE (0xF0000000u)
Jasper_lee 0:b16d94660a33 1874 /** Peripheral MTB base pointer */
Jasper_lee 0:b16d94660a33 1875 #define MTB ((MTB_Type *)MTB_BASE)
Jasper_lee 0:b16d94660a33 1876 /** Array initializer of MTB peripheral base pointers */
Jasper_lee 0:b16d94660a33 1877 #define MTB_BASES { MTB }
Jasper_lee 0:b16d94660a33 1878
Jasper_lee 0:b16d94660a33 1879 /**
Jasper_lee 0:b16d94660a33 1880 * @}
Jasper_lee 0:b16d94660a33 1881 */ /* end of group MTB_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 1882
Jasper_lee 0:b16d94660a33 1883
Jasper_lee 0:b16d94660a33 1884 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1885 -- MTBDWT Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1886 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1887
Jasper_lee 0:b16d94660a33 1888 /**
Jasper_lee 0:b16d94660a33 1889 * @addtogroup MTBDWT_Peripheral_Access_Layer MTBDWT Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1890 * @{
Jasper_lee 0:b16d94660a33 1891 */
Jasper_lee 0:b16d94660a33 1892
Jasper_lee 0:b16d94660a33 1893 /** MTBDWT - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 1894 typedef struct {
Jasper_lee 0:b16d94660a33 1895 __I uint32_t CTRL; /**< MTB DWT Control Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 1896 uint8_t RESERVED_0[28];
Jasper_lee 0:b16d94660a33 1897 struct { /* offset: 0x20, array step: 0x10 */
Jasper_lee 0:b16d94660a33 1898 __IO uint32_t COMP; /**< MTB_DWT Comparator Register, array offset: 0x20, array step: 0x10 */
Jasper_lee 0:b16d94660a33 1899 __IO uint32_t MASK; /**< MTB_DWT Comparator Mask Register, array offset: 0x24, array step: 0x10 */
Jasper_lee 0:b16d94660a33 1900 __IO uint32_t FCT; /**< MTB_DWT Comparator Function Register 0..MTB_DWT Comparator Function Register 1, array offset: 0x28, array step: 0x10 */
Jasper_lee 0:b16d94660a33 1901 uint8_t RESERVED_0[4];
Jasper_lee 0:b16d94660a33 1902 } COMPARATOR[2];
Jasper_lee 0:b16d94660a33 1903 uint8_t RESERVED_1[448];
Jasper_lee 0:b16d94660a33 1904 __IO uint32_t TBCTRL; /**< MTB_DWT Trace Buffer Control Register, offset: 0x200 */
Jasper_lee 0:b16d94660a33 1905 uint8_t RESERVED_2[3524];
Jasper_lee 0:b16d94660a33 1906 __I uint32_t DEVICECFG; /**< Device Configuration Register, offset: 0xFC8 */
Jasper_lee 0:b16d94660a33 1907 __I uint32_t DEVICETYPID; /**< Device Type Identifier Register, offset: 0xFCC */
Jasper_lee 0:b16d94660a33 1908 __I uint32_t PERIPHID[8]; /**< Peripheral ID Register, array offset: 0xFD0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 1909 __I uint32_t COMPID[4]; /**< Component ID Register, array offset: 0xFF0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 1910 } MTBDWT_Type;
Jasper_lee 0:b16d94660a33 1911
Jasper_lee 0:b16d94660a33 1912 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1913 -- MTBDWT Register Masks
Jasper_lee 0:b16d94660a33 1914 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1915
Jasper_lee 0:b16d94660a33 1916 /**
Jasper_lee 0:b16d94660a33 1917 * @addtogroup MTBDWT_Register_Masks MTBDWT Register Masks
Jasper_lee 0:b16d94660a33 1918 * @{
Jasper_lee 0:b16d94660a33 1919 */
Jasper_lee 0:b16d94660a33 1920
Jasper_lee 0:b16d94660a33 1921 /* CTRL Bit Fields */
Jasper_lee 0:b16d94660a33 1922 #define MTBDWT_CTRL_DWTCFGCTRL_MASK 0xFFFFFFFu
Jasper_lee 0:b16d94660a33 1923 #define MTBDWT_CTRL_DWTCFGCTRL_SHIFT 0
Jasper_lee 0:b16d94660a33 1924 #define MTBDWT_CTRL_DWTCFGCTRL(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_CTRL_DWTCFGCTRL_SHIFT))&MTBDWT_CTRL_DWTCFGCTRL_MASK)
Jasper_lee 0:b16d94660a33 1925 #define MTBDWT_CTRL_NUMCMP_MASK 0xF0000000u
Jasper_lee 0:b16d94660a33 1926 #define MTBDWT_CTRL_NUMCMP_SHIFT 28
Jasper_lee 0:b16d94660a33 1927 #define MTBDWT_CTRL_NUMCMP(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_CTRL_NUMCMP_SHIFT))&MTBDWT_CTRL_NUMCMP_MASK)
Jasper_lee 0:b16d94660a33 1928 /* COMP Bit Fields */
Jasper_lee 0:b16d94660a33 1929 #define MTBDWT_COMP_COMP_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1930 #define MTBDWT_COMP_COMP_SHIFT 0
Jasper_lee 0:b16d94660a33 1931 #define MTBDWT_COMP_COMP(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_COMP_COMP_SHIFT))&MTBDWT_COMP_COMP_MASK)
Jasper_lee 0:b16d94660a33 1932 /* MASK Bit Fields */
Jasper_lee 0:b16d94660a33 1933 #define MTBDWT_MASK_MASK_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 1934 #define MTBDWT_MASK_MASK_SHIFT 0
Jasper_lee 0:b16d94660a33 1935 #define MTBDWT_MASK_MASK(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_MASK_MASK_SHIFT))&MTBDWT_MASK_MASK_MASK)
Jasper_lee 0:b16d94660a33 1936 /* FCT Bit Fields */
Jasper_lee 0:b16d94660a33 1937 #define MTBDWT_FCT_FUNCTION_MASK 0xFu
Jasper_lee 0:b16d94660a33 1938 #define MTBDWT_FCT_FUNCTION_SHIFT 0
Jasper_lee 0:b16d94660a33 1939 #define MTBDWT_FCT_FUNCTION(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_FCT_FUNCTION_SHIFT))&MTBDWT_FCT_FUNCTION_MASK)
Jasper_lee 0:b16d94660a33 1940 #define MTBDWT_FCT_DATAVMATCH_MASK 0x100u
Jasper_lee 0:b16d94660a33 1941 #define MTBDWT_FCT_DATAVMATCH_SHIFT 8
Jasper_lee 0:b16d94660a33 1942 #define MTBDWT_FCT_DATAVSIZE_MASK 0xC00u
Jasper_lee 0:b16d94660a33 1943 #define MTBDWT_FCT_DATAVSIZE_SHIFT 10
Jasper_lee 0:b16d94660a33 1944 #define MTBDWT_FCT_DATAVSIZE(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_FCT_DATAVSIZE_SHIFT))&MTBDWT_FCT_DATAVSIZE_MASK)
Jasper_lee 0:b16d94660a33 1945 #define MTBDWT_FCT_DATAVADDR0_MASK 0xF000u
Jasper_lee 0:b16d94660a33 1946 #define MTBDWT_FCT_DATAVADDR0_SHIFT 12
Jasper_lee 0:b16d94660a33 1947 #define MTBDWT_FCT_DATAVADDR0(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_FCT_DATAVADDR0_SHIFT))&MTBDWT_FCT_DATAVADDR0_MASK)
Jasper_lee 0:b16d94660a33 1948 #define MTBDWT_FCT_MATCHED_MASK 0x1000000u
Jasper_lee 0:b16d94660a33 1949 #define MTBDWT_FCT_MATCHED_SHIFT 24
Jasper_lee 0:b16d94660a33 1950 /* TBCTRL Bit Fields */
Jasper_lee 0:b16d94660a33 1951 #define MTBDWT_TBCTRL_ACOMP0_MASK 0x1u
Jasper_lee 0:b16d94660a33 1952 #define MTBDWT_TBCTRL_ACOMP0_SHIFT 0
Jasper_lee 0:b16d94660a33 1953 #define MTBDWT_TBCTRL_ACOMP1_MASK 0x2u
Jasper_lee 0:b16d94660a33 1954 #define MTBDWT_TBCTRL_ACOMP1_SHIFT 1
Jasper_lee 0:b16d94660a33 1955 #define MTBDWT_TBCTRL_NUMCOMP_MASK 0xF0000000u
Jasper_lee 0:b16d94660a33 1956 #define MTBDWT_TBCTRL_NUMCOMP_SHIFT 28
Jasper_lee 0:b16d94660a33 1957 #define MTBDWT_TBCTRL_NUMCOMP(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_TBCTRL_NUMCOMP_SHIFT))&MTBDWT_TBCTRL_NUMCOMP_MASK)
Jasper_lee 0:b16d94660a33 1958 /* DEVICECFG Bit Fields */
Jasper_lee 0:b16d94660a33 1959 #define MTBDWT_DEVICECFG_DEVICECFG_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1960 #define MTBDWT_DEVICECFG_DEVICECFG_SHIFT 0
Jasper_lee 0:b16d94660a33 1961 #define MTBDWT_DEVICECFG_DEVICECFG(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_DEVICECFG_DEVICECFG_SHIFT))&MTBDWT_DEVICECFG_DEVICECFG_MASK)
Jasper_lee 0:b16d94660a33 1962 /* DEVICETYPID Bit Fields */
Jasper_lee 0:b16d94660a33 1963 #define MTBDWT_DEVICETYPID_DEVICETYPID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1964 #define MTBDWT_DEVICETYPID_DEVICETYPID_SHIFT 0
Jasper_lee 0:b16d94660a33 1965 #define MTBDWT_DEVICETYPID_DEVICETYPID(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_DEVICETYPID_DEVICETYPID_SHIFT))&MTBDWT_DEVICETYPID_DEVICETYPID_MASK)
Jasper_lee 0:b16d94660a33 1966 /* PERIPHID Bit Fields */
Jasper_lee 0:b16d94660a33 1967 #define MTBDWT_PERIPHID_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1968 #define MTBDWT_PERIPHID_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 1969 #define MTBDWT_PERIPHID_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_PERIPHID_PERIPHID_SHIFT))&MTBDWT_PERIPHID_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 1970 /* COMPID Bit Fields */
Jasper_lee 0:b16d94660a33 1971 #define MTBDWT_COMPID_COMPID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 1972 #define MTBDWT_COMPID_COMPID_SHIFT 0
Jasper_lee 0:b16d94660a33 1973 #define MTBDWT_COMPID_COMPID(x) (((uint32_t)(((uint32_t)(x))<<MTBDWT_COMPID_COMPID_SHIFT))&MTBDWT_COMPID_COMPID_MASK)
Jasper_lee 0:b16d94660a33 1974
Jasper_lee 0:b16d94660a33 1975 /**
Jasper_lee 0:b16d94660a33 1976 * @}
Jasper_lee 0:b16d94660a33 1977 */ /* end of group MTBDWT_Register_Masks */
Jasper_lee 0:b16d94660a33 1978
Jasper_lee 0:b16d94660a33 1979
Jasper_lee 0:b16d94660a33 1980 /* MTBDWT - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 1981 /** Peripheral MTBDWT base address */
Jasper_lee 0:b16d94660a33 1982 #define MTBDWT_BASE (0xF0001000u)
Jasper_lee 0:b16d94660a33 1983 /** Peripheral MTBDWT base pointer */
Jasper_lee 0:b16d94660a33 1984 #define MTBDWT ((MTBDWT_Type *)MTBDWT_BASE)
Jasper_lee 0:b16d94660a33 1985 /** Array initializer of MTBDWT peripheral base pointers */
Jasper_lee 0:b16d94660a33 1986 #define MTBDWT_BASES { MTBDWT }
Jasper_lee 0:b16d94660a33 1987
Jasper_lee 0:b16d94660a33 1988 /**
Jasper_lee 0:b16d94660a33 1989 * @}
Jasper_lee 0:b16d94660a33 1990 */ /* end of group MTBDWT_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 1991
Jasper_lee 0:b16d94660a33 1992
Jasper_lee 0:b16d94660a33 1993 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 1994 -- NV Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1995 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 1996
Jasper_lee 0:b16d94660a33 1997 /**
Jasper_lee 0:b16d94660a33 1998 * @addtogroup NV_Peripheral_Access_Layer NV Peripheral Access Layer
Jasper_lee 0:b16d94660a33 1999 * @{
Jasper_lee 0:b16d94660a33 2000 */
Jasper_lee 0:b16d94660a33 2001
Jasper_lee 0:b16d94660a33 2002 /** NV - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2003 typedef struct {
Jasper_lee 0:b16d94660a33 2004 __I uint8_t BACKKEY3; /**< Backdoor Comparison Key 3., offset: 0x0 */
Jasper_lee 0:b16d94660a33 2005 __I uint8_t BACKKEY2; /**< Backdoor Comparison Key 2., offset: 0x1 */
Jasper_lee 0:b16d94660a33 2006 __I uint8_t BACKKEY1; /**< Backdoor Comparison Key 1., offset: 0x2 */
Jasper_lee 0:b16d94660a33 2007 __I uint8_t BACKKEY0; /**< Backdoor Comparison Key 0., offset: 0x3 */
Jasper_lee 0:b16d94660a33 2008 __I uint8_t BACKKEY7; /**< Backdoor Comparison Key 7., offset: 0x4 */
Jasper_lee 0:b16d94660a33 2009 __I uint8_t BACKKEY6; /**< Backdoor Comparison Key 6., offset: 0x5 */
Jasper_lee 0:b16d94660a33 2010 __I uint8_t BACKKEY5; /**< Backdoor Comparison Key 5., offset: 0x6 */
Jasper_lee 0:b16d94660a33 2011 __I uint8_t BACKKEY4; /**< Backdoor Comparison Key 4., offset: 0x7 */
Jasper_lee 0:b16d94660a33 2012 __I uint8_t FPROT3; /**< Non-volatile P-Flash Protection 1 - Low Register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 2013 __I uint8_t FPROT2; /**< Non-volatile P-Flash Protection 1 - High Register, offset: 0x9 */
Jasper_lee 0:b16d94660a33 2014 __I uint8_t FPROT1; /**< Non-volatile P-Flash Protection 0 - Low Register, offset: 0xA */
Jasper_lee 0:b16d94660a33 2015 __I uint8_t FPROT0; /**< Non-volatile P-Flash Protection 0 - High Register, offset: 0xB */
Jasper_lee 0:b16d94660a33 2016 __I uint8_t FSEC; /**< Non-volatile Flash Security Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 2017 __I uint8_t FOPT; /**< Non-volatile Flash Option Register, offset: 0xD */
Jasper_lee 0:b16d94660a33 2018 } NV_Type;
Jasper_lee 0:b16d94660a33 2019
Jasper_lee 0:b16d94660a33 2020 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2021 -- NV Register Masks
Jasper_lee 0:b16d94660a33 2022 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2023
Jasper_lee 0:b16d94660a33 2024 /**
Jasper_lee 0:b16d94660a33 2025 * @addtogroup NV_Register_Masks NV Register Masks
Jasper_lee 0:b16d94660a33 2026 * @{
Jasper_lee 0:b16d94660a33 2027 */
Jasper_lee 0:b16d94660a33 2028
Jasper_lee 0:b16d94660a33 2029 /* BACKKEY3 Bit Fields */
Jasper_lee 0:b16d94660a33 2030 #define NV_BACKKEY3_KEY_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2031 #define NV_BACKKEY3_KEY_SHIFT 0
Jasper_lee 0:b16d94660a33 2032 #define NV_BACKKEY3_KEY(x) (((uint8_t)(((uint8_t)(x))<<NV_BACKKEY3_KEY_SHIFT))&NV_BACKKEY3_KEY_MASK)
Jasper_lee 0:b16d94660a33 2033 /* BACKKEY2 Bit Fields */
Jasper_lee 0:b16d94660a33 2034 #define NV_BACKKEY2_KEY_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2035 #define NV_BACKKEY2_KEY_SHIFT 0
Jasper_lee 0:b16d94660a33 2036 #define NV_BACKKEY2_KEY(x) (((uint8_t)(((uint8_t)(x))<<NV_BACKKEY2_KEY_SHIFT))&NV_BACKKEY2_KEY_MASK)
Jasper_lee 0:b16d94660a33 2037 /* BACKKEY1 Bit Fields */
Jasper_lee 0:b16d94660a33 2038 #define NV_BACKKEY1_KEY_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2039 #define NV_BACKKEY1_KEY_SHIFT 0
Jasper_lee 0:b16d94660a33 2040 #define NV_BACKKEY1_KEY(x) (((uint8_t)(((uint8_t)(x))<<NV_BACKKEY1_KEY_SHIFT))&NV_BACKKEY1_KEY_MASK)
Jasper_lee 0:b16d94660a33 2041 /* BACKKEY0 Bit Fields */
Jasper_lee 0:b16d94660a33 2042 #define NV_BACKKEY0_KEY_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2043 #define NV_BACKKEY0_KEY_SHIFT 0
Jasper_lee 0:b16d94660a33 2044 #define NV_BACKKEY0_KEY(x) (((uint8_t)(((uint8_t)(x))<<NV_BACKKEY0_KEY_SHIFT))&NV_BACKKEY0_KEY_MASK)
Jasper_lee 0:b16d94660a33 2045 /* BACKKEY7 Bit Fields */
Jasper_lee 0:b16d94660a33 2046 #define NV_BACKKEY7_KEY_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2047 #define NV_BACKKEY7_KEY_SHIFT 0
Jasper_lee 0:b16d94660a33 2048 #define NV_BACKKEY7_KEY(x) (((uint8_t)(((uint8_t)(x))<<NV_BACKKEY7_KEY_SHIFT))&NV_BACKKEY7_KEY_MASK)
Jasper_lee 0:b16d94660a33 2049 /* BACKKEY6 Bit Fields */
Jasper_lee 0:b16d94660a33 2050 #define NV_BACKKEY6_KEY_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2051 #define NV_BACKKEY6_KEY_SHIFT 0
Jasper_lee 0:b16d94660a33 2052 #define NV_BACKKEY6_KEY(x) (((uint8_t)(((uint8_t)(x))<<NV_BACKKEY6_KEY_SHIFT))&NV_BACKKEY6_KEY_MASK)
Jasper_lee 0:b16d94660a33 2053 /* BACKKEY5 Bit Fields */
Jasper_lee 0:b16d94660a33 2054 #define NV_BACKKEY5_KEY_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2055 #define NV_BACKKEY5_KEY_SHIFT 0
Jasper_lee 0:b16d94660a33 2056 #define NV_BACKKEY5_KEY(x) (((uint8_t)(((uint8_t)(x))<<NV_BACKKEY5_KEY_SHIFT))&NV_BACKKEY5_KEY_MASK)
Jasper_lee 0:b16d94660a33 2057 /* BACKKEY4 Bit Fields */
Jasper_lee 0:b16d94660a33 2058 #define NV_BACKKEY4_KEY_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2059 #define NV_BACKKEY4_KEY_SHIFT 0
Jasper_lee 0:b16d94660a33 2060 #define NV_BACKKEY4_KEY(x) (((uint8_t)(((uint8_t)(x))<<NV_BACKKEY4_KEY_SHIFT))&NV_BACKKEY4_KEY_MASK)
Jasper_lee 0:b16d94660a33 2061 /* FPROT3 Bit Fields */
Jasper_lee 0:b16d94660a33 2062 #define NV_FPROT3_PROT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2063 #define NV_FPROT3_PROT_SHIFT 0
Jasper_lee 0:b16d94660a33 2064 #define NV_FPROT3_PROT(x) (((uint8_t)(((uint8_t)(x))<<NV_FPROT3_PROT_SHIFT))&NV_FPROT3_PROT_MASK)
Jasper_lee 0:b16d94660a33 2065 /* FPROT2 Bit Fields */
Jasper_lee 0:b16d94660a33 2066 #define NV_FPROT2_PROT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2067 #define NV_FPROT2_PROT_SHIFT 0
Jasper_lee 0:b16d94660a33 2068 #define NV_FPROT2_PROT(x) (((uint8_t)(((uint8_t)(x))<<NV_FPROT2_PROT_SHIFT))&NV_FPROT2_PROT_MASK)
Jasper_lee 0:b16d94660a33 2069 /* FPROT1 Bit Fields */
Jasper_lee 0:b16d94660a33 2070 #define NV_FPROT1_PROT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2071 #define NV_FPROT1_PROT_SHIFT 0
Jasper_lee 0:b16d94660a33 2072 #define NV_FPROT1_PROT(x) (((uint8_t)(((uint8_t)(x))<<NV_FPROT1_PROT_SHIFT))&NV_FPROT1_PROT_MASK)
Jasper_lee 0:b16d94660a33 2073 /* FPROT0 Bit Fields */
Jasper_lee 0:b16d94660a33 2074 #define NV_FPROT0_PROT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2075 #define NV_FPROT0_PROT_SHIFT 0
Jasper_lee 0:b16d94660a33 2076 #define NV_FPROT0_PROT(x) (((uint8_t)(((uint8_t)(x))<<NV_FPROT0_PROT_SHIFT))&NV_FPROT0_PROT_MASK)
Jasper_lee 0:b16d94660a33 2077 /* FSEC Bit Fields */
Jasper_lee 0:b16d94660a33 2078 #define NV_FSEC_SEC_MASK 0x3u
Jasper_lee 0:b16d94660a33 2079 #define NV_FSEC_SEC_SHIFT 0
Jasper_lee 0:b16d94660a33 2080 #define NV_FSEC_SEC(x) (((uint8_t)(((uint8_t)(x))<<NV_FSEC_SEC_SHIFT))&NV_FSEC_SEC_MASK)
Jasper_lee 0:b16d94660a33 2081 #define NV_FSEC_FSLACC_MASK 0xCu
Jasper_lee 0:b16d94660a33 2082 #define NV_FSEC_FSLACC_SHIFT 2
Jasper_lee 0:b16d94660a33 2083 #define NV_FSEC_FSLACC(x) (((uint8_t)(((uint8_t)(x))<<NV_FSEC_FSLACC_SHIFT))&NV_FSEC_FSLACC_MASK)
Jasper_lee 0:b16d94660a33 2084 #define NV_FSEC_MEEN_MASK 0x30u
Jasper_lee 0:b16d94660a33 2085 #define NV_FSEC_MEEN_SHIFT 4
Jasper_lee 0:b16d94660a33 2086 #define NV_FSEC_MEEN(x) (((uint8_t)(((uint8_t)(x))<<NV_FSEC_MEEN_SHIFT))&NV_FSEC_MEEN_MASK)
Jasper_lee 0:b16d94660a33 2087 #define NV_FSEC_KEYEN_MASK 0xC0u
Jasper_lee 0:b16d94660a33 2088 #define NV_FSEC_KEYEN_SHIFT 6
Jasper_lee 0:b16d94660a33 2089 #define NV_FSEC_KEYEN(x) (((uint8_t)(((uint8_t)(x))<<NV_FSEC_KEYEN_SHIFT))&NV_FSEC_KEYEN_MASK)
Jasper_lee 0:b16d94660a33 2090 /* FOPT Bit Fields */
Jasper_lee 0:b16d94660a33 2091 #define NV_FOPT_LPBOOT0_MASK 0x1u
Jasper_lee 0:b16d94660a33 2092 #define NV_FOPT_LPBOOT0_SHIFT 0
Jasper_lee 0:b16d94660a33 2093 #define NV_FOPT_NMI_DIS_MASK 0x4u
Jasper_lee 0:b16d94660a33 2094 #define NV_FOPT_NMI_DIS_SHIFT 2
Jasper_lee 0:b16d94660a33 2095 #define NV_FOPT_RESET_PIN_CFG_MASK 0x8u
Jasper_lee 0:b16d94660a33 2096 #define NV_FOPT_RESET_PIN_CFG_SHIFT 3
Jasper_lee 0:b16d94660a33 2097 #define NV_FOPT_LPBOOT1_MASK 0x10u
Jasper_lee 0:b16d94660a33 2098 #define NV_FOPT_LPBOOT1_SHIFT 4
Jasper_lee 0:b16d94660a33 2099 #define NV_FOPT_FAST_INIT_MASK 0x20u
Jasper_lee 0:b16d94660a33 2100 #define NV_FOPT_FAST_INIT_SHIFT 5
Jasper_lee 0:b16d94660a33 2101
Jasper_lee 0:b16d94660a33 2102 /**
Jasper_lee 0:b16d94660a33 2103 * @}
Jasper_lee 0:b16d94660a33 2104 */ /* end of group NV_Register_Masks */
Jasper_lee 0:b16d94660a33 2105
Jasper_lee 0:b16d94660a33 2106
Jasper_lee 0:b16d94660a33 2107 /* NV - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2108 /** Peripheral FTFA_FlashConfig base address */
Jasper_lee 0:b16d94660a33 2109 #define FTFA_FlashConfig_BASE (0x400u)
Jasper_lee 0:b16d94660a33 2110 /** Peripheral FTFA_FlashConfig base pointer */
Jasper_lee 0:b16d94660a33 2111 #define FTFA_FlashConfig ((NV_Type *)FTFA_FlashConfig_BASE)
Jasper_lee 0:b16d94660a33 2112 /** Array initializer of NV peripheral base pointers */
Jasper_lee 0:b16d94660a33 2113 #define NV_BASES { FTFA_FlashConfig }
Jasper_lee 0:b16d94660a33 2114
Jasper_lee 0:b16d94660a33 2115 /**
Jasper_lee 0:b16d94660a33 2116 * @}
Jasper_lee 0:b16d94660a33 2117 */ /* end of group NV_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2118
Jasper_lee 0:b16d94660a33 2119
Jasper_lee 0:b16d94660a33 2120 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2121 -- OSC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2122 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2123
Jasper_lee 0:b16d94660a33 2124 /**
Jasper_lee 0:b16d94660a33 2125 * @addtogroup OSC_Peripheral_Access_Layer OSC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2126 * @{
Jasper_lee 0:b16d94660a33 2127 */
Jasper_lee 0:b16d94660a33 2128
Jasper_lee 0:b16d94660a33 2129 /** OSC - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2130 typedef struct {
Jasper_lee 0:b16d94660a33 2131 __IO uint8_t CR; /**< OSC Control Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 2132 } OSC_Type;
Jasper_lee 0:b16d94660a33 2133
Jasper_lee 0:b16d94660a33 2134 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2135 -- OSC Register Masks
Jasper_lee 0:b16d94660a33 2136 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2137
Jasper_lee 0:b16d94660a33 2138 /**
Jasper_lee 0:b16d94660a33 2139 * @addtogroup OSC_Register_Masks OSC Register Masks
Jasper_lee 0:b16d94660a33 2140 * @{
Jasper_lee 0:b16d94660a33 2141 */
Jasper_lee 0:b16d94660a33 2142
Jasper_lee 0:b16d94660a33 2143 /* CR Bit Fields */
Jasper_lee 0:b16d94660a33 2144 #define OSC_CR_SC16P_MASK 0x1u
Jasper_lee 0:b16d94660a33 2145 #define OSC_CR_SC16P_SHIFT 0
Jasper_lee 0:b16d94660a33 2146 #define OSC_CR_SC8P_MASK 0x2u
Jasper_lee 0:b16d94660a33 2147 #define OSC_CR_SC8P_SHIFT 1
Jasper_lee 0:b16d94660a33 2148 #define OSC_CR_SC4P_MASK 0x4u
Jasper_lee 0:b16d94660a33 2149 #define OSC_CR_SC4P_SHIFT 2
Jasper_lee 0:b16d94660a33 2150 #define OSC_CR_SC2P_MASK 0x8u
Jasper_lee 0:b16d94660a33 2151 #define OSC_CR_SC2P_SHIFT 3
Jasper_lee 0:b16d94660a33 2152 #define OSC_CR_EREFSTEN_MASK 0x20u
Jasper_lee 0:b16d94660a33 2153 #define OSC_CR_EREFSTEN_SHIFT 5
Jasper_lee 0:b16d94660a33 2154 #define OSC_CR_ERCLKEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 2155 #define OSC_CR_ERCLKEN_SHIFT 7
Jasper_lee 0:b16d94660a33 2156
Jasper_lee 0:b16d94660a33 2157 /**
Jasper_lee 0:b16d94660a33 2158 * @}
Jasper_lee 0:b16d94660a33 2159 */ /* end of group OSC_Register_Masks */
Jasper_lee 0:b16d94660a33 2160
Jasper_lee 0:b16d94660a33 2161
Jasper_lee 0:b16d94660a33 2162 /* OSC - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2163 /** Peripheral OSC0 base address */
Jasper_lee 0:b16d94660a33 2164 #define OSC0_BASE (0x40065000u)
Jasper_lee 0:b16d94660a33 2165 /** Peripheral OSC0 base pointer */
Jasper_lee 0:b16d94660a33 2166 #define OSC0 ((OSC_Type *)OSC0_BASE)
Jasper_lee 0:b16d94660a33 2167 /** Array initializer of OSC peripheral base pointers */
Jasper_lee 0:b16d94660a33 2168 #define OSC_BASES { OSC0 }
Jasper_lee 0:b16d94660a33 2169
Jasper_lee 0:b16d94660a33 2170 /**
Jasper_lee 0:b16d94660a33 2171 * @}
Jasper_lee 0:b16d94660a33 2172 */ /* end of group OSC_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2173
Jasper_lee 0:b16d94660a33 2174
Jasper_lee 0:b16d94660a33 2175 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2176 -- PIT Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2177 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2178
Jasper_lee 0:b16d94660a33 2179 /**
Jasper_lee 0:b16d94660a33 2180 * @addtogroup PIT_Peripheral_Access_Layer PIT Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2181 * @{
Jasper_lee 0:b16d94660a33 2182 */
Jasper_lee 0:b16d94660a33 2183
Jasper_lee 0:b16d94660a33 2184 /** PIT - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2185 typedef struct {
Jasper_lee 0:b16d94660a33 2186 __IO uint32_t MCR; /**< PIT Module Control Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 2187 uint8_t RESERVED_0[220];
Jasper_lee 0:b16d94660a33 2188 __I uint32_t LTMR64H; /**< PIT Upper Lifetime Timer Register, offset: 0xE0 */
Jasper_lee 0:b16d94660a33 2189 __I uint32_t LTMR64L; /**< PIT Lower Lifetime Timer Register, offset: 0xE4 */
Jasper_lee 0:b16d94660a33 2190 uint8_t RESERVED_1[24];
Jasper_lee 0:b16d94660a33 2191 struct { /* offset: 0x100, array step: 0x10 */
Jasper_lee 0:b16d94660a33 2192 __IO uint32_t LDVAL; /**< Timer Load Value Register, array offset: 0x100, array step: 0x10 */
Jasper_lee 0:b16d94660a33 2193 __I uint32_t CVAL; /**< Current Timer Value Register, array offset: 0x104, array step: 0x10 */
Jasper_lee 0:b16d94660a33 2194 __IO uint32_t TCTRL; /**< Timer Control Register, array offset: 0x108, array step: 0x10 */
Jasper_lee 0:b16d94660a33 2195 __IO uint32_t TFLG; /**< Timer Flag Register, array offset: 0x10C, array step: 0x10 */
Jasper_lee 0:b16d94660a33 2196 } CHANNEL[2];
Jasper_lee 0:b16d94660a33 2197 } PIT_Type;
Jasper_lee 0:b16d94660a33 2198
Jasper_lee 0:b16d94660a33 2199 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2200 -- PIT Register Masks
Jasper_lee 0:b16d94660a33 2201 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2202
Jasper_lee 0:b16d94660a33 2203 /**
Jasper_lee 0:b16d94660a33 2204 * @addtogroup PIT_Register_Masks PIT Register Masks
Jasper_lee 0:b16d94660a33 2205 * @{
Jasper_lee 0:b16d94660a33 2206 */
Jasper_lee 0:b16d94660a33 2207
Jasper_lee 0:b16d94660a33 2208 /* MCR Bit Fields */
Jasper_lee 0:b16d94660a33 2209 #define PIT_MCR_FRZ_MASK 0x1u
Jasper_lee 0:b16d94660a33 2210 #define PIT_MCR_FRZ_SHIFT 0
Jasper_lee 0:b16d94660a33 2211 #define PIT_MCR_MDIS_MASK 0x2u
Jasper_lee 0:b16d94660a33 2212 #define PIT_MCR_MDIS_SHIFT 1
Jasper_lee 0:b16d94660a33 2213 /* LTMR64H Bit Fields */
Jasper_lee 0:b16d94660a33 2214 #define PIT_LTMR64H_LTH_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2215 #define PIT_LTMR64H_LTH_SHIFT 0
Jasper_lee 0:b16d94660a33 2216 #define PIT_LTMR64H_LTH(x) (((uint32_t)(((uint32_t)(x))<<PIT_LTMR64H_LTH_SHIFT))&PIT_LTMR64H_LTH_MASK)
Jasper_lee 0:b16d94660a33 2217 /* LTMR64L Bit Fields */
Jasper_lee 0:b16d94660a33 2218 #define PIT_LTMR64L_LTL_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2219 #define PIT_LTMR64L_LTL_SHIFT 0
Jasper_lee 0:b16d94660a33 2220 #define PIT_LTMR64L_LTL(x) (((uint32_t)(((uint32_t)(x))<<PIT_LTMR64L_LTL_SHIFT))&PIT_LTMR64L_LTL_MASK)
Jasper_lee 0:b16d94660a33 2221 /* LDVAL Bit Fields */
Jasper_lee 0:b16d94660a33 2222 #define PIT_LDVAL_TSV_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2223 #define PIT_LDVAL_TSV_SHIFT 0
Jasper_lee 0:b16d94660a33 2224 #define PIT_LDVAL_TSV(x) (((uint32_t)(((uint32_t)(x))<<PIT_LDVAL_TSV_SHIFT))&PIT_LDVAL_TSV_MASK)
Jasper_lee 0:b16d94660a33 2225 /* CVAL Bit Fields */
Jasper_lee 0:b16d94660a33 2226 #define PIT_CVAL_TVL_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2227 #define PIT_CVAL_TVL_SHIFT 0
Jasper_lee 0:b16d94660a33 2228 #define PIT_CVAL_TVL(x) (((uint32_t)(((uint32_t)(x))<<PIT_CVAL_TVL_SHIFT))&PIT_CVAL_TVL_MASK)
Jasper_lee 0:b16d94660a33 2229 /* TCTRL Bit Fields */
Jasper_lee 0:b16d94660a33 2230 #define PIT_TCTRL_TEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 2231 #define PIT_TCTRL_TEN_SHIFT 0
Jasper_lee 0:b16d94660a33 2232 #define PIT_TCTRL_TIE_MASK 0x2u
Jasper_lee 0:b16d94660a33 2233 #define PIT_TCTRL_TIE_SHIFT 1
Jasper_lee 0:b16d94660a33 2234 #define PIT_TCTRL_CHN_MASK 0x4u
Jasper_lee 0:b16d94660a33 2235 #define PIT_TCTRL_CHN_SHIFT 2
Jasper_lee 0:b16d94660a33 2236 /* TFLG Bit Fields */
Jasper_lee 0:b16d94660a33 2237 #define PIT_TFLG_TIF_MASK 0x1u
Jasper_lee 0:b16d94660a33 2238 #define PIT_TFLG_TIF_SHIFT 0
Jasper_lee 0:b16d94660a33 2239
Jasper_lee 0:b16d94660a33 2240 /**
Jasper_lee 0:b16d94660a33 2241 * @}
Jasper_lee 0:b16d94660a33 2242 */ /* end of group PIT_Register_Masks */
Jasper_lee 0:b16d94660a33 2243
Jasper_lee 0:b16d94660a33 2244
Jasper_lee 0:b16d94660a33 2245 /* PIT - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2246 /** Peripheral PIT base address */
Jasper_lee 0:b16d94660a33 2247 #define PIT_BASE (0x40037000u)
Jasper_lee 0:b16d94660a33 2248 /** Peripheral PIT base pointer */
Jasper_lee 0:b16d94660a33 2249 #define PIT ((PIT_Type *)PIT_BASE)
Jasper_lee 0:b16d94660a33 2250 /** Array initializer of PIT peripheral base pointers */
Jasper_lee 0:b16d94660a33 2251 #define PIT_BASES { PIT }
Jasper_lee 0:b16d94660a33 2252
Jasper_lee 0:b16d94660a33 2253 /**
Jasper_lee 0:b16d94660a33 2254 * @}
Jasper_lee 0:b16d94660a33 2255 */ /* end of group PIT_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2256
Jasper_lee 0:b16d94660a33 2257
Jasper_lee 0:b16d94660a33 2258 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2259 -- PMC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2260 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2261
Jasper_lee 0:b16d94660a33 2262 /**
Jasper_lee 0:b16d94660a33 2263 * @addtogroup PMC_Peripheral_Access_Layer PMC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2264 * @{
Jasper_lee 0:b16d94660a33 2265 */
Jasper_lee 0:b16d94660a33 2266
Jasper_lee 0:b16d94660a33 2267 /** PMC - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2268 typedef struct {
Jasper_lee 0:b16d94660a33 2269 __IO uint8_t LVDSC1; /**< Low Voltage Detect Status And Control 1 register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 2270 __IO uint8_t LVDSC2; /**< Low Voltage Detect Status And Control 2 register, offset: 0x1 */
Jasper_lee 0:b16d94660a33 2271 __IO uint8_t REGSC; /**< Regulator Status And Control register, offset: 0x2 */
Jasper_lee 0:b16d94660a33 2272 } PMC_Type;
Jasper_lee 0:b16d94660a33 2273
Jasper_lee 0:b16d94660a33 2274 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2275 -- PMC Register Masks
Jasper_lee 0:b16d94660a33 2276 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2277
Jasper_lee 0:b16d94660a33 2278 /**
Jasper_lee 0:b16d94660a33 2279 * @addtogroup PMC_Register_Masks PMC Register Masks
Jasper_lee 0:b16d94660a33 2280 * @{
Jasper_lee 0:b16d94660a33 2281 */
Jasper_lee 0:b16d94660a33 2282
Jasper_lee 0:b16d94660a33 2283 /* LVDSC1 Bit Fields */
Jasper_lee 0:b16d94660a33 2284 #define PMC_LVDSC1_LVDV_MASK 0x3u
Jasper_lee 0:b16d94660a33 2285 #define PMC_LVDSC1_LVDV_SHIFT 0
Jasper_lee 0:b16d94660a33 2286 #define PMC_LVDSC1_LVDV(x) (((uint8_t)(((uint8_t)(x))<<PMC_LVDSC1_LVDV_SHIFT))&PMC_LVDSC1_LVDV_MASK)
Jasper_lee 0:b16d94660a33 2287 #define PMC_LVDSC1_LVDRE_MASK 0x10u
Jasper_lee 0:b16d94660a33 2288 #define PMC_LVDSC1_LVDRE_SHIFT 4
Jasper_lee 0:b16d94660a33 2289 #define PMC_LVDSC1_LVDIE_MASK 0x20u
Jasper_lee 0:b16d94660a33 2290 #define PMC_LVDSC1_LVDIE_SHIFT 5
Jasper_lee 0:b16d94660a33 2291 #define PMC_LVDSC1_LVDACK_MASK 0x40u
Jasper_lee 0:b16d94660a33 2292 #define PMC_LVDSC1_LVDACK_SHIFT 6
Jasper_lee 0:b16d94660a33 2293 #define PMC_LVDSC1_LVDF_MASK 0x80u
Jasper_lee 0:b16d94660a33 2294 #define PMC_LVDSC1_LVDF_SHIFT 7
Jasper_lee 0:b16d94660a33 2295 /* LVDSC2 Bit Fields */
Jasper_lee 0:b16d94660a33 2296 #define PMC_LVDSC2_LVWV_MASK 0x3u
Jasper_lee 0:b16d94660a33 2297 #define PMC_LVDSC2_LVWV_SHIFT 0
Jasper_lee 0:b16d94660a33 2298 #define PMC_LVDSC2_LVWV(x) (((uint8_t)(((uint8_t)(x))<<PMC_LVDSC2_LVWV_SHIFT))&PMC_LVDSC2_LVWV_MASK)
Jasper_lee 0:b16d94660a33 2299 #define PMC_LVDSC2_LVWIE_MASK 0x20u
Jasper_lee 0:b16d94660a33 2300 #define PMC_LVDSC2_LVWIE_SHIFT 5
Jasper_lee 0:b16d94660a33 2301 #define PMC_LVDSC2_LVWACK_MASK 0x40u
Jasper_lee 0:b16d94660a33 2302 #define PMC_LVDSC2_LVWACK_SHIFT 6
Jasper_lee 0:b16d94660a33 2303 #define PMC_LVDSC2_LVWF_MASK 0x80u
Jasper_lee 0:b16d94660a33 2304 #define PMC_LVDSC2_LVWF_SHIFT 7
Jasper_lee 0:b16d94660a33 2305 /* REGSC Bit Fields */
Jasper_lee 0:b16d94660a33 2306 #define PMC_REGSC_BGBE_MASK 0x1u
Jasper_lee 0:b16d94660a33 2307 #define PMC_REGSC_BGBE_SHIFT 0
Jasper_lee 0:b16d94660a33 2308 #define PMC_REGSC_REGONS_MASK 0x4u
Jasper_lee 0:b16d94660a33 2309 #define PMC_REGSC_REGONS_SHIFT 2
Jasper_lee 0:b16d94660a33 2310 #define PMC_REGSC_ACKISO_MASK 0x8u
Jasper_lee 0:b16d94660a33 2311 #define PMC_REGSC_ACKISO_SHIFT 3
Jasper_lee 0:b16d94660a33 2312 #define PMC_REGSC_BGEN_MASK 0x10u
Jasper_lee 0:b16d94660a33 2313 #define PMC_REGSC_BGEN_SHIFT 4
Jasper_lee 0:b16d94660a33 2314
Jasper_lee 0:b16d94660a33 2315 /**
Jasper_lee 0:b16d94660a33 2316 * @}
Jasper_lee 0:b16d94660a33 2317 */ /* end of group PMC_Register_Masks */
Jasper_lee 0:b16d94660a33 2318
Jasper_lee 0:b16d94660a33 2319
Jasper_lee 0:b16d94660a33 2320 /* PMC - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2321 /** Peripheral PMC base address */
Jasper_lee 0:b16d94660a33 2322 #define PMC_BASE (0x4007D000u)
Jasper_lee 0:b16d94660a33 2323 /** Peripheral PMC base pointer */
Jasper_lee 0:b16d94660a33 2324 #define PMC ((PMC_Type *)PMC_BASE)
Jasper_lee 0:b16d94660a33 2325 /** Array initializer of PMC peripheral base pointers */
Jasper_lee 0:b16d94660a33 2326 #define PMC_BASES { PMC }
Jasper_lee 0:b16d94660a33 2327
Jasper_lee 0:b16d94660a33 2328 /**
Jasper_lee 0:b16d94660a33 2329 * @}
Jasper_lee 0:b16d94660a33 2330 */ /* end of group PMC_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2331
Jasper_lee 0:b16d94660a33 2332
Jasper_lee 0:b16d94660a33 2333 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2334 -- PORT Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2335 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2336
Jasper_lee 0:b16d94660a33 2337 /**
Jasper_lee 0:b16d94660a33 2338 * @addtogroup PORT_Peripheral_Access_Layer PORT Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2339 * @{
Jasper_lee 0:b16d94660a33 2340 */
Jasper_lee 0:b16d94660a33 2341
Jasper_lee 0:b16d94660a33 2342 /** PORT - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2343 typedef struct {
Jasper_lee 0:b16d94660a33 2344 __IO uint32_t PCR[32]; /**< Pin Control Register n, array offset: 0x0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 2345 __O uint32_t GPCLR; /**< Global Pin Control Low Register, offset: 0x80 */
Jasper_lee 0:b16d94660a33 2346 __O uint32_t GPCHR; /**< Global Pin Control High Register, offset: 0x84 */
Jasper_lee 0:b16d94660a33 2347 uint8_t RESERVED_0[24];
Jasper_lee 0:b16d94660a33 2348 __IO uint32_t ISFR; /**< Interrupt Status Flag Register, offset: 0xA0 */
Jasper_lee 0:b16d94660a33 2349 } PORT_Type;
Jasper_lee 0:b16d94660a33 2350
Jasper_lee 0:b16d94660a33 2351 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2352 -- PORT Register Masks
Jasper_lee 0:b16d94660a33 2353 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2354
Jasper_lee 0:b16d94660a33 2355 /**
Jasper_lee 0:b16d94660a33 2356 * @addtogroup PORT_Register_Masks PORT Register Masks
Jasper_lee 0:b16d94660a33 2357 * @{
Jasper_lee 0:b16d94660a33 2358 */
Jasper_lee 0:b16d94660a33 2359
Jasper_lee 0:b16d94660a33 2360 /* PCR Bit Fields */
Jasper_lee 0:b16d94660a33 2361 #define PORT_PCR_PS_MASK 0x1u
Jasper_lee 0:b16d94660a33 2362 #define PORT_PCR_PS_SHIFT 0
Jasper_lee 0:b16d94660a33 2363 #define PORT_PCR_PE_MASK 0x2u
Jasper_lee 0:b16d94660a33 2364 #define PORT_PCR_PE_SHIFT 1
Jasper_lee 0:b16d94660a33 2365 #define PORT_PCR_SRE_MASK 0x4u
Jasper_lee 0:b16d94660a33 2366 #define PORT_PCR_SRE_SHIFT 2
Jasper_lee 0:b16d94660a33 2367 #define PORT_PCR_PFE_MASK 0x10u
Jasper_lee 0:b16d94660a33 2368 #define PORT_PCR_PFE_SHIFT 4
Jasper_lee 0:b16d94660a33 2369 #define PORT_PCR_DSE_MASK 0x40u
Jasper_lee 0:b16d94660a33 2370 #define PORT_PCR_DSE_SHIFT 6
Jasper_lee 0:b16d94660a33 2371 #define PORT_PCR_MUX_MASK 0x700u
Jasper_lee 0:b16d94660a33 2372 #define PORT_PCR_MUX_SHIFT 8
Jasper_lee 0:b16d94660a33 2373 #define PORT_PCR_MUX(x) (((uint32_t)(((uint32_t)(x))<<PORT_PCR_MUX_SHIFT))&PORT_PCR_MUX_MASK)
Jasper_lee 0:b16d94660a33 2374 #define PORT_PCR_IRQC_MASK 0xF0000u
Jasper_lee 0:b16d94660a33 2375 #define PORT_PCR_IRQC_SHIFT 16
Jasper_lee 0:b16d94660a33 2376 #define PORT_PCR_IRQC(x) (((uint32_t)(((uint32_t)(x))<<PORT_PCR_IRQC_SHIFT))&PORT_PCR_IRQC_MASK)
Jasper_lee 0:b16d94660a33 2377 #define PORT_PCR_ISF_MASK 0x1000000u
Jasper_lee 0:b16d94660a33 2378 #define PORT_PCR_ISF_SHIFT 24
Jasper_lee 0:b16d94660a33 2379 /* GPCLR Bit Fields */
Jasper_lee 0:b16d94660a33 2380 #define PORT_GPCLR_GPWD_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 2381 #define PORT_GPCLR_GPWD_SHIFT 0
Jasper_lee 0:b16d94660a33 2382 #define PORT_GPCLR_GPWD(x) (((uint32_t)(((uint32_t)(x))<<PORT_GPCLR_GPWD_SHIFT))&PORT_GPCLR_GPWD_MASK)
Jasper_lee 0:b16d94660a33 2383 #define PORT_GPCLR_GPWE_MASK 0xFFFF0000u
Jasper_lee 0:b16d94660a33 2384 #define PORT_GPCLR_GPWE_SHIFT 16
Jasper_lee 0:b16d94660a33 2385 #define PORT_GPCLR_GPWE(x) (((uint32_t)(((uint32_t)(x))<<PORT_GPCLR_GPWE_SHIFT))&PORT_GPCLR_GPWE_MASK)
Jasper_lee 0:b16d94660a33 2386 /* GPCHR Bit Fields */
Jasper_lee 0:b16d94660a33 2387 #define PORT_GPCHR_GPWD_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 2388 #define PORT_GPCHR_GPWD_SHIFT 0
Jasper_lee 0:b16d94660a33 2389 #define PORT_GPCHR_GPWD(x) (((uint32_t)(((uint32_t)(x))<<PORT_GPCHR_GPWD_SHIFT))&PORT_GPCHR_GPWD_MASK)
Jasper_lee 0:b16d94660a33 2390 #define PORT_GPCHR_GPWE_MASK 0xFFFF0000u
Jasper_lee 0:b16d94660a33 2391 #define PORT_GPCHR_GPWE_SHIFT 16
Jasper_lee 0:b16d94660a33 2392 #define PORT_GPCHR_GPWE(x) (((uint32_t)(((uint32_t)(x))<<PORT_GPCHR_GPWE_SHIFT))&PORT_GPCHR_GPWE_MASK)
Jasper_lee 0:b16d94660a33 2393 /* ISFR Bit Fields */
Jasper_lee 0:b16d94660a33 2394 #define PORT_ISFR_ISF_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2395 #define PORT_ISFR_ISF_SHIFT 0
Jasper_lee 0:b16d94660a33 2396 #define PORT_ISFR_ISF(x) (((uint32_t)(((uint32_t)(x))<<PORT_ISFR_ISF_SHIFT))&PORT_ISFR_ISF_MASK)
Jasper_lee 0:b16d94660a33 2397
Jasper_lee 0:b16d94660a33 2398 /**
Jasper_lee 0:b16d94660a33 2399 * @}
Jasper_lee 0:b16d94660a33 2400 */ /* end of group PORT_Register_Masks */
Jasper_lee 0:b16d94660a33 2401
Jasper_lee 0:b16d94660a33 2402
Jasper_lee 0:b16d94660a33 2403 /* PORT - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2404 /** Peripheral PORTA base address */
Jasper_lee 0:b16d94660a33 2405 #define PORTA_BASE (0x40049000u)
Jasper_lee 0:b16d94660a33 2406 /** Peripheral PORTA base pointer */
Jasper_lee 0:b16d94660a33 2407 #define PORTA ((PORT_Type *)PORTA_BASE)
Jasper_lee 0:b16d94660a33 2408 /** Peripheral PORTB base address */
Jasper_lee 0:b16d94660a33 2409 #define PORTB_BASE (0x4004A000u)
Jasper_lee 0:b16d94660a33 2410 /** Peripheral PORTB base pointer */
Jasper_lee 0:b16d94660a33 2411 #define PORTB ((PORT_Type *)PORTB_BASE)
Jasper_lee 0:b16d94660a33 2412 /** Peripheral PORTC base address */
Jasper_lee 0:b16d94660a33 2413 #define PORTC_BASE (0x4004B000u)
Jasper_lee 0:b16d94660a33 2414 /** Peripheral PORTC base pointer */
Jasper_lee 0:b16d94660a33 2415 #define PORTC ((PORT_Type *)PORTC_BASE)
Jasper_lee 0:b16d94660a33 2416 /** Peripheral PORTD base address */
Jasper_lee 0:b16d94660a33 2417 #define PORTD_BASE (0x4004C000u)
Jasper_lee 0:b16d94660a33 2418 /** Peripheral PORTD base pointer */
Jasper_lee 0:b16d94660a33 2419 #define PORTD ((PORT_Type *)PORTD_BASE)
Jasper_lee 0:b16d94660a33 2420 /** Peripheral PORTE base address */
Jasper_lee 0:b16d94660a33 2421 #define PORTE_BASE (0x4004D000u)
Jasper_lee 0:b16d94660a33 2422 /** Peripheral PORTE base pointer */
Jasper_lee 0:b16d94660a33 2423 #define PORTE ((PORT_Type *)PORTE_BASE)
Jasper_lee 0:b16d94660a33 2424 /** Array initializer of PORT peripheral base pointers */
Jasper_lee 0:b16d94660a33 2425 #define PORT_BASES { PORTA, PORTB, PORTC, PORTD, PORTE }
Jasper_lee 0:b16d94660a33 2426
Jasper_lee 0:b16d94660a33 2427 /**
Jasper_lee 0:b16d94660a33 2428 * @}
Jasper_lee 0:b16d94660a33 2429 */ /* end of group PORT_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2430
Jasper_lee 0:b16d94660a33 2431
Jasper_lee 0:b16d94660a33 2432 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2433 -- RCM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2434 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2435
Jasper_lee 0:b16d94660a33 2436 /**
Jasper_lee 0:b16d94660a33 2437 * @addtogroup RCM_Peripheral_Access_Layer RCM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2438 * @{
Jasper_lee 0:b16d94660a33 2439 */
Jasper_lee 0:b16d94660a33 2440
Jasper_lee 0:b16d94660a33 2441 /** RCM - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2442 typedef struct {
Jasper_lee 0:b16d94660a33 2443 __I uint8_t SRS0; /**< System Reset Status Register 0, offset: 0x0 */
Jasper_lee 0:b16d94660a33 2444 __I uint8_t SRS1; /**< System Reset Status Register 1, offset: 0x1 */
Jasper_lee 0:b16d94660a33 2445 uint8_t RESERVED_0[2];
Jasper_lee 0:b16d94660a33 2446 __IO uint8_t RPFC; /**< Reset Pin Filter Control register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 2447 __IO uint8_t RPFW; /**< Reset Pin Filter Width register, offset: 0x5 */
Jasper_lee 0:b16d94660a33 2448 } RCM_Type;
Jasper_lee 0:b16d94660a33 2449
Jasper_lee 0:b16d94660a33 2450 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2451 -- RCM Register Masks
Jasper_lee 0:b16d94660a33 2452 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2453
Jasper_lee 0:b16d94660a33 2454 /**
Jasper_lee 0:b16d94660a33 2455 * @addtogroup RCM_Register_Masks RCM Register Masks
Jasper_lee 0:b16d94660a33 2456 * @{
Jasper_lee 0:b16d94660a33 2457 */
Jasper_lee 0:b16d94660a33 2458
Jasper_lee 0:b16d94660a33 2459 /* SRS0 Bit Fields */
Jasper_lee 0:b16d94660a33 2460 #define RCM_SRS0_WAKEUP_MASK 0x1u
Jasper_lee 0:b16d94660a33 2461 #define RCM_SRS0_WAKEUP_SHIFT 0
Jasper_lee 0:b16d94660a33 2462 #define RCM_SRS0_LVD_MASK 0x2u
Jasper_lee 0:b16d94660a33 2463 #define RCM_SRS0_LVD_SHIFT 1
Jasper_lee 0:b16d94660a33 2464 #define RCM_SRS0_LOC_MASK 0x4u
Jasper_lee 0:b16d94660a33 2465 #define RCM_SRS0_LOC_SHIFT 2
Jasper_lee 0:b16d94660a33 2466 #define RCM_SRS0_LOL_MASK 0x8u
Jasper_lee 0:b16d94660a33 2467 #define RCM_SRS0_LOL_SHIFT 3
Jasper_lee 0:b16d94660a33 2468 #define RCM_SRS0_WDOG_MASK 0x20u
Jasper_lee 0:b16d94660a33 2469 #define RCM_SRS0_WDOG_SHIFT 5
Jasper_lee 0:b16d94660a33 2470 #define RCM_SRS0_PIN_MASK 0x40u
Jasper_lee 0:b16d94660a33 2471 #define RCM_SRS0_PIN_SHIFT 6
Jasper_lee 0:b16d94660a33 2472 #define RCM_SRS0_POR_MASK 0x80u
Jasper_lee 0:b16d94660a33 2473 #define RCM_SRS0_POR_SHIFT 7
Jasper_lee 0:b16d94660a33 2474 /* SRS1 Bit Fields */
Jasper_lee 0:b16d94660a33 2475 #define RCM_SRS1_LOCKUP_MASK 0x2u
Jasper_lee 0:b16d94660a33 2476 #define RCM_SRS1_LOCKUP_SHIFT 1
Jasper_lee 0:b16d94660a33 2477 #define RCM_SRS1_SW_MASK 0x4u
Jasper_lee 0:b16d94660a33 2478 #define RCM_SRS1_SW_SHIFT 2
Jasper_lee 0:b16d94660a33 2479 #define RCM_SRS1_MDM_AP_MASK 0x8u
Jasper_lee 0:b16d94660a33 2480 #define RCM_SRS1_MDM_AP_SHIFT 3
Jasper_lee 0:b16d94660a33 2481 #define RCM_SRS1_SACKERR_MASK 0x20u
Jasper_lee 0:b16d94660a33 2482 #define RCM_SRS1_SACKERR_SHIFT 5
Jasper_lee 0:b16d94660a33 2483 /* RPFC Bit Fields */
Jasper_lee 0:b16d94660a33 2484 #define RCM_RPFC_RSTFLTSRW_MASK 0x3u
Jasper_lee 0:b16d94660a33 2485 #define RCM_RPFC_RSTFLTSRW_SHIFT 0
Jasper_lee 0:b16d94660a33 2486 #define RCM_RPFC_RSTFLTSRW(x) (((uint8_t)(((uint8_t)(x))<<RCM_RPFC_RSTFLTSRW_SHIFT))&RCM_RPFC_RSTFLTSRW_MASK)
Jasper_lee 0:b16d94660a33 2487 #define RCM_RPFC_RSTFLTSS_MASK 0x4u
Jasper_lee 0:b16d94660a33 2488 #define RCM_RPFC_RSTFLTSS_SHIFT 2
Jasper_lee 0:b16d94660a33 2489 /* RPFW Bit Fields */
Jasper_lee 0:b16d94660a33 2490 #define RCM_RPFW_RSTFLTSEL_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 2491 #define RCM_RPFW_RSTFLTSEL_SHIFT 0
Jasper_lee 0:b16d94660a33 2492 #define RCM_RPFW_RSTFLTSEL(x) (((uint8_t)(((uint8_t)(x))<<RCM_RPFW_RSTFLTSEL_SHIFT))&RCM_RPFW_RSTFLTSEL_MASK)
Jasper_lee 0:b16d94660a33 2493
Jasper_lee 0:b16d94660a33 2494 /**
Jasper_lee 0:b16d94660a33 2495 * @}
Jasper_lee 0:b16d94660a33 2496 */ /* end of group RCM_Register_Masks */
Jasper_lee 0:b16d94660a33 2497
Jasper_lee 0:b16d94660a33 2498
Jasper_lee 0:b16d94660a33 2499 /* RCM - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2500 /** Peripheral RCM base address */
Jasper_lee 0:b16d94660a33 2501 #define RCM_BASE (0x4007F000u)
Jasper_lee 0:b16d94660a33 2502 /** Peripheral RCM base pointer */
Jasper_lee 0:b16d94660a33 2503 #define RCM ((RCM_Type *)RCM_BASE)
Jasper_lee 0:b16d94660a33 2504 /** Array initializer of RCM peripheral base pointers */
Jasper_lee 0:b16d94660a33 2505 #define RCM_BASES { RCM }
Jasper_lee 0:b16d94660a33 2506
Jasper_lee 0:b16d94660a33 2507 /**
Jasper_lee 0:b16d94660a33 2508 * @}
Jasper_lee 0:b16d94660a33 2509 */ /* end of group RCM_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2510
Jasper_lee 0:b16d94660a33 2511
Jasper_lee 0:b16d94660a33 2512 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2513 -- ROM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2514 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2515
Jasper_lee 0:b16d94660a33 2516 /**
Jasper_lee 0:b16d94660a33 2517 * @addtogroup ROM_Peripheral_Access_Layer ROM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2518 * @{
Jasper_lee 0:b16d94660a33 2519 */
Jasper_lee 0:b16d94660a33 2520
Jasper_lee 0:b16d94660a33 2521 /** ROM - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2522 typedef struct {
Jasper_lee 0:b16d94660a33 2523 __I uint32_t ENTRY[3]; /**< Entry, array offset: 0x0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 2524 __I uint32_t TABLEMARK; /**< End of Table Marker Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 2525 uint8_t RESERVED_0[4028];
Jasper_lee 0:b16d94660a33 2526 __I uint32_t SYSACCESS; /**< System Access Register, offset: 0xFCC */
Jasper_lee 0:b16d94660a33 2527 __I uint32_t PERIPHID4; /**< Peripheral ID Register, offset: 0xFD0 */
Jasper_lee 0:b16d94660a33 2528 __I uint32_t PERIPHID5; /**< Peripheral ID Register, offset: 0xFD4 */
Jasper_lee 0:b16d94660a33 2529 __I uint32_t PERIPHID6; /**< Peripheral ID Register, offset: 0xFD8 */
Jasper_lee 0:b16d94660a33 2530 __I uint32_t PERIPHID7; /**< Peripheral ID Register, offset: 0xFDC */
Jasper_lee 0:b16d94660a33 2531 __I uint32_t PERIPHID0; /**< Peripheral ID Register, offset: 0xFE0 */
Jasper_lee 0:b16d94660a33 2532 __I uint32_t PERIPHID1; /**< Peripheral ID Register, offset: 0xFE4 */
Jasper_lee 0:b16d94660a33 2533 __I uint32_t PERIPHID2; /**< Peripheral ID Register, offset: 0xFE8 */
Jasper_lee 0:b16d94660a33 2534 __I uint32_t PERIPHID3; /**< Peripheral ID Register, offset: 0xFEC */
Jasper_lee 0:b16d94660a33 2535 __I uint32_t COMPID[4]; /**< Component ID Register, array offset: 0xFF0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 2536 } ROM_Type;
Jasper_lee 0:b16d94660a33 2537
Jasper_lee 0:b16d94660a33 2538 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2539 -- ROM Register Masks
Jasper_lee 0:b16d94660a33 2540 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2541
Jasper_lee 0:b16d94660a33 2542 /**
Jasper_lee 0:b16d94660a33 2543 * @addtogroup ROM_Register_Masks ROM Register Masks
Jasper_lee 0:b16d94660a33 2544 * @{
Jasper_lee 0:b16d94660a33 2545 */
Jasper_lee 0:b16d94660a33 2546
Jasper_lee 0:b16d94660a33 2547 /* ENTRY Bit Fields */
Jasper_lee 0:b16d94660a33 2548 #define ROM_ENTRY_ENTRY_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2549 #define ROM_ENTRY_ENTRY_SHIFT 0
Jasper_lee 0:b16d94660a33 2550 #define ROM_ENTRY_ENTRY(x) (((uint32_t)(((uint32_t)(x))<<ROM_ENTRY_ENTRY_SHIFT))&ROM_ENTRY_ENTRY_MASK)
Jasper_lee 0:b16d94660a33 2551 /* TABLEMARK Bit Fields */
Jasper_lee 0:b16d94660a33 2552 #define ROM_TABLEMARK_MARK_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2553 #define ROM_TABLEMARK_MARK_SHIFT 0
Jasper_lee 0:b16d94660a33 2554 #define ROM_TABLEMARK_MARK(x) (((uint32_t)(((uint32_t)(x))<<ROM_TABLEMARK_MARK_SHIFT))&ROM_TABLEMARK_MARK_MASK)
Jasper_lee 0:b16d94660a33 2555 /* SYSACCESS Bit Fields */
Jasper_lee 0:b16d94660a33 2556 #define ROM_SYSACCESS_SYSACCESS_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2557 #define ROM_SYSACCESS_SYSACCESS_SHIFT 0
Jasper_lee 0:b16d94660a33 2558 #define ROM_SYSACCESS_SYSACCESS(x) (((uint32_t)(((uint32_t)(x))<<ROM_SYSACCESS_SYSACCESS_SHIFT))&ROM_SYSACCESS_SYSACCESS_MASK)
Jasper_lee 0:b16d94660a33 2559 /* PERIPHID4 Bit Fields */
Jasper_lee 0:b16d94660a33 2560 #define ROM_PERIPHID4_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2561 #define ROM_PERIPHID4_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 2562 #define ROM_PERIPHID4_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<ROM_PERIPHID4_PERIPHID_SHIFT))&ROM_PERIPHID4_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 2563 /* PERIPHID5 Bit Fields */
Jasper_lee 0:b16d94660a33 2564 #define ROM_PERIPHID5_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2565 #define ROM_PERIPHID5_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 2566 #define ROM_PERIPHID5_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<ROM_PERIPHID5_PERIPHID_SHIFT))&ROM_PERIPHID5_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 2567 /* PERIPHID6 Bit Fields */
Jasper_lee 0:b16d94660a33 2568 #define ROM_PERIPHID6_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2569 #define ROM_PERIPHID6_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 2570 #define ROM_PERIPHID6_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<ROM_PERIPHID6_PERIPHID_SHIFT))&ROM_PERIPHID6_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 2571 /* PERIPHID7 Bit Fields */
Jasper_lee 0:b16d94660a33 2572 #define ROM_PERIPHID7_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2573 #define ROM_PERIPHID7_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 2574 #define ROM_PERIPHID7_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<ROM_PERIPHID7_PERIPHID_SHIFT))&ROM_PERIPHID7_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 2575 /* PERIPHID0 Bit Fields */
Jasper_lee 0:b16d94660a33 2576 #define ROM_PERIPHID0_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2577 #define ROM_PERIPHID0_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 2578 #define ROM_PERIPHID0_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<ROM_PERIPHID0_PERIPHID_SHIFT))&ROM_PERIPHID0_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 2579 /* PERIPHID1 Bit Fields */
Jasper_lee 0:b16d94660a33 2580 #define ROM_PERIPHID1_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2581 #define ROM_PERIPHID1_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 2582 #define ROM_PERIPHID1_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<ROM_PERIPHID1_PERIPHID_SHIFT))&ROM_PERIPHID1_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 2583 /* PERIPHID2 Bit Fields */
Jasper_lee 0:b16d94660a33 2584 #define ROM_PERIPHID2_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2585 #define ROM_PERIPHID2_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 2586 #define ROM_PERIPHID2_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<ROM_PERIPHID2_PERIPHID_SHIFT))&ROM_PERIPHID2_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 2587 /* PERIPHID3 Bit Fields */
Jasper_lee 0:b16d94660a33 2588 #define ROM_PERIPHID3_PERIPHID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2589 #define ROM_PERIPHID3_PERIPHID_SHIFT 0
Jasper_lee 0:b16d94660a33 2590 #define ROM_PERIPHID3_PERIPHID(x) (((uint32_t)(((uint32_t)(x))<<ROM_PERIPHID3_PERIPHID_SHIFT))&ROM_PERIPHID3_PERIPHID_MASK)
Jasper_lee 0:b16d94660a33 2591 /* COMPID Bit Fields */
Jasper_lee 0:b16d94660a33 2592 #define ROM_COMPID_COMPID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2593 #define ROM_COMPID_COMPID_SHIFT 0
Jasper_lee 0:b16d94660a33 2594 #define ROM_COMPID_COMPID(x) (((uint32_t)(((uint32_t)(x))<<ROM_COMPID_COMPID_SHIFT))&ROM_COMPID_COMPID_MASK)
Jasper_lee 0:b16d94660a33 2595
Jasper_lee 0:b16d94660a33 2596 /**
Jasper_lee 0:b16d94660a33 2597 * @}
Jasper_lee 0:b16d94660a33 2598 */ /* end of group ROM_Register_Masks */
Jasper_lee 0:b16d94660a33 2599
Jasper_lee 0:b16d94660a33 2600
Jasper_lee 0:b16d94660a33 2601 /* ROM - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2602 /** Peripheral ROM base address */
Jasper_lee 0:b16d94660a33 2603 #define ROM_BASE (0xF0002000u)
Jasper_lee 0:b16d94660a33 2604 /** Peripheral ROM base pointer */
Jasper_lee 0:b16d94660a33 2605 #define ROM ((ROM_Type *)ROM_BASE)
Jasper_lee 0:b16d94660a33 2606 /** Array initializer of ROM peripheral base pointers */
Jasper_lee 0:b16d94660a33 2607 #define ROM_BASES { ROM }
Jasper_lee 0:b16d94660a33 2608
Jasper_lee 0:b16d94660a33 2609 /**
Jasper_lee 0:b16d94660a33 2610 * @}
Jasper_lee 0:b16d94660a33 2611 */ /* end of group ROM_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2612
Jasper_lee 0:b16d94660a33 2613
Jasper_lee 0:b16d94660a33 2614 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2615 -- RTC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2616 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2617
Jasper_lee 0:b16d94660a33 2618 /**
Jasper_lee 0:b16d94660a33 2619 * @addtogroup RTC_Peripheral_Access_Layer RTC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2620 * @{
Jasper_lee 0:b16d94660a33 2621 */
Jasper_lee 0:b16d94660a33 2622
Jasper_lee 0:b16d94660a33 2623 /** RTC - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2624 typedef struct {
Jasper_lee 0:b16d94660a33 2625 __IO uint32_t TSR; /**< RTC Time Seconds Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 2626 __IO uint32_t TPR; /**< RTC Time Prescaler Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 2627 __IO uint32_t TAR; /**< RTC Time Alarm Register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 2628 __IO uint32_t TCR; /**< RTC Time Compensation Register, offset: 0xC */
Jasper_lee 0:b16d94660a33 2629 __IO uint32_t CR; /**< RTC Control Register, offset: 0x10 */
Jasper_lee 0:b16d94660a33 2630 __IO uint32_t SR; /**< RTC Status Register, offset: 0x14 */
Jasper_lee 0:b16d94660a33 2631 __IO uint32_t LR; /**< RTC Lock Register, offset: 0x18 */
Jasper_lee 0:b16d94660a33 2632 __IO uint32_t IER; /**< RTC Interrupt Enable Register, offset: 0x1C */
Jasper_lee 0:b16d94660a33 2633 } RTC_Type;
Jasper_lee 0:b16d94660a33 2634
Jasper_lee 0:b16d94660a33 2635 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2636 -- RTC Register Masks
Jasper_lee 0:b16d94660a33 2637 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2638
Jasper_lee 0:b16d94660a33 2639 /**
Jasper_lee 0:b16d94660a33 2640 * @addtogroup RTC_Register_Masks RTC Register Masks
Jasper_lee 0:b16d94660a33 2641 * @{
Jasper_lee 0:b16d94660a33 2642 */
Jasper_lee 0:b16d94660a33 2643
Jasper_lee 0:b16d94660a33 2644 /* TSR Bit Fields */
Jasper_lee 0:b16d94660a33 2645 #define RTC_TSR_TSR_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2646 #define RTC_TSR_TSR_SHIFT 0
Jasper_lee 0:b16d94660a33 2647 #define RTC_TSR_TSR(x) (((uint32_t)(((uint32_t)(x))<<RTC_TSR_TSR_SHIFT))&RTC_TSR_TSR_MASK)
Jasper_lee 0:b16d94660a33 2648 /* TPR Bit Fields */
Jasper_lee 0:b16d94660a33 2649 #define RTC_TPR_TPR_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 2650 #define RTC_TPR_TPR_SHIFT 0
Jasper_lee 0:b16d94660a33 2651 #define RTC_TPR_TPR(x) (((uint32_t)(((uint32_t)(x))<<RTC_TPR_TPR_SHIFT))&RTC_TPR_TPR_MASK)
Jasper_lee 0:b16d94660a33 2652 /* TAR Bit Fields */
Jasper_lee 0:b16d94660a33 2653 #define RTC_TAR_TAR_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2654 #define RTC_TAR_TAR_SHIFT 0
Jasper_lee 0:b16d94660a33 2655 #define RTC_TAR_TAR(x) (((uint32_t)(((uint32_t)(x))<<RTC_TAR_TAR_SHIFT))&RTC_TAR_TAR_MASK)
Jasper_lee 0:b16d94660a33 2656 /* TCR Bit Fields */
Jasper_lee 0:b16d94660a33 2657 #define RTC_TCR_TCR_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2658 #define RTC_TCR_TCR_SHIFT 0
Jasper_lee 0:b16d94660a33 2659 #define RTC_TCR_TCR(x) (((uint32_t)(((uint32_t)(x))<<RTC_TCR_TCR_SHIFT))&RTC_TCR_TCR_MASK)
Jasper_lee 0:b16d94660a33 2660 #define RTC_TCR_CIR_MASK 0xFF00u
Jasper_lee 0:b16d94660a33 2661 #define RTC_TCR_CIR_SHIFT 8
Jasper_lee 0:b16d94660a33 2662 #define RTC_TCR_CIR(x) (((uint32_t)(((uint32_t)(x))<<RTC_TCR_CIR_SHIFT))&RTC_TCR_CIR_MASK)
Jasper_lee 0:b16d94660a33 2663 #define RTC_TCR_TCV_MASK 0xFF0000u
Jasper_lee 0:b16d94660a33 2664 #define RTC_TCR_TCV_SHIFT 16
Jasper_lee 0:b16d94660a33 2665 #define RTC_TCR_TCV(x) (((uint32_t)(((uint32_t)(x))<<RTC_TCR_TCV_SHIFT))&RTC_TCR_TCV_MASK)
Jasper_lee 0:b16d94660a33 2666 #define RTC_TCR_CIC_MASK 0xFF000000u
Jasper_lee 0:b16d94660a33 2667 #define RTC_TCR_CIC_SHIFT 24
Jasper_lee 0:b16d94660a33 2668 #define RTC_TCR_CIC(x) (((uint32_t)(((uint32_t)(x))<<RTC_TCR_CIC_SHIFT))&RTC_TCR_CIC_MASK)
Jasper_lee 0:b16d94660a33 2669 /* CR Bit Fields */
Jasper_lee 0:b16d94660a33 2670 #define RTC_CR_SWR_MASK 0x1u
Jasper_lee 0:b16d94660a33 2671 #define RTC_CR_SWR_SHIFT 0
Jasper_lee 0:b16d94660a33 2672 #define RTC_CR_WPE_MASK 0x2u
Jasper_lee 0:b16d94660a33 2673 #define RTC_CR_WPE_SHIFT 1
Jasper_lee 0:b16d94660a33 2674 #define RTC_CR_SUP_MASK 0x4u
Jasper_lee 0:b16d94660a33 2675 #define RTC_CR_SUP_SHIFT 2
Jasper_lee 0:b16d94660a33 2676 #define RTC_CR_UM_MASK 0x8u
Jasper_lee 0:b16d94660a33 2677 #define RTC_CR_UM_SHIFT 3
Jasper_lee 0:b16d94660a33 2678 #define RTC_CR_OSCE_MASK 0x100u
Jasper_lee 0:b16d94660a33 2679 #define RTC_CR_OSCE_SHIFT 8
Jasper_lee 0:b16d94660a33 2680 #define RTC_CR_CLKO_MASK 0x200u
Jasper_lee 0:b16d94660a33 2681 #define RTC_CR_CLKO_SHIFT 9
Jasper_lee 0:b16d94660a33 2682 #define RTC_CR_SC16P_MASK 0x400u
Jasper_lee 0:b16d94660a33 2683 #define RTC_CR_SC16P_SHIFT 10
Jasper_lee 0:b16d94660a33 2684 #define RTC_CR_SC8P_MASK 0x800u
Jasper_lee 0:b16d94660a33 2685 #define RTC_CR_SC8P_SHIFT 11
Jasper_lee 0:b16d94660a33 2686 #define RTC_CR_SC4P_MASK 0x1000u
Jasper_lee 0:b16d94660a33 2687 #define RTC_CR_SC4P_SHIFT 12
Jasper_lee 0:b16d94660a33 2688 #define RTC_CR_SC2P_MASK 0x2000u
Jasper_lee 0:b16d94660a33 2689 #define RTC_CR_SC2P_SHIFT 13
Jasper_lee 0:b16d94660a33 2690 /* SR Bit Fields */
Jasper_lee 0:b16d94660a33 2691 #define RTC_SR_TIF_MASK 0x1u
Jasper_lee 0:b16d94660a33 2692 #define RTC_SR_TIF_SHIFT 0
Jasper_lee 0:b16d94660a33 2693 #define RTC_SR_TOF_MASK 0x2u
Jasper_lee 0:b16d94660a33 2694 #define RTC_SR_TOF_SHIFT 1
Jasper_lee 0:b16d94660a33 2695 #define RTC_SR_TAF_MASK 0x4u
Jasper_lee 0:b16d94660a33 2696 #define RTC_SR_TAF_SHIFT 2
Jasper_lee 0:b16d94660a33 2697 #define RTC_SR_TCE_MASK 0x10u
Jasper_lee 0:b16d94660a33 2698 #define RTC_SR_TCE_SHIFT 4
Jasper_lee 0:b16d94660a33 2699 /* LR Bit Fields */
Jasper_lee 0:b16d94660a33 2700 #define RTC_LR_TCL_MASK 0x8u
Jasper_lee 0:b16d94660a33 2701 #define RTC_LR_TCL_SHIFT 3
Jasper_lee 0:b16d94660a33 2702 #define RTC_LR_CRL_MASK 0x10u
Jasper_lee 0:b16d94660a33 2703 #define RTC_LR_CRL_SHIFT 4
Jasper_lee 0:b16d94660a33 2704 #define RTC_LR_SRL_MASK 0x20u
Jasper_lee 0:b16d94660a33 2705 #define RTC_LR_SRL_SHIFT 5
Jasper_lee 0:b16d94660a33 2706 #define RTC_LR_LRL_MASK 0x40u
Jasper_lee 0:b16d94660a33 2707 #define RTC_LR_LRL_SHIFT 6
Jasper_lee 0:b16d94660a33 2708 /* IER Bit Fields */
Jasper_lee 0:b16d94660a33 2709 #define RTC_IER_TIIE_MASK 0x1u
Jasper_lee 0:b16d94660a33 2710 #define RTC_IER_TIIE_SHIFT 0
Jasper_lee 0:b16d94660a33 2711 #define RTC_IER_TOIE_MASK 0x2u
Jasper_lee 0:b16d94660a33 2712 #define RTC_IER_TOIE_SHIFT 1
Jasper_lee 0:b16d94660a33 2713 #define RTC_IER_TAIE_MASK 0x4u
Jasper_lee 0:b16d94660a33 2714 #define RTC_IER_TAIE_SHIFT 2
Jasper_lee 0:b16d94660a33 2715 #define RTC_IER_TSIE_MASK 0x10u
Jasper_lee 0:b16d94660a33 2716 #define RTC_IER_TSIE_SHIFT 4
Jasper_lee 0:b16d94660a33 2717 #define RTC_IER_WPON_MASK 0x80u
Jasper_lee 0:b16d94660a33 2718 #define RTC_IER_WPON_SHIFT 7
Jasper_lee 0:b16d94660a33 2719
Jasper_lee 0:b16d94660a33 2720 /**
Jasper_lee 0:b16d94660a33 2721 * @}
Jasper_lee 0:b16d94660a33 2722 */ /* end of group RTC_Register_Masks */
Jasper_lee 0:b16d94660a33 2723
Jasper_lee 0:b16d94660a33 2724
Jasper_lee 0:b16d94660a33 2725 /* RTC - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2726 /** Peripheral RTC base address */
Jasper_lee 0:b16d94660a33 2727 #define RTC_BASE (0x4003D000u)
Jasper_lee 0:b16d94660a33 2728 /** Peripheral RTC base pointer */
Jasper_lee 0:b16d94660a33 2729 #define RTC ((RTC_Type *)RTC_BASE)
Jasper_lee 0:b16d94660a33 2730 /** Array initializer of RTC peripheral base pointers */
Jasper_lee 0:b16d94660a33 2731 #define RTC_BASES { RTC }
Jasper_lee 0:b16d94660a33 2732
Jasper_lee 0:b16d94660a33 2733 /**
Jasper_lee 0:b16d94660a33 2734 * @}
Jasper_lee 0:b16d94660a33 2735 */ /* end of group RTC_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2736
Jasper_lee 0:b16d94660a33 2737
Jasper_lee 0:b16d94660a33 2738 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2739 -- SIM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2740 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2741
Jasper_lee 0:b16d94660a33 2742 /**
Jasper_lee 0:b16d94660a33 2743 * @addtogroup SIM_Peripheral_Access_Layer SIM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2744 * @{
Jasper_lee 0:b16d94660a33 2745 */
Jasper_lee 0:b16d94660a33 2746
Jasper_lee 0:b16d94660a33 2747 /** SIM - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 2748 typedef struct {
Jasper_lee 0:b16d94660a33 2749 __IO uint32_t SOPT1; /**< System Options Register 1, offset: 0x0 */
Jasper_lee 0:b16d94660a33 2750 __IO uint32_t SOPT1CFG; /**< SOPT1 Configuration Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 2751 uint8_t RESERVED_0[4092];
Jasper_lee 0:b16d94660a33 2752 __IO uint32_t SOPT2; /**< System Options Register 2, offset: 0x1004 */
Jasper_lee 0:b16d94660a33 2753 uint8_t RESERVED_1[4];
Jasper_lee 0:b16d94660a33 2754 __IO uint32_t SOPT4; /**< System Options Register 4, offset: 0x100C */
Jasper_lee 0:b16d94660a33 2755 __IO uint32_t SOPT5; /**< System Options Register 5, offset: 0x1010 */
Jasper_lee 0:b16d94660a33 2756 uint8_t RESERVED_2[4];
Jasper_lee 0:b16d94660a33 2757 __IO uint32_t SOPT7; /**< System Options Register 7, offset: 0x1018 */
Jasper_lee 0:b16d94660a33 2758 uint8_t RESERVED_3[8];
Jasper_lee 0:b16d94660a33 2759 __I uint32_t SDID; /**< System Device Identification Register, offset: 0x1024 */
Jasper_lee 0:b16d94660a33 2760 uint8_t RESERVED_4[12];
Jasper_lee 0:b16d94660a33 2761 __IO uint32_t SCGC4; /**< System Clock Gating Control Register 4, offset: 0x1034 */
Jasper_lee 0:b16d94660a33 2762 __IO uint32_t SCGC5; /**< System Clock Gating Control Register 5, offset: 0x1038 */
Jasper_lee 0:b16d94660a33 2763 __IO uint32_t SCGC6; /**< System Clock Gating Control Register 6, offset: 0x103C */
Jasper_lee 0:b16d94660a33 2764 __IO uint32_t SCGC7; /**< System Clock Gating Control Register 7, offset: 0x1040 */
Jasper_lee 0:b16d94660a33 2765 __IO uint32_t CLKDIV1; /**< System Clock Divider Register 1, offset: 0x1044 */
Jasper_lee 0:b16d94660a33 2766 uint8_t RESERVED_5[4];
Jasper_lee 0:b16d94660a33 2767 __IO uint32_t FCFG1; /**< Flash Configuration Register 1, offset: 0x104C */
Jasper_lee 0:b16d94660a33 2768 __I uint32_t FCFG2; /**< Flash Configuration Register 2, offset: 0x1050 */
Jasper_lee 0:b16d94660a33 2769 uint8_t RESERVED_6[4];
Jasper_lee 0:b16d94660a33 2770 __I uint32_t UIDMH; /**< Unique Identification Register Mid-High, offset: 0x1058 */
Jasper_lee 0:b16d94660a33 2771 __I uint32_t UIDML; /**< Unique Identification Register Mid Low, offset: 0x105C */
Jasper_lee 0:b16d94660a33 2772 __I uint32_t UIDL; /**< Unique Identification Register Low, offset: 0x1060 */
Jasper_lee 0:b16d94660a33 2773 uint8_t RESERVED_7[156];
Jasper_lee 0:b16d94660a33 2774 __IO uint32_t COPC; /**< COP Control Register, offset: 0x1100 */
Jasper_lee 0:b16d94660a33 2775 __O uint32_t SRVCOP; /**< Service COP Register, offset: 0x1104 */
Jasper_lee 0:b16d94660a33 2776 } SIM_Type;
Jasper_lee 0:b16d94660a33 2777
Jasper_lee 0:b16d94660a33 2778 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2779 -- SIM Register Masks
Jasper_lee 0:b16d94660a33 2780 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2781
Jasper_lee 0:b16d94660a33 2782 /**
Jasper_lee 0:b16d94660a33 2783 * @addtogroup SIM_Register_Masks SIM Register Masks
Jasper_lee 0:b16d94660a33 2784 * @{
Jasper_lee 0:b16d94660a33 2785 */
Jasper_lee 0:b16d94660a33 2786
Jasper_lee 0:b16d94660a33 2787 /* SOPT1 Bit Fields */
Jasper_lee 0:b16d94660a33 2788 #define SIM_SOPT1_OSC32KSEL_MASK 0xC0000u
Jasper_lee 0:b16d94660a33 2789 #define SIM_SOPT1_OSC32KSEL_SHIFT 18
Jasper_lee 0:b16d94660a33 2790 #define SIM_SOPT1_OSC32KSEL(x) (((uint32_t)(((uint32_t)(x))<<SIM_SOPT1_OSC32KSEL_SHIFT))&SIM_SOPT1_OSC32KSEL_MASK)
Jasper_lee 0:b16d94660a33 2791 #define SIM_SOPT1_USBVSTBY_MASK 0x20000000u
Jasper_lee 0:b16d94660a33 2792 #define SIM_SOPT1_USBVSTBY_SHIFT 29
Jasper_lee 0:b16d94660a33 2793 #define SIM_SOPT1_USBSSTBY_MASK 0x40000000u
Jasper_lee 0:b16d94660a33 2794 #define SIM_SOPT1_USBSSTBY_SHIFT 30
Jasper_lee 0:b16d94660a33 2795 #define SIM_SOPT1_USBREGEN_MASK 0x80000000u
Jasper_lee 0:b16d94660a33 2796 #define SIM_SOPT1_USBREGEN_SHIFT 31
Jasper_lee 0:b16d94660a33 2797 /* SOPT1CFG Bit Fields */
Jasper_lee 0:b16d94660a33 2798 #define SIM_SOPT1CFG_URWE_MASK 0x1000000u
Jasper_lee 0:b16d94660a33 2799 #define SIM_SOPT1CFG_URWE_SHIFT 24
Jasper_lee 0:b16d94660a33 2800 #define SIM_SOPT1CFG_UVSWE_MASK 0x2000000u
Jasper_lee 0:b16d94660a33 2801 #define SIM_SOPT1CFG_UVSWE_SHIFT 25
Jasper_lee 0:b16d94660a33 2802 #define SIM_SOPT1CFG_USSWE_MASK 0x4000000u
Jasper_lee 0:b16d94660a33 2803 #define SIM_SOPT1CFG_USSWE_SHIFT 26
Jasper_lee 0:b16d94660a33 2804 /* SOPT2 Bit Fields */
Jasper_lee 0:b16d94660a33 2805 #define SIM_SOPT2_RTCCLKOUTSEL_MASK 0x10u
Jasper_lee 0:b16d94660a33 2806 #define SIM_SOPT2_RTCCLKOUTSEL_SHIFT 4
Jasper_lee 0:b16d94660a33 2807 #define SIM_SOPT2_CLKOUTSEL_MASK 0xE0u
Jasper_lee 0:b16d94660a33 2808 #define SIM_SOPT2_CLKOUTSEL_SHIFT 5
Jasper_lee 0:b16d94660a33 2809 #define SIM_SOPT2_CLKOUTSEL(x) (((uint32_t)(((uint32_t)(x))<<SIM_SOPT2_CLKOUTSEL_SHIFT))&SIM_SOPT2_CLKOUTSEL_MASK)
Jasper_lee 0:b16d94660a33 2810 #define SIM_SOPT2_PLLFLLSEL_MASK 0x10000u
Jasper_lee 0:b16d94660a33 2811 #define SIM_SOPT2_PLLFLLSEL_SHIFT 16
Jasper_lee 0:b16d94660a33 2812 #define SIM_SOPT2_USBSRC_MASK 0x40000u
Jasper_lee 0:b16d94660a33 2813 #define SIM_SOPT2_USBSRC_SHIFT 18
Jasper_lee 0:b16d94660a33 2814 #define SIM_SOPT2_TPMSRC_MASK 0x3000000u
Jasper_lee 0:b16d94660a33 2815 #define SIM_SOPT2_TPMSRC_SHIFT 24
Jasper_lee 0:b16d94660a33 2816 #define SIM_SOPT2_TPMSRC(x) (((uint32_t)(((uint32_t)(x))<<SIM_SOPT2_TPMSRC_SHIFT))&SIM_SOPT2_TPMSRC_MASK)
Jasper_lee 0:b16d94660a33 2817 #define SIM_SOPT2_UART0SRC_MASK 0xC000000u
Jasper_lee 0:b16d94660a33 2818 #define SIM_SOPT2_UART0SRC_SHIFT 26
Jasper_lee 0:b16d94660a33 2819 #define SIM_SOPT2_UART0SRC(x) (((uint32_t)(((uint32_t)(x))<<SIM_SOPT2_UART0SRC_SHIFT))&SIM_SOPT2_UART0SRC_MASK)
Jasper_lee 0:b16d94660a33 2820 /* SOPT4 Bit Fields */
Jasper_lee 0:b16d94660a33 2821 #define SIM_SOPT4_TPM1CH0SRC_MASK 0x40000u
Jasper_lee 0:b16d94660a33 2822 #define SIM_SOPT4_TPM1CH0SRC_SHIFT 18
Jasper_lee 0:b16d94660a33 2823 #define SIM_SOPT4_TPM2CH0SRC_MASK 0x100000u
Jasper_lee 0:b16d94660a33 2824 #define SIM_SOPT4_TPM2CH0SRC_SHIFT 20
Jasper_lee 0:b16d94660a33 2825 #define SIM_SOPT4_TPM0CLKSEL_MASK 0x1000000u
Jasper_lee 0:b16d94660a33 2826 #define SIM_SOPT4_TPM0CLKSEL_SHIFT 24
Jasper_lee 0:b16d94660a33 2827 #define SIM_SOPT4_TPM1CLKSEL_MASK 0x2000000u
Jasper_lee 0:b16d94660a33 2828 #define SIM_SOPT4_TPM1CLKSEL_SHIFT 25
Jasper_lee 0:b16d94660a33 2829 #define SIM_SOPT4_TPM2CLKSEL_MASK 0x4000000u
Jasper_lee 0:b16d94660a33 2830 #define SIM_SOPT4_TPM2CLKSEL_SHIFT 26
Jasper_lee 0:b16d94660a33 2831 /* SOPT5 Bit Fields */
Jasper_lee 0:b16d94660a33 2832 #define SIM_SOPT5_UART0TXSRC_MASK 0x3u
Jasper_lee 0:b16d94660a33 2833 #define SIM_SOPT5_UART0TXSRC_SHIFT 0
Jasper_lee 0:b16d94660a33 2834 #define SIM_SOPT5_UART0TXSRC(x) (((uint32_t)(((uint32_t)(x))<<SIM_SOPT5_UART0TXSRC_SHIFT))&SIM_SOPT5_UART0TXSRC_MASK)
Jasper_lee 0:b16d94660a33 2835 #define SIM_SOPT5_UART0RXSRC_MASK 0x4u
Jasper_lee 0:b16d94660a33 2836 #define SIM_SOPT5_UART0RXSRC_SHIFT 2
Jasper_lee 0:b16d94660a33 2837 #define SIM_SOPT5_UART1TXSRC_MASK 0x30u
Jasper_lee 0:b16d94660a33 2838 #define SIM_SOPT5_UART1TXSRC_SHIFT 4
Jasper_lee 0:b16d94660a33 2839 #define SIM_SOPT5_UART1TXSRC(x) (((uint32_t)(((uint32_t)(x))<<SIM_SOPT5_UART1TXSRC_SHIFT))&SIM_SOPT5_UART1TXSRC_MASK)
Jasper_lee 0:b16d94660a33 2840 #define SIM_SOPT5_UART1RXSRC_MASK 0x40u
Jasper_lee 0:b16d94660a33 2841 #define SIM_SOPT5_UART1RXSRC_SHIFT 6
Jasper_lee 0:b16d94660a33 2842 #define SIM_SOPT5_UART0ODE_MASK 0x10000u
Jasper_lee 0:b16d94660a33 2843 #define SIM_SOPT5_UART0ODE_SHIFT 16
Jasper_lee 0:b16d94660a33 2844 #define SIM_SOPT5_UART1ODE_MASK 0x20000u
Jasper_lee 0:b16d94660a33 2845 #define SIM_SOPT5_UART1ODE_SHIFT 17
Jasper_lee 0:b16d94660a33 2846 #define SIM_SOPT5_UART2ODE_MASK 0x40000u
Jasper_lee 0:b16d94660a33 2847 #define SIM_SOPT5_UART2ODE_SHIFT 18
Jasper_lee 0:b16d94660a33 2848 /* SOPT7 Bit Fields */
Jasper_lee 0:b16d94660a33 2849 #define SIM_SOPT7_ADC0TRGSEL_MASK 0xFu
Jasper_lee 0:b16d94660a33 2850 #define SIM_SOPT7_ADC0TRGSEL_SHIFT 0
Jasper_lee 0:b16d94660a33 2851 #define SIM_SOPT7_ADC0TRGSEL(x) (((uint32_t)(((uint32_t)(x))<<SIM_SOPT7_ADC0TRGSEL_SHIFT))&SIM_SOPT7_ADC0TRGSEL_MASK)
Jasper_lee 0:b16d94660a33 2852 #define SIM_SOPT7_ADC0PRETRGSEL_MASK 0x10u
Jasper_lee 0:b16d94660a33 2853 #define SIM_SOPT7_ADC0PRETRGSEL_SHIFT 4
Jasper_lee 0:b16d94660a33 2854 #define SIM_SOPT7_ADC0ALTTRGEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 2855 #define SIM_SOPT7_ADC0ALTTRGEN_SHIFT 7
Jasper_lee 0:b16d94660a33 2856 /* SDID Bit Fields */
Jasper_lee 0:b16d94660a33 2857 #define SIM_SDID_PINID_MASK 0xFu
Jasper_lee 0:b16d94660a33 2858 #define SIM_SDID_PINID_SHIFT 0
Jasper_lee 0:b16d94660a33 2859 #define SIM_SDID_PINID(x) (((uint32_t)(((uint32_t)(x))<<SIM_SDID_PINID_SHIFT))&SIM_SDID_PINID_MASK)
Jasper_lee 0:b16d94660a33 2860 #define SIM_SDID_DIEID_MASK 0xF80u
Jasper_lee 0:b16d94660a33 2861 #define SIM_SDID_DIEID_SHIFT 7
Jasper_lee 0:b16d94660a33 2862 #define SIM_SDID_DIEID(x) (((uint32_t)(((uint32_t)(x))<<SIM_SDID_DIEID_SHIFT))&SIM_SDID_DIEID_MASK)
Jasper_lee 0:b16d94660a33 2863 #define SIM_SDID_REVID_MASK 0xF000u
Jasper_lee 0:b16d94660a33 2864 #define SIM_SDID_REVID_SHIFT 12
Jasper_lee 0:b16d94660a33 2865 #define SIM_SDID_REVID(x) (((uint32_t)(((uint32_t)(x))<<SIM_SDID_REVID_SHIFT))&SIM_SDID_REVID_MASK)
Jasper_lee 0:b16d94660a33 2866 #define SIM_SDID_SRAMSIZE_MASK 0xF0000u
Jasper_lee 0:b16d94660a33 2867 #define SIM_SDID_SRAMSIZE_SHIFT 16
Jasper_lee 0:b16d94660a33 2868 #define SIM_SDID_SRAMSIZE(x) (((uint32_t)(((uint32_t)(x))<<SIM_SDID_SRAMSIZE_SHIFT))&SIM_SDID_SRAMSIZE_MASK)
Jasper_lee 0:b16d94660a33 2869 #define SIM_SDID_SERIESID_MASK 0xF00000u
Jasper_lee 0:b16d94660a33 2870 #define SIM_SDID_SERIESID_SHIFT 20
Jasper_lee 0:b16d94660a33 2871 #define SIM_SDID_SERIESID(x) (((uint32_t)(((uint32_t)(x))<<SIM_SDID_SERIESID_SHIFT))&SIM_SDID_SERIESID_MASK)
Jasper_lee 0:b16d94660a33 2872 #define SIM_SDID_SUBFAMID_MASK 0xF000000u
Jasper_lee 0:b16d94660a33 2873 #define SIM_SDID_SUBFAMID_SHIFT 24
Jasper_lee 0:b16d94660a33 2874 #define SIM_SDID_SUBFAMID(x) (((uint32_t)(((uint32_t)(x))<<SIM_SDID_SUBFAMID_SHIFT))&SIM_SDID_SUBFAMID_MASK)
Jasper_lee 0:b16d94660a33 2875 #define SIM_SDID_FAMID_MASK 0xF0000000u
Jasper_lee 0:b16d94660a33 2876 #define SIM_SDID_FAMID_SHIFT 28
Jasper_lee 0:b16d94660a33 2877 #define SIM_SDID_FAMID(x) (((uint32_t)(((uint32_t)(x))<<SIM_SDID_FAMID_SHIFT))&SIM_SDID_FAMID_MASK)
Jasper_lee 0:b16d94660a33 2878 /* SCGC4 Bit Fields */
Jasper_lee 0:b16d94660a33 2879 #define SIM_SCGC4_I2C0_MASK 0x40u
Jasper_lee 0:b16d94660a33 2880 #define SIM_SCGC4_I2C0_SHIFT 6
Jasper_lee 0:b16d94660a33 2881 #define SIM_SCGC4_I2C1_MASK 0x80u
Jasper_lee 0:b16d94660a33 2882 #define SIM_SCGC4_I2C1_SHIFT 7
Jasper_lee 0:b16d94660a33 2883 #define SIM_SCGC4_UART0_MASK 0x400u
Jasper_lee 0:b16d94660a33 2884 #define SIM_SCGC4_UART0_SHIFT 10
Jasper_lee 0:b16d94660a33 2885 #define SIM_SCGC4_UART1_MASK 0x800u
Jasper_lee 0:b16d94660a33 2886 #define SIM_SCGC4_UART1_SHIFT 11
Jasper_lee 0:b16d94660a33 2887 #define SIM_SCGC4_UART2_MASK 0x1000u
Jasper_lee 0:b16d94660a33 2888 #define SIM_SCGC4_UART2_SHIFT 12
Jasper_lee 0:b16d94660a33 2889 #define SIM_SCGC4_USBOTG_MASK 0x40000u
Jasper_lee 0:b16d94660a33 2890 #define SIM_SCGC4_USBOTG_SHIFT 18
Jasper_lee 0:b16d94660a33 2891 #define SIM_SCGC4_CMP_MASK 0x80000u
Jasper_lee 0:b16d94660a33 2892 #define SIM_SCGC4_CMP_SHIFT 19
Jasper_lee 0:b16d94660a33 2893 #define SIM_SCGC4_SPI0_MASK 0x400000u
Jasper_lee 0:b16d94660a33 2894 #define SIM_SCGC4_SPI0_SHIFT 22
Jasper_lee 0:b16d94660a33 2895 #define SIM_SCGC4_SPI1_MASK 0x800000u
Jasper_lee 0:b16d94660a33 2896 #define SIM_SCGC4_SPI1_SHIFT 23
Jasper_lee 0:b16d94660a33 2897 /* SCGC5 Bit Fields */
Jasper_lee 0:b16d94660a33 2898 #define SIM_SCGC5_LPTMR_MASK 0x1u
Jasper_lee 0:b16d94660a33 2899 #define SIM_SCGC5_LPTMR_SHIFT 0
Jasper_lee 0:b16d94660a33 2900 #define SIM_SCGC5_TSI_MASK 0x20u
Jasper_lee 0:b16d94660a33 2901 #define SIM_SCGC5_TSI_SHIFT 5
Jasper_lee 0:b16d94660a33 2902 #define SIM_SCGC5_PORTA_MASK 0x200u
Jasper_lee 0:b16d94660a33 2903 #define SIM_SCGC5_PORTA_SHIFT 9
Jasper_lee 0:b16d94660a33 2904 #define SIM_SCGC5_PORTB_MASK 0x400u
Jasper_lee 0:b16d94660a33 2905 #define SIM_SCGC5_PORTB_SHIFT 10
Jasper_lee 0:b16d94660a33 2906 #define SIM_SCGC5_PORTC_MASK 0x800u
Jasper_lee 0:b16d94660a33 2907 #define SIM_SCGC5_PORTC_SHIFT 11
Jasper_lee 0:b16d94660a33 2908 #define SIM_SCGC5_PORTD_MASK 0x1000u
Jasper_lee 0:b16d94660a33 2909 #define SIM_SCGC5_PORTD_SHIFT 12
Jasper_lee 0:b16d94660a33 2910 #define SIM_SCGC5_PORTE_MASK 0x2000u
Jasper_lee 0:b16d94660a33 2911 #define SIM_SCGC5_PORTE_SHIFT 13
Jasper_lee 0:b16d94660a33 2912 /* SCGC6 Bit Fields */
Jasper_lee 0:b16d94660a33 2913 #define SIM_SCGC6_FTF_MASK 0x1u
Jasper_lee 0:b16d94660a33 2914 #define SIM_SCGC6_FTF_SHIFT 0
Jasper_lee 0:b16d94660a33 2915 #define SIM_SCGC6_DMAMUX_MASK 0x2u
Jasper_lee 0:b16d94660a33 2916 #define SIM_SCGC6_DMAMUX_SHIFT 1
Jasper_lee 0:b16d94660a33 2917 #define SIM_SCGC6_PIT_MASK 0x800000u
Jasper_lee 0:b16d94660a33 2918 #define SIM_SCGC6_PIT_SHIFT 23
Jasper_lee 0:b16d94660a33 2919 #define SIM_SCGC6_TPM0_MASK 0x1000000u
Jasper_lee 0:b16d94660a33 2920 #define SIM_SCGC6_TPM0_SHIFT 24
Jasper_lee 0:b16d94660a33 2921 #define SIM_SCGC6_TPM1_MASK 0x2000000u
Jasper_lee 0:b16d94660a33 2922 #define SIM_SCGC6_TPM1_SHIFT 25
Jasper_lee 0:b16d94660a33 2923 #define SIM_SCGC6_TPM2_MASK 0x4000000u
Jasper_lee 0:b16d94660a33 2924 #define SIM_SCGC6_TPM2_SHIFT 26
Jasper_lee 0:b16d94660a33 2925 #define SIM_SCGC6_ADC0_MASK 0x8000000u
Jasper_lee 0:b16d94660a33 2926 #define SIM_SCGC6_ADC0_SHIFT 27
Jasper_lee 0:b16d94660a33 2927 #define SIM_SCGC6_RTC_MASK 0x20000000u
Jasper_lee 0:b16d94660a33 2928 #define SIM_SCGC6_RTC_SHIFT 29
Jasper_lee 0:b16d94660a33 2929 #define SIM_SCGC6_DAC0_MASK 0x80000000u
Jasper_lee 0:b16d94660a33 2930 #define SIM_SCGC6_DAC0_SHIFT 31
Jasper_lee 0:b16d94660a33 2931 /* SCGC7 Bit Fields */
Jasper_lee 0:b16d94660a33 2932 #define SIM_SCGC7_DMA_MASK 0x100u
Jasper_lee 0:b16d94660a33 2933 #define SIM_SCGC7_DMA_SHIFT 8
Jasper_lee 0:b16d94660a33 2934 /* CLKDIV1 Bit Fields */
Jasper_lee 0:b16d94660a33 2935 #define SIM_CLKDIV1_OUTDIV4_MASK 0x70000u
Jasper_lee 0:b16d94660a33 2936 #define SIM_CLKDIV1_OUTDIV4_SHIFT 16
Jasper_lee 0:b16d94660a33 2937 #define SIM_CLKDIV1_OUTDIV4(x) (((uint32_t)(((uint32_t)(x))<<SIM_CLKDIV1_OUTDIV4_SHIFT))&SIM_CLKDIV1_OUTDIV4_MASK)
Jasper_lee 0:b16d94660a33 2938 #define SIM_CLKDIV1_OUTDIV1_MASK 0xF0000000u
Jasper_lee 0:b16d94660a33 2939 #define SIM_CLKDIV1_OUTDIV1_SHIFT 28
Jasper_lee 0:b16d94660a33 2940 #define SIM_CLKDIV1_OUTDIV1(x) (((uint32_t)(((uint32_t)(x))<<SIM_CLKDIV1_OUTDIV1_SHIFT))&SIM_CLKDIV1_OUTDIV1_MASK)
Jasper_lee 0:b16d94660a33 2941 /* FCFG1 Bit Fields */
Jasper_lee 0:b16d94660a33 2942 #define SIM_FCFG1_FLASHDIS_MASK 0x1u
Jasper_lee 0:b16d94660a33 2943 #define SIM_FCFG1_FLASHDIS_SHIFT 0
Jasper_lee 0:b16d94660a33 2944 #define SIM_FCFG1_FLASHDOZE_MASK 0x2u
Jasper_lee 0:b16d94660a33 2945 #define SIM_FCFG1_FLASHDOZE_SHIFT 1
Jasper_lee 0:b16d94660a33 2946 #define SIM_FCFG1_PFSIZE_MASK 0xF000000u
Jasper_lee 0:b16d94660a33 2947 #define SIM_FCFG1_PFSIZE_SHIFT 24
Jasper_lee 0:b16d94660a33 2948 #define SIM_FCFG1_PFSIZE(x) (((uint32_t)(((uint32_t)(x))<<SIM_FCFG1_PFSIZE_SHIFT))&SIM_FCFG1_PFSIZE_MASK)
Jasper_lee 0:b16d94660a33 2949 /* FCFG2 Bit Fields */
Jasper_lee 0:b16d94660a33 2950 #define SIM_FCFG2_MAXADDR_MASK 0x7F000000u
Jasper_lee 0:b16d94660a33 2951 #define SIM_FCFG2_MAXADDR_SHIFT 24
Jasper_lee 0:b16d94660a33 2952 #define SIM_FCFG2_MAXADDR(x) (((uint32_t)(((uint32_t)(x))<<SIM_FCFG2_MAXADDR_SHIFT))&SIM_FCFG2_MAXADDR_MASK)
Jasper_lee 0:b16d94660a33 2953 /* UIDMH Bit Fields */
Jasper_lee 0:b16d94660a33 2954 #define SIM_UIDMH_UID_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 2955 #define SIM_UIDMH_UID_SHIFT 0
Jasper_lee 0:b16d94660a33 2956 #define SIM_UIDMH_UID(x) (((uint32_t)(((uint32_t)(x))<<SIM_UIDMH_UID_SHIFT))&SIM_UIDMH_UID_MASK)
Jasper_lee 0:b16d94660a33 2957 /* UIDML Bit Fields */
Jasper_lee 0:b16d94660a33 2958 #define SIM_UIDML_UID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2959 #define SIM_UIDML_UID_SHIFT 0
Jasper_lee 0:b16d94660a33 2960 #define SIM_UIDML_UID(x) (((uint32_t)(((uint32_t)(x))<<SIM_UIDML_UID_SHIFT))&SIM_UIDML_UID_MASK)
Jasper_lee 0:b16d94660a33 2961 /* UIDL Bit Fields */
Jasper_lee 0:b16d94660a33 2962 #define SIM_UIDL_UID_MASK 0xFFFFFFFFu
Jasper_lee 0:b16d94660a33 2963 #define SIM_UIDL_UID_SHIFT 0
Jasper_lee 0:b16d94660a33 2964 #define SIM_UIDL_UID(x) (((uint32_t)(((uint32_t)(x))<<SIM_UIDL_UID_SHIFT))&SIM_UIDL_UID_MASK)
Jasper_lee 0:b16d94660a33 2965 /* COPC Bit Fields */
Jasper_lee 0:b16d94660a33 2966 #define SIM_COPC_COPW_MASK 0x1u
Jasper_lee 0:b16d94660a33 2967 #define SIM_COPC_COPW_SHIFT 0
Jasper_lee 0:b16d94660a33 2968 #define SIM_COPC_COPCLKS_MASK 0x2u
Jasper_lee 0:b16d94660a33 2969 #define SIM_COPC_COPCLKS_SHIFT 1
Jasper_lee 0:b16d94660a33 2970 #define SIM_COPC_COPT_MASK 0xCu
Jasper_lee 0:b16d94660a33 2971 #define SIM_COPC_COPT_SHIFT 2
Jasper_lee 0:b16d94660a33 2972 #define SIM_COPC_COPT(x) (((uint32_t)(((uint32_t)(x))<<SIM_COPC_COPT_SHIFT))&SIM_COPC_COPT_MASK)
Jasper_lee 0:b16d94660a33 2973 /* SRVCOP Bit Fields */
Jasper_lee 0:b16d94660a33 2974 #define SIM_SRVCOP_SRVCOP_MASK 0xFFu
Jasper_lee 0:b16d94660a33 2975 #define SIM_SRVCOP_SRVCOP_SHIFT 0
Jasper_lee 0:b16d94660a33 2976 #define SIM_SRVCOP_SRVCOP(x) (((uint32_t)(((uint32_t)(x))<<SIM_SRVCOP_SRVCOP_SHIFT))&SIM_SRVCOP_SRVCOP_MASK)
Jasper_lee 0:b16d94660a33 2977
Jasper_lee 0:b16d94660a33 2978 /**
Jasper_lee 0:b16d94660a33 2979 * @}
Jasper_lee 0:b16d94660a33 2980 */ /* end of group SIM_Register_Masks */
Jasper_lee 0:b16d94660a33 2981
Jasper_lee 0:b16d94660a33 2982
Jasper_lee 0:b16d94660a33 2983 /* SIM - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 2984 /** Peripheral SIM base address */
Jasper_lee 0:b16d94660a33 2985 #define SIM_BASE (0x40047000u)
Jasper_lee 0:b16d94660a33 2986 /** Peripheral SIM base pointer */
Jasper_lee 0:b16d94660a33 2987 #define SIM ((SIM_Type *)SIM_BASE)
Jasper_lee 0:b16d94660a33 2988 /** Array initializer of SIM peripheral base pointers */
Jasper_lee 0:b16d94660a33 2989 #define SIM_BASES { SIM }
Jasper_lee 0:b16d94660a33 2990
Jasper_lee 0:b16d94660a33 2991 /**
Jasper_lee 0:b16d94660a33 2992 * @}
Jasper_lee 0:b16d94660a33 2993 */ /* end of group SIM_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 2994
Jasper_lee 0:b16d94660a33 2995
Jasper_lee 0:b16d94660a33 2996 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 2997 -- SMC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 2998 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 2999
Jasper_lee 0:b16d94660a33 3000 /**
Jasper_lee 0:b16d94660a33 3001 * @addtogroup SMC_Peripheral_Access_Layer SMC Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3002 * @{
Jasper_lee 0:b16d94660a33 3003 */
Jasper_lee 0:b16d94660a33 3004
Jasper_lee 0:b16d94660a33 3005 /** SMC - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 3006 typedef struct {
Jasper_lee 0:b16d94660a33 3007 __IO uint8_t PMPROT; /**< Power Mode Protection register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 3008 __IO uint8_t PMCTRL; /**< Power Mode Control register, offset: 0x1 */
Jasper_lee 0:b16d94660a33 3009 __IO uint8_t STOPCTRL; /**< Stop Control Register, offset: 0x2 */
Jasper_lee 0:b16d94660a33 3010 __I uint8_t PMSTAT; /**< Power Mode Status register, offset: 0x3 */
Jasper_lee 0:b16d94660a33 3011 } SMC_Type;
Jasper_lee 0:b16d94660a33 3012
Jasper_lee 0:b16d94660a33 3013 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3014 -- SMC Register Masks
Jasper_lee 0:b16d94660a33 3015 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3016
Jasper_lee 0:b16d94660a33 3017 /**
Jasper_lee 0:b16d94660a33 3018 * @addtogroup SMC_Register_Masks SMC Register Masks
Jasper_lee 0:b16d94660a33 3019 * @{
Jasper_lee 0:b16d94660a33 3020 */
Jasper_lee 0:b16d94660a33 3021
Jasper_lee 0:b16d94660a33 3022 /* PMPROT Bit Fields */
Jasper_lee 0:b16d94660a33 3023 #define SMC_PMPROT_AVLLS_MASK 0x2u
Jasper_lee 0:b16d94660a33 3024 #define SMC_PMPROT_AVLLS_SHIFT 1
Jasper_lee 0:b16d94660a33 3025 #define SMC_PMPROT_ALLS_MASK 0x8u
Jasper_lee 0:b16d94660a33 3026 #define SMC_PMPROT_ALLS_SHIFT 3
Jasper_lee 0:b16d94660a33 3027 #define SMC_PMPROT_AVLP_MASK 0x20u
Jasper_lee 0:b16d94660a33 3028 #define SMC_PMPROT_AVLP_SHIFT 5
Jasper_lee 0:b16d94660a33 3029 /* PMCTRL Bit Fields */
Jasper_lee 0:b16d94660a33 3030 #define SMC_PMCTRL_STOPM_MASK 0x7u
Jasper_lee 0:b16d94660a33 3031 #define SMC_PMCTRL_STOPM_SHIFT 0
Jasper_lee 0:b16d94660a33 3032 #define SMC_PMCTRL_STOPM(x) (((uint8_t)(((uint8_t)(x))<<SMC_PMCTRL_STOPM_SHIFT))&SMC_PMCTRL_STOPM_MASK)
Jasper_lee 0:b16d94660a33 3033 #define SMC_PMCTRL_STOPA_MASK 0x8u
Jasper_lee 0:b16d94660a33 3034 #define SMC_PMCTRL_STOPA_SHIFT 3
Jasper_lee 0:b16d94660a33 3035 #define SMC_PMCTRL_RUNM_MASK 0x60u
Jasper_lee 0:b16d94660a33 3036 #define SMC_PMCTRL_RUNM_SHIFT 5
Jasper_lee 0:b16d94660a33 3037 #define SMC_PMCTRL_RUNM(x) (((uint8_t)(((uint8_t)(x))<<SMC_PMCTRL_RUNM_SHIFT))&SMC_PMCTRL_RUNM_MASK)
Jasper_lee 0:b16d94660a33 3038 /* STOPCTRL Bit Fields */
Jasper_lee 0:b16d94660a33 3039 #define SMC_STOPCTRL_VLLSM_MASK 0x7u
Jasper_lee 0:b16d94660a33 3040 #define SMC_STOPCTRL_VLLSM_SHIFT 0
Jasper_lee 0:b16d94660a33 3041 #define SMC_STOPCTRL_VLLSM(x) (((uint8_t)(((uint8_t)(x))<<SMC_STOPCTRL_VLLSM_SHIFT))&SMC_STOPCTRL_VLLSM_MASK)
Jasper_lee 0:b16d94660a33 3042 #define SMC_STOPCTRL_PORPO_MASK 0x20u
Jasper_lee 0:b16d94660a33 3043 #define SMC_STOPCTRL_PORPO_SHIFT 5
Jasper_lee 0:b16d94660a33 3044 #define SMC_STOPCTRL_PSTOPO_MASK 0xC0u
Jasper_lee 0:b16d94660a33 3045 #define SMC_STOPCTRL_PSTOPO_SHIFT 6
Jasper_lee 0:b16d94660a33 3046 #define SMC_STOPCTRL_PSTOPO(x) (((uint8_t)(((uint8_t)(x))<<SMC_STOPCTRL_PSTOPO_SHIFT))&SMC_STOPCTRL_PSTOPO_MASK)
Jasper_lee 0:b16d94660a33 3047 /* PMSTAT Bit Fields */
Jasper_lee 0:b16d94660a33 3048 #define SMC_PMSTAT_PMSTAT_MASK 0x7Fu
Jasper_lee 0:b16d94660a33 3049 #define SMC_PMSTAT_PMSTAT_SHIFT 0
Jasper_lee 0:b16d94660a33 3050 #define SMC_PMSTAT_PMSTAT(x) (((uint8_t)(((uint8_t)(x))<<SMC_PMSTAT_PMSTAT_SHIFT))&SMC_PMSTAT_PMSTAT_MASK)
Jasper_lee 0:b16d94660a33 3051
Jasper_lee 0:b16d94660a33 3052 /**
Jasper_lee 0:b16d94660a33 3053 * @}
Jasper_lee 0:b16d94660a33 3054 */ /* end of group SMC_Register_Masks */
Jasper_lee 0:b16d94660a33 3055
Jasper_lee 0:b16d94660a33 3056
Jasper_lee 0:b16d94660a33 3057 /* SMC - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 3058 /** Peripheral SMC base address */
Jasper_lee 0:b16d94660a33 3059 #define SMC_BASE (0x4007E000u)
Jasper_lee 0:b16d94660a33 3060 /** Peripheral SMC base pointer */
Jasper_lee 0:b16d94660a33 3061 #define SMC ((SMC_Type *)SMC_BASE)
Jasper_lee 0:b16d94660a33 3062 /** Array initializer of SMC peripheral base pointers */
Jasper_lee 0:b16d94660a33 3063 #define SMC_BASES { SMC }
Jasper_lee 0:b16d94660a33 3064
Jasper_lee 0:b16d94660a33 3065 /**
Jasper_lee 0:b16d94660a33 3066 * @}
Jasper_lee 0:b16d94660a33 3067 */ /* end of group SMC_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 3068
Jasper_lee 0:b16d94660a33 3069
Jasper_lee 0:b16d94660a33 3070 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3071 -- SPI Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3072 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3073
Jasper_lee 0:b16d94660a33 3074 /**
Jasper_lee 0:b16d94660a33 3075 * @addtogroup SPI_Peripheral_Access_Layer SPI Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3076 * @{
Jasper_lee 0:b16d94660a33 3077 */
Jasper_lee 0:b16d94660a33 3078
Jasper_lee 0:b16d94660a33 3079 /** SPI - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 3080 typedef struct {
Jasper_lee 0:b16d94660a33 3081 __IO uint8_t C1; /**< SPI control register 1, offset: 0x0 */
Jasper_lee 0:b16d94660a33 3082 __IO uint8_t C2; /**< SPI control register 2, offset: 0x1 */
Jasper_lee 0:b16d94660a33 3083 __IO uint8_t BR; /**< SPI baud rate register, offset: 0x2 */
Jasper_lee 0:b16d94660a33 3084 __I uint8_t S; /**< SPI status register, offset: 0x3 */
Jasper_lee 0:b16d94660a33 3085 uint8_t RESERVED_0[1];
Jasper_lee 0:b16d94660a33 3086 __IO uint8_t D; /**< SPI data register, offset: 0x5 */
Jasper_lee 0:b16d94660a33 3087 uint8_t RESERVED_1[1];
Jasper_lee 0:b16d94660a33 3088 __IO uint8_t M; /**< SPI match register, offset: 0x7 */
Jasper_lee 0:b16d94660a33 3089 } SPI_Type;
Jasper_lee 0:b16d94660a33 3090
Jasper_lee 0:b16d94660a33 3091 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3092 -- SPI Register Masks
Jasper_lee 0:b16d94660a33 3093 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3094
Jasper_lee 0:b16d94660a33 3095 /**
Jasper_lee 0:b16d94660a33 3096 * @addtogroup SPI_Register_Masks SPI Register Masks
Jasper_lee 0:b16d94660a33 3097 * @{
Jasper_lee 0:b16d94660a33 3098 */
Jasper_lee 0:b16d94660a33 3099
Jasper_lee 0:b16d94660a33 3100 /* C1 Bit Fields */
Jasper_lee 0:b16d94660a33 3101 #define SPI_C1_LSBFE_MASK 0x1u
Jasper_lee 0:b16d94660a33 3102 #define SPI_C1_LSBFE_SHIFT 0
Jasper_lee 0:b16d94660a33 3103 #define SPI_C1_SSOE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3104 #define SPI_C1_SSOE_SHIFT 1
Jasper_lee 0:b16d94660a33 3105 #define SPI_C1_CPHA_MASK 0x4u
Jasper_lee 0:b16d94660a33 3106 #define SPI_C1_CPHA_SHIFT 2
Jasper_lee 0:b16d94660a33 3107 #define SPI_C1_CPOL_MASK 0x8u
Jasper_lee 0:b16d94660a33 3108 #define SPI_C1_CPOL_SHIFT 3
Jasper_lee 0:b16d94660a33 3109 #define SPI_C1_MSTR_MASK 0x10u
Jasper_lee 0:b16d94660a33 3110 #define SPI_C1_MSTR_SHIFT 4
Jasper_lee 0:b16d94660a33 3111 #define SPI_C1_SPTIE_MASK 0x20u
Jasper_lee 0:b16d94660a33 3112 #define SPI_C1_SPTIE_SHIFT 5
Jasper_lee 0:b16d94660a33 3113 #define SPI_C1_SPE_MASK 0x40u
Jasper_lee 0:b16d94660a33 3114 #define SPI_C1_SPE_SHIFT 6
Jasper_lee 0:b16d94660a33 3115 #define SPI_C1_SPIE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3116 #define SPI_C1_SPIE_SHIFT 7
Jasper_lee 0:b16d94660a33 3117 /* C2 Bit Fields */
Jasper_lee 0:b16d94660a33 3118 #define SPI_C2_SPC0_MASK 0x1u
Jasper_lee 0:b16d94660a33 3119 #define SPI_C2_SPC0_SHIFT 0
Jasper_lee 0:b16d94660a33 3120 #define SPI_C2_SPISWAI_MASK 0x2u
Jasper_lee 0:b16d94660a33 3121 #define SPI_C2_SPISWAI_SHIFT 1
Jasper_lee 0:b16d94660a33 3122 #define SPI_C2_RXDMAE_MASK 0x4u
Jasper_lee 0:b16d94660a33 3123 #define SPI_C2_RXDMAE_SHIFT 2
Jasper_lee 0:b16d94660a33 3124 #define SPI_C2_BIDIROE_MASK 0x8u
Jasper_lee 0:b16d94660a33 3125 #define SPI_C2_BIDIROE_SHIFT 3
Jasper_lee 0:b16d94660a33 3126 #define SPI_C2_MODFEN_MASK 0x10u
Jasper_lee 0:b16d94660a33 3127 #define SPI_C2_MODFEN_SHIFT 4
Jasper_lee 0:b16d94660a33 3128 #define SPI_C2_TXDMAE_MASK 0x20u
Jasper_lee 0:b16d94660a33 3129 #define SPI_C2_TXDMAE_SHIFT 5
Jasper_lee 0:b16d94660a33 3130 #define SPI_C2_SPLPIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 3131 #define SPI_C2_SPLPIE_SHIFT 6
Jasper_lee 0:b16d94660a33 3132 #define SPI_C2_SPMIE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3133 #define SPI_C2_SPMIE_SHIFT 7
Jasper_lee 0:b16d94660a33 3134 /* BR Bit Fields */
Jasper_lee 0:b16d94660a33 3135 #define SPI_BR_SPR_MASK 0xFu
Jasper_lee 0:b16d94660a33 3136 #define SPI_BR_SPR_SHIFT 0
Jasper_lee 0:b16d94660a33 3137 #define SPI_BR_SPR(x) (((uint8_t)(((uint8_t)(x))<<SPI_BR_SPR_SHIFT))&SPI_BR_SPR_MASK)
Jasper_lee 0:b16d94660a33 3138 #define SPI_BR_SPPR_MASK 0x70u
Jasper_lee 0:b16d94660a33 3139 #define SPI_BR_SPPR_SHIFT 4
Jasper_lee 0:b16d94660a33 3140 #define SPI_BR_SPPR(x) (((uint8_t)(((uint8_t)(x))<<SPI_BR_SPPR_SHIFT))&SPI_BR_SPPR_MASK)
Jasper_lee 0:b16d94660a33 3141 /* S Bit Fields */
Jasper_lee 0:b16d94660a33 3142 #define SPI_S_MODF_MASK 0x10u
Jasper_lee 0:b16d94660a33 3143 #define SPI_S_MODF_SHIFT 4
Jasper_lee 0:b16d94660a33 3144 #define SPI_S_SPTEF_MASK 0x20u
Jasper_lee 0:b16d94660a33 3145 #define SPI_S_SPTEF_SHIFT 5
Jasper_lee 0:b16d94660a33 3146 #define SPI_S_SPMF_MASK 0x40u
Jasper_lee 0:b16d94660a33 3147 #define SPI_S_SPMF_SHIFT 6
Jasper_lee 0:b16d94660a33 3148 #define SPI_S_SPRF_MASK 0x80u
Jasper_lee 0:b16d94660a33 3149 #define SPI_S_SPRF_SHIFT 7
Jasper_lee 0:b16d94660a33 3150 /* D Bit Fields */
Jasper_lee 0:b16d94660a33 3151 #define SPI_D_Bits_MASK 0xFFu
Jasper_lee 0:b16d94660a33 3152 #define SPI_D_Bits_SHIFT 0
Jasper_lee 0:b16d94660a33 3153 #define SPI_D_Bits(x) (((uint8_t)(((uint8_t)(x))<<SPI_D_Bits_SHIFT))&SPI_D_Bits_MASK)
Jasper_lee 0:b16d94660a33 3154 /* M Bit Fields */
Jasper_lee 0:b16d94660a33 3155 #define SPI_M_Bits_MASK 0xFFu
Jasper_lee 0:b16d94660a33 3156 #define SPI_M_Bits_SHIFT 0
Jasper_lee 0:b16d94660a33 3157 #define SPI_M_Bits(x) (((uint8_t)(((uint8_t)(x))<<SPI_M_Bits_SHIFT))&SPI_M_Bits_MASK)
Jasper_lee 0:b16d94660a33 3158
Jasper_lee 0:b16d94660a33 3159 /**
Jasper_lee 0:b16d94660a33 3160 * @}
Jasper_lee 0:b16d94660a33 3161 */ /* end of group SPI_Register_Masks */
Jasper_lee 0:b16d94660a33 3162
Jasper_lee 0:b16d94660a33 3163
Jasper_lee 0:b16d94660a33 3164 /* SPI - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 3165 /** Peripheral SPI0 base address */
Jasper_lee 0:b16d94660a33 3166 #define SPI0_BASE (0x40076000u)
Jasper_lee 0:b16d94660a33 3167 /** Peripheral SPI0 base pointer */
Jasper_lee 0:b16d94660a33 3168 #define SPI0 ((SPI_Type *)SPI0_BASE)
Jasper_lee 0:b16d94660a33 3169 /** Peripheral SPI1 base address */
Jasper_lee 0:b16d94660a33 3170 #define SPI1_BASE (0x40077000u)
Jasper_lee 0:b16d94660a33 3171 /** Peripheral SPI1 base pointer */
Jasper_lee 0:b16d94660a33 3172 #define SPI1 ((SPI_Type *)SPI1_BASE)
Jasper_lee 0:b16d94660a33 3173 /** Array initializer of SPI peripheral base pointers */
Jasper_lee 0:b16d94660a33 3174 #define SPI_BASES { SPI0, SPI1 }
Jasper_lee 0:b16d94660a33 3175
Jasper_lee 0:b16d94660a33 3176 /**
Jasper_lee 0:b16d94660a33 3177 * @}
Jasper_lee 0:b16d94660a33 3178 */ /* end of group SPI_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 3179
Jasper_lee 0:b16d94660a33 3180
Jasper_lee 0:b16d94660a33 3181 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3182 -- TPM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3183 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3184
Jasper_lee 0:b16d94660a33 3185 /**
Jasper_lee 0:b16d94660a33 3186 * @addtogroup TPM_Peripheral_Access_Layer TPM Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3187 * @{
Jasper_lee 0:b16d94660a33 3188 */
Jasper_lee 0:b16d94660a33 3189
Jasper_lee 0:b16d94660a33 3190 /** TPM - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 3191 typedef struct {
Jasper_lee 0:b16d94660a33 3192 __IO uint32_t SC; /**< Status and Control, offset: 0x0 */
Jasper_lee 0:b16d94660a33 3193 __IO uint32_t CNT; /**< Counter, offset: 0x4 */
Jasper_lee 0:b16d94660a33 3194 __IO uint32_t MOD; /**< Modulo, offset: 0x8 */
Jasper_lee 0:b16d94660a33 3195 struct { /* offset: 0xC, array step: 0x8 */
Jasper_lee 0:b16d94660a33 3196 __IO uint32_t CnSC; /**< Channel (n) Status and Control, array offset: 0xC, array step: 0x8 */
Jasper_lee 0:b16d94660a33 3197 __IO uint32_t CnV; /**< Channel (n) Value, array offset: 0x10, array step: 0x8 */
Jasper_lee 0:b16d94660a33 3198 } CONTROLS[6];
Jasper_lee 0:b16d94660a33 3199 uint8_t RESERVED_0[20];
Jasper_lee 0:b16d94660a33 3200 __IO uint32_t STATUS; /**< Capture and Compare Status, offset: 0x50 */
Jasper_lee 0:b16d94660a33 3201 uint8_t RESERVED_1[48];
Jasper_lee 0:b16d94660a33 3202 __IO uint32_t CONF; /**< Configuration, offset: 0x84 */
Jasper_lee 0:b16d94660a33 3203 } TPM_Type;
Jasper_lee 0:b16d94660a33 3204
Jasper_lee 0:b16d94660a33 3205 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3206 -- TPM Register Masks
Jasper_lee 0:b16d94660a33 3207 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3208
Jasper_lee 0:b16d94660a33 3209 /**
Jasper_lee 0:b16d94660a33 3210 * @addtogroup TPM_Register_Masks TPM Register Masks
Jasper_lee 0:b16d94660a33 3211 * @{
Jasper_lee 0:b16d94660a33 3212 */
Jasper_lee 0:b16d94660a33 3213
Jasper_lee 0:b16d94660a33 3214 /* SC Bit Fields */
Jasper_lee 0:b16d94660a33 3215 #define TPM_SC_PS_MASK 0x7u
Jasper_lee 0:b16d94660a33 3216 #define TPM_SC_PS_SHIFT 0
Jasper_lee 0:b16d94660a33 3217 #define TPM_SC_PS(x) (((uint32_t)(((uint32_t)(x))<<TPM_SC_PS_SHIFT))&TPM_SC_PS_MASK)
Jasper_lee 0:b16d94660a33 3218 #define TPM_SC_CMOD_MASK 0x18u
Jasper_lee 0:b16d94660a33 3219 #define TPM_SC_CMOD_SHIFT 3
Jasper_lee 0:b16d94660a33 3220 #define TPM_SC_CMOD(x) (((uint32_t)(((uint32_t)(x))<<TPM_SC_CMOD_SHIFT))&TPM_SC_CMOD_MASK)
Jasper_lee 0:b16d94660a33 3221 #define TPM_SC_CPWMS_MASK 0x20u
Jasper_lee 0:b16d94660a33 3222 #define TPM_SC_CPWMS_SHIFT 5
Jasper_lee 0:b16d94660a33 3223 #define TPM_SC_TOIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 3224 #define TPM_SC_TOIE_SHIFT 6
Jasper_lee 0:b16d94660a33 3225 #define TPM_SC_TOF_MASK 0x80u
Jasper_lee 0:b16d94660a33 3226 #define TPM_SC_TOF_SHIFT 7
Jasper_lee 0:b16d94660a33 3227 #define TPM_SC_DMA_MASK 0x100u
Jasper_lee 0:b16d94660a33 3228 #define TPM_SC_DMA_SHIFT 8
Jasper_lee 0:b16d94660a33 3229 /* CNT Bit Fields */
Jasper_lee 0:b16d94660a33 3230 #define TPM_CNT_COUNT_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 3231 #define TPM_CNT_COUNT_SHIFT 0
Jasper_lee 0:b16d94660a33 3232 #define TPM_CNT_COUNT(x) (((uint32_t)(((uint32_t)(x))<<TPM_CNT_COUNT_SHIFT))&TPM_CNT_COUNT_MASK)
Jasper_lee 0:b16d94660a33 3233 /* MOD Bit Fields */
Jasper_lee 0:b16d94660a33 3234 #define TPM_MOD_MOD_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 3235 #define TPM_MOD_MOD_SHIFT 0
Jasper_lee 0:b16d94660a33 3236 #define TPM_MOD_MOD(x) (((uint32_t)(((uint32_t)(x))<<TPM_MOD_MOD_SHIFT))&TPM_MOD_MOD_MASK)
Jasper_lee 0:b16d94660a33 3237 /* CnSC Bit Fields */
Jasper_lee 0:b16d94660a33 3238 #define TPM_CnSC_DMA_MASK 0x1u
Jasper_lee 0:b16d94660a33 3239 #define TPM_CnSC_DMA_SHIFT 0
Jasper_lee 0:b16d94660a33 3240 #define TPM_CnSC_ELSA_MASK 0x4u
Jasper_lee 0:b16d94660a33 3241 #define TPM_CnSC_ELSA_SHIFT 2
Jasper_lee 0:b16d94660a33 3242 #define TPM_CnSC_ELSB_MASK 0x8u
Jasper_lee 0:b16d94660a33 3243 #define TPM_CnSC_ELSB_SHIFT 3
Jasper_lee 0:b16d94660a33 3244 #define TPM_CnSC_MSA_MASK 0x10u
Jasper_lee 0:b16d94660a33 3245 #define TPM_CnSC_MSA_SHIFT 4
Jasper_lee 0:b16d94660a33 3246 #define TPM_CnSC_MSB_MASK 0x20u
Jasper_lee 0:b16d94660a33 3247 #define TPM_CnSC_MSB_SHIFT 5
Jasper_lee 0:b16d94660a33 3248 #define TPM_CnSC_CHIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 3249 #define TPM_CnSC_CHIE_SHIFT 6
Jasper_lee 0:b16d94660a33 3250 #define TPM_CnSC_CHF_MASK 0x80u
Jasper_lee 0:b16d94660a33 3251 #define TPM_CnSC_CHF_SHIFT 7
Jasper_lee 0:b16d94660a33 3252 /* CnV Bit Fields */
Jasper_lee 0:b16d94660a33 3253 #define TPM_CnV_VAL_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 3254 #define TPM_CnV_VAL_SHIFT 0
Jasper_lee 0:b16d94660a33 3255 #define TPM_CnV_VAL(x) (((uint32_t)(((uint32_t)(x))<<TPM_CnV_VAL_SHIFT))&TPM_CnV_VAL_MASK)
Jasper_lee 0:b16d94660a33 3256 /* STATUS Bit Fields */
Jasper_lee 0:b16d94660a33 3257 #define TPM_STATUS_CH0F_MASK 0x1u
Jasper_lee 0:b16d94660a33 3258 #define TPM_STATUS_CH0F_SHIFT 0
Jasper_lee 0:b16d94660a33 3259 #define TPM_STATUS_CH1F_MASK 0x2u
Jasper_lee 0:b16d94660a33 3260 #define TPM_STATUS_CH1F_SHIFT 1
Jasper_lee 0:b16d94660a33 3261 #define TPM_STATUS_CH2F_MASK 0x4u
Jasper_lee 0:b16d94660a33 3262 #define TPM_STATUS_CH2F_SHIFT 2
Jasper_lee 0:b16d94660a33 3263 #define TPM_STATUS_CH3F_MASK 0x8u
Jasper_lee 0:b16d94660a33 3264 #define TPM_STATUS_CH3F_SHIFT 3
Jasper_lee 0:b16d94660a33 3265 #define TPM_STATUS_CH4F_MASK 0x10u
Jasper_lee 0:b16d94660a33 3266 #define TPM_STATUS_CH4F_SHIFT 4
Jasper_lee 0:b16d94660a33 3267 #define TPM_STATUS_CH5F_MASK 0x20u
Jasper_lee 0:b16d94660a33 3268 #define TPM_STATUS_CH5F_SHIFT 5
Jasper_lee 0:b16d94660a33 3269 #define TPM_STATUS_TOF_MASK 0x100u
Jasper_lee 0:b16d94660a33 3270 #define TPM_STATUS_TOF_SHIFT 8
Jasper_lee 0:b16d94660a33 3271 /* CONF Bit Fields */
Jasper_lee 0:b16d94660a33 3272 #define TPM_CONF_DOZEEN_MASK 0x20u
Jasper_lee 0:b16d94660a33 3273 #define TPM_CONF_DOZEEN_SHIFT 5
Jasper_lee 0:b16d94660a33 3274 #define TPM_CONF_DBGMODE_MASK 0xC0u
Jasper_lee 0:b16d94660a33 3275 #define TPM_CONF_DBGMODE_SHIFT 6
Jasper_lee 0:b16d94660a33 3276 #define TPM_CONF_DBGMODE(x) (((uint32_t)(((uint32_t)(x))<<TPM_CONF_DBGMODE_SHIFT))&TPM_CONF_DBGMODE_MASK)
Jasper_lee 0:b16d94660a33 3277 #define TPM_CONF_GTBEEN_MASK 0x200u
Jasper_lee 0:b16d94660a33 3278 #define TPM_CONF_GTBEEN_SHIFT 9
Jasper_lee 0:b16d94660a33 3279 #define TPM_CONF_CSOT_MASK 0x10000u
Jasper_lee 0:b16d94660a33 3280 #define TPM_CONF_CSOT_SHIFT 16
Jasper_lee 0:b16d94660a33 3281 #define TPM_CONF_CSOO_MASK 0x20000u
Jasper_lee 0:b16d94660a33 3282 #define TPM_CONF_CSOO_SHIFT 17
Jasper_lee 0:b16d94660a33 3283 #define TPM_CONF_CROT_MASK 0x40000u
Jasper_lee 0:b16d94660a33 3284 #define TPM_CONF_CROT_SHIFT 18
Jasper_lee 0:b16d94660a33 3285 #define TPM_CONF_TRGSEL_MASK 0xF000000u
Jasper_lee 0:b16d94660a33 3286 #define TPM_CONF_TRGSEL_SHIFT 24
Jasper_lee 0:b16d94660a33 3287 #define TPM_CONF_TRGSEL(x) (((uint32_t)(((uint32_t)(x))<<TPM_CONF_TRGSEL_SHIFT))&TPM_CONF_TRGSEL_MASK)
Jasper_lee 0:b16d94660a33 3288
Jasper_lee 0:b16d94660a33 3289 /**
Jasper_lee 0:b16d94660a33 3290 * @}
Jasper_lee 0:b16d94660a33 3291 */ /* end of group TPM_Register_Masks */
Jasper_lee 0:b16d94660a33 3292
Jasper_lee 0:b16d94660a33 3293
Jasper_lee 0:b16d94660a33 3294 /* TPM - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 3295 /** Peripheral TPM0 base address */
Jasper_lee 0:b16d94660a33 3296 #define TPM0_BASE (0x40038000u)
Jasper_lee 0:b16d94660a33 3297 /** Peripheral TPM0 base pointer */
Jasper_lee 0:b16d94660a33 3298 #define TPM0 ((TPM_Type *)TPM0_BASE)
Jasper_lee 0:b16d94660a33 3299 /** Peripheral TPM1 base address */
Jasper_lee 0:b16d94660a33 3300 #define TPM1_BASE (0x40039000u)
Jasper_lee 0:b16d94660a33 3301 /** Peripheral TPM1 base pointer */
Jasper_lee 0:b16d94660a33 3302 #define TPM1 ((TPM_Type *)TPM1_BASE)
Jasper_lee 0:b16d94660a33 3303 /** Peripheral TPM2 base address */
Jasper_lee 0:b16d94660a33 3304 #define TPM2_BASE (0x4003A000u)
Jasper_lee 0:b16d94660a33 3305 /** Peripheral TPM2 base pointer */
Jasper_lee 0:b16d94660a33 3306 #define TPM2 ((TPM_Type *)TPM2_BASE)
Jasper_lee 0:b16d94660a33 3307 /** Array initializer of TPM peripheral base pointers */
Jasper_lee 0:b16d94660a33 3308 #define TPM_BASES { TPM0, TPM1, TPM2 }
Jasper_lee 0:b16d94660a33 3309
Jasper_lee 0:b16d94660a33 3310 /**
Jasper_lee 0:b16d94660a33 3311 * @}
Jasper_lee 0:b16d94660a33 3312 */ /* end of group TPM_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 3313
Jasper_lee 0:b16d94660a33 3314
Jasper_lee 0:b16d94660a33 3315 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3316 -- TSI Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3317 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3318
Jasper_lee 0:b16d94660a33 3319 /**
Jasper_lee 0:b16d94660a33 3320 * @addtogroup TSI_Peripheral_Access_Layer TSI Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3321 * @{
Jasper_lee 0:b16d94660a33 3322 */
Jasper_lee 0:b16d94660a33 3323
Jasper_lee 0:b16d94660a33 3324 /** TSI - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 3325 typedef struct {
Jasper_lee 0:b16d94660a33 3326 __IO uint32_t GENCS; /**< TSI General Control and Status Register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 3327 __IO uint32_t DATA; /**< TSI DATA Register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 3328 __IO uint32_t TSHD; /**< TSI Threshold Register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 3329 } TSI_Type;
Jasper_lee 0:b16d94660a33 3330
Jasper_lee 0:b16d94660a33 3331 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3332 -- TSI Register Masks
Jasper_lee 0:b16d94660a33 3333 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3334
Jasper_lee 0:b16d94660a33 3335 /**
Jasper_lee 0:b16d94660a33 3336 * @addtogroup TSI_Register_Masks TSI Register Masks
Jasper_lee 0:b16d94660a33 3337 * @{
Jasper_lee 0:b16d94660a33 3338 */
Jasper_lee 0:b16d94660a33 3339
Jasper_lee 0:b16d94660a33 3340 /* GENCS Bit Fields */
Jasper_lee 0:b16d94660a33 3341 #define TSI_GENCS_CURSW_MASK 0x2u
Jasper_lee 0:b16d94660a33 3342 #define TSI_GENCS_CURSW_SHIFT 1
Jasper_lee 0:b16d94660a33 3343 #define TSI_GENCS_EOSF_MASK 0x4u
Jasper_lee 0:b16d94660a33 3344 #define TSI_GENCS_EOSF_SHIFT 2
Jasper_lee 0:b16d94660a33 3345 #define TSI_GENCS_SCNIP_MASK 0x8u
Jasper_lee 0:b16d94660a33 3346 #define TSI_GENCS_SCNIP_SHIFT 3
Jasper_lee 0:b16d94660a33 3347 #define TSI_GENCS_STM_MASK 0x10u
Jasper_lee 0:b16d94660a33 3348 #define TSI_GENCS_STM_SHIFT 4
Jasper_lee 0:b16d94660a33 3349 #define TSI_GENCS_STPE_MASK 0x20u
Jasper_lee 0:b16d94660a33 3350 #define TSI_GENCS_STPE_SHIFT 5
Jasper_lee 0:b16d94660a33 3351 #define TSI_GENCS_TSIIEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 3352 #define TSI_GENCS_TSIIEN_SHIFT 6
Jasper_lee 0:b16d94660a33 3353 #define TSI_GENCS_TSIEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 3354 #define TSI_GENCS_TSIEN_SHIFT 7
Jasper_lee 0:b16d94660a33 3355 #define TSI_GENCS_NSCN_MASK 0x1F00u
Jasper_lee 0:b16d94660a33 3356 #define TSI_GENCS_NSCN_SHIFT 8
Jasper_lee 0:b16d94660a33 3357 #define TSI_GENCS_NSCN(x) (((uint32_t)(((uint32_t)(x))<<TSI_GENCS_NSCN_SHIFT))&TSI_GENCS_NSCN_MASK)
Jasper_lee 0:b16d94660a33 3358 #define TSI_GENCS_PS_MASK 0xE000u
Jasper_lee 0:b16d94660a33 3359 #define TSI_GENCS_PS_SHIFT 13
Jasper_lee 0:b16d94660a33 3360 #define TSI_GENCS_PS(x) (((uint32_t)(((uint32_t)(x))<<TSI_GENCS_PS_SHIFT))&TSI_GENCS_PS_MASK)
Jasper_lee 0:b16d94660a33 3361 #define TSI_GENCS_EXTCHRG_MASK 0x70000u
Jasper_lee 0:b16d94660a33 3362 #define TSI_GENCS_EXTCHRG_SHIFT 16
Jasper_lee 0:b16d94660a33 3363 #define TSI_GENCS_EXTCHRG(x) (((uint32_t)(((uint32_t)(x))<<TSI_GENCS_EXTCHRG_SHIFT))&TSI_GENCS_EXTCHRG_MASK)
Jasper_lee 0:b16d94660a33 3364 #define TSI_GENCS_DVOLT_MASK 0x180000u
Jasper_lee 0:b16d94660a33 3365 #define TSI_GENCS_DVOLT_SHIFT 19
Jasper_lee 0:b16d94660a33 3366 #define TSI_GENCS_DVOLT(x) (((uint32_t)(((uint32_t)(x))<<TSI_GENCS_DVOLT_SHIFT))&TSI_GENCS_DVOLT_MASK)
Jasper_lee 0:b16d94660a33 3367 #define TSI_GENCS_REFCHRG_MASK 0xE00000u
Jasper_lee 0:b16d94660a33 3368 #define TSI_GENCS_REFCHRG_SHIFT 21
Jasper_lee 0:b16d94660a33 3369 #define TSI_GENCS_REFCHRG(x) (((uint32_t)(((uint32_t)(x))<<TSI_GENCS_REFCHRG_SHIFT))&TSI_GENCS_REFCHRG_MASK)
Jasper_lee 0:b16d94660a33 3370 #define TSI_GENCS_MODE_MASK 0xF000000u
Jasper_lee 0:b16d94660a33 3371 #define TSI_GENCS_MODE_SHIFT 24
Jasper_lee 0:b16d94660a33 3372 #define TSI_GENCS_MODE(x) (((uint32_t)(((uint32_t)(x))<<TSI_GENCS_MODE_SHIFT))&TSI_GENCS_MODE_MASK)
Jasper_lee 0:b16d94660a33 3373 #define TSI_GENCS_ESOR_MASK 0x10000000u
Jasper_lee 0:b16d94660a33 3374 #define TSI_GENCS_ESOR_SHIFT 28
Jasper_lee 0:b16d94660a33 3375 #define TSI_GENCS_OUTRGF_MASK 0x80000000u
Jasper_lee 0:b16d94660a33 3376 #define TSI_GENCS_OUTRGF_SHIFT 31
Jasper_lee 0:b16d94660a33 3377 /* DATA Bit Fields */
Jasper_lee 0:b16d94660a33 3378 #define TSI_DATA_TSICNT_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 3379 #define TSI_DATA_TSICNT_SHIFT 0
Jasper_lee 0:b16d94660a33 3380 #define TSI_DATA_TSICNT(x) (((uint32_t)(((uint32_t)(x))<<TSI_DATA_TSICNT_SHIFT))&TSI_DATA_TSICNT_MASK)
Jasper_lee 0:b16d94660a33 3381 #define TSI_DATA_SWTS_MASK 0x400000u
Jasper_lee 0:b16d94660a33 3382 #define TSI_DATA_SWTS_SHIFT 22
Jasper_lee 0:b16d94660a33 3383 #define TSI_DATA_DMAEN_MASK 0x800000u
Jasper_lee 0:b16d94660a33 3384 #define TSI_DATA_DMAEN_SHIFT 23
Jasper_lee 0:b16d94660a33 3385 #define TSI_DATA_TSICH_MASK 0xF0000000u
Jasper_lee 0:b16d94660a33 3386 #define TSI_DATA_TSICH_SHIFT 28
Jasper_lee 0:b16d94660a33 3387 #define TSI_DATA_TSICH(x) (((uint32_t)(((uint32_t)(x))<<TSI_DATA_TSICH_SHIFT))&TSI_DATA_TSICH_MASK)
Jasper_lee 0:b16d94660a33 3388 /* TSHD Bit Fields */
Jasper_lee 0:b16d94660a33 3389 #define TSI_TSHD_THRESL_MASK 0xFFFFu
Jasper_lee 0:b16d94660a33 3390 #define TSI_TSHD_THRESL_SHIFT 0
Jasper_lee 0:b16d94660a33 3391 #define TSI_TSHD_THRESL(x) (((uint32_t)(((uint32_t)(x))<<TSI_TSHD_THRESL_SHIFT))&TSI_TSHD_THRESL_MASK)
Jasper_lee 0:b16d94660a33 3392 #define TSI_TSHD_THRESH_MASK 0xFFFF0000u
Jasper_lee 0:b16d94660a33 3393 #define TSI_TSHD_THRESH_SHIFT 16
Jasper_lee 0:b16d94660a33 3394 #define TSI_TSHD_THRESH(x) (((uint32_t)(((uint32_t)(x))<<TSI_TSHD_THRESH_SHIFT))&TSI_TSHD_THRESH_MASK)
Jasper_lee 0:b16d94660a33 3395
Jasper_lee 0:b16d94660a33 3396 /**
Jasper_lee 0:b16d94660a33 3397 * @}
Jasper_lee 0:b16d94660a33 3398 */ /* end of group TSI_Register_Masks */
Jasper_lee 0:b16d94660a33 3399
Jasper_lee 0:b16d94660a33 3400
Jasper_lee 0:b16d94660a33 3401 /* TSI - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 3402 /** Peripheral TSI0 base address */
Jasper_lee 0:b16d94660a33 3403 #define TSI0_BASE (0x40045000u)
Jasper_lee 0:b16d94660a33 3404 /** Peripheral TSI0 base pointer */
Jasper_lee 0:b16d94660a33 3405 #define TSI0 ((TSI_Type *)TSI0_BASE)
Jasper_lee 0:b16d94660a33 3406 /** Array initializer of TSI peripheral base pointers */
Jasper_lee 0:b16d94660a33 3407 #define TSI_BASES { TSI0 }
Jasper_lee 0:b16d94660a33 3408
Jasper_lee 0:b16d94660a33 3409 /**
Jasper_lee 0:b16d94660a33 3410 * @}
Jasper_lee 0:b16d94660a33 3411 */ /* end of group TSI_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 3412
Jasper_lee 0:b16d94660a33 3413
Jasper_lee 0:b16d94660a33 3414 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3415 -- UART Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3416 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3417
Jasper_lee 0:b16d94660a33 3418 /**
Jasper_lee 0:b16d94660a33 3419 * @addtogroup UART_Peripheral_Access_Layer UART Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3420 * @{
Jasper_lee 0:b16d94660a33 3421 */
Jasper_lee 0:b16d94660a33 3422
Jasper_lee 0:b16d94660a33 3423 /** UART - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 3424 typedef struct {
Jasper_lee 0:b16d94660a33 3425 __IO uint8_t BDH; /**< UART Baud Rate Register: High, offset: 0x0 */
Jasper_lee 0:b16d94660a33 3426 __IO uint8_t BDL; /**< UART Baud Rate Register: Low, offset: 0x1 */
Jasper_lee 0:b16d94660a33 3427 __IO uint8_t C1; /**< UART Control Register 1, offset: 0x2 */
Jasper_lee 0:b16d94660a33 3428 __IO uint8_t C2; /**< UART Control Register 2, offset: 0x3 */
Jasper_lee 0:b16d94660a33 3429 __I uint8_t S1; /**< UART Status Register 1, offset: 0x4 */
Jasper_lee 0:b16d94660a33 3430 __IO uint8_t S2; /**< UART Status Register 2, offset: 0x5 */
Jasper_lee 0:b16d94660a33 3431 __IO uint8_t C3; /**< UART Control Register 3, offset: 0x6 */
Jasper_lee 0:b16d94660a33 3432 __IO uint8_t D; /**< UART Data Register, offset: 0x7 */
Jasper_lee 0:b16d94660a33 3433 __IO uint8_t C4; /**< UART Control Register 4, offset: 0x8 */
Jasper_lee 0:b16d94660a33 3434 } UART_Type;
Jasper_lee 0:b16d94660a33 3435
Jasper_lee 0:b16d94660a33 3436 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3437 -- UART Register Masks
Jasper_lee 0:b16d94660a33 3438 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3439
Jasper_lee 0:b16d94660a33 3440 /**
Jasper_lee 0:b16d94660a33 3441 * @addtogroup UART_Register_Masks UART Register Masks
Jasper_lee 0:b16d94660a33 3442 * @{
Jasper_lee 0:b16d94660a33 3443 */
Jasper_lee 0:b16d94660a33 3444
Jasper_lee 0:b16d94660a33 3445 /* BDH Bit Fields */
Jasper_lee 0:b16d94660a33 3446 #define UART_BDH_SBR_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 3447 #define UART_BDH_SBR_SHIFT 0
Jasper_lee 0:b16d94660a33 3448 #define UART_BDH_SBR(x) (((uint8_t)(((uint8_t)(x))<<UART_BDH_SBR_SHIFT))&UART_BDH_SBR_MASK)
Jasper_lee 0:b16d94660a33 3449 #define UART_BDH_SBNS_MASK 0x20u
Jasper_lee 0:b16d94660a33 3450 #define UART_BDH_SBNS_SHIFT 5
Jasper_lee 0:b16d94660a33 3451 #define UART_BDH_RXEDGIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 3452 #define UART_BDH_RXEDGIE_SHIFT 6
Jasper_lee 0:b16d94660a33 3453 #define UART_BDH_LBKDIE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3454 #define UART_BDH_LBKDIE_SHIFT 7
Jasper_lee 0:b16d94660a33 3455 /* BDL Bit Fields */
Jasper_lee 0:b16d94660a33 3456 #define UART_BDL_SBR_MASK 0xFFu
Jasper_lee 0:b16d94660a33 3457 #define UART_BDL_SBR_SHIFT 0
Jasper_lee 0:b16d94660a33 3458 #define UART_BDL_SBR(x) (((uint8_t)(((uint8_t)(x))<<UART_BDL_SBR_SHIFT))&UART_BDL_SBR_MASK)
Jasper_lee 0:b16d94660a33 3459 /* C1 Bit Fields */
Jasper_lee 0:b16d94660a33 3460 #define UART_C1_PT_MASK 0x1u
Jasper_lee 0:b16d94660a33 3461 #define UART_C1_PT_SHIFT 0
Jasper_lee 0:b16d94660a33 3462 #define UART_C1_PE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3463 #define UART_C1_PE_SHIFT 1
Jasper_lee 0:b16d94660a33 3464 #define UART_C1_ILT_MASK 0x4u
Jasper_lee 0:b16d94660a33 3465 #define UART_C1_ILT_SHIFT 2
Jasper_lee 0:b16d94660a33 3466 #define UART_C1_WAKE_MASK 0x8u
Jasper_lee 0:b16d94660a33 3467 #define UART_C1_WAKE_SHIFT 3
Jasper_lee 0:b16d94660a33 3468 #define UART_C1_M_MASK 0x10u
Jasper_lee 0:b16d94660a33 3469 #define UART_C1_M_SHIFT 4
Jasper_lee 0:b16d94660a33 3470 #define UART_C1_RSRC_MASK 0x20u
Jasper_lee 0:b16d94660a33 3471 #define UART_C1_RSRC_SHIFT 5
Jasper_lee 0:b16d94660a33 3472 #define UART_C1_UARTSWAI_MASK 0x40u
Jasper_lee 0:b16d94660a33 3473 #define UART_C1_UARTSWAI_SHIFT 6
Jasper_lee 0:b16d94660a33 3474 #define UART_C1_LOOPS_MASK 0x80u
Jasper_lee 0:b16d94660a33 3475 #define UART_C1_LOOPS_SHIFT 7
Jasper_lee 0:b16d94660a33 3476 /* C2 Bit Fields */
Jasper_lee 0:b16d94660a33 3477 #define UART_C2_SBK_MASK 0x1u
Jasper_lee 0:b16d94660a33 3478 #define UART_C2_SBK_SHIFT 0
Jasper_lee 0:b16d94660a33 3479 #define UART_C2_RWU_MASK 0x2u
Jasper_lee 0:b16d94660a33 3480 #define UART_C2_RWU_SHIFT 1
Jasper_lee 0:b16d94660a33 3481 #define UART_C2_RE_MASK 0x4u
Jasper_lee 0:b16d94660a33 3482 #define UART_C2_RE_SHIFT 2
Jasper_lee 0:b16d94660a33 3483 #define UART_C2_TE_MASK 0x8u
Jasper_lee 0:b16d94660a33 3484 #define UART_C2_TE_SHIFT 3
Jasper_lee 0:b16d94660a33 3485 #define UART_C2_ILIE_MASK 0x10u
Jasper_lee 0:b16d94660a33 3486 #define UART_C2_ILIE_SHIFT 4
Jasper_lee 0:b16d94660a33 3487 #define UART_C2_RIE_MASK 0x20u
Jasper_lee 0:b16d94660a33 3488 #define UART_C2_RIE_SHIFT 5
Jasper_lee 0:b16d94660a33 3489 #define UART_C2_TCIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 3490 #define UART_C2_TCIE_SHIFT 6
Jasper_lee 0:b16d94660a33 3491 #define UART_C2_TIE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3492 #define UART_C2_TIE_SHIFT 7
Jasper_lee 0:b16d94660a33 3493 /* S1 Bit Fields */
Jasper_lee 0:b16d94660a33 3494 #define UART_S1_PF_MASK 0x1u
Jasper_lee 0:b16d94660a33 3495 #define UART_S1_PF_SHIFT 0
Jasper_lee 0:b16d94660a33 3496 #define UART_S1_FE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3497 #define UART_S1_FE_SHIFT 1
Jasper_lee 0:b16d94660a33 3498 #define UART_S1_NF_MASK 0x4u
Jasper_lee 0:b16d94660a33 3499 #define UART_S1_NF_SHIFT 2
Jasper_lee 0:b16d94660a33 3500 #define UART_S1_OR_MASK 0x8u
Jasper_lee 0:b16d94660a33 3501 #define UART_S1_OR_SHIFT 3
Jasper_lee 0:b16d94660a33 3502 #define UART_S1_IDLE_MASK 0x10u
Jasper_lee 0:b16d94660a33 3503 #define UART_S1_IDLE_SHIFT 4
Jasper_lee 0:b16d94660a33 3504 #define UART_S1_RDRF_MASK 0x20u
Jasper_lee 0:b16d94660a33 3505 #define UART_S1_RDRF_SHIFT 5
Jasper_lee 0:b16d94660a33 3506 #define UART_S1_TC_MASK 0x40u
Jasper_lee 0:b16d94660a33 3507 #define UART_S1_TC_SHIFT 6
Jasper_lee 0:b16d94660a33 3508 #define UART_S1_TDRE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3509 #define UART_S1_TDRE_SHIFT 7
Jasper_lee 0:b16d94660a33 3510 /* S2 Bit Fields */
Jasper_lee 0:b16d94660a33 3511 #define UART_S2_RAF_MASK 0x1u
Jasper_lee 0:b16d94660a33 3512 #define UART_S2_RAF_SHIFT 0
Jasper_lee 0:b16d94660a33 3513 #define UART_S2_LBKDE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3514 #define UART_S2_LBKDE_SHIFT 1
Jasper_lee 0:b16d94660a33 3515 #define UART_S2_BRK13_MASK 0x4u
Jasper_lee 0:b16d94660a33 3516 #define UART_S2_BRK13_SHIFT 2
Jasper_lee 0:b16d94660a33 3517 #define UART_S2_RWUID_MASK 0x8u
Jasper_lee 0:b16d94660a33 3518 #define UART_S2_RWUID_SHIFT 3
Jasper_lee 0:b16d94660a33 3519 #define UART_S2_RXINV_MASK 0x10u
Jasper_lee 0:b16d94660a33 3520 #define UART_S2_RXINV_SHIFT 4
Jasper_lee 0:b16d94660a33 3521 #define UART_S2_RXEDGIF_MASK 0x40u
Jasper_lee 0:b16d94660a33 3522 #define UART_S2_RXEDGIF_SHIFT 6
Jasper_lee 0:b16d94660a33 3523 #define UART_S2_LBKDIF_MASK 0x80u
Jasper_lee 0:b16d94660a33 3524 #define UART_S2_LBKDIF_SHIFT 7
Jasper_lee 0:b16d94660a33 3525 /* C3 Bit Fields */
Jasper_lee 0:b16d94660a33 3526 #define UART_C3_PEIE_MASK 0x1u
Jasper_lee 0:b16d94660a33 3527 #define UART_C3_PEIE_SHIFT 0
Jasper_lee 0:b16d94660a33 3528 #define UART_C3_FEIE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3529 #define UART_C3_FEIE_SHIFT 1
Jasper_lee 0:b16d94660a33 3530 #define UART_C3_NEIE_MASK 0x4u
Jasper_lee 0:b16d94660a33 3531 #define UART_C3_NEIE_SHIFT 2
Jasper_lee 0:b16d94660a33 3532 #define UART_C3_ORIE_MASK 0x8u
Jasper_lee 0:b16d94660a33 3533 #define UART_C3_ORIE_SHIFT 3
Jasper_lee 0:b16d94660a33 3534 #define UART_C3_TXINV_MASK 0x10u
Jasper_lee 0:b16d94660a33 3535 #define UART_C3_TXINV_SHIFT 4
Jasper_lee 0:b16d94660a33 3536 #define UART_C3_TXDIR_MASK 0x20u
Jasper_lee 0:b16d94660a33 3537 #define UART_C3_TXDIR_SHIFT 5
Jasper_lee 0:b16d94660a33 3538 #define UART_C3_T8_MASK 0x40u
Jasper_lee 0:b16d94660a33 3539 #define UART_C3_T8_SHIFT 6
Jasper_lee 0:b16d94660a33 3540 #define UART_C3_R8_MASK 0x80u
Jasper_lee 0:b16d94660a33 3541 #define UART_C3_R8_SHIFT 7
Jasper_lee 0:b16d94660a33 3542 /* D Bit Fields */
Jasper_lee 0:b16d94660a33 3543 #define UART_D_R0T0_MASK 0x1u
Jasper_lee 0:b16d94660a33 3544 #define UART_D_R0T0_SHIFT 0
Jasper_lee 0:b16d94660a33 3545 #define UART_D_R1T1_MASK 0x2u
Jasper_lee 0:b16d94660a33 3546 #define UART_D_R1T1_SHIFT 1
Jasper_lee 0:b16d94660a33 3547 #define UART_D_R2T2_MASK 0x4u
Jasper_lee 0:b16d94660a33 3548 #define UART_D_R2T2_SHIFT 2
Jasper_lee 0:b16d94660a33 3549 #define UART_D_R3T3_MASK 0x8u
Jasper_lee 0:b16d94660a33 3550 #define UART_D_R3T3_SHIFT 3
Jasper_lee 0:b16d94660a33 3551 #define UART_D_R4T4_MASK 0x10u
Jasper_lee 0:b16d94660a33 3552 #define UART_D_R4T4_SHIFT 4
Jasper_lee 0:b16d94660a33 3553 #define UART_D_R5T5_MASK 0x20u
Jasper_lee 0:b16d94660a33 3554 #define UART_D_R5T5_SHIFT 5
Jasper_lee 0:b16d94660a33 3555 #define UART_D_R6T6_MASK 0x40u
Jasper_lee 0:b16d94660a33 3556 #define UART_D_R6T6_SHIFT 6
Jasper_lee 0:b16d94660a33 3557 #define UART_D_R7T7_MASK 0x80u
Jasper_lee 0:b16d94660a33 3558 #define UART_D_R7T7_SHIFT 7
Jasper_lee 0:b16d94660a33 3559 /* C4 Bit Fields */
Jasper_lee 0:b16d94660a33 3560 #define UART_C4_LBKDDMAS_MASK 0x8u
Jasper_lee 0:b16d94660a33 3561 #define UART_C4_LBKDDMAS_SHIFT 3
Jasper_lee 0:b16d94660a33 3562 #define UART_C4_ILDMAS_MASK 0x10u
Jasper_lee 0:b16d94660a33 3563 #define UART_C4_ILDMAS_SHIFT 4
Jasper_lee 0:b16d94660a33 3564 #define UART_C4_RDMAS_MASK 0x20u
Jasper_lee 0:b16d94660a33 3565 #define UART_C4_RDMAS_SHIFT 5
Jasper_lee 0:b16d94660a33 3566 #define UART_C4_TCDMAS_MASK 0x40u
Jasper_lee 0:b16d94660a33 3567 #define UART_C4_TCDMAS_SHIFT 6
Jasper_lee 0:b16d94660a33 3568 #define UART_C4_TDMAS_MASK 0x80u
Jasper_lee 0:b16d94660a33 3569 #define UART_C4_TDMAS_SHIFT 7
Jasper_lee 0:b16d94660a33 3570
Jasper_lee 0:b16d94660a33 3571 /**
Jasper_lee 0:b16d94660a33 3572 * @}
Jasper_lee 0:b16d94660a33 3573 */ /* end of group UART_Register_Masks */
Jasper_lee 0:b16d94660a33 3574
Jasper_lee 0:b16d94660a33 3575
Jasper_lee 0:b16d94660a33 3576 /* UART - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 3577 /** Peripheral UART1 base address */
Jasper_lee 0:b16d94660a33 3578 #define UART1_BASE (0x4006B000u)
Jasper_lee 0:b16d94660a33 3579 /** Peripheral UART1 base pointer */
Jasper_lee 0:b16d94660a33 3580 #define UART1 ((UART_Type *)UART1_BASE)
Jasper_lee 0:b16d94660a33 3581 /** Peripheral UART2 base address */
Jasper_lee 0:b16d94660a33 3582 #define UART2_BASE (0x4006C000u)
Jasper_lee 0:b16d94660a33 3583 /** Peripheral UART2 base pointer */
Jasper_lee 0:b16d94660a33 3584 #define UART2 ((UART_Type *)UART2_BASE)
Jasper_lee 0:b16d94660a33 3585 /** Array initializer of UART peripheral base pointers */
Jasper_lee 0:b16d94660a33 3586 #define UART_BASES { UART1, UART2 }
Jasper_lee 0:b16d94660a33 3587
Jasper_lee 0:b16d94660a33 3588 /**
Jasper_lee 0:b16d94660a33 3589 * @}
Jasper_lee 0:b16d94660a33 3590 */ /* end of group UART_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 3591
Jasper_lee 0:b16d94660a33 3592
Jasper_lee 0:b16d94660a33 3593 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3594 -- UARTLP Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3595 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3596
Jasper_lee 0:b16d94660a33 3597 /**
Jasper_lee 0:b16d94660a33 3598 * @addtogroup UARTLP_Peripheral_Access_Layer UARTLP Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3599 * @{
Jasper_lee 0:b16d94660a33 3600 */
Jasper_lee 0:b16d94660a33 3601
Jasper_lee 0:b16d94660a33 3602 /** UARTLP - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 3603 typedef struct {
Jasper_lee 0:b16d94660a33 3604 __IO uint8_t BDH; /**< UART Baud Rate Register High, offset: 0x0 */
Jasper_lee 0:b16d94660a33 3605 __IO uint8_t BDL; /**< UART Baud Rate Register Low, offset: 0x1 */
Jasper_lee 0:b16d94660a33 3606 __IO uint8_t C1; /**< UART Control Register 1, offset: 0x2 */
Jasper_lee 0:b16d94660a33 3607 __IO uint8_t C2; /**< UART Control Register 2, offset: 0x3 */
Jasper_lee 0:b16d94660a33 3608 __IO uint8_t S1; /**< UART Status Register 1, offset: 0x4 */
Jasper_lee 0:b16d94660a33 3609 __IO uint8_t S2; /**< UART Status Register 2, offset: 0x5 */
Jasper_lee 0:b16d94660a33 3610 __IO uint8_t C3; /**< UART Control Register 3, offset: 0x6 */
Jasper_lee 0:b16d94660a33 3611 __IO uint8_t D; /**< UART Data Register, offset: 0x7 */
Jasper_lee 0:b16d94660a33 3612 __IO uint8_t MA1; /**< UART Match Address Registers 1, offset: 0x8 */
Jasper_lee 0:b16d94660a33 3613 __IO uint8_t MA2; /**< UART Match Address Registers 2, offset: 0x9 */
Jasper_lee 0:b16d94660a33 3614 __IO uint8_t C4; /**< UART Control Register 4, offset: 0xA */
Jasper_lee 0:b16d94660a33 3615 __IO uint8_t C5; /**< UART Control Register 5, offset: 0xB */
Jasper_lee 0:b16d94660a33 3616 } UARTLP_Type;
Jasper_lee 0:b16d94660a33 3617
Jasper_lee 0:b16d94660a33 3618 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3619 -- UARTLP Register Masks
Jasper_lee 0:b16d94660a33 3620 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3621
Jasper_lee 0:b16d94660a33 3622 /**
Jasper_lee 0:b16d94660a33 3623 * @addtogroup UARTLP_Register_Masks UARTLP Register Masks
Jasper_lee 0:b16d94660a33 3624 * @{
Jasper_lee 0:b16d94660a33 3625 */
Jasper_lee 0:b16d94660a33 3626
Jasper_lee 0:b16d94660a33 3627 /* BDH Bit Fields */
Jasper_lee 0:b16d94660a33 3628 #define UARTLP_BDH_SBR_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 3629 #define UARTLP_BDH_SBR_SHIFT 0
Jasper_lee 0:b16d94660a33 3630 #define UARTLP_BDH_SBR(x) (((uint8_t)(((uint8_t)(x))<<UARTLP_BDH_SBR_SHIFT))&UARTLP_BDH_SBR_MASK)
Jasper_lee 0:b16d94660a33 3631 #define UARTLP_BDH_SBNS_MASK 0x20u
Jasper_lee 0:b16d94660a33 3632 #define UARTLP_BDH_SBNS_SHIFT 5
Jasper_lee 0:b16d94660a33 3633 #define UARTLP_BDH_RXEDGIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 3634 #define UARTLP_BDH_RXEDGIE_SHIFT 6
Jasper_lee 0:b16d94660a33 3635 #define UARTLP_BDH_LBKDIE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3636 #define UARTLP_BDH_LBKDIE_SHIFT 7
Jasper_lee 0:b16d94660a33 3637 /* BDL Bit Fields */
Jasper_lee 0:b16d94660a33 3638 #define UARTLP_BDL_SBR_MASK 0xFFu
Jasper_lee 0:b16d94660a33 3639 #define UARTLP_BDL_SBR_SHIFT 0
Jasper_lee 0:b16d94660a33 3640 #define UARTLP_BDL_SBR(x) (((uint8_t)(((uint8_t)(x))<<UARTLP_BDL_SBR_SHIFT))&UARTLP_BDL_SBR_MASK)
Jasper_lee 0:b16d94660a33 3641 /* C1 Bit Fields */
Jasper_lee 0:b16d94660a33 3642 #define UARTLP_C1_PT_MASK 0x1u
Jasper_lee 0:b16d94660a33 3643 #define UARTLP_C1_PT_SHIFT 0
Jasper_lee 0:b16d94660a33 3644 #define UARTLP_C1_PE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3645 #define UARTLP_C1_PE_SHIFT 1
Jasper_lee 0:b16d94660a33 3646 #define UARTLP_C1_ILT_MASK 0x4u
Jasper_lee 0:b16d94660a33 3647 #define UARTLP_C1_ILT_SHIFT 2
Jasper_lee 0:b16d94660a33 3648 #define UARTLP_C1_WAKE_MASK 0x8u
Jasper_lee 0:b16d94660a33 3649 #define UARTLP_C1_WAKE_SHIFT 3
Jasper_lee 0:b16d94660a33 3650 #define UARTLP_C1_M_MASK 0x10u
Jasper_lee 0:b16d94660a33 3651 #define UARTLP_C1_M_SHIFT 4
Jasper_lee 0:b16d94660a33 3652 #define UARTLP_C1_RSRC_MASK 0x20u
Jasper_lee 0:b16d94660a33 3653 #define UARTLP_C1_RSRC_SHIFT 5
Jasper_lee 0:b16d94660a33 3654 #define UARTLP_C1_DOZEEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 3655 #define UARTLP_C1_DOZEEN_SHIFT 6
Jasper_lee 0:b16d94660a33 3656 #define UARTLP_C1_LOOPS_MASK 0x80u
Jasper_lee 0:b16d94660a33 3657 #define UARTLP_C1_LOOPS_SHIFT 7
Jasper_lee 0:b16d94660a33 3658 /* C2 Bit Fields */
Jasper_lee 0:b16d94660a33 3659 #define UARTLP_C2_SBK_MASK 0x1u
Jasper_lee 0:b16d94660a33 3660 #define UARTLP_C2_SBK_SHIFT 0
Jasper_lee 0:b16d94660a33 3661 #define UARTLP_C2_RWU_MASK 0x2u
Jasper_lee 0:b16d94660a33 3662 #define UARTLP_C2_RWU_SHIFT 1
Jasper_lee 0:b16d94660a33 3663 #define UARTLP_C2_RE_MASK 0x4u
Jasper_lee 0:b16d94660a33 3664 #define UARTLP_C2_RE_SHIFT 2
Jasper_lee 0:b16d94660a33 3665 #define UARTLP_C2_TE_MASK 0x8u
Jasper_lee 0:b16d94660a33 3666 #define UARTLP_C2_TE_SHIFT 3
Jasper_lee 0:b16d94660a33 3667 #define UARTLP_C2_ILIE_MASK 0x10u
Jasper_lee 0:b16d94660a33 3668 #define UARTLP_C2_ILIE_SHIFT 4
Jasper_lee 0:b16d94660a33 3669 #define UARTLP_C2_RIE_MASK 0x20u
Jasper_lee 0:b16d94660a33 3670 #define UARTLP_C2_RIE_SHIFT 5
Jasper_lee 0:b16d94660a33 3671 #define UARTLP_C2_TCIE_MASK 0x40u
Jasper_lee 0:b16d94660a33 3672 #define UARTLP_C2_TCIE_SHIFT 6
Jasper_lee 0:b16d94660a33 3673 #define UARTLP_C2_TIE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3674 #define UARTLP_C2_TIE_SHIFT 7
Jasper_lee 0:b16d94660a33 3675 /* S1 Bit Fields */
Jasper_lee 0:b16d94660a33 3676 #define UARTLP_S1_PF_MASK 0x1u
Jasper_lee 0:b16d94660a33 3677 #define UARTLP_S1_PF_SHIFT 0
Jasper_lee 0:b16d94660a33 3678 #define UARTLP_S1_FE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3679 #define UARTLP_S1_FE_SHIFT 1
Jasper_lee 0:b16d94660a33 3680 #define UARTLP_S1_NF_MASK 0x4u
Jasper_lee 0:b16d94660a33 3681 #define UARTLP_S1_NF_SHIFT 2
Jasper_lee 0:b16d94660a33 3682 #define UARTLP_S1_OR_MASK 0x8u
Jasper_lee 0:b16d94660a33 3683 #define UARTLP_S1_OR_SHIFT 3
Jasper_lee 0:b16d94660a33 3684 #define UARTLP_S1_IDLE_MASK 0x10u
Jasper_lee 0:b16d94660a33 3685 #define UARTLP_S1_IDLE_SHIFT 4
Jasper_lee 0:b16d94660a33 3686 #define UARTLP_S1_RDRF_MASK 0x20u
Jasper_lee 0:b16d94660a33 3687 #define UARTLP_S1_RDRF_SHIFT 5
Jasper_lee 0:b16d94660a33 3688 #define UARTLP_S1_TC_MASK 0x40u
Jasper_lee 0:b16d94660a33 3689 #define UARTLP_S1_TC_SHIFT 6
Jasper_lee 0:b16d94660a33 3690 #define UARTLP_S1_TDRE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3691 #define UARTLP_S1_TDRE_SHIFT 7
Jasper_lee 0:b16d94660a33 3692 /* S2 Bit Fields */
Jasper_lee 0:b16d94660a33 3693 #define UARTLP_S2_RAF_MASK 0x1u
Jasper_lee 0:b16d94660a33 3694 #define UARTLP_S2_RAF_SHIFT 0
Jasper_lee 0:b16d94660a33 3695 #define UARTLP_S2_LBKDE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3696 #define UARTLP_S2_LBKDE_SHIFT 1
Jasper_lee 0:b16d94660a33 3697 #define UARTLP_S2_BRK13_MASK 0x4u
Jasper_lee 0:b16d94660a33 3698 #define UARTLP_S2_BRK13_SHIFT 2
Jasper_lee 0:b16d94660a33 3699 #define UARTLP_S2_RWUID_MASK 0x8u
Jasper_lee 0:b16d94660a33 3700 #define UARTLP_S2_RWUID_SHIFT 3
Jasper_lee 0:b16d94660a33 3701 #define UARTLP_S2_RXINV_MASK 0x10u
Jasper_lee 0:b16d94660a33 3702 #define UARTLP_S2_RXINV_SHIFT 4
Jasper_lee 0:b16d94660a33 3703 #define UARTLP_S2_MSBF_MASK 0x20u
Jasper_lee 0:b16d94660a33 3704 #define UARTLP_S2_MSBF_SHIFT 5
Jasper_lee 0:b16d94660a33 3705 #define UARTLP_S2_RXEDGIF_MASK 0x40u
Jasper_lee 0:b16d94660a33 3706 #define UARTLP_S2_RXEDGIF_SHIFT 6
Jasper_lee 0:b16d94660a33 3707 #define UARTLP_S2_LBKDIF_MASK 0x80u
Jasper_lee 0:b16d94660a33 3708 #define UARTLP_S2_LBKDIF_SHIFT 7
Jasper_lee 0:b16d94660a33 3709 /* C3 Bit Fields */
Jasper_lee 0:b16d94660a33 3710 #define UARTLP_C3_PEIE_MASK 0x1u
Jasper_lee 0:b16d94660a33 3711 #define UARTLP_C3_PEIE_SHIFT 0
Jasper_lee 0:b16d94660a33 3712 #define UARTLP_C3_FEIE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3713 #define UARTLP_C3_FEIE_SHIFT 1
Jasper_lee 0:b16d94660a33 3714 #define UARTLP_C3_NEIE_MASK 0x4u
Jasper_lee 0:b16d94660a33 3715 #define UARTLP_C3_NEIE_SHIFT 2
Jasper_lee 0:b16d94660a33 3716 #define UARTLP_C3_ORIE_MASK 0x8u
Jasper_lee 0:b16d94660a33 3717 #define UARTLP_C3_ORIE_SHIFT 3
Jasper_lee 0:b16d94660a33 3718 #define UARTLP_C3_TXINV_MASK 0x10u
Jasper_lee 0:b16d94660a33 3719 #define UARTLP_C3_TXINV_SHIFT 4
Jasper_lee 0:b16d94660a33 3720 #define UARTLP_C3_TXDIR_MASK 0x20u
Jasper_lee 0:b16d94660a33 3721 #define UARTLP_C3_TXDIR_SHIFT 5
Jasper_lee 0:b16d94660a33 3722 #define UARTLP_C3_R9T8_MASK 0x40u
Jasper_lee 0:b16d94660a33 3723 #define UARTLP_C3_R9T8_SHIFT 6
Jasper_lee 0:b16d94660a33 3724 #define UARTLP_C3_R8T9_MASK 0x80u
Jasper_lee 0:b16d94660a33 3725 #define UARTLP_C3_R8T9_SHIFT 7
Jasper_lee 0:b16d94660a33 3726 /* D Bit Fields */
Jasper_lee 0:b16d94660a33 3727 #define UARTLP_D_R0T0_MASK 0x1u
Jasper_lee 0:b16d94660a33 3728 #define UARTLP_D_R0T0_SHIFT 0
Jasper_lee 0:b16d94660a33 3729 #define UARTLP_D_R1T1_MASK 0x2u
Jasper_lee 0:b16d94660a33 3730 #define UARTLP_D_R1T1_SHIFT 1
Jasper_lee 0:b16d94660a33 3731 #define UARTLP_D_R2T2_MASK 0x4u
Jasper_lee 0:b16d94660a33 3732 #define UARTLP_D_R2T2_SHIFT 2
Jasper_lee 0:b16d94660a33 3733 #define UARTLP_D_R3T3_MASK 0x8u
Jasper_lee 0:b16d94660a33 3734 #define UARTLP_D_R3T3_SHIFT 3
Jasper_lee 0:b16d94660a33 3735 #define UARTLP_D_R4T4_MASK 0x10u
Jasper_lee 0:b16d94660a33 3736 #define UARTLP_D_R4T4_SHIFT 4
Jasper_lee 0:b16d94660a33 3737 #define UARTLP_D_R5T5_MASK 0x20u
Jasper_lee 0:b16d94660a33 3738 #define UARTLP_D_R5T5_SHIFT 5
Jasper_lee 0:b16d94660a33 3739 #define UARTLP_D_R6T6_MASK 0x40u
Jasper_lee 0:b16d94660a33 3740 #define UARTLP_D_R6T6_SHIFT 6
Jasper_lee 0:b16d94660a33 3741 #define UARTLP_D_R7T7_MASK 0x80u
Jasper_lee 0:b16d94660a33 3742 #define UARTLP_D_R7T7_SHIFT 7
Jasper_lee 0:b16d94660a33 3743 /* MA1 Bit Fields */
Jasper_lee 0:b16d94660a33 3744 #define UARTLP_MA1_MA_MASK 0xFFu
Jasper_lee 0:b16d94660a33 3745 #define UARTLP_MA1_MA_SHIFT 0
Jasper_lee 0:b16d94660a33 3746 #define UARTLP_MA1_MA(x) (((uint8_t)(((uint8_t)(x))<<UARTLP_MA1_MA_SHIFT))&UARTLP_MA1_MA_MASK)
Jasper_lee 0:b16d94660a33 3747 /* MA2 Bit Fields */
Jasper_lee 0:b16d94660a33 3748 #define UARTLP_MA2_MA_MASK 0xFFu
Jasper_lee 0:b16d94660a33 3749 #define UARTLP_MA2_MA_SHIFT 0
Jasper_lee 0:b16d94660a33 3750 #define UARTLP_MA2_MA(x) (((uint8_t)(((uint8_t)(x))<<UARTLP_MA2_MA_SHIFT))&UARTLP_MA2_MA_MASK)
Jasper_lee 0:b16d94660a33 3751 /* C4 Bit Fields */
Jasper_lee 0:b16d94660a33 3752 #define UARTLP_C4_OSR_MASK 0x1Fu
Jasper_lee 0:b16d94660a33 3753 #define UARTLP_C4_OSR_SHIFT 0
Jasper_lee 0:b16d94660a33 3754 #define UARTLP_C4_OSR(x) (((uint8_t)(((uint8_t)(x))<<UARTLP_C4_OSR_SHIFT))&UARTLP_C4_OSR_MASK)
Jasper_lee 0:b16d94660a33 3755 #define UARTLP_C4_M10_MASK 0x20u
Jasper_lee 0:b16d94660a33 3756 #define UARTLP_C4_M10_SHIFT 5
Jasper_lee 0:b16d94660a33 3757 #define UARTLP_C4_MAEN2_MASK 0x40u
Jasper_lee 0:b16d94660a33 3758 #define UARTLP_C4_MAEN2_SHIFT 6
Jasper_lee 0:b16d94660a33 3759 #define UARTLP_C4_MAEN1_MASK 0x80u
Jasper_lee 0:b16d94660a33 3760 #define UARTLP_C4_MAEN1_SHIFT 7
Jasper_lee 0:b16d94660a33 3761 /* C5 Bit Fields */
Jasper_lee 0:b16d94660a33 3762 #define UARTLP_C5_RESYNCDIS_MASK 0x1u
Jasper_lee 0:b16d94660a33 3763 #define UARTLP_C5_RESYNCDIS_SHIFT 0
Jasper_lee 0:b16d94660a33 3764 #define UARTLP_C5_BOTHEDGE_MASK 0x2u
Jasper_lee 0:b16d94660a33 3765 #define UARTLP_C5_BOTHEDGE_SHIFT 1
Jasper_lee 0:b16d94660a33 3766 #define UARTLP_C5_RDMAE_MASK 0x20u
Jasper_lee 0:b16d94660a33 3767 #define UARTLP_C5_RDMAE_SHIFT 5
Jasper_lee 0:b16d94660a33 3768 #define UARTLP_C5_TDMAE_MASK 0x80u
Jasper_lee 0:b16d94660a33 3769 #define UARTLP_C5_TDMAE_SHIFT 7
Jasper_lee 0:b16d94660a33 3770
Jasper_lee 0:b16d94660a33 3771 /**
Jasper_lee 0:b16d94660a33 3772 * @}
Jasper_lee 0:b16d94660a33 3773 */ /* end of group UARTLP_Register_Masks */
Jasper_lee 0:b16d94660a33 3774
Jasper_lee 0:b16d94660a33 3775
Jasper_lee 0:b16d94660a33 3776 /* UARTLP - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 3777 /** Peripheral UART0 base address */
Jasper_lee 0:b16d94660a33 3778 #define UART0_BASE (0x4006A000u)
Jasper_lee 0:b16d94660a33 3779 /** Peripheral UART0 base pointer */
Jasper_lee 0:b16d94660a33 3780 #define UART0 ((UARTLP_Type *)UART0_BASE)
Jasper_lee 0:b16d94660a33 3781 /** Array initializer of UARTLP peripheral base pointers */
Jasper_lee 0:b16d94660a33 3782 #define UARTLP_BASES { UART0 }
Jasper_lee 0:b16d94660a33 3783
Jasper_lee 0:b16d94660a33 3784 /**
Jasper_lee 0:b16d94660a33 3785 * @}
Jasper_lee 0:b16d94660a33 3786 */ /* end of group UARTLP_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 3787
Jasper_lee 0:b16d94660a33 3788
Jasper_lee 0:b16d94660a33 3789 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3790 -- USB Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3791 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3792
Jasper_lee 0:b16d94660a33 3793 /**
Jasper_lee 0:b16d94660a33 3794 * @addtogroup USB_Peripheral_Access_Layer USB Peripheral Access Layer
Jasper_lee 0:b16d94660a33 3795 * @{
Jasper_lee 0:b16d94660a33 3796 */
Jasper_lee 0:b16d94660a33 3797
Jasper_lee 0:b16d94660a33 3798 /** USB - Register Layout Typedef */
Jasper_lee 0:b16d94660a33 3799 typedef struct {
Jasper_lee 0:b16d94660a33 3800 __I uint8_t PERID; /**< Peripheral ID register, offset: 0x0 */
Jasper_lee 0:b16d94660a33 3801 uint8_t RESERVED_0[3];
Jasper_lee 0:b16d94660a33 3802 __I uint8_t IDCOMP; /**< Peripheral ID Complement register, offset: 0x4 */
Jasper_lee 0:b16d94660a33 3803 uint8_t RESERVED_1[3];
Jasper_lee 0:b16d94660a33 3804 __I uint8_t REV; /**< Peripheral Revision register, offset: 0x8 */
Jasper_lee 0:b16d94660a33 3805 uint8_t RESERVED_2[3];
Jasper_lee 0:b16d94660a33 3806 __I uint8_t ADDINFO; /**< Peripheral Additional Info register, offset: 0xC */
Jasper_lee 0:b16d94660a33 3807 uint8_t RESERVED_3[3];
Jasper_lee 0:b16d94660a33 3808 __IO uint8_t OTGISTAT; /**< OTG Interrupt Status register, offset: 0x10 */
Jasper_lee 0:b16d94660a33 3809 uint8_t RESERVED_4[3];
Jasper_lee 0:b16d94660a33 3810 __IO uint8_t OTGICR; /**< OTG Interrupt Control Register, offset: 0x14 */
Jasper_lee 0:b16d94660a33 3811 uint8_t RESERVED_5[3];
Jasper_lee 0:b16d94660a33 3812 __IO uint8_t OTGSTAT; /**< OTG Status register, offset: 0x18 */
Jasper_lee 0:b16d94660a33 3813 uint8_t RESERVED_6[3];
Jasper_lee 0:b16d94660a33 3814 __IO uint8_t OTGCTL; /**< OTG Control register, offset: 0x1C */
Jasper_lee 0:b16d94660a33 3815 uint8_t RESERVED_7[99];
Jasper_lee 0:b16d94660a33 3816 __IO uint8_t ISTAT; /**< Interrupt Status register, offset: 0x80 */
Jasper_lee 0:b16d94660a33 3817 uint8_t RESERVED_8[3];
Jasper_lee 0:b16d94660a33 3818 __IO uint8_t INTEN; /**< Interrupt Enable register, offset: 0x84 */
Jasper_lee 0:b16d94660a33 3819 uint8_t RESERVED_9[3];
Jasper_lee 0:b16d94660a33 3820 __IO uint8_t ERRSTAT; /**< Error Interrupt Status register, offset: 0x88 */
Jasper_lee 0:b16d94660a33 3821 uint8_t RESERVED_10[3];
Jasper_lee 0:b16d94660a33 3822 __IO uint8_t ERREN; /**< Error Interrupt Enable register, offset: 0x8C */
Jasper_lee 0:b16d94660a33 3823 uint8_t RESERVED_11[3];
Jasper_lee 0:b16d94660a33 3824 __I uint8_t STAT; /**< Status register, offset: 0x90 */
Jasper_lee 0:b16d94660a33 3825 uint8_t RESERVED_12[3];
Jasper_lee 0:b16d94660a33 3826 __IO uint8_t CTL; /**< Control register, offset: 0x94 */
Jasper_lee 0:b16d94660a33 3827 uint8_t RESERVED_13[3];
Jasper_lee 0:b16d94660a33 3828 __IO uint8_t ADDR; /**< Address register, offset: 0x98 */
Jasper_lee 0:b16d94660a33 3829 uint8_t RESERVED_14[3];
Jasper_lee 0:b16d94660a33 3830 __IO uint8_t BDTPAGE1; /**< BDT Page Register 1, offset: 0x9C */
Jasper_lee 0:b16d94660a33 3831 uint8_t RESERVED_15[3];
Jasper_lee 0:b16d94660a33 3832 __IO uint8_t FRMNUML; /**< Frame Number Register Low, offset: 0xA0 */
Jasper_lee 0:b16d94660a33 3833 uint8_t RESERVED_16[3];
Jasper_lee 0:b16d94660a33 3834 __IO uint8_t FRMNUMH; /**< Frame Number Register High, offset: 0xA4 */
Jasper_lee 0:b16d94660a33 3835 uint8_t RESERVED_17[3];
Jasper_lee 0:b16d94660a33 3836 __IO uint8_t TOKEN; /**< Token register, offset: 0xA8 */
Jasper_lee 0:b16d94660a33 3837 uint8_t RESERVED_18[3];
Jasper_lee 0:b16d94660a33 3838 __IO uint8_t SOFTHLD; /**< SOF Threshold Register, offset: 0xAC */
Jasper_lee 0:b16d94660a33 3839 uint8_t RESERVED_19[3];
Jasper_lee 0:b16d94660a33 3840 __IO uint8_t BDTPAGE2; /**< BDT Page Register 2, offset: 0xB0 */
Jasper_lee 0:b16d94660a33 3841 uint8_t RESERVED_20[3];
Jasper_lee 0:b16d94660a33 3842 __IO uint8_t BDTPAGE3; /**< BDT Page Register 3, offset: 0xB4 */
Jasper_lee 0:b16d94660a33 3843 uint8_t RESERVED_21[11];
Jasper_lee 0:b16d94660a33 3844 struct { /* offset: 0xC0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 3845 __IO uint8_t ENDPT; /**< Endpoint Control register, array offset: 0xC0, array step: 0x4 */
Jasper_lee 0:b16d94660a33 3846 uint8_t RESERVED_0[3];
Jasper_lee 0:b16d94660a33 3847 } ENDPOINT[16];
Jasper_lee 0:b16d94660a33 3848 __IO uint8_t USBCTRL; /**< USB Control register, offset: 0x100 */
Jasper_lee 0:b16d94660a33 3849 uint8_t RESERVED_22[3];
Jasper_lee 0:b16d94660a33 3850 __I uint8_t OBSERVE; /**< USB OTG Observe register, offset: 0x104 */
Jasper_lee 0:b16d94660a33 3851 uint8_t RESERVED_23[3];
Jasper_lee 0:b16d94660a33 3852 __IO uint8_t CONTROL; /**< USB OTG Control register, offset: 0x108 */
Jasper_lee 0:b16d94660a33 3853 uint8_t RESERVED_24[3];
Jasper_lee 0:b16d94660a33 3854 __IO uint8_t USBTRC0; /**< USB Transceiver Control Register 0, offset: 0x10C */
Jasper_lee 0:b16d94660a33 3855 } USB_Type;
Jasper_lee 0:b16d94660a33 3856
Jasper_lee 0:b16d94660a33 3857 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 3858 -- USB Register Masks
Jasper_lee 0:b16d94660a33 3859 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 3860
Jasper_lee 0:b16d94660a33 3861 /**
Jasper_lee 0:b16d94660a33 3862 * @addtogroup USB_Register_Masks USB Register Masks
Jasper_lee 0:b16d94660a33 3863 * @{
Jasper_lee 0:b16d94660a33 3864 */
Jasper_lee 0:b16d94660a33 3865
Jasper_lee 0:b16d94660a33 3866 /* PERID Bit Fields */
Jasper_lee 0:b16d94660a33 3867 #define USB_PERID_ID_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 3868 #define USB_PERID_ID_SHIFT 0
Jasper_lee 0:b16d94660a33 3869 #define USB_PERID_ID(x) (((uint8_t)(((uint8_t)(x))<<USB_PERID_ID_SHIFT))&USB_PERID_ID_MASK)
Jasper_lee 0:b16d94660a33 3870 /* IDCOMP Bit Fields */
Jasper_lee 0:b16d94660a33 3871 #define USB_IDCOMP_NID_MASK 0x3Fu
Jasper_lee 0:b16d94660a33 3872 #define USB_IDCOMP_NID_SHIFT 0
Jasper_lee 0:b16d94660a33 3873 #define USB_IDCOMP_NID(x) (((uint8_t)(((uint8_t)(x))<<USB_IDCOMP_NID_SHIFT))&USB_IDCOMP_NID_MASK)
Jasper_lee 0:b16d94660a33 3874 /* REV Bit Fields */
Jasper_lee 0:b16d94660a33 3875 #define USB_REV_REV_MASK 0xFFu
Jasper_lee 0:b16d94660a33 3876 #define USB_REV_REV_SHIFT 0
Jasper_lee 0:b16d94660a33 3877 #define USB_REV_REV(x) (((uint8_t)(((uint8_t)(x))<<USB_REV_REV_SHIFT))&USB_REV_REV_MASK)
Jasper_lee 0:b16d94660a33 3878 /* ADDINFO Bit Fields */
Jasper_lee 0:b16d94660a33 3879 #define USB_ADDINFO_IEHOST_MASK 0x1u
Jasper_lee 0:b16d94660a33 3880 #define USB_ADDINFO_IEHOST_SHIFT 0
Jasper_lee 0:b16d94660a33 3881 #define USB_ADDINFO_IRQNUM_MASK 0xF8u
Jasper_lee 0:b16d94660a33 3882 #define USB_ADDINFO_IRQNUM_SHIFT 3
Jasper_lee 0:b16d94660a33 3883 #define USB_ADDINFO_IRQNUM(x) (((uint8_t)(((uint8_t)(x))<<USB_ADDINFO_IRQNUM_SHIFT))&USB_ADDINFO_IRQNUM_MASK)
Jasper_lee 0:b16d94660a33 3884 /* OTGISTAT Bit Fields */
Jasper_lee 0:b16d94660a33 3885 #define USB_OTGISTAT_AVBUSCHG_MASK 0x1u
Jasper_lee 0:b16d94660a33 3886 #define USB_OTGISTAT_AVBUSCHG_SHIFT 0
Jasper_lee 0:b16d94660a33 3887 #define USB_OTGISTAT_B_SESS_CHG_MASK 0x4u
Jasper_lee 0:b16d94660a33 3888 #define USB_OTGISTAT_B_SESS_CHG_SHIFT 2
Jasper_lee 0:b16d94660a33 3889 #define USB_OTGISTAT_SESSVLDCHG_MASK 0x8u
Jasper_lee 0:b16d94660a33 3890 #define USB_OTGISTAT_SESSVLDCHG_SHIFT 3
Jasper_lee 0:b16d94660a33 3891 #define USB_OTGISTAT_LINE_STATE_CHG_MASK 0x20u
Jasper_lee 0:b16d94660a33 3892 #define USB_OTGISTAT_LINE_STATE_CHG_SHIFT 5
Jasper_lee 0:b16d94660a33 3893 #define USB_OTGISTAT_ONEMSEC_MASK 0x40u
Jasper_lee 0:b16d94660a33 3894 #define USB_OTGISTAT_ONEMSEC_SHIFT 6
Jasper_lee 0:b16d94660a33 3895 #define USB_OTGISTAT_IDCHG_MASK 0x80u
Jasper_lee 0:b16d94660a33 3896 #define USB_OTGISTAT_IDCHG_SHIFT 7
Jasper_lee 0:b16d94660a33 3897 /* OTGICR Bit Fields */
Jasper_lee 0:b16d94660a33 3898 #define USB_OTGICR_AVBUSEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 3899 #define USB_OTGICR_AVBUSEN_SHIFT 0
Jasper_lee 0:b16d94660a33 3900 #define USB_OTGICR_BSESSEN_MASK 0x4u
Jasper_lee 0:b16d94660a33 3901 #define USB_OTGICR_BSESSEN_SHIFT 2
Jasper_lee 0:b16d94660a33 3902 #define USB_OTGICR_SESSVLDEN_MASK 0x8u
Jasper_lee 0:b16d94660a33 3903 #define USB_OTGICR_SESSVLDEN_SHIFT 3
Jasper_lee 0:b16d94660a33 3904 #define USB_OTGICR_LINESTATEEN_MASK 0x20u
Jasper_lee 0:b16d94660a33 3905 #define USB_OTGICR_LINESTATEEN_SHIFT 5
Jasper_lee 0:b16d94660a33 3906 #define USB_OTGICR_ONEMSECEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 3907 #define USB_OTGICR_ONEMSECEN_SHIFT 6
Jasper_lee 0:b16d94660a33 3908 #define USB_OTGICR_IDEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 3909 #define USB_OTGICR_IDEN_SHIFT 7
Jasper_lee 0:b16d94660a33 3910 /* OTGSTAT Bit Fields */
Jasper_lee 0:b16d94660a33 3911 #define USB_OTGSTAT_AVBUSVLD_MASK 0x1u
Jasper_lee 0:b16d94660a33 3912 #define USB_OTGSTAT_AVBUSVLD_SHIFT 0
Jasper_lee 0:b16d94660a33 3913 #define USB_OTGSTAT_BSESSEND_MASK 0x4u
Jasper_lee 0:b16d94660a33 3914 #define USB_OTGSTAT_BSESSEND_SHIFT 2
Jasper_lee 0:b16d94660a33 3915 #define USB_OTGSTAT_SESS_VLD_MASK 0x8u
Jasper_lee 0:b16d94660a33 3916 #define USB_OTGSTAT_SESS_VLD_SHIFT 3
Jasper_lee 0:b16d94660a33 3917 #define USB_OTGSTAT_LINESTATESTABLE_MASK 0x20u
Jasper_lee 0:b16d94660a33 3918 #define USB_OTGSTAT_LINESTATESTABLE_SHIFT 5
Jasper_lee 0:b16d94660a33 3919 #define USB_OTGSTAT_ONEMSECEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 3920 #define USB_OTGSTAT_ONEMSECEN_SHIFT 6
Jasper_lee 0:b16d94660a33 3921 #define USB_OTGSTAT_ID_MASK 0x80u
Jasper_lee 0:b16d94660a33 3922 #define USB_OTGSTAT_ID_SHIFT 7
Jasper_lee 0:b16d94660a33 3923 /* OTGCTL Bit Fields */
Jasper_lee 0:b16d94660a33 3924 #define USB_OTGCTL_OTGEN_MASK 0x4u
Jasper_lee 0:b16d94660a33 3925 #define USB_OTGCTL_OTGEN_SHIFT 2
Jasper_lee 0:b16d94660a33 3926 #define USB_OTGCTL_DMLOW_MASK 0x10u
Jasper_lee 0:b16d94660a33 3927 #define USB_OTGCTL_DMLOW_SHIFT 4
Jasper_lee 0:b16d94660a33 3928 #define USB_OTGCTL_DPLOW_MASK 0x20u
Jasper_lee 0:b16d94660a33 3929 #define USB_OTGCTL_DPLOW_SHIFT 5
Jasper_lee 0:b16d94660a33 3930 #define USB_OTGCTL_DPHIGH_MASK 0x80u
Jasper_lee 0:b16d94660a33 3931 #define USB_OTGCTL_DPHIGH_SHIFT 7
Jasper_lee 0:b16d94660a33 3932 /* ISTAT Bit Fields */
Jasper_lee 0:b16d94660a33 3933 #define USB_ISTAT_USBRST_MASK 0x1u
Jasper_lee 0:b16d94660a33 3934 #define USB_ISTAT_USBRST_SHIFT 0
Jasper_lee 0:b16d94660a33 3935 #define USB_ISTAT_ERROR_MASK 0x2u
Jasper_lee 0:b16d94660a33 3936 #define USB_ISTAT_ERROR_SHIFT 1
Jasper_lee 0:b16d94660a33 3937 #define USB_ISTAT_SOFTOK_MASK 0x4u
Jasper_lee 0:b16d94660a33 3938 #define USB_ISTAT_SOFTOK_SHIFT 2
Jasper_lee 0:b16d94660a33 3939 #define USB_ISTAT_TOKDNE_MASK 0x8u
Jasper_lee 0:b16d94660a33 3940 #define USB_ISTAT_TOKDNE_SHIFT 3
Jasper_lee 0:b16d94660a33 3941 #define USB_ISTAT_SLEEP_MASK 0x10u
Jasper_lee 0:b16d94660a33 3942 #define USB_ISTAT_SLEEP_SHIFT 4
Jasper_lee 0:b16d94660a33 3943 #define USB_ISTAT_RESUME_MASK 0x20u
Jasper_lee 0:b16d94660a33 3944 #define USB_ISTAT_RESUME_SHIFT 5
Jasper_lee 0:b16d94660a33 3945 #define USB_ISTAT_ATTACH_MASK 0x40u
Jasper_lee 0:b16d94660a33 3946 #define USB_ISTAT_ATTACH_SHIFT 6
Jasper_lee 0:b16d94660a33 3947 #define USB_ISTAT_STALL_MASK 0x80u
Jasper_lee 0:b16d94660a33 3948 #define USB_ISTAT_STALL_SHIFT 7
Jasper_lee 0:b16d94660a33 3949 /* INTEN Bit Fields */
Jasper_lee 0:b16d94660a33 3950 #define USB_INTEN_USBRSTEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 3951 #define USB_INTEN_USBRSTEN_SHIFT 0
Jasper_lee 0:b16d94660a33 3952 #define USB_INTEN_ERROREN_MASK 0x2u
Jasper_lee 0:b16d94660a33 3953 #define USB_INTEN_ERROREN_SHIFT 1
Jasper_lee 0:b16d94660a33 3954 #define USB_INTEN_SOFTOKEN_MASK 0x4u
Jasper_lee 0:b16d94660a33 3955 #define USB_INTEN_SOFTOKEN_SHIFT 2
Jasper_lee 0:b16d94660a33 3956 #define USB_INTEN_TOKDNEEN_MASK 0x8u
Jasper_lee 0:b16d94660a33 3957 #define USB_INTEN_TOKDNEEN_SHIFT 3
Jasper_lee 0:b16d94660a33 3958 #define USB_INTEN_SLEEPEN_MASK 0x10u
Jasper_lee 0:b16d94660a33 3959 #define USB_INTEN_SLEEPEN_SHIFT 4
Jasper_lee 0:b16d94660a33 3960 #define USB_INTEN_RESUMEEN_MASK 0x20u
Jasper_lee 0:b16d94660a33 3961 #define USB_INTEN_RESUMEEN_SHIFT 5
Jasper_lee 0:b16d94660a33 3962 #define USB_INTEN_ATTACHEN_MASK 0x40u
Jasper_lee 0:b16d94660a33 3963 #define USB_INTEN_ATTACHEN_SHIFT 6
Jasper_lee 0:b16d94660a33 3964 #define USB_INTEN_STALLEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 3965 #define USB_INTEN_STALLEN_SHIFT 7
Jasper_lee 0:b16d94660a33 3966 /* ERRSTAT Bit Fields */
Jasper_lee 0:b16d94660a33 3967 #define USB_ERRSTAT_PIDERR_MASK 0x1u
Jasper_lee 0:b16d94660a33 3968 #define USB_ERRSTAT_PIDERR_SHIFT 0
Jasper_lee 0:b16d94660a33 3969 #define USB_ERRSTAT_CRC5EOF_MASK 0x2u
Jasper_lee 0:b16d94660a33 3970 #define USB_ERRSTAT_CRC5EOF_SHIFT 1
Jasper_lee 0:b16d94660a33 3971 #define USB_ERRSTAT_CRC16_MASK 0x4u
Jasper_lee 0:b16d94660a33 3972 #define USB_ERRSTAT_CRC16_SHIFT 2
Jasper_lee 0:b16d94660a33 3973 #define USB_ERRSTAT_DFN8_MASK 0x8u
Jasper_lee 0:b16d94660a33 3974 #define USB_ERRSTAT_DFN8_SHIFT 3
Jasper_lee 0:b16d94660a33 3975 #define USB_ERRSTAT_BTOERR_MASK 0x10u
Jasper_lee 0:b16d94660a33 3976 #define USB_ERRSTAT_BTOERR_SHIFT 4
Jasper_lee 0:b16d94660a33 3977 #define USB_ERRSTAT_DMAERR_MASK 0x20u
Jasper_lee 0:b16d94660a33 3978 #define USB_ERRSTAT_DMAERR_SHIFT 5
Jasper_lee 0:b16d94660a33 3979 #define USB_ERRSTAT_BTSERR_MASK 0x80u
Jasper_lee 0:b16d94660a33 3980 #define USB_ERRSTAT_BTSERR_SHIFT 7
Jasper_lee 0:b16d94660a33 3981 /* ERREN Bit Fields */
Jasper_lee 0:b16d94660a33 3982 #define USB_ERREN_PIDERREN_MASK 0x1u
Jasper_lee 0:b16d94660a33 3983 #define USB_ERREN_PIDERREN_SHIFT 0
Jasper_lee 0:b16d94660a33 3984 #define USB_ERREN_CRC5EOFEN_MASK 0x2u
Jasper_lee 0:b16d94660a33 3985 #define USB_ERREN_CRC5EOFEN_SHIFT 1
Jasper_lee 0:b16d94660a33 3986 #define USB_ERREN_CRC16EN_MASK 0x4u
Jasper_lee 0:b16d94660a33 3987 #define USB_ERREN_CRC16EN_SHIFT 2
Jasper_lee 0:b16d94660a33 3988 #define USB_ERREN_DFN8EN_MASK 0x8u
Jasper_lee 0:b16d94660a33 3989 #define USB_ERREN_DFN8EN_SHIFT 3
Jasper_lee 0:b16d94660a33 3990 #define USB_ERREN_BTOERREN_MASK 0x10u
Jasper_lee 0:b16d94660a33 3991 #define USB_ERREN_BTOERREN_SHIFT 4
Jasper_lee 0:b16d94660a33 3992 #define USB_ERREN_DMAERREN_MASK 0x20u
Jasper_lee 0:b16d94660a33 3993 #define USB_ERREN_DMAERREN_SHIFT 5
Jasper_lee 0:b16d94660a33 3994 #define USB_ERREN_BTSERREN_MASK 0x80u
Jasper_lee 0:b16d94660a33 3995 #define USB_ERREN_BTSERREN_SHIFT 7
Jasper_lee 0:b16d94660a33 3996 /* STAT Bit Fields */
Jasper_lee 0:b16d94660a33 3997 #define USB_STAT_ODD_MASK 0x4u
Jasper_lee 0:b16d94660a33 3998 #define USB_STAT_ODD_SHIFT 2
Jasper_lee 0:b16d94660a33 3999 #define USB_STAT_TX_MASK 0x8u
Jasper_lee 0:b16d94660a33 4000 #define USB_STAT_TX_SHIFT 3
Jasper_lee 0:b16d94660a33 4001 #define USB_STAT_ENDP_MASK 0xF0u
Jasper_lee 0:b16d94660a33 4002 #define USB_STAT_ENDP_SHIFT 4
Jasper_lee 0:b16d94660a33 4003 #define USB_STAT_ENDP(x) (((uint8_t)(((uint8_t)(x))<<USB_STAT_ENDP_SHIFT))&USB_STAT_ENDP_MASK)
Jasper_lee 0:b16d94660a33 4004 /* CTL Bit Fields */
Jasper_lee 0:b16d94660a33 4005 #define USB_CTL_USBENSOFEN_MASK 0x1u
Jasper_lee 0:b16d94660a33 4006 #define USB_CTL_USBENSOFEN_SHIFT 0
Jasper_lee 0:b16d94660a33 4007 #define USB_CTL_ODDRST_MASK 0x2u
Jasper_lee 0:b16d94660a33 4008 #define USB_CTL_ODDRST_SHIFT 1
Jasper_lee 0:b16d94660a33 4009 #define USB_CTL_RESUME_MASK 0x4u
Jasper_lee 0:b16d94660a33 4010 #define USB_CTL_RESUME_SHIFT 2
Jasper_lee 0:b16d94660a33 4011 #define USB_CTL_HOSTMODEEN_MASK 0x8u
Jasper_lee 0:b16d94660a33 4012 #define USB_CTL_HOSTMODEEN_SHIFT 3
Jasper_lee 0:b16d94660a33 4013 #define USB_CTL_RESET_MASK 0x10u
Jasper_lee 0:b16d94660a33 4014 #define USB_CTL_RESET_SHIFT 4
Jasper_lee 0:b16d94660a33 4015 #define USB_CTL_TXSUSPENDTOKENBUSY_MASK 0x20u
Jasper_lee 0:b16d94660a33 4016 #define USB_CTL_TXSUSPENDTOKENBUSY_SHIFT 5
Jasper_lee 0:b16d94660a33 4017 #define USB_CTL_SE0_MASK 0x40u
Jasper_lee 0:b16d94660a33 4018 #define USB_CTL_SE0_SHIFT 6
Jasper_lee 0:b16d94660a33 4019 #define USB_CTL_JSTATE_MASK 0x80u
Jasper_lee 0:b16d94660a33 4020 #define USB_CTL_JSTATE_SHIFT 7
Jasper_lee 0:b16d94660a33 4021 /* ADDR Bit Fields */
Jasper_lee 0:b16d94660a33 4022 #define USB_ADDR_ADDR_MASK 0x7Fu
Jasper_lee 0:b16d94660a33 4023 #define USB_ADDR_ADDR_SHIFT 0
Jasper_lee 0:b16d94660a33 4024 #define USB_ADDR_ADDR(x) (((uint8_t)(((uint8_t)(x))<<USB_ADDR_ADDR_SHIFT))&USB_ADDR_ADDR_MASK)
Jasper_lee 0:b16d94660a33 4025 #define USB_ADDR_LSEN_MASK 0x80u
Jasper_lee 0:b16d94660a33 4026 #define USB_ADDR_LSEN_SHIFT 7
Jasper_lee 0:b16d94660a33 4027 /* BDTPAGE1 Bit Fields */
Jasper_lee 0:b16d94660a33 4028 #define USB_BDTPAGE1_BDTBA_MASK 0xFEu
Jasper_lee 0:b16d94660a33 4029 #define USB_BDTPAGE1_BDTBA_SHIFT 1
Jasper_lee 0:b16d94660a33 4030 #define USB_BDTPAGE1_BDTBA(x) (((uint8_t)(((uint8_t)(x))<<USB_BDTPAGE1_BDTBA_SHIFT))&USB_BDTPAGE1_BDTBA_MASK)
Jasper_lee 0:b16d94660a33 4031 /* FRMNUML Bit Fields */
Jasper_lee 0:b16d94660a33 4032 #define USB_FRMNUML_FRM_MASK 0xFFu
Jasper_lee 0:b16d94660a33 4033 #define USB_FRMNUML_FRM_SHIFT 0
Jasper_lee 0:b16d94660a33 4034 #define USB_FRMNUML_FRM(x) (((uint8_t)(((uint8_t)(x))<<USB_FRMNUML_FRM_SHIFT))&USB_FRMNUML_FRM_MASK)
Jasper_lee 0:b16d94660a33 4035 /* FRMNUMH Bit Fields */
Jasper_lee 0:b16d94660a33 4036 #define USB_FRMNUMH_FRM_MASK 0x7u
Jasper_lee 0:b16d94660a33 4037 #define USB_FRMNUMH_FRM_SHIFT 0
Jasper_lee 0:b16d94660a33 4038 #define USB_FRMNUMH_FRM(x) (((uint8_t)(((uint8_t)(x))<<USB_FRMNUMH_FRM_SHIFT))&USB_FRMNUMH_FRM_MASK)
Jasper_lee 0:b16d94660a33 4039 /* TOKEN Bit Fields */
Jasper_lee 0:b16d94660a33 4040 #define USB_TOKEN_TOKENENDPT_MASK 0xFu
Jasper_lee 0:b16d94660a33 4041 #define USB_TOKEN_TOKENENDPT_SHIFT 0
Jasper_lee 0:b16d94660a33 4042 #define USB_TOKEN_TOKENENDPT(x) (((uint8_t)(((uint8_t)(x))<<USB_TOKEN_TOKENENDPT_SHIFT))&USB_TOKEN_TOKENENDPT_MASK)
Jasper_lee 0:b16d94660a33 4043 #define USB_TOKEN_TOKENPID_MASK 0xF0u
Jasper_lee 0:b16d94660a33 4044 #define USB_TOKEN_TOKENPID_SHIFT 4
Jasper_lee 0:b16d94660a33 4045 #define USB_TOKEN_TOKENPID(x) (((uint8_t)(((uint8_t)(x))<<USB_TOKEN_TOKENPID_SHIFT))&USB_TOKEN_TOKENPID_MASK)
Jasper_lee 0:b16d94660a33 4046 /* SOFTHLD Bit Fields */
Jasper_lee 0:b16d94660a33 4047 #define USB_SOFTHLD_CNT_MASK 0xFFu
Jasper_lee 0:b16d94660a33 4048 #define USB_SOFTHLD_CNT_SHIFT 0
Jasper_lee 0:b16d94660a33 4049 #define USB_SOFTHLD_CNT(x) (((uint8_t)(((uint8_t)(x))<<USB_SOFTHLD_CNT_SHIFT))&USB_SOFTHLD_CNT_MASK)
Jasper_lee 0:b16d94660a33 4050 /* BDTPAGE2 Bit Fields */
Jasper_lee 0:b16d94660a33 4051 #define USB_BDTPAGE2_BDTBA_MASK 0xFFu
Jasper_lee 0:b16d94660a33 4052 #define USB_BDTPAGE2_BDTBA_SHIFT 0
Jasper_lee 0:b16d94660a33 4053 #define USB_BDTPAGE2_BDTBA(x) (((uint8_t)(((uint8_t)(x))<<USB_BDTPAGE2_BDTBA_SHIFT))&USB_BDTPAGE2_BDTBA_MASK)
Jasper_lee 0:b16d94660a33 4054 /* BDTPAGE3 Bit Fields */
Jasper_lee 0:b16d94660a33 4055 #define USB_BDTPAGE3_BDTBA_MASK 0xFFu
Jasper_lee 0:b16d94660a33 4056 #define USB_BDTPAGE3_BDTBA_SHIFT 0
Jasper_lee 0:b16d94660a33 4057 #define USB_BDTPAGE3_BDTBA(x) (((uint8_t)(((uint8_t)(x))<<USB_BDTPAGE3_BDTBA_SHIFT))&USB_BDTPAGE3_BDTBA_MASK)
Jasper_lee 0:b16d94660a33 4058 /* ENDPT Bit Fields */
Jasper_lee 0:b16d94660a33 4059 #define USB_ENDPT_EPHSHK_MASK 0x1u
Jasper_lee 0:b16d94660a33 4060 #define USB_ENDPT_EPHSHK_SHIFT 0
Jasper_lee 0:b16d94660a33 4061 #define USB_ENDPT_EPSTALL_MASK 0x2u
Jasper_lee 0:b16d94660a33 4062 #define USB_ENDPT_EPSTALL_SHIFT 1
Jasper_lee 0:b16d94660a33 4063 #define USB_ENDPT_EPTXEN_MASK 0x4u
Jasper_lee 0:b16d94660a33 4064 #define USB_ENDPT_EPTXEN_SHIFT 2
Jasper_lee 0:b16d94660a33 4065 #define USB_ENDPT_EPRXEN_MASK 0x8u
Jasper_lee 0:b16d94660a33 4066 #define USB_ENDPT_EPRXEN_SHIFT 3
Jasper_lee 0:b16d94660a33 4067 #define USB_ENDPT_EPCTLDIS_MASK 0x10u
Jasper_lee 0:b16d94660a33 4068 #define USB_ENDPT_EPCTLDIS_SHIFT 4
Jasper_lee 0:b16d94660a33 4069 #define USB_ENDPT_RETRYDIS_MASK 0x40u
Jasper_lee 0:b16d94660a33 4070 #define USB_ENDPT_RETRYDIS_SHIFT 6
Jasper_lee 0:b16d94660a33 4071 #define USB_ENDPT_HOSTWOHUB_MASK 0x80u
Jasper_lee 0:b16d94660a33 4072 #define USB_ENDPT_HOSTWOHUB_SHIFT 7
Jasper_lee 0:b16d94660a33 4073 /* USBCTRL Bit Fields */
Jasper_lee 0:b16d94660a33 4074 #define USB_USBCTRL_PDE_MASK 0x40u
Jasper_lee 0:b16d94660a33 4075 #define USB_USBCTRL_PDE_SHIFT 6
Jasper_lee 0:b16d94660a33 4076 #define USB_USBCTRL_SUSP_MASK 0x80u
Jasper_lee 0:b16d94660a33 4077 #define USB_USBCTRL_SUSP_SHIFT 7
Jasper_lee 0:b16d94660a33 4078 /* OBSERVE Bit Fields */
Jasper_lee 0:b16d94660a33 4079 #define USB_OBSERVE_DMPD_MASK 0x10u
Jasper_lee 0:b16d94660a33 4080 #define USB_OBSERVE_DMPD_SHIFT 4
Jasper_lee 0:b16d94660a33 4081 #define USB_OBSERVE_DPPD_MASK 0x40u
Jasper_lee 0:b16d94660a33 4082 #define USB_OBSERVE_DPPD_SHIFT 6
Jasper_lee 0:b16d94660a33 4083 #define USB_OBSERVE_DPPU_MASK 0x80u
Jasper_lee 0:b16d94660a33 4084 #define USB_OBSERVE_DPPU_SHIFT 7
Jasper_lee 0:b16d94660a33 4085 /* CONTROL Bit Fields */
Jasper_lee 0:b16d94660a33 4086 #define USB_CONTROL_DPPULLUPNONOTG_MASK 0x10u
Jasper_lee 0:b16d94660a33 4087 #define USB_CONTROL_DPPULLUPNONOTG_SHIFT 4
Jasper_lee 0:b16d94660a33 4088 /* USBTRC0 Bit Fields */
Jasper_lee 0:b16d94660a33 4089 #define USB_USBTRC0_USB_RESUME_INT_MASK 0x1u
Jasper_lee 0:b16d94660a33 4090 #define USB_USBTRC0_USB_RESUME_INT_SHIFT 0
Jasper_lee 0:b16d94660a33 4091 #define USB_USBTRC0_SYNC_DET_MASK 0x2u
Jasper_lee 0:b16d94660a33 4092 #define USB_USBTRC0_SYNC_DET_SHIFT 1
Jasper_lee 0:b16d94660a33 4093 #define USB_USBTRC0_USBRESMEN_MASK 0x20u
Jasper_lee 0:b16d94660a33 4094 #define USB_USBTRC0_USBRESMEN_SHIFT 5
Jasper_lee 0:b16d94660a33 4095 #define USB_USBTRC0_USBRESET_MASK 0x80u
Jasper_lee 0:b16d94660a33 4096 #define USB_USBTRC0_USBRESET_SHIFT 7
Jasper_lee 0:b16d94660a33 4097
Jasper_lee 0:b16d94660a33 4098 /**
Jasper_lee 0:b16d94660a33 4099 * @}
Jasper_lee 0:b16d94660a33 4100 */ /* end of group USB_Register_Masks */
Jasper_lee 0:b16d94660a33 4101
Jasper_lee 0:b16d94660a33 4102
Jasper_lee 0:b16d94660a33 4103 /* USB - Peripheral instance base addresses */
Jasper_lee 0:b16d94660a33 4104 /** Peripheral USB0 base address */
Jasper_lee 0:b16d94660a33 4105 #define USB0_BASE (0x40072000u)
Jasper_lee 0:b16d94660a33 4106 /** Peripheral USB0 base pointer */
Jasper_lee 0:b16d94660a33 4107 #define USB0 ((USB_Type *)USB0_BASE)
Jasper_lee 0:b16d94660a33 4108 /** Array initializer of USB peripheral base pointers */
Jasper_lee 0:b16d94660a33 4109 #define USB_BASES { USB0 }
Jasper_lee 0:b16d94660a33 4110
Jasper_lee 0:b16d94660a33 4111 /**
Jasper_lee 0:b16d94660a33 4112 * @}
Jasper_lee 0:b16d94660a33 4113 */ /* end of group USB_Peripheral_Access_Layer */
Jasper_lee 0:b16d94660a33 4114
Jasper_lee 0:b16d94660a33 4115
Jasper_lee 0:b16d94660a33 4116 /*
Jasper_lee 0:b16d94660a33 4117 ** End of section using anonymous unions
Jasper_lee 0:b16d94660a33 4118 */
Jasper_lee 0:b16d94660a33 4119
Jasper_lee 0:b16d94660a33 4120 #if defined(__ARMCC_VERSION)
Jasper_lee 0:b16d94660a33 4121 #pragma pop
Jasper_lee 0:b16d94660a33 4122 #elif defined(__CWCC__)
Jasper_lee 0:b16d94660a33 4123 #pragma pop
Jasper_lee 0:b16d94660a33 4124 #elif defined(__GNUC__)
Jasper_lee 0:b16d94660a33 4125 /* leave anonymous unions enabled */
Jasper_lee 0:b16d94660a33 4126 #elif defined(__IAR_SYSTEMS_ICC__)
Jasper_lee 0:b16d94660a33 4127 #pragma language=default
Jasper_lee 0:b16d94660a33 4128 #else
Jasper_lee 0:b16d94660a33 4129 #error Not supported compiler type
Jasper_lee 0:b16d94660a33 4130 #endif
Jasper_lee 0:b16d94660a33 4131
Jasper_lee 0:b16d94660a33 4132 /**
Jasper_lee 0:b16d94660a33 4133 * @}
Jasper_lee 0:b16d94660a33 4134 */ /* end of group Peripheral_access_layer */
Jasper_lee 0:b16d94660a33 4135
Jasper_lee 0:b16d94660a33 4136
Jasper_lee 0:b16d94660a33 4137 /* ----------------------------------------------------------------------------
Jasper_lee 0:b16d94660a33 4138 -- Backward Compatibility
Jasper_lee 0:b16d94660a33 4139 ---------------------------------------------------------------------------- */
Jasper_lee 0:b16d94660a33 4140
Jasper_lee 0:b16d94660a33 4141 /**
Jasper_lee 0:b16d94660a33 4142 * @addtogroup Backward_Compatibility_Symbols Backward Compatibility
Jasper_lee 0:b16d94660a33 4143 * @{
Jasper_lee 0:b16d94660a33 4144 */
Jasper_lee 0:b16d94660a33 4145
Jasper_lee 0:b16d94660a33 4146 /* No backward compatibility issues. */
Jasper_lee 0:b16d94660a33 4147
Jasper_lee 0:b16d94660a33 4148 /**
Jasper_lee 0:b16d94660a33 4149 * @}
Jasper_lee 0:b16d94660a33 4150 */ /* end of group Backward_Compatibility_Symbols */
Jasper_lee 0:b16d94660a33 4151
Jasper_lee 0:b16d94660a33 4152
Jasper_lee 0:b16d94660a33 4153 #endif /* #if !defined(MKL25Z4_H_) */
Jasper_lee 0:b16d94660a33 4154
Jasper_lee 0:b16d94660a33 4155 /* MKL25Z4.h, eof. */