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/arm/arm.h"
16 #include "hw/intc/aspeed_vic.h"
17 #include "hw/misc/aspeed_scu.h"
18 #include "hw/misc/aspeed_sdmc.h"
19 #include "hw/timer/aspeed_timer.h"
20 #include "hw/i2c/aspeed_i2c.h"
21 #include "hw/ssi/aspeed_smc.h"
23 #define ASPEED_SPIS_NUM 2
25 typedef struct AspeedSoCState
{
34 AspeedTimerCtrlState timerctrl
;
38 AspeedSMCState spi
[ASPEED_SPIS_NUM
];
42 #define TYPE_ASPEED_SOC "aspeed-soc"
43 #define ASPEED_SOC(obj) OBJECT_CHECK(AspeedSoCState, (obj), TYPE_ASPEED_SOC)
45 typedef struct AspeedSoCInfo
{
47 const char *cpu_model
;
52 const hwaddr
*spi_bases
;
53 const char *fmc_typename
;
54 const char **spi_typename
;
57 typedef struct AspeedSoCClass
{
58 DeviceClass parent_class
;
62 #define ASPEED_SOC_CLASS(klass) \
63 OBJECT_CLASS_CHECK(AspeedSoCClass, (klass), TYPE_ASPEED_SOC)
64 #define ASPEED_SOC_GET_CLASS(obj) \
65 OBJECT_GET_CLASS(AspeedSoCClass, (obj), TYPE_ASPEED_SOC)
67 #endif /* ASPEED_SOC_H */