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