4 * Andrew Jeffery <andrew@aj.id.au>
6 * Copyright 2016 IBM Corp.
8 * This code is licensed under the GPL version 2 or later. See
9 * the COPYING file in the top-level directory.
15 #include "hw/intc/aspeed_vic.h"
16 #include "hw/misc/aspeed_scu.h"
17 #include "hw/misc/aspeed_sdmc.h"
18 #include "hw/misc/aspeed_xdma.h"
19 #include "hw/timer/aspeed_timer.h"
20 #include "hw/timer/aspeed_rtc.h"
21 #include "hw/i2c/aspeed_i2c.h"
22 #include "hw/ssi/aspeed_smc.h"
23 #include "hw/watchdog/wdt_aspeed.h"
24 #include "hw/net/ftgmac100.h"
25 #include "target/arm/cpu.h"
26 #include "hw/gpio/aspeed_gpio.h"
27 #include "hw/sd/aspeed_sdhci.h"
29 #define ASPEED_SPIS_NUM 2
30 #define ASPEED_WDTS_NUM 4
31 #define ASPEED_CPUS_NUM 2
32 #define ASPEED_MACS_NUM 2
34 typedef struct AspeedSoCState
{
39 ARMCPU cpu
[ASPEED_CPUS_NUM
];
44 AspeedTimerCtrlState timerctrl
;
49 AspeedSMCState spi
[ASPEED_SPIS_NUM
];
51 AspeedWDTState wdt
[ASPEED_WDTS_NUM
];
52 FTGMAC100State ftgmac100
[ASPEED_MACS_NUM
];
54 AspeedSDHCIState sdhci
;
57 #define TYPE_ASPEED_SOC "aspeed-soc"
58 #define ASPEED_SOC(obj) OBJECT_CHECK(AspeedSoCState, (obj), TYPE_ASPEED_SOC)
60 typedef struct AspeedSoCClass
{
61 DeviceClass parent_class
;
74 #define ASPEED_SOC_CLASS(klass) \
75 OBJECT_CLASS_CHECK(AspeedSoCClass, (klass), TYPE_ASPEED_SOC)
76 #define ASPEED_SOC_GET_CLASS(obj) \
77 OBJECT_GET_CLASS(AspeedSoCClass, (obj), TYPE_ASPEED_SOC)
117 #endif /* ASPEED_SOC_H */