Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 1 | /* |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 2 | * Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved. |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 7 | #include <assert.h> |
| 8 | #include <plat_arm.h> |
Tejas Patel | 6940996 | 2018-12-14 00:55:29 -0800 | [diff] [blame] | 9 | #include <plat_private.h> |
Tejas Patel | 6171711 | 2019-02-27 18:44:57 +0530 | [diff] [blame] | 10 | #include <pm_common.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | #include <common/debug.h> |
| 12 | #include <lib/mmio.h> |
| 13 | #include <lib/psci/psci.h> |
| 14 | #include <plat/common/platform.h> |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 15 | #include <plat/arm/common/plat_arm.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 16 | |
Tejas Patel | 6171711 | 2019-02-27 18:44:57 +0530 | [diff] [blame] | 17 | #include "pm_api_sys.h" |
| 18 | #include "pm_client.h" |
| 19 | |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 20 | static uintptr_t versal_sec_entry; |
| 21 | |
Tejas Patel | 6171711 | 2019-02-27 18:44:57 +0530 | [diff] [blame] | 22 | static int versal_pwr_domain_on(u_register_t mpidr) |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 23 | { |
Abhyuday Godhasara | 589afa5 | 2021-08-11 06:15:13 -0700 | [diff] [blame] | 24 | int cpu_id = plat_core_pos_by_mpidr(mpidr); |
Tejas Patel | 6171711 | 2019-02-27 18:44:57 +0530 | [diff] [blame] | 25 | const struct pm_proc *proc; |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 26 | |
| 27 | VERBOSE("%s: mpidr: 0x%lx\n", __func__, mpidr); |
| 28 | |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 29 | if (cpu_id == -1) { |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 30 | return PSCI_E_INTERN_FAIL; |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 31 | } |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 32 | |
Abhyuday Godhasara | 589afa5 | 2021-08-11 06:15:13 -0700 | [diff] [blame] | 33 | proc = pm_get_proc((unsigned int)cpu_id); |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 34 | |
Tejas Patel | 6171711 | 2019-02-27 18:44:57 +0530 | [diff] [blame] | 35 | /* Send request to PMC to wake up selected ACPU core */ |
Abhyuday Godhasara | f435a14 | 2021-08-20 00:04:33 -0700 | [diff] [blame] | 36 | (void)pm_req_wakeup(proc->node_id, (versal_sec_entry & 0xFFFFFFFFU) | 0x1U, |
| 37 | versal_sec_entry >> 32, 0, SECURE_FLAG); |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 38 | |
Tejas Patel | 6171711 | 2019-02-27 18:44:57 +0530 | [diff] [blame] | 39 | /* Clear power down request */ |
| 40 | pm_client_wakeup(proc); |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 41 | |
| 42 | return PSCI_E_SUCCESS; |
| 43 | } |
| 44 | |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 45 | /** |
| 46 | * versal_pwr_domain_suspend() - This function sends request to PMC to suspend |
| 47 | * core. |
| 48 | * |
| 49 | * @target_state Targated state |
| 50 | */ |
| 51 | static void versal_pwr_domain_suspend(const psci_power_state_t *target_state) |
| 52 | { |
| 53 | unsigned int state; |
| 54 | unsigned int cpu_id = plat_my_core_pos(); |
| 55 | const struct pm_proc *proc = pm_get_proc(cpu_id); |
| 56 | |
Abhyuday Godhasara | 589afa5 | 2021-08-11 06:15:13 -0700 | [diff] [blame] | 57 | for (size_t i = 0U; i <= PLAT_MAX_PWR_LVL; i++) { |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 58 | VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n", |
| 59 | __func__, i, target_state->pwr_domain_state[i]); |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 60 | } |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 61 | |
| 62 | plat_versal_gic_cpuif_disable(); |
| 63 | |
Ravi Patel | eafc878 | 2019-06-21 05:00:49 -0700 | [diff] [blame] | 64 | if (target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE) { |
| 65 | plat_versal_gic_save(); |
| 66 | } |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 67 | |
| 68 | state = target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE ? |
| 69 | PM_STATE_SUSPEND_TO_RAM : PM_STATE_CPU_IDLE; |
| 70 | |
| 71 | /* Send request to PMC to suspend this core */ |
Abhyuday Godhasara | f435a14 | 2021-08-20 00:04:33 -0700 | [diff] [blame] | 72 | (void)pm_self_suspend(proc->node_id, MAX_LATENCY, state, versal_sec_entry, |
| 73 | SECURE_FLAG); |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 74 | |
| 75 | /* APU is to be turned off */ |
| 76 | if (target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE) { |
| 77 | /* disable coherency */ |
| 78 | plat_arm_interconnect_exit_coherency(); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * versal_pwr_domain_suspend_finish() - This function performs actions to finish |
| 84 | * suspend procedure. |
| 85 | * |
| 86 | * @target_state Targated state |
| 87 | */ |
| 88 | static void versal_pwr_domain_suspend_finish( |
| 89 | const psci_power_state_t *target_state) |
| 90 | { |
| 91 | unsigned int cpu_id = plat_my_core_pos(); |
| 92 | const struct pm_proc *proc = pm_get_proc(cpu_id); |
| 93 | |
Abhyuday Godhasara | 589afa5 | 2021-08-11 06:15:13 -0700 | [diff] [blame] | 94 | for (size_t i = 0U; i <= PLAT_MAX_PWR_LVL; i++) { |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 95 | VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n", |
| 96 | __func__, i, target_state->pwr_domain_state[i]); |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 97 | } |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 98 | |
| 99 | /* Clear the APU power control register for this cpu */ |
| 100 | pm_client_wakeup(proc); |
| 101 | |
| 102 | /* enable coherency */ |
| 103 | plat_arm_interconnect_enter_coherency(); |
| 104 | |
| 105 | /* APU was turned off, so restore GIC context */ |
| 106 | if (target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE) { |
| 107 | plat_versal_gic_resume(); |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 108 | } |
Ravi Patel | eafc878 | 2019-06-21 05:00:49 -0700 | [diff] [blame] | 109 | |
| 110 | plat_versal_gic_cpuif_enable(); |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 111 | } |
| 112 | |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 113 | void versal_pwr_domain_on_finish(const psci_power_state_t *target_state) |
| 114 | { |
| 115 | /* Enable the gic cpu interface */ |
| 116 | plat_versal_gic_pcpu_init(); |
| 117 | |
| 118 | /* Program the gic per-cpu distributor or re-distributor interface */ |
| 119 | plat_versal_gic_cpuif_enable(); |
| 120 | } |
| 121 | |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 122 | /** |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 123 | * versal_system_off() - This function sends the system off request |
| 124 | * to firmware. This function does not return. |
| 125 | */ |
| 126 | static void __dead2 versal_system_off(void) |
| 127 | { |
| 128 | /* Send the power down request to the PMC */ |
Abhyuday Godhasara | f435a14 | 2021-08-20 00:04:33 -0700 | [diff] [blame] | 129 | (void)pm_system_shutdown(XPM_SHUTDOWN_TYPE_SHUTDOWN, |
| 130 | pm_get_shutdown_scope(), SECURE_FLAG); |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 131 | |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 132 | while (1) { |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 133 | wfi(); |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 134 | } |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | /** |
| 138 | * versal_system_reset() - This function sends the reset request |
| 139 | * to firmware for the system to reset. This function does not return. |
| 140 | */ |
| 141 | static void __dead2 versal_system_reset(void) |
| 142 | { |
| 143 | /* Send the system reset request to the PMC */ |
Abhyuday Godhasara | f435a14 | 2021-08-20 00:04:33 -0700 | [diff] [blame] | 144 | (void)pm_system_shutdown(XPM_SHUTDOWN_TYPE_RESET, |
| 145 | pm_get_shutdown_scope(), SECURE_FLAG); |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 146 | |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 147 | while (1) { |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 148 | wfi(); |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 149 | } |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | /** |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 153 | * versal_pwr_domain_off() - This function performs actions to turn off core |
| 154 | * |
| 155 | * @target_state Targated state |
| 156 | */ |
| 157 | static void versal_pwr_domain_off(const psci_power_state_t *target_state) |
| 158 | { |
| 159 | unsigned int cpu_id = plat_my_core_pos(); |
| 160 | const struct pm_proc *proc = pm_get_proc(cpu_id); |
| 161 | |
Abhyuday Godhasara | 589afa5 | 2021-08-11 06:15:13 -0700 | [diff] [blame] | 162 | for (size_t i = 0U; i <= PLAT_MAX_PWR_LVL; i++) { |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 163 | VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n", |
| 164 | __func__, i, target_state->pwr_domain_state[i]); |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 165 | } |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 166 | |
| 167 | /* Prevent interrupts from spuriously waking up this cpu */ |
| 168 | plat_versal_gic_cpuif_disable(); |
| 169 | |
| 170 | /* |
| 171 | * Send request to PMC to power down the appropriate APU CPU |
| 172 | * core. |
| 173 | * According to PSCI specification, CPU_off function does not |
| 174 | * have resume address and CPU core can only be woken up |
| 175 | * invoking CPU_on function, during which resume address will |
| 176 | * be set. |
| 177 | */ |
Abhyuday Godhasara | f435a14 | 2021-08-20 00:04:33 -0700 | [diff] [blame] | 178 | (void)pm_self_suspend(proc->node_id, MAX_LATENCY, PM_STATE_CPU_IDLE, 0, |
| 179 | SECURE_FLAG); |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | /** |
| 183 | * versal_validate_power_state() - This function ensures that the power state |
| 184 | * parameter in request is valid. |
| 185 | * |
| 186 | * @power_state Power state of core |
| 187 | * @req_state Requested state |
| 188 | * |
| 189 | * @return Returns status, either success or reason |
| 190 | */ |
| 191 | static int versal_validate_power_state(unsigned int power_state, |
| 192 | psci_power_state_t *req_state) |
| 193 | { |
| 194 | VERBOSE("%s: power_state: 0x%x\n", __func__, power_state); |
| 195 | |
Abhyuday Godhasara | 096f5cc | 2021-08-13 06:45:32 -0700 | [diff] [blame] | 196 | unsigned int pstate = psci_get_pstate_type(power_state); |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 197 | |
| 198 | assert(req_state); |
| 199 | |
| 200 | /* Sanity check the requested state */ |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 201 | if (pstate == PSTATE_TYPE_STANDBY) { |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 202 | req_state->pwr_domain_state[MPIDR_AFFLVL0] = PLAT_MAX_RET_STATE; |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 203 | } else { |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 204 | req_state->pwr_domain_state[MPIDR_AFFLVL0] = PLAT_MAX_OFF_STATE; |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 205 | } |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 206 | |
| 207 | /* We expect the 'state id' to be zero */ |
Abhyuday Godhasara | bacbdee | 2021-08-20 00:27:03 -0700 | [diff] [blame] | 208 | if (psci_get_pstate_id(power_state) != 0U) { |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 209 | return PSCI_E_INVALID_PARAMS; |
Abhyuday Godhasara | f55a5cd | 2021-08-09 08:15:13 -0700 | [diff] [blame] | 210 | } |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 211 | |
| 212 | return PSCI_E_SUCCESS; |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * versal_get_sys_suspend_power_state() - Get power state for system suspend |
| 217 | * |
| 218 | * @req_state Requested state |
| 219 | */ |
| 220 | static void versal_get_sys_suspend_power_state(psci_power_state_t *req_state) |
| 221 | { |
| 222 | req_state->pwr_domain_state[PSCI_CPU_PWR_LVL] = PLAT_MAX_OFF_STATE; |
| 223 | req_state->pwr_domain_state[1] = PLAT_MAX_OFF_STATE; |
| 224 | } |
| 225 | |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 226 | static const struct plat_psci_ops versal_nopmc_psci_ops = { |
Tejas Patel | 6171711 | 2019-02-27 18:44:57 +0530 | [diff] [blame] | 227 | .pwr_domain_on = versal_pwr_domain_on, |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 228 | .pwr_domain_off = versal_pwr_domain_off, |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 229 | .pwr_domain_on_finish = versal_pwr_domain_on_finish, |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 230 | .pwr_domain_suspend = versal_pwr_domain_suspend, |
| 231 | .pwr_domain_suspend_finish = versal_pwr_domain_suspend_finish, |
Saeed Nowshadi | c5a1bda | 2019-12-08 23:35:35 -0800 | [diff] [blame] | 232 | .system_off = versal_system_off, |
| 233 | .system_reset = versal_system_reset, |
Tejas Patel | 54d1319 | 2019-02-27 18:44:55 +0530 | [diff] [blame] | 234 | .validate_power_state = versal_validate_power_state, |
| 235 | .get_sys_suspend_power_state = versal_get_sys_suspend_power_state, |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 236 | }; |
| 237 | |
| 238 | /******************************************************************************* |
| 239 | * Export the platform specific power ops. |
| 240 | ******************************************************************************/ |
| 241 | int plat_setup_psci_ops(uintptr_t sec_entrypoint, |
| 242 | const struct plat_psci_ops **psci_ops) |
| 243 | { |
| 244 | versal_sec_entry = sec_entrypoint; |
| 245 | |
| 246 | *psci_ops = &versal_nopmc_psci_ops; |
| 247 | |
| 248 | return 0; |
| 249 | } |