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 | b5b15b2 | 2018-05-17 10:10:25 -0700 | [diff] [blame] | 3 | * Copyright (c) 2020, NVIDIA Corporation. All rights reserved. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 4 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 5 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 8 | #include <assert.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | |
| 10 | #include <platform_def.h> |
| 11 | |
| 12 | #include <arch_helpers.h> |
| 13 | #include <common/bl_common.h> |
| 14 | #include <common/debug.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 15 | #include <context.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 16 | #include <drivers/console.h> |
| 17 | #include <lib/el3_runtime/context_mgmt.h> |
| 18 | #include <lib/mmio.h> |
| 19 | #include <lib/psci/psci.h> |
| 20 | #include <plat/common/platform.h> |
| 21 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 22 | #include <memctrl.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 23 | #include <pmc.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 24 | #include <tegra_def.h> |
Harvey Hsieh | 9e083c7 | 2017-04-10 16:20:32 +0800 | [diff] [blame] | 25 | #include <tegra_platform.h> |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 26 | #include <tegra_private.h> |
| 27 | |
| 28 | extern uint64_t tegra_bl31_phys_base; |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 29 | extern uint64_t tegra_sec_entry_point; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 30 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 31 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 32 | * This handler is called by the PSCI implementation during the `SYSTEM_SUSPEND` |
| 33 | * call to get the `power_state` parameter. This allows the platform to encode |
| 34 | * the appropriate State-ID field within the `power_state` parameter which can |
| 35 | * be utilized in `pwr_domain_suspend()` to suspend to system affinity level. |
| 36 | ******************************************************************************/ |
| 37 | 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] | 38 | { |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 39 | /* all affinities use system suspend state id */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 40 | for (uint32_t i = MPIDR_AFFLVL0; i <= PLAT_MAX_PWR_LVL; i++) { |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 41 | req_state->pwr_domain_state[i] = PSTATE_ID_SOC_POWERDN; |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 42 | } |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | /******************************************************************************* |
| 46 | * Handler called when an affinity instance is about to enter standby. |
| 47 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 48 | void tegra_cpu_standby(plat_local_state_t cpu_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 49 | { |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 50 | u_register_t saved_scr_el3; |
| 51 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 52 | (void)cpu_state; |
| 53 | |
Varun Wadekar | b3421ce | 2017-12-27 18:10:12 -0800 | [diff] [blame] | 54 | /* Tegra SoC specific handler */ |
| 55 | if (tegra_soc_cpu_standby(cpu_state) != PSCI_E_SUCCESS) |
| 56 | ERROR("%s failed\n", __func__); |
| 57 | |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 58 | saved_scr_el3 = read_scr_el3(); |
| 59 | |
| 60 | /* |
| 61 | * As per ARM ARM D1.17.2, any physical IRQ interrupt received by the |
| 62 | * PE will be treated as a wake-up event, if SCR_EL3.IRQ is set to '1', |
| 63 | * irrespective of the value of the PSTATE.I bit value. |
| 64 | */ |
| 65 | write_scr_el3(saved_scr_el3 | SCR_IRQ_BIT); |
| 66 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 67 | /* |
| 68 | * Enter standby state |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 69 | * |
| 70 | * 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] | 71 | */ |
| 72 | dsb(); |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 73 | isb(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 74 | wfi(); |
Vignesh Radhakrishnan | 16d82ae | 2018-04-20 14:31:41 -0700 | [diff] [blame] | 75 | |
| 76 | /* |
| 77 | * Restore saved scr_el3 that has IRQ bit cleared as we don't want EL3 |
| 78 | * handling any further interrupts |
| 79 | */ |
| 80 | write_scr_el3(saved_scr_el3); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /******************************************************************************* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 84 | * Handler called when an affinity instance is about to be turned on. The |
| 85 | * level and mpidr determine the affinity instance. |
| 86 | ******************************************************************************/ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 87 | int32_t tegra_pwr_domain_on(u_register_t mpidr) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 88 | { |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 89 | return tegra_soc_pwr_domain_on(mpidr); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 93 | * Handler called when a power domain is about to be turned off. The |
| 94 | * target_state encodes the power state that each level should transition to. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 95 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 96 | void tegra_pwr_domain_off(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 97 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 98 | (void)tegra_soc_pwr_domain_off(target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | /******************************************************************************* |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 102 | * Handler called when a power domain is about to be suspended. The |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 103 | * target_state encodes the power state that each level should transition to. |
Varun Wadekar | 99782e8 | 2017-07-05 17:44:12 -0700 | [diff] [blame] | 104 | * This handler is called with SMP and data cache enabled, when |
| 105 | * HW_ASSISTED_COHERENCY = 0 |
| 106 | ******************************************************************************/ |
| 107 | void tegra_pwr_domain_suspend_pwrdown_early(const psci_power_state_t *target_state) |
| 108 | { |
| 109 | tegra_soc_pwr_domain_suspend_pwrdown_early(target_state); |
| 110 | } |
| 111 | |
| 112 | /******************************************************************************* |
| 113 | * Handler called when a power domain is about to be suspended. The |
| 114 | * target_state encodes the power state that each level should transition to. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 115 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 116 | void tegra_pwr_domain_suspend(const psci_power_state_t *target_state) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 117 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 118 | (void)tegra_soc_pwr_domain_suspend(target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 119 | |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 120 | /* Disable console if we are entering deep sleep. */ |
| 121 | if (target_state->pwr_domain_state[PLAT_MAX_PWR_LVL] == |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 122 | PSTATE_ID_SOC_POWERDN) { |
Ambroise Vincent | 09a22e7 | 2019-05-29 14:04:16 +0100 | [diff] [blame] | 123 | (void)console_flush(); |
| 124 | console_switch_state(0); |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 125 | } |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 126 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 127 | /* disable GICC */ |
| 128 | tegra_gic_cpuif_deactivate(); |
| 129 | } |
| 130 | |
| 131 | /******************************************************************************* |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 132 | * Handler called at the end of the power domain suspend sequence. The |
| 133 | * target_state encodes the power state that each level should transition to. |
| 134 | ******************************************************************************/ |
| 135 | __dead2 void tegra_pwr_domain_power_down_wfi(const psci_power_state_t |
| 136 | *target_state) |
| 137 | { |
| 138 | /* call the chip's power down handler */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 139 | (void)tegra_soc_pwr_domain_power_down_wfi(target_state); |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 140 | |
Vignesh Radhakrishnan | 833d89c | 2017-05-25 10:31:42 -0700 | [diff] [blame] | 141 | wfi(); |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 142 | panic(); |
| 143 | } |
| 144 | |
| 145 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 146 | * Handler called when a power domain has just been powered on after |
| 147 | * being turned off earlier. The target_state encodes the low power state that |
| 148 | * each level has woken up from. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 149 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 150 | 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] | 151 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 152 | const plat_params_from_bl2_t *plat_params; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 153 | |
| 154 | /* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 155 | * Check if we are exiting from deep sleep. |
| 156 | */ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 157 | if (target_state->pwr_domain_state[PLAT_MAX_PWR_LVL] == |
| 158 | PSTATE_ID_SOC_POWERDN) { |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 159 | |
Varun Wadekar | fd60a27 | 2020-03-21 18:49:33 -0700 | [diff] [blame] | 160 | /* |
| 161 | * On entering System Suspend state, the GIC loses power |
| 162 | * completely. Initialize the GIC global distributor and |
| 163 | * GIC cpu interfaces. |
| 164 | */ |
| 165 | tegra_gic_init(); |
| 166 | |
Ambroise Vincent | 09a22e7 | 2019-05-29 14:04:16 +0100 | [diff] [blame] | 167 | /* Restart console output. */ |
| 168 | console_switch_state(CONSOLE_FLAG_RUNTIME); |
Varun Wadekar | a2c6be6 | 2016-08-01 22:16:21 -0700 | [diff] [blame] | 169 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 170 | /* |
Varun Wadekar | 6eec6d6 | 2016-03-03 13:28:10 -0800 | [diff] [blame] | 171 | * Restore Memory Controller settings as it loses state |
| 172 | * during system suspend. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 173 | */ |
Varun Wadekar | 6eec6d6 | 2016-03-03 13:28:10 -0800 | [diff] [blame] | 174 | tegra_memctrl_restore_settings(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 175 | |
| 176 | /* |
| 177 | * Security configuration to allow DRAM/device access. |
| 178 | */ |
| 179 | plat_params = bl31_get_plat_params(); |
Varun Wadekar | 6bb6246 | 2015-10-06 12:49:31 +0530 | [diff] [blame] | 180 | tegra_memctrl_tzdram_setup(plat_params->tzdram_base, |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 181 | (uint32_t)plat_params->tzdram_size); |
Varun Wadekar | d5f578a | 2016-06-01 19:34:37 -0700 | [diff] [blame] | 182 | |
| 183 | /* |
| 184 | * Set up the TZRAM memory aperture to allow only secure world |
| 185 | * access |
| 186 | */ |
| 187 | tegra_memctrl_tzram_setup(TEGRA_TZRAM_BASE, TEGRA_TZRAM_SIZE); |
Varun Wadekar | fd60a27 | 2020-03-21 18:49:33 -0700 | [diff] [blame] | 188 | } else { |
| 189 | /* |
| 190 | * Initialize the GIC cpu and distributor interfaces |
| 191 | */ |
| 192 | tegra_gic_pcpu_init(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | /* |
| 196 | * Reset hardware settings. |
| 197 | */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 198 | (void)tegra_soc_pwr_domain_on_finish(target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 202 | * Handler called when a power domain has just been powered on after |
| 203 | * having been suspended earlier. The target_state encodes the low power state |
| 204 | * that each level has woken up from. |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 205 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 206 | 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] | 207 | { |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 208 | tegra_pwr_domain_on_finish(target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | /******************************************************************************* |
| 212 | * Handler called when the system wants to be powered off |
| 213 | ******************************************************************************/ |
| 214 | __dead2 void tegra_system_off(void) |
| 215 | { |
Varun Wadekar | e5caeed | 2016-01-07 14:04:21 -0800 | [diff] [blame] | 216 | INFO("Powering down system...\n"); |
| 217 | |
| 218 | tegra_soc_prepare_system_off(); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | /******************************************************************************* |
| 222 | * Handler called when the system wants to be restarted. |
| 223 | ******************************************************************************/ |
| 224 | __dead2 void tegra_system_reset(void) |
| 225 | { |
Varun Wadekar | e5caeed | 2016-01-07 14:04:21 -0800 | [diff] [blame] | 226 | INFO("Restarting system...\n"); |
| 227 | |
Varun Wadekar | 8b82fae | 2015-11-09 17:39:28 -0800 | [diff] [blame] | 228 | /* per-SoC system reset handler */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 229 | (void)tegra_soc_prepare_system_reset(); |
Varun Wadekar | 8b82fae | 2015-11-09 17:39:28 -0800 | [diff] [blame] | 230 | |
Varun Wadekar | 29b4665 | 2018-05-17 11:10:13 -0700 | [diff] [blame] | 231 | /* wait for the system to reset */ |
| 232 | for (;;) { |
| 233 | ; |
| 234 | } |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 238 | * Handler called to check the validity of the power state parameter. |
| 239 | ******************************************************************************/ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 240 | int32_t tegra_validate_power_state(uint32_t power_state, |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 241 | psci_power_state_t *req_state) |
| 242 | { |
Anthony Zhou | 4408e88 | 2017-07-07 14:29:51 +0800 | [diff] [blame] | 243 | assert(req_state != NULL); |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 244 | |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 245 | return tegra_soc_validate_power_state(power_state, req_state); |
| 246 | } |
| 247 | |
| 248 | /******************************************************************************* |
| 249 | * Platform handler called to check the validity of the non secure entrypoint. |
| 250 | ******************************************************************************/ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 251 | int32_t tegra_validate_ns_entrypoint(uintptr_t entrypoint) |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 252 | { |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 253 | int32_t ret = PSCI_E_INVALID_ADDRESS; |
| 254 | |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 255 | /* |
| 256 | * Check if the non secure entrypoint lies within the non |
| 257 | * secure DRAM. |
| 258 | */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 259 | if ((entrypoint >= TEGRA_DRAM_BASE) && (entrypoint <= TEGRA_DRAM_END)) { |
| 260 | ret = PSCI_E_SUCCESS; |
| 261 | } |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 262 | |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 263 | return ret; |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | /******************************************************************************* |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 267 | * Export the platform handlers to enable psci to invoke them |
| 268 | ******************************************************************************/ |
Varun Wadekar | 8d7a02b | 2018-06-26 16:07:50 -0700 | [diff] [blame] | 269 | static plat_psci_ops_t tegra_plat_psci_ops = { |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 270 | .cpu_standby = tegra_cpu_standby, |
| 271 | .pwr_domain_on = tegra_pwr_domain_on, |
| 272 | .pwr_domain_off = tegra_pwr_domain_off, |
Varun Wadekar | 99782e8 | 2017-07-05 17:44:12 -0700 | [diff] [blame] | 273 | .pwr_domain_suspend_pwrdown_early = tegra_pwr_domain_suspend_pwrdown_early, |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 274 | .pwr_domain_suspend = tegra_pwr_domain_suspend, |
| 275 | .pwr_domain_on_finish = tegra_pwr_domain_on_finish, |
| 276 | .pwr_domain_suspend_finish = tegra_pwr_domain_suspend_finish, |
Varun Wadekar | d22429d | 2016-03-18 14:35:28 -0700 | [diff] [blame] | 277 | .pwr_domain_pwr_down_wfi = tegra_pwr_domain_power_down_wfi, |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 278 | .system_off = tegra_system_off, |
| 279 | .system_reset = tegra_system_reset, |
| 280 | .validate_power_state = tegra_validate_power_state, |
| 281 | .validate_ns_entrypoint = tegra_validate_ns_entrypoint, |
| 282 | .get_sys_suspend_power_state = tegra_get_sys_suspend_power_state, |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 283 | }; |
| 284 | |
| 285 | /******************************************************************************* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 286 | * Export the platform specific power ops and initialize Power Controller |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 287 | ******************************************************************************/ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 288 | int plat_setup_psci_ops(uintptr_t sec_entrypoint, |
| 289 | const plat_psci_ops_t **psci_ops) |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 290 | { |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 291 | psci_power_state_t target_state = { { PSCI_LOCAL_STATE_RUN } }; |
| 292 | |
| 293 | /* |
| 294 | * Flush entrypoint variable to PoC since it will be |
| 295 | * accessed after a reset with the caches turned off. |
| 296 | */ |
| 297 | tegra_sec_entry_point = sec_entrypoint; |
| 298 | flush_dcache_range((uint64_t)&tegra_sec_entry_point, sizeof(uint64_t)); |
| 299 | |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 300 | /* |
| 301 | * Reset hardware settings. |
| 302 | */ |
Anthony Zhou | 85a8fa0 | 2017-03-22 14:42:42 +0800 | [diff] [blame] | 303 | (void)tegra_soc_pwr_domain_on_finish(&target_state); |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 304 | |
| 305 | /* |
Varun Wadekar | 8d7a02b | 2018-06-26 16:07:50 -0700 | [diff] [blame] | 306 | * Disable System Suspend if the platform does not |
| 307 | * support it |
| 308 | */ |
| 309 | if (!plat_supports_system_suspend()) { |
| 310 | tegra_plat_psci_ops.get_sys_suspend_power_state = NULL; |
| 311 | } |
| 312 | |
| 313 | /* |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 314 | * Initialize PSCI ops struct |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 315 | */ |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 316 | *psci_ops = &tegra_plat_psci_ops; |
Varun Wadekar | b316e24 | 2015-05-19 16:48:04 +0530 | [diff] [blame] | 317 | |
| 318 | return 0; |
| 319 | } |
Varun Wadekar | 2497539 | 2016-05-05 14:13:30 -0700 | [diff] [blame] | 320 | |
| 321 | /******************************************************************************* |
| 322 | * Platform handler to calculate the proper target power level at the |
| 323 | * specified affinity level |
| 324 | ******************************************************************************/ |
| 325 | plat_local_state_t plat_get_target_pwr_state(unsigned int lvl, |
| 326 | const plat_local_state_t *states, |
| 327 | unsigned int ncpu) |
| 328 | { |
Varun Wadekar | f2aa1be | 2016-06-07 12:00:06 -0700 | [diff] [blame] | 329 | return tegra_soc_get_target_pwr_state(lvl, states, ncpu); |
Varun Wadekar | 2497539 | 2016-05-05 14:13:30 -0700 | [diff] [blame] | 330 | } |