]>
Commit | Line | Data |
---|---|---|
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 | 23 | static 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 | 33 | static 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 |
44 | static 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), |
2e19a703 PM |
55 | VMSTATE_END_OF_LIST() |
56 | } | |
57 | }; | |
58 | ||
59 | static const VMStateDescription vmstate_gic = { | |
60 | .name = "arm_gic", | |
a9d477c4 CD |
61 | .version_id = 7, |
62 | .minimum_version_id = 7, | |
2e19a703 PM |
63 | .pre_save = gic_pre_save, |
64 | .post_load = gic_post_load, | |
65 | .fields = (VMStateField[]) { | |
66 | VMSTATE_BOOL(enabled, GICState), | |
83728796 | 67 | VMSTATE_BOOL_ARRAY(cpu_enabled, GICState, GIC_NCPU), |
2e19a703 PM |
68 | VMSTATE_STRUCT_ARRAY(irq_state, GICState, GIC_MAXIRQ, 1, |
69 | vmstate_gic_irq_state, gic_irq_state), | |
70 | VMSTATE_UINT8_ARRAY(irq_target, GICState, GIC_MAXIRQ), | |
83728796 | 71 | VMSTATE_UINT8_2DARRAY(priority1, GICState, GIC_INTERNAL, GIC_NCPU), |
2e19a703 | 72 | VMSTATE_UINT8_ARRAY(priority2, GICState, GIC_MAXIRQ - GIC_INTERNAL), |
83728796 | 73 | VMSTATE_UINT16_2DARRAY(last_active, GICState, GIC_MAXIRQ, GIC_NCPU), |
40d22500 | 74 | VMSTATE_UINT8_2DARRAY(sgi_pending, GICState, GIC_NR_SGIS, GIC_NCPU), |
83728796 AF |
75 | VMSTATE_UINT16_ARRAY(priority_mask, GICState, GIC_NCPU), |
76 | VMSTATE_UINT16_ARRAY(running_irq, GICState, GIC_NCPU), | |
77 | VMSTATE_UINT16_ARRAY(running_priority, GICState, GIC_NCPU), | |
78 | VMSTATE_UINT16_ARRAY(current_pending, GICState, GIC_NCPU), | |
aa7d461a CD |
79 | VMSTATE_UINT8_ARRAY(bpr, GICState, GIC_NCPU), |
80 | VMSTATE_UINT8_ARRAY(abpr, GICState, GIC_NCPU), | |
a9d477c4 | 81 | VMSTATE_UINT32_2DARRAY(apr, GICState, GIC_NR_APRS, GIC_NCPU), |
2e19a703 PM |
82 | VMSTATE_END_OF_LIST() |
83 | } | |
84 | }; | |
85 | ||
53111180 | 86 | static void arm_gic_common_realize(DeviceState *dev, Error **errp) |
1e8cae4d | 87 | { |
53111180 | 88 | GICState *s = ARM_GIC_COMMON(dev); |
1e8cae4d PM |
89 | int num_irq = s->num_irq; |
90 | ||
83728796 | 91 | if (s->num_cpu > GIC_NCPU) { |
53111180 | 92 | error_setg(errp, "requested %u CPUs exceeds GIC maximum %d", |
83728796 | 93 | s->num_cpu, GIC_NCPU); |
53111180 | 94 | return; |
1e8cae4d PM |
95 | } |
96 | s->num_irq += GIC_BASE_IRQ; | |
97 | if (s->num_irq > GIC_MAXIRQ) { | |
53111180 PM |
98 | error_setg(errp, |
99 | "requested %u interrupt lines exceeds GIC maximum %d", | |
100 | num_irq, GIC_MAXIRQ); | |
101 | return; | |
1e8cae4d PM |
102 | } |
103 | /* ITLinesNumber is represented as (N / 32) - 1 (see | |
104 | * gic_dist_readb) so this is an implementation imposed | |
105 | * restriction, not an architectural one: | |
106 | */ | |
107 | if (s->num_irq < 32 || (s->num_irq % 32)) { | |
53111180 PM |
108 | error_setg(errp, |
109 | "%d interrupt lines unsupported: not divisible by 32", | |
110 | num_irq); | |
111 | return; | |
1e8cae4d | 112 | } |
1e8cae4d PM |
113 | } |
114 | ||
115 | static void arm_gic_common_reset(DeviceState *dev) | |
116 | { | |
285b4432 | 117 | GICState *s = ARM_GIC_COMMON(dev); |
1e8cae4d PM |
118 | int i; |
119 | memset(s->irq_state, 0, GIC_MAXIRQ * sizeof(gic_irq_state)); | |
120 | for (i = 0 ; i < s->num_cpu; i++) { | |
ee3f0956 PM |
121 | if (s->revision == REV_11MPCORE) { |
122 | s->priority_mask[i] = 0xf0; | |
123 | } else { | |
124 | s->priority_mask[i] = 0; | |
125 | } | |
1e8cae4d PM |
126 | s->current_pending[i] = 1023; |
127 | s->running_irq[i] = 1023; | |
128 | s->running_priority[i] = 0x100; | |
c3037774 | 129 | s->cpu_enabled[i] = false; |
1e8cae4d | 130 | } |
93b5f6f1 | 131 | for (i = 0; i < GIC_NR_SGIS; i++) { |
1e8cae4d | 132 | GIC_SET_ENABLED(i, ALL_CPU_MASK); |
04050c5c | 133 | GIC_SET_EDGE_TRIGGER(i); |
1e8cae4d PM |
134 | } |
135 | if (s->num_cpu == 1) { | |
136 | /* For uniprocessor GICs all interrupts always target the sole CPU */ | |
137 | for (i = 0; i < GIC_MAXIRQ; i++) { | |
138 | s->irq_target[i] = 1; | |
139 | } | |
140 | } | |
c3037774 | 141 | s->enabled = false; |
1e8cae4d PM |
142 | } |
143 | ||
144 | static Property arm_gic_common_properties[] = { | |
fae15286 PM |
145 | DEFINE_PROP_UINT32("num-cpu", GICState, num_cpu, 1), |
146 | DEFINE_PROP_UINT32("num-irq", GICState, num_irq, 32), | |
1e8cae4d PM |
147 | /* Revision can be 1 or 2 for GIC architecture specification |
148 | * versions 1 or 2, or 0 to indicate the legacy 11MPCore GIC. | |
149 | * (Internally, 0xffffffff also indicates "not a GIC but an NVIC".) | |
150 | */ | |
fae15286 | 151 | DEFINE_PROP_UINT32("revision", GICState, revision, 1), |
1e8cae4d PM |
152 | DEFINE_PROP_END_OF_LIST(), |
153 | }; | |
154 | ||
155 | static void arm_gic_common_class_init(ObjectClass *klass, void *data) | |
156 | { | |
1e8cae4d | 157 | DeviceClass *dc = DEVICE_CLASS(klass); |
53111180 | 158 | |
1e8cae4d | 159 | dc->reset = arm_gic_common_reset; |
53111180 | 160 | dc->realize = arm_gic_common_realize; |
1e8cae4d | 161 | dc->props = arm_gic_common_properties; |
2e19a703 | 162 | dc->vmsd = &vmstate_gic; |
1e8cae4d PM |
163 | } |
164 | ||
8c43a6f0 | 165 | static const TypeInfo arm_gic_common_type = { |
1e8cae4d PM |
166 | .name = TYPE_ARM_GIC_COMMON, |
167 | .parent = TYPE_SYS_BUS_DEVICE, | |
fae15286 | 168 | .instance_size = sizeof(GICState), |
1e8cae4d PM |
169 | .class_size = sizeof(ARMGICCommonClass), |
170 | .class_init = arm_gic_common_class_init, | |
171 | .abstract = true, | |
172 | }; | |
173 | ||
174 | static void register_types(void) | |
175 | { | |
176 | type_register_static(&arm_gic_common_type); | |
177 | } | |
178 | ||
179 | type_init(register_types) |