]> Git Repo - qemu.git/blame - hw/intc/arm_gic_common.c
Merge branch 'block-next' into HEAD
[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
47b43a1f 21#include "gic_internal.h"
1e8cae4d 22
2e19a703 23static void gic_pre_save(void *opaque)
1e8cae4d 24{
fae15286 25 GICState *s = (GICState *)opaque;
9ecb9926 26 ARMGICCommonClass *c = ARM_GIC_COMMON_GET_CLASS(s);
1e8cae4d 27
9ecb9926
PM
28 if (c->pre_save) {
29 c->pre_save(s);
30 }
1e8cae4d
PM
31}
32
2e19a703 33static int gic_post_load(void *opaque, int version_id)
1e8cae4d 34{
fae15286 35 GICState *s = (GICState *)opaque;
9ecb9926 36 ARMGICCommonClass *c = ARM_GIC_COMMON_GET_CLASS(s);
1e8cae4d 37
9ecb9926
PM
38 if (c->post_load) {
39 c->post_load(s);
40 }
1e8cae4d
PM
41 return 0;
42}
43
2e19a703
PM
44static const VMStateDescription vmstate_gic_irq_state = {
45 .name = "arm_gic_irq_state",
46 .version_id = 1,
47 .minimum_version_id = 1,
48 .fields = (VMStateField[]) {
49 VMSTATE_UINT8(enabled, gic_irq_state),
50 VMSTATE_UINT8(pending, gic_irq_state),
51 VMSTATE_UINT8(active, gic_irq_state),
52 VMSTATE_UINT8(level, gic_irq_state),
53 VMSTATE_BOOL(model, gic_irq_state),
04050c5c 54 VMSTATE_BOOL(edge_trigger, gic_irq_state),
c27a5ba9 55 VMSTATE_UINT8(group, gic_irq_state),
2e19a703
PM
56 VMSTATE_END_OF_LIST()
57 }
58};
59
60static const VMStateDescription vmstate_gic = {
61 .name = "arm_gic",
32951860
FA
62 .version_id = 10,
63 .minimum_version_id = 10,
2e19a703
PM
64 .pre_save = gic_pre_save,
65 .post_load = gic_post_load,
66 .fields = (VMStateField[]) {
679aa175 67 VMSTATE_UINT32(ctlr, GICState),
32951860 68 VMSTATE_UINT32_ARRAY(cpu_ctlr, GICState, GIC_NCPU),
2e19a703
PM
69 VMSTATE_STRUCT_ARRAY(irq_state, GICState, GIC_MAXIRQ, 1,
70 vmstate_gic_irq_state, gic_irq_state),
71 VMSTATE_UINT8_ARRAY(irq_target, GICState, GIC_MAXIRQ),
83728796 72 VMSTATE_UINT8_2DARRAY(priority1, GICState, GIC_INTERNAL, GIC_NCPU),
2e19a703 73 VMSTATE_UINT8_ARRAY(priority2, GICState, GIC_MAXIRQ - GIC_INTERNAL),
83728796 74 VMSTATE_UINT16_2DARRAY(last_active, GICState, GIC_MAXIRQ, GIC_NCPU),
40d22500 75 VMSTATE_UINT8_2DARRAY(sgi_pending, GICState, GIC_NR_SGIS, GIC_NCPU),
83728796
AF
76 VMSTATE_UINT16_ARRAY(priority_mask, GICState, GIC_NCPU),
77 VMSTATE_UINT16_ARRAY(running_irq, GICState, GIC_NCPU),
78 VMSTATE_UINT16_ARRAY(running_priority, GICState, GIC_NCPU),
79 VMSTATE_UINT16_ARRAY(current_pending, GICState, GIC_NCPU),
aa7d461a
CD
80 VMSTATE_UINT8_ARRAY(bpr, GICState, GIC_NCPU),
81 VMSTATE_UINT8_ARRAY(abpr, GICState, GIC_NCPU),
a9d477c4 82 VMSTATE_UINT32_2DARRAY(apr, GICState, GIC_NR_APRS, GIC_NCPU),
2e19a703
PM
83 VMSTATE_END_OF_LIST()
84 }
85};
86
7926c210
PF
87void gic_init_irqs_and_mmio(GICState *s, qemu_irq_handler handler,
88 const MemoryRegionOps *ops)
89{
90 SysBusDevice *sbd = SYS_BUS_DEVICE(s);
91 int i = s->num_irq - GIC_INTERNAL;
92
93 /* For the GIC, also expose incoming GPIO lines for PPIs for each CPU.
94 * GPIO array layout is thus:
95 * [0..N-1] SPIs
96 * [N..N+31] PPIs for CPU 0
97 * [N+32..N+63] PPIs for CPU 1
98 * ...
99 */
100 if (s->revision != REV_NVIC) {
101 i += (GIC_INTERNAL * s->num_cpu);
102 }
103 qdev_init_gpio_in(DEVICE(s), handler, i);
104
105 for (i = 0; i < s->num_cpu; i++) {
106 sysbus_init_irq(sbd, &s->parent_irq[i]);
107 }
108 for (i = 0; i < s->num_cpu; i++) {
109 sysbus_init_irq(sbd, &s->parent_fiq[i]);
110 }
111
112 /* Distributor */
113 memory_region_init_io(&s->iomem, OBJECT(s), ops, s, "gic_dist", 0x1000);
114 sysbus_init_mmio(sbd, &s->iomem);
115
116 if (s->revision != REV_NVIC) {
117 /* This is the main CPU interface "for this core". It is always
118 * present because it is required by both software emulation and KVM.
119 * NVIC is not handled here because its CPU interface is different,
120 * neither it can use KVM.
121 */
122 memory_region_init_io(&s->cpuiomem[0], OBJECT(s), ops ? &ops[1] : NULL,
123 s, "gic_cpu", s->revision == 2 ? 0x1000 : 0x100);
124 sysbus_init_mmio(sbd, &s->cpuiomem[0]);
125 }
126}
127
53111180 128static void arm_gic_common_realize(DeviceState *dev, Error **errp)
1e8cae4d 129{
53111180 130 GICState *s = ARM_GIC_COMMON(dev);
1e8cae4d
PM
131 int num_irq = s->num_irq;
132
83728796 133 if (s->num_cpu > GIC_NCPU) {
53111180 134 error_setg(errp, "requested %u CPUs exceeds GIC maximum %d",
83728796 135 s->num_cpu, GIC_NCPU);
53111180 136 return;
1e8cae4d
PM
137 }
138 s->num_irq += GIC_BASE_IRQ;
139 if (s->num_irq > GIC_MAXIRQ) {
53111180
PM
140 error_setg(errp,
141 "requested %u interrupt lines exceeds GIC maximum %d",
142 num_irq, GIC_MAXIRQ);
143 return;
1e8cae4d
PM
144 }
145 /* ITLinesNumber is represented as (N / 32) - 1 (see
146 * gic_dist_readb) so this is an implementation imposed
147 * restriction, not an architectural one:
148 */
149 if (s->num_irq < 32 || (s->num_irq % 32)) {
53111180
PM
150 error_setg(errp,
151 "%d interrupt lines unsupported: not divisible by 32",
152 num_irq);
153 return;
1e8cae4d 154 }
5543d1ab
FA
155
156 if (s->security_extn &&
157 (s->revision == REV_11MPCORE || s->revision == REV_NVIC)) {
158 error_setg(errp, "this GIC revision does not implement "
159 "the security extensions");
160 return;
161 }
1e8cae4d
PM
162}
163
164static void arm_gic_common_reset(DeviceState *dev)
165{
285b4432 166 GICState *s = ARM_GIC_COMMON(dev);
12dc273e 167 int i, j;
1e8cae4d
PM
168 memset(s->irq_state, 0, GIC_MAXIRQ * sizeof(gic_irq_state));
169 for (i = 0 ; i < s->num_cpu; i++) {
ee3f0956
PM
170 if (s->revision == REV_11MPCORE) {
171 s->priority_mask[i] = 0xf0;
172 } else {
173 s->priority_mask[i] = 0;
174 }
1e8cae4d
PM
175 s->current_pending[i] = 1023;
176 s->running_irq[i] = 1023;
177 s->running_priority[i] = 0x100;
32951860 178 s->cpu_ctlr[i] = 0;
12dc273e
PM
179 s->bpr[i] = GIC_MIN_BPR;
180 s->abpr[i] = GIC_MIN_ABPR;
181 for (j = 0; j < GIC_INTERNAL; j++) {
182 s->priority1[j][i] = 0;
183 }
184 for (j = 0; j < GIC_NR_SGIS; j++) {
185 s->sgi_pending[j][i] = 0;
186 }
1e8cae4d 187 }
93b5f6f1 188 for (i = 0; i < GIC_NR_SGIS; i++) {
1e8cae4d 189 GIC_SET_ENABLED(i, ALL_CPU_MASK);
04050c5c 190 GIC_SET_EDGE_TRIGGER(i);
1e8cae4d 191 }
12dc273e
PM
192
193 for (i = 0; i < ARRAY_SIZE(s->priority2); i++) {
194 s->priority2[i] = 0;
195 }
196
197 for (i = 0; i < GIC_MAXIRQ; i++) {
1e8cae4d 198 /* For uniprocessor GICs all interrupts always target the sole CPU */
12dc273e 199 if (s->num_cpu == 1) {
1e8cae4d 200 s->irq_target[i] = 1;
12dc273e
PM
201 } else {
202 s->irq_target[i] = 0;
1e8cae4d
PM
203 }
204 }
679aa175 205 s->ctlr = 0;
1e8cae4d
PM
206}
207
208static Property arm_gic_common_properties[] = {
fae15286
PM
209 DEFINE_PROP_UINT32("num-cpu", GICState, num_cpu, 1),
210 DEFINE_PROP_UINT32("num-irq", GICState, num_irq, 32),
1e8cae4d
PM
211 /* Revision can be 1 or 2 for GIC architecture specification
212 * versions 1 or 2, or 0 to indicate the legacy 11MPCore GIC.
213 * (Internally, 0xffffffff also indicates "not a GIC but an NVIC".)
214 */
fae15286 215 DEFINE_PROP_UINT32("revision", GICState, revision, 1),
5543d1ab
FA
216 /* True if the GIC should implement the security extensions */
217 DEFINE_PROP_BOOL("has-security-extensions", GICState, security_extn, 0),
1e8cae4d
PM
218 DEFINE_PROP_END_OF_LIST(),
219};
220
221static void arm_gic_common_class_init(ObjectClass *klass, void *data)
222{
1e8cae4d 223 DeviceClass *dc = DEVICE_CLASS(klass);
53111180 224
1e8cae4d 225 dc->reset = arm_gic_common_reset;
53111180 226 dc->realize = arm_gic_common_realize;
1e8cae4d 227 dc->props = arm_gic_common_properties;
2e19a703 228 dc->vmsd = &vmstate_gic;
1e8cae4d
PM
229}
230
8c43a6f0 231static const TypeInfo arm_gic_common_type = {
1e8cae4d
PM
232 .name = TYPE_ARM_GIC_COMMON,
233 .parent = TYPE_SYS_BUS_DEVICE,
fae15286 234 .instance_size = sizeof(GICState),
1e8cae4d
PM
235 .class_size = sizeof(ARMGICCommonClass),
236 .class_init = arm_gic_common_class_init,
237 .abstract = true,
238};
239
240static void register_types(void)
241{
242 type_register_static(&arm_gic_common_type);
243}
244
245type_init(register_types)
This page took 0.24303 seconds and 4 git commands to generate.