Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 1 | /* |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 2 | * Copyright (c) 2014-2020, ARM Limited and Contributors. All rights reserved. |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 7 | #include <assert.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 8 | #include <stdint.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | |
| 10 | #include <common/debug.h> |
| 11 | #include <common/runtime_svc.h> |
| 12 | #include <lib/el3_runtime/cpu_data.h> |
| 13 | #include <lib/pmf/pmf.h> |
| 14 | #include <lib/psci/psci.h> |
| 15 | #include <lib/runtime_instr.h> |
| 16 | #include <services/sdei.h> |
Paul Beesley | e9754e6 | 2019-10-15 12:51:55 +0000 | [diff] [blame] | 17 | #include <services/spm_mm_svc.h> |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 18 | #include <services/spmd_svc.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 19 | #include <services/std_svc.h> |
| 20 | #include <smccc_helpers.h> |
| 21 | #include <tools_share/uuid.h> |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 22 | |
| 23 | /* Standard Service UUID */ |
Roberto Vargas | eace8f1 | 2018-04-26 13:36:53 +0100 | [diff] [blame] | 24 | static uuid_t arm_svc_uid = { |
| 25 | {0x5b, 0x90, 0x8d, 0x10}, |
| 26 | {0x63, 0xf8}, |
| 27 | {0xe8, 0x47}, |
| 28 | 0xae, 0x2d, |
| 29 | {0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2} |
| 30 | }; |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 31 | |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 32 | /* Setup Standard Services */ |
| 33 | static int32_t std_svc_setup(void) |
| 34 | { |
| 35 | uintptr_t svc_arg; |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 36 | int ret = 0; |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 37 | |
| 38 | svc_arg = get_arm_std_svc_args(PSCI_FID_MASK); |
| 39 | assert(svc_arg); |
| 40 | |
| 41 | /* |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 42 | * PSCI is one of the specifications implemented as a Standard Service. |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 43 | * The `psci_setup()` also does EL3 architectural setup. |
| 44 | */ |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 45 | if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) { |
| 46 | ret = 1; |
| 47 | } |
| 48 | |
Paul Beesley | db4e25a | 2019-10-14 15:27:12 +0000 | [diff] [blame] | 49 | #if SPM_MM |
Paul Beesley | e9754e6 | 2019-10-15 12:51:55 +0000 | [diff] [blame] | 50 | if (spm_mm_setup() != 0) { |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 51 | ret = 1; |
| 52 | } |
| 53 | #endif |
| 54 | |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 55 | #if defined(SPD_spmd) |
| 56 | if (spmd_setup() != 0) { |
| 57 | ret = 1; |
| 58 | } |
| 59 | #endif |
| 60 | |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 61 | #if SDEI_SUPPORT |
| 62 | /* SDEI initialisation */ |
| 63 | sdei_init(); |
| 64 | #endif |
| 65 | |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 66 | return ret; |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 69 | /* |
| 70 | * Top-level Standard Service SMC handler. This handler will in turn dispatch |
| 71 | * calls to PSCI SMC handler |
| 72 | */ |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 73 | static uintptr_t std_svc_smc_handler(uint32_t smc_fid, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 74 | u_register_t x1, |
| 75 | u_register_t x2, |
| 76 | u_register_t x3, |
| 77 | u_register_t x4, |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 78 | void *cookie, |
| 79 | void *handle, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 80 | u_register_t flags) |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 81 | { |
| 82 | /* |
| 83 | * Dispatch PSCI calls to PSCI SMC handler and return its return |
| 84 | * value |
| 85 | */ |
| 86 | if (is_psci_fid(smc_fid)) { |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 87 | uint64_t ret; |
| 88 | |
| 89 | #if ENABLE_RUNTIME_INSTRUMENTATION |
dp-arm | c93e21f | 2016-10-31 17:17:21 +0000 | [diff] [blame] | 90 | |
| 91 | /* |
| 92 | * Flush cache line so that even if CPU power down happens |
| 93 | * the timestamp update is reflected in memory. |
| 94 | */ |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 95 | PMF_WRITE_TIMESTAMP(rt_instr_svc, |
| 96 | RT_INSTR_ENTER_PSCI, |
dp-arm | c93e21f | 2016-10-31 17:17:21 +0000 | [diff] [blame] | 97 | PMF_CACHE_MAINT, |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 98 | get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX])); |
| 99 | #endif |
| 100 | |
| 101 | ret = psci_smc_handler(smc_fid, x1, x2, x3, x4, |
| 102 | cookie, handle, flags); |
| 103 | |
| 104 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 105 | PMF_CAPTURE_TIMESTAMP(rt_instr_svc, |
| 106 | RT_INSTR_EXIT_PSCI, |
| 107 | PMF_NO_CACHE_MAINT); |
| 108 | #endif |
| 109 | |
| 110 | SMC_RET1(handle, ret); |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 111 | } |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 112 | |
Paul Beesley | fe975b4 | 2019-09-16 11:29:03 +0000 | [diff] [blame] | 113 | #if SPM_MM |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 114 | /* |
| 115 | * Dispatch SPM calls to SPM SMC handler and return its return |
| 116 | * value |
| 117 | */ |
Paul Beesley | e9754e6 | 2019-10-15 12:51:55 +0000 | [diff] [blame] | 118 | if (is_spm_mm_fid(smc_fid)) { |
| 119 | return spm_mm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, |
| 120 | handle, flags); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 121 | } |
| 122 | #endif |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 123 | |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 124 | #if defined(SPD_spmd) |
| 125 | /* |
| 126 | * Dispatch SPCI calls to the SPCI SMC handler implemented by the SPM |
| 127 | * dispatcher and return its return value |
| 128 | */ |
| 129 | if (is_spci_fid(smc_fid)) { |
| 130 | return spmd_smc_handler(smc_fid, x1, x2, x3, x4, cookie, |
| 131 | handle, flags); |
| 132 | } |
| 133 | #endif |
| 134 | |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 135 | #if SDEI_SUPPORT |
| 136 | if (is_sdei_fid(smc_fid)) { |
| 137 | return sdei_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, |
| 138 | flags); |
| 139 | } |
| 140 | #endif |
| 141 | |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 142 | switch (smc_fid) { |
| 143 | case ARM_STD_SVC_CALL_COUNT: |
| 144 | /* |
| 145 | * Return the number of Standard Service Calls. PSCI is the only |
| 146 | * standard service implemented; so return number of PSCI calls |
| 147 | */ |
| 148 | SMC_RET1(handle, PSCI_NUM_CALLS); |
| 149 | |
| 150 | case ARM_STD_SVC_UID: |
| 151 | /* Return UID to the caller */ |
| 152 | SMC_UUID_RET(handle, arm_svc_uid); |
| 153 | |
| 154 | case ARM_STD_SVC_VERSION: |
| 155 | /* Return the version of current implementation */ |
| 156 | SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR); |
| 157 | |
| 158 | default: |
| 159 | WARN("Unimplemented Standard Service Call: 0x%x \n", smc_fid); |
| 160 | SMC_RET1(handle, SMC_UNK); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | /* Register Standard Service Calls as runtime service */ |
| 165 | DECLARE_RT_SVC( |
| 166 | std_svc, |
| 167 | |
| 168 | OEN_STD_START, |
| 169 | OEN_STD_END, |
| 170 | SMC_TYPE_FAST, |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 171 | std_svc_setup, |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 172 | std_svc_smc_handler |
| 173 | ); |