Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Dimitris Papastamos | a65841a | 2018-01-22 12:58:52 +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 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 7 | #include <arch.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 8 | #include <arch_helpers.h> |
Dimitris Papastamos | a65841a | 2018-01-22 12:58:52 +0000 | [diff] [blame] | 9 | #include <arm_arch_svc.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 10 | #include <assert.h> |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 11 | #include <debug.h> |
| 12 | #include <platform.h> |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 13 | #include <pmf.h> |
| 14 | #include <runtime_instr.h> |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 15 | #include <smcc.h> |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 16 | #include <string.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 17 | #include "psci_private.h" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 18 | |
| 19 | /******************************************************************************* |
| 20 | * PSCI frontend api for servicing SMCs. Described in the PSCI spec. |
| 21 | ******************************************************************************/ |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 22 | int psci_cpu_on(u_register_t target_cpu, |
| 23 | uintptr_t entrypoint, |
| 24 | u_register_t context_id) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 25 | |
| 26 | { |
| 27 | int rc; |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 28 | entry_point_info_t ep; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 29 | |
| 30 | /* Determine if the cpu exists of not */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 31 | rc = psci_validate_mpidr(target_cpu); |
| 32 | if (rc != PSCI_E_SUCCESS) |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 33 | return PSCI_E_INVALID_PARAMS; |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 34 | |
Soby Mathew | f1f97a1 | 2015-07-15 12:13:26 +0100 | [diff] [blame] | 35 | /* Validate the entry point and get the entry_point_info */ |
| 36 | rc = psci_validate_entry_point(&ep, entrypoint, context_id); |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 37 | if (rc != PSCI_E_SUCCESS) |
| 38 | return rc; |
| 39 | |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 40 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 41 | * To turn this cpu on, specify which power |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 42 | * levels need to be turned on |
| 43 | */ |
Sandrine Bailleux | 7497bff | 2016-04-25 09:28:43 +0100 | [diff] [blame] | 44 | return psci_cpu_on_start(target_cpu, &ep); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | unsigned int psci_version(void) |
| 48 | { |
| 49 | return PSCI_MAJOR_VER | PSCI_MINOR_VER; |
| 50 | } |
| 51 | |
| 52 | int psci_cpu_suspend(unsigned int power_state, |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 53 | uintptr_t entrypoint, |
| 54 | u_register_t context_id) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 55 | { |
| 56 | int rc; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 57 | unsigned int target_pwrlvl, is_power_down_state; |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 58 | entry_point_info_t ep; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 59 | psci_power_state_t state_info = { {PSCI_LOCAL_STATE_RUN} }; |
| 60 | plat_local_state_t cpu_pd_state; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 61 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 62 | /* Validate the power_state parameter */ |
| 63 | rc = psci_validate_power_state(power_state, &state_info); |
| 64 | if (rc != PSCI_E_SUCCESS) { |
| 65 | assert(rc == PSCI_E_INVALID_PARAMS); |
| 66 | return rc; |
| 67 | } |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 68 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 69 | /* |
| 70 | * Get the value of the state type bit from the power state parameter. |
| 71 | */ |
| 72 | is_power_down_state = psci_get_pstate_type(power_state); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 73 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 74 | /* Sanity check the requested suspend levels */ |
Soby Mathew | 24ab34f | 2016-05-03 17:11:42 +0100 | [diff] [blame] | 75 | assert(psci_validate_suspend_req(&state_info, is_power_down_state) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 76 | == PSCI_E_SUCCESS); |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 77 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 78 | target_pwrlvl = psci_find_target_suspend_lvl(&state_info); |
Sandrine Bailleux | f9f3bbf | 2016-06-22 16:35:01 +0100 | [diff] [blame] | 79 | if (target_pwrlvl == PSCI_INVALID_PWR_LVL) { |
| 80 | ERROR("Invalid target power level for suspend operation\n"); |
| 81 | panic(); |
| 82 | } |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 83 | |
| 84 | /* Fast path for CPU standby.*/ |
| 85 | if (is_cpu_standby_req(is_power_down_state, target_pwrlvl)) { |
| 86 | if (!psci_plat_pm_ops->cpu_standby) |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 87 | return PSCI_E_INVALID_PARAMS; |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 88 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 89 | /* |
| 90 | * Set the state of the CPU power domain to the platform |
| 91 | * specific retention state and enter the standby state. |
| 92 | */ |
| 93 | cpu_pd_state = state_info.pwr_domain_state[PSCI_CPU_PWR_LVL]; |
| 94 | psci_set_cpu_local_state(cpu_pd_state); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 95 | |
| 96 | #if ENABLE_PSCI_STAT |
dp-arm | 66abfbe | 2017-01-31 13:01:04 +0000 | [diff] [blame] | 97 | plat_psci_stat_accounting_start(&state_info); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 98 | #endif |
| 99 | |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 100 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 101 | PMF_CAPTURE_TIMESTAMP(rt_instr_svc, |
| 102 | RT_INSTR_ENTER_HW_LOW_PWR, |
| 103 | PMF_NO_CACHE_MAINT); |
| 104 | #endif |
| 105 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 106 | psci_plat_pm_ops->cpu_standby(cpu_pd_state); |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 107 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 108 | /* Upon exit from standby, set the state back to RUN. */ |
| 109 | psci_set_cpu_local_state(PSCI_LOCAL_STATE_RUN); |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 110 | |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 111 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 112 | PMF_CAPTURE_TIMESTAMP(rt_instr_svc, |
| 113 | RT_INSTR_EXIT_HW_LOW_PWR, |
| 114 | PMF_NO_CACHE_MAINT); |
| 115 | #endif |
| 116 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 117 | #if ENABLE_PSCI_STAT |
dp-arm | 66abfbe | 2017-01-31 13:01:04 +0000 | [diff] [blame] | 118 | plat_psci_stat_accounting_stop(&state_info); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 119 | |
| 120 | /* Update PSCI stats */ |
dp-arm | 66abfbe | 2017-01-31 13:01:04 +0000 | [diff] [blame] | 121 | psci_stats_update_pwr_up(PSCI_CPU_PWR_LVL, &state_info); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 122 | #endif |
| 123 | |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 124 | return PSCI_E_SUCCESS; |
Vikram Kanigiri | 3b7c59b | 2014-03-21 11:57:10 +0000 | [diff] [blame] | 125 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 126 | |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 127 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 128 | * If a power down state has been requested, we need to verify entry |
| 129 | * point and program entry information. |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 130 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 131 | if (is_power_down_state) { |
Soby Mathew | f1f97a1 | 2015-07-15 12:13:26 +0100 | [diff] [blame] | 132 | rc = psci_validate_entry_point(&ep, entrypoint, context_id); |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 133 | if (rc != PSCI_E_SUCCESS) |
| 134 | return rc; |
| 135 | } |
Soby Mathew | f512157 | 2014-09-30 11:19:51 +0100 | [diff] [blame] | 136 | |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 137 | /* |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 138 | * Do what is needed to enter the power down state. Upon success, |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 139 | * enter the final wfi which will power down this CPU. This function |
| 140 | * might return if the power down was abandoned for any reason, e.g. |
| 141 | * arrival of an interrupt |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 142 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 143 | psci_cpu_suspend_start(&ep, |
| 144 | target_pwrlvl, |
| 145 | &state_info, |
| 146 | is_power_down_state); |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 147 | |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 148 | return PSCI_E_SUCCESS; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 149 | } |
| 150 | |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 151 | |
| 152 | int psci_system_suspend(uintptr_t entrypoint, u_register_t context_id) |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 153 | { |
| 154 | int rc; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 155 | psci_power_state_t state_info; |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 156 | entry_point_info_t ep; |
| 157 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 158 | /* Check if the current CPU is the last ON CPU in the system */ |
| 159 | if (!psci_is_last_on_cpu()) |
| 160 | return PSCI_E_DENIED; |
| 161 | |
Soby Mathew | f1f97a1 | 2015-07-15 12:13:26 +0100 | [diff] [blame] | 162 | /* Validate the entry point and get the entry_point_info */ |
| 163 | rc = psci_validate_entry_point(&ep, entrypoint, context_id); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 164 | if (rc != PSCI_E_SUCCESS) |
| 165 | return rc; |
| 166 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 167 | /* Query the psci_power_state for system suspend */ |
| 168 | psci_query_sys_suspend_pwrstate(&state_info); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 169 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 170 | /* Ensure that the psci_power_state makes sense */ |
| 171 | assert(psci_find_target_suspend_lvl(&state_info) == PLAT_MAX_PWR_LVL); |
| 172 | assert(psci_validate_suspend_req(&state_info, PSTATE_TYPE_POWERDOWN) |
| 173 | == PSCI_E_SUCCESS); |
| 174 | assert(is_local_state_off(state_info.pwr_domain_state[PLAT_MAX_PWR_LVL])); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 175 | |
| 176 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 177 | * Do what is needed to enter the system suspend state. This function |
| 178 | * might return if the power down was abandoned for any reason, e.g. |
| 179 | * arrival of an interrupt |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 180 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 181 | psci_cpu_suspend_start(&ep, |
| 182 | PLAT_MAX_PWR_LVL, |
| 183 | &state_info, |
| 184 | PSTATE_TYPE_POWERDOWN); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 185 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 186 | return PSCI_E_SUCCESS; |
| 187 | } |
| 188 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 189 | int psci_cpu_off(void) |
| 190 | { |
| 191 | int rc; |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 192 | unsigned int target_pwrlvl = PLAT_MAX_PWR_LVL; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 193 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 194 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 195 | * Do what is needed to power off this CPU and possible higher power |
| 196 | * levels if it able to do so. Upon success, enter the final wfi |
| 197 | * which will power down this CPU. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 198 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 199 | rc = psci_do_cpu_off(target_pwrlvl); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 200 | |
Achin Gupta | 3140a9e | 2013-12-02 16:23:12 +0000 | [diff] [blame] | 201 | /* |
| 202 | * The only error cpu_off can return is E_DENIED. So check if that's |
| 203 | * indeed the case. |
| 204 | */ |
Soby Mathew | 24ab34f | 2016-05-03 17:11:42 +0100 | [diff] [blame] | 205 | assert(rc == PSCI_E_DENIED); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 206 | |
| 207 | return rc; |
| 208 | } |
| 209 | |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 210 | int psci_affinity_info(u_register_t target_affinity, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 211 | unsigned int lowest_affinity_level) |
| 212 | { |
Varun Wadekar | 66231d1 | 2017-06-07 09:57:42 -0700 | [diff] [blame] | 213 | int target_idx; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 214 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 215 | /* We dont support level higher than PSCI_CPU_PWR_LVL */ |
| 216 | if (lowest_affinity_level > PSCI_CPU_PWR_LVL) |
| 217 | return PSCI_E_INVALID_PARAMS; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 218 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 219 | /* Calculate the cpu index of the target */ |
| 220 | target_idx = plat_core_pos_by_mpidr(target_affinity); |
| 221 | if (target_idx == -1) |
| 222 | return PSCI_E_INVALID_PARAMS; |
Achin Gupta | 75f7367 | 2013-12-05 16:33:10 +0000 | [diff] [blame] | 223 | |
Roberto Vargas | 6dc8214 | 2017-11-13 08:24:07 +0000 | [diff] [blame] | 224 | /* |
| 225 | * Generic management: |
| 226 | * Perform cache maintanence ahead of reading the target CPU state to |
| 227 | * ensure that the data is not stale. |
| 228 | * There is a theoretical edge case where the cache may contain stale |
| 229 | * data for the target CPU data - this can occur under the following |
| 230 | * conditions: |
| 231 | * - the target CPU is in another cluster from the current |
| 232 | * - the target CPU was the last CPU to shutdown on its cluster |
| 233 | * - the cluster was removed from coherency as part of the CPU shutdown |
| 234 | * |
| 235 | * In this case the cache maintenace that was performed as part of the |
| 236 | * target CPUs shutdown was not seen by the current CPU's cluster. And |
| 237 | * so the cache may contain stale data for the target CPU. |
| 238 | */ |
| 239 | flush_cpu_data_by_index(target_idx, psci_svc_cpu_data.aff_info_state); |
| 240 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 241 | return psci_get_aff_info_state_by_idx(target_idx); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 242 | } |
| 243 | |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 244 | int psci_migrate(u_register_t target_cpu) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 245 | { |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 246 | int rc; |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 247 | u_register_t resident_cpu_mpidr; |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 248 | |
| 249 | rc = psci_spd_migrate_info(&resident_cpu_mpidr); |
| 250 | if (rc != PSCI_TOS_UP_MIG_CAP) |
| 251 | return (rc == PSCI_TOS_NOT_UP_MIG_CAP) ? |
| 252 | PSCI_E_DENIED : PSCI_E_NOT_SUPPORTED; |
| 253 | |
| 254 | /* |
| 255 | * Migrate should only be invoked on the CPU where |
| 256 | * the Secure OS is resident. |
| 257 | */ |
| 258 | if (resident_cpu_mpidr != read_mpidr_el1()) |
| 259 | return PSCI_E_NOT_PRESENT; |
| 260 | |
| 261 | /* Check the validity of the specified target cpu */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 262 | rc = psci_validate_mpidr(target_cpu); |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 263 | if (rc != PSCI_E_SUCCESS) |
| 264 | return PSCI_E_INVALID_PARAMS; |
| 265 | |
| 266 | assert(psci_spd_pm && psci_spd_pm->svc_migrate); |
| 267 | |
| 268 | rc = psci_spd_pm->svc_migrate(read_mpidr_el1(), target_cpu); |
| 269 | assert(rc == PSCI_E_SUCCESS || rc == PSCI_E_INTERN_FAIL); |
| 270 | |
| 271 | return rc; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 272 | } |
| 273 | |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 274 | int psci_migrate_info_type(void) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 275 | { |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 276 | u_register_t resident_cpu_mpidr; |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 277 | |
| 278 | return psci_spd_migrate_info(&resident_cpu_mpidr); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 279 | } |
| 280 | |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 281 | long psci_migrate_info_up_cpu(void) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 282 | { |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 283 | u_register_t resident_cpu_mpidr; |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 284 | int rc; |
| 285 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 286 | /* |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 287 | * Return value of this depends upon what |
| 288 | * psci_spd_migrate_info() returns. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 289 | */ |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 290 | rc = psci_spd_migrate_info(&resident_cpu_mpidr); |
| 291 | if (rc != PSCI_TOS_NOT_UP_MIG_CAP && rc != PSCI_TOS_UP_MIG_CAP) |
| 292 | return PSCI_E_INVALID_PARAMS; |
| 293 | |
| 294 | return resident_cpu_mpidr; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 295 | } |
| 296 | |
Jeenu Viswambharan | 7f03e9d9 | 2016-08-03 15:54:50 +0100 | [diff] [blame] | 297 | int psci_node_hw_state(u_register_t target_cpu, |
| 298 | unsigned int power_level) |
| 299 | { |
| 300 | int rc; |
| 301 | |
| 302 | /* Validate target_cpu */ |
| 303 | rc = psci_validate_mpidr(target_cpu); |
| 304 | if (rc != PSCI_E_SUCCESS) |
| 305 | return PSCI_E_INVALID_PARAMS; |
| 306 | |
| 307 | /* Validate power_level against PLAT_MAX_PWR_LVL */ |
| 308 | if (power_level > PLAT_MAX_PWR_LVL) |
| 309 | return PSCI_E_INVALID_PARAMS; |
| 310 | |
| 311 | /* |
| 312 | * Dispatch this call to platform to query power controller, and pass on |
| 313 | * to the caller what it returns |
| 314 | */ |
| 315 | assert(psci_plat_pm_ops->get_node_hw_state); |
| 316 | rc = psci_plat_pm_ops->get_node_hw_state(target_cpu, power_level); |
| 317 | assert((rc >= HW_ON && rc <= HW_STANDBY) || rc == PSCI_E_NOT_SUPPORTED |
| 318 | || rc == PSCI_E_INVALID_PARAMS); |
| 319 | return rc; |
| 320 | } |
| 321 | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 322 | int psci_features(unsigned int psci_fid) |
| 323 | { |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 324 | unsigned int local_caps = psci_caps; |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 325 | |
Dimitris Papastamos | a65841a | 2018-01-22 12:58:52 +0000 | [diff] [blame] | 326 | if (psci_fid == SMCCC_VERSION) |
| 327 | return PSCI_E_SUCCESS; |
| 328 | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 329 | /* Check if it is a 64 bit function */ |
| 330 | if (((psci_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_64) |
| 331 | local_caps &= PSCI_CAP_64BIT_MASK; |
| 332 | |
| 333 | /* Check for invalid fid */ |
| 334 | if (!(is_std_svc_call(psci_fid) && is_valid_fast_smc(psci_fid) |
| 335 | && is_psci_fid(psci_fid))) |
| 336 | return PSCI_E_NOT_SUPPORTED; |
| 337 | |
| 338 | |
| 339 | /* Check if the psci fid is supported or not */ |
| 340 | if (!(local_caps & define_psci_cap(psci_fid))) |
| 341 | return PSCI_E_NOT_SUPPORTED; |
| 342 | |
| 343 | /* Format the feature flags */ |
| 344 | if (psci_fid == PSCI_CPU_SUSPEND_AARCH32 || |
| 345 | psci_fid == PSCI_CPU_SUSPEND_AARCH64) { |
| 346 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 347 | * The trusted firmware does not support OS Initiated Mode. |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 348 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 349 | return (FF_PSTATE << FF_PSTATE_SHIFT) | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 350 | ((!FF_SUPPORTS_OS_INIT_MODE) << FF_MODE_SUPPORT_SHIFT); |
| 351 | } |
| 352 | |
| 353 | /* Return 0 for all other fid's */ |
| 354 | return PSCI_E_SUCCESS; |
| 355 | } |
| 356 | |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 357 | /******************************************************************************* |
| 358 | * PSCI top level handler for servicing SMCs. |
| 359 | ******************************************************************************/ |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 360 | u_register_t psci_smc_handler(uint32_t smc_fid, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 361 | u_register_t x1, |
| 362 | u_register_t x2, |
| 363 | u_register_t x3, |
| 364 | u_register_t x4, |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 365 | void *cookie, |
| 366 | void *handle, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 367 | u_register_t flags) |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 368 | { |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 369 | if (is_caller_secure(flags)) |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 370 | return SMC_UNK; |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 371 | |
Soby Mathew | 61e615b | 2015-01-15 11:49:49 +0000 | [diff] [blame] | 372 | /* Check the fid against the capabilities */ |
| 373 | if (!(psci_caps & define_psci_cap(smc_fid))) |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 374 | return SMC_UNK; |
Soby Mathew | 61e615b | 2015-01-15 11:49:49 +0000 | [diff] [blame] | 375 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 376 | if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) { |
| 377 | /* 32-bit PSCI function, clear top parameter bits */ |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 378 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 379 | x1 = (uint32_t)x1; |
| 380 | x2 = (uint32_t)x2; |
| 381 | x3 = (uint32_t)x3; |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 382 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 383 | switch (smc_fid) { |
| 384 | case PSCI_VERSION: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 385 | return psci_version(); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 386 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 387 | case PSCI_CPU_OFF: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 388 | return psci_cpu_off(); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 389 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 390 | case PSCI_CPU_SUSPEND_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 391 | return psci_cpu_suspend(x1, x2, x3); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 392 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 393 | case PSCI_CPU_ON_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 394 | return psci_cpu_on(x1, x2, x3); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 395 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 396 | case PSCI_AFFINITY_INFO_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 397 | return psci_affinity_info(x1, x2); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 398 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 399 | case PSCI_MIG_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 400 | return psci_migrate(x1); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 401 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 402 | case PSCI_MIG_INFO_TYPE: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 403 | return psci_migrate_info_type(); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 404 | |
| 405 | case PSCI_MIG_INFO_UP_CPU_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 406 | return psci_migrate_info_up_cpu(); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 407 | |
Jeenu Viswambharan | 7f03e9d9 | 2016-08-03 15:54:50 +0100 | [diff] [blame] | 408 | case PSCI_NODE_HW_STATE_AARCH32: |
| 409 | return psci_node_hw_state(x1, x2); |
| 410 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 411 | case PSCI_SYSTEM_SUSPEND_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 412 | return psci_system_suspend(x1, x2); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 413 | |
Juan Castillo | 4dc4a47 | 2014-08-12 11:17:06 +0100 | [diff] [blame] | 414 | case PSCI_SYSTEM_OFF: |
| 415 | psci_system_off(); |
| 416 | /* We should never return from psci_system_off() */ |
| 417 | |
| 418 | case PSCI_SYSTEM_RESET: |
| 419 | psci_system_reset(); |
| 420 | /* We should never return from psci_system_reset() */ |
| 421 | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 422 | case PSCI_FEATURES: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 423 | return psci_features(x1); |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 424 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 425 | #if ENABLE_PSCI_STAT |
| 426 | case PSCI_STAT_RESIDENCY_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 427 | return psci_stat_residency(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 428 | |
| 429 | case PSCI_STAT_COUNT_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 430 | return psci_stat_count(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 431 | #endif |
Roberto Vargas | 0a4c261 | 2017-08-03 08:16:16 +0100 | [diff] [blame] | 432 | case PSCI_MEM_PROTECT: |
| 433 | return psci_mem_protect(x1); |
| 434 | |
| 435 | case PSCI_MEM_CHK_RANGE_AARCH32: |
| 436 | return psci_mem_chk_range(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 437 | |
Roberto Vargas | b820ad0 | 2017-07-26 09:23:09 +0100 | [diff] [blame] | 438 | case PSCI_SYSTEM_RESET2_AARCH32: |
| 439 | /* We should never return from psci_system_reset2() */ |
| 440 | return psci_system_reset2(x1, x2); |
| 441 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 442 | default: |
| 443 | break; |
| 444 | } |
| 445 | } else { |
| 446 | /* 64-bit PSCI function */ |
| 447 | |
| 448 | switch (smc_fid) { |
| 449 | case PSCI_CPU_SUSPEND_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 450 | return psci_cpu_suspend(x1, x2, x3); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 451 | |
| 452 | case PSCI_CPU_ON_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 453 | return psci_cpu_on(x1, x2, x3); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 454 | |
| 455 | case PSCI_AFFINITY_INFO_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 456 | return psci_affinity_info(x1, x2); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 457 | |
| 458 | case PSCI_MIG_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 459 | return psci_migrate(x1); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 460 | |
| 461 | case PSCI_MIG_INFO_UP_CPU_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 462 | return psci_migrate_info_up_cpu(); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 463 | |
Jeenu Viswambharan | 7f03e9d9 | 2016-08-03 15:54:50 +0100 | [diff] [blame] | 464 | case PSCI_NODE_HW_STATE_AARCH64: |
| 465 | return psci_node_hw_state(x1, x2); |
| 466 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 467 | case PSCI_SYSTEM_SUSPEND_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 468 | return psci_system_suspend(x1, x2); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 469 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 470 | #if ENABLE_PSCI_STAT |
| 471 | case PSCI_STAT_RESIDENCY_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 472 | return psci_stat_residency(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 473 | |
| 474 | case PSCI_STAT_COUNT_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 475 | return psci_stat_count(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 476 | #endif |
| 477 | |
Roberto Vargas | 0a4c261 | 2017-08-03 08:16:16 +0100 | [diff] [blame] | 478 | case PSCI_MEM_CHK_RANGE_AARCH64: |
| 479 | return psci_mem_chk_range(x1, x2); |
| 480 | |
Roberto Vargas | b820ad0 | 2017-07-26 09:23:09 +0100 | [diff] [blame] | 481 | case PSCI_SYSTEM_RESET2_AARCH64: |
| 482 | /* We should never return from psci_system_reset2() */ |
| 483 | return psci_system_reset2(x1, x2); |
Roberto Vargas | 0a4c261 | 2017-08-03 08:16:16 +0100 | [diff] [blame] | 484 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 485 | default: |
| 486 | break; |
| 487 | } |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 488 | } |
| 489 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 490 | WARN("Unimplemented PSCI Call: 0x%x \n", smc_fid); |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 491 | return SMC_UNK; |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 492 | } |