]> git.proxmox.com Git - qemu.git/blame - hw/i2c.h
Don't leak VLANClientState on PCI hot remove
[qemu.git] / hw / i2c.h
CommitLineData
0ff596d0
PB
1#ifndef QEMU_I2C_H
2#define QEMU_I2C_H
3
4/* The QEMU I2C implementation only supports simple transfers that complete
5 immediately. It does not support slave devices that need to be able to
6 defer their response (eg. CPU slave interfaces where the data is supplied
7 by the device driver in response to an interrupt). */
8
9enum i2c_event {
10 I2C_START_RECV,
11 I2C_START_SEND,
12 I2C_FINISH,
aa1f17c1 13 I2C_NACK /* Masker NACKed a receive byte. */
0ff596d0
PB
14};
15
0ff596d0
PB
16/* Master to slave. */
17typedef int (*i2c_send_cb)(i2c_slave *s, uint8_t data);
18/* Slave to master. */
19typedef int (*i2c_recv_cb)(i2c_slave *s);
20/* Notify the slave of a bus state change. */
21typedef void (*i2c_event_cb)(i2c_slave *s, enum i2c_event event);
22
23struct i2c_slave
24{
25 /* Callbacks to be set by the device. */
26 i2c_event_cb event;
27 i2c_recv_cb recv;
28 i2c_send_cb send;
29
30 /* Remaining fields for internal use by the I2C code. */
31 int address;
32 void *next;
c701b35b 33 i2c_bus *bus;
0ff596d0
PB
34};
35
0ff596d0
PB
36i2c_bus *i2c_init_bus(void);
37i2c_slave *i2c_slave_init(i2c_bus *bus, int address, int size);
38void i2c_set_slave_address(i2c_slave *dev, int address);
39int i2c_bus_busy(i2c_bus *bus);
40int i2c_start_transfer(i2c_bus *bus, int address, int recv);
41void i2c_end_transfer(i2c_bus *bus);
42void i2c_nack(i2c_bus *bus);
43int i2c_send(i2c_bus *bus, uint8_t data);
44int i2c_recv(i2c_bus *bus);
aa941b94
AZ
45void i2c_slave_save(QEMUFile *f, i2c_slave *dev);
46void i2c_slave_load(QEMUFile *f, i2c_slave *dev);
0ff596d0 47
87ecb68b
PB
48/* max111x.c */
49struct max111x_s;
50uint32_t max111x_read(void *opaque);
51void max111x_write(void *opaque, uint32_t value);
52struct max111x_s *max1110_init(qemu_irq cb);
53struct max111x_s *max1111_init(qemu_irq cb);
54void max111x_set_input(struct max111x_s *s, int line, uint8_t value);
55
adb86c37
AZ
56/* max7310.c */
57i2c_slave *max7310_init(i2c_bus *bus);
58void max7310_reset(i2c_slave *i2c);
59qemu_irq *max7310_gpio_in_get(i2c_slave *i2c);
60void max7310_gpio_out_set(i2c_slave *i2c, int line, qemu_irq handler);
61
62/* wm8750.c */
63i2c_slave *wm8750_init(i2c_bus *bus, AudioState *audio);
64void wm8750_reset(i2c_slave *i2c);
65void wm8750_data_req_set(i2c_slave *i2c,
66 void (*data_req)(void *, int, int), void *opaque);
67void wm8750_dac_dat(void *opaque, uint32_t sample);
68uint32_t wm8750_adc_dat(void *opaque);
662caa6f
AZ
69void *wm8750_dac_buffer(void *opaque, int samples);
70void wm8750_dac_commit(void *opaque);
b0f74c87 71void wm8750_set_bclk_in(void *opaque, int new_hz);
adb86c37 72
87ecb68b 73/* ssd0303.c */
3023f332 74void ssd0303_init(i2c_bus *bus, int address);
87ecb68b 75
7e7c5e4c
AZ
76/* twl92230.c */
77i2c_slave *twl92230_init(i2c_bus *bus, qemu_irq irq);
78qemu_irq *twl92230_gpio_in_get(i2c_slave *i2c);
79void twl92230_gpio_out_set(i2c_slave *i2c, int line, qemu_irq handler);
80
81/* tmp105.c */
82struct i2c_slave *tmp105_init(i2c_bus *bus, qemu_irq alarm);
83void tmp105_reset(i2c_slave *i2c);
84void tmp105_set(i2c_slave *i2c, int temp);
85
1d4e547b
AZ
86/* lm832x.c */
87struct i2c_slave *lm8323_init(i2c_bus *bus, qemu_irq nirq);
88void lm832x_key_event(struct i2c_slave *i2c, int key, int state);
89
0ff596d0 90#endif