k3_psci.c 3.53 KB
Newer Older
Benjamin Fair's avatar
Benjamin Fair committed
1
2
3
4
5
6
7
8
9
/*
 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <assert.h>
#include <stdbool.h>

10
11
12
13
14
15
#include <arch_helpers.h>
#include <common/debug.h>
#include <lib/el3_runtime/cpu_data.h>
#include <lib/psci/psci.h>
#include <plat/common/platform.h>

16
#include <ti_sci_protocol.h>
17
#include <k3_gicv3.h>
18
19
#include <ti_sci.h>

Benjamin Fair's avatar
Benjamin Fair committed
20
21
22
23
uintptr_t k3_sec_entrypoint;

static void k3_cpu_standby(plat_local_state_t cpu_state)
{
24
25
26
27
28
29
30
	unsigned int scr;

	scr = read_scr_el3();
	/* Enable the Non secure interrupt to wake the CPU */
	write_scr_el3(scr | SCR_IRQ_BIT | SCR_FIQ_BIT);
	isb();
	/* dsb is good practice before using wfi to enter low power states */
Benjamin Fair's avatar
Benjamin Fair committed
31
	dsb();
32
	/* Enter standby state */
Benjamin Fair's avatar
Benjamin Fair committed
33
	wfi();
34
35
	/* Restore SCR */
	write_scr_el3(scr);
Benjamin Fair's avatar
Benjamin Fair committed
36
37
38
39
}

static int k3_pwr_domain_on(u_register_t mpidr)
{
40
	int core, proc_id, device_id, ret;
41

42
43
44
	core = plat_core_pos_by_mpidr(mpidr);
	if (core < 0) {
		ERROR("Could not get target core id: %d\n", core);
45
46
47
		return PSCI_E_INTERN_FAIL;
	}

48
49
	proc_id = PLAT_PROC_START_ID + core;
	device_id = PLAT_PROC_DEVICE_START_ID + core;
50

51
	ret = ti_sci_proc_request(proc_id);
52
53
54
55
56
	if (ret) {
		ERROR("Request for processor failed: %d\n", ret);
		return PSCI_E_INTERN_FAIL;
	}

57
	ret = ti_sci_proc_set_boot_cfg(proc_id, k3_sec_entrypoint, 0, 0);
58
59
60
61
62
	if (ret) {
		ERROR("Request to set core boot address failed: %d\n", ret);
		return PSCI_E_INTERN_FAIL;
	}

63
	ret = ti_sci_device_get(device_id);
64
65
66
67
	if (ret) {
		ERROR("Request to start core failed: %d\n", ret);
		return PSCI_E_INTERN_FAIL;
	}
Benjamin Fair's avatar
Benjamin Fair committed
68
69
70
71
72
73

	return PSCI_E_SUCCESS;
}

void k3_pwr_domain_off(const psci_power_state_t *target_state)
{
74
	int core, proc_id, device_id, ret;
75

Benjamin Fair's avatar
Benjamin Fair committed
76
77
78
	/* Prevent interrupts from spuriously waking up this cpu */
	k3_gic_cpuif_disable();

79
80
81
	core = plat_my_core_pos();
	proc_id = PLAT_PROC_START_ID + core;
	device_id = PLAT_PROC_DEVICE_START_ID + core;
82

83
	/* Start by sending wait for WFI command */
84
	ret = ti_sci_proc_wait_boot_status_no_wait(proc_id,
85
86
87
88
89
90
91
			/*
			 * Wait maximum time to give us the best chance to get
			 * to WFI before this command timeouts
			 */
			UINT8_MAX, 100, UINT8_MAX, UINT8_MAX,
			/* Wait for WFI */
			PROC_BOOT_STATUS_FLAG_ARMV8_WFI, 0, 0, 0);
92
	if (ret) {
93
94
95
96
97
		ERROR("Sending wait for WFI failed (%d)\n", ret);
		return;
	}

	/* Now queue up the core shutdown request */
98
	ret = ti_sci_device_put_no_wait(device_id);
99
100
	if (ret) {
		ERROR("Sending core shutdown message failed (%d)\n", ret);
101
102
		return;
	}
Benjamin Fair's avatar
Benjamin Fair committed
103
104
105
106
107
108
109
110
111
112
113
114
}

void k3_pwr_domain_on_finish(const psci_power_state_t *target_state)
{
	/* TODO: Indicate to System firmware about completion */

	k3_gic_pcpu_init();
	k3_gic_cpuif_enable();
}

static void __dead2 k3_system_reset(void)
{
115
116
	/* Send the system reset request to system firmware */
	ti_sci_core_reboot();
Benjamin Fair's avatar
Benjamin Fair committed
117
118
119
120
121
122
123
124
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
155

	while (true)
		wfi();
}

static int k3_validate_power_state(unsigned int power_state,
				   psci_power_state_t *req_state)
{
	/* TODO: perform the proper validation */

	return PSCI_E_SUCCESS;
}

static int k3_validate_ns_entrypoint(uintptr_t entrypoint)
{
	/* TODO: perform the proper validation */

	return PSCI_E_SUCCESS;
}

static const plat_psci_ops_t k3_plat_psci_ops = {
	.cpu_standby = k3_cpu_standby,
	.pwr_domain_on = k3_pwr_domain_on,
	.pwr_domain_off = k3_pwr_domain_off,
	.pwr_domain_on_finish = k3_pwr_domain_on_finish,
	.system_reset = k3_system_reset,
	.validate_power_state = k3_validate_power_state,
	.validate_ns_entrypoint = k3_validate_ns_entrypoint
};

int plat_setup_psci_ops(uintptr_t sec_entrypoint,
			const plat_psci_ops_t **psci_ops)
{
	k3_sec_entrypoint = sec_entrypoint;

	*psci_ops = &k3_plat_psci_ops;

	return 0;
}