25#ifndef __CMSIS_ARMCC_H
26#define __CMSIS_ARMCC_H
29#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 400677)
30 #error "Please use Arm Compiler Toolchain V4.0.677 or later!"
34#if ((defined (__TARGET_ARCH_6_M ) && (__TARGET_ARCH_6_M == 1)) || \
35 (defined (__TARGET_ARCH_6S_M ) && (__TARGET_ARCH_6S_M == 1)) )
36 #define __ARM_ARCH_6M__ 1
39#if (defined (__TARGET_ARCH_7_M ) && (__TARGET_ARCH_7_M == 1))
40 #define __ARM_ARCH_7M__ 1
43#if (defined (__TARGET_ARCH_7E_M) && (__TARGET_ARCH_7E_M == 1))
44 #define __ARM_ARCH_7EM__ 1
52#if ((defined (__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1)) )
53 #define __ARM_FEATURE_DSP 1
61 #define __INLINE __inline
63#ifndef __STATIC_INLINE
64 #define __STATIC_INLINE static __inline
66#ifndef __STATIC_FORCEINLINE
67 #define __STATIC_FORCEINLINE static __forceinline
70 #define __NO_RETURN __declspec(noreturn)
73 #define __USED __attribute__((used))
76 #define __WEAK __attribute__((weak))
79 #define __PACKED __attribute__((packed))
81#ifndef __PACKED_STRUCT
82 #define __PACKED_STRUCT __packed struct
85 #define __PACKED_UNION __packed union
87#ifndef __UNALIGNED_UINT32
88 #define __UNALIGNED_UINT32(x) (*((__packed uint32_t *)(x)))
90#ifndef __UNALIGNED_UINT16_WRITE
91 #define __UNALIGNED_UINT16_WRITE(addr, val) ((*((__packed uint16_t *)(addr))) = (val))
93#ifndef __UNALIGNED_UINT16_READ
94 #define __UNALIGNED_UINT16_READ(addr) (*((const __packed uint16_t *)(addr)))
96#ifndef __UNALIGNED_UINT32_WRITE
97 #define __UNALIGNED_UINT32_WRITE(addr, val) ((*((__packed uint32_t *)(addr))) = (val))
99#ifndef __UNALIGNED_UINT32_READ
100 #define __UNALIGNED_UINT32_READ(addr) (*((const __packed uint32_t *)(addr)))
103 #define __ALIGNED(x) __attribute__((aligned(x)))
106 #define __RESTRICT __restrict
108#ifndef __COMPILER_BARRIER
109 #define __COMPILER_BARRIER() __memory_changed()
112 #define __NO_INIT __attribute__ ((section (".bss.noinit"), zero_init))
115 #define __ALIAS(x) __attribute__ ((alias(x)))
120#ifndef __PROGRAM_START
121#define __PROGRAM_START __main
125#define __INITIAL_SP Image$$ARM_LIB_STACK$$ZI$$Limit
129#define __STACK_LIMIT Image$$ARM_LIB_STACK$$ZI$$Base
132#ifndef __VECTOR_TABLE
133#define __VECTOR_TABLE __Vectors
136#ifndef __VECTOR_TABLE_ATTRIBUTE
137#define __VECTOR_TABLE_ATTRIBUTE __attribute__((used, section("RESET")))
181#define __ISB() __isb(0xF)
188#define __DSB() __dsb(0xF)
195#define __DMB() __dmb(0xF)
213#ifndef __NO_EMBEDDED_ASM
228#ifndef __NO_EMBEDDED_ASM
254#define __BKPT(value) __breakpoint(value)
263#if ((defined (__ARM_ARCH_7M__ ) && (__ARM_ARCH_7M__ == 1)) || \
264 (defined (__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1)) )
265 #define __RBIT __rbit
270 uint32_t s = (4U * 8U) - 1U;
273 for (value >>= 1U; value != 0U; value >>= 1U)
276 result |= value & 1U;
294#if ((defined (__ARM_ARCH_7M__ ) && (__ARM_ARCH_7M__ == 1)) || \
295 (defined (__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1)) )
303#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020)
304 #define __LDREXB(ptr) ((uint8_t ) __ldrex(ptr))
306 #define __LDREXB(ptr) _Pragma("push") _Pragma("diag_suppress 3731") ((uint8_t ) __ldrex(ptr)) _Pragma("pop")
316#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020)
317 #define __LDREXH(ptr) ((uint16_t) __ldrex(ptr))
319 #define __LDREXH(ptr) _Pragma("push") _Pragma("diag_suppress 3731") ((uint16_t) __ldrex(ptr)) _Pragma("pop")
329#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020)
330 #define __LDREXW(ptr) ((uint32_t ) __ldrex(ptr))
332 #define __LDREXW(ptr) _Pragma("push") _Pragma("diag_suppress 3731") ((uint32_t ) __ldrex(ptr)) _Pragma("pop")
344#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020)
345 #define __STREXB(value, ptr) __strex(value, ptr)
347 #define __STREXB(value, ptr) _Pragma("push") _Pragma("diag_suppress 3731") __strex(value, ptr) _Pragma("pop")
359#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020)
360 #define __STREXH(value, ptr) __strex(value, ptr)
362 #define __STREXH(value, ptr) _Pragma("push") _Pragma("diag_suppress 3731") __strex(value, ptr) _Pragma("pop")
374#if defined(__ARMCC_VERSION) && (__ARMCC_VERSION < 5060020)
375 #define __STREXW(value, ptr) __strex(value, ptr)
377 #define __STREXW(value, ptr) _Pragma("push") _Pragma("diag_suppress 3731") __strex(value, ptr) _Pragma("pop")
385#define __CLREX __clrex
415#ifndef __NO_EMBEDDED_ASM
416__attribute__((section(
".rrx_text"))) __STATIC_INLINE __ASM uint32_t __RRX(uint32_t value)
430#define __LDRBT(ptr) ((uint8_t ) __ldrt(ptr))
439#define __LDRHT(ptr) ((uint16_t) __ldrt(ptr))
448#define __LDRT(ptr) ((uint32_t ) __ldrt(ptr))
457#define __STRBT(value, ptr) __strt(value, ptr)
466#define __STRHT(value, ptr) __strt(value, ptr)
475#define __STRT(value, ptr) __strt(value, ptr)
489 if ((sat >= 1U) && (sat <= 32U))
491 const int32_t max = (int32_t)((1U << (sat - 1U)) - 1U);
492 const int32_t min = -1 - max ;
516 const uint32_t max = ((1U << sat) - 1U);
517 if (val > (int32_t)max)
526 return (uint32_t)val;
563 register uint32_t __regControl __ASM(
"control");
564 return(__regControl);
575 register uint32_t __regControl __ASM(
"control");
576 __regControl = control;
588 register uint32_t __regIPSR __ASM(
"ipsr");
600 register uint32_t __regAPSR __ASM(
"apsr");
612 register uint32_t __regXPSR __ASM(
"xpsr");
624 register uint32_t __regProcessStackPointer __ASM(
"psp");
625 return(__regProcessStackPointer);
634__STATIC_INLINE
void __set_PSP(uint32_t topOfProcStack)
636 register uint32_t __regProcessStackPointer __ASM(
"psp");
637 __regProcessStackPointer = topOfProcStack;
648 register uint32_t __regMainStackPointer __ASM(
"msp");
649 return(__regMainStackPointer);
658__STATIC_INLINE
void __set_MSP(uint32_t topOfMainStack)
660 register uint32_t __regMainStackPointer __ASM(
"msp");
661 __regMainStackPointer = topOfMainStack;
672 register uint32_t __regPriMask __ASM(
"primask");
673 return(__regPriMask);
684 register uint32_t __regPriMask __ASM(
"primask");
685 __regPriMask = (priMask);
689#if ((defined (__ARM_ARCH_7M__ ) && (__ARM_ARCH_7M__ == 1)) || \
690 (defined (__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1)) )
697#define __enable_fault_irq __enable_fiq
705#define __disable_fault_irq __disable_fiq
713__STATIC_INLINE uint32_t __get_BASEPRI(
void)
715 register uint32_t __regBasePri __ASM(
"basepri");
716 return(__regBasePri);
725__STATIC_INLINE
void __set_BASEPRI(uint32_t basePri)
727 register uint32_t __regBasePri __ASM(
"basepri");
728 __regBasePri = (basePri & 0xFFU);
738__STATIC_INLINE
void __set_BASEPRI_MAX(uint32_t basePri)
740 register uint32_t __regBasePriMax __ASM(
"basepri_max");
741 __regBasePriMax = (basePri & 0xFFU);
750__STATIC_INLINE uint32_t __get_FAULTMASK(
void)
752 register uint32_t __regFaultMask __ASM(
"faultmask");
753 return(__regFaultMask);
762__STATIC_INLINE
void __set_FAULTMASK(uint32_t faultMask)
764 register uint32_t __regFaultMask __ASM(
"faultmask");
765 __regFaultMask = (faultMask & (uint32_t)1U);
779#if ((defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
780 (defined (__FPU_USED ) && (__FPU_USED == 1U)) )
781 register uint32_t __regfpscr __ASM(
"fpscr");
796#if ((defined (__FPU_PRESENT) && (__FPU_PRESENT == 1U)) && \
797 (defined (__FPU_USED ) && (__FPU_USED == 1U)) )
798 register uint32_t __regfpscr __ASM(
"fpscr");
799 __regfpscr = (fpscr);
815#if ((defined (__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1)) )
817#define __SADD8 __sadd8
818#define __QADD8 __qadd8
819#define __SHADD8 __shadd8
820#define __UADD8 __uadd8
821#define __UQADD8 __uqadd8
822#define __UHADD8 __uhadd8
823#define __SSUB8 __ssub8
824#define __QSUB8 __qsub8
825#define __SHSUB8 __shsub8
826#define __USUB8 __usub8
827#define __UQSUB8 __uqsub8
828#define __UHSUB8 __uhsub8
829#define __SADD16 __sadd16
830#define __QADD16 __qadd16
831#define __SHADD16 __shadd16
832#define __UADD16 __uadd16
833#define __UQADD16 __uqadd16
834#define __UHADD16 __uhadd16
835#define __SSUB16 __ssub16
836#define __QSUB16 __qsub16
837#define __SHSUB16 __shsub16
838#define __USUB16 __usub16
839#define __UQSUB16 __uqsub16
840#define __UHSUB16 __uhsub16
843#define __SHASX __shasx
845#define __UQASX __uqasx
846#define __UHASX __uhasx
849#define __SHSAX __shsax
851#define __UQSAX __uqsax
852#define __UHSAX __uhsax
853#define __USAD8 __usad8
854#define __USADA8 __usada8
855#define __SSAT16 __ssat16
856#define __USAT16 __usat16
857#define __UXTB16 __uxtb16
858#define __UXTAB16 __uxtab16
859#define __SXTB16 __sxtb16
860#define __SXTAB16 __sxtab16
861#define __SMUAD __smuad
862#define __SMUADX __smuadx
863#define __SMLAD __smlad
864#define __SMLADX __smladx
865#define __SMLALD __smlald
866#define __SMLALDX __smlaldx
867#define __SMUSD __smusd
868#define __SMUSDX __smusdx
869#define __SMLSD __smlsd
870#define __SMLSDX __smlsdx
871#define __SMLSLD __smlsld
872#define __SMLSLDX __smlsldx
877#define __PKHBT(ARG1,ARG2,ARG3) ( ((((uint32_t)(ARG1)) ) & 0x0000FFFFUL) | \
878 ((((uint32_t)(ARG2)) << (ARG3)) & 0xFFFF0000UL) )
880#define __PKHTB(ARG1,ARG2,ARG3) ( ((((uint32_t)(ARG1)) ) & 0xFFFF0000UL) | \
881 ((((uint32_t)(ARG2)) >> (ARG3)) & 0x0000FFFFUL) )
883#define __SMMLA(ARG1,ARG2,ARG3) ( (int32_t)((((int64_t)(ARG1) * (ARG2)) + \
884 ((int64_t)(ARG3) << 32U) ) >> 32U))
886#define __SXTB16_RORn(ARG1, ARG2) __SXTB16(__ROR(ARG1, ARG2))
888#define __SXTAB16_RORn(ARG1, ARG2, ARG3) __SXTAB16(ARG1, __ROR(ARG2, ARG3))
#define __ISB()
Instruction Synchronization Barrier.
__STATIC_FORCEINLINE int32_t __SSAT(int32_t val, uint32_t sat)
Signed Saturate.
__STATIC_FORCEINLINE uint32_t __USAT(int32_t val, uint32_t sat)
Unsigned Saturate.
#define __RBIT
Reverse bit order of value.
#define __REV16(value)
Reverse byte order (16 bit)
#define __REVSH(value)
Reverse byte order (16 bit)
__STATIC_INLINE void __set_CONTROL(uint32_t control)
Set Control Register.
__STATIC_INLINE void __set_MSP(uint32_t topOfMainStack)
Set Main Stack Pointer.
__STATIC_INLINE void __set_PSP(uint32_t topOfProcStack)
Set Process Stack Pointer.
__STATIC_INLINE uint32_t __get_PRIMASK(void)
Get Priority Mask.
__STATIC_INLINE uint32_t __get_MSP(void)
Get Main Stack Pointer.
__STATIC_INLINE uint32_t __get_FPSCR(void)
Get FPSCR.
__STATIC_INLINE uint32_t __get_CONTROL(void)
Enable IRQ Interrupts.
__STATIC_INLINE uint32_t __get_PSP(void)
Get Process Stack Pointer.
__STATIC_INLINE uint32_t __get_xPSR(void)
Get xPSR Register.
#define __set_FPSCR(fpscr)
Set FPSCR.
__STATIC_INLINE uint32_t __get_APSR(void)
Get APSR Register.
__STATIC_INLINE uint32_t __get_IPSR(void)
Get IPSR Register.
__STATIC_INLINE void __set_PRIMASK(uint32_t priMask)
Set Priority Mask.
void __attribute__((noreturn))(*rom_reset_usb_boot_fn)(uint32_t
Reboot the device into BOOTSEL mode.