gicv2.h 6.82 KB
Newer Older
Soby Mathew's avatar
Soby Mathew committed
1
/*
2
 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathew's avatar
Soby Mathew committed
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew's avatar
Soby Mathew committed
5
6
7
8
9
10
11
12
 */

#ifndef __GICV2_H__
#define __GICV2_H__

/*******************************************************************************
 * GICv2 miscellaneous definitions
 ******************************************************************************/
13
14

/* Interrupt group definitions */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
15
16
#define GICV2_INTR_GROUP0	U(0)
#define GICV2_INTR_GROUP1	U(1)
17

Soby Mathew's avatar
Soby Mathew committed
18
/* Interrupt IDs reported by the HPPIR and IAR registers */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
19
#define PENDING_G1_INTID	U(1022)
Soby Mathew's avatar
Soby Mathew committed
20

21
/* GICv2 can only target up to 8 PEs */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
22
#define GICV2_MAX_TARGET_PE	U(8)
23

Soby Mathew's avatar
Soby Mathew committed
24
25
26
/*******************************************************************************
 * GICv2 specific Distributor interface register offsets and constants.
 ******************************************************************************/
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
27
28
29
30
31
#define GICD_ITARGETSR		U(0x800)
#define GICD_SGIR		U(0xF00)
#define GICD_CPENDSGIR		U(0xF10)
#define GICD_SPENDSGIR		U(0xF20)
#define GICD_PIDR2_GICV2	U(0xFE8)
Soby Mathew's avatar
Soby Mathew committed
32
33

#define ITARGETSR_SHIFT		2
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
34
#define GIC_TARGET_CPU_MASK	U(0xff)
Soby Mathew's avatar
Soby Mathew committed
35
36
37
38

#define CPENDSGIR_SHIFT		2
#define SPENDSGIR_SHIFT		CPENDSGIR_SHIFT

39
#define SGIR_TGTLSTFLT_SHIFT	24
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
40
#define SGIR_TGTLSTFLT_MASK	U(0x3)
41
#define SGIR_TGTLST_SHIFT	16
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
42
43
#define SGIR_TGTLST_MASK	U(0xff)
#define SGIR_INTID_MASK		ULL(0xf)
44

Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
45
#define SGIR_TGT_SPECIFIC	U(0)
46
47
48
49
50
51

#define GICV2_SGIR_VALUE(tgt_lst_flt, tgt, intid) \
	((((tgt_lst_flt) & SGIR_TGTLSTFLT_MASK) << SGIR_TGTLSTFLT_SHIFT) | \
	 (((tgt) & SGIR_TGTLST_MASK) << SGIR_TGTLST_SHIFT) | \
	 ((intid) & SGIR_INTID_MASK))

Soby Mathew's avatar
Soby Mathew committed
52
53
54
55
/*******************************************************************************
 * GICv2 specific CPU interface register offsets and constants.
 ******************************************************************************/
/* Physical CPU Interface registers */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
56
57
58
59
60
61
62
63
64
65
#define GICC_CTLR		U(0x0)
#define GICC_PMR		U(0x4)
#define GICC_BPR		U(0x8)
#define GICC_IAR		U(0xC)
#define GICC_EOIR		U(0x10)
#define GICC_RPR		U(0x14)
#define GICC_HPPIR		U(0x18)
#define GICC_AHPPIR		U(0x28)
#define GICC_IIDR		U(0xFC)
#define GICC_DIR		U(0x1000)
Soby Mathew's avatar
Soby Mathew committed
66
67
68
#define GICC_PRIODROP		GICC_EOIR

/* GICC_CTLR bit definitions */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
69
70
71
72
73
74
75
#define EOI_MODE_NS		BIT_32(10)
#define EOI_MODE_S		BIT_32(9)
#define IRQ_BYP_DIS_GRP1	BIT_32(8)
#define FIQ_BYP_DIS_GRP1	BIT_32(7)
#define IRQ_BYP_DIS_GRP0	BIT_32(6)
#define FIQ_BYP_DIS_GRP0	BIT_32(5)
#define CBPR			BIT_32(4)
Soby Mathew's avatar
Soby Mathew committed
76
#define FIQ_EN_SHIFT		3
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
77
78
#define FIQ_EN_BIT		BIT_32(FIQ_EN_SHIFT)
#define ACK_CTL			BIT_32(2)
Soby Mathew's avatar
Soby Mathew committed
79
80
81
82
83
84
85

/* GICC_IIDR bit masks and shifts */
#define GICC_IIDR_PID_SHIFT	20
#define GICC_IIDR_ARCH_SHIFT	16
#define GICC_IIDR_REV_SHIFT	12
#define GICC_IIDR_IMP_SHIFT	0

Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
86
87
88
89
#define GICC_IIDR_PID_MASK	U(0xfff)
#define GICC_IIDR_ARCH_MASK	U(0xf)
#define GICC_IIDR_REV_MASK	U(0xf)
#define GICC_IIDR_IMP_MASK	U(0xfff)
Soby Mathew's avatar
Soby Mathew committed
90
91

/* HYP view virtual CPU Interface registers */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
92
93
94
95
96
97
#define GICH_CTL		U(0x0)
#define GICH_VTR		U(0x4)
#define GICH_ELRSR0		U(0x30)
#define GICH_ELRSR1		U(0x34)
#define GICH_APR0		U(0xF0)
#define GICH_LR_BASE		U(0x100)
Soby Mathew's avatar
Soby Mathew committed
98
99

/* Virtual CPU Interface registers */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
100
101
102
103
104
105
106
107
#define GICV_CTL		U(0x0)
#define GICV_PRIMASK		U(0x4)
#define GICV_BP			U(0x8)
#define GICV_INTACK		U(0xC)
#define GICV_EOI		U(0x10)
#define GICV_RUNNINGPRI		U(0x14)
#define GICV_HIGHESTPEND	U(0x18)
#define GICV_DEACTIVATE		U(0x1000)
Soby Mathew's avatar
Soby Mathew committed
108
109
110

/* GICD_CTLR bit definitions */
#define CTLR_ENABLE_G1_SHIFT		1
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
111
112
#define CTLR_ENABLE_G1_MASK		U(0x1)
#define CTLR_ENABLE_G1_BIT		BIT_32(CTLR_ENABLE_G1_SHIFT)
Soby Mathew's avatar
Soby Mathew committed
113
114

/* Interrupt ID mask for HPPIR, AHPPIR, IAR and AIAR CPU Interface registers */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
115
#define INT_ID_MASK		U(0x3ff)
Soby Mathew's avatar
Soby Mathew committed
116
117
118

#ifndef __ASSEMBLY__

119
#include <cdefs.h>
120
#include <interrupt_props.h>
Soby Mathew's avatar
Soby Mathew committed
121
122
123
124
125
126
127
128
#include <stdint.h>

/*******************************************************************************
 * This structure describes some of the implementation defined attributes of
 * the GICv2 IP. It is used by the platform port to specify these attributes
 * in order to initialize the GICv2 driver. The attributes are described
 * below.
 *
129
130
131
132
133
 * The 'gicd_base' field contains the base address of the Distributor interface
 * programmer's view.
 *
 * The 'gicc_base' field contains the base address of the CPU Interface
 * programmer's view.
Soby Mathew's avatar
Soby Mathew committed
134
 *
135
136
137
 * The 'g0_interrupt_array' field is a pointer to an array in which each entry
 * corresponds to an ID of a Group 0 interrupt. This field is ignored when
 * 'interrupt_props' field is used. This field is deprecated.
Soby Mathew's avatar
Soby Mathew committed
138
 *
139
 * The 'g0_interrupt_num' field contains the number of entries in the
140
141
 * 'g0_interrupt_array'. This field is ignored when 'interrupt_props' field is
 * used. This field is deprecated.
Soby Mathew's avatar
Soby Mathew committed
142
 *
143
144
145
 * The 'target_masks' is a pointer to an array containing 'target_masks_num'
 * elements. The GIC driver will populate the array with per-PE target mask to
 * use to when targeting interrupts.
146
147
148
149
150
151
152
153
 *
 * The 'interrupt_props' field is a pointer to an array that enumerates secure
 * interrupts and their properties. If this field is not NULL, both
 * 'g0_interrupt_array' and 'g1s_interrupt_array' fields are ignored.
 *
 * The 'interrupt_props_num' field contains the number of entries in the
 * 'interrupt_props' array. If this field is non-zero, 'g0_interrupt_num' is
 * ignored.
Soby Mathew's avatar
Soby Mathew committed
154
155
156
157
 ******************************************************************************/
typedef struct gicv2_driver_data {
	uintptr_t gicd_base;
	uintptr_t gicc_base;
158
#if !ERROR_DEPRECATED
159
160
	unsigned int g0_interrupt_num __deprecated;
	const unsigned int *g0_interrupt_array __deprecated;
161
#endif
162
163
	unsigned int *target_masks;
	unsigned int target_masks_num;
164
165
	const interrupt_prop_t *interrupt_props;
	unsigned int interrupt_props_num;
Soby Mathew's avatar
Soby Mathew committed
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
} gicv2_driver_data_t;

/*******************************************************************************
 * Function prototypes
 ******************************************************************************/
void gicv2_driver_init(const gicv2_driver_data_t *plat_driver_data);
void gicv2_distif_init(void);
void gicv2_pcpu_distif_init(void);
void gicv2_cpuif_enable(void);
void gicv2_cpuif_disable(void);
unsigned int gicv2_is_fiq_enabled(void);
unsigned int gicv2_get_pending_interrupt_type(void);
unsigned int gicv2_get_pending_interrupt_id(void);
unsigned int gicv2_acknowledge_interrupt(void);
void gicv2_end_of_interrupt(unsigned int id);
unsigned int gicv2_get_interrupt_group(unsigned int id);
182
unsigned int gicv2_get_running_priority(void);
183
void gicv2_set_pe_target_mask(unsigned int proc_num);
184
unsigned int gicv2_get_interrupt_active(unsigned int id);
185
186
void gicv2_enable_interrupt(unsigned int id);
void gicv2_disable_interrupt(unsigned int id);
187
void gicv2_set_interrupt_priority(unsigned int id, unsigned int priority);
188
void gicv2_set_interrupt_type(unsigned int id, unsigned int type);
189
void gicv2_raise_sgi(int sgi_num, int proc_num);
190
void gicv2_set_spi_routing(unsigned int id, int proc_num);
191
192
void gicv2_set_interrupt_pending(unsigned int id);
void gicv2_clear_interrupt_pending(unsigned int id);
193
unsigned int gicv2_set_pmr(unsigned int mask);
Soby Mathew's avatar
Soby Mathew committed
194
195
196

#endif /* __ASSEMBLY__ */
#endif /* __GICV2_H__ */