Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 1 | /* |
Sieu Mun Tang | dbcc2cf | 2022-03-07 12:13:04 +0800 | [diff] [blame] | 2 | * Copyright (c) 2019-2022, ARM Limited and Contributors. All rights reserved. |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <arch_helpers.h> |
| 8 | #include <common/debug.h> |
| 9 | #include <drivers/arm/gicv2.h> |
| 10 | #include <lib/mmio.h> |
| 11 | #include <lib/psci/psci.h> |
| 12 | #include <plat/common/platform.h> |
| 13 | |
Hadi Asyrafi | 6f8a2b2 | 2019-10-23 18:34:14 +0800 | [diff] [blame] | 14 | #include "socfpga_mailbox.h" |
Hadi Asyrafi | 4d9f395 | 2019-10-23 17:35:32 +0800 | [diff] [blame] | 15 | #include "socfpga_plat_def.h" |
Hadi Asyrafi | 5fae68f | 2019-10-22 14:23:57 +0800 | [diff] [blame] | 16 | #include "socfpga_reset_manager.h" |
Sieu Mun Tang | dbcc2cf | 2022-03-07 12:13:04 +0800 | [diff] [blame] | 17 | #include "socfpga_sip_svc.h" |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 18 | |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 19 | |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 20 | /******************************************************************************* |
| 21 | * plat handler called when a CPU is about to enter standby. |
| 22 | ******************************************************************************/ |
| 23 | void socfpga_cpu_standby(plat_local_state_t cpu_state) |
| 24 | { |
| 25 | /* |
| 26 | * Enter standby state |
| 27 | * dsb is good practice before using wfi to enter low power states |
| 28 | */ |
| 29 | VERBOSE("%s: cpu_state: 0x%x\n", __func__, cpu_state); |
| 30 | dsb(); |
| 31 | wfi(); |
| 32 | } |
| 33 | |
| 34 | /******************************************************************************* |
| 35 | * plat handler called when a power domain is about to be turned on. The |
| 36 | * mpidr determines the CPU to be turned on. |
| 37 | ******************************************************************************/ |
| 38 | int socfpga_pwr_domain_on(u_register_t mpidr) |
| 39 | { |
| 40 | unsigned int cpu_id = plat_core_pos_by_mpidr(mpidr); |
| 41 | |
| 42 | VERBOSE("%s: mpidr: 0x%lx\n", __func__, mpidr); |
| 43 | |
| 44 | if (cpu_id == -1) |
| 45 | return PSCI_E_INTERN_FAIL; |
| 46 | |
Hadi Asyrafi | a2edf0e | 2019-10-22 13:39:14 +0800 | [diff] [blame] | 47 | mmio_write_64(PLAT_CPUID_RELEASE, cpu_id); |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 48 | |
| 49 | /* release core reset */ |
Hadi Asyrafi | 67cb0ea | 2019-12-23 13:25:33 +0800 | [diff] [blame] | 50 | mmio_setbits_32(SOCFPGA_RSTMGR(MPUMODRST), 1 << cpu_id); |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 51 | return PSCI_E_SUCCESS; |
| 52 | } |
| 53 | |
| 54 | /******************************************************************************* |
| 55 | * plat handler called when a power domain is about to be turned off. The |
| 56 | * target_state encodes the power state that each level should transition to. |
| 57 | ******************************************************************************/ |
| 58 | void socfpga_pwr_domain_off(const psci_power_state_t *target_state) |
| 59 | { |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 60 | for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++) |
| 61 | VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n", |
| 62 | __func__, i, target_state->pwr_domain_state[i]); |
| 63 | |
Hadi Asyrafi | 91071fc | 2019-09-12 15:14:01 +0800 | [diff] [blame] | 64 | /* Prevent interrupts from spuriously waking up this cpu */ |
| 65 | gicv2_cpuif_disable(); |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | /******************************************************************************* |
| 69 | * plat handler called when a power domain is about to be suspended. The |
| 70 | * target_state encodes the power state that each level should transition to. |
| 71 | ******************************************************************************/ |
| 72 | void socfpga_pwr_domain_suspend(const psci_power_state_t *target_state) |
| 73 | { |
| 74 | unsigned int cpu_id = plat_my_core_pos(); |
| 75 | |
| 76 | for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++) |
| 77 | VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n", |
| 78 | __func__, i, target_state->pwr_domain_state[i]); |
Hadi Asyrafi | 5fae68f | 2019-10-22 14:23:57 +0800 | [diff] [blame] | 79 | |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 80 | /* assert core reset */ |
Hadi Asyrafi | 67cb0ea | 2019-12-23 13:25:33 +0800 | [diff] [blame] | 81 | mmio_setbits_32(SOCFPGA_RSTMGR(MPUMODRST), 1 << cpu_id); |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 82 | |
| 83 | } |
| 84 | |
| 85 | /******************************************************************************* |
| 86 | * plat handler called when a power domain has just been powered on after |
| 87 | * being turned off earlier. The target_state encodes the low power state that |
| 88 | * each level has woken up from. |
| 89 | ******************************************************************************/ |
| 90 | void socfpga_pwr_domain_on_finish(const psci_power_state_t *target_state) |
| 91 | { |
| 92 | for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++) |
| 93 | VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n", |
| 94 | __func__, i, target_state->pwr_domain_state[i]); |
| 95 | |
| 96 | /* Program the gic per-cpu distributor or re-distributor interface */ |
| 97 | gicv2_pcpu_distif_init(); |
| 98 | gicv2_set_pe_target_mask(plat_my_core_pos()); |
| 99 | |
| 100 | /* Enable the gic cpu interface */ |
| 101 | gicv2_cpuif_enable(); |
| 102 | } |
| 103 | |
| 104 | /******************************************************************************* |
| 105 | * plat handler called when a power domain has just been powered on after |
| 106 | * having been suspended earlier. The target_state encodes the low power state |
| 107 | * that each level has woken up from. |
| 108 | * TODO: At the moment we reuse the on finisher and reinitialize the secure |
| 109 | * context. Need to implement a separate suspend finisher. |
| 110 | ******************************************************************************/ |
| 111 | void socfpga_pwr_domain_suspend_finish(const psci_power_state_t *target_state) |
| 112 | { |
| 113 | unsigned int cpu_id = plat_my_core_pos(); |
| 114 | |
| 115 | for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++) |
| 116 | VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n", |
| 117 | __func__, i, target_state->pwr_domain_state[i]); |
| 118 | |
| 119 | /* release core reset */ |
Hadi Asyrafi | 67cb0ea | 2019-12-23 13:25:33 +0800 | [diff] [blame] | 120 | mmio_clrbits_32(SOCFPGA_RSTMGR(MPUMODRST), 1 << cpu_id); |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | /******************************************************************************* |
| 124 | * plat handlers to shutdown/reboot the system |
| 125 | ******************************************************************************/ |
| 126 | static void __dead2 socfpga_system_off(void) |
| 127 | { |
| 128 | wfi(); |
| 129 | ERROR("System Off: operation not handled.\n"); |
| 130 | panic(); |
| 131 | } |
| 132 | |
Hadi Asyrafi | 593c4c5 | 2019-12-17 19:22:17 +0800 | [diff] [blame] | 133 | extern uint64_t intel_rsu_update_address; |
| 134 | |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 135 | static void __dead2 socfpga_system_reset(void) |
| 136 | { |
Abdul Halim, Muhammad Hadi Asyrafi | d84bfef | 2020-02-25 16:28:10 +0800 | [diff] [blame] | 137 | uint32_t addr_buf[2]; |
| 138 | |
| 139 | memcpy(addr_buf, &intel_rsu_update_address, |
| 140 | sizeof(intel_rsu_update_address)); |
| 141 | |
Hadi Asyrafi | 593c4c5 | 2019-12-17 19:22:17 +0800 | [diff] [blame] | 142 | if (intel_rsu_update_address) |
Abdul Halim, Muhammad Hadi Asyrafi | d84bfef | 2020-02-25 16:28:10 +0800 | [diff] [blame] | 143 | mailbox_rsu_update(addr_buf); |
Hadi Asyrafi | 593c4c5 | 2019-12-17 19:22:17 +0800 | [diff] [blame] | 144 | else |
| 145 | mailbox_reset_cold(); |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 146 | |
| 147 | while (1) |
| 148 | wfi(); |
| 149 | } |
| 150 | |
Hadi Asyrafi | 5fae68f | 2019-10-22 14:23:57 +0800 | [diff] [blame] | 151 | static int socfpga_system_reset2(int is_vendor, int reset_type, |
| 152 | u_register_t cookie) |
| 153 | { |
Sieu Mun Tang | dbcc2cf | 2022-03-07 12:13:04 +0800 | [diff] [blame] | 154 | if (cold_reset_for_ecc_dbe()) { |
| 155 | mailbox_reset_cold(); |
| 156 | } |
Hadi Asyrafi | 5fae68f | 2019-10-22 14:23:57 +0800 | [diff] [blame] | 157 | /* disable cpuif */ |
| 158 | gicv2_cpuif_disable(); |
| 159 | |
| 160 | /* Store magic number */ |
| 161 | mmio_write_32(L2_RESET_DONE_REG, L2_RESET_DONE_STATUS); |
| 162 | |
| 163 | /* Increase timeout */ |
Hadi Asyrafi | 67cb0ea | 2019-12-23 13:25:33 +0800 | [diff] [blame] | 164 | mmio_write_32(SOCFPGA_RSTMGR(HDSKTIMEOUT), 0xffffff); |
Hadi Asyrafi | 5fae68f | 2019-10-22 14:23:57 +0800 | [diff] [blame] | 165 | |
| 166 | /* Enable handshakes */ |
Hadi Asyrafi | 67cb0ea | 2019-12-23 13:25:33 +0800 | [diff] [blame] | 167 | mmio_setbits_32(SOCFPGA_RSTMGR(HDSKEN), RSTMGR_HDSKEN_SET); |
Hadi Asyrafi | 5fae68f | 2019-10-22 14:23:57 +0800 | [diff] [blame] | 168 | |
| 169 | /* Reset L2 module */ |
Hadi Asyrafi | 67cb0ea | 2019-12-23 13:25:33 +0800 | [diff] [blame] | 170 | mmio_setbits_32(SOCFPGA_RSTMGR(COLDMODRST), 0x100); |
Hadi Asyrafi | 5fae68f | 2019-10-22 14:23:57 +0800 | [diff] [blame] | 171 | |
| 172 | while (1) |
| 173 | wfi(); |
| 174 | |
| 175 | /* Should not reach here */ |
| 176 | return 0; |
| 177 | } |
| 178 | |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 179 | int socfpga_validate_power_state(unsigned int power_state, |
| 180 | psci_power_state_t *req_state) |
| 181 | { |
| 182 | VERBOSE("%s: power_state: 0x%x\n", __func__, power_state); |
| 183 | |
| 184 | return PSCI_E_SUCCESS; |
| 185 | } |
| 186 | |
| 187 | int socfpga_validate_ns_entrypoint(unsigned long ns_entrypoint) |
| 188 | { |
| 189 | VERBOSE("%s: ns_entrypoint: 0x%lx\n", __func__, ns_entrypoint); |
| 190 | return PSCI_E_SUCCESS; |
| 191 | } |
| 192 | |
| 193 | void socfpga_get_sys_suspend_power_state(psci_power_state_t *req_state) |
| 194 | { |
| 195 | req_state->pwr_domain_state[PSCI_CPU_PWR_LVL] = PLAT_MAX_OFF_STATE; |
| 196 | req_state->pwr_domain_state[1] = PLAT_MAX_OFF_STATE; |
| 197 | } |
| 198 | |
| 199 | /******************************************************************************* |
| 200 | * Export the platform handlers via plat_arm_psci_pm_ops. The ARM Standard |
| 201 | * platform layer will take care of registering the handlers with PSCI. |
| 202 | ******************************************************************************/ |
| 203 | const plat_psci_ops_t socfpga_psci_pm_ops = { |
| 204 | .cpu_standby = socfpga_cpu_standby, |
| 205 | .pwr_domain_on = socfpga_pwr_domain_on, |
| 206 | .pwr_domain_off = socfpga_pwr_domain_off, |
| 207 | .pwr_domain_suspend = socfpga_pwr_domain_suspend, |
| 208 | .pwr_domain_on_finish = socfpga_pwr_domain_on_finish, |
| 209 | .pwr_domain_suspend_finish = socfpga_pwr_domain_suspend_finish, |
| 210 | .system_off = socfpga_system_off, |
| 211 | .system_reset = socfpga_system_reset, |
Hadi Asyrafi | 5fae68f | 2019-10-22 14:23:57 +0800 | [diff] [blame] | 212 | .system_reset2 = socfpga_system_reset2, |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 213 | .validate_power_state = socfpga_validate_power_state, |
| 214 | .validate_ns_entrypoint = socfpga_validate_ns_entrypoint, |
| 215 | .get_sys_suspend_power_state = socfpga_get_sys_suspend_power_state |
| 216 | }; |
| 217 | |
| 218 | /******************************************************************************* |
| 219 | * Export the platform specific power ops. |
| 220 | ******************************************************************************/ |
| 221 | int plat_setup_psci_ops(uintptr_t sec_entrypoint, |
| 222 | const struct plat_psci_ops **psci_ops) |
| 223 | { |
| 224 | /* Save warm boot entrypoint.*/ |
Hadi Asyrafi | a2edf0e | 2019-10-22 13:39:14 +0800 | [diff] [blame] | 225 | mmio_write_64(PLAT_SEC_ENTRY, sec_entrypoint); |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 226 | *psci_ops = &socfpga_psci_pm_ops; |
Hadi Asyrafi | a2edf0e | 2019-10-22 13:39:14 +0800 | [diff] [blame] | 227 | |
Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 228 | return 0; |
| 229 | } |