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 <arch_helpers.h> |
Dan Handley | fb42b12 | 2014-06-20 09:43:15 +0100 | [diff] [blame] | 32 | #include <arm_gic.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 33 | #include <assert.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 34 | #include <bakery_lock.h> |
| 35 | #include <cci400.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 36 | #include <mmio.h> |
| 37 | #include <platform.h> |
Dan Handley | 1c54d97 | 2014-06-20 12:02:01 +0100 | [diff] [blame] | 38 | #include <plat_config.h> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 39 | #include <platform_def.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 40 | #include <psci.h> |
Dan Handley | 4d2e49d | 2014-04-11 11:52:12 +0100 | [diff] [blame] | 41 | #include "drivers/pwrc/fvp_pwrc.h" |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 42 | #include "fvp_def.h" |
| 43 | #include "fvp_private.h" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 44 | |
| 45 | /******************************************************************************* |
Vikram Kanigiri | 3b7c59b | 2014-03-21 11:57:10 +0000 | [diff] [blame] | 46 | * FVP handler called when an affinity instance is about to enter standby. |
| 47 | ******************************************************************************/ |
| 48 | int fvp_affinst_standby(unsigned int power_state) |
| 49 | { |
| 50 | unsigned int target_afflvl; |
| 51 | |
| 52 | /* Sanity check the requested state */ |
| 53 | target_afflvl = psci_get_pstate_afflvl(power_state); |
| 54 | |
| 55 | /* |
| 56 | * It's possible to enter standby only on affinity level 0 i.e. a cpu |
| 57 | * on the FVP. Ignore any other affinity level. |
| 58 | */ |
| 59 | if (target_afflvl != MPIDR_AFFLVL0) |
| 60 | return PSCI_E_INVALID_PARAMS; |
| 61 | |
Andrew Thoelke | 42e75a7 | 2014-04-28 12:28:39 +0100 | [diff] [blame] | 62 | /* |
| 63 | * Enter standby state |
| 64 | * dsb is good practice before using wfi to enter low power states |
| 65 | */ |
| 66 | dsb(); |
Vikram Kanigiri | 3b7c59b | 2014-03-21 11:57:10 +0000 | [diff] [blame] | 67 | wfi(); |
| 68 | |
| 69 | return PSCI_E_SUCCESS; |
| 70 | } |
| 71 | |
| 72 | /******************************************************************************* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 73 | * FVP handler called when an affinity instance is about to be turned on. The |
| 74 | * level and mpidr determine the affinity instance. |
| 75 | ******************************************************************************/ |
| 76 | int fvp_affinst_on(unsigned long mpidr, |
| 77 | unsigned long sec_entrypoint, |
| 78 | unsigned long ns_entrypoint, |
| 79 | unsigned int afflvl, |
| 80 | unsigned int state) |
| 81 | { |
| 82 | int rc = PSCI_E_SUCCESS; |
| 83 | unsigned long linear_id; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 84 | mailbox_t *fvp_mboxes; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 85 | unsigned int psysr; |
| 86 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 87 | /* |
| 88 | * It's possible to turn on only affinity level 0 i.e. a cpu |
| 89 | * on the FVP. Ignore any other affinity level. |
| 90 | */ |
| 91 | if (afflvl != MPIDR_AFFLVL0) |
| 92 | goto exit; |
| 93 | |
| 94 | /* |
| 95 | * Ensure that we do not cancel an inflight power off request |
| 96 | * for the target cpu. That would leave it in a zombie wfi. |
| 97 | * Wait for it to power off, program the jump address for the |
| 98 | * target cpu and then program the power controller to turn |
| 99 | * that cpu on |
| 100 | */ |
| 101 | do { |
| 102 | psysr = fvp_pwrc_read_psysr(mpidr); |
| 103 | } while (psysr & PSYSR_AFF_L0); |
| 104 | |
| 105 | linear_id = platform_get_core_pos(mpidr); |
Juan Castillo | 0c70c57 | 2014-08-12 13:04:43 +0100 | [diff] [blame^] | 106 | fvp_mboxes = (mailbox_t *) (FVP_TRUSTED_DRAM_BASE + MBOX_OFF); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 107 | fvp_mboxes[linear_id].value = sec_entrypoint; |
| 108 | flush_dcache_range((unsigned long) &fvp_mboxes[linear_id], |
| 109 | sizeof(unsigned long)); |
| 110 | |
| 111 | fvp_pwrc_write_pponr(mpidr); |
| 112 | |
| 113 | exit: |
| 114 | return rc; |
| 115 | } |
| 116 | |
| 117 | /******************************************************************************* |
| 118 | * FVP handler called when an affinity instance is about to be turned off. The |
| 119 | * level and mpidr determine the affinity instance. The 'state' arg. allows the |
| 120 | * platform to decide whether the cluster is being turned off and take apt |
| 121 | * actions. |
| 122 | * |
Achin Gupta | 9c60d80 | 2014-06-26 11:12:37 +0100 | [diff] [blame] | 123 | * CAUTION: There is no guarantee that caches will remain turned on across calls |
| 124 | * to this function as each affinity level is dealt with. So do not write & read |
| 125 | * global variables across calls. It will be wise to do flush a write to the |
| 126 | * global to prevent unpredictable results. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 127 | ******************************************************************************/ |
| 128 | int fvp_affinst_off(unsigned long mpidr, |
| 129 | unsigned int afflvl, |
| 130 | unsigned int state) |
| 131 | { |
| 132 | int rc = PSCI_E_SUCCESS; |
Dan Handley | fb42b12 | 2014-06-20 09:43:15 +0100 | [diff] [blame] | 133 | unsigned int ectlr; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 134 | |
| 135 | switch (afflvl) { |
| 136 | case MPIDR_AFFLVL1: |
| 137 | if (state == PSCI_STATE_OFF) { |
| 138 | /* |
| 139 | * Disable coherency if this cluster is to be |
| 140 | * turned off |
| 141 | */ |
Dan Handley | 1c54d97 | 2014-06-20 12:02:01 +0100 | [diff] [blame] | 142 | if (get_plat_config()->flags & CONFIG_HAS_CCI) |
Harry Liebel | 30affd5 | 2013-10-30 17:41:48 +0000 | [diff] [blame] | 143 | cci_disable_coherency(mpidr); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | * Program the power controller to turn the |
| 147 | * cluster off |
| 148 | */ |
| 149 | fvp_pwrc_write_pcoffr(mpidr); |
| 150 | |
| 151 | } |
| 152 | break; |
| 153 | |
| 154 | case MPIDR_AFFLVL0: |
| 155 | if (state == PSCI_STATE_OFF) { |
| 156 | |
| 157 | /* |
| 158 | * Take this cpu out of intra-cluster coherency if |
| 159 | * the FVP flavour supports the SMP bit. |
| 160 | */ |
Dan Handley | 1c54d97 | 2014-06-20 12:02:01 +0100 | [diff] [blame] | 161 | if (get_plat_config()->flags & CONFIG_CPUECTLR_SMP_BIT) { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 162 | ectlr = read_cpuectlr(); |
| 163 | ectlr &= ~CPUECTLR_SMP_BIT; |
| 164 | write_cpuectlr(ectlr); |
| 165 | } |
| 166 | |
| 167 | /* |
| 168 | * Prevent interrupts from spuriously waking up |
| 169 | * this cpu |
| 170 | */ |
Dan Handley | fb42b12 | 2014-06-20 09:43:15 +0100 | [diff] [blame] | 171 | arm_gic_cpuif_deactivate(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 172 | |
| 173 | /* |
| 174 | * Program the power controller to power this |
| 175 | * cpu off |
| 176 | */ |
| 177 | fvp_pwrc_write_ppoffr(mpidr); |
| 178 | } |
| 179 | break; |
| 180 | |
| 181 | default: |
| 182 | assert(0); |
| 183 | } |
| 184 | |
| 185 | return rc; |
| 186 | } |
| 187 | |
| 188 | /******************************************************************************* |
| 189 | * FVP handler called when an affinity instance is about to be suspended. The |
| 190 | * level and mpidr determine the affinity instance. The 'state' arg. allows the |
| 191 | * platform to decide whether the cluster is being turned off and take apt |
| 192 | * actions. |
| 193 | * |
Achin Gupta | 9c60d80 | 2014-06-26 11:12:37 +0100 | [diff] [blame] | 194 | * CAUTION: There is no guarantee that caches will remain turned on across calls |
| 195 | * to this function as each affinity level is dealt with. So do not write & read |
| 196 | * global variables across calls. It will be wise to do flush a write to the |
| 197 | * global to prevent unpredictable results. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 198 | ******************************************************************************/ |
| 199 | int fvp_affinst_suspend(unsigned long mpidr, |
| 200 | unsigned long sec_entrypoint, |
| 201 | unsigned long ns_entrypoint, |
| 202 | unsigned int afflvl, |
| 203 | unsigned int state) |
| 204 | { |
| 205 | int rc = PSCI_E_SUCCESS; |
Dan Handley | fb42b12 | 2014-06-20 09:43:15 +0100 | [diff] [blame] | 206 | unsigned int ectlr; |
Dan Handley | 1c54d97 | 2014-06-20 12:02:01 +0100 | [diff] [blame] | 207 | unsigned long linear_id; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 208 | mailbox_t *fvp_mboxes; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 209 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 210 | switch (afflvl) { |
| 211 | case MPIDR_AFFLVL1: |
| 212 | if (state == PSCI_STATE_OFF) { |
| 213 | /* |
| 214 | * Disable coherency if this cluster is to be |
| 215 | * turned off |
| 216 | */ |
Dan Handley | 1c54d97 | 2014-06-20 12:02:01 +0100 | [diff] [blame] | 217 | if (get_plat_config()->flags & CONFIG_HAS_CCI) |
Harry Liebel | 30affd5 | 2013-10-30 17:41:48 +0000 | [diff] [blame] | 218 | cci_disable_coherency(mpidr); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 219 | |
| 220 | /* |
| 221 | * Program the power controller to turn the |
| 222 | * cluster off |
| 223 | */ |
| 224 | fvp_pwrc_write_pcoffr(mpidr); |
| 225 | |
| 226 | } |
| 227 | break; |
| 228 | |
| 229 | case MPIDR_AFFLVL0: |
| 230 | if (state == PSCI_STATE_OFF) { |
| 231 | /* |
| 232 | * Take this cpu out of intra-cluster coherency if |
| 233 | * the FVP flavour supports the SMP bit. |
| 234 | */ |
Dan Handley | 1c54d97 | 2014-06-20 12:02:01 +0100 | [diff] [blame] | 235 | if (get_plat_config()->flags & CONFIG_CPUECTLR_SMP_BIT) { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 236 | ectlr = read_cpuectlr(); |
| 237 | ectlr &= ~CPUECTLR_SMP_BIT; |
| 238 | write_cpuectlr(ectlr); |
| 239 | } |
| 240 | |
| 241 | /* Program the jump address for the target cpu */ |
| 242 | linear_id = platform_get_core_pos(mpidr); |
Juan Castillo | 0c70c57 | 2014-08-12 13:04:43 +0100 | [diff] [blame^] | 243 | fvp_mboxes = (mailbox_t *) (FVP_TRUSTED_DRAM_BASE + |
| 244 | MBOX_OFF); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 245 | fvp_mboxes[linear_id].value = sec_entrypoint; |
| 246 | flush_dcache_range((unsigned long) &fvp_mboxes[linear_id], |
| 247 | sizeof(unsigned long)); |
| 248 | |
| 249 | /* |
| 250 | * Prevent interrupts from spuriously waking up |
| 251 | * this cpu |
| 252 | */ |
Dan Handley | fb42b12 | 2014-06-20 09:43:15 +0100 | [diff] [blame] | 253 | arm_gic_cpuif_deactivate(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 254 | |
| 255 | /* |
| 256 | * Program the power controller to power this |
| 257 | * cpu off and enable wakeup interrupts. |
| 258 | */ |
Achin Gupta | b127cdb | 2013-11-12 16:40:00 +0000 | [diff] [blame] | 259 | fvp_pwrc_set_wen(mpidr); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 260 | fvp_pwrc_write_ppoffr(mpidr); |
| 261 | } |
| 262 | break; |
| 263 | |
| 264 | default: |
| 265 | assert(0); |
| 266 | } |
| 267 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 268 | return rc; |
| 269 | } |
| 270 | |
| 271 | /******************************************************************************* |
| 272 | * FVP handler called when an affinity instance has just been powered on after |
| 273 | * being turned off earlier. The level and mpidr determine the affinity |
| 274 | * instance. The 'state' arg. allows the platform to decide whether the cluster |
| 275 | * was turned off prior to wakeup and do what's necessary to setup it up |
| 276 | * correctly. |
| 277 | ******************************************************************************/ |
| 278 | int fvp_affinst_on_finish(unsigned long mpidr, |
| 279 | unsigned int afflvl, |
| 280 | unsigned int state) |
| 281 | { |
| 282 | int rc = PSCI_E_SUCCESS; |
Dan Handley | 1c54d97 | 2014-06-20 12:02:01 +0100 | [diff] [blame] | 283 | unsigned long linear_id; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 284 | mailbox_t *fvp_mboxes; |
Dan Handley | fb42b12 | 2014-06-20 09:43:15 +0100 | [diff] [blame] | 285 | unsigned int ectlr; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 286 | |
| 287 | switch (afflvl) { |
| 288 | |
| 289 | case MPIDR_AFFLVL1: |
| 290 | /* Enable coherency if this cluster was off */ |
Harry Liebel | 30affd5 | 2013-10-30 17:41:48 +0000 | [diff] [blame] | 291 | if (state == PSCI_STATE_OFF) { |
Achin Gupta | b2187ab | 2014-01-17 16:52:29 +0000 | [diff] [blame] | 292 | |
| 293 | /* |
| 294 | * This CPU might have woken up whilst the |
| 295 | * cluster was attempting to power down. In |
| 296 | * this case the FVP power controller will |
| 297 | * have a pending cluster power off request |
| 298 | * which needs to be cleared by writing to the |
| 299 | * PPONR register. This prevents the power |
| 300 | * controller from interpreting a subsequent |
| 301 | * entry of this cpu into a simple wfi as a |
| 302 | * power down request. |
| 303 | */ |
| 304 | fvp_pwrc_write_pponr(mpidr); |
| 305 | |
Vikram Kanigiri | 9637745 | 2014-04-24 11:02:16 +0100 | [diff] [blame] | 306 | fvp_cci_setup(); |
Harry Liebel | 30affd5 | 2013-10-30 17:41:48 +0000 | [diff] [blame] | 307 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 308 | break; |
| 309 | |
| 310 | case MPIDR_AFFLVL0: |
| 311 | /* |
| 312 | * Ignore the state passed for a cpu. It could only have |
| 313 | * been off if we are here. |
| 314 | */ |
| 315 | |
| 316 | /* |
| 317 | * Turn on intra-cluster coherency if the FVP flavour supports |
| 318 | * it. |
| 319 | */ |
Dan Handley | 1c54d97 | 2014-06-20 12:02:01 +0100 | [diff] [blame] | 320 | if (get_plat_config()->flags & CONFIG_CPUECTLR_SMP_BIT) { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 321 | ectlr = read_cpuectlr(); |
| 322 | ectlr |= CPUECTLR_SMP_BIT; |
| 323 | write_cpuectlr(ectlr); |
| 324 | } |
| 325 | |
Achin Gupta | b127cdb | 2013-11-12 16:40:00 +0000 | [diff] [blame] | 326 | /* |
| 327 | * Clear PWKUPR.WEN bit to ensure interrupts do not interfere |
| 328 | * with a cpu power down unless the bit is set again |
| 329 | */ |
| 330 | fvp_pwrc_clr_wen(mpidr); |
| 331 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 332 | /* Zero the jump address in the mailbox for this cpu */ |
Juan Castillo | 0c70c57 | 2014-08-12 13:04:43 +0100 | [diff] [blame^] | 333 | fvp_mboxes = (mailbox_t *) (FVP_TRUSTED_DRAM_BASE + |
| 334 | MBOX_OFF); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 335 | linear_id = platform_get_core_pos(mpidr); |
| 336 | fvp_mboxes[linear_id].value = 0; |
| 337 | flush_dcache_range((unsigned long) &fvp_mboxes[linear_id], |
| 338 | sizeof(unsigned long)); |
| 339 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 340 | /* Enable the gic cpu interface */ |
Dan Handley | fb42b12 | 2014-06-20 09:43:15 +0100 | [diff] [blame] | 341 | arm_gic_cpuif_setup(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 342 | |
| 343 | /* TODO: This setup is needed only after a cold boot */ |
Dan Handley | fb42b12 | 2014-06-20 09:43:15 +0100 | [diff] [blame] | 344 | arm_gic_pcpu_distif_setup(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 345 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 346 | break; |
| 347 | |
| 348 | default: |
| 349 | assert(0); |
| 350 | } |
| 351 | |
| 352 | return rc; |
| 353 | } |
| 354 | |
| 355 | /******************************************************************************* |
| 356 | * FVP handler called when an affinity instance has just been powered on after |
| 357 | * having been suspended earlier. The level and mpidr determine the affinity |
| 358 | * instance. |
| 359 | * TODO: At the moment we reuse the on finisher and reinitialize the secure |
| 360 | * context. Need to implement a separate suspend finisher. |
| 361 | ******************************************************************************/ |
| 362 | int fvp_affinst_suspend_finish(unsigned long mpidr, |
| 363 | unsigned int afflvl, |
| 364 | unsigned int state) |
| 365 | { |
| 366 | return fvp_affinst_on_finish(mpidr, afflvl, state); |
| 367 | } |
| 368 | |
| 369 | |
| 370 | /******************************************************************************* |
| 371 | * Export the platform handlers to enable psci to invoke them |
| 372 | ******************************************************************************/ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 373 | static const plat_pm_ops_t fvp_plat_pm_ops = { |
Vikram Kanigiri | 3b7c59b | 2014-03-21 11:57:10 +0000 | [diff] [blame] | 374 | fvp_affinst_standby, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 375 | fvp_affinst_on, |
| 376 | fvp_affinst_off, |
| 377 | fvp_affinst_suspend, |
| 378 | fvp_affinst_on_finish, |
| 379 | fvp_affinst_suspend_finish, |
| 380 | }; |
| 381 | |
| 382 | /******************************************************************************* |
| 383 | * Export the platform specific power ops & initialize the fvp power controller |
| 384 | ******************************************************************************/ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 385 | int platform_setup_pm(const plat_pm_ops_t **plat_ops) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 386 | { |
| 387 | *plat_ops = &fvp_plat_pm_ops; |
| 388 | return 0; |
| 389 | } |