arm_pm.c 6.75 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
 */

#include <arch_helpers.h>
8
#include <arm_def.h>
9
10
#include <assert.h>
#include <errno.h>
11
#include <plat_arm.h>
12
#include <platform.h>
13
#include <platform_def.h>
14
15
#include <psci.h>

16
/* Allow ARM Standard platforms to override these functions */
17
#pragma weak plat_arm_psci_override_pm_ops
18
#pragma weak plat_arm_program_trusted_mailbox
19

20
#if !ARM_RECOM_STATE_ID_ENC
21
/*******************************************************************************
22
23
 * ARM standard platform handler called to check the validity of the power state
 * parameter.
24
 ******************************************************************************/
25
26
int arm_validate_power_state(unsigned int power_state,
			    psci_power_state_t *req_state)
27
{
28
29
30
	unsigned int pstate = psci_get_pstate_type(power_state);
	unsigned int pwr_lvl = psci_get_pstate_pwrlvl(power_state);
	unsigned int i;
31

32
	assert(req_state != NULL);
33

34
35
	if (pwr_lvl > PLAT_MAX_PWR_LVL)
		return PSCI_E_INVALID_PARAMS;
36
37

	/* Sanity check the requested state */
38
	if (pstate == PSTATE_TYPE_STANDBY) {
39
		/*
40
41
		 * It's possible to enter standby only on power level 0
		 * Ignore any other power level.
42
		 */
43
		if (pwr_lvl != ARM_PWR_LVL0)
44
			return PSCI_E_INVALID_PARAMS;
45
46
47
48
49
50
51

		req_state->pwr_domain_state[ARM_PWR_LVL0] =
					ARM_LOCAL_STATE_RET;
	} else {
		for (i = ARM_PWR_LVL0; i <= pwr_lvl; i++)
			req_state->pwr_domain_state[i] =
					ARM_LOCAL_STATE_OFF;
52
53
54
55
56
	}

	/*
	 * We expect the 'state id' to be zero.
	 */
57
	if (psci_get_pstate_id(power_state) != 0U)
58
59
60
61
		return PSCI_E_INVALID_PARAMS;

	return PSCI_E_SUCCESS;
}
62
63
64
65
66
67
68
69
70
71
72
73
74

#else
/*******************************************************************************
 * ARM standard platform handler called to check the validity of the power
 * state parameter. The power state parameter has to be a composite power
 * state.
 ******************************************************************************/
int arm_validate_power_state(unsigned int power_state,
				psci_power_state_t *req_state)
{
	unsigned int state_id;
	int i;

75
	assert(req_state != NULL);
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103

	/*
	 *  Currently we are using a linear search for finding the matching
	 *  entry in the idle power state array. This can be made a binary
	 *  search if the number of entries justify the additional complexity.
	 */
	for (i = 0; !!arm_pm_idle_states[i]; i++) {
		if (power_state == arm_pm_idle_states[i])
			break;
	}

	/* Return error if entry not found in the idle state array */
	if (!arm_pm_idle_states[i])
		return PSCI_E_INVALID_PARAMS;

	i = 0;
	state_id = psci_get_pstate_id(power_state);

	/* Parse the State ID and populate the state info parameter */
	while (state_id) {
		req_state->pwr_domain_state[i++] = state_id &
						ARM_LOCAL_PSTATE_MASK;
		state_id >>= ARM_LOCAL_PSTATE_WIDTH;
	}

	return PSCI_E_SUCCESS;
}
#endif /* __ARM_RECOM_STATE_ID_ENC__ */
104
105
106

/*******************************************************************************
 * ARM standard platform handler called to check the validity of the non secure
107
 * entrypoint. Returns 0 if the entrypoint is valid, or -1 otherwise.
108
109
110
111
112
113
114
115
 ******************************************************************************/
int arm_validate_ns_entrypoint(uintptr_t entrypoint)
{
	/*
	 * Check if the non secure entrypoint lies within the non
	 * secure DRAM.
	 */
	if ((entrypoint >= ARM_NS_DRAM1_BASE) && (entrypoint <
116
117
118
			(ARM_NS_DRAM1_BASE + ARM_NS_DRAM1_SIZE))) {
		return 0;
	}
119
#ifndef AARCH32
120
	if ((entrypoint >= ARM_DRAM2_BASE) && (entrypoint <
121
122
123
			(ARM_DRAM2_BASE + ARM_DRAM2_SIZE))) {
		return 0;
	}
124
#endif
125

126
127
128
129
130
	return -1;
}

int arm_validate_psci_entrypoint(uintptr_t entrypoint)
{
131
	return (arm_validate_ns_entrypoint(entrypoint) == 0) ? PSCI_E_SUCCESS :
132
		PSCI_E_INVALID_ADDRESS;
133
}
134

135
136
137
138
139
140
141
142
/******************************************************************************
 * Default definition on ARM standard platforms to override the plat_psci_ops.
 *****************************************************************************/
const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
{
	return ops;
}

143
144
145
146
147
148
149
150
151
152
153
/******************************************************************************
 * Helper function to save the platform state before a system suspend. Save the
 * state of the system components which are not in the Always ON power domain.
 *****************************************************************************/
void arm_system_pwr_domain_save(void)
{
	/* Assert system power domain is available on the platform */
	assert(PLAT_MAX_PWR_LVL >= ARM_PWR_LVL2);

	plat_arm_gic_save();

154
155
156
157
158
159
	/*
	 * Unregister console now so that it is not registered for a second
	 * time during resume.
	 */
	arm_console_runtime_end();

160
161
162
163
164
165
166
	/*
	 * All the other peripheral which are configured by ARM TF are
	 * re-initialized on resume from system suspend. Hence we
	 * don't save their state here.
	 */
}

167
168
169
170
171
172
173
174
/******************************************************************************
 * Helper function to resume the platform from system suspend. Reinitialize
 * the system components which are not in the Always ON power domain.
 * TODO: Unify the platform setup when waking up from cold boot and system
 * resume in arm_bl31_platform_setup().
 *****************************************************************************/
void arm_system_pwr_domain_resume(void)
{
175
176
	/* Initialize the console */
	arm_console_runtime_init();
177
178
179
180

	/* Assert system power domain is available on the platform */
	assert(PLAT_MAX_PWR_LVL >= ARM_PWR_LVL2);

181
182
	plat_arm_gic_resume();

183
184
185
186
	plat_arm_security_setup();
	arm_configure_sys_timer();
}

187
/*******************************************************************************
188
 * ARM platform function to program the mailbox for a cpu before it is released
189
190
191
 * from reset. This function assumes that the Trusted mail box base is within
 * the ARM_SHARED_RAM region
 ******************************************************************************/
192
void plat_arm_program_trusted_mailbox(uintptr_t address)
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
{
	uintptr_t *mailbox = (void *) PLAT_ARM_TRUSTED_MAILBOX_BASE;

	*mailbox = address;

	/*
	 * Ensure that the PLAT_ARM_TRUSTED_MAILBOX_BASE is within
	 * ARM_SHARED_RAM region.
	 */
	assert((PLAT_ARM_TRUSTED_MAILBOX_BASE >= ARM_SHARED_RAM_BASE) &&
		((PLAT_ARM_TRUSTED_MAILBOX_BASE + sizeof(*mailbox)) <= \
				(ARM_SHARED_RAM_BASE + ARM_SHARED_RAM_SIZE)));
}

/*******************************************************************************
 * The ARM Standard platform definition of platform porting API
 * `plat_setup_psci_ops`.
 ******************************************************************************/
211
int __init plat_setup_psci_ops(uintptr_t sec_entrypoint,
212
213
				const plat_psci_ops_t **psci_ops)
{
214
	*psci_ops = plat_arm_psci_override_pm_ops(&plat_arm_psci_pm_ops);
215
216

	/* Setup mailbox with entry point. */
217
	plat_arm_program_trusted_mailbox(sec_entrypoint);
218
219
	return 0;
}