2 * ARM11MPCore internal peripheral emulation.
4 * Copyright (c) 2006-2007 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licensed under the GPL.
11 #include "qemu-timer.h"
16 gic_get_current_cpu(void)
18 return cpu_single_env
->cpu_index
;
23 /* MPCore private memory region. */
25 typedef struct mpcore_priv_state
{
29 uint32_t old_timer_status
[8];
33 MemoryRegion container
;
38 /* Per-CPU private memory mapped IO. */
40 static uint64_t mpcore_scu_read(void *opaque
, target_phys_addr_t offset
,
43 mpcore_priv_state
*s
= (mpcore_priv_state
*)opaque
;
48 case 0x00: /* Control. */
49 return s
->scu_control
;
50 case 0x04: /* Configuration. */
51 id
= ((1 << s
->num_cpu
) - 1) << 4;
52 return id
| (s
->num_cpu
- 1);
53 case 0x08: /* CPU status. */
55 case 0x0c: /* Invalidate all. */
58 hw_error("mpcore_priv_read: Bad offset %x\n", (int)offset
);
62 static void mpcore_scu_write(void *opaque
, target_phys_addr_t offset
,
63 uint64_t value
, unsigned size
)
65 mpcore_priv_state
*s
= (mpcore_priv_state
*)opaque
;
69 case 0: /* Control register. */
70 s
->scu_control
= value
& 1;
72 case 0x0c: /* Invalidate all. */
73 /* This is a no-op as cache is not emulated. */
76 hw_error("mpcore_priv_read: Bad offset %x\n", (int)offset
);
80 static const MemoryRegionOps mpcore_scu_ops
= {
81 .read
= mpcore_scu_read
,
82 .write
= mpcore_scu_write
,
83 .endianness
= DEVICE_NATIVE_ENDIAN
,
86 static void mpcore_timer_irq_handler(void *opaque
, int irq
, int level
)
88 mpcore_priv_state
*s
= (mpcore_priv_state
*)opaque
;
89 if (level
&& !s
->old_timer_status
[irq
]) {
90 gic_set_pending_private(&s
->gic
, irq
>> 1, 29 + (irq
& 1));
92 s
->old_timer_status
[irq
] = level
;
95 static void mpcore_priv_map_setup(mpcore_priv_state
*s
)
98 SysBusDevice
*busdev
= sysbus_from_qdev(s
->mptimer
);
99 memory_region_init(&s
->container
, "mpcode-priv-container", 0x2000);
100 memory_region_init_io(&s
->iomem
, &mpcore_scu_ops
, s
, "mpcore-scu", 0x100);
101 memory_region_add_subregion(&s
->container
, 0, &s
->iomem
);
102 /* GIC CPU interfaces: "current CPU" at 0x100, then specific CPUs
105 for (i
= 0; i
< (s
->num_cpu
+ 1); i
++) {
106 target_phys_addr_t offset
= 0x100 + (i
* 0x100);
107 memory_region_add_subregion(&s
->container
, offset
, &s
->gic
.cpuiomem
[i
]);
109 /* Add the regions for timer and watchdog for "current CPU" and
110 * for each specific CPU.
112 s
->timer_irq
= qemu_allocate_irqs(mpcore_timer_irq_handler
,
113 s
, (s
->num_cpu
+ 1) * 2);
114 for (i
= 0; i
< (s
->num_cpu
+ 1) * 2; i
++) {
115 /* Timers at 0x600, 0x700, ...; watchdogs at 0x620, 0x720, ... */
116 target_phys_addr_t offset
= 0x600 + (i
>> 1) * 0x100 + (i
& 1) * 0x20;
117 memory_region_add_subregion(&s
->container
, offset
,
118 sysbus_mmio_get_region(busdev
, i
));
120 memory_region_add_subregion(&s
->container
, 0x1000, &s
->gic
.iomem
);
121 /* Wire up the interrupt from each watchdog and timer. */
122 for (i
= 0; i
< s
->num_cpu
* 2; i
++) {
123 sysbus_connect_irq(busdev
, i
, s
->timer_irq
[i
]);
127 static int mpcore_priv_init(SysBusDevice
*dev
)
129 mpcore_priv_state
*s
= FROM_SYSBUSGIC(mpcore_priv_state
, dev
);
131 gic_init(&s
->gic
, s
->num_cpu
, s
->num_irq
);
132 s
->mptimer
= qdev_create(NULL
, "arm_mptimer");
133 qdev_prop_set_uint32(s
->mptimer
, "num-cpu", s
->num_cpu
);
134 qdev_init_nofail(s
->mptimer
);
135 mpcore_priv_map_setup(s
);
136 sysbus_init_mmio(dev
, &s
->container
);
140 /* Dummy PIC to route IRQ lines. The baseboard has 4 independent IRQ
141 controllers. The output of these, plus some of the raw input lines
142 are fed into a single SMP-aware interrupt controller on the CPU. */
147 qemu_irq rvic
[4][64];
151 /* Map baseboard IRQs onto CPU IRQ lines. */
152 static const int mpcore_irq_map
[32] = {
153 -1, -1, -1, -1, 1, 2, -1, -1,
154 -1, -1, 6, -1, 4, 5, -1, -1,
155 -1, 14, 15, 0, 7, 8, -1, -1,
156 -1, -1, -1, -1, 9, 3, -1, -1,
159 static void mpcore_rirq_set_irq(void *opaque
, int irq
, int level
)
161 mpcore_rirq_state
*s
= (mpcore_rirq_state
*)opaque
;
164 for (i
= 0; i
< 4; i
++) {
165 qemu_set_irq(s
->rvic
[i
][irq
], level
);
168 irq
= mpcore_irq_map
[irq
];
170 qemu_set_irq(s
->cpuic
[irq
], level
);
175 static int realview_mpcore_init(SysBusDevice
*dev
)
177 mpcore_rirq_state
*s
= FROM_SYSBUS(mpcore_rirq_state
, dev
);
183 priv
= qdev_create(NULL
, "arm11mpcore_priv");
184 qdev_prop_set_uint32(priv
, "num-cpu", s
->num_cpu
);
185 qdev_init_nofail(priv
);
186 s
->priv
= sysbus_from_qdev(priv
);
187 sysbus_pass_irq(dev
, s
->priv
);
188 for (i
= 0; i
< 32; i
++) {
189 s
->cpuic
[i
] = qdev_get_gpio_in(priv
, i
);
191 /* ??? IRQ routing is hardcoded to "normal" mode. */
192 for (n
= 0; n
< 4; n
++) {
193 gic
= sysbus_create_simple("realview_gic", 0x10040000 + n
* 0x10000,
195 for (i
= 0; i
< 64; i
++) {
196 s
->rvic
[n
][i
] = qdev_get_gpio_in(gic
, i
);
199 qdev_init_gpio_in(&dev
->qdev
, mpcore_rirq_set_irq
, 64);
200 sysbus_init_mmio(dev
, sysbus_mmio_get_region(s
->priv
, 0));
204 static Property mpcore_rirq_properties
[] = {
205 DEFINE_PROP_UINT32("num-cpu", mpcore_priv_state
, num_cpu
, 1),
206 /* The ARM11 MPCORE TRM says the on-chip controller may have
207 * anything from 0 to 224 external interrupt IRQ lines (with another
208 * 32 internal). We default to 32+32, which is the number provided by
209 * the ARM11 MPCore test chip in the Realview Versatile Express
210 * coretile. Other boards may differ and should set this property
211 * appropriately. Some Linux kernels may not boot if the hardware
212 * has more IRQ lines than the kernel expects.
214 DEFINE_PROP_UINT32("num-irq", mpcore_priv_state
, num_irq
, 64),
215 DEFINE_PROP_END_OF_LIST(),
218 static void mpcore_rirq_class_init(ObjectClass
*klass
, void *data
)
220 DeviceClass
*dc
= DEVICE_CLASS(klass
);
221 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
223 k
->init
= realview_mpcore_init
;
224 dc
->props
= mpcore_rirq_properties
;
227 static TypeInfo mpcore_rirq_info
= {
228 .name
= "realview_mpcore",
229 .parent
= TYPE_SYS_BUS_DEVICE
,
230 .instance_size
= sizeof(mpcore_rirq_state
),
231 .class_init
= mpcore_rirq_class_init
,
234 static Property mpcore_priv_properties
[] = {
235 DEFINE_PROP_UINT32("num-cpu", mpcore_priv_state
, num_cpu
, 1),
236 DEFINE_PROP_END_OF_LIST(),
239 static void mpcore_priv_class_init(ObjectClass
*klass
, void *data
)
241 DeviceClass
*dc
= DEVICE_CLASS(klass
);
242 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
244 k
->init
= mpcore_priv_init
;
245 dc
->props
= mpcore_priv_properties
;
248 static TypeInfo mpcore_priv_info
= {
249 .name
= "arm11mpcore_priv",
250 .parent
= TYPE_SYS_BUS_DEVICE
,
251 .instance_size
= sizeof(mpcore_priv_state
),
252 .class_init
= mpcore_priv_class_init
,
255 static void arm11mpcore_register_types(void)
257 type_register_static(&mpcore_rirq_info
);
258 type_register_static(&mpcore_priv_info
);
261 type_init(arm11mpcore_register_types
)