2009-05-15 01:35:09 +04:00
|
|
|
/*
|
|
|
|
* QEMU Synchronous Serial Interface support
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 CodeSourcery.
|
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
2011-06-26 06:21:35 +04:00
|
|
|
* This code is licensed under the GNU GPL v2.
|
2012-01-13 20:44:23 +04:00
|
|
|
*
|
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2009-05-15 01:35:09 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ssi.h"
|
|
|
|
|
|
|
|
struct SSIBus {
|
2009-05-23 03:05:19 +04:00
|
|
|
BusState qbus;
|
2009-05-15 01:35:09 +04:00
|
|
|
};
|
|
|
|
|
2012-05-02 11:00:20 +04:00
|
|
|
#define TYPE_SSI_BUS "SSI"
|
|
|
|
#define SSI_BUS(obj) OBJECT_CHECK(SSIBus, (obj), TYPE_SSI_BUS)
|
|
|
|
|
|
|
|
static const TypeInfo ssi_bus_info = {
|
|
|
|
.name = TYPE_SSI_BUS,
|
|
|
|
.parent = TYPE_BUS,
|
|
|
|
.instance_size = sizeof(SSIBus),
|
2009-06-30 16:12:08 +04:00
|
|
|
};
|
|
|
|
|
2011-12-10 01:02:56 +04:00
|
|
|
static int ssi_slave_init(DeviceState *dev)
|
2009-05-15 01:35:09 +04:00
|
|
|
{
|
2011-12-16 23:36:39 +04:00
|
|
|
SSISlave *s = SSI_SLAVE(dev);
|
|
|
|
SSISlaveClass *ssc = SSI_SLAVE_GET_CLASS(s);
|
2009-05-23 03:05:19 +04:00
|
|
|
SSIBus *bus;
|
2011-12-24 01:34:39 +04:00
|
|
|
BusChild *kid;
|
2009-05-23 03:05:19 +04:00
|
|
|
|
|
|
|
bus = FROM_QBUS(SSIBus, qdev_get_parent_bus(dev));
|
2011-12-24 01:34:39 +04:00
|
|
|
kid = QTAILQ_FIRST(&bus->qbus.children);
|
|
|
|
if (kid->child != dev || QTAILQ_NEXT(kid, sibling) != NULL) {
|
2009-05-23 03:05:19 +04:00
|
|
|
hw_error("Too many devices on SSI bus");
|
|
|
|
}
|
2009-05-15 01:35:09 +04:00
|
|
|
|
2011-12-16 23:36:39 +04:00
|
|
|
return ssc->init(s);
|
2009-05-15 01:35:09 +04:00
|
|
|
}
|
|
|
|
|
2011-12-08 07:34:16 +04:00
|
|
|
static void ssi_slave_class_init(ObjectClass *klass, void *data)
|
2009-05-15 01:35:09 +04:00
|
|
|
{
|
2011-12-08 07:34:16 +04:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
dc->init = ssi_slave_init;
|
2012-05-02 11:00:20 +04:00
|
|
|
dc->bus_type = TYPE_SSI_BUS;
|
2009-05-15 01:35:09 +04:00
|
|
|
}
|
|
|
|
|
2011-12-08 07:34:16 +04:00
|
|
|
static TypeInfo ssi_slave_info = {
|
|
|
|
.name = TYPE_SSI_SLAVE,
|
|
|
|
.parent = TYPE_DEVICE,
|
|
|
|
.class_init = ssi_slave_class_init,
|
|
|
|
.class_size = sizeof(SSISlaveClass),
|
|
|
|
.abstract = true,
|
|
|
|
};
|
|
|
|
|
2009-05-15 01:35:09 +04:00
|
|
|
DeviceState *ssi_create_slave(SSIBus *bus, const char *name)
|
|
|
|
{
|
|
|
|
DeviceState *dev;
|
2009-05-23 03:05:19 +04:00
|
|
|
dev = qdev_create(&bus->qbus, name);
|
2009-10-07 03:15:58 +04:00
|
|
|
qdev_init_nofail(dev);
|
2009-05-15 01:35:09 +04:00
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
2009-05-23 03:05:19 +04:00
|
|
|
SSIBus *ssi_create_bus(DeviceState *parent, const char *name)
|
2009-05-15 01:35:09 +04:00
|
|
|
{
|
2009-05-23 03:05:19 +04:00
|
|
|
BusState *bus;
|
2012-05-02 11:00:20 +04:00
|
|
|
bus = qbus_create(TYPE_SSI_BUS, parent, name);
|
2009-05-23 03:05:19 +04:00
|
|
|
return FROM_QBUS(SSIBus, bus);
|
2009-05-15 01:35:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t ssi_transfer(SSIBus *bus, uint32_t val)
|
|
|
|
{
|
2011-12-24 01:34:39 +04:00
|
|
|
BusChild *kid;
|
2009-05-23 03:05:19 +04:00
|
|
|
SSISlave *slave;
|
2011-12-16 23:36:39 +04:00
|
|
|
SSISlaveClass *ssc;
|
2011-12-24 01:34:39 +04:00
|
|
|
|
|
|
|
kid = QTAILQ_FIRST(&bus->qbus.children);
|
|
|
|
if (!kid) {
|
2009-05-15 01:35:09 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2011-12-24 01:34:39 +04:00
|
|
|
slave = SSI_SLAVE(kid->child);
|
2011-12-16 23:36:39 +04:00
|
|
|
ssc = SSI_SLAVE_GET_CLASS(slave);
|
|
|
|
return ssc->transfer(slave, val);
|
2009-05-15 01:35:09 +04:00
|
|
|
}
|
2011-12-08 07:34:16 +04:00
|
|
|
|
2012-02-09 18:20:55 +04:00
|
|
|
static void ssi_slave_register_types(void)
|
2011-12-08 07:34:16 +04:00
|
|
|
{
|
2012-05-02 11:00:20 +04:00
|
|
|
type_register_static(&ssi_bus_info);
|
2011-12-08 07:34:16 +04:00
|
|
|
type_register_static(&ssi_slave_info);
|
|
|
|
}
|
|
|
|
|
2012-02-09 18:20:55 +04:00
|
|
|
type_init(ssi_slave_register_types)
|