psci_private.h 6.73 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of ARM nor the names of its contributors may be used
 * to endorse or promote products derived from this software without specific
 * prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef __PSCI_PRIVATE_H__
#define __PSCI_PRIVATE_H__

34
#include <arch.h>
35
#include <bakery_lock.h>
36
#include <bl_common.h>
37
#include <psci.h>
38

39
40
41
42
43
44
45
46
/*
 * The following helper macros abstract the interface to the Bakery
 * Lock API.
 */
#if USE_COHERENT_MEM
#define psci_lock_init(aff_map, idx)	bakery_lock_init(&(aff_map)[(idx)].lock)
#define psci_lock_get(node)		bakery_lock_get(&((node)->lock))
#define psci_lock_release(node)		bakery_lock_release(&((node)->lock))
47
#else
48
49
50
51
52
#define psci_lock_init(aff_map, idx)	((aff_map)[(idx)].aff_map_index = (idx))
#define psci_lock_get(node)		bakery_lock_get((node)->aff_map_index,	  \
						CPU_DATA_PSCI_LOCK_OFFSET)
#define psci_lock_release(node)		bakery_lock_release((node)->aff_map_index,\
						CPU_DATA_PSCI_LOCK_OFFSET)
53
54
#endif

Soby Mathew's avatar
Soby Mathew committed
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
 * The PSCI capability which are provided by the generic code but does not
 * depend on the platform or spd capabilities.
 */
#define PSCI_GENERIC_CAP	\
			(define_psci_cap(PSCI_VERSION) |		\
			define_psci_cap(PSCI_AFFINITY_INFO_AARCH64) |	\
			define_psci_cap(PSCI_FEATURES))

/*
 * The PSCI capabilities mask for 64 bit functions.
 */
#define PSCI_CAP_64BIT_MASK	\
			(define_psci_cap(PSCI_CPU_SUSPEND_AARCH64) |	\
			define_psci_cap(PSCI_CPU_ON_AARCH64) |		\
			define_psci_cap(PSCI_AFFINITY_INFO_AARCH64) |	\
			define_psci_cap(PSCI_MIG_AARCH64) |		\
			define_psci_cap(PSCI_MIG_INFO_UP_CPU_AARCH64))


75
76
77
78
/*******************************************************************************
 * The following two data structures hold the topology tree which in turn tracks
 * the state of the all the affinity instances supported by the platform.
 ******************************************************************************/
79
typedef struct aff_map_node {
80
	unsigned long mpidr;
81
	unsigned char ref_count;
82
	unsigned char state;
83
	unsigned char level;
84
#if USE_COHERENT_MEM
85
	bakery_lock_t lock;
86
87
88
89
#else
	/* For indexing the bakery_info array in per CPU data */
	unsigned char aff_map_index;
#endif
90
} aff_map_node_t;
91

92
typedef struct aff_limits_node {
93
94
	int min;
	int max;
95
} aff_limits_node_t;
96

97
typedef aff_map_node_t (*mpidr_aff_map_nodes_t[MPIDR_MAX_AFFLVL + 1]);
98
typedef void (*afflvl_power_on_finisher_t)(aff_map_node_t *);
99
100
101
102

/*******************************************************************************
 * Data prototypes
 ******************************************************************************/
103
extern const plat_pm_ops_t *psci_plat_pm_ops;
104
extern aff_map_node_t psci_aff_map[PSCI_NUM_AFFS];
Soby Mathew's avatar
Soby Mathew committed
105
extern uint32_t psci_caps;
106

107
/*******************************************************************************
108
 * SPD's power management hooks registered with PSCI
109
 ******************************************************************************/
110
extern const spd_pm_ops_t *psci_spd_pm;
111

112
113
114
115
/*******************************************************************************
 * Function prototypes
 ******************************************************************************/
/* Private exported functions from psci_common.c */
116
117
118
119
120
121
int get_max_afflvl(void);
unsigned short psci_get_state(aff_map_node_t *node);
unsigned short psci_get_phys_state(aff_map_node_t *node);
void psci_set_state(aff_map_node_t *node, unsigned short state);
unsigned long mpidr_set_aff_inst(unsigned long, unsigned char, int);
int psci_validate_mpidr(unsigned long, int);
122
int get_power_on_target_afflvl(void);
123
void psci_afflvl_power_on_finish(int,
124
125
				int,
				afflvl_power_on_finisher_t *);
126
127
int psci_get_ns_ep_info(entry_point_info_t *ep,
		       uint64_t entrypoint, uint64_t context_id);
128
int psci_check_afflvl_range(int start_afflvl, int end_afflvl);
129
130
void psci_do_afflvl_state_mgmt(uint32_t start_afflvl,
			       uint32_t end_afflvl,
Achin Gupta's avatar
Achin Gupta committed
131
			       aff_map_node_t *mpidr_nodes[],
132
			       uint32_t state);
133
void psci_acquire_afflvl_locks(int start_afflvl,
Achin Gupta's avatar
Achin Gupta committed
134
135
			       int end_afflvl,
			       aff_map_node_t *mpidr_nodes[]);
136
void psci_release_afflvl_locks(int start_afflvl,
137
138
				int end_afflvl,
				mpidr_aff_map_nodes_t mpidr_nodes);
139
void psci_print_affinity_map(void);
140
141
142
void psci_set_max_phys_off_afflvl(uint32_t afflvl);
uint32_t psci_find_max_phys_off_afflvl(uint32_t start_afflvl,
				       uint32_t end_afflvl,
Achin Gupta's avatar
Achin Gupta committed
143
				       aff_map_node_t *mpidr_nodes[]);
Soby Mathew's avatar
Soby Mathew committed
144
int psci_spd_migrate_info(uint64_t *mpidr);
145

146
/* Private exported functions from psci_setup.c */
147
148
149
int psci_get_aff_map_nodes(unsigned long mpidr,
				int start_afflvl,
				int end_afflvl,
Achin Gupta's avatar
Achin Gupta committed
150
				aff_map_node_t *mpidr_nodes[]);
151
aff_map_node_t *psci_get_aff_map_node(unsigned long, int);
152
153

/* Private exported functions from psci_affinity_on.c */
154
155
156
157
int psci_afflvl_on(unsigned long target_cpu,
		   entry_point_info_t *ep,
		   int start_afflvl,
		   int end_afflvl);
158
159

/* Private exported functions from psci_affinity_off.c */
160
int psci_afflvl_off(int, int);
161
162

/* Private exported functions from psci_affinity_suspend.c */
163
void psci_afflvl_suspend(entry_point_info_t *ep,
164
165
166
			int start_afflvl,
			int end_afflvl);

167
unsigned int psci_afflvl_suspend_finish(int, int);
168
void psci_set_suspend_power_state(unsigned int power_state);
169

170
171
172
/* Private exported functions from psci_helpers.S */
void psci_do_pwrdown_cache_maintenance(uint32_t affinity_level);
void psci_do_pwrup_cache_maintenance(void);
173

174
175
176
177
/* Private exported functions from psci_system_off.c */
void __dead2 psci_system_off(void);
void __dead2 psci_system_reset(void);

178
#endif /* __PSCI_PRIVATE_H__ */