]> Git Repo - qemu.git/blame - hw/intc/arm_gic_common.c
armv7m_nvic: keep a pointer to the CPU
[qemu.git] / hw / intc / arm_gic_common.c
CommitLineData
1e8cae4d
PM
1/*
2 * ARM GIC support - common bits of emulated and KVM kernel model
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
8ef94f0b 21#include "qemu/osdep.h"
da34e65c 22#include "qapi/error.h"
47b43a1f 23#include "gic_internal.h"
8ff41f39 24#include "hw/arm/linux-boot-if.h"
1e8cae4d 25
2e19a703 26static void gic_pre_save(void *opaque)
1e8cae4d 27{
fae15286 28 GICState *s = (GICState *)opaque;
9ecb9926 29 ARMGICCommonClass *c = ARM_GIC_COMMON_GET_CLASS(s);
1e8cae4d 30
9ecb9926
PM
31 if (c->pre_save) {
32 c->pre_save(s);
33 }
1e8cae4d
PM
34}
35
2e19a703 36static int gic_post_load(void *opaque, int version_id)
1e8cae4d 37{
fae15286 38 GICState *s = (GICState *)opaque;
9ecb9926 39 ARMGICCommonClass *c = ARM_GIC_COMMON_GET_CLASS(s);
1e8cae4d 40
9ecb9926
PM
41 if (c->post_load) {
42 c->post_load(s);
43 }
1e8cae4d
PM
44 return 0;
45}
46
2e19a703
PM
47static const VMStateDescription vmstate_gic_irq_state = {
48 .name = "arm_gic_irq_state",
49 .version_id = 1,
50 .minimum_version_id = 1,
51 .fields = (VMStateField[]) {
52 VMSTATE_UINT8(enabled, gic_irq_state),
53 VMSTATE_UINT8(pending, gic_irq_state),
54 VMSTATE_UINT8(active, gic_irq_state),
55 VMSTATE_UINT8(level, gic_irq_state),
56 VMSTATE_BOOL(model, gic_irq_state),
04050c5c 57 VMSTATE_BOOL(edge_trigger, gic_irq_state),
c27a5ba9 58 VMSTATE_UINT8(group, gic_irq_state),
2e19a703
PM
59 VMSTATE_END_OF_LIST()
60 }
61};
62
63static const VMStateDescription vmstate_gic = {
64 .name = "arm_gic",
72889c8a
PM
65 .version_id = 12,
66 .minimum_version_id = 12,
2e19a703
PM
67 .pre_save = gic_pre_save,
68 .post_load = gic_post_load,
69 .fields = (VMStateField[]) {
679aa175 70 VMSTATE_UINT32(ctlr, GICState),
32951860 71 VMSTATE_UINT32_ARRAY(cpu_ctlr, GICState, GIC_NCPU),
2e19a703
PM
72 VMSTATE_STRUCT_ARRAY(irq_state, GICState, GIC_MAXIRQ, 1,
73 vmstate_gic_irq_state, gic_irq_state),
74 VMSTATE_UINT8_ARRAY(irq_target, GICState, GIC_MAXIRQ),
83728796 75 VMSTATE_UINT8_2DARRAY(priority1, GICState, GIC_INTERNAL, GIC_NCPU),
2e19a703 76 VMSTATE_UINT8_ARRAY(priority2, GICState, GIC_MAXIRQ - GIC_INTERNAL),
40d22500 77 VMSTATE_UINT8_2DARRAY(sgi_pending, GICState, GIC_NR_SGIS, GIC_NCPU),
83728796 78 VMSTATE_UINT16_ARRAY(priority_mask, GICState, GIC_NCPU),
83728796
AF
79 VMSTATE_UINT16_ARRAY(running_priority, GICState, GIC_NCPU),
80 VMSTATE_UINT16_ARRAY(current_pending, GICState, GIC_NCPU),
aa7d461a
CD
81 VMSTATE_UINT8_ARRAY(bpr, GICState, GIC_NCPU),
82 VMSTATE_UINT8_ARRAY(abpr, GICState, GIC_NCPU),
a9d477c4 83 VMSTATE_UINT32_2DARRAY(apr, GICState, GIC_NR_APRS, GIC_NCPU),
51fd06e0 84 VMSTATE_UINT32_2DARRAY(nsapr, GICState, GIC_NR_APRS, GIC_NCPU),
2e19a703
PM
85 VMSTATE_END_OF_LIST()
86 }
87};
88
7926c210
PF
89void gic_init_irqs_and_mmio(GICState *s, qemu_irq_handler handler,
90 const MemoryRegionOps *ops)
91{
92 SysBusDevice *sbd = SYS_BUS_DEVICE(s);
93 int i = s->num_irq - GIC_INTERNAL;
94
95 /* For the GIC, also expose incoming GPIO lines for PPIs for each CPU.
96 * GPIO array layout is thus:
97 * [0..N-1] SPIs
98 * [N..N+31] PPIs for CPU 0
99 * [N+32..N+63] PPIs for CPU 1
100 * ...
101 */
102 if (s->revision != REV_NVIC) {
103 i += (GIC_INTERNAL * s->num_cpu);
104 }
105 qdev_init_gpio_in(DEVICE(s), handler, i);
106
107 for (i = 0; i < s->num_cpu; i++) {
108 sysbus_init_irq(sbd, &s->parent_irq[i]);
109 }
110 for (i = 0; i < s->num_cpu; i++) {
111 sysbus_init_irq(sbd, &s->parent_fiq[i]);
112 }
6a228959
PM
113 for (i = 0; i < s->num_cpu; i++) {
114 sysbus_init_irq(sbd, &s->parent_virq[i]);
115 }
116 for (i = 0; i < s->num_cpu; i++) {
117 sysbus_init_irq(sbd, &s->parent_vfiq[i]);
118 }
7926c210
PF
119
120 /* Distributor */
121 memory_region_init_io(&s->iomem, OBJECT(s), ops, s, "gic_dist", 0x1000);
122 sysbus_init_mmio(sbd, &s->iomem);
123
124 if (s->revision != REV_NVIC) {
125 /* This is the main CPU interface "for this core". It is always
126 * present because it is required by both software emulation and KVM.
127 * NVIC is not handled here because its CPU interface is different,
128 * neither it can use KVM.
129 */
130 memory_region_init_io(&s->cpuiomem[0], OBJECT(s), ops ? &ops[1] : NULL,
a55c910e 131 s, "gic_cpu", s->revision == 2 ? 0x2000 : 0x100);
7926c210
PF
132 sysbus_init_mmio(sbd, &s->cpuiomem[0]);
133 }
134}
135
53111180 136static void arm_gic_common_realize(DeviceState *dev, Error **errp)
1e8cae4d 137{
53111180 138 GICState *s = ARM_GIC_COMMON(dev);
1e8cae4d
PM
139 int num_irq = s->num_irq;
140
83728796 141 if (s->num_cpu > GIC_NCPU) {
53111180 142 error_setg(errp, "requested %u CPUs exceeds GIC maximum %d",
83728796 143 s->num_cpu, GIC_NCPU);
53111180 144 return;
1e8cae4d
PM
145 }
146 s->num_irq += GIC_BASE_IRQ;
147 if (s->num_irq > GIC_MAXIRQ) {
53111180
PM
148 error_setg(errp,
149 "requested %u interrupt lines exceeds GIC maximum %d",
150 num_irq, GIC_MAXIRQ);
151 return;
1e8cae4d
PM
152 }
153 /* ITLinesNumber is represented as (N / 32) - 1 (see
154 * gic_dist_readb) so this is an implementation imposed
155 * restriction, not an architectural one:
156 */
157 if (s->num_irq < 32 || (s->num_irq % 32)) {
53111180
PM
158 error_setg(errp,
159 "%d interrupt lines unsupported: not divisible by 32",
160 num_irq);
161 return;
1e8cae4d 162 }
5543d1ab
FA
163
164 if (s->security_extn &&
165 (s->revision == REV_11MPCORE || s->revision == REV_NVIC)) {
166 error_setg(errp, "this GIC revision does not implement "
167 "the security extensions");
168 return;
169 }
1e8cae4d
PM
170}
171
172static void arm_gic_common_reset(DeviceState *dev)
173{
285b4432 174 GICState *s = ARM_GIC_COMMON(dev);
12dc273e 175 int i, j;
8ff41f39
PM
176 int resetprio;
177
178 /* If we're resetting a TZ-aware GIC as if secure firmware
179 * had set it up ready to start a kernel in non-secure,
180 * we need to set interrupt priorities to a "zero for the
181 * NS view" value. This is particularly critical for the
182 * priority_mask[] values, because if they are zero then NS
183 * code cannot ever rewrite the priority to anything else.
184 */
185 if (s->security_extn && s->irq_reset_nonsecure) {
186 resetprio = 0x80;
187 } else {
188 resetprio = 0;
189 }
190
1e8cae4d
PM
191 memset(s->irq_state, 0, GIC_MAXIRQ * sizeof(gic_irq_state));
192 for (i = 0 ; i < s->num_cpu; i++) {
ee3f0956
PM
193 if (s->revision == REV_11MPCORE) {
194 s->priority_mask[i] = 0xf0;
195 } else {
8ff41f39 196 s->priority_mask[i] = resetprio;
ee3f0956 197 }
1e8cae4d 198 s->current_pending[i] = 1023;
1e8cae4d 199 s->running_priority[i] = 0x100;
32951860 200 s->cpu_ctlr[i] = 0;
12dc273e
PM
201 s->bpr[i] = GIC_MIN_BPR;
202 s->abpr[i] = GIC_MIN_ABPR;
203 for (j = 0; j < GIC_INTERNAL; j++) {
8ff41f39 204 s->priority1[j][i] = resetprio;
12dc273e
PM
205 }
206 for (j = 0; j < GIC_NR_SGIS; j++) {
207 s->sgi_pending[j][i] = 0;
208 }
1e8cae4d 209 }
93b5f6f1 210 for (i = 0; i < GIC_NR_SGIS; i++) {
1e8cae4d 211 GIC_SET_ENABLED(i, ALL_CPU_MASK);
04050c5c 212 GIC_SET_EDGE_TRIGGER(i);
1e8cae4d 213 }
12dc273e
PM
214
215 for (i = 0; i < ARRAY_SIZE(s->priority2); i++) {
8ff41f39 216 s->priority2[i] = resetprio;
12dc273e
PM
217 }
218
219 for (i = 0; i < GIC_MAXIRQ; i++) {
1e8cae4d 220 /* For uniprocessor GICs all interrupts always target the sole CPU */
12dc273e 221 if (s->num_cpu == 1) {
1e8cae4d 222 s->irq_target[i] = 1;
12dc273e
PM
223 } else {
224 s->irq_target[i] = 0;
1e8cae4d
PM
225 }
226 }
8ff41f39
PM
227 if (s->security_extn && s->irq_reset_nonsecure) {
228 for (i = 0; i < GIC_MAXIRQ; i++) {
229 GIC_SET_GROUP(i, ALL_CPU_MASK);
230 }
231 }
232
679aa175 233 s->ctlr = 0;
1e8cae4d
PM
234}
235
8ff41f39
PM
236static void arm_gic_common_linux_init(ARMLinuxBootIf *obj,
237 bool secure_boot)
238{
239 GICState *s = ARM_GIC_COMMON(obj);
240
241 if (s->security_extn && !secure_boot) {
242 /* We're directly booting a kernel into NonSecure. If this GIC
243 * implements the security extensions then we must configure it
244 * to have all the interrupts be NonSecure (this is a job that
245 * is done by the Secure boot firmware in real hardware, and in
246 * this mode QEMU is acting as a minimalist firmware-and-bootloader
247 * equivalent).
248 */
249 s->irq_reset_nonsecure = true;
250 }
251}
252
1e8cae4d 253static Property arm_gic_common_properties[] = {
fae15286
PM
254 DEFINE_PROP_UINT32("num-cpu", GICState, num_cpu, 1),
255 DEFINE_PROP_UINT32("num-irq", GICState, num_irq, 32),
1e8cae4d
PM
256 /* Revision can be 1 or 2 for GIC architecture specification
257 * versions 1 or 2, or 0 to indicate the legacy 11MPCore GIC.
258 * (Internally, 0xffffffff also indicates "not a GIC but an NVIC".)
259 */
fae15286 260 DEFINE_PROP_UINT32("revision", GICState, revision, 1),
5543d1ab
FA
261 /* True if the GIC should implement the security extensions */
262 DEFINE_PROP_BOOL("has-security-extensions", GICState, security_extn, 0),
1e8cae4d
PM
263 DEFINE_PROP_END_OF_LIST(),
264};
265
266static void arm_gic_common_class_init(ObjectClass *klass, void *data)
267{
1e8cae4d 268 DeviceClass *dc = DEVICE_CLASS(klass);
8ff41f39 269 ARMLinuxBootIfClass *albifc = ARM_LINUX_BOOT_IF_CLASS(klass);
53111180 270
1e8cae4d 271 dc->reset = arm_gic_common_reset;
53111180 272 dc->realize = arm_gic_common_realize;
1e8cae4d 273 dc->props = arm_gic_common_properties;
2e19a703 274 dc->vmsd = &vmstate_gic;
8ff41f39 275 albifc->arm_linux_init = arm_gic_common_linux_init;
1e8cae4d
PM
276}
277
8c43a6f0 278static const TypeInfo arm_gic_common_type = {
1e8cae4d
PM
279 .name = TYPE_ARM_GIC_COMMON,
280 .parent = TYPE_SYS_BUS_DEVICE,
fae15286 281 .instance_size = sizeof(GICState),
1e8cae4d
PM
282 .class_size = sizeof(ARMGICCommonClass),
283 .class_init = arm_gic_common_class_init,
284 .abstract = true,
8ff41f39
PM
285 .interfaces = (InterfaceInfo []) {
286 { TYPE_ARM_LINUX_BOOT_IF },
287 { },
288 },
1e8cae4d
PM
289};
290
291static void register_types(void)
292{
293 type_register_static(&arm_gic_common_type);
294}
295
296type_init(register_types)
This page took 0.296201 seconds and 4 git commands to generate.