2 * MAX7310 8-port GPIO expansion chip.
4 * Copyright (c) 2006 Openedhand Ltd.
7 * This file is licensed under GNU GPL.
10 #include "qemu/osdep.h"
11 #include "hw/i2c/i2c.h"
12 #include "qemu/module.h"
14 #define TYPE_MAX7310 "max7310"
15 #define MAX7310(obj) OBJECT_CHECK(MAX7310State, (obj), TYPE_MAX7310)
17 typedef struct MAX7310State {
32 static void max7310_reset(DeviceState *dev)
34 MAX7310State *s = MAX7310(dev);
36 s->level &= s->direction;
43 static uint8_t max7310_rx(I2CSlave *i2c)
45 MAX7310State *s = MAX7310(i2c);
48 case 0x00: /* Input port */
49 return s->level ^ s->polarity;
52 case 0x01: /* Output port */
53 return s->level & ~s->direction;
56 case 0x02: /* Polarity inversion */
59 case 0x03: /* Configuration */
62 case 0x04: /* Timeout */
66 case 0xff: /* Reserved */
71 printf("%s: unknown register %02x\n", __func__, s->command);
78 static int max7310_tx(I2CSlave *i2c, uint8_t data)
80 MAX7310State *s = MAX7310(i2c);
86 printf("%s: message too long (%i bytes)\n", __func__, s->len);
91 if (s->i2c_command_byte) {
93 s->i2c_command_byte = 0;
98 case 0x01: /* Output port */
99 for (diff = (data ^ s->level) & ~s->direction; diff;
100 diff &= ~(1 << line)) {
102 if (s->handler[line])
103 qemu_set_irq(s->handler[line], (data >> line) & 1);
105 s->level = (s->level & s->direction) | (data & ~s->direction);
108 case 0x02: /* Polarity inversion */
112 case 0x03: /* Configuration */
113 s->level &= ~(s->direction ^ data);
117 case 0x04: /* Timeout */
121 case 0x00: /* Input port - ignore writes */
125 printf("%s: unknown register %02x\n", __func__, s->command);
133 static int max7310_event(I2CSlave *i2c, enum i2c_event event)
135 MAX7310State *s = MAX7310(i2c);
140 s->i2c_command_byte = 1;
145 printf("%s: message too short (%i bytes)\n", __func__, s->len);
155 static const VMStateDescription vmstate_max7310 = {
158 .minimum_version_id = 0,
159 .fields = (VMStateField[]) {
160 VMSTATE_INT32(i2c_command_byte, MAX7310State),
161 VMSTATE_INT32(len, MAX7310State),
162 VMSTATE_UINT8(level, MAX7310State),
163 VMSTATE_UINT8(direction, MAX7310State),
164 VMSTATE_UINT8(polarity, MAX7310State),
165 VMSTATE_UINT8(status, MAX7310State),
166 VMSTATE_UINT8(command, MAX7310State),
167 VMSTATE_I2C_SLAVE(parent_obj, MAX7310State),
168 VMSTATE_END_OF_LIST()
172 static void max7310_gpio_set(void *opaque, int line, int level)
174 MAX7310State *s = (MAX7310State *) opaque;
175 if (line >= ARRAY_SIZE(s->handler) || line < 0)
176 hw_error("bad GPIO line");
179 s->level |= s->direction & (1 << line);
181 s->level &= ~(s->direction & (1 << line));
184 /* MAX7310 is SMBus-compatible (can be used with only SMBus protocols),
185 * but also accepts sequences that are not SMBus so return an I2C device. */
186 static void max7310_realize(DeviceState *dev, Error **errp)
188 I2CSlave *i2c = I2C_SLAVE(dev);
189 MAX7310State *s = MAX7310(dev);
191 qdev_init_gpio_in(&i2c->qdev, max7310_gpio_set, 8);
192 qdev_init_gpio_out(&i2c->qdev, s->handler, 8);
195 static void max7310_class_init(ObjectClass *klass, void *data)
197 DeviceClass *dc = DEVICE_CLASS(klass);
198 I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);
200 dc->realize = max7310_realize;
201 k->event = max7310_event;
202 k->recv = max7310_rx;
203 k->send = max7310_tx;
204 dc->reset = max7310_reset;
205 dc->vmsd = &vmstate_max7310;
208 static const TypeInfo max7310_info = {
209 .name = TYPE_MAX7310,
210 .parent = TYPE_I2C_SLAVE,
211 .instance_size = sizeof(MAX7310State),
212 .class_init = max7310_class_init,
215 static void max7310_register_types(void)
217 type_register_static(&max7310_info);
220 type_init(max7310_register_types)