tegra_pm.c 11 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2020, 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
 * 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.
******************************************************************************/
37
static 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
static 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.
 ******************************************************************************/
87
static 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
static 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

	/* disable GICC */
	tegra_gic_cpuif_deactivate();
102
103
}

104
105
106
107
108
109
110
111
112
113
114
/*******************************************************************************
 * 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);
}

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

	/* disable GICC */
	tegra_gic_cpuif_deactivate();
}

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

137
138
139
140
	/* Disable console if we are entering deep sleep. */
	if (target_state->pwr_domain_state[PLAT_MAX_PWR_LVL] ==
			PSTATE_ID_SOC_POWERDN) {
		INFO("%s: complete. Entering System Suspend...\n", __func__);
141
		console_flush();
142
143
144
		console_switch_state(0);
	}

145
	wfi();
146
147
148
	panic();
}

149
/*******************************************************************************
150
151
152
 * 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.
153
 ******************************************************************************/
154
static void tegra_pwr_domain_on_finish(const psci_power_state_t *target_state)
155
{
Anthony Zhou's avatar
Anthony Zhou committed
156
	const plat_params_from_bl2_t *plat_params;
157
158
159
160

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

164
165
166
167
168
169
170
		/*
		 * On entering System Suspend state, the GIC loses power
		 * completely. Initialize the GIC global distributor and
		 * GIC cpu interfaces.
		 */
		tegra_gic_init();

171
172
		/* Restart console output. */
		console_switch_state(CONSOLE_FLAG_RUNTIME);
173

174
		/*
175
176
		 * Restore Memory Controller settings as it loses state
		 * during system suspend.
177
		 */
178
		tegra_memctrl_restore_settings();
179
180
181
182
183

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

187
188
189
190
191
	} else {
		/*
		 * Initialize the GIC cpu and distributor interfaces
		 */
		tegra_gic_pcpu_init();
192
193
194
195
196
	}

	/*
	 * Reset hardware settings.
	 */
Anthony Zhou's avatar
Anthony Zhou committed
197
	(void)tegra_soc_pwr_domain_on_finish(target_state);
198
199
200
}

/*******************************************************************************
201
202
203
 * 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.
204
 ******************************************************************************/
205
static void tegra_pwr_domain_suspend_finish(const psci_power_state_t *target_state)
206
{
207
	tegra_pwr_domain_on_finish(target_state);
208
209
210
211
212
}

/*******************************************************************************
 * Handler called when the system wants to be powered off
 ******************************************************************************/
213
static __dead2 void tegra_system_off(void)
214
{
215
216
217
	INFO("Powering down system...\n");

	tegra_soc_prepare_system_off();
218
219
220
221
222
}

/*******************************************************************************
 * Handler called when the system wants to be restarted.
 ******************************************************************************/
223
static __dead2 void tegra_system_reset(void)
224
{
225
226
	INFO("Restarting system...\n");

227
	/* per-SoC system reset handler */
Anthony Zhou's avatar
Anthony Zhou committed
228
	(void)tegra_soc_prepare_system_reset();
229

230
231
232
233
	/* wait for the system to reset */
	for (;;) {
		;
	}
234
235
}

236
237
238
/*******************************************************************************
 * Handler called to check the validity of the power state parameter.
 ******************************************************************************/
239
static int32_t tegra_validate_power_state(uint32_t power_state,
240
241
				   psci_power_state_t *req_state)
{
242
	assert(req_state != NULL);
243
244
245
246
247
248
249

	return tegra_soc_validate_power_state(power_state, req_state);
}

/*******************************************************************************
 * Platform handler called to check the validity of the non secure entrypoint.
 ******************************************************************************/
250
static int32_t tegra_validate_ns_entrypoint(uintptr_t entrypoint)
251
{
Anthony Zhou's avatar
Anthony Zhou committed
252
253
	int32_t ret = PSCI_E_INVALID_ADDRESS;

254
255
256
257
	/*
	 * Check if the non secure entrypoint lies within the non
	 * secure DRAM.
	 */
Anthony Zhou's avatar
Anthony Zhou committed
258
259
260
	if ((entrypoint >= TEGRA_DRAM_BASE) && (entrypoint <= TEGRA_DRAM_END)) {
		ret = PSCI_E_SUCCESS;
	}
261

Anthony Zhou's avatar
Anthony Zhou committed
262
	return ret;
263
264
}

265
266
267
/*******************************************************************************
 * Export the platform handlers to enable psci to invoke them
 ******************************************************************************/
268
static plat_psci_ops_t tegra_plat_psci_ops = {
269
270
271
	.cpu_standby			= tegra_cpu_standby,
	.pwr_domain_on			= tegra_pwr_domain_on,
	.pwr_domain_off			= tegra_pwr_domain_off,
272
	.pwr_domain_suspend_pwrdown_early = tegra_pwr_domain_suspend_pwrdown_early,
273
274
275
	.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,
276
	.pwr_domain_pwr_down_wfi	= tegra_pwr_domain_power_down_wfi,
277
278
279
280
281
	.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,
282
283
284
};

/*******************************************************************************
285
 * Export the platform specific power ops and initialize Power Controller
286
 ******************************************************************************/
287
288
int plat_setup_psci_ops(uintptr_t sec_entrypoint,
			const plat_psci_ops_t **psci_ops)
289
{
290
291
292
293
294
295
296
297
298
	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));

299
300
301
	/*
	 * Reset hardware settings.
	 */
Anthony Zhou's avatar
Anthony Zhou committed
302
	(void)tegra_soc_pwr_domain_on_finish(&target_state);
303

304
305
306
307
308
309
310
311
	/*
	 * Disable System Suspend if the platform does not
	 * support it
	 */
	if (!plat_supports_system_suspend()) {
		tegra_plat_psci_ops.get_sys_suspend_power_state = NULL;
	}

312
	/*
313
	 * Initialize PSCI ops struct
314
	 */
315
	*psci_ops = &tegra_plat_psci_ops;
316
317
318

	return 0;
}
319
320
321
322
323
324
325
326
327

/*******************************************************************************
 * 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)
{
328
	return tegra_soc_get_target_pwr_state(lvl, states, ncpu);
329
}