xref: /qemu/include/hw/arm/allwinner-a10.h (revision 5db05230)
1 #ifndef HW_ARM_ALLWINNER_A10_H
2 #define HW_ARM_ALLWINNER_A10_H
3 
4 #include "hw/timer/allwinner-a10-pit.h"
5 #include "hw/intc/allwinner-a10-pic.h"
6 #include "hw/net/allwinner_emac.h"
7 #include "hw/sd/allwinner-sdhost.h"
8 #include "hw/ide/ahci.h"
9 #include "hw/usb/hcd-ohci.h"
10 #include "hw/usb/hcd-ehci.h"
11 #include "hw/rtc/allwinner-rtc.h"
12 #include "hw/misc/allwinner-a10-ccm.h"
13 #include "hw/misc/allwinner-a10-dramc.h"
14 #include "hw/i2c/allwinner-i2c.h"
15 #include "hw/watchdog/allwinner-wdt.h"
16 #include "sysemu/block-backend.h"
17 
18 #include "target/arm/cpu.h"
19 #include "qom/object.h"
20 
21 
22 #define AW_A10_SDRAM_BASE       0x40000000
23 
24 #define AW_A10_NUM_USB          2
25 
26 #define TYPE_AW_A10 "allwinner-a10"
27 OBJECT_DECLARE_SIMPLE_TYPE(AwA10State, AW_A10)
28 
29 struct AwA10State {
30     /*< private >*/
31     DeviceState parent_obj;
32     /*< public >*/
33 
34     ARMCPU cpu;
35     AwA10ClockCtlState ccm;
36     AwA10DramControllerState dramc;
37     AwA10PITState timer;
38     AwA10PICState intc;
39     AwEmacState emac;
40     AllwinnerAHCIState sata;
41     AwSdHostState mmc0;
42     AWI2CState i2c0;
43     AwRtcState rtc;
44     AwWdtState wdt;
45     MemoryRegion sram_a;
46     EHCISysBusState ehci[AW_A10_NUM_USB];
47     OHCISysBusState ohci[AW_A10_NUM_USB];
48 };
49 
50 /**
51  * Emulate Boot ROM firmware setup functionality.
52  *
53  * A real Allwinner A10 SoC contains a Boot ROM
54  * which is the first code that runs right after
55  * the SoC is powered on. The Boot ROM is responsible
56  * for loading user code (e.g. a bootloader) from any
57  * of the supported external devices and writing the
58  * downloaded code to internal SRAM. After loading the SoC
59  * begins executing the code written to SRAM.
60  *
61  * This function emulates the Boot ROM by copying 32 KiB
62  * of data at offset 8 KiB from the given block device and writes it to
63  * the start of the first internal SRAM memory.
64  *
65  * @s: Allwinner A10 state object pointer
66  * @blk: Block backend device object pointer
67  */
68 void allwinner_a10_bootrom_setup(AwA10State *s, BlockBackend *blk);
69 
70 #endif
71