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 work is licensed under the terms of the GNU GPL, version 2 or later. 9 * See the COPYING file in the top-level directory. 10 */ 11 12 #ifndef BCM2835_PERIPHERALS_H 13 #define BCM2835_PERIPHERALS_H 14 15 #include "hw/sysbus.h" 16 #include "hw/char/pl011.h" 17 #include "hw/char/bcm2835_aux.h" 18 #include "hw/display/bcm2835_fb.h" 19 #include "hw/dma/bcm2835_dma.h" 20 #include "hw/intc/bcm2835_ic.h" 21 #include "hw/misc/bcm2835_property.h" 22 #include "hw/misc/bcm2835_rng.h" 23 #include "hw/misc/bcm2835_mbox.h" 24 #include "hw/misc/bcm2835_mphi.h" 25 #include "hw/misc/bcm2835_thermal.h" 26 #include "hw/sd/sdhci.h" 27 #include "hw/sd/bcm2835_sdhost.h" 28 #include "hw/gpio/bcm2835_gpio.h" 29 #include "hw/timer/bcm2835_systmr.h" 30 #include "hw/misc/unimp.h" 31 32 #define TYPE_BCM2835_PERIPHERALS "bcm2835-peripherals" 33 #define BCM2835_PERIPHERALS(obj) \ 34 OBJECT_CHECK(BCM2835PeripheralState, (obj), TYPE_BCM2835_PERIPHERALS) 35 36 typedef struct BCM2835PeripheralState { 37 /*< private >*/ 38 SysBusDevice parent_obj; 39 /*< public >*/ 40 41 MemoryRegion peri_mr, peri_mr_alias, gpu_bus_mr, mbox_mr; 42 MemoryRegion ram_alias[4]; 43 qemu_irq irq, fiq; 44 45 BCM2835SystemTimerState systmr; 46 BCM2835MphiState mphi; 47 UnimplementedDeviceState armtmr; 48 UnimplementedDeviceState cprman; 49 UnimplementedDeviceState a2w; 50 PL011State uart0; 51 BCM2835AuxState aux; 52 BCM2835FBState fb; 53 BCM2835DMAState dma; 54 BCM2835ICState ic; 55 BCM2835PropertyState property; 56 BCM2835RngState rng; 57 BCM2835MboxState mboxes; 58 SDHCIState sdhci; 59 BCM2835SDHostState sdhost; 60 BCM2835GpioState gpio; 61 Bcm2835ThermalState thermal; 62 UnimplementedDeviceState i2s; 63 UnimplementedDeviceState spi[1]; 64 UnimplementedDeviceState i2c[3]; 65 UnimplementedDeviceState otp; 66 UnimplementedDeviceState dbus; 67 UnimplementedDeviceState ave0; 68 UnimplementedDeviceState bscsl; 69 UnimplementedDeviceState smi; 70 UnimplementedDeviceState dwc2; 71 UnimplementedDeviceState sdramc; 72 } BCM2835PeripheralState; 73 74 #endif /* BCM2835_PERIPHERALS_H */ 75