2007-09-16 23:08:06 +02:00
|
|
|
/*
|
2007-05-23 02:03:59 +02:00
|
|
|
* QEMU I2C bus interface.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 CodeSourcery.
|
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
2011-06-26 04:21:35 +02:00
|
|
|
* This code is licensed under the LGPL.
|
2007-05-23 02:03:59 +02:00
|
|
|
*/
|
|
|
|
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/i2c.h"
|
2007-05-23 02:03:59 +02:00
|
|
|
|
|
|
|
struct i2c_bus
|
|
|
|
{
|
2009-05-23 01:05:19 +02:00
|
|
|
BusState qbus;
|
2011-12-05 03:28:27 +01:00
|
|
|
I2CSlave *current_dev;
|
|
|
|
I2CSlave *dev;
|
2009-09-29 22:48:26 +02:00
|
|
|
uint8_t saved_address;
|
2007-05-23 02:03:59 +02:00
|
|
|
};
|
|
|
|
|
2012-03-28 18:01:36 +02:00
|
|
|
static Property i2c_props[] = {
|
|
|
|
DEFINE_PROP_UINT8("address", struct I2CSlave, address, 0),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2012-05-02 09:00:20 +02:00
|
|
|
#define TYPE_I2C_BUS "i2c-bus"
|
|
|
|
#define I2C_BUS(obj) OBJECT_CHECK(i2c_bus, (obj), TYPE_I2C_BUS)
|
|
|
|
|
|
|
|
static const TypeInfo i2c_bus_info = {
|
|
|
|
.name = TYPE_I2C_BUS,
|
|
|
|
.parent = TYPE_BUS,
|
|
|
|
.instance_size = sizeof(i2c_bus),
|
2009-06-30 14:12:08 +02:00
|
|
|
};
|
|
|
|
|
2009-09-29 22:48:27 +02:00
|
|
|
static void i2c_bus_pre_save(void *opaque)
|
2008-07-02 01:16:53 +02:00
|
|
|
{
|
2009-09-29 22:48:27 +02:00
|
|
|
i2c_bus *bus = opaque;
|
2008-07-02 01:16:53 +02:00
|
|
|
|
2009-09-29 22:48:27 +02:00
|
|
|
bus->saved_address = bus->current_dev ? bus->current_dev->address : -1;
|
2008-07-02 01:16:53 +02:00
|
|
|
}
|
|
|
|
|
2009-09-29 22:48:27 +02:00
|
|
|
static int i2c_bus_post_load(void *opaque, int version_id)
|
2008-07-02 01:16:53 +02:00
|
|
|
{
|
2009-09-29 22:48:27 +02:00
|
|
|
i2c_bus *bus = opaque;
|
2008-07-02 01:16:53 +02:00
|
|
|
|
|
|
|
/* The bus is loaded before attached devices, so load and save the
|
|
|
|
current device id. Devices will check themselves as loaded. */
|
|
|
|
bus->current_dev = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-29 22:48:27 +02:00
|
|
|
static const VMStateDescription vmstate_i2c_bus = {
|
|
|
|
.name = "i2c_bus",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.minimum_version_id_old = 1,
|
|
|
|
.pre_save = i2c_bus_pre_save,
|
|
|
|
.post_load = i2c_bus_post_load,
|
|
|
|
.fields = (VMStateField []) {
|
|
|
|
VMSTATE_UINT8(saved_address, i2c_bus),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-05-23 02:03:59 +02:00
|
|
|
/* Create a new I2C bus. */
|
2009-05-23 01:05:19 +02:00
|
|
|
i2c_bus *i2c_init_bus(DeviceState *parent, const char *name)
|
2007-05-23 02:03:59 +02:00
|
|
|
{
|
|
|
|
i2c_bus *bus;
|
|
|
|
|
2012-05-02 09:00:20 +02:00
|
|
|
bus = FROM_QBUS(i2c_bus, qbus_create(TYPE_I2C_BUS, parent, name));
|
2010-06-25 19:09:07 +02:00
|
|
|
vmstate_register(NULL, -1, &vmstate_i2c_bus, bus);
|
2007-05-23 02:03:59 +02:00
|
|
|
return bus;
|
|
|
|
}
|
|
|
|
|
2011-12-05 03:28:27 +01:00
|
|
|
void i2c_set_slave_address(I2CSlave *dev, uint8_t address)
|
2007-05-23 02:03:59 +02:00
|
|
|
{
|
|
|
|
dev->address = address;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return nonzero if bus is busy. */
|
|
|
|
int i2c_bus_busy(i2c_bus *bus)
|
|
|
|
{
|
|
|
|
return bus->current_dev != NULL;
|
|
|
|
}
|
|
|
|
|
2007-11-03 01:51:03 +01:00
|
|
|
/* Returns non-zero if the address is not valid. */
|
2007-05-23 02:03:59 +02:00
|
|
|
/* TODO: Make this handle multiple masters. */
|
2009-09-29 22:48:26 +02:00
|
|
|
int i2c_start_transfer(i2c_bus *bus, uint8_t address, int recv)
|
2007-05-23 02:03:59 +02:00
|
|
|
{
|
2011-12-23 22:34:39 +01:00
|
|
|
BusChild *kid;
|
2011-12-05 03:28:27 +01:00
|
|
|
I2CSlave *slave = NULL;
|
2011-12-05 03:39:20 +01:00
|
|
|
I2CSlaveClass *sc;
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-23 22:34:39 +01:00
|
|
|
QTAILQ_FOREACH(kid, &bus->qbus.children, sibling) {
|
|
|
|
DeviceState *qdev = kid->child;
|
2013-01-25 09:12:54 +01:00
|
|
|
I2CSlave *candidate = I2C_SLAVE(qdev);
|
2009-06-08 08:27:19 +02:00
|
|
|
if (candidate->address == address) {
|
|
|
|
slave = candidate;
|
2007-05-23 02:03:59 +02:00
|
|
|
break;
|
2009-06-08 08:27:19 +02:00
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
}
|
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
if (!slave) {
|
2007-05-23 02:03:59 +02:00
|
|
|
return 1;
|
2011-12-05 03:39:20 +01:00
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
sc = I2C_SLAVE_GET_CLASS(slave);
|
2007-05-23 02:03:59 +02:00
|
|
|
/* If the bus is already busy, assume this is a repeated
|
|
|
|
start condition. */
|
2009-05-23 01:05:19 +02:00
|
|
|
bus->current_dev = slave;
|
2011-12-05 03:39:20 +01:00
|
|
|
if (sc->event) {
|
|
|
|
sc->event(slave, recv ? I2C_START_RECV : I2C_START_SEND);
|
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void i2c_end_transfer(i2c_bus *bus)
|
|
|
|
{
|
2011-12-05 03:28:27 +01:00
|
|
|
I2CSlave *dev = bus->current_dev;
|
2011-12-05 03:39:20 +01:00
|
|
|
I2CSlaveClass *sc;
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
if (!dev) {
|
2007-05-23 02:03:59 +02:00
|
|
|
return;
|
2011-12-05 03:39:20 +01:00
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
sc = I2C_SLAVE_GET_CLASS(dev);
|
|
|
|
if (sc->event) {
|
|
|
|
sc->event(dev, I2C_FINISH);
|
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
|
|
|
|
bus->current_dev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int i2c_send(i2c_bus *bus, uint8_t data)
|
|
|
|
{
|
2011-12-05 03:28:27 +01:00
|
|
|
I2CSlave *dev = bus->current_dev;
|
2011-12-05 03:39:20 +01:00
|
|
|
I2CSlaveClass *sc;
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
if (!dev) {
|
2007-05-23 02:03:59 +02:00
|
|
|
return -1;
|
2011-12-05 03:39:20 +01:00
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
sc = I2C_SLAVE_GET_CLASS(dev);
|
|
|
|
if (sc->send) {
|
|
|
|
return sc->send(dev, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
2007-05-23 02:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int i2c_recv(i2c_bus *bus)
|
|
|
|
{
|
2011-12-05 03:28:27 +01:00
|
|
|
I2CSlave *dev = bus->current_dev;
|
2011-12-05 03:39:20 +01:00
|
|
|
I2CSlaveClass *sc;
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
if (!dev) {
|
2007-05-23 02:03:59 +02:00
|
|
|
return -1;
|
2011-12-05 03:39:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sc = I2C_SLAVE_GET_CLASS(dev);
|
|
|
|
if (sc->recv) {
|
|
|
|
return sc->recv(dev);
|
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
return -1;
|
2007-05-23 02:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void i2c_nack(i2c_bus *bus)
|
|
|
|
{
|
2011-12-05 03:28:27 +01:00
|
|
|
I2CSlave *dev = bus->current_dev;
|
2011-12-05 03:39:20 +01:00
|
|
|
I2CSlaveClass *sc;
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
if (!dev) {
|
2007-05-23 02:03:59 +02:00
|
|
|
return;
|
2011-12-05 03:39:20 +01:00
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
sc = I2C_SLAVE_GET_CLASS(dev);
|
|
|
|
if (sc->event) {
|
|
|
|
sc->event(dev, I2C_NACK);
|
|
|
|
}
|
2007-05-23 02:03:59 +02:00
|
|
|
}
|
|
|
|
|
2009-09-29 22:48:28 +02:00
|
|
|
static int i2c_slave_post_load(void *opaque, int version_id)
|
2007-05-24 20:50:09 +02:00
|
|
|
{
|
2011-12-05 03:28:27 +01:00
|
|
|
I2CSlave *dev = opaque;
|
2009-05-14 23:35:08 +02:00
|
|
|
i2c_bus *bus;
|
2009-05-23 01:05:19 +02:00
|
|
|
bus = FROM_QBUS(i2c_bus, qdev_get_parent_bus(&dev->qdev));
|
2009-05-14 23:35:08 +02:00
|
|
|
if (bus->saved_address == dev->address) {
|
|
|
|
bus->current_dev = dev;
|
|
|
|
}
|
2009-09-29 22:48:28 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-29 22:48:30 +02:00
|
|
|
const VMStateDescription vmstate_i2c_slave = {
|
2011-12-05 03:28:27 +01:00
|
|
|
.name = "I2CSlave",
|
2009-09-29 22:48:28 +02:00
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.minimum_version_id_old = 1,
|
|
|
|
.post_load = i2c_slave_post_load,
|
|
|
|
.fields = (VMStateField []) {
|
2011-12-05 03:28:27 +01:00
|
|
|
VMSTATE_UINT8(address, I2CSlave),
|
2009-09-29 22:48:28 +02:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-12-09 22:02:56 +01:00
|
|
|
static int i2c_slave_qdev_init(DeviceState *dev)
|
2009-05-14 23:35:08 +02:00
|
|
|
{
|
2013-01-25 09:12:54 +01:00
|
|
|
I2CSlave *s = I2C_SLAVE(dev);
|
2011-12-05 03:39:20 +01:00
|
|
|
I2CSlaveClass *sc = I2C_SLAVE_GET_CLASS(s);
|
2009-05-14 23:35:08 +02:00
|
|
|
|
2011-12-05 03:39:20 +01:00
|
|
|
return sc->init(s);
|
|
|
|
}
|
2009-05-14 23:35:08 +02:00
|
|
|
|
2009-09-29 22:48:26 +02:00
|
|
|
DeviceState *i2c_create_slave(i2c_bus *bus, const char *name, uint8_t addr)
|
2009-05-14 23:35:08 +02:00
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
dev = qdev_create(&bus->qbus, name);
|
2009-09-29 22:48:26 +02:00
|
|
|
qdev_prop_set_uint8(dev, "address", addr);
|
2009-10-07 01:15:58 +02:00
|
|
|
qdev_init_nofail(dev);
|
2009-05-14 23:35:08 +02:00
|
|
|
return dev;
|
2007-05-24 20:50:09 +02:00
|
|
|
}
|
2011-12-05 03:39:20 +01:00
|
|
|
|
2011-12-08 04:34:16 +01:00
|
|
|
static void i2c_slave_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *k = DEVICE_CLASS(klass);
|
|
|
|
k->init = i2c_slave_qdev_init;
|
2012-05-02 09:00:20 +02:00
|
|
|
k->bus_type = TYPE_I2C_BUS;
|
2012-03-28 18:12:47 +02:00
|
|
|
k->props = i2c_props;
|
2011-12-08 04:34:16 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo i2c_slave_type_info = {
|
2011-12-05 03:39:20 +01:00
|
|
|
.name = TYPE_I2C_SLAVE,
|
|
|
|
.parent = TYPE_DEVICE,
|
|
|
|
.instance_size = sizeof(I2CSlave),
|
|
|
|
.abstract = true,
|
|
|
|
.class_size = sizeof(I2CSlaveClass),
|
2011-12-08 04:34:16 +01:00
|
|
|
.class_init = i2c_slave_class_init,
|
2011-12-05 03:39:20 +01:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void i2c_slave_register_types(void)
|
2011-12-05 03:39:20 +01:00
|
|
|
{
|
2012-05-02 09:00:20 +02:00
|
|
|
type_register_static(&i2c_bus_info);
|
2011-12-05 03:39:20 +01:00
|
|
|
type_register_static(&i2c_slave_type_info);
|
|
|
|
}
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(i2c_slave_register_types)
|