2009-08-31 14:23:59 +02:00
|
|
|
#include "hw.h"
|
|
|
|
#include "usb.h"
|
|
|
|
#include "qdev.h"
|
2009-08-31 14:24:00 +02:00
|
|
|
#include "sysemu.h"
|
|
|
|
#include "monitor.h"
|
|
|
|
|
|
|
|
static void usb_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent);
|
2009-08-31 14:23:59 +02:00
|
|
|
|
|
|
|
static struct BusInfo usb_bus_info = {
|
2009-08-31 14:24:00 +02:00
|
|
|
.name = "USB",
|
|
|
|
.size = sizeof(USBBus),
|
|
|
|
.print_dev = usb_bus_dev_print,
|
2009-08-31 14:23:59 +02:00
|
|
|
};
|
|
|
|
static int next_usb_bus = 0;
|
2009-09-12 09:36:22 +02:00
|
|
|
static QTAILQ_HEAD(, USBBus) busses = QTAILQ_HEAD_INITIALIZER(busses);
|
2009-08-31 14:23:59 +02:00
|
|
|
|
2009-09-16 22:25:29 +02:00
|
|
|
void usb_bus_new(USBBus *bus, DeviceState *host)
|
2009-08-31 14:23:59 +02:00
|
|
|
{
|
2009-09-16 22:25:29 +02:00
|
|
|
qbus_create_inplace(&bus->qbus, &usb_bus_info, host, NULL);
|
2009-08-31 14:23:59 +02:00
|
|
|
bus->busnr = next_usb_bus++;
|
2009-09-25 21:42:42 +02:00
|
|
|
bus->qbus.allow_hotplug = 1; /* Yes, we can */
|
2009-09-12 09:36:22 +02:00
|
|
|
QTAILQ_INIT(&bus->free);
|
|
|
|
QTAILQ_INIT(&bus->used);
|
|
|
|
QTAILQ_INSERT_TAIL(&busses, bus, next);
|
2009-08-31 14:23:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
USBBus *usb_bus_find(int busnr)
|
|
|
|
{
|
|
|
|
USBBus *bus;
|
|
|
|
|
|
|
|
if (-1 == busnr)
|
2009-09-12 09:36:22 +02:00
|
|
|
return QTAILQ_FIRST(&busses);
|
|
|
|
QTAILQ_FOREACH(bus, &busses, next) {
|
2009-08-31 14:23:59 +02:00
|
|
|
if (bus->busnr == busnr)
|
|
|
|
return bus;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int usb_qdev_init(DeviceState *qdev, DeviceInfo *base)
|
|
|
|
{
|
|
|
|
USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
|
|
|
|
USBDeviceInfo *info = DO_UPCAST(USBDeviceInfo, qdev, base);
|
|
|
|
int rc;
|
|
|
|
|
2009-12-09 17:07:52 +01:00
|
|
|
pstrcpy(dev->product_desc, sizeof(dev->product_desc), info->product_desc);
|
2009-08-31 14:23:59 +02:00
|
|
|
dev->info = info;
|
2009-10-26 15:56:48 +01:00
|
|
|
dev->auto_attach = 1;
|
2009-08-31 14:23:59 +02:00
|
|
|
rc = dev->info->init(dev);
|
2009-10-26 15:56:48 +01:00
|
|
|
if (rc == 0 && dev->auto_attach)
|
2009-08-31 14:24:00 +02:00
|
|
|
usb_device_attach(dev);
|
2009-08-31 14:23:59 +02:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2009-09-25 21:42:39 +02:00
|
|
|
static int usb_qdev_exit(DeviceState *qdev)
|
|
|
|
{
|
|
|
|
USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
|
|
|
|
|
|
|
|
usb_device_detach(dev);
|
|
|
|
if (dev->info->handle_destroy) {
|
|
|
|
dev->info->handle_destroy(dev);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-31 14:23:59 +02:00
|
|
|
void usb_qdev_register(USBDeviceInfo *info)
|
|
|
|
{
|
|
|
|
info->qdev.bus_info = &usb_bus_info;
|
|
|
|
info->qdev.init = usb_qdev_init;
|
2009-09-25 21:42:42 +02:00
|
|
|
info->qdev.unplug = qdev_simple_unplug_cb;
|
2009-09-25 21:42:39 +02:00
|
|
|
info->qdev.exit = usb_qdev_exit;
|
2009-08-31 14:23:59 +02:00
|
|
|
qdev_register(&info->qdev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_qdev_register_many(USBDeviceInfo *info)
|
|
|
|
{
|
|
|
|
while (info->qdev.name) {
|
|
|
|
usb_qdev_register(info);
|
|
|
|
info++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-31 14:24:00 +02:00
|
|
|
USBDevice *usb_create(USBBus *bus, const char *name)
|
2009-08-31 14:23:59 +02:00
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
|
|
|
|
#if 1
|
|
|
|
/* temporary stopgap until all usb is properly qdev-ified */
|
|
|
|
if (!bus) {
|
|
|
|
bus = usb_bus_find(-1);
|
|
|
|
if (!bus)
|
|
|
|
return NULL;
|
|
|
|
fprintf(stderr, "%s: no bus specified, using \"%s\" for \"%s\"\n",
|
|
|
|
__FUNCTION__, bus->qbus.name, name);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
dev = qdev_create(&bus->qbus, name);
|
|
|
|
return DO_UPCAST(USBDevice, qdev, dev);
|
|
|
|
}
|
2009-08-31 14:24:00 +02:00
|
|
|
|
|
|
|
USBDevice *usb_create_simple(USBBus *bus, const char *name)
|
|
|
|
{
|
|
|
|
USBDevice *dev = usb_create(bus, name);
|
2010-02-25 14:29:06 +01:00
|
|
|
if (!dev) {
|
|
|
|
hw_error("Failed to create USB device '%s'\n", name);
|
|
|
|
}
|
2009-10-07 01:15:58 +02:00
|
|
|
qdev_init_nofail(&dev->qdev);
|
2009-08-31 14:24:00 +02:00
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
|
|
|
|
usb_attachfn attach)
|
|
|
|
{
|
|
|
|
port->opaque = opaque;
|
|
|
|
port->index = index;
|
|
|
|
port->attach = attach;
|
2009-09-12 09:36:22 +02:00
|
|
|
QTAILQ_INSERT_TAIL(&bus->free, port, next);
|
2009-08-31 14:24:00 +02:00
|
|
|
bus->nfree++;
|
|
|
|
}
|
|
|
|
|
2009-09-25 21:42:39 +02:00
|
|
|
void usb_unregister_port(USBBus *bus, USBPort *port)
|
|
|
|
{
|
|
|
|
if (port->dev)
|
|
|
|
qdev_free(&port->dev->qdev);
|
|
|
|
QTAILQ_REMOVE(&bus->free, port, next);
|
|
|
|
bus->nfree--;
|
|
|
|
}
|
|
|
|
|
2009-08-31 14:24:00 +02:00
|
|
|
static void do_attach(USBDevice *dev)
|
|
|
|
{
|
|
|
|
USBBus *bus = usb_bus_from_device(dev);
|
|
|
|
USBPort *port;
|
|
|
|
|
|
|
|
if (dev->attached) {
|
|
|
|
fprintf(stderr, "Warning: tried to attach usb device %s twice\n",
|
2009-12-09 17:07:51 +01:00
|
|
|
dev->product_desc);
|
2009-08-31 14:24:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
dev->attached++;
|
|
|
|
|
2009-09-12 09:36:22 +02:00
|
|
|
port = QTAILQ_FIRST(&bus->free);
|
|
|
|
QTAILQ_REMOVE(&bus->free, port, next);
|
2009-08-31 14:24:00 +02:00
|
|
|
bus->nfree--;
|
|
|
|
|
|
|
|
usb_attach(port, dev);
|
|
|
|
|
2009-09-12 09:36:22 +02:00
|
|
|
QTAILQ_INSERT_TAIL(&bus->used, port, next);
|
2009-08-31 14:24:00 +02:00
|
|
|
bus->nused++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int usb_device_attach(USBDevice *dev)
|
|
|
|
{
|
|
|
|
USBBus *bus = usb_bus_from_device(dev);
|
|
|
|
USBDevice *hub;
|
|
|
|
|
|
|
|
if (bus->nfree == 1) {
|
|
|
|
/* Create a new hub and chain it on. */
|
2009-12-09 17:07:53 +01:00
|
|
|
hub = usb_create_simple(bus, "usb-hub");
|
2009-08-31 14:24:00 +02:00
|
|
|
}
|
|
|
|
do_attach(dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-25 21:42:39 +02:00
|
|
|
int usb_device_detach(USBDevice *dev)
|
|
|
|
{
|
|
|
|
USBBus *bus = usb_bus_from_device(dev);
|
|
|
|
USBPort *port;
|
|
|
|
|
|
|
|
if (!dev->attached) {
|
|
|
|
fprintf(stderr, "Warning: tried to detach unattached usb device %s\n",
|
2009-12-09 17:07:51 +01:00
|
|
|
dev->product_desc);
|
2009-09-25 21:42:39 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
dev->attached--;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(port, &bus->used, next) {
|
|
|
|
if (port->dev == dev)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
assert(port != NULL);
|
|
|
|
|
|
|
|
QTAILQ_REMOVE(&bus->used, port, next);
|
|
|
|
bus->nused--;
|
|
|
|
|
|
|
|
usb_attach(port, NULL);
|
|
|
|
|
|
|
|
QTAILQ_INSERT_TAIL(&bus->free, port, next);
|
|
|
|
bus->nfree++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-31 14:24:00 +02:00
|
|
|
int usb_device_delete_addr(int busnr, int addr)
|
|
|
|
{
|
|
|
|
USBBus *bus;
|
|
|
|
USBPort *port;
|
|
|
|
USBDevice *dev;
|
|
|
|
|
|
|
|
bus = usb_bus_find(busnr);
|
|
|
|
if (!bus)
|
|
|
|
return -1;
|
|
|
|
|
2009-09-12 09:36:22 +02:00
|
|
|
QTAILQ_FOREACH(port, &bus->used, next) {
|
2009-08-31 14:24:00 +02:00
|
|
|
if (port->dev->addr == addr)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!port)
|
|
|
|
return -1;
|
|
|
|
dev = port->dev;
|
|
|
|
|
2009-09-25 21:42:39 +02:00
|
|
|
qdev_free(&dev->qdev);
|
2009-08-31 14:24:00 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *usb_speed(unsigned int speed)
|
|
|
|
{
|
|
|
|
static const char *txt[] = {
|
|
|
|
[ USB_SPEED_LOW ] = "1.5",
|
|
|
|
[ USB_SPEED_FULL ] = "12",
|
|
|
|
[ USB_SPEED_HIGH ] = "480",
|
|
|
|
};
|
|
|
|
if (speed >= ARRAY_SIZE(txt))
|
|
|
|
return "?";
|
|
|
|
return txt[speed];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usb_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent)
|
|
|
|
{
|
|
|
|
USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
|
|
|
|
USBBus *bus = usb_bus_from_device(dev);
|
|
|
|
|
2009-10-26 15:56:51 +01:00
|
|
|
monitor_printf(mon, "%*saddr %d.%d, speed %s, name %s%s\n",
|
|
|
|
indent, "", bus->busnr, dev->addr,
|
2009-12-09 17:07:51 +01:00
|
|
|
usb_speed(dev->speed), dev->product_desc,
|
2009-10-26 15:56:51 +01:00
|
|
|
dev->attached ? ", attached" : "");
|
2009-08-31 14:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_info(Monitor *mon)
|
|
|
|
{
|
|
|
|
USBBus *bus;
|
|
|
|
USBDevice *dev;
|
|
|
|
USBPort *port;
|
|
|
|
|
2009-09-12 09:36:22 +02:00
|
|
|
if (QTAILQ_EMPTY(&busses)) {
|
2009-08-31 14:24:00 +02:00
|
|
|
monitor_printf(mon, "USB support not enabled\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-12 09:36:22 +02:00
|
|
|
QTAILQ_FOREACH(bus, &busses, next) {
|
|
|
|
QTAILQ_FOREACH(port, &bus->used, next) {
|
2009-08-31 14:24:00 +02:00
|
|
|
dev = port->dev;
|
|
|
|
if (!dev)
|
|
|
|
continue;
|
|
|
|
monitor_printf(mon, " Device %d.%d, Speed %s Mb/s, Product %s\n",
|
2009-12-09 17:07:51 +01:00
|
|
|
bus->busnr, dev->addr, usb_speed(dev->speed),
|
|
|
|
dev->product_desc);
|
2009-08-31 14:24:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-26 15:56:45 +01:00
|
|
|
/* handle legacy -usbdevice cmd line option */
|
|
|
|
USBDevice *usbdevice_create(const char *cmdline)
|
|
|
|
{
|
|
|
|
USBBus *bus = usb_bus_find(-1 /* any */);
|
|
|
|
DeviceInfo *info;
|
|
|
|
USBDeviceInfo *usb;
|
|
|
|
char driver[32], *params;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
params = strchr(cmdline,':');
|
|
|
|
if (params) {
|
|
|
|
params++;
|
|
|
|
len = params - cmdline;
|
|
|
|
if (len > sizeof(driver))
|
|
|
|
len = sizeof(driver);
|
|
|
|
pstrcpy(driver, len, cmdline);
|
|
|
|
} else {
|
|
|
|
pstrcpy(driver, sizeof(driver), cmdline);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (info = device_info_list; info != NULL; info = info->next) {
|
|
|
|
if (info->bus_info != &usb_bus_info)
|
|
|
|
continue;
|
|
|
|
usb = DO_UPCAST(USBDeviceInfo, qdev, info);
|
|
|
|
if (usb->usbdevice_name == NULL)
|
|
|
|
continue;
|
|
|
|
if (strcmp(usb->usbdevice_name, driver) != 0)
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (info == NULL) {
|
|
|
|
#if 0
|
|
|
|
/* no error because some drivers are not converted (yet) */
|
|
|
|
qemu_error("usbdevice %s not found\n", driver);
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!usb->usbdevice_init) {
|
|
|
|
if (params) {
|
|
|
|
qemu_error("usbdevice %s accepts no params\n", driver);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return usb_create_simple(bus, usb->qdev.name);
|
|
|
|
}
|
|
|
|
return usb->usbdevice_init(params);
|
|
|
|
}
|