runtime_svc.h 6.32 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
 */

7
8
#ifndef RUNTIME_SVC_H
#define RUNTIME_SVC_H
9

10
11
12
#include <common/bl_common.h>		/* to include exception types */
#include <lib/cassert.h>
#include <lib/utils_def.h>
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
13
#include <smccc_helpers.h>	/* to include SMCCC definitions */
14

15
/*******************************************************************************
16
 * Structure definition, typedefs & constants for the runtime service framework
17
18
 ******************************************************************************/

Achin Gupta's avatar
Achin Gupta committed
19
20
21
22
/*
 * Constants to allow the assembler access a runtime service
 * descriptor
 */
23
#ifdef AARCH32
24
25
26
#define RT_SVC_SIZE_LOG2	U(4)
#define RT_SVC_DESC_INIT	U(8)
#define RT_SVC_DESC_HANDLE	U(12)
27
#else
28
29
30
#define RT_SVC_SIZE_LOG2	U(5)
#define RT_SVC_DESC_INIT	U(16)
#define RT_SVC_DESC_HANDLE	U(24)
31
#endif /* AARCH32 */
32
#define SIZEOF_RT_SVC_DESC	(U(1) << RT_SVC_SIZE_LOG2)
33

Achin Gupta's avatar
Achin Gupta committed
34
35

/*
36
37
38
39
40
41
42
43
 * In SMCCC 1.X, the function identifier has 6 bits for the owning entity number
 * and a single bit for the type of smc call. When taken together, those values
 * limit the maximum number of runtime services to 128.
 *
 * In SMCCC 2.X the type bit is always 1 and there are only 4 OEN bits in the
 * compatibility namespace, so the total number of services is 16. The LSB of
 * namespace is also added to these 4 bits to make space for the vendor service
 * handler and so the total number of runtime services is 32.
Achin Gupta's avatar
Achin Gupta committed
44
 */
45
#if SMCCC_MAJOR_VERSION == 1
46
#define MAX_RT_SVCS		U(128)
47
#elif SMCCC_MAJOR_VERSION == 2
48
#define MAX_RT_SVCS		U(32)
49
#endif
Achin Gupta's avatar
Achin Gupta committed
50

51
52
#ifndef __ASSEMBLY__

Achin Gupta's avatar
Achin Gupta committed
53
/* Prototype for runtime service initializing function */
54
typedef int32_t (*rt_svc_init_t)(void);
Achin Gupta's avatar
Achin Gupta committed
55
56
57
58
59
60
61

/*
 * Prototype for runtime service SMC handler function. x0 (SMC Function ID) to
 * x4 are as passed by the caller. Rest of the arguments to SMC and the context
 * can be accessed using the handle pointer. The cookie parameter is reserved
 * for future use
 */
62
63
64
65
66
typedef uintptr_t (*rt_svc_handle_t)(uint32_t smc_fid,
				  u_register_t x1,
				  u_register_t x2,
				  u_register_t x3,
				  u_register_t x4,
Achin Gupta's avatar
Achin Gupta committed
67
68
				  void *cookie,
				  void *handle,
69
				  u_register_t flags);
70
typedef struct rt_svc_desc {
Achin Gupta's avatar
Achin Gupta committed
71
72
	uint8_t start_oen;
	uint8_t end_oen;
73
#if SMCCC_MAJOR_VERSION == 1
Achin Gupta's avatar
Achin Gupta committed
74
	uint8_t call_type;
75
76
77
#elif SMCCC_MAJOR_VERSION == 2
	uint8_t is_vendor;
#endif
Achin Gupta's avatar
Achin Gupta committed
78
	const char *name;
79
80
81
	rt_svc_init_t init;
	rt_svc_handle_t handle;
} rt_svc_desc_t;
Achin Gupta's avatar
Achin Gupta committed
82
83

/*
84
85
86
87
88
89
90
 * Convenience macros to declare a service descriptor
 */
#if SMCCC_MAJOR_VERSION == 1

#define DECLARE_RT_SVC(_name, _start, _end, _type, _setup, _smch)	\
	static const rt_svc_desc_t __svc_desc_ ## _name			\
		__section("rt_svc_descs") __used = {			\
91
92
93
			.start_oen = (_start),				\
			.end_oen = (_end),				\
			.call_type = (_type),				\
94
			.name = #_name,					\
95
96
			.init = (_setup),				\
			.handle = (_smch)				\
97
98
99
100
101
102
103
		}

#elif SMCCC_MAJOR_VERSION == 2

#define DECLARE_RT_SVC(_name, _start, _end, _type, _setup, _smch)	\
	static const rt_svc_desc_t __svc_desc_ ## _name			\
		__section("rt_svc_descs") __used = {			\
104
105
			.start_oen = (_start),				\
			.end_oen = (_end),				\
106
107
			.is_vendor = 0,					\
			.name = #_name,					\
108
109
			.init = (_setup),				\
			.handle = (_smch),				\
110
111
112
113
114
115
		};							\
	CASSERT((_type) == SMC_TYPE_FAST, rt_svc_type_check_ ## _name)

/*
 * The higher 16 entries of the runtime services are used for the vendor
 * specific descriptor.
Achin Gupta's avatar
Achin Gupta committed
116
 */
117
118
119
120
121
122
123
124
125
126
127
128
#define DECLARE_RT_SVC_VENDOR(_setup, _smch)				\
	static const rt_svc_desc_t __svc_desc_vendor			\
		__section("rt_svc_descs") __used = {			\
			.start_oen = 0,					\
			.end_oen = 15,					\
			.is_vendor = 1,					\
			.name = "vendor_rt_svc",			\
			.init = _setup,					\
			.handle = _smch,				\
		}

#endif /* SMCCC_MAJOR_VERSION */
129

Achin Gupta's avatar
Achin Gupta committed
130
131
132
133
134
135
/*
 * Compile time assertions related to the 'rt_svc_desc' structure to:
 * 1. ensure that the assembler and the compiler view of the size
 *    of the structure are the same.
 * 2. ensure that the assembler and the compiler see the initialisation
 *    routine at the same offset.
136
 * 3. ensure that the assembler and the compiler see the handler
Achin Gupta's avatar
Achin Gupta committed
137
138
 *    routine at the same offset.
 */
139
CASSERT((sizeof(rt_svc_desc_t) == SIZEOF_RT_SVC_DESC), \
Achin Gupta's avatar
Achin Gupta committed
140
	assert_sizeof_rt_svc_desc_mismatch);
141
CASSERT(RT_SVC_DESC_INIT == __builtin_offsetof(rt_svc_desc_t, init), \
Achin Gupta's avatar
Achin Gupta committed
142
	assert_rt_svc_desc_init_offset_mismatch);
143
CASSERT(RT_SVC_DESC_HANDLE == __builtin_offsetof(rt_svc_desc_t, handle), \
Achin Gupta's avatar
Achin Gupta committed
144
145
146
	assert_rt_svc_desc_handle_offset_mismatch);


147
#if SMCCC_MAJOR_VERSION == 1
Achin Gupta's avatar
Achin Gupta committed
148
/*
149
150
151
152
153
 * This function combines the call type and the owning entity number
 * corresponding to a runtime service to generate a unique owning entity number.
 * This unique oen is used to access an entry in the 'rt_svc_descs_indices'
 * array. The entry contains the index of the service descriptor in the
 * 'rt_svc_descs' array.
Achin Gupta's avatar
Achin Gupta committed
154
 */
155
156
157
158
159
static inline uint32_t get_unique_oen(uint32_t oen, uint32_t call_type)
{
	return ((call_type & FUNCID_TYPE_MASK) << FUNCID_OEN_WIDTH) |
		(oen & FUNCID_OEN_MASK);
}
160

161
/*
162
 * This function generates the unique owning entity number from the SMC Function
163
164
165
 * ID. This unique oen is used to access an entry in the 'rt_svc_descs_indices'
 * array to invoke the corresponding runtime service handler during SMC
 * handling.
166
 */
167
168
169
170
static inline uint32_t get_unique_oen_from_smc_fid(uint32_t fid)
{
	return get_unique_oen(GET_SMC_OEN(fid), GET_SMC_TYPE(fid));
}
171
172
173
174

#elif SMCCC_MAJOR_VERSION == 2

/*
175
 * This function combines the owning entity number corresponding to a runtime
176
177
178
179
 * service with one extra bit for the vendor namespace to generate an index into
 * the 'rt_svc_descs_indices' array. The entry contains the index of the service
 * descriptor in the 'rt_svc_descs' array.
 */
180
181
182
183
184
static inline uint32_t get_rt_desc_idx(uint32_t oen, uint32_t is_vendor)
{
	return ((is_vendor & 1U) << FUNCID_OEN_WIDTH) |
		(oen & FUNCID_OEN_MASK);
}
185
186

#endif
187

188
189
190
/*******************************************************************************
 * Function & variable prototypes
 ******************************************************************************/
191
void runtime_svc_init(void);
192
193
uintptr_t handle_runtime_svc(uint32_t smc_fid, void *cookie, void *handle,
						unsigned int flags);
194
195
IMPORT_SYM(uintptr_t, __RT_SVC_DESCS_START__,		RT_SVC_DESCS_START);
IMPORT_SYM(uintptr_t, __RT_SVC_DESCS_END__,		RT_SVC_DESCS_END);
196
197
void init_crash_reporting(void);

198
199
extern uint8_t rt_svc_descs_indices[MAX_RT_SVCS];

200
#endif /*__ASSEMBLY__*/
201
#endif /* RUNTIME_SVC_H */