]> Git Repo - qemu.git/blob - include/hw/arm/bcm2835_peripherals.h
target-arm: Implement BCM2835 hardware RNG
[qemu.git] / include / hw / arm / bcm2835_peripherals.h
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 "exec/address-spaces.h"
16 #include "hw/sysbus.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/sd/sdhci.h"
25
26 #define TYPE_BCM2835_PERIPHERALS "bcm2835-peripherals"
27 #define BCM2835_PERIPHERALS(obj) \
28     OBJECT_CHECK(BCM2835PeripheralState, (obj), TYPE_BCM2835_PERIPHERALS)
29
30 typedef struct BCM2835PeripheralState {
31     /*< private >*/
32     SysBusDevice parent_obj;
33     /*< public >*/
34
35     MemoryRegion peri_mr, peri_mr_alias, gpu_bus_mr, mbox_mr;
36     MemoryRegion ram_alias[4];
37     qemu_irq irq, fiq;
38
39     SysBusDevice *uart0;
40     BCM2835AuxState aux;
41     BCM2835FBState fb;
42     BCM2835DMAState dma;
43     BCM2835ICState ic;
44     BCM2835PropertyState property;
45     BCM2835RngState rng;
46     BCM2835MboxState mboxes;
47     SDHCIState sdhci;
48 } BCM2835PeripheralState;
49
50 #endif /* BCM2835_PERIPHERALS_H */
This page took 0.02779 seconds and 4 git commands to generate.