Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 1 | /* |
Soby Mathew | 0d78607 | 2016-03-24 16:56:29 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +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 | |
| 31 | #include <arch.h> |
| 32 | #include <arch_helpers.h> |
| 33 | #include <assert.h> |
| 34 | #include <debug.h> |
Soby Mathew | 9d754f6 | 2015-04-08 17:42:06 +0100 | [diff] [blame] | 35 | #include <platform.h> |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 36 | #include <pmf.h> |
| 37 | #include <runtime_instr.h> |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 38 | #include <string.h> |
| 39 | #include "psci_private.h" |
| 40 | |
Soby Mathew | 6b8b302 | 2015-06-30 11:00:24 +0100 | [diff] [blame] | 41 | /****************************************************************************** |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 42 | * Construct the psci_power_state to request power OFF at all power levels. |
| 43 | ******************************************************************************/ |
| 44 | static void psci_set_power_off_state(psci_power_state_t *state_info) |
| 45 | { |
| 46 | int lvl; |
| 47 | |
| 48 | for (lvl = PSCI_CPU_PWR_LVL; lvl <= PLAT_MAX_PWR_LVL; lvl++) |
| 49 | state_info->pwr_domain_state[lvl] = PLAT_MAX_OFF_STATE; |
| 50 | } |
| 51 | |
| 52 | /****************************************************************************** |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 53 | * Top level handler which is called when a cpu wants to power itself down. |
Soby Mathew | 3a9e8bf | 2015-05-05 16:33:16 +0100 | [diff] [blame] | 54 | * It's assumed that along with turning the cpu power domain off, power |
| 55 | * domains at higher levels will be turned off as far as possible. It finds |
| 56 | * the highest level where a domain has to be powered off by traversing the |
| 57 | * node information and then performs generic, architectural, platform setup |
| 58 | * and state management required to turn OFF that power domain and domains |
| 59 | * below it. e.g. For a cpu that's to be powered OFF, it could mean programming |
| 60 | * the power controller whereas for a cluster that's to be powered off, it will |
| 61 | * call the platform specific code which will disable coherency at the |
| 62 | * interconnect level if the cpu is the last in the cluster and also the |
| 63 | * program the power controller. |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 64 | ******************************************************************************/ |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 65 | int psci_do_cpu_off(unsigned int end_pwrlvl) |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 66 | { |
Soby Mathew | d50e7d9 | 2015-10-01 16:46:06 +0100 | [diff] [blame] | 67 | int rc = PSCI_E_SUCCESS, idx = plat_my_core_pos(); |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 68 | psci_power_state_t state_info; |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 69 | |
| 70 | /* |
| 71 | * This function must only be called on platforms where the |
| 72 | * CPU_OFF platform hooks have been implemented. |
| 73 | */ |
Soby Mathew | 3a9e8bf | 2015-05-05 16:33:16 +0100 | [diff] [blame] | 74 | assert(psci_plat_pm_ops->pwr_domain_off); |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 75 | |
| 76 | /* |
Soby Mathew | 3a9e8bf | 2015-05-05 16:33:16 +0100 | [diff] [blame] | 77 | * This function acquires the lock corresponding to each power |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 78 | * level so that by the time all locks are taken, the system topology |
| 79 | * is snapshot and state management can be done safely. |
| 80 | */ |
Soby Mathew | 9d754f6 | 2015-04-08 17:42:06 +0100 | [diff] [blame] | 81 | psci_acquire_pwr_domain_locks(end_pwrlvl, |
| 82 | idx); |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 83 | |
| 84 | /* |
| 85 | * Call the cpu off handler registered by the Secure Payload Dispatcher |
| 86 | * to let it do any bookkeeping. Assume that the SPD always reports an |
| 87 | * E_DENIED error if SP refuse to power down |
| 88 | */ |
| 89 | if (psci_spd_pm && psci_spd_pm->svc_off) { |
| 90 | rc = psci_spd_pm->svc_off(0); |
| 91 | if (rc) |
| 92 | goto exit; |
| 93 | } |
| 94 | |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 95 | /* Construct the psci_power_state for CPU_OFF */ |
| 96 | psci_set_power_off_state(&state_info); |
| 97 | |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 98 | /* |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 99 | * This function is passed the requested state info and |
| 100 | * it returns the negotiated state info for each power level upto |
| 101 | * the end level specified. |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 102 | */ |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 103 | psci_do_state_coordination(end_pwrlvl, &state_info); |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 104 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 105 | #if ENABLE_PSCI_STAT |
| 106 | /* Update the last cpu for each level till end_pwrlvl */ |
| 107 | psci_stats_update_pwr_down(end_pwrlvl, &state_info); |
| 108 | #endif |
| 109 | |
Soby Mathew | 6b8b302 | 2015-06-30 11:00:24 +0100 | [diff] [blame] | 110 | /* |
| 111 | * Arch. management. Perform the necessary steps to flush all |
| 112 | * cpu caches. |
| 113 | */ |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 114 | psci_do_pwrdown_cache_maintenance(psci_find_max_off_lvl(&state_info)); |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 115 | |
| 116 | /* |
Soby Mathew | 6b8b302 | 2015-06-30 11:00:24 +0100 | [diff] [blame] | 117 | * Plat. management: Perform platform specific actions to turn this |
| 118 | * cpu off e.g. exit cpu coherency, program the power controller etc. |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 119 | */ |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 120 | psci_plat_pm_ops->pwr_domain_off(&state_info); |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 121 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 122 | #if ENABLE_PSCI_STAT |
| 123 | /* |
| 124 | * Capture time-stamp while entering low power state. |
| 125 | * No cache maintenance needed because caches are off |
| 126 | * and writes are direct to main memory. |
| 127 | */ |
| 128 | PMF_CAPTURE_TIMESTAMP(psci_svc, PSCI_STAT_ID_ENTER_LOW_PWR, |
| 129 | PMF_NO_CACHE_MAINT); |
| 130 | #endif |
| 131 | |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 132 | exit: |
| 133 | /* |
Soby Mathew | 3a9e8bf | 2015-05-05 16:33:16 +0100 | [diff] [blame] | 134 | * Release the locks corresponding to each power level in the |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 135 | * reverse order to which they were acquired. |
| 136 | */ |
Soby Mathew | 9d754f6 | 2015-04-08 17:42:06 +0100 | [diff] [blame] | 137 | psci_release_pwr_domain_locks(end_pwrlvl, |
| 138 | idx); |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 139 | |
| 140 | /* |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 141 | * Check if all actions needed to safely power down this cpu have |
Soby Mathew | d50e7d9 | 2015-10-01 16:46:06 +0100 | [diff] [blame] | 142 | * successfully completed. |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 143 | */ |
Soby Mathew | d50e7d9 | 2015-10-01 16:46:06 +0100 | [diff] [blame] | 144 | if (rc == PSCI_E_SUCCESS) { |
| 145 | /* |
| 146 | * Set the affinity info state to OFF. This writes directly to |
| 147 | * main memory as caches are disabled, so cache maintenance is |
| 148 | * required to ensure that later cached reads of aff_info_state |
Soby Mathew | ca37050 | 2016-01-26 11:47:53 +0000 | [diff] [blame] | 149 | * return AFF_STATE_OFF. A dsbish() ensures ordering of the |
| 150 | * update to the affinity info state prior to cache line |
| 151 | * invalidation. |
Soby Mathew | d50e7d9 | 2015-10-01 16:46:06 +0100 | [diff] [blame] | 152 | */ |
| 153 | flush_cpu_data(psci_svc_cpu_data.aff_info_state); |
| 154 | psci_set_aff_info_state(AFF_STATE_OFF); |
Soby Mathew | ca37050 | 2016-01-26 11:47:53 +0000 | [diff] [blame] | 155 | dsbish(); |
Soby Mathew | d50e7d9 | 2015-10-01 16:46:06 +0100 | [diff] [blame] | 156 | inv_cpu_data(psci_svc_cpu_data.aff_info_state); |
| 157 | |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 158 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 159 | |
| 160 | /* |
| 161 | * Update the timestamp with cache off. We assume this |
| 162 | * timestamp can only be read from the current CPU and the |
| 163 | * timestamp cache line will be flushed before return to |
| 164 | * normal world on wakeup. |
| 165 | */ |
| 166 | PMF_CAPTURE_TIMESTAMP(rt_instr_svc, |
| 167 | RT_INSTR_ENTER_HW_LOW_PWR, |
| 168 | PMF_NO_CACHE_MAINT); |
| 169 | #endif |
| 170 | |
Soby Mathew | 6a81641 | 2016-04-27 14:46:28 +0100 | [diff] [blame] | 171 | if (psci_plat_pm_ops->pwr_domain_pwr_down_wfi) { |
| 172 | /* This function must not return */ |
| 173 | psci_plat_pm_ops->pwr_domain_pwr_down_wfi(&state_info); |
| 174 | } else { |
| 175 | /* |
| 176 | * Enter a wfi loop which will allow the power |
| 177 | * controller to physically power down this cpu. |
| 178 | */ |
| 179 | psci_power_down_wfi(); |
| 180 | } |
Soby Mathew | d50e7d9 | 2015-10-01 16:46:06 +0100 | [diff] [blame] | 181 | } |
Soby Mathew | 991d42c | 2015-06-29 16:30:12 +0100 | [diff] [blame] | 182 | |
| 183 | return rc; |
| 184 | } |