]> git.proxmox.com Git - qemu.git/blame - hw/usb-bus.c
xen: fix interrupt routing
[qemu.git] / hw / usb-bus.c
CommitLineData
806b6024
GH
1#include "hw.h"
2#include "usb.h"
3#include "qdev.h"
a5d2f727
GH
4#include "sysemu.h"
5#include "monitor.h"
6
7static void usb_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent);
c7a2196a
GH
8
9static char *usb_get_dev_path(DeviceState *dev);
70d31cb2 10static char *usb_get_fw_dev_path(DeviceState *qdev);
806b6024
GH
11
12static struct BusInfo usb_bus_info = {
a5d2f727
GH
13 .name = "USB",
14 .size = sizeof(USBBus),
15 .print_dev = usb_bus_dev_print,
c7a2196a 16 .get_dev_path = usb_get_dev_path,
70d31cb2 17 .get_fw_dev_path = usb_get_fw_dev_path,
5f69076b
GH
18 .props = (Property[]) {
19 DEFINE_PROP_STRING("port", USBDevice, port_path),
20 DEFINE_PROP_END_OF_LIST()
21 },
806b6024
GH
22};
23static int next_usb_bus = 0;
72cf2d4f 24static QTAILQ_HEAD(, USBBus) busses = QTAILQ_HEAD_INITIALIZER(busses);
806b6024 25
c1ecb40a
GH
26const VMStateDescription vmstate_usb_device = {
27 .name = "USBDevice",
28 .version_id = 1,
29 .minimum_version_id = 1,
30 .fields = (VMStateField []) {
31 VMSTATE_UINT8(addr, USBDevice),
32 VMSTATE_INT32(state, USBDevice),
33 VMSTATE_INT32(remote_wakeup, USBDevice),
34 VMSTATE_INT32(setup_state, USBDevice),
35 VMSTATE_INT32(setup_len, USBDevice),
36 VMSTATE_INT32(setup_index, USBDevice),
37 VMSTATE_UINT8_ARRAY(setup_buf, USBDevice, 8),
38 VMSTATE_END_OF_LIST(),
39 }
40};
41
07771f6f 42void usb_bus_new(USBBus *bus, USBBusOps *ops, DeviceState *host)
806b6024 43{
b2317837 44 qbus_create_inplace(&bus->qbus, &usb_bus_info, host, NULL);
07771f6f 45 bus->ops = ops;
806b6024 46 bus->busnr = next_usb_bus++;
ef816d83 47 bus->qbus.allow_hotplug = 1; /* Yes, we can */
72cf2d4f
BS
48 QTAILQ_INIT(&bus->free);
49 QTAILQ_INIT(&bus->used);
50 QTAILQ_INSERT_TAIL(&busses, bus, next);
806b6024
GH
51}
52
53USBBus *usb_bus_find(int busnr)
54{
55 USBBus *bus;
56
57 if (-1 == busnr)
72cf2d4f
BS
58 return QTAILQ_FIRST(&busses);
59 QTAILQ_FOREACH(bus, &busses, next) {
806b6024
GH
60 if (bus->busnr == busnr)
61 return bus;
62 }
63 return NULL;
64}
65
66static int usb_qdev_init(DeviceState *qdev, DeviceInfo *base)
67{
68 USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
69 USBDeviceInfo *info = DO_UPCAST(USBDeviceInfo, qdev, base);
70 int rc;
71
06384698 72 pstrcpy(dev->product_desc, sizeof(dev->product_desc), info->product_desc);
806b6024 73 dev->info = info;
61e094c0 74 dev->auto_attach = 1;
132a3f55 75 QLIST_INIT(&dev->strings);
806b6024 76 rc = dev->info->init(dev);
61e094c0 77 if (rc == 0 && dev->auto_attach)
a5d2f727 78 usb_device_attach(dev);
806b6024
GH
79 return rc;
80}
81
a8e662b5
GH
82static int usb_qdev_exit(DeviceState *qdev)
83{
84 USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
07771f6f 85 USBBus *bus = usb_bus_from_device(dev);
a8e662b5 86
290a5c60
HG
87 if (dev->attached) {
88 usb_device_detach(dev);
89 }
07771f6f 90 bus->ops->device_destroy(bus, dev);
a8e662b5
GH
91 if (dev->info->handle_destroy) {
92 dev->info->handle_destroy(dev);
93 }
94 return 0;
95}
96
806b6024
GH
97void usb_qdev_register(USBDeviceInfo *info)
98{
99 info->qdev.bus_info = &usb_bus_info;
100 info->qdev.init = usb_qdev_init;
ef816d83 101 info->qdev.unplug = qdev_simple_unplug_cb;
a8e662b5 102 info->qdev.exit = usb_qdev_exit;
806b6024
GH
103 qdev_register(&info->qdev);
104}
105
106void usb_qdev_register_many(USBDeviceInfo *info)
107{
108 while (info->qdev.name) {
109 usb_qdev_register(info);
110 info++;
111 }
112}
113
a5d2f727 114USBDevice *usb_create(USBBus *bus, const char *name)
806b6024
GH
115{
116 DeviceState *dev;
117
118#if 1
119 /* temporary stopgap until all usb is properly qdev-ified */
120 if (!bus) {
121 bus = usb_bus_find(-1);
122 if (!bus)
123 return NULL;
124 fprintf(stderr, "%s: no bus specified, using \"%s\" for \"%s\"\n",
125 __FUNCTION__, bus->qbus.name, name);
126 }
127#endif
128
129 dev = qdev_create(&bus->qbus, name);
806b6024
GH
130 return DO_UPCAST(USBDevice, qdev, dev);
131}
a5d2f727
GH
132
133USBDevice *usb_create_simple(USBBus *bus, const char *name)
134{
135 USBDevice *dev = usb_create(bus, name);
d44168ff
PB
136 if (!dev) {
137 hw_error("Failed to create USB device '%s'\n", name);
138 }
e23a1b33 139 qdev_init_nofail(&dev->qdev);
a5d2f727
GH
140 return dev;
141}
142
143void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
ace1318b 144 USBPortOps *ops, int speedmask)
a5d2f727
GH
145{
146 port->opaque = opaque;
147 port->index = index;
0d86d2be
GH
148 port->opaque = opaque;
149 port->index = index;
150 port->ops = ops;
843d4e0c 151 port->speedmask = speedmask;
72cf2d4f 152 QTAILQ_INSERT_TAIL(&bus->free, port, next);
a5d2f727
GH
153 bus->nfree++;
154}
155
c7a2196a
GH
156void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr)
157{
158 if (upstream) {
159 snprintf(downstream->path, sizeof(downstream->path), "%s.%d",
160 upstream->path, portnr);
161 } else {
162 snprintf(downstream->path, sizeof(downstream->path), "%d", portnr);
163 }
164}
165
a8e662b5
GH
166void usb_unregister_port(USBBus *bus, USBPort *port)
167{
168 if (port->dev)
169 qdev_free(&port->dev->qdev);
170 QTAILQ_REMOVE(&bus->free, port, next);
171 bus->nfree--;
172}
173
a5d2f727
GH
174static void do_attach(USBDevice *dev)
175{
176 USBBus *bus = usb_bus_from_device(dev);
177 USBPort *port;
178
179 if (dev->attached) {
180 fprintf(stderr, "Warning: tried to attach usb device %s twice\n",
0fe6d12e 181 dev->product_desc);
a5d2f727
GH
182 return;
183 }
5f69076b
GH
184 if (dev->port_path) {
185 QTAILQ_FOREACH(port, &bus->free, next) {
186 if (strcmp(port->path, dev->port_path) == 0) {
187 break;
188 }
189 }
190 if (port == NULL) {
191 fprintf(stderr, "Warning: usb port %s (bus %s) not found\n",
192 dev->port_path, bus->qbus.name);
193 return;
194 }
195 } else {
196 port = QTAILQ_FIRST(&bus->free);
197 }
a5d2f727 198
5f69076b 199 dev->attached++;
72cf2d4f 200 QTAILQ_REMOVE(&bus->free, port, next);
a5d2f727
GH
201 bus->nfree--;
202
203 usb_attach(port, dev);
204
72cf2d4f 205 QTAILQ_INSERT_TAIL(&bus->used, port, next);
a5d2f727
GH
206 bus->nused++;
207}
208
209int usb_device_attach(USBDevice *dev)
210{
211 USBBus *bus = usb_bus_from_device(dev);
a5d2f727 212
5f69076b
GH
213 if (bus->nfree == 1 && dev->port_path == NULL) {
214 /* Create a new hub and chain it on
215 (unless a physical port location is specified). */
d4c4e6fd 216 usb_create_simple(bus, "usb-hub");
a5d2f727
GH
217 }
218 do_attach(dev);
219 return 0;
220}
221
a8e662b5
GH
222int usb_device_detach(USBDevice *dev)
223{
224 USBBus *bus = usb_bus_from_device(dev);
225 USBPort *port;
226
227 if (!dev->attached) {
228 fprintf(stderr, "Warning: tried to detach unattached usb device %s\n",
0fe6d12e 229 dev->product_desc);
a8e662b5
GH
230 return -1;
231 }
232 dev->attached--;
233
234 QTAILQ_FOREACH(port, &bus->used, next) {
235 if (port->dev == dev)
236 break;
237 }
238 assert(port != NULL);
239
240 QTAILQ_REMOVE(&bus->used, port, next);
241 bus->nused--;
242
243 usb_attach(port, NULL);
244
245 QTAILQ_INSERT_TAIL(&bus->free, port, next);
246 bus->nfree++;
247 return 0;
248}
249
a5d2f727
GH
250int usb_device_delete_addr(int busnr, int addr)
251{
252 USBBus *bus;
253 USBPort *port;
254 USBDevice *dev;
255
256 bus = usb_bus_find(busnr);
257 if (!bus)
258 return -1;
259
72cf2d4f 260 QTAILQ_FOREACH(port, &bus->used, next) {
a5d2f727
GH
261 if (port->dev->addr == addr)
262 break;
263 }
264 if (!port)
265 return -1;
a5d2f727 266 dev = port->dev;
a5d2f727 267
a8e662b5 268 qdev_free(&dev->qdev);
a5d2f727
GH
269 return 0;
270}
271
272static const char *usb_speed(unsigned int speed)
273{
274 static const char *txt[] = {
275 [ USB_SPEED_LOW ] = "1.5",
276 [ USB_SPEED_FULL ] = "12",
277 [ USB_SPEED_HIGH ] = "480",
290d26d2 278 [ USB_SPEED_SUPER ] = "5000",
a5d2f727
GH
279 };
280 if (speed >= ARRAY_SIZE(txt))
281 return "?";
282 return txt[speed];
283}
284
285static void usb_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent)
286{
287 USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
288 USBBus *bus = usb_bus_from_device(dev);
289
c7a2196a 290 monitor_printf(mon, "%*saddr %d.%d, port %s, speed %s, name %s%s\n",
66a6593a 291 indent, "", bus->busnr, dev->addr,
c7a2196a 292 dev->port ? dev->port->path : "-",
0fe6d12e 293 usb_speed(dev->speed), dev->product_desc,
66a6593a 294 dev->attached ? ", attached" : "");
a5d2f727
GH
295}
296
c7a2196a
GH
297static char *usb_get_dev_path(DeviceState *qdev)
298{
299 USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
300 return qemu_strdup(dev->port->path);
301}
302
70d31cb2
GH
303static char *usb_get_fw_dev_path(DeviceState *qdev)
304{
305 USBDevice *dev = DO_UPCAST(USBDevice, qdev, qdev);
306 char *fw_path, *in;
ea87e95f 307 ssize_t pos = 0, fw_len;
70d31cb2
GH
308 long nr;
309
ea87e95f
BS
310 fw_len = 32 + strlen(dev->port->path) * 6;
311 fw_path = qemu_malloc(fw_len);
70d31cb2 312 in = dev->port->path;
ea87e95f 313 while (fw_len - pos > 0) {
70d31cb2
GH
314 nr = strtol(in, &in, 10);
315 if (in[0] == '.') {
316 /* some hub between root port and device */
ea87e95f 317 pos += snprintf(fw_path + pos, fw_len - pos, "hub@%ld/", nr);
70d31cb2
GH
318 in++;
319 } else {
320 /* the device itself */
ea87e95f
BS
321 pos += snprintf(fw_path + pos, fw_len - pos, "%s@%ld",
322 qdev_fw_name(qdev), nr);
70d31cb2
GH
323 break;
324 }
325 }
326 return fw_path;
327}
328
a5d2f727
GH
329void usb_info(Monitor *mon)
330{
331 USBBus *bus;
332 USBDevice *dev;
333 USBPort *port;
334
72cf2d4f 335 if (QTAILQ_EMPTY(&busses)) {
a5d2f727
GH
336 monitor_printf(mon, "USB support not enabled\n");
337 return;
338 }
339
72cf2d4f
BS
340 QTAILQ_FOREACH(bus, &busses, next) {
341 QTAILQ_FOREACH(port, &bus->used, next) {
a5d2f727
GH
342 dev = port->dev;
343 if (!dev)
344 continue;
c7a2196a
GH
345 monitor_printf(mon, " Device %d.%d, Port %s, Speed %s Mb/s, Product %s\n",
346 bus->busnr, dev->addr, port->path, usb_speed(dev->speed),
0fe6d12e 347 dev->product_desc);
a5d2f727
GH
348 }
349 }
350}
351
0958b4cc
GH
352/* handle legacy -usbdevice cmd line option */
353USBDevice *usbdevice_create(const char *cmdline)
354{
355 USBBus *bus = usb_bus_find(-1 /* any */);
356 DeviceInfo *info;
357 USBDeviceInfo *usb;
702f3e0f
JK
358 char driver[32];
359 const char *params;
0958b4cc
GH
360 int len;
361
362 params = strchr(cmdline,':');
363 if (params) {
364 params++;
365 len = params - cmdline;
366 if (len > sizeof(driver))
367 len = sizeof(driver);
368 pstrcpy(driver, len, cmdline);
369 } else {
702f3e0f 370 params = "";
0958b4cc
GH
371 pstrcpy(driver, sizeof(driver), cmdline);
372 }
373
374 for (info = device_info_list; info != NULL; info = info->next) {
375 if (info->bus_info != &usb_bus_info)
376 continue;
377 usb = DO_UPCAST(USBDeviceInfo, qdev, info);
378 if (usb->usbdevice_name == NULL)
379 continue;
380 if (strcmp(usb->usbdevice_name, driver) != 0)
381 continue;
382 break;
383 }
384 if (info == NULL) {
385#if 0
386 /* no error because some drivers are not converted (yet) */
1ecda02b 387 error_report("usbdevice %s not found", driver);
0958b4cc
GH
388#endif
389 return NULL;
390 }
391
392 if (!usb->usbdevice_init) {
98f22dc1 393 if (*params) {
1ecda02b 394 error_report("usbdevice %s accepts no params", driver);
0958b4cc
GH
395 return NULL;
396 }
397 return usb_create_simple(bus, usb->qdev.name);
398 }
399 return usb->usbdevice_init(params);
400}