]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/intc/arm_gic_common.h
Move QOM typedefs and add missing includes
[mirror_qemu.git] / include / hw / intc / arm_gic_common.h
CommitLineData
83728796
AF
1/*
2 * ARM GIC support
3 *
4 * Copyright (c) 2012 Linaro Limited
5 * Written by Peter Maydell
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef HW_ARM_GIC_COMMON_H
22#define HW_ARM_GIC_COMMON_H
23
24#include "hw/sysbus.h"
db1015e9 25#include "qom/object.h"
83728796
AF
26
27/* Maximum number of possible interrupts, determined by the GIC architecture */
28#define GIC_MAXIRQ 1020
29/* First 32 are private to each CPU (SGIs and PPIs). */
30#define GIC_INTERNAL 32
41ab7b55 31#define GIC_NR_SGIS 16
83728796
AF
32/* Maximum number of possible CPU interfaces, determined by GIC architecture */
33#define GIC_NCPU 8
5773c049
LM
34/* Maximum number of possible CPU interfaces with their respective vCPU */
35#define GIC_NCPU_VCPU (GIC_NCPU * 2)
83728796 36
a9d477c4
CD
37#define MAX_NR_GROUP_PRIO 128
38#define GIC_NR_APRS (MAX_NR_GROUP_PRIO / 32)
39
822e9cc3
FA
40#define GIC_MIN_BPR 0
41#define GIC_MIN_ABPR (GIC_MIN_BPR + 1)
42
5773c049
LM
43/* Architectural maximum number of list registers in the virtual interface */
44#define GIC_MAX_LR 64
45
46/* Only 32 priority levels and 32 preemption levels in the vCPU interfaces */
47#define GIC_VIRT_MAX_GROUP_PRIO_BITS 5
48#define GIC_VIRT_MAX_NR_GROUP_PRIO (1 << GIC_VIRT_MAX_GROUP_PRIO_BITS)
49#define GIC_VIRT_NR_APRS (GIC_VIRT_MAX_NR_GROUP_PRIO / 32)
50
51#define GIC_VIRT_MIN_BPR 2
52#define GIC_VIRT_MIN_ABPR (GIC_VIRT_MIN_BPR + 1)
53
83728796
AF
54typedef struct gic_irq_state {
55 /* The enable bits are only banked for per-cpu interrupts. */
56 uint8_t enabled;
57 uint8_t pending;
58 uint8_t active;
59 uint8_t level;
60 bool model; /* 0 = N:N, 1 = 1:N */
04050c5c 61 bool edge_trigger; /* true: edge-triggered, false: level-triggered */
c27a5ba9 62 uint8_t group;
83728796
AF
63} gic_irq_state;
64
db1015e9 65struct GICState {
83728796
AF
66 /*< private >*/
67 SysBusDevice parent_obj;
68 /*< public >*/
69
70 qemu_irq parent_irq[GIC_NCPU];
44f55296 71 qemu_irq parent_fiq[GIC_NCPU];
6a228959
PM
72 qemu_irq parent_virq[GIC_NCPU];
73 qemu_irq parent_vfiq[GIC_NCPU];
5773c049
LM
74 qemu_irq maintenance_irq[GIC_NCPU];
75
679aa175
FA
76 /* GICD_CTLR; for a GIC with the security extensions the NS banked version
77 * of this register is just an alias of bit 1 of the S banked version.
78 */
79 uint32_t ctlr;
32951860
FA
80 /* GICC_CTLR; again, the NS banked version is just aliases of bits of
81 * the S banked register, so our state only needs to store the S version.
82 */
5773c049 83 uint32_t cpu_ctlr[GIC_NCPU_VCPU];
83728796
AF
84
85 gic_irq_state irq_state[GIC_MAXIRQ];
86 uint8_t irq_target[GIC_MAXIRQ];
87 uint8_t priority1[GIC_INTERNAL][GIC_NCPU];
88 uint8_t priority2[GIC_MAXIRQ - GIC_INTERNAL];
40d22500
CD
89 /* For each SGI on the target CPU, we store 8 bits
90 * indicating which source CPUs have made this SGI
91 * pending on the target CPU. These correspond to
92 * the bytes in the GIC_SPENDSGIR* registers as
93 * read by the target CPU.
94 */
95 uint8_t sgi_pending[GIC_NR_SGIS][GIC_NCPU];
83728796 96
5773c049
LM
97 uint16_t priority_mask[GIC_NCPU_VCPU];
98 uint16_t running_priority[GIC_NCPU_VCPU];
99 uint16_t current_pending[GIC_NCPU_VCPU];
11411489 100 uint32_t n_prio_bits;
83728796 101
822e9cc3
FA
102 /* If we present the GICv2 without security extensions to a guest,
103 * the guest can configure the GICC_CTLR to configure group 1 binary point
104 * in the abpr.
105 * For a GIC with Security Extensions we use use bpr for the
106 * secure copy and abpr as storage for the non-secure copy of the register.
aa7d461a 107 */
5773c049
LM
108 uint8_t bpr[GIC_NCPU_VCPU];
109 uint8_t abpr[GIC_NCPU_VCPU];
aa7d461a 110
a9d477c4
CD
111 /* The APR is implementation defined, so we choose a layout identical to
112 * the KVM ABI layout for QEMU's implementation of the gic:
113 * If an interrupt for preemption level X is active, then
114 * APRn[X mod 32] == 0b1, where n = X / 32
115 * otherwise the bit is clear.
a9d477c4
CD
116 */
117 uint32_t apr[GIC_NR_APRS][GIC_NCPU];
51fd06e0 118 uint32_t nsapr[GIC_NR_APRS][GIC_NCPU];
a9d477c4 119
5773c049
LM
120 /* Virtual interface control registers */
121 uint32_t h_hcr[GIC_NCPU];
122 uint32_t h_misr[GIC_NCPU];
123 uint32_t h_lr[GIC_MAX_LR][GIC_NCPU];
124 uint32_t h_apr[GIC_NCPU];
125
126 /* Number of LRs implemented in this GIC instance */
127 uint32_t num_lrs;
128
83728796
AF
129 uint32_t num_cpu;
130
131 MemoryRegion iomem; /* Distributor */
132 /* This is just so we can have an opaque pointer which identifies
133 * both this GIC and which CPU interface we should be accessing.
134 */
135 struct GICState *backref[GIC_NCPU];
136 MemoryRegion cpuiomem[GIC_NCPU + 1]; /* CPU interfaces */
5773c049
LM
137 MemoryRegion vifaceiomem[GIC_NCPU + 1]; /* Virtual interfaces */
138 MemoryRegion vcpuiomem; /* vCPU interface */
139
83728796
AF
140 uint32_t num_irq;
141 uint32_t revision;
5543d1ab 142 bool security_extn;
5773c049 143 bool virt_extn;
8ff41f39 144 bool irq_reset_nonsecure; /* configure IRQs as group 1 (NS) on reset? */
1da41cc1 145 int dev_fd; /* kvm device fd if backed by kvm vgic support */
24182fbc 146 Error *migration_blocker;
db1015e9
EH
147};
148typedef struct GICState GICState;
83728796
AF
149
150#define TYPE_ARM_GIC_COMMON "arm_gic_common"
db1015e9 151typedef struct ARMGICCommonClass ARMGICCommonClass;
83728796
AF
152#define ARM_GIC_COMMON(obj) \
153 OBJECT_CHECK(GICState, (obj), TYPE_ARM_GIC_COMMON)
154#define ARM_GIC_COMMON_CLASS(klass) \
155 OBJECT_CLASS_CHECK(ARMGICCommonClass, (klass), TYPE_ARM_GIC_COMMON)
156#define ARM_GIC_COMMON_GET_CLASS(obj) \
157 OBJECT_GET_CLASS(ARMGICCommonClass, (obj), TYPE_ARM_GIC_COMMON)
158
db1015e9 159struct ARMGICCommonClass {
83728796
AF
160 /*< private >*/
161 SysBusDeviceClass parent_class;
162 /*< public >*/
163
164 void (*pre_save)(GICState *s);
165 void (*post_load)(GICState *s);
db1015e9 166};
83728796 167
7926c210 168void gic_init_irqs_and_mmio(GICState *s, qemu_irq_handler handler,
5773c049
LM
169 const MemoryRegionOps *ops,
170 const MemoryRegionOps *virt_ops);
7926c210 171
83728796 172#endif