blob: 9b5c552e99441ae2df31c7664200e2f797fd10bc [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)));
80 sysregs_context sec_sysregs;
81} suspend_context;
82
Achin Gupta0959db52013-12-02 17:33:04 +000083typedef aff_map_node *mpidr_aff_map_nodes[MPIDR_MAX_AFFLVL];
Achin Gupta4f6ad662013-10-25 09:08:21 +010084typedef unsigned int (*afflvl_power_on_finisher)(unsigned long,
Achin Gupta0959db52013-12-02 17:33:04 +000085 aff_map_node *);
Achin Gupta4f6ad662013-10-25 09:08:21 +010086
87/*******************************************************************************
88 * Data prototypes
89 ******************************************************************************/
Achin Guptaa59caa42013-12-05 14:21:04 +000090extern suspend_context psci_suspend_context[PSCI_NUM_AFFS];
Achin Gupta4f6ad662013-10-25 09:08:21 +010091extern ns_entry_info psci_ns_entry_info[PSCI_NUM_AFFS];
92extern unsigned int psci_ns_einfo_idx;
93extern aff_limits_node psci_aff_limits[MPIDR_MAX_AFFLVL + 1];
94extern plat_pm_ops *psci_plat_pm_ops;
95extern aff_map_node psci_aff_map[PSCI_NUM_AFFS];
96extern afflvl_power_on_finisher psci_afflvl_off_finish_handlers[];
97extern afflvl_power_on_finisher psci_afflvl_sus_finish_handlers[];
98
99/*******************************************************************************
100 * Function prototypes
101 ******************************************************************************/
102/* Private exported functions from psci_common.c */
103extern int get_max_afflvl(void);
Achin Gupta75f73672013-12-05 16:33:10 +0000104extern unsigned short psci_get_state(aff_map_node *node);
105extern unsigned short psci_get_phys_state(aff_map_node *node);
106extern void psci_set_state(aff_map_node *node, unsigned short state);
Achin Guptac8afc782013-11-25 18:45:02 +0000107extern void psci_get_ns_entry_info(unsigned int index);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100108extern unsigned long mpidr_set_aff_inst(unsigned long,unsigned char, 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);
Achin Gupta0959db52013-12-02 17:33:04 +0000118extern int psci_check_afflvl_range(int start_afflvl, int end_afflvl);
119extern void psci_acquire_afflvl_locks(unsigned long mpidr,
120 int start_afflvl,
121 int end_afflvl,
122 mpidr_aff_map_nodes mpidr_nodes);
123extern void psci_release_afflvl_locks(unsigned long mpidr,
124 int start_afflvl,
125 int end_afflvl,
126 mpidr_aff_map_nodes mpidr_nodes);
127
Achin Gupta4f6ad662013-10-25 09:08:21 +0100128/* Private exported functions from psci_setup.c */
Achin Gupta0959db52013-12-02 17:33:04 +0000129extern int psci_get_aff_map_nodes(unsigned long mpidr,
130 int start_afflvl,
131 int end_afflvl,
132 mpidr_aff_map_nodes mpidr_nodes);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100133extern aff_map_node *psci_get_aff_map_node(unsigned long, int);
134
135/* Private exported functions from psci_affinity_on.c */
136extern int psci_afflvl_on(unsigned long,
137 unsigned long,
138 unsigned long,
139 int,
140 int);
141
142/* Private exported functions from psci_affinity_off.c */
143extern int psci_afflvl_off(unsigned long, int, int);
144
145/* Private exported functions from psci_affinity_suspend.c */
Achin Guptaa45e3972013-12-05 15:10:48 +0000146extern void psci_set_suspend_afflvl(aff_map_node *node, int afflvl);
147extern int psci_get_suspend_afflvl(aff_map_node *node);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100148extern int psci_afflvl_suspend(unsigned long,
149 unsigned long,
150 unsigned long,
151 unsigned int,
152 int,
153 int);
154extern unsigned int psci_afflvl_suspend_finish(unsigned long, int, int);
155#endif /*__ASSEMBLY__*/
156
157#endif /* __PSCI_PRIVATE_H__ */