tegra_pm.c 10.6 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
3
 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
4
 *
dp-arm's avatar
dp-arm committed
5
 * SPDX-License-Identifier: BSD-3-Clause
6
7
8
 */

#include <assert.h>
9
10
11
12
13
14

#include <platform_def.h>

#include <arch_helpers.h>
#include <common/bl_common.h>
#include <common/debug.h>
15
#include <context.h>
16
17
18
19
20
21
#include <drivers/console.h>
#include <lib/el3_runtime/context_mgmt.h>
#include <lib/mmio.h>
#include <lib/psci/psci.h>
#include <plat/common/platform.h>

22
23
24
#include <memctrl.h>
#include <pmc.h>
#include <tegra_def.h>
25
#include <tegra_platform.h>
26
27
28
#include <tegra_private.h>

extern uint64_t tegra_bl31_phys_base;
29
extern uint64_t tegra_sec_entry_point;
30
31

/*******************************************************************************
32
33
34
35
36
37
 * This handler is called by the PSCI implementation during the `SYSTEM_SUSPEND`
 * call to get the `power_state` parameter. This allows the platform to encode
 * the appropriate State-ID field within the `power_state` parameter which can
 * be utilized in `pwr_domain_suspend()` to suspend to system affinity level.
******************************************************************************/
void tegra_get_sys_suspend_power_state(psci_power_state_t *req_state)
38
{
39
	/* all affinities use system suspend state id */
Anthony Zhou's avatar
Anthony Zhou committed
40
	for (uint32_t i = MPIDR_AFFLVL0; i <= PLAT_MAX_PWR_LVL; i++) {
41
		req_state->pwr_domain_state[i] = PSTATE_ID_SOC_POWERDN;
Anthony Zhou's avatar
Anthony Zhou committed
42
	}
43
44
45
46
47
}

/*******************************************************************************
 * Handler called when an affinity instance is about to enter standby.
 ******************************************************************************/
48
void tegra_cpu_standby(plat_local_state_t cpu_state)
49
{
50
51
	u_register_t saved_scr_el3;

Anthony Zhou's avatar
Anthony Zhou committed
52
53
	(void)cpu_state;

54
55
56
57
	/* Tegra SoC specific handler */
	if (tegra_soc_cpu_standby(cpu_state) != PSCI_E_SUCCESS)
		ERROR("%s failed\n", __func__);

58
59
60
61
62
63
64
65
66
	saved_scr_el3 = read_scr_el3();

	/*
	 * As per ARM ARM D1.17.2, any physical IRQ interrupt received by the
	 * PE will be treated as a wake-up event, if SCR_EL3.IRQ is set to '1',
	 * irrespective of the value of the PSTATE.I bit value.
	 */
	write_scr_el3(saved_scr_el3 | SCR_IRQ_BIT);

67
68
	/*
	 * Enter standby state
69
70
	 *
	 * dsb & isb is good practice before using wfi to enter low power states
71
72
	 */
	dsb();
73
	isb();
74
	wfi();
75
76
77
78
79
80

	/*
	 * Restore saved scr_el3 that has IRQ bit cleared as we don't want EL3
	 * handling any further interrupts
	 */
	write_scr_el3(saved_scr_el3);
81
82
83
84
85
86
}

/*******************************************************************************
 * Handler called when an affinity instance is about to be turned on. The
 * level and mpidr determine the affinity instance.
 ******************************************************************************/
Anthony Zhou's avatar
Anthony Zhou committed
87
int32_t tegra_pwr_domain_on(u_register_t mpidr)
88
{
89
	return tegra_soc_pwr_domain_on(mpidr);
90
91
92
}

/*******************************************************************************
93
94
 * Handler called when a power domain is about to be turned off. The
 * target_state encodes the power state that each level should transition to.
95
 ******************************************************************************/
96
void tegra_pwr_domain_off(const psci_power_state_t *target_state)
97
{
Anthony Zhou's avatar
Anthony Zhou committed
98
	(void)tegra_soc_pwr_domain_off(target_state);
99
100
}

101
102
103
104
105
106
107
108
109
110
111
/*******************************************************************************
 * Handler called when a power domain is about to be suspended. The
 * target_state encodes the power state that each level should transition to.
 * This handler is called with SMP and data cache enabled, when
 * HW_ASSISTED_COHERENCY = 0
 ******************************************************************************/
void tegra_pwr_domain_suspend_pwrdown_early(const psci_power_state_t *target_state)
{
	tegra_soc_pwr_domain_suspend_pwrdown_early(target_state);
}

112
/*******************************************************************************
113
 * Handler called when a power domain is about to be suspended. The
114
 * target_state encodes the power state that each level should transition to.
115
 ******************************************************************************/
116
void tegra_pwr_domain_suspend(const psci_power_state_t *target_state)
117
{
Anthony Zhou's avatar
Anthony Zhou committed
118
	(void)tegra_soc_pwr_domain_suspend(target_state);
119

120
121
	/* Disable console if we are entering deep sleep. */
	if (target_state->pwr_domain_state[PLAT_MAX_PWR_LVL] ==
Anthony Zhou's avatar
Anthony Zhou committed
122
			PSTATE_ID_SOC_POWERDN) {
123
124
		(void)console_flush();
		console_switch_state(0);
Anthony Zhou's avatar
Anthony Zhou committed
125
	}
126

127
128
129
130
	/* disable GICC */
	tegra_gic_cpuif_deactivate();
}

131
132
133
134
135
136
137
138
/*******************************************************************************
 * Handler called at the end of the power domain suspend sequence. The
 * target_state encodes the power state that each level should transition to.
 ******************************************************************************/
__dead2 void tegra_pwr_domain_power_down_wfi(const psci_power_state_t
					     *target_state)
{
	/* call the chip's power down handler */
Anthony Zhou's avatar
Anthony Zhou committed
139
	(void)tegra_soc_pwr_domain_power_down_wfi(target_state);
140

141
	wfi();
142
143
144
	panic();
}

145
/*******************************************************************************
146
147
148
 * Handler called when a power domain has just been powered on after
 * being turned off earlier. The target_state encodes the low power state that
 * each level has woken up from.
149
 ******************************************************************************/
150
void tegra_pwr_domain_on_finish(const psci_power_state_t *target_state)
151
{
Anthony Zhou's avatar
Anthony Zhou committed
152
	const plat_params_from_bl2_t *plat_params;
153
154
155
156

	/*
	 * Initialize the GIC cpu and distributor interfaces
	 */
157
	tegra_gic_pcpu_init();
158
159
160
161

	/*
	 * Check if we are exiting from deep sleep.
	 */
162
163
	if (target_state->pwr_domain_state[PLAT_MAX_PWR_LVL] ==
			PSTATE_ID_SOC_POWERDN) {
164

165
166
		/* Restart console output. */
		console_switch_state(CONSOLE_FLAG_RUNTIME);
167

168
		/*
169
170
		 * Restore Memory Controller settings as it loses state
		 * during system suspend.
171
		 */
172
		tegra_memctrl_restore_settings();
173
174
175
176
177

		/*
		 * Security configuration to allow DRAM/device access.
		 */
		plat_params = bl31_get_plat_params();
178
		tegra_memctrl_tzdram_setup(plat_params->tzdram_base,
Anthony Zhou's avatar
Anthony Zhou committed
179
			(uint32_t)plat_params->tzdram_size);
180
181
182
183
184
185

		/*
		 * Set up the TZRAM memory aperture to allow only secure world
		 * access
		 */
		tegra_memctrl_tzram_setup(TEGRA_TZRAM_BASE, TEGRA_TZRAM_SIZE);
186
187
188
189
190
	}

	/*
	 * Reset hardware settings.
	 */
Anthony Zhou's avatar
Anthony Zhou committed
191
	(void)tegra_soc_pwr_domain_on_finish(target_state);
192
193
194
}

/*******************************************************************************
195
196
197
 * Handler called when a power domain has just been powered on after
 * having been suspended earlier. The target_state encodes the low power state
 * that each level has woken up from.
198
 ******************************************************************************/
199
void tegra_pwr_domain_suspend_finish(const psci_power_state_t *target_state)
200
{
201
	tegra_pwr_domain_on_finish(target_state);
202
203
204
205
206
207
208
}

/*******************************************************************************
 * Handler called when the system wants to be powered off
 ******************************************************************************/
__dead2 void tegra_system_off(void)
{
209
210
211
	INFO("Powering down system...\n");

	tegra_soc_prepare_system_off();
212
213
214
215
216
217
218
}

/*******************************************************************************
 * Handler called when the system wants to be restarted.
 ******************************************************************************/
__dead2 void tegra_system_reset(void)
{
219
220
	INFO("Restarting system...\n");

221
	/* per-SoC system reset handler */
Anthony Zhou's avatar
Anthony Zhou committed
222
	(void)tegra_soc_prepare_system_reset();
223

224
225
226
227
228
229
	/*
	 * Program the PMC in order to restart the system.
	 */
	tegra_pmc_system_reset();
}

230
231
232
/*******************************************************************************
 * Handler called to check the validity of the power state parameter.
 ******************************************************************************/
Anthony Zhou's avatar
Anthony Zhou committed
233
int32_t tegra_validate_power_state(uint32_t power_state,
234
235
				   psci_power_state_t *req_state)
{
236
	assert(req_state != NULL);
237
238
239
240
241
242
243

	return tegra_soc_validate_power_state(power_state, req_state);
}

/*******************************************************************************
 * Platform handler called to check the validity of the non secure entrypoint.
 ******************************************************************************/
Anthony Zhou's avatar
Anthony Zhou committed
244
int32_t tegra_validate_ns_entrypoint(uintptr_t entrypoint)
245
{
Anthony Zhou's avatar
Anthony Zhou committed
246
247
	int32_t ret = PSCI_E_INVALID_ADDRESS;

248
249
250
251
	/*
	 * Check if the non secure entrypoint lies within the non
	 * secure DRAM.
	 */
Anthony Zhou's avatar
Anthony Zhou committed
252
253
254
	if ((entrypoint >= TEGRA_DRAM_BASE) && (entrypoint <= TEGRA_DRAM_END)) {
		ret = PSCI_E_SUCCESS;
	}
255

Anthony Zhou's avatar
Anthony Zhou committed
256
	return ret;
257
258
}

259
260
261
/*******************************************************************************
 * Export the platform handlers to enable psci to invoke them
 ******************************************************************************/
262
263
264
265
static const plat_psci_ops_t tegra_plat_psci_ops = {
	.cpu_standby			= tegra_cpu_standby,
	.pwr_domain_on			= tegra_pwr_domain_on,
	.pwr_domain_off			= tegra_pwr_domain_off,
266
	.pwr_domain_suspend_pwrdown_early = tegra_pwr_domain_suspend_pwrdown_early,
267
268
269
	.pwr_domain_suspend		= tegra_pwr_domain_suspend,
	.pwr_domain_on_finish		= tegra_pwr_domain_on_finish,
	.pwr_domain_suspend_finish	= tegra_pwr_domain_suspend_finish,
270
	.pwr_domain_pwr_down_wfi	= tegra_pwr_domain_power_down_wfi,
271
272
273
274
275
	.system_off			= tegra_system_off,
	.system_reset			= tegra_system_reset,
	.validate_power_state		= tegra_validate_power_state,
	.validate_ns_entrypoint		= tegra_validate_ns_entrypoint,
	.get_sys_suspend_power_state	= tegra_get_sys_suspend_power_state,
276
277
278
};

/*******************************************************************************
279
 * Export the platform specific power ops and initialize Power Controller
280
 ******************************************************************************/
281
282
int plat_setup_psci_ops(uintptr_t sec_entrypoint,
			const plat_psci_ops_t **psci_ops)
283
{
284
285
286
287
288
289
290
291
292
	psci_power_state_t target_state = { { PSCI_LOCAL_STATE_RUN } };

	/*
	 * Flush entrypoint variable to PoC since it will be
	 * accessed after a reset with the caches turned off.
	 */
	tegra_sec_entry_point = sec_entrypoint;
	flush_dcache_range((uint64_t)&tegra_sec_entry_point, sizeof(uint64_t));

293
294
295
	/*
	 * Reset hardware settings.
	 */
Anthony Zhou's avatar
Anthony Zhou committed
296
	(void)tegra_soc_pwr_domain_on_finish(&target_state);
297
298

	/*
299
	 * Initialize PSCI ops struct
300
	 */
301
	*psci_ops = &tegra_plat_psci_ops;
302
303
304

	return 0;
}
305
306
307
308
309
310
311
312
313

/*******************************************************************************
 * Platform handler to calculate the proper target power level at the
 * specified affinity level
 ******************************************************************************/
plat_local_state_t plat_get_target_pwr_state(unsigned int lvl,
					     const plat_local_state_t *states,
					     unsigned int ncpu)
{
314
	return tegra_soc_get_target_pwr_state(lvl, states, ncpu);
315
}