blob: ac85fa3f2ef7b68e7b3e3ede8f38cbd26c6a9d23 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef __RUNTIME_SVC_H__
32#define __RUNTIME_SVC_H__
33#include <psci.h>
Dan Handleyf3c8f322014-04-17 17:29:58 +010034#include <cassert.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010035
36/*******************************************************************************
37 * Bit definitions inside the function id as per the SMC calling convention
38 ******************************************************************************/
39#define FUNCID_TYPE_SHIFT 31
40#define FUNCID_CC_SHIFT 30
Achin Gupta7421b462014-02-01 18:53:26 +000041#define FUNCID_OEN_SHIFT 24
Achin Gupta4f6ad662013-10-25 09:08:21 +010042#define FUNCID_NUM_SHIFT 0
43
44#define FUNCID_TYPE_MASK 0x1
45#define FUNCID_CC_MASK 0x1
Achin Gupta7421b462014-02-01 18:53:26 +000046#define FUNCID_OEN_MASK 0x3f
Achin Gupta4f6ad662013-10-25 09:08:21 +010047#define FUNCID_NUM_MASK 0xffff
48
Achin Gupta7421b462014-02-01 18:53:26 +000049#define FUNCID_TYPE_WIDTH 1
50#define FUNCID_CC_WIDTH 1
51#define FUNCID_OEN_WIDTH 6
52#define FUNCID_NUM_WIDTH 16
53
Achin Gupta4f6ad662013-10-25 09:08:21 +010054#define GET_SMC_CC(id) ((id >> FUNCID_CC_SHIFT) & \
55 FUNCID_CC_MASK)
56
57#define SMC_64 1
58#define SMC_32 0
59#define SMC_UNK 0xffffffff
Achin Gupta7421b462014-02-01 18:53:26 +000060#define SMC_TYPE_FAST 1
61#define SMC_TYPE_STD 0
62
63/*******************************************************************************
64 * Owning entity number definitions inside the function id as per the SMC
65 * calling convention
66 ******************************************************************************/
67#define OEN_ARM_START 0
68#define OEN_ARM_END 0
69#define OEN_CPU_START 1
70#define OEN_CPU_END 1
71#define OEN_SIP_START 2
72#define OEN_SIP_END 2
73#define OEN_OEM_START 3
74#define OEN_OEM_END 3
75#define OEN_STD_START 4 /* Standard Calls */
76#define OEN_STD_END 4
77#define OEN_TAP_START 48 /* Trusted Applications */
78#define OEN_TAP_END 49
79#define OEN_TOS_START 50 /* Trusted OS */
80#define OEN_TOS_END 63
81#define OEN_LIMIT 64
Achin Gupta4f6ad662013-10-25 09:08:21 +010082
83/*******************************************************************************
84 * Constants to indicate type of exception to the common exception handler.
85 ******************************************************************************/
86#define SYNC_EXCEPTION_SP_EL0 0x0
87#define IRQ_SP_EL0 0x1
88#define FIQ_SP_EL0 0x2
89#define SERROR_SP_EL0 0x3
90#define SYNC_EXCEPTION_SP_ELX 0x4
91#define IRQ_SP_ELX 0x5
92#define FIQ_SP_ELX 0x6
93#define SERROR_SP_ELX 0x7
94#define SYNC_EXCEPTION_AARCH64 0x8
95#define IRQ_AARCH64 0x9
96#define FIQ_AARCH64 0xa
97#define SERROR_AARCH64 0xb
98#define SYNC_EXCEPTION_AARCH32 0xc
99#define IRQ_AARCH32 0xd
100#define FIQ_AARCH32 0xe
101#define SERROR_AARCH32 0xf
102
Achin Gupta4a826dd2013-11-25 14:00:56 +0000103/*******************************************************************************
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000104 * Structure definition, typedefs & constants for the runtime service framework
Achin Gupta4a826dd2013-11-25 14:00:56 +0000105 ******************************************************************************/
Achin Gupta4a826dd2013-11-25 14:00:56 +0000106
Achin Gupta7421b462014-02-01 18:53:26 +0000107/*
108 * Constants to allow the assembler access a runtime service
109 * descriptor
110 */
Achin Gupta07f4e072014-02-02 12:02:23 +0000111#define RT_SVC_SIZE_LOG2 5
112#define SIZEOF_RT_SVC_DESC (1 << RT_SVC_SIZE_LOG2)
Achin Gupta7421b462014-02-01 18:53:26 +0000113#define RT_SVC_DESC_INIT 16
114#define RT_SVC_DESC_HANDLE 24
115
116/*
117 * The function identifier has 6 bits for the owning entity number and
118 * single bit for the type of smc call. When taken together these
119 * values limit the maximum number of runtime services to 128.
120 */
121#define MAX_RT_SVCS 128
122
Achin Gupta4f6ad662013-10-25 09:08:21 +0100123#ifndef __ASSEMBLY__
124
Achin Gupta07f4e072014-02-02 12:02:23 +0000125/* Various flags passed to SMC handlers */
126#define SMC_FROM_SECURE (0 << 0)
127#define SMC_FROM_NON_SECURE (1 << 0)
128
129#define is_caller_non_secure(_f) (!!(_f & SMC_FROM_NON_SECURE))
130#define is_caller_secure(_f) (!(is_caller_non_secure(_f)))
131
Achin Gupta7421b462014-02-01 18:53:26 +0000132/* Prototype for runtime service initializing function */
Dan Handleye2712bc2014-04-10 15:37:22 +0100133typedef int32_t (*rt_svc_init_t)(void);
Achin Gupta7421b462014-02-01 18:53:26 +0000134
135/* Convenience macros to return from SMC handler */
136#define SMC_RET1(_h, _x0) { \
137 write_ctx_reg(get_gpregs_ctx(_h), CTX_GPREG_X0, (_x0)); \
138 return _x0; \
139}
140#define SMC_RET2(_h, _x0, _x1) { \
141 write_ctx_reg(get_gpregs_ctx(_h), CTX_GPREG_X1, (_x1)); \
142 SMC_RET1(_h, (_x0)); \
143}
144#define SMC_RET3(_h, _x0, _x1, _x2) { \
145 write_ctx_reg(get_gpregs_ctx(_h), CTX_GPREG_X2, (_x2)); \
146 SMC_RET2(_h, (_x0), (_x1)); \
147}
148#define SMC_RET4(_h, _x0, _x1, _x2, _x3) { \
149 write_ctx_reg(get_gpregs_ctx(_h), CTX_GPREG_X3, (_x3)); \
150 SMC_RET3(_h, (_x0), (_x1), (_x2)); \
151}
152
153
154/*
155 * Convenience macros to access general purpose registers using handle provided
156 * to SMC handler. These takes the offset values defined in context.h
157 */
158#define SMC_GET_GP(_h, _g) \
159 read_ctx_reg(get_gpregs_ctx(_h), (_g));
160#define SMC_SET_GP(_h, _g, _v) \
161 write_ctx_reg(get_gpregs_ctx(_h), (_g), (_v));
162
163/*
164 * Convenience macros to access EL3 context registers using handle provided to
165 * SMC handler. These takes the offset values defined in context.h
166 */
167#define SMC_GET_EL3(_h, _e) \
168 read_ctx_reg(get_el3state_ctx(_h), (_e));
169#define SMC_SET_EL3(_h, _e, _v) \
170 write_ctx_reg(get_el3state_ctx(_h), (_e), (_v));
171
172/*
173 * Prototype for runtime service SMC handler function. x0 (SMC Function ID) to
174 * x4 are as passed by the caller. Rest of the arguments to SMC and the context
175 * can be accessed using the handle pointer. The cookie parameter is reserved
176 * for future use
177 */
Dan Handleye2712bc2014-04-10 15:37:22 +0100178typedef uint64_t (*rt_svc_handle_t)(uint32_t smc_fid,
Achin Gupta7421b462014-02-01 18:53:26 +0000179 uint64_t x1,
180 uint64_t x2,
181 uint64_t x3,
182 uint64_t x4,
183 void *cookie,
184 void *handle,
185 uint64_t flags);
Dan Handleye2712bc2014-04-10 15:37:22 +0100186typedef struct rt_svc_desc {
Achin Gupta7421b462014-02-01 18:53:26 +0000187 uint8_t start_oen;
188 uint8_t end_oen;
189 uint8_t call_type;
190 const char *name;
Dan Handleye2712bc2014-04-10 15:37:22 +0100191 rt_svc_init_t init;
192 rt_svc_handle_t handle;
193} rt_svc_desc_t;
Achin Gupta7421b462014-02-01 18:53:26 +0000194
195/*
196 * Convenience macro to declare a service descriptor
197 */
198#define DECLARE_RT_SVC(_name, _start, _end, _type, _setup, _smch) \
Dan Handleye2712bc2014-04-10 15:37:22 +0100199 static const rt_svc_desc_t __svc_desc_ ## _name \
Achin Gupta7421b462014-02-01 18:53:26 +0000200 __attribute__ ((section("rt_svc_descs"), used)) = { \
201 _start, \
202 _end, \
203 _type, \
204 #_name, \
205 _setup, \
206 _smch }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100207
Achin Gupta7421b462014-02-01 18:53:26 +0000208/*
209 * Compile time assertions related to the 'rt_svc_desc' structure to:
210 * 1. ensure that the assembler and the compiler view of the size
211 * of the structure are the same.
212 * 2. ensure that the assembler and the compiler see the initialisation
213 * routine at the same offset.
Achin Gupta07f4e072014-02-02 12:02:23 +0000214 * 3. ensure that the assembler and the compiler see the handler
Achin Gupta7421b462014-02-01 18:53:26 +0000215 * routine at the same offset.
216 */
Dan Handleye2712bc2014-04-10 15:37:22 +0100217CASSERT((sizeof(rt_svc_desc_t) == SIZEOF_RT_SVC_DESC), \
Achin Gupta7421b462014-02-01 18:53:26 +0000218 assert_sizeof_rt_svc_desc_mismatch);
Dan Handleye2712bc2014-04-10 15:37:22 +0100219CASSERT(RT_SVC_DESC_INIT == __builtin_offsetof(rt_svc_desc_t, init), \
Achin Gupta7421b462014-02-01 18:53:26 +0000220 assert_rt_svc_desc_init_offset_mismatch);
Dan Handleye2712bc2014-04-10 15:37:22 +0100221CASSERT(RT_SVC_DESC_HANDLE == __builtin_offsetof(rt_svc_desc_t, handle), \
Achin Gupta7421b462014-02-01 18:53:26 +0000222 assert_rt_svc_desc_handle_offset_mismatch);
223
224
225/*
226 * This macro combines the call type and the owning entity number corresponding
227 * to a runtime service to generate a unique owning entity number. This unique
228 * oen is used to access an entry in the 'rt_svc_descs_indices' array. The entry
229 * contains the index of the service descriptor in the 'rt_svc_descs' array.
230 */
231#define get_unique_oen(oen, call_type) ((oen & FUNCID_OEN_MASK) | \
232 ((call_type & FUNCID_TYPE_MASK) \
233 << FUNCID_OEN_WIDTH))
Achin Gupta4f6ad662013-10-25 09:08:21 +0100234
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000235
236/*
237 * Macro to define UUID for services. Apart from defining and initializing a
238 * uuid_t structure, this macro verifies that the first word of the defined UUID
239 * does not equal SMC_UNK. This is to ensure that the caller won't mistake the
240 * returned UUID in x0 for an invalid SMC error return
241 */
242#define DEFINE_SVC_UUID(_name, _tl, _tm, _th, _cl, _ch, \
243 _n0, _n1, _n2, _n3, _n4, _n5) \
244 CASSERT(_tl != SMC_UNK, invalid_svc_uuid);\
245 static const uuid_t _name = { \
246 _tl, _tm, _th, _cl, _ch, \
247 { _n0, _n1, _n2, _n3, _n4, _n5 } \
248 }
249
250/* Return a UUID in the SMC return registers */
251#define SMC_UUID_RET(_h, _uuid) \
252 SMC_RET4(handle, ((const uint32_t *) &(_uuid))[0], \
253 ((const uint32_t *) &(_uuid))[1], \
254 ((const uint32_t *) &(_uuid))[2], \
255 ((const uint32_t *) &(_uuid))[3])
256
Achin Gupta4f6ad662013-10-25 09:08:21 +0100257/*******************************************************************************
258 * Function & variable prototypes
259 ******************************************************************************/
Achin Gupta7421b462014-02-01 18:53:26 +0000260extern void runtime_svc_init();
261extern uint64_t __RT_SVC_DESCS_START__;
262extern uint64_t __RT_SVC_DESCS_END__;
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000263extern uint64_t get_exception_stack(uint64_t mpidr);
Dan Handleybcd60ba2014-04-17 18:53:42 +0100264extern void runtime_exceptions(void);
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000265extern void fault_handler(void *handle);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100266#endif /*__ASSEMBLY__*/
Achin Gupta4f6ad662013-10-25 09:08:21 +0100267#endif /* __RUNTIME_SVC_H__ */