]> Git Repo - qemu.git/blame - hw/cpu/a9mpcore.c
hw/m68k/mcf5208: Fix trivial typo in board description
[qemu.git] / hw / cpu / a9mpcore.c
CommitLineData
f7c70325
PB
1/*
2 * Cortex-A9MPCore internal peripheral emulation.
3 *
4 * Copyright (c) 2009 CodeSourcery.
b12080cd
PM
5 * Copyright (c) 2011 Linaro Limited.
6 * Written by Paul Brook, Peter Maydell.
f7c70325 7 *
8e31bf38 8 * This code is licensed under the GPL.
f7c70325
PB
9 */
10
17b7f2db 11#include "qemu/osdep.h"
da34e65c 12#include "qapi/error.h"
de4c2dcf 13#include "hw/cpu/a9mpcore.h"
7d0c99a9 14#include "qom/cpu.h"
b12080cd 15
ddd76165
PM
16static void a9mp_priv_set_irq(void *opaque, int irq, int level)
17{
845769fc 18 A9MPPrivState *s = (A9MPPrivState *)opaque;
9b5f952b
AF
19
20 qemu_set_irq(qdev_get_gpio_in(DEVICE(&s->gic), irq), level);
ddd76165
PM
21}
22
753bc6e9
AF
23static void a9mp_priv_initfn(Object *obj)
24{
25 A9MPPrivState *s = A9MPCORE_PRIV(obj);
26
27 memory_region_init(&s->container, obj, "a9mp-priv-container", 0x2000);
28 sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->container);
9b5f952b 29
fc719d77
AF
30 object_initialize(&s->scu, sizeof(s->scu), TYPE_A9_SCU);
31 qdev_set_parent_bus(DEVICE(&s->scu), sysbus_get_default());
eb110bd8 32
4c25f365
PC
33 object_initialize(&s->gic, sizeof(s->gic), TYPE_ARM_GIC);
34 qdev_set_parent_bus(DEVICE(&s->gic), sysbus_get_default());
35
57e72f2a
FL
36 object_initialize(&s->gtimer, sizeof(s->gtimer), TYPE_A9_GTIMER);
37 qdev_set_parent_bus(DEVICE(&s->gtimer), sysbus_get_default());
38
eb110bd8
AF
39 object_initialize(&s->mptimer, sizeof(s->mptimer), TYPE_ARM_MPTIMER);
40 qdev_set_parent_bus(DEVICE(&s->mptimer), sysbus_get_default());
41
42 object_initialize(&s->wdt, sizeof(s->wdt), TYPE_ARM_MPTIMER);
43 qdev_set_parent_bus(DEVICE(&s->wdt), sysbus_get_default());
753bc6e9
AF
44}
45
837cf101 46static void a9mp_priv_realize(DeviceState *dev, Error **errp)
b12080cd 47{
837cf101 48 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
5126fec7 49 A9MPPrivState *s = A9MPCORE_PRIV(dev);
57e72f2a
FL
50 DeviceState *scudev, *gicdev, *gtimerdev, *mptimerdev, *wdtdev;
51 SysBusDevice *scubusdev, *gicbusdev, *gtimerbusdev, *mptimerbusdev,
52 *wdtbusdev;
837cf101 53 Error *err = NULL;
b12080cd 54 int i;
4182bbb1
PM
55 bool has_el3;
56 Object *cpuobj;
b12080cd 57
4c25f365
PC
58 scudev = DEVICE(&s->scu);
59 qdev_prop_set_uint32(scudev, "num-cpu", s->num_cpu);
60 object_property_set_bool(OBJECT(&s->scu), true, "realized", &err);
61 if (err != NULL) {
62 error_propagate(errp, err);
63 return;
64 }
65 scubusdev = SYS_BUS_DEVICE(&s->scu);
66
9b5f952b
AF
67 gicdev = DEVICE(&s->gic);
68 qdev_prop_set_uint32(gicdev, "num-cpu", s->num_cpu);
69 qdev_prop_set_uint32(gicdev, "num-irq", s->num_irq);
4182bbb1
PM
70
71 /* Make the GIC's TZ support match the CPUs. We assume that
72 * either all the CPUs have TZ, or none do.
73 */
74 cpuobj = OBJECT(qemu_get_cpu(0));
6533a1fc 75 has_el3 = object_property_find(cpuobj, "has_el3", NULL) &&
4182bbb1
PM
76 object_property_get_bool(cpuobj, "has_el3", &error_abort);
77 qdev_prop_set_bit(gicdev, "has-security-extensions", has_el3);
78
837cf101
AF
79 object_property_set_bool(OBJECT(&s->gic), true, "realized", &err);
80 if (err != NULL) {
81 error_propagate(errp, err);
82 return;
83 }
9b5f952b 84 gicbusdev = SYS_BUS_DEVICE(&s->gic);
ddd76165
PM
85
86 /* Pass through outbound IRQ lines from the GIC */
837cf101 87 sysbus_pass_irq(sbd, gicbusdev);
ddd76165
PM
88
89 /* Pass through inbound GPIO lines to the GIC */
837cf101 90 qdev_init_gpio_in(dev, a9mp_priv_set_irq, s->num_irq - 32);
b12080cd 91
57e72f2a
FL
92 gtimerdev = DEVICE(&s->gtimer);
93 qdev_prop_set_uint32(gtimerdev, "num-cpu", s->num_cpu);
94 object_property_set_bool(OBJECT(&s->gtimer), true, "realized", &err);
95 if (err != NULL) {
96 error_propagate(errp, err);
97 return;
98 }
99 gtimerbusdev = SYS_BUS_DEVICE(&s->gtimer);
100
eb110bd8
AF
101 mptimerdev = DEVICE(&s->mptimer);
102 qdev_prop_set_uint32(mptimerdev, "num-cpu", s->num_cpu);
837cf101
AF
103 object_property_set_bool(OBJECT(&s->mptimer), true, "realized", &err);
104 if (err != NULL) {
105 error_propagate(errp, err);
106 return;
107 }
d3053e6b 108 mptimerbusdev = SYS_BUS_DEVICE(&s->mptimer);
cde4577f 109
eb110bd8
AF
110 wdtdev = DEVICE(&s->wdt);
111 qdev_prop_set_uint32(wdtdev, "num-cpu", s->num_cpu);
837cf101
AF
112 object_property_set_bool(OBJECT(&s->wdt), true, "realized", &err);
113 if (err != NULL) {
114 error_propagate(errp, err);
115 return;
116 }
eb110bd8 117 wdtbusdev = SYS_BUS_DEVICE(&s->wdt);
b12080cd
PM
118
119 /* Memory map (addresses are offsets from PERIPHBASE):
120 * 0x0000-0x00ff -- Snoop Control Unit
121 * 0x0100-0x01ff -- GIC CPU interface
122 * 0x0200-0x02ff -- Global Timer
123 * 0x0300-0x05ff -- nothing
124 * 0x0600-0x06ff -- private timers and watchdogs
125 * 0x0700-0x0fff -- nothing
126 * 0x1000-0x1fff -- GIC Distributor
b12080cd 127 */
353575f0
PC
128 memory_region_add_subregion(&s->container, 0,
129 sysbus_mmio_get_region(scubusdev, 0));
b12080cd 130 /* GIC CPU interface */
ddd76165
PM
131 memory_region_add_subregion(&s->container, 0x100,
132 sysbus_mmio_get_region(gicbusdev, 1));
57e72f2a
FL
133 memory_region_add_subregion(&s->container, 0x200,
134 sysbus_mmio_get_region(gtimerbusdev, 0));
b12080cd
PM
135 /* Note that the A9 exposes only the "timer/watchdog for this core"
136 * memory region, not the "timer/watchdog for core X" ones 11MPcore has.
137 */
138 memory_region_add_subregion(&s->container, 0x600,
d3053e6b 139 sysbus_mmio_get_region(mptimerbusdev, 0));
b12080cd 140 memory_region_add_subregion(&s->container, 0x620,
cde4577f 141 sysbus_mmio_get_region(wdtbusdev, 0));
ddd76165
PM
142 memory_region_add_subregion(&s->container, 0x1000,
143 sysbus_mmio_get_region(gicbusdev, 0));
b12080cd 144
ddd76165 145 /* Wire up the interrupt from each watchdog and timer.
57e72f2a
FL
146 * For each core the global timer is PPI 27, the private
147 * timer is PPI 29 and the watchdog PPI 30.
ddd76165
PM
148 */
149 for (i = 0; i < s->num_cpu; i++) {
150 int ppibase = (s->num_irq - 32) + i * 32;
57e72f2a
FL
151 sysbus_connect_irq(gtimerbusdev, i,
152 qdev_get_gpio_in(gicdev, ppibase + 27));
d3053e6b 153 sysbus_connect_irq(mptimerbusdev, i,
9b5f952b 154 qdev_get_gpio_in(gicdev, ppibase + 29));
cde4577f 155 sysbus_connect_irq(wdtbusdev, i,
9b5f952b 156 qdev_get_gpio_in(gicdev, ppibase + 30));
b12080cd 157 }
b12080cd
PM
158}
159
39bffca2 160static Property a9mp_priv_properties[] = {
845769fc 161 DEFINE_PROP_UINT32("num-cpu", A9MPPrivState, num_cpu, 1),
39bffca2
AL
162 /* The Cortex-A9MP may have anything from 0 to 224 external interrupt
163 * IRQ lines (with another 32 internal). We default to 64+32, which
164 * is the number provided by the Cortex-A9MP test chip in the
165 * Realview PBX-A9 and Versatile Express A9 development boards.
166 * Other boards may differ and should set this property appropriately.
167 */
845769fc 168 DEFINE_PROP_UINT32("num-irq", A9MPPrivState, num_irq, 96),
39bffca2
AL
169 DEFINE_PROP_END_OF_LIST(),
170};
171
999e12bb
AL
172static void a9mp_priv_class_init(ObjectClass *klass, void *data)
173{
39bffca2 174 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb 175
837cf101 176 dc->realize = a9mp_priv_realize;
39bffca2 177 dc->props = a9mp_priv_properties;
999e12bb
AL
178}
179
8c43a6f0 180static const TypeInfo a9mp_priv_info = {
5126fec7 181 .name = TYPE_A9MPCORE_PRIV,
39bffca2 182 .parent = TYPE_SYS_BUS_DEVICE,
845769fc 183 .instance_size = sizeof(A9MPPrivState),
753bc6e9 184 .instance_init = a9mp_priv_initfn,
39bffca2 185 .class_init = a9mp_priv_class_init,
f7c70325
PB
186};
187
83f7d43a 188static void a9mp_register_types(void)
f7c70325 189{
39bffca2 190 type_register_static(&a9mp_priv_info);
f7c70325
PB
191}
192
83f7d43a 193type_init(a9mp_register_types)
This page took 0.566062 seconds and 4 git commands to generate.