blob: 09ce787d466912350d578e85bf0930b93f2cee28 [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>
Achin Gupta4f6ad662013-10-25 09:08:21 +01008#include <errno.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +01009#include <string.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010010
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <common/debug.h>
12#include <common/runtime_svc.h>
13
Achin Gupta4f6ad662013-10-25 09:08:21 +010014/*******************************************************************************
Achin Gupta7421b462014-02-01 18:53:26 +000015 * The 'rt_svc_descs' array holds the runtime service descriptors exported by
16 * services by placing them in the 'rt_svc_descs' linker section.
17 * The 'rt_svc_descs_indices' array holds the index of a descriptor in the
18 * 'rt_svc_descs' array. When an SMC arrives, the OEN[29:24] bits and the call
19 * type[31] bit in the function id are combined to get an index into the
20 * 'rt_svc_descs_indices' array. This gives the index of the descriptor in the
21 * 'rt_svc_descs' array which contains the SMC handler.
Achin Gupta4f6ad662013-10-25 09:08:21 +010022 ******************************************************************************/
Achin Gupta7421b462014-02-01 18:53:26 +000023uint8_t rt_svc_descs_indices[MAX_RT_SVCS];
Achin Gupta7421b462014-02-01 18:53:26 +000024
Soby Mathewa0fedc42016-06-16 14:52:04 +010025#define RT_SVC_DECS_NUM ((RT_SVC_DESCS_END - RT_SVC_DESCS_START)\
26 / sizeof(rt_svc_desc_t))
27
Achin Gupta7421b462014-02-01 18:53:26 +000028/*******************************************************************************
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010029 * Function to invoke the registered `handle` corresponding to the smc_fid in
30 * AArch32 mode.
Soby Mathewa9482df2016-05-05 12:49:09 +010031 ******************************************************************************/
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010032#if SMCCC_MAJOR_VERSION == 1
Soby Mathewa9482df2016-05-05 12:49:09 +010033uintptr_t handle_runtime_svc(uint32_t smc_fid,
34 void *cookie,
35 void *handle,
36 unsigned int flags)
37{
38 u_register_t x1, x2, x3, x4;
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +010039 unsigned int index;
Varun Wadekar66231d12017-06-07 09:57:42 -070040 unsigned int idx;
Dimitris Papastamos9576baa2018-06-08 13:17:26 +010041 const rt_svc_desc_t *rt_svc_descs;
Soby Mathewa9482df2016-05-05 12:49:09 +010042
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +010043 assert(handle != NULL);
Soby Mathewa9482df2016-05-05 12:49:09 +010044 idx = get_unique_oen_from_smc_fid(smc_fid);
Varun Wadekar66231d12017-06-07 09:57:42 -070045 assert(idx < MAX_RT_SVCS);
Soby Mathewa9482df2016-05-05 12:49:09 +010046
47 index = rt_svc_descs_indices[idx];
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +010048 if (index >= RT_SVC_DECS_NUM)
Soby Mathewa9482df2016-05-05 12:49:09 +010049 SMC_RET1(handle, SMC_UNK);
50
51 rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START;
52
53 get_smc_params_from_ctx(handle, x1, x2, x3, x4);
54
55 return rt_svc_descs[index].handle(smc_fid, x1, x2, x3, x4, cookie,
56 handle, flags);
57}
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010058#endif /* SMCCC_MAJOR_VERSION */
Soby Mathewa9482df2016-05-05 12:49:09 +010059
60/*******************************************************************************
Achin Gupta7421b462014-02-01 18:53:26 +000061 * Simple routine to sanity check a runtime service descriptor before using it
62 ******************************************************************************/
Sandrine Bailleux47110582016-06-28 16:44:28 +010063static int32_t validate_rt_svc_desc(const rt_svc_desc_t *desc)
Achin Gupta4f6ad662013-10-25 09:08:21 +010064{
Achin Gupta7421b462014-02-01 18:53:26 +000065 if (desc == NULL)
66 return -EINVAL;
67
68 if (desc->start_oen > desc->end_oen)
69 return -EINVAL;
70
71 if (desc->end_oen >= OEN_LIMIT)
72 return -EINVAL;
73
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010074#if SMCCC_MAJOR_VERSION == 1
75 if ((desc->call_type != SMC_TYPE_FAST) &&
76 (desc->call_type != SMC_TYPE_YIELD))
Achin Gupta7421b462014-02-01 18:53:26 +000077 return -EINVAL;
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010078#elif SMCCC_MAJOR_VERSION == 2
79 if (desc->is_vendor > 1U)
80 return -EINVAL;
81#endif /* SMCCC_MAJOR_VERSION */
Achin Gupta7421b462014-02-01 18:53:26 +000082
83 /* A runtime service having no init or handle function doesn't make sense */
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +010084 if ((desc->init == NULL) && (desc->handle == NULL))
Achin Gupta7421b462014-02-01 18:53:26 +000085 return -EINVAL;
86
87 return 0;
88}
89
90/*******************************************************************************
91 * This function calls the initialisation routine in the descriptor exported by
92 * a runtime service. Once a descriptor has been validated, its start & end
93 * owning entity numbers and the call type are combined to form a unique oen.
94 * The unique oen is used as an index into the 'rt_svc_descs_indices' array.
95 * The index of the runtime service descriptor is stored at this index.
96 ******************************************************************************/
Daniel Boulby5753e492018-09-20 14:12:46 +010097void __init runtime_svc_init(void)
Achin Gupta7421b462014-02-01 18:53:26 +000098{
Varun Wadekar66231d12017-06-07 09:57:42 -070099 int rc = 0;
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100100 uint8_t index, start_idx, end_idx;
Daniel Boulby278d4022018-06-27 16:18:48 +0100101 rt_svc_desc_t *rt_svc_descs;
Soby Mathewa0fedc42016-06-16 14:52:04 +0100102
103 /* Assert the number of descriptors detected are less than maximum indices */
Soby Mathewff1c2292016-07-26 16:09:44 +0100104 assert((RT_SVC_DESCS_END >= RT_SVC_DESCS_START) &&
105 (RT_SVC_DECS_NUM < MAX_RT_SVCS));
Achin Gupta7421b462014-02-01 18:53:26 +0000106
107 /* If no runtime services are implemented then simply bail out */
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100108 if (RT_SVC_DECS_NUM == 0U)
Achin Gupta7421b462014-02-01 18:53:26 +0000109 return;
110
111 /* Initialise internal variables to invalid state */
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100112 (void)memset(rt_svc_descs_indices, -1, sizeof(rt_svc_descs_indices));
Achin Gupta7421b462014-02-01 18:53:26 +0000113
Dan Handleye2712bc2014-04-10 15:37:22 +0100114 rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START;
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100115 for (index = 0U; index < RT_SVC_DECS_NUM; index++) {
Sandrine Bailleux47110582016-06-28 16:44:28 +0100116 rt_svc_desc_t *service = &rt_svc_descs[index];
Achin Gupta7421b462014-02-01 18:53:26 +0000117
118 /*
119 * An invalid descriptor is an error condition since it is
120 * difficult to predict the system behaviour in the absence
121 * of this service.
122 */
Sandrine Bailleux47110582016-06-28 16:44:28 +0100123 rc = validate_rt_svc_desc(service);
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100124 if (rc != 0) {
Sandrine Bailleux7304f452016-06-28 16:48:30 +0100125 ERROR("Invalid runtime service descriptor %p\n",
126 (void *) service);
Sandrine Bailleux47110582016-06-28 16:44:28 +0100127 panic();
Achin Gupta7421b462014-02-01 18:53:26 +0000128 }
129
Soby Mathew9f71f702014-05-09 20:49:17 +0100130 /*
Sandrine Bailleuxf4119ec2015-12-17 13:58:58 +0000131 * The runtime service may have separate rt_svc_desc_t
David Cunado28f69ab2017-04-05 11:34:03 +0100132 * for its fast smc and yielding smc. Since the service itself
Soby Mathew9f71f702014-05-09 20:49:17 +0100133 * need to be initialized only once, only one of them will have
134 * an initialisation routine defined. Call the initialisation
135 * routine for this runtime service, if it is defined.
136 */
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100137 if (service->init != NULL) {
Sandrine Bailleux47110582016-06-28 16:44:28 +0100138 rc = service->init();
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100139 if (rc != 0) {
Soby Mathew9f71f702014-05-09 20:49:17 +0100140 ERROR("Error initializing runtime service %s\n",
Sandrine Bailleux47110582016-06-28 16:44:28 +0100141 service->name);
Soby Mathew9f71f702014-05-09 20:49:17 +0100142 continue;
143 }
Achin Gupta7421b462014-02-01 18:53:26 +0000144 }
Soby Mathew9f71f702014-05-09 20:49:17 +0100145
146 /*
147 * Fill the indices corresponding to the start and end
148 * owning entity numbers with the index of the
149 * descriptor which will handle the SMCs for this owning
150 * entity range.
151 */
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100152#if SMCCC_MAJOR_VERSION == 1
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100153 start_idx = (uint8_t)get_unique_oen(service->start_oen,
154 service->call_type);
155 end_idx = (uint8_t)get_unique_oen(service->end_oen,
156 service->call_type);
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100157#elif SMCCC_MAJOR_VERSION == 2
Antonio Nino Diazf0b14cf2018-10-04 09:55:23 +0100158 start_idx = (uint8_t)get_rt_desc_idx(service->start_oen,
159 service->is_vendor);
160 end_idx = (uint8_t)get_rt_desc_idx(service->end_oen,
161 service->is_vendor);
Antonio Nino Diaz35c8cfc2018-04-23 15:43:29 +0100162#endif
163 assert(start_idx <= end_idx);
Sandrine Bailleux7304f452016-06-28 16:48:30 +0100164 assert(end_idx < MAX_RT_SVCS);
Soby Mathew9f71f702014-05-09 20:49:17 +0100165 for (; start_idx <= end_idx; start_idx++)
166 rt_svc_descs_indices[start_idx] = index;
Achin Gupta7421b462014-02-01 18:53:26 +0000167 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100168}