2007-05-23 02:03:59 +02:00
|
|
|
#ifndef QEMU_I2C_H
|
|
|
|
#define QEMU_I2C_H
|
|
|
|
|
2019-08-12 07:23:51 +02:00
|
|
|
#include "hw/qdev-core.h"
|
2009-05-14 23:35:08 +02:00
|
|
|
|
2007-05-23 02:03:59 +02:00
|
|
|
/* The QEMU I2C implementation only supports simple transfers that complete
|
|
|
|
immediately. It does not support slave devices that need to be able to
|
|
|
|
defer their response (eg. CPU slave interfaces where the data is supplied
|
|
|
|
by the device driver in response to an interrupt). */
|
|
|
|
|
|
|
|
enum i2c_event {
|
|
|
|
I2C_START_RECV,
|
|
|
|
I2C_START_SEND,
|
|
|
|
I2C_FINISH,
|
2007-07-12 00:48:58 +02:00
|
|
|
I2C_NACK /* Masker NACKed a receive byte. */
|
2007-05-23 02:03:59 +02:00
|
|
|
};
|
|
|
|
|
2011-12-05 03:28:27 +01:00
|
|
|
typedef struct I2CSlave I2CSlave;
|
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
#define TYPE_I2C_SLAVE "i2c-slave"
|
|
|
|
#define I2C_SLAVE(obj) \
|
|
|
|
OBJECT_CHECK(I2CSlave, (obj), TYPE_I2C_SLAVE)
|
|
|
|
#define I2C_SLAVE_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(I2CSlaveClass, (klass), TYPE_I2C_SLAVE)
|
|
|
|
#define I2C_SLAVE_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(I2CSlaveClass, (obj), TYPE_I2C_SLAVE)
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2018-03-01 12:05:44 +01:00
|
|
|
typedef struct I2CSlaveClass {
|
2011-12-05 03:39:20 +01:00
|
|
|
DeviceClass parent_class;
|
2009-05-23 01:05:19 +02:00
|
|
|
|
2017-01-09 12:40:20 +01:00
|
|
|
/* Master to slave. Returns non-zero for a NAK, 0 for success. */
|
2011-12-05 03:39:20 +01:00
|
|
|
int (*send)(I2CSlave *s, uint8_t data);
|
|
|
|
|
2017-01-09 12:40:20 +01:00
|
|
|
/*
|
|
|
|
* Slave to master. This cannot fail, the device should always
|
2018-11-14 18:50:50 +01:00
|
|
|
* return something here.
|
2017-01-09 12:40:20 +01:00
|
|
|
*/
|
2018-11-14 18:50:50 +01:00
|
|
|
uint8_t (*recv)(I2CSlave *s);
|
2011-12-05 03:39:20 +01:00
|
|
|
|
2017-01-09 12:40:20 +01:00
|
|
|
/*
|
|
|
|
* Notify the slave of a bus state change. For start event,
|
|
|
|
* returns non-zero to NAK an operation. For other events the
|
|
|
|
* return code is not used and should be zero.
|
|
|
|
*/
|
|
|
|
int (*event)(I2CSlave *s, enum i2c_event event);
|
2011-12-05 03:39:20 +01:00
|
|
|
} I2CSlaveClass;
|
2009-05-14 23:35:08 +02:00
|
|
|
|
2018-03-01 12:05:44 +01:00
|
|
|
struct I2CSlave {
|
2009-05-14 23:35:08 +02:00
|
|
|
DeviceState qdev;
|
2007-05-23 02:03:59 +02:00
|
|
|
|
|
|
|
/* Remaining fields for internal use by the I2C code. */
|
2009-09-29 22:48:26 +02:00
|
|
|
uint8_t address;
|
2007-05-23 02:03:59 +02:00
|
|
|
};
|
|
|
|
|
2018-03-01 12:05:45 +01:00
|
|
|
#define TYPE_I2C_BUS "i2c-bus"
|
|
|
|
#define I2C_BUS(obj) OBJECT_CHECK(I2CBus, (obj), TYPE_I2C_BUS)
|
|
|
|
|
|
|
|
typedef struct I2CNode I2CNode;
|
|
|
|
|
|
|
|
struct I2CNode {
|
|
|
|
I2CSlave *elt;
|
|
|
|
QLIST_ENTRY(I2CNode) next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct I2CBus {
|
|
|
|
BusState qbus;
|
|
|
|
QLIST_HEAD(, I2CNode) current_devs;
|
|
|
|
uint8_t saved_address;
|
|
|
|
bool broadcast;
|
|
|
|
};
|
|
|
|
|
2013-08-03 00:18:51 +02:00
|
|
|
I2CBus *i2c_init_bus(DeviceState *parent, const char *name);
|
2011-12-05 03:28:27 +01:00
|
|
|
void i2c_set_slave_address(I2CSlave *dev, uint8_t address);
|
2013-08-03 00:18:51 +02:00
|
|
|
int i2c_bus_busy(I2CBus *bus);
|
|
|
|
int i2c_start_transfer(I2CBus *bus, uint8_t address, int recv);
|
|
|
|
void i2c_end_transfer(I2CBus *bus);
|
|
|
|
void i2c_nack(I2CBus *bus);
|
2016-06-14 16:59:14 +02:00
|
|
|
int i2c_send_recv(I2CBus *bus, uint8_t *data, bool send);
|
2013-08-03 00:18:51 +02:00
|
|
|
int i2c_send(I2CBus *bus, uint8_t data);
|
2018-11-14 18:50:50 +01:00
|
|
|
uint8_t i2c_recv(I2CBus *bus);
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2013-08-03 00:18:51 +02:00
|
|
|
DeviceState *i2c_create_slave(I2CBus *bus, const char *name, uint8_t addr);
|
2009-05-14 23:35:08 +02:00
|
|
|
|
2008-05-10 00:16:11 +02:00
|
|
|
/* lm832x.c */
|
2011-07-29 17:35:18 +02:00
|
|
|
void lm832x_key_event(DeviceState *dev, int key, int state);
|
2008-05-10 00:16:11 +02:00
|
|
|
|
2012-01-13 17:07:20 +01:00
|
|
|
extern const VMStateDescription vmstate_i2c_slave;
|
|
|
|
|
|
|
|
#define VMSTATE_I2C_SLAVE(_field, _state) { \
|
|
|
|
.name = (stringify(_field)), \
|
2011-12-05 03:28:27 +01:00
|
|
|
.size = sizeof(I2CSlave), \
|
2012-01-13 17:07:20 +01:00
|
|
|
.vmsd = &vmstate_i2c_slave, \
|
|
|
|
.flags = VMS_STRUCT, \
|
2011-12-05 03:28:27 +01:00
|
|
|
.offset = vmstate_offset_value(_state, _field, I2CSlave), \
|
2012-01-13 17:07:20 +01:00
|
|
|
}
|
|
|
|
|
2007-05-23 02:03:59 +02:00
|
|
|
#endif
|