blob: 1cc71049ffc4f07628139be857292f18033623f1 [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;
60 unsigned char state;
61 char level;
62 unsigned int data;
63 bakery_lock lock;
64} aff_map_node;
65
66typedef struct {
67 int min;
68 int max;
69} aff_limits_node;
70
Achin Guptaa59caa42013-12-05 14:21:04 +000071/*******************************************************************************
72 * This data structure holds secure world context that needs to be preserved
73 * across cpu_suspend calls which enter the power down state.
74 ******************************************************************************/
75typedef struct {
76 /* Align the suspend level to allow per-cpu lockless access */
77 int suspend_level
78 __attribute__((__aligned__(CACHE_WRITEBACK_GRANULE)));
79 sysregs_context sec_sysregs;
80} suspend_context;
81
Achin Gupta0959db52013-12-02 17:33:04 +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/*******************************************************************************
99 * Function prototypes
100 ******************************************************************************/
101/* Private exported functions from psci_common.c */
102extern int get_max_afflvl(void);
103extern unsigned int psci_get_phys_state(unsigned int);
104extern unsigned int psci_get_aff_phys_state(aff_map_node *);
105extern unsigned int psci_calculate_affinity_state(aff_map_node *);
Achin Guptac8afc782013-11-25 18:45:02 +0000106extern void psci_get_ns_entry_info(unsigned int index);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100107extern unsigned long mpidr_set_aff_inst(unsigned long,unsigned char, int);
Achin Gupta0959db52013-12-02 17:33:04 +0000108extern int psci_change_state(mpidr_aff_map_nodes, int, int, unsigned int);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100109extern int psci_validate_mpidr(unsigned long, int);
Achin Guptaa45e3972013-12-05 15:10:48 +0000110extern int get_power_on_target_afflvl(unsigned long mpidr);
Achin Gupta0959db52013-12-02 17:33:04 +0000111extern void psci_afflvl_power_on_finish(unsigned long,
Achin Gupta4f6ad662013-10-25 09:08:21 +0100112 int,
113 int,
114 afflvl_power_on_finisher *);
115extern int psci_set_ns_entry_info(unsigned int index,
116 unsigned long entrypoint,
117 unsigned long context_id);
118extern int psci_get_first_present_afflvl(unsigned long,
119 int, int,
120 aff_map_node **);
Achin Gupta0959db52013-12-02 17:33:04 +0000121extern int psci_check_afflvl_range(int start_afflvl, int end_afflvl);
122extern void psci_acquire_afflvl_locks(unsigned long mpidr,
123 int start_afflvl,
124 int end_afflvl,
125 mpidr_aff_map_nodes mpidr_nodes);
126extern void psci_release_afflvl_locks(unsigned long mpidr,
127 int start_afflvl,
128 int end_afflvl,
129 mpidr_aff_map_nodes mpidr_nodes);
130
Achin Gupta4f6ad662013-10-25 09:08:21 +0100131/* Private exported functions from psci_setup.c */
Achin Gupta0959db52013-12-02 17:33:04 +0000132extern int psci_get_aff_map_nodes(unsigned long mpidr,
133 int start_afflvl,
134 int end_afflvl,
135 mpidr_aff_map_nodes mpidr_nodes);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100136extern aff_map_node *psci_get_aff_map_node(unsigned long, int);
137
138/* Private exported functions from psci_affinity_on.c */
139extern int psci_afflvl_on(unsigned long,
140 unsigned long,
141 unsigned long,
142 int,
143 int);
144
145/* Private exported functions from psci_affinity_off.c */
146extern int psci_afflvl_off(unsigned long, int, int);
147
148/* Private exported functions from psci_affinity_suspend.c */
Achin Guptaa45e3972013-12-05 15:10:48 +0000149extern void psci_set_suspend_afflvl(aff_map_node *node, int afflvl);
150extern int psci_get_suspend_afflvl(aff_map_node *node);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100151extern int psci_afflvl_suspend(unsigned long,
152 unsigned long,
153 unsigned long,
154 unsigned int,
155 int,
156 int);
157extern unsigned int psci_afflvl_suspend_finish(unsigned long, int, int);
158#endif /*__ASSEMBLY__*/
159
160#endif /* __PSCI_PRIVATE_H__ */