blob: 950a811d600af8be67f68f6769dff3bac461a28f [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
Raghu Krishnamurthy435f11c2022-12-25 13:02:00 -080078
79/* Useful for SMCCCv1.2 */
80#define SMC_RET18(_h, _x0, _x1, _x2, _x3, _x4, _x5, _x6, _x7, _x8, _x9, \
81 _x10, _x11, _x12, _x13, _x14, _x15, _x16, _x17) { \
82 SMC_SET_GP(_h, CTX_GPREG_X8, _x8); \
83 SMC_SET_GP(_h, CTX_GPREG_X9, _x9); \
84 SMC_SET_GP(_h, CTX_GPREG_X10, _x10); \
85 SMC_SET_GP(_h, CTX_GPREG_X11, _x11); \
86 SMC_SET_GP(_h, CTX_GPREG_X12, _x12); \
87 SMC_SET_GP(_h, CTX_GPREG_X13, _x13); \
88 SMC_SET_GP(_h, CTX_GPREG_X14, _x14); \
89 SMC_SET_GP(_h, CTX_GPREG_X15, _x15); \
90 SMC_SET_GP(_h, CTX_GPREG_X16, _x16); \
91 SMC_SET_GP(_h, CTX_GPREG_X17, _x17); \
92 SMC_RET8(_h, (_x0), (_x1), (_x2), (_x3), (_x4), (_x5), (_x6), \
93 (_x7)); \
94}
95
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000096/*
97 * Convenience macros to access EL3 context registers using handle provided to
98 * SMC handler. These take the offset values defined in context.h
99 */
100#define SMC_GET_EL3(_h, _e) \
101 read_ctx_reg((get_el3state_ctx(_h)), (_e))
102#define SMC_SET_EL3(_h, _e, _v) \
103 write_ctx_reg((get_el3state_ctx(_h)), (_e), (_v))
104
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +0000105/*
106 * Helper macro to retrieve the SMC parameters from cpu_context_t.
107 */
108#define get_smc_params_from_ctx(_hdl, _x1, _x2, _x3, _x4) \
109 do { \
110 const gp_regs_t *regs = get_gpregs_ctx(_hdl); \
111 _x1 = read_ctx_reg(regs, CTX_GPREG_X1); \
112 _x2 = read_ctx_reg(regs, CTX_GPREG_X2); \
113 _x3 = read_ctx_reg(regs, CTX_GPREG_X3); \
114 _x4 = read_ctx_reg(regs, CTX_GPREG_X4); \
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100115 } while (false)
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +0000116
Achin Gupta6b4ec242021-10-04 20:13:36 +0100117typedef struct {
118 uint64_t _regs[SMC_ARGS_END >> 3];
119} __aligned(CACHE_WRITEBACK_GRANULE) smc_args_t;
120
121/*
122 * Ensure that the assembler's view of the size of the tsp_args is the
123 * same as the compilers.
124 */
125CASSERT(sizeof(smc_args_t) == SMC_ARGS_SIZE, assert_sp_args_size_mismatch);
126
127static inline smc_args_t smc_helper(uint32_t func, uint64_t arg0,
128 uint64_t arg1, uint64_t arg2,
129 uint64_t arg3, uint64_t arg4,
130 uint64_t arg5, uint64_t arg6)
131{
132 smc_args_t ret_args = {0};
133
134 register uint64_t r0 __asm__("x0") = func;
135 register uint64_t r1 __asm__("x1") = arg0;
136 register uint64_t r2 __asm__("x2") = arg1;
137 register uint64_t r3 __asm__("x3") = arg2;
138 register uint64_t r4 __asm__("x4") = arg3;
139 register uint64_t r5 __asm__("x5") = arg4;
140 register uint64_t r6 __asm__("x6") = arg5;
141 register uint64_t r7 __asm__("x7") = arg6;
142
143 /* Output registers, also used as inputs ('+' constraint). */
144 __asm__ volatile("smc #0"
145 : "+r"(r0), "+r"(r1), "+r"(r2), "+r"(r3), "+r"(r4),
146 "+r"(r5), "+r"(r6), "+r"(r7));
147
148 ret_args._regs[0] = r0;
149 ret_args._regs[1] = r1;
150 ret_args._regs[2] = r2;
151 ret_args._regs[3] = r3;
152 ret_args._regs[4] = r4;
153 ret_args._regs[5] = r5;
154 ret_args._regs[6] = r6;
155 ret_args._regs[7] = r7;
156
157 return ret_args;
158}
159
Julius Werner53456fc2019-07-09 13:49:11 -0700160#endif /*__ASSEMBLER__*/
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +0000161
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000162#endif /* SMCCC_HELPERS_H */