blob: 8b8145e232a78a34854fd63c96e772fdaad128ac [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Soby Mathew4c0d0392016-06-16 14:52:04 +01002 * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Soby Mathew4c0d0392016-06-16 14:52:04 +01007#include <assert.h>
Achin Gupta7421b462014-02-01 18:53:26 +00008#include <debug.h>
Dan Handley97043ac2014-04-09 13:14:54 +01009#include <errno.h>
10#include <runtime_svc.h>
11#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 ******************************************************************************/
Soby Mathew4c0d0392016-06-16 14:52:04 +010022#define RT_SVC_DESCS_START ((uintptr_t) (&__RT_SVC_DESCS_START__))
23#define RT_SVC_DESCS_END ((uintptr_t) (&__RT_SVC_DESCS_END__))
Achin Gupta7421b462014-02-01 18:53:26 +000024uint8_t rt_svc_descs_indices[MAX_RT_SVCS];
Dan Handleyfb037bf2014-04-10 15:37:22 +010025static rt_svc_desc_t *rt_svc_descs;
Achin Gupta7421b462014-02-01 18:53:26 +000026
Soby Mathew4c0d0392016-06-16 14:52:04 +010027#define RT_SVC_DECS_NUM ((RT_SVC_DESCS_END - RT_SVC_DESCS_START)\
28 / sizeof(rt_svc_desc_t))
29
Achin Gupta7421b462014-02-01 18:53:26 +000030/*******************************************************************************
Soby Mathew1ae0a492016-05-05 12:49:09 +010031 * Function to invoke the registered `handle` corresponding to the smc_fid.
32 ******************************************************************************/
33uintptr_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;
39 int index, idx;
40 const rt_svc_desc_t *rt_svc_descs;
41
42 assert(handle);
43 idx = get_unique_oen_from_smc_fid(smc_fid);
44 assert(idx >= 0 && idx < MAX_RT_SVCS);
45
46 index = rt_svc_descs_indices[idx];
47 if (index < 0 || index >= RT_SVC_DECS_NUM)
48 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}
57
58/*******************************************************************************
Achin Gupta7421b462014-02-01 18:53:26 +000059 * Simple routine to sanity check a runtime service descriptor before using it
60 ******************************************************************************/
Sandrine Bailleux9d24d352016-06-28 16:44:28 +010061static int32_t validate_rt_svc_desc(const rt_svc_desc_t *desc)
Achin Gupta4f6ad662013-10-25 09:08:21 +010062{
Achin Gupta7421b462014-02-01 18:53:26 +000063 if (desc == NULL)
64 return -EINVAL;
65
66 if (desc->start_oen > desc->end_oen)
67 return -EINVAL;
68
69 if (desc->end_oen >= OEN_LIMIT)
70 return -EINVAL;
71
72 if (desc->call_type != SMC_TYPE_FAST && desc->call_type != SMC_TYPE_STD)
73 return -EINVAL;
74
75 /* A runtime service having no init or handle function doesn't make sense */
76 if (desc->init == NULL && desc->handle == NULL)
77 return -EINVAL;
78
79 return 0;
80}
81
82/*******************************************************************************
83 * This function calls the initialisation routine in the descriptor exported by
84 * a runtime service. Once a descriptor has been validated, its start & end
85 * owning entity numbers and the call type are combined to form a unique oen.
86 * The unique oen is used as an index into the 'rt_svc_descs_indices' array.
87 * The index of the runtime service descriptor is stored at this index.
88 ******************************************************************************/
Juan Castillo4f2104f2014-06-13 17:05:10 +010089void runtime_svc_init(void)
Achin Gupta7421b462014-02-01 18:53:26 +000090{
Soby Mathew4c0d0392016-06-16 14:52:04 +010091 int rc = 0, index, start_idx, end_idx;
92
93 /* Assert the number of descriptors detected are less than maximum indices */
Soby Mathew5e5e4162016-07-26 16:09:44 +010094 assert((RT_SVC_DESCS_END >= RT_SVC_DESCS_START) &&
95 (RT_SVC_DECS_NUM < MAX_RT_SVCS));
Achin Gupta7421b462014-02-01 18:53:26 +000096
97 /* If no runtime services are implemented then simply bail out */
Soby Mathew4c0d0392016-06-16 14:52:04 +010098 if (RT_SVC_DECS_NUM == 0)
Achin Gupta7421b462014-02-01 18:53:26 +000099 return;
100
101 /* Initialise internal variables to invalid state */
102 memset(rt_svc_descs_indices, -1, sizeof(rt_svc_descs_indices));
103
Dan Handleyfb037bf2014-04-10 15:37:22 +0100104 rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START;
Soby Mathew4c0d0392016-06-16 14:52:04 +0100105 for (index = 0; index < RT_SVC_DECS_NUM; index++) {
Sandrine Bailleux9d24d352016-06-28 16:44:28 +0100106 rt_svc_desc_t *service = &rt_svc_descs[index];
Achin Gupta7421b462014-02-01 18:53:26 +0000107
108 /*
109 * An invalid descriptor is an error condition since it is
110 * difficult to predict the system behaviour in the absence
111 * of this service.
112 */
Sandrine Bailleux9d24d352016-06-28 16:44:28 +0100113 rc = validate_rt_svc_desc(service);
Achin Gupta7421b462014-02-01 18:53:26 +0000114 if (rc) {
Sandrine Bailleux3a26a282016-06-28 16:48:30 +0100115 ERROR("Invalid runtime service descriptor %p\n",
116 (void *) service);
Sandrine Bailleux9d24d352016-06-28 16:44:28 +0100117 panic();
Achin Gupta7421b462014-02-01 18:53:26 +0000118 }
119
Soby Mathew239b04f2014-05-09 20:49:17 +0100120 /*
Sandrine Bailleux1645d3e2015-12-17 13:58:58 +0000121 * The runtime service may have separate rt_svc_desc_t
Soby Mathew239b04f2014-05-09 20:49:17 +0100122 * for its fast smc and standard smc. Since the service itself
123 * need to be initialized only once, only one of them will have
124 * an initialisation routine defined. Call the initialisation
125 * routine for this runtime service, if it is defined.
126 */
Sandrine Bailleux9d24d352016-06-28 16:44:28 +0100127 if (service->init) {
128 rc = service->init();
Soby Mathew239b04f2014-05-09 20:49:17 +0100129 if (rc) {
130 ERROR("Error initializing runtime service %s\n",
Sandrine Bailleux9d24d352016-06-28 16:44:28 +0100131 service->name);
Soby Mathew239b04f2014-05-09 20:49:17 +0100132 continue;
133 }
Achin Gupta7421b462014-02-01 18:53:26 +0000134 }
Soby Mathew239b04f2014-05-09 20:49:17 +0100135
136 /*
137 * Fill the indices corresponding to the start and end
138 * owning entity numbers with the index of the
139 * descriptor which will handle the SMCs for this owning
140 * entity range.
141 */
142 start_idx = get_unique_oen(rt_svc_descs[index].start_oen,
Sandrine Bailleux9d24d352016-06-28 16:44:28 +0100143 service->call_type);
Sandrine Bailleux3a26a282016-06-28 16:48:30 +0100144 assert(start_idx < MAX_RT_SVCS);
Soby Mathew239b04f2014-05-09 20:49:17 +0100145 end_idx = get_unique_oen(rt_svc_descs[index].end_oen,
Sandrine Bailleux9d24d352016-06-28 16:44:28 +0100146 service->call_type);
Sandrine Bailleux3a26a282016-06-28 16:48:30 +0100147 assert(end_idx < MAX_RT_SVCS);
Soby Mathew239b04f2014-05-09 20:49:17 +0100148 for (; start_idx <= end_idx; start_idx++)
149 rt_svc_descs_indices[start_idx] = index;
Achin Gupta7421b462014-02-01 18:53:26 +0000150 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100151}