Merge remote-tracking branch 'remotes/maxreitz/tags/pull-block-2019-07-15' into staging
[qemu/ar7.git] / include / hw / arm / bcm2836.h
bloba2cb8454dea705dd2ee98fd19096cb28d5d0e536
1 /*
2 * Raspberry Pi emulation (c) 2012 Gregory Estrade
3 * Upstreaming code cleanup [including bcm2835_*] (c) 2013 Jan Petrous
5 * Rasperry Pi 2 emulation and refactoring Copyright (c) 2015, Microsoft
6 * Written by Andrew Baumann
8 * This code is licensed under the GNU GPLv2 and later.
9 */
11 #ifndef BCM2836_H
12 #define BCM2836_H
14 #include "hw/arm/bcm2835_peripherals.h"
15 #include "hw/intc/bcm2836_control.h"
17 #define TYPE_BCM283X "bcm283x"
18 #define BCM283X(obj) OBJECT_CHECK(BCM283XState, (obj), TYPE_BCM283X)
20 #define BCM283X_NCPUS 4
22 /* These type names are for specific SoCs; other than instantiating
23 * them, code using these devices should always handle them via the
24 * BCM283x base class, so they have no BCM2836(obj) etc macros.
26 #define TYPE_BCM2836 "bcm2836"
27 #define TYPE_BCM2837 "bcm2837"
29 typedef struct BCM283XState {
30 /*< private >*/
31 DeviceState parent_obj;
32 /*< public >*/
34 char *cpu_type;
35 uint32_t enabled_cpus;
37 ARMCPU cpus[BCM283X_NCPUS];
38 BCM2836ControlState control;
39 BCM2835PeripheralState peripherals;
40 } BCM283XState;
42 typedef struct BCM283XInfo BCM283XInfo;
44 typedef struct BCM283XClass {
45 DeviceClass parent_class;
46 const BCM283XInfo *info;
47 } BCM283XClass;
49 #define BCM283X_CLASS(klass) \
50 OBJECT_CLASS_CHECK(BCM283XClass, (klass), TYPE_BCM283X)
51 #define BCM283X_GET_CLASS(obj) \
52 OBJECT_GET_CLASS(BCM283XClass, (obj), TYPE_BCM283X)
54 #endif /* BCM2836_H */