psci_private.h 6.11 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

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

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

77
typedef aff_map_node_t (*mpidr_aff_map_nodes_t[MPIDR_MAX_AFFLVL + 1]);
78
typedef void (*afflvl_power_on_finisher_t)(aff_map_node_t *);
79
80
81
82

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

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

91
92
93
94
/*******************************************************************************
 * Function prototypes
 ******************************************************************************/
/* Private exported functions from psci_common.c */
95
96
97
98
99
100
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);
101
int get_power_on_target_afflvl(void);
102
void psci_afflvl_power_on_finish(int,
103
104
				int,
				afflvl_power_on_finisher_t *);
105
106
int psci_get_ns_ep_info(entry_point_info_t *ep,
		       uint64_t entrypoint, uint64_t context_id);
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[]);
Soby Mathew's avatar
Soby Mathew committed
123
int psci_spd_migrate_info(uint64_t *mpidr);
124

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

/* Private exported functions from psci_affinity_on.c */
133
134
135
136
int psci_afflvl_on(unsigned long target_cpu,
		   entry_point_info_t *ep,
		   int start_afflvl,
		   int end_afflvl);
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
void psci_afflvl_suspend(entry_point_info_t *ep,
143
144
145
			int start_afflvl,
			int end_afflvl);

146
unsigned int psci_afflvl_suspend_finish(int, int);
147
void psci_set_suspend_power_state(unsigned int power_state);
148

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

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

157
#endif /* __PSCI_PRIVATE_H__ */