Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Sathees Balya | 50905c7 | 2018-10-05 13:30:59 +0100 | [diff] [blame] | 7 | #ifndef RUNTIME_SVC_H |
| 8 | #define RUNTIME_SVC_H |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 9 | |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 10 | #include <bl_common.h> /* to include exception types */ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 11 | #include <cassert.h> |
Antonio Nino Diaz | 3c817f4 | 2018-03-21 10:49:27 +0000 | [diff] [blame] | 12 | #include <smccc_helpers.h> /* to include SMCCC definitions */ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 13 | #include <utils_def.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 14 | |
Achin Gupta | 4a826dd | 2013-11-25 14:00:56 +0000 | [diff] [blame] | 15 | /******************************************************************************* |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 16 | * Structure definition, typedefs & constants for the runtime service framework |
Achin Gupta | 4a826dd | 2013-11-25 14:00:56 +0000 | [diff] [blame] | 17 | ******************************************************************************/ |
Achin Gupta | 4a826dd | 2013-11-25 14:00:56 +0000 | [diff] [blame] | 18 | |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 19 | /* |
| 20 | * Constants to allow the assembler access a runtime service |
| 21 | * descriptor |
| 22 | */ |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 23 | #ifdef AARCH32 |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 24 | #define RT_SVC_SIZE_LOG2 U(4) |
| 25 | #define RT_SVC_DESC_INIT U(8) |
| 26 | #define RT_SVC_DESC_HANDLE U(12) |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 27 | #else |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 28 | #define RT_SVC_SIZE_LOG2 U(5) |
| 29 | #define RT_SVC_DESC_INIT U(16) |
| 30 | #define RT_SVC_DESC_HANDLE U(24) |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 31 | #endif /* AARCH32 */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 32 | #define SIZEOF_RT_SVC_DESC (U(1) << RT_SVC_SIZE_LOG2) |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 33 | |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 34 | |
| 35 | /* |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 36 | * In SMCCC 1.X, the function identifier has 6 bits for the owning entity number |
| 37 | * and a single bit for the type of smc call. When taken together, those values |
| 38 | * limit the maximum number of runtime services to 128. |
| 39 | * |
| 40 | * In SMCCC 2.X the type bit is always 1 and there are only 4 OEN bits in the |
| 41 | * compatibility namespace, so the total number of services is 16. The LSB of |
| 42 | * namespace is also added to these 4 bits to make space for the vendor service |
| 43 | * handler and so the total number of runtime services is 32. |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 44 | */ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 45 | #if SMCCC_MAJOR_VERSION == 1 |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 46 | #define MAX_RT_SVCS U(128) |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 47 | #elif SMCCC_MAJOR_VERSION == 2 |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 48 | #define MAX_RT_SVCS U(32) |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 49 | #endif |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 50 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 51 | #ifndef __ASSEMBLY__ |
| 52 | |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 53 | /* Prototype for runtime service initializing function */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 54 | typedef int32_t (*rt_svc_init_t)(void); |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 55 | |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 56 | /* |
| 57 | * Prototype for runtime service SMC handler function. x0 (SMC Function ID) to |
| 58 | * x4 are as passed by the caller. Rest of the arguments to SMC and the context |
| 59 | * can be accessed using the handle pointer. The cookie parameter is reserved |
| 60 | * for future use |
| 61 | */ |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 62 | typedef uintptr_t (*rt_svc_handle_t)(uint32_t smc_fid, |
| 63 | u_register_t x1, |
| 64 | u_register_t x2, |
| 65 | u_register_t x3, |
| 66 | u_register_t x4, |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 67 | void *cookie, |
| 68 | void *handle, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 69 | u_register_t flags); |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 70 | typedef struct rt_svc_desc { |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 71 | uint8_t start_oen; |
| 72 | uint8_t end_oen; |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 73 | #if SMCCC_MAJOR_VERSION == 1 |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 74 | uint8_t call_type; |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 75 | #elif SMCCC_MAJOR_VERSION == 2 |
| 76 | uint8_t is_vendor; |
| 77 | #endif |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 78 | const char *name; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 79 | rt_svc_init_t init; |
| 80 | rt_svc_handle_t handle; |
| 81 | } rt_svc_desc_t; |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 82 | |
| 83 | /* |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 84 | * Convenience macros to declare a service descriptor |
| 85 | */ |
| 86 | #if SMCCC_MAJOR_VERSION == 1 |
| 87 | |
| 88 | #define DECLARE_RT_SVC(_name, _start, _end, _type, _setup, _smch) \ |
| 89 | static const rt_svc_desc_t __svc_desc_ ## _name \ |
| 90 | __section("rt_svc_descs") __used = { \ |
Sathees Balya | 50905c7 | 2018-10-05 13:30:59 +0100 | [diff] [blame] | 91 | .start_oen = (_start), \ |
| 92 | .end_oen = (_end), \ |
| 93 | .call_type = (_type), \ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 94 | .name = #_name, \ |
Sathees Balya | 50905c7 | 2018-10-05 13:30:59 +0100 | [diff] [blame] | 95 | .init = (_setup), \ |
| 96 | .handle = (_smch) \ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | #elif SMCCC_MAJOR_VERSION == 2 |
| 100 | |
| 101 | #define DECLARE_RT_SVC(_name, _start, _end, _type, _setup, _smch) \ |
| 102 | static const rt_svc_desc_t __svc_desc_ ## _name \ |
| 103 | __section("rt_svc_descs") __used = { \ |
Sathees Balya | 50905c7 | 2018-10-05 13:30:59 +0100 | [diff] [blame] | 104 | .start_oen = (_start), \ |
| 105 | .end_oen = (_end), \ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 106 | .is_vendor = 0, \ |
| 107 | .name = #_name, \ |
Sathees Balya | 50905c7 | 2018-10-05 13:30:59 +0100 | [diff] [blame] | 108 | .init = (_setup), \ |
| 109 | .handle = (_smch), \ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 110 | }; \ |
| 111 | CASSERT((_type) == SMC_TYPE_FAST, rt_svc_type_check_ ## _name) |
| 112 | |
| 113 | /* |
| 114 | * The higher 16 entries of the runtime services are used for the vendor |
| 115 | * specific descriptor. |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 116 | */ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 117 | #define DECLARE_RT_SVC_VENDOR(_setup, _smch) \ |
| 118 | static const rt_svc_desc_t __svc_desc_vendor \ |
| 119 | __section("rt_svc_descs") __used = { \ |
| 120 | .start_oen = 0, \ |
| 121 | .end_oen = 15, \ |
| 122 | .is_vendor = 1, \ |
| 123 | .name = "vendor_rt_svc", \ |
| 124 | .init = _setup, \ |
| 125 | .handle = _smch, \ |
| 126 | } |
| 127 | |
| 128 | #endif /* SMCCC_MAJOR_VERSION */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 129 | |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 130 | /* |
| 131 | * Compile time assertions related to the 'rt_svc_desc' structure to: |
| 132 | * 1. ensure that the assembler and the compiler view of the size |
| 133 | * of the structure are the same. |
| 134 | * 2. ensure that the assembler and the compiler see the initialisation |
| 135 | * routine at the same offset. |
Achin Gupta | 07f4e07 | 2014-02-02 12:02:23 +0000 | [diff] [blame] | 136 | * 3. ensure that the assembler and the compiler see the handler |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 137 | * routine at the same offset. |
| 138 | */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 139 | CASSERT((sizeof(rt_svc_desc_t) == SIZEOF_RT_SVC_DESC), \ |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 140 | assert_sizeof_rt_svc_desc_mismatch); |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 141 | CASSERT(RT_SVC_DESC_INIT == __builtin_offsetof(rt_svc_desc_t, init), \ |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 142 | assert_rt_svc_desc_init_offset_mismatch); |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 143 | CASSERT(RT_SVC_DESC_HANDLE == __builtin_offsetof(rt_svc_desc_t, handle), \ |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 144 | assert_rt_svc_desc_handle_offset_mismatch); |
| 145 | |
| 146 | |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 147 | #if SMCCC_MAJOR_VERSION == 1 |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 148 | /* |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 149 | * This function combines the call type and the owning entity number |
| 150 | * corresponding to a runtime service to generate a unique owning entity number. |
| 151 | * This unique oen is used to access an entry in the 'rt_svc_descs_indices' |
| 152 | * array. The entry contains the index of the service descriptor in the |
| 153 | * 'rt_svc_descs' array. |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 154 | */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 155 | static inline uint32_t get_unique_oen(uint32_t oen, uint32_t call_type) |
| 156 | { |
| 157 | return ((call_type & FUNCID_TYPE_MASK) << FUNCID_OEN_WIDTH) | |
| 158 | (oen & FUNCID_OEN_MASK); |
| 159 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 160 | |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 161 | /* |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 162 | * This function generates the unique owning entity number from the SMC Function |
Antonio Nino Diaz | e881147 | 2018-04-17 15:10:18 +0100 | [diff] [blame] | 163 | * ID. This unique oen is used to access an entry in the 'rt_svc_descs_indices' |
| 164 | * array to invoke the corresponding runtime service handler during SMC |
| 165 | * handling. |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 166 | */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 167 | static inline uint32_t get_unique_oen_from_smc_fid(uint32_t fid) |
| 168 | { |
| 169 | return get_unique_oen(GET_SMC_OEN(fid), GET_SMC_TYPE(fid)); |
| 170 | } |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 171 | |
| 172 | #elif SMCCC_MAJOR_VERSION == 2 |
| 173 | |
| 174 | /* |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 175 | * This function combines the owning entity number corresponding to a runtime |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 176 | * service with one extra bit for the vendor namespace to generate an index into |
| 177 | * the 'rt_svc_descs_indices' array. The entry contains the index of the service |
| 178 | * descriptor in the 'rt_svc_descs' array. |
| 179 | */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 180 | static inline uint32_t get_rt_desc_idx(uint32_t oen, uint32_t is_vendor) |
| 181 | { |
| 182 | return ((is_vendor & 1U) << FUNCID_OEN_WIDTH) | |
| 183 | (oen & FUNCID_OEN_MASK); |
| 184 | } |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 185 | |
| 186 | #endif |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 187 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 188 | /******************************************************************************* |
| 189 | * Function & variable prototypes |
| 190 | ******************************************************************************/ |
Juan Castillo | 2d55240 | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 191 | void runtime_svc_init(void); |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 192 | uintptr_t handle_runtime_svc(uint32_t smc_fid, void *cookie, void *handle, |
| 193 | unsigned int flags); |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 194 | IMPORT_SYM(uintptr_t, __RT_SVC_DESCS_START__, RT_SVC_DESCS_START); |
| 195 | IMPORT_SYM(uintptr_t, __RT_SVC_DESCS_END__, RT_SVC_DESCS_END); |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 196 | void init_crash_reporting(void); |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 197 | |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 198 | extern uint8_t rt_svc_descs_indices[MAX_RT_SVCS]; |
| 199 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 200 | #endif /*__ASSEMBLY__*/ |
Sathees Balya | 50905c7 | 2018-10-05 13:30:59 +0100 | [diff] [blame] | 201 | #endif /* RUNTIME_SVC_H */ |