Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 7 | #include <arch.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 8 | #include <arch_helpers.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 9 | #include <assert.h> |
| 10 | #include <bl_common.h> |
| 11 | #include <context.h> |
Achin Gupta | ef7a28c | 2014-02-01 08:59:56 +0000 | [diff] [blame] | 12 | #include <context_mgmt.h> |
Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 13 | #include <errata_report.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 14 | #include <platform.h> |
| 15 | #include <stddef.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 16 | #include "psci_private.h" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 17 | |
| 18 | /******************************************************************************* |
Achin Gupta | ef7a28c | 2014-02-01 08:59:56 +0000 | [diff] [blame] | 19 | * Per cpu non-secure contexts used to program the architectural state prior |
| 20 | * return to the normal world. |
| 21 | * TODO: Use the memory allocator to set aside memory for the contexts instead |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 22 | * of relying on platform defined constants. |
Achin Gupta | ef7a28c | 2014-02-01 08:59:56 +0000 | [diff] [blame] | 23 | ******************************************************************************/ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 24 | static cpu_context_t psci_ns_context[PLATFORM_CORE_COUNT]; |
Achin Gupta | ef7a28c | 2014-02-01 08:59:56 +0000 | [diff] [blame] | 25 | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 26 | /****************************************************************************** |
| 27 | * Define the psci capability variable. |
| 28 | *****************************************************************************/ |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 29 | unsigned int psci_caps; |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 30 | |
Dan Handley | 60b13e3 | 2014-05-14 15:13:16 +0100 | [diff] [blame] | 31 | /******************************************************************************* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 32 | * Function which initializes the 'psci_non_cpu_pd_nodes' or the |
| 33 | * 'psci_cpu_pd_nodes' corresponding to the power level. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 34 | ******************************************************************************/ |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 35 | static void psci_init_pwr_domain_node(unsigned int node_idx, |
| 36 | unsigned int parent_idx, |
| 37 | unsigned int level) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 38 | { |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 39 | if (level > PSCI_CPU_PWR_LVL) { |
| 40 | psci_non_cpu_pd_nodes[node_idx].level = level; |
| 41 | psci_lock_init(psci_non_cpu_pd_nodes, node_idx); |
| 42 | psci_non_cpu_pd_nodes[node_idx].parent_node = parent_idx; |
| 43 | psci_non_cpu_pd_nodes[node_idx].local_state = |
| 44 | PLAT_MAX_OFF_STATE; |
| 45 | } else { |
| 46 | psci_cpu_data_t *svc_cpu_data; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 47 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 48 | psci_cpu_pd_nodes[node_idx].parent_node = parent_idx; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 49 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 50 | /* Initialize with an invalid mpidr */ |
| 51 | psci_cpu_pd_nodes[node_idx].mpidr = PSCI_INVALID_MPIDR; |
Soby Mathew | 2b69750 | 2014-10-02 17:24:19 +0100 | [diff] [blame] | 52 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 53 | svc_cpu_data = |
| 54 | &(_cpu_data_by_index(node_idx)->psci_svc_cpu_data); |
Soby Mathew | 2b69750 | 2014-10-02 17:24:19 +0100 | [diff] [blame] | 55 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 56 | /* Set the Affinity Info for the cores as OFF */ |
| 57 | svc_cpu_data->aff_info_state = AFF_STATE_OFF; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 58 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 59 | /* Invalidate the suspend level for the cpu */ |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 60 | svc_cpu_data->target_pwrlvl = PSCI_INVALID_PWR_LVL; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 61 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 62 | /* Set the power state to OFF state */ |
| 63 | svc_cpu_data->local_state = PLAT_MAX_OFF_STATE; |
Soby Mathew | 2b69750 | 2014-10-02 17:24:19 +0100 | [diff] [blame] | 64 | |
Jeenu Viswambharan | 0b56d6f | 2017-01-06 14:58:11 +0000 | [diff] [blame] | 65 | psci_flush_dcache_range((uintptr_t)svc_cpu_data, |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 66 | sizeof(*svc_cpu_data)); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 67 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 68 | cm_set_context_by_index(node_idx, |
| 69 | (void *) &psci_ns_context[node_idx], |
| 70 | NON_SECURE); |
| 71 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | /******************************************************************************* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 75 | * This functions updates cpu_start_idx and ncpus field for each of the node in |
| 76 | * psci_non_cpu_pd_nodes[]. It does so by comparing the parent nodes of each of |
| 77 | * the CPUs and check whether they match with the parent of the previous |
| 78 | * CPU. The basic assumption for this work is that children of the same parent |
| 79 | * are allocated adjacent indices. The platform should ensure this though proper |
| 80 | * mapping of the CPUs to indices via plat_core_pos_by_mpidr() and |
| 81 | * plat_my_core_pos() APIs. |
| 82 | *******************************************************************************/ |
| 83 | static void psci_update_pwrlvl_limits(void) |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 84 | { |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 85 | int j; |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 86 | unsigned int nodes_idx[PLAT_MAX_PWR_LVL] = {0}; |
Soby Mathew | 011ca18 | 2015-07-29 17:05:03 +0100 | [diff] [blame] | 87 | unsigned int temp_index[PLAT_MAX_PWR_LVL], cpu_idx; |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 88 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 89 | for (cpu_idx = 0; cpu_idx < PLATFORM_CORE_COUNT; cpu_idx++) { |
| 90 | psci_get_parent_pwr_domain_nodes(cpu_idx, |
| 91 | PLAT_MAX_PWR_LVL, |
| 92 | temp_index); |
| 93 | for (j = PLAT_MAX_PWR_LVL - 1; j >= 0; j--) { |
| 94 | if (temp_index[j] != nodes_idx[j]) { |
| 95 | nodes_idx[j] = temp_index[j]; |
| 96 | psci_non_cpu_pd_nodes[nodes_idx[j]].cpu_start_idx |
| 97 | = cpu_idx; |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 98 | } |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 99 | psci_non_cpu_pd_nodes[nodes_idx[j]].ncpus++; |
| 100 | } |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 101 | } |
Achin Gupta | 0959db5 | 2013-12-02 17:33:04 +0000 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /******************************************************************************* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 105 | * Core routine to populate the power domain tree. The tree descriptor passed by |
| 106 | * the platform is populated breadth-first and the first entry in the map |
| 107 | * informs the number of root power domains. The parent nodes of the root nodes |
| 108 | * will point to an invalid entry(-1). |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 109 | ******************************************************************************/ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 110 | static void populate_power_domain_tree(const unsigned char *topology) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 111 | { |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 112 | unsigned int i, j = 0, num_nodes_at_lvl = 1, num_nodes_at_next_lvl; |
| 113 | unsigned int node_index = 0, parent_node_index = 0, num_children; |
| 114 | int level = PLAT_MAX_PWR_LVL; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 115 | |
| 116 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 117 | * For each level the inputs are: |
| 118 | * - number of nodes at this level in plat_array i.e. num_nodes_at_level |
| 119 | * This is the sum of values of nodes at the parent level. |
| 120 | * - Index of first entry at this level in the plat_array i.e. |
| 121 | * parent_node_index. |
| 122 | * - Index of first free entry in psci_non_cpu_pd_nodes[] or |
| 123 | * psci_cpu_pd_nodes[] i.e. node_index depending upon the level. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 124 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 125 | while (level >= PSCI_CPU_PWR_LVL) { |
| 126 | num_nodes_at_next_lvl = 0; |
Achin Gupta | ef7a28c | 2014-02-01 08:59:56 +0000 | [diff] [blame] | 127 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 128 | * For each entry (parent node) at this level in the plat_array: |
| 129 | * - Find the number of children |
| 130 | * - Allocate a node in a power domain array for each child |
| 131 | * - Set the parent of the child to the parent_node_index - 1 |
| 132 | * - Increment parent_node_index to point to the next parent |
| 133 | * - Accumulate the number of children at next level. |
Achin Gupta | ef7a28c | 2014-02-01 08:59:56 +0000 | [diff] [blame] | 134 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 135 | for (i = 0; i < num_nodes_at_lvl; i++) { |
| 136 | assert(parent_node_index <= |
| 137 | PSCI_NUM_NON_CPU_PWR_DOMAINS); |
| 138 | num_children = topology[parent_node_index]; |
Achin Gupta | ef7a28c | 2014-02-01 08:59:56 +0000 | [diff] [blame] | 139 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 140 | for (j = node_index; |
| 141 | j < node_index + num_children; j++) |
| 142 | psci_init_pwr_domain_node(j, |
| 143 | parent_node_index - 1, |
| 144 | level); |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 145 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 146 | node_index = j; |
| 147 | num_nodes_at_next_lvl += num_children; |
| 148 | parent_node_index++; |
| 149 | } |
Achin Gupta | f6b9e99 | 2014-07-31 11:19:11 +0100 | [diff] [blame] | 150 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 151 | num_nodes_at_lvl = num_nodes_at_next_lvl; |
| 152 | level--; |
Soby Mathew | 7d861ea | 2014-11-18 10:14:14 +0000 | [diff] [blame] | 153 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 154 | /* Reset the index for the cpu power domain array */ |
| 155 | if (level == PSCI_CPU_PWR_LVL) |
| 156 | node_index = 0; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 157 | } |
| 158 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 159 | /* Validate the sanity of array exported by the platform */ |
| 160 | assert(j == PLATFORM_CORE_COUNT); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /******************************************************************************* |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 164 | * This function does the architectural setup and takes the warm boot |
| 165 | * entry-point `mailbox_ep` as an argument. The function also initializes the |
| 166 | * power domain topology tree by querying the platform. The power domain nodes |
| 167 | * higher than the CPU are populated in the array psci_non_cpu_pd_nodes[] and |
| 168 | * the CPU power domains are populated in psci_cpu_pd_nodes[]. The platform |
| 169 | * exports its static topology map through the |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 170 | * populate_power_domain_topology_tree() API. The algorithm populates the |
| 171 | * psci_non_cpu_pd_nodes and psci_cpu_pd_nodes iteratively by using this |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 172 | * topology map. On a platform that implements two clusters of 2 cpus each, |
| 173 | * and supporting 3 domain levels, the populated psci_non_cpu_pd_nodes would |
| 174 | * look like this: |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 175 | * |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 176 | * --------------------------------------------------- |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 177 | * | system node | cluster 0 node | cluster 1 node | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 178 | * --------------------------------------------------- |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 179 | * |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 180 | * And populated psci_cpu_pd_nodes would look like this : |
| 181 | * <- cpus cluster0 -><- cpus cluster1 -> |
| 182 | * ------------------------------------------------ |
| 183 | * | CPU 0 | CPU 1 | CPU 2 | CPU 3 | |
| 184 | * ------------------------------------------------ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 185 | ******************************************************************************/ |
Soby Mathew | 89256b8 | 2016-09-13 14:19:08 +0100 | [diff] [blame] | 186 | int psci_setup(const psci_lib_args_t *lib_args) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 187 | { |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 188 | const unsigned char *topology_tree; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 189 | |
Soby Mathew | 89256b8 | 2016-09-13 14:19:08 +0100 | [diff] [blame] | 190 | assert(VERIFY_PSCI_LIB_ARGS_V1(lib_args)); |
| 191 | |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 192 | /* Do the Architectural initialization */ |
| 193 | psci_arch_setup(); |
| 194 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 195 | /* Query the topology map from the platform */ |
| 196 | topology_tree = plat_get_power_domain_tree_desc(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 197 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 198 | /* Populate the power domain arrays using the platform topology map */ |
| 199 | populate_power_domain_tree(topology_tree); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 200 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 201 | /* Update the CPU limits for each node in psci_non_cpu_pd_nodes */ |
| 202 | psci_update_pwrlvl_limits(); |
| 203 | |
| 204 | /* Populate the mpidr field of cpu node for this CPU */ |
| 205 | psci_cpu_pd_nodes[plat_my_core_pos()].mpidr = |
| 206 | read_mpidr() & MPIDR_AFFINITY_MASK; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 207 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 208 | psci_init_req_local_pwr_states(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 209 | |
| 210 | /* |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 211 | * Set the requested and target state of this CPU and all the higher |
| 212 | * power domain levels for this CPU to run. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 213 | */ |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 214 | psci_set_pwr_domains_to_run(PLAT_MAX_PWR_LVL); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 215 | |
Soby Mathew | 89256b8 | 2016-09-13 14:19:08 +0100 | [diff] [blame] | 216 | plat_setup_psci_ops((uintptr_t)lib_args->mailbox_ep, &psci_plat_pm_ops); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 217 | assert(psci_plat_pm_ops); |
| 218 | |
Soby Mathew | 7c9d5f8 | 2016-09-09 11:33:58 +0100 | [diff] [blame] | 219 | /* |
| 220 | * Flush `psci_plat_pm_ops` as it will be accessed by secondary CPUs |
Jeenu Viswambharan | 0b56d6f | 2017-01-06 14:58:11 +0000 | [diff] [blame] | 221 | * during warm boot, possibly before data cache is enabled. |
Soby Mathew | 7c9d5f8 | 2016-09-09 11:33:58 +0100 | [diff] [blame] | 222 | */ |
Jeenu Viswambharan | 0b56d6f | 2017-01-06 14:58:11 +0000 | [diff] [blame] | 223 | psci_flush_dcache_range((uintptr_t)&psci_plat_pm_ops, |
Soby Mathew | 7c9d5f8 | 2016-09-09 11:33:58 +0100 | [diff] [blame] | 224 | sizeof(psci_plat_pm_ops)); |
| 225 | |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 226 | /* Initialize the psci capability */ |
| 227 | psci_caps = PSCI_GENERIC_CAP; |
| 228 | |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 229 | if (psci_plat_pm_ops->pwr_domain_off) |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 230 | psci_caps |= define_psci_cap(PSCI_CPU_OFF); |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 231 | if (psci_plat_pm_ops->pwr_domain_on && |
| 232 | psci_plat_pm_ops->pwr_domain_on_finish) |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 233 | psci_caps |= define_psci_cap(PSCI_CPU_ON_AARCH64); |
Soby Mathew | 981487a | 2015-07-13 14:10:57 +0100 | [diff] [blame] | 234 | if (psci_plat_pm_ops->pwr_domain_suspend && |
| 235 | psci_plat_pm_ops->pwr_domain_suspend_finish) { |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 236 | psci_caps |= define_psci_cap(PSCI_CPU_SUSPEND_AARCH64); |
Soby Mathew | 9616838 | 2014-12-17 14:47:57 +0000 | [diff] [blame] | 237 | if (psci_plat_pm_ops->get_sys_suspend_power_state) |
| 238 | psci_caps |= define_psci_cap(PSCI_SYSTEM_SUSPEND_AARCH64); |
| 239 | } |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 240 | if (psci_plat_pm_ops->system_off) |
| 241 | psci_caps |= define_psci_cap(PSCI_SYSTEM_OFF); |
| 242 | if (psci_plat_pm_ops->system_reset) |
| 243 | psci_caps |= define_psci_cap(PSCI_SYSTEM_RESET); |
Jeenu Viswambharan | 7f03e9d9 | 2016-08-03 15:54:50 +0100 | [diff] [blame] | 244 | if (psci_plat_pm_ops->get_node_hw_state) |
| 245 | psci_caps |= define_psci_cap(PSCI_NODE_HW_STATE_AARCH64); |
Roberto Vargas | 0a4c261 | 2017-08-03 08:16:16 +0100 | [diff] [blame] | 246 | if (psci_plat_pm_ops->read_mem_protect && |
| 247 | psci_plat_pm_ops->write_mem_protect) |
| 248 | psci_caps |= define_psci_cap(PSCI_MEM_PROTECT); |
| 249 | if (psci_plat_pm_ops->mem_protect_chk) |
| 250 | psci_caps |= define_psci_cap(PSCI_MEM_CHK_RANGE_AARCH64); |
Roberto Vargas | b820ad0 | 2017-07-26 09:23:09 +0100 | [diff] [blame] | 251 | if (psci_plat_pm_ops->system_reset2) |
| 252 | psci_caps |= define_psci_cap(PSCI_SYSTEM_RESET2_AARCH64); |
Soby Mathew | 6cdddaf | 2015-01-07 11:10:22 +0000 | [diff] [blame] | 253 | |
Yatharth Kochar | 241ec6c | 2016-05-09 18:26:35 +0100 | [diff] [blame] | 254 | #if ENABLE_PSCI_STAT |
| 255 | psci_caps |= define_psci_cap(PSCI_STAT_RESIDENCY_AARCH64); |
| 256 | psci_caps |= define_psci_cap(PSCI_STAT_COUNT_AARCH64); |
| 257 | #endif |
| 258 | |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 259 | return 0; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 260 | } |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 261 | |
| 262 | /******************************************************************************* |
| 263 | * This duplicates what the primary cpu did after a cold boot in BL1. The same |
| 264 | * needs to be done when a cpu is hotplugged in. This function could also over- |
| 265 | * ride any EL3 setup done by BL1 as this code resides in rw memory. |
| 266 | ******************************************************************************/ |
| 267 | void psci_arch_setup(void) |
| 268 | { |
Etienne Carriere | e259fa7 | 2017-11-08 14:41:47 +0100 | [diff] [blame] | 269 | #if ARM_ARCH_MAJOR > 7 || defined(ARMV7_SUPPORTS_GENERIC_TIMER) |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 270 | /* Program the counter frequency */ |
| 271 | write_cntfrq_el0(plat_get_syscnt_freq2()); |
Etienne Carriere | e259fa7 | 2017-11-08 14:41:47 +0100 | [diff] [blame] | 272 | #endif |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 273 | |
| 274 | /* Initialize the cpu_ops pointer. */ |
| 275 | init_cpu_ops(); |
Jeenu Viswambharan | d5ec367 | 2017-01-03 11:01:51 +0000 | [diff] [blame] | 276 | |
| 277 | /* Having initialized cpu_ops, we can now print errata status */ |
| 278 | print_errata_status(); |
Soby Mathew | d019487 | 2016-04-29 19:01:30 +0100 | [diff] [blame] | 279 | } |
Soby Mathew | 89d90dc | 2016-05-05 14:11:23 +0100 | [diff] [blame] | 280 | |
| 281 | /****************************************************************************** |
| 282 | * PSCI Library interface to initialize the cpu context for the next non |
| 283 | * secure image during cold boot. The relevant registers in the cpu context |
| 284 | * need to be retrieved and programmed on return from this interface. |
| 285 | *****************************************************************************/ |
| 286 | void psci_prepare_next_non_secure_ctx(entry_point_info_t *next_image_info) |
| 287 | { |
| 288 | assert(GET_SECURITY_STATE(next_image_info->h.attr) == NON_SECURE); |
| 289 | cm_init_my_context(next_image_info); |
| 290 | cm_prepare_el3_exit(NON_SECURE); |
| 291 | } |