blob: 0a3a60ace0541967fbad0627ec04fb830b76c7b3 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Soby Mathewa0fedc42016-06-16 14:52:04 +01002 * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
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 Handley2bd4ef22014-04-09 13:14:54 +010031#include <arch.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010032#include <arch_helpers.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010033#include <assert.h>
Soby Mathew96168382014-12-17 14:47:57 +000034#include <debug.h>
35#include <platform.h>
dp-arm3cac7862016-09-19 11:18:44 +010036#include <pmf.h>
37#include <runtime_instr.h>
Soby Mathewd0194872016-04-29 19:01:30 +010038#include <smcc.h>
Soby Mathew981487a2015-07-13 14:10:57 +010039#include <string.h>
Dan Handley714a0d22014-04-09 13:13:04 +010040#include "psci_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010041
42/*******************************************************************************
43 * PSCI frontend api for servicing SMCs. Described in the PSCI spec.
44 ******************************************************************************/
Soby Mathew011ca182015-07-29 17:05:03 +010045int psci_cpu_on(u_register_t target_cpu,
46 uintptr_t entrypoint,
47 u_register_t context_id)
Achin Gupta4f6ad662013-10-25 09:08:21 +010048
49{
50 int rc;
Soby Mathew8595b872015-01-06 15:36:38 +000051 entry_point_info_t ep;
Achin Gupta4f6ad662013-10-25 09:08:21 +010052
53 /* Determine if the cpu exists of not */
Soby Mathew981487a2015-07-13 14:10:57 +010054 rc = psci_validate_mpidr(target_cpu);
55 if (rc != PSCI_E_SUCCESS)
Soby Mathew74e52a72014-10-02 16:56:51 +010056 return PSCI_E_INVALID_PARAMS;
Soby Mathew74e52a72014-10-02 16:56:51 +010057
Soby Mathewf1f97a12015-07-15 12:13:26 +010058 /* Validate the entry point and get the entry_point_info */
59 rc = psci_validate_entry_point(&ep, entrypoint, context_id);
Soby Mathew8595b872015-01-06 15:36:38 +000060 if (rc != PSCI_E_SUCCESS)
61 return rc;
62
Soby Mathew8595b872015-01-06 15:36:38 +000063 /*
Soby Mathew981487a2015-07-13 14:10:57 +010064 * To turn this cpu on, specify which power
Achin Gupta0959db52013-12-02 17:33:04 +000065 * levels need to be turned on
66 */
Sandrine Bailleux7497bff2016-04-25 09:28:43 +010067 return psci_cpu_on_start(target_cpu, &ep);
Achin Gupta4f6ad662013-10-25 09:08:21 +010068}
69
70unsigned int psci_version(void)
71{
72 return PSCI_MAJOR_VER | PSCI_MINOR_VER;
73}
74
75int psci_cpu_suspend(unsigned int power_state,
Soby Mathew011ca182015-07-29 17:05:03 +010076 uintptr_t entrypoint,
77 u_register_t context_id)
Achin Gupta4f6ad662013-10-25 09:08:21 +010078{
79 int rc;
Soby Mathew981487a2015-07-13 14:10:57 +010080 unsigned int target_pwrlvl, is_power_down_state;
Soby Mathew8595b872015-01-06 15:36:38 +000081 entry_point_info_t ep;
Soby Mathew981487a2015-07-13 14:10:57 +010082 psci_power_state_t state_info = { {PSCI_LOCAL_STATE_RUN} };
83 plat_local_state_t cpu_pd_state;
Achin Gupta4f6ad662013-10-25 09:08:21 +010084
Soby Mathew981487a2015-07-13 14:10:57 +010085 /* Validate the power_state parameter */
86 rc = psci_validate_power_state(power_state, &state_info);
87 if (rc != PSCI_E_SUCCESS) {
88 assert(rc == PSCI_E_INVALID_PARAMS);
89 return rc;
90 }
Vikram Kanigirif100f412014-04-01 19:26:26 +010091
Soby Mathew981487a2015-07-13 14:10:57 +010092 /*
93 * Get the value of the state type bit from the power state parameter.
94 */
95 is_power_down_state = psci_get_pstate_type(power_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +010096
Soby Mathew981487a2015-07-13 14:10:57 +010097 /* Sanity check the requested suspend levels */
Soby Mathew24ab34f2016-05-03 17:11:42 +010098 assert(psci_validate_suspend_req(&state_info, is_power_down_state)
Soby Mathew981487a2015-07-13 14:10:57 +010099 == PSCI_E_SUCCESS);
Soby Mathew74e52a72014-10-02 16:56:51 +0100100
Soby Mathew981487a2015-07-13 14:10:57 +0100101 target_pwrlvl = psci_find_target_suspend_lvl(&state_info);
Sandrine Bailleuxf9f3bbf2016-06-22 16:35:01 +0100102 if (target_pwrlvl == PSCI_INVALID_PWR_LVL) {
103 ERROR("Invalid target power level for suspend operation\n");
104 panic();
105 }
Soby Mathew981487a2015-07-13 14:10:57 +0100106
107 /* Fast path for CPU standby.*/
108 if (is_cpu_standby_req(is_power_down_state, target_pwrlvl)) {
109 if (!psci_plat_pm_ops->cpu_standby)
Soby Mathew74e52a72014-10-02 16:56:51 +0100110 return PSCI_E_INVALID_PARAMS;
Soby Mathew74e52a72014-10-02 16:56:51 +0100111
Soby Mathew981487a2015-07-13 14:10:57 +0100112 /*
113 * Set the state of the CPU power domain to the platform
114 * specific retention state and enter the standby state.
115 */
116 cpu_pd_state = state_info.pwr_domain_state[PSCI_CPU_PWR_LVL];
117 psci_set_cpu_local_state(cpu_pd_state);
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100118
119#if ENABLE_PSCI_STAT
120 /*
121 * Capture time-stamp before CPU standby
122 * No cache maintenance is needed as caches
123 * are ON through out the CPU standby operation.
124 */
125 PMF_CAPTURE_TIMESTAMP(psci_svc, PSCI_STAT_ID_ENTER_LOW_PWR,
126 PMF_NO_CACHE_MAINT);
127#endif
128
dp-arm3cac7862016-09-19 11:18:44 +0100129#if ENABLE_RUNTIME_INSTRUMENTATION
130 PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
131 RT_INSTR_ENTER_HW_LOW_PWR,
132 PMF_NO_CACHE_MAINT);
133#endif
134
Soby Mathew981487a2015-07-13 14:10:57 +0100135 psci_plat_pm_ops->cpu_standby(cpu_pd_state);
Achin Gupta42c52802014-05-09 19:32:25 +0100136
Soby Mathew981487a2015-07-13 14:10:57 +0100137 /* Upon exit from standby, set the state back to RUN. */
138 psci_set_cpu_local_state(PSCI_LOCAL_STATE_RUN);
Achin Gupta42c52802014-05-09 19:32:25 +0100139
dp-arm3cac7862016-09-19 11:18:44 +0100140#if ENABLE_RUNTIME_INSTRUMENTATION
141 PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
142 RT_INSTR_EXIT_HW_LOW_PWR,
143 PMF_NO_CACHE_MAINT);
144#endif
145
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100146#if ENABLE_PSCI_STAT
147 /* Capture time-stamp after CPU standby */
148 PMF_CAPTURE_TIMESTAMP(psci_svc, PSCI_STAT_ID_EXIT_LOW_PWR,
149 PMF_NO_CACHE_MAINT);
150
151 /* Update PSCI stats */
152 psci_stats_update_pwr_up(PSCI_CPU_PWR_LVL, &state_info,
153 PMF_NO_CACHE_MAINT);
154#endif
155
Soby Mathew74e52a72014-10-02 16:56:51 +0100156 return PSCI_E_SUCCESS;
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000157 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100158
Achin Gupta42c52802014-05-09 19:32:25 +0100159 /*
Soby Mathew981487a2015-07-13 14:10:57 +0100160 * If a power down state has been requested, we need to verify entry
161 * point and program entry information.
Soby Mathew8595b872015-01-06 15:36:38 +0000162 */
Soby Mathew981487a2015-07-13 14:10:57 +0100163 if (is_power_down_state) {
Soby Mathewf1f97a12015-07-15 12:13:26 +0100164 rc = psci_validate_entry_point(&ep, entrypoint, context_id);
Soby Mathew981487a2015-07-13 14:10:57 +0100165 if (rc != PSCI_E_SUCCESS)
166 return rc;
167 }
Soby Mathewf5121572014-09-30 11:19:51 +0100168
Soby Mathew8595b872015-01-06 15:36:38 +0000169 /*
Achin Gupta42c52802014-05-09 19:32:25 +0100170 * Do what is needed to enter the power down state. Upon success,
Soby Mathew981487a2015-07-13 14:10:57 +0100171 * enter the final wfi which will power down this CPU. This function
172 * might return if the power down was abandoned for any reason, e.g.
173 * arrival of an interrupt
Achin Gupta42c52802014-05-09 19:32:25 +0100174 */
Soby Mathew981487a2015-07-13 14:10:57 +0100175 psci_cpu_suspend_start(&ep,
176 target_pwrlvl,
177 &state_info,
178 is_power_down_state);
Soby Mathew74e52a72014-10-02 16:56:51 +0100179
Soby Mathew74e52a72014-10-02 16:56:51 +0100180 return PSCI_E_SUCCESS;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100181}
182
Soby Mathew011ca182015-07-29 17:05:03 +0100183
184int psci_system_suspend(uintptr_t entrypoint, u_register_t context_id)
Soby Mathew96168382014-12-17 14:47:57 +0000185{
186 int rc;
Soby Mathew981487a2015-07-13 14:10:57 +0100187 psci_power_state_t state_info;
Soby Mathew96168382014-12-17 14:47:57 +0000188 entry_point_info_t ep;
189
Soby Mathew96168382014-12-17 14:47:57 +0000190 /* Check if the current CPU is the last ON CPU in the system */
191 if (!psci_is_last_on_cpu())
192 return PSCI_E_DENIED;
193
Soby Mathewf1f97a12015-07-15 12:13:26 +0100194 /* Validate the entry point and get the entry_point_info */
195 rc = psci_validate_entry_point(&ep, entrypoint, context_id);
Soby Mathew96168382014-12-17 14:47:57 +0000196 if (rc != PSCI_E_SUCCESS)
197 return rc;
198
Soby Mathew981487a2015-07-13 14:10:57 +0100199 /* Query the psci_power_state for system suspend */
200 psci_query_sys_suspend_pwrstate(&state_info);
Soby Mathew96168382014-12-17 14:47:57 +0000201
Soby Mathew981487a2015-07-13 14:10:57 +0100202 /* Ensure that the psci_power_state makes sense */
203 assert(psci_find_target_suspend_lvl(&state_info) == PLAT_MAX_PWR_LVL);
204 assert(psci_validate_suspend_req(&state_info, PSTATE_TYPE_POWERDOWN)
205 == PSCI_E_SUCCESS);
206 assert(is_local_state_off(state_info.pwr_domain_state[PLAT_MAX_PWR_LVL]));
Soby Mathew96168382014-12-17 14:47:57 +0000207
208 /*
Soby Mathew981487a2015-07-13 14:10:57 +0100209 * Do what is needed to enter the system suspend state. This function
210 * might return if the power down was abandoned for any reason, e.g.
211 * arrival of an interrupt
Soby Mathew96168382014-12-17 14:47:57 +0000212 */
Soby Mathew981487a2015-07-13 14:10:57 +0100213 psci_cpu_suspend_start(&ep,
214 PLAT_MAX_PWR_LVL,
215 &state_info,
216 PSTATE_TYPE_POWERDOWN);
Soby Mathew96168382014-12-17 14:47:57 +0000217
Soby Mathew96168382014-12-17 14:47:57 +0000218 return PSCI_E_SUCCESS;
219}
220
Achin Gupta4f6ad662013-10-25 09:08:21 +0100221int psci_cpu_off(void)
222{
223 int rc;
Soby Mathew011ca182015-07-29 17:05:03 +0100224 unsigned int target_pwrlvl = PLAT_MAX_PWR_LVL;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100225
Achin Gupta4f6ad662013-10-25 09:08:21 +0100226 /*
Soby Mathew981487a2015-07-13 14:10:57 +0100227 * Do what is needed to power off this CPU and possible higher power
228 * levels if it able to do so. Upon success, enter the final wfi
229 * which will power down this CPU.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100230 */
Soby Mathew981487a2015-07-13 14:10:57 +0100231 rc = psci_do_cpu_off(target_pwrlvl);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100232
Achin Gupta3140a9e2013-12-02 16:23:12 +0000233 /*
234 * The only error cpu_off can return is E_DENIED. So check if that's
235 * indeed the case.
236 */
Soby Mathew24ab34f2016-05-03 17:11:42 +0100237 assert(rc == PSCI_E_DENIED);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100238
239 return rc;
240}
241
Soby Mathew011ca182015-07-29 17:05:03 +0100242int psci_affinity_info(u_register_t target_affinity,
Achin Gupta4f6ad662013-10-25 09:08:21 +0100243 unsigned int lowest_affinity_level)
244{
Soby Mathew981487a2015-07-13 14:10:57 +0100245 unsigned int target_idx;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100246
Soby Mathew981487a2015-07-13 14:10:57 +0100247 /* We dont support level higher than PSCI_CPU_PWR_LVL */
248 if (lowest_affinity_level > PSCI_CPU_PWR_LVL)
249 return PSCI_E_INVALID_PARAMS;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100250
Soby Mathew981487a2015-07-13 14:10:57 +0100251 /* Calculate the cpu index of the target */
252 target_idx = plat_core_pos_by_mpidr(target_affinity);
253 if (target_idx == -1)
254 return PSCI_E_INVALID_PARAMS;
Achin Gupta75f73672013-12-05 16:33:10 +0000255
Soby Mathew981487a2015-07-13 14:10:57 +0100256 return psci_get_aff_info_state_by_idx(target_idx);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100257}
258
Soby Mathew011ca182015-07-29 17:05:03 +0100259int psci_migrate(u_register_t target_cpu)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100260{
Soby Mathew110fe362014-10-23 10:35:34 +0100261 int rc;
Soby Mathew011ca182015-07-29 17:05:03 +0100262 u_register_t resident_cpu_mpidr;
Soby Mathew110fe362014-10-23 10:35:34 +0100263
264 rc = psci_spd_migrate_info(&resident_cpu_mpidr);
265 if (rc != PSCI_TOS_UP_MIG_CAP)
266 return (rc == PSCI_TOS_NOT_UP_MIG_CAP) ?
267 PSCI_E_DENIED : PSCI_E_NOT_SUPPORTED;
268
269 /*
270 * Migrate should only be invoked on the CPU where
271 * the Secure OS is resident.
272 */
273 if (resident_cpu_mpidr != read_mpidr_el1())
274 return PSCI_E_NOT_PRESENT;
275
276 /* Check the validity of the specified target cpu */
Soby Mathew981487a2015-07-13 14:10:57 +0100277 rc = psci_validate_mpidr(target_cpu);
Soby Mathew110fe362014-10-23 10:35:34 +0100278 if (rc != PSCI_E_SUCCESS)
279 return PSCI_E_INVALID_PARAMS;
280
281 assert(psci_spd_pm && psci_spd_pm->svc_migrate);
282
283 rc = psci_spd_pm->svc_migrate(read_mpidr_el1(), target_cpu);
284 assert(rc == PSCI_E_SUCCESS || rc == PSCI_E_INTERN_FAIL);
285
286 return rc;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100287}
288
Soby Mathew110fe362014-10-23 10:35:34 +0100289int psci_migrate_info_type(void)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100290{
Soby Mathew011ca182015-07-29 17:05:03 +0100291 u_register_t resident_cpu_mpidr;
Soby Mathew110fe362014-10-23 10:35:34 +0100292
293 return psci_spd_migrate_info(&resident_cpu_mpidr);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100294}
295
Soby Mathew110fe362014-10-23 10:35:34 +0100296long psci_migrate_info_up_cpu(void)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100297{
Soby Mathew011ca182015-07-29 17:05:03 +0100298 u_register_t resident_cpu_mpidr;
Soby Mathew110fe362014-10-23 10:35:34 +0100299 int rc;
300
Achin Gupta4f6ad662013-10-25 09:08:21 +0100301 /*
Soby Mathew110fe362014-10-23 10:35:34 +0100302 * Return value of this depends upon what
303 * psci_spd_migrate_info() returns.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100304 */
Soby Mathew110fe362014-10-23 10:35:34 +0100305 rc = psci_spd_migrate_info(&resident_cpu_mpidr);
306 if (rc != PSCI_TOS_NOT_UP_MIG_CAP && rc != PSCI_TOS_UP_MIG_CAP)
307 return PSCI_E_INVALID_PARAMS;
308
309 return resident_cpu_mpidr;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100310}
311
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100312int psci_node_hw_state(u_register_t target_cpu,
313 unsigned int power_level)
314{
315 int rc;
316
317 /* Validate target_cpu */
318 rc = psci_validate_mpidr(target_cpu);
319 if (rc != PSCI_E_SUCCESS)
320 return PSCI_E_INVALID_PARAMS;
321
322 /* Validate power_level against PLAT_MAX_PWR_LVL */
323 if (power_level > PLAT_MAX_PWR_LVL)
324 return PSCI_E_INVALID_PARAMS;
325
326 /*
327 * Dispatch this call to platform to query power controller, and pass on
328 * to the caller what it returns
329 */
330 assert(psci_plat_pm_ops->get_node_hw_state);
331 rc = psci_plat_pm_ops->get_node_hw_state(target_cpu, power_level);
332 assert((rc >= HW_ON && rc <= HW_STANDBY) || rc == PSCI_E_NOT_SUPPORTED
333 || rc == PSCI_E_INVALID_PARAMS);
334 return rc;
335}
336
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000337int psci_features(unsigned int psci_fid)
338{
Soby Mathew011ca182015-07-29 17:05:03 +0100339 unsigned int local_caps = psci_caps;
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000340
341 /* Check if it is a 64 bit function */
342 if (((psci_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_64)
343 local_caps &= PSCI_CAP_64BIT_MASK;
344
345 /* Check for invalid fid */
346 if (!(is_std_svc_call(psci_fid) && is_valid_fast_smc(psci_fid)
347 && is_psci_fid(psci_fid)))
348 return PSCI_E_NOT_SUPPORTED;
349
350
351 /* Check if the psci fid is supported or not */
352 if (!(local_caps & define_psci_cap(psci_fid)))
353 return PSCI_E_NOT_SUPPORTED;
354
355 /* Format the feature flags */
356 if (psci_fid == PSCI_CPU_SUSPEND_AARCH32 ||
357 psci_fid == PSCI_CPU_SUSPEND_AARCH64) {
358 /*
Soby Mathew981487a2015-07-13 14:10:57 +0100359 * The trusted firmware does not support OS Initiated Mode.
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000360 */
Soby Mathew981487a2015-07-13 14:10:57 +0100361 return (FF_PSTATE << FF_PSTATE_SHIFT) |
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000362 ((!FF_SUPPORTS_OS_INIT_MODE) << FF_MODE_SUPPORT_SHIFT);
363 }
364
365 /* Return 0 for all other fid's */
366 return PSCI_E_SUCCESS;
367}
368
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000369/*******************************************************************************
370 * PSCI top level handler for servicing SMCs.
371 ******************************************************************************/
Soby Mathewd0194872016-04-29 19:01:30 +0100372u_register_t psci_smc_handler(uint32_t smc_fid,
Soby Mathewa0fedc42016-06-16 14:52:04 +0100373 u_register_t x1,
374 u_register_t x2,
375 u_register_t x3,
376 u_register_t x4,
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000377 void *cookie,
378 void *handle,
Soby Mathewa0fedc42016-06-16 14:52:04 +0100379 u_register_t flags)
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000380{
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100381 if (is_caller_secure(flags))
Soby Mathewd0194872016-04-29 19:01:30 +0100382 return SMC_UNK;
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000383
Soby Mathew61e615b2015-01-15 11:49:49 +0000384 /* Check the fid against the capabilities */
385 if (!(psci_caps & define_psci_cap(smc_fid)))
Soby Mathewd0194872016-04-29 19:01:30 +0100386 return SMC_UNK;
Soby Mathew61e615b2015-01-15 11:49:49 +0000387
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100388 if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) {
389 /* 32-bit PSCI function, clear top parameter bits */
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000390
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100391 x1 = (uint32_t)x1;
392 x2 = (uint32_t)x2;
393 x3 = (uint32_t)x3;
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000394
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100395 switch (smc_fid) {
396 case PSCI_VERSION:
Soby Mathewd0194872016-04-29 19:01:30 +0100397 return psci_version();
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000398
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100399 case PSCI_CPU_OFF:
Soby Mathewd0194872016-04-29 19:01:30 +0100400 return psci_cpu_off();
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000401
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100402 case PSCI_CPU_SUSPEND_AARCH32:
Soby Mathewd0194872016-04-29 19:01:30 +0100403 return psci_cpu_suspend(x1, x2, x3);
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000404
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100405 case PSCI_CPU_ON_AARCH32:
Soby Mathewd0194872016-04-29 19:01:30 +0100406 return psci_cpu_on(x1, x2, x3);
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000407
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100408 case PSCI_AFFINITY_INFO_AARCH32:
Soby Mathewd0194872016-04-29 19:01:30 +0100409 return psci_affinity_info(x1, x2);
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000410
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100411 case PSCI_MIG_AARCH32:
Soby Mathewd0194872016-04-29 19:01:30 +0100412 return psci_migrate(x1);
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000413
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100414 case PSCI_MIG_INFO_TYPE:
Soby Mathewd0194872016-04-29 19:01:30 +0100415 return psci_migrate_info_type();
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100416
417 case PSCI_MIG_INFO_UP_CPU_AARCH32:
Soby Mathewd0194872016-04-29 19:01:30 +0100418 return psci_migrate_info_up_cpu();
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100419
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100420 case PSCI_NODE_HW_STATE_AARCH32:
421 return psci_node_hw_state(x1, x2);
422
Soby Mathew96168382014-12-17 14:47:57 +0000423 case PSCI_SYSTEM_SUSPEND_AARCH32:
Soby Mathewd0194872016-04-29 19:01:30 +0100424 return psci_system_suspend(x1, x2);
Soby Mathew96168382014-12-17 14:47:57 +0000425
Juan Castillo4dc4a472014-08-12 11:17:06 +0100426 case PSCI_SYSTEM_OFF:
427 psci_system_off();
428 /* We should never return from psci_system_off() */
429
430 case PSCI_SYSTEM_RESET:
431 psci_system_reset();
432 /* We should never return from psci_system_reset() */
433
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000434 case PSCI_FEATURES:
Soby Mathewd0194872016-04-29 19:01:30 +0100435 return psci_features(x1);
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000436
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100437#if ENABLE_PSCI_STAT
438 case PSCI_STAT_RESIDENCY_AARCH32:
Soby Mathewd0194872016-04-29 19:01:30 +0100439 return psci_stat_residency(x1, x2);
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100440
441 case PSCI_STAT_COUNT_AARCH32:
Soby Mathewd0194872016-04-29 19:01:30 +0100442 return psci_stat_count(x1, x2);
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100443#endif
444
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100445 default:
446 break;
447 }
448 } else {
449 /* 64-bit PSCI function */
450
451 switch (smc_fid) {
452 case PSCI_CPU_SUSPEND_AARCH64:
Soby Mathewd0194872016-04-29 19:01:30 +0100453 return psci_cpu_suspend(x1, x2, x3);
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100454
455 case PSCI_CPU_ON_AARCH64:
Soby Mathewd0194872016-04-29 19:01:30 +0100456 return psci_cpu_on(x1, x2, x3);
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100457
458 case PSCI_AFFINITY_INFO_AARCH64:
Soby Mathewd0194872016-04-29 19:01:30 +0100459 return psci_affinity_info(x1, x2);
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100460
461 case PSCI_MIG_AARCH64:
Soby Mathewd0194872016-04-29 19:01:30 +0100462 return psci_migrate(x1);
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100463
464 case PSCI_MIG_INFO_UP_CPU_AARCH64:
Soby Mathewd0194872016-04-29 19:01:30 +0100465 return psci_migrate_info_up_cpu();
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100466
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100467 case PSCI_NODE_HW_STATE_AARCH64:
468 return psci_node_hw_state(x1, x2);
469
Soby Mathew96168382014-12-17 14:47:57 +0000470 case PSCI_SYSTEM_SUSPEND_AARCH64:
Soby Mathewd0194872016-04-29 19:01:30 +0100471 return psci_system_suspend(x1, x2);
Soby Mathew96168382014-12-17 14:47:57 +0000472
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100473#if ENABLE_PSCI_STAT
474 case PSCI_STAT_RESIDENCY_AARCH64:
Soby Mathewd0194872016-04-29 19:01:30 +0100475 return psci_stat_residency(x1, x2);
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100476
477 case PSCI_STAT_COUNT_AARCH64:
Soby Mathewd0194872016-04-29 19:01:30 +0100478 return psci_stat_count(x1, x2);
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100479#endif
480
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100481 default:
482 break;
483 }
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000484 }
485
Andrew Thoelke89a3c842014-06-10 16:37:37 +0100486 WARN("Unimplemented PSCI Call: 0x%x \n", smc_fid);
Soby Mathewd0194872016-04-29 19:01:30 +0100487 return SMC_UNK;
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000488}