Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | 0e402d3 | 2019-01-30 16:01:49 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2019, 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 | |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 7 | #include <assert.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 8 | #include <errno.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 9 | #include <string.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 10 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | #include <common/debug.h> |
| 12 | #include <common/runtime_svc.h> |
| 13 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 14 | /******************************************************************************* |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 15 | * 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 Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 22 | ******************************************************************************/ |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 23 | uint8_t rt_svc_descs_indices[MAX_RT_SVCS]; |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 24 | |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 25 | #define RT_SVC_DECS_NUM ((RT_SVC_DESCS_END - RT_SVC_DESCS_START)\ |
| 26 | / sizeof(rt_svc_desc_t)) |
| 27 | |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 28 | /******************************************************************************* |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 29 | * Function to invoke the registered `handle` corresponding to the smc_fid in |
| 30 | * AArch32 mode. |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 31 | ******************************************************************************/ |
| 32 | uintptr_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; |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 38 | unsigned int index; |
Varun Wadekar | 66231d1 | 2017-06-07 09:57:42 -0700 | [diff] [blame] | 39 | unsigned int idx; |
Dimitris Papastamos | 9576baa | 2018-06-08 13:17:26 +0100 | [diff] [blame] | 40 | const rt_svc_desc_t *rt_svc_descs; |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 41 | |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 42 | assert(handle != NULL); |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 43 | idx = get_unique_oen_from_smc_fid(smc_fid); |
Varun Wadekar | 66231d1 | 2017-06-07 09:57:42 -0700 | [diff] [blame] | 44 | assert(idx < MAX_RT_SVCS); |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 45 | |
| 46 | index = rt_svc_descs_indices[idx]; |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 47 | if (index >= RT_SVC_DECS_NUM) |
Soby Mathew | a9482df | 2016-05-05 12:49:09 +0100 | [diff] [blame] | 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 Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 59 | * Simple routine to sanity check a runtime service descriptor before using it |
| 60 | ******************************************************************************/ |
Sandrine Bailleux | 4711058 | 2016-06-28 16:44:28 +0100 | [diff] [blame] | 61 | static int32_t validate_rt_svc_desc(const rt_svc_desc_t *desc) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 62 | { |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 63 | 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 | |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 72 | if ((desc->call_type != SMC_TYPE_FAST) && |
| 73 | (desc->call_type != SMC_TYPE_YIELD)) |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 74 | return -EINVAL; |
| 75 | |
| 76 | /* A runtime service having no init or handle function doesn't make sense */ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 77 | if ((desc->init == NULL) && (desc->handle == NULL)) |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 78 | return -EINVAL; |
| 79 | |
| 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | /******************************************************************************* |
| 84 | * This function calls the initialisation routine in the descriptor exported by |
| 85 | * a runtime service. Once a descriptor has been validated, its start & end |
| 86 | * owning entity numbers and the call type are combined to form a unique oen. |
| 87 | * The unique oen is used as an index into the 'rt_svc_descs_indices' array. |
| 88 | * The index of the runtime service descriptor is stored at this index. |
| 89 | ******************************************************************************/ |
Daniel Boulby | 5753e49 | 2018-09-20 14:12:46 +0100 | [diff] [blame] | 90 | void __init runtime_svc_init(void) |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 91 | { |
Varun Wadekar | 66231d1 | 2017-06-07 09:57:42 -0700 | [diff] [blame] | 92 | int rc = 0; |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 93 | uint8_t index, start_idx, end_idx; |
Daniel Boulby | 278d402 | 2018-06-27 16:18:48 +0100 | [diff] [blame] | 94 | rt_svc_desc_t *rt_svc_descs; |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 95 | |
| 96 | /* Assert the number of descriptors detected are less than maximum indices */ |
Soby Mathew | ff1c229 | 2016-07-26 16:09:44 +0100 | [diff] [blame] | 97 | assert((RT_SVC_DESCS_END >= RT_SVC_DESCS_START) && |
| 98 | (RT_SVC_DECS_NUM < MAX_RT_SVCS)); |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 99 | |
| 100 | /* If no runtime services are implemented then simply bail out */ |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 101 | if (RT_SVC_DECS_NUM == 0U) |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 102 | return; |
| 103 | |
| 104 | /* Initialise internal variables to invalid state */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 105 | (void)memset(rt_svc_descs_indices, -1, sizeof(rt_svc_descs_indices)); |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 106 | |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 107 | rt_svc_descs = (rt_svc_desc_t *) RT_SVC_DESCS_START; |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 108 | for (index = 0U; index < RT_SVC_DECS_NUM; index++) { |
Sandrine Bailleux | 4711058 | 2016-06-28 16:44:28 +0100 | [diff] [blame] | 109 | rt_svc_desc_t *service = &rt_svc_descs[index]; |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 110 | |
| 111 | /* |
| 112 | * An invalid descriptor is an error condition since it is |
| 113 | * difficult to predict the system behaviour in the absence |
| 114 | * of this service. |
| 115 | */ |
Sandrine Bailleux | 4711058 | 2016-06-28 16:44:28 +0100 | [diff] [blame] | 116 | rc = validate_rt_svc_desc(service); |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 117 | if (rc != 0) { |
Sandrine Bailleux | 7304f45 | 2016-06-28 16:48:30 +0100 | [diff] [blame] | 118 | ERROR("Invalid runtime service descriptor %p\n", |
| 119 | (void *) service); |
Sandrine Bailleux | 4711058 | 2016-06-28 16:44:28 +0100 | [diff] [blame] | 120 | panic(); |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 121 | } |
| 122 | |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 123 | /* |
Sandrine Bailleux | f4119ec | 2015-12-17 13:58:58 +0000 | [diff] [blame] | 124 | * The runtime service may have separate rt_svc_desc_t |
David Cunado | 28f69ab | 2017-04-05 11:34:03 +0100 | [diff] [blame] | 125 | * for its fast smc and yielding smc. Since the service itself |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 126 | * need to be initialized only once, only one of them will have |
| 127 | * an initialisation routine defined. Call the initialisation |
| 128 | * routine for this runtime service, if it is defined. |
| 129 | */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 130 | if (service->init != NULL) { |
Sandrine Bailleux | 4711058 | 2016-06-28 16:44:28 +0100 | [diff] [blame] | 131 | rc = service->init(); |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 132 | if (rc != 0) { |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 133 | ERROR("Error initializing runtime service %s\n", |
Sandrine Bailleux | 4711058 | 2016-06-28 16:44:28 +0100 | [diff] [blame] | 134 | service->name); |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 135 | continue; |
| 136 | } |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 137 | } |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 138 | |
| 139 | /* |
| 140 | * Fill the indices corresponding to the start and end |
| 141 | * owning entity numbers with the index of the |
| 142 | * descriptor which will handle the SMCs for this owning |
| 143 | * entity range. |
| 144 | */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 145 | start_idx = (uint8_t)get_unique_oen(service->start_oen, |
| 146 | service->call_type); |
| 147 | end_idx = (uint8_t)get_unique_oen(service->end_oen, |
| 148 | service->call_type); |
Antonio Nino Diaz | 35c8cfc | 2018-04-23 15:43:29 +0100 | [diff] [blame] | 149 | assert(start_idx <= end_idx); |
Sandrine Bailleux | 7304f45 | 2016-06-28 16:48:30 +0100 | [diff] [blame] | 150 | assert(end_idx < MAX_RT_SVCS); |
Soby Mathew | 9f71f70 | 2014-05-09 20:49:17 +0100 | [diff] [blame] | 151 | for (; start_idx <= end_idx; start_idx++) |
| 152 | rt_svc_descs_indices[start_idx] = index; |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 153 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 154 | } |