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
|
|
|
|
*
|
|
|
|
* This code is licenced under the LGPL.
|
|
|
|
*/
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#include "i2c.h"
|
2007-05-23 02:03:59 +02:00
|
|
|
|
|
|
|
struct i2c_bus
|
|
|
|
{
|
2009-05-23 01:05:19 +02:00
|
|
|
BusState qbus;
|
2007-05-23 02:03:59 +02:00
|
|
|
i2c_slave *current_dev;
|
|
|
|
i2c_slave *dev;
|
2008-07-02 01:16:53 +02:00
|
|
|
int saved_address;
|
2007-05-23 02:03:59 +02:00
|
|
|
};
|
|
|
|
|
2008-07-02 01:16:53 +02:00
|
|
|
static void i2c_bus_save(QEMUFile *f, void *opaque)
|
|
|
|
{
|
|
|
|
i2c_bus *bus = (i2c_bus *)opaque;
|
|
|
|
|
|
|
|
qemu_put_byte(f, bus->current_dev ? bus->current_dev->address : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i2c_bus_load(QEMUFile *f, void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
i2c_bus *bus = (i2c_bus *)opaque;
|
|
|
|
|
|
|
|
if (version_id != 1)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* The bus is loaded before attached devices, so load and save the
|
|
|
|
current device id. Devices will check themselves as loaded. */
|
2008-07-29 15:57:48 +02:00
|
|
|
bus->saved_address = (int8_t) qemu_get_byte(f);
|
2008-07-02 01:16:53 +02:00
|
|
|
bus->current_dev = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
bus = FROM_QBUS(i2c_bus, qbus_create(BUS_TYPE_I2C, sizeof(i2c_bus),
|
|
|
|
parent, name));
|
2008-07-02 01:16:53 +02:00
|
|
|
register_savevm("i2c_bus", -1, 1, i2c_bus_save, i2c_bus_load, bus);
|
2007-05-23 02:03:59 +02:00
|
|
|
return bus;
|
|
|
|
}
|
|
|
|
|
|
|
|
void i2c_set_slave_address(i2c_slave *dev, int address)
|
|
|
|
{
|
|
|
|
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. */
|
|
|
|
int i2c_start_transfer(i2c_bus *bus, int address, int recv)
|
|
|
|
{
|
2009-05-23 01:05:19 +02:00
|
|
|
DeviceState *qdev;
|
|
|
|
i2c_slave *slave = NULL;
|
2007-05-23 02:03:59 +02:00
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
LIST_FOREACH(qdev, &bus->qbus.children, sibling) {
|
|
|
|
slave = I2C_SLAVE_FROM_QDEV(qdev);
|
|
|
|
if (slave->address == address)
|
2007-05-23 02:03:59 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
if (!slave)
|
2007-05-23 02:03:59 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
slave->info->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)
|
|
|
|
{
|
|
|
|
i2c_slave *dev = bus->current_dev;
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return;
|
|
|
|
|
2009-05-14 23:35:08 +02:00
|
|
|
dev->info->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)
|
|
|
|
{
|
|
|
|
i2c_slave *dev = bus->current_dev;
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return -1;
|
|
|
|
|
2009-05-14 23:35:08 +02:00
|
|
|
return dev->info->send(dev, data);
|
2007-05-23 02:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int i2c_recv(i2c_bus *bus)
|
|
|
|
{
|
|
|
|
i2c_slave *dev = bus->current_dev;
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return -1;
|
|
|
|
|
2009-05-14 23:35:08 +02:00
|
|
|
return dev->info->recv(dev);
|
2007-05-23 02:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void i2c_nack(i2c_bus *bus)
|
|
|
|
{
|
|
|
|
i2c_slave *dev = bus->current_dev;
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return;
|
|
|
|
|
2009-05-14 23:35:08 +02:00
|
|
|
dev->info->event(dev, I2C_NACK);
|
2007-05-23 02:03:59 +02:00
|
|
|
}
|
|
|
|
|
2007-05-24 20:50:09 +02:00
|
|
|
void i2c_slave_save(QEMUFile *f, i2c_slave *dev)
|
|
|
|
{
|
|
|
|
qemu_put_byte(f, dev->address);
|
|
|
|
}
|
|
|
|
|
|
|
|
void i2c_slave_load(QEMUFile *f, i2c_slave *dev)
|
|
|
|
{
|
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));
|
2007-05-24 20:50:09 +02:00
|
|
|
dev->address = qemu_get_byte(f);
|
2009-05-14 23:35:08 +02:00
|
|
|
if (bus->saved_address == dev->address) {
|
|
|
|
bus->current_dev = dev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
static void i2c_slave_qdev_init(DeviceState *dev, DeviceInfo *base)
|
2009-05-14 23:35:08 +02:00
|
|
|
{
|
2009-05-23 01:05:19 +02:00
|
|
|
I2CSlaveInfo *info = container_of(base, I2CSlaveInfo, qdev);
|
2009-05-14 23:35:08 +02:00
|
|
|
i2c_slave *s = I2C_SLAVE_FROM_QDEV(dev);
|
|
|
|
|
|
|
|
s->info = info;
|
|
|
|
s->address = qdev_get_prop_int(dev, "address", 0);
|
|
|
|
|
|
|
|
info->init(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void i2c_register_slave(const char *name, int size, I2CSlaveInfo *info)
|
|
|
|
{
|
|
|
|
assert(size >= sizeof(i2c_slave));
|
2009-05-23 01:05:19 +02:00
|
|
|
info->qdev.init = i2c_slave_qdev_init;
|
|
|
|
info->qdev.bus_type = BUS_TYPE_I2C;
|
|
|
|
qdev_register(name, size, &info->qdev);
|
2009-05-14 23:35:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DeviceState *i2c_create_slave(i2c_bus *bus, const char *name, int addr)
|
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
dev = qdev_create(&bus->qbus, name);
|
2009-05-14 23:35:08 +02:00
|
|
|
qdev_set_prop_int(dev, "address", addr);
|
|
|
|
qdev_init(dev);
|
|
|
|
return dev;
|
2007-05-24 20:50:09 +02:00
|
|
|
}
|