psci_main.c 11.2 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-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 <arch.h>
8
#include <arch_helpers.h>
9
#include <assert.h>
10
11
#include <debug.h>
#include <platform.h>
dp-arm's avatar
dp-arm committed
12
13
#include <pmf.h>
#include <runtime_instr.h>
Soby Mathew's avatar
Soby Mathew committed
14
#include <smcc.h>
15
#include <string.h>
16
#include "psci_private.h"
17
18
19
20

/*******************************************************************************
 * PSCI frontend api for servicing SMCs. Described in the PSCI spec.
 ******************************************************************************/
21
22
23
int psci_cpu_on(u_register_t target_cpu,
		uintptr_t entrypoint,
		u_register_t context_id)
24
25
26

{
	int rc;
27
	entry_point_info_t ep;
28
29

	/* Determine if the cpu exists of not */
30
31
	rc = psci_validate_mpidr(target_cpu);
	if (rc != PSCI_E_SUCCESS)
32
33
		return PSCI_E_INVALID_PARAMS;

34
35
	/* Validate the entry point and get the entry_point_info */
	rc = psci_validate_entry_point(&ep, entrypoint, context_id);
36
37
38
	if (rc != PSCI_E_SUCCESS)
		return rc;

39
	/*
40
	 * To turn this cpu on, specify which power
41
42
	 * levels need to be turned on
	 */
43
	return psci_cpu_on_start(target_cpu, &ep);
44
45
46
47
48
49
50
51
}

unsigned int psci_version(void)
{
	return PSCI_MAJOR_VER | PSCI_MINOR_VER;
}

int psci_cpu_suspend(unsigned int power_state,
52
53
		     uintptr_t entrypoint,
		     u_register_t context_id)
54
55
{
	int rc;
56
	unsigned int target_pwrlvl, is_power_down_state;
57
	entry_point_info_t ep;
58
59
	psci_power_state_t state_info = { {PSCI_LOCAL_STATE_RUN} };
	plat_local_state_t cpu_pd_state;
60

61
62
63
64
65
66
	/* Validate the power_state parameter */
	rc = psci_validate_power_state(power_state, &state_info);
	if (rc != PSCI_E_SUCCESS) {
		assert(rc == PSCI_E_INVALID_PARAMS);
		return rc;
	}
67

68
69
70
71
	/*
	 * Get the value of the state type bit from the power state parameter.
	 */
	is_power_down_state = psci_get_pstate_type(power_state);
72

73
	/* Sanity check the requested suspend levels */
Soby Mathew's avatar
Soby Mathew committed
74
	assert(psci_validate_suspend_req(&state_info, is_power_down_state)
75
			== PSCI_E_SUCCESS);
76

77
	target_pwrlvl = psci_find_target_suspend_lvl(&state_info);
78
79
80
81
	if (target_pwrlvl == PSCI_INVALID_PWR_LVL) {
		ERROR("Invalid target power level for suspend operation\n");
		panic();
	}
82
83
84
85

	/* Fast path for CPU standby.*/
	if (is_cpu_standby_req(is_power_down_state, target_pwrlvl)) {
		if  (!psci_plat_pm_ops->cpu_standby)
86
87
			return PSCI_E_INVALID_PARAMS;

88
89
90
91
92
93
		/*
		 * Set the state of the CPU power domain to the platform
		 * specific retention state and enter the standby state.
		 */
		cpu_pd_state = state_info.pwr_domain_state[PSCI_CPU_PWR_LVL];
		psci_set_cpu_local_state(cpu_pd_state);
94
95

#if ENABLE_PSCI_STAT
96
		plat_psci_stat_accounting_start(&state_info);
97
98
#endif

dp-arm's avatar
dp-arm committed
99
100
101
102
103
104
#if ENABLE_RUNTIME_INSTRUMENTATION
		PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
		    RT_INSTR_ENTER_HW_LOW_PWR,
		    PMF_NO_CACHE_MAINT);
#endif

105
		psci_plat_pm_ops->cpu_standby(cpu_pd_state);
106

107
108
		/* Upon exit from standby, set the state back to RUN. */
		psci_set_cpu_local_state(PSCI_LOCAL_STATE_RUN);
109

dp-arm's avatar
dp-arm committed
110
111
112
113
114
115
#if ENABLE_RUNTIME_INSTRUMENTATION
		PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
		    RT_INSTR_EXIT_HW_LOW_PWR,
		    PMF_NO_CACHE_MAINT);
#endif

116
#if ENABLE_PSCI_STAT
117
		plat_psci_stat_accounting_stop(&state_info);
118
119

		/* Update PSCI stats */
120
		psci_stats_update_pwr_up(PSCI_CPU_PWR_LVL, &state_info);
121
122
#endif

123
		return PSCI_E_SUCCESS;
124
	}
125

126
	/*
127
128
	 * If a power down state has been requested, we need to verify entry
	 * point and program entry information.
129
	 */
130
	if (is_power_down_state) {
131
		rc = psci_validate_entry_point(&ep, entrypoint, context_id);
132
133
134
		if (rc != PSCI_E_SUCCESS)
			return rc;
	}
135

136
137
	/*
	 * Do what is needed to enter the power down state. Upon success,
138
139
140
	 * enter the final wfi which will power down this CPU. This function
	 * might return if the power down was abandoned for any reason, e.g.
	 * arrival of an interrupt
141
	 */
142
143
144
145
	psci_cpu_suspend_start(&ep,
			    target_pwrlvl,
			    &state_info,
			    is_power_down_state);
146
147

	return PSCI_E_SUCCESS;
148
149
}

150
151

int psci_system_suspend(uintptr_t entrypoint, u_register_t context_id)
152
153
{
	int rc;
154
	psci_power_state_t state_info;
155
156
157
158
159
160
	entry_point_info_t ep;

	/* Check if the current CPU is the last ON CPU in the system */
	if (!psci_is_last_on_cpu())
		return PSCI_E_DENIED;

161
162
	/* Validate the entry point and get the entry_point_info */
	rc = psci_validate_entry_point(&ep, entrypoint, context_id);
163
164
165
	if (rc != PSCI_E_SUCCESS)
		return rc;

166
167
	/* Query the psci_power_state for system suspend */
	psci_query_sys_suspend_pwrstate(&state_info);
168

169
170
171
172
173
	/* Ensure that the psci_power_state makes sense */
	assert(psci_find_target_suspend_lvl(&state_info) == PLAT_MAX_PWR_LVL);
	assert(psci_validate_suspend_req(&state_info, PSTATE_TYPE_POWERDOWN)
						== PSCI_E_SUCCESS);
	assert(is_local_state_off(state_info.pwr_domain_state[PLAT_MAX_PWR_LVL]));
174
175

	/*
176
177
178
	 * Do what is needed to enter the system suspend state. This function
	 * might return if the power down was abandoned for any reason, e.g.
	 * arrival of an interrupt
179
	 */
180
181
182
183
	psci_cpu_suspend_start(&ep,
			    PLAT_MAX_PWR_LVL,
			    &state_info,
			    PSTATE_TYPE_POWERDOWN);
184
185
186
187

	return PSCI_E_SUCCESS;
}

188
189
190
int psci_cpu_off(void)
{
	int rc;
191
	unsigned int target_pwrlvl = PLAT_MAX_PWR_LVL;
192
193

	/*
194
195
196
	 * Do what is needed to power off this CPU and possible higher power
	 * levels if it able to do so. Upon success, enter the final wfi
	 * which will power down this CPU.
197
	 */
198
	rc = psci_do_cpu_off(target_pwrlvl);
199

200
201
202
203
	/*
	 * The only error cpu_off can return is E_DENIED. So check if that's
	 * indeed the case.
	 */
Soby Mathew's avatar
Soby Mathew committed
204
	assert(rc == PSCI_E_DENIED);
205
206
207
208

	return rc;
}

209
int psci_affinity_info(u_register_t target_affinity,
210
211
		       unsigned int lowest_affinity_level)
{
212
	int target_idx;
213

214
215
216
	/* We dont support level higher than PSCI_CPU_PWR_LVL */
	if (lowest_affinity_level > PSCI_CPU_PWR_LVL)
		return PSCI_E_INVALID_PARAMS;
217

218
219
220
221
	/* Calculate the cpu index of the target */
	target_idx = plat_core_pos_by_mpidr(target_affinity);
	if (target_idx == -1)
		return PSCI_E_INVALID_PARAMS;
222

223
	return psci_get_aff_info_state_by_idx(target_idx);
224
225
}

226
int psci_migrate(u_register_t target_cpu)
227
{
Soby Mathew's avatar
Soby Mathew committed
228
	int rc;
229
	u_register_t resident_cpu_mpidr;
Soby Mathew's avatar
Soby Mathew committed
230
231
232
233
234
235
236
237
238
239
240
241
242
243

	rc = psci_spd_migrate_info(&resident_cpu_mpidr);
	if (rc != PSCI_TOS_UP_MIG_CAP)
		return (rc == PSCI_TOS_NOT_UP_MIG_CAP) ?
			  PSCI_E_DENIED : PSCI_E_NOT_SUPPORTED;

	/*
	 * Migrate should only be invoked on the CPU where
	 * the Secure OS is resident.
	 */
	if (resident_cpu_mpidr != read_mpidr_el1())
		return PSCI_E_NOT_PRESENT;

	/* Check the validity of the specified target cpu */
244
	rc = psci_validate_mpidr(target_cpu);
Soby Mathew's avatar
Soby Mathew committed
245
246
247
248
249
250
251
252
253
	if (rc != PSCI_E_SUCCESS)
		return PSCI_E_INVALID_PARAMS;

	assert(psci_spd_pm && psci_spd_pm->svc_migrate);

	rc = psci_spd_pm->svc_migrate(read_mpidr_el1(), target_cpu);
	assert(rc == PSCI_E_SUCCESS || rc == PSCI_E_INTERN_FAIL);

	return rc;
254
255
}

Soby Mathew's avatar
Soby Mathew committed
256
int psci_migrate_info_type(void)
257
{
258
	u_register_t resident_cpu_mpidr;
Soby Mathew's avatar
Soby Mathew committed
259
260

	return psci_spd_migrate_info(&resident_cpu_mpidr);
261
262
}

Soby Mathew's avatar
Soby Mathew committed
263
long psci_migrate_info_up_cpu(void)
264
{
265
	u_register_t resident_cpu_mpidr;
Soby Mathew's avatar
Soby Mathew committed
266
267
	int rc;

268
	/*
Soby Mathew's avatar
Soby Mathew committed
269
270
	 * Return value of this depends upon what
	 * psci_spd_migrate_info() returns.
271
	 */
Soby Mathew's avatar
Soby Mathew committed
272
273
274
275
276
	rc = psci_spd_migrate_info(&resident_cpu_mpidr);
	if (rc != PSCI_TOS_NOT_UP_MIG_CAP && rc != PSCI_TOS_UP_MIG_CAP)
		return PSCI_E_INVALID_PARAMS;

	return resident_cpu_mpidr;
277
278
}

279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
int psci_node_hw_state(u_register_t target_cpu,
		       unsigned int power_level)
{
	int rc;

	/* Validate target_cpu */
	rc = psci_validate_mpidr(target_cpu);
	if (rc != PSCI_E_SUCCESS)
		return PSCI_E_INVALID_PARAMS;

	/* Validate power_level against PLAT_MAX_PWR_LVL */
	if (power_level > PLAT_MAX_PWR_LVL)
		return PSCI_E_INVALID_PARAMS;

	/*
	 * Dispatch this call to platform to query power controller, and pass on
	 * to the caller what it returns
	 */
	assert(psci_plat_pm_ops->get_node_hw_state);
	rc = psci_plat_pm_ops->get_node_hw_state(target_cpu, power_level);
	assert((rc >= HW_ON && rc <= HW_STANDBY) || rc == PSCI_E_NOT_SUPPORTED
			|| rc == PSCI_E_INVALID_PARAMS);
	return rc;
}

Soby Mathew's avatar
Soby Mathew committed
304
305
int psci_features(unsigned int psci_fid)
{
306
	unsigned int local_caps = psci_caps;
Soby Mathew's avatar
Soby Mathew committed
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325

	/* Check if it is a 64 bit function */
	if (((psci_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_64)
		local_caps &= PSCI_CAP_64BIT_MASK;

	/* Check for invalid fid */
	if (!(is_std_svc_call(psci_fid) && is_valid_fast_smc(psci_fid)
			&& is_psci_fid(psci_fid)))
		return PSCI_E_NOT_SUPPORTED;


	/* Check if the psci fid is supported or not */
	if (!(local_caps & define_psci_cap(psci_fid)))
		return PSCI_E_NOT_SUPPORTED;

	/* Format the feature flags */
	if (psci_fid == PSCI_CPU_SUSPEND_AARCH32 ||
			psci_fid == PSCI_CPU_SUSPEND_AARCH64) {
		/*
326
		 * The trusted firmware does not support OS Initiated Mode.
Soby Mathew's avatar
Soby Mathew committed
327
		 */
328
		return (FF_PSTATE << FF_PSTATE_SHIFT) |
Soby Mathew's avatar
Soby Mathew committed
329
330
331
332
333
334
335
			((!FF_SUPPORTS_OS_INIT_MODE) << FF_MODE_SUPPORT_SHIFT);
	}

	/* Return 0 for all other fid's */
	return PSCI_E_SUCCESS;
}

336
337
338
/*******************************************************************************
 * PSCI top level handler for servicing SMCs.
 ******************************************************************************/
Soby Mathew's avatar
Soby Mathew committed
339
u_register_t psci_smc_handler(uint32_t smc_fid,
340
341
342
343
			  u_register_t x1,
			  u_register_t x2,
			  u_register_t x3,
			  u_register_t x4,
344
345
			  void *cookie,
			  void *handle,
346
			  u_register_t flags)
347
{
Andrew Thoelke's avatar
Andrew Thoelke committed
348
	if (is_caller_secure(flags))
Soby Mathew's avatar
Soby Mathew committed
349
		return SMC_UNK;
Andrew Thoelke's avatar
Andrew Thoelke committed
350

351
352
	/* Check the fid against the capabilities */
	if (!(psci_caps & define_psci_cap(smc_fid)))
Soby Mathew's avatar
Soby Mathew committed
353
		return SMC_UNK;
354

Andrew Thoelke's avatar
Andrew Thoelke committed
355
356
357
358
359
360
361
362
363
	if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) {
		/* 32-bit PSCI function, clear top parameter bits */

		x1 = (uint32_t)x1;
		x2 = (uint32_t)x2;
		x3 = (uint32_t)x3;

		switch (smc_fid) {
		case PSCI_VERSION:
Soby Mathew's avatar
Soby Mathew committed
364
			return psci_version();
Andrew Thoelke's avatar
Andrew Thoelke committed
365
366

		case PSCI_CPU_OFF:
Soby Mathew's avatar
Soby Mathew committed
367
			return psci_cpu_off();
Andrew Thoelke's avatar
Andrew Thoelke committed
368
369

		case PSCI_CPU_SUSPEND_AARCH32:
Soby Mathew's avatar
Soby Mathew committed
370
			return psci_cpu_suspend(x1, x2, x3);
Andrew Thoelke's avatar
Andrew Thoelke committed
371
372

		case PSCI_CPU_ON_AARCH32:
Soby Mathew's avatar
Soby Mathew committed
373
			return psci_cpu_on(x1, x2, x3);
Andrew Thoelke's avatar
Andrew Thoelke committed
374
375

		case PSCI_AFFINITY_INFO_AARCH32:
Soby Mathew's avatar
Soby Mathew committed
376
			return psci_affinity_info(x1, x2);
Andrew Thoelke's avatar
Andrew Thoelke committed
377
378

		case PSCI_MIG_AARCH32:
Soby Mathew's avatar
Soby Mathew committed
379
			return psci_migrate(x1);
Andrew Thoelke's avatar
Andrew Thoelke committed
380
381

		case PSCI_MIG_INFO_TYPE:
Soby Mathew's avatar
Soby Mathew committed
382
			return psci_migrate_info_type();
Andrew Thoelke's avatar
Andrew Thoelke committed
383
384

		case PSCI_MIG_INFO_UP_CPU_AARCH32:
Soby Mathew's avatar
Soby Mathew committed
385
			return psci_migrate_info_up_cpu();
Andrew Thoelke's avatar
Andrew Thoelke committed
386

387
388
389
		case PSCI_NODE_HW_STATE_AARCH32:
			return psci_node_hw_state(x1, x2);

390
		case PSCI_SYSTEM_SUSPEND_AARCH32:
Soby Mathew's avatar
Soby Mathew committed
391
			return psci_system_suspend(x1, x2);
392

393
394
395
396
397
398
399
400
		case PSCI_SYSTEM_OFF:
			psci_system_off();
			/* We should never return from psci_system_off() */

		case PSCI_SYSTEM_RESET:
			psci_system_reset();
			/* We should never return from psci_system_reset() */

Soby Mathew's avatar
Soby Mathew committed
401
		case PSCI_FEATURES:
Soby Mathew's avatar
Soby Mathew committed
402
			return psci_features(x1);
Soby Mathew's avatar
Soby Mathew committed
403

404
405
#if ENABLE_PSCI_STAT
		case PSCI_STAT_RESIDENCY_AARCH32:
Soby Mathew's avatar
Soby Mathew committed
406
			return psci_stat_residency(x1, x2);
407
408

		case PSCI_STAT_COUNT_AARCH32:
Soby Mathew's avatar
Soby Mathew committed
409
			return psci_stat_count(x1, x2);
410
411
#endif

Andrew Thoelke's avatar
Andrew Thoelke committed
412
413
414
415
416
417
418
419
		default:
			break;
		}
	} else {
		/* 64-bit PSCI function */

		switch (smc_fid) {
		case PSCI_CPU_SUSPEND_AARCH64:
Soby Mathew's avatar
Soby Mathew committed
420
			return psci_cpu_suspend(x1, x2, x3);
Andrew Thoelke's avatar
Andrew Thoelke committed
421
422

		case PSCI_CPU_ON_AARCH64:
Soby Mathew's avatar
Soby Mathew committed
423
			return psci_cpu_on(x1, x2, x3);
Andrew Thoelke's avatar
Andrew Thoelke committed
424
425

		case PSCI_AFFINITY_INFO_AARCH64:
Soby Mathew's avatar
Soby Mathew committed
426
			return psci_affinity_info(x1, x2);
Andrew Thoelke's avatar
Andrew Thoelke committed
427
428

		case PSCI_MIG_AARCH64:
Soby Mathew's avatar
Soby Mathew committed
429
			return psci_migrate(x1);
Andrew Thoelke's avatar
Andrew Thoelke committed
430
431

		case PSCI_MIG_INFO_UP_CPU_AARCH64:
Soby Mathew's avatar
Soby Mathew committed
432
			return psci_migrate_info_up_cpu();
Andrew Thoelke's avatar
Andrew Thoelke committed
433

434
435
436
		case PSCI_NODE_HW_STATE_AARCH64:
			return psci_node_hw_state(x1, x2);

437
		case PSCI_SYSTEM_SUSPEND_AARCH64:
Soby Mathew's avatar
Soby Mathew committed
438
			return psci_system_suspend(x1, x2);
439

440
441
#if ENABLE_PSCI_STAT
		case PSCI_STAT_RESIDENCY_AARCH64:
Soby Mathew's avatar
Soby Mathew committed
442
			return psci_stat_residency(x1, x2);
443
444

		case PSCI_STAT_COUNT_AARCH64:
Soby Mathew's avatar
Soby Mathew committed
445
			return psci_stat_count(x1, x2);
446
447
#endif

Andrew Thoelke's avatar
Andrew Thoelke committed
448
449
450
		default:
			break;
		}
451
452
	}

Andrew Thoelke's avatar
Andrew Thoelke committed
453
	WARN("Unimplemented PSCI Call: 0x%x \n", smc_fid);
Soby Mathew's avatar
Soby Mathew committed
454
	return SMC_UNK;
455
}