The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
mbed_official
Date:
Thu Dec 21 18:20:02 2017 +0000
Revision:
159:7130f322cb7e
mbed library version 157

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 159:7130f322cb7e 1 /**************************************************************************//**
mbed_official 159:7130f322cb7e 2 * @file core_cm7.h
mbed_official 159:7130f322cb7e 3 * @brief CMSIS Cortex-M7 Core Peripheral Access Layer Header File
mbed_official 159:7130f322cb7e 4 * @version V5.0.2
mbed_official 159:7130f322cb7e 5 * @date 13. February 2017
mbed_official 159:7130f322cb7e 6 ******************************************************************************/
mbed_official 159:7130f322cb7e 7 /*
mbed_official 159:7130f322cb7e 8 * Copyright (c) 2009-2017 ARM Limited. All rights reserved.
mbed_official 159:7130f322cb7e 9 *
mbed_official 159:7130f322cb7e 10 * SPDX-License-Identifier: Apache-2.0
mbed_official 159:7130f322cb7e 11 *
mbed_official 159:7130f322cb7e 12 * Licensed under the Apache License, Version 2.0 (the License); you may
mbed_official 159:7130f322cb7e 13 * not use this file except in compliance with the License.
mbed_official 159:7130f322cb7e 14 * You may obtain a copy of the License at
mbed_official 159:7130f322cb7e 15 *
mbed_official 159:7130f322cb7e 16 * www.apache.org/licenses/LICENSE-2.0
mbed_official 159:7130f322cb7e 17 *
mbed_official 159:7130f322cb7e 18 * Unless required by applicable law or agreed to in writing, software
mbed_official 159:7130f322cb7e 19 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
mbed_official 159:7130f322cb7e 20 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mbed_official 159:7130f322cb7e 21 * See the License for the specific language governing permissions and
mbed_official 159:7130f322cb7e 22 * limitations under the License.
mbed_official 159:7130f322cb7e 23 */
mbed_official 159:7130f322cb7e 24
mbed_official 159:7130f322cb7e 25 #if defined ( __ICCARM__ )
mbed_official 159:7130f322cb7e 26 #pragma system_include /* treat file as system include file for MISRA check */
mbed_official 159:7130f322cb7e 27 #elif defined (__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
mbed_official 159:7130f322cb7e 28 #pragma clang system_header /* treat file as system include file */
mbed_official 159:7130f322cb7e 29 #endif
mbed_official 159:7130f322cb7e 30
mbed_official 159:7130f322cb7e 31 #ifndef __CORE_CM7_H_GENERIC
mbed_official 159:7130f322cb7e 32 #define __CORE_CM7_H_GENERIC
mbed_official 159:7130f322cb7e 33
mbed_official 159:7130f322cb7e 34 #include <stdint.h>
mbed_official 159:7130f322cb7e 35
mbed_official 159:7130f322cb7e 36 #ifdef __cplusplus
mbed_official 159:7130f322cb7e 37 extern "C" {
mbed_official 159:7130f322cb7e 38 #endif
mbed_official 159:7130f322cb7e 39
mbed_official 159:7130f322cb7e 40 /**
mbed_official 159:7130f322cb7e 41 \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions
mbed_official 159:7130f322cb7e 42 CMSIS violates the following MISRA-C:2004 rules:
mbed_official 159:7130f322cb7e 43
mbed_official 159:7130f322cb7e 44 \li Required Rule 8.5, object/function definition in header file.<br>
mbed_official 159:7130f322cb7e 45 Function definitions in header files are used to allow 'inlining'.
mbed_official 159:7130f322cb7e 46
mbed_official 159:7130f322cb7e 47 \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.<br>
mbed_official 159:7130f322cb7e 48 Unions are used for effective representation of core registers.
mbed_official 159:7130f322cb7e 49
mbed_official 159:7130f322cb7e 50 \li Advisory Rule 19.7, Function-like macro defined.<br>
mbed_official 159:7130f322cb7e 51 Function-like macros are used to allow more efficient code.
mbed_official 159:7130f322cb7e 52 */
mbed_official 159:7130f322cb7e 53
mbed_official 159:7130f322cb7e 54
mbed_official 159:7130f322cb7e 55 /*******************************************************************************
mbed_official 159:7130f322cb7e 56 * CMSIS definitions
mbed_official 159:7130f322cb7e 57 ******************************************************************************/
mbed_official 159:7130f322cb7e 58 /**
mbed_official 159:7130f322cb7e 59 \ingroup Cortex_M7
mbed_official 159:7130f322cb7e 60 @{
mbed_official 159:7130f322cb7e 61 */
mbed_official 159:7130f322cb7e 62
mbed_official 159:7130f322cb7e 63 /* CMSIS CM7 definitions */
mbed_official 159:7130f322cb7e 64 #define __CM7_CMSIS_VERSION_MAIN ( 5U) /*!< [31:16] CMSIS HAL main version */
mbed_official 159:7130f322cb7e 65 #define __CM7_CMSIS_VERSION_SUB ( 0U) /*!< [15:0] CMSIS HAL sub version */
mbed_official 159:7130f322cb7e 66 #define __CM7_CMSIS_VERSION ((__CM7_CMSIS_VERSION_MAIN << 16U) | \
mbed_official 159:7130f322cb7e 67 __CM7_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */
mbed_official 159:7130f322cb7e 68
mbed_official 159:7130f322cb7e 69 #define __CORTEX_M (7U) /*!< Cortex-M Core */
mbed_official 159:7130f322cb7e 70
mbed_official 159:7130f322cb7e 71 /** __FPU_USED indicates whether an FPU is used or not.
mbed_official 159:7130f322cb7e 72 For this, __FPU_PRESENT has to be checked prior to making use of FPU specific registers and functions.
mbed_official 159:7130f322cb7e 73 */
mbed_official 159:7130f322cb7e 74 #if defined ( __CC_ARM )
mbed_official 159:7130f322cb7e 75 #if defined __TARGET_FPU_VFP
mbed_official 159:7130f322cb7e 76 #if defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 77 #define __FPU_USED 1U
mbed_official 159:7130f322cb7e 78 #else
mbed_official 159:7130f322cb7e 79 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
mbed_official 159:7130f322cb7e 80 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 81 #endif
mbed_official 159:7130f322cb7e 82 #else
mbed_official 159:7130f322cb7e 83 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 84 #endif
mbed_official 159:7130f322cb7e 85
mbed_official 159:7130f322cb7e 86 #elif defined (__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)
mbed_official 159:7130f322cb7e 87 #if defined __ARM_PCS_VFP
mbed_official 159:7130f322cb7e 88 #if defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 89 #define __FPU_USED 1U
mbed_official 159:7130f322cb7e 90 #else
mbed_official 159:7130f322cb7e 91 #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
mbed_official 159:7130f322cb7e 92 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 93 #endif
mbed_official 159:7130f322cb7e 94 #else
mbed_official 159:7130f322cb7e 95 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 96 #endif
mbed_official 159:7130f322cb7e 97
mbed_official 159:7130f322cb7e 98 #elif defined ( __GNUC__ )
mbed_official 159:7130f322cb7e 99 #if defined (__VFP_FP__) && !defined(__SOFTFP__)
mbed_official 159:7130f322cb7e 100 #if defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 101 #define __FPU_USED 1U
mbed_official 159:7130f322cb7e 102 #else
mbed_official 159:7130f322cb7e 103 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
mbed_official 159:7130f322cb7e 104 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 105 #endif
mbed_official 159:7130f322cb7e 106 #else
mbed_official 159:7130f322cb7e 107 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 108 #endif
mbed_official 159:7130f322cb7e 109
mbed_official 159:7130f322cb7e 110 #elif defined ( __ICCARM__ )
mbed_official 159:7130f322cb7e 111 #if defined __ARMVFP__
mbed_official 159:7130f322cb7e 112 #if defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 113 #define __FPU_USED 1U
mbed_official 159:7130f322cb7e 114 #else
mbed_official 159:7130f322cb7e 115 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
mbed_official 159:7130f322cb7e 116 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 117 #endif
mbed_official 159:7130f322cb7e 118 #else
mbed_official 159:7130f322cb7e 119 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 120 #endif
mbed_official 159:7130f322cb7e 121
mbed_official 159:7130f322cb7e 122 #elif defined ( __TI_ARM__ )
mbed_official 159:7130f322cb7e 123 #if defined __TI_VFP_SUPPORT__
mbed_official 159:7130f322cb7e 124 #if defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 125 #define __FPU_USED 1U
mbed_official 159:7130f322cb7e 126 #else
mbed_official 159:7130f322cb7e 127 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
mbed_official 159:7130f322cb7e 128 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 129 #endif
mbed_official 159:7130f322cb7e 130 #else
mbed_official 159:7130f322cb7e 131 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 132 #endif
mbed_official 159:7130f322cb7e 133
mbed_official 159:7130f322cb7e 134 #elif defined ( __TASKING__ )
mbed_official 159:7130f322cb7e 135 #if defined __FPU_VFP__
mbed_official 159:7130f322cb7e 136 #if defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 137 #define __FPU_USED 1U
mbed_official 159:7130f322cb7e 138 #else
mbed_official 159:7130f322cb7e 139 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
mbed_official 159:7130f322cb7e 140 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 141 #endif
mbed_official 159:7130f322cb7e 142 #else
mbed_official 159:7130f322cb7e 143 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 144 #endif
mbed_official 159:7130f322cb7e 145
mbed_official 159:7130f322cb7e 146 #elif defined ( __CSMC__ )
mbed_official 159:7130f322cb7e 147 #if ( __CSMC__ & 0x400U)
mbed_official 159:7130f322cb7e 148 #if defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 149 #define __FPU_USED 1U
mbed_official 159:7130f322cb7e 150 #else
mbed_official 159:7130f322cb7e 151 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
mbed_official 159:7130f322cb7e 152 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 153 #endif
mbed_official 159:7130f322cb7e 154 #else
mbed_official 159:7130f322cb7e 155 #define __FPU_USED 0U
mbed_official 159:7130f322cb7e 156 #endif
mbed_official 159:7130f322cb7e 157
mbed_official 159:7130f322cb7e 158 #endif
mbed_official 159:7130f322cb7e 159
mbed_official 159:7130f322cb7e 160 #include "cmsis_compiler.h" /* CMSIS compiler specific defines */
mbed_official 159:7130f322cb7e 161
mbed_official 159:7130f322cb7e 162
mbed_official 159:7130f322cb7e 163 #ifdef __cplusplus
mbed_official 159:7130f322cb7e 164 }
mbed_official 159:7130f322cb7e 165 #endif
mbed_official 159:7130f322cb7e 166
mbed_official 159:7130f322cb7e 167 #endif /* __CORE_CM7_H_GENERIC */
mbed_official 159:7130f322cb7e 168
mbed_official 159:7130f322cb7e 169 #ifndef __CMSIS_GENERIC
mbed_official 159:7130f322cb7e 170
mbed_official 159:7130f322cb7e 171 #ifndef __CORE_CM7_H_DEPENDANT
mbed_official 159:7130f322cb7e 172 #define __CORE_CM7_H_DEPENDANT
mbed_official 159:7130f322cb7e 173
mbed_official 159:7130f322cb7e 174 #ifdef __cplusplus
mbed_official 159:7130f322cb7e 175 extern "C" {
mbed_official 159:7130f322cb7e 176 #endif
mbed_official 159:7130f322cb7e 177
mbed_official 159:7130f322cb7e 178 /* check device defines and use defaults */
mbed_official 159:7130f322cb7e 179 #if defined __CHECK_DEVICE_DEFINES
mbed_official 159:7130f322cb7e 180 #ifndef __CM7_REV
mbed_official 159:7130f322cb7e 181 #define __CM7_REV 0x0000U
mbed_official 159:7130f322cb7e 182 #warning "__CM7_REV not defined in device header file; using default!"
mbed_official 159:7130f322cb7e 183 #endif
mbed_official 159:7130f322cb7e 184
mbed_official 159:7130f322cb7e 185 #ifndef __FPU_PRESENT
mbed_official 159:7130f322cb7e 186 #define __FPU_PRESENT 0U
mbed_official 159:7130f322cb7e 187 #warning "__FPU_PRESENT not defined in device header file; using default!"
mbed_official 159:7130f322cb7e 188 #endif
mbed_official 159:7130f322cb7e 189
mbed_official 159:7130f322cb7e 190 #ifndef __MPU_PRESENT
mbed_official 159:7130f322cb7e 191 #define __MPU_PRESENT 0U
mbed_official 159:7130f322cb7e 192 #warning "__MPU_PRESENT not defined in device header file; using default!"
mbed_official 159:7130f322cb7e 193 #endif
mbed_official 159:7130f322cb7e 194
mbed_official 159:7130f322cb7e 195 #ifndef __ICACHE_PRESENT
mbed_official 159:7130f322cb7e 196 #define __ICACHE_PRESENT 0U
mbed_official 159:7130f322cb7e 197 #warning "__ICACHE_PRESENT not defined in device header file; using default!"
mbed_official 159:7130f322cb7e 198 #endif
mbed_official 159:7130f322cb7e 199
mbed_official 159:7130f322cb7e 200 #ifndef __DCACHE_PRESENT
mbed_official 159:7130f322cb7e 201 #define __DCACHE_PRESENT 0U
mbed_official 159:7130f322cb7e 202 #warning "__DCACHE_PRESENT not defined in device header file; using default!"
mbed_official 159:7130f322cb7e 203 #endif
mbed_official 159:7130f322cb7e 204
mbed_official 159:7130f322cb7e 205 #ifndef __DTCM_PRESENT
mbed_official 159:7130f322cb7e 206 #define __DTCM_PRESENT 0U
mbed_official 159:7130f322cb7e 207 #warning "__DTCM_PRESENT not defined in device header file; using default!"
mbed_official 159:7130f322cb7e 208 #endif
mbed_official 159:7130f322cb7e 209
mbed_official 159:7130f322cb7e 210 #ifndef __NVIC_PRIO_BITS
mbed_official 159:7130f322cb7e 211 #define __NVIC_PRIO_BITS 3U
mbed_official 159:7130f322cb7e 212 #warning "__NVIC_PRIO_BITS not defined in device header file; using default!"
mbed_official 159:7130f322cb7e 213 #endif
mbed_official 159:7130f322cb7e 214
mbed_official 159:7130f322cb7e 215 #ifndef __Vendor_SysTickConfig
mbed_official 159:7130f322cb7e 216 #define __Vendor_SysTickConfig 0U
mbed_official 159:7130f322cb7e 217 #warning "__Vendor_SysTickConfig not defined in device header file; using default!"
mbed_official 159:7130f322cb7e 218 #endif
mbed_official 159:7130f322cb7e 219 #endif
mbed_official 159:7130f322cb7e 220
mbed_official 159:7130f322cb7e 221 /* IO definitions (access restrictions to peripheral registers) */
mbed_official 159:7130f322cb7e 222 /**
mbed_official 159:7130f322cb7e 223 \defgroup CMSIS_glob_defs CMSIS Global Defines
mbed_official 159:7130f322cb7e 224
mbed_official 159:7130f322cb7e 225 <strong>IO Type Qualifiers</strong> are used
mbed_official 159:7130f322cb7e 226 \li to specify the access to peripheral variables.
mbed_official 159:7130f322cb7e 227 \li for automatic generation of peripheral register debug information.
mbed_official 159:7130f322cb7e 228 */
mbed_official 159:7130f322cb7e 229 #ifdef __cplusplus
mbed_official 159:7130f322cb7e 230 #define __I volatile /*!< Defines 'read only' permissions */
mbed_official 159:7130f322cb7e 231 #else
mbed_official 159:7130f322cb7e 232 #define __I volatile const /*!< Defines 'read only' permissions */
mbed_official 159:7130f322cb7e 233 #endif
mbed_official 159:7130f322cb7e 234 #define __O volatile /*!< Defines 'write only' permissions */
mbed_official 159:7130f322cb7e 235 #define __IO volatile /*!< Defines 'read / write' permissions */
mbed_official 159:7130f322cb7e 236
mbed_official 159:7130f322cb7e 237 /* following defines should be used for structure members */
mbed_official 159:7130f322cb7e 238 #define __IM volatile const /*! Defines 'read only' structure member permissions */
mbed_official 159:7130f322cb7e 239 #define __OM volatile /*! Defines 'write only' structure member permissions */
mbed_official 159:7130f322cb7e 240 #define __IOM volatile /*! Defines 'read / write' structure member permissions */
mbed_official 159:7130f322cb7e 241
mbed_official 159:7130f322cb7e 242 /*@} end of group Cortex_M7 */
mbed_official 159:7130f322cb7e 243
mbed_official 159:7130f322cb7e 244
mbed_official 159:7130f322cb7e 245
mbed_official 159:7130f322cb7e 246 /*******************************************************************************
mbed_official 159:7130f322cb7e 247 * Register Abstraction
mbed_official 159:7130f322cb7e 248 Core Register contain:
mbed_official 159:7130f322cb7e 249 - Core Register
mbed_official 159:7130f322cb7e 250 - Core NVIC Register
mbed_official 159:7130f322cb7e 251 - Core SCB Register
mbed_official 159:7130f322cb7e 252 - Core SysTick Register
mbed_official 159:7130f322cb7e 253 - Core Debug Register
mbed_official 159:7130f322cb7e 254 - Core MPU Register
mbed_official 159:7130f322cb7e 255 - Core FPU Register
mbed_official 159:7130f322cb7e 256 ******************************************************************************/
mbed_official 159:7130f322cb7e 257 /**
mbed_official 159:7130f322cb7e 258 \defgroup CMSIS_core_register Defines and Type Definitions
mbed_official 159:7130f322cb7e 259 \brief Type definitions and defines for Cortex-M processor based devices.
mbed_official 159:7130f322cb7e 260 */
mbed_official 159:7130f322cb7e 261
mbed_official 159:7130f322cb7e 262 /**
mbed_official 159:7130f322cb7e 263 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 264 \defgroup CMSIS_CORE Status and Control Registers
mbed_official 159:7130f322cb7e 265 \brief Core Register type definitions.
mbed_official 159:7130f322cb7e 266 @{
mbed_official 159:7130f322cb7e 267 */
mbed_official 159:7130f322cb7e 268
mbed_official 159:7130f322cb7e 269 /**
mbed_official 159:7130f322cb7e 270 \brief Union type to access the Application Program Status Register (APSR).
mbed_official 159:7130f322cb7e 271 */
mbed_official 159:7130f322cb7e 272 typedef union
mbed_official 159:7130f322cb7e 273 {
mbed_official 159:7130f322cb7e 274 struct
mbed_official 159:7130f322cb7e 275 {
mbed_official 159:7130f322cb7e 276 uint32_t _reserved0:16; /*!< bit: 0..15 Reserved */
mbed_official 159:7130f322cb7e 277 uint32_t GE:4; /*!< bit: 16..19 Greater than or Equal flags */
mbed_official 159:7130f322cb7e 278 uint32_t _reserved1:7; /*!< bit: 20..26 Reserved */
mbed_official 159:7130f322cb7e 279 uint32_t Q:1; /*!< bit: 27 Saturation condition flag */
mbed_official 159:7130f322cb7e 280 uint32_t V:1; /*!< bit: 28 Overflow condition code flag */
mbed_official 159:7130f322cb7e 281 uint32_t C:1; /*!< bit: 29 Carry condition code flag */
mbed_official 159:7130f322cb7e 282 uint32_t Z:1; /*!< bit: 30 Zero condition code flag */
mbed_official 159:7130f322cb7e 283 uint32_t N:1; /*!< bit: 31 Negative condition code flag */
mbed_official 159:7130f322cb7e 284 } b; /*!< Structure used for bit access */
mbed_official 159:7130f322cb7e 285 uint32_t w; /*!< Type used for word access */
mbed_official 159:7130f322cb7e 286 } APSR_Type;
mbed_official 159:7130f322cb7e 287
mbed_official 159:7130f322cb7e 288 /* APSR Register Definitions */
mbed_official 159:7130f322cb7e 289 #define APSR_N_Pos 31U /*!< APSR: N Position */
mbed_official 159:7130f322cb7e 290 #define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */
mbed_official 159:7130f322cb7e 291
mbed_official 159:7130f322cb7e 292 #define APSR_Z_Pos 30U /*!< APSR: Z Position */
mbed_official 159:7130f322cb7e 293 #define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */
mbed_official 159:7130f322cb7e 294
mbed_official 159:7130f322cb7e 295 #define APSR_C_Pos 29U /*!< APSR: C Position */
mbed_official 159:7130f322cb7e 296 #define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */
mbed_official 159:7130f322cb7e 297
mbed_official 159:7130f322cb7e 298 #define APSR_V_Pos 28U /*!< APSR: V Position */
mbed_official 159:7130f322cb7e 299 #define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */
mbed_official 159:7130f322cb7e 300
mbed_official 159:7130f322cb7e 301 #define APSR_Q_Pos 27U /*!< APSR: Q Position */
mbed_official 159:7130f322cb7e 302 #define APSR_Q_Msk (1UL << APSR_Q_Pos) /*!< APSR: Q Mask */
mbed_official 159:7130f322cb7e 303
mbed_official 159:7130f322cb7e 304 #define APSR_GE_Pos 16U /*!< APSR: GE Position */
mbed_official 159:7130f322cb7e 305 #define APSR_GE_Msk (0xFUL << APSR_GE_Pos) /*!< APSR: GE Mask */
mbed_official 159:7130f322cb7e 306
mbed_official 159:7130f322cb7e 307
mbed_official 159:7130f322cb7e 308 /**
mbed_official 159:7130f322cb7e 309 \brief Union type to access the Interrupt Program Status Register (IPSR).
mbed_official 159:7130f322cb7e 310 */
mbed_official 159:7130f322cb7e 311 typedef union
mbed_official 159:7130f322cb7e 312 {
mbed_official 159:7130f322cb7e 313 struct
mbed_official 159:7130f322cb7e 314 {
mbed_official 159:7130f322cb7e 315 uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */
mbed_official 159:7130f322cb7e 316 uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */
mbed_official 159:7130f322cb7e 317 } b; /*!< Structure used for bit access */
mbed_official 159:7130f322cb7e 318 uint32_t w; /*!< Type used for word access */
mbed_official 159:7130f322cb7e 319 } IPSR_Type;
mbed_official 159:7130f322cb7e 320
mbed_official 159:7130f322cb7e 321 /* IPSR Register Definitions */
mbed_official 159:7130f322cb7e 322 #define IPSR_ISR_Pos 0U /*!< IPSR: ISR Position */
mbed_official 159:7130f322cb7e 323 #define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */
mbed_official 159:7130f322cb7e 324
mbed_official 159:7130f322cb7e 325
mbed_official 159:7130f322cb7e 326 /**
mbed_official 159:7130f322cb7e 327 \brief Union type to access the Special-Purpose Program Status Registers (xPSR).
mbed_official 159:7130f322cb7e 328 */
mbed_official 159:7130f322cb7e 329 typedef union
mbed_official 159:7130f322cb7e 330 {
mbed_official 159:7130f322cb7e 331 struct
mbed_official 159:7130f322cb7e 332 {
mbed_official 159:7130f322cb7e 333 uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */
mbed_official 159:7130f322cb7e 334 uint32_t _reserved0:1; /*!< bit: 9 Reserved */
mbed_official 159:7130f322cb7e 335 uint32_t ICI_IT_1:6; /*!< bit: 10..15 ICI/IT part 1 */
mbed_official 159:7130f322cb7e 336 uint32_t GE:4; /*!< bit: 16..19 Greater than or Equal flags */
mbed_official 159:7130f322cb7e 337 uint32_t _reserved1:4; /*!< bit: 20..23 Reserved */
mbed_official 159:7130f322cb7e 338 uint32_t T:1; /*!< bit: 24 Thumb bit */
mbed_official 159:7130f322cb7e 339 uint32_t ICI_IT_2:2; /*!< bit: 25..26 ICI/IT part 2 */
mbed_official 159:7130f322cb7e 340 uint32_t Q:1; /*!< bit: 27 Saturation condition flag */
mbed_official 159:7130f322cb7e 341 uint32_t V:1; /*!< bit: 28 Overflow condition code flag */
mbed_official 159:7130f322cb7e 342 uint32_t C:1; /*!< bit: 29 Carry condition code flag */
mbed_official 159:7130f322cb7e 343 uint32_t Z:1; /*!< bit: 30 Zero condition code flag */
mbed_official 159:7130f322cb7e 344 uint32_t N:1; /*!< bit: 31 Negative condition code flag */
mbed_official 159:7130f322cb7e 345 } b; /*!< Structure used for bit access */
mbed_official 159:7130f322cb7e 346 uint32_t w; /*!< Type used for word access */
mbed_official 159:7130f322cb7e 347 } xPSR_Type;
mbed_official 159:7130f322cb7e 348
mbed_official 159:7130f322cb7e 349 /* xPSR Register Definitions */
mbed_official 159:7130f322cb7e 350 #define xPSR_N_Pos 31U /*!< xPSR: N Position */
mbed_official 159:7130f322cb7e 351 #define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */
mbed_official 159:7130f322cb7e 352
mbed_official 159:7130f322cb7e 353 #define xPSR_Z_Pos 30U /*!< xPSR: Z Position */
mbed_official 159:7130f322cb7e 354 #define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */
mbed_official 159:7130f322cb7e 355
mbed_official 159:7130f322cb7e 356 #define xPSR_C_Pos 29U /*!< xPSR: C Position */
mbed_official 159:7130f322cb7e 357 #define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */
mbed_official 159:7130f322cb7e 358
mbed_official 159:7130f322cb7e 359 #define xPSR_V_Pos 28U /*!< xPSR: V Position */
mbed_official 159:7130f322cb7e 360 #define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */
mbed_official 159:7130f322cb7e 361
mbed_official 159:7130f322cb7e 362 #define xPSR_Q_Pos 27U /*!< xPSR: Q Position */
mbed_official 159:7130f322cb7e 363 #define xPSR_Q_Msk (1UL << xPSR_Q_Pos) /*!< xPSR: Q Mask */
mbed_official 159:7130f322cb7e 364
mbed_official 159:7130f322cb7e 365 #define xPSR_ICI_IT_2_Pos 25U /*!< xPSR: ICI/IT part 2 Position */
mbed_official 159:7130f322cb7e 366 #define xPSR_ICI_IT_2_Msk (3UL << xPSR_ICI_IT_2_Pos) /*!< xPSR: ICI/IT part 2 Mask */
mbed_official 159:7130f322cb7e 367
mbed_official 159:7130f322cb7e 368 #define xPSR_T_Pos 24U /*!< xPSR: T Position */
mbed_official 159:7130f322cb7e 369 #define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */
mbed_official 159:7130f322cb7e 370
mbed_official 159:7130f322cb7e 371 #define xPSR_GE_Pos 16U /*!< xPSR: GE Position */
mbed_official 159:7130f322cb7e 372 #define xPSR_GE_Msk (0xFUL << xPSR_GE_Pos) /*!< xPSR: GE Mask */
mbed_official 159:7130f322cb7e 373
mbed_official 159:7130f322cb7e 374 #define xPSR_ICI_IT_1_Pos 10U /*!< xPSR: ICI/IT part 1 Position */
mbed_official 159:7130f322cb7e 375 #define xPSR_ICI_IT_1_Msk (0x3FUL << xPSR_ICI_IT_1_Pos) /*!< xPSR: ICI/IT part 1 Mask */
mbed_official 159:7130f322cb7e 376
mbed_official 159:7130f322cb7e 377 #define xPSR_ISR_Pos 0U /*!< xPSR: ISR Position */
mbed_official 159:7130f322cb7e 378 #define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */
mbed_official 159:7130f322cb7e 379
mbed_official 159:7130f322cb7e 380
mbed_official 159:7130f322cb7e 381 /**
mbed_official 159:7130f322cb7e 382 \brief Union type to access the Control Registers (CONTROL).
mbed_official 159:7130f322cb7e 383 */
mbed_official 159:7130f322cb7e 384 typedef union
mbed_official 159:7130f322cb7e 385 {
mbed_official 159:7130f322cb7e 386 struct
mbed_official 159:7130f322cb7e 387 {
mbed_official 159:7130f322cb7e 388 uint32_t nPRIV:1; /*!< bit: 0 Execution privilege in Thread mode */
mbed_official 159:7130f322cb7e 389 uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */
mbed_official 159:7130f322cb7e 390 uint32_t FPCA:1; /*!< bit: 2 FP extension active flag */
mbed_official 159:7130f322cb7e 391 uint32_t _reserved0:29; /*!< bit: 3..31 Reserved */
mbed_official 159:7130f322cb7e 392 } b; /*!< Structure used for bit access */
mbed_official 159:7130f322cb7e 393 uint32_t w; /*!< Type used for word access */
mbed_official 159:7130f322cb7e 394 } CONTROL_Type;
mbed_official 159:7130f322cb7e 395
mbed_official 159:7130f322cb7e 396 /* CONTROL Register Definitions */
mbed_official 159:7130f322cb7e 397 #define CONTROL_FPCA_Pos 2U /*!< CONTROL: FPCA Position */
mbed_official 159:7130f322cb7e 398 #define CONTROL_FPCA_Msk (1UL << CONTROL_FPCA_Pos) /*!< CONTROL: FPCA Mask */
mbed_official 159:7130f322cb7e 399
mbed_official 159:7130f322cb7e 400 #define CONTROL_SPSEL_Pos 1U /*!< CONTROL: SPSEL Position */
mbed_official 159:7130f322cb7e 401 #define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */
mbed_official 159:7130f322cb7e 402
mbed_official 159:7130f322cb7e 403 #define CONTROL_nPRIV_Pos 0U /*!< CONTROL: nPRIV Position */
mbed_official 159:7130f322cb7e 404 #define CONTROL_nPRIV_Msk (1UL /*<< CONTROL_nPRIV_Pos*/) /*!< CONTROL: nPRIV Mask */
mbed_official 159:7130f322cb7e 405
mbed_official 159:7130f322cb7e 406 /*@} end of group CMSIS_CORE */
mbed_official 159:7130f322cb7e 407
mbed_official 159:7130f322cb7e 408
mbed_official 159:7130f322cb7e 409 /**
mbed_official 159:7130f322cb7e 410 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 411 \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC)
mbed_official 159:7130f322cb7e 412 \brief Type definitions for the NVIC Registers
mbed_official 159:7130f322cb7e 413 @{
mbed_official 159:7130f322cb7e 414 */
mbed_official 159:7130f322cb7e 415
mbed_official 159:7130f322cb7e 416 /**
mbed_official 159:7130f322cb7e 417 \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC).
mbed_official 159:7130f322cb7e 418 */
mbed_official 159:7130f322cb7e 419 typedef struct
mbed_official 159:7130f322cb7e 420 {
mbed_official 159:7130f322cb7e 421 __IOM uint32_t ISER[8U]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */
mbed_official 159:7130f322cb7e 422 uint32_t RESERVED0[24U];
mbed_official 159:7130f322cb7e 423 __IOM uint32_t ICER[8U]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */
mbed_official 159:7130f322cb7e 424 uint32_t RSERVED1[24U];
mbed_official 159:7130f322cb7e 425 __IOM uint32_t ISPR[8U]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */
mbed_official 159:7130f322cb7e 426 uint32_t RESERVED2[24U];
mbed_official 159:7130f322cb7e 427 __IOM uint32_t ICPR[8U]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */
mbed_official 159:7130f322cb7e 428 uint32_t RESERVED3[24U];
mbed_official 159:7130f322cb7e 429 __IOM uint32_t IABR[8U]; /*!< Offset: 0x200 (R/W) Interrupt Active bit Register */
mbed_official 159:7130f322cb7e 430 uint32_t RESERVED4[56U];
mbed_official 159:7130f322cb7e 431 __IOM uint8_t IP[240U]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register (8Bit wide) */
mbed_official 159:7130f322cb7e 432 uint32_t RESERVED5[644U];
mbed_official 159:7130f322cb7e 433 __OM uint32_t STIR; /*!< Offset: 0xE00 ( /W) Software Trigger Interrupt Register */
mbed_official 159:7130f322cb7e 434 } NVIC_Type;
mbed_official 159:7130f322cb7e 435
mbed_official 159:7130f322cb7e 436 /* Software Triggered Interrupt Register Definitions */
mbed_official 159:7130f322cb7e 437 #define NVIC_STIR_INTID_Pos 0U /*!< STIR: INTLINESNUM Position */
mbed_official 159:7130f322cb7e 438 #define NVIC_STIR_INTID_Msk (0x1FFUL /*<< NVIC_STIR_INTID_Pos*/) /*!< STIR: INTLINESNUM Mask */
mbed_official 159:7130f322cb7e 439
mbed_official 159:7130f322cb7e 440 /*@} end of group CMSIS_NVIC */
mbed_official 159:7130f322cb7e 441
mbed_official 159:7130f322cb7e 442
mbed_official 159:7130f322cb7e 443 /**
mbed_official 159:7130f322cb7e 444 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 445 \defgroup CMSIS_SCB System Control Block (SCB)
mbed_official 159:7130f322cb7e 446 \brief Type definitions for the System Control Block Registers
mbed_official 159:7130f322cb7e 447 @{
mbed_official 159:7130f322cb7e 448 */
mbed_official 159:7130f322cb7e 449
mbed_official 159:7130f322cb7e 450 /**
mbed_official 159:7130f322cb7e 451 \brief Structure type to access the System Control Block (SCB).
mbed_official 159:7130f322cb7e 452 */
mbed_official 159:7130f322cb7e 453 typedef struct
mbed_official 159:7130f322cb7e 454 {
mbed_official 159:7130f322cb7e 455 __IM uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */
mbed_official 159:7130f322cb7e 456 __IOM uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */
mbed_official 159:7130f322cb7e 457 __IOM uint32_t VTOR; /*!< Offset: 0x008 (R/W) Vector Table Offset Register */
mbed_official 159:7130f322cb7e 458 __IOM uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */
mbed_official 159:7130f322cb7e 459 __IOM uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */
mbed_official 159:7130f322cb7e 460 __IOM uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */
mbed_official 159:7130f322cb7e 461 __IOM uint8_t SHPR[12U]; /*!< Offset: 0x018 (R/W) System Handlers Priority Registers (4-7, 8-11, 12-15) */
mbed_official 159:7130f322cb7e 462 __IOM uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */
mbed_official 159:7130f322cb7e 463 __IOM uint32_t CFSR; /*!< Offset: 0x028 (R/W) Configurable Fault Status Register */
mbed_official 159:7130f322cb7e 464 __IOM uint32_t HFSR; /*!< Offset: 0x02C (R/W) HardFault Status Register */
mbed_official 159:7130f322cb7e 465 __IOM uint32_t DFSR; /*!< Offset: 0x030 (R/W) Debug Fault Status Register */
mbed_official 159:7130f322cb7e 466 __IOM uint32_t MMFAR; /*!< Offset: 0x034 (R/W) MemManage Fault Address Register */
mbed_official 159:7130f322cb7e 467 __IOM uint32_t BFAR; /*!< Offset: 0x038 (R/W) BusFault Address Register */
mbed_official 159:7130f322cb7e 468 __IOM uint32_t AFSR; /*!< Offset: 0x03C (R/W) Auxiliary Fault Status Register */
mbed_official 159:7130f322cb7e 469 __IM uint32_t ID_PFR[2U]; /*!< Offset: 0x040 (R/ ) Processor Feature Register */
mbed_official 159:7130f322cb7e 470 __IM uint32_t ID_DFR; /*!< Offset: 0x048 (R/ ) Debug Feature Register */
mbed_official 159:7130f322cb7e 471 __IM uint32_t ID_AFR; /*!< Offset: 0x04C (R/ ) Auxiliary Feature Register */
mbed_official 159:7130f322cb7e 472 __IM uint32_t ID_MFR[4U]; /*!< Offset: 0x050 (R/ ) Memory Model Feature Register */
mbed_official 159:7130f322cb7e 473 __IM uint32_t ID_ISAR[5U]; /*!< Offset: 0x060 (R/ ) Instruction Set Attributes Register */
mbed_official 159:7130f322cb7e 474 uint32_t RESERVED0[1U];
mbed_official 159:7130f322cb7e 475 __IM uint32_t CLIDR; /*!< Offset: 0x078 (R/ ) Cache Level ID register */
mbed_official 159:7130f322cb7e 476 __IM uint32_t CTR; /*!< Offset: 0x07C (R/ ) Cache Type register */
mbed_official 159:7130f322cb7e 477 __IM uint32_t CCSIDR; /*!< Offset: 0x080 (R/ ) Cache Size ID Register */
mbed_official 159:7130f322cb7e 478 __IOM uint32_t CSSELR; /*!< Offset: 0x084 (R/W) Cache Size Selection Register */
mbed_official 159:7130f322cb7e 479 __IOM uint32_t CPACR; /*!< Offset: 0x088 (R/W) Coprocessor Access Control Register */
mbed_official 159:7130f322cb7e 480 uint32_t RESERVED3[93U];
mbed_official 159:7130f322cb7e 481 __OM uint32_t STIR; /*!< Offset: 0x200 ( /W) Software Triggered Interrupt Register */
mbed_official 159:7130f322cb7e 482 uint32_t RESERVED4[15U];
mbed_official 159:7130f322cb7e 483 __IM uint32_t MVFR0; /*!< Offset: 0x240 (R/ ) Media and VFP Feature Register 0 */
mbed_official 159:7130f322cb7e 484 __IM uint32_t MVFR1; /*!< Offset: 0x244 (R/ ) Media and VFP Feature Register 1 */
mbed_official 159:7130f322cb7e 485 __IM uint32_t MVFR2; /*!< Offset: 0x248 (R/ ) Media and VFP Feature Register 1 */
mbed_official 159:7130f322cb7e 486 uint32_t RESERVED5[1U];
mbed_official 159:7130f322cb7e 487 __OM uint32_t ICIALLU; /*!< Offset: 0x250 ( /W) I-Cache Invalidate All to PoU */
mbed_official 159:7130f322cb7e 488 uint32_t RESERVED6[1U];
mbed_official 159:7130f322cb7e 489 __OM uint32_t ICIMVAU; /*!< Offset: 0x258 ( /W) I-Cache Invalidate by MVA to PoU */
mbed_official 159:7130f322cb7e 490 __OM uint32_t DCIMVAC; /*!< Offset: 0x25C ( /W) D-Cache Invalidate by MVA to PoC */
mbed_official 159:7130f322cb7e 491 __OM uint32_t DCISW; /*!< Offset: 0x260 ( /W) D-Cache Invalidate by Set-way */
mbed_official 159:7130f322cb7e 492 __OM uint32_t DCCMVAU; /*!< Offset: 0x264 ( /W) D-Cache Clean by MVA to PoU */
mbed_official 159:7130f322cb7e 493 __OM uint32_t DCCMVAC; /*!< Offset: 0x268 ( /W) D-Cache Clean by MVA to PoC */
mbed_official 159:7130f322cb7e 494 __OM uint32_t DCCSW; /*!< Offset: 0x26C ( /W) D-Cache Clean by Set-way */
mbed_official 159:7130f322cb7e 495 __OM uint32_t DCCIMVAC; /*!< Offset: 0x270 ( /W) D-Cache Clean and Invalidate by MVA to PoC */
mbed_official 159:7130f322cb7e 496 __OM uint32_t DCCISW; /*!< Offset: 0x274 ( /W) D-Cache Clean and Invalidate by Set-way */
mbed_official 159:7130f322cb7e 497 uint32_t RESERVED7[6U];
mbed_official 159:7130f322cb7e 498 __IOM uint32_t ITCMCR; /*!< Offset: 0x290 (R/W) Instruction Tightly-Coupled Memory Control Register */
mbed_official 159:7130f322cb7e 499 __IOM uint32_t DTCMCR; /*!< Offset: 0x294 (R/W) Data Tightly-Coupled Memory Control Registers */
mbed_official 159:7130f322cb7e 500 __IOM uint32_t AHBPCR; /*!< Offset: 0x298 (R/W) AHBP Control Register */
mbed_official 159:7130f322cb7e 501 __IOM uint32_t CACR; /*!< Offset: 0x29C (R/W) L1 Cache Control Register */
mbed_official 159:7130f322cb7e 502 __IOM uint32_t AHBSCR; /*!< Offset: 0x2A0 (R/W) AHB Slave Control Register */
mbed_official 159:7130f322cb7e 503 uint32_t RESERVED8[1U];
mbed_official 159:7130f322cb7e 504 __IOM uint32_t ABFSR; /*!< Offset: 0x2A8 (R/W) Auxiliary Bus Fault Status Register */
mbed_official 159:7130f322cb7e 505 } SCB_Type;
mbed_official 159:7130f322cb7e 506
mbed_official 159:7130f322cb7e 507 /* SCB CPUID Register Definitions */
mbed_official 159:7130f322cb7e 508 #define SCB_CPUID_IMPLEMENTER_Pos 24U /*!< SCB CPUID: IMPLEMENTER Position */
mbed_official 159:7130f322cb7e 509 #define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */
mbed_official 159:7130f322cb7e 510
mbed_official 159:7130f322cb7e 511 #define SCB_CPUID_VARIANT_Pos 20U /*!< SCB CPUID: VARIANT Position */
mbed_official 159:7130f322cb7e 512 #define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */
mbed_official 159:7130f322cb7e 513
mbed_official 159:7130f322cb7e 514 #define SCB_CPUID_ARCHITECTURE_Pos 16U /*!< SCB CPUID: ARCHITECTURE Position */
mbed_official 159:7130f322cb7e 515 #define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */
mbed_official 159:7130f322cb7e 516
mbed_official 159:7130f322cb7e 517 #define SCB_CPUID_PARTNO_Pos 4U /*!< SCB CPUID: PARTNO Position */
mbed_official 159:7130f322cb7e 518 #define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */
mbed_official 159:7130f322cb7e 519
mbed_official 159:7130f322cb7e 520 #define SCB_CPUID_REVISION_Pos 0U /*!< SCB CPUID: REVISION Position */
mbed_official 159:7130f322cb7e 521 #define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */
mbed_official 159:7130f322cb7e 522
mbed_official 159:7130f322cb7e 523 /* SCB Interrupt Control State Register Definitions */
mbed_official 159:7130f322cb7e 524 #define SCB_ICSR_NMIPENDSET_Pos 31U /*!< SCB ICSR: NMIPENDSET Position */
mbed_official 159:7130f322cb7e 525 #define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */
mbed_official 159:7130f322cb7e 526
mbed_official 159:7130f322cb7e 527 #define SCB_ICSR_PENDSVSET_Pos 28U /*!< SCB ICSR: PENDSVSET Position */
mbed_official 159:7130f322cb7e 528 #define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */
mbed_official 159:7130f322cb7e 529
mbed_official 159:7130f322cb7e 530 #define SCB_ICSR_PENDSVCLR_Pos 27U /*!< SCB ICSR: PENDSVCLR Position */
mbed_official 159:7130f322cb7e 531 #define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */
mbed_official 159:7130f322cb7e 532
mbed_official 159:7130f322cb7e 533 #define SCB_ICSR_PENDSTSET_Pos 26U /*!< SCB ICSR: PENDSTSET Position */
mbed_official 159:7130f322cb7e 534 #define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */
mbed_official 159:7130f322cb7e 535
mbed_official 159:7130f322cb7e 536 #define SCB_ICSR_PENDSTCLR_Pos 25U /*!< SCB ICSR: PENDSTCLR Position */
mbed_official 159:7130f322cb7e 537 #define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */
mbed_official 159:7130f322cb7e 538
mbed_official 159:7130f322cb7e 539 #define SCB_ICSR_ISRPREEMPT_Pos 23U /*!< SCB ICSR: ISRPREEMPT Position */
mbed_official 159:7130f322cb7e 540 #define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */
mbed_official 159:7130f322cb7e 541
mbed_official 159:7130f322cb7e 542 #define SCB_ICSR_ISRPENDING_Pos 22U /*!< SCB ICSR: ISRPENDING Position */
mbed_official 159:7130f322cb7e 543 #define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */
mbed_official 159:7130f322cb7e 544
mbed_official 159:7130f322cb7e 545 #define SCB_ICSR_VECTPENDING_Pos 12U /*!< SCB ICSR: VECTPENDING Position */
mbed_official 159:7130f322cb7e 546 #define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */
mbed_official 159:7130f322cb7e 547
mbed_official 159:7130f322cb7e 548 #define SCB_ICSR_RETTOBASE_Pos 11U /*!< SCB ICSR: RETTOBASE Position */
mbed_official 159:7130f322cb7e 549 #define SCB_ICSR_RETTOBASE_Msk (1UL << SCB_ICSR_RETTOBASE_Pos) /*!< SCB ICSR: RETTOBASE Mask */
mbed_official 159:7130f322cb7e 550
mbed_official 159:7130f322cb7e 551 #define SCB_ICSR_VECTACTIVE_Pos 0U /*!< SCB ICSR: VECTACTIVE Position */
mbed_official 159:7130f322cb7e 552 #define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */
mbed_official 159:7130f322cb7e 553
mbed_official 159:7130f322cb7e 554 /* SCB Vector Table Offset Register Definitions */
mbed_official 159:7130f322cb7e 555 #define SCB_VTOR_TBLOFF_Pos 7U /*!< SCB VTOR: TBLOFF Position */
mbed_official 159:7130f322cb7e 556 #define SCB_VTOR_TBLOFF_Msk (0x1FFFFFFUL << SCB_VTOR_TBLOFF_Pos) /*!< SCB VTOR: TBLOFF Mask */
mbed_official 159:7130f322cb7e 557
mbed_official 159:7130f322cb7e 558 /* SCB Application Interrupt and Reset Control Register Definitions */
mbed_official 159:7130f322cb7e 559 #define SCB_AIRCR_VECTKEY_Pos 16U /*!< SCB AIRCR: VECTKEY Position */
mbed_official 159:7130f322cb7e 560 #define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */
mbed_official 159:7130f322cb7e 561
mbed_official 159:7130f322cb7e 562 #define SCB_AIRCR_VECTKEYSTAT_Pos 16U /*!< SCB AIRCR: VECTKEYSTAT Position */
mbed_official 159:7130f322cb7e 563 #define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */
mbed_official 159:7130f322cb7e 564
mbed_official 159:7130f322cb7e 565 #define SCB_AIRCR_ENDIANESS_Pos 15U /*!< SCB AIRCR: ENDIANESS Position */
mbed_official 159:7130f322cb7e 566 #define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */
mbed_official 159:7130f322cb7e 567
mbed_official 159:7130f322cb7e 568 #define SCB_AIRCR_PRIGROUP_Pos 8U /*!< SCB AIRCR: PRIGROUP Position */
mbed_official 159:7130f322cb7e 569 #define SCB_AIRCR_PRIGROUP_Msk (7UL << SCB_AIRCR_PRIGROUP_Pos) /*!< SCB AIRCR: PRIGROUP Mask */
mbed_official 159:7130f322cb7e 570
mbed_official 159:7130f322cb7e 571 #define SCB_AIRCR_SYSRESETREQ_Pos 2U /*!< SCB AIRCR: SYSRESETREQ Position */
mbed_official 159:7130f322cb7e 572 #define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */
mbed_official 159:7130f322cb7e 573
mbed_official 159:7130f322cb7e 574 #define SCB_AIRCR_VECTCLRACTIVE_Pos 1U /*!< SCB AIRCR: VECTCLRACTIVE Position */
mbed_official 159:7130f322cb7e 575 #define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */
mbed_official 159:7130f322cb7e 576
mbed_official 159:7130f322cb7e 577 #define SCB_AIRCR_VECTRESET_Pos 0U /*!< SCB AIRCR: VECTRESET Position */
mbed_official 159:7130f322cb7e 578 #define SCB_AIRCR_VECTRESET_Msk (1UL /*<< SCB_AIRCR_VECTRESET_Pos*/) /*!< SCB AIRCR: VECTRESET Mask */
mbed_official 159:7130f322cb7e 579
mbed_official 159:7130f322cb7e 580 /* SCB System Control Register Definitions */
mbed_official 159:7130f322cb7e 581 #define SCB_SCR_SEVONPEND_Pos 4U /*!< SCB SCR: SEVONPEND Position */
mbed_official 159:7130f322cb7e 582 #define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */
mbed_official 159:7130f322cb7e 583
mbed_official 159:7130f322cb7e 584 #define SCB_SCR_SLEEPDEEP_Pos 2U /*!< SCB SCR: SLEEPDEEP Position */
mbed_official 159:7130f322cb7e 585 #define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */
mbed_official 159:7130f322cb7e 586
mbed_official 159:7130f322cb7e 587 #define SCB_SCR_SLEEPONEXIT_Pos 1U /*!< SCB SCR: SLEEPONEXIT Position */
mbed_official 159:7130f322cb7e 588 #define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */
mbed_official 159:7130f322cb7e 589
mbed_official 159:7130f322cb7e 590 /* SCB Configuration Control Register Definitions */
mbed_official 159:7130f322cb7e 591 #define SCB_CCR_BP_Pos 18U /*!< SCB CCR: Branch prediction enable bit Position */
mbed_official 159:7130f322cb7e 592 #define SCB_CCR_BP_Msk (1UL << SCB_CCR_BP_Pos) /*!< SCB CCR: Branch prediction enable bit Mask */
mbed_official 159:7130f322cb7e 593
mbed_official 159:7130f322cb7e 594 #define SCB_CCR_IC_Pos 17U /*!< SCB CCR: Instruction cache enable bit Position */
mbed_official 159:7130f322cb7e 595 #define SCB_CCR_IC_Msk (1UL << SCB_CCR_IC_Pos) /*!< SCB CCR: Instruction cache enable bit Mask */
mbed_official 159:7130f322cb7e 596
mbed_official 159:7130f322cb7e 597 #define SCB_CCR_DC_Pos 16U /*!< SCB CCR: Cache enable bit Position */
mbed_official 159:7130f322cb7e 598 #define SCB_CCR_DC_Msk (1UL << SCB_CCR_DC_Pos) /*!< SCB CCR: Cache enable bit Mask */
mbed_official 159:7130f322cb7e 599
mbed_official 159:7130f322cb7e 600 #define SCB_CCR_STKALIGN_Pos 9U /*!< SCB CCR: STKALIGN Position */
mbed_official 159:7130f322cb7e 601 #define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */
mbed_official 159:7130f322cb7e 602
mbed_official 159:7130f322cb7e 603 #define SCB_CCR_BFHFNMIGN_Pos 8U /*!< SCB CCR: BFHFNMIGN Position */
mbed_official 159:7130f322cb7e 604 #define SCB_CCR_BFHFNMIGN_Msk (1UL << SCB_CCR_BFHFNMIGN_Pos) /*!< SCB CCR: BFHFNMIGN Mask */
mbed_official 159:7130f322cb7e 605
mbed_official 159:7130f322cb7e 606 #define SCB_CCR_DIV_0_TRP_Pos 4U /*!< SCB CCR: DIV_0_TRP Position */
mbed_official 159:7130f322cb7e 607 #define SCB_CCR_DIV_0_TRP_Msk (1UL << SCB_CCR_DIV_0_TRP_Pos) /*!< SCB CCR: DIV_0_TRP Mask */
mbed_official 159:7130f322cb7e 608
mbed_official 159:7130f322cb7e 609 #define SCB_CCR_UNALIGN_TRP_Pos 3U /*!< SCB CCR: UNALIGN_TRP Position */
mbed_official 159:7130f322cb7e 610 #define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */
mbed_official 159:7130f322cb7e 611
mbed_official 159:7130f322cb7e 612 #define SCB_CCR_USERSETMPEND_Pos 1U /*!< SCB CCR: USERSETMPEND Position */
mbed_official 159:7130f322cb7e 613 #define SCB_CCR_USERSETMPEND_Msk (1UL << SCB_CCR_USERSETMPEND_Pos) /*!< SCB CCR: USERSETMPEND Mask */
mbed_official 159:7130f322cb7e 614
mbed_official 159:7130f322cb7e 615 #define SCB_CCR_NONBASETHRDENA_Pos 0U /*!< SCB CCR: NONBASETHRDENA Position */
mbed_official 159:7130f322cb7e 616 #define SCB_CCR_NONBASETHRDENA_Msk (1UL /*<< SCB_CCR_NONBASETHRDENA_Pos*/) /*!< SCB CCR: NONBASETHRDENA Mask */
mbed_official 159:7130f322cb7e 617
mbed_official 159:7130f322cb7e 618 /* SCB System Handler Control and State Register Definitions */
mbed_official 159:7130f322cb7e 619 #define SCB_SHCSR_USGFAULTENA_Pos 18U /*!< SCB SHCSR: USGFAULTENA Position */
mbed_official 159:7130f322cb7e 620 #define SCB_SHCSR_USGFAULTENA_Msk (1UL << SCB_SHCSR_USGFAULTENA_Pos) /*!< SCB SHCSR: USGFAULTENA Mask */
mbed_official 159:7130f322cb7e 621
mbed_official 159:7130f322cb7e 622 #define SCB_SHCSR_BUSFAULTENA_Pos 17U /*!< SCB SHCSR: BUSFAULTENA Position */
mbed_official 159:7130f322cb7e 623 #define SCB_SHCSR_BUSFAULTENA_Msk (1UL << SCB_SHCSR_BUSFAULTENA_Pos) /*!< SCB SHCSR: BUSFAULTENA Mask */
mbed_official 159:7130f322cb7e 624
mbed_official 159:7130f322cb7e 625 #define SCB_SHCSR_MEMFAULTENA_Pos 16U /*!< SCB SHCSR: MEMFAULTENA Position */
mbed_official 159:7130f322cb7e 626 #define SCB_SHCSR_MEMFAULTENA_Msk (1UL << SCB_SHCSR_MEMFAULTENA_Pos) /*!< SCB SHCSR: MEMFAULTENA Mask */
mbed_official 159:7130f322cb7e 627
mbed_official 159:7130f322cb7e 628 #define SCB_SHCSR_SVCALLPENDED_Pos 15U /*!< SCB SHCSR: SVCALLPENDED Position */
mbed_official 159:7130f322cb7e 629 #define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */
mbed_official 159:7130f322cb7e 630
mbed_official 159:7130f322cb7e 631 #define SCB_SHCSR_BUSFAULTPENDED_Pos 14U /*!< SCB SHCSR: BUSFAULTPENDED Position */
mbed_official 159:7130f322cb7e 632 #define SCB_SHCSR_BUSFAULTPENDED_Msk (1UL << SCB_SHCSR_BUSFAULTPENDED_Pos) /*!< SCB SHCSR: BUSFAULTPENDED Mask */
mbed_official 159:7130f322cb7e 633
mbed_official 159:7130f322cb7e 634 #define SCB_SHCSR_MEMFAULTPENDED_Pos 13U /*!< SCB SHCSR: MEMFAULTPENDED Position */
mbed_official 159:7130f322cb7e 635 #define SCB_SHCSR_MEMFAULTPENDED_Msk (1UL << SCB_SHCSR_MEMFAULTPENDED_Pos) /*!< SCB SHCSR: MEMFAULTPENDED Mask */
mbed_official 159:7130f322cb7e 636
mbed_official 159:7130f322cb7e 637 #define SCB_SHCSR_USGFAULTPENDED_Pos 12U /*!< SCB SHCSR: USGFAULTPENDED Position */
mbed_official 159:7130f322cb7e 638 #define SCB_SHCSR_USGFAULTPENDED_Msk (1UL << SCB_SHCSR_USGFAULTPENDED_Pos) /*!< SCB SHCSR: USGFAULTPENDED Mask */
mbed_official 159:7130f322cb7e 639
mbed_official 159:7130f322cb7e 640 #define SCB_SHCSR_SYSTICKACT_Pos 11U /*!< SCB SHCSR: SYSTICKACT Position */
mbed_official 159:7130f322cb7e 641 #define SCB_SHCSR_SYSTICKACT_Msk (1UL << SCB_SHCSR_SYSTICKACT_Pos) /*!< SCB SHCSR: SYSTICKACT Mask */
mbed_official 159:7130f322cb7e 642
mbed_official 159:7130f322cb7e 643 #define SCB_SHCSR_PENDSVACT_Pos 10U /*!< SCB SHCSR: PENDSVACT Position */
mbed_official 159:7130f322cb7e 644 #define SCB_SHCSR_PENDSVACT_Msk (1UL << SCB_SHCSR_PENDSVACT_Pos) /*!< SCB SHCSR: PENDSVACT Mask */
mbed_official 159:7130f322cb7e 645
mbed_official 159:7130f322cb7e 646 #define SCB_SHCSR_MONITORACT_Pos 8U /*!< SCB SHCSR: MONITORACT Position */
mbed_official 159:7130f322cb7e 647 #define SCB_SHCSR_MONITORACT_Msk (1UL << SCB_SHCSR_MONITORACT_Pos) /*!< SCB SHCSR: MONITORACT Mask */
mbed_official 159:7130f322cb7e 648
mbed_official 159:7130f322cb7e 649 #define SCB_SHCSR_SVCALLACT_Pos 7U /*!< SCB SHCSR: SVCALLACT Position */
mbed_official 159:7130f322cb7e 650 #define SCB_SHCSR_SVCALLACT_Msk (1UL << SCB_SHCSR_SVCALLACT_Pos) /*!< SCB SHCSR: SVCALLACT Mask */
mbed_official 159:7130f322cb7e 651
mbed_official 159:7130f322cb7e 652 #define SCB_SHCSR_USGFAULTACT_Pos 3U /*!< SCB SHCSR: USGFAULTACT Position */
mbed_official 159:7130f322cb7e 653 #define SCB_SHCSR_USGFAULTACT_Msk (1UL << SCB_SHCSR_USGFAULTACT_Pos) /*!< SCB SHCSR: USGFAULTACT Mask */
mbed_official 159:7130f322cb7e 654
mbed_official 159:7130f322cb7e 655 #define SCB_SHCSR_BUSFAULTACT_Pos 1U /*!< SCB SHCSR: BUSFAULTACT Position */
mbed_official 159:7130f322cb7e 656 #define SCB_SHCSR_BUSFAULTACT_Msk (1UL << SCB_SHCSR_BUSFAULTACT_Pos) /*!< SCB SHCSR: BUSFAULTACT Mask */
mbed_official 159:7130f322cb7e 657
mbed_official 159:7130f322cb7e 658 #define SCB_SHCSR_MEMFAULTACT_Pos 0U /*!< SCB SHCSR: MEMFAULTACT Position */
mbed_official 159:7130f322cb7e 659 #define SCB_SHCSR_MEMFAULTACT_Msk (1UL /*<< SCB_SHCSR_MEMFAULTACT_Pos*/) /*!< SCB SHCSR: MEMFAULTACT Mask */
mbed_official 159:7130f322cb7e 660
mbed_official 159:7130f322cb7e 661 /* SCB Configurable Fault Status Register Definitions */
mbed_official 159:7130f322cb7e 662 #define SCB_CFSR_USGFAULTSR_Pos 16U /*!< SCB CFSR: Usage Fault Status Register Position */
mbed_official 159:7130f322cb7e 663 #define SCB_CFSR_USGFAULTSR_Msk (0xFFFFUL << SCB_CFSR_USGFAULTSR_Pos) /*!< SCB CFSR: Usage Fault Status Register Mask */
mbed_official 159:7130f322cb7e 664
mbed_official 159:7130f322cb7e 665 #define SCB_CFSR_BUSFAULTSR_Pos 8U /*!< SCB CFSR: Bus Fault Status Register Position */
mbed_official 159:7130f322cb7e 666 #define SCB_CFSR_BUSFAULTSR_Msk (0xFFUL << SCB_CFSR_BUSFAULTSR_Pos) /*!< SCB CFSR: Bus Fault Status Register Mask */
mbed_official 159:7130f322cb7e 667
mbed_official 159:7130f322cb7e 668 #define SCB_CFSR_MEMFAULTSR_Pos 0U /*!< SCB CFSR: Memory Manage Fault Status Register Position */
mbed_official 159:7130f322cb7e 669 #define SCB_CFSR_MEMFAULTSR_Msk (0xFFUL /*<< SCB_CFSR_MEMFAULTSR_Pos*/) /*!< SCB CFSR: Memory Manage Fault Status Register Mask */
mbed_official 159:7130f322cb7e 670
mbed_official 159:7130f322cb7e 671 /* MemManage Fault Status Register (part of SCB Configurable Fault Status Register) */
mbed_official 159:7130f322cb7e 672 #define SCB_CFSR_MMARVALID_Pos (SCB_SHCSR_MEMFAULTACT_Pos + 7U) /*!< SCB CFSR (MMFSR): MMARVALID Position */
mbed_official 159:7130f322cb7e 673 #define SCB_CFSR_MMARVALID_Msk (1UL << SCB_CFSR_MMARVALID_Pos) /*!< SCB CFSR (MMFSR): MMARVALID Mask */
mbed_official 159:7130f322cb7e 674
mbed_official 159:7130f322cb7e 675 #define SCB_CFSR_MLSPERR_Pos (SCB_SHCSR_MEMFAULTACT_Pos + 5U) /*!< SCB CFSR (MMFSR): MLSPERR Position */
mbed_official 159:7130f322cb7e 676 #define SCB_CFSR_MLSPERR_Msk (1UL << SCB_CFSR_MLSPERR_Pos) /*!< SCB CFSR (MMFSR): MLSPERR Mask */
mbed_official 159:7130f322cb7e 677
mbed_official 159:7130f322cb7e 678 #define SCB_CFSR_MSTKERR_Pos (SCB_SHCSR_MEMFAULTACT_Pos + 4U) /*!< SCB CFSR (MMFSR): MSTKERR Position */
mbed_official 159:7130f322cb7e 679 #define SCB_CFSR_MSTKERR_Msk (1UL << SCB_CFSR_MSTKERR_Pos) /*!< SCB CFSR (MMFSR): MSTKERR Mask */
mbed_official 159:7130f322cb7e 680
mbed_official 159:7130f322cb7e 681 #define SCB_CFSR_MUNSTKERR_Pos (SCB_SHCSR_MEMFAULTACT_Pos + 3U) /*!< SCB CFSR (MMFSR): MUNSTKERR Position */
mbed_official 159:7130f322cb7e 682 #define SCB_CFSR_MUNSTKERR_Msk (1UL << SCB_CFSR_MUNSTKERR_Pos) /*!< SCB CFSR (MMFSR): MUNSTKERR Mask */
mbed_official 159:7130f322cb7e 683
mbed_official 159:7130f322cb7e 684 #define SCB_CFSR_DACCVIOL_Pos (SCB_SHCSR_MEMFAULTACT_Pos + 1U) /*!< SCB CFSR (MMFSR): DACCVIOL Position */
mbed_official 159:7130f322cb7e 685 #define SCB_CFSR_DACCVIOL_Msk (1UL << SCB_CFSR_DACCVIOL_Pos) /*!< SCB CFSR (MMFSR): DACCVIOL Mask */
mbed_official 159:7130f322cb7e 686
mbed_official 159:7130f322cb7e 687 #define SCB_CFSR_IACCVIOL_Pos (SCB_SHCSR_MEMFAULTACT_Pos + 0U) /*!< SCB CFSR (MMFSR): IACCVIOL Position */
mbed_official 159:7130f322cb7e 688 #define SCB_CFSR_IACCVIOL_Msk (1UL /*<< SCB_CFSR_IACCVIOL_Pos*/) /*!< SCB CFSR (MMFSR): IACCVIOL Mask */
mbed_official 159:7130f322cb7e 689
mbed_official 159:7130f322cb7e 690 /* BusFault Status Register (part of SCB Configurable Fault Status Register) */
mbed_official 159:7130f322cb7e 691 #define SCB_CFSR_BFARVALID_Pos (SCB_CFSR_BUSFAULTSR_Pos + 7U) /*!< SCB CFSR (BFSR): BFARVALID Position */
mbed_official 159:7130f322cb7e 692 #define SCB_CFSR_BFARVALID_Msk (1UL << SCB_CFSR_BFARVALID_Pos) /*!< SCB CFSR (BFSR): BFARVALID Mask */
mbed_official 159:7130f322cb7e 693
mbed_official 159:7130f322cb7e 694 #define SCB_CFSR_LSPERR_Pos (SCB_CFSR_BUSFAULTSR_Pos + 5U) /*!< SCB CFSR (BFSR): LSPERR Position */
mbed_official 159:7130f322cb7e 695 #define SCB_CFSR_LSPERR_Msk (1UL << SCB_CFSR_LSPERR_Pos) /*!< SCB CFSR (BFSR): LSPERR Mask */
mbed_official 159:7130f322cb7e 696
mbed_official 159:7130f322cb7e 697 #define SCB_CFSR_STKERR_Pos (SCB_CFSR_BUSFAULTSR_Pos + 4U) /*!< SCB CFSR (BFSR): STKERR Position */
mbed_official 159:7130f322cb7e 698 #define SCB_CFSR_STKERR_Msk (1UL << SCB_CFSR_STKERR_Pos) /*!< SCB CFSR (BFSR): STKERR Mask */
mbed_official 159:7130f322cb7e 699
mbed_official 159:7130f322cb7e 700 #define SCB_CFSR_UNSTKERR_Pos (SCB_CFSR_BUSFAULTSR_Pos + 3U) /*!< SCB CFSR (BFSR): UNSTKERR Position */
mbed_official 159:7130f322cb7e 701 #define SCB_CFSR_UNSTKERR_Msk (1UL << SCB_CFSR_UNSTKERR_Pos) /*!< SCB CFSR (BFSR): UNSTKERR Mask */
mbed_official 159:7130f322cb7e 702
mbed_official 159:7130f322cb7e 703 #define SCB_CFSR_IMPRECISERR_Pos (SCB_CFSR_BUSFAULTSR_Pos + 2U) /*!< SCB CFSR (BFSR): IMPRECISERR Position */
mbed_official 159:7130f322cb7e 704 #define SCB_CFSR_IMPRECISERR_Msk (1UL << SCB_CFSR_IMPRECISERR_Pos) /*!< SCB CFSR (BFSR): IMPRECISERR Mask */
mbed_official 159:7130f322cb7e 705
mbed_official 159:7130f322cb7e 706 #define SCB_CFSR_PRECISERR_Pos (SCB_CFSR_BUSFAULTSR_Pos + 1U) /*!< SCB CFSR (BFSR): PRECISERR Position */
mbed_official 159:7130f322cb7e 707 #define SCB_CFSR_PRECISERR_Msk (1UL << SCB_CFSR_PRECISERR_Pos) /*!< SCB CFSR (BFSR): PRECISERR Mask */
mbed_official 159:7130f322cb7e 708
mbed_official 159:7130f322cb7e 709 #define SCB_CFSR_IBUSERR_Pos (SCB_CFSR_BUSFAULTSR_Pos + 0U) /*!< SCB CFSR (BFSR): IBUSERR Position */
mbed_official 159:7130f322cb7e 710 #define SCB_CFSR_IBUSERR_Msk (1UL << SCB_CFSR_IBUSERR_Pos) /*!< SCB CFSR (BFSR): IBUSERR Mask */
mbed_official 159:7130f322cb7e 711
mbed_official 159:7130f322cb7e 712 /* UsageFault Status Register (part of SCB Configurable Fault Status Register) */
mbed_official 159:7130f322cb7e 713 #define SCB_CFSR_DIVBYZERO_Pos (SCB_CFSR_USGFAULTSR_Pos + 9U) /*!< SCB CFSR (UFSR): DIVBYZERO Position */
mbed_official 159:7130f322cb7e 714 #define SCB_CFSR_DIVBYZERO_Msk (1UL << SCB_CFSR_DIVBYZERO_Pos) /*!< SCB CFSR (UFSR): DIVBYZERO Mask */
mbed_official 159:7130f322cb7e 715
mbed_official 159:7130f322cb7e 716 #define SCB_CFSR_UNALIGNED_Pos (SCB_CFSR_USGFAULTSR_Pos + 8U) /*!< SCB CFSR (UFSR): UNALIGNED Position */
mbed_official 159:7130f322cb7e 717 #define SCB_CFSR_UNALIGNED_Msk (1UL << SCB_CFSR_UNALIGNED_Pos) /*!< SCB CFSR (UFSR): UNALIGNED Mask */
mbed_official 159:7130f322cb7e 718
mbed_official 159:7130f322cb7e 719 #define SCB_CFSR_NOCP_Pos (SCB_CFSR_USGFAULTSR_Pos + 3U) /*!< SCB CFSR (UFSR): NOCP Position */
mbed_official 159:7130f322cb7e 720 #define SCB_CFSR_NOCP_Msk (1UL << SCB_CFSR_NOCP_Pos) /*!< SCB CFSR (UFSR): NOCP Mask */
mbed_official 159:7130f322cb7e 721
mbed_official 159:7130f322cb7e 722 #define SCB_CFSR_INVPC_Pos (SCB_CFSR_USGFAULTSR_Pos + 2U) /*!< SCB CFSR (UFSR): INVPC Position */
mbed_official 159:7130f322cb7e 723 #define SCB_CFSR_INVPC_Msk (1UL << SCB_CFSR_INVPC_Pos) /*!< SCB CFSR (UFSR): INVPC Mask */
mbed_official 159:7130f322cb7e 724
mbed_official 159:7130f322cb7e 725 #define SCB_CFSR_INVSTATE_Pos (SCB_CFSR_USGFAULTSR_Pos + 1U) /*!< SCB CFSR (UFSR): INVSTATE Position */
mbed_official 159:7130f322cb7e 726 #define SCB_CFSR_INVSTATE_Msk (1UL << SCB_CFSR_INVSTATE_Pos) /*!< SCB CFSR (UFSR): INVSTATE Mask */
mbed_official 159:7130f322cb7e 727
mbed_official 159:7130f322cb7e 728 #define SCB_CFSR_UNDEFINSTR_Pos (SCB_CFSR_USGFAULTSR_Pos + 0U) /*!< SCB CFSR (UFSR): UNDEFINSTR Position */
mbed_official 159:7130f322cb7e 729 #define SCB_CFSR_UNDEFINSTR_Msk (1UL << SCB_CFSR_UNDEFINSTR_Pos) /*!< SCB CFSR (UFSR): UNDEFINSTR Mask */
mbed_official 159:7130f322cb7e 730
mbed_official 159:7130f322cb7e 731 /* SCB Hard Fault Status Register Definitions */
mbed_official 159:7130f322cb7e 732 #define SCB_HFSR_DEBUGEVT_Pos 31U /*!< SCB HFSR: DEBUGEVT Position */
mbed_official 159:7130f322cb7e 733 #define SCB_HFSR_DEBUGEVT_Msk (1UL << SCB_HFSR_DEBUGEVT_Pos) /*!< SCB HFSR: DEBUGEVT Mask */
mbed_official 159:7130f322cb7e 734
mbed_official 159:7130f322cb7e 735 #define SCB_HFSR_FORCED_Pos 30U /*!< SCB HFSR: FORCED Position */
mbed_official 159:7130f322cb7e 736 #define SCB_HFSR_FORCED_Msk (1UL << SCB_HFSR_FORCED_Pos) /*!< SCB HFSR: FORCED Mask */
mbed_official 159:7130f322cb7e 737
mbed_official 159:7130f322cb7e 738 #define SCB_HFSR_VECTTBL_Pos 1U /*!< SCB HFSR: VECTTBL Position */
mbed_official 159:7130f322cb7e 739 #define SCB_HFSR_VECTTBL_Msk (1UL << SCB_HFSR_VECTTBL_Pos) /*!< SCB HFSR: VECTTBL Mask */
mbed_official 159:7130f322cb7e 740
mbed_official 159:7130f322cb7e 741 /* SCB Debug Fault Status Register Definitions */
mbed_official 159:7130f322cb7e 742 #define SCB_DFSR_EXTERNAL_Pos 4U /*!< SCB DFSR: EXTERNAL Position */
mbed_official 159:7130f322cb7e 743 #define SCB_DFSR_EXTERNAL_Msk (1UL << SCB_DFSR_EXTERNAL_Pos) /*!< SCB DFSR: EXTERNAL Mask */
mbed_official 159:7130f322cb7e 744
mbed_official 159:7130f322cb7e 745 #define SCB_DFSR_VCATCH_Pos 3U /*!< SCB DFSR: VCATCH Position */
mbed_official 159:7130f322cb7e 746 #define SCB_DFSR_VCATCH_Msk (1UL << SCB_DFSR_VCATCH_Pos) /*!< SCB DFSR: VCATCH Mask */
mbed_official 159:7130f322cb7e 747
mbed_official 159:7130f322cb7e 748 #define SCB_DFSR_DWTTRAP_Pos 2U /*!< SCB DFSR: DWTTRAP Position */
mbed_official 159:7130f322cb7e 749 #define SCB_DFSR_DWTTRAP_Msk (1UL << SCB_DFSR_DWTTRAP_Pos) /*!< SCB DFSR: DWTTRAP Mask */
mbed_official 159:7130f322cb7e 750
mbed_official 159:7130f322cb7e 751 #define SCB_DFSR_BKPT_Pos 1U /*!< SCB DFSR: BKPT Position */
mbed_official 159:7130f322cb7e 752 #define SCB_DFSR_BKPT_Msk (1UL << SCB_DFSR_BKPT_Pos) /*!< SCB DFSR: BKPT Mask */
mbed_official 159:7130f322cb7e 753
mbed_official 159:7130f322cb7e 754 #define SCB_DFSR_HALTED_Pos 0U /*!< SCB DFSR: HALTED Position */
mbed_official 159:7130f322cb7e 755 #define SCB_DFSR_HALTED_Msk (1UL /*<< SCB_DFSR_HALTED_Pos*/) /*!< SCB DFSR: HALTED Mask */
mbed_official 159:7130f322cb7e 756
mbed_official 159:7130f322cb7e 757 /* SCB Cache Level ID Register Definitions */
mbed_official 159:7130f322cb7e 758 #define SCB_CLIDR_LOUU_Pos 27U /*!< SCB CLIDR: LoUU Position */
mbed_official 159:7130f322cb7e 759 #define SCB_CLIDR_LOUU_Msk (7UL << SCB_CLIDR_LOUU_Pos) /*!< SCB CLIDR: LoUU Mask */
mbed_official 159:7130f322cb7e 760
mbed_official 159:7130f322cb7e 761 #define SCB_CLIDR_LOC_Pos 24U /*!< SCB CLIDR: LoC Position */
mbed_official 159:7130f322cb7e 762 #define SCB_CLIDR_LOC_Msk (7UL << SCB_CLIDR_LOC_Pos) /*!< SCB CLIDR: LoC Mask */
mbed_official 159:7130f322cb7e 763
mbed_official 159:7130f322cb7e 764 /* SCB Cache Type Register Definitions */
mbed_official 159:7130f322cb7e 765 #define SCB_CTR_FORMAT_Pos 29U /*!< SCB CTR: Format Position */
mbed_official 159:7130f322cb7e 766 #define SCB_CTR_FORMAT_Msk (7UL << SCB_CTR_FORMAT_Pos) /*!< SCB CTR: Format Mask */
mbed_official 159:7130f322cb7e 767
mbed_official 159:7130f322cb7e 768 #define SCB_CTR_CWG_Pos 24U /*!< SCB CTR: CWG Position */
mbed_official 159:7130f322cb7e 769 #define SCB_CTR_CWG_Msk (0xFUL << SCB_CTR_CWG_Pos) /*!< SCB CTR: CWG Mask */
mbed_official 159:7130f322cb7e 770
mbed_official 159:7130f322cb7e 771 #define SCB_CTR_ERG_Pos 20U /*!< SCB CTR: ERG Position */
mbed_official 159:7130f322cb7e 772 #define SCB_CTR_ERG_Msk (0xFUL << SCB_CTR_ERG_Pos) /*!< SCB CTR: ERG Mask */
mbed_official 159:7130f322cb7e 773
mbed_official 159:7130f322cb7e 774 #define SCB_CTR_DMINLINE_Pos 16U /*!< SCB CTR: DminLine Position */
mbed_official 159:7130f322cb7e 775 #define SCB_CTR_DMINLINE_Msk (0xFUL << SCB_CTR_DMINLINE_Pos) /*!< SCB CTR: DminLine Mask */
mbed_official 159:7130f322cb7e 776
mbed_official 159:7130f322cb7e 777 #define SCB_CTR_IMINLINE_Pos 0U /*!< SCB CTR: ImInLine Position */
mbed_official 159:7130f322cb7e 778 #define SCB_CTR_IMINLINE_Msk (0xFUL /*<< SCB_CTR_IMINLINE_Pos*/) /*!< SCB CTR: ImInLine Mask */
mbed_official 159:7130f322cb7e 779
mbed_official 159:7130f322cb7e 780 /* SCB Cache Size ID Register Definitions */
mbed_official 159:7130f322cb7e 781 #define SCB_CCSIDR_WT_Pos 31U /*!< SCB CCSIDR: WT Position */
mbed_official 159:7130f322cb7e 782 #define SCB_CCSIDR_WT_Msk (1UL << SCB_CCSIDR_WT_Pos) /*!< SCB CCSIDR: WT Mask */
mbed_official 159:7130f322cb7e 783
mbed_official 159:7130f322cb7e 784 #define SCB_CCSIDR_WB_Pos 30U /*!< SCB CCSIDR: WB Position */
mbed_official 159:7130f322cb7e 785 #define SCB_CCSIDR_WB_Msk (1UL << SCB_CCSIDR_WB_Pos) /*!< SCB CCSIDR: WB Mask */
mbed_official 159:7130f322cb7e 786
mbed_official 159:7130f322cb7e 787 #define SCB_CCSIDR_RA_Pos 29U /*!< SCB CCSIDR: RA Position */
mbed_official 159:7130f322cb7e 788 #define SCB_CCSIDR_RA_Msk (1UL << SCB_CCSIDR_RA_Pos) /*!< SCB CCSIDR: RA Mask */
mbed_official 159:7130f322cb7e 789
mbed_official 159:7130f322cb7e 790 #define SCB_CCSIDR_WA_Pos 28U /*!< SCB CCSIDR: WA Position */
mbed_official 159:7130f322cb7e 791 #define SCB_CCSIDR_WA_Msk (1UL << SCB_CCSIDR_WA_Pos) /*!< SCB CCSIDR: WA Mask */
mbed_official 159:7130f322cb7e 792
mbed_official 159:7130f322cb7e 793 #define SCB_CCSIDR_NUMSETS_Pos 13U /*!< SCB CCSIDR: NumSets Position */
mbed_official 159:7130f322cb7e 794 #define SCB_CCSIDR_NUMSETS_Msk (0x7FFFUL << SCB_CCSIDR_NUMSETS_Pos) /*!< SCB CCSIDR: NumSets Mask */
mbed_official 159:7130f322cb7e 795
mbed_official 159:7130f322cb7e 796 #define SCB_CCSIDR_ASSOCIATIVITY_Pos 3U /*!< SCB CCSIDR: Associativity Position */
mbed_official 159:7130f322cb7e 797 #define SCB_CCSIDR_ASSOCIATIVITY_Msk (0x3FFUL << SCB_CCSIDR_ASSOCIATIVITY_Pos) /*!< SCB CCSIDR: Associativity Mask */
mbed_official 159:7130f322cb7e 798
mbed_official 159:7130f322cb7e 799 #define SCB_CCSIDR_LINESIZE_Pos 0U /*!< SCB CCSIDR: LineSize Position */
mbed_official 159:7130f322cb7e 800 #define SCB_CCSIDR_LINESIZE_Msk (7UL /*<< SCB_CCSIDR_LINESIZE_Pos*/) /*!< SCB CCSIDR: LineSize Mask */
mbed_official 159:7130f322cb7e 801
mbed_official 159:7130f322cb7e 802 /* SCB Cache Size Selection Register Definitions */
mbed_official 159:7130f322cb7e 803 #define SCB_CSSELR_LEVEL_Pos 1U /*!< SCB CSSELR: Level Position */
mbed_official 159:7130f322cb7e 804 #define SCB_CSSELR_LEVEL_Msk (7UL << SCB_CSSELR_LEVEL_Pos) /*!< SCB CSSELR: Level Mask */
mbed_official 159:7130f322cb7e 805
mbed_official 159:7130f322cb7e 806 #define SCB_CSSELR_IND_Pos 0U /*!< SCB CSSELR: InD Position */
mbed_official 159:7130f322cb7e 807 #define SCB_CSSELR_IND_Msk (1UL /*<< SCB_CSSELR_IND_Pos*/) /*!< SCB CSSELR: InD Mask */
mbed_official 159:7130f322cb7e 808
mbed_official 159:7130f322cb7e 809 /* SCB Software Triggered Interrupt Register Definitions */
mbed_official 159:7130f322cb7e 810 #define SCB_STIR_INTID_Pos 0U /*!< SCB STIR: INTID Position */
mbed_official 159:7130f322cb7e 811 #define SCB_STIR_INTID_Msk (0x1FFUL /*<< SCB_STIR_INTID_Pos*/) /*!< SCB STIR: INTID Mask */
mbed_official 159:7130f322cb7e 812
mbed_official 159:7130f322cb7e 813 /* SCB D-Cache Invalidate by Set-way Register Definitions */
mbed_official 159:7130f322cb7e 814 #define SCB_DCISW_WAY_Pos 30U /*!< SCB DCISW: Way Position */
mbed_official 159:7130f322cb7e 815 #define SCB_DCISW_WAY_Msk (3UL << SCB_DCISW_WAY_Pos) /*!< SCB DCISW: Way Mask */
mbed_official 159:7130f322cb7e 816
mbed_official 159:7130f322cb7e 817 #define SCB_DCISW_SET_Pos 5U /*!< SCB DCISW: Set Position */
mbed_official 159:7130f322cb7e 818 #define SCB_DCISW_SET_Msk (0x1FFUL << SCB_DCISW_SET_Pos) /*!< SCB DCISW: Set Mask */
mbed_official 159:7130f322cb7e 819
mbed_official 159:7130f322cb7e 820 /* SCB D-Cache Clean by Set-way Register Definitions */
mbed_official 159:7130f322cb7e 821 #define SCB_DCCSW_WAY_Pos 30U /*!< SCB DCCSW: Way Position */
mbed_official 159:7130f322cb7e 822 #define SCB_DCCSW_WAY_Msk (3UL << SCB_DCCSW_WAY_Pos) /*!< SCB DCCSW: Way Mask */
mbed_official 159:7130f322cb7e 823
mbed_official 159:7130f322cb7e 824 #define SCB_DCCSW_SET_Pos 5U /*!< SCB DCCSW: Set Position */
mbed_official 159:7130f322cb7e 825 #define SCB_DCCSW_SET_Msk (0x1FFUL << SCB_DCCSW_SET_Pos) /*!< SCB DCCSW: Set Mask */
mbed_official 159:7130f322cb7e 826
mbed_official 159:7130f322cb7e 827 /* SCB D-Cache Clean and Invalidate by Set-way Register Definitions */
mbed_official 159:7130f322cb7e 828 #define SCB_DCCISW_WAY_Pos 30U /*!< SCB DCCISW: Way Position */
mbed_official 159:7130f322cb7e 829 #define SCB_DCCISW_WAY_Msk (3UL << SCB_DCCISW_WAY_Pos) /*!< SCB DCCISW: Way Mask */
mbed_official 159:7130f322cb7e 830
mbed_official 159:7130f322cb7e 831 #define SCB_DCCISW_SET_Pos 5U /*!< SCB DCCISW: Set Position */
mbed_official 159:7130f322cb7e 832 #define SCB_DCCISW_SET_Msk (0x1FFUL << SCB_DCCISW_SET_Pos) /*!< SCB DCCISW: Set Mask */
mbed_official 159:7130f322cb7e 833
mbed_official 159:7130f322cb7e 834 /* Instruction Tightly-Coupled Memory Control Register Definitions */
mbed_official 159:7130f322cb7e 835 #define SCB_ITCMCR_SZ_Pos 3U /*!< SCB ITCMCR: SZ Position */
mbed_official 159:7130f322cb7e 836 #define SCB_ITCMCR_SZ_Msk (0xFUL << SCB_ITCMCR_SZ_Pos) /*!< SCB ITCMCR: SZ Mask */
mbed_official 159:7130f322cb7e 837
mbed_official 159:7130f322cb7e 838 #define SCB_ITCMCR_RETEN_Pos 2U /*!< SCB ITCMCR: RETEN Position */
mbed_official 159:7130f322cb7e 839 #define SCB_ITCMCR_RETEN_Msk (1UL << SCB_ITCMCR_RETEN_Pos) /*!< SCB ITCMCR: RETEN Mask */
mbed_official 159:7130f322cb7e 840
mbed_official 159:7130f322cb7e 841 #define SCB_ITCMCR_RMW_Pos 1U /*!< SCB ITCMCR: RMW Position */
mbed_official 159:7130f322cb7e 842 #define SCB_ITCMCR_RMW_Msk (1UL << SCB_ITCMCR_RMW_Pos) /*!< SCB ITCMCR: RMW Mask */
mbed_official 159:7130f322cb7e 843
mbed_official 159:7130f322cb7e 844 #define SCB_ITCMCR_EN_Pos 0U /*!< SCB ITCMCR: EN Position */
mbed_official 159:7130f322cb7e 845 #define SCB_ITCMCR_EN_Msk (1UL /*<< SCB_ITCMCR_EN_Pos*/) /*!< SCB ITCMCR: EN Mask */
mbed_official 159:7130f322cb7e 846
mbed_official 159:7130f322cb7e 847 /* Data Tightly-Coupled Memory Control Register Definitions */
mbed_official 159:7130f322cb7e 848 #define SCB_DTCMCR_SZ_Pos 3U /*!< SCB DTCMCR: SZ Position */
mbed_official 159:7130f322cb7e 849 #define SCB_DTCMCR_SZ_Msk (0xFUL << SCB_DTCMCR_SZ_Pos) /*!< SCB DTCMCR: SZ Mask */
mbed_official 159:7130f322cb7e 850
mbed_official 159:7130f322cb7e 851 #define SCB_DTCMCR_RETEN_Pos 2U /*!< SCB DTCMCR: RETEN Position */
mbed_official 159:7130f322cb7e 852 #define SCB_DTCMCR_RETEN_Msk (1UL << SCB_DTCMCR_RETEN_Pos) /*!< SCB DTCMCR: RETEN Mask */
mbed_official 159:7130f322cb7e 853
mbed_official 159:7130f322cb7e 854 #define SCB_DTCMCR_RMW_Pos 1U /*!< SCB DTCMCR: RMW Position */
mbed_official 159:7130f322cb7e 855 #define SCB_DTCMCR_RMW_Msk (1UL << SCB_DTCMCR_RMW_Pos) /*!< SCB DTCMCR: RMW Mask */
mbed_official 159:7130f322cb7e 856
mbed_official 159:7130f322cb7e 857 #define SCB_DTCMCR_EN_Pos 0U /*!< SCB DTCMCR: EN Position */
mbed_official 159:7130f322cb7e 858 #define SCB_DTCMCR_EN_Msk (1UL /*<< SCB_DTCMCR_EN_Pos*/) /*!< SCB DTCMCR: EN Mask */
mbed_official 159:7130f322cb7e 859
mbed_official 159:7130f322cb7e 860 /* AHBP Control Register Definitions */
mbed_official 159:7130f322cb7e 861 #define SCB_AHBPCR_SZ_Pos 1U /*!< SCB AHBPCR: SZ Position */
mbed_official 159:7130f322cb7e 862 #define SCB_AHBPCR_SZ_Msk (7UL << SCB_AHBPCR_SZ_Pos) /*!< SCB AHBPCR: SZ Mask */
mbed_official 159:7130f322cb7e 863
mbed_official 159:7130f322cb7e 864 #define SCB_AHBPCR_EN_Pos 0U /*!< SCB AHBPCR: EN Position */
mbed_official 159:7130f322cb7e 865 #define SCB_AHBPCR_EN_Msk (1UL /*<< SCB_AHBPCR_EN_Pos*/) /*!< SCB AHBPCR: EN Mask */
mbed_official 159:7130f322cb7e 866
mbed_official 159:7130f322cb7e 867 /* L1 Cache Control Register Definitions */
mbed_official 159:7130f322cb7e 868 #define SCB_CACR_FORCEWT_Pos 2U /*!< SCB CACR: FORCEWT Position */
mbed_official 159:7130f322cb7e 869 #define SCB_CACR_FORCEWT_Msk (1UL << SCB_CACR_FORCEWT_Pos) /*!< SCB CACR: FORCEWT Mask */
mbed_official 159:7130f322cb7e 870
mbed_official 159:7130f322cb7e 871 #define SCB_CACR_ECCEN_Pos 1U /*!< SCB CACR: ECCEN Position */
mbed_official 159:7130f322cb7e 872 #define SCB_CACR_ECCEN_Msk (1UL << SCB_CACR_ECCEN_Pos) /*!< SCB CACR: ECCEN Mask */
mbed_official 159:7130f322cb7e 873
mbed_official 159:7130f322cb7e 874 #define SCB_CACR_SIWT_Pos 0U /*!< SCB CACR: SIWT Position */
mbed_official 159:7130f322cb7e 875 #define SCB_CACR_SIWT_Msk (1UL /*<< SCB_CACR_SIWT_Pos*/) /*!< SCB CACR: SIWT Mask */
mbed_official 159:7130f322cb7e 876
mbed_official 159:7130f322cb7e 877 /* AHBS Control Register Definitions */
mbed_official 159:7130f322cb7e 878 #define SCB_AHBSCR_INITCOUNT_Pos 11U /*!< SCB AHBSCR: INITCOUNT Position */
mbed_official 159:7130f322cb7e 879 #define SCB_AHBSCR_INITCOUNT_Msk (0x1FUL << SCB_AHBPCR_INITCOUNT_Pos) /*!< SCB AHBSCR: INITCOUNT Mask */
mbed_official 159:7130f322cb7e 880
mbed_official 159:7130f322cb7e 881 #define SCB_AHBSCR_TPRI_Pos 2U /*!< SCB AHBSCR: TPRI Position */
mbed_official 159:7130f322cb7e 882 #define SCB_AHBSCR_TPRI_Msk (0x1FFUL << SCB_AHBPCR_TPRI_Pos) /*!< SCB AHBSCR: TPRI Mask */
mbed_official 159:7130f322cb7e 883
mbed_official 159:7130f322cb7e 884 #define SCB_AHBSCR_CTL_Pos 0U /*!< SCB AHBSCR: CTL Position*/
mbed_official 159:7130f322cb7e 885 #define SCB_AHBSCR_CTL_Msk (3UL /*<< SCB_AHBPCR_CTL_Pos*/) /*!< SCB AHBSCR: CTL Mask */
mbed_official 159:7130f322cb7e 886
mbed_official 159:7130f322cb7e 887 /* Auxiliary Bus Fault Status Register Definitions */
mbed_official 159:7130f322cb7e 888 #define SCB_ABFSR_AXIMTYPE_Pos 8U /*!< SCB ABFSR: AXIMTYPE Position*/
mbed_official 159:7130f322cb7e 889 #define SCB_ABFSR_AXIMTYPE_Msk (3UL << SCB_ABFSR_AXIMTYPE_Pos) /*!< SCB ABFSR: AXIMTYPE Mask */
mbed_official 159:7130f322cb7e 890
mbed_official 159:7130f322cb7e 891 #define SCB_ABFSR_EPPB_Pos 4U /*!< SCB ABFSR: EPPB Position*/
mbed_official 159:7130f322cb7e 892 #define SCB_ABFSR_EPPB_Msk (1UL << SCB_ABFSR_EPPB_Pos) /*!< SCB ABFSR: EPPB Mask */
mbed_official 159:7130f322cb7e 893
mbed_official 159:7130f322cb7e 894 #define SCB_ABFSR_AXIM_Pos 3U /*!< SCB ABFSR: AXIM Position*/
mbed_official 159:7130f322cb7e 895 #define SCB_ABFSR_AXIM_Msk (1UL << SCB_ABFSR_AXIM_Pos) /*!< SCB ABFSR: AXIM Mask */
mbed_official 159:7130f322cb7e 896
mbed_official 159:7130f322cb7e 897 #define SCB_ABFSR_AHBP_Pos 2U /*!< SCB ABFSR: AHBP Position*/
mbed_official 159:7130f322cb7e 898 #define SCB_ABFSR_AHBP_Msk (1UL << SCB_ABFSR_AHBP_Pos) /*!< SCB ABFSR: AHBP Mask */
mbed_official 159:7130f322cb7e 899
mbed_official 159:7130f322cb7e 900 #define SCB_ABFSR_DTCM_Pos 1U /*!< SCB ABFSR: DTCM Position*/
mbed_official 159:7130f322cb7e 901 #define SCB_ABFSR_DTCM_Msk (1UL << SCB_ABFSR_DTCM_Pos) /*!< SCB ABFSR: DTCM Mask */
mbed_official 159:7130f322cb7e 902
mbed_official 159:7130f322cb7e 903 #define SCB_ABFSR_ITCM_Pos 0U /*!< SCB ABFSR: ITCM Position*/
mbed_official 159:7130f322cb7e 904 #define SCB_ABFSR_ITCM_Msk (1UL /*<< SCB_ABFSR_ITCM_Pos*/) /*!< SCB ABFSR: ITCM Mask */
mbed_official 159:7130f322cb7e 905
mbed_official 159:7130f322cb7e 906 /*@} end of group CMSIS_SCB */
mbed_official 159:7130f322cb7e 907
mbed_official 159:7130f322cb7e 908
mbed_official 159:7130f322cb7e 909 /**
mbed_official 159:7130f322cb7e 910 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 911 \defgroup CMSIS_SCnSCB System Controls not in SCB (SCnSCB)
mbed_official 159:7130f322cb7e 912 \brief Type definitions for the System Control and ID Register not in the SCB
mbed_official 159:7130f322cb7e 913 @{
mbed_official 159:7130f322cb7e 914 */
mbed_official 159:7130f322cb7e 915
mbed_official 159:7130f322cb7e 916 /**
mbed_official 159:7130f322cb7e 917 \brief Structure type to access the System Control and ID Register not in the SCB.
mbed_official 159:7130f322cb7e 918 */
mbed_official 159:7130f322cb7e 919 typedef struct
mbed_official 159:7130f322cb7e 920 {
mbed_official 159:7130f322cb7e 921 uint32_t RESERVED0[1U];
mbed_official 159:7130f322cb7e 922 __IM uint32_t ICTR; /*!< Offset: 0x004 (R/ ) Interrupt Controller Type Register */
mbed_official 159:7130f322cb7e 923 __IOM uint32_t ACTLR; /*!< Offset: 0x008 (R/W) Auxiliary Control Register */
mbed_official 159:7130f322cb7e 924 } SCnSCB_Type;
mbed_official 159:7130f322cb7e 925
mbed_official 159:7130f322cb7e 926 /* Interrupt Controller Type Register Definitions */
mbed_official 159:7130f322cb7e 927 #define SCnSCB_ICTR_INTLINESNUM_Pos 0U /*!< ICTR: INTLINESNUM Position */
mbed_official 159:7130f322cb7e 928 #define SCnSCB_ICTR_INTLINESNUM_Msk (0xFUL /*<< SCnSCB_ICTR_INTLINESNUM_Pos*/) /*!< ICTR: INTLINESNUM Mask */
mbed_official 159:7130f322cb7e 929
mbed_official 159:7130f322cb7e 930 /* Auxiliary Control Register Definitions */
mbed_official 159:7130f322cb7e 931 #define SCnSCB_ACTLR_DISITMATBFLUSH_Pos 12U /*!< ACTLR: DISITMATBFLUSH Position */
mbed_official 159:7130f322cb7e 932 #define SCnSCB_ACTLR_DISITMATBFLUSH_Msk (1UL << SCnSCB_ACTLR_DISITMATBFLUSH_Pos) /*!< ACTLR: DISITMATBFLUSH Mask */
mbed_official 159:7130f322cb7e 933
mbed_official 159:7130f322cb7e 934 #define SCnSCB_ACTLR_DISRAMODE_Pos 11U /*!< ACTLR: DISRAMODE Position */
mbed_official 159:7130f322cb7e 935 #define SCnSCB_ACTLR_DISRAMODE_Msk (1UL << SCnSCB_ACTLR_DISRAMODE_Pos) /*!< ACTLR: DISRAMODE Mask */
mbed_official 159:7130f322cb7e 936
mbed_official 159:7130f322cb7e 937 #define SCnSCB_ACTLR_FPEXCODIS_Pos 10U /*!< ACTLR: FPEXCODIS Position */
mbed_official 159:7130f322cb7e 938 #define SCnSCB_ACTLR_FPEXCODIS_Msk (1UL << SCnSCB_ACTLR_FPEXCODIS_Pos) /*!< ACTLR: FPEXCODIS Mask */
mbed_official 159:7130f322cb7e 939
mbed_official 159:7130f322cb7e 940 #define SCnSCB_ACTLR_DISFOLD_Pos 2U /*!< ACTLR: DISFOLD Position */
mbed_official 159:7130f322cb7e 941 #define SCnSCB_ACTLR_DISFOLD_Msk (1UL << SCnSCB_ACTLR_DISFOLD_Pos) /*!< ACTLR: DISFOLD Mask */
mbed_official 159:7130f322cb7e 942
mbed_official 159:7130f322cb7e 943 #define SCnSCB_ACTLR_DISMCYCINT_Pos 0U /*!< ACTLR: DISMCYCINT Position */
mbed_official 159:7130f322cb7e 944 #define SCnSCB_ACTLR_DISMCYCINT_Msk (1UL /*<< SCnSCB_ACTLR_DISMCYCINT_Pos*/) /*!< ACTLR: DISMCYCINT Mask */
mbed_official 159:7130f322cb7e 945
mbed_official 159:7130f322cb7e 946 /*@} end of group CMSIS_SCnotSCB */
mbed_official 159:7130f322cb7e 947
mbed_official 159:7130f322cb7e 948
mbed_official 159:7130f322cb7e 949 /**
mbed_official 159:7130f322cb7e 950 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 951 \defgroup CMSIS_SysTick System Tick Timer (SysTick)
mbed_official 159:7130f322cb7e 952 \brief Type definitions for the System Timer Registers.
mbed_official 159:7130f322cb7e 953 @{
mbed_official 159:7130f322cb7e 954 */
mbed_official 159:7130f322cb7e 955
mbed_official 159:7130f322cb7e 956 /**
mbed_official 159:7130f322cb7e 957 \brief Structure type to access the System Timer (SysTick).
mbed_official 159:7130f322cb7e 958 */
mbed_official 159:7130f322cb7e 959 typedef struct
mbed_official 159:7130f322cb7e 960 {
mbed_official 159:7130f322cb7e 961 __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */
mbed_official 159:7130f322cb7e 962 __IOM uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */
mbed_official 159:7130f322cb7e 963 __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */
mbed_official 159:7130f322cb7e 964 __IM uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */
mbed_official 159:7130f322cb7e 965 } SysTick_Type;
mbed_official 159:7130f322cb7e 966
mbed_official 159:7130f322cb7e 967 /* SysTick Control / Status Register Definitions */
mbed_official 159:7130f322cb7e 968 #define SysTick_CTRL_COUNTFLAG_Pos 16U /*!< SysTick CTRL: COUNTFLAG Position */
mbed_official 159:7130f322cb7e 969 #define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */
mbed_official 159:7130f322cb7e 970
mbed_official 159:7130f322cb7e 971 #define SysTick_CTRL_CLKSOURCE_Pos 2U /*!< SysTick CTRL: CLKSOURCE Position */
mbed_official 159:7130f322cb7e 972 #define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */
mbed_official 159:7130f322cb7e 973
mbed_official 159:7130f322cb7e 974 #define SysTick_CTRL_TICKINT_Pos 1U /*!< SysTick CTRL: TICKINT Position */
mbed_official 159:7130f322cb7e 975 #define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */
mbed_official 159:7130f322cb7e 976
mbed_official 159:7130f322cb7e 977 #define SysTick_CTRL_ENABLE_Pos 0U /*!< SysTick CTRL: ENABLE Position */
mbed_official 159:7130f322cb7e 978 #define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */
mbed_official 159:7130f322cb7e 979
mbed_official 159:7130f322cb7e 980 /* SysTick Reload Register Definitions */
mbed_official 159:7130f322cb7e 981 #define SysTick_LOAD_RELOAD_Pos 0U /*!< SysTick LOAD: RELOAD Position */
mbed_official 159:7130f322cb7e 982 #define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */
mbed_official 159:7130f322cb7e 983
mbed_official 159:7130f322cb7e 984 /* SysTick Current Register Definitions */
mbed_official 159:7130f322cb7e 985 #define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */
mbed_official 159:7130f322cb7e 986 #define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */
mbed_official 159:7130f322cb7e 987
mbed_official 159:7130f322cb7e 988 /* SysTick Calibration Register Definitions */
mbed_official 159:7130f322cb7e 989 #define SysTick_CALIB_NOREF_Pos 31U /*!< SysTick CALIB: NOREF Position */
mbed_official 159:7130f322cb7e 990 #define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */
mbed_official 159:7130f322cb7e 991
mbed_official 159:7130f322cb7e 992 #define SysTick_CALIB_SKEW_Pos 30U /*!< SysTick CALIB: SKEW Position */
mbed_official 159:7130f322cb7e 993 #define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */
mbed_official 159:7130f322cb7e 994
mbed_official 159:7130f322cb7e 995 #define SysTick_CALIB_TENMS_Pos 0U /*!< SysTick CALIB: TENMS Position */
mbed_official 159:7130f322cb7e 996 #define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */
mbed_official 159:7130f322cb7e 997
mbed_official 159:7130f322cb7e 998 /*@} end of group CMSIS_SysTick */
mbed_official 159:7130f322cb7e 999
mbed_official 159:7130f322cb7e 1000
mbed_official 159:7130f322cb7e 1001 /**
mbed_official 159:7130f322cb7e 1002 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 1003 \defgroup CMSIS_ITM Instrumentation Trace Macrocell (ITM)
mbed_official 159:7130f322cb7e 1004 \brief Type definitions for the Instrumentation Trace Macrocell (ITM)
mbed_official 159:7130f322cb7e 1005 @{
mbed_official 159:7130f322cb7e 1006 */
mbed_official 159:7130f322cb7e 1007
mbed_official 159:7130f322cb7e 1008 /**
mbed_official 159:7130f322cb7e 1009 \brief Structure type to access the Instrumentation Trace Macrocell Register (ITM).
mbed_official 159:7130f322cb7e 1010 */
mbed_official 159:7130f322cb7e 1011 typedef struct
mbed_official 159:7130f322cb7e 1012 {
mbed_official 159:7130f322cb7e 1013 __OM union
mbed_official 159:7130f322cb7e 1014 {
mbed_official 159:7130f322cb7e 1015 __OM uint8_t u8; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 8-bit */
mbed_official 159:7130f322cb7e 1016 __OM uint16_t u16; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 16-bit */
mbed_official 159:7130f322cb7e 1017 __OM uint32_t u32; /*!< Offset: 0x000 ( /W) ITM Stimulus Port 32-bit */
mbed_official 159:7130f322cb7e 1018 } PORT [32U]; /*!< Offset: 0x000 ( /W) ITM Stimulus Port Registers */
mbed_official 159:7130f322cb7e 1019 uint32_t RESERVED0[864U];
mbed_official 159:7130f322cb7e 1020 __IOM uint32_t TER; /*!< Offset: 0xE00 (R/W) ITM Trace Enable Register */
mbed_official 159:7130f322cb7e 1021 uint32_t RESERVED1[15U];
mbed_official 159:7130f322cb7e 1022 __IOM uint32_t TPR; /*!< Offset: 0xE40 (R/W) ITM Trace Privilege Register */
mbed_official 159:7130f322cb7e 1023 uint32_t RESERVED2[15U];
mbed_official 159:7130f322cb7e 1024 __IOM uint32_t TCR; /*!< Offset: 0xE80 (R/W) ITM Trace Control Register */
mbed_official 159:7130f322cb7e 1025 uint32_t RESERVED3[29U];
mbed_official 159:7130f322cb7e 1026 __OM uint32_t IWR; /*!< Offset: 0xEF8 ( /W) ITM Integration Write Register */
mbed_official 159:7130f322cb7e 1027 __IM uint32_t IRR; /*!< Offset: 0xEFC (R/ ) ITM Integration Read Register */
mbed_official 159:7130f322cb7e 1028 __IOM uint32_t IMCR; /*!< Offset: 0xF00 (R/W) ITM Integration Mode Control Register */
mbed_official 159:7130f322cb7e 1029 uint32_t RESERVED4[43U];
mbed_official 159:7130f322cb7e 1030 __OM uint32_t LAR; /*!< Offset: 0xFB0 ( /W) ITM Lock Access Register */
mbed_official 159:7130f322cb7e 1031 __IM uint32_t LSR; /*!< Offset: 0xFB4 (R/ ) ITM Lock Status Register */
mbed_official 159:7130f322cb7e 1032 uint32_t RESERVED5[6U];
mbed_official 159:7130f322cb7e 1033 __IM uint32_t PID4; /*!< Offset: 0xFD0 (R/ ) ITM Peripheral Identification Register #4 */
mbed_official 159:7130f322cb7e 1034 __IM uint32_t PID5; /*!< Offset: 0xFD4 (R/ ) ITM Peripheral Identification Register #5 */
mbed_official 159:7130f322cb7e 1035 __IM uint32_t PID6; /*!< Offset: 0xFD8 (R/ ) ITM Peripheral Identification Register #6 */
mbed_official 159:7130f322cb7e 1036 __IM uint32_t PID7; /*!< Offset: 0xFDC (R/ ) ITM Peripheral Identification Register #7 */
mbed_official 159:7130f322cb7e 1037 __IM uint32_t PID0; /*!< Offset: 0xFE0 (R/ ) ITM Peripheral Identification Register #0 */
mbed_official 159:7130f322cb7e 1038 __IM uint32_t PID1; /*!< Offset: 0xFE4 (R/ ) ITM Peripheral Identification Register #1 */
mbed_official 159:7130f322cb7e 1039 __IM uint32_t PID2; /*!< Offset: 0xFE8 (R/ ) ITM Peripheral Identification Register #2 */
mbed_official 159:7130f322cb7e 1040 __IM uint32_t PID3; /*!< Offset: 0xFEC (R/ ) ITM Peripheral Identification Register #3 */
mbed_official 159:7130f322cb7e 1041 __IM uint32_t CID0; /*!< Offset: 0xFF0 (R/ ) ITM Component Identification Register #0 */
mbed_official 159:7130f322cb7e 1042 __IM uint32_t CID1; /*!< Offset: 0xFF4 (R/ ) ITM Component Identification Register #1 */
mbed_official 159:7130f322cb7e 1043 __IM uint32_t CID2; /*!< Offset: 0xFF8 (R/ ) ITM Component Identification Register #2 */
mbed_official 159:7130f322cb7e 1044 __IM uint32_t CID3; /*!< Offset: 0xFFC (R/ ) ITM Component Identification Register #3 */
mbed_official 159:7130f322cb7e 1045 } ITM_Type;
mbed_official 159:7130f322cb7e 1046
mbed_official 159:7130f322cb7e 1047 /* ITM Trace Privilege Register Definitions */
mbed_official 159:7130f322cb7e 1048 #define ITM_TPR_PRIVMASK_Pos 0U /*!< ITM TPR: PRIVMASK Position */
mbed_official 159:7130f322cb7e 1049 #define ITM_TPR_PRIVMASK_Msk (0xFUL /*<< ITM_TPR_PRIVMASK_Pos*/) /*!< ITM TPR: PRIVMASK Mask */
mbed_official 159:7130f322cb7e 1050
mbed_official 159:7130f322cb7e 1051 /* ITM Trace Control Register Definitions */
mbed_official 159:7130f322cb7e 1052 #define ITM_TCR_BUSY_Pos 23U /*!< ITM TCR: BUSY Position */
mbed_official 159:7130f322cb7e 1053 #define ITM_TCR_BUSY_Msk (1UL << ITM_TCR_BUSY_Pos) /*!< ITM TCR: BUSY Mask */
mbed_official 159:7130f322cb7e 1054
mbed_official 159:7130f322cb7e 1055 #define ITM_TCR_TraceBusID_Pos 16U /*!< ITM TCR: ATBID Position */
mbed_official 159:7130f322cb7e 1056 #define ITM_TCR_TraceBusID_Msk (0x7FUL << ITM_TCR_TraceBusID_Pos) /*!< ITM TCR: ATBID Mask */
mbed_official 159:7130f322cb7e 1057
mbed_official 159:7130f322cb7e 1058 #define ITM_TCR_GTSFREQ_Pos 10U /*!< ITM TCR: Global timestamp frequency Position */
mbed_official 159:7130f322cb7e 1059 #define ITM_TCR_GTSFREQ_Msk (3UL << ITM_TCR_GTSFREQ_Pos) /*!< ITM TCR: Global timestamp frequency Mask */
mbed_official 159:7130f322cb7e 1060
mbed_official 159:7130f322cb7e 1061 #define ITM_TCR_TSPrescale_Pos 8U /*!< ITM TCR: TSPrescale Position */
mbed_official 159:7130f322cb7e 1062 #define ITM_TCR_TSPrescale_Msk (3UL << ITM_TCR_TSPrescale_Pos) /*!< ITM TCR: TSPrescale Mask */
mbed_official 159:7130f322cb7e 1063
mbed_official 159:7130f322cb7e 1064 #define ITM_TCR_SWOENA_Pos 4U /*!< ITM TCR: SWOENA Position */
mbed_official 159:7130f322cb7e 1065 #define ITM_TCR_SWOENA_Msk (1UL << ITM_TCR_SWOENA_Pos) /*!< ITM TCR: SWOENA Mask */
mbed_official 159:7130f322cb7e 1066
mbed_official 159:7130f322cb7e 1067 #define ITM_TCR_DWTENA_Pos 3U /*!< ITM TCR: DWTENA Position */
mbed_official 159:7130f322cb7e 1068 #define ITM_TCR_DWTENA_Msk (1UL << ITM_TCR_DWTENA_Pos) /*!< ITM TCR: DWTENA Mask */
mbed_official 159:7130f322cb7e 1069
mbed_official 159:7130f322cb7e 1070 #define ITM_TCR_SYNCENA_Pos 2U /*!< ITM TCR: SYNCENA Position */
mbed_official 159:7130f322cb7e 1071 #define ITM_TCR_SYNCENA_Msk (1UL << ITM_TCR_SYNCENA_Pos) /*!< ITM TCR: SYNCENA Mask */
mbed_official 159:7130f322cb7e 1072
mbed_official 159:7130f322cb7e 1073 #define ITM_TCR_TSENA_Pos 1U /*!< ITM TCR: TSENA Position */
mbed_official 159:7130f322cb7e 1074 #define ITM_TCR_TSENA_Msk (1UL << ITM_TCR_TSENA_Pos) /*!< ITM TCR: TSENA Mask */
mbed_official 159:7130f322cb7e 1075
mbed_official 159:7130f322cb7e 1076 #define ITM_TCR_ITMENA_Pos 0U /*!< ITM TCR: ITM Enable bit Position */
mbed_official 159:7130f322cb7e 1077 #define ITM_TCR_ITMENA_Msk (1UL /*<< ITM_TCR_ITMENA_Pos*/) /*!< ITM TCR: ITM Enable bit Mask */
mbed_official 159:7130f322cb7e 1078
mbed_official 159:7130f322cb7e 1079 /* ITM Integration Write Register Definitions */
mbed_official 159:7130f322cb7e 1080 #define ITM_IWR_ATVALIDM_Pos 0U /*!< ITM IWR: ATVALIDM Position */
mbed_official 159:7130f322cb7e 1081 #define ITM_IWR_ATVALIDM_Msk (1UL /*<< ITM_IWR_ATVALIDM_Pos*/) /*!< ITM IWR: ATVALIDM Mask */
mbed_official 159:7130f322cb7e 1082
mbed_official 159:7130f322cb7e 1083 /* ITM Integration Read Register Definitions */
mbed_official 159:7130f322cb7e 1084 #define ITM_IRR_ATREADYM_Pos 0U /*!< ITM IRR: ATREADYM Position */
mbed_official 159:7130f322cb7e 1085 #define ITM_IRR_ATREADYM_Msk (1UL /*<< ITM_IRR_ATREADYM_Pos*/) /*!< ITM IRR: ATREADYM Mask */
mbed_official 159:7130f322cb7e 1086
mbed_official 159:7130f322cb7e 1087 /* ITM Integration Mode Control Register Definitions */
mbed_official 159:7130f322cb7e 1088 #define ITM_IMCR_INTEGRATION_Pos 0U /*!< ITM IMCR: INTEGRATION Position */
mbed_official 159:7130f322cb7e 1089 #define ITM_IMCR_INTEGRATION_Msk (1UL /*<< ITM_IMCR_INTEGRATION_Pos*/) /*!< ITM IMCR: INTEGRATION Mask */
mbed_official 159:7130f322cb7e 1090
mbed_official 159:7130f322cb7e 1091 /* ITM Lock Status Register Definitions */
mbed_official 159:7130f322cb7e 1092 #define ITM_LSR_ByteAcc_Pos 2U /*!< ITM LSR: ByteAcc Position */
mbed_official 159:7130f322cb7e 1093 #define ITM_LSR_ByteAcc_Msk (1UL << ITM_LSR_ByteAcc_Pos) /*!< ITM LSR: ByteAcc Mask */
mbed_official 159:7130f322cb7e 1094
mbed_official 159:7130f322cb7e 1095 #define ITM_LSR_Access_Pos 1U /*!< ITM LSR: Access Position */
mbed_official 159:7130f322cb7e 1096 #define ITM_LSR_Access_Msk (1UL << ITM_LSR_Access_Pos) /*!< ITM LSR: Access Mask */
mbed_official 159:7130f322cb7e 1097
mbed_official 159:7130f322cb7e 1098 #define ITM_LSR_Present_Pos 0U /*!< ITM LSR: Present Position */
mbed_official 159:7130f322cb7e 1099 #define ITM_LSR_Present_Msk (1UL /*<< ITM_LSR_Present_Pos*/) /*!< ITM LSR: Present Mask */
mbed_official 159:7130f322cb7e 1100
mbed_official 159:7130f322cb7e 1101 /*@}*/ /* end of group CMSIS_ITM */
mbed_official 159:7130f322cb7e 1102
mbed_official 159:7130f322cb7e 1103
mbed_official 159:7130f322cb7e 1104 /**
mbed_official 159:7130f322cb7e 1105 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 1106 \defgroup CMSIS_DWT Data Watchpoint and Trace (DWT)
mbed_official 159:7130f322cb7e 1107 \brief Type definitions for the Data Watchpoint and Trace (DWT)
mbed_official 159:7130f322cb7e 1108 @{
mbed_official 159:7130f322cb7e 1109 */
mbed_official 159:7130f322cb7e 1110
mbed_official 159:7130f322cb7e 1111 /**
mbed_official 159:7130f322cb7e 1112 \brief Structure type to access the Data Watchpoint and Trace Register (DWT).
mbed_official 159:7130f322cb7e 1113 */
mbed_official 159:7130f322cb7e 1114 typedef struct
mbed_official 159:7130f322cb7e 1115 {
mbed_official 159:7130f322cb7e 1116 __IOM uint32_t CTRL; /*!< Offset: 0x000 (R/W) Control Register */
mbed_official 159:7130f322cb7e 1117 __IOM uint32_t CYCCNT; /*!< Offset: 0x004 (R/W) Cycle Count Register */
mbed_official 159:7130f322cb7e 1118 __IOM uint32_t CPICNT; /*!< Offset: 0x008 (R/W) CPI Count Register */
mbed_official 159:7130f322cb7e 1119 __IOM uint32_t EXCCNT; /*!< Offset: 0x00C (R/W) Exception Overhead Count Register */
mbed_official 159:7130f322cb7e 1120 __IOM uint32_t SLEEPCNT; /*!< Offset: 0x010 (R/W) Sleep Count Register */
mbed_official 159:7130f322cb7e 1121 __IOM uint32_t LSUCNT; /*!< Offset: 0x014 (R/W) LSU Count Register */
mbed_official 159:7130f322cb7e 1122 __IOM uint32_t FOLDCNT; /*!< Offset: 0x018 (R/W) Folded-instruction Count Register */
mbed_official 159:7130f322cb7e 1123 __IM uint32_t PCSR; /*!< Offset: 0x01C (R/ ) Program Counter Sample Register */
mbed_official 159:7130f322cb7e 1124 __IOM uint32_t COMP0; /*!< Offset: 0x020 (R/W) Comparator Register 0 */
mbed_official 159:7130f322cb7e 1125 __IOM uint32_t MASK0; /*!< Offset: 0x024 (R/W) Mask Register 0 */
mbed_official 159:7130f322cb7e 1126 __IOM uint32_t FUNCTION0; /*!< Offset: 0x028 (R/W) Function Register 0 */
mbed_official 159:7130f322cb7e 1127 uint32_t RESERVED0[1U];
mbed_official 159:7130f322cb7e 1128 __IOM uint32_t COMP1; /*!< Offset: 0x030 (R/W) Comparator Register 1 */
mbed_official 159:7130f322cb7e 1129 __IOM uint32_t MASK1; /*!< Offset: 0x034 (R/W) Mask Register 1 */
mbed_official 159:7130f322cb7e 1130 __IOM uint32_t FUNCTION1; /*!< Offset: 0x038 (R/W) Function Register 1 */
mbed_official 159:7130f322cb7e 1131 uint32_t RESERVED1[1U];
mbed_official 159:7130f322cb7e 1132 __IOM uint32_t COMP2; /*!< Offset: 0x040 (R/W) Comparator Register 2 */
mbed_official 159:7130f322cb7e 1133 __IOM uint32_t MASK2; /*!< Offset: 0x044 (R/W) Mask Register 2 */
mbed_official 159:7130f322cb7e 1134 __IOM uint32_t FUNCTION2; /*!< Offset: 0x048 (R/W) Function Register 2 */
mbed_official 159:7130f322cb7e 1135 uint32_t RESERVED2[1U];
mbed_official 159:7130f322cb7e 1136 __IOM uint32_t COMP3; /*!< Offset: 0x050 (R/W) Comparator Register 3 */
mbed_official 159:7130f322cb7e 1137 __IOM uint32_t MASK3; /*!< Offset: 0x054 (R/W) Mask Register 3 */
mbed_official 159:7130f322cb7e 1138 __IOM uint32_t FUNCTION3; /*!< Offset: 0x058 (R/W) Function Register 3 */
mbed_official 159:7130f322cb7e 1139 uint32_t RESERVED3[981U];
mbed_official 159:7130f322cb7e 1140 __OM uint32_t LAR; /*!< Offset: 0xFB0 ( W) Lock Access Register */
mbed_official 159:7130f322cb7e 1141 __IM uint32_t LSR; /*!< Offset: 0xFB4 (R ) Lock Status Register */
mbed_official 159:7130f322cb7e 1142 } DWT_Type;
mbed_official 159:7130f322cb7e 1143
mbed_official 159:7130f322cb7e 1144 /* DWT Control Register Definitions */
mbed_official 159:7130f322cb7e 1145 #define DWT_CTRL_NUMCOMP_Pos 28U /*!< DWT CTRL: NUMCOMP Position */
mbed_official 159:7130f322cb7e 1146 #define DWT_CTRL_NUMCOMP_Msk (0xFUL << DWT_CTRL_NUMCOMP_Pos) /*!< DWT CTRL: NUMCOMP Mask */
mbed_official 159:7130f322cb7e 1147
mbed_official 159:7130f322cb7e 1148 #define DWT_CTRL_NOTRCPKT_Pos 27U /*!< DWT CTRL: NOTRCPKT Position */
mbed_official 159:7130f322cb7e 1149 #define DWT_CTRL_NOTRCPKT_Msk (0x1UL << DWT_CTRL_NOTRCPKT_Pos) /*!< DWT CTRL: NOTRCPKT Mask */
mbed_official 159:7130f322cb7e 1150
mbed_official 159:7130f322cb7e 1151 #define DWT_CTRL_NOEXTTRIG_Pos 26U /*!< DWT CTRL: NOEXTTRIG Position */
mbed_official 159:7130f322cb7e 1152 #define DWT_CTRL_NOEXTTRIG_Msk (0x1UL << DWT_CTRL_NOEXTTRIG_Pos) /*!< DWT CTRL: NOEXTTRIG Mask */
mbed_official 159:7130f322cb7e 1153
mbed_official 159:7130f322cb7e 1154 #define DWT_CTRL_NOCYCCNT_Pos 25U /*!< DWT CTRL: NOCYCCNT Position */
mbed_official 159:7130f322cb7e 1155 #define DWT_CTRL_NOCYCCNT_Msk (0x1UL << DWT_CTRL_NOCYCCNT_Pos) /*!< DWT CTRL: NOCYCCNT Mask */
mbed_official 159:7130f322cb7e 1156
mbed_official 159:7130f322cb7e 1157 #define DWT_CTRL_NOPRFCNT_Pos 24U /*!< DWT CTRL: NOPRFCNT Position */
mbed_official 159:7130f322cb7e 1158 #define DWT_CTRL_NOPRFCNT_Msk (0x1UL << DWT_CTRL_NOPRFCNT_Pos) /*!< DWT CTRL: NOPRFCNT Mask */
mbed_official 159:7130f322cb7e 1159
mbed_official 159:7130f322cb7e 1160 #define DWT_CTRL_CYCEVTENA_Pos 22U /*!< DWT CTRL: CYCEVTENA Position */
mbed_official 159:7130f322cb7e 1161 #define DWT_CTRL_CYCEVTENA_Msk (0x1UL << DWT_CTRL_CYCEVTENA_Pos) /*!< DWT CTRL: CYCEVTENA Mask */
mbed_official 159:7130f322cb7e 1162
mbed_official 159:7130f322cb7e 1163 #define DWT_CTRL_FOLDEVTENA_Pos 21U /*!< DWT CTRL: FOLDEVTENA Position */
mbed_official 159:7130f322cb7e 1164 #define DWT_CTRL_FOLDEVTENA_Msk (0x1UL << DWT_CTRL_FOLDEVTENA_Pos) /*!< DWT CTRL: FOLDEVTENA Mask */
mbed_official 159:7130f322cb7e 1165
mbed_official 159:7130f322cb7e 1166 #define DWT_CTRL_LSUEVTENA_Pos 20U /*!< DWT CTRL: LSUEVTENA Position */
mbed_official 159:7130f322cb7e 1167 #define DWT_CTRL_LSUEVTENA_Msk (0x1UL << DWT_CTRL_LSUEVTENA_Pos) /*!< DWT CTRL: LSUEVTENA Mask */
mbed_official 159:7130f322cb7e 1168
mbed_official 159:7130f322cb7e 1169 #define DWT_CTRL_SLEEPEVTENA_Pos 19U /*!< DWT CTRL: SLEEPEVTENA Position */
mbed_official 159:7130f322cb7e 1170 #define DWT_CTRL_SLEEPEVTENA_Msk (0x1UL << DWT_CTRL_SLEEPEVTENA_Pos) /*!< DWT CTRL: SLEEPEVTENA Mask */
mbed_official 159:7130f322cb7e 1171
mbed_official 159:7130f322cb7e 1172 #define DWT_CTRL_EXCEVTENA_Pos 18U /*!< DWT CTRL: EXCEVTENA Position */
mbed_official 159:7130f322cb7e 1173 #define DWT_CTRL_EXCEVTENA_Msk (0x1UL << DWT_CTRL_EXCEVTENA_Pos) /*!< DWT CTRL: EXCEVTENA Mask */
mbed_official 159:7130f322cb7e 1174
mbed_official 159:7130f322cb7e 1175 #define DWT_CTRL_CPIEVTENA_Pos 17U /*!< DWT CTRL: CPIEVTENA Position */
mbed_official 159:7130f322cb7e 1176 #define DWT_CTRL_CPIEVTENA_Msk (0x1UL << DWT_CTRL_CPIEVTENA_Pos) /*!< DWT CTRL: CPIEVTENA Mask */
mbed_official 159:7130f322cb7e 1177
mbed_official 159:7130f322cb7e 1178 #define DWT_CTRL_EXCTRCENA_Pos 16U /*!< DWT CTRL: EXCTRCENA Position */
mbed_official 159:7130f322cb7e 1179 #define DWT_CTRL_EXCTRCENA_Msk (0x1UL << DWT_CTRL_EXCTRCENA_Pos) /*!< DWT CTRL: EXCTRCENA Mask */
mbed_official 159:7130f322cb7e 1180
mbed_official 159:7130f322cb7e 1181 #define DWT_CTRL_PCSAMPLENA_Pos 12U /*!< DWT CTRL: PCSAMPLENA Position */
mbed_official 159:7130f322cb7e 1182 #define DWT_CTRL_PCSAMPLENA_Msk (0x1UL << DWT_CTRL_PCSAMPLENA_Pos) /*!< DWT CTRL: PCSAMPLENA Mask */
mbed_official 159:7130f322cb7e 1183
mbed_official 159:7130f322cb7e 1184 #define DWT_CTRL_SYNCTAP_Pos 10U /*!< DWT CTRL: SYNCTAP Position */
mbed_official 159:7130f322cb7e 1185 #define DWT_CTRL_SYNCTAP_Msk (0x3UL << DWT_CTRL_SYNCTAP_Pos) /*!< DWT CTRL: SYNCTAP Mask */
mbed_official 159:7130f322cb7e 1186
mbed_official 159:7130f322cb7e 1187 #define DWT_CTRL_CYCTAP_Pos 9U /*!< DWT CTRL: CYCTAP Position */
mbed_official 159:7130f322cb7e 1188 #define DWT_CTRL_CYCTAP_Msk (0x1UL << DWT_CTRL_CYCTAP_Pos) /*!< DWT CTRL: CYCTAP Mask */
mbed_official 159:7130f322cb7e 1189
mbed_official 159:7130f322cb7e 1190 #define DWT_CTRL_POSTINIT_Pos 5U /*!< DWT CTRL: POSTINIT Position */
mbed_official 159:7130f322cb7e 1191 #define DWT_CTRL_POSTINIT_Msk (0xFUL << DWT_CTRL_POSTINIT_Pos) /*!< DWT CTRL: POSTINIT Mask */
mbed_official 159:7130f322cb7e 1192
mbed_official 159:7130f322cb7e 1193 #define DWT_CTRL_POSTPRESET_Pos 1U /*!< DWT CTRL: POSTPRESET Position */
mbed_official 159:7130f322cb7e 1194 #define DWT_CTRL_POSTPRESET_Msk (0xFUL << DWT_CTRL_POSTPRESET_Pos) /*!< DWT CTRL: POSTPRESET Mask */
mbed_official 159:7130f322cb7e 1195
mbed_official 159:7130f322cb7e 1196 #define DWT_CTRL_CYCCNTENA_Pos 0U /*!< DWT CTRL: CYCCNTENA Position */
mbed_official 159:7130f322cb7e 1197 #define DWT_CTRL_CYCCNTENA_Msk (0x1UL /*<< DWT_CTRL_CYCCNTENA_Pos*/) /*!< DWT CTRL: CYCCNTENA Mask */
mbed_official 159:7130f322cb7e 1198
mbed_official 159:7130f322cb7e 1199 /* DWT CPI Count Register Definitions */
mbed_official 159:7130f322cb7e 1200 #define DWT_CPICNT_CPICNT_Pos 0U /*!< DWT CPICNT: CPICNT Position */
mbed_official 159:7130f322cb7e 1201 #define DWT_CPICNT_CPICNT_Msk (0xFFUL /*<< DWT_CPICNT_CPICNT_Pos*/) /*!< DWT CPICNT: CPICNT Mask */
mbed_official 159:7130f322cb7e 1202
mbed_official 159:7130f322cb7e 1203 /* DWT Exception Overhead Count Register Definitions */
mbed_official 159:7130f322cb7e 1204 #define DWT_EXCCNT_EXCCNT_Pos 0U /*!< DWT EXCCNT: EXCCNT Position */
mbed_official 159:7130f322cb7e 1205 #define DWT_EXCCNT_EXCCNT_Msk (0xFFUL /*<< DWT_EXCCNT_EXCCNT_Pos*/) /*!< DWT EXCCNT: EXCCNT Mask */
mbed_official 159:7130f322cb7e 1206
mbed_official 159:7130f322cb7e 1207 /* DWT Sleep Count Register Definitions */
mbed_official 159:7130f322cb7e 1208 #define DWT_SLEEPCNT_SLEEPCNT_Pos 0U /*!< DWT SLEEPCNT: SLEEPCNT Position */
mbed_official 159:7130f322cb7e 1209 #define DWT_SLEEPCNT_SLEEPCNT_Msk (0xFFUL /*<< DWT_SLEEPCNT_SLEEPCNT_Pos*/) /*!< DWT SLEEPCNT: SLEEPCNT Mask */
mbed_official 159:7130f322cb7e 1210
mbed_official 159:7130f322cb7e 1211 /* DWT LSU Count Register Definitions */
mbed_official 159:7130f322cb7e 1212 #define DWT_LSUCNT_LSUCNT_Pos 0U /*!< DWT LSUCNT: LSUCNT Position */
mbed_official 159:7130f322cb7e 1213 #define DWT_LSUCNT_LSUCNT_Msk (0xFFUL /*<< DWT_LSUCNT_LSUCNT_Pos*/) /*!< DWT LSUCNT: LSUCNT Mask */
mbed_official 159:7130f322cb7e 1214
mbed_official 159:7130f322cb7e 1215 /* DWT Folded-instruction Count Register Definitions */
mbed_official 159:7130f322cb7e 1216 #define DWT_FOLDCNT_FOLDCNT_Pos 0U /*!< DWT FOLDCNT: FOLDCNT Position */
mbed_official 159:7130f322cb7e 1217 #define DWT_FOLDCNT_FOLDCNT_Msk (0xFFUL /*<< DWT_FOLDCNT_FOLDCNT_Pos*/) /*!< DWT FOLDCNT: FOLDCNT Mask */
mbed_official 159:7130f322cb7e 1218
mbed_official 159:7130f322cb7e 1219 /* DWT Comparator Mask Register Definitions */
mbed_official 159:7130f322cb7e 1220 #define DWT_MASK_MASK_Pos 0U /*!< DWT MASK: MASK Position */
mbed_official 159:7130f322cb7e 1221 #define DWT_MASK_MASK_Msk (0x1FUL /*<< DWT_MASK_MASK_Pos*/) /*!< DWT MASK: MASK Mask */
mbed_official 159:7130f322cb7e 1222
mbed_official 159:7130f322cb7e 1223 /* DWT Comparator Function Register Definitions */
mbed_official 159:7130f322cb7e 1224 #define DWT_FUNCTION_MATCHED_Pos 24U /*!< DWT FUNCTION: MATCHED Position */
mbed_official 159:7130f322cb7e 1225 #define DWT_FUNCTION_MATCHED_Msk (0x1UL << DWT_FUNCTION_MATCHED_Pos) /*!< DWT FUNCTION: MATCHED Mask */
mbed_official 159:7130f322cb7e 1226
mbed_official 159:7130f322cb7e 1227 #define DWT_FUNCTION_DATAVADDR1_Pos 16U /*!< DWT FUNCTION: DATAVADDR1 Position */
mbed_official 159:7130f322cb7e 1228 #define DWT_FUNCTION_DATAVADDR1_Msk (0xFUL << DWT_FUNCTION_DATAVADDR1_Pos) /*!< DWT FUNCTION: DATAVADDR1 Mask */
mbed_official 159:7130f322cb7e 1229
mbed_official 159:7130f322cb7e 1230 #define DWT_FUNCTION_DATAVADDR0_Pos 12U /*!< DWT FUNCTION: DATAVADDR0 Position */
mbed_official 159:7130f322cb7e 1231 #define DWT_FUNCTION_DATAVADDR0_Msk (0xFUL << DWT_FUNCTION_DATAVADDR0_Pos) /*!< DWT FUNCTION: DATAVADDR0 Mask */
mbed_official 159:7130f322cb7e 1232
mbed_official 159:7130f322cb7e 1233 #define DWT_FUNCTION_DATAVSIZE_Pos 10U /*!< DWT FUNCTION: DATAVSIZE Position */
mbed_official 159:7130f322cb7e 1234 #define DWT_FUNCTION_DATAVSIZE_Msk (0x3UL << DWT_FUNCTION_DATAVSIZE_Pos) /*!< DWT FUNCTION: DATAVSIZE Mask */
mbed_official 159:7130f322cb7e 1235
mbed_official 159:7130f322cb7e 1236 #define DWT_FUNCTION_LNK1ENA_Pos 9U /*!< DWT FUNCTION: LNK1ENA Position */
mbed_official 159:7130f322cb7e 1237 #define DWT_FUNCTION_LNK1ENA_Msk (0x1UL << DWT_FUNCTION_LNK1ENA_Pos) /*!< DWT FUNCTION: LNK1ENA Mask */
mbed_official 159:7130f322cb7e 1238
mbed_official 159:7130f322cb7e 1239 #define DWT_FUNCTION_DATAVMATCH_Pos 8U /*!< DWT FUNCTION: DATAVMATCH Position */
mbed_official 159:7130f322cb7e 1240 #define DWT_FUNCTION_DATAVMATCH_Msk (0x1UL << DWT_FUNCTION_DATAVMATCH_Pos) /*!< DWT FUNCTION: DATAVMATCH Mask */
mbed_official 159:7130f322cb7e 1241
mbed_official 159:7130f322cb7e 1242 #define DWT_FUNCTION_CYCMATCH_Pos 7U /*!< DWT FUNCTION: CYCMATCH Position */
mbed_official 159:7130f322cb7e 1243 #define DWT_FUNCTION_CYCMATCH_Msk (0x1UL << DWT_FUNCTION_CYCMATCH_Pos) /*!< DWT FUNCTION: CYCMATCH Mask */
mbed_official 159:7130f322cb7e 1244
mbed_official 159:7130f322cb7e 1245 #define DWT_FUNCTION_EMITRANGE_Pos 5U /*!< DWT FUNCTION: EMITRANGE Position */
mbed_official 159:7130f322cb7e 1246 #define DWT_FUNCTION_EMITRANGE_Msk (0x1UL << DWT_FUNCTION_EMITRANGE_Pos) /*!< DWT FUNCTION: EMITRANGE Mask */
mbed_official 159:7130f322cb7e 1247
mbed_official 159:7130f322cb7e 1248 #define DWT_FUNCTION_FUNCTION_Pos 0U /*!< DWT FUNCTION: FUNCTION Position */
mbed_official 159:7130f322cb7e 1249 #define DWT_FUNCTION_FUNCTION_Msk (0xFUL /*<< DWT_FUNCTION_FUNCTION_Pos*/) /*!< DWT FUNCTION: FUNCTION Mask */
mbed_official 159:7130f322cb7e 1250
mbed_official 159:7130f322cb7e 1251 /*@}*/ /* end of group CMSIS_DWT */
mbed_official 159:7130f322cb7e 1252
mbed_official 159:7130f322cb7e 1253
mbed_official 159:7130f322cb7e 1254 /**
mbed_official 159:7130f322cb7e 1255 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 1256 \defgroup CMSIS_TPI Trace Port Interface (TPI)
mbed_official 159:7130f322cb7e 1257 \brief Type definitions for the Trace Port Interface (TPI)
mbed_official 159:7130f322cb7e 1258 @{
mbed_official 159:7130f322cb7e 1259 */
mbed_official 159:7130f322cb7e 1260
mbed_official 159:7130f322cb7e 1261 /**
mbed_official 159:7130f322cb7e 1262 \brief Structure type to access the Trace Port Interface Register (TPI).
mbed_official 159:7130f322cb7e 1263 */
mbed_official 159:7130f322cb7e 1264 typedef struct
mbed_official 159:7130f322cb7e 1265 {
mbed_official 159:7130f322cb7e 1266 __IOM uint32_t SSPSR; /*!< Offset: 0x000 (R/ ) Supported Parallel Port Size Register */
mbed_official 159:7130f322cb7e 1267 __IOM uint32_t CSPSR; /*!< Offset: 0x004 (R/W) Current Parallel Port Size Register */
mbed_official 159:7130f322cb7e 1268 uint32_t RESERVED0[2U];
mbed_official 159:7130f322cb7e 1269 __IOM uint32_t ACPR; /*!< Offset: 0x010 (R/W) Asynchronous Clock Prescaler Register */
mbed_official 159:7130f322cb7e 1270 uint32_t RESERVED1[55U];
mbed_official 159:7130f322cb7e 1271 __IOM uint32_t SPPR; /*!< Offset: 0x0F0 (R/W) Selected Pin Protocol Register */
mbed_official 159:7130f322cb7e 1272 uint32_t RESERVED2[131U];
mbed_official 159:7130f322cb7e 1273 __IM uint32_t FFSR; /*!< Offset: 0x300 (R/ ) Formatter and Flush Status Register */
mbed_official 159:7130f322cb7e 1274 __IOM uint32_t FFCR; /*!< Offset: 0x304 (R/W) Formatter and Flush Control Register */
mbed_official 159:7130f322cb7e 1275 __IM uint32_t FSCR; /*!< Offset: 0x308 (R/ ) Formatter Synchronization Counter Register */
mbed_official 159:7130f322cb7e 1276 uint32_t RESERVED3[759U];
mbed_official 159:7130f322cb7e 1277 __IM uint32_t TRIGGER; /*!< Offset: 0xEE8 (R/ ) TRIGGER */
mbed_official 159:7130f322cb7e 1278 __IM uint32_t FIFO0; /*!< Offset: 0xEEC (R/ ) Integration ETM Data */
mbed_official 159:7130f322cb7e 1279 __IM uint32_t ITATBCTR2; /*!< Offset: 0xEF0 (R/ ) ITATBCTR2 */
mbed_official 159:7130f322cb7e 1280 uint32_t RESERVED4[1U];
mbed_official 159:7130f322cb7e 1281 __IM uint32_t ITATBCTR0; /*!< Offset: 0xEF8 (R/ ) ITATBCTR0 */
mbed_official 159:7130f322cb7e 1282 __IM uint32_t FIFO1; /*!< Offset: 0xEFC (R/ ) Integration ITM Data */
mbed_official 159:7130f322cb7e 1283 __IOM uint32_t ITCTRL; /*!< Offset: 0xF00 (R/W) Integration Mode Control */
mbed_official 159:7130f322cb7e 1284 uint32_t RESERVED5[39U];
mbed_official 159:7130f322cb7e 1285 __IOM uint32_t CLAIMSET; /*!< Offset: 0xFA0 (R/W) Claim tag set */
mbed_official 159:7130f322cb7e 1286 __IOM uint32_t CLAIMCLR; /*!< Offset: 0xFA4 (R/W) Claim tag clear */
mbed_official 159:7130f322cb7e 1287 uint32_t RESERVED7[8U];
mbed_official 159:7130f322cb7e 1288 __IM uint32_t DEVID; /*!< Offset: 0xFC8 (R/ ) TPIU_DEVID */
mbed_official 159:7130f322cb7e 1289 __IM uint32_t DEVTYPE; /*!< Offset: 0xFCC (R/ ) TPIU_DEVTYPE */
mbed_official 159:7130f322cb7e 1290 } TPI_Type;
mbed_official 159:7130f322cb7e 1291
mbed_official 159:7130f322cb7e 1292 /* TPI Asynchronous Clock Prescaler Register Definitions */
mbed_official 159:7130f322cb7e 1293 #define TPI_ACPR_PRESCALER_Pos 0U /*!< TPI ACPR: PRESCALER Position */
mbed_official 159:7130f322cb7e 1294 #define TPI_ACPR_PRESCALER_Msk (0x1FFFUL /*<< TPI_ACPR_PRESCALER_Pos*/) /*!< TPI ACPR: PRESCALER Mask */
mbed_official 159:7130f322cb7e 1295
mbed_official 159:7130f322cb7e 1296 /* TPI Selected Pin Protocol Register Definitions */
mbed_official 159:7130f322cb7e 1297 #define TPI_SPPR_TXMODE_Pos 0U /*!< TPI SPPR: TXMODE Position */
mbed_official 159:7130f322cb7e 1298 #define TPI_SPPR_TXMODE_Msk (0x3UL /*<< TPI_SPPR_TXMODE_Pos*/) /*!< TPI SPPR: TXMODE Mask */
mbed_official 159:7130f322cb7e 1299
mbed_official 159:7130f322cb7e 1300 /* TPI Formatter and Flush Status Register Definitions */
mbed_official 159:7130f322cb7e 1301 #define TPI_FFSR_FtNonStop_Pos 3U /*!< TPI FFSR: FtNonStop Position */
mbed_official 159:7130f322cb7e 1302 #define TPI_FFSR_FtNonStop_Msk (0x1UL << TPI_FFSR_FtNonStop_Pos) /*!< TPI FFSR: FtNonStop Mask */
mbed_official 159:7130f322cb7e 1303
mbed_official 159:7130f322cb7e 1304 #define TPI_FFSR_TCPresent_Pos 2U /*!< TPI FFSR: TCPresent Position */
mbed_official 159:7130f322cb7e 1305 #define TPI_FFSR_TCPresent_Msk (0x1UL << TPI_FFSR_TCPresent_Pos) /*!< TPI FFSR: TCPresent Mask */
mbed_official 159:7130f322cb7e 1306
mbed_official 159:7130f322cb7e 1307 #define TPI_FFSR_FtStopped_Pos 1U /*!< TPI FFSR: FtStopped Position */
mbed_official 159:7130f322cb7e 1308 #define TPI_FFSR_FtStopped_Msk (0x1UL << TPI_FFSR_FtStopped_Pos) /*!< TPI FFSR: FtStopped Mask */
mbed_official 159:7130f322cb7e 1309
mbed_official 159:7130f322cb7e 1310 #define TPI_FFSR_FlInProg_Pos 0U /*!< TPI FFSR: FlInProg Position */
mbed_official 159:7130f322cb7e 1311 #define TPI_FFSR_FlInProg_Msk (0x1UL /*<< TPI_FFSR_FlInProg_Pos*/) /*!< TPI FFSR: FlInProg Mask */
mbed_official 159:7130f322cb7e 1312
mbed_official 159:7130f322cb7e 1313 /* TPI Formatter and Flush Control Register Definitions */
mbed_official 159:7130f322cb7e 1314 #define TPI_FFCR_TrigIn_Pos 8U /*!< TPI FFCR: TrigIn Position */
mbed_official 159:7130f322cb7e 1315 #define TPI_FFCR_TrigIn_Msk (0x1UL << TPI_FFCR_TrigIn_Pos) /*!< TPI FFCR: TrigIn Mask */
mbed_official 159:7130f322cb7e 1316
mbed_official 159:7130f322cb7e 1317 #define TPI_FFCR_EnFCont_Pos 1U /*!< TPI FFCR: EnFCont Position */
mbed_official 159:7130f322cb7e 1318 #define TPI_FFCR_EnFCont_Msk (0x1UL << TPI_FFCR_EnFCont_Pos) /*!< TPI FFCR: EnFCont Mask */
mbed_official 159:7130f322cb7e 1319
mbed_official 159:7130f322cb7e 1320 /* TPI TRIGGER Register Definitions */
mbed_official 159:7130f322cb7e 1321 #define TPI_TRIGGER_TRIGGER_Pos 0U /*!< TPI TRIGGER: TRIGGER Position */
mbed_official 159:7130f322cb7e 1322 #define TPI_TRIGGER_TRIGGER_Msk (0x1UL /*<< TPI_TRIGGER_TRIGGER_Pos*/) /*!< TPI TRIGGER: TRIGGER Mask */
mbed_official 159:7130f322cb7e 1323
mbed_official 159:7130f322cb7e 1324 /* TPI Integration ETM Data Register Definitions (FIFO0) */
mbed_official 159:7130f322cb7e 1325 #define TPI_FIFO0_ITM_ATVALID_Pos 29U /*!< TPI FIFO0: ITM_ATVALID Position */
mbed_official 159:7130f322cb7e 1326 #define TPI_FIFO0_ITM_ATVALID_Msk (0x3UL << TPI_FIFO0_ITM_ATVALID_Pos) /*!< TPI FIFO0: ITM_ATVALID Mask */
mbed_official 159:7130f322cb7e 1327
mbed_official 159:7130f322cb7e 1328 #define TPI_FIFO0_ITM_bytecount_Pos 27U /*!< TPI FIFO0: ITM_bytecount Position */
mbed_official 159:7130f322cb7e 1329 #define TPI_FIFO0_ITM_bytecount_Msk (0x3UL << TPI_FIFO0_ITM_bytecount_Pos) /*!< TPI FIFO0: ITM_bytecount Mask */
mbed_official 159:7130f322cb7e 1330
mbed_official 159:7130f322cb7e 1331 #define TPI_FIFO0_ETM_ATVALID_Pos 26U /*!< TPI FIFO0: ETM_ATVALID Position */
mbed_official 159:7130f322cb7e 1332 #define TPI_FIFO0_ETM_ATVALID_Msk (0x3UL << TPI_FIFO0_ETM_ATVALID_Pos) /*!< TPI FIFO0: ETM_ATVALID Mask */
mbed_official 159:7130f322cb7e 1333
mbed_official 159:7130f322cb7e 1334 #define TPI_FIFO0_ETM_bytecount_Pos 24U /*!< TPI FIFO0: ETM_bytecount Position */
mbed_official 159:7130f322cb7e 1335 #define TPI_FIFO0_ETM_bytecount_Msk (0x3UL << TPI_FIFO0_ETM_bytecount_Pos) /*!< TPI FIFO0: ETM_bytecount Mask */
mbed_official 159:7130f322cb7e 1336
mbed_official 159:7130f322cb7e 1337 #define TPI_FIFO0_ETM2_Pos 16U /*!< TPI FIFO0: ETM2 Position */
mbed_official 159:7130f322cb7e 1338 #define TPI_FIFO0_ETM2_Msk (0xFFUL << TPI_FIFO0_ETM2_Pos) /*!< TPI FIFO0: ETM2 Mask */
mbed_official 159:7130f322cb7e 1339
mbed_official 159:7130f322cb7e 1340 #define TPI_FIFO0_ETM1_Pos 8U /*!< TPI FIFO0: ETM1 Position */
mbed_official 159:7130f322cb7e 1341 #define TPI_FIFO0_ETM1_Msk (0xFFUL << TPI_FIFO0_ETM1_Pos) /*!< TPI FIFO0: ETM1 Mask */
mbed_official 159:7130f322cb7e 1342
mbed_official 159:7130f322cb7e 1343 #define TPI_FIFO0_ETM0_Pos 0U /*!< TPI FIFO0: ETM0 Position */
mbed_official 159:7130f322cb7e 1344 #define TPI_FIFO0_ETM0_Msk (0xFFUL /*<< TPI_FIFO0_ETM0_Pos*/) /*!< TPI FIFO0: ETM0 Mask */
mbed_official 159:7130f322cb7e 1345
mbed_official 159:7130f322cb7e 1346 /* TPI ITATBCTR2 Register Definitions */
mbed_official 159:7130f322cb7e 1347 #define TPI_ITATBCTR2_ATREADY_Pos 0U /*!< TPI ITATBCTR2: ATREADY Position */
mbed_official 159:7130f322cb7e 1348 #define TPI_ITATBCTR2_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR2_ATREADY_Pos*/) /*!< TPI ITATBCTR2: ATREADY Mask */
mbed_official 159:7130f322cb7e 1349
mbed_official 159:7130f322cb7e 1350 /* TPI Integration ITM Data Register Definitions (FIFO1) */
mbed_official 159:7130f322cb7e 1351 #define TPI_FIFO1_ITM_ATVALID_Pos 29U /*!< TPI FIFO1: ITM_ATVALID Position */
mbed_official 159:7130f322cb7e 1352 #define TPI_FIFO1_ITM_ATVALID_Msk (0x3UL << TPI_FIFO1_ITM_ATVALID_Pos) /*!< TPI FIFO1: ITM_ATVALID Mask */
mbed_official 159:7130f322cb7e 1353
mbed_official 159:7130f322cb7e 1354 #define TPI_FIFO1_ITM_bytecount_Pos 27U /*!< TPI FIFO1: ITM_bytecount Position */
mbed_official 159:7130f322cb7e 1355 #define TPI_FIFO1_ITM_bytecount_Msk (0x3UL << TPI_FIFO1_ITM_bytecount_Pos) /*!< TPI FIFO1: ITM_bytecount Mask */
mbed_official 159:7130f322cb7e 1356
mbed_official 159:7130f322cb7e 1357 #define TPI_FIFO1_ETM_ATVALID_Pos 26U /*!< TPI FIFO1: ETM_ATVALID Position */
mbed_official 159:7130f322cb7e 1358 #define TPI_FIFO1_ETM_ATVALID_Msk (0x3UL << TPI_FIFO1_ETM_ATVALID_Pos) /*!< TPI FIFO1: ETM_ATVALID Mask */
mbed_official 159:7130f322cb7e 1359
mbed_official 159:7130f322cb7e 1360 #define TPI_FIFO1_ETM_bytecount_Pos 24U /*!< TPI FIFO1: ETM_bytecount Position */
mbed_official 159:7130f322cb7e 1361 #define TPI_FIFO1_ETM_bytecount_Msk (0x3UL << TPI_FIFO1_ETM_bytecount_Pos) /*!< TPI FIFO1: ETM_bytecount Mask */
mbed_official 159:7130f322cb7e 1362
mbed_official 159:7130f322cb7e 1363 #define TPI_FIFO1_ITM2_Pos 16U /*!< TPI FIFO1: ITM2 Position */
mbed_official 159:7130f322cb7e 1364 #define TPI_FIFO1_ITM2_Msk (0xFFUL << TPI_FIFO1_ITM2_Pos) /*!< TPI FIFO1: ITM2 Mask */
mbed_official 159:7130f322cb7e 1365
mbed_official 159:7130f322cb7e 1366 #define TPI_FIFO1_ITM1_Pos 8U /*!< TPI FIFO1: ITM1 Position */
mbed_official 159:7130f322cb7e 1367 #define TPI_FIFO1_ITM1_Msk (0xFFUL << TPI_FIFO1_ITM1_Pos) /*!< TPI FIFO1: ITM1 Mask */
mbed_official 159:7130f322cb7e 1368
mbed_official 159:7130f322cb7e 1369 #define TPI_FIFO1_ITM0_Pos 0U /*!< TPI FIFO1: ITM0 Position */
mbed_official 159:7130f322cb7e 1370 #define TPI_FIFO1_ITM0_Msk (0xFFUL /*<< TPI_FIFO1_ITM0_Pos*/) /*!< TPI FIFO1: ITM0 Mask */
mbed_official 159:7130f322cb7e 1371
mbed_official 159:7130f322cb7e 1372 /* TPI ITATBCTR0 Register Definitions */
mbed_official 159:7130f322cb7e 1373 #define TPI_ITATBCTR0_ATREADY_Pos 0U /*!< TPI ITATBCTR0: ATREADY Position */
mbed_official 159:7130f322cb7e 1374 #define TPI_ITATBCTR0_ATREADY_Msk (0x1UL /*<< TPI_ITATBCTR0_ATREADY_Pos*/) /*!< TPI ITATBCTR0: ATREADY Mask */
mbed_official 159:7130f322cb7e 1375
mbed_official 159:7130f322cb7e 1376 /* TPI Integration Mode Control Register Definitions */
mbed_official 159:7130f322cb7e 1377 #define TPI_ITCTRL_Mode_Pos 0U /*!< TPI ITCTRL: Mode Position */
mbed_official 159:7130f322cb7e 1378 #define TPI_ITCTRL_Mode_Msk (0x1UL /*<< TPI_ITCTRL_Mode_Pos*/) /*!< TPI ITCTRL: Mode Mask */
mbed_official 159:7130f322cb7e 1379
mbed_official 159:7130f322cb7e 1380 /* TPI DEVID Register Definitions */
mbed_official 159:7130f322cb7e 1381 #define TPI_DEVID_NRZVALID_Pos 11U /*!< TPI DEVID: NRZVALID Position */
mbed_official 159:7130f322cb7e 1382 #define TPI_DEVID_NRZVALID_Msk (0x1UL << TPI_DEVID_NRZVALID_Pos) /*!< TPI DEVID: NRZVALID Mask */
mbed_official 159:7130f322cb7e 1383
mbed_official 159:7130f322cb7e 1384 #define TPI_DEVID_MANCVALID_Pos 10U /*!< TPI DEVID: MANCVALID Position */
mbed_official 159:7130f322cb7e 1385 #define TPI_DEVID_MANCVALID_Msk (0x1UL << TPI_DEVID_MANCVALID_Pos) /*!< TPI DEVID: MANCVALID Mask */
mbed_official 159:7130f322cb7e 1386
mbed_official 159:7130f322cb7e 1387 #define TPI_DEVID_PTINVALID_Pos 9U /*!< TPI DEVID: PTINVALID Position */
mbed_official 159:7130f322cb7e 1388 #define TPI_DEVID_PTINVALID_Msk (0x1UL << TPI_DEVID_PTINVALID_Pos) /*!< TPI DEVID: PTINVALID Mask */
mbed_official 159:7130f322cb7e 1389
mbed_official 159:7130f322cb7e 1390 #define TPI_DEVID_MinBufSz_Pos 6U /*!< TPI DEVID: MinBufSz Position */
mbed_official 159:7130f322cb7e 1391 #define TPI_DEVID_MinBufSz_Msk (0x7UL << TPI_DEVID_MinBufSz_Pos) /*!< TPI DEVID: MinBufSz Mask */
mbed_official 159:7130f322cb7e 1392
mbed_official 159:7130f322cb7e 1393 #define TPI_DEVID_AsynClkIn_Pos 5U /*!< TPI DEVID: AsynClkIn Position */
mbed_official 159:7130f322cb7e 1394 #define TPI_DEVID_AsynClkIn_Msk (0x1UL << TPI_DEVID_AsynClkIn_Pos) /*!< TPI DEVID: AsynClkIn Mask */
mbed_official 159:7130f322cb7e 1395
mbed_official 159:7130f322cb7e 1396 #define TPI_DEVID_NrTraceInput_Pos 0U /*!< TPI DEVID: NrTraceInput Position */
mbed_official 159:7130f322cb7e 1397 #define TPI_DEVID_NrTraceInput_Msk (0x1FUL /*<< TPI_DEVID_NrTraceInput_Pos*/) /*!< TPI DEVID: NrTraceInput Mask */
mbed_official 159:7130f322cb7e 1398
mbed_official 159:7130f322cb7e 1399 /* TPI DEVTYPE Register Definitions */
mbed_official 159:7130f322cb7e 1400 #define TPI_DEVTYPE_MajorType_Pos 4U /*!< TPI DEVTYPE: MajorType Position */
mbed_official 159:7130f322cb7e 1401 #define TPI_DEVTYPE_MajorType_Msk (0xFUL << TPI_DEVTYPE_MajorType_Pos) /*!< TPI DEVTYPE: MajorType Mask */
mbed_official 159:7130f322cb7e 1402
mbed_official 159:7130f322cb7e 1403 #define TPI_DEVTYPE_SubType_Pos 0U /*!< TPI DEVTYPE: SubType Position */
mbed_official 159:7130f322cb7e 1404 #define TPI_DEVTYPE_SubType_Msk (0xFUL /*<< TPI_DEVTYPE_SubType_Pos*/) /*!< TPI DEVTYPE: SubType Mask */
mbed_official 159:7130f322cb7e 1405
mbed_official 159:7130f322cb7e 1406 /*@}*/ /* end of group CMSIS_TPI */
mbed_official 159:7130f322cb7e 1407
mbed_official 159:7130f322cb7e 1408
mbed_official 159:7130f322cb7e 1409 #if defined (__MPU_PRESENT) && (__MPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 1410 /**
mbed_official 159:7130f322cb7e 1411 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 1412 \defgroup CMSIS_MPU Memory Protection Unit (MPU)
mbed_official 159:7130f322cb7e 1413 \brief Type definitions for the Memory Protection Unit (MPU)
mbed_official 159:7130f322cb7e 1414 @{
mbed_official 159:7130f322cb7e 1415 */
mbed_official 159:7130f322cb7e 1416
mbed_official 159:7130f322cb7e 1417 /**
mbed_official 159:7130f322cb7e 1418 \brief Structure type to access the Memory Protection Unit (MPU).
mbed_official 159:7130f322cb7e 1419 */
mbed_official 159:7130f322cb7e 1420 typedef struct
mbed_official 159:7130f322cb7e 1421 {
mbed_official 159:7130f322cb7e 1422 __IM uint32_t TYPE; /*!< Offset: 0x000 (R/ ) MPU Type Register */
mbed_official 159:7130f322cb7e 1423 __IOM uint32_t CTRL; /*!< Offset: 0x004 (R/W) MPU Control Register */
mbed_official 159:7130f322cb7e 1424 __IOM uint32_t RNR; /*!< Offset: 0x008 (R/W) MPU Region RNRber Register */
mbed_official 159:7130f322cb7e 1425 __IOM uint32_t RBAR; /*!< Offset: 0x00C (R/W) MPU Region Base Address Register */
mbed_official 159:7130f322cb7e 1426 __IOM uint32_t RASR; /*!< Offset: 0x010 (R/W) MPU Region Attribute and Size Register */
mbed_official 159:7130f322cb7e 1427 __IOM uint32_t RBAR_A1; /*!< Offset: 0x014 (R/W) MPU Alias 1 Region Base Address Register */
mbed_official 159:7130f322cb7e 1428 __IOM uint32_t RASR_A1; /*!< Offset: 0x018 (R/W) MPU Alias 1 Region Attribute and Size Register */
mbed_official 159:7130f322cb7e 1429 __IOM uint32_t RBAR_A2; /*!< Offset: 0x01C (R/W) MPU Alias 2 Region Base Address Register */
mbed_official 159:7130f322cb7e 1430 __IOM uint32_t RASR_A2; /*!< Offset: 0x020 (R/W) MPU Alias 2 Region Attribute and Size Register */
mbed_official 159:7130f322cb7e 1431 __IOM uint32_t RBAR_A3; /*!< Offset: 0x024 (R/W) MPU Alias 3 Region Base Address Register */
mbed_official 159:7130f322cb7e 1432 __IOM uint32_t RASR_A3; /*!< Offset: 0x028 (R/W) MPU Alias 3 Region Attribute and Size Register */
mbed_official 159:7130f322cb7e 1433 } MPU_Type;
mbed_official 159:7130f322cb7e 1434
mbed_official 159:7130f322cb7e 1435 /* MPU Type Register Definitions */
mbed_official 159:7130f322cb7e 1436 #define MPU_TYPE_IREGION_Pos 16U /*!< MPU TYPE: IREGION Position */
mbed_official 159:7130f322cb7e 1437 #define MPU_TYPE_IREGION_Msk (0xFFUL << MPU_TYPE_IREGION_Pos) /*!< MPU TYPE: IREGION Mask */
mbed_official 159:7130f322cb7e 1438
mbed_official 159:7130f322cb7e 1439 #define MPU_TYPE_DREGION_Pos 8U /*!< MPU TYPE: DREGION Position */
mbed_official 159:7130f322cb7e 1440 #define MPU_TYPE_DREGION_Msk (0xFFUL << MPU_TYPE_DREGION_Pos) /*!< MPU TYPE: DREGION Mask */
mbed_official 159:7130f322cb7e 1441
mbed_official 159:7130f322cb7e 1442 #define MPU_TYPE_SEPARATE_Pos 0U /*!< MPU TYPE: SEPARATE Position */
mbed_official 159:7130f322cb7e 1443 #define MPU_TYPE_SEPARATE_Msk (1UL /*<< MPU_TYPE_SEPARATE_Pos*/) /*!< MPU TYPE: SEPARATE Mask */
mbed_official 159:7130f322cb7e 1444
mbed_official 159:7130f322cb7e 1445 /* MPU Control Register Definitions */
mbed_official 159:7130f322cb7e 1446 #define MPU_CTRL_PRIVDEFENA_Pos 2U /*!< MPU CTRL: PRIVDEFENA Position */
mbed_official 159:7130f322cb7e 1447 #define MPU_CTRL_PRIVDEFENA_Msk (1UL << MPU_CTRL_PRIVDEFENA_Pos) /*!< MPU CTRL: PRIVDEFENA Mask */
mbed_official 159:7130f322cb7e 1448
mbed_official 159:7130f322cb7e 1449 #define MPU_CTRL_HFNMIENA_Pos 1U /*!< MPU CTRL: HFNMIENA Position */
mbed_official 159:7130f322cb7e 1450 #define MPU_CTRL_HFNMIENA_Msk (1UL << MPU_CTRL_HFNMIENA_Pos) /*!< MPU CTRL: HFNMIENA Mask */
mbed_official 159:7130f322cb7e 1451
mbed_official 159:7130f322cb7e 1452 #define MPU_CTRL_ENABLE_Pos 0U /*!< MPU CTRL: ENABLE Position */
mbed_official 159:7130f322cb7e 1453 #define MPU_CTRL_ENABLE_Msk (1UL /*<< MPU_CTRL_ENABLE_Pos*/) /*!< MPU CTRL: ENABLE Mask */
mbed_official 159:7130f322cb7e 1454
mbed_official 159:7130f322cb7e 1455 /* MPU Region Number Register Definitions */
mbed_official 159:7130f322cb7e 1456 #define MPU_RNR_REGION_Pos 0U /*!< MPU RNR: REGION Position */
mbed_official 159:7130f322cb7e 1457 #define MPU_RNR_REGION_Msk (0xFFUL /*<< MPU_RNR_REGION_Pos*/) /*!< MPU RNR: REGION Mask */
mbed_official 159:7130f322cb7e 1458
mbed_official 159:7130f322cb7e 1459 /* MPU Region Base Address Register Definitions */
mbed_official 159:7130f322cb7e 1460 #define MPU_RBAR_ADDR_Pos 5U /*!< MPU RBAR: ADDR Position */
mbed_official 159:7130f322cb7e 1461 #define MPU_RBAR_ADDR_Msk (0x7FFFFFFUL << MPU_RBAR_ADDR_Pos) /*!< MPU RBAR: ADDR Mask */
mbed_official 159:7130f322cb7e 1462
mbed_official 159:7130f322cb7e 1463 #define MPU_RBAR_VALID_Pos 4U /*!< MPU RBAR: VALID Position */
mbed_official 159:7130f322cb7e 1464 #define MPU_RBAR_VALID_Msk (1UL << MPU_RBAR_VALID_Pos) /*!< MPU RBAR: VALID Mask */
mbed_official 159:7130f322cb7e 1465
mbed_official 159:7130f322cb7e 1466 #define MPU_RBAR_REGION_Pos 0U /*!< MPU RBAR: REGION Position */
mbed_official 159:7130f322cb7e 1467 #define MPU_RBAR_REGION_Msk (0xFUL /*<< MPU_RBAR_REGION_Pos*/) /*!< MPU RBAR: REGION Mask */
mbed_official 159:7130f322cb7e 1468
mbed_official 159:7130f322cb7e 1469 /* MPU Region Attribute and Size Register Definitions */
mbed_official 159:7130f322cb7e 1470 #define MPU_RASR_ATTRS_Pos 16U /*!< MPU RASR: MPU Region Attribute field Position */
mbed_official 159:7130f322cb7e 1471 #define MPU_RASR_ATTRS_Msk (0xFFFFUL << MPU_RASR_ATTRS_Pos) /*!< MPU RASR: MPU Region Attribute field Mask */
mbed_official 159:7130f322cb7e 1472
mbed_official 159:7130f322cb7e 1473 #define MPU_RASR_XN_Pos 28U /*!< MPU RASR: ATTRS.XN Position */
mbed_official 159:7130f322cb7e 1474 #define MPU_RASR_XN_Msk (1UL << MPU_RASR_XN_Pos) /*!< MPU RASR: ATTRS.XN Mask */
mbed_official 159:7130f322cb7e 1475
mbed_official 159:7130f322cb7e 1476 #define MPU_RASR_AP_Pos 24U /*!< MPU RASR: ATTRS.AP Position */
mbed_official 159:7130f322cb7e 1477 #define MPU_RASR_AP_Msk (0x7UL << MPU_RASR_AP_Pos) /*!< MPU RASR: ATTRS.AP Mask */
mbed_official 159:7130f322cb7e 1478
mbed_official 159:7130f322cb7e 1479 #define MPU_RASR_TEX_Pos 19U /*!< MPU RASR: ATTRS.TEX Position */
mbed_official 159:7130f322cb7e 1480 #define MPU_RASR_TEX_Msk (0x7UL << MPU_RASR_TEX_Pos) /*!< MPU RASR: ATTRS.TEX Mask */
mbed_official 159:7130f322cb7e 1481
mbed_official 159:7130f322cb7e 1482 #define MPU_RASR_S_Pos 18U /*!< MPU RASR: ATTRS.S Position */
mbed_official 159:7130f322cb7e 1483 #define MPU_RASR_S_Msk (1UL << MPU_RASR_S_Pos) /*!< MPU RASR: ATTRS.S Mask */
mbed_official 159:7130f322cb7e 1484
mbed_official 159:7130f322cb7e 1485 #define MPU_RASR_C_Pos 17U /*!< MPU RASR: ATTRS.C Position */
mbed_official 159:7130f322cb7e 1486 #define MPU_RASR_C_Msk (1UL << MPU_RASR_C_Pos) /*!< MPU RASR: ATTRS.C Mask */
mbed_official 159:7130f322cb7e 1487
mbed_official 159:7130f322cb7e 1488 #define MPU_RASR_B_Pos 16U /*!< MPU RASR: ATTRS.B Position */
mbed_official 159:7130f322cb7e 1489 #define MPU_RASR_B_Msk (1UL << MPU_RASR_B_Pos) /*!< MPU RASR: ATTRS.B Mask */
mbed_official 159:7130f322cb7e 1490
mbed_official 159:7130f322cb7e 1491 #define MPU_RASR_SRD_Pos 8U /*!< MPU RASR: Sub-Region Disable Position */
mbed_official 159:7130f322cb7e 1492 #define MPU_RASR_SRD_Msk (0xFFUL << MPU_RASR_SRD_Pos) /*!< MPU RASR: Sub-Region Disable Mask */
mbed_official 159:7130f322cb7e 1493
mbed_official 159:7130f322cb7e 1494 #define MPU_RASR_SIZE_Pos 1U /*!< MPU RASR: Region Size Field Position */
mbed_official 159:7130f322cb7e 1495 #define MPU_RASR_SIZE_Msk (0x1FUL << MPU_RASR_SIZE_Pos) /*!< MPU RASR: Region Size Field Mask */
mbed_official 159:7130f322cb7e 1496
mbed_official 159:7130f322cb7e 1497 #define MPU_RASR_ENABLE_Pos 0U /*!< MPU RASR: Region enable bit Position */
mbed_official 159:7130f322cb7e 1498 #define MPU_RASR_ENABLE_Msk (1UL /*<< MPU_RASR_ENABLE_Pos*/) /*!< MPU RASR: Region enable bit Disable Mask */
mbed_official 159:7130f322cb7e 1499
mbed_official 159:7130f322cb7e 1500 /*@} end of group CMSIS_MPU */
mbed_official 159:7130f322cb7e 1501 #endif /* defined (__MPU_PRESENT) && (__MPU_PRESENT == 1U) */
mbed_official 159:7130f322cb7e 1502
mbed_official 159:7130f322cb7e 1503
mbed_official 159:7130f322cb7e 1504 /**
mbed_official 159:7130f322cb7e 1505 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 1506 \defgroup CMSIS_FPU Floating Point Unit (FPU)
mbed_official 159:7130f322cb7e 1507 \brief Type definitions for the Floating Point Unit (FPU)
mbed_official 159:7130f322cb7e 1508 @{
mbed_official 159:7130f322cb7e 1509 */
mbed_official 159:7130f322cb7e 1510
mbed_official 159:7130f322cb7e 1511 /**
mbed_official 159:7130f322cb7e 1512 \brief Structure type to access the Floating Point Unit (FPU).
mbed_official 159:7130f322cb7e 1513 */
mbed_official 159:7130f322cb7e 1514 typedef struct
mbed_official 159:7130f322cb7e 1515 {
mbed_official 159:7130f322cb7e 1516 uint32_t RESERVED0[1U];
mbed_official 159:7130f322cb7e 1517 __IOM uint32_t FPCCR; /*!< Offset: 0x004 (R/W) Floating-Point Context Control Register */
mbed_official 159:7130f322cb7e 1518 __IOM uint32_t FPCAR; /*!< Offset: 0x008 (R/W) Floating-Point Context Address Register */
mbed_official 159:7130f322cb7e 1519 __IOM uint32_t FPDSCR; /*!< Offset: 0x00C (R/W) Floating-Point Default Status Control Register */
mbed_official 159:7130f322cb7e 1520 __IM uint32_t MVFR0; /*!< Offset: 0x010 (R/ ) Media and FP Feature Register 0 */
mbed_official 159:7130f322cb7e 1521 __IM uint32_t MVFR1; /*!< Offset: 0x014 (R/ ) Media and FP Feature Register 1 */
mbed_official 159:7130f322cb7e 1522 __IM uint32_t MVFR2; /*!< Offset: 0x018 (R/ ) Media and FP Feature Register 2 */
mbed_official 159:7130f322cb7e 1523 } FPU_Type;
mbed_official 159:7130f322cb7e 1524
mbed_official 159:7130f322cb7e 1525 /* Floating-Point Context Control Register Definitions */
mbed_official 159:7130f322cb7e 1526 #define FPU_FPCCR_ASPEN_Pos 31U /*!< FPCCR: ASPEN bit Position */
mbed_official 159:7130f322cb7e 1527 #define FPU_FPCCR_ASPEN_Msk (1UL << FPU_FPCCR_ASPEN_Pos) /*!< FPCCR: ASPEN bit Mask */
mbed_official 159:7130f322cb7e 1528
mbed_official 159:7130f322cb7e 1529 #define FPU_FPCCR_LSPEN_Pos 30U /*!< FPCCR: LSPEN Position */
mbed_official 159:7130f322cb7e 1530 #define FPU_FPCCR_LSPEN_Msk (1UL << FPU_FPCCR_LSPEN_Pos) /*!< FPCCR: LSPEN bit Mask */
mbed_official 159:7130f322cb7e 1531
mbed_official 159:7130f322cb7e 1532 #define FPU_FPCCR_MONRDY_Pos 8U /*!< FPCCR: MONRDY Position */
mbed_official 159:7130f322cb7e 1533 #define FPU_FPCCR_MONRDY_Msk (1UL << FPU_FPCCR_MONRDY_Pos) /*!< FPCCR: MONRDY bit Mask */
mbed_official 159:7130f322cb7e 1534
mbed_official 159:7130f322cb7e 1535 #define FPU_FPCCR_BFRDY_Pos 6U /*!< FPCCR: BFRDY Position */
mbed_official 159:7130f322cb7e 1536 #define FPU_FPCCR_BFRDY_Msk (1UL << FPU_FPCCR_BFRDY_Pos) /*!< FPCCR: BFRDY bit Mask */
mbed_official 159:7130f322cb7e 1537
mbed_official 159:7130f322cb7e 1538 #define FPU_FPCCR_MMRDY_Pos 5U /*!< FPCCR: MMRDY Position */
mbed_official 159:7130f322cb7e 1539 #define FPU_FPCCR_MMRDY_Msk (1UL << FPU_FPCCR_MMRDY_Pos) /*!< FPCCR: MMRDY bit Mask */
mbed_official 159:7130f322cb7e 1540
mbed_official 159:7130f322cb7e 1541 #define FPU_FPCCR_HFRDY_Pos 4U /*!< FPCCR: HFRDY Position */
mbed_official 159:7130f322cb7e 1542 #define FPU_FPCCR_HFRDY_Msk (1UL << FPU_FPCCR_HFRDY_Pos) /*!< FPCCR: HFRDY bit Mask */
mbed_official 159:7130f322cb7e 1543
mbed_official 159:7130f322cb7e 1544 #define FPU_FPCCR_THREAD_Pos 3U /*!< FPCCR: processor mode bit Position */
mbed_official 159:7130f322cb7e 1545 #define FPU_FPCCR_THREAD_Msk (1UL << FPU_FPCCR_THREAD_Pos) /*!< FPCCR: processor mode active bit Mask */
mbed_official 159:7130f322cb7e 1546
mbed_official 159:7130f322cb7e 1547 #define FPU_FPCCR_USER_Pos 1U /*!< FPCCR: privilege level bit Position */
mbed_official 159:7130f322cb7e 1548 #define FPU_FPCCR_USER_Msk (1UL << FPU_FPCCR_USER_Pos) /*!< FPCCR: privilege level bit Mask */
mbed_official 159:7130f322cb7e 1549
mbed_official 159:7130f322cb7e 1550 #define FPU_FPCCR_LSPACT_Pos 0U /*!< FPCCR: Lazy state preservation active bit Position */
mbed_official 159:7130f322cb7e 1551 #define FPU_FPCCR_LSPACT_Msk (1UL /*<< FPU_FPCCR_LSPACT_Pos*/) /*!< FPCCR: Lazy state preservation active bit Mask */
mbed_official 159:7130f322cb7e 1552
mbed_official 159:7130f322cb7e 1553 /* Floating-Point Context Address Register Definitions */
mbed_official 159:7130f322cb7e 1554 #define FPU_FPCAR_ADDRESS_Pos 3U /*!< FPCAR: ADDRESS bit Position */
mbed_official 159:7130f322cb7e 1555 #define FPU_FPCAR_ADDRESS_Msk (0x1FFFFFFFUL << FPU_FPCAR_ADDRESS_Pos) /*!< FPCAR: ADDRESS bit Mask */
mbed_official 159:7130f322cb7e 1556
mbed_official 159:7130f322cb7e 1557 /* Floating-Point Default Status Control Register Definitions */
mbed_official 159:7130f322cb7e 1558 #define FPU_FPDSCR_AHP_Pos 26U /*!< FPDSCR: AHP bit Position */
mbed_official 159:7130f322cb7e 1559 #define FPU_FPDSCR_AHP_Msk (1UL << FPU_FPDSCR_AHP_Pos) /*!< FPDSCR: AHP bit Mask */
mbed_official 159:7130f322cb7e 1560
mbed_official 159:7130f322cb7e 1561 #define FPU_FPDSCR_DN_Pos 25U /*!< FPDSCR: DN bit Position */
mbed_official 159:7130f322cb7e 1562 #define FPU_FPDSCR_DN_Msk (1UL << FPU_FPDSCR_DN_Pos) /*!< FPDSCR: DN bit Mask */
mbed_official 159:7130f322cb7e 1563
mbed_official 159:7130f322cb7e 1564 #define FPU_FPDSCR_FZ_Pos 24U /*!< FPDSCR: FZ bit Position */
mbed_official 159:7130f322cb7e 1565 #define FPU_FPDSCR_FZ_Msk (1UL << FPU_FPDSCR_FZ_Pos) /*!< FPDSCR: FZ bit Mask */
mbed_official 159:7130f322cb7e 1566
mbed_official 159:7130f322cb7e 1567 #define FPU_FPDSCR_RMode_Pos 22U /*!< FPDSCR: RMode bit Position */
mbed_official 159:7130f322cb7e 1568 #define FPU_FPDSCR_RMode_Msk (3UL << FPU_FPDSCR_RMode_Pos) /*!< FPDSCR: RMode bit Mask */
mbed_official 159:7130f322cb7e 1569
mbed_official 159:7130f322cb7e 1570 /* Media and FP Feature Register 0 Definitions */
mbed_official 159:7130f322cb7e 1571 #define FPU_MVFR0_FP_rounding_modes_Pos 28U /*!< MVFR0: FP rounding modes bits Position */
mbed_official 159:7130f322cb7e 1572 #define FPU_MVFR0_FP_rounding_modes_Msk (0xFUL << FPU_MVFR0_FP_rounding_modes_Pos) /*!< MVFR0: FP rounding modes bits Mask */
mbed_official 159:7130f322cb7e 1573
mbed_official 159:7130f322cb7e 1574 #define FPU_MVFR0_Short_vectors_Pos 24U /*!< MVFR0: Short vectors bits Position */
mbed_official 159:7130f322cb7e 1575 #define FPU_MVFR0_Short_vectors_Msk (0xFUL << FPU_MVFR0_Short_vectors_Pos) /*!< MVFR0: Short vectors bits Mask */
mbed_official 159:7130f322cb7e 1576
mbed_official 159:7130f322cb7e 1577 #define FPU_MVFR0_Square_root_Pos 20U /*!< MVFR0: Square root bits Position */
mbed_official 159:7130f322cb7e 1578 #define FPU_MVFR0_Square_root_Msk (0xFUL << FPU_MVFR0_Square_root_Pos) /*!< MVFR0: Square root bits Mask */
mbed_official 159:7130f322cb7e 1579
mbed_official 159:7130f322cb7e 1580 #define FPU_MVFR0_Divide_Pos 16U /*!< MVFR0: Divide bits Position */
mbed_official 159:7130f322cb7e 1581 #define FPU_MVFR0_Divide_Msk (0xFUL << FPU_MVFR0_Divide_Pos) /*!< MVFR0: Divide bits Mask */
mbed_official 159:7130f322cb7e 1582
mbed_official 159:7130f322cb7e 1583 #define FPU_MVFR0_FP_excep_trapping_Pos 12U /*!< MVFR0: FP exception trapping bits Position */
mbed_official 159:7130f322cb7e 1584 #define FPU_MVFR0_FP_excep_trapping_Msk (0xFUL << FPU_MVFR0_FP_excep_trapping_Pos) /*!< MVFR0: FP exception trapping bits Mask */
mbed_official 159:7130f322cb7e 1585
mbed_official 159:7130f322cb7e 1586 #define FPU_MVFR0_Double_precision_Pos 8U /*!< MVFR0: Double-precision bits Position */
mbed_official 159:7130f322cb7e 1587 #define FPU_MVFR0_Double_precision_Msk (0xFUL << FPU_MVFR0_Double_precision_Pos) /*!< MVFR0: Double-precision bits Mask */
mbed_official 159:7130f322cb7e 1588
mbed_official 159:7130f322cb7e 1589 #define FPU_MVFR0_Single_precision_Pos 4U /*!< MVFR0: Single-precision bits Position */
mbed_official 159:7130f322cb7e 1590 #define FPU_MVFR0_Single_precision_Msk (0xFUL << FPU_MVFR0_Single_precision_Pos) /*!< MVFR0: Single-precision bits Mask */
mbed_official 159:7130f322cb7e 1591
mbed_official 159:7130f322cb7e 1592 #define FPU_MVFR0_A_SIMD_registers_Pos 0U /*!< MVFR0: A_SIMD registers bits Position */
mbed_official 159:7130f322cb7e 1593 #define FPU_MVFR0_A_SIMD_registers_Msk (0xFUL /*<< FPU_MVFR0_A_SIMD_registers_Pos*/) /*!< MVFR0: A_SIMD registers bits Mask */
mbed_official 159:7130f322cb7e 1594
mbed_official 159:7130f322cb7e 1595 /* Media and FP Feature Register 1 Definitions */
mbed_official 159:7130f322cb7e 1596 #define FPU_MVFR1_FP_fused_MAC_Pos 28U /*!< MVFR1: FP fused MAC bits Position */
mbed_official 159:7130f322cb7e 1597 #define FPU_MVFR1_FP_fused_MAC_Msk (0xFUL << FPU_MVFR1_FP_fused_MAC_Pos) /*!< MVFR1: FP fused MAC bits Mask */
mbed_official 159:7130f322cb7e 1598
mbed_official 159:7130f322cb7e 1599 #define FPU_MVFR1_FP_HPFP_Pos 24U /*!< MVFR1: FP HPFP bits Position */
mbed_official 159:7130f322cb7e 1600 #define FPU_MVFR1_FP_HPFP_Msk (0xFUL << FPU_MVFR1_FP_HPFP_Pos) /*!< MVFR1: FP HPFP bits Mask */
mbed_official 159:7130f322cb7e 1601
mbed_official 159:7130f322cb7e 1602 #define FPU_MVFR1_D_NaN_mode_Pos 4U /*!< MVFR1: D_NaN mode bits Position */
mbed_official 159:7130f322cb7e 1603 #define FPU_MVFR1_D_NaN_mode_Msk (0xFUL << FPU_MVFR1_D_NaN_mode_Pos) /*!< MVFR1: D_NaN mode bits Mask */
mbed_official 159:7130f322cb7e 1604
mbed_official 159:7130f322cb7e 1605 #define FPU_MVFR1_FtZ_mode_Pos 0U /*!< MVFR1: FtZ mode bits Position */
mbed_official 159:7130f322cb7e 1606 #define FPU_MVFR1_FtZ_mode_Msk (0xFUL /*<< FPU_MVFR1_FtZ_mode_Pos*/) /*!< MVFR1: FtZ mode bits Mask */
mbed_official 159:7130f322cb7e 1607
mbed_official 159:7130f322cb7e 1608 /* Media and FP Feature Register 2 Definitions */
mbed_official 159:7130f322cb7e 1609
mbed_official 159:7130f322cb7e 1610 /*@} end of group CMSIS_FPU */
mbed_official 159:7130f322cb7e 1611
mbed_official 159:7130f322cb7e 1612
mbed_official 159:7130f322cb7e 1613 /**
mbed_official 159:7130f322cb7e 1614 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 1615 \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug)
mbed_official 159:7130f322cb7e 1616 \brief Type definitions for the Core Debug Registers
mbed_official 159:7130f322cb7e 1617 @{
mbed_official 159:7130f322cb7e 1618 */
mbed_official 159:7130f322cb7e 1619
mbed_official 159:7130f322cb7e 1620 /**
mbed_official 159:7130f322cb7e 1621 \brief Structure type to access the Core Debug Register (CoreDebug).
mbed_official 159:7130f322cb7e 1622 */
mbed_official 159:7130f322cb7e 1623 typedef struct
mbed_official 159:7130f322cb7e 1624 {
mbed_official 159:7130f322cb7e 1625 __IOM uint32_t DHCSR; /*!< Offset: 0x000 (R/W) Debug Halting Control and Status Register */
mbed_official 159:7130f322cb7e 1626 __OM uint32_t DCRSR; /*!< Offset: 0x004 ( /W) Debug Core Register Selector Register */
mbed_official 159:7130f322cb7e 1627 __IOM uint32_t DCRDR; /*!< Offset: 0x008 (R/W) Debug Core Register Data Register */
mbed_official 159:7130f322cb7e 1628 __IOM uint32_t DEMCR; /*!< Offset: 0x00C (R/W) Debug Exception and Monitor Control Register */
mbed_official 159:7130f322cb7e 1629 } CoreDebug_Type;
mbed_official 159:7130f322cb7e 1630
mbed_official 159:7130f322cb7e 1631 /* Debug Halting Control and Status Register Definitions */
mbed_official 159:7130f322cb7e 1632 #define CoreDebug_DHCSR_DBGKEY_Pos 16U /*!< CoreDebug DHCSR: DBGKEY Position */
mbed_official 159:7130f322cb7e 1633 #define CoreDebug_DHCSR_DBGKEY_Msk (0xFFFFUL << CoreDebug_DHCSR_DBGKEY_Pos) /*!< CoreDebug DHCSR: DBGKEY Mask */
mbed_official 159:7130f322cb7e 1634
mbed_official 159:7130f322cb7e 1635 #define CoreDebug_DHCSR_S_RESET_ST_Pos 25U /*!< CoreDebug DHCSR: S_RESET_ST Position */
mbed_official 159:7130f322cb7e 1636 #define CoreDebug_DHCSR_S_RESET_ST_Msk (1UL << CoreDebug_DHCSR_S_RESET_ST_Pos) /*!< CoreDebug DHCSR: S_RESET_ST Mask */
mbed_official 159:7130f322cb7e 1637
mbed_official 159:7130f322cb7e 1638 #define CoreDebug_DHCSR_S_RETIRE_ST_Pos 24U /*!< CoreDebug DHCSR: S_RETIRE_ST Position */
mbed_official 159:7130f322cb7e 1639 #define CoreDebug_DHCSR_S_RETIRE_ST_Msk (1UL << CoreDebug_DHCSR_S_RETIRE_ST_Pos) /*!< CoreDebug DHCSR: S_RETIRE_ST Mask */
mbed_official 159:7130f322cb7e 1640
mbed_official 159:7130f322cb7e 1641 #define CoreDebug_DHCSR_S_LOCKUP_Pos 19U /*!< CoreDebug DHCSR: S_LOCKUP Position */
mbed_official 159:7130f322cb7e 1642 #define CoreDebug_DHCSR_S_LOCKUP_Msk (1UL << CoreDebug_DHCSR_S_LOCKUP_Pos) /*!< CoreDebug DHCSR: S_LOCKUP Mask */
mbed_official 159:7130f322cb7e 1643
mbed_official 159:7130f322cb7e 1644 #define CoreDebug_DHCSR_S_SLEEP_Pos 18U /*!< CoreDebug DHCSR: S_SLEEP Position */
mbed_official 159:7130f322cb7e 1645 #define CoreDebug_DHCSR_S_SLEEP_Msk (1UL << CoreDebug_DHCSR_S_SLEEP_Pos) /*!< CoreDebug DHCSR: S_SLEEP Mask */
mbed_official 159:7130f322cb7e 1646
mbed_official 159:7130f322cb7e 1647 #define CoreDebug_DHCSR_S_HALT_Pos 17U /*!< CoreDebug DHCSR: S_HALT Position */
mbed_official 159:7130f322cb7e 1648 #define CoreDebug_DHCSR_S_HALT_Msk (1UL << CoreDebug_DHCSR_S_HALT_Pos) /*!< CoreDebug DHCSR: S_HALT Mask */
mbed_official 159:7130f322cb7e 1649
mbed_official 159:7130f322cb7e 1650 #define CoreDebug_DHCSR_S_REGRDY_Pos 16U /*!< CoreDebug DHCSR: S_REGRDY Position */
mbed_official 159:7130f322cb7e 1651 #define CoreDebug_DHCSR_S_REGRDY_Msk (1UL << CoreDebug_DHCSR_S_REGRDY_Pos) /*!< CoreDebug DHCSR: S_REGRDY Mask */
mbed_official 159:7130f322cb7e 1652
mbed_official 159:7130f322cb7e 1653 #define CoreDebug_DHCSR_C_SNAPSTALL_Pos 5U /*!< CoreDebug DHCSR: C_SNAPSTALL Position */
mbed_official 159:7130f322cb7e 1654 #define CoreDebug_DHCSR_C_SNAPSTALL_Msk (1UL << CoreDebug_DHCSR_C_SNAPSTALL_Pos) /*!< CoreDebug DHCSR: C_SNAPSTALL Mask */
mbed_official 159:7130f322cb7e 1655
mbed_official 159:7130f322cb7e 1656 #define CoreDebug_DHCSR_C_MASKINTS_Pos 3U /*!< CoreDebug DHCSR: C_MASKINTS Position */
mbed_official 159:7130f322cb7e 1657 #define CoreDebug_DHCSR_C_MASKINTS_Msk (1UL << CoreDebug_DHCSR_C_MASKINTS_Pos) /*!< CoreDebug DHCSR: C_MASKINTS Mask */
mbed_official 159:7130f322cb7e 1658
mbed_official 159:7130f322cb7e 1659 #define CoreDebug_DHCSR_C_STEP_Pos 2U /*!< CoreDebug DHCSR: C_STEP Position */
mbed_official 159:7130f322cb7e 1660 #define CoreDebug_DHCSR_C_STEP_Msk (1UL << CoreDebug_DHCSR_C_STEP_Pos) /*!< CoreDebug DHCSR: C_STEP Mask */
mbed_official 159:7130f322cb7e 1661
mbed_official 159:7130f322cb7e 1662 #define CoreDebug_DHCSR_C_HALT_Pos 1U /*!< CoreDebug DHCSR: C_HALT Position */
mbed_official 159:7130f322cb7e 1663 #define CoreDebug_DHCSR_C_HALT_Msk (1UL << CoreDebug_DHCSR_C_HALT_Pos) /*!< CoreDebug DHCSR: C_HALT Mask */
mbed_official 159:7130f322cb7e 1664
mbed_official 159:7130f322cb7e 1665 #define CoreDebug_DHCSR_C_DEBUGEN_Pos 0U /*!< CoreDebug DHCSR: C_DEBUGEN Position */
mbed_official 159:7130f322cb7e 1666 #define CoreDebug_DHCSR_C_DEBUGEN_Msk (1UL /*<< CoreDebug_DHCSR_C_DEBUGEN_Pos*/) /*!< CoreDebug DHCSR: C_DEBUGEN Mask */
mbed_official 159:7130f322cb7e 1667
mbed_official 159:7130f322cb7e 1668 /* Debug Core Register Selector Register Definitions */
mbed_official 159:7130f322cb7e 1669 #define CoreDebug_DCRSR_REGWnR_Pos 16U /*!< CoreDebug DCRSR: REGWnR Position */
mbed_official 159:7130f322cb7e 1670 #define CoreDebug_DCRSR_REGWnR_Msk (1UL << CoreDebug_DCRSR_REGWnR_Pos) /*!< CoreDebug DCRSR: REGWnR Mask */
mbed_official 159:7130f322cb7e 1671
mbed_official 159:7130f322cb7e 1672 #define CoreDebug_DCRSR_REGSEL_Pos 0U /*!< CoreDebug DCRSR: REGSEL Position */
mbed_official 159:7130f322cb7e 1673 #define CoreDebug_DCRSR_REGSEL_Msk (0x1FUL /*<< CoreDebug_DCRSR_REGSEL_Pos*/) /*!< CoreDebug DCRSR: REGSEL Mask */
mbed_official 159:7130f322cb7e 1674
mbed_official 159:7130f322cb7e 1675 /* Debug Exception and Monitor Control Register Definitions */
mbed_official 159:7130f322cb7e 1676 #define CoreDebug_DEMCR_TRCENA_Pos 24U /*!< CoreDebug DEMCR: TRCENA Position */
mbed_official 159:7130f322cb7e 1677 #define CoreDebug_DEMCR_TRCENA_Msk (1UL << CoreDebug_DEMCR_TRCENA_Pos) /*!< CoreDebug DEMCR: TRCENA Mask */
mbed_official 159:7130f322cb7e 1678
mbed_official 159:7130f322cb7e 1679 #define CoreDebug_DEMCR_MON_REQ_Pos 19U /*!< CoreDebug DEMCR: MON_REQ Position */
mbed_official 159:7130f322cb7e 1680 #define CoreDebug_DEMCR_MON_REQ_Msk (1UL << CoreDebug_DEMCR_MON_REQ_Pos) /*!< CoreDebug DEMCR: MON_REQ Mask */
mbed_official 159:7130f322cb7e 1681
mbed_official 159:7130f322cb7e 1682 #define CoreDebug_DEMCR_MON_STEP_Pos 18U /*!< CoreDebug DEMCR: MON_STEP Position */
mbed_official 159:7130f322cb7e 1683 #define CoreDebug_DEMCR_MON_STEP_Msk (1UL << CoreDebug_DEMCR_MON_STEP_Pos) /*!< CoreDebug DEMCR: MON_STEP Mask */
mbed_official 159:7130f322cb7e 1684
mbed_official 159:7130f322cb7e 1685 #define CoreDebug_DEMCR_MON_PEND_Pos 17U /*!< CoreDebug DEMCR: MON_PEND Position */
mbed_official 159:7130f322cb7e 1686 #define CoreDebug_DEMCR_MON_PEND_Msk (1UL << CoreDebug_DEMCR_MON_PEND_Pos) /*!< CoreDebug DEMCR: MON_PEND Mask */
mbed_official 159:7130f322cb7e 1687
mbed_official 159:7130f322cb7e 1688 #define CoreDebug_DEMCR_MON_EN_Pos 16U /*!< CoreDebug DEMCR: MON_EN Position */
mbed_official 159:7130f322cb7e 1689 #define CoreDebug_DEMCR_MON_EN_Msk (1UL << CoreDebug_DEMCR_MON_EN_Pos) /*!< CoreDebug DEMCR: MON_EN Mask */
mbed_official 159:7130f322cb7e 1690
mbed_official 159:7130f322cb7e 1691 #define CoreDebug_DEMCR_VC_HARDERR_Pos 10U /*!< CoreDebug DEMCR: VC_HARDERR Position */
mbed_official 159:7130f322cb7e 1692 #define CoreDebug_DEMCR_VC_HARDERR_Msk (1UL << CoreDebug_DEMCR_VC_HARDERR_Pos) /*!< CoreDebug DEMCR: VC_HARDERR Mask */
mbed_official 159:7130f322cb7e 1693
mbed_official 159:7130f322cb7e 1694 #define CoreDebug_DEMCR_VC_INTERR_Pos 9U /*!< CoreDebug DEMCR: VC_INTERR Position */
mbed_official 159:7130f322cb7e 1695 #define CoreDebug_DEMCR_VC_INTERR_Msk (1UL << CoreDebug_DEMCR_VC_INTERR_Pos) /*!< CoreDebug DEMCR: VC_INTERR Mask */
mbed_official 159:7130f322cb7e 1696
mbed_official 159:7130f322cb7e 1697 #define CoreDebug_DEMCR_VC_BUSERR_Pos 8U /*!< CoreDebug DEMCR: VC_BUSERR Position */
mbed_official 159:7130f322cb7e 1698 #define CoreDebug_DEMCR_VC_BUSERR_Msk (1UL << CoreDebug_DEMCR_VC_BUSERR_Pos) /*!< CoreDebug DEMCR: VC_BUSERR Mask */
mbed_official 159:7130f322cb7e 1699
mbed_official 159:7130f322cb7e 1700 #define CoreDebug_DEMCR_VC_STATERR_Pos 7U /*!< CoreDebug DEMCR: VC_STATERR Position */
mbed_official 159:7130f322cb7e 1701 #define CoreDebug_DEMCR_VC_STATERR_Msk (1UL << CoreDebug_DEMCR_VC_STATERR_Pos) /*!< CoreDebug DEMCR: VC_STATERR Mask */
mbed_official 159:7130f322cb7e 1702
mbed_official 159:7130f322cb7e 1703 #define CoreDebug_DEMCR_VC_CHKERR_Pos 6U /*!< CoreDebug DEMCR: VC_CHKERR Position */
mbed_official 159:7130f322cb7e 1704 #define CoreDebug_DEMCR_VC_CHKERR_Msk (1UL << CoreDebug_DEMCR_VC_CHKERR_Pos) /*!< CoreDebug DEMCR: VC_CHKERR Mask */
mbed_official 159:7130f322cb7e 1705
mbed_official 159:7130f322cb7e 1706 #define CoreDebug_DEMCR_VC_NOCPERR_Pos 5U /*!< CoreDebug DEMCR: VC_NOCPERR Position */
mbed_official 159:7130f322cb7e 1707 #define CoreDebug_DEMCR_VC_NOCPERR_Msk (1UL << CoreDebug_DEMCR_VC_NOCPERR_Pos) /*!< CoreDebug DEMCR: VC_NOCPERR Mask */
mbed_official 159:7130f322cb7e 1708
mbed_official 159:7130f322cb7e 1709 #define CoreDebug_DEMCR_VC_MMERR_Pos 4U /*!< CoreDebug DEMCR: VC_MMERR Position */
mbed_official 159:7130f322cb7e 1710 #define CoreDebug_DEMCR_VC_MMERR_Msk (1UL << CoreDebug_DEMCR_VC_MMERR_Pos) /*!< CoreDebug DEMCR: VC_MMERR Mask */
mbed_official 159:7130f322cb7e 1711
mbed_official 159:7130f322cb7e 1712 #define CoreDebug_DEMCR_VC_CORERESET_Pos 0U /*!< CoreDebug DEMCR: VC_CORERESET Position */
mbed_official 159:7130f322cb7e 1713 #define CoreDebug_DEMCR_VC_CORERESET_Msk (1UL /*<< CoreDebug_DEMCR_VC_CORERESET_Pos*/) /*!< CoreDebug DEMCR: VC_CORERESET Mask */
mbed_official 159:7130f322cb7e 1714
mbed_official 159:7130f322cb7e 1715 /*@} end of group CMSIS_CoreDebug */
mbed_official 159:7130f322cb7e 1716
mbed_official 159:7130f322cb7e 1717
mbed_official 159:7130f322cb7e 1718 /**
mbed_official 159:7130f322cb7e 1719 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 1720 \defgroup CMSIS_core_bitfield Core register bit field macros
mbed_official 159:7130f322cb7e 1721 \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk).
mbed_official 159:7130f322cb7e 1722 @{
mbed_official 159:7130f322cb7e 1723 */
mbed_official 159:7130f322cb7e 1724
mbed_official 159:7130f322cb7e 1725 /**
mbed_official 159:7130f322cb7e 1726 \brief Mask and shift a bit field value for use in a register bit range.
mbed_official 159:7130f322cb7e 1727 \param[in] field Name of the register bit field.
mbed_official 159:7130f322cb7e 1728 \param[in] value Value of the bit field. This parameter is interpreted as an uint32_t type.
mbed_official 159:7130f322cb7e 1729 \return Masked and shifted value.
mbed_official 159:7130f322cb7e 1730 */
mbed_official 159:7130f322cb7e 1731 #define _VAL2FLD(field, value) (((uint32_t)(value) << field ## _Pos) & field ## _Msk)
mbed_official 159:7130f322cb7e 1732
mbed_official 159:7130f322cb7e 1733 /**
mbed_official 159:7130f322cb7e 1734 \brief Mask and shift a register value to extract a bit filed value.
mbed_official 159:7130f322cb7e 1735 \param[in] field Name of the register bit field.
mbed_official 159:7130f322cb7e 1736 \param[in] value Value of register. This parameter is interpreted as an uint32_t type.
mbed_official 159:7130f322cb7e 1737 \return Masked and shifted bit field value.
mbed_official 159:7130f322cb7e 1738 */
mbed_official 159:7130f322cb7e 1739 #define _FLD2VAL(field, value) (((uint32_t)(value) & field ## _Msk) >> field ## _Pos)
mbed_official 159:7130f322cb7e 1740
mbed_official 159:7130f322cb7e 1741 /*@} end of group CMSIS_core_bitfield */
mbed_official 159:7130f322cb7e 1742
mbed_official 159:7130f322cb7e 1743
mbed_official 159:7130f322cb7e 1744 /**
mbed_official 159:7130f322cb7e 1745 \ingroup CMSIS_core_register
mbed_official 159:7130f322cb7e 1746 \defgroup CMSIS_core_base Core Definitions
mbed_official 159:7130f322cb7e 1747 \brief Definitions for base addresses, unions, and structures.
mbed_official 159:7130f322cb7e 1748 @{
mbed_official 159:7130f322cb7e 1749 */
mbed_official 159:7130f322cb7e 1750
mbed_official 159:7130f322cb7e 1751 /* Memory mapping of Core Hardware */
mbed_official 159:7130f322cb7e 1752 #define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */
mbed_official 159:7130f322cb7e 1753 #define ITM_BASE (0xE0000000UL) /*!< ITM Base Address */
mbed_official 159:7130f322cb7e 1754 #define DWT_BASE (0xE0001000UL) /*!< DWT Base Address */
mbed_official 159:7130f322cb7e 1755 #define TPI_BASE (0xE0040000UL) /*!< TPI Base Address */
mbed_official 159:7130f322cb7e 1756 #define CoreDebug_BASE (0xE000EDF0UL) /*!< Core Debug Base Address */
mbed_official 159:7130f322cb7e 1757 #define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */
mbed_official 159:7130f322cb7e 1758 #define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */
mbed_official 159:7130f322cb7e 1759 #define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */
mbed_official 159:7130f322cb7e 1760
mbed_official 159:7130f322cb7e 1761 #define SCnSCB ((SCnSCB_Type *) SCS_BASE ) /*!< System control Register not in SCB */
mbed_official 159:7130f322cb7e 1762 #define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */
mbed_official 159:7130f322cb7e 1763 #define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */
mbed_official 159:7130f322cb7e 1764 #define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */
mbed_official 159:7130f322cb7e 1765 #define ITM ((ITM_Type *) ITM_BASE ) /*!< ITM configuration struct */
mbed_official 159:7130f322cb7e 1766 #define DWT ((DWT_Type *) DWT_BASE ) /*!< DWT configuration struct */
mbed_official 159:7130f322cb7e 1767 #define TPI ((TPI_Type *) TPI_BASE ) /*!< TPI configuration struct */
mbed_official 159:7130f322cb7e 1768 #define CoreDebug ((CoreDebug_Type *) CoreDebug_BASE) /*!< Core Debug configuration struct */
mbed_official 159:7130f322cb7e 1769
mbed_official 159:7130f322cb7e 1770 #if defined (__MPU_PRESENT) && (__MPU_PRESENT == 1U)
mbed_official 159:7130f322cb7e 1771 #define MPU_BASE (SCS_BASE + 0x0D90UL) /*!< Memory Protection Unit */
mbed_official 159:7130f322cb7e 1772 #define MPU ((MPU_Type *) MPU_BASE ) /*!< Memory Protection Unit */
mbed_official 159:7130f322cb7e 1773 #endif
mbed_official 159:7130f322cb7e 1774
mbed_official 159:7130f322cb7e 1775 #define FPU_BASE (SCS_BASE + 0x0F30UL) /*!< Floating Point Unit */
mbed_official 159:7130f322cb7e 1776 #define FPU ((FPU_Type *) FPU_BASE ) /*!< Floating Point Unit */
mbed_official 159:7130f322cb7e 1777
mbed_official 159:7130f322cb7e 1778 /*@} */
mbed_official 159:7130f322cb7e 1779
mbed_official 159:7130f322cb7e 1780
mbed_official 159:7130f322cb7e 1781
mbed_official 159:7130f322cb7e 1782 /*******************************************************************************
mbed_official 159:7130f322cb7e 1783 * Hardware Abstraction Layer
mbed_official 159:7130f322cb7e 1784 Core Function Interface contains:
mbed_official 159:7130f322cb7e 1785 - Core NVIC Functions
mbed_official 159:7130f322cb7e 1786 - Core SysTick Functions
mbed_official 159:7130f322cb7e 1787 - Core Debug Functions
mbed_official 159:7130f322cb7e 1788 - Core Register Access Functions
mbed_official 159:7130f322cb7e 1789 ******************************************************************************/
mbed_official 159:7130f322cb7e 1790 /**
mbed_official 159:7130f322cb7e 1791 \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference
mbed_official 159:7130f322cb7e 1792 */
mbed_official 159:7130f322cb7e 1793
mbed_official 159:7130f322cb7e 1794
mbed_official 159:7130f322cb7e 1795
mbed_official 159:7130f322cb7e 1796 /* ########################## NVIC functions #################################### */
mbed_official 159:7130f322cb7e 1797 /**
mbed_official 159:7130f322cb7e 1798 \ingroup CMSIS_Core_FunctionInterface
mbed_official 159:7130f322cb7e 1799 \defgroup CMSIS_Core_NVICFunctions NVIC Functions
mbed_official 159:7130f322cb7e 1800 \brief Functions that manage interrupts and exceptions via the NVIC.
mbed_official 159:7130f322cb7e 1801 @{
mbed_official 159:7130f322cb7e 1802 */
mbed_official 159:7130f322cb7e 1803
mbed_official 159:7130f322cb7e 1804 #ifdef CMSIS_NVIC_VIRTUAL
mbed_official 159:7130f322cb7e 1805 #ifndef CMSIS_NVIC_VIRTUAL_HEADER_FILE
mbed_official 159:7130f322cb7e 1806 #define CMSIS_NVIC_VIRTUAL_HEADER_FILE "cmsis_nvic_virtual.h"
mbed_official 159:7130f322cb7e 1807 #endif
mbed_official 159:7130f322cb7e 1808 #include CMSIS_NVIC_VIRTUAL_HEADER_FILE
mbed_official 159:7130f322cb7e 1809 #else
mbed_official 159:7130f322cb7e 1810 #define NVIC_SetPriorityGrouping __NVIC_SetPriorityGrouping
mbed_official 159:7130f322cb7e 1811 #define NVIC_GetPriorityGrouping __NVIC_GetPriorityGrouping
mbed_official 159:7130f322cb7e 1812 #define NVIC_EnableIRQ __NVIC_EnableIRQ
mbed_official 159:7130f322cb7e 1813 #define NVIC_GetEnableIRQ __NVIC_GetEnableIRQ
mbed_official 159:7130f322cb7e 1814 #define NVIC_DisableIRQ __NVIC_DisableIRQ
mbed_official 159:7130f322cb7e 1815 #define NVIC_GetPendingIRQ __NVIC_GetPendingIRQ
mbed_official 159:7130f322cb7e 1816 #define NVIC_SetPendingIRQ __NVIC_SetPendingIRQ
mbed_official 159:7130f322cb7e 1817 #define NVIC_ClearPendingIRQ __NVIC_ClearPendingIRQ
mbed_official 159:7130f322cb7e 1818 #define NVIC_GetActive __NVIC_GetActive
mbed_official 159:7130f322cb7e 1819 #define NVIC_SetPriority __NVIC_SetPriority
mbed_official 159:7130f322cb7e 1820 #define NVIC_GetPriority __NVIC_GetPriority
mbed_official 159:7130f322cb7e 1821 #define NVIC_SystemReset __NVIC_SystemReset
mbed_official 159:7130f322cb7e 1822 #endif /* CMSIS_NVIC_VIRTUAL */
mbed_official 159:7130f322cb7e 1823
mbed_official 159:7130f322cb7e 1824 #ifdef CMSIS_VECTAB_VIRTUAL
mbed_official 159:7130f322cb7e 1825 #ifndef CMSIS_VECTAB_VIRTUAL_HEADER_FILE
mbed_official 159:7130f322cb7e 1826 #define CMSIS_VECTAB_VIRTUAL_HEADER_FILE "cmsis_vectab_virtual.h"
mbed_official 159:7130f322cb7e 1827 #endif
mbed_official 159:7130f322cb7e 1828 #include CMSIS_VECTAB_VIRTUAL_HEADER_FILE
mbed_official 159:7130f322cb7e 1829 #else
mbed_official 159:7130f322cb7e 1830 #define NVIC_SetVector __NVIC_SetVector
mbed_official 159:7130f322cb7e 1831 #define NVIC_GetVector __NVIC_GetVector
mbed_official 159:7130f322cb7e 1832 #endif /* (CMSIS_VECTAB_VIRTUAL) */
mbed_official 159:7130f322cb7e 1833
mbed_official 159:7130f322cb7e 1834 #define NVIC_USER_IRQ_OFFSET 16
mbed_official 159:7130f322cb7e 1835
mbed_official 159:7130f322cb7e 1836
mbed_official 159:7130f322cb7e 1837
mbed_official 159:7130f322cb7e 1838 /**
mbed_official 159:7130f322cb7e 1839 \brief Set Priority Grouping
mbed_official 159:7130f322cb7e 1840 \details Sets the priority grouping field using the required unlock sequence.
mbed_official 159:7130f322cb7e 1841 The parameter PriorityGroup is assigned to the field SCB->AIRCR [10:8] PRIGROUP field.
mbed_official 159:7130f322cb7e 1842 Only values from 0..7 are used.
mbed_official 159:7130f322cb7e 1843 In case of a conflict between priority grouping and available
mbed_official 159:7130f322cb7e 1844 priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set.
mbed_official 159:7130f322cb7e 1845 \param [in] PriorityGroup Priority grouping field.
mbed_official 159:7130f322cb7e 1846 */
mbed_official 159:7130f322cb7e 1847 __STATIC_INLINE void __NVIC_SetPriorityGrouping(uint32_t PriorityGroup)
mbed_official 159:7130f322cb7e 1848 {
mbed_official 159:7130f322cb7e 1849 uint32_t reg_value;
mbed_official 159:7130f322cb7e 1850 uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */
mbed_official 159:7130f322cb7e 1851
mbed_official 159:7130f322cb7e 1852 reg_value = SCB->AIRCR; /* read old register configuration */
mbed_official 159:7130f322cb7e 1853 reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */
mbed_official 159:7130f322cb7e 1854 reg_value = (reg_value |
mbed_official 159:7130f322cb7e 1855 ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) |
mbed_official 159:7130f322cb7e 1856 (PriorityGroupTmp << 8U) ); /* Insert write key and priorty group */
mbed_official 159:7130f322cb7e 1857 SCB->AIRCR = reg_value;
mbed_official 159:7130f322cb7e 1858 }
mbed_official 159:7130f322cb7e 1859
mbed_official 159:7130f322cb7e 1860
mbed_official 159:7130f322cb7e 1861 /**
mbed_official 159:7130f322cb7e 1862 \brief Get Priority Grouping
mbed_official 159:7130f322cb7e 1863 \details Reads the priority grouping field from the NVIC Interrupt Controller.
mbed_official 159:7130f322cb7e 1864 \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field).
mbed_official 159:7130f322cb7e 1865 */
mbed_official 159:7130f322cb7e 1866 __STATIC_INLINE uint32_t __NVIC_GetPriorityGrouping(void)
mbed_official 159:7130f322cb7e 1867 {
mbed_official 159:7130f322cb7e 1868 return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos));
mbed_official 159:7130f322cb7e 1869 }
mbed_official 159:7130f322cb7e 1870
mbed_official 159:7130f322cb7e 1871
mbed_official 159:7130f322cb7e 1872 /**
mbed_official 159:7130f322cb7e 1873 \brief Enable Interrupt
mbed_official 159:7130f322cb7e 1874 \details Enables a device specific interrupt in the NVIC interrupt controller.
mbed_official 159:7130f322cb7e 1875 \param [in] IRQn Device specific interrupt number.
mbed_official 159:7130f322cb7e 1876 \note IRQn must not be negative.
mbed_official 159:7130f322cb7e 1877 */
mbed_official 159:7130f322cb7e 1878 __STATIC_INLINE void __NVIC_EnableIRQ(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 1879 {
mbed_official 159:7130f322cb7e 1880 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 1881 {
mbed_official 159:7130f322cb7e 1882 NVIC->ISER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL));
mbed_official 159:7130f322cb7e 1883 }
mbed_official 159:7130f322cb7e 1884 }
mbed_official 159:7130f322cb7e 1885
mbed_official 159:7130f322cb7e 1886
mbed_official 159:7130f322cb7e 1887 /**
mbed_official 159:7130f322cb7e 1888 \brief Get Interrupt Enable status
mbed_official 159:7130f322cb7e 1889 \details Returns a device specific interrupt enable status from the NVIC interrupt controller.
mbed_official 159:7130f322cb7e 1890 \param [in] IRQn Device specific interrupt number.
mbed_official 159:7130f322cb7e 1891 \return 0 Interrupt is not enabled.
mbed_official 159:7130f322cb7e 1892 \return 1 Interrupt is enabled.
mbed_official 159:7130f322cb7e 1893 \note IRQn must not be negative.
mbed_official 159:7130f322cb7e 1894 */
mbed_official 159:7130f322cb7e 1895 __STATIC_INLINE uint32_t __NVIC_GetEnableIRQ(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 1896 {
mbed_official 159:7130f322cb7e 1897 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 1898 {
mbed_official 159:7130f322cb7e 1899 return((uint32_t)(((NVIC->ISER[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL));
mbed_official 159:7130f322cb7e 1900 }
mbed_official 159:7130f322cb7e 1901 else
mbed_official 159:7130f322cb7e 1902 {
mbed_official 159:7130f322cb7e 1903 return(0U);
mbed_official 159:7130f322cb7e 1904 }
mbed_official 159:7130f322cb7e 1905 }
mbed_official 159:7130f322cb7e 1906
mbed_official 159:7130f322cb7e 1907
mbed_official 159:7130f322cb7e 1908 /**
mbed_official 159:7130f322cb7e 1909 \brief Disable Interrupt
mbed_official 159:7130f322cb7e 1910 \details Disables a device specific interrupt in the NVIC interrupt controller.
mbed_official 159:7130f322cb7e 1911 \param [in] IRQn Device specific interrupt number.
mbed_official 159:7130f322cb7e 1912 \note IRQn must not be negative.
mbed_official 159:7130f322cb7e 1913 */
mbed_official 159:7130f322cb7e 1914 __STATIC_INLINE void __NVIC_DisableIRQ(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 1915 {
mbed_official 159:7130f322cb7e 1916 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 1917 {
mbed_official 159:7130f322cb7e 1918 NVIC->ICER[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL));
mbed_official 159:7130f322cb7e 1919 __DSB();
mbed_official 159:7130f322cb7e 1920 __ISB();
mbed_official 159:7130f322cb7e 1921 }
mbed_official 159:7130f322cb7e 1922 }
mbed_official 159:7130f322cb7e 1923
mbed_official 159:7130f322cb7e 1924
mbed_official 159:7130f322cb7e 1925 /**
mbed_official 159:7130f322cb7e 1926 \brief Get Pending Interrupt
mbed_official 159:7130f322cb7e 1927 \details Reads the NVIC pending register and returns the pending bit for the specified device specific interrupt.
mbed_official 159:7130f322cb7e 1928 \param [in] IRQn Device specific interrupt number.
mbed_official 159:7130f322cb7e 1929 \return 0 Interrupt status is not pending.
mbed_official 159:7130f322cb7e 1930 \return 1 Interrupt status is pending.
mbed_official 159:7130f322cb7e 1931 \note IRQn must not be negative.
mbed_official 159:7130f322cb7e 1932 */
mbed_official 159:7130f322cb7e 1933 __STATIC_INLINE uint32_t __NVIC_GetPendingIRQ(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 1934 {
mbed_official 159:7130f322cb7e 1935 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 1936 {
mbed_official 159:7130f322cb7e 1937 return((uint32_t)(((NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL));
mbed_official 159:7130f322cb7e 1938 }
mbed_official 159:7130f322cb7e 1939 else
mbed_official 159:7130f322cb7e 1940 {
mbed_official 159:7130f322cb7e 1941 return(0U);
mbed_official 159:7130f322cb7e 1942 }
mbed_official 159:7130f322cb7e 1943 }
mbed_official 159:7130f322cb7e 1944
mbed_official 159:7130f322cb7e 1945
mbed_official 159:7130f322cb7e 1946 /**
mbed_official 159:7130f322cb7e 1947 \brief Set Pending Interrupt
mbed_official 159:7130f322cb7e 1948 \details Sets the pending bit of a device specific interrupt in the NVIC pending register.
mbed_official 159:7130f322cb7e 1949 \param [in] IRQn Device specific interrupt number.
mbed_official 159:7130f322cb7e 1950 \note IRQn must not be negative.
mbed_official 159:7130f322cb7e 1951 */
mbed_official 159:7130f322cb7e 1952 __STATIC_INLINE void __NVIC_SetPendingIRQ(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 1953 {
mbed_official 159:7130f322cb7e 1954 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 1955 {
mbed_official 159:7130f322cb7e 1956 NVIC->ISPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL));
mbed_official 159:7130f322cb7e 1957 }
mbed_official 159:7130f322cb7e 1958 }
mbed_official 159:7130f322cb7e 1959
mbed_official 159:7130f322cb7e 1960
mbed_official 159:7130f322cb7e 1961 /**
mbed_official 159:7130f322cb7e 1962 \brief Clear Pending Interrupt
mbed_official 159:7130f322cb7e 1963 \details Clears the pending bit of a device specific interrupt in the NVIC pending register.
mbed_official 159:7130f322cb7e 1964 \param [in] IRQn Device specific interrupt number.
mbed_official 159:7130f322cb7e 1965 \note IRQn must not be negative.
mbed_official 159:7130f322cb7e 1966 */
mbed_official 159:7130f322cb7e 1967 __STATIC_INLINE void __NVIC_ClearPendingIRQ(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 1968 {
mbed_official 159:7130f322cb7e 1969 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 1970 {
mbed_official 159:7130f322cb7e 1971 NVIC->ICPR[(((uint32_t)(int32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL));
mbed_official 159:7130f322cb7e 1972 }
mbed_official 159:7130f322cb7e 1973 }
mbed_official 159:7130f322cb7e 1974
mbed_official 159:7130f322cb7e 1975
mbed_official 159:7130f322cb7e 1976 /**
mbed_official 159:7130f322cb7e 1977 \brief Get Active Interrupt
mbed_official 159:7130f322cb7e 1978 \details Reads the active register in the NVIC and returns the active bit for the device specific interrupt.
mbed_official 159:7130f322cb7e 1979 \param [in] IRQn Device specific interrupt number.
mbed_official 159:7130f322cb7e 1980 \return 0 Interrupt status is not active.
mbed_official 159:7130f322cb7e 1981 \return 1 Interrupt status is active.
mbed_official 159:7130f322cb7e 1982 \note IRQn must not be negative.
mbed_official 159:7130f322cb7e 1983 */
mbed_official 159:7130f322cb7e 1984 __STATIC_INLINE uint32_t __NVIC_GetActive(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 1985 {
mbed_official 159:7130f322cb7e 1986 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 1987 {
mbed_official 159:7130f322cb7e 1988 return((uint32_t)(((NVIC->IABR[(((uint32_t)(int32_t)IRQn) >> 5UL)] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL));
mbed_official 159:7130f322cb7e 1989 }
mbed_official 159:7130f322cb7e 1990 else
mbed_official 159:7130f322cb7e 1991 {
mbed_official 159:7130f322cb7e 1992 return(0U);
mbed_official 159:7130f322cb7e 1993 }
mbed_official 159:7130f322cb7e 1994 }
mbed_official 159:7130f322cb7e 1995
mbed_official 159:7130f322cb7e 1996
mbed_official 159:7130f322cb7e 1997 /**
mbed_official 159:7130f322cb7e 1998 \brief Set Interrupt Priority
mbed_official 159:7130f322cb7e 1999 \details Sets the priority of a device specific interrupt or a processor exception.
mbed_official 159:7130f322cb7e 2000 The interrupt number can be positive to specify a device specific interrupt,
mbed_official 159:7130f322cb7e 2001 or negative to specify a processor exception.
mbed_official 159:7130f322cb7e 2002 \param [in] IRQn Interrupt number.
mbed_official 159:7130f322cb7e 2003 \param [in] priority Priority to set.
mbed_official 159:7130f322cb7e 2004 \note The priority cannot be set for every processor exception.
mbed_official 159:7130f322cb7e 2005 */
mbed_official 159:7130f322cb7e 2006 __STATIC_INLINE void __NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority)
mbed_official 159:7130f322cb7e 2007 {
mbed_official 159:7130f322cb7e 2008 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 2009 {
mbed_official 159:7130f322cb7e 2010 NVIC->IP[((uint32_t)(int32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL);
mbed_official 159:7130f322cb7e 2011 }
mbed_official 159:7130f322cb7e 2012 else
mbed_official 159:7130f322cb7e 2013 {
mbed_official 159:7130f322cb7e 2014 SCB->SHPR[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL);
mbed_official 159:7130f322cb7e 2015 }
mbed_official 159:7130f322cb7e 2016 }
mbed_official 159:7130f322cb7e 2017
mbed_official 159:7130f322cb7e 2018
mbed_official 159:7130f322cb7e 2019 /**
mbed_official 159:7130f322cb7e 2020 \brief Get Interrupt Priority
mbed_official 159:7130f322cb7e 2021 \details Reads the priority of a device specific interrupt or a processor exception.
mbed_official 159:7130f322cb7e 2022 The interrupt number can be positive to specify a device specific interrupt,
mbed_official 159:7130f322cb7e 2023 or negative to specify a processor exception.
mbed_official 159:7130f322cb7e 2024 \param [in] IRQn Interrupt number.
mbed_official 159:7130f322cb7e 2025 \return Interrupt Priority.
mbed_official 159:7130f322cb7e 2026 Value is aligned automatically to the implemented priority bits of the microcontroller.
mbed_official 159:7130f322cb7e 2027 */
mbed_official 159:7130f322cb7e 2028 __STATIC_INLINE uint32_t __NVIC_GetPriority(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 2029 {
mbed_official 159:7130f322cb7e 2030
mbed_official 159:7130f322cb7e 2031 if ((int32_t)(IRQn) >= 0)
mbed_official 159:7130f322cb7e 2032 {
mbed_official 159:7130f322cb7e 2033 return(((uint32_t)NVIC->IP[((uint32_t)(int32_t)IRQn)] >> (8U - __NVIC_PRIO_BITS)));
mbed_official 159:7130f322cb7e 2034 }
mbed_official 159:7130f322cb7e 2035 else
mbed_official 159:7130f322cb7e 2036 {
mbed_official 159:7130f322cb7e 2037 return(((uint32_t)SCB->SHPR[(((uint32_t)(int32_t)IRQn) & 0xFUL)-4UL] >> (8U - __NVIC_PRIO_BITS)));
mbed_official 159:7130f322cb7e 2038 }
mbed_official 159:7130f322cb7e 2039 }
mbed_official 159:7130f322cb7e 2040
mbed_official 159:7130f322cb7e 2041
mbed_official 159:7130f322cb7e 2042 /**
mbed_official 159:7130f322cb7e 2043 \brief Encode Priority
mbed_official 159:7130f322cb7e 2044 \details Encodes the priority for an interrupt with the given priority group,
mbed_official 159:7130f322cb7e 2045 preemptive priority value, and subpriority value.
mbed_official 159:7130f322cb7e 2046 In case of a conflict between priority grouping and available
mbed_official 159:7130f322cb7e 2047 priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set.
mbed_official 159:7130f322cb7e 2048 \param [in] PriorityGroup Used priority group.
mbed_official 159:7130f322cb7e 2049 \param [in] PreemptPriority Preemptive priority value (starting from 0).
mbed_official 159:7130f322cb7e 2050 \param [in] SubPriority Subpriority value (starting from 0).
mbed_official 159:7130f322cb7e 2051 \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority().
mbed_official 159:7130f322cb7e 2052 */
mbed_official 159:7130f322cb7e 2053 __STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority)
mbed_official 159:7130f322cb7e 2054 {
mbed_official 159:7130f322cb7e 2055 uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */
mbed_official 159:7130f322cb7e 2056 uint32_t PreemptPriorityBits;
mbed_official 159:7130f322cb7e 2057 uint32_t SubPriorityBits;
mbed_official 159:7130f322cb7e 2058
mbed_official 159:7130f322cb7e 2059 PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp);
mbed_official 159:7130f322cb7e 2060 SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS));
mbed_official 159:7130f322cb7e 2061
mbed_official 159:7130f322cb7e 2062 return (
mbed_official 159:7130f322cb7e 2063 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) |
mbed_official 159:7130f322cb7e 2064 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL)))
mbed_official 159:7130f322cb7e 2065 );
mbed_official 159:7130f322cb7e 2066 }
mbed_official 159:7130f322cb7e 2067
mbed_official 159:7130f322cb7e 2068
mbed_official 159:7130f322cb7e 2069 /**
mbed_official 159:7130f322cb7e 2070 \brief Decode Priority
mbed_official 159:7130f322cb7e 2071 \details Decodes an interrupt priority value with a given priority group to
mbed_official 159:7130f322cb7e 2072 preemptive priority value and subpriority value.
mbed_official 159:7130f322cb7e 2073 In case of a conflict between priority grouping and available
mbed_official 159:7130f322cb7e 2074 priority bits (__NVIC_PRIO_BITS) the smallest possible priority group is set.
mbed_official 159:7130f322cb7e 2075 \param [in] Priority Priority value, which can be retrieved with the function \ref NVIC_GetPriority().
mbed_official 159:7130f322cb7e 2076 \param [in] PriorityGroup Used priority group.
mbed_official 159:7130f322cb7e 2077 \param [out] pPreemptPriority Preemptive priority value (starting from 0).
mbed_official 159:7130f322cb7e 2078 \param [out] pSubPriority Subpriority value (starting from 0).
mbed_official 159:7130f322cb7e 2079 */
mbed_official 159:7130f322cb7e 2080 __STATIC_INLINE void NVIC_DecodePriority (uint32_t Priority, uint32_t PriorityGroup, uint32_t* const pPreemptPriority, uint32_t* const pSubPriority)
mbed_official 159:7130f322cb7e 2081 {
mbed_official 159:7130f322cb7e 2082 uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */
mbed_official 159:7130f322cb7e 2083 uint32_t PreemptPriorityBits;
mbed_official 159:7130f322cb7e 2084 uint32_t SubPriorityBits;
mbed_official 159:7130f322cb7e 2085
mbed_official 159:7130f322cb7e 2086 PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp);
mbed_official 159:7130f322cb7e 2087 SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS));
mbed_official 159:7130f322cb7e 2088
mbed_official 159:7130f322cb7e 2089 *pPreemptPriority = (Priority >> SubPriorityBits) & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL);
mbed_official 159:7130f322cb7e 2090 *pSubPriority = (Priority ) & (uint32_t)((1UL << (SubPriorityBits )) - 1UL);
mbed_official 159:7130f322cb7e 2091 }
mbed_official 159:7130f322cb7e 2092
mbed_official 159:7130f322cb7e 2093
mbed_official 159:7130f322cb7e 2094 /**
mbed_official 159:7130f322cb7e 2095 \brief Set Interrupt Vector
mbed_official 159:7130f322cb7e 2096 \details Sets an interrupt vector in SRAM based interrupt vector table.
mbed_official 159:7130f322cb7e 2097 The interrupt number can be positive to specify a device specific interrupt,
mbed_official 159:7130f322cb7e 2098 or negative to specify a processor exception.
mbed_official 159:7130f322cb7e 2099 VTOR must been relocated to SRAM before.
mbed_official 159:7130f322cb7e 2100 \param [in] IRQn Interrupt number
mbed_official 159:7130f322cb7e 2101 \param [in] vector Address of interrupt handler function
mbed_official 159:7130f322cb7e 2102 */
mbed_official 159:7130f322cb7e 2103 __STATIC_INLINE void __NVIC_SetVector(IRQn_Type IRQn, uint32_t vector)
mbed_official 159:7130f322cb7e 2104 {
mbed_official 159:7130f322cb7e 2105 uint32_t *vectors = (uint32_t *)SCB->VTOR;
mbed_official 159:7130f322cb7e 2106 vectors[(int32_t)IRQn + NVIC_USER_IRQ_OFFSET] = vector;
mbed_official 159:7130f322cb7e 2107 }
mbed_official 159:7130f322cb7e 2108
mbed_official 159:7130f322cb7e 2109
mbed_official 159:7130f322cb7e 2110 /**
mbed_official 159:7130f322cb7e 2111 \brief Get Interrupt Vector
mbed_official 159:7130f322cb7e 2112 \details Reads an interrupt vector from interrupt vector table.
mbed_official 159:7130f322cb7e 2113 The interrupt number can be positive to specify a device specific interrupt,
mbed_official 159:7130f322cb7e 2114 or negative to specify a processor exception.
mbed_official 159:7130f322cb7e 2115 \param [in] IRQn Interrupt number.
mbed_official 159:7130f322cb7e 2116 \return Address of interrupt handler function
mbed_official 159:7130f322cb7e 2117 */
mbed_official 159:7130f322cb7e 2118 __STATIC_INLINE uint32_t __NVIC_GetVector(IRQn_Type IRQn)
mbed_official 159:7130f322cb7e 2119 {
mbed_official 159:7130f322cb7e 2120 uint32_t *vectors = (uint32_t *)SCB->VTOR;
mbed_official 159:7130f322cb7e 2121 return vectors[(int32_t)IRQn + NVIC_USER_IRQ_OFFSET];
mbed_official 159:7130f322cb7e 2122 }
mbed_official 159:7130f322cb7e 2123
mbed_official 159:7130f322cb7e 2124
mbed_official 159:7130f322cb7e 2125 /**
mbed_official 159:7130f322cb7e 2126 \brief System Reset
mbed_official 159:7130f322cb7e 2127 \details Initiates a system reset request to reset the MCU.
mbed_official 159:7130f322cb7e 2128 */
mbed_official 159:7130f322cb7e 2129 __STATIC_INLINE void __NVIC_SystemReset(void)
mbed_official 159:7130f322cb7e 2130 {
mbed_official 159:7130f322cb7e 2131 __DSB(); /* Ensure all outstanding memory accesses included
mbed_official 159:7130f322cb7e 2132 buffered write are completed before reset */
mbed_official 159:7130f322cb7e 2133 SCB->AIRCR = (uint32_t)((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) |
mbed_official 159:7130f322cb7e 2134 (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) |
mbed_official 159:7130f322cb7e 2135 SCB_AIRCR_SYSRESETREQ_Msk ); /* Keep priority group unchanged */
mbed_official 159:7130f322cb7e 2136 __DSB(); /* Ensure completion of memory access */
mbed_official 159:7130f322cb7e 2137
mbed_official 159:7130f322cb7e 2138 for(;;) /* wait until reset */
mbed_official 159:7130f322cb7e 2139 {
mbed_official 159:7130f322cb7e 2140 __NOP();
mbed_official 159:7130f322cb7e 2141 }
mbed_official 159:7130f322cb7e 2142 }
mbed_official 159:7130f322cb7e 2143
mbed_official 159:7130f322cb7e 2144 /*@} end of CMSIS_Core_NVICFunctions */
mbed_official 159:7130f322cb7e 2145
mbed_official 159:7130f322cb7e 2146
mbed_official 159:7130f322cb7e 2147 /* ########################## FPU functions #################################### */
mbed_official 159:7130f322cb7e 2148 /**
mbed_official 159:7130f322cb7e 2149 \ingroup CMSIS_Core_FunctionInterface
mbed_official 159:7130f322cb7e 2150 \defgroup CMSIS_Core_FpuFunctions FPU Functions
mbed_official 159:7130f322cb7e 2151 \brief Function that provides FPU type.
mbed_official 159:7130f322cb7e 2152 @{
mbed_official 159:7130f322cb7e 2153 */
mbed_official 159:7130f322cb7e 2154
mbed_official 159:7130f322cb7e 2155 /**
mbed_official 159:7130f322cb7e 2156 \brief get FPU type
mbed_official 159:7130f322cb7e 2157 \details returns the FPU type
mbed_official 159:7130f322cb7e 2158 \returns
mbed_official 159:7130f322cb7e 2159 - \b 0: No FPU
mbed_official 159:7130f322cb7e 2160 - \b 1: Single precision FPU
mbed_official 159:7130f322cb7e 2161 - \b 2: Double + Single precision FPU
mbed_official 159:7130f322cb7e 2162 */
mbed_official 159:7130f322cb7e 2163 __STATIC_INLINE uint32_t SCB_GetFPUType(void)
mbed_official 159:7130f322cb7e 2164 {
mbed_official 159:7130f322cb7e 2165 uint32_t mvfr0;
mbed_official 159:7130f322cb7e 2166
mbed_official 159:7130f322cb7e 2167 mvfr0 = SCB->MVFR0;
mbed_official 159:7130f322cb7e 2168 if ((mvfr0 & (FPU_MVFR0_Single_precision_Msk | FPU_MVFR0_Double_precision_Msk)) == 0x220U)
mbed_official 159:7130f322cb7e 2169 {
mbed_official 159:7130f322cb7e 2170 return 2U; /* Double + Single precision FPU */
mbed_official 159:7130f322cb7e 2171 }
mbed_official 159:7130f322cb7e 2172 else if ((mvfr0 & (FPU_MVFR0_Single_precision_Msk | FPU_MVFR0_Double_precision_Msk)) == 0x020U)
mbed_official 159:7130f322cb7e 2173 {
mbed_official 159:7130f322cb7e 2174 return 1U; /* Single precision FPU */
mbed_official 159:7130f322cb7e 2175 }
mbed_official 159:7130f322cb7e 2176 else
mbed_official 159:7130f322cb7e 2177 {
mbed_official 159:7130f322cb7e 2178 return 0U; /* No FPU */
mbed_official 159:7130f322cb7e 2179 }
mbed_official 159:7130f322cb7e 2180 }
mbed_official 159:7130f322cb7e 2181
mbed_official 159:7130f322cb7e 2182
mbed_official 159:7130f322cb7e 2183 /*@} end of CMSIS_Core_FpuFunctions */
mbed_official 159:7130f322cb7e 2184
mbed_official 159:7130f322cb7e 2185
mbed_official 159:7130f322cb7e 2186
mbed_official 159:7130f322cb7e 2187 /* ########################## Cache functions #################################### */
mbed_official 159:7130f322cb7e 2188 /**
mbed_official 159:7130f322cb7e 2189 \ingroup CMSIS_Core_FunctionInterface
mbed_official 159:7130f322cb7e 2190 \defgroup CMSIS_Core_CacheFunctions Cache Functions
mbed_official 159:7130f322cb7e 2191 \brief Functions that configure Instruction and Data cache.
mbed_official 159:7130f322cb7e 2192 @{
mbed_official 159:7130f322cb7e 2193 */
mbed_official 159:7130f322cb7e 2194
mbed_official 159:7130f322cb7e 2195 /* Cache Size ID Register Macros */
mbed_official 159:7130f322cb7e 2196 #define CCSIDR_WAYS(x) (((x) & SCB_CCSIDR_ASSOCIATIVITY_Msk) >> SCB_CCSIDR_ASSOCIATIVITY_Pos)
mbed_official 159:7130f322cb7e 2197 #define CCSIDR_SETS(x) (((x) & SCB_CCSIDR_NUMSETS_Msk ) >> SCB_CCSIDR_NUMSETS_Pos )
mbed_official 159:7130f322cb7e 2198
mbed_official 159:7130f322cb7e 2199
mbed_official 159:7130f322cb7e 2200 /**
mbed_official 159:7130f322cb7e 2201 \brief Enable I-Cache
mbed_official 159:7130f322cb7e 2202 \details Turns on I-Cache
mbed_official 159:7130f322cb7e 2203 */
mbed_official 159:7130f322cb7e 2204 __STATIC_INLINE void SCB_EnableICache (void)
mbed_official 159:7130f322cb7e 2205 {
mbed_official 159:7130f322cb7e 2206 #if defined (__ICACHE_PRESENT) && (__ICACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2207 __DSB();
mbed_official 159:7130f322cb7e 2208 __ISB();
mbed_official 159:7130f322cb7e 2209 SCB->ICIALLU = 0UL; /* invalidate I-Cache */
mbed_official 159:7130f322cb7e 2210 __DSB();
mbed_official 159:7130f322cb7e 2211 __ISB();
mbed_official 159:7130f322cb7e 2212 SCB->CCR |= (uint32_t)SCB_CCR_IC_Msk; /* enable I-Cache */
mbed_official 159:7130f322cb7e 2213 __DSB();
mbed_official 159:7130f322cb7e 2214 __ISB();
mbed_official 159:7130f322cb7e 2215 #endif
mbed_official 159:7130f322cb7e 2216 }
mbed_official 159:7130f322cb7e 2217
mbed_official 159:7130f322cb7e 2218
mbed_official 159:7130f322cb7e 2219 /**
mbed_official 159:7130f322cb7e 2220 \brief Disable I-Cache
mbed_official 159:7130f322cb7e 2221 \details Turns off I-Cache
mbed_official 159:7130f322cb7e 2222 */
mbed_official 159:7130f322cb7e 2223 __STATIC_INLINE void SCB_DisableICache (void)
mbed_official 159:7130f322cb7e 2224 {
mbed_official 159:7130f322cb7e 2225 #if defined (__ICACHE_PRESENT) && (__ICACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2226 __DSB();
mbed_official 159:7130f322cb7e 2227 __ISB();
mbed_official 159:7130f322cb7e 2228 SCB->CCR &= ~(uint32_t)SCB_CCR_IC_Msk; /* disable I-Cache */
mbed_official 159:7130f322cb7e 2229 SCB->ICIALLU = 0UL; /* invalidate I-Cache */
mbed_official 159:7130f322cb7e 2230 __DSB();
mbed_official 159:7130f322cb7e 2231 __ISB();
mbed_official 159:7130f322cb7e 2232 #endif
mbed_official 159:7130f322cb7e 2233 }
mbed_official 159:7130f322cb7e 2234
mbed_official 159:7130f322cb7e 2235
mbed_official 159:7130f322cb7e 2236 /**
mbed_official 159:7130f322cb7e 2237 \brief Invalidate I-Cache
mbed_official 159:7130f322cb7e 2238 \details Invalidates I-Cache
mbed_official 159:7130f322cb7e 2239 */
mbed_official 159:7130f322cb7e 2240 __STATIC_INLINE void SCB_InvalidateICache (void)
mbed_official 159:7130f322cb7e 2241 {
mbed_official 159:7130f322cb7e 2242 #if defined (__ICACHE_PRESENT) && (__ICACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2243 __DSB();
mbed_official 159:7130f322cb7e 2244 __ISB();
mbed_official 159:7130f322cb7e 2245 SCB->ICIALLU = 0UL;
mbed_official 159:7130f322cb7e 2246 __DSB();
mbed_official 159:7130f322cb7e 2247 __ISB();
mbed_official 159:7130f322cb7e 2248 #endif
mbed_official 159:7130f322cb7e 2249 }
mbed_official 159:7130f322cb7e 2250
mbed_official 159:7130f322cb7e 2251
mbed_official 159:7130f322cb7e 2252 /**
mbed_official 159:7130f322cb7e 2253 \brief Enable D-Cache
mbed_official 159:7130f322cb7e 2254 \details Turns on D-Cache
mbed_official 159:7130f322cb7e 2255 */
mbed_official 159:7130f322cb7e 2256 __STATIC_INLINE void SCB_EnableDCache (void)
mbed_official 159:7130f322cb7e 2257 {
mbed_official 159:7130f322cb7e 2258 #if defined (__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2259 uint32_t ccsidr;
mbed_official 159:7130f322cb7e 2260 uint32_t sets;
mbed_official 159:7130f322cb7e 2261 uint32_t ways;
mbed_official 159:7130f322cb7e 2262
mbed_official 159:7130f322cb7e 2263 SCB->CSSELR = 0U; /*(0U << 1U) | 0U;*/ /* Level 1 data cache */
mbed_official 159:7130f322cb7e 2264 __DSB();
mbed_official 159:7130f322cb7e 2265
mbed_official 159:7130f322cb7e 2266 ccsidr = SCB->CCSIDR;
mbed_official 159:7130f322cb7e 2267
mbed_official 159:7130f322cb7e 2268 /* invalidate D-Cache */
mbed_official 159:7130f322cb7e 2269 sets = (uint32_t)(CCSIDR_SETS(ccsidr));
mbed_official 159:7130f322cb7e 2270 do {
mbed_official 159:7130f322cb7e 2271 ways = (uint32_t)(CCSIDR_WAYS(ccsidr));
mbed_official 159:7130f322cb7e 2272 do {
mbed_official 159:7130f322cb7e 2273 SCB->DCISW = (((sets << SCB_DCISW_SET_Pos) & SCB_DCISW_SET_Msk) |
mbed_official 159:7130f322cb7e 2274 ((ways << SCB_DCISW_WAY_Pos) & SCB_DCISW_WAY_Msk) );
mbed_official 159:7130f322cb7e 2275 #if defined ( __CC_ARM )
mbed_official 159:7130f322cb7e 2276 __schedule_barrier();
mbed_official 159:7130f322cb7e 2277 #endif
mbed_official 159:7130f322cb7e 2278 } while (ways-- != 0U);
mbed_official 159:7130f322cb7e 2279 } while(sets-- != 0U);
mbed_official 159:7130f322cb7e 2280 __DSB();
mbed_official 159:7130f322cb7e 2281
mbed_official 159:7130f322cb7e 2282 SCB->CCR |= (uint32_t)SCB_CCR_DC_Msk; /* enable D-Cache */
mbed_official 159:7130f322cb7e 2283
mbed_official 159:7130f322cb7e 2284 __DSB();
mbed_official 159:7130f322cb7e 2285 __ISB();
mbed_official 159:7130f322cb7e 2286 #endif
mbed_official 159:7130f322cb7e 2287 }
mbed_official 159:7130f322cb7e 2288
mbed_official 159:7130f322cb7e 2289
mbed_official 159:7130f322cb7e 2290 /**
mbed_official 159:7130f322cb7e 2291 \brief Disable D-Cache
mbed_official 159:7130f322cb7e 2292 \details Turns off D-Cache
mbed_official 159:7130f322cb7e 2293 */
mbed_official 159:7130f322cb7e 2294 __STATIC_INLINE void SCB_DisableDCache (void)
mbed_official 159:7130f322cb7e 2295 {
mbed_official 159:7130f322cb7e 2296 #if defined (__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2297 register uint32_t ccsidr;
mbed_official 159:7130f322cb7e 2298 register uint32_t sets;
mbed_official 159:7130f322cb7e 2299 register uint32_t ways;
mbed_official 159:7130f322cb7e 2300
mbed_official 159:7130f322cb7e 2301 SCB->CSSELR = 0U; /*(0U << 1U) | 0U;*/ /* Level 1 data cache */
mbed_official 159:7130f322cb7e 2302 __DSB();
mbed_official 159:7130f322cb7e 2303
mbed_official 159:7130f322cb7e 2304 SCB->CCR &= ~(uint32_t)SCB_CCR_DC_Msk; /* disable D-Cache */
mbed_official 159:7130f322cb7e 2305 __DSB();
mbed_official 159:7130f322cb7e 2306
mbed_official 159:7130f322cb7e 2307 ccsidr = SCB->CCSIDR;
mbed_official 159:7130f322cb7e 2308
mbed_official 159:7130f322cb7e 2309 /* clean & invalidate D-Cache */
mbed_official 159:7130f322cb7e 2310 sets = (uint32_t)(CCSIDR_SETS(ccsidr));
mbed_official 159:7130f322cb7e 2311 do {
mbed_official 159:7130f322cb7e 2312 ways = (uint32_t)(CCSIDR_WAYS(ccsidr));
mbed_official 159:7130f322cb7e 2313 do {
mbed_official 159:7130f322cb7e 2314 SCB->DCCISW = (((sets << SCB_DCCISW_SET_Pos) & SCB_DCCISW_SET_Msk) |
mbed_official 159:7130f322cb7e 2315 ((ways << SCB_DCCISW_WAY_Pos) & SCB_DCCISW_WAY_Msk) );
mbed_official 159:7130f322cb7e 2316 #if defined ( __CC_ARM )
mbed_official 159:7130f322cb7e 2317 __schedule_barrier();
mbed_official 159:7130f322cb7e 2318 #endif
mbed_official 159:7130f322cb7e 2319 } while (ways-- != 0U);
mbed_official 159:7130f322cb7e 2320 } while(sets-- != 0U);
mbed_official 159:7130f322cb7e 2321
mbed_official 159:7130f322cb7e 2322 __DSB();
mbed_official 159:7130f322cb7e 2323 __ISB();
mbed_official 159:7130f322cb7e 2324 #endif
mbed_official 159:7130f322cb7e 2325 }
mbed_official 159:7130f322cb7e 2326
mbed_official 159:7130f322cb7e 2327
mbed_official 159:7130f322cb7e 2328 /**
mbed_official 159:7130f322cb7e 2329 \brief Invalidate D-Cache
mbed_official 159:7130f322cb7e 2330 \details Invalidates D-Cache
mbed_official 159:7130f322cb7e 2331 */
mbed_official 159:7130f322cb7e 2332 __STATIC_INLINE void SCB_InvalidateDCache (void)
mbed_official 159:7130f322cb7e 2333 {
mbed_official 159:7130f322cb7e 2334 #if defined (__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2335 uint32_t ccsidr;
mbed_official 159:7130f322cb7e 2336 uint32_t sets;
mbed_official 159:7130f322cb7e 2337 uint32_t ways;
mbed_official 159:7130f322cb7e 2338
mbed_official 159:7130f322cb7e 2339 SCB->CSSELR = 0U; /*(0U << 1U) | 0U;*/ /* Level 1 data cache */
mbed_official 159:7130f322cb7e 2340 __DSB();
mbed_official 159:7130f322cb7e 2341
mbed_official 159:7130f322cb7e 2342 ccsidr = SCB->CCSIDR;
mbed_official 159:7130f322cb7e 2343
mbed_official 159:7130f322cb7e 2344 /* invalidate D-Cache */
mbed_official 159:7130f322cb7e 2345 sets = (uint32_t)(CCSIDR_SETS(ccsidr));
mbed_official 159:7130f322cb7e 2346 do {
mbed_official 159:7130f322cb7e 2347 ways = (uint32_t)(CCSIDR_WAYS(ccsidr));
mbed_official 159:7130f322cb7e 2348 do {
mbed_official 159:7130f322cb7e 2349 SCB->DCISW = (((sets << SCB_DCISW_SET_Pos) & SCB_DCISW_SET_Msk) |
mbed_official 159:7130f322cb7e 2350 ((ways << SCB_DCISW_WAY_Pos) & SCB_DCISW_WAY_Msk) );
mbed_official 159:7130f322cb7e 2351 #if defined ( __CC_ARM )
mbed_official 159:7130f322cb7e 2352 __schedule_barrier();
mbed_official 159:7130f322cb7e 2353 #endif
mbed_official 159:7130f322cb7e 2354 } while (ways-- != 0U);
mbed_official 159:7130f322cb7e 2355 } while(sets-- != 0U);
mbed_official 159:7130f322cb7e 2356
mbed_official 159:7130f322cb7e 2357 __DSB();
mbed_official 159:7130f322cb7e 2358 __ISB();
mbed_official 159:7130f322cb7e 2359 #endif
mbed_official 159:7130f322cb7e 2360 }
mbed_official 159:7130f322cb7e 2361
mbed_official 159:7130f322cb7e 2362
mbed_official 159:7130f322cb7e 2363 /**
mbed_official 159:7130f322cb7e 2364 \brief Clean D-Cache
mbed_official 159:7130f322cb7e 2365 \details Cleans D-Cache
mbed_official 159:7130f322cb7e 2366 */
mbed_official 159:7130f322cb7e 2367 __STATIC_INLINE void SCB_CleanDCache (void)
mbed_official 159:7130f322cb7e 2368 {
mbed_official 159:7130f322cb7e 2369 #if defined (__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2370 uint32_t ccsidr;
mbed_official 159:7130f322cb7e 2371 uint32_t sets;
mbed_official 159:7130f322cb7e 2372 uint32_t ways;
mbed_official 159:7130f322cb7e 2373
mbed_official 159:7130f322cb7e 2374 SCB->CSSELR = 0U; /*(0U << 1U) | 0U;*/ /* Level 1 data cache */
mbed_official 159:7130f322cb7e 2375 __DSB();
mbed_official 159:7130f322cb7e 2376
mbed_official 159:7130f322cb7e 2377 ccsidr = SCB->CCSIDR;
mbed_official 159:7130f322cb7e 2378
mbed_official 159:7130f322cb7e 2379 /* clean D-Cache */
mbed_official 159:7130f322cb7e 2380 sets = (uint32_t)(CCSIDR_SETS(ccsidr));
mbed_official 159:7130f322cb7e 2381 do {
mbed_official 159:7130f322cb7e 2382 ways = (uint32_t)(CCSIDR_WAYS(ccsidr));
mbed_official 159:7130f322cb7e 2383 do {
mbed_official 159:7130f322cb7e 2384 SCB->DCCSW = (((sets << SCB_DCCSW_SET_Pos) & SCB_DCCSW_SET_Msk) |
mbed_official 159:7130f322cb7e 2385 ((ways << SCB_DCCSW_WAY_Pos) & SCB_DCCSW_WAY_Msk) );
mbed_official 159:7130f322cb7e 2386 #if defined ( __CC_ARM )
mbed_official 159:7130f322cb7e 2387 __schedule_barrier();
mbed_official 159:7130f322cb7e 2388 #endif
mbed_official 159:7130f322cb7e 2389 } while (ways-- != 0U);
mbed_official 159:7130f322cb7e 2390 } while(sets-- != 0U);
mbed_official 159:7130f322cb7e 2391
mbed_official 159:7130f322cb7e 2392 __DSB();
mbed_official 159:7130f322cb7e 2393 __ISB();
mbed_official 159:7130f322cb7e 2394 #endif
mbed_official 159:7130f322cb7e 2395 }
mbed_official 159:7130f322cb7e 2396
mbed_official 159:7130f322cb7e 2397
mbed_official 159:7130f322cb7e 2398 /**
mbed_official 159:7130f322cb7e 2399 \brief Clean & Invalidate D-Cache
mbed_official 159:7130f322cb7e 2400 \details Cleans and Invalidates D-Cache
mbed_official 159:7130f322cb7e 2401 */
mbed_official 159:7130f322cb7e 2402 __STATIC_INLINE void SCB_CleanInvalidateDCache (void)
mbed_official 159:7130f322cb7e 2403 {
mbed_official 159:7130f322cb7e 2404 #if defined (__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2405 uint32_t ccsidr;
mbed_official 159:7130f322cb7e 2406 uint32_t sets;
mbed_official 159:7130f322cb7e 2407 uint32_t ways;
mbed_official 159:7130f322cb7e 2408
mbed_official 159:7130f322cb7e 2409 SCB->CSSELR = 0U; /*(0U << 1U) | 0U;*/ /* Level 1 data cache */
mbed_official 159:7130f322cb7e 2410 __DSB();
mbed_official 159:7130f322cb7e 2411
mbed_official 159:7130f322cb7e 2412 ccsidr = SCB->CCSIDR;
mbed_official 159:7130f322cb7e 2413
mbed_official 159:7130f322cb7e 2414 /* clean & invalidate D-Cache */
mbed_official 159:7130f322cb7e 2415 sets = (uint32_t)(CCSIDR_SETS(ccsidr));
mbed_official 159:7130f322cb7e 2416 do {
mbed_official 159:7130f322cb7e 2417 ways = (uint32_t)(CCSIDR_WAYS(ccsidr));
mbed_official 159:7130f322cb7e 2418 do {
mbed_official 159:7130f322cb7e 2419 SCB->DCCISW = (((sets << SCB_DCCISW_SET_Pos) & SCB_DCCISW_SET_Msk) |
mbed_official 159:7130f322cb7e 2420 ((ways << SCB_DCCISW_WAY_Pos) & SCB_DCCISW_WAY_Msk) );
mbed_official 159:7130f322cb7e 2421 #if defined ( __CC_ARM )
mbed_official 159:7130f322cb7e 2422 __schedule_barrier();
mbed_official 159:7130f322cb7e 2423 #endif
mbed_official 159:7130f322cb7e 2424 } while (ways-- != 0U);
mbed_official 159:7130f322cb7e 2425 } while(sets-- != 0U);
mbed_official 159:7130f322cb7e 2426
mbed_official 159:7130f322cb7e 2427 __DSB();
mbed_official 159:7130f322cb7e 2428 __ISB();
mbed_official 159:7130f322cb7e 2429 #endif
mbed_official 159:7130f322cb7e 2430 }
mbed_official 159:7130f322cb7e 2431
mbed_official 159:7130f322cb7e 2432
mbed_official 159:7130f322cb7e 2433 /**
mbed_official 159:7130f322cb7e 2434 \brief D-Cache Invalidate by address
mbed_official 159:7130f322cb7e 2435 \details Invalidates D-Cache for the given address
mbed_official 159:7130f322cb7e 2436 \param[in] addr address (aligned to 32-byte boundary)
mbed_official 159:7130f322cb7e 2437 \param[in] dsize size of memory block (in number of bytes)
mbed_official 159:7130f322cb7e 2438 */
mbed_official 159:7130f322cb7e 2439 __STATIC_INLINE void SCB_InvalidateDCache_by_Addr (uint32_t *addr, int32_t dsize)
mbed_official 159:7130f322cb7e 2440 {
mbed_official 159:7130f322cb7e 2441 #if defined (__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2442 int32_t op_size = dsize;
mbed_official 159:7130f322cb7e 2443 uint32_t op_addr = (uint32_t)addr;
mbed_official 159:7130f322cb7e 2444 int32_t linesize = 32; /* in Cortex-M7 size of cache line is fixed to 8 words (32 bytes) */
mbed_official 159:7130f322cb7e 2445
mbed_official 159:7130f322cb7e 2446 __DSB();
mbed_official 159:7130f322cb7e 2447
mbed_official 159:7130f322cb7e 2448 while (op_size > 0) {
mbed_official 159:7130f322cb7e 2449 SCB->DCIMVAC = op_addr;
mbed_official 159:7130f322cb7e 2450 op_addr += (uint32_t)linesize;
mbed_official 159:7130f322cb7e 2451 op_size -= linesize;
mbed_official 159:7130f322cb7e 2452 }
mbed_official 159:7130f322cb7e 2453
mbed_official 159:7130f322cb7e 2454 __DSB();
mbed_official 159:7130f322cb7e 2455 __ISB();
mbed_official 159:7130f322cb7e 2456 #endif
mbed_official 159:7130f322cb7e 2457 }
mbed_official 159:7130f322cb7e 2458
mbed_official 159:7130f322cb7e 2459
mbed_official 159:7130f322cb7e 2460 /**
mbed_official 159:7130f322cb7e 2461 \brief D-Cache Clean by address
mbed_official 159:7130f322cb7e 2462 \details Cleans D-Cache for the given address
mbed_official 159:7130f322cb7e 2463 \param[in] addr address (aligned to 32-byte boundary)
mbed_official 159:7130f322cb7e 2464 \param[in] dsize size of memory block (in number of bytes)
mbed_official 159:7130f322cb7e 2465 */
mbed_official 159:7130f322cb7e 2466 __STATIC_INLINE void SCB_CleanDCache_by_Addr (uint32_t *addr, int32_t dsize)
mbed_official 159:7130f322cb7e 2467 {
mbed_official 159:7130f322cb7e 2468 #if defined (__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2469 int32_t op_size = dsize;
mbed_official 159:7130f322cb7e 2470 uint32_t op_addr = (uint32_t) addr;
mbed_official 159:7130f322cb7e 2471 int32_t linesize = 32; /* in Cortex-M7 size of cache line is fixed to 8 words (32 bytes) */
mbed_official 159:7130f322cb7e 2472
mbed_official 159:7130f322cb7e 2473 __DSB();
mbed_official 159:7130f322cb7e 2474
mbed_official 159:7130f322cb7e 2475 while (op_size > 0) {
mbed_official 159:7130f322cb7e 2476 SCB->DCCMVAC = op_addr;
mbed_official 159:7130f322cb7e 2477 op_addr += (uint32_t)linesize;
mbed_official 159:7130f322cb7e 2478 op_size -= linesize;
mbed_official 159:7130f322cb7e 2479 }
mbed_official 159:7130f322cb7e 2480
mbed_official 159:7130f322cb7e 2481 __DSB();
mbed_official 159:7130f322cb7e 2482 __ISB();
mbed_official 159:7130f322cb7e 2483 #endif
mbed_official 159:7130f322cb7e 2484 }
mbed_official 159:7130f322cb7e 2485
mbed_official 159:7130f322cb7e 2486
mbed_official 159:7130f322cb7e 2487 /**
mbed_official 159:7130f322cb7e 2488 \brief D-Cache Clean and Invalidate by address
mbed_official 159:7130f322cb7e 2489 \details Cleans and invalidates D_Cache for the given address
mbed_official 159:7130f322cb7e 2490 \param[in] addr address (aligned to 32-byte boundary)
mbed_official 159:7130f322cb7e 2491 \param[in] dsize size of memory block (in number of bytes)
mbed_official 159:7130f322cb7e 2492 */
mbed_official 159:7130f322cb7e 2493 __STATIC_INLINE void SCB_CleanInvalidateDCache_by_Addr (uint32_t *addr, int32_t dsize)
mbed_official 159:7130f322cb7e 2494 {
mbed_official 159:7130f322cb7e 2495 #if defined (__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U)
mbed_official 159:7130f322cb7e 2496 int32_t op_size = dsize;
mbed_official 159:7130f322cb7e 2497 uint32_t op_addr = (uint32_t) addr;
mbed_official 159:7130f322cb7e 2498 int32_t linesize = 32; /* in Cortex-M7 size of cache line is fixed to 8 words (32 bytes) */
mbed_official 159:7130f322cb7e 2499
mbed_official 159:7130f322cb7e 2500 __DSB();
mbed_official 159:7130f322cb7e 2501
mbed_official 159:7130f322cb7e 2502 while (op_size > 0) {
mbed_official 159:7130f322cb7e 2503 SCB->DCCIMVAC = op_addr;
mbed_official 159:7130f322cb7e 2504 op_addr += (uint32_t)linesize;
mbed_official 159:7130f322cb7e 2505 op_size -= linesize;
mbed_official 159:7130f322cb7e 2506 }
mbed_official 159:7130f322cb7e 2507
mbed_official 159:7130f322cb7e 2508 __DSB();
mbed_official 159:7130f322cb7e 2509 __ISB();
mbed_official 159:7130f322cb7e 2510 #endif
mbed_official 159:7130f322cb7e 2511 }
mbed_official 159:7130f322cb7e 2512
mbed_official 159:7130f322cb7e 2513
mbed_official 159:7130f322cb7e 2514 /*@} end of CMSIS_Core_CacheFunctions */
mbed_official 159:7130f322cb7e 2515
mbed_official 159:7130f322cb7e 2516
mbed_official 159:7130f322cb7e 2517
mbed_official 159:7130f322cb7e 2518 /* ################################## SysTick function ############################################ */
mbed_official 159:7130f322cb7e 2519 /**
mbed_official 159:7130f322cb7e 2520 \ingroup CMSIS_Core_FunctionInterface
mbed_official 159:7130f322cb7e 2521 \defgroup CMSIS_Core_SysTickFunctions SysTick Functions
mbed_official 159:7130f322cb7e 2522 \brief Functions that configure the System.
mbed_official 159:7130f322cb7e 2523 @{
mbed_official 159:7130f322cb7e 2524 */
mbed_official 159:7130f322cb7e 2525
mbed_official 159:7130f322cb7e 2526 #if defined (__Vendor_SysTickConfig) && (__Vendor_SysTickConfig == 0U)
mbed_official 159:7130f322cb7e 2527
mbed_official 159:7130f322cb7e 2528 /**
mbed_official 159:7130f322cb7e 2529 \brief System Tick Configuration
mbed_official 159:7130f322cb7e 2530 \details Initializes the System Timer and its interrupt, and starts the System Tick Timer.
mbed_official 159:7130f322cb7e 2531 Counter is in free running mode to generate periodic interrupts.
mbed_official 159:7130f322cb7e 2532 \param [in] ticks Number of ticks between two interrupts.
mbed_official 159:7130f322cb7e 2533 \return 0 Function succeeded.
mbed_official 159:7130f322cb7e 2534 \return 1 Function failed.
mbed_official 159:7130f322cb7e 2535 \note When the variable <b>__Vendor_SysTickConfig</b> is set to 1, then the
mbed_official 159:7130f322cb7e 2536 function <b>SysTick_Config</b> is not included. In this case, the file <b><i>device</i>.h</b>
mbed_official 159:7130f322cb7e 2537 must contain a vendor-specific implementation of this function.
mbed_official 159:7130f322cb7e 2538 */
mbed_official 159:7130f322cb7e 2539 __STATIC_INLINE uint32_t SysTick_Config(uint32_t ticks)
mbed_official 159:7130f322cb7e 2540 {
mbed_official 159:7130f322cb7e 2541 if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk)
mbed_official 159:7130f322cb7e 2542 {
mbed_official 159:7130f322cb7e 2543 return (1UL); /* Reload value impossible */
mbed_official 159:7130f322cb7e 2544 }
mbed_official 159:7130f322cb7e 2545
mbed_official 159:7130f322cb7e 2546 SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */
mbed_official 159:7130f322cb7e 2547 NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */
mbed_official 159:7130f322cb7e 2548 SysTick->VAL = 0UL; /* Load the SysTick Counter Value */
mbed_official 159:7130f322cb7e 2549 SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk |
mbed_official 159:7130f322cb7e 2550 SysTick_CTRL_TICKINT_Msk |
mbed_official 159:7130f322cb7e 2551 SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */
mbed_official 159:7130f322cb7e 2552 return (0UL); /* Function successful */
mbed_official 159:7130f322cb7e 2553 }
mbed_official 159:7130f322cb7e 2554
mbed_official 159:7130f322cb7e 2555 #endif
mbed_official 159:7130f322cb7e 2556
mbed_official 159:7130f322cb7e 2557 /*@} end of CMSIS_Core_SysTickFunctions */
mbed_official 159:7130f322cb7e 2558
mbed_official 159:7130f322cb7e 2559
mbed_official 159:7130f322cb7e 2560
mbed_official 159:7130f322cb7e 2561 /* ##################################### Debug In/Output function ########################################### */
mbed_official 159:7130f322cb7e 2562 /**
mbed_official 159:7130f322cb7e 2563 \ingroup CMSIS_Core_FunctionInterface
mbed_official 159:7130f322cb7e 2564 \defgroup CMSIS_core_DebugFunctions ITM Functions
mbed_official 159:7130f322cb7e 2565 \brief Functions that access the ITM debug interface.
mbed_official 159:7130f322cb7e 2566 @{
mbed_official 159:7130f322cb7e 2567 */
mbed_official 159:7130f322cb7e 2568
mbed_official 159:7130f322cb7e 2569 extern volatile int32_t ITM_RxBuffer; /*!< External variable to receive characters. */
mbed_official 159:7130f322cb7e 2570 #define ITM_RXBUFFER_EMPTY ((int32_t)0x5AA55AA5U) /*!< Value identifying \ref ITM_RxBuffer is ready for next character. */
mbed_official 159:7130f322cb7e 2571
mbed_official 159:7130f322cb7e 2572
mbed_official 159:7130f322cb7e 2573 /**
mbed_official 159:7130f322cb7e 2574 \brief ITM Send Character
mbed_official 159:7130f322cb7e 2575 \details Transmits a character via the ITM channel 0, and
mbed_official 159:7130f322cb7e 2576 \li Just returns when no debugger is connected that has booked the output.
mbed_official 159:7130f322cb7e 2577 \li Is blocking when a debugger is connected, but the previous character sent has not been transmitted.
mbed_official 159:7130f322cb7e 2578 \param [in] ch Character to transmit.
mbed_official 159:7130f322cb7e 2579 \returns Character to transmit.
mbed_official 159:7130f322cb7e 2580 */
mbed_official 159:7130f322cb7e 2581 __STATIC_INLINE uint32_t ITM_SendChar (uint32_t ch)
mbed_official 159:7130f322cb7e 2582 {
mbed_official 159:7130f322cb7e 2583 if (((ITM->TCR & ITM_TCR_ITMENA_Msk) != 0UL) && /* ITM enabled */
mbed_official 159:7130f322cb7e 2584 ((ITM->TER & 1UL ) != 0UL) ) /* ITM Port #0 enabled */
mbed_official 159:7130f322cb7e 2585 {
mbed_official 159:7130f322cb7e 2586 while (ITM->PORT[0U].u32 == 0UL)
mbed_official 159:7130f322cb7e 2587 {
mbed_official 159:7130f322cb7e 2588 __NOP();
mbed_official 159:7130f322cb7e 2589 }
mbed_official 159:7130f322cb7e 2590 ITM->PORT[0U].u8 = (uint8_t)ch;
mbed_official 159:7130f322cb7e 2591 }
mbed_official 159:7130f322cb7e 2592 return (ch);
mbed_official 159:7130f322cb7e 2593 }
mbed_official 159:7130f322cb7e 2594
mbed_official 159:7130f322cb7e 2595
mbed_official 159:7130f322cb7e 2596 /**
mbed_official 159:7130f322cb7e 2597 \brief ITM Receive Character
mbed_official 159:7130f322cb7e 2598 \details Inputs a character via the external variable \ref ITM_RxBuffer.
mbed_official 159:7130f322cb7e 2599 \return Received character.
mbed_official 159:7130f322cb7e 2600 \return -1 No character pending.
mbed_official 159:7130f322cb7e 2601 */
mbed_official 159:7130f322cb7e 2602 __STATIC_INLINE int32_t ITM_ReceiveChar (void)
mbed_official 159:7130f322cb7e 2603 {
mbed_official 159:7130f322cb7e 2604 int32_t ch = -1; /* no character available */
mbed_official 159:7130f322cb7e 2605
mbed_official 159:7130f322cb7e 2606 if (ITM_RxBuffer != ITM_RXBUFFER_EMPTY)
mbed_official 159:7130f322cb7e 2607 {
mbed_official 159:7130f322cb7e 2608 ch = ITM_RxBuffer;
mbed_official 159:7130f322cb7e 2609 ITM_RxBuffer = ITM_RXBUFFER_EMPTY; /* ready for next character */
mbed_official 159:7130f322cb7e 2610 }
mbed_official 159:7130f322cb7e 2611
mbed_official 159:7130f322cb7e 2612 return (ch);
mbed_official 159:7130f322cb7e 2613 }
mbed_official 159:7130f322cb7e 2614
mbed_official 159:7130f322cb7e 2615
mbed_official 159:7130f322cb7e 2616 /**
mbed_official 159:7130f322cb7e 2617 \brief ITM Check Character
mbed_official 159:7130f322cb7e 2618 \details Checks whether a character is pending for reading in the variable \ref ITM_RxBuffer.
mbed_official 159:7130f322cb7e 2619 \return 0 No character available.
mbed_official 159:7130f322cb7e 2620 \return 1 Character available.
mbed_official 159:7130f322cb7e 2621 */
mbed_official 159:7130f322cb7e 2622 __STATIC_INLINE int32_t ITM_CheckChar (void)
mbed_official 159:7130f322cb7e 2623 {
mbed_official 159:7130f322cb7e 2624
mbed_official 159:7130f322cb7e 2625 if (ITM_RxBuffer == ITM_RXBUFFER_EMPTY)
mbed_official 159:7130f322cb7e 2626 {
mbed_official 159:7130f322cb7e 2627 return (0); /* no character available */
mbed_official 159:7130f322cb7e 2628 }
mbed_official 159:7130f322cb7e 2629 else
mbed_official 159:7130f322cb7e 2630 {
mbed_official 159:7130f322cb7e 2631 return (1); /* character available */
mbed_official 159:7130f322cb7e 2632 }
mbed_official 159:7130f322cb7e 2633 }
mbed_official 159:7130f322cb7e 2634
mbed_official 159:7130f322cb7e 2635 /*@} end of CMSIS_core_DebugFunctions */
mbed_official 159:7130f322cb7e 2636
mbed_official 159:7130f322cb7e 2637
mbed_official 159:7130f322cb7e 2638
mbed_official 159:7130f322cb7e 2639
mbed_official 159:7130f322cb7e 2640 #ifdef __cplusplus
mbed_official 159:7130f322cb7e 2641 }
mbed_official 159:7130f322cb7e 2642 #endif
mbed_official 159:7130f322cb7e 2643
mbed_official 159:7130f322cb7e 2644 #endif /* __CORE_CM7_H_DEPENDANT */
mbed_official 159:7130f322cb7e 2645
mbed_official 159:7130f322cb7e 2646 #endif /* __CMSIS_GENERIC */