]> git.proxmox.com Git - qemu.git/blame - hw/i2c.h
Introduce a 'client_add' monitor command accepting an open FD
[qemu.git] / hw / i2c.h
CommitLineData
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
11enum 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. */
19typedef int (*i2c_send_cb)(i2c_slave *s, uint8_t data);
20/* Slave to master. */
21typedef int (*i2c_recv_cb)(i2c_slave *s);
22/* Notify the slave of a bus state change. */
23typedef void (*i2c_event_cb)(i2c_slave *s, enum i2c_event event);
24
81a322d4 25typedef int (*i2c_slave_initfn)(i2c_slave *dev);
fe8de492
PB
26
27typedef struct {
02e2da45
PB
28 DeviceInfo qdev;
29
fe8de492
PB
30 /* Callbacks provided by the device. */
31 i2c_slave_initfn init;
32 i2c_event_cb event;
33 i2c_recv_cb recv;
34 i2c_send_cb send;
35} I2CSlaveInfo;
36
0ff596d0
PB
37struct i2c_slave
38{
fe8de492
PB
39 DeviceState qdev;
40 I2CSlaveInfo *info;
0ff596d0
PB
41
42 /* Remaining fields for internal use by the I2C code. */
5b7f5327 43 uint8_t address;
0ff596d0
PB
44};
45
02e2da45 46i2c_bus *i2c_init_bus(DeviceState *parent, const char *name);
5b7f5327 47void i2c_set_slave_address(i2c_slave *dev, uint8_t address);
0ff596d0 48int i2c_bus_busy(i2c_bus *bus);
5b7f5327 49int i2c_start_transfer(i2c_bus *bus, uint8_t address, int recv);
0ff596d0
PB
50void i2c_end_transfer(i2c_bus *bus);
51void i2c_nack(i2c_bus *bus);
52int i2c_send(i2c_bus *bus, uint8_t data);
53int i2c_recv(i2c_bus *bus);
54
fe8de492
PB
55#define I2C_SLAVE_FROM_QDEV(dev) DO_UPCAST(i2c_slave, qdev, dev)
56#define FROM_I2C_SLAVE(type, dev) DO_UPCAST(type, i2c, dev)
57
074f2fff 58void i2c_register_slave(I2CSlaveInfo *type);
fe8de492 59
5b7f5327 60DeviceState *i2c_create_slave(i2c_bus *bus, const char *name, uint8_t addr);
fe8de492 61
adb86c37 62/* wm8750.c */
cdbe40ca 63void wm8750_data_req_set(DeviceState *dev,
adb86c37
AZ
64 void (*data_req)(void *, int, int), void *opaque);
65void wm8750_dac_dat(void *opaque, uint32_t sample);
66uint32_t wm8750_adc_dat(void *opaque);
662caa6f
AZ
67void *wm8750_dac_buffer(void *opaque, int samples);
68void wm8750_dac_commit(void *opaque);
b0f74c87 69void wm8750_set_bclk_in(void *opaque, int new_hz);
adb86c37 70
7e7c5e4c 71/* tmp105.c */
7e7c5e4c
AZ
72void tmp105_set(i2c_slave *i2c, int temp);
73
1d4e547b 74/* lm832x.c */
2d9401aa 75void lm832x_key_event(i2c_slave *i2c, int key, int state);
1d4e547b 76
0ff596d0 77#endif