blob: 351cbe886b1bea17926f9fe55a0c0518482e96db [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
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#ifndef __PSCI_PRIVATE_H__
32#define __PSCI_PRIVATE_H__
33
Achin Guptaa59caa42013-12-05 14:21:04 +000034#include <arch.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010035#include <bakery_lock.h>
36
37#ifndef __ASSEMBLY__
38/*******************************************************************************
39 * The following two data structures hold the generic information to bringup
40 * a suspended/hotplugged out cpu
41 ******************************************************************************/
42typedef struct {
43 unsigned long entrypoint;
44 unsigned long spsr;
45} eret_params;
46
47typedef struct {
48 eret_params eret_info;
49 unsigned long context_id;
50 unsigned int scr;
51 unsigned int sctlr;
52} ns_entry_info;
53
54/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +010055 * The following two data structures hold the topology tree which in turn tracks
56 * the state of the all the affinity instances supported by the platform.
57 ******************************************************************************/
58typedef struct {
59 unsigned long mpidr;
Achin Gupta75f73672013-12-05 16:33:10 +000060 unsigned short ref_count;
Achin Gupta4f6ad662013-10-25 09:08:21 +010061 unsigned char state;
Achin Gupta75f73672013-12-05 16:33:10 +000062 unsigned char level;
Achin Gupta4f6ad662013-10-25 09:08:21 +010063 unsigned int data;
64 bakery_lock lock;
65} aff_map_node;
66
67typedef struct {
68 int min;
69 int max;
70} aff_limits_node;
71
Achin Guptaa59caa42013-12-05 14:21:04 +000072/*******************************************************************************
73 * This data structure holds secure world context that needs to be preserved
74 * across cpu_suspend calls which enter the power down state.
75 ******************************************************************************/
76typedef struct {
77 /* Align the suspend level to allow per-cpu lockless access */
78 int suspend_level
79 __attribute__((__aligned__(CACHE_WRITEBACK_GRANULE)));
Achin Guptaa59caa42013-12-05 14:21:04 +000080} suspend_context;
81
Achin Guptaef7a28c2014-02-01 08:59:56 +000082typedef aff_map_node (*mpidr_aff_map_nodes[MPIDR_MAX_AFFLVL]);
Achin Gupta4f6ad662013-10-25 09:08:21 +010083typedef unsigned int (*afflvl_power_on_finisher)(unsigned long,
Achin Gupta0959db52013-12-02 17:33:04 +000084 aff_map_node *);
Achin Gupta4f6ad662013-10-25 09:08:21 +010085
86/*******************************************************************************
87 * Data prototypes
88 ******************************************************************************/
Achin Guptaa59caa42013-12-05 14:21:04 +000089extern suspend_context psci_suspend_context[PSCI_NUM_AFFS];
Achin Gupta4f6ad662013-10-25 09:08:21 +010090extern ns_entry_info psci_ns_entry_info[PSCI_NUM_AFFS];
91extern unsigned int psci_ns_einfo_idx;
92extern aff_limits_node psci_aff_limits[MPIDR_MAX_AFFLVL + 1];
93extern plat_pm_ops *psci_plat_pm_ops;
94extern aff_map_node psci_aff_map[PSCI_NUM_AFFS];
95extern afflvl_power_on_finisher psci_afflvl_off_finish_handlers[];
96extern afflvl_power_on_finisher psci_afflvl_sus_finish_handlers[];
97
98/*******************************************************************************
Achin Gupta607084e2014-02-09 18:24:19 +000099 * Weak declarations to allow PSCI to cope on a system where the Secure Payload
100 * Dispatcher is missing. An SPD will define this structure when present.
101 ******************************************************************************/
102extern const spd_pm_ops spd_pm;
103
104/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100105 * Function prototypes
106 ******************************************************************************/
107/* Private exported functions from psci_common.c */
108extern int get_max_afflvl(void);
Achin Gupta75f73672013-12-05 16:33:10 +0000109extern unsigned short psci_get_state(aff_map_node *node);
110extern unsigned short psci_get_phys_state(aff_map_node *node);
111extern void psci_set_state(aff_map_node *node, unsigned short state);
Achin Guptac8afc782013-11-25 18:45:02 +0000112extern void psci_get_ns_entry_info(unsigned int index);
Achin Guptaef7a28c2014-02-01 08:59:56 +0000113extern unsigned long mpidr_set_aff_inst(unsigned long, unsigned char, int);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100114extern int psci_validate_mpidr(unsigned long, int);
Achin Guptaa45e3972013-12-05 15:10:48 +0000115extern int get_power_on_target_afflvl(unsigned long mpidr);
Achin Gupta0959db52013-12-02 17:33:04 +0000116extern void psci_afflvl_power_on_finish(unsigned long,
Achin Gupta4f6ad662013-10-25 09:08:21 +0100117 int,
118 int,
119 afflvl_power_on_finisher *);
120extern int psci_set_ns_entry_info(unsigned int index,
121 unsigned long entrypoint,
122 unsigned long context_id);
Achin Gupta0959db52013-12-02 17:33:04 +0000123extern int psci_check_afflvl_range(int start_afflvl, int end_afflvl);
124extern void psci_acquire_afflvl_locks(unsigned long mpidr,
125 int start_afflvl,
126 int end_afflvl,
127 mpidr_aff_map_nodes mpidr_nodes);
128extern void psci_release_afflvl_locks(unsigned long mpidr,
129 int start_afflvl,
130 int end_afflvl,
131 mpidr_aff_map_nodes mpidr_nodes);
132
Achin Gupta4f6ad662013-10-25 09:08:21 +0100133/* Private exported functions from psci_setup.c */
Achin Gupta0959db52013-12-02 17:33:04 +0000134extern int psci_get_aff_map_nodes(unsigned long mpidr,
135 int start_afflvl,
136 int end_afflvl,
137 mpidr_aff_map_nodes mpidr_nodes);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100138extern aff_map_node *psci_get_aff_map_node(unsigned long, int);
139
140/* Private exported functions from psci_affinity_on.c */
141extern int psci_afflvl_on(unsigned long,
142 unsigned long,
143 unsigned long,
144 int,
145 int);
146
147/* Private exported functions from psci_affinity_off.c */
148extern int psci_afflvl_off(unsigned long, int, int);
149
150/* Private exported functions from psci_affinity_suspend.c */
Achin Guptaa45e3972013-12-05 15:10:48 +0000151extern void psci_set_suspend_afflvl(aff_map_node *node, int afflvl);
152extern int psci_get_suspend_afflvl(aff_map_node *node);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100153extern int psci_afflvl_suspend(unsigned long,
154 unsigned long,
155 unsigned long,
156 unsigned int,
157 int,
158 int);
159extern unsigned int psci_afflvl_suspend_finish(unsigned long, int, int);
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000160
161/* Private exported functions from psci_main.c */
162extern uint64_t psci_smc_handler(uint32_t smc_fid,
163 uint64_t x1,
164 uint64_t x2,
165 uint64_t x3,
166 uint64_t x4,
167 void *cookie,
168 void *handle,
169 uint64_t flags);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100170#endif /*__ASSEMBLY__*/
171
172#endif /* __PSCI_PRIVATE_H__ */