xref: /openbmc/qemu/include/hw/i2c/aspeed_i2c.h (revision f7da1aa8fee9d0a4eb013ff8c173ead5a26e930e)
1 /*
2  *  ASPEED AST2400 I2C Controller
3  *
4  *  Copyright (C) 2016 IBM Corp.
5  *
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.
10  *
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.
15  *
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.
19  */
20 
21 #ifndef ASPEED_I2C_H
22 #define ASPEED_I2C_H
23 
24 #include "hw/i2c/i2c.h"
25 #include "hw/sysbus.h"
26 
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 ASPEED_I2C(obj) \
31     OBJECT_CHECK(AspeedI2CState, (obj), TYPE_ASPEED_I2C)
32 
33 #define ASPEED_I2C_NR_BUSSES 14
34 
35 struct AspeedI2CState;
36 
37 typedef struct AspeedI2CBus {
38     struct AspeedI2CState *controller;
39 
40     MemoryRegion mr;
41 
42     I2CBus *bus;
43     uint8_t id;
44 
45     uint32_t ctrl;
46     uint32_t timing[2];
47     uint32_t intr_ctrl;
48     uint32_t intr_status;
49     uint32_t cmd;
50     uint32_t buf;
51 } AspeedI2CBus;
52 
53 typedef struct AspeedI2CState {
54     SysBusDevice parent_obj;
55 
56     MemoryRegion iomem;
57     qemu_irq irq;
58 
59     uint32_t intr_status;
60 
61     AspeedI2CBus busses[ASPEED_I2C_NR_BUSSES];
62 } AspeedI2CState;
63 
64 #define ASPEED_I2C_CLASS(klass) \
65      OBJECT_CLASS_CHECK(AspeedI2CClass, (klass), TYPE_ASPEED_I2C)
66 #define ASPEED_I2C_GET_CLASS(obj) \
67      OBJECT_GET_CLASS(AspeedI2CClass, (obj), TYPE_ASPEED_I2C)
68 
69 typedef struct AspeedI2CClass {
70     SysBusDeviceClass parent_class;
71 
72     uint8_t num_busses;
73     uint8_t reg_size;
74     uint8_t gap;
75 } AspeedI2CClass;
76 
77 I2CBus *aspeed_i2c_get_bus(DeviceState *dev, int busnr);
78 
79 #endif /* ASPEED_I2C_H */
80