blob: 72604039f0b304b80d63fa2a3da1f8b77b570e7c [file] [log] [blame]
Jay Buddhabhattic6daff02022-09-05 02:56:32 -07001/*
2 * Copyright (c) 2022, Xilinx, Inc. All rights reserved.
Prasad Kummari7d0623a2023-06-09 14:32:00 +05303 * Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
Jay Buddhabhattic6daff02022-09-05 02:56:32 -07004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8#include <assert.h>
9
10#include <common/debug.h>
11#include <lib/mmio.h>
12#include <lib/psci/psci.h>
13#include <plat/arm/common/plat_arm.h>
14#include <plat/common/platform.h>
15#include <plat_arm.h>
16
Jay Buddhabhatti10e71e42023-06-19 05:08:54 -070017#include <drivers/delay_timer.h>
Jay Buddhabhattic6daff02022-09-05 02:56:32 -070018#include <plat_private.h>
19#include "pm_api_sys.h"
20#include "pm_client.h"
21#include <pm_common.h>
Jay Buddhabhatti10e71e42023-06-19 05:08:54 -070022#include "pm_ipi.h"
Jay Buddhabhattic6daff02022-09-05 02:56:32 -070023#include "pm_svc_main.h"
24#include "versal_net_def.h"
25
26static uintptr_t versal_net_sec_entry;
27
28static int32_t versal_net_pwr_domain_on(u_register_t mpidr)
29{
30 uint32_t cpu_id = plat_core_pos_by_mpidr(mpidr);
31 const struct pm_proc *proc;
32
33 VERBOSE("%s: mpidr: 0x%lx, cpuid: %x\n",
34 __func__, mpidr, cpu_id);
35
36 if (cpu_id == -1) {
37 return PSCI_E_INTERN_FAIL;
38 }
39
40 proc = pm_get_proc(cpu_id);
41 if (!proc) {
42 return PSCI_E_INTERN_FAIL;
43 }
44
45 pm_req_wakeup(proc->node_id, (versal_net_sec_entry & 0xFFFFFFFFU) | 0x1U,
46 versal_net_sec_entry >> 32, 0, 0);
47
48 /* Clear power down request */
49 pm_client_wakeup(proc);
50
51 return PSCI_E_SUCCESS;
52}
53
54/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +053055 * versal_net_pwr_domain_off() - This function performs actions to turn off
56 * core.
57 * @target_state: Targeted state.
Jay Buddhabhattic6daff02022-09-05 02:56:32 -070058 *
Jay Buddhabhattic6daff02022-09-05 02:56:32 -070059 */
60static void versal_net_pwr_domain_off(const psci_power_state_t *target_state)
61{
Jay Buddhabhatti31488a32023-09-11 23:50:06 -070062 uint32_t ret, fw_api_version, version[PAYLOAD_ARG_CNT] = {0U};
Jay Buddhabhattic6daff02022-09-05 02:56:32 -070063 uint32_t cpu_id = plat_my_core_pos();
64 const struct pm_proc *proc = pm_get_proc(cpu_id);
65
Michal Simekb8eca3b2024-04-19 12:16:46 +020066 if (!proc) {
67 return;
68 }
69
Jay Buddhabhattic6daff02022-09-05 02:56:32 -070070 for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++) {
71 VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
72 __func__, i, target_state->pwr_domain_state[i]);
73 }
74
75 /* Prevent interrupts from spuriously waking up this cpu */
Jay Buddhabhattib7bb1ed2023-10-05 21:55:28 -070076 plat_arm_gic_cpuif_disable();
Jay Buddhabhattic6daff02022-09-05 02:56:32 -070077
78 /*
79 * Send request to PMC to power down the appropriate APU CPU
80 * core.
81 * According to PSCI specification, CPU_off function does not
82 * have resume address and CPU core can only be woken up
83 * invoking CPU_on function, during which resume address will
84 * be set.
85 */
Jay Buddhabhatti31488a32023-09-11 23:50:06 -070086 ret = pm_feature_check((uint32_t)PM_SELF_SUSPEND, &version[0], SECURE_FLAG);
87 if (ret == PM_RET_SUCCESS) {
88 fw_api_version = version[0] & 0xFFFFU;
89 if (fw_api_version >= 3U) {
90 (void)pm_self_suspend(proc->node_id, MAX_LATENCY, PM_STATE_CPU_OFF, 0,
91 SECURE_FLAG);
92 } else {
93 (void)pm_self_suspend(proc->node_id, MAX_LATENCY, PM_STATE_CPU_IDLE, 0,
94 SECURE_FLAG);
95 }
96 }
Jay Buddhabhattic6daff02022-09-05 02:56:32 -070097}
98
99/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530100 * versal_net_system_reset() - This function sends the reset request to firmware
101 * for the system to reset. This function does not
102 * return.
103 *
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700104 */
105static void __dead2 versal_net_system_reset(void)
106{
Jay Buddhabhatti10e71e42023-06-19 05:08:54 -0700107 uint32_t ret, timeout = 10000U;
108
109 request_cpu_pwrdwn();
110
111 /*
112 * Send the system reset request to the firmware if power down request
113 * is not received from firmware.
114 */
115 if (!pwrdwn_req_received) {
116 (void)pm_system_shutdown(XPM_SHUTDOWN_TYPE_RESET,
117 pm_get_shutdown_scope(), SECURE_FLAG);
118
119 /*
120 * Wait for system shutdown request completed and idle callback
121 * not received.
122 */
123 do {
124 ret = ipi_mb_enquire_status(primary_proc->ipi->local_ipi_id,
125 primary_proc->ipi->remote_ipi_id);
126 udelay(100);
127 timeout--;
128 } while ((ret != IPI_MB_STATUS_RECV_PENDING) && (timeout > 0U));
129 }
130
131 (void)psci_cpu_off();
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700132
133 while (1) {
134 wfi();
135 }
136}
137
138/**
139 * versal_net_pwr_domain_suspend() - This function sends request to PMC to suspend
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530140 * core.
141 * @target_state: Targeted state.
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700142 *
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700143 */
144static void versal_net_pwr_domain_suspend(const psci_power_state_t *target_state)
145{
146 uint32_t state;
147 uint32_t cpu_id = plat_my_core_pos();
148 const struct pm_proc *proc = pm_get_proc(cpu_id);
149
Michal Simekb8eca3b2024-04-19 12:16:46 +0200150 if (!proc) {
151 return;
152 }
153
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700154 for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++) {
155 VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
156 __func__, i, target_state->pwr_domain_state[i]);
157 }
158
Jay Buddhabhattib7bb1ed2023-10-05 21:55:28 -0700159 plat_arm_gic_cpuif_disable();
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700160
161 if (target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE) {
Jay Buddhabhattib7bb1ed2023-10-05 21:55:28 -0700162 plat_arm_gic_save();
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700163 }
164
165 state = target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE ?
166 PM_STATE_SUSPEND_TO_RAM : PM_STATE_CPU_IDLE;
167
168 /* Send request to PMC to suspend this core */
169 pm_self_suspend(proc->node_id, MAX_LATENCY, state, versal_net_sec_entry,
170 SECURE_FLAG);
171
172 /* TODO: disable coherency */
173}
174
175static void versal_net_pwr_domain_on_finish(const psci_power_state_t *target_state)
176{
177 (void)target_state;
178
179 /* Enable the gic cpu interface */
Jay Buddhabhattib7bb1ed2023-10-05 21:55:28 -0700180 plat_arm_gic_pcpu_init();
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700181
182 /* Program the gic per-cpu distributor or re-distributor interface */
Jay Buddhabhattib7bb1ed2023-10-05 21:55:28 -0700183 plat_arm_gic_cpuif_enable();
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700184}
185
186/**
187 * versal_net_pwr_domain_suspend_finish() - This function performs actions to finish
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530188 * suspend procedure.
189 * @target_state: Targeted state.
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700190 *
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700191 */
192static void versal_net_pwr_domain_suspend_finish(const psci_power_state_t *target_state)
193{
194 uint32_t cpu_id = plat_my_core_pos();
195 const struct pm_proc *proc = pm_get_proc(cpu_id);
196
Michal Simekb8eca3b2024-04-19 12:16:46 +0200197 if (!proc) {
198 return;
199 }
200
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700201 for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++)
202 VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
203 __func__, i, target_state->pwr_domain_state[i]);
204
205 /* Clear the APU power control register for this cpu */
206 pm_client_wakeup(proc);
207
208 /* TODO: enable coherency */
209
210 /* APU was turned off, so restore GIC context */
211 if (target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE) {
Jay Buddhabhattib7bb1ed2023-10-05 21:55:28 -0700212 plat_arm_gic_resume();
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700213 }
214
Jay Buddhabhattib7bb1ed2023-10-05 21:55:28 -0700215 plat_arm_gic_cpuif_enable();
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700216}
217
218/**
219 * versal_net_system_off() - This function sends the system off request
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530220 * to firmware. This function does not return.
221 *
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700222 */
223static void __dead2 versal_net_system_off(void)
224{
225 /* Send the power down request to the PMC */
226 pm_system_shutdown(XPM_SHUTDOWN_TYPE_SHUTDOWN,
227 pm_get_shutdown_scope(), SECURE_FLAG);
228
229 while (1) {
230 wfi();
231 }
232}
233
234/**
235 * versal_net_validate_power_state() - This function ensures that the power state
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530236 * parameter in request is valid.
237 * @power_state: Power state of core.
238 * @req_state: Requested state.
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700239 *
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530240 * Return: Returns status, either PSCI_E_SUCCESS or reason.
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700241 *
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700242 */
243static int32_t versal_net_validate_power_state(unsigned int power_state,
244 psci_power_state_t *req_state)
245{
246 VERBOSE("%s: power_state: 0x%x\n", __func__, power_state);
247
248 int32_t pstate = psci_get_pstate_type(power_state);
249
250 assert(req_state);
251
252 /* Sanity check the requested state */
253 if (pstate == PSTATE_TYPE_STANDBY) {
254 req_state->pwr_domain_state[MPIDR_AFFLVL0] = PLAT_MAX_RET_STATE;
255 } else {
Jay Buddhabhatti6cd94be2023-03-22 22:44:16 -0700256 req_state->pwr_domain_state[MPIDR_AFFLVL0] = PLAT_MAX_OFF_STATE;
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700257 }
258
259 /* We expect the 'state id' to be zero */
260 if (psci_get_pstate_id(power_state)) {
261 return PSCI_E_INVALID_PARAMS;
262 }
263
264 return PSCI_E_SUCCESS;
265}
266
267/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +0530268 * versal_net_get_sys_suspend_power_state() - Get power state for system
269 * suspend.
270 * @req_state: Requested state.
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700271 *
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700272 */
273static void versal_net_get_sys_suspend_power_state(psci_power_state_t *req_state)
274{
Jay Buddhabhatti7c5adef2022-12-29 21:58:35 -0800275 uint64_t i;
276
277 for (i = MPIDR_AFFLVL0; i <= PLAT_MAX_PWR_LVL; i++)
278 req_state->pwr_domain_state[i] = PLAT_MAX_OFF_STATE;
Jay Buddhabhattic6daff02022-09-05 02:56:32 -0700279}
280
281static const struct plat_psci_ops versal_net_nopmc_psci_ops = {
282 .pwr_domain_on = versal_net_pwr_domain_on,
283 .pwr_domain_off = versal_net_pwr_domain_off,
284 .pwr_domain_on_finish = versal_net_pwr_domain_on_finish,
285 .pwr_domain_suspend = versal_net_pwr_domain_suspend,
286 .pwr_domain_suspend_finish = versal_net_pwr_domain_suspend_finish,
287 .system_off = versal_net_system_off,
288 .system_reset = versal_net_system_reset,
289 .validate_power_state = versal_net_validate_power_state,
290 .get_sys_suspend_power_state = versal_net_get_sys_suspend_power_state,
291};
292
293/*******************************************************************************
294 * Export the platform specific power ops.
295 ******************************************************************************/
296int32_t plat_setup_psci_ops(uintptr_t sec_entrypoint,
297 const struct plat_psci_ops **psci_ops)
298{
299 versal_net_sec_entry = sec_entrypoint;
300
301 VERBOSE("Setting up entry point %lx\n", versal_net_sec_entry);
302
303 *psci_ops = &versal_net_nopmc_psci_ops;
304
305 return 0;
306}
307
308int32_t sip_svc_setup_init(void)
309{
310 return pm_setup();
311}
312
313uint64_t smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4,
314 void *cookie, void *handle, uint64_t flags)
315{
316 return pm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, flags);
317}