gxbb_pm.c 4.39 KB
Newer Older
1
/*
2
 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
3
4
5
6
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
#include <arch_helpers.h>
Carlo Caione's avatar
Carlo Caione committed
8
#include <assert.h>
9
10
11
#include <common/debug.h>
#include <drivers/arm/gicv2.h>
#include <drivers/console.h>
Carlo Caione's avatar
Carlo Caione committed
12
#include <errno.h>
13
14
15
#include <lib/mmio.h>
#include <lib/psci/psci.h>
#include <plat/common/platform.h>
Carlo Caione's avatar
Carlo Caione committed
16
#include <platform_def.h>
17

18
#include "aml_private.h"
19
20
21
22
23
24
25
26
27

#define SCPI_POWER_ON		0
#define SCPI_POWER_RETENTION	1
#define SCPI_POWER_OFF		3

#define SCPI_SYSTEM_SHUTDOWN	0
#define SCPI_SYSTEM_REBOOT	1

static uintptr_t gxbb_sec_entrypoint;
28
static volatile uint32_t gxbb_cpu0_go;
29
30
31

static void gxbb_program_mailbox(u_register_t mpidr, uint64_t value)
{
32
	unsigned int core = plat_calc_core_pos(mpidr);
33
	uintptr_t cpu_mailbox_addr = AML_PSCI_MAILBOX_BASE + (core << 4);
34
35
36
37
38
39
40
41
42

	mmio_write_64(cpu_mailbox_addr, value);
	flush_dcache_range(cpu_mailbox_addr, sizeof(uint64_t));
}

static void __dead2 gxbb_system_reset(void)
{
	INFO("BL31: PSCI_SYSTEM_RESET\n");

43
	uint32_t status = mmio_read_32(AML_AO_RTI_STATUS_REG3);
44
45
46
47
48
49
50

	NOTICE("BL31: Reboot reason: 0x%x\n", status);

	status &= 0xFFFF0FF0;

	console_flush();

51
	mmio_write_32(AML_AO_RTI_STATUS_REG3, status);
52

53
	int ret = aml_scpi_sys_power_state(SCPI_SYSTEM_REBOOT);
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69

	if (ret != 0) {
		ERROR("BL31: PSCI_SYSTEM_RESET: SCP error: %u\n", ret);
		panic();
	}

	wfi();

	ERROR("BL31: PSCI_SYSTEM_RESET: Operation not handled\n");
	panic();
}

static void __dead2 gxbb_system_off(void)
{
	INFO("BL31: PSCI_SYSTEM_OFF\n");

70
	unsigned int ret = aml_scpi_sys_power_state(SCPI_SYSTEM_SHUTDOWN);
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86

	if (ret != 0) {
		ERROR("BL31: PSCI_SYSTEM_OFF: SCP error %u\n", ret);
		panic();
	}

	gxbb_program_mailbox(read_mpidr_el1(), 0);

	wfi();

	ERROR("BL31: PSCI_SYSTEM_OFF: Operation not handled\n");
	panic();
}

static int32_t gxbb_pwr_domain_on(u_register_t mpidr)
{
87
	unsigned int core = plat_calc_core_pos(mpidr);
88
89

	/* CPU0 can't be turned OFF, emulate it with a WFE loop */
90
	if (core == AML_PRIMARY_CPU) {
91
92
93
94
95
96
97
98
99
100
101
102
		VERBOSE("BL31: Releasing CPU0 from wait loop...\n");

		gxbb_cpu0_go = 1;
		flush_dcache_range((uintptr_t)&gxbb_cpu0_go, sizeof(gxbb_cpu0_go));
		dsb();
		isb();

		sev();

		return PSCI_E_SUCCESS;
	}

103
	gxbb_program_mailbox(mpidr, gxbb_sec_entrypoint);
104
105
	aml_scpi_set_css_power_state(mpidr,
				     SCPI_POWER_ON, SCPI_POWER_ON, SCPI_POWER_ON);
106
107
108
109
110
111
112
113
	dmbsy();
	sev();

	return PSCI_E_SUCCESS;
}

static void gxbb_pwr_domain_on_finish(const psci_power_state_t *target_state)
{
114
	unsigned int core = plat_calc_core_pos(read_mpidr_el1());
115

116
117
118
	assert(target_state->pwr_domain_state[MPIDR_AFFLVL0] ==
					PLAT_LOCAL_STATE_OFF);

119
	if (core == AML_PRIMARY_CPU) {
120
121
122
123
124
125
		gxbb_cpu0_go = 0;
		flush_dcache_range((uintptr_t)&gxbb_cpu0_go, sizeof(gxbb_cpu0_go));
		dsb();
		isb();
	}

126
127
128
129
	gicv2_pcpu_distif_init();
	gicv2_cpuif_enable();
}

130
131
132
static void gxbb_pwr_domain_off(const psci_power_state_t *target_state)
{
	u_register_t mpidr = read_mpidr_el1();
133
	unsigned int core = plat_calc_core_pos(mpidr);
134
	uintptr_t addr = AML_PSCI_MAILBOX_BASE + 8 + (core << 4);
135
136
137
138
139
140

	mmio_write_32(addr, 0xFFFFFFFF);
	flush_dcache_range(addr, sizeof(uint32_t));

	gicv2_cpuif_disable();

141
	/* CPU0 can't be turned OFF, emulate it with a WFE loop */
142
	if (core == AML_PRIMARY_CPU)
143
144
		return;

145
146
	aml_scpi_set_css_power_state(mpidr,
				     SCPI_POWER_OFF, SCPI_POWER_ON, SCPI_POWER_ON);
147
148
}

149
150
151
static void __dead2 gxbb_pwr_domain_pwr_down_wfi(const psci_power_state_t
						 *target_state)
{
152
	unsigned int core = plat_calc_core_pos(read_mpidr_el1());
153
154

	/* CPU0 can't be turned OFF, emulate it with a WFE loop */
155
	if (core == AML_PRIMARY_CPU) {
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
		VERBOSE("BL31: CPU0 entering wait loop...\n");

		while (gxbb_cpu0_go == 0)
			wfe();

		VERBOSE("BL31: CPU0 resumed.\n");

		write_rmr_el3(RMR_EL3_RR_BIT | RMR_EL3_AA64_BIT);
	}

	dsbsy();

	for (;;)
		wfi();
}

172
173
174
175
176
177
/*******************************************************************************
 * Platform handlers and setup function.
 ******************************************************************************/
static const plat_psci_ops_t gxbb_ops = {
	.pwr_domain_on			= gxbb_pwr_domain_on,
	.pwr_domain_on_finish		= gxbb_pwr_domain_on_finish,
178
	.pwr_domain_off			= gxbb_pwr_domain_off,
179
	.pwr_domain_pwr_down_wfi	= gxbb_pwr_domain_pwr_down_wfi,
180
181
182
183
184
185
186
187
188
	.system_off			= gxbb_system_off,
	.system_reset			= gxbb_system_reset,
};

int plat_setup_psci_ops(uintptr_t sec_entrypoint,
			const plat_psci_ops_t **psci_ops)
{
	gxbb_sec_entrypoint = sec_entrypoint;
	*psci_ops = &gxbb_ops;
189
	gxbb_cpu0_go = 0;
190
191
	return 0;
}