2 * ARM GICv3 support - common bits of emulated and KVM kernel model
4 * Copyright (c) 2012 Linaro Limited
5 * Copyright (c) 2015 Huawei.
6 * Written by Peter Maydell
7 * Extended to 64 cores by Shlomo Pongratz
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "hw/intc/arm_gicv3_common.h"
25 static void gicv3_pre_save(void *opaque
)
27 GICv3State
*s
= (GICv3State
*)opaque
;
28 ARMGICv3CommonClass
*c
= ARM_GICV3_COMMON_GET_CLASS(s
);
35 static int gicv3_post_load(void *opaque
, int version_id
)
37 GICv3State
*s
= (GICv3State
*)opaque
;
38 ARMGICv3CommonClass
*c
= ARM_GICV3_COMMON_GET_CLASS(s
);
46 static const VMStateDescription vmstate_gicv3
= {
49 .pre_save
= gicv3_pre_save
,
50 .post_load
= gicv3_post_load
,
53 void gicv3_init_irqs_and_mmio(GICv3State
*s
, qemu_irq_handler handler
,
54 const MemoryRegionOps
*ops
)
56 SysBusDevice
*sbd
= SYS_BUS_DEVICE(s
);
59 /* For the GIC, also expose incoming GPIO lines for PPIs for each CPU.
60 * GPIO array layout is thus:
62 * [N..N+31] PPIs for CPU 0
63 * [N+32..N+63] PPIs for CPU 1
66 i
= s
->num_irq
- GIC_INTERNAL
+ GIC_INTERNAL
* s
->num_cpu
;
67 qdev_init_gpio_in(DEVICE(s
), handler
, i
);
69 s
->parent_irq
= g_malloc(s
->num_cpu
* sizeof(qemu_irq
));
70 s
->parent_fiq
= g_malloc(s
->num_cpu
* sizeof(qemu_irq
));
72 for (i
= 0; i
< s
->num_cpu
; i
++) {
73 sysbus_init_irq(sbd
, &s
->parent_irq
[i
]);
75 for (i
= 0; i
< s
->num_cpu
; i
++) {
76 sysbus_init_irq(sbd
, &s
->parent_fiq
[i
]);
79 memory_region_init_io(&s
->iomem_dist
, OBJECT(s
), ops
, s
,
80 "gicv3_dist", 0x10000);
81 memory_region_init_io(&s
->iomem_redist
, OBJECT(s
), ops
? &ops
[1] : NULL
, s
,
82 "gicv3_redist", 0x20000 * s
->num_cpu
);
84 sysbus_init_mmio(sbd
, &s
->iomem_dist
);
85 sysbus_init_mmio(sbd
, &s
->iomem_redist
);
88 static void arm_gicv3_common_realize(DeviceState
*dev
, Error
**errp
)
90 GICv3State
*s
= ARM_GICV3_COMMON(dev
);
92 /* revision property is actually reserved and currently used only in order
93 * to keep the interface compatible with GICv2 code, avoiding extra
94 * conditions. However, in future it could be used, for example, if we
97 if (s
->revision
!= 3) {
98 error_setg(errp
, "unsupported GIC revision %d", s
->revision
);
103 static void arm_gicv3_common_reset(DeviceState
*dev
)
108 static Property arm_gicv3_common_properties
[] = {
109 DEFINE_PROP_UINT32("num-cpu", GICv3State
, num_cpu
, 1),
110 DEFINE_PROP_UINT32("num-irq", GICv3State
, num_irq
, 32),
111 DEFINE_PROP_UINT32("revision", GICv3State
, revision
, 3),
112 DEFINE_PROP_BOOL("has-security-extensions", GICv3State
, security_extn
, 0),
113 DEFINE_PROP_END_OF_LIST(),
116 static void arm_gicv3_common_class_init(ObjectClass
*klass
, void *data
)
118 DeviceClass
*dc
= DEVICE_CLASS(klass
);
120 dc
->reset
= arm_gicv3_common_reset
;
121 dc
->realize
= arm_gicv3_common_realize
;
122 dc
->props
= arm_gicv3_common_properties
;
123 dc
->vmsd
= &vmstate_gicv3
;
126 static const TypeInfo arm_gicv3_common_type
= {
127 .name
= TYPE_ARM_GICV3_COMMON
,
128 .parent
= TYPE_SYS_BUS_DEVICE
,
129 .instance_size
= sizeof(GICv3State
),
130 .class_size
= sizeof(ARMGICv3CommonClass
),
131 .class_init
= arm_gicv3_common_class_init
,
135 static void register_types(void)
137 type_register_static(&arm_gicv3_common_type
);
140 type_init(register_types
)