hw/misc/mps2-fpgaio: Support AN547 DBGCTRL register
[qemu/ar7.git] / include / hw / cpu / a9mpcore.h
blobe0396ab6af7e7f50730dfedb07cd644596909f0b
1 /*
2 * Cortex-A9MPCore internal peripheral emulation.
4 * Copyright (c) 2009 CodeSourcery.
5 * Copyright (c) 2011 Linaro Limited.
6 * Written by Paul Brook, Peter Maydell.
8 * This code is licensed under the GPL.
9 */
10 #ifndef HW_CPU_A9MPCORE_H
11 #define HW_CPU_A9MPCORE_H
13 #include "hw/sysbus.h"
14 #include "hw/intc/arm_gic.h"
15 #include "hw/misc/a9scu.h"
16 #include "hw/timer/arm_mptimer.h"
17 #include "hw/timer/a9gtimer.h"
18 #include "qom/object.h"
20 #define TYPE_A9MPCORE_PRIV "a9mpcore_priv"
21 OBJECT_DECLARE_SIMPLE_TYPE(A9MPPrivState, A9MPCORE_PRIV)
23 struct A9MPPrivState {
24 /*< private >*/
25 SysBusDevice parent_obj;
26 /*< public >*/
28 uint32_t num_cpu;
29 MemoryRegion container;
30 uint32_t num_irq;
32 A9SCUState scu;
33 GICState gic;
34 A9GTimerState gtimer;
35 ARMMPTimerState mptimer;
36 ARMMPTimerState wdt;
39 #endif