Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Dan Handley | e83b0ca | 2014-01-14 18:17:09 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 31 | #include <assert.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 32 | #include <bl_common.h> |
| 33 | #include <arch.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 34 | #include <arch_helpers.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 35 | #include <context.h> |
Achin Gupta | ef7a28c | 2014-02-01 08:59:56 +0000 | [diff] [blame] | 36 | #include <context_mgmt.h> |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 37 | #include <cpu_data.h> |
Soby Mathew | 2ed46e9 | 2014-07-04 16:02:26 +0100 | [diff] [blame] | 38 | #include <platform.h> |
Dan Handley | bcd60ba | 2014-04-17 18:53:42 +0100 | [diff] [blame] | 39 | #include <runtime_svc.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 40 | #include <stddef.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 41 | #include "psci_private.h" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 42 | |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 43 | typedef int (*afflvl_suspend_handler_t)(aff_map_node_t *, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 44 | unsigned long, |
| 45 | unsigned long, |
| 46 | unsigned int); |
| 47 | |
| 48 | /******************************************************************************* |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 49 | * This function saves the power state parameter passed in the current PSCI |
| 50 | * cpu_suspend call in the per-cpu data array. |
Achin Gupta | a45e397 | 2013-12-05 15:10:48 +0000 | [diff] [blame] | 51 | ******************************************************************************/ |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 52 | void psci_set_suspend_power_state(unsigned int power_state) |
Achin Gupta | a45e397 | 2013-12-05 15:10:48 +0000 | [diff] [blame] | 53 | { |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 54 | set_cpu_data(psci_svc_cpu_data.power_state, power_state); |
| 55 | flush_cpu_data(psci_svc_cpu_data.power_state); |
Achin Gupta | a45e397 | 2013-12-05 15:10:48 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | /******************************************************************************* |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 59 | * This function gets the affinity level till which the current cpu could be |
| 60 | * powered down during a cpu_suspend call. Returns PSCI_INVALID_DATA if the |
| 61 | * power state is invalid. |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 62 | ******************************************************************************/ |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 63 | int psci_get_suspend_afflvl() |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 64 | { |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 65 | unsigned int power_state; |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 66 | |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 67 | power_state = get_cpu_data(psci_svc_cpu_data.power_state); |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 68 | |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 69 | return ((power_state == PSCI_INVALID_DATA) ? |
| 70 | power_state : psci_get_pstate_afflvl(power_state)); |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 71 | } |
| 72 | |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 73 | /******************************************************************************* |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 74 | * This function gets the state id of the current cpu from the power state |
| 75 | * parameter saved in the per-cpu data array. Returns PSCI_INVALID_DATA if the |
| 76 | * power state saved is invalid. |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 77 | ******************************************************************************/ |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 78 | int psci_get_suspend_stateid() |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 79 | { |
| 80 | unsigned int power_state; |
| 81 | |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 82 | power_state = get_cpu_data(psci_svc_cpu_data.power_state); |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 83 | |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 84 | return ((power_state == PSCI_INVALID_DATA) ? |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 85 | power_state : psci_get_pstate_id(power_state)); |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | /******************************************************************************* |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 89 | * This function gets the state id of the cpu specified by the 'mpidr' parameter |
| 90 | * from the power state parameter saved in the per-cpu data array. Returns |
| 91 | * PSCI_INVALID_DATA if the power state saved is invalid. |
Achin Gupta | a45e397 | 2013-12-05 15:10:48 +0000 | [diff] [blame] | 92 | ******************************************************************************/ |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 93 | int psci_get_suspend_stateid_by_mpidr(unsigned long mpidr) |
Achin Gupta | a45e397 | 2013-12-05 15:10:48 +0000 | [diff] [blame] | 94 | { |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 95 | unsigned int power_state; |
| 96 | |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 97 | power_state = get_cpu_data_by_mpidr(mpidr, |
| 98 | psci_svc_cpu_data.power_state); |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 99 | |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 100 | return ((power_state == PSCI_INVALID_DATA) ? |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 101 | power_state : psci_get_pstate_id(power_state)); |
Achin Gupta | a45e397 | 2013-12-05 15:10:48 +0000 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /******************************************************************************* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 105 | * The next three functions implement a handler for each supported affinity |
| 106 | * level which is called when that affinity level is about to be suspended. |
| 107 | ******************************************************************************/ |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 108 | static int psci_afflvl0_suspend(aff_map_node_t *cpu_node, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 109 | unsigned long ns_entrypoint, |
| 110 | unsigned long context_id, |
| 111 | unsigned int power_state) |
| 112 | { |
Achin Gupta | e1aa516 | 2014-06-26 09:58:52 +0100 | [diff] [blame] | 113 | unsigned long psci_entrypoint; |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 114 | uint32_t ns_scr_el3 = read_scr_el3(); |
| 115 | uint32_t ns_sctlr_el1 = read_sctlr_el1(); |
| 116 | int rc; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 117 | |
| 118 | /* Sanity check to safeguard against data corruption */ |
| 119 | assert(cpu_node->level == MPIDR_AFFLVL0); |
| 120 | |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 121 | /* Save PSCI power state parameter for the core in suspend context */ |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 122 | psci_set_suspend_power_state(power_state); |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 123 | |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 124 | /* |
| 125 | * Generic management: Store the re-entry information for the non-secure |
| 126 | * world and allow the secure world to suspend itself |
| 127 | */ |
| 128 | |
| 129 | /* |
| 130 | * Call the cpu suspend handler registered by the Secure Payload |
| 131 | * Dispatcher to let it do any bookeeping. If the handler encounters an |
| 132 | * error, it's expected to assert within |
| 133 | */ |
Jeenu Viswambharan | 7f36660 | 2014-02-20 17:11:00 +0000 | [diff] [blame] | 134 | if (psci_spd_pm && psci_spd_pm->svc_suspend) |
| 135 | psci_spd_pm->svc_suspend(power_state); |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 136 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 137 | /* |
| 138 | * Generic management: Store the re-entry information for the |
| 139 | * non-secure world |
| 140 | */ |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 141 | rc = psci_save_ns_entry(read_mpidr_el1(), ns_entrypoint, context_id, |
| 142 | ns_scr_el3, ns_sctlr_el1); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 143 | if (rc != PSCI_E_SUCCESS) |
| 144 | return rc; |
| 145 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 146 | /* Set the secure world (EL3) re-entry point after BL1 */ |
| 147 | psci_entrypoint = (unsigned long) psci_aff_suspend_finish_entry; |
| 148 | |
| 149 | /* |
| 150 | * Arch. management. Perform the necessary steps to flush all |
| 151 | * cpu caches. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 152 | */ |
Achin Gupta | e1aa516 | 2014-06-26 09:58:52 +0100 | [diff] [blame] | 153 | psci_do_pwrdown_cache_maintenance(MPIDR_AFFLVL0); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 154 | |
Achin Gupta | 56bcdc2 | 2014-07-28 00:15:23 +0100 | [diff] [blame] | 155 | if (!psci_plat_pm_ops->affinst_suspend) |
| 156 | return PSCI_E_SUCCESS; |
| 157 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 158 | /* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 159 | * Plat. management: Allow the platform to perform the |
| 160 | * necessary actions to turn off this cpu e.g. set the |
| 161 | * platform defined mailbox with the psci entrypoint, |
| 162 | * program the power controller etc. |
| 163 | */ |
Achin Gupta | 56bcdc2 | 2014-07-28 00:15:23 +0100 | [diff] [blame] | 164 | return psci_plat_pm_ops->affinst_suspend(read_mpidr_el1(), |
| 165 | psci_entrypoint, |
| 166 | ns_entrypoint, |
| 167 | cpu_node->level, |
| 168 | psci_get_phys_state(cpu_node)); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 169 | } |
| 170 | |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 171 | static int psci_afflvl1_suspend(aff_map_node_t *cluster_node, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 172 | unsigned long ns_entrypoint, |
| 173 | unsigned long context_id, |
| 174 | unsigned int power_state) |
| 175 | { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 176 | unsigned int plat_state; |
| 177 | unsigned long psci_entrypoint; |
| 178 | |
| 179 | /* Sanity check the cluster level */ |
| 180 | assert(cluster_node->level == MPIDR_AFFLVL1); |
| 181 | |
| 182 | /* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 183 | * Arch. management: Flush all levels of caches to PoC if the |
Achin Gupta | f6b9e99 | 2014-07-31 11:19:11 +0100 | [diff] [blame] | 184 | * cluster is to be shutdown. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 185 | */ |
Achin Gupta | f6b9e99 | 2014-07-31 11:19:11 +0100 | [diff] [blame] | 186 | psci_do_pwrdown_cache_maintenance(MPIDR_AFFLVL1); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 187 | |
Achin Gupta | 56bcdc2 | 2014-07-28 00:15:23 +0100 | [diff] [blame] | 188 | if (!psci_plat_pm_ops->affinst_suspend) |
| 189 | return PSCI_E_SUCCESS; |
| 190 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 191 | /* |
Achin Gupta | 56bcdc2 | 2014-07-28 00:15:23 +0100 | [diff] [blame] | 192 | * Plat. Management. Allow the platform to do its cluster specific |
| 193 | * bookeeping e.g. turn off interconnect coherency, program the power |
| 194 | * controller etc. Sending the psci entrypoint is currently redundant |
| 195 | * beyond affinity level 0 but one never knows what a platform might |
| 196 | * do. Also it allows us to keep the platform handler prototype the |
| 197 | * same. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 198 | */ |
Achin Gupta | 56bcdc2 | 2014-07-28 00:15:23 +0100 | [diff] [blame] | 199 | plat_state = psci_get_phys_state(cluster_node); |
| 200 | psci_entrypoint = (unsigned long) psci_aff_suspend_finish_entry; |
| 201 | return psci_plat_pm_ops->affinst_suspend(read_mpidr_el1(), |
| 202 | psci_entrypoint, |
| 203 | ns_entrypoint, |
| 204 | cluster_node->level, |
| 205 | plat_state); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 209 | static int psci_afflvl2_suspend(aff_map_node_t *system_node, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 210 | unsigned long ns_entrypoint, |
| 211 | unsigned long context_id, |
| 212 | unsigned int power_state) |
| 213 | { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 214 | unsigned int plat_state; |
| 215 | unsigned long psci_entrypoint; |
| 216 | |
| 217 | /* Cannot go beyond this */ |
| 218 | assert(system_node->level == MPIDR_AFFLVL2); |
| 219 | |
| 220 | /* |
| 221 | * Keep the physical state of the system handy to decide what |
| 222 | * action needs to be taken |
| 223 | */ |
Achin Gupta | 75f7367 | 2013-12-05 16:33:10 +0000 | [diff] [blame] | 224 | plat_state = psci_get_phys_state(system_node); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 225 | |
| 226 | /* |
Achin Gupta | f6b9e99 | 2014-07-31 11:19:11 +0100 | [diff] [blame] | 227 | * Arch. management: Flush all levels of caches to PoC if the |
| 228 | * system is to be shutdown. |
| 229 | */ |
| 230 | psci_do_pwrdown_cache_maintenance(MPIDR_AFFLVL2); |
| 231 | |
| 232 | /* |
Achin Gupta | 3140a9e | 2013-12-02 16:23:12 +0000 | [diff] [blame] | 233 | * Plat. Management : Allow the platform to do its bookeeping |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 234 | * at this affinity level |
| 235 | */ |
Achin Gupta | 56bcdc2 | 2014-07-28 00:15:23 +0100 | [diff] [blame] | 236 | if (!psci_plat_pm_ops->affinst_suspend) |
| 237 | return PSCI_E_SUCCESS; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 238 | |
Achin Gupta | 56bcdc2 | 2014-07-28 00:15:23 +0100 | [diff] [blame] | 239 | /* |
| 240 | * Sending the psci entrypoint is currently redundant |
| 241 | * beyond affinity level 0 but one never knows what a |
| 242 | * platform might do. Also it allows us to keep the |
| 243 | * platform handler prototype the same. |
| 244 | */ |
| 245 | plat_state = psci_get_phys_state(system_node); |
| 246 | psci_entrypoint = (unsigned long) psci_aff_suspend_finish_entry; |
| 247 | return psci_plat_pm_ops->affinst_suspend(read_mpidr_el1(), |
| 248 | psci_entrypoint, |
| 249 | ns_entrypoint, |
| 250 | system_node->level, |
| 251 | plat_state); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 252 | } |
| 253 | |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 254 | static const afflvl_suspend_handler_t psci_afflvl_suspend_handlers[] = { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 255 | psci_afflvl0_suspend, |
| 256 | psci_afflvl1_suspend, |
| 257 | psci_afflvl2_suspend, |
| 258 | }; |
| 259 | |
| 260 | /******************************************************************************* |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 261 | * This function takes an array of pointers to affinity instance nodes in the |
| 262 | * topology tree and calls the suspend handler for the corresponding affinity |
| 263 | * levels |
| 264 | ******************************************************************************/ |
Achin Gupta | 56bcdc2 | 2014-07-28 00:15:23 +0100 | [diff] [blame] | 265 | static int psci_call_suspend_handlers(aff_map_node_t *mpidr_nodes[], |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 266 | int start_afflvl, |
| 267 | int end_afflvl, |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 268 | unsigned long entrypoint, |
| 269 | unsigned long context_id, |
| 270 | unsigned int power_state) |
| 271 | { |
| 272 | int rc = PSCI_E_INVALID_PARAMS, level; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 273 | aff_map_node_t *node; |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 274 | |
| 275 | for (level = start_afflvl; level <= end_afflvl; level++) { |
| 276 | node = mpidr_nodes[level]; |
| 277 | if (node == NULL) |
| 278 | continue; |
| 279 | |
| 280 | /* |
| 281 | * TODO: In case of an error should there be a way |
| 282 | * of restoring what we might have torn down at |
| 283 | * lower affinity levels. |
| 284 | */ |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 285 | rc = psci_afflvl_suspend_handlers[level](node, |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 286 | entrypoint, |
| 287 | context_id, |
| 288 | power_state); |
| 289 | if (rc != PSCI_E_SUCCESS) |
| 290 | break; |
| 291 | } |
| 292 | |
| 293 | return rc; |
| 294 | } |
| 295 | |
| 296 | /******************************************************************************* |
| 297 | * Top level handler which is called when a cpu wants to suspend its execution. |
| 298 | * It is assumed that along with turning the cpu off, higher affinity levels |
| 299 | * until the target affinity level will be turned off as well. It traverses |
| 300 | * through all the affinity levels performing generic, architectural, platform |
| 301 | * setup and state management e.g. for a cluster that's to be suspended, it will |
| 302 | * call the platform specific code which will disable coherency at the |
| 303 | * interconnect level if the cpu is the last in the cluster. For a cpu it could |
| 304 | * mean programming the power controller etc. |
| 305 | * |
| 306 | * The state of all the relevant affinity levels is changed prior to calling the |
| 307 | * affinity level specific handlers as their actions would depend upon the state |
| 308 | * the affinity level is about to enter. |
| 309 | * |
| 310 | * The affinity level specific handlers are called in ascending order i.e. from |
| 311 | * the lowest to the highest affinity level implemented by the platform because |
| 312 | * to turn off affinity level X it is neccesary to turn off affinity level X - 1 |
| 313 | * first. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 314 | ******************************************************************************/ |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 315 | int psci_afflvl_suspend(unsigned long entrypoint, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 316 | unsigned long context_id, |
| 317 | unsigned int power_state, |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 318 | int start_afflvl, |
| 319 | int end_afflvl) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 320 | { |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 321 | int rc = PSCI_E_SUCCESS; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 322 | mpidr_aff_map_nodes_t mpidr_nodes; |
Achin Gupta | f6b9e99 | 2014-07-31 11:19:11 +0100 | [diff] [blame] | 323 | unsigned int max_phys_off_afflvl; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 324 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 325 | /* |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 326 | * Collect the pointers to the nodes in the topology tree for |
| 327 | * each affinity instance in the mpidr. If this function does |
| 328 | * not return successfully then either the mpidr or the affinity |
| 329 | * levels are incorrect. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 330 | */ |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 331 | rc = psci_get_aff_map_nodes(read_mpidr_el1() & MPIDR_AFFINITY_MASK, |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 332 | start_afflvl, |
| 333 | end_afflvl, |
| 334 | mpidr_nodes); |
| 335 | if (rc != PSCI_E_SUCCESS) |
| 336 | return rc; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 337 | |
| 338 | /* |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 339 | * This function acquires the lock corresponding to each affinity |
| 340 | * level so that by the time all locks are taken, the system topology |
| 341 | * is snapshot and state management can be done safely. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 342 | */ |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 343 | psci_acquire_afflvl_locks(start_afflvl, |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 344 | end_afflvl, |
| 345 | mpidr_nodes); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 346 | |
Achin Gupta | cab78e4 | 2014-07-28 00:09:01 +0100 | [diff] [blame] | 347 | /* |
| 348 | * This function updates the state of each affinity instance |
| 349 | * corresponding to the mpidr in the range of affinity levels |
| 350 | * specified. |
| 351 | */ |
| 352 | psci_do_afflvl_state_mgmt(start_afflvl, |
| 353 | end_afflvl, |
| 354 | mpidr_nodes, |
| 355 | PSCI_STATE_SUSPEND); |
Achin Gupta | f6b9e99 | 2014-07-31 11:19:11 +0100 | [diff] [blame] | 356 | |
| 357 | max_phys_off_afflvl = psci_find_max_phys_off_afflvl(start_afflvl, |
| 358 | end_afflvl, |
| 359 | mpidr_nodes); |
| 360 | assert(max_phys_off_afflvl != PSCI_INVALID_DATA); |
| 361 | |
| 362 | /* Stash the highest affinity level that will be turned off */ |
| 363 | psci_set_max_phys_off_afflvl(max_phys_off_afflvl); |
| 364 | |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 365 | /* Perform generic, architecture and platform specific handling */ |
| 366 | rc = psci_call_suspend_handlers(mpidr_nodes, |
| 367 | start_afflvl, |
| 368 | end_afflvl, |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 369 | entrypoint, |
| 370 | context_id, |
| 371 | power_state); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 372 | |
| 373 | /* |
Achin Gupta | f6b9e99 | 2014-07-31 11:19:11 +0100 | [diff] [blame] | 374 | * Invalidate the entry for the highest affinity level stashed earlier. |
| 375 | * This ensures that any reads of this variable outside the power |
| 376 | * up/down sequences return PSCI_INVALID_DATA. |
| 377 | */ |
| 378 | psci_set_max_phys_off_afflvl(PSCI_INVALID_DATA); |
| 379 | |
| 380 | /* |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 381 | * Release the locks corresponding to each affinity level in the |
| 382 | * reverse order to which they were acquired. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 383 | */ |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 384 | psci_release_afflvl_locks(start_afflvl, |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 385 | end_afflvl, |
| 386 | mpidr_nodes); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 387 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 388 | return rc; |
| 389 | } |
| 390 | |
| 391 | /******************************************************************************* |
| 392 | * The following functions finish an earlier affinity suspend request. They |
| 393 | * are called by the common finisher routine in psci_common.c. |
| 394 | ******************************************************************************/ |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 395 | static unsigned int psci_afflvl0_suspend_finish(aff_map_node_t *cpu_node) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 396 | { |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 397 | unsigned int plat_state, state, rc; |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 398 | int32_t suspend_level; |
Soby Mathew | 2ed46e9 | 2014-07-04 16:02:26 +0100 | [diff] [blame] | 399 | uint64_t counter_freq; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 400 | |
| 401 | assert(cpu_node->level == MPIDR_AFFLVL0); |
| 402 | |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 403 | /* Ensure we have been woken up from a suspended state */ |
Achin Gupta | 75f7367 | 2013-12-05 16:33:10 +0000 | [diff] [blame] | 404 | state = psci_get_state(cpu_node); |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 405 | assert(state == PSCI_STATE_SUSPEND); |
| 406 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 407 | /* |
| 408 | * Plat. management: Perform the platform specific actions |
| 409 | * before we change the state of the cpu e.g. enabling the |
| 410 | * gic or zeroing the mailbox register. If anything goes |
| 411 | * wrong then assert as there is no way to recover from this |
| 412 | * situation. |
| 413 | */ |
| 414 | if (psci_plat_pm_ops->affinst_suspend_finish) { |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 415 | |
| 416 | /* Get the physical state of this cpu */ |
Achin Gupta | 75f7367 | 2013-12-05 16:33:10 +0000 | [diff] [blame] | 417 | plat_state = get_phys_state(state); |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 418 | rc = psci_plat_pm_ops->affinst_suspend_finish(read_mpidr_el1(), |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 419 | cpu_node->level, |
| 420 | plat_state); |
| 421 | assert(rc == PSCI_E_SUCCESS); |
| 422 | } |
| 423 | |
| 424 | /* Get the index for restoring the re-entry information */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 425 | /* |
Achin Gupta | e1aa516 | 2014-06-26 09:58:52 +0100 | [diff] [blame] | 426 | * Arch. management: Enable the data cache, manage stack memory and |
| 427 | * restore the stashed EL3 architectural context from the 'cpu_context' |
| 428 | * structure for this cpu. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 429 | */ |
Achin Gupta | e1aa516 | 2014-06-26 09:58:52 +0100 | [diff] [blame] | 430 | psci_do_pwrup_cache_maintenance(); |
Soby Mathew | 2ed46e9 | 2014-07-04 16:02:26 +0100 | [diff] [blame] | 431 | |
| 432 | /* Re-init the cntfrq_el0 register */ |
| 433 | counter_freq = plat_get_syscnt_freq(); |
| 434 | write_cntfrq_el0(counter_freq); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 435 | |
| 436 | /* |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 437 | * Call the cpu suspend finish handler registered by the Secure Payload |
| 438 | * Dispatcher to let it do any bookeeping. If the handler encounters an |
| 439 | * error, it's expected to assert within |
| 440 | */ |
Jeenu Viswambharan | 7f36660 | 2014-02-20 17:11:00 +0000 | [diff] [blame] | 441 | if (psci_spd_pm && psci_spd_pm->svc_suspend) { |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 442 | suspend_level = psci_get_suspend_afflvl(); |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 443 | assert (suspend_level != PSCI_INVALID_DATA); |
Jeenu Viswambharan | 7f36660 | 2014-02-20 17:11:00 +0000 | [diff] [blame] | 444 | psci_spd_pm->svc_suspend_finish(suspend_level); |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 447 | /* Invalidate the suspend context for the node */ |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 448 | psci_set_suspend_power_state(PSCI_INVALID_DATA); |
Vikram Kanigiri | f100f41 | 2014-04-01 19:26:26 +0100 | [diff] [blame] | 449 | |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 450 | /* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 451 | * Generic management: Now we just need to retrieve the |
| 452 | * information that we had stashed away during the suspend |
Achin Gupta | 3140a9e | 2013-12-02 16:23:12 +0000 | [diff] [blame] | 453 | * call to set this cpu on its way. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 454 | */ |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 455 | cm_prepare_el3_exit(NON_SECURE); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 456 | |
| 457 | /* Clean caches before re-entering normal world */ |
| 458 | dcsw_op_louis(DCCSW); |
| 459 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 460 | rc = PSCI_E_SUCCESS; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 461 | return rc; |
| 462 | } |
| 463 | |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 464 | static unsigned int psci_afflvl1_suspend_finish(aff_map_node_t *cluster_node) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 465 | { |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 466 | unsigned int plat_state, rc = PSCI_E_SUCCESS; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 467 | |
| 468 | assert(cluster_node->level == MPIDR_AFFLVL1); |
| 469 | |
| 470 | /* |
| 471 | * Plat. management: Perform the platform specific actions |
| 472 | * as per the old state of the cluster e.g. enabling |
| 473 | * coherency at the interconnect depends upon the state with |
| 474 | * which this cluster was powered up. If anything goes wrong |
| 475 | * then assert as there is no way to recover from this |
| 476 | * situation. |
| 477 | */ |
| 478 | if (psci_plat_pm_ops->affinst_suspend_finish) { |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 479 | |
| 480 | /* Get the physical state of this cpu */ |
Achin Gupta | 75f7367 | 2013-12-05 16:33:10 +0000 | [diff] [blame] | 481 | plat_state = psci_get_phys_state(cluster_node); |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 482 | rc = psci_plat_pm_ops->affinst_suspend_finish(read_mpidr_el1(), |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 483 | cluster_node->level, |
| 484 | plat_state); |
| 485 | assert(rc == PSCI_E_SUCCESS); |
| 486 | } |
| 487 | |
| 488 | return rc; |
| 489 | } |
| 490 | |
| 491 | |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 492 | static unsigned int psci_afflvl2_suspend_finish(aff_map_node_t *system_node) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 493 | { |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 494 | unsigned int plat_state, rc = PSCI_E_SUCCESS;; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 495 | |
| 496 | /* Cannot go beyond this affinity level */ |
| 497 | assert(system_node->level == MPIDR_AFFLVL2); |
| 498 | |
| 499 | /* |
| 500 | * Currently, there are no architectural actions to perform |
| 501 | * at the system level. |
| 502 | */ |
| 503 | |
| 504 | /* |
| 505 | * Plat. management: Perform the platform specific actions |
| 506 | * as per the old state of the cluster e.g. enabling |
| 507 | * coherency at the interconnect depends upon the state with |
| 508 | * which this cluster was powered up. If anything goes wrong |
| 509 | * then assert as there is no way to recover from this |
| 510 | * situation. |
| 511 | */ |
| 512 | if (psci_plat_pm_ops->affinst_suspend_finish) { |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 513 | |
| 514 | /* Get the physical state of the system */ |
Achin Gupta | 75f7367 | 2013-12-05 16:33:10 +0000 | [diff] [blame] | 515 | plat_state = psci_get_phys_state(system_node); |
Andrew Thoelke | 2bc0785 | 2014-06-09 12:44:21 +0100 | [diff] [blame] | 516 | rc = psci_plat_pm_ops->affinst_suspend_finish(read_mpidr_el1(), |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 517 | system_node->level, |
| 518 | plat_state); |
| 519 | assert(rc == PSCI_E_SUCCESS); |
| 520 | } |
| 521 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 522 | return rc; |
| 523 | } |
| 524 | |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 525 | const afflvl_power_on_finisher_t psci_afflvl_suspend_finishers[] = { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 526 | psci_afflvl0_suspend_finish, |
| 527 | psci_afflvl1_suspend_finish, |
| 528 | psci_afflvl2_suspend_finish, |
| 529 | }; |