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. */
13 #include "hw/i2c/i2c.h"
14 #include "hw/i2c/smbus.h"
16 //#define DEBUG_SMBUS 1
19 #define DPRINTF(fmt, ...) \
20 do { printf("smbus(%02x): " fmt , dev->i2c.address, ## __VA_ARGS__); } while (0)
21 #define BADF(fmt, ...) \
22 do { fprintf(stderr, "smbus: error: " fmt , ## __VA_ARGS__); exit(1);} while (0)
24 #define DPRINTF(fmt, ...) do {} while(0)
25 #define BADF(fmt, ...) \
26 do { fprintf(stderr, "smbus: error: " fmt , ## __VA_ARGS__);} while (0)
38 static void smbus_do_quick_cmd(SMBusDevice
*dev
, int recv
)
40 SMBusDeviceClass
*sc
= SMBUS_DEVICE_GET_CLASS(dev
);
42 DPRINTF("Quick Command %d\n", recv
);
44 sc
->quick_cmd(dev
, recv
);
48 static void smbus_do_write(SMBusDevice
*dev
)
50 SMBusDeviceClass
*sc
= SMBUS_DEVICE_GET_CLASS(dev
);
52 if (dev
->data_len
== 0) {
53 smbus_do_quick_cmd(dev
, 0);
54 } else if (dev
->data_len
== 1) {
55 DPRINTF("Send Byte\n");
57 sc
->send_byte(dev
, dev
->data_buf
[0]);
60 dev
->command
= dev
->data_buf
[0];
61 DPRINTF("Command %d len %d\n", dev
->command
, dev
->data_len
- 1);
63 sc
->write_data(dev
, dev
->command
, dev
->data_buf
+ 1,
69 static void smbus_i2c_event(I2CSlave
*s
, enum i2c_event event
)
71 SMBusDevice
*dev
= SMBUS_DEVICE(s
);
77 DPRINTF("Incoming data\n");
78 dev
->mode
= SMBUS_WRITE_DATA
;
81 BADF("Unexpected send start condition in state %d\n", dev
->mode
);
82 dev
->mode
= SMBUS_CONFUSED
;
90 DPRINTF("Read mode\n");
91 dev
->mode
= SMBUS_RECV_BYTE
;
93 case SMBUS_WRITE_DATA
:
94 if (dev
->data_len
== 0) {
95 BADF("Read after write with no data\n");
96 dev
->mode
= SMBUS_CONFUSED
;
98 if (dev
->data_len
> 1) {
101 dev
->command
= dev
->data_buf
[0];
102 DPRINTF("%02x: Command %d\n", dev
->i2c
.address
,
105 DPRINTF("Read mode\n");
107 dev
->mode
= SMBUS_READ_DATA
;
111 BADF("Unexpected recv start condition in state %d\n", dev
->mode
);
112 dev
->mode
= SMBUS_CONFUSED
;
119 case SMBUS_WRITE_DATA
:
122 case SMBUS_RECV_BYTE
:
123 smbus_do_quick_cmd(dev
, 1);
125 case SMBUS_READ_DATA
:
126 BADF("Unexpected stop during receive\n");
132 dev
->mode
= SMBUS_IDLE
;
141 case SMBUS_READ_DATA
:
142 dev
->mode
= SMBUS_DONE
;
145 BADF("Unexpected NACK in state %d\n", dev
->mode
);
146 dev
->mode
= SMBUS_CONFUSED
;
152 static int smbus_i2c_recv(I2CSlave
*s
)
154 SMBusDevice
*dev
= SMBUS_DEVICE(s
);
155 SMBusDeviceClass
*sc
= SMBUS_DEVICE_GET_CLASS(dev
);
159 case SMBUS_RECV_BYTE
:
160 if (sc
->receive_byte
) {
161 ret
= sc
->receive_byte(dev
);
165 DPRINTF("Receive Byte %02x\n", ret
);
166 dev
->mode
= SMBUS_DONE
;
168 case SMBUS_READ_DATA
:
170 ret
= sc
->read_data(dev
, dev
->command
, dev
->data_len
);
175 DPRINTF("Read data %02x\n", ret
);
178 BADF("Unexpected read in state %d\n", dev
->mode
);
179 dev
->mode
= SMBUS_CONFUSED
;
186 static int smbus_i2c_send(I2CSlave
*s
, uint8_t data
)
188 SMBusDevice
*dev
= SMBUS_DEVICE(s
);
191 case SMBUS_WRITE_DATA
:
192 DPRINTF("Write data %02x\n", data
);
193 dev
->data_buf
[dev
->data_len
++] = data
;
196 BADF("Unexpected write in state %d\n", dev
->mode
);
202 static int smbus_device_init(I2CSlave
*i2c
)
204 SMBusDevice
*dev
= SMBUS_DEVICE(i2c
);
205 SMBusDeviceClass
*sc
= SMBUS_DEVICE_GET_CLASS(dev
);
207 return sc
->init(dev
);
210 /* Master device commands. */
211 int smbus_quick_command(I2CBus
*bus
, uint8_t addr
, int read
)
213 if (i2c_start_transfer(bus
, addr
, read
)) {
216 i2c_end_transfer(bus
);
220 int smbus_receive_byte(I2CBus
*bus
, uint8_t addr
)
224 if (i2c_start_transfer(bus
, addr
, 1)) {
227 data
= i2c_recv(bus
);
229 i2c_end_transfer(bus
);
233 int smbus_send_byte(I2CBus
*bus
, uint8_t addr
, uint8_t data
)
235 if (i2c_start_transfer(bus
, addr
, 0)) {
239 i2c_end_transfer(bus
);
243 int smbus_read_byte(I2CBus
*bus
, uint8_t addr
, uint8_t command
)
246 if (i2c_start_transfer(bus
, addr
, 0)) {
249 i2c_send(bus
, command
);
250 i2c_start_transfer(bus
, addr
, 1);
251 data
= i2c_recv(bus
);
253 i2c_end_transfer(bus
);
257 int smbus_write_byte(I2CBus
*bus
, uint8_t addr
, uint8_t command
, uint8_t data
)
259 if (i2c_start_transfer(bus
, addr
, 0)) {
262 i2c_send(bus
, command
);
264 i2c_end_transfer(bus
);
268 int smbus_read_word(I2CBus
*bus
, uint8_t addr
, uint8_t command
)
271 if (i2c_start_transfer(bus
, addr
, 0)) {
274 i2c_send(bus
, command
);
275 i2c_start_transfer(bus
, addr
, 1);
276 data
= i2c_recv(bus
);
277 data
|= i2c_recv(bus
) << 8;
279 i2c_end_transfer(bus
);
283 int smbus_write_word(I2CBus
*bus
, uint8_t addr
, uint8_t command
, uint16_t data
)
285 if (i2c_start_transfer(bus
, addr
, 0)) {
288 i2c_send(bus
, command
);
289 i2c_send(bus
, data
& 0xff);
290 i2c_send(bus
, data
>> 8);
291 i2c_end_transfer(bus
);
295 int smbus_read_block(I2CBus
*bus
, uint8_t addr
, uint8_t command
, uint8_t *data
)
300 if (i2c_start_transfer(bus
, addr
, 0)) {
303 i2c_send(bus
, command
);
304 i2c_start_transfer(bus
, addr
, 1);
309 for (i
= 0; i
< len
; i
++) {
310 data
[i
] = i2c_recv(bus
);
313 i2c_end_transfer(bus
);
317 int smbus_write_block(I2CBus
*bus
, uint8_t addr
, uint8_t command
, uint8_t *data
,
325 if (i2c_start_transfer(bus
, addr
, 0)) {
328 i2c_send(bus
, command
);
330 for (i
= 0; i
< len
; i
++) {
331 i2c_send(bus
, data
[i
]);
333 i2c_end_transfer(bus
);
337 static void smbus_device_class_init(ObjectClass
*klass
, void *data
)
339 I2CSlaveClass
*sc
= I2C_SLAVE_CLASS(klass
);
341 sc
->init
= smbus_device_init
;
342 sc
->event
= smbus_i2c_event
;
343 sc
->recv
= smbus_i2c_recv
;
344 sc
->send
= smbus_i2c_send
;
347 static const TypeInfo smbus_device_type_info
= {
348 .name
= TYPE_SMBUS_DEVICE
,
349 .parent
= TYPE_I2C_SLAVE
,
350 .instance_size
= sizeof(SMBusDevice
),
352 .class_size
= sizeof(SMBusDeviceClass
),
353 .class_init
= smbus_device_class_init
,
356 static void smbus_device_register_types(void)
358 type_register_static(&smbus_device_type_info
);
361 type_init(smbus_device_register_types
)