psci_private.h 6.07 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 <psci.h>
37

38
39
40
41
42
43
44
45
/*
 * 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))
46
#else
47
48
49
50
51
#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)
52
53
#endif

54
55
56
57
/*******************************************************************************
 * 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.
 ******************************************************************************/
58
typedef struct aff_map_node {
59
	unsigned long mpidr;
60
	unsigned char ref_count;
61
	unsigned char state;
62
	unsigned char level;
63
#if USE_COHERENT_MEM
64
	bakery_lock_t lock;
65
66
67
68
#else
	/* For indexing the bakery_info array in per CPU data */
	unsigned char aff_map_index;
#endif
69
} aff_map_node_t;
70

71
typedef struct aff_limits_node {
72
73
	int min;
	int max;
74
} aff_limits_node_t;
75

76
typedef aff_map_node_t (*mpidr_aff_map_nodes_t[MPIDR_MAX_AFFLVL + 1]);
77
typedef unsigned int (*afflvl_power_on_finisher_t)(aff_map_node_t *);
78
79
80
81

/*******************************************************************************
 * Data prototypes
 ******************************************************************************/
82
extern const plat_pm_ops_t *psci_plat_pm_ops;
83
extern aff_map_node_t psci_aff_map[PSCI_NUM_AFFS];
84

85
/*******************************************************************************
86
 * SPD's power management hooks registered with PSCI
87
 ******************************************************************************/
88
extern const spd_pm_ops_t *psci_spd_pm;
89

90
91
92
93
/*******************************************************************************
 * Function prototypes
 ******************************************************************************/
/* Private exported functions from psci_common.c */
94
95
96
97
98
99
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);
100
int get_power_on_target_afflvl(void);
101
void psci_afflvl_power_on_finish(int,
102
103
				int,
				afflvl_power_on_finisher_t *);
104
105
106
int psci_save_ns_entry(uint64_t mpidr,
		       uint64_t entrypoint, uint64_t context_id,
		       uint32_t caller_scr_el3, uint32_t caller_sctlr_el1);
107
int psci_check_afflvl_range(int start_afflvl, int end_afflvl);
108
109
void psci_do_afflvl_state_mgmt(uint32_t start_afflvl,
			       uint32_t end_afflvl,
Achin Gupta's avatar
Achin Gupta committed
110
			       aff_map_node_t *mpidr_nodes[],
111
			       uint32_t state);
112
void psci_acquire_afflvl_locks(int start_afflvl,
Achin Gupta's avatar
Achin Gupta committed
113
114
			       int end_afflvl,
			       aff_map_node_t *mpidr_nodes[]);
115
void psci_release_afflvl_locks(int start_afflvl,
116
117
				int end_afflvl,
				mpidr_aff_map_nodes_t mpidr_nodes);
118
void psci_print_affinity_map(void);
119
120
121
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
122
				       aff_map_node_t *mpidr_nodes[]);
123

124
/* Private exported functions from psci_setup.c */
125
126
127
int psci_get_aff_map_nodes(unsigned long mpidr,
				int start_afflvl,
				int end_afflvl,
Achin Gupta's avatar
Achin Gupta committed
128
				aff_map_node_t *mpidr_nodes[]);
129
aff_map_node_t *psci_get_aff_map_node(unsigned long, int);
130
131

/* Private exported functions from psci_affinity_on.c */
132
133
134
135
136
int psci_afflvl_on(unsigned long,
			unsigned long,
			unsigned long,
			int,
			int);
137
138

/* Private exported functions from psci_affinity_off.c */
139
int psci_afflvl_off(int, int);
140
141

/* Private exported functions from psci_affinity_suspend.c */
142
143
144
145
146
int psci_afflvl_suspend(unsigned long,
			unsigned long,
			unsigned int,
			int,
			int);
147
unsigned int psci_afflvl_suspend_finish(int, int);
148
void psci_set_suspend_power_state(unsigned int power_state);
149

150
151
152
/* Private exported functions from psci_helpers.S */
void psci_do_pwrdown_cache_maintenance(uint32_t affinity_level);
void psci_do_pwrup_cache_maintenance(void);
153

154
155
156
157
/* Private exported functions from psci_system_off.c */
void __dead2 psci_system_off(void);
void __dead2 psci_system_reset(void);

158
#endif /* __PSCI_PRIVATE_H__ */