blob: 920f2943e4ec483a89287faebce264501d5e2128 [file] [log] [blame]
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +00001/*
2 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef SMCCC_HELPERS_H
8#define SMCCC_HELPERS_H
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +00009
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <lib/smccc.h>
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000011
Achin Gupta6b4ec242021-10-04 20:13:36 +010012/* Definitions to help the assembler access the SMC/ERET args structure */
13#define SMC_ARGS_SIZE 0x40
14#define SMC_ARG0 0x0
15#define SMC_ARG1 0x8
16#define SMC_ARG2 0x10
17#define SMC_ARG3 0x18
18#define SMC_ARG4 0x20
19#define SMC_ARG5 0x28
20#define SMC_ARG6 0x30
21#define SMC_ARG7 0x38
22#define SMC_ARGS_END 0x40
23
Julius Werner53456fc2019-07-09 13:49:11 -070024#ifndef __ASSEMBLER__
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000025
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +010026#include <stdbool.h>
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000027
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000028#include <context.h>
29
Achin Gupta6b4ec242021-10-04 20:13:36 +010030#include <platform_def.h> /* For CACHE_WRITEBACK_GRANULE */
31
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000032/* Convenience macros to return from SMC handler */
33#define SMC_RET0(_h) { \
34 return (uint64_t) (_h); \
35}
36#define SMC_RET1(_h, _x0) { \
37 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X0), (_x0)); \
38 SMC_RET0(_h); \
39}
40#define SMC_RET2(_h, _x0, _x1) { \
41 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X1), (_x1)); \
42 SMC_RET1(_h, (_x0)); \
43}
44#define SMC_RET3(_h, _x0, _x1, _x2) { \
45 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X2), (_x2)); \
46 SMC_RET2(_h, (_x0), (_x1)); \
47}
48#define SMC_RET4(_h, _x0, _x1, _x2, _x3) { \
49 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X3), (_x3)); \
50 SMC_RET3(_h, (_x0), (_x1), (_x2)); \
51}
52#define SMC_RET5(_h, _x0, _x1, _x2, _x3, _x4) { \
53 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X4), (_x4)); \
54 SMC_RET4(_h, (_x0), (_x1), (_x2), (_x3)); \
55}
56#define SMC_RET6(_h, _x0, _x1, _x2, _x3, _x4, _x5) { \
57 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X5), (_x5)); \
58 SMC_RET5(_h, (_x0), (_x1), (_x2), (_x3), (_x4)); \
59}
60#define SMC_RET7(_h, _x0, _x1, _x2, _x3, _x4, _x5, _x6) { \
61 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X6), (_x6)); \
62 SMC_RET6(_h, (_x0), (_x1), (_x2), (_x3), (_x4), (_x5)); \
63}
64#define SMC_RET8(_h, _x0, _x1, _x2, _x3, _x4, _x5, _x6, _x7) { \
65 write_ctx_reg((get_gpregs_ctx(_h)), (CTX_GPREG_X7), (_x7)); \
66 SMC_RET7(_h, (_x0), (_x1), (_x2), (_x3), (_x4), (_x5), (_x6)); \
67}
68
69/*
70 * Convenience macros to access general purpose registers using handle provided
71 * to SMC handler. These take the offset values defined in context.h
72 */
73#define SMC_GET_GP(_h, _g) \
74 read_ctx_reg((get_gpregs_ctx(_h)), (_g))
75#define SMC_SET_GP(_h, _g, _v) \
76 write_ctx_reg((get_gpregs_ctx(_h)), (_g), (_v))
77
78/*
79 * Convenience macros to access EL3 context registers using handle provided to
80 * SMC handler. These take the offset values defined in context.h
81 */
82#define SMC_GET_EL3(_h, _e) \
83 read_ctx_reg((get_el3state_ctx(_h)), (_e))
84#define SMC_SET_EL3(_h, _e, _v) \
85 write_ctx_reg((get_el3state_ctx(_h)), (_e), (_v))
86
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000087/*
88 * Helper macro to retrieve the SMC parameters from cpu_context_t.
89 */
90#define get_smc_params_from_ctx(_hdl, _x1, _x2, _x3, _x4) \
91 do { \
92 const gp_regs_t *regs = get_gpregs_ctx(_hdl); \
93 _x1 = read_ctx_reg(regs, CTX_GPREG_X1); \
94 _x2 = read_ctx_reg(regs, CTX_GPREG_X2); \
95 _x3 = read_ctx_reg(regs, CTX_GPREG_X3); \
96 _x4 = read_ctx_reg(regs, CTX_GPREG_X4); \
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +010097 } while (false)
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000098
Achin Gupta6b4ec242021-10-04 20:13:36 +010099typedef struct {
100 uint64_t _regs[SMC_ARGS_END >> 3];
101} __aligned(CACHE_WRITEBACK_GRANULE) smc_args_t;
102
103/*
104 * Ensure that the assembler's view of the size of the tsp_args is the
105 * same as the compilers.
106 */
107CASSERT(sizeof(smc_args_t) == SMC_ARGS_SIZE, assert_sp_args_size_mismatch);
108
109static inline smc_args_t smc_helper(uint32_t func, uint64_t arg0,
110 uint64_t arg1, uint64_t arg2,
111 uint64_t arg3, uint64_t arg4,
112 uint64_t arg5, uint64_t arg6)
113{
114 smc_args_t ret_args = {0};
115
116 register uint64_t r0 __asm__("x0") = func;
117 register uint64_t r1 __asm__("x1") = arg0;
118 register uint64_t r2 __asm__("x2") = arg1;
119 register uint64_t r3 __asm__("x3") = arg2;
120 register uint64_t r4 __asm__("x4") = arg3;
121 register uint64_t r5 __asm__("x5") = arg4;
122 register uint64_t r6 __asm__("x6") = arg5;
123 register uint64_t r7 __asm__("x7") = arg6;
124
125 /* Output registers, also used as inputs ('+' constraint). */
126 __asm__ volatile("smc #0"
127 : "+r"(r0), "+r"(r1), "+r"(r2), "+r"(r3), "+r"(r4),
128 "+r"(r5), "+r"(r6), "+r"(r7));
129
130 ret_args._regs[0] = r0;
131 ret_args._regs[1] = r1;
132 ret_args._regs[2] = r2;
133 ret_args._regs[3] = r3;
134 ret_args._regs[4] = r4;
135 ret_args._regs[5] = r5;
136 ret_args._regs[6] = r6;
137 ret_args._regs[7] = r7;
138
139 return ret_args;
140}
141
Julius Werner53456fc2019-07-09 13:49:11 -0700142#endif /*__ASSEMBLER__*/
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +0000143
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000144#endif /* SMCCC_HELPERS_H */