Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 1 | /* |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 2 | * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 7 | #include <assert.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | #include <string.h> |
| 9 | |
| 10 | #include <arch_helpers.h> |
| 11 | #include <common/debug.h> |
Antonio Nino Diaz | 326f56b | 2019-01-23 18:55:03 +0000 | [diff] [blame] | 12 | #include <drivers/arm/css/css_scp.h> |
Antonio Nino Diaz | c30db5b | 2019-01-23 20:37:32 +0000 | [diff] [blame] | 13 | #include <drivers/arm/css/scmi.h> |
Antonio Nino Diaz | bd7b740 | 2019-01-25 14:30:04 +0000 | [diff] [blame] | 14 | #include <plat/arm/common/plat_arm.h> |
| 15 | #include <plat/arm/css/common/css_pm.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 16 | #include <plat/common/platform.h> |
Antonio Nino Diaz | a320ecd | 2019-01-15 14:19:50 +0000 | [diff] [blame] | 17 | #include <platform_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 18 | |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 19 | /* |
| 20 | * This file implements the SCP helper functions using SCMI protocol. |
| 21 | */ |
| 22 | |
| 23 | /* |
| 24 | * SCMI power state parameter bit field encoding for ARM CSS platforms. |
| 25 | * |
| 26 | * 31 20 19 16 15 12 11 8 7 4 3 0 |
| 27 | * +-------------------------------------------------------------+ |
| 28 | * | SBZ | Max level | Level 3 | Level 2 | Level 1 | Level 0 | |
| 29 | * | | | state | state | state | state | |
| 30 | * +-------------------------------------------------------------+ |
| 31 | * |
| 32 | * `Max level` encodes the highest level that has a valid power state |
| 33 | * encoded in the power state. |
| 34 | */ |
| 35 | #define SCMI_PWR_STATE_MAX_PWR_LVL_SHIFT 16 |
| 36 | #define SCMI_PWR_STATE_MAX_PWR_LVL_WIDTH 4 |
| 37 | #define SCMI_PWR_STATE_MAX_PWR_LVL_MASK \ |
| 38 | ((1 << SCMI_PWR_STATE_MAX_PWR_LVL_WIDTH) - 1) |
Daniel Boulby | ddf6d40 | 2018-05-09 12:21:46 +0100 | [diff] [blame] | 39 | #define SCMI_SET_PWR_STATE_MAX_PWR_LVL(_power_state, _max_level) \ |
| 40 | (_power_state) |= ((_max_level) & SCMI_PWR_STATE_MAX_PWR_LVL_MASK)\ |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 41 | << SCMI_PWR_STATE_MAX_PWR_LVL_SHIFT |
Daniel Boulby | ddf6d40 | 2018-05-09 12:21:46 +0100 | [diff] [blame] | 42 | #define SCMI_GET_PWR_STATE_MAX_PWR_LVL(_power_state) \ |
| 43 | (((_power_state) >> SCMI_PWR_STATE_MAX_PWR_LVL_SHIFT) \ |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 44 | & SCMI_PWR_STATE_MAX_PWR_LVL_MASK) |
| 45 | |
| 46 | #define SCMI_PWR_STATE_LVL_WIDTH 4 |
| 47 | #define SCMI_PWR_STATE_LVL_MASK \ |
| 48 | ((1 << SCMI_PWR_STATE_LVL_WIDTH) - 1) |
Daniel Boulby | ddf6d40 | 2018-05-09 12:21:46 +0100 | [diff] [blame] | 49 | #define SCMI_SET_PWR_STATE_LVL(_power_state, _level, _level_state) \ |
| 50 | (_power_state) |= ((_level_state) & SCMI_PWR_STATE_LVL_MASK) \ |
| 51 | << (SCMI_PWR_STATE_LVL_WIDTH * (_level)) |
| 52 | #define SCMI_GET_PWR_STATE_LVL(_power_state, _level) \ |
| 53 | (((_power_state) >> (SCMI_PWR_STATE_LVL_WIDTH * (_level))) & \ |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 54 | SCMI_PWR_STATE_LVL_MASK) |
| 55 | |
| 56 | /* |
| 57 | * The SCMI power state enumeration for a power domain level |
| 58 | */ |
| 59 | typedef enum { |
| 60 | scmi_power_state_off = 0, |
| 61 | scmi_power_state_on = 1, |
| 62 | scmi_power_state_sleep = 2, |
| 63 | } scmi_power_state_t; |
| 64 | |
| 65 | /* |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 66 | * The global handles for invoking the SCMI driver APIs after the driver |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 67 | * has been initialized. |
| 68 | */ |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 69 | static void *scmi_handles[PLAT_ARM_SCMI_CHANNEL_COUNT]; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 70 | |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 71 | /* The global SCMI channels array */ |
| 72 | static scmi_channel_t scmi_channels[PLAT_ARM_SCMI_CHANNEL_COUNT]; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 73 | |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 74 | /* |
| 75 | * Channel ID for the default SCMI channel. |
| 76 | * The default channel is used to issue SYSTEM level SCMI requests and is |
| 77 | * initialized to the channel which has the boot cpu as its resource. |
| 78 | */ |
| 79 | static uint32_t default_scmi_channel_id; |
| 80 | |
| 81 | /* |
| 82 | * TODO: Allow use of channel specific lock instead of using a single lock for |
| 83 | * all the channels. |
| 84 | */ |
Roberto Vargas | 0099694 | 2017-11-13 13:41:58 +0000 | [diff] [blame] | 85 | ARM_SCMI_INSTANTIATE_LOCK; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 86 | |
| 87 | /* |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 88 | * Function to obtain the SCMI Domain ID and SCMI Channel number from the linear |
| 89 | * core position. The SCMI Channel number is encoded in the upper 16 bits and |
| 90 | * the Domain ID is encoded in the lower 16 bits in each entry of the mapping |
| 91 | * array exported by the platform. |
| 92 | */ |
| 93 | static void css_scp_core_pos_to_scmi_channel(unsigned int core_pos, |
| 94 | unsigned int *scmi_domain_id, unsigned int *scmi_channel_id) |
| 95 | { |
| 96 | unsigned int composite_id; |
| 97 | |
| 98 | composite_id = plat_css_core_pos_to_scmi_dmn_id_map[core_pos]; |
| 99 | |
| 100 | *scmi_channel_id = GET_SCMI_CHANNEL_ID(composite_id); |
| 101 | *scmi_domain_id = GET_SCMI_DOMAIN_ID(composite_id); |
| 102 | } |
| 103 | |
| 104 | /* |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 105 | * Helper function to suspend a CPU power domain and its parent power domains |
| 106 | * if applicable. |
| 107 | */ |
Roberto Vargas | 5f5a5e6 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 108 | void css_scp_suspend(const struct psci_power_state *target_state) |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 109 | { |
Deepak Pandey | 207c522 | 2017-10-10 21:34:32 +0530 | [diff] [blame] | 110 | int ret; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 111 | |
| 112 | /* At least power domain level 0 should be specified to be suspended */ |
| 113 | assert(target_state->pwr_domain_state[ARM_PWR_LVL0] == |
| 114 | ARM_LOCAL_STATE_OFF); |
| 115 | |
| 116 | /* Check if power down at system power domain level is requested */ |
Nariman Poushin | cd95626 | 2018-05-01 09:28:40 +0100 | [diff] [blame] | 117 | if (css_system_pwr_state(target_state) == ARM_LOCAL_STATE_OFF) { |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 118 | /* Issue SCMI command for SYSTEM_SUSPEND on all SCMI channels */ |
| 119 | ret = scmi_sys_pwr_state_set( |
| 120 | scmi_handles[default_scmi_channel_id], |
| 121 | SCMI_SYS_PWR_FORCEFUL_REQ, SCMI_SYS_PWR_SUSPEND); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 122 | if (ret != SCMI_E_SUCCESS) { |
| 123 | ERROR("SCMI system power domain suspend return 0x%x unexpected\n", |
| 124 | ret); |
| 125 | panic(); |
| 126 | } |
| 127 | return; |
| 128 | } |
Deepak Pandey | 207c522 | 2017-10-10 21:34:32 +0530 | [diff] [blame] | 129 | #if !HW_ASSISTED_COHERENCY |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 130 | unsigned int lvl, channel_id, domain_id; |
Deepak Pandey | 207c522 | 2017-10-10 21:34:32 +0530 | [diff] [blame] | 131 | uint32_t scmi_pwr_state = 0; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 132 | /* |
| 133 | * If we reach here, then assert that power down at system power domain |
| 134 | * level is running. |
| 135 | */ |
Soby Mathew | fd2e5e4 | 2018-09-10 11:32:49 +0100 | [diff] [blame] | 136 | assert(css_system_pwr_state(target_state) == ARM_LOCAL_STATE_RUN); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 137 | |
| 138 | /* For level 0, specify `scmi_power_state_sleep` as the power state */ |
| 139 | SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, ARM_PWR_LVL0, |
| 140 | scmi_power_state_sleep); |
| 141 | |
| 142 | for (lvl = ARM_PWR_LVL1; lvl <= PLAT_MAX_PWR_LVL; lvl++) { |
| 143 | if (target_state->pwr_domain_state[lvl] == ARM_LOCAL_STATE_RUN) |
| 144 | break; |
| 145 | |
| 146 | assert(target_state->pwr_domain_state[lvl] == |
| 147 | ARM_LOCAL_STATE_OFF); |
| 148 | /* |
| 149 | * Specify `scmi_power_state_off` as power state for higher |
| 150 | * levels. |
| 151 | */ |
| 152 | SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl, |
| 153 | scmi_power_state_off); |
| 154 | } |
| 155 | |
| 156 | SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1); |
| 157 | |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 158 | css_scp_core_pos_to_scmi_channel(plat_my_core_pos(), |
| 159 | &domain_id, &channel_id); |
| 160 | ret = scmi_pwr_state_set(scmi_handles[channel_id], |
| 161 | domain_id, scmi_pwr_state); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 162 | |
| 163 | if (ret != SCMI_E_SUCCESS) { |
| 164 | ERROR("SCMI set power state command return 0x%x unexpected\n", |
| 165 | ret); |
| 166 | panic(); |
| 167 | } |
Deepak Pandey | 207c522 | 2017-10-10 21:34:32 +0530 | [diff] [blame] | 168 | #endif |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | /* |
| 172 | * Helper function to turn off a CPU power domain and its parent power domains |
| 173 | * if applicable. |
| 174 | */ |
Roberto Vargas | 85664f5 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 175 | void css_scp_off(const struct psci_power_state *target_state) |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 176 | { |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 177 | unsigned int lvl = 0, channel_id, domain_id; |
Ambroise Vincent | a88a35d | 2019-02-14 09:48:21 +0000 | [diff] [blame] | 178 | int ret; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 179 | uint32_t scmi_pwr_state = 0; |
| 180 | |
| 181 | /* At-least the CPU level should be specified to be OFF */ |
| 182 | assert(target_state->pwr_domain_state[ARM_PWR_LVL0] == |
| 183 | ARM_LOCAL_STATE_OFF); |
| 184 | |
| 185 | /* PSCI CPU OFF cannot be used to turn OFF system power domain */ |
Soby Mathew | fd2e5e4 | 2018-09-10 11:32:49 +0100 | [diff] [blame] | 186 | assert(css_system_pwr_state(target_state) == ARM_LOCAL_STATE_RUN); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 187 | |
| 188 | for (; lvl <= PLAT_MAX_PWR_LVL; lvl++) { |
| 189 | if (target_state->pwr_domain_state[lvl] == ARM_LOCAL_STATE_RUN) |
| 190 | break; |
| 191 | |
| 192 | assert(target_state->pwr_domain_state[lvl] == |
| 193 | ARM_LOCAL_STATE_OFF); |
| 194 | SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl, |
| 195 | scmi_power_state_off); |
| 196 | } |
| 197 | |
| 198 | SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1); |
| 199 | |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 200 | css_scp_core_pos_to_scmi_channel(plat_my_core_pos(), |
| 201 | &domain_id, &channel_id); |
| 202 | ret = scmi_pwr_state_set(scmi_handles[channel_id], |
| 203 | domain_id, scmi_pwr_state); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 204 | if (ret != SCMI_E_QUEUED && ret != SCMI_E_SUCCESS) { |
| 205 | ERROR("SCMI set power state command return 0x%x unexpected\n", |
| 206 | ret); |
| 207 | panic(); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | /* |
| 212 | * Helper function to turn ON a CPU power domain and its parent power domains |
| 213 | * if applicable. |
| 214 | */ |
| 215 | void css_scp_on(u_register_t mpidr) |
| 216 | { |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 217 | unsigned int lvl = 0, channel_id, core_pos, domain_id; |
| 218 | int ret; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 219 | uint32_t scmi_pwr_state = 0; |
| 220 | |
| 221 | for (; lvl <= PLAT_MAX_PWR_LVL; lvl++) |
| 222 | SCMI_SET_PWR_STATE_LVL(scmi_pwr_state, lvl, |
| 223 | scmi_power_state_on); |
| 224 | |
| 225 | SCMI_SET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state, lvl - 1); |
| 226 | |
Manish Pandey | bb66759 | 2020-03-03 17:12:10 +0000 | [diff] [blame] | 227 | core_pos = (unsigned int)plat_core_pos_by_mpidr(mpidr); |
| 228 | assert(core_pos < PLATFORM_CORE_COUNT); |
Soby Mathew | e089e3f | 2017-06-09 15:04:43 +0100 | [diff] [blame] | 229 | |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 230 | css_scp_core_pos_to_scmi_channel(core_pos, &domain_id, |
| 231 | &channel_id); |
| 232 | ret = scmi_pwr_state_set(scmi_handles[channel_id], |
| 233 | domain_id, scmi_pwr_state); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 234 | if (ret != SCMI_E_QUEUED && ret != SCMI_E_SUCCESS) { |
| 235 | ERROR("SCMI set power state command return 0x%x unexpected\n", |
| 236 | ret); |
| 237 | panic(); |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | /* |
| 242 | * Helper function to get the power state of a power domain node as reported |
| 243 | * by the SCP. |
| 244 | */ |
| 245 | int css_scp_get_power_state(u_register_t mpidr, unsigned int power_level) |
| 246 | { |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 247 | int ret; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 248 | uint32_t scmi_pwr_state = 0, lvl_state; |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 249 | unsigned int channel_id, cpu_idx, domain_id; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 250 | |
| 251 | /* We don't support get power state at the system power domain level */ |
| 252 | if ((power_level > PLAT_MAX_PWR_LVL) || |
| 253 | (power_level == CSS_SYSTEM_PWR_DMN_LVL)) { |
| 254 | WARN("Invalid power level %u specified for SCMI get power state\n", |
| 255 | power_level); |
| 256 | return PSCI_E_INVALID_PARAMS; |
| 257 | } |
| 258 | |
Manish Pandey | bb66759 | 2020-03-03 17:12:10 +0000 | [diff] [blame] | 259 | cpu_idx = (unsigned int)plat_core_pos_by_mpidr(mpidr); |
| 260 | assert(cpu_idx < PLATFORM_CORE_COUNT); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 261 | |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 262 | css_scp_core_pos_to_scmi_channel(cpu_idx, &domain_id, &channel_id); |
| 263 | ret = scmi_pwr_state_get(scmi_handles[channel_id], |
| 264 | domain_id, &scmi_pwr_state); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 265 | |
| 266 | if (ret != SCMI_E_SUCCESS) { |
| 267 | WARN("SCMI get power state command return 0x%x unexpected\n", |
| 268 | ret); |
| 269 | return PSCI_E_INVALID_PARAMS; |
| 270 | } |
| 271 | |
| 272 | /* |
| 273 | * Find the maximum power level described in the get power state |
| 274 | * command. If it is less than the requested power level, then assume |
| 275 | * the requested power level is ON. |
| 276 | */ |
| 277 | if (SCMI_GET_PWR_STATE_MAX_PWR_LVL(scmi_pwr_state) < power_level) |
| 278 | return HW_ON; |
| 279 | |
| 280 | lvl_state = SCMI_GET_PWR_STATE_LVL(scmi_pwr_state, power_level); |
| 281 | if (lvl_state == scmi_power_state_on) |
| 282 | return HW_ON; |
| 283 | |
| 284 | assert((lvl_state == scmi_power_state_off) || |
| 285 | (lvl_state == scmi_power_state_sleep)); |
| 286 | return HW_OFF; |
| 287 | } |
| 288 | |
Roberto Vargas | fc2b4eb | 2017-07-31 09:45:10 +0100 | [diff] [blame] | 289 | void __dead2 css_scp_system_off(int state) |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 290 | { |
| 291 | int ret; |
| 292 | |
| 293 | /* |
| 294 | * Disable GIC CPU interface to prevent pending interrupt from waking |
| 295 | * up the AP from WFI. |
| 296 | */ |
| 297 | plat_arm_gic_cpuif_disable(); |
| 298 | |
| 299 | /* |
Roberto Vargas | fc2b4eb | 2017-07-31 09:45:10 +0100 | [diff] [blame] | 300 | * Issue SCMI command. First issue a graceful |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 301 | * request and if that fails force the request. |
| 302 | */ |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 303 | ret = scmi_sys_pwr_state_set(scmi_handles[default_scmi_channel_id], |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 304 | SCMI_SYS_PWR_FORCEFUL_REQ, |
Roberto Vargas | fc2b4eb | 2017-07-31 09:45:10 +0100 | [diff] [blame] | 305 | state); |
| 306 | |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 307 | if (ret != SCMI_E_SUCCESS) { |
Roberto Vargas | fc2b4eb | 2017-07-31 09:45:10 +0100 | [diff] [blame] | 308 | ERROR("SCMI system power state set 0x%x returns unexpected 0x%x\n", |
| 309 | state, ret); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 310 | panic(); |
| 311 | } |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 312 | wfi(); |
Roberto Vargas | fc2b4eb | 2017-07-31 09:45:10 +0100 | [diff] [blame] | 313 | ERROR("CSS set power state: operation not handled.\n"); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 314 | panic(); |
| 315 | } |
| 316 | |
| 317 | /* |
Roberto Vargas | fc2b4eb | 2017-07-31 09:45:10 +0100 | [diff] [blame] | 318 | * Helper function to shutdown the system via SCMI. |
| 319 | */ |
| 320 | void __dead2 css_scp_sys_shutdown(void) |
| 321 | { |
| 322 | css_scp_system_off(SCMI_SYS_PWR_SHUTDOWN); |
| 323 | } |
| 324 | |
| 325 | /* |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 326 | * Helper function to reset the system via SCMI. |
| 327 | */ |
| 328 | void __dead2 css_scp_sys_reboot(void) |
| 329 | { |
Roberto Vargas | fc2b4eb | 2017-07-31 09:45:10 +0100 | [diff] [blame] | 330 | css_scp_system_off(SCMI_SYS_PWR_COLD_RESET); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Dimitris Papastamos | d7a3651 | 2018-06-18 13:01:06 +0100 | [diff] [blame] | 333 | static int scmi_ap_core_init(scmi_channel_t *ch) |
| 334 | { |
| 335 | #if PROGRAMMABLE_RESET_ADDRESS |
| 336 | uint32_t version; |
| 337 | int ret; |
| 338 | |
| 339 | ret = scmi_proto_version(ch, SCMI_AP_CORE_PROTO_ID, &version); |
| 340 | if (ret != SCMI_E_SUCCESS) { |
| 341 | WARN("SCMI AP core protocol version message failed\n"); |
| 342 | return -1; |
| 343 | } |
| 344 | |
| 345 | if (!is_scmi_version_compatible(SCMI_AP_CORE_PROTO_VER, version)) { |
| 346 | WARN("SCMI AP core protocol version 0x%x incompatible with driver version 0x%x\n", |
| 347 | version, SCMI_AP_CORE_PROTO_VER); |
| 348 | return -1; |
| 349 | } |
| 350 | INFO("SCMI AP core protocol version 0x%x detected\n", version); |
| 351 | #endif |
| 352 | return 0; |
| 353 | } |
| 354 | |
Daniel Boulby | f45a4bb | 2018-09-18 13:26:03 +0100 | [diff] [blame] | 355 | void __init plat_arm_pwrc_setup(void) |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 356 | { |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 357 | unsigned int composite_id, idx; |
| 358 | |
| 359 | for (idx = 0; idx < PLAT_ARM_SCMI_CHANNEL_COUNT; idx++) { |
Andre Przywara | 42c5cd2 | 2021-10-14 10:36:46 +0100 | [diff] [blame] | 360 | INFO("Initializing SCMI driver on channel %d\n", idx); |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 361 | |
| 362 | scmi_channels[idx].info = plat_css_get_scmi_info(idx); |
| 363 | scmi_channels[idx].lock = ARM_SCMI_LOCK_GET_INSTANCE; |
| 364 | scmi_handles[idx] = scmi_init(&scmi_channels[idx]); |
| 365 | |
| 366 | if (scmi_handles[idx] == NULL) { |
| 367 | ERROR("SCMI Initialization failed on channel %d\n", idx); |
| 368 | panic(); |
| 369 | } |
| 370 | |
| 371 | if (scmi_ap_core_init(&scmi_channels[idx]) < 0) { |
| 372 | ERROR("SCMI AP core protocol initialization failed\n"); |
| 373 | panic(); |
| 374 | } |
Dimitris Papastamos | d7a3651 | 2018-06-18 13:01:06 +0100 | [diff] [blame] | 375 | } |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 376 | |
| 377 | composite_id = plat_css_core_pos_to_scmi_dmn_id_map[plat_my_core_pos()]; |
| 378 | default_scmi_channel_id = GET_SCMI_CHANNEL_ID(composite_id); |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | /****************************************************************************** |
| 382 | * This function overrides the default definition for ARM platforms. Initialize |
| 383 | * the SCMI driver, query capability via SCMI and modify the PSCI capability |
| 384 | * based on that. |
| 385 | *****************************************************************************/ |
Chandni Cherukuri | e4bf6a0 | 2018-11-14 13:43:59 +0530 | [diff] [blame] | 386 | const plat_psci_ops_t *css_scmi_override_pm_ops(plat_psci_ops_t *ops) |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 387 | { |
| 388 | uint32_t msg_attr; |
| 389 | int ret; |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 390 | void *scmi_handle = scmi_handles[default_scmi_channel_id]; |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 391 | |
| 392 | assert(scmi_handle); |
| 393 | |
| 394 | /* Check that power domain POWER_STATE_SET message is supported */ |
| 395 | ret = scmi_proto_msg_attr(scmi_handle, SCMI_PWR_DMN_PROTO_ID, |
| 396 | SCMI_PWR_STATE_SET_MSG, &msg_attr); |
| 397 | if (ret != SCMI_E_SUCCESS) { |
| 398 | ERROR("Set power state command is not supported by SCMI\n"); |
| 399 | panic(); |
| 400 | } |
| 401 | |
| 402 | /* |
| 403 | * Don't support PSCI NODE_HW_STATE call if SCMI doesn't support |
| 404 | * POWER_STATE_GET message. |
| 405 | */ |
| 406 | ret = scmi_proto_msg_attr(scmi_handle, SCMI_PWR_DMN_PROTO_ID, |
| 407 | SCMI_PWR_STATE_GET_MSG, &msg_attr); |
| 408 | if (ret != SCMI_E_SUCCESS) |
| 409 | ops->get_node_hw_state = NULL; |
| 410 | |
| 411 | /* Check if the SCMI SYSTEM_POWER_STATE_SET message is supported */ |
| 412 | ret = scmi_proto_msg_attr(scmi_handle, SCMI_SYS_PWR_PROTO_ID, |
| 413 | SCMI_SYS_PWR_STATE_SET_MSG, &msg_attr); |
| 414 | if (ret != SCMI_E_SUCCESS) { |
| 415 | /* System power management operations are not supported */ |
| 416 | ops->system_off = NULL; |
| 417 | ops->system_reset = NULL; |
| 418 | ops->get_sys_suspend_power_state = NULL; |
Roberto Vargas | 3caafd7 | 2017-08-16 08:57:45 +0100 | [diff] [blame] | 419 | } else { |
| 420 | if (!(msg_attr & SCMI_SYS_PWR_SUSPEND_SUPPORTED)) { |
| 421 | /* |
| 422 | * System power management protocol is available, but |
| 423 | * it does not support SYSTEM SUSPEND. |
| 424 | */ |
| 425 | ops->get_sys_suspend_power_state = NULL; |
| 426 | } |
| 427 | if (!(msg_attr & SCMI_SYS_PWR_WARM_RESET_SUPPORTED)) { |
| 428 | /* |
| 429 | * WARM reset is not available. |
| 430 | */ |
| 431 | ops->system_reset2 = NULL; |
| 432 | } |
Soby Mathew | ea26bad | 2016-11-14 12:25:45 +0000 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | return ops; |
| 436 | } |
Roberto Vargas | 3caafd7 | 2017-08-16 08:57:45 +0100 | [diff] [blame] | 437 | |
| 438 | int css_system_reset2(int is_vendor, int reset_type, u_register_t cookie) |
| 439 | { |
| 440 | if (is_vendor || (reset_type != PSCI_RESET2_SYSTEM_WARM_RESET)) |
| 441 | return PSCI_E_INVALID_PARAMS; |
| 442 | |
| 443 | css_scp_system_off(SCMI_SYS_PWR_WARM_RESET); |
| 444 | /* |
| 445 | * css_scp_system_off cannot return (it is a __dead function), |
| 446 | * but css_system_reset2 has to return some value, even in |
| 447 | * this case. |
| 448 | */ |
| 449 | return 0; |
| 450 | } |
Dimitris Papastamos | d7a3651 | 2018-06-18 13:01:06 +0100 | [diff] [blame] | 451 | |
| 452 | #if PROGRAMMABLE_RESET_ADDRESS |
| 453 | void plat_arm_program_trusted_mailbox(uintptr_t address) |
| 454 | { |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 455 | int ret, i; |
Dimitris Papastamos | d7a3651 | 2018-06-18 13:01:06 +0100 | [diff] [blame] | 456 | |
Aditya Angadi | 7f8837b | 2019-12-31 14:23:53 +0530 | [diff] [blame] | 457 | for (i = 0; i < PLAT_ARM_SCMI_CHANNEL_COUNT; i++) { |
| 458 | assert(scmi_handles[i]); |
| 459 | |
| 460 | ret = scmi_ap_core_set_reset_addr(scmi_handles[i], address, |
| 461 | SCMI_AP_CORE_LOCK_ATTR); |
| 462 | if (ret != SCMI_E_SUCCESS) { |
| 463 | ERROR("CSS: Failed to program reset address: %d\n", ret); |
| 464 | panic(); |
| 465 | } |
Dimitris Papastamos | d7a3651 | 2018-06-18 13:01:06 +0100 | [diff] [blame] | 466 | } |
| 467 | } |
| 468 | #endif |