target/arm: Convert Neon VRHADD, VHSUB 3-reg-same insns to decodetree
[qemu/ar7.git] / include / hw / misc / bcm2835_property.h
blobb321f22499039a75936b5e29cc283b869300d801
1 /*
2 * Raspberry Pi emulation (c) 2012 Gregory Estrade
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
8 #ifndef BCM2835_PROPERTY_H
9 #define BCM2835_PROPERTY_H
11 #include "hw/sysbus.h"
12 #include "net/net.h"
13 #include "hw/display/bcm2835_fb.h"
15 #define TYPE_BCM2835_PROPERTY "bcm2835-property"
16 #define BCM2835_PROPERTY(obj) \
17 OBJECT_CHECK(BCM2835PropertyState, (obj), TYPE_BCM2835_PROPERTY)
19 typedef struct {
20 /*< private >*/
21 SysBusDevice busdev;
22 /*< public >*/
24 MemoryRegion *dma_mr;
25 AddressSpace dma_as;
26 MemoryRegion iomem;
27 qemu_irq mbox_irq;
28 BCM2835FBState *fbdev;
30 MACAddr macaddr;
31 uint32_t board_rev;
32 uint32_t addr;
33 bool pending;
34 } BCM2835PropertyState;
36 #endif