2 * QEMU SMBus device emulation.
4 * Copyright (c) 2007 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licensed under the LGPL.
10 /* TODO: Implement PEC. */
12 #include "qemu/osdep.h"
14 #include "hw/i2c/i2c.h"
15 #include "hw/i2c/smbus.h"
17 //#define DEBUG_SMBUS 1
20 #define DPRINTF(fmt, ...) \
21 do { printf("smbus(%02x): " fmt , dev->i2c.address, ## __VA_ARGS__); } while (0)
22 #define BADF(fmt, ...) \
23 do { fprintf(stderr, "smbus: error: " fmt , ## __VA_ARGS__); exit(1);} while (0)
25 #define DPRINTF(fmt, ...) do {} while(0)
26 #define BADF(fmt, ...) \
27 do { fprintf(stderr, "smbus: error: " fmt , ## __VA_ARGS__);} while (0)
39 static void smbus_do_quick_cmd(SMBusDevice *dev, int recv)
41 SMBusDeviceClass *sc = SMBUS_DEVICE_GET_CLASS(dev);
43 DPRINTF("Quick Command %d\n", recv);
45 sc->quick_cmd(dev, recv);
49 static void smbus_do_write(SMBusDevice *dev)
51 SMBusDeviceClass *sc = SMBUS_DEVICE_GET_CLASS(dev);
53 if (dev->data_len == 0) {
54 smbus_do_quick_cmd(dev, 0);
55 } else if (dev->data_len == 1) {
56 DPRINTF("Send Byte\n");
58 sc->send_byte(dev, dev->data_buf[0]);
61 dev->command = dev->data_buf[0];
62 DPRINTF("Command %d len %d\n", dev->command, dev->data_len - 1);
64 sc->write_data(dev, dev->command, dev->data_buf + 1,
70 static int smbus_i2c_event(I2CSlave *s, enum i2c_event event)
72 SMBusDevice *dev = SMBUS_DEVICE(s);
78 DPRINTF("Incoming data\n");
79 dev->mode = SMBUS_WRITE_DATA;
82 BADF("Unexpected send start condition in state %d\n", dev->mode);
83 dev->mode = SMBUS_CONFUSED;
91 DPRINTF("Read mode\n");
92 dev->mode = SMBUS_RECV_BYTE;
94 case SMBUS_WRITE_DATA:
95 if (dev->data_len == 0) {
96 BADF("Read after write with no data\n");
97 dev->mode = SMBUS_CONFUSED;
99 if (dev->data_len > 1) {
102 dev->command = dev->data_buf[0];
103 DPRINTF("%02x: Command %d\n", dev->i2c.address,
106 DPRINTF("Read mode\n");
108 dev->mode = SMBUS_READ_DATA;
112 BADF("Unexpected recv start condition in state %d\n", dev->mode);
113 dev->mode = SMBUS_CONFUSED;
120 case SMBUS_WRITE_DATA:
123 case SMBUS_RECV_BYTE:
124 smbus_do_quick_cmd(dev, 1);
126 case SMBUS_READ_DATA:
127 BADF("Unexpected stop during receive\n");
133 dev->mode = SMBUS_IDLE;
142 case SMBUS_READ_DATA:
143 dev->mode = SMBUS_DONE;
146 BADF("Unexpected NACK in state %d\n", dev->mode);
147 dev->mode = SMBUS_CONFUSED;
155 static int smbus_i2c_recv(I2CSlave *s)
157 SMBusDevice *dev = SMBUS_DEVICE(s);
158 SMBusDeviceClass *sc = SMBUS_DEVICE_GET_CLASS(dev);
162 case SMBUS_RECV_BYTE:
163 if (sc->receive_byte) {
164 ret = sc->receive_byte(dev);
168 DPRINTF("Receive Byte %02x\n", ret);
169 dev->mode = SMBUS_DONE;
171 case SMBUS_READ_DATA:
173 ret = sc->read_data(dev, dev->command, dev->data_len);
178 DPRINTF("Read data %02x\n", ret);
181 BADF("Unexpected read in state %d\n", dev->mode);
182 dev->mode = SMBUS_CONFUSED;
189 static int smbus_i2c_send(I2CSlave *s, uint8_t data)
191 SMBusDevice *dev = SMBUS_DEVICE(s);
194 case SMBUS_WRITE_DATA:
195 DPRINTF("Write data %02x\n", data);
196 dev->data_buf[dev->data_len++] = data;
199 BADF("Unexpected write in state %d\n", dev->mode);
205 static int smbus_device_init(I2CSlave *i2c)
207 SMBusDevice *dev = SMBUS_DEVICE(i2c);
208 SMBusDeviceClass *sc = SMBUS_DEVICE_GET_CLASS(dev);
210 return sc->init(dev);
213 /* Master device commands. */
214 int smbus_quick_command(I2CBus *bus, uint8_t addr, int read)
216 if (i2c_start_transfer(bus, addr, read)) {
219 i2c_end_transfer(bus);
223 int smbus_receive_byte(I2CBus *bus, uint8_t addr)
227 if (i2c_start_transfer(bus, addr, 1)) {
230 data = i2c_recv(bus);
232 i2c_end_transfer(bus);
236 int smbus_send_byte(I2CBus *bus, uint8_t addr, uint8_t data)
238 if (i2c_start_transfer(bus, addr, 0)) {
242 i2c_end_transfer(bus);
246 int smbus_read_byte(I2CBus *bus, uint8_t addr, uint8_t command)
249 if (i2c_start_transfer(bus, addr, 0)) {
252 i2c_send(bus, command);
253 if (i2c_start_transfer(bus, addr, 1)) {
254 i2c_end_transfer(bus);
257 data = i2c_recv(bus);
259 i2c_end_transfer(bus);
263 int smbus_write_byte(I2CBus *bus, uint8_t addr, uint8_t command, uint8_t data)
265 if (i2c_start_transfer(bus, addr, 0)) {
268 i2c_send(bus, command);
270 i2c_end_transfer(bus);
274 int smbus_read_word(I2CBus *bus, uint8_t addr, uint8_t command)
277 if (i2c_start_transfer(bus, addr, 0)) {
280 i2c_send(bus, command);
281 if (i2c_start_transfer(bus, addr, 1)) {
282 i2c_end_transfer(bus);
285 data = i2c_recv(bus);
286 data |= i2c_recv(bus) << 8;
288 i2c_end_transfer(bus);
292 int smbus_write_word(I2CBus *bus, uint8_t addr, uint8_t command, uint16_t data)
294 if (i2c_start_transfer(bus, addr, 0)) {
297 i2c_send(bus, command);
298 i2c_send(bus, data & 0xff);
299 i2c_send(bus, data >> 8);
300 i2c_end_transfer(bus);
304 int smbus_read_block(I2CBus *bus, uint8_t addr, uint8_t command, uint8_t *data)
309 if (i2c_start_transfer(bus, addr, 0)) {
312 i2c_send(bus, command);
313 if (i2c_start_transfer(bus, addr, 1)) {
314 i2c_end_transfer(bus);
321 for (i = 0; i < len; i++) {
322 data[i] = i2c_recv(bus);
325 i2c_end_transfer(bus);
329 int smbus_write_block(I2CBus *bus, uint8_t addr, uint8_t command, uint8_t *data,
337 if (i2c_start_transfer(bus, addr, 0)) {
340 i2c_send(bus, command);
342 for (i = 0; i < len; i++) {
343 i2c_send(bus, data[i]);
345 i2c_end_transfer(bus);
349 static void smbus_device_class_init(ObjectClass *klass, void *data)
351 I2CSlaveClass *sc = I2C_SLAVE_CLASS(klass);
353 sc->init = smbus_device_init;
354 sc->event = smbus_i2c_event;
355 sc->recv = smbus_i2c_recv;
356 sc->send = smbus_i2c_send;
359 static const TypeInfo smbus_device_type_info = {
360 .name = TYPE_SMBUS_DEVICE,
361 .parent = TYPE_I2C_SLAVE,
362 .instance_size = sizeof(SMBusDevice),
364 .class_size = sizeof(SMBusDeviceClass),
365 .class_init = smbus_device_class_init,
368 static void smbus_device_register_types(void)
370 type_register_static(&smbus_device_type_info);
373 type_init(smbus_device_register_types)