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 /* Master device commands. */
206 int smbus_quick_command(I2CBus *bus, uint8_t addr, int read)
208 if (i2c_start_transfer(bus, addr, read)) {
211 i2c_end_transfer(bus);
215 int smbus_receive_byte(I2CBus *bus, uint8_t addr)
219 if (i2c_start_transfer(bus, addr, 1)) {
222 data = i2c_recv(bus);
224 i2c_end_transfer(bus);
228 int smbus_send_byte(I2CBus *bus, uint8_t addr, uint8_t data)
230 if (i2c_start_transfer(bus, addr, 0)) {
234 i2c_end_transfer(bus);
238 int smbus_read_byte(I2CBus *bus, uint8_t addr, uint8_t command)
241 if (i2c_start_transfer(bus, addr, 0)) {
244 i2c_send(bus, command);
245 if (i2c_start_transfer(bus, addr, 1)) {
246 i2c_end_transfer(bus);
249 data = i2c_recv(bus);
251 i2c_end_transfer(bus);
255 int smbus_write_byte(I2CBus *bus, uint8_t addr, uint8_t command, uint8_t data)
257 if (i2c_start_transfer(bus, addr, 0)) {
260 i2c_send(bus, command);
262 i2c_end_transfer(bus);
266 int smbus_read_word(I2CBus *bus, uint8_t addr, uint8_t command)
269 if (i2c_start_transfer(bus, addr, 0)) {
272 i2c_send(bus, command);
273 if (i2c_start_transfer(bus, addr, 1)) {
274 i2c_end_transfer(bus);
277 data = i2c_recv(bus);
278 data |= i2c_recv(bus) << 8;
280 i2c_end_transfer(bus);
284 int smbus_write_word(I2CBus *bus, uint8_t addr, uint8_t command, uint16_t data)
286 if (i2c_start_transfer(bus, addr, 0)) {
289 i2c_send(bus, command);
290 i2c_send(bus, data & 0xff);
291 i2c_send(bus, data >> 8);
292 i2c_end_transfer(bus);
296 int smbus_read_block(I2CBus *bus, uint8_t addr, uint8_t command, uint8_t *data,
297 int len, bool recv_len, bool send_cmd)
303 if (i2c_start_transfer(bus, addr, 0)) {
306 i2c_send(bus, command);
308 if (i2c_start_transfer(bus, addr, 1)) {
310 i2c_end_transfer(bus);
315 rlen = i2c_recv(bus);
322 for (i = 0; i < rlen; i++) {
323 data[i] = i2c_recv(bus);
326 i2c_end_transfer(bus);
330 int smbus_write_block(I2CBus *bus, uint8_t addr, uint8_t command, uint8_t *data,
331 int len, bool send_len)
338 if (i2c_start_transfer(bus, addr, 0)) {
341 i2c_send(bus, command);
345 for (i = 0; i < len; i++) {
346 i2c_send(bus, data[i]);
348 i2c_end_transfer(bus);
352 static void smbus_device_class_init(ObjectClass *klass, void *data)
354 I2CSlaveClass *sc = I2C_SLAVE_CLASS(klass);
356 sc->event = smbus_i2c_event;
357 sc->recv = smbus_i2c_recv;
358 sc->send = smbus_i2c_send;
361 static const TypeInfo smbus_device_type_info = {
362 .name = TYPE_SMBUS_DEVICE,
363 .parent = TYPE_I2C_SLAVE,
364 .instance_size = sizeof(SMBusDevice),
366 .class_size = sizeof(SMBusDeviceClass),
367 .class_init = smbus_device_class_init,
370 static void smbus_device_register_types(void)
372 type_register_static(&smbus_device_type_info);
375 type_init(smbus_device_register_types)