2 * ASPEED AST2400 I2C Controller
4 * Copyright (C) 2016 IBM Corp.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "hw/i2c/i2c.h"
25 #include "hw/sysbus.h"
27 #define TYPE_ASPEED_I2C "aspeed.i2c"
28 #define TYPE_ASPEED_2400_I2C TYPE_ASPEED_I2C "-ast2400"
29 #define TYPE_ASPEED_2500_I2C TYPE_ASPEED_I2C "-ast2500"
30 #define TYPE_ASPEED_2600_I2C TYPE_ASPEED_I2C "-ast2600"
31 #define ASPEED_I2C(obj) \
32 OBJECT_CHECK(AspeedI2CState, (obj), TYPE_ASPEED_I2C)
34 #define ASPEED_I2C_NR_BUSSES 16
35 #define ASPEED_I2C_MAX_POOL_SIZE 0x800
37 struct AspeedI2CState
;
39 typedef struct AspeedI2CBus
{
40 struct AspeedI2CState
*controller
;
59 typedef struct AspeedI2CState
{
60 SysBusDevice parent_obj
;
67 MemoryRegion pool_iomem
;
68 uint8_t pool
[ASPEED_I2C_MAX_POOL_SIZE
];
70 AspeedI2CBus busses
[ASPEED_I2C_NR_BUSSES
];
71 MemoryRegion
*dram_mr
;
75 #define ASPEED_I2C_CLASS(klass) \
76 OBJECT_CLASS_CHECK(AspeedI2CClass, (klass), TYPE_ASPEED_I2C)
77 #define ASPEED_I2C_GET_CLASS(obj) \
78 OBJECT_GET_CLASS(AspeedI2CClass, (obj), TYPE_ASPEED_I2C)
80 typedef struct AspeedI2CClass
{
81 SysBusDeviceClass parent_class
;
86 qemu_irq (*bus_get_irq
)(AspeedI2CBus
*);
90 uint8_t *(*bus_pool_base
)(AspeedI2CBus
*);
96 I2CBus
*aspeed_i2c_get_bus(DeviceState
*dev
, int busnr
);
98 #endif /* ASPEED_I2C_H */