Home
last modified time | relevance | path

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

/trusted-firmware-a-3.7.0/include/arch/aarch64/
Dsmccc_helpers.h33 #define SMC_RET0(_h) { \ argument
34 return (uint64_t) (_h); \
36 #define SMC_RET1(_h, _x0) { \ argument
37 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X0), (_x0)); \
38 SMC_RET0(_h); \
40 #define SMC_RET2(_h, _x0, _x1) { \ argument
41 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X1), (_x1)); \
42 SMC_RET1(_h, (_x0)); \
44 #define SMC_RET3(_h, _x0, _x1, _x2) { \ argument
45 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X2), (_x2)); \
[all …]
/trusted-firmware-a-3.7.0/include/arch/aarch32/
Dsmccc_helpers.h114 #define SMC_RET0(_h) { \ argument
115 return (uintptr_t)(_h); \
117 #define SMC_RET1(_h, _r0) { \ argument
118 ((smc_ctx_t *)(_h))->r0 = (_r0); \
119 SMC_RET0(_h); \
121 #define SMC_RET2(_h, _r0, _r1) { \ argument
122 ((smc_ctx_t *)(_h))->r1 = (_r1); \
123 SMC_RET1(_h, (_r0)); \
125 #define SMC_RET3(_h, _r0, _r1, _r2) { \ argument
126 ((smc_ctx_t *)(_h))->r2 = (_r2); \
[all …]
/trusted-firmware-a-3.7.0/include/lib/
Dsmccc.h216 #define SMC_UUID_RET(_h, _uuid) \ argument