plat_psci_handlers.c 8.13 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2017, 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 <assert.h>
8
#include <cortex_a57.h>
9
10
11
12
13
14
15
#include <arch_helpers.h>
#include <common/debug.h>
#include <drivers/delay_timer.h>
#include <lib/mmio.h>
#include <lib/psci/psci.h>
#include <plat/common/platform.h>

16
#include <bpmp.h>
17
#include <flowctrl.h>
18
#include <pmc.h>
19
20
#include <platform_def.h>
#include <security_engine.h>
21
22
#include <tegra_def.h>
#include <tegra_private.h>
23
#include <tegra_platform.h>
24

25
26
27
28
29
30
31
/*
 * Register used to clear CPU reset signals. Each CPU has two reset
 * signals: CPU reset (3:0) and Core reset (19:16).
 */
#define CPU_CMPLX_RESET_CLR		0x454
#define CPU_CORE_RESET_MASK		0x10001

32
33
34
35
36
/* Clock and Reset controller registers for system clock's settings */
#define SCLK_RATE			0x30
#define SCLK_BURST_POLICY		0x28
#define SCLK_BURST_POLICY_DEFAULT	0x10000000

37
38
static int cpu_powergate_mask[PLATFORM_MAX_CPUS_PER_CLUSTER];

39
40
int32_t tegra_soc_validate_power_state(unsigned int power_state,
					psci_power_state_t *req_state)
41
{
42
43
	int state_id = psci_get_pstate_id(power_state);

44
	/* Sanity check the requested state id */
45
	switch (state_id) {
46
	case PSTATE_ID_CORE_POWERDN:
47
48
49
50
51
52
53
		/*
		 * Core powerdown request only for afflvl 0
		 */
		req_state->pwr_domain_state[MPIDR_AFFLVL0] = state_id & 0xff;

		break;

54
55
	case PSTATE_ID_CLUSTER_IDLE:
	case PSTATE_ID_CLUSTER_POWERDN:
56
57
58
59
		/*
		 * Cluster powerdown/idle request only for afflvl 1
		 */
		req_state->pwr_domain_state[MPIDR_AFFLVL1] = state_id;
60
		req_state->pwr_domain_state[MPIDR_AFFLVL0] = PSTATE_ID_CORE_POWERDN;
61
62
63

		break;

64
	case PSTATE_ID_SOC_POWERDN:
65
66
67
		/*
		 * System powerdown request only for afflvl 2
		 */
68
		for (uint32_t i = MPIDR_AFFLVL0; i < PLAT_MAX_PWR_LVL; i++)
69
70
71
72
73
			req_state->pwr_domain_state[i] = PLAT_MAX_OFF_STATE;

		req_state->pwr_domain_state[PLAT_MAX_PWR_LVL] =
			PLAT_SYS_SUSPEND_STATE_ID;

74
75
76
		break;

	default:
77
78
		ERROR("%s: unsupported state id (%d)\n", __func__, state_id);
		return PSCI_E_INVALID_PARAMS;
79
80
81
82
83
	}

	return PSCI_E_SUCCESS;
}

84
85
86
87
88
89
90
91
/*******************************************************************************
 * Platform handler to calculate the proper target power level at the
 * specified affinity level
 ******************************************************************************/
plat_local_state_t tegra_soc_get_target_pwr_state(unsigned int lvl,
					     const plat_local_state_t *states,
					     unsigned int ncpu)
{
92
	plat_local_state_t target = PSCI_LOCAL_STATE_RUN;
93
94
	int cpu = plat_my_core_pos();
	int core_pos = read_mpidr() & MPIDR_CPU_MASK;
95
96
	uint32_t bpmp_reply, data[3];
	int ret;
97
98
99
100
101
102
103

	/* get the power state at this level */
	if (lvl == MPIDR_AFFLVL1)
		target = *(states + core_pos);
	if (lvl == MPIDR_AFFLVL2)
		target = *(states + cpu);

104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
	if ((lvl == MPIDR_AFFLVL1) && (target == PSTATE_ID_CLUSTER_IDLE)) {

		/* initialize the bpmp interface */
		(void)tegra_bpmp_init();

		/* Cluster idle */
		data[0] = (uint32_t)cpu;
		data[1] = TEGRA_PM_CC6;
		data[2] = TEGRA_PM_SC1;
		ret = tegra_bpmp_send_receive_atomic(MRQ_DO_IDLE,
				(void *)&data, (int)sizeof(data),
				(void *)&bpmp_reply, (int)sizeof(bpmp_reply));

		/* check if cluster idle entry is allowed */
		if ((ret != 0L) || (bpmp_reply != BPMP_CCx_ALLOWED)) {

			/* Cluster idle not allowed */
			target = PSCI_LOCAL_STATE_RUN;
		}
123

124
	} else if ((lvl == MPIDR_AFFLVL1) && (target == PSTATE_ID_CLUSTER_POWERDN)) {
125

126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
		/* initialize the bpmp interface */
		(void)tegra_bpmp_init();

		/* Cluster power-down */
		data[0] = (uint32_t)cpu;
		data[1] = TEGRA_PM_CC7;
		data[2] = TEGRA_PM_SC1;
		ret = tegra_bpmp_send_receive_atomic(MRQ_DO_IDLE,
				(void *)&data, (int)sizeof(data),
				(void *)&bpmp_reply, (int)sizeof(bpmp_reply));

		/* check if cluster power down is allowed */
		if ((ret != 0L) || (bpmp_reply != BPMP_CCx_ALLOWED)) {

			/* Cluster power down not allowed */
			target = PSCI_LOCAL_STATE_RUN;
		}

	} else if (((lvl == MPIDR_AFFLVL2) || (lvl == MPIDR_AFFLVL1)) &&
	    (target == PSTATE_ID_SOC_POWERDN)) {

		/* System Suspend */
		target = PSTATE_ID_SOC_POWERDN;

	} else {
		; /* do nothing */
	}

	return target;
155
156
}

157
int tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state)
158
{
159
160
161
162
163
164
	u_register_t mpidr = read_mpidr();
	const plat_local_state_t *pwr_domain_state =
		target_state->pwr_domain_state;
	unsigned int stateid_afflvl2 = pwr_domain_state[MPIDR_AFFLVL2];
	unsigned int stateid_afflvl1 = pwr_domain_state[MPIDR_AFFLVL1];
	unsigned int stateid_afflvl0 = pwr_domain_state[MPIDR_AFFLVL0];
165
	int ret = PSCI_E_SUCCESS;
166

167
	if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
168

169
		assert((stateid_afflvl0 == PLAT_MAX_OFF_STATE) ||
170
			(stateid_afflvl0 == PSTATE_ID_SOC_POWERDN));
171
		assert((stateid_afflvl1 == PLAT_MAX_OFF_STATE) ||
172
173
174
			(stateid_afflvl1 == PSTATE_ID_SOC_POWERDN));

		if (tegra_chipid_is_t210_b01()) {
175

176
177
178
179
180
181
182
183
184
185
			/* Suspend se/se2 and pka1 */
			if (tegra_se_suspend() != 0) {
				ret = PSCI_E_INTERN_FAIL;
			}

			/* Save tzram contents */
			if (tegra_se_save_tzram() != 0) {
				ret = PSCI_E_INTERN_FAIL;
			}
		}
186

187
		/* enter system suspend */
188
189
190
		if (ret == PSCI_E_SUCCESS) {
			tegra_fc_soc_powerdn(mpidr);
		}
191

192
	} else if (stateid_afflvl1 == PSTATE_ID_CLUSTER_IDLE) {
193

194
		assert(stateid_afflvl0 == PSTATE_ID_CORE_POWERDN);
195

196
197
		/* Prepare for cluster idle */
		tegra_fc_cluster_idle(mpidr);
198

199
	} else if (stateid_afflvl1 == PSTATE_ID_CLUSTER_POWERDN) {
200

201
		assert(stateid_afflvl0 == PSTATE_ID_CORE_POWERDN);
202
203
204
205
206
207
208
209
210
211

		/* Prepare for cluster powerdn */
		tegra_fc_cluster_powerdn(mpidr);

	} else if (stateid_afflvl0 == PSTATE_ID_CORE_POWERDN) {

		/* Prepare for cpu powerdn */
		tegra_fc_cpu_powerdn(mpidr);

	} else {
212
213
		ERROR("%s: Unknown state id (%d, %d, %d)\n", __func__,
			stateid_afflvl2, stateid_afflvl1, stateid_afflvl0);
214
		ret = PSCI_E_NOT_SUPPORTED;
215
216
	}

217
	return ret;
218
219
}

220
int tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state)
221
{
222
	const plat_params_from_bl2_t *plat_params = bl31_get_plat_params();
223
224
	uint32_t val;

225
226
227
228
229
230
231
232
	/* platform parameter passed by the previous bootloader */
	if (plat_params->l2_ecc_parity_prot_dis != 1) {
		/* Enable ECC Parity Protection for Cortex-A57 CPUs */
		val = read_l2ctlr_el1();
		val |= (uint64_t)CORTEX_A57_L2_ECC_PARITY_PROTECTION_BIT;
		write_l2ctlr_el1(val);
	}

233
234
235
	/*
	 * Check if we are exiting from SOC_POWERDN.
	 */
236
237
	if (target_state->pwr_domain_state[PLAT_MAX_PWR_LVL] ==
			PLAT_SYS_SUSPEND_STATE_ID) {
238

239
240
241
242
243
244
245
		/*
		 * Security engine resume
		 */
		if (tegra_chipid_is_t210_b01()) {
			tegra_se_resume();
		}

246
247
248
249
250
		/*
		 * Lock scratch registers which hold the CPU vectors
		 */
		tegra_pmc_lock_cpu_vectors();

251
252
253
254
255
256
257
258
259
		/*
		 * Enable WRAP to INCR burst type conversions for
		 * incoming requests on the AXI slave ports.
		 */
		val = mmio_read_32(TEGRA_MSELECT_BASE + MSELECT_CONFIG);
		val &= ~ENABLE_UNSUP_TX_ERRORS;
		val |= ENABLE_WRAP_TO_INCR_BURSTS;
		mmio_write_32(TEGRA_MSELECT_BASE + MSELECT_CONFIG, val);

260
261
262
263
264
265
266
267
268
269
270
271
		/*
		 * Restore Boot and Power Management Processor (BPMP) reset
		 * address and reset it.
		 */
		tegra_fc_reset_bpmp();
	}

	/*
	 * T210 has a dedicated ARMv7 boot and power mgmt processor, BPMP. It's
	 * used for power management and boot purposes. Inform the BPMP that
	 * we have completed the cluster power up.
	 */
272
	tegra_fc_lock_active_cluster();
273
274
275
276

	return PSCI_E_SUCCESS;
}

277
int tegra_soc_pwr_domain_on(u_register_t mpidr)
278
279
{
	int cpu = mpidr & MPIDR_CPU_MASK;
280
281
282
283
	uint32_t mask = CPU_CORE_RESET_MASK << cpu;

	/* Deassert CPU reset signals */
	mmio_write_32(TEGRA_CAR_RESET_BASE + CPU_CMPLX_RESET_CLR, mask);
284
285
286
287
288
289
290
291
292
293
294
295

	/* Turn on CPU using flow controller or PMC */
	if (cpu_powergate_mask[cpu] == 0) {
		tegra_pmc_cpu_on(cpu);
		cpu_powergate_mask[cpu] = 1;
	} else {
		tegra_fc_cpu_on(cpu);
	}

	return PSCI_E_SUCCESS;
}

296
int tegra_soc_pwr_domain_off(const psci_power_state_t *target_state)
297
{
298
	tegra_fc_cpu_off(read_mpidr() & MPIDR_CPU_MASK);
299
300
	return PSCI_E_SUCCESS;
}
301
302
303
304
305
306
307
308

int tegra_soc_prepare_system_reset(void)
{
	/*
	 * Set System Clock (SCLK) to POR default so that the clock source
	 * for the PMC APB clock would not be changed due to system reset.
	 */
	mmio_write_32((uintptr_t)TEGRA_CAR_RESET_BASE + SCLK_BURST_POLICY,
309
		SCLK_BURST_POLICY_DEFAULT);
310
311
312
313
314
315
316
	mmio_write_32((uintptr_t)TEGRA_CAR_RESET_BASE + SCLK_RATE, 0);

	/* Wait 1 ms to make sure clock source/device logic is stabilized. */
	mdelay(1);

	return PSCI_E_SUCCESS;
}