/****************************************************************************** * * Copyright (C) 2014 - 2016 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * * ******************************************************************************/ /*****************************************************************************/ /** * * @file xpseudo_asm_gcc.h * * This header file contains macros for using inline assembler code. It is * written specifically for the GNU compiler. * *
* MODIFICATION HISTORY:
*
* Ver   Who      Date     Changes
* ----- -------- -------- -----------------------------------------------
* 5.00 	pkp		 05/21/14 First release
* 6.0   mus      07/27/16 Consolidated file for a53,a9 and r5 processors
* 
* ******************************************************************************/ #ifndef XPSEUDO_ASM_GCC_H /* prevent circular inclusions */ #define XPSEUDO_ASM_GCC_H /* by using protection macros */ /***************************** Include Files ********************************/ #include #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /************************** Constant Definitions ****************************/ /**************************** Type Definitions ******************************/ /***************** Macros (Inline Functions) Definitions ********************/ /* necessary for pre-processor */ #define stringify(s) tostring(s) #define tostring(s) #s #if defined (__aarch64__) /* pseudo assembler instructions */ #define mfcpsr() ({rt_uint32_t rval = 0U; \ asm volatile("mrs %0, DAIF" : "=r" (rval));\ rval;\ }) #define mtcpsr(v) __asm__ __volatile__ ("msr DAIF, %0" : : "r" (v)) #define cpsiei() //__asm__ __volatile__("cpsie i\n") #define cpsidi() //__asm__ __volatile__("cpsid i\n") #define cpsief() //__asm__ __volatile__("cpsie f\n") #define cpsidf() //__asm__ __volatile__("cpsid f\n") #define mtgpr(rn, v) /*__asm__ __volatile__(\ "mov r" stringify(rn) ", %0 \n"\ : : "r" (v)\ )*/ #define mfgpr(rn) /*({rt_uint32_t rval; \ __asm__ __volatile__(\ "mov %0,r" stringify(rn) "\n"\ : "=r" (rval)\ );\ rval;\ })*/ /* memory synchronization operations */ /* Instruction Synchronization Barrier */ #define isb() __asm__ __volatile__ ("isb sy") /* Data Synchronization Barrier */ #define dsb() __asm__ __volatile__("dsb sy") /* Data Memory Barrier */ #define dmb() __asm__ __volatile__("dmb sy") /* Memory Operations */ #define ldr(adr) ({u64 rval; \ __asm__ __volatile__(\ "ldr %0,[%1]"\ : "=r" (rval) : "r" (adr)\ );\ rval;\ }) #define mfelrel3() ({u64 rval = 0U; \ asm volatile("mrs %0, ELR_EL3" : "=r" (rval));\ rval;\ }) #define mtelrel3(v) __asm__ __volatile__ ("msr ELR_EL3, %0" : : "r" (v)) #else /* pseudo assembler instructions */ #define mfcpsr() ({rt_uint32_t rval = 0U; \ __asm__ __volatile__(\ "mrs %0, cpsr\n"\ : "=r" (rval)\ );\ rval;\ }) #define mtcpsr(v) __asm__ __volatile__(\ "msr cpsr,%0\n"\ : : "r" (v)\ ) #define cpsiei() __asm__ __volatile__("cpsie i\n") #define cpsidi() __asm__ __volatile__("cpsid i\n") #define cpsief() __asm__ __volatile__("cpsie f\n") #define cpsidf() __asm__ __volatile__("cpsid f\n") #define mtgpr(rn, v) __asm__ __volatile__(\ "mov r" stringify(rn) ", %0 \n"\ : : "r" (v)\ ) #define mfgpr(rn) ({rt_uint32_t rval; \ __asm__ __volatile__(\ "mov %0,r" stringify(rn) "\n"\ : "=r" (rval)\ );\ rval;\ }) /* memory synchronization operations */ /* Instruction Synchronization Barrier */ #define isb() __asm__ __volatile__ ("isb" : : : "memory") /* Data Synchronization Barrier */ #define dsb() __asm__ __volatile__ ("dsb" : : : "memory") /* Data Memory Barrier */ #define dmb() __asm__ __volatile__ ("dmb" : : : "memory") /* Memory Operations */ #define ldr(adr) ({rt_uint32_t rval; \ __asm__ __volatile__(\ "ldr %0,[%1]"\ : "=r" (rval) : "r" (adr)\ );\ rval;\ }) #endif #define ldrb(adr) ({rt_uint8_t rval; \ __asm__ __volatile__(\ "ldrb %0,[%1]"\ : "=r" (rval) : "r" (adr)\ );\ rval;\ }) #define str(adr, val) __asm__ __volatile__(\ "str %0,[%1]\n"\ : : "r" (val), "r" (adr)\ ) #define strb(adr, val) __asm__ __volatile__(\ "strb %0,[%1]\n"\ : : "r" (val), "r" (adr)\ ) /* Count leading zeroes (clz) */ #define clz(arg) ({rt_uint8_t rval; \ __asm__ __volatile__(\ "clz %0,%1"\ : "=r" (rval) : "r" (arg)\ );\ rval;\ }) #if defined (__aarch64__) #define mtcpdc(reg,val) __asm__ __volatile__("dc " #reg ",%0" : : "r" (val)) #define mtcpic(reg,val) __asm__ __volatile__("ic " #reg ",%0" : : "r" (val)) #define mtcpicall(reg) __asm__ __volatile__("ic " #reg) #define mtcptlbi(reg) __asm__ __volatile__("tlbi " #reg) #define mtcpat(reg,val) __asm__ __volatile__("at " #reg ",%0" : : "r" (val)) /* CP15 operations */ #define mfcp(reg) ({u64 rval = 0U;\ __asm__ __volatile__("mrs %0, " #reg : "=r" (rval));\ rval;\ }) #define mtcp(reg,val) __asm__ __volatile__("msr " #reg ",%0" : : "r" (val)) #else /* CP15 operations */ #define mtcp(rn, v) __asm__ __volatile__(\ "mcr " rn "\n"\ : : "r" (v)\ ); #define mfcp(rn) ({rt_uint32_t rval = 0U; \ __asm__ __volatile__(\ "mrc " rn "\n"\ : "=r" (rval)\ );\ rval;\ }) #endif /************************** Variable Definitions ****************************/ /************************** Function Prototypes *****************************/ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* XPSEUDO_ASM_GCC_H */