Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 1 | /* |
Varun Wadekar | 84a775e | 2019-01-03 10:12:55 -0800 | [diff] [blame] | 2 | * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 5 | */ |
| 6 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 7 | #include <assert.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | |
| 9 | #include <platform_def.h> |
| 10 | |
| 11 | #include <arch_helpers.h> |
| 12 | #include <common/bl_common.h> |
| 13 | #include <common/debug.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 14 | #include <context.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | #include <drivers/console.h> |
| 16 | #include <lib/el3_runtime/context_mgmt.h> |
| 17 | #include <lib/mmio.h> |
| 18 | #include <lib/psci/psci.h> |
| 19 | #include <plat/common/platform.h> |
| 20 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 21 | #include <memctrl.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 22 | #include <pmc.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 23 | #include <tegra_def.h> |
Harvey Hsieh | 9e083c7 | 2017-04-10 16:20:32 +0800 | [diff] [blame] | 24 | #include <tegra_platform.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 25 | #include <tegra_private.h> |
| 26 | |
| 27 | extern uint64_t tegra_bl31_phys_base; |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 28 | extern uint64_t tegra_sec_entry_point; |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 29 | extern uint64_t tegra_console_base; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 30 | |
| 31 | /* |
Vignesh Radhakrishnan | b4a7294 | 2017-03-03 10:58:05 -0800 | [diff] [blame] | 32 | * tegra_fake_system_suspend acts as a boolean var controlling whether |
| 33 | * we are going to take fake system suspend code or normal system suspend code |
| 34 | * path. This variable is set inside the sip call handlers,when the kernel |
| 35 | * requests a SIP call to set the suspend debug flags. |
| 36 | */ |
| 37 | uint8_t tegra_fake_system_suspend; |
| 38 | |
| 39 | /* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 40 | * The following platform setup functions are weakly defined. They |
| 41 | * provide typical implementations that will be overridden by a SoC. |
| 42 | */ |
Varun Wadekar | 99782e8 | 2017-07-05 17:44:12 -0700 | [diff] [blame] | 43 | #pragma weak tegra_soc_pwr_domain_suspend_pwrdown_early |
Varun Wadekar | b3421ce | 2017-12-27 18:10:12 -0800 | [diff] [blame] | 44 | #pragma weak tegra_soc_cpu_standby |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 45 | #pragma weak tegra_soc_pwr_domain_suspend |
| 46 | #pragma weak tegra_soc_pwr_domain_on |
| 47 | #pragma weak tegra_soc_pwr_domain_off |
| 48 | #pragma weak tegra_soc_pwr_domain_on_finish |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 49 | #pragma weak tegra_soc_pwr_domain_power_down_wfi |
Varun Wadekar | 8b82fae | 2015-11-09 17:39:28 -0800 | [diff] [blame] | 50 | #pragma weak tegra_soc_prepare_system_reset |
Varun Wadekar | e5caeed | 2016-01-07 14:04:21 -0800 | [diff] [blame] | 51 | #pragma weak tegra_soc_prepare_system_off |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 52 | #pragma weak tegra_soc_get_target_pwr_state |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 53 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 54 | int32_t tegra_soc_pwr_domain_suspend_pwrdown_early(const psci_power_state_t *target_state) |
Varun Wadekar | 99782e8 | 2017-07-05 17:44:12 -0700 | [diff] [blame] | 55 | { |
| 56 | return PSCI_E_NOT_SUPPORTED; |
| 57 | } |
| 58 | |
Varun Wadekar | b3421ce | 2017-12-27 18:10:12 -0800 | [diff] [blame] | 59 | int32_t tegra_soc_cpu_standby(plat_local_state_t cpu_state) |
| 60 | { |
| 61 | (void)cpu_state; |
| 62 | return PSCI_E_SUCCESS; |
| 63 | } |
| 64 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 65 | int32_t tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 66 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 67 | (void)target_state; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 68 | return PSCI_E_NOT_SUPPORTED; |
| 69 | } |
| 70 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 71 | int32_t tegra_soc_pwr_domain_on(u_register_t mpidr) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 72 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 73 | (void)mpidr; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 74 | return PSCI_E_SUCCESS; |
| 75 | } |
| 76 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 77 | int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 78 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 79 | (void)target_state; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 80 | return PSCI_E_SUCCESS; |
| 81 | } |
| 82 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 83 | int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 84 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 85 | (void)target_state; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 86 | return PSCI_E_SUCCESS; |
| 87 | } |
| 88 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 89 | int32_t tegra_soc_pwr_domain_power_down_wfi(const psci_power_state_t *target_state) |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 90 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 91 | (void)target_state; |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 92 | return PSCI_E_SUCCESS; |
| 93 | } |
| 94 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 95 | int32_t tegra_soc_prepare_system_reset(void) |
Varun Wadekar | 8b82fae | 2015-11-09 17:39:28 -0800 | [diff] [blame] | 96 | { |
| 97 | return PSCI_E_SUCCESS; |
| 98 | } |
| 99 | |
Varun Wadekar | e5caeed | 2016-01-07 14:04:21 -0800 | [diff] [blame] | 100 | __dead2 void tegra_soc_prepare_system_off(void) |
| 101 | { |
| 102 | ERROR("Tegra System Off: operation not handled.\n"); |
| 103 | panic(); |
| 104 | } |
| 105 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 106 | plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl, |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 107 | const plat_local_state_t *states, |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 108 | uint32_t ncpu) |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 109 | { |
Varun Wadekar | 14eaede | 2016-09-01 14:51:59 -0700 | [diff] [blame] | 110 | plat_local_state_t target = PLAT_MAX_OFF_STATE, temp; |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 111 | uint32_t num_cpu = ncpu; |
| 112 | const plat_local_state_t *local_state = states; |
| 113 | |
| 114 | (void)lvl; |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 115 | |
Anthony Zhou | 4408e88 | 2017-07-07 14:29:51 +0800 | [diff] [blame] | 116 | assert(ncpu != 0U); |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 117 | |
| 118 | do { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 119 | temp = *local_state; |
| 120 | if ((temp < target)) { |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 121 | target = temp; |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 122 | } |
| 123 | --num_cpu; |
| 124 | local_state++; |
| 125 | } while (num_cpu != 0U); |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 126 | |
| 127 | return target; |
| 128 | } |
| 129 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 130 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 131 | * This handler is called by the PSCI implementation during the `SYSTEM_SUSPEND` |
| 132 | * call to get the `power_state` parameter. This allows the platform to encode |
| 133 | * the appropriate State-ID field within the `power_state` parameter which can |
| 134 | * be utilized in `pwr_domain_suspend()` to suspend to system affinity level. |
| 135 | ******************************************************************************/ |
| 136 | void tegra_get_sys_suspend_power_state(psci_power_state_t *req_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 137 | { |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 138 | /* all affinities use system suspend state id */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 139 | for (uint32_t i = MPIDR_AFFLVL0; i <= PLAT_MAX_PWR_LVL; i++) { |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 140 | req_state->pwr_domain_state[i] = PSTATE_ID_SOC_POWERDN; |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 141 | } |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | /******************************************************************************* |
| 145 | * Handler called when an affinity instance is about to enter standby. |
| 146 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 147 | void tegra_cpu_standby(plat_local_state_t cpu_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 148 | { |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 149 | u_register_t saved_scr_el3; |
| 150 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 151 | (void)cpu_state; |
| 152 | |
Varun Wadekar | b3421ce | 2017-12-27 18:10:12 -0800 | [diff] [blame] | 153 | /* Tegra SoC specific handler */ |
| 154 | if (tegra_soc_cpu_standby(cpu_state) != PSCI_E_SUCCESS) |
| 155 | ERROR("%s failed\n", __func__); |
| 156 | |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 157 | saved_scr_el3 = read_scr_el3(); |
| 158 | |
| 159 | /* |
| 160 | * As per ARM ARM D1.17.2, any physical IRQ interrupt received by the |
| 161 | * PE will be treated as a wake-up event, if SCR_EL3.IRQ is set to '1', |
| 162 | * irrespective of the value of the PSTATE.I bit value. |
| 163 | */ |
| 164 | write_scr_el3(saved_scr_el3 | SCR_IRQ_BIT); |
| 165 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 166 | /* |
| 167 | * Enter standby state |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 168 | * |
| 169 | * dsb & isb is good practice before using wfi to enter low power states |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 170 | */ |
| 171 | dsb(); |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 172 | isb(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 173 | wfi(); |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 174 | |
| 175 | /* |
| 176 | * Restore saved scr_el3 that has IRQ bit cleared as we don't want EL3 |
| 177 | * handling any further interrupts |
| 178 | */ |
| 179 | write_scr_el3(saved_scr_el3); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | /******************************************************************************* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 183 | * Handler called when an affinity instance is about to be turned on. The |
| 184 | * level and mpidr determine the affinity instance. |
| 185 | ******************************************************************************/ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 186 | int32_t tegra_pwr_domain_on(u_register_t mpidr) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 187 | { |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 188 | return tegra_soc_pwr_domain_on(mpidr); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 192 | * Handler called when a power domain is about to be turned off. The |
| 193 | * target_state encodes the power state that each level should transition to. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 194 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 195 | void tegra_pwr_domain_off(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 196 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 197 | (void)tegra_soc_pwr_domain_off(target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | /******************************************************************************* |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 201 | * Handler called when a power domain is about to be suspended. The |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 202 | * target_state encodes the power state that each level should transition to. |
Varun Wadekar | 99782e8 | 2017-07-05 17:44:12 -0700 | [diff] [blame] | 203 | * This handler is called with SMP and data cache enabled, when |
| 204 | * HW_ASSISTED_COHERENCY = 0 |
| 205 | ******************************************************************************/ |
| 206 | void tegra_pwr_domain_suspend_pwrdown_early(const psci_power_state_t *target_state) |
| 207 | { |
| 208 | tegra_soc_pwr_domain_suspend_pwrdown_early(target_state); |
| 209 | } |
| 210 | |
| 211 | /******************************************************************************* |
| 212 | * Handler called when a power domain is about to be suspended. The |
| 213 | * target_state encodes the power state that each level should transition to. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 214 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 215 | void tegra_pwr_domain_suspend(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 216 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 217 | (void)tegra_soc_pwr_domain_suspend(target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 218 | |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 219 | /* Disable console if we are entering deep sleep. */ |
| 220 | if (target_state->pwr_domain_state[PLAT_MAX_PWR_LVL] == |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 221 | PSTATE_ID_SOC_POWERDN) { |
| 222 | (void)console_uninit(); |
| 223 | } |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 224 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 225 | /* disable GICC */ |
| 226 | tegra_gic_cpuif_deactivate(); |
| 227 | } |
| 228 | |
| 229 | /******************************************************************************* |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 230 | * Handler called at the end of the power domain suspend sequence. The |
| 231 | * target_state encodes the power state that each level should transition to. |
| 232 | ******************************************************************************/ |
| 233 | __dead2 void tegra_pwr_domain_power_down_wfi(const psci_power_state_t |
| 234 | *target_state) |
| 235 | { |
Vignesh Radhakrishnan | b4a7294 | 2017-03-03 10:58:05 -0800 | [diff] [blame] | 236 | uint8_t pwr_state = target_state->pwr_domain_state[PLAT_MAX_PWR_LVL]; |
| 237 | uint64_t rmr_el3 = 0; |
| 238 | |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 239 | /* call the chip's power down handler */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 240 | (void)tegra_soc_pwr_domain_power_down_wfi(target_state); |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 241 | |
Vignesh Radhakrishnan | b4a7294 | 2017-03-03 10:58:05 -0800 | [diff] [blame] | 242 | /* |
| 243 | * If we are in fake system suspend mode, ensure we start doing |
| 244 | * procedures that help in looping back towards system suspend exit |
| 245 | * instead of calling WFI by requesting a warm reset. |
| 246 | * Else, just call WFI to enter low power state. |
| 247 | */ |
| 248 | if ((tegra_fake_system_suspend != 0U) && |
| 249 | (pwr_state == (uint8_t)PSTATE_ID_SOC_POWERDN)) { |
| 250 | |
| 251 | /* warm reboot */ |
| 252 | rmr_el3 = read_rmr_el3(); |
| 253 | write_rmr_el3(rmr_el3 | RMR_WARM_RESET_CPU); |
| 254 | |
| 255 | } else { |
| 256 | /* enter power down state */ |
| 257 | wfi(); |
| 258 | } |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 259 | |
| 260 | /* we can never reach here */ |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 261 | panic(); |
| 262 | } |
| 263 | |
| 264 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 265 | * Handler called when a power domain has just been powered on after |
| 266 | * being turned off earlier. The target_state encodes the low power state that |
| 267 | * each level has woken up from. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 268 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 269 | void tegra_pwr_domain_on_finish(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 270 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 271 | const plat_params_from_bl2_t *plat_params; |
Harvey Hsieh | 9e083c7 | 2017-04-10 16:20:32 +0800 | [diff] [blame] | 272 | uint32_t console_clock; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 273 | |
| 274 | /* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 275 | * Initialize the GIC cpu and distributor interfaces |
| 276 | */ |
Varun Wadekar | 84a775e | 2019-01-03 10:12:55 -0800 | [diff] [blame] | 277 | tegra_gic_init(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 278 | |
| 279 | /* |
| 280 | * Check if we are exiting from deep sleep. |
| 281 | */ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 282 | if (target_state->pwr_domain_state[PLAT_MAX_PWR_LVL] == |
| 283 | PSTATE_ID_SOC_POWERDN) { |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 284 | |
Harvey Hsieh | 9e083c7 | 2017-04-10 16:20:32 +0800 | [diff] [blame] | 285 | /* |
| 286 | * Reference clock used by the FPGAs is a lot slower. |
| 287 | */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 288 | if (tegra_platform_is_fpga()) { |
Harvey Hsieh | 9e083c7 | 2017-04-10 16:20:32 +0800 | [diff] [blame] | 289 | console_clock = TEGRA_BOOT_UART_CLK_13_MHZ; |
| 290 | } else { |
| 291 | console_clock = TEGRA_BOOT_UART_CLK_408_MHZ; |
| 292 | } |
| 293 | |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 294 | /* Initialize the runtime console */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 295 | if (tegra_console_base != 0ULL) { |
| 296 | (void)console_init(tegra_console_base, console_clock, |
Harvey Hsieh | 9e083c7 | 2017-04-10 16:20:32 +0800 | [diff] [blame] | 297 | TEGRA_CONSOLE_BAUDRATE); |
Damon Duan | 777baa5 | 2016-11-07 19:37:50 +0800 | [diff] [blame] | 298 | } |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 299 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 300 | /* |
Varun Wadekar | 6eec6d6 | 2016-03-03 13:28:10 -0800 | [diff] [blame] | 301 | * Restore Memory Controller settings as it loses state |
| 302 | * during system suspend. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 303 | */ |
Varun Wadekar | 6eec6d6 | 2016-03-03 13:28:10 -0800 | [diff] [blame] | 304 | tegra_memctrl_restore_settings(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 305 | |
| 306 | /* |
| 307 | * Security configuration to allow DRAM/device access. |
| 308 | */ |
| 309 | plat_params = bl31_get_plat_params(); |
Varun Wadekar | 6bb6246 | 2015-10-06 12:49:31 +0530 | [diff] [blame] | 310 | tegra_memctrl_tzdram_setup(plat_params->tzdram_base, |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 311 | (uint32_t)plat_params->tzdram_size); |
Varun Wadekar | d5f578a | 2016-06-01 19:34:37 -0700 | [diff] [blame] | 312 | |
| 313 | /* |
| 314 | * Set up the TZRAM memory aperture to allow only secure world |
| 315 | * access |
| 316 | */ |
| 317 | tegra_memctrl_tzram_setup(TEGRA_TZRAM_BASE, TEGRA_TZRAM_SIZE); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | /* |
| 321 | * Reset hardware settings. |
| 322 | */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 323 | (void)tegra_soc_pwr_domain_on_finish(target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 327 | * Handler called when a power domain has just been powered on after |
| 328 | * having been suspended earlier. The target_state encodes the low power state |
| 329 | * that each level has woken up from. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 330 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 331 | void tegra_pwr_domain_suspend_finish(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 332 | { |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 333 | tegra_pwr_domain_on_finish(target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | /******************************************************************************* |
| 337 | * Handler called when the system wants to be powered off |
| 338 | ******************************************************************************/ |
| 339 | __dead2 void tegra_system_off(void) |
| 340 | { |
Varun Wadekar | e5caeed | 2016-01-07 14:04:21 -0800 | [diff] [blame] | 341 | INFO("Powering down system...\n"); |
| 342 | |
| 343 | tegra_soc_prepare_system_off(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | /******************************************************************************* |
| 347 | * Handler called when the system wants to be restarted. |
| 348 | ******************************************************************************/ |
| 349 | __dead2 void tegra_system_reset(void) |
| 350 | { |
Varun Wadekar | e5caeed | 2016-01-07 14:04:21 -0800 | [diff] [blame] | 351 | INFO("Restarting system...\n"); |
| 352 | |
Varun Wadekar | 8b82fae | 2015-11-09 17:39:28 -0800 | [diff] [blame] | 353 | /* per-SoC system reset handler */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 354 | (void)tegra_soc_prepare_system_reset(); |
Varun Wadekar | 8b82fae | 2015-11-09 17:39:28 -0800 | [diff] [blame] | 355 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 356 | /* |
| 357 | * Program the PMC in order to restart the system. |
| 358 | */ |
| 359 | tegra_pmc_system_reset(); |
| 360 | } |
| 361 | |
| 362 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 363 | * Handler called to check the validity of the power state parameter. |
| 364 | ******************************************************************************/ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 365 | int32_t tegra_validate_power_state(uint32_t power_state, |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 366 | psci_power_state_t *req_state) |
| 367 | { |
Anthony Zhou | 4408e88 | 2017-07-07 14:29:51 +0800 | [diff] [blame] | 368 | assert(req_state != NULL); |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 369 | |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 370 | return tegra_soc_validate_power_state(power_state, req_state); |
| 371 | } |
| 372 | |
| 373 | /******************************************************************************* |
| 374 | * Platform handler called to check the validity of the non secure entrypoint. |
| 375 | ******************************************************************************/ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 376 | int32_t tegra_validate_ns_entrypoint(uintptr_t entrypoint) |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 377 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 378 | int32_t ret = PSCI_E_INVALID_ADDRESS; |
| 379 | |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 380 | /* |
| 381 | * Check if the non secure entrypoint lies within the non |
| 382 | * secure DRAM. |
| 383 | */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 384 | if ((entrypoint >= TEGRA_DRAM_BASE) && (entrypoint <= TEGRA_DRAM_END)) { |
| 385 | ret = PSCI_E_SUCCESS; |
| 386 | } |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 387 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 388 | return ret; |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | /******************************************************************************* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 392 | * Export the platform handlers to enable psci to invoke them |
| 393 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 394 | static const plat_psci_ops_t tegra_plat_psci_ops = { |
| 395 | .cpu_standby = tegra_cpu_standby, |
| 396 | .pwr_domain_on = tegra_pwr_domain_on, |
| 397 | .pwr_domain_off = tegra_pwr_domain_off, |
Varun Wadekar | 99782e8 | 2017-07-05 17:44:12 -0700 | [diff] [blame] | 398 | .pwr_domain_suspend_pwrdown_early = tegra_pwr_domain_suspend_pwrdown_early, |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 399 | .pwr_domain_suspend = tegra_pwr_domain_suspend, |
| 400 | .pwr_domain_on_finish = tegra_pwr_domain_on_finish, |
| 401 | .pwr_domain_suspend_finish = tegra_pwr_domain_suspend_finish, |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 402 | .pwr_domain_pwr_down_wfi = tegra_pwr_domain_power_down_wfi, |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 403 | .system_off = tegra_system_off, |
| 404 | .system_reset = tegra_system_reset, |
| 405 | .validate_power_state = tegra_validate_power_state, |
| 406 | .validate_ns_entrypoint = tegra_validate_ns_entrypoint, |
| 407 | .get_sys_suspend_power_state = tegra_get_sys_suspend_power_state, |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 408 | }; |
| 409 | |
| 410 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 411 | * Export the platform specific power ops and initialize Power Controller |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 412 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 413 | int plat_setup_psci_ops(uintptr_t sec_entrypoint, |
| 414 | const plat_psci_ops_t **psci_ops) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 415 | { |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 416 | psci_power_state_t target_state = { { PSCI_LOCAL_STATE_RUN } }; |
| 417 | |
| 418 | /* |
| 419 | * Flush entrypoint variable to PoC since it will be |
| 420 | * accessed after a reset with the caches turned off. |
| 421 | */ |
| 422 | tegra_sec_entry_point = sec_entrypoint; |
| 423 | flush_dcache_range((uint64_t)&tegra_sec_entry_point, sizeof(uint64_t)); |
| 424 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 425 | /* |
| 426 | * Reset hardware settings. |
| 427 | */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 428 | (void)tegra_soc_pwr_domain_on_finish(&target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 429 | |
| 430 | /* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 431 | * Initialize PSCI ops struct |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 432 | */ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 433 | *psci_ops = &tegra_plat_psci_ops; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 434 | |
| 435 | return 0; |
| 436 | } |
Varun Wadekar | 2497539 | 2016-05-05 14:13:30 -0700 | [diff] [blame] | 437 | |
| 438 | /******************************************************************************* |
| 439 | * Platform handler to calculate the proper target power level at the |
| 440 | * specified affinity level |
| 441 | ******************************************************************************/ |
| 442 | plat_local_state_t plat_get_target_pwr_state(unsigned int lvl, |
| 443 | const plat_local_state_t *states, |
| 444 | unsigned int ncpu) |
| 445 | { |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 446 | return tegra_soc_get_target_pwr_state(lvl, states, ncpu); |
Varun Wadekar | 2497539 | 2016-05-05 14:13:30 -0700 | [diff] [blame] | 447 | } |