blob: 4fdb10a5090d01e913ecd15f4c2fb7068501a243 [file] [log] [blame]
Dan Handley9df48042015-03-19 18:58:55 +00001/*
Antonio Nino Diaz23ede6a2018-06-19 09:29:36 +01002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Dan Handley9df48042015-03-19 18:58:55 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handley9df48042015-03-19 18:58:55 +00005 */
6
7#include <arch_helpers.h>
Soby Mathew0d9e8522015-07-15 13:36:24 +01008#include <arm_def.h>
Soby Mathew61e8d0b2015-10-12 17:32:29 +01009#include <arm_gic.h>
Dan Handley9df48042015-03-19 18:58:55 +000010#include <assert.h>
11#include <errno.h>
Soby Mathew7799cf72015-04-16 14:49:09 +010012#include <plat_arm.h>
Soby Mathew9ca28062017-10-11 16:08:58 +010013#include <platform.h>
Soby Mathewfeac8fc2015-09-29 15:47:16 +010014#include <platform_def.h>
Dan Handley9df48042015-03-19 18:58:55 +000015#include <psci.h>
16
Soby Mathew0b4c5a32016-10-21 17:51:22 +010017/* Allow ARM Standard platforms to override this function */
18#pragma weak plat_arm_psci_override_pm_ops
19
Soby Mathew7799cf72015-04-16 14:49:09 +010020#if ARM_RECOM_STATE_ID_ENC
21extern unsigned int arm_pm_idle_states[];
22#endif /* __ARM_RECOM_STATE_ID_ENC__ */
23
Soby Mathew7799cf72015-04-16 14:49:09 +010024#if !ARM_RECOM_STATE_ID_ENC
Dan Handley9df48042015-03-19 18:58:55 +000025/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +010026 * ARM standard platform handler called to check the validity of the power state
27 * parameter.
Dan Handley9df48042015-03-19 18:58:55 +000028 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +010029int arm_validate_power_state(unsigned int power_state,
30 psci_power_state_t *req_state)
Dan Handley9df48042015-03-19 18:58:55 +000031{
Soby Mathewfec4eb72015-07-01 16:16:20 +010032 int pstate = psci_get_pstate_type(power_state);
33 int pwr_lvl = psci_get_pstate_pwrlvl(power_state);
34 int i;
Dan Handley9df48042015-03-19 18:58:55 +000035
Soby Mathewfec4eb72015-07-01 16:16:20 +010036 assert(req_state);
Dan Handley9df48042015-03-19 18:58:55 +000037
Soby Mathewfec4eb72015-07-01 16:16:20 +010038 if (pwr_lvl > PLAT_MAX_PWR_LVL)
39 return PSCI_E_INVALID_PARAMS;
Dan Handley9df48042015-03-19 18:58:55 +000040
Dan Handley9df48042015-03-19 18:58:55 +000041 /* Sanity check the requested state */
Soby Mathewfec4eb72015-07-01 16:16:20 +010042 if (pstate == PSTATE_TYPE_STANDBY) {
Dan Handley9df48042015-03-19 18:58:55 +000043 /*
Soby Mathewfec4eb72015-07-01 16:16:20 +010044 * It's possible to enter standby only on power level 0
45 * Ignore any other power level.
Dan Handley9df48042015-03-19 18:58:55 +000046 */
Soby Mathewfec4eb72015-07-01 16:16:20 +010047 if (pwr_lvl != ARM_PWR_LVL0)
Dan Handley9df48042015-03-19 18:58:55 +000048 return PSCI_E_INVALID_PARAMS;
Soby Mathewfec4eb72015-07-01 16:16:20 +010049
50 req_state->pwr_domain_state[ARM_PWR_LVL0] =
51 ARM_LOCAL_STATE_RET;
52 } else {
53 for (i = ARM_PWR_LVL0; i <= pwr_lvl; i++)
54 req_state->pwr_domain_state[i] =
55 ARM_LOCAL_STATE_OFF;
Dan Handley9df48042015-03-19 18:58:55 +000056 }
57
58 /*
59 * We expect the 'state id' to be zero.
60 */
61 if (psci_get_pstate_id(power_state))
62 return PSCI_E_INVALID_PARAMS;
63
Soby Mathew7799cf72015-04-16 14:49:09 +010064 return PSCI_E_SUCCESS;
65}
66
67#else
68/*******************************************************************************
69 * ARM standard platform handler called to check the validity of the power
70 * state parameter. The power state parameter has to be a composite power
71 * state.
72 ******************************************************************************/
73int arm_validate_power_state(unsigned int power_state,
74 psci_power_state_t *req_state)
75{
76 unsigned int state_id;
77 int i;
78
79 assert(req_state);
80
81 /*
82 * Currently we are using a linear search for finding the matching
83 * entry in the idle power state array. This can be made a binary
84 * search if the number of entries justify the additional complexity.
85 */
86 for (i = 0; !!arm_pm_idle_states[i]; i++) {
87 if (power_state == arm_pm_idle_states[i])
88 break;
89 }
90
91 /* Return error if entry not found in the idle state array */
92 if (!arm_pm_idle_states[i])
93 return PSCI_E_INVALID_PARAMS;
94
95 i = 0;
96 state_id = psci_get_pstate_id(power_state);
97
98 /* Parse the State ID and populate the state info parameter */
99 while (state_id) {
100 req_state->pwr_domain_state[i++] = state_id &
101 ARM_LOCAL_PSTATE_MASK;
102 state_id >>= ARM_LOCAL_PSTATE_WIDTH;
103 }
104
Dan Handley9df48042015-03-19 18:58:55 +0000105 return PSCI_E_SUCCESS;
106}
Soby Mathew7799cf72015-04-16 14:49:09 +0100107#endif /* __ARM_RECOM_STATE_ID_ENC__ */
Soby Mathew0d9e8522015-07-15 13:36:24 +0100108
109/*******************************************************************************
110 * ARM standard platform handler called to check the validity of the non secure
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100111 * entrypoint. Returns 0 if the entrypoint is valid, or -1 otherwise.
Soby Mathew0d9e8522015-07-15 13:36:24 +0100112 ******************************************************************************/
113int arm_validate_ns_entrypoint(uintptr_t entrypoint)
114{
115 /*
116 * Check if the non secure entrypoint lies within the non
117 * secure DRAM.
118 */
119 if ((entrypoint >= ARM_NS_DRAM1_BASE) && (entrypoint <
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100120 (ARM_NS_DRAM1_BASE + ARM_NS_DRAM1_SIZE))) {
121 return 0;
122 }
dp-arm84fc2952017-05-03 12:14:10 +0100123#ifndef AARCH32
Soby Mathew0d9e8522015-07-15 13:36:24 +0100124 if ((entrypoint >= ARM_DRAM2_BASE) && (entrypoint <
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100125 (ARM_DRAM2_BASE + ARM_DRAM2_SIZE))) {
126 return 0;
127 }
dp-arm84fc2952017-05-03 12:14:10 +0100128#endif
Soby Mathew0d9e8522015-07-15 13:36:24 +0100129
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100130 return -1;
131}
132
133int arm_validate_psci_entrypoint(uintptr_t entrypoint)
134{
135 return arm_validate_ns_entrypoint(entrypoint) == 0 ? PSCI_E_SUCCESS :
136 PSCI_E_INVALID_ADDRESS;
Soby Mathew0d9e8522015-07-15 13:36:24 +0100137}
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100138
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100139/******************************************************************************
Soby Mathew0b4c5a32016-10-21 17:51:22 +0100140 * Default definition on ARM standard platforms to override the plat_psci_ops.
141 *****************************************************************************/
142const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
143{
144 return ops;
145}
146
147/******************************************************************************
Soby Mathew9ca28062017-10-11 16:08:58 +0100148 * Helper function to save the platform state before a system suspend. Save the
149 * state of the system components which are not in the Always ON power domain.
150 *****************************************************************************/
151void arm_system_pwr_domain_save(void)
152{
153 /* Assert system power domain is available on the platform */
154 assert(PLAT_MAX_PWR_LVL >= ARM_PWR_LVL2);
155
156 plat_arm_gic_save();
157
158 /*
Antonio Nino Diaz23ede6a2018-06-19 09:29:36 +0100159 * Unregister console now so that it is not registered for a second
160 * time during resume.
161 */
162 arm_console_runtime_end();
163
164 /*
Soby Mathew9ca28062017-10-11 16:08:58 +0100165 * All the other peripheral which are configured by ARM TF are
166 * re-initialized on resume from system suspend. Hence we
167 * don't save their state here.
168 */
169}
170
171/******************************************************************************
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100172 * Helper function to resume the platform from system suspend. Reinitialize
173 * the system components which are not in the Always ON power domain.
174 * TODO: Unify the platform setup when waking up from cold boot and system
175 * resume in arm_bl31_platform_setup().
176 *****************************************************************************/
177void arm_system_pwr_domain_resume(void)
178{
Antonio Nino Diaz23ede6a2018-06-19 09:29:36 +0100179 /* Initialize the console */
180 arm_console_runtime_init();
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100181
182 /* Assert system power domain is available on the platform */
183 assert(PLAT_MAX_PWR_LVL >= ARM_PWR_LVL2);
184
Soby Mathew9ca28062017-10-11 16:08:58 +0100185 plat_arm_gic_resume();
186
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100187 plat_arm_security_setup();
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100188 arm_configure_sys_timer();
189}
190
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100191/*******************************************************************************
192 * Private function to program the mailbox for a cpu before it is released
193 * from reset. This function assumes that the Trusted mail box base is within
194 * the ARM_SHARED_RAM region
195 ******************************************************************************/
Sandrine Bailleux03897bb2015-11-26 16:31:34 +0000196void arm_program_trusted_mailbox(uintptr_t address)
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100197{
198 uintptr_t *mailbox = (void *) PLAT_ARM_TRUSTED_MAILBOX_BASE;
199
200 *mailbox = address;
201
202 /*
203 * Ensure that the PLAT_ARM_TRUSTED_MAILBOX_BASE is within
204 * ARM_SHARED_RAM region.
205 */
206 assert((PLAT_ARM_TRUSTED_MAILBOX_BASE >= ARM_SHARED_RAM_BASE) &&
207 ((PLAT_ARM_TRUSTED_MAILBOX_BASE + sizeof(*mailbox)) <= \
208 (ARM_SHARED_RAM_BASE + ARM_SHARED_RAM_SIZE)));
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100209}
210
211/*******************************************************************************
212 * The ARM Standard platform definition of platform porting API
213 * `plat_setup_psci_ops`.
214 ******************************************************************************/
215int plat_setup_psci_ops(uintptr_t sec_entrypoint,
216 const plat_psci_ops_t **psci_ops)
217{
Soby Mathew0b4c5a32016-10-21 17:51:22 +0100218 *psci_ops = plat_arm_psci_override_pm_ops(&plat_arm_psci_pm_ops);
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100219
220 /* Setup mailbox with entry point. */
221 arm_program_trusted_mailbox(sec_entrypoint);
222 return 0;
223}