blob: 14979cca4e60e0fb408129bf612ad377b22fd580 [file] [log] [blame]
Achin Gupta92712a52015-09-03 14:18:02 +01001/*
Soby Mathew327548c2017-07-13 15:19:51 +01002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Achin Gupta92712a52015-09-03 14:18:02 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta92712a52015-09-03 14:18:02 +01005 */
6
7#ifndef __GIC_COMMON_H__
8#define __GIC_COMMON_H__
9
10/*******************************************************************************
11 * GIC Distributor interface general definitions
12 ******************************************************************************/
13/* Constants to categorise interrupts */
14#define MIN_SGI_ID 0
Jeenu Viswambharan522a4652017-09-22 08:32:09 +010015#define MIN_SEC_SGI_ID 8
Achin Gupta92712a52015-09-03 14:18:02 +010016#define MIN_PPI_ID 16
17#define MIN_SPI_ID 32
Soby Mathew327548c2017-07-13 15:19:51 +010018#define MAX_SPI_ID 1019
19
20#define TOTAL_SPI_INTR_NUM (MAX_SPI_ID - MIN_SPI_ID + 1)
21#define TOTAL_PCPU_INTR_NUM (MIN_SPI_ID - MIN_SGI_ID)
Achin Gupta92712a52015-09-03 14:18:02 +010022
23/* Mask for the priority field common to all GIC interfaces */
24#define GIC_PRI_MASK 0xff
25
26/* Constant to indicate a spurious interrupt in all GIC versions */
27#define GIC_SPURIOUS_INTERRUPT 1023
28
29/* Constants to categorise priorities */
30#define GIC_HIGHEST_SEC_PRIORITY 0
31#define GIC_LOWEST_SEC_PRIORITY 127
32#define GIC_HIGHEST_NS_PRIORITY 128
33#define GIC_LOWEST_NS_PRIORITY 254 /* 255 would disable an interrupt */
34
35/*******************************************************************************
36 * GIC Distributor interface register offsets that are common to GICv3 & GICv2
37 ******************************************************************************/
38#define GICD_CTLR 0x0
39#define GICD_TYPER 0x4
40#define GICD_IIDR 0x8
41#define GICD_IGROUPR 0x80
42#define GICD_ISENABLER 0x100
43#define GICD_ICENABLER 0x180
44#define GICD_ISPENDR 0x200
45#define GICD_ICPENDR 0x280
46#define GICD_ISACTIVER 0x300
47#define GICD_ICACTIVER 0x380
48#define GICD_IPRIORITYR 0x400
49#define GICD_ICFGR 0xc00
50#define GICD_NSACR 0xe00
51
52/* GICD_CTLR bit definitions */
53#define CTLR_ENABLE_G0_SHIFT 0
54#define CTLR_ENABLE_G0_MASK 0x1
55#define CTLR_ENABLE_G0_BIT (1 << CTLR_ENABLE_G0_SHIFT)
56
57
58/*******************************************************************************
59 * GIC Distributor interface register constants that are common to GICv3 & GICv2
60 ******************************************************************************/
61#define PIDR2_ARCH_REV_SHIFT 4
62#define PIDR2_ARCH_REV_MASK 0xf
63
64/* GICv3 revision as reported by the PIDR2 register */
65#define ARCH_REV_GICV3 0x3
66/* GICv2 revision as reported by the PIDR2 register */
67#define ARCH_REV_GICV2 0x2
68
69#define IGROUPR_SHIFT 5
70#define ISENABLER_SHIFT 5
71#define ICENABLER_SHIFT ISENABLER_SHIFT
72#define ISPENDR_SHIFT 5
73#define ICPENDR_SHIFT ISPENDR_SHIFT
74#define ISACTIVER_SHIFT 5
75#define ICACTIVER_SHIFT ISACTIVER_SHIFT
76#define IPRIORITYR_SHIFT 2
Jeenu Viswambharandce70b32017-09-22 08:32:09 +010077#define ITARGETSR_SHIFT 2
Achin Gupta92712a52015-09-03 14:18:02 +010078#define ICFGR_SHIFT 4
79#define NSACR_SHIFT 4
80
81/* GICD_TYPER shifts and masks */
82#define TYPER_IT_LINES_NO_SHIFT 0
83#define TYPER_IT_LINES_NO_MASK 0x1f
84
85/* Value used to initialize Normal world interrupt priorities four at a time */
86#define GICD_IPRIORITYR_DEF_VAL \
87 (GIC_HIGHEST_NS_PRIORITY | \
88 (GIC_HIGHEST_NS_PRIORITY << 8) | \
89 (GIC_HIGHEST_NS_PRIORITY << 16) | \
90 (GIC_HIGHEST_NS_PRIORITY << 24))
91
Achin Gupta92712a52015-09-03 14:18:02 +010092#endif /* __GIC_COMMON_H__ */