blob: 8870a71d94661c5180837c427d143fd440740892 [file] [log] [blame]
Samuel Hollandad6f6ca2021-01-16 00:56:48 -06001/*
2 * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <assert.h>
8
9#include <platform_def.h>
10
11#include <arch_helpers.h>
12#include <common/debug.h>
13#include <drivers/arm/css/css_scpi.h>
14#include <drivers/arm/gicv2.h>
15#include <lib/mmio.h>
16#include <lib/psci/psci.h>
17
18#include <sunxi_mmap.h>
19#include <sunxi_private.h>
20
21/*
22 * The addresses for the SCP exception vectors are defined in the or1k
23 * architecture specification.
24 */
25#define OR1K_VEC_FIRST 0x01
26#define OR1K_VEC_LAST 0x0e
27#define OR1K_VEC_ADDR(n) (0x100 * (n))
28
29/*
30 * This magic value is the little-endian representation of the or1k
31 * instruction "l.mfspr r2, r0, 0x12", which is guaranteed to be the
32 * first instruction in the SCP firmware.
33 */
34#define SCP_FIRMWARE_MAGIC 0xb4400012
35
Samuel Hollandadc56812021-03-18 23:15:28 -050036#define PLAT_LOCAL_PSTATE_WIDTH U(4)
37#define PLAT_LOCAL_PSTATE_MASK ((U(1) << PLAT_LOCAL_PSTATE_WIDTH) - 1)
38
Samuel Hollandad6f6ca2021-01-16 00:56:48 -060039#define CPU_PWR_LVL MPIDR_AFFLVL0
40#define CLUSTER_PWR_LVL MPIDR_AFFLVL1
41#define SYSTEM_PWR_LVL MPIDR_AFFLVL2
42
43#define CPU_PWR_STATE(state) \
44 ((state)->pwr_domain_state[CPU_PWR_LVL])
45#define CLUSTER_PWR_STATE(state) \
46 ((state)->pwr_domain_state[CLUSTER_PWR_LVL])
47#define SYSTEM_PWR_STATE(state) \
48 ((state)->pwr_domain_state[SYSTEM_PWR_LVL])
49
Samuel Hollandad6f6ca2021-01-16 00:56:48 -060050static void sunxi_cpu_standby(plat_local_state_t cpu_state)
51{
52 u_register_t scr = read_scr_el3();
53
54 assert(is_local_state_retn(cpu_state));
55
56 write_scr_el3(scr | SCR_IRQ_BIT);
57 wfi();
58 write_scr_el3(scr);
59}
60
61static int sunxi_pwr_domain_on(u_register_t mpidr)
62{
63 scpi_set_css_power_state(mpidr,
64 scpi_power_on,
65 scpi_power_on,
66 scpi_power_on);
67
68 return PSCI_E_SUCCESS;
69}
70
71static void sunxi_pwr_domain_off(const psci_power_state_t *target_state)
72{
73 plat_local_state_t cpu_pwr_state = CPU_PWR_STATE(target_state);
74 plat_local_state_t cluster_pwr_state = CLUSTER_PWR_STATE(target_state);
75 plat_local_state_t system_pwr_state = SYSTEM_PWR_STATE(target_state);
76
77 if (is_local_state_off(cpu_pwr_state)) {
78 gicv2_cpuif_disable();
79 }
80
81 scpi_set_css_power_state(read_mpidr(),
Samuel Holland72897662021-03-18 22:55:15 -050082 cpu_pwr_state,
83 cluster_pwr_state,
84 system_pwr_state);
Samuel Hollandad6f6ca2021-01-16 00:56:48 -060085}
86
87static void sunxi_pwr_domain_on_finish(const psci_power_state_t *target_state)
88{
89 if (is_local_state_off(SYSTEM_PWR_STATE(target_state))) {
90 gicv2_distif_init();
91 }
92 if (is_local_state_off(CPU_PWR_STATE(target_state))) {
93 gicv2_pcpu_distif_init();
94 gicv2_cpuif_enable();
95 }
96}
97
98static void __dead2 sunxi_system_off(void)
99{
100 uint32_t ret;
101
102 gicv2_cpuif_disable();
103
104 /* Send the power down request to the SCP. */
105 ret = scpi_sys_power_state(scpi_system_shutdown);
106 if (ret != SCP_OK) {
107 ERROR("PSCI: SCPI %s failed: %d\n", "shutdown", ret);
108 }
109
110 psci_power_down_wfi();
Boyan Karatotevff8a6152024-10-21 07:36:31 +0100111 /* should never reach here */
112 panic();
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600113}
114
115static void __dead2 sunxi_system_reset(void)
116{
117 uint32_t ret;
118
119 gicv2_cpuif_disable();
120
121 /* Send the system reset request to the SCP. */
122 ret = scpi_sys_power_state(scpi_system_reboot);
123 if (ret != SCP_OK) {
124 ERROR("PSCI: SCPI %s failed: %d\n", "reboot", ret);
125 }
126
127 psci_power_down_wfi();
Boyan Karatotevff8a6152024-10-21 07:36:31 +0100128 /* should never reach here */
129 panic();
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600130}
131
Andrey Skvortsove0ea8fd2023-05-14 17:52:32 +0300132static int sunxi_system_reset2(int is_vendor, int reset_type, u_register_t cookie)
133{
134 uint32_t ret;
135
136 if (is_vendor || (reset_type != PSCI_RESET2_SYSTEM_WARM_RESET))
137 return PSCI_E_NOT_SUPPORTED;
138
139 gicv2_cpuif_disable();
140
141 /* Send the system reset request to the SCP. */
142 ret = scpi_sys_power_state(scpi_system_reset);
143 if (ret != SCP_OK) {
144 ERROR("PSCI: SCPI %s failed: %d\n", "reset", ret);
145 return PSCI_E_INVALID_PARAMS;
146 }
147
148 psci_power_down_wfi();
Boyan Karatotevff8a6152024-10-21 07:36:31 +0100149 /* should never reach here */
150 panic();
Andrey Skvortsove0ea8fd2023-05-14 17:52:32 +0300151
152 /*
153 * Should not reach here.
154 * However sunxi_system_reset2 has to return some value
155 * according to PSCI v1.1 spec.
156 */
157 return PSCI_E_SUCCESS;
158}
159
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600160static int sunxi_validate_power_state(unsigned int power_state,
161 psci_power_state_t *req_state)
162{
163 unsigned int power_level = psci_get_pstate_pwrlvl(power_state);
Samuel Hollandadc56812021-03-18 23:15:28 -0500164 unsigned int state_id = psci_get_pstate_id(power_state);
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600165 unsigned int type = psci_get_pstate_type(power_state);
Samuel Hollandadc56812021-03-18 23:15:28 -0500166 unsigned int i;
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600167
168 assert(req_state != NULL);
169
170 if (power_level > PLAT_MAX_PWR_LVL) {
171 return PSCI_E_INVALID_PARAMS;
172 }
173
174 if (type == PSTATE_TYPE_STANDBY) {
Samuel Hollandadc56812021-03-18 23:15:28 -0500175 return PSCI_E_INVALID_PARAMS;
176 }
177
178 /* Pass through the requested PSCI state as-is. */
179 for (i = 0; i <= power_level; ++i) {
180 unsigned int local_pstate = state_id & PLAT_LOCAL_PSTATE_MASK;
181
182 req_state->pwr_domain_state[i] = local_pstate;
183 state_id >>= PLAT_LOCAL_PSTATE_WIDTH;
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600184 }
Samuel Hollandadc56812021-03-18 23:15:28 -0500185
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600186 /* Higher power domain levels should all remain running */
Samuel Hollandadc56812021-03-18 23:15:28 -0500187 for (; i <= PLAT_MAX_PWR_LVL; ++i) {
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600188 req_state->pwr_domain_state[i] = PSCI_LOCAL_STATE_RUN;
189 }
190
191 return PSCI_E_SUCCESS;
192}
193
194static void sunxi_get_sys_suspend_power_state(psci_power_state_t *req_state)
195{
196 assert(req_state != NULL);
197
198 for (unsigned int i = 0; i <= PLAT_MAX_PWR_LVL; ++i) {
199 req_state->pwr_domain_state[i] = PLAT_MAX_OFF_STATE;
200 }
201}
202
203static const plat_psci_ops_t sunxi_scpi_psci_ops = {
204 .cpu_standby = sunxi_cpu_standby,
205 .pwr_domain_on = sunxi_pwr_domain_on,
206 .pwr_domain_off = sunxi_pwr_domain_off,
207 .pwr_domain_suspend = sunxi_pwr_domain_off,
208 .pwr_domain_on_finish = sunxi_pwr_domain_on_finish,
209 .pwr_domain_suspend_finish = sunxi_pwr_domain_on_finish,
210 .system_off = sunxi_system_off,
211 .system_reset = sunxi_system_reset,
Andrey Skvortsove0ea8fd2023-05-14 17:52:32 +0300212 .system_reset2 = sunxi_system_reset2,
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600213 .validate_power_state = sunxi_validate_power_state,
214 .validate_ns_entrypoint = sunxi_validate_ns_entrypoint,
215 .get_sys_suspend_power_state = sunxi_get_sys_suspend_power_state,
216};
217
218int sunxi_set_scpi_psci_ops(const plat_psci_ops_t **psci_ops)
219{
220 *psci_ops = &sunxi_scpi_psci_ops;
221
222 /* Check for a valid SCP firmware. */
223 if (mmio_read_32(SUNXI_SCP_BASE) != SCP_FIRMWARE_MAGIC) {
224 return -1;
225 }
226
227 /* Program SCP exception vectors to the firmware entrypoint. */
228 for (unsigned int i = OR1K_VEC_FIRST; i <= OR1K_VEC_LAST; ++i) {
229 uint32_t vector = SUNXI_SRAM_A2_BASE + OR1K_VEC_ADDR(i);
230 uint32_t offset = SUNXI_SCP_BASE - vector;
231
232 mmio_write_32(vector, offset >> 2);
Samuel Hollandad6f6ca2021-01-16 00:56:48 -0600233 }
234
235 /* Take the SCP out of reset. */
236 mmio_setbits_32(SUNXI_R_CPUCFG_BASE, BIT(0));
237
238 /* Wait for the SCP firmware to boot. */
239 return scpi_wait_ready();
240}