Home
last modified time | relevance | path

Searched refs:_op (Results 1 – 3 of 3) sorted by relevance

/rk3399_ARM-atf/include/arch/aarch32/
H A Darch_helpers.h111 #define _DEFINE_TLBIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
112 static inline void tlbi##_op(void) \
118 #define _DEFINE_BPIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
119 static inline void bpi##_op(void) \
125 #define _DEFINE_TLBIOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
126 static inline void tlbi##_op(u_register_t v) \
132 #define DEFINE_TLBIOP_FUNC(_op, ...) \ argument
133 _DEFINE_TLBIOP_FUNC(_op, __VA_ARGS__)
136 #define DEFINE_TLBIOP_PARAM_FUNC(_op, ...) \ argument
137 _DEFINE_TLBIOP_PARAM_FUNC(_op, __VA_ARGS__)
[all …]
/rk3399_ARM-atf/lib/aarch64/
H A Dcache_helpers.S216 .macro dcsw_loop _op argument
220 loop2_\_op:
223 loop3_\_op:
225 dc \_op, x11
227 b.hs loop3_\_op
230 b.hs loop2_\_op
/rk3399_ARM-atf/include/arch/aarch64/
H A Darch_helpers.h83 #define DEFINE_SYSOP_FUNC(_op) \ argument
84 static inline void _op(void) \
86 __asm__ (#_op); \
90 #define DEFINE_SYSOP_PARAM_FUNC(_op) \ argument
91 static inline void _op(uint64_t v) \
93 __asm__ (#_op " %0" : : "r" (v)); \
97 #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \ argument
98 static inline void _op ## _type(void) \
100 __asm__ (#_op " " #_type : : : "memory"); \
104 #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \ argument
[all …]