qemu/hw/i2c/core.c
<<
>>
Prefs
   1/*
   2 * QEMU I2C bus interface.
   3 *
   4 * Copyright (c) 2007 CodeSourcery.
   5 * Written by Paul Brook
   6 *
   7 * This code is licensed under the LGPL.
   8 */
   9
  10#include "qemu/osdep.h"
  11#include "hw/i2c/i2c.h"
  12#include "trace.h"
  13
  14#define I2C_BROADCAST 0x00
  15
  16static Property i2c_props[] = {
  17    DEFINE_PROP_UINT8("address", struct I2CSlave, address, 0),
  18    DEFINE_PROP_END_OF_LIST(),
  19};
  20
  21static const TypeInfo i2c_bus_info = {
  22    .name = TYPE_I2C_BUS,
  23    .parent = TYPE_BUS,
  24    .instance_size = sizeof(I2CBus),
  25};
  26
  27static int i2c_bus_pre_save(void *opaque)
  28{
  29    I2CBus *bus = opaque;
  30
  31    bus->saved_address = -1;
  32    if (!QLIST_EMPTY(&bus->current_devs)) {
  33        if (!bus->broadcast) {
  34            bus->saved_address = QLIST_FIRST(&bus->current_devs)->elt->address;
  35        } else {
  36            bus->saved_address = I2C_BROADCAST;
  37        }
  38    }
  39
  40    return 0;
  41}
  42
  43static const VMStateDescription vmstate_i2c_bus = {
  44    .name = "i2c_bus",
  45    .version_id = 1,
  46    .minimum_version_id = 1,
  47    .pre_save = i2c_bus_pre_save,
  48    .fields = (VMStateField[]) {
  49        VMSTATE_UINT8(saved_address, I2CBus),
  50        VMSTATE_END_OF_LIST()
  51    }
  52};
  53
  54/* Create a new I2C bus.  */
  55I2CBus *i2c_init_bus(DeviceState *parent, const char *name)
  56{
  57    I2CBus *bus;
  58
  59    bus = I2C_BUS(qbus_create(TYPE_I2C_BUS, parent, name));
  60    QLIST_INIT(&bus->current_devs);
  61    vmstate_register(NULL, -1, &vmstate_i2c_bus, bus);
  62    return bus;
  63}
  64
  65void i2c_set_slave_address(I2CSlave *dev, uint8_t address)
  66{
  67    dev->address = address;
  68}
  69
  70/* Return nonzero if bus is busy.  */
  71int i2c_bus_busy(I2CBus *bus)
  72{
  73    return !QLIST_EMPTY(&bus->current_devs);
  74}
  75
  76/* TODO: Make this handle multiple masters.  */
  77/*
  78 * Start or continue an i2c transaction.  When this is called for the
  79 * first time or after an i2c_end_transfer(), if it returns an error
  80 * the bus transaction is terminated (or really never started).  If
  81 * this is called after another i2c_start_transfer() without an
  82 * intervening i2c_end_transfer(), and it returns an error, the
  83 * transaction will not be terminated.  The caller must do it.
  84 *
  85 * This corresponds with the way real hardware works.  The SMBus
  86 * protocol uses a start transfer to switch from write to read mode
  87 * without releasing the bus.  If that fails, the bus is still
  88 * in a transaction.
  89 */
  90int i2c_start_transfer(I2CBus *bus, uint8_t address, int recv)
  91{
  92    BusChild *kid;
  93    I2CSlaveClass *sc;
  94    I2CNode *node;
  95    bool bus_scanned = false;
  96
  97    if (address == I2C_BROADCAST) {
  98        /*
  99         * This is a broadcast, the current_devs will be all the devices of the
 100         * bus.
 101         */
 102        bus->broadcast = true;
 103    }
 104
 105    /*
 106     * If there are already devices in the list, that means we are in
 107     * the middle of a transaction and we shouldn't rescan the bus.
 108     *
 109     * This happens with any SMBus transaction, even on a pure I2C
 110     * device.  The interface does a transaction start without
 111     * terminating the previous transaction.
 112     */
 113    if (QLIST_EMPTY(&bus->current_devs)) {
 114        QTAILQ_FOREACH(kid, &bus->qbus.children, sibling) {
 115            DeviceState *qdev = kid->child;
 116            I2CSlave *candidate = I2C_SLAVE(qdev);
 117            if ((candidate->address == address) || (bus->broadcast)) {
 118                node = g_malloc(sizeof(struct I2CNode));
 119                node->elt = candidate;
 120                QLIST_INSERT_HEAD(&bus->current_devs, node, next);
 121                if (!bus->broadcast) {
 122                    break;
 123                }
 124            }
 125        }
 126        bus_scanned = true;
 127    }
 128
 129    if (QLIST_EMPTY(&bus->current_devs)) {
 130        return 1;
 131    }
 132
 133    QLIST_FOREACH(node, &bus->current_devs, next) {
 134        I2CSlave *s = node->elt;
 135        int rv;
 136
 137        sc = I2C_SLAVE_GET_CLASS(s);
 138        /* If the bus is already busy, assume this is a repeated
 139           start condition.  */
 140
 141        if (sc->event) {
 142            trace_i2c_event("start", s->address);
 143            rv = sc->event(s, recv ? I2C_START_RECV : I2C_START_SEND);
 144            if (rv && !bus->broadcast) {
 145                if (bus_scanned) {
 146                    /* First call, terminate the transfer. */
 147                    i2c_end_transfer(bus);
 148                }
 149                return rv;
 150            }
 151        }
 152    }
 153    return 0;
 154}
 155
 156void i2c_end_transfer(I2CBus *bus)
 157{
 158    I2CSlaveClass *sc;
 159    I2CNode *node, *next;
 160
 161    QLIST_FOREACH_SAFE(node, &bus->current_devs, next, next) {
 162        I2CSlave *s = node->elt;
 163        sc = I2C_SLAVE_GET_CLASS(s);
 164        if (sc->event) {
 165            trace_i2c_event("finish", s->address);
 166            sc->event(s, I2C_FINISH);
 167        }
 168        QLIST_REMOVE(node, next);
 169        g_free(node);
 170    }
 171    bus->broadcast = false;
 172}
 173
 174int i2c_send_recv(I2CBus *bus, uint8_t *data, bool send)
 175{
 176    I2CSlaveClass *sc;
 177    I2CSlave *s;
 178    I2CNode *node;
 179    int ret = 0;
 180
 181    if (send) {
 182        QLIST_FOREACH(node, &bus->current_devs, next) {
 183            s = node->elt;
 184            sc = I2C_SLAVE_GET_CLASS(s);
 185            if (sc->send) {
 186                trace_i2c_send(s->address, *data);
 187                ret = ret || sc->send(s, *data);
 188            } else {
 189                ret = -1;
 190            }
 191        }
 192        return ret ? -1 : 0;
 193    } else {
 194        ret = 0xff;
 195        if (!QLIST_EMPTY(&bus->current_devs) && !bus->broadcast) {
 196            sc = I2C_SLAVE_GET_CLASS(QLIST_FIRST(&bus->current_devs)->elt);
 197            if (sc->recv) {
 198                s = QLIST_FIRST(&bus->current_devs)->elt;
 199                ret = sc->recv(s);
 200                trace_i2c_recv(s->address, ret);
 201            }
 202        }
 203        *data = ret;
 204        return 0;
 205    }
 206}
 207
 208int i2c_send(I2CBus *bus, uint8_t data)
 209{
 210    return i2c_send_recv(bus, &data, true);
 211}
 212
 213uint8_t i2c_recv(I2CBus *bus)
 214{
 215    uint8_t data = 0xff;
 216
 217    i2c_send_recv(bus, &data, false);
 218    return data;
 219}
 220
 221void i2c_nack(I2CBus *bus)
 222{
 223    I2CSlaveClass *sc;
 224    I2CNode *node;
 225
 226    if (QLIST_EMPTY(&bus->current_devs)) {
 227        return;
 228    }
 229
 230    QLIST_FOREACH(node, &bus->current_devs, next) {
 231        sc = I2C_SLAVE_GET_CLASS(node->elt);
 232        if (sc->event) {
 233            trace_i2c_event("nack", node->elt->address);
 234            sc->event(node->elt, I2C_NACK);
 235        }
 236    }
 237}
 238
 239static int i2c_slave_post_load(void *opaque, int version_id)
 240{
 241    I2CSlave *dev = opaque;
 242    I2CBus *bus;
 243    I2CNode *node;
 244
 245    bus = I2C_BUS(qdev_get_parent_bus(DEVICE(dev)));
 246    if ((bus->saved_address == dev->address) ||
 247        (bus->saved_address == I2C_BROADCAST)) {
 248        node = g_malloc(sizeof(struct I2CNode));
 249        node->elt = dev;
 250        QLIST_INSERT_HEAD(&bus->current_devs, node, next);
 251    }
 252    return 0;
 253}
 254
 255const VMStateDescription vmstate_i2c_slave = {
 256    .name = "I2CSlave",
 257    .version_id = 1,
 258    .minimum_version_id = 1,
 259    .post_load = i2c_slave_post_load,
 260    .fields = (VMStateField[]) {
 261        VMSTATE_UINT8(address, I2CSlave),
 262        VMSTATE_END_OF_LIST()
 263    }
 264};
 265
 266DeviceState *i2c_create_slave(I2CBus *bus, const char *name, uint8_t addr)
 267{
 268    DeviceState *dev;
 269
 270    dev = qdev_create(&bus->qbus, name);
 271    qdev_prop_set_uint8(dev, "address", addr);
 272    qdev_init_nofail(dev);
 273    return dev;
 274}
 275
 276static void i2c_slave_class_init(ObjectClass *klass, void *data)
 277{
 278    DeviceClass *k = DEVICE_CLASS(klass);
 279    set_bit(DEVICE_CATEGORY_MISC, k->categories);
 280    k->bus_type = TYPE_I2C_BUS;
 281    k->props = i2c_props;
 282}
 283
 284static const TypeInfo i2c_slave_type_info = {
 285    .name = TYPE_I2C_SLAVE,
 286    .parent = TYPE_DEVICE,
 287    .instance_size = sizeof(I2CSlave),
 288    .abstract = true,
 289    .class_size = sizeof(I2CSlaveClass),
 290    .class_init = i2c_slave_class_init,
 291};
 292
 293static void i2c_slave_register_types(void)
 294{
 295    type_register_static(&i2c_bus_info);
 296    type_register_static(&i2c_slave_type_info);
 297}
 298
 299type_init(i2c_slave_register_types)
 300