xref: /freebsd/sys/arm64/arm64/gic_v3_reg.h (revision a3f164a0)
1 /*-
2  * Copyright (c) 2015 The FreeBSD Foundation
3  *
4  * This software was developed by Semihalf under
5  * the sponsorship of the FreeBSD Foundation.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #ifndef _GIC_V3_REG_H_
30 #define	_GIC_V3_REG_H_
31 
32 /*
33  * Maximum number of interrupts
34  * supported by GIC (including SGIs, PPIs and SPIs)
35  */
36 #define	GIC_I_NUM_MAX		(1020)
37 /*
38  * Priority MAX/MIN values
39  */
40 #define	GIC_PRIORITY_MAX	(0x00UL)
41 /* Upper value is determined by LPI max priority */
42 #define	GIC_PRIORITY_MIN	(0xFCUL)
43 
44 /* Numbers for shared peripheral interrupts */
45 #define	GIC_LAST_SPI		(1019)
46 /* Numbers for local peripheral interrupts */
47 #define	GIC_FIRST_LPI		(8192)
48 
49 /*
50  * Registers (v2/v3)
51  */
52 /* GICD_CTLR */
53 #define	 GICD_CTLR_G1		(1 << 0)
54 #define	 GICD_CTLR_G1A		(1 << 1)
55 #define	 GICD_CTLR_ARE_NS	(1 << 4)
56 #define	 GICD_CTLR_RWP		(1 << 31)
57 
58 /* GICD_TYPER */
59 #define	 GICD_TYPER_SECURITYEXTN (1 << 10)
60 #define	 GICD_TYPER_MBIS	(1 << 16)
61 #define	 GICD_TYPER_LPIS	(1 << 17)
62 #define	 GICD_TYPER_DVIS	(1 << 18)
63 #define	 GICD_TYPER_IDBITS_SHIFT 19
64 #define	 GICD_TYPER_IDBITS(n)	((((n) >> 19) & 0x1F) + 1)
65 
66 /*
67  * Registers (v3)
68  */
69 #define	GICD_STATUSR		0x0010
70 
71 #define	GICD_SETSPI_NSR		0x0040
72 #define	GICD_CLRSPI_NSR		0x0048
73 #define	GICD_SETSPI_SR		0x0050
74 #define	GICD_CLRSPI_SR		0x0058
75 #define	 GICD_SPI_INTID_MASK	0x3ff
76 
77 #define	GICD_IROUTER(n)		(0x6000 + ((n) * 8))
78 #define	 GICD_AFF3		(0xfful << 32)
79 #define	 GICD_IROUTER_IRM	(1ul << 31)
80 #define	 GICD_AFF2		(0xfful << 16)
81 #define	 GICD_AFF1		(0xfful << 8)
82 #define	 GICD_AFF0		(0xfful << 0)
83 #define	 GICD_AFF		(GICD_AFF0 | GICD_AFF1 | GICD_AFF1 | GICD_AFF3)
84 
85 #define	GICD_PIDR4		0xFFD0
86 #define	GICD_PIDR5		0xFFD4
87 #define	GICD_PIDR6		0xFFD8
88 #define	GICD_PIDR7		0xFFDC
89 #define	GICD_PIDR0		0xFFE0
90 #define	GICD_PIDR1		0xFFE4
91 #define	GICD_PIDR2		0xFFE8
92 
93 #define	GICD_SIZE		0x10000
94 
95 #define	GICR_PIDR2_ARCH_SHIFT	4
96 #define	GICR_PIDR2_ARCH_MASK	0xF0
97 #define	GICR_PIDR2_ARCH(x)				\
98     (((x) & GICR_PIDR2_ARCH_MASK) >> GICR_PIDR2_ARCH_SHIFT)
99 #define	GICR_PIDR2_ARCH_GICv3	0x3
100 #define	GICR_PIDR2_ARCH_GICv4	0x4
101 
102 #define	GICD_PIDR3		0xFFEC
103 
104 /*
105  * Redistributor registers
106  */
107 
108 /* RD_base registers */
109 #define	GICR_CTLR		0x0000
110 #define	 GICR_CTLR_LPI_ENABLE	(1 << 0)
111 #define	 GICR_CTLR_RWP		(1 << 3)
112 #define	 GICR_CTLR_DPG0		(1 << 24)
113 #define	 GICR_CTLR_DPG1NS	(1 << 25)
114 #define	 GICR_CTLR_DPG1S	(1 << 26)
115 #define	 GICR_CTLR_UWP		(1 << 31)
116 
117 #define	GICR_IIDR		0x0004
118 
119 #define	GICR_TYPER		0x0008
120 #define	 GICR_TYPER_PLPIS	(1 << 0)
121 #define	 GICR_TYPER_VLPIS	(1 << 1)
122 #define	 GICR_TYPER_LAST	(1 << 4)
123 #define	 GICR_TYPER_CPUNUM_SHIFT (8)
124 #define	 GICR_TYPER_CPUNUM_MASK	(0xFFFUL << GICR_TYPER_CPUNUM_SHIFT)
125 #define	 GICR_TYPER_CPUNUM(x)	\
126 	    (((x) & GICR_TYPER_CPUNUM_MASK) >> GICR_TYPER_CPUNUM_SHIFT)
127 #define	 GICR_TYPER_AFF_SHIFT	32
128 #define	 GICR_TYPER_AFF_MASK	(0xfffffffful << GICR_TYPER_AFF_SHIFT)
129 #define	GICR_TYPER_AFF(x)					\
130     (((x) & GICR_TYPER_AFF_MASK) >> GICR_TYPER_AFF_SHIFT)
131 
132 #define	GICR_STATUSR		0x0010
133 
134 #define	GICR_WAKER		0x0014
135 #define	GICR_WAKER_PS		(1 << 1) /* Processor sleep */
136 #define	GICR_WAKER_CA		(1 << 2) /* Children asleep */
137 
138 #define	GICR_SETLPIR		0x0040
139 #define	GICR_CLRLPIR		0x0048
140 
141 #define	GICR_PROPBASER		0x0070
142 #define		GICR_PROPBASER_IDBITS_MASK	0x1FUL
143 /*
144  * Cacheability
145  * 0x0 - Device-nGnRnE
146  * 0x1 - Normal Inner Non-cacheable
147  * 0x2 - Normal Inner Read-allocate, Write-through
148  * 0x3 - Normal Inner Read-allocate, Write-back
149  * 0x4 - Normal Inner Write-allocate, Write-through
150  * 0x5 - Normal Inner Write-allocate, Write-back
151  * 0x6 - Normal Inner Read-allocate, Write-allocate, Write-through
152  * 0x7 - Normal Inner Read-allocate, Write-allocate, Write-back
153  */
154 #define		GICR_PROPBASER_CACHE_SHIFT	7
155 #define		GICR_PROPBASER_CACHE_DnGnRnE	0x0UL
156 #define		GICR_PROPBASER_CACHE_NIN	0x1UL
157 #define		GICR_PROPBASER_CACHE_NIRAWT	0x2UL
158 #define		GICR_PROPBASER_CACHE_NIRAWB	0x3UL
159 #define		GICR_PROPBASER_CACHE_NIWAWT	0x4UL
160 #define		GICR_PROPBASER_CACHE_NIWAWB	0x5UL
161 #define		GICR_PROPBASER_CACHE_NIRAWAWT	0x6UL
162 #define		GICR_PROPBASER_CACHE_NIRAWAWB	0x7UL
163 #define		GICR_PROPBASER_CACHE_MASK	\
164 		    (0x7UL << GICR_PROPBASER_CACHE_SHIFT)
165 
166 /*
167  * Shareability
168  * 0x0 - Non-shareable
169  * 0x1 - Inner-shareable
170  * 0x2 - Outer-shareable
171  * 0x3 - Reserved. Threated as 0x0
172  */
173 #define		GICR_PROPBASER_SHARE_SHIFT	10
174 #define		GICR_PROPBASER_SHARE_NS		0x0UL
175 #define		GICR_PROPBASER_SHARE_IS		0x1UL
176 #define		GICR_PROPBASER_SHARE_OS		0x2UL
177 #define		GICR_PROPBASER_SHARE_RES	0x3UL
178 #define		GICR_PROPBASER_SHARE_MASK	\
179 		    (0x3UL << GICR_PROPBASER_SHARE_SHIFT)
180 
181 #define		GICR_PROPBASER_OUTER_CACHE_SHIFT	56
182 #define		GICR_PROPBASER_OUTER_CACHE_MASK		\
183 		    (0x7UL << GICR_PROPBASER_OUTER_CACHE_SHIFT)
184 
185 /*
186  * The PROPBASER LPI Configuration Table is 4k aligned, so bits 51:12 are
187  * defined to be the PA, for 40 potentially significant bits.
188  */
189 #define		GICR_PROPBASER_PA_SHIFT		12
190 #define		GICR_PROPBASER_PA_SIZE		40
191 #define		GICR_PROPBASER_PA_MASK		\
192 		    (((1UL << GICR_PROPBASER_PA_SIZE) - 1) << GICR_PROPBASER_PA_SHIFT)
193 
194 #define	GICR_PENDBASER		0x0078
195 /*
196  * Cacheability
197  * 0x0 - Device-nGnRnE
198  * 0x1 - Normal Inner Non-cacheable
199  * 0x2 - Normal Inner Read-allocate, Write-through
200  * 0x3 - Normal Inner Read-allocate, Write-back
201  * 0x4 - Normal Inner Write-allocate, Write-through
202  * 0x5 - Normal Inner Write-allocate, Write-back
203  * 0x6 - Normal Inner Read-allocate, Write-allocate, Write-through
204  * 0x7 - Normal Inner Read-allocate, Write-allocate, Write-back
205  */
206 #define		GICR_PENDBASER_CACHE_SHIFT	7
207 #define		GICR_PENDBASER_CACHE_DnGnRnE	0x0UL
208 #define		GICR_PENDBASER_CACHE_NIN	0x1UL
209 #define		GICR_PENDBASER_CACHE_NIRAWT	0x2UL
210 #define		GICR_PENDBASER_CACHE_NIRAWB	0x3UL
211 #define		GICR_PENDBASER_CACHE_NIWAWT	0x4UL
212 #define		GICR_PENDBASER_CACHE_NIWAWB	0x5UL
213 #define		GICR_PENDBASER_CACHE_NIRAWAWT	0x6UL
214 #define		GICR_PENDBASER_CACHE_NIRAWAWB	0x7UL
215 #define		GICR_PENDBASER_CACHE_MASK	\
216 		    (0x7UL << GICR_PENDBASER_CACHE_SHIFT)
217 
218 /*
219  * Shareability
220  * 0x0 - Non-shareable
221  * 0x1 - Inner-shareable
222  * 0x2 - Outer-shareable
223  * 0x3 - Reserved. Threated as 0x0
224  */
225 #define		GICR_PENDBASER_SHARE_SHIFT	10
226 #define		GICR_PENDBASER_SHARE_NS		0x0UL
227 #define		GICR_PENDBASER_SHARE_IS		0x1UL
228 #define		GICR_PENDBASER_SHARE_OS		0x2UL
229 #define		GICR_PENDBASER_SHARE_RES	0x3UL
230 #define		GICR_PENDBASER_SHARE_MASK	\
231 		    (0x3UL << GICR_PENDBASER_SHARE_SHIFT)
232 
233 #define		GICR_PENDBASER_OUTER_CACHE_SHIFT	56
234 #define		GICR_PENDBASER_OUTER_CACHE_MASK		\
235 		    (0x7UL << GICR_PENDBASER_OUTER_CACHE_SHIFT)
236 
237 /*
238  * The LPI Pending Table (PENDBASER) is 64k aligned. So bits 51:16 are defined to be the PA, for 36
239  * potentially significant bits.
240  */
241 #define		GICR_PENDBASER_PA_SHIFT		16
242 #define		GICR_PENDBASER_PA_SIZE		36
243 #define		GICR_PENDBASER_PA_MASK		\
244 	(((1UL << GICR_PENDBASER_PA_SIZE) - 1) << GICR_PENDBASER_PA_SHIFT)
245 
246 #define	GICR_INVLPIR		0x00a0
247 #define	GICR_INVALLR		0x00b0
248 #define	GICR_SYNCR		0x00c0
249 
250 #define	GICR_PIDR2		GICD_PIDR2
251 
252 /* SGI_base registers */
253 #define	GICR_IGROUPR0				(0x0080)
254 #define	GICR_ISENABLER0				(0x0100)
255 #define	GICR_ICENABLER0				(0x0180)
256 #define		GICR_I_ENABLER_SGI_MASK		(0x0000FFFF)
257 #define		GICR_I_ENABLER_PPI_MASK		(0xFFFF0000)
258 
259 #define		GICR_I_PER_IPRIORITYn		(GICD_I_PER_IPRIORITYn)
260 
261 #define	GICR_ISPENDR0				0x0200
262 #define	GICR_ICPENDR0				0x0280
263 #define	GICR_ISACTIVER0				0x0300
264 #define	GICR_ICACTIVER0				0x0380
265 #define	GICR_IPRIORITYR(n)			(0x0400 + (((n) >> 2) * 4))
266 #define	GICR_ICFGR0				0x0c00
267 #define	GICR_ICFGR1				0x0c04
268 #define	GICR_IGRPMODR0				0x0d00
269 #define	GICR_NSACR				0x0e00
270 
271 /* Re-distributor registers for SGIs and PPIs */
272 #define	GICR_RD_BASE		0
273 #define	GICR_RD_BASE_SIZE	PAGE_SIZE_64K
274 #define	GICR_SGI_BASE		(1 * PAGE_SIZE_64K)
275 #define	GICR_SGI_BASE_SIZE	PAGE_SIZE_64K
276 #define	GICR_VLPI_BASE		(2 * PAGE_SIZE_64K)
277 #define	GICR_VLPI_BASE_SIZE	PAGE_SIZE_64K
278 #define	GICR_RESERVED_SIZE	PAGE_SIZE_64K
279 
280 /*
281  * ITS registers
282  */
283 #define	GITS_PIDR2		GICR_PIDR2
284 #define	GITS_PIDR2_ARCH_MASK	GICR_PIDR2_ARCH_MASK
285 #define	GITS_PIDR2_ARCH_GICv3	GICR_PIDR2_ARCH_GICv3
286 #define	GITS_PIDR2_ARCH_GICv4	GICR_PIDR2_ARCH_GICv4
287 
288 #define	GITS_CTLR		(0x0000)
289 #define		GITS_CTLR_EN	(1 << 0)
290 
291 #define	GITS_IIDR		(0x0004)
292 #define	 GITS_IIDR_PRODUCT_SHIFT	24
293 #define	 GITS_IIDR_PRODUCT_MASK		(0xff << GITS_IIDR_PRODUCT_SHIFT)
294 #define	 GITS_IIDR_VARIANT_SHIFT	16
295 #define	 GITS_IIDR_VARIANT_MASK		(0xf << GITS_IIDR_VARIANT_SHIFT)
296 #define	 GITS_IIDR_REVISION_SHIFT	12
297 #define	 GITS_IIDR_REVISION_MASK	(0xf << GITS_IIDR_REVISION_SHIFT)
298 #define	 GITS_IIDR_IMPLEMENTOR_SHIFT	0
299 #define	 GITS_IIDR_IMPLEMENTOR_MASK	(0xfff << GITS_IIDR_IMPLEMENTOR_SHIFT)
300 
301 #define	 GITS_IIDR_RAW(impl, prod, var, rev)		\
302     ((prod) << GITS_IIDR_PRODUCT_SHIFT |		\
303      (var) << GITS_IIDR_VARIANT_SHIFT | 		\
304      (rev) << GITS_IIDR_REVISION_SHIFT |		\
305      (impl) << GITS_IIDR_IMPLEMENTOR_SHIFT)
306 
307 #define	 GITS_IIDR_IMPL_ARM		(0x43B)
308 #define	 GITS_IIDR_PROD_GIC500		(0x0)
309 #define	 GITS_IIDR_IMPL_CAVIUM		(0x34c)
310 #define	 GITS_IIDR_PROD_THUNDER		(0xa1)
311 #define	 GITS_IIDR_VAR_THUNDER_1	(0x0)
312 
313 #define	GITS_CBASER		(0x0080)
314 #define		GITS_CBASER_VALID	(1UL << 63)
315 /*
316  * Cacheability
317  * 0x0 - Device-nGnRnE
318  * 0x1 - Normal Inner Non-cacheable
319  * 0x2 - Normal Inner Read-allocate, Write-through
320  * 0x3 - Normal Inner Read-allocate, Write-back
321  * 0x4 - Normal Inner Write-allocate, Write-through
322  * 0x5 - Normal Inner Write-allocate, Write-back
323  * 0x6 - Normal Inner Read-allocate, Write-allocate, Write-through
324  * 0x7 - Normal Inner Read-allocate, Write-allocate, Write-back
325  */
326 #define		GITS_CBASER_CACHE_SHIFT		59
327 #define		GITS_CBASER_CACHE_DnGnRnE	0x0UL
328 #define		GITS_CBASER_CACHE_NIN		0x1UL
329 #define		GITS_CBASER_CACHE_NIRAWT	0x2UL
330 #define		GITS_CBASER_CACHE_NIRAWB	0x3UL
331 #define		GITS_CBASER_CACHE_NIWAWT	0x4UL
332 #define		GITS_CBASER_CACHE_NIWAWB	0x5UL
333 #define		GITS_CBASER_CACHE_NIRAWAWT	0x6UL
334 #define		GITS_CBASER_CACHE_NIRAWAWB	0x7UL
335 #define		GITS_CBASER_CACHE_MASK	(0x7UL << GITS_CBASER_CACHE_SHIFT)
336 /*
337  * Shareability
338  * 0x0 - Non-shareable
339  * 0x1 - Inner-shareable
340  * 0x2 - Outer-shareable
341  * 0x3 - Reserved. Threated as 0x0
342  */
343 #define		GITS_CBASER_SHARE_SHIFT		10
344 #define		GITS_CBASER_SHARE_NS		0x0UL
345 #define		GITS_CBASER_SHARE_IS		0x1UL
346 #define		GITS_CBASER_SHARE_OS		0x2UL
347 #define		GITS_CBASER_SHARE_RES		0x3UL
348 #define		GITS_CBASER_SHARE_MASK		\
349 		    (0x3UL << GITS_CBASER_SHARE_SHIFT)
350 
351 #define		GITS_CBASER_PA_SHIFT	12
352 #define		GITS_CBASER_PA_MASK	(0xFFFFFFFFFUL << GITS_CBASER_PA_SHIFT)
353 #define		GITS_CBASER_SIZE_SHIFT	0
354 #define		GITS_CBASER_SIZE_MASK	(0xFF << GITS_CBASER_SIZE_SHIFT)
355 #define		GITS_CBASER_SIZE(x)	\
356 		    (4096 * (((x) & GITS_CBASER_SIZE_MASK) + 1))
357 
358 #define	GITS_CWRITER		(0x0088)
359 #define	GITS_CREADR		(0x0090)
360 #define	 GITS_CREADR_STALL	1ul
361 
362 #define	 GITS_CMD_OFFSET(reg)	((reg) & 0xfffe0ul)
363 #define	 GITS_CMD_SIZE		0x20
364 
365 #define	GITS_BASER_BASE		(0x0100)
366 #define	GITS_BASER(x)		(GITS_BASER_BASE + (x) * 8)
367 
368 #define		GITS_BASER_VALID	(1UL << 63)
369 
370 #define		GITS_BASER_INDIRECT_SHIFT 62
371 #define		GITS_BASER_INDIRECT	(1UL << GITS_BASER_INDIRECT_SHIFT)
372 
373 #define		GITS_BASER_TYPE_SHIFT	56
374 #define		GITS_BASER_TYPE(x)	\
375 		    (((x) & GITS_BASER_TYPE_MASK) >> GITS_BASER_TYPE_SHIFT)
376 #define		GITS_BASER_TYPE_UNIMPL	0x0UL	/* Unimplemented */
377 #define		GITS_BASER_TYPE_DEV	0x1UL	/* Devices */
378 #define		GITS_BASER_TYPE_VP	0x2UL	/* Virtual Processors */
379 #define		GITS_BASER_TYPE_PP	0x3UL	/* Physical Processors */
380 #define		GITS_BASER_TYPE_IC	0x4UL	/* Interrupt Collections */
381 #define		GITS_BASER_TYPE_RES5	0x5UL	/* Reserved */
382 #define		GITS_BASER_TYPE_RES6	0x6UL	/* Reserved */
383 #define		GITS_BASER_TYPE_RES7	0x7UL	/* Reserved */
384 #define		GITS_BASER_TYPE_MASK	(0x7UL << GITS_BASER_TYPE_SHIFT)
385 /*
386  * Cacheability
387  * 0x0 - Non-cacheable, non-bufferable
388  * 0x1 - Non-cacheable
389  * 0x2 - Read-allocate, Write-through
390  * 0x3 - Read-allocate, Write-back
391  * 0x4 - Write-allocate, Write-through
392  * 0x5 - Write-allocate, Write-back
393  * 0x6 - Read-allocate, Write-allocate, Write-through
394  * 0x7 - Read-allocate, Write-allocate, Write-back
395  */
396 #define		GITS_BASER_CACHE_SHIFT	59
397 #define		GITS_BASER_CACHE_NCNB	0x0UL
398 #define		GITS_BASER_CACHE_NC	0x1UL
399 #define		GITS_BASER_CACHE_RAWT	0x2UL
400 #define		GITS_BASER_CACHE_RAWB	0x3UL
401 #define		GITS_BASER_CACHE_WAWT	0x4UL
402 #define		GITS_BASER_CACHE_WAWB	0x5UL
403 #define		GITS_BASER_CACHE_RAWAWT	0x6UL
404 #define		GITS_BASER_CACHE_RAWAWB	0x7UL
405 #define		GITS_BASER_CACHE_MASK	(0x7UL << GITS_BASER_CACHE_SHIFT)
406 
407 #define		GITS_BASER_ESIZE_SHIFT	48
408 #define		GITS_BASER_ESIZE_MASK	(0x1FUL << GITS_BASER_ESIZE_SHIFT)
409 #define		GITS_BASER_ESIZE(x)	\
410 		    ((((x) & GITS_BASER_ESIZE_MASK) >> GITS_BASER_ESIZE_SHIFT) + 1)
411 
412 #define		GITS_BASER_PA_SHIFT	12
413 #define		GITS_BASER_PA_MASK	(0xFFFFFFFFFUL << GITS_BASER_PA_SHIFT)
414 
415 /*
416  * Shareability
417  * 0x0 - Non-shareable
418  * 0x1 - Inner-shareable
419  * 0x2 - Outer-shareable
420  * 0x3 - Reserved. Threated as 0x0
421  */
422 #define		GITS_BASER_SHARE_SHIFT	10
423 #define		GITS_BASER_SHARE_NS	0x0UL
424 #define		GITS_BASER_SHARE_IS	0x1UL
425 #define		GITS_BASER_SHARE_OS	0x2UL
426 #define		GITS_BASER_SHARE_RES	0x3UL
427 #define		GITS_BASER_SHARE_MASK	(0x3UL << GITS_BASER_SHARE_SHIFT)
428 
429 #define		GITS_BASER_PSZ_SHIFT	8
430 #define		GITS_BASER_PSZ_4K	0x0UL
431 #define		GITS_BASER_PSZ_16K	0x1UL
432 #define		GITS_BASER_PSZ_64K	0x2UL
433 #define		GITS_BASER_PSZ_MASK	(0x3UL << GITS_BASER_PSZ_SHIFT)
434 
435 #define		GITS_BASER_SIZE_MASK	0xFFUL
436 
437 #define		GITS_BASER_NUM		8
438 /* Size of entries in a level 1 indirect table */
439 #define		GITS_INDIRECT_L1_ESIZE	8
440 
441 #define	GITS_TYPER		(0x0008)
442 #define		GITS_TYPER_HCC_SHIFT	24
443 #define		GITS_TYPER_PTA		(1UL << 19)
444 #define		GITS_TYPER_DEVB_SHIFT	13
445 #define		GITS_TYPER_DEVB_MASK	(0x1FUL << GITS_TYPER_DEVB_SHIFT)
446 /* Number of device identifiers implemented */
447 #define		GITS_TYPER_DEVB(x)	\
448 		    ((((x) & GITS_TYPER_DEVB_MASK) >> GITS_TYPER_DEVB_SHIFT) + 1)
449 #define		GITS_TYPER_ITTES_SHIFT	4
450 #define		GITS_TYPER_ITTES_MASK	(0xFUL << GITS_TYPER_ITTES_SHIFT)
451 /* Number of bytes per ITT Entry */
452 #define		GITS_TYPER_ITTES(x)	\
453 		    ((((x) & GITS_TYPER_ITTES_MASK) >> GITS_TYPER_ITTES_SHIFT) + 1)
454 
455 #define	GITS_TRANSLATER		(0x10040)
456 
457 /*
458  * LPI related
459  */
460 #define		LPI_CONF_PRIO_MASK	(0xFC)
461 #define		LPI_CONF_GROUP1		(1 << 1)
462 #define		LPI_CONF_ENABLE		(1 << 0)
463 
464 /*
465  * GIC 500 ITS tracking facility
466  */
467 #define		GITS_TRKCTLR		0xC000
468 #define		GITS_TRKR		0xC004
469 #define		GITS_TRKDIDR		0xC008
470 #define		GITS_TRKPIDR		0xC00C
471 #define		GITS_TRKVIDR		0xC010
472 #define		GITS_TRKTGTR		0xC014
473 #define		GITS_TRKICR 		0xC018
474 #define		GITS_TRKLCR		0xC018
475 
476 /*
477  * CPU interface
478  */
479 
480 /*
481  * Registers list (ICC_xyz_EL1):
482  *
483  * PMR     - Priority Mask Register
484  *		* interrupts of priority higher than specified
485  *		  in this mask will be signalled to the CPU.
486  *		  (0xff - lowest possible prio., 0x00 - highest prio.)
487  *
488  * CTLR    - Control Register
489  *		* controls behavior of the CPU interface and displays
490  *		  implemented features.
491  *
492  * IGRPEN1 - Interrupt Group 1 Enable Register
493  *
494  * IAR1    - Interrupt Acknowledge Register Group 1
495  *		* contains number of the highest priority pending
496  *		  interrupt from the Group 1.
497  *
498  * EOIR1   - End of Interrupt Register Group 1
499  *		* Writes inform CPU interface about completed Group 1
500  *		  interrupts processing.
501  */
502 
503 #define	gic_icc_write(reg, val)					\
504 do {								\
505 	WRITE_SPECIALREG(icc_ ##reg ##_el1, val);		\
506 	isb();							\
507 } while (0)
508 
509 #define	gic_icc_read(reg)					\
510 ({								\
511 	uint64_t val;						\
512 								\
513 	val = READ_SPECIALREG(icc_ ##reg ##_el1);		\
514 	(val);							\
515 })
516 
517 #define	gic_icc_set(reg, mask)					\
518 do {								\
519 	uint64_t val;						\
520 	val = gic_icc_read(reg);				\
521 	val |= (mask);						\
522 	gic_icc_write(reg, val);				\
523 } while (0)
524 
525 #define	gic_icc_clear(reg, mask)				\
526 do {								\
527 	uint64_t val;						\
528 	val = gic_icc_read(reg);				\
529 	val &= ~(mask);						\
530 	gic_icc_write(reg, val);				\
531 } while (0)
532 
533 #endif /* _GIC_V3_REG_H_ */
534