runtime_svc.c 5.5 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
#include <assert.h>
8
#include <debug.h>
9
#include <errno.h>
10
#include <runtime_svc.h>
11
#include <string.h>
12
13

/*******************************************************************************
Achin Gupta's avatar
Achin Gupta committed
14
15
16
17
18
19
20
 * The 'rt_svc_descs' array holds the runtime service descriptors exported by
 * services by placing them in the 'rt_svc_descs' linker section.
 * The 'rt_svc_descs_indices' array holds the index of a descriptor in the
 * 'rt_svc_descs' array. When an SMC arrives, the OEN[29:24] bits and the call
 * type[31] bit in the function id are combined to get an index into the
 * 'rt_svc_descs_indices' array. This gives the index of the descriptor in the
 * 'rt_svc_descs' array which contains the SMC handler.
21
 ******************************************************************************/
Achin Gupta's avatar
Achin Gupta committed
22
23
uint8_t rt_svc_descs_indices[MAX_RT_SVCS];

24
25
26
#define RT_SVC_DECS_NUM		((RT_SVC_DESCS_END - RT_SVC_DESCS_START)\
					/ sizeof(rt_svc_desc_t))

27
/*******************************************************************************
28
29
 * Function to invoke the registered `handle` corresponding to the smc_fid in
 * AArch32 mode.
30
 ******************************************************************************/
31
#if SMCCC_MAJOR_VERSION == 1
32
33
34
35
36
37
uintptr_t handle_runtime_svc(uint32_t smc_fid,
			     void *cookie,
			     void *handle,
			     unsigned int flags)
{
	u_register_t x1, x2, x3, x4;
38
	unsigned int index;
39
	unsigned int idx;
40
	const rt_svc_desc_t *rt_svc_descs;
41

42
	assert(handle != NULL);
43
	idx = get_unique_oen_from_smc_fid(smc_fid);
44
	assert(idx < MAX_RT_SVCS);
45
46

	index = rt_svc_descs_indices[idx];
47
	if (index >= RT_SVC_DECS_NUM)
48
49
50
51
52
53
54
55
56
		SMC_RET1(handle, SMC_UNK);

	rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START;

	get_smc_params_from_ctx(handle, x1, x2, x3, x4);

	return rt_svc_descs[index].handle(smc_fid, x1, x2, x3, x4, cookie,
						handle, flags);
}
57
#endif /* SMCCC_MAJOR_VERSION */
58

Achin Gupta's avatar
Achin Gupta committed
59
60
61
/*******************************************************************************
 * Simple routine to sanity check a runtime service descriptor before using it
 ******************************************************************************/
62
static int32_t validate_rt_svc_desc(const rt_svc_desc_t *desc)
Achin Gupta's avatar
Achin Gupta committed
63
64
65
66
67
68
69
70
71
72
{
	if (desc == NULL)
		return -EINVAL;

	if (desc->start_oen > desc->end_oen)
		return -EINVAL;

	if (desc->end_oen >= OEN_LIMIT)
		return -EINVAL;

73
74
75
#if SMCCC_MAJOR_VERSION == 1
	if ((desc->call_type != SMC_TYPE_FAST) &&
	    (desc->call_type != SMC_TYPE_YIELD))
Achin Gupta's avatar
Achin Gupta committed
76
		return -EINVAL;
77
78
79
80
#elif SMCCC_MAJOR_VERSION == 2
	if (desc->is_vendor > 1U)
		return -EINVAL;
#endif /* SMCCC_MAJOR_VERSION */
Achin Gupta's avatar
Achin Gupta committed
81
82

	/* A runtime service having no init or handle function doesn't make sense */
83
	if ((desc->init == NULL) && (desc->handle == NULL))
Achin Gupta's avatar
Achin Gupta committed
84
85
86
87
88
89
90
91
92
93
94
95
		return -EINVAL;

	return 0;
}

/*******************************************************************************
 * This function calls the initialisation routine in the descriptor exported by
 * a runtime service. Once a descriptor has been validated, its start & end
 * owning entity numbers and the call type are combined to form a unique oen.
 * The unique oen is used as an index into the 'rt_svc_descs_indices' array.
 * The index of the runtime service descriptor is stored at this index.
 ******************************************************************************/
96
void __init runtime_svc_init(void)
97
{
98
	int rc = 0;
99
	uint8_t index, start_idx, end_idx;
100
	rt_svc_desc_t *rt_svc_descs;
101
102

	/* Assert the number of descriptors detected are less than maximum indices */
103
104
	assert((RT_SVC_DESCS_END >= RT_SVC_DESCS_START) &&
			(RT_SVC_DECS_NUM < MAX_RT_SVCS));
Achin Gupta's avatar
Achin Gupta committed
105
106

	/* If no runtime services are implemented then simply bail out */
107
	if (RT_SVC_DECS_NUM == 0U)
Achin Gupta's avatar
Achin Gupta committed
108
109
110
		return;

	/* Initialise internal variables to invalid state */
111
	(void)memset(rt_svc_descs_indices, -1, sizeof(rt_svc_descs_indices));
Achin Gupta's avatar
Achin Gupta committed
112

113
	rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START;
114
	for (index = 0U; index < RT_SVC_DECS_NUM; index++) {
115
		rt_svc_desc_t *service = &rt_svc_descs[index];
Achin Gupta's avatar
Achin Gupta committed
116
117
118
119
120
121

		/*
		 * An invalid descriptor is an error condition since it is
		 * difficult to predict the system behaviour in the absence
		 * of this service.
		 */
122
		rc = validate_rt_svc_desc(service);
123
		if (rc != 0) {
124
125
			ERROR("Invalid runtime service descriptor %p\n",
				(void *) service);
126
			panic();
Achin Gupta's avatar
Achin Gupta committed
127
128
		}

129
		/*
130
		 * The runtime service may have separate rt_svc_desc_t
131
		 * for its fast smc and yielding smc. Since the service itself
132
133
134
135
		 * need to be initialized only once, only one of them will have
		 * an initialisation routine defined. Call the initialisation
		 * routine for this runtime service, if it is defined.
		 */
136
		if (service->init != NULL) {
137
			rc = service->init();
138
			if (rc != 0) {
139
				ERROR("Error initializing runtime service %s\n",
140
						service->name);
141
142
				continue;
			}
Achin Gupta's avatar
Achin Gupta committed
143
		}
144
145
146
147
148
149
150

		/*
		 * Fill the indices corresponding to the start and end
		 * owning entity numbers with the index of the
		 * descriptor which will handle the SMCs for this owning
		 * entity range.
		 */
151
#if SMCCC_MAJOR_VERSION == 1
152
153
154
155
		start_idx = (uint8_t)get_unique_oen(service->start_oen,
						    service->call_type);
		end_idx = (uint8_t)get_unique_oen(service->end_oen,
						  service->call_type);
156
#elif SMCCC_MAJOR_VERSION == 2
157
158
159
160
		start_idx = (uint8_t)get_rt_desc_idx(service->start_oen,
						     service->is_vendor);
		end_idx = (uint8_t)get_rt_desc_idx(service->end_oen,
						   service->is_vendor);
161
162
#endif
		assert(start_idx <= end_idx);
163
		assert(end_idx < MAX_RT_SVCS);
164
165
		for (; start_idx <= end_idx; start_idx++)
			rt_svc_descs_indices[start_idx] = index;
Achin Gupta's avatar
Achin Gupta committed
166
	}
167
}