blob: bf548c10c9a26902ac7de12fd9e8afd9cd115fab [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>
Dan Handley9df48042015-03-19 18:58:55 +00009#include <assert.h>
10#include <errno.h>
Soby Mathew7799cf72015-04-16 14:49:09 +010011#include <plat_arm.h>
Soby Mathew9ca28062017-10-11 16:08:58 +010012#include <platform.h>
Soby Mathewfeac8fc2015-09-29 15:47:16 +010013#include <platform_def.h>
Dan Handley9df48042015-03-19 18:58:55 +000014#include <psci.h>
15
Dimitris Papastamosd7a36512018-06-18 13:01:06 +010016/* Allow ARM Standard platforms to override these functions */
Soby Mathew0b4c5a32016-10-21 17:51:22 +010017#pragma weak plat_arm_psci_override_pm_ops
Dimitris Papastamosd7a36512018-06-18 13:01:06 +010018#pragma weak plat_arm_program_trusted_mailbox
Soby Mathew0b4c5a32016-10-21 17:51:22 +010019
Soby Mathew7799cf72015-04-16 14:49:09 +010020#if !ARM_RECOM_STATE_ID_ENC
Dan Handley9df48042015-03-19 18:58:55 +000021/*******************************************************************************
Soby Mathewfec4eb72015-07-01 16:16:20 +010022 * ARM standard platform handler called to check the validity of the power state
23 * parameter.
Dan Handley9df48042015-03-19 18:58:55 +000024 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +010025int arm_validate_power_state(unsigned int power_state,
26 psci_power_state_t *req_state)
Dan Handley9df48042015-03-19 18:58:55 +000027{
Antonio Nino Diazfec756f2018-07-18 16:24:16 +010028 unsigned int pstate = psci_get_pstate_type(power_state);
29 unsigned int pwr_lvl = psci_get_pstate_pwrlvl(power_state);
30 unsigned int i;
Dan Handley9df48042015-03-19 18:58:55 +000031
Antonio Nino Diazfec756f2018-07-18 16:24:16 +010032 assert(req_state > 0U);
Dan Handley9df48042015-03-19 18:58:55 +000033
Soby Mathewfec4eb72015-07-01 16:16:20 +010034 if (pwr_lvl > PLAT_MAX_PWR_LVL)
35 return PSCI_E_INVALID_PARAMS;
Dan Handley9df48042015-03-19 18:58:55 +000036
Dan Handley9df48042015-03-19 18:58:55 +000037 /* Sanity check the requested state */
Soby Mathewfec4eb72015-07-01 16:16:20 +010038 if (pstate == PSTATE_TYPE_STANDBY) {
Dan Handley9df48042015-03-19 18:58:55 +000039 /*
Soby Mathewfec4eb72015-07-01 16:16:20 +010040 * It's possible to enter standby only on power level 0
41 * Ignore any other power level.
Dan Handley9df48042015-03-19 18:58:55 +000042 */
Soby Mathewfec4eb72015-07-01 16:16:20 +010043 if (pwr_lvl != ARM_PWR_LVL0)
Dan Handley9df48042015-03-19 18:58:55 +000044 return PSCI_E_INVALID_PARAMS;
Soby Mathewfec4eb72015-07-01 16:16:20 +010045
46 req_state->pwr_domain_state[ARM_PWR_LVL0] =
47 ARM_LOCAL_STATE_RET;
48 } else {
49 for (i = ARM_PWR_LVL0; i <= pwr_lvl; i++)
50 req_state->pwr_domain_state[i] =
51 ARM_LOCAL_STATE_OFF;
Dan Handley9df48042015-03-19 18:58:55 +000052 }
53
54 /*
55 * We expect the 'state id' to be zero.
56 */
Antonio Nino Diazfec756f2018-07-18 16:24:16 +010057 if (psci_get_pstate_id(power_state) != 0U)
Dan Handley9df48042015-03-19 18:58:55 +000058 return PSCI_E_INVALID_PARAMS;
59
Soby Mathew7799cf72015-04-16 14:49:09 +010060 return PSCI_E_SUCCESS;
61}
62
63#else
64/*******************************************************************************
65 * ARM standard platform handler called to check the validity of the power
66 * state parameter. The power state parameter has to be a composite power
67 * state.
68 ******************************************************************************/
69int arm_validate_power_state(unsigned int power_state,
70 psci_power_state_t *req_state)
71{
72 unsigned int state_id;
73 int i;
74
75 assert(req_state);
76
77 /*
78 * Currently we are using a linear search for finding the matching
79 * entry in the idle power state array. This can be made a binary
80 * search if the number of entries justify the additional complexity.
81 */
82 for (i = 0; !!arm_pm_idle_states[i]; i++) {
83 if (power_state == arm_pm_idle_states[i])
84 break;
85 }
86
87 /* Return error if entry not found in the idle state array */
88 if (!arm_pm_idle_states[i])
89 return PSCI_E_INVALID_PARAMS;
90
91 i = 0;
92 state_id = psci_get_pstate_id(power_state);
93
94 /* Parse the State ID and populate the state info parameter */
95 while (state_id) {
96 req_state->pwr_domain_state[i++] = state_id &
97 ARM_LOCAL_PSTATE_MASK;
98 state_id >>= ARM_LOCAL_PSTATE_WIDTH;
99 }
100
Dan Handley9df48042015-03-19 18:58:55 +0000101 return PSCI_E_SUCCESS;
102}
Soby Mathew7799cf72015-04-16 14:49:09 +0100103#endif /* __ARM_RECOM_STATE_ID_ENC__ */
Soby Mathew0d9e8522015-07-15 13:36:24 +0100104
105/*******************************************************************************
106 * ARM standard platform handler called to check the validity of the non secure
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100107 * entrypoint. Returns 0 if the entrypoint is valid, or -1 otherwise.
Soby Mathew0d9e8522015-07-15 13:36:24 +0100108 ******************************************************************************/
109int arm_validate_ns_entrypoint(uintptr_t entrypoint)
110{
111 /*
112 * Check if the non secure entrypoint lies within the non
113 * secure DRAM.
114 */
115 if ((entrypoint >= ARM_NS_DRAM1_BASE) && (entrypoint <
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100116 (ARM_NS_DRAM1_BASE + ARM_NS_DRAM1_SIZE))) {
117 return 0;
118 }
dp-arm84fc2952017-05-03 12:14:10 +0100119#ifndef AARCH32
Soby Mathew0d9e8522015-07-15 13:36:24 +0100120 if ((entrypoint >= ARM_DRAM2_BASE) && (entrypoint <
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100121 (ARM_DRAM2_BASE + ARM_DRAM2_SIZE))) {
122 return 0;
123 }
dp-arm84fc2952017-05-03 12:14:10 +0100124#endif
Soby Mathew0d9e8522015-07-15 13:36:24 +0100125
Jeenu Viswambharan59424d82017-09-19 09:27:18 +0100126 return -1;
127}
128
129int arm_validate_psci_entrypoint(uintptr_t entrypoint)
130{
131 return arm_validate_ns_entrypoint(entrypoint) == 0 ? PSCI_E_SUCCESS :
132 PSCI_E_INVALID_ADDRESS;
Soby Mathew0d9e8522015-07-15 13:36:24 +0100133}
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100134
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100135/******************************************************************************
Soby Mathew0b4c5a32016-10-21 17:51:22 +0100136 * Default definition on ARM standard platforms to override the plat_psci_ops.
137 *****************************************************************************/
138const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
139{
140 return ops;
141}
142
143/******************************************************************************
Soby Mathew9ca28062017-10-11 16:08:58 +0100144 * Helper function to save the platform state before a system suspend. Save the
145 * state of the system components which are not in the Always ON power domain.
146 *****************************************************************************/
147void arm_system_pwr_domain_save(void)
148{
149 /* Assert system power domain is available on the platform */
150 assert(PLAT_MAX_PWR_LVL >= ARM_PWR_LVL2);
151
152 plat_arm_gic_save();
153
154 /*
Antonio Nino Diaz23ede6a2018-06-19 09:29:36 +0100155 * Unregister console now so that it is not registered for a second
156 * time during resume.
157 */
158 arm_console_runtime_end();
159
160 /*
Soby Mathew9ca28062017-10-11 16:08:58 +0100161 * All the other peripheral which are configured by ARM TF are
162 * re-initialized on resume from system suspend. Hence we
163 * don't save their state here.
164 */
165}
166
167/******************************************************************************
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100168 * Helper function to resume the platform from system suspend. Reinitialize
169 * the system components which are not in the Always ON power domain.
170 * TODO: Unify the platform setup when waking up from cold boot and system
171 * resume in arm_bl31_platform_setup().
172 *****************************************************************************/
173void arm_system_pwr_domain_resume(void)
174{
Antonio Nino Diaz23ede6a2018-06-19 09:29:36 +0100175 /* Initialize the console */
176 arm_console_runtime_init();
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100177
178 /* Assert system power domain is available on the platform */
179 assert(PLAT_MAX_PWR_LVL >= ARM_PWR_LVL2);
180
Soby Mathew9ca28062017-10-11 16:08:58 +0100181 plat_arm_gic_resume();
182
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100183 plat_arm_security_setup();
Soby Mathew61e8d0b2015-10-12 17:32:29 +0100184 arm_configure_sys_timer();
185}
186
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100187/*******************************************************************************
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100188 * ARM platform function to program the mailbox for a cpu before it is released
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100189 * from reset. This function assumes that the Trusted mail box base is within
190 * the ARM_SHARED_RAM region
191 ******************************************************************************/
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100192void plat_arm_program_trusted_mailbox(uintptr_t address)
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100193{
194 uintptr_t *mailbox = (void *) PLAT_ARM_TRUSTED_MAILBOX_BASE;
195
196 *mailbox = address;
197
198 /*
199 * Ensure that the PLAT_ARM_TRUSTED_MAILBOX_BASE is within
200 * ARM_SHARED_RAM region.
201 */
202 assert((PLAT_ARM_TRUSTED_MAILBOX_BASE >= ARM_SHARED_RAM_BASE) &&
203 ((PLAT_ARM_TRUSTED_MAILBOX_BASE + sizeof(*mailbox)) <= \
204 (ARM_SHARED_RAM_BASE + ARM_SHARED_RAM_SIZE)));
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100205}
206
207/*******************************************************************************
208 * The ARM Standard platform definition of platform porting API
209 * `plat_setup_psci_ops`.
210 ******************************************************************************/
211int plat_setup_psci_ops(uintptr_t sec_entrypoint,
212 const plat_psci_ops_t **psci_ops)
213{
Soby Mathew0b4c5a32016-10-21 17:51:22 +0100214 *psci_ops = plat_arm_psci_override_pm_ops(&plat_arm_psci_pm_ops);
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100215
216 /* Setup mailbox with entry point. */
Dimitris Papastamosd7a36512018-06-18 13:01:06 +0100217 plat_arm_program_trusted_mailbox(sec_entrypoint);
Soby Mathewfeac8fc2015-09-29 15:47:16 +0100218 return 0;
219}