blob: b23ed9433d8384b1f5c95df109eb7cdd7e3d9ca0 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Soby Mathewb911cc72017-02-13 12:46:28 +00002 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
7#ifndef __PSCI_H__
8#define __PSCI_H__
9
Soby Mathew523d6332015-01-08 18:02:19 +000010#include <bakery_lock.h>
Soby Mathew89256b82016-09-13 14:19:08 +010011#include <bl_common.h>
Soby Mathew981487a2015-07-13 14:10:57 +010012#include <platform_def.h> /* for PLAT_NUM_PWR_DOMAINS */
13#if ENABLE_PLAT_COMPAT
14#include <psci_compat.h>
15#endif
Soby Mathewb911cc72017-02-13 12:46:28 +000016#include <psci_lib.h> /* To maintain compatibility for SPDs */
Dan Handley2bd4ef22014-04-09 13:14:54 +010017
Achin Gupta4f6ad662013-10-25 09:08:21 +010018/*******************************************************************************
Sandrine Bailleuxf4119ec2015-12-17 13:58:58 +000019 * Number of power domains whose state this PSCI implementation can track
Soby Mathew523d6332015-01-08 18:02:19 +000020 ******************************************************************************/
Soby Mathew981487a2015-07-13 14:10:57 +010021#ifdef PLAT_NUM_PWR_DOMAINS
22#define PSCI_NUM_PWR_DOMAINS PLAT_NUM_PWR_DOMAINS
Soby Mathew523d6332015-01-08 18:02:19 +000023#else
Soby Mathew981487a2015-07-13 14:10:57 +010024#define PSCI_NUM_PWR_DOMAINS (2 * PLATFORM_CORE_COUNT)
Soby Mathew523d6332015-01-08 18:02:19 +000025#endif
26
Soby Mathew981487a2015-07-13 14:10:57 +010027#define PSCI_NUM_NON_CPU_PWR_DOMAINS (PSCI_NUM_PWR_DOMAINS - \
28 PLATFORM_CORE_COUNT)
29
30/* This is the power level corresponding to a CPU */
31#define PSCI_CPU_PWR_LVL 0
32
33/*
34 * The maximum power level supported by PSCI. Since PSCI CPU_SUSPEND
35 * uses the old power_state parameter format which has 2 bits to specify the
36 * power level, this constant is defined to be 3.
37 */
38#define PSCI_MAX_PWR_LVL 3
39
Soby Mathew523d6332015-01-08 18:02:19 +000040/*******************************************************************************
Sandrine Bailleuxf4119ec2015-12-17 13:58:58 +000041 * Defines for runtime services function ids
Achin Gupta4f6ad662013-10-25 09:08:21 +010042 ******************************************************************************/
43#define PSCI_VERSION 0x84000000
44#define PSCI_CPU_SUSPEND_AARCH32 0x84000001
45#define PSCI_CPU_SUSPEND_AARCH64 0xc4000001
46#define PSCI_CPU_OFF 0x84000002
47#define PSCI_CPU_ON_AARCH32 0x84000003
48#define PSCI_CPU_ON_AARCH64 0xc4000003
49#define PSCI_AFFINITY_INFO_AARCH32 0x84000004
50#define PSCI_AFFINITY_INFO_AARCH64 0xc4000004
51#define PSCI_MIG_AARCH32 0x84000005
52#define PSCI_MIG_AARCH64 0xc4000005
53#define PSCI_MIG_INFO_TYPE 0x84000006
54#define PSCI_MIG_INFO_UP_CPU_AARCH32 0x84000007
55#define PSCI_MIG_INFO_UP_CPU_AARCH64 0xc4000007
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000056#define PSCI_SYSTEM_OFF 0x84000008
Achin Gupta4f6ad662013-10-25 09:08:21 +010057#define PSCI_SYSTEM_RESET 0x84000009
Soby Mathew6cdddaf2015-01-07 11:10:22 +000058#define PSCI_FEATURES 0x8400000A
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +010059#define PSCI_NODE_HW_STATE_AARCH32 0x8400000d
60#define PSCI_NODE_HW_STATE_AARCH64 0xc400000d
Soby Mathew96168382014-12-17 14:47:57 +000061#define PSCI_SYSTEM_SUSPEND_AARCH32 0x8400000E
62#define PSCI_SYSTEM_SUSPEND_AARCH64 0xc400000E
Yatharth Kochar241ec6c2016-05-09 18:26:35 +010063#define PSCI_STAT_RESIDENCY_AARCH32 0x84000010
64#define PSCI_STAT_RESIDENCY_AARCH64 0xc4000010
65#define PSCI_STAT_COUNT_AARCH32 0x84000011
66#define PSCI_STAT_COUNT_AARCH64 0xc4000011
Soby Mathew6cdddaf2015-01-07 11:10:22 +000067
68/* Macro to help build the psci capabilities bitfield */
69#define define_psci_cap(x) (1 << (x & 0x1f))
Achin Gupta4f6ad662013-10-25 09:08:21 +010070
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000071/*
Juan Castillo4dc4a472014-08-12 11:17:06 +010072 * Number of PSCI calls (above) implemented
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000073 */
Yatharth Kochar241ec6c2016-05-09 18:26:35 +010074#if ENABLE_PSCI_STAT
75#define PSCI_NUM_CALLS 22
76#else
Soby Mathew96168382014-12-17 14:47:57 +000077#define PSCI_NUM_CALLS 18
Yatharth Kochar241ec6c2016-05-09 18:26:35 +010078#endif
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000079
Soby Mathewd0194872016-04-29 19:01:30 +010080/* The macros below are used to identify PSCI calls from the SMC function ID */
81#define PSCI_FID_MASK 0xffe0u
82#define PSCI_FID_VALUE 0u
83#define is_psci_fid(_fid) \
84 (((_fid) & PSCI_FID_MASK) == PSCI_FID_VALUE)
85
Achin Gupta4f6ad662013-10-25 09:08:21 +010086/*******************************************************************************
87 * PSCI Migrate and friends
88 ******************************************************************************/
89#define PSCI_TOS_UP_MIG_CAP 0
90#define PSCI_TOS_NOT_UP_MIG_CAP 1
Achin Gupta607084e2014-02-09 18:24:19 +000091#define PSCI_TOS_NOT_PRESENT_MP 2
Achin Gupta4f6ad662013-10-25 09:08:21 +010092
93/*******************************************************************************
94 * PSCI CPU_SUSPEND 'power_state' parameter specific defines
95 ******************************************************************************/
Achin Gupta994dfce2013-10-26 13:10:31 +010096#define PSTATE_ID_SHIFT 0
Achin Gupta4f6ad662013-10-25 09:08:21 +010097
Soby Mathew981487a2015-07-13 14:10:57 +010098#if PSCI_EXTENDED_STATE_ID
99#define PSTATE_VALID_MASK 0xB0000000
100#define PSTATE_TYPE_SHIFT 30
101#define PSTATE_ID_MASK 0xfffffff
102#else
103#define PSTATE_VALID_MASK 0xFCFE0000
104#define PSTATE_TYPE_SHIFT 16
105#define PSTATE_PWR_LVL_SHIFT 24
Achin Gupta4f6ad662013-10-25 09:08:21 +0100106#define PSTATE_ID_MASK 0xffff
Soby Mathew981487a2015-07-13 14:10:57 +0100107#define PSTATE_PWR_LVL_MASK 0x3
108
109#define psci_get_pstate_pwrlvl(pstate) (((pstate) >> PSTATE_PWR_LVL_SHIFT) & \
110 PSTATE_PWR_LVL_MASK)
111#define psci_make_powerstate(state_id, type, pwrlvl) \
112 (((state_id) & PSTATE_ID_MASK) << PSTATE_ID_SHIFT) |\
113 (((type) & PSTATE_TYPE_MASK) << PSTATE_TYPE_SHIFT) |\
114 (((pwrlvl) & PSTATE_PWR_LVL_MASK) << PSTATE_PWR_LVL_SHIFT)
115#endif /* __PSCI_EXTENDED_STATE_ID__ */
Achin Gupta4f6ad662013-10-25 09:08:21 +0100116
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000117#define PSTATE_TYPE_STANDBY 0x0
118#define PSTATE_TYPE_POWERDOWN 0x1
Soby Mathew981487a2015-07-13 14:10:57 +0100119#define PSTATE_TYPE_MASK 0x1
Vikram Kanigiri3b7c59b2014-03-21 11:57:10 +0000120
Soby Mathew96168382014-12-17 14:47:57 +0000121#define psci_get_pstate_id(pstate) (((pstate) >> PSTATE_ID_SHIFT) & \
Soby Mathew74e52a72014-10-02 16:56:51 +0100122 PSTATE_ID_MASK)
Soby Mathew96168382014-12-17 14:47:57 +0000123#define psci_get_pstate_type(pstate) (((pstate) >> PSTATE_TYPE_SHIFT) & \
Soby Mathew74e52a72014-10-02 16:56:51 +0100124 PSTATE_TYPE_MASK)
Soby Mathew981487a2015-07-13 14:10:57 +0100125#define psci_check_power_state(pstate) ((pstate) & PSTATE_VALID_MASK)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100126
127/*******************************************************************************
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000128 * PSCI CPU_FEATURES feature flag specific defines
129 ******************************************************************************/
130/* Features flags for CPU SUSPEND power state parameter format. Bits [1:1] */
131#define FF_PSTATE_SHIFT 1
132#define FF_PSTATE_ORIG 0
133#define FF_PSTATE_EXTENDED 1
Soby Mathew981487a2015-07-13 14:10:57 +0100134#if PSCI_EXTENDED_STATE_ID
135#define FF_PSTATE FF_PSTATE_EXTENDED
136#else
137#define FF_PSTATE FF_PSTATE_ORIG
138#endif
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000139
140/* Features flags for CPU SUSPEND OS Initiated mode support. Bits [0:0] */
141#define FF_MODE_SUPPORT_SHIFT 0
142#define FF_SUPPORTS_OS_INIT_MODE 1
143
144/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100145 * PSCI version
146 ******************************************************************************/
Soby Mathew1df077b2015-01-15 11:49:58 +0000147#define PSCI_MAJOR_VER (1 << 16)
148#define PSCI_MINOR_VER 0x0
Achin Gupta4f6ad662013-10-25 09:08:21 +0100149
150/*******************************************************************************
151 * PSCI error codes
152 ******************************************************************************/
153#define PSCI_E_SUCCESS 0
154#define PSCI_E_NOT_SUPPORTED -1
155#define PSCI_E_INVALID_PARAMS -2
156#define PSCI_E_DENIED -3
157#define PSCI_E_ALREADY_ON -4
158#define PSCI_E_ON_PENDING -5
159#define PSCI_E_INTERN_FAIL -6
160#define PSCI_E_NOT_PRESENT -7
161#define PSCI_E_DISABLED -8
Soby Mathewf1f97a12015-07-15 12:13:26 +0100162#define PSCI_E_INVALID_ADDRESS -9
Achin Gupta4f6ad662013-10-25 09:08:21 +0100163
Soby Mathew011ca182015-07-29 17:05:03 +0100164#define PSCI_INVALID_MPIDR ~((u_register_t)0)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100165
Soby Mathew981487a2015-07-13 14:10:57 +0100166#ifndef __ASSEMBLY__
Achin Gupta4f6ad662013-10-25 09:08:21 +0100167
Soby Mathew981487a2015-07-13 14:10:57 +0100168#include <stdint.h>
169#include <types.h>
170
171/*
172 * These are the states reported by the PSCI_AFFINITY_INFO API for the specified
173 * CPU. The definitions of these states can be found in Section 5.7.1 in the
174 * PSCI specification (ARM DEN 0022C).
175 */
176typedef enum {
177 AFF_STATE_ON = 0,
178 AFF_STATE_OFF = 1,
179 AFF_STATE_ON_PENDING = 2
180} aff_info_state_t;
181
182/*
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100183 * These are the power states reported by PSCI_NODE_HW_STATE API for the
184 * specified CPU. The definitions of these states can be found in Section 5.15.3
185 * of PSCI specification (ARM DEN 0022C).
186 */
187typedef enum {
188 HW_ON = 0,
189 HW_OFF = 1,
190 HW_STANDBY = 2
191} node_hw_state_t;
192
193/*
Soby Mathew981487a2015-07-13 14:10:57 +0100194 * Macro to represent invalid affinity level within PSCI.
195 */
Soby Mathew011ca182015-07-29 17:05:03 +0100196#define PSCI_INVALID_PWR_LVL (PLAT_MAX_PWR_LVL + 1)
Vikram Kanigirif100f412014-04-01 19:26:26 +0100197
Soby Mathew981487a2015-07-13 14:10:57 +0100198/*
199 * Type for representing the local power state at a particular level.
200 */
201typedef uint8_t plat_local_state_t;
202
203/* The local state macro used to represent RUN state. */
204#define PSCI_LOCAL_STATE_RUN 0
Achin Gupta75f73672013-12-05 16:33:10 +0000205
Soby Mathew981487a2015-07-13 14:10:57 +0100206/*
207 * Macro to test whether the plat_local_state is RUN state
208 */
209#define is_local_state_run(plat_local_state) \
210 ((plat_local_state) == PSCI_LOCAL_STATE_RUN)
Vikram Kanigirif100f412014-04-01 19:26:26 +0100211
Soby Mathew981487a2015-07-13 14:10:57 +0100212/*
213 * Macro to test whether the plat_local_state is RETENTION state
214 */
215#define is_local_state_retn(plat_local_state) \
216 (((plat_local_state) > PSCI_LOCAL_STATE_RUN) && \
217 ((plat_local_state) <= PLAT_MAX_RET_STATE))
Vikram Kanigirif100f412014-04-01 19:26:26 +0100218
Soby Mathew981487a2015-07-13 14:10:57 +0100219/*
220 * Macro to test whether the plat_local_state is OFF state
221 */
222#define is_local_state_off(plat_local_state) \
223 (((plat_local_state) > PLAT_MAX_RET_STATE) && \
224 ((plat_local_state) <= PLAT_MAX_OFF_STATE))
Dan Handley2bd4ef22014-04-09 13:14:54 +0100225
Soby Mathew981487a2015-07-13 14:10:57 +0100226/*****************************************************************************
227 * This data structure defines the representation of the power state parameter
228 * for its exchange between the generic PSCI code and the platform port. For
229 * example, it is used by the platform port to specify the requested power
230 * states during a power management operation. It is used by the generic code to
231 * inform the platform about the target power states that each level should
232 * enter.
233 ****************************************************************************/
234typedef struct psci_power_state {
235 /*
236 * The pwr_domain_state[] stores the local power state at each level
237 * for the CPU.
238 */
239 plat_local_state_t pwr_domain_state[PLAT_MAX_PWR_LVL + 1];
240} psci_power_state_t;
Dan Handley2bd4ef22014-04-09 13:14:54 +0100241
Achin Guptaf3ccbab2014-07-25 14:52:47 +0100242/*******************************************************************************
243 * Structure used to store per-cpu information relevant to the PSCI service.
244 * It is populated in the per-cpu data array. In return we get a guarantee that
245 * this information will not reside on a cache line shared with another cpu.
246 ******************************************************************************/
247typedef struct psci_cpu_data {
Soby Mathew981487a2015-07-13 14:10:57 +0100248 /* State as seen by PSCI Affinity Info API */
249 aff_info_state_t aff_info_state;
Soby Mathew011ca182015-07-29 17:05:03 +0100250
Soby Mathew981487a2015-07-13 14:10:57 +0100251 /*
252 * Highest power level which takes part in a power management
253 * operation.
254 */
Soby Mathew011ca182015-07-29 17:05:03 +0100255 unsigned char target_pwrlvl;
256
Soby Mathew981487a2015-07-13 14:10:57 +0100257 /* The local power state of this CPU */
258 plat_local_state_t local_state;
Achin Guptaf3ccbab2014-07-25 14:52:47 +0100259} psci_cpu_data_t;
Dan Handley2bd4ef22014-04-09 13:14:54 +0100260
Achin Gupta4f6ad662013-10-25 09:08:21 +0100261/*******************************************************************************
262 * Structure populated by platform specific code to export routines which
Sandrine Bailleuxf4119ec2015-12-17 13:58:58 +0000263 * perform common low level power management functions
Achin Gupta4f6ad662013-10-25 09:08:21 +0100264 ******************************************************************************/
Soby Mathew981487a2015-07-13 14:10:57 +0100265typedef struct plat_psci_ops {
266 void (*cpu_standby)(plat_local_state_t cpu_state);
267 int (*pwr_domain_on)(u_register_t mpidr);
268 void (*pwr_domain_off)(const psci_power_state_t *target_state);
269 void (*pwr_domain_suspend)(const psci_power_state_t *target_state);
270 void (*pwr_domain_on_finish)(const psci_power_state_t *target_state);
271 void (*pwr_domain_suspend_finish)(
272 const psci_power_state_t *target_state);
Soby Mathew6a816412016-04-27 14:46:28 +0100273 void (*pwr_domain_pwr_down_wfi)(
274 const psci_power_state_t *target_state) __dead2;
Juan Castillo4dc4a472014-08-12 11:17:06 +0100275 void (*system_off)(void) __dead2;
276 void (*system_reset)(void) __dead2;
Soby Mathew981487a2015-07-13 14:10:57 +0100277 int (*validate_power_state)(unsigned int power_state,
278 psci_power_state_t *req_state);
Soby Mathew011ca182015-07-29 17:05:03 +0100279 int (*validate_ns_entrypoint)(uintptr_t ns_entrypoint);
Soby Mathew981487a2015-07-13 14:10:57 +0100280 void (*get_sys_suspend_power_state)(
281 psci_power_state_t *req_state);
Yatharth Kochar241ec6c2016-05-09 18:26:35 +0100282 int (*get_pwr_lvl_state_idx)(plat_local_state_t pwr_domain_state,
283 int pwrlvl);
284 int (*translate_power_state_by_mpidr)(u_register_t mpidr,
285 unsigned int power_state,
286 psci_power_state_t *output_state);
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100287 int (*get_node_hw_state)(u_register_t mpidr, unsigned int power_level);
Soby Mathew981487a2015-07-13 14:10:57 +0100288} plat_psci_ops_t;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100289
290/*******************************************************************************
291 * Function & Data prototypes
292 ******************************************************************************/
Dan Handleya17fefa2014-05-14 12:38:32 +0100293unsigned int psci_version(void);
Soby Mathew011ca182015-07-29 17:05:03 +0100294int psci_cpu_on(u_register_t target_cpu,
295 uintptr_t entrypoint,
296 u_register_t context_id);
297int psci_cpu_suspend(unsigned int power_state,
298 uintptr_t entrypoint,
299 u_register_t context_id);
300int psci_system_suspend(uintptr_t entrypoint, u_register_t context_id);
301int psci_cpu_off(void);
302int psci_affinity_info(u_register_t target_affinity,
303 unsigned int lowest_affinity_level);
304int psci_migrate(u_register_t target_cpu);
Soby Mathew110fe362014-10-23 10:35:34 +0100305int psci_migrate_info_type(void);
306long psci_migrate_info_up_cpu(void);
Jeenu Viswambharan7f03e9d92016-08-03 15:54:50 +0100307int psci_node_hw_state(u_register_t target_cpu,
308 unsigned int power_level);
Soby Mathew011ca182015-07-29 17:05:03 +0100309int psci_features(unsigned int psci_fid);
Dan Handleya17fefa2014-05-14 12:38:32 +0100310void __dead2 psci_power_down_wfi(void);
Soby Mathewd0194872016-04-29 19:01:30 +0100311void psci_arch_setup(void);
312
313/*
314 * The below API is deprecated. This is now replaced by bl31_warmboot_entry in
315 * AArch64.
316 */
317void psci_entrypoint(void) __deprecated;
318
Achin Gupta4f6ad662013-10-25 09:08:21 +0100319#endif /*__ASSEMBLY__*/
320
Achin Gupta4f6ad662013-10-25 09:08:21 +0100321#endif /* __PSCI_H__ */