]>
Commit | Line | Data |
---|---|---|
0ff596d0 PB |
1 | #ifndef QEMU_I2C_H |
2 | #define QEMU_I2C_H | |
3 | ||
fe8de492 PB |
4 | #include "qdev.h" |
5 | ||
0ff596d0 PB |
6 | /* The QEMU I2C implementation only supports simple transfers that complete |
7 | immediately. It does not support slave devices that need to be able to | |
8 | defer their response (eg. CPU slave interfaces where the data is supplied | |
9 | by the device driver in response to an interrupt). */ | |
10 | ||
11 | enum i2c_event { | |
12 | I2C_START_RECV, | |
13 | I2C_START_SEND, | |
14 | I2C_FINISH, | |
aa1f17c1 | 15 | I2C_NACK /* Masker NACKed a receive byte. */ |
0ff596d0 PB |
16 | }; |
17 | ||
0ff596d0 PB |
18 | /* Master to slave. */ |
19 | typedef int (*i2c_send_cb)(i2c_slave *s, uint8_t data); | |
20 | /* Slave to master. */ | |
21 | typedef int (*i2c_recv_cb)(i2c_slave *s); | |
22 | /* Notify the slave of a bus state change. */ | |
23 | typedef void (*i2c_event_cb)(i2c_slave *s, enum i2c_event event); | |
24 | ||
fe8de492 PB |
25 | typedef void (*i2c_slave_initfn)(i2c_slave *dev); |
26 | ||
27 | typedef struct { | |
28 | /* Callbacks provided by the device. */ | |
29 | i2c_slave_initfn init; | |
30 | i2c_event_cb event; | |
31 | i2c_recv_cb recv; | |
32 | i2c_send_cb send; | |
33 | } I2CSlaveInfo; | |
34 | ||
0ff596d0 PB |
35 | struct i2c_slave |
36 | { | |
fe8de492 PB |
37 | DeviceState qdev; |
38 | I2CSlaveInfo *info; | |
0ff596d0 PB |
39 | |
40 | /* Remaining fields for internal use by the I2C code. */ | |
41 | int address; | |
42 | void *next; | |
c701b35b | 43 | i2c_bus *bus; |
0ff596d0 PB |
44 | }; |
45 | ||
0ff596d0 | 46 | i2c_bus *i2c_init_bus(void); |
0ff596d0 PB |
47 | void i2c_set_slave_address(i2c_slave *dev, int address); |
48 | int i2c_bus_busy(i2c_bus *bus); | |
49 | int i2c_start_transfer(i2c_bus *bus, int address, int recv); | |
50 | void i2c_end_transfer(i2c_bus *bus); | |
51 | void i2c_nack(i2c_bus *bus); | |
52 | int i2c_send(i2c_bus *bus, uint8_t data); | |
53 | int i2c_recv(i2c_bus *bus); | |
aa941b94 AZ |
54 | void i2c_slave_save(QEMUFile *f, i2c_slave *dev); |
55 | void i2c_slave_load(QEMUFile *f, i2c_slave *dev); | |
0ff596d0 | 56 | |
fe8de492 PB |
57 | #define I2C_SLAVE_FROM_QDEV(dev) DO_UPCAST(i2c_slave, qdev, dev) |
58 | #define FROM_I2C_SLAVE(type, dev) DO_UPCAST(type, i2c, dev) | |
59 | ||
60 | void i2c_register_slave(const char *name, int size, I2CSlaveInfo *type); | |
61 | ||
62 | DeviceState *i2c_create_slave(i2c_bus *bus, const char *name, int addr); | |
63 | ||
adb86c37 | 64 | /* max7310.c */ |
adb86c37 AZ |
65 | void max7310_reset(i2c_slave *i2c); |
66 | qemu_irq *max7310_gpio_in_get(i2c_slave *i2c); | |
67 | void max7310_gpio_out_set(i2c_slave *i2c, int line, qemu_irq handler); | |
68 | ||
69 | /* wm8750.c */ | |
cdbe40ca | 70 | void wm8750_data_req_set(DeviceState *dev, |
adb86c37 AZ |
71 | void (*data_req)(void *, int, int), void *opaque); |
72 | void wm8750_dac_dat(void *opaque, uint32_t sample); | |
73 | uint32_t wm8750_adc_dat(void *opaque); | |
662caa6f AZ |
74 | void *wm8750_dac_buffer(void *opaque, int samples); |
75 | void wm8750_dac_commit(void *opaque); | |
b0f74c87 | 76 | void wm8750_set_bclk_in(void *opaque, int new_hz); |
adb86c37 | 77 | |
7e7c5e4c | 78 | /* tmp105.c */ |
7e7c5e4c AZ |
79 | void tmp105_set(i2c_slave *i2c, int temp); |
80 | ||
1d4e547b | 81 | /* lm832x.c */ |
2d9401aa | 82 | void lm832x_key_event(i2c_slave *i2c, int key, int state); |
1d4e547b | 83 | |
0ff596d0 | 84 | #endif |