blob: ad564f566b7a31a87b3ba6816e13e018f043a04e [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Joel Hutton5cc3bc82018-03-21 11:40:57 +00002 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Soby Mathewa0fedc42016-06-16 14:52:04 +01007#include <assert.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +01008#include <debug.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +01009#include <errno.h>
Achin Guptac8afc782013-11-25 18:45:02 +000010#include <runtime_svc.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010011#include <string.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010012
13/*******************************************************************************
Achin Gupta7421b462014-02-01 18:53:26 +000014 * The 'rt_svc_descs' array holds the runtime service descriptors exported by
15 * services by placing them in the 'rt_svc_descs' linker section.
16 * The 'rt_svc_descs_indices' array holds the index of a descriptor in the
17 * 'rt_svc_descs' array. When an SMC arrives, the OEN[29:24] bits and the call
18 * type[31] bit in the function id are combined to get an index into the
19 * 'rt_svc_descs_indices' array. This gives the index of the descriptor in the
20 * 'rt_svc_descs' array which contains the SMC handler.
Achin Gupta4f6ad662013-10-25 09:08:21 +010021 ******************************************************************************/
Achin Gupta7421b462014-02-01 18:53:26 +000022uint8_t rt_svc_descs_indices[MAX_RT_SVCS];
Achin Gupta7421b462014-02-01 18:53:26 +000023
Soby Mathewa0fedc42016-06-16 14:52:04 +010024#define RT_SVC_DECS_NUM ((RT_SVC_DESCS_END - RT_SVC_DESCS_START)\
25 / sizeof(rt_svc_desc_t))
26
Achin Gupta7421b462014-02-01 18:53:26 +000027/*******************************************************************************
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010028 * Function to invoke the registered `handle` corresponding to the smc_fid in
29 * AArch32 mode.
Soby Mathewa9482df2016-05-05 12:49:09 +010030 ******************************************************************************/
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010031#if SMCCC_MAJOR_VERSION == 1
Soby Mathewa9482df2016-05-05 12:49:09 +010032uintptr_t handle_runtime_svc(uint32_t smc_fid,
33 void *cookie,
34 void *handle,
35 unsigned int flags)
36{
37 u_register_t x1, x2, x3, x4;
Varun Wadekar66231d12017-06-07 09:57:42 -070038 int index;
39 unsigned int idx;
Dimitris Papastamos9576baa2018-06-08 13:17:26 +010040 const rt_svc_desc_t *rt_svc_descs;
Soby Mathewa9482df2016-05-05 12:49:09 +010041
42 assert(handle);
43 idx = get_unique_oen_from_smc_fid(smc_fid);
Varun Wadekar66231d12017-06-07 09:57:42 -070044 assert(idx < MAX_RT_SVCS);
Soby Mathewa9482df2016-05-05 12:49:09 +010045
46 index = rt_svc_descs_indices[idx];
Varun Wadekar66231d12017-06-07 09:57:42 -070047 if (index < 0 || index >= (int)RT_SVC_DECS_NUM)
Soby Mathewa9482df2016-05-05 12:49:09 +010048 SMC_RET1(handle, SMC_UNK);
49
50 rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START;
51
52 get_smc_params_from_ctx(handle, x1, x2, x3, x4);
53
54 return rt_svc_descs[index].handle(smc_fid, x1, x2, x3, x4, cookie,
55 handle, flags);
56}
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010057#endif /* SMCCC_MAJOR_VERSION */
Soby Mathewa9482df2016-05-05 12:49:09 +010058
59/*******************************************************************************
Achin Gupta7421b462014-02-01 18:53:26 +000060 * Simple routine to sanity check a runtime service descriptor before using it
61 ******************************************************************************/
Sandrine Bailleux47110582016-06-28 16:44:28 +010062static int32_t validate_rt_svc_desc(const rt_svc_desc_t *desc)
Achin Gupta4f6ad662013-10-25 09:08:21 +010063{
Achin Gupta7421b462014-02-01 18:53:26 +000064 if (desc == NULL)
65 return -EINVAL;
66
67 if (desc->start_oen > desc->end_oen)
68 return -EINVAL;
69
70 if (desc->end_oen >= OEN_LIMIT)
71 return -EINVAL;
72
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010073#if SMCCC_MAJOR_VERSION == 1
74 if ((desc->call_type != SMC_TYPE_FAST) &&
75 (desc->call_type != SMC_TYPE_YIELD))
Achin Gupta7421b462014-02-01 18:53:26 +000076 return -EINVAL;
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010077#elif SMCCC_MAJOR_VERSION == 2
78 if (desc->is_vendor > 1U)
79 return -EINVAL;
80#endif /* SMCCC_MAJOR_VERSION */
Achin Gupta7421b462014-02-01 18:53:26 +000081
82 /* A runtime service having no init or handle function doesn't make sense */
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010083 if ((desc->init == NULL) && (desc->handle == NULL))
Achin Gupta7421b462014-02-01 18:53:26 +000084 return -EINVAL;
85
86 return 0;
87}
88
89/*******************************************************************************
90 * This function calls the initialisation routine in the descriptor exported by
91 * a runtime service. Once a descriptor has been validated, its start & end
92 * owning entity numbers and the call type are combined to form a unique oen.
93 * The unique oen is used as an index into the 'rt_svc_descs_indices' array.
94 * The index of the runtime service descriptor is stored at this index.
95 ******************************************************************************/
Juan Castillo2d552402014-06-13 17:05:10 +010096void runtime_svc_init(void)
Achin Gupta7421b462014-02-01 18:53:26 +000097{
Varun Wadekar66231d12017-06-07 09:57:42 -070098 int rc = 0;
99 unsigned int index, start_idx, end_idx;
Daniel Boulby278d4022018-06-27 16:18:48 +0100100 rt_svc_desc_t *rt_svc_descs;
Soby Mathewa0fedc42016-06-16 14:52:04 +0100101
102 /* Assert the number of descriptors detected are less than maximum indices */
Soby Mathewff1c2292016-07-26 16:09:44 +0100103 assert((RT_SVC_DESCS_END >= RT_SVC_DESCS_START) &&
104 (RT_SVC_DECS_NUM < MAX_RT_SVCS));
Achin Gupta7421b462014-02-01 18:53:26 +0000105
106 /* If no runtime services are implemented then simply bail out */
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100107 if (RT_SVC_DECS_NUM == 0U)
Achin Gupta7421b462014-02-01 18:53:26 +0000108 return;
109
110 /* Initialise internal variables to invalid state */
111 memset(rt_svc_descs_indices, -1, sizeof(rt_svc_descs_indices));
112
Dan Handleye2712bc2014-04-10 15:37:22 +0100113 rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START;
Soby Mathewa0fedc42016-06-16 14:52:04 +0100114 for (index = 0; index < RT_SVC_DECS_NUM; index++) {
Sandrine Bailleux47110582016-06-28 16:44:28 +0100115 rt_svc_desc_t *service = &rt_svc_descs[index];
Achin Gupta7421b462014-02-01 18:53:26 +0000116
117 /*
118 * An invalid descriptor is an error condition since it is
119 * difficult to predict the system behaviour in the absence
120 * of this service.
121 */
Sandrine Bailleux47110582016-06-28 16:44:28 +0100122 rc = validate_rt_svc_desc(service);
Achin Gupta7421b462014-02-01 18:53:26 +0000123 if (rc) {
Sandrine Bailleux7304f452016-06-28 16:48:30 +0100124 ERROR("Invalid runtime service descriptor %p\n",
125 (void *) service);
Sandrine Bailleux47110582016-06-28 16:44:28 +0100126 panic();
Achin Gupta7421b462014-02-01 18:53:26 +0000127 }
128
Soby Mathew9f71f702014-05-09 20:49:17 +0100129 /*
Sandrine Bailleuxf4119ec2015-12-17 13:58:58 +0000130 * The runtime service may have separate rt_svc_desc_t
David Cunado28f69ab2017-04-05 11:34:03 +0100131 * for its fast smc and yielding smc. Since the service itself
Soby Mathew9f71f702014-05-09 20:49:17 +0100132 * need to be initialized only once, only one of them will have
133 * an initialisation routine defined. Call the initialisation
134 * routine for this runtime service, if it is defined.
135 */
Sandrine Bailleux47110582016-06-28 16:44:28 +0100136 if (service->init) {
137 rc = service->init();
Soby Mathew9f71f702014-05-09 20:49:17 +0100138 if (rc) {
139 ERROR("Error initializing runtime service %s\n",
Sandrine Bailleux47110582016-06-28 16:44:28 +0100140 service->name);
Soby Mathew9f71f702014-05-09 20:49:17 +0100141 continue;
142 }
Achin Gupta7421b462014-02-01 18:53:26 +0000143 }
Soby Mathew9f71f702014-05-09 20:49:17 +0100144
145 /*
146 * Fill the indices corresponding to the start and end
147 * owning entity numbers with the index of the
148 * descriptor which will handle the SMCs for this owning
149 * entity range.
150 */
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100151#if SMCCC_MAJOR_VERSION == 1
152 start_idx = get_unique_oen(service->start_oen,
153 service->call_type);
154 end_idx = get_unique_oen(service->end_oen,
155 service->call_type);
156#elif SMCCC_MAJOR_VERSION == 2
157 start_idx = get_rt_desc_idx(service->start_oen,
158 service->is_vendor);
159 end_idx = get_rt_desc_idx(service->end_oen,
160 service->is_vendor);
161#endif
162 assert(start_idx <= end_idx);
Sandrine Bailleux7304f452016-06-28 16:48:30 +0100163 assert(end_idx < MAX_RT_SVCS);
Soby Mathew9f71f702014-05-09 20:49:17 +0100164 for (; start_idx <= end_idx; start_idx++)
165 rt_svc_descs_indices[start_idx] = index;
Achin Gupta7421b462014-02-01 18:53:26 +0000166 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100167}