Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 2 | * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 31 | #include <arch.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 32 | #include <arch_helpers.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 33 | #include <assert.h> |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 34 | #include <debug.h> |
| 35 | #include <platform.h> |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 36 | #include <smcc.h> |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 37 | #include <string.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 38 | #include "psci_private.h" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 39 | |
| 40 | /******************************************************************************* |
| 41 | * PSCI frontend api for servicing SMCs. Described in the PSCI spec. |
| 42 | ******************************************************************************/ |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 43 | int psci_cpu_on(u_register_t target_cpu, |
| 44 | uintptr_t entrypoint, |
| 45 | u_register_t context_id) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 46 | |
| 47 | { |
| 48 | int rc; |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 49 | entry_point_info_t ep; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 50 | |
| 51 | /* Determine if the cpu exists of not */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 52 | rc = psci_validate_mpidr(target_cpu); |
| 53 | if (rc != PSCI_E_SUCCESS) |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 54 | return PSCI_E_INVALID_PARAMS; |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 55 | |
Soby Mathew | f1f97a1 | 2015-07-15 12:13:26 +0100 | [diff] [blame] | 56 | /* Validate the entry point and get the entry_point_info */ |
| 57 | rc = psci_validate_entry_point(&ep, entrypoint, context_id); |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 58 | if (rc != PSCI_E_SUCCESS) |
| 59 | return rc; |
| 60 | |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 61 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 62 | * To turn this cpu on, specify which power |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 63 | * levels need to be turned on |
| 64 | */ |
Sandrine Bailleux | 7497bff | 2016-04-25 09:28:43 +0100 | [diff] [blame] | 65 | return psci_cpu_on_start(target_cpu, &ep); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | unsigned int psci_version(void) |
| 69 | { |
| 70 | return PSCI_MAJOR_VER | PSCI_MINOR_VER; |
| 71 | } |
| 72 | |
| 73 | int psci_cpu_suspend(unsigned int power_state, |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 74 | uintptr_t entrypoint, |
| 75 | u_register_t context_id) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 76 | { |
| 77 | int rc; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 78 | unsigned int target_pwrlvl, is_power_down_state; |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 79 | entry_point_info_t ep; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 80 | psci_power_state_t state_info = { {PSCI_LOCAL_STATE_RUN} }; |
| 81 | plat_local_state_t cpu_pd_state; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 82 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 83 | /* Validate the power_state parameter */ |
| 84 | rc = psci_validate_power_state(power_state, &state_info); |
| 85 | if (rc != PSCI_E_SUCCESS) { |
| 86 | assert(rc == PSCI_E_INVALID_PARAMS); |
| 87 | return rc; |
| 88 | } |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 89 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 90 | /* |
| 91 | * Get the value of the state type bit from the power state parameter. |
| 92 | */ |
| 93 | is_power_down_state = psci_get_pstate_type(power_state); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 94 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 95 | /* Sanity check the requested suspend levels */ |
Soby Mathew | 24ab34f | 2016-05-03 17:11:42 +0100 | [diff] [blame] | 96 | assert(psci_validate_suspend_req(&state_info, is_power_down_state) |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 97 | == PSCI_E_SUCCESS); |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 98 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 99 | target_pwrlvl = psci_find_target_suspend_lvl(&state_info); |
Sandrine Bailleux | f9f3bbf | 2016-06-22 16:35:01 +0100 | [diff] [blame] | 100 | if (target_pwrlvl == PSCI_INVALID_PWR_LVL) { |
| 101 | ERROR("Invalid target power level for suspend operation\n"); |
| 102 | panic(); |
| 103 | } |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 104 | |
| 105 | /* Fast path for CPU standby.*/ |
| 106 | if (is_cpu_standby_req(is_power_down_state, target_pwrlvl)) { |
| 107 | if (!psci_plat_pm_ops->cpu_standby) |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 108 | return PSCI_E_INVALID_PARAMS; |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 109 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 110 | /* |
| 111 | * Set the state of the CPU power domain to the platform |
| 112 | * specific retention state and enter the standby state. |
| 113 | */ |
| 114 | cpu_pd_state = state_info.pwr_domain_state[PSCI_CPU_PWR_LVL]; |
| 115 | psci_set_cpu_local_state(cpu_pd_state); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 116 | |
| 117 | #if ENABLE_PSCI_STAT |
| 118 | /* |
| 119 | * Capture time-stamp before CPU standby |
| 120 | * No cache maintenance is needed as caches |
| 121 | * are ON through out the CPU standby operation. |
| 122 | */ |
| 123 | PMF_CAPTURE_TIMESTAMP(psci_svc, PSCI_STAT_ID_ENTER_LOW_PWR, |
| 124 | PMF_NO_CACHE_MAINT); |
| 125 | #endif |
| 126 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 127 | psci_plat_pm_ops->cpu_standby(cpu_pd_state); |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 128 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 129 | /* Upon exit from standby, set the state back to RUN. */ |
| 130 | psci_set_cpu_local_state(PSCI_LOCAL_STATE_RUN); |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 131 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 132 | #if ENABLE_PSCI_STAT |
| 133 | /* Capture time-stamp after CPU standby */ |
| 134 | PMF_CAPTURE_TIMESTAMP(psci_svc, PSCI_STAT_ID_EXIT_LOW_PWR, |
| 135 | PMF_NO_CACHE_MAINT); |
| 136 | |
| 137 | /* Update PSCI stats */ |
| 138 | psci_stats_update_pwr_up(PSCI_CPU_PWR_LVL, &state_info, |
| 139 | PMF_NO_CACHE_MAINT); |
| 140 | #endif |
| 141 | |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 142 | return PSCI_E_SUCCESS; |
Vikram Kanigiri | 3b7c59b | 2014-03-21 11:57:10 +0000 | [diff] [blame] | 143 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 144 | |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 145 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 146 | * If a power down state has been requested, we need to verify entry |
| 147 | * point and program entry information. |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 148 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 149 | if (is_power_down_state) { |
Soby Mathew | f1f97a1 | 2015-07-15 12:13:26 +0100 | [diff] [blame] | 150 | rc = psci_validate_entry_point(&ep, entrypoint, context_id); |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 151 | if (rc != PSCI_E_SUCCESS) |
| 152 | return rc; |
| 153 | } |
Soby Mathew | f512157 | 2014-09-30 11:19:51 +0100 | [diff] [blame] | 154 | |
Soby Mathew | 8595b87 | 2015-01-06 15:36:38 +0000 | [diff] [blame] | 155 | /* |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 156 | * Do what is needed to enter the power down state. Upon success, |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 157 | * enter the final wfi which will power down this CPU. This function |
| 158 | * might return if the power down was abandoned for any reason, e.g. |
| 159 | * arrival of an interrupt |
Achin Gupta | 42c5280 | 2014-05-09 19:32:25 +0100 | [diff] [blame] | 160 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 161 | psci_cpu_suspend_start(&ep, |
| 162 | target_pwrlvl, |
| 163 | &state_info, |
| 164 | is_power_down_state); |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 165 | |
Soby Mathew | 74e52a7 | 2014-10-02 16:56:51 +0100 | [diff] [blame] | 166 | return PSCI_E_SUCCESS; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 167 | } |
| 168 | |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 169 | |
| 170 | int psci_system_suspend(uintptr_t entrypoint, u_register_t context_id) |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 171 | { |
| 172 | int rc; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 173 | psci_power_state_t state_info; |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 174 | entry_point_info_t ep; |
| 175 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 176 | /* Check if the current CPU is the last ON CPU in the system */ |
| 177 | if (!psci_is_last_on_cpu()) |
| 178 | return PSCI_E_DENIED; |
| 179 | |
Soby Mathew | f1f97a1 | 2015-07-15 12:13:26 +0100 | [diff] [blame] | 180 | /* Validate the entry point and get the entry_point_info */ |
| 181 | rc = psci_validate_entry_point(&ep, entrypoint, context_id); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 182 | if (rc != PSCI_E_SUCCESS) |
| 183 | return rc; |
| 184 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 185 | /* Query the psci_power_state for system suspend */ |
| 186 | psci_query_sys_suspend_pwrstate(&state_info); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 187 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 188 | /* Ensure that the psci_power_state makes sense */ |
| 189 | assert(psci_find_target_suspend_lvl(&state_info) == PLAT_MAX_PWR_LVL); |
| 190 | assert(psci_validate_suspend_req(&state_info, PSTATE_TYPE_POWERDOWN) |
| 191 | == PSCI_E_SUCCESS); |
| 192 | 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] | 193 | |
| 194 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 195 | * Do what is needed to enter the system suspend state. This function |
| 196 | * might return if the power down was abandoned for any reason, e.g. |
| 197 | * arrival of an interrupt |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 198 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 199 | psci_cpu_suspend_start(&ep, |
| 200 | PLAT_MAX_PWR_LVL, |
| 201 | &state_info, |
| 202 | PSTATE_TYPE_POWERDOWN); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 203 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 204 | return PSCI_E_SUCCESS; |
| 205 | } |
| 206 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 207 | int psci_cpu_off(void) |
| 208 | { |
| 209 | int rc; |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 210 | unsigned int target_pwrlvl = PLAT_MAX_PWR_LVL; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 211 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 212 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 213 | * Do what is needed to power off this CPU and possible higher power |
| 214 | * levels if it able to do so. Upon success, enter the final wfi |
| 215 | * which will power down this CPU. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 216 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 217 | rc = psci_do_cpu_off(target_pwrlvl); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 218 | |
Achin Gupta | 3140a9e | 2013-12-02 16:23:12 +0000 | [diff] [blame] | 219 | /* |
| 220 | * The only error cpu_off can return is E_DENIED. So check if that's |
| 221 | * indeed the case. |
| 222 | */ |
Soby Mathew | 24ab34f | 2016-05-03 17:11:42 +0100 | [diff] [blame] | 223 | assert(rc == PSCI_E_DENIED); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 224 | |
| 225 | return rc; |
| 226 | } |
| 227 | |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 228 | int psci_affinity_info(u_register_t target_affinity, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 229 | unsigned int lowest_affinity_level) |
| 230 | { |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 231 | unsigned int target_idx; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 232 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 233 | /* We dont support level higher than PSCI_CPU_PWR_LVL */ |
| 234 | if (lowest_affinity_level > PSCI_CPU_PWR_LVL) |
| 235 | return PSCI_E_INVALID_PARAMS; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 236 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 237 | /* Calculate the cpu index of the target */ |
| 238 | target_idx = plat_core_pos_by_mpidr(target_affinity); |
| 239 | if (target_idx == -1) |
| 240 | return PSCI_E_INVALID_PARAMS; |
Achin Gupta | 75f7367 | 2013-12-05 16:33:10 +0000 | [diff] [blame] | 241 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 242 | return psci_get_aff_info_state_by_idx(target_idx); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 243 | } |
| 244 | |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 245 | int psci_migrate(u_register_t target_cpu) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 246 | { |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 247 | int rc; |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 248 | u_register_t resident_cpu_mpidr; |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 249 | |
| 250 | rc = psci_spd_migrate_info(&resident_cpu_mpidr); |
| 251 | if (rc != PSCI_TOS_UP_MIG_CAP) |
| 252 | return (rc == PSCI_TOS_NOT_UP_MIG_CAP) ? |
| 253 | PSCI_E_DENIED : PSCI_E_NOT_SUPPORTED; |
| 254 | |
| 255 | /* |
| 256 | * Migrate should only be invoked on the CPU where |
| 257 | * the Secure OS is resident. |
| 258 | */ |
| 259 | if (resident_cpu_mpidr != read_mpidr_el1()) |
| 260 | return PSCI_E_NOT_PRESENT; |
| 261 | |
| 262 | /* Check the validity of the specified target cpu */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 263 | rc = psci_validate_mpidr(target_cpu); |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 264 | if (rc != PSCI_E_SUCCESS) |
| 265 | return PSCI_E_INVALID_PARAMS; |
| 266 | |
| 267 | assert(psci_spd_pm && psci_spd_pm->svc_migrate); |
| 268 | |
| 269 | rc = psci_spd_pm->svc_migrate(read_mpidr_el1(), target_cpu); |
| 270 | assert(rc == PSCI_E_SUCCESS || rc == PSCI_E_INTERN_FAIL); |
| 271 | |
| 272 | return rc; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 273 | } |
| 274 | |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 275 | int psci_migrate_info_type(void) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 276 | { |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 277 | u_register_t resident_cpu_mpidr; |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 278 | |
| 279 | return psci_spd_migrate_info(&resident_cpu_mpidr); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 280 | } |
| 281 | |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 282 | long psci_migrate_info_up_cpu(void) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 283 | { |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 284 | u_register_t resident_cpu_mpidr; |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 285 | int rc; |
| 286 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 287 | /* |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 288 | * Return value of this depends upon what |
| 289 | * psci_spd_migrate_info() returns. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 290 | */ |
Soby Mathew | 110fe36 | 2014-10-23 10:35:34 +0100 | [diff] [blame] | 291 | rc = psci_spd_migrate_info(&resident_cpu_mpidr); |
| 292 | if (rc != PSCI_TOS_NOT_UP_MIG_CAP && rc != PSCI_TOS_UP_MIG_CAP) |
| 293 | return PSCI_E_INVALID_PARAMS; |
| 294 | |
| 295 | return resident_cpu_mpidr; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 296 | } |
| 297 | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 298 | int psci_features(unsigned int psci_fid) |
| 299 | { |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 300 | unsigned int local_caps = psci_caps; |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 301 | |
| 302 | /* Check if it is a 64 bit function */ |
| 303 | if (((psci_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_64) |
| 304 | local_caps &= PSCI_CAP_64BIT_MASK; |
| 305 | |
| 306 | /* Check for invalid fid */ |
| 307 | if (!(is_std_svc_call(psci_fid) && is_valid_fast_smc(psci_fid) |
| 308 | && is_psci_fid(psci_fid))) |
| 309 | return PSCI_E_NOT_SUPPORTED; |
| 310 | |
| 311 | |
| 312 | /* Check if the psci fid is supported or not */ |
| 313 | if (!(local_caps & define_psci_cap(psci_fid))) |
| 314 | return PSCI_E_NOT_SUPPORTED; |
| 315 | |
| 316 | /* Format the feature flags */ |
| 317 | if (psci_fid == PSCI_CPU_SUSPEND_AARCH32 || |
| 318 | psci_fid == PSCI_CPU_SUSPEND_AARCH64) { |
| 319 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 320 | * The trusted firmware does not support OS Initiated Mode. |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 321 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 322 | return (FF_PSTATE << FF_PSTATE_SHIFT) | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 323 | ((!FF_SUPPORTS_OS_INIT_MODE) << FF_MODE_SUPPORT_SHIFT); |
| 324 | } |
| 325 | |
| 326 | /* Return 0 for all other fid's */ |
| 327 | return PSCI_E_SUCCESS; |
| 328 | } |
| 329 | |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 330 | /******************************************************************************* |
| 331 | * PSCI top level handler for servicing SMCs. |
| 332 | ******************************************************************************/ |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 333 | u_register_t psci_smc_handler(uint32_t smc_fid, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 334 | u_register_t x1, |
| 335 | u_register_t x2, |
| 336 | u_register_t x3, |
| 337 | u_register_t x4, |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 338 | void *cookie, |
| 339 | void *handle, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 340 | u_register_t flags) |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 341 | { |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 342 | if (is_caller_secure(flags)) |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 343 | return SMC_UNK; |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 344 | |
Soby Mathew | 61e615b | 2015-01-15 11:49:49 +0000 | [diff] [blame] | 345 | /* Check the fid against the capabilities */ |
| 346 | if (!(psci_caps & define_psci_cap(smc_fid))) |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 347 | return SMC_UNK; |
Soby Mathew | 61e615b | 2015-01-15 11:49:49 +0000 | [diff] [blame] | 348 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 349 | if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) { |
| 350 | /* 32-bit PSCI function, clear top parameter bits */ |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 351 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 352 | x1 = (uint32_t)x1; |
| 353 | x2 = (uint32_t)x2; |
| 354 | x3 = (uint32_t)x3; |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 355 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 356 | switch (smc_fid) { |
| 357 | case PSCI_VERSION: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 358 | return psci_version(); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 359 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 360 | case PSCI_CPU_OFF: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 361 | return psci_cpu_off(); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 362 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 363 | case PSCI_CPU_SUSPEND_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 364 | return psci_cpu_suspend(x1, x2, x3); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 365 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 366 | case PSCI_CPU_ON_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 367 | return psci_cpu_on(x1, x2, x3); |
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 | case PSCI_AFFINITY_INFO_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 370 | return psci_affinity_info(x1, x2); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 371 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 372 | case PSCI_MIG_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 373 | return psci_migrate(x1); |
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 | case PSCI_MIG_INFO_TYPE: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 376 | return psci_migrate_info_type(); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 377 | |
| 378 | case PSCI_MIG_INFO_UP_CPU_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 379 | return psci_migrate_info_up_cpu(); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 380 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 381 | case PSCI_SYSTEM_SUSPEND_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 382 | return psci_system_suspend(x1, x2); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 383 | |
Juan Castillo | 4dc4a47 | 2014-08-12 11:17:06 +0100 | [diff] [blame] | 384 | case PSCI_SYSTEM_OFF: |
| 385 | psci_system_off(); |
| 386 | /* We should never return from psci_system_off() */ |
| 387 | |
| 388 | case PSCI_SYSTEM_RESET: |
| 389 | psci_system_reset(); |
| 390 | /* We should never return from psci_system_reset() */ |
| 391 | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 392 | case PSCI_FEATURES: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 393 | return psci_features(x1); |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 394 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 395 | #if ENABLE_PSCI_STAT |
| 396 | case PSCI_STAT_RESIDENCY_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 397 | return psci_stat_residency(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 398 | |
| 399 | case PSCI_STAT_COUNT_AARCH32: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 400 | return psci_stat_count(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 401 | #endif |
| 402 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 403 | default: |
| 404 | break; |
| 405 | } |
| 406 | } else { |
| 407 | /* 64-bit PSCI function */ |
| 408 | |
| 409 | switch (smc_fid) { |
| 410 | case PSCI_CPU_SUSPEND_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 411 | return psci_cpu_suspend(x1, x2, x3); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 412 | |
| 413 | case PSCI_CPU_ON_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 414 | return psci_cpu_on(x1, x2, x3); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 415 | |
| 416 | case PSCI_AFFINITY_INFO_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 417 | return psci_affinity_info(x1, x2); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 418 | |
| 419 | case PSCI_MIG_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 420 | return psci_migrate(x1); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 421 | |
| 422 | case PSCI_MIG_INFO_UP_CPU_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 423 | return psci_migrate_info_up_cpu(); |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 424 | |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 425 | case PSCI_SYSTEM_SUSPEND_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 426 | return psci_system_suspend(x1, x2); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 427 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 428 | #if ENABLE_PSCI_STAT |
| 429 | case PSCI_STAT_RESIDENCY_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 430 | return psci_stat_residency(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 431 | |
| 432 | case PSCI_STAT_COUNT_AARCH64: |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 433 | return psci_stat_count(x1, x2); |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 434 | #endif |
| 435 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 436 | default: |
| 437 | break; |
| 438 | } |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 439 | } |
| 440 | |
Andrew Thoelke | 89a3c84 | 2014-06-10 16:37:37 +0100 | [diff] [blame] | 441 | WARN("Unimplemented PSCI Call: 0x%x \n", smc_fid); |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 442 | return SMC_UNK; |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 443 | } |