1 /* 2 * Raspberry Pi emulation (c) 2012 Gregory Estrade 3 * Upstreaming code cleanup [including bcm2835_*] (c) 2013 Jan Petrous 4 * 5 * Rasperry Pi 2 emulation and refactoring Copyright (c) 2015, Microsoft 6 * Written by Andrew Baumann 7 * 8 * This code is licensed under the GNU GPLv2 and later. 9 */ 10 11 #ifndef BCM2835_PERIPHERALS_H 12 #define BCM2835_PERIPHERALS_H 13 14 #include "qemu-common.h" 15 #include "hw/sysbus.h" 16 #include "hw/char/bcm2835_aux.h" 17 #include "hw/display/bcm2835_fb.h" 18 #include "hw/dma/bcm2835_dma.h" 19 #include "hw/intc/bcm2835_ic.h" 20 #include "hw/misc/bcm2835_property.h" 21 #include "hw/misc/bcm2835_rng.h" 22 #include "hw/misc/bcm2835_mbox.h" 23 #include "hw/sd/sdhci.h" 24 #include "hw/sd/bcm2835_sdhost.h" 25 #include "hw/gpio/bcm2835_gpio.h" 26 27 #define TYPE_BCM2835_PERIPHERALS "bcm2835-peripherals" 28 #define BCM2835_PERIPHERALS(obj) \ 29 OBJECT_CHECK(BCM2835PeripheralState, (obj), TYPE_BCM2835_PERIPHERALS) 30 31 typedef struct BCM2835PeripheralState { 32 /*< private >*/ 33 SysBusDevice parent_obj; 34 /*< public >*/ 35 36 MemoryRegion peri_mr, peri_mr_alias, gpu_bus_mr, mbox_mr; 37 MemoryRegion ram_alias[4]; 38 qemu_irq irq, fiq; 39 40 SysBusDevice *uart0; 41 BCM2835AuxState aux; 42 BCM2835FBState fb; 43 BCM2835DMAState dma; 44 BCM2835ICState ic; 45 BCM2835PropertyState property; 46 BCM2835RngState rng; 47 BCM2835MboxState mboxes; 48 SDHCIState sdhci; 49 BCM2835SDHostState sdhost; 50 BCM2835GpioState gpio; 51 } BCM2835PeripheralState; 52 53 #endif /* BCM2835_PERIPHERALS_H */ 54