gic_v2.h 8.39 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
 */

#ifndef __GIC_V2_H__
#define __GIC_V2_H__

10
11
12
/* The macros required here are additional to those in gic_common.h. */
#include <gic_common.h>

Soby Mathew's avatar
Soby Mathew committed
13
14
15
16
17
18
19
/******************************************************************************
 * THIS DRIVER IS DEPRECATED. For GICv2 systems, use the driver in gicv2.h
 * and for GICv3 systems, use the driver in gicv3.h.
 *****************************************************************************/
#if ERROR_DEPRECATED
#error " The legacy ARM GIC driver is deprecated."
#endif
Dan Handley's avatar
Dan Handley committed
20

21
22
23
24
25
26
27
28
29
30
31
#define GIC400_NUM_SPIS		U(480)
#define MAX_PPIS		U(14)
#define MAX_SGIS		U(16)


#define GRP0			U(0)
#define GRP1			U(1)
#define GIC_TARGET_CPU_MASK	U(0xff)

#define ENABLE_GRP0		(U(1) << 0)
#define ENABLE_GRP1		(U(1) << 1)
Dan Handley's avatar
Dan Handley committed
32
33

/* Distributor interface definitions */
34
35
36
37
38
39
#define GICD_ITARGETSR		U(0x800)
#define GICD_SGIR		U(0xF00)
#define GICD_CPENDSGIR		U(0xF10)
#define GICD_SPENDSGIR		U(0xF20)

#define CPENDSGIR_SHIFT		U(2)
Dan Handley's avatar
Dan Handley committed
40
41
42
#define SPENDSGIR_SHIFT		CPENDSGIR_SHIFT

/* GICD_TYPER bit definitions */
43
#define IT_LINES_NO_MASK	U(0x1f)
Dan Handley's avatar
Dan Handley committed
44
45

/* Physical CPU Interface registers */
46
47
48
49
50
51
52
53
54
55
#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)
Dan Handley's avatar
Dan Handley committed
56
57
#define GICC_PRIODROP           GICC_EOIR

58
/* Common CPU Interface definitions */
59
#define INT_ID_MASK		U(0x3ff)
60

Dan Handley's avatar
Dan Handley committed
61
/* GICC_CTLR bit definitions */
62
63
64
65
66
67
68
69
70
#define EOI_MODE_NS		(U(1) << 10)
#define EOI_MODE_S		(U(1) << 9)
#define IRQ_BYP_DIS_GRP1	(U(1) << 8)
#define FIQ_BYP_DIS_GRP1	(U(1) << 7)
#define IRQ_BYP_DIS_GRP0	(U(1) << 6)
#define FIQ_BYP_DIS_GRP0	(U(1) << 5)
#define CBPR			(U(1) << 4)
#define FIQ_EN			(U(1) << 3)
#define ACK_CTL			(U(1) << 2)
Dan Handley's avatar
Dan Handley committed
71
72

/* GICC_IIDR bit masks and shifts */
73
74
75
76
#define GICC_IIDR_PID_SHIFT	U(20)
#define GICC_IIDR_ARCH_SHIFT	U(16)
#define GICC_IIDR_REV_SHIFT	U(12)
#define GICC_IIDR_IMP_SHIFT	U(0)
Dan Handley's avatar
Dan Handley committed
77

78
79
80
81
#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)
Dan Handley's avatar
Dan Handley committed
82
83

/* HYP view virtual CPU Interface registers */
84
85
86
87
88
89
#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)
Dan Handley's avatar
Dan Handley committed
90
91

/* Virtual CPU Interface registers */
92
93
94
95
96
97
98
99
#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)
Dan Handley's avatar
Dan Handley committed
100
101
102

#ifndef __ASSEMBLY__

103
#include <mmio.h>
104
#include <stdint.h>
Dan Handley's avatar
Dan Handley committed
105
106
107
108
109

/*******************************************************************************
 * GIC Distributor function prototypes
 ******************************************************************************/

110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
unsigned int gicd_read_igroupr(uintptr_t, unsigned int);
unsigned int gicd_read_isenabler(uintptr_t, unsigned int);
unsigned int gicd_read_icenabler(uintptr_t, unsigned int);
unsigned int gicd_read_ispendr(uintptr_t, unsigned int);
unsigned int gicd_read_icpendr(uintptr_t, unsigned int);
unsigned int gicd_read_isactiver(uintptr_t, unsigned int);
unsigned int gicd_read_icactiver(uintptr_t, unsigned int);
unsigned int gicd_read_ipriorityr(uintptr_t, unsigned int);
unsigned int gicd_read_itargetsr(uintptr_t, unsigned int);
unsigned int gicd_read_icfgr(uintptr_t, unsigned int);
unsigned int gicd_read_cpendsgir(uintptr_t, unsigned int);
unsigned int gicd_read_spendsgir(uintptr_t, unsigned int);
void gicd_write_igroupr(uintptr_t, unsigned int, unsigned int);
void gicd_write_isenabler(uintptr_t, unsigned int, unsigned int);
void gicd_write_icenabler(uintptr_t, unsigned int, unsigned int);
void gicd_write_ispendr(uintptr_t, unsigned int, unsigned int);
void gicd_write_icpendr(uintptr_t, unsigned int, unsigned int);
void gicd_write_isactiver(uintptr_t, unsigned int, unsigned int);
void gicd_write_icactiver(uintptr_t, unsigned int, unsigned int);
void gicd_write_ipriorityr(uintptr_t, unsigned int, unsigned int);
void gicd_write_itargetsr(uintptr_t, unsigned int, unsigned int);
void gicd_write_icfgr(uintptr_t, unsigned int, unsigned int);
void gicd_write_cpendsgir(uintptr_t, unsigned int, unsigned int);
void gicd_write_spendsgir(uintptr_t, unsigned int, unsigned int);
unsigned int gicd_get_igroupr(uintptr_t, unsigned int);
void gicd_set_igroupr(uintptr_t, unsigned int);
void gicd_clr_igroupr(uintptr_t, unsigned int);
void gicd_set_isenabler(uintptr_t, unsigned int);
void gicd_set_icenabler(uintptr_t, unsigned int);
void gicd_set_ispendr(uintptr_t, unsigned int);
void gicd_set_icpendr(uintptr_t, unsigned int);
void gicd_set_isactiver(uintptr_t, unsigned int);
void gicd_set_icactiver(uintptr_t, unsigned int);
void gicd_set_ipriorityr(uintptr_t, unsigned int, unsigned int);
void gicd_set_itargetsr(uintptr_t, unsigned int, unsigned int);
Dan Handley's avatar
Dan Handley committed
145
146


147
148
149
150
/*******************************************************************************
 * GIC Distributor interface accessors for reading entire registers
 ******************************************************************************/

151
static inline unsigned int gicd_read_ctlr(uintptr_t base)
152
153
154
155
{
	return mmio_read_32(base + GICD_CTLR);
}

156
static inline unsigned int gicd_read_typer(uintptr_t base)
157
158
159
160
{
	return mmio_read_32(base + GICD_TYPER);
}

161
static inline unsigned int gicd_read_sgir(uintptr_t base)
162
163
164
165
166
167
168
169
170
{
	return mmio_read_32(base + GICD_SGIR);
}


/*******************************************************************************
 * GIC Distributor interface accessors for writing entire registers
 ******************************************************************************/

171
static inline void gicd_write_ctlr(uintptr_t base, unsigned int val)
172
173
174
175
{
	mmio_write_32(base + GICD_CTLR, val);
}

176
static inline void gicd_write_sgir(uintptr_t base, unsigned int val)
177
178
179
180
181
182
183
184
185
{
	mmio_write_32(base + GICD_SGIR, val);
}


/*******************************************************************************
 * GIC CPU interface accessors for reading entire registers
 ******************************************************************************/

186
static inline unsigned int gicc_read_ctlr(uintptr_t base)
187
188
189
190
{
	return mmio_read_32(base + GICC_CTLR);
}

191
static inline unsigned int gicc_read_pmr(uintptr_t base)
192
193
194
195
{
	return mmio_read_32(base + GICC_PMR);
}

196
static inline unsigned int gicc_read_BPR(uintptr_t base)
197
198
199
200
{
	return mmio_read_32(base + GICC_BPR);
}

201
static inline unsigned int gicc_read_IAR(uintptr_t base)
202
203
204
205
{
	return mmio_read_32(base + GICC_IAR);
}

206
static inline unsigned int gicc_read_EOIR(uintptr_t base)
207
208
209
210
{
	return mmio_read_32(base + GICC_EOIR);
}

211
static inline unsigned int gicc_read_hppir(uintptr_t base)
212
213
214
215
{
	return mmio_read_32(base + GICC_HPPIR);
}

216
static inline unsigned int gicc_read_ahppir(uintptr_t base)
217
218
219
220
{
	return mmio_read_32(base + GICC_AHPPIR);
}

221
static inline unsigned int gicc_read_dir(uintptr_t base)
222
223
224
225
{
	return mmio_read_32(base + GICC_DIR);
}

226
static inline unsigned int gicc_read_iidr(uintptr_t base)
227
228
229
230
231
232
233
234
235
{
	return mmio_read_32(base + GICC_IIDR);
}


/*******************************************************************************
 * GIC CPU interface accessors for writing entire registers
 ******************************************************************************/

236
static inline void gicc_write_ctlr(uintptr_t base, unsigned int val)
237
238
239
240
{
	mmio_write_32(base + GICC_CTLR, val);
}

241
static inline void gicc_write_pmr(uintptr_t base, unsigned int val)
242
243
244
245
{
	mmio_write_32(base + GICC_PMR, val);
}

246
static inline void gicc_write_BPR(uintptr_t base, unsigned int val)
247
248
249
250
251
{
	mmio_write_32(base + GICC_BPR, val);
}


252
static inline void gicc_write_IAR(uintptr_t base, unsigned int val)
253
254
255
256
{
	mmio_write_32(base + GICC_IAR, val);
}

257
static inline void gicc_write_EOIR(uintptr_t base, unsigned int val)
258
259
260
261
{
	mmio_write_32(base + GICC_EOIR, val);
}

262
static inline void gicc_write_hppir(uintptr_t base, unsigned int val)
263
264
265
266
{
	mmio_write_32(base + GICC_HPPIR, val);
}

267
static inline void gicc_write_dir(uintptr_t base, unsigned int val)
268
269
270
271
{
	mmio_write_32(base + GICC_DIR, val);
}

272
273
274
275
276
277
/*******************************************************************************
 * Prototype of function to map an interrupt type to the interrupt line used to
 * signal it.
 ******************************************************************************/
uint32_t gicv2_interrupt_type_to_line(uint32_t cpuif_base, uint32_t type);

Dan Handley's avatar
Dan Handley committed
278
279
#endif /*__ASSEMBLY__*/

280
#endif /* __GIC_V2_H__ */