]>
Commit | Line | Data |
---|---|---|
f1ae32a1 GH |
1 | #include "hw/hw.h" |
2 | #include "hw/usb.h" | |
3 | #include "hw/qdev.h" | |
a5d2f727 GH |
4 | #include "sysemu.h" |
5 | #include "monitor.h" | |
891fb2cd | 6 | #include "trace.h" |
a5d2f727 GH |
7 | |
8 | static void usb_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent); | |
c7a2196a GH |
9 | |
10 | static char *usb_get_dev_path(DeviceState *dev); | |
70d31cb2 | 11 | static char *usb_get_fw_dev_path(DeviceState *qdev); |
f462141f | 12 | static int usb_qdev_exit(DeviceState *qdev); |
806b6024 | 13 | |
3cb75a7c PB |
14 | static Property usb_props[] = { |
15 | DEFINE_PROP_STRING("port", USBDevice, port_path), | |
16 | DEFINE_PROP_BIT("full-path", USBDevice, flags, | |
17 | USB_DEV_FLAG_FULL_PATH, true), | |
18 | DEFINE_PROP_END_OF_LIST() | |
19 | }; | |
20 | ||
0d936928 AL |
21 | static void usb_bus_class_init(ObjectClass *klass, void *data) |
22 | { | |
23 | BusClass *k = BUS_CLASS(klass); | |
24 | ||
25 | k->print_dev = usb_bus_dev_print; | |
26 | k->get_dev_path = usb_get_dev_path; | |
27 | k->get_fw_dev_path = usb_get_fw_dev_path; | |
28 | } | |
29 | ||
30 | static const TypeInfo usb_bus_info = { | |
31 | .name = TYPE_USB_BUS, | |
32 | .parent = TYPE_BUS, | |
33 | .instance_size = sizeof(USBBus), | |
34 | .class_init = usb_bus_class_init, | |
806b6024 | 35 | }; |
3cb75a7c | 36 | |
806b6024 | 37 | static int next_usb_bus = 0; |
72cf2d4f | 38 | static QTAILQ_HEAD(, USBBus) busses = QTAILQ_HEAD_INITIALIZER(busses); |
806b6024 | 39 | |
495d5447 GH |
40 | static int usb_device_post_load(void *opaque, int version_id) |
41 | { | |
42 | USBDevice *dev = opaque; | |
43 | ||
44 | if (dev->state == USB_STATE_NOTATTACHED) { | |
45 | dev->attached = 0; | |
46 | } else { | |
47 | dev->attached = 1; | |
48 | } | |
49 | return 0; | |
50 | } | |
51 | ||
c1ecb40a GH |
52 | const VMStateDescription vmstate_usb_device = { |
53 | .name = "USBDevice", | |
54 | .version_id = 1, | |
55 | .minimum_version_id = 1, | |
495d5447 | 56 | .post_load = usb_device_post_load, |
c1ecb40a GH |
57 | .fields = (VMStateField []) { |
58 | VMSTATE_UINT8(addr, USBDevice), | |
59 | VMSTATE_INT32(state, USBDevice), | |
60 | VMSTATE_INT32(remote_wakeup, USBDevice), | |
61 | VMSTATE_INT32(setup_state, USBDevice), | |
62 | VMSTATE_INT32(setup_len, USBDevice), | |
63 | VMSTATE_INT32(setup_index, USBDevice), | |
64 | VMSTATE_UINT8_ARRAY(setup_buf, USBDevice, 8), | |
65 | VMSTATE_END_OF_LIST(), | |
66 | } | |
67 | }; | |
68 | ||
07771f6f | 69 | void usb_bus_new(USBBus *bus, USBBusOps *ops, DeviceState *host) |
806b6024 | 70 | { |
0d936928 | 71 | qbus_create_inplace(&bus->qbus, TYPE_USB_BUS, host, NULL); |
07771f6f | 72 | bus->ops = ops; |
806b6024 | 73 | bus->busnr = next_usb_bus++; |
ef816d83 | 74 | bus->qbus.allow_hotplug = 1; /* Yes, we can */ |
72cf2d4f BS |
75 | QTAILQ_INIT(&bus->free); |
76 | QTAILQ_INIT(&bus->used); | |
77 | QTAILQ_INSERT_TAIL(&busses, bus, next); | |
806b6024 GH |
78 | } |
79 | ||
80 | USBBus *usb_bus_find(int busnr) | |
81 | { | |
82 | USBBus *bus; | |
83 | ||
84 | if (-1 == busnr) | |
72cf2d4f BS |
85 | return QTAILQ_FIRST(&busses); |
86 | QTAILQ_FOREACH(bus, &busses, next) { | |
806b6024 GH |
87 | if (bus->busnr == busnr) |
88 | return bus; | |
89 | } | |
90 | return NULL; | |
91 | } | |
92 | ||
62aed765 AL |
93 | static int usb_device_init(USBDevice *dev) |
94 | { | |
95 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
96 | if (klass->init) { | |
97 | return klass->init(dev); | |
98 | } | |
99 | return 0; | |
100 | } | |
101 | ||
73796fe6 | 102 | USBDevice *usb_device_find_device(USBDevice *dev, uint8_t addr) |
62aed765 AL |
103 | { |
104 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
73796fe6 GH |
105 | if (klass->find_device) { |
106 | return klass->find_device(dev, addr); | |
62aed765 | 107 | } |
73796fe6 | 108 | return NULL; |
62aed765 AL |
109 | } |
110 | ||
62aed765 | 111 | static void usb_device_handle_destroy(USBDevice *dev) |
62aed765 AL |
112 | { |
113 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
62aed765 AL |
114 | if (klass->handle_destroy) { |
115 | klass->handle_destroy(dev); | |
62aed765 | 116 | } |
62aed765 AL |
117 | } |
118 | ||
119 | void usb_device_cancel_packet(USBDevice *dev, USBPacket *p) | |
120 | { | |
121 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
122 | if (klass->cancel_packet) { | |
123 | klass->cancel_packet(dev, p); | |
124 | } | |
125 | } | |
126 | ||
127 | void usb_device_handle_attach(USBDevice *dev) | |
128 | { | |
129 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
130 | if (klass->handle_attach) { | |
131 | klass->handle_attach(dev); | |
132 | } | |
133 | } | |
134 | ||
135 | void usb_device_handle_reset(USBDevice *dev) | |
136 | { | |
137 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
138 | if (klass->handle_reset) { | |
139 | klass->handle_reset(dev); | |
140 | } | |
141 | } | |
142 | ||
9a77a0f5 HG |
143 | void usb_device_handle_control(USBDevice *dev, USBPacket *p, int request, |
144 | int value, int index, int length, uint8_t *data) | |
62aed765 AL |
145 | { |
146 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
147 | if (klass->handle_control) { | |
9a77a0f5 | 148 | klass->handle_control(dev, p, request, value, index, length, data); |
62aed765 | 149 | } |
62aed765 AL |
150 | } |
151 | ||
9a77a0f5 | 152 | void usb_device_handle_data(USBDevice *dev, USBPacket *p) |
62aed765 AL |
153 | { |
154 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
155 | if (klass->handle_data) { | |
9a77a0f5 | 156 | klass->handle_data(dev, p); |
62aed765 | 157 | } |
62aed765 AL |
158 | } |
159 | ||
160 | const char *usb_device_get_product_desc(USBDevice *dev) | |
161 | { | |
162 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
163 | return klass->product_desc; | |
164 | } | |
165 | ||
166 | const USBDesc *usb_device_get_usb_desc(USBDevice *dev) | |
167 | { | |
168 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
169 | return klass->usb_desc; | |
170 | } | |
171 | ||
172 | void usb_device_set_interface(USBDevice *dev, int interface, | |
173 | int alt_old, int alt_new) | |
174 | { | |
175 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
176 | if (klass->set_interface) { | |
177 | klass->set_interface(dev, interface, alt_old, alt_new); | |
178 | } | |
179 | } | |
180 | ||
36dfe324 HG |
181 | void usb_device_flush_ep_queue(USBDevice *dev, USBEndpoint *ep) |
182 | { | |
183 | USBDeviceClass *klass = USB_DEVICE_GET_CLASS(dev); | |
184 | if (klass->flush_ep_queue) { | |
185 | klass->flush_ep_queue(dev, ep); | |
186 | } | |
187 | } | |
188 | ||
d307af79 | 189 | static int usb_qdev_init(DeviceState *qdev) |
806b6024 | 190 | { |
62aed765 | 191 | USBDevice *dev = USB_DEVICE(qdev); |
806b6024 GH |
192 | int rc; |
193 | ||
62aed765 AL |
194 | pstrcpy(dev->product_desc, sizeof(dev->product_desc), |
195 | usb_device_get_product_desc(dev)); | |
61e094c0 | 196 | dev->auto_attach = 1; |
132a3f55 | 197 | QLIST_INIT(&dev->strings); |
d8e17efd | 198 | usb_ep_init(dev); |
891fb2cd | 199 | rc = usb_claim_port(dev); |
f462141f | 200 | if (rc != 0) { |
db3a5ed7 | 201 | return rc; |
891fb2cd | 202 | } |
62aed765 | 203 | rc = usb_device_init(dev); |
f462141f | 204 | if (rc != 0) { |
db3a5ed7 SH |
205 | usb_release_port(dev); |
206 | return rc; | |
f462141f GH |
207 | } |
208 | if (dev->auto_attach) { | |
fa19bf83 | 209 | rc = usb_device_attach(dev); |
f462141f | 210 | if (rc != 0) { |
db3a5ed7 SH |
211 | usb_qdev_exit(qdev); |
212 | return rc; | |
f462141f | 213 | } |
891fb2cd | 214 | } |
f462141f | 215 | return 0; |
806b6024 GH |
216 | } |
217 | ||
a8e662b5 GH |
218 | static int usb_qdev_exit(DeviceState *qdev) |
219 | { | |
62aed765 | 220 | USBDevice *dev = USB_DEVICE(qdev); |
a8e662b5 | 221 | |
290a5c60 HG |
222 | if (dev->attached) { |
223 | usb_device_detach(dev); | |
224 | } | |
62aed765 | 225 | usb_device_handle_destroy(dev); |
891fb2cd GH |
226 | if (dev->port) { |
227 | usb_release_port(dev); | |
228 | } | |
a8e662b5 GH |
229 | return 0; |
230 | } | |
231 | ||
62aed765 | 232 | typedef struct LegacyUSBFactory |
806b6024 | 233 | { |
62aed765 AL |
234 | const char *name; |
235 | const char *usbdevice_name; | |
3741715c | 236 | USBDevice *(*usbdevice_init)(USBBus *bus, const char *params); |
62aed765 | 237 | } LegacyUSBFactory; |
806b6024 | 238 | |
62aed765 AL |
239 | static GSList *legacy_usb_factory; |
240 | ||
ba02430f | 241 | void usb_legacy_register(const char *typename, const char *usbdevice_name, |
3741715c JK |
242 | USBDevice *(*usbdevice_init)(USBBus *bus, |
243 | const char *params)) | |
806b6024 | 244 | { |
62aed765 AL |
245 | if (usbdevice_name) { |
246 | LegacyUSBFactory *f = g_malloc0(sizeof(*f)); | |
ba02430f | 247 | f->name = typename; |
62aed765 AL |
248 | f->usbdevice_name = usbdevice_name; |
249 | f->usbdevice_init = usbdevice_init; | |
250 | legacy_usb_factory = g_slist_append(legacy_usb_factory, f); | |
806b6024 GH |
251 | } |
252 | } | |
253 | ||
a5d2f727 | 254 | USBDevice *usb_create(USBBus *bus, const char *name) |
806b6024 GH |
255 | { |
256 | DeviceState *dev; | |
257 | ||
806b6024 | 258 | dev = qdev_create(&bus->qbus, name); |
62aed765 | 259 | return USB_DEVICE(dev); |
806b6024 | 260 | } |
a5d2f727 GH |
261 | |
262 | USBDevice *usb_create_simple(USBBus *bus, const char *name) | |
263 | { | |
264 | USBDevice *dev = usb_create(bus, name); | |
2af2a1b8 GH |
265 | int rc; |
266 | ||
d44168ff | 267 | if (!dev) { |
be62a2eb | 268 | error_report("Failed to create USB device '%s'", name); |
2af2a1b8 GH |
269 | return NULL; |
270 | } | |
271 | rc = qdev_init(&dev->qdev); | |
272 | if (rc < 0) { | |
be62a2eb | 273 | error_report("Failed to initialize USB device '%s'", name); |
2af2a1b8 | 274 | return NULL; |
d44168ff | 275 | } |
a5d2f727 GH |
276 | return dev; |
277 | } | |
278 | ||
090ac642 HG |
279 | static void usb_fill_port(USBPort *port, void *opaque, int index, |
280 | USBPortOps *ops, int speedmask) | |
a5d2f727 | 281 | { |
0d86d2be GH |
282 | port->opaque = opaque; |
283 | port->index = index; | |
284 | port->ops = ops; | |
843d4e0c | 285 | port->speedmask = speedmask; |
3631e6c8 | 286 | usb_port_location(port, NULL, index + 1); |
090ac642 HG |
287 | } |
288 | ||
289 | void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index, | |
290 | USBPortOps *ops, int speedmask) | |
291 | { | |
292 | usb_fill_port(port, opaque, index, ops, speedmask); | |
72cf2d4f | 293 | QTAILQ_INSERT_TAIL(&bus->free, port, next); |
a5d2f727 GH |
294 | bus->nfree++; |
295 | } | |
296 | ||
ae60fea9 HG |
297 | int usb_register_companion(const char *masterbus, USBPort *ports[], |
298 | uint32_t portcount, uint32_t firstport, | |
299 | void *opaque, USBPortOps *ops, int speedmask) | |
300 | { | |
301 | USBBus *bus; | |
302 | int i; | |
303 | ||
304 | QTAILQ_FOREACH(bus, &busses, next) { | |
305 | if (strcmp(bus->qbus.name, masterbus) == 0) { | |
306 | break; | |
307 | } | |
308 | } | |
309 | ||
310 | if (!bus || !bus->ops->register_companion) { | |
311 | qerror_report(QERR_INVALID_PARAMETER_VALUE, "masterbus", | |
312 | "an USB masterbus"); | |
313 | if (bus) { | |
314 | error_printf_unless_qmp( | |
315 | "USB bus '%s' does not allow companion controllers\n", | |
316 | masterbus); | |
317 | } | |
318 | return -1; | |
319 | } | |
320 | ||
321 | for (i = 0; i < portcount; i++) { | |
322 | usb_fill_port(ports[i], opaque, i, ops, speedmask); | |
323 | } | |
324 | ||
325 | return bus->ops->register_companion(bus, ports, portcount, firstport); | |
326 | } | |
327 | ||
c7a2196a GH |
328 | void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr) |
329 | { | |
330 | if (upstream) { | |
331 | snprintf(downstream->path, sizeof(downstream->path), "%s.%d", | |
332 | upstream->path, portnr); | |
333 | } else { | |
334 | snprintf(downstream->path, sizeof(downstream->path), "%d", portnr); | |
335 | } | |
336 | } | |
337 | ||
a8e662b5 GH |
338 | void usb_unregister_port(USBBus *bus, USBPort *port) |
339 | { | |
340 | if (port->dev) | |
341 | qdev_free(&port->dev->qdev); | |
342 | QTAILQ_REMOVE(&bus->free, port, next); | |
343 | bus->nfree--; | |
344 | } | |
345 | ||
891fb2cd | 346 | int usb_claim_port(USBDevice *dev) |
a5d2f727 GH |
347 | { |
348 | USBBus *bus = usb_bus_from_device(dev); | |
349 | USBPort *port; | |
350 | ||
891fb2cd GH |
351 | assert(dev->port == NULL); |
352 | ||
5f69076b GH |
353 | if (dev->port_path) { |
354 | QTAILQ_FOREACH(port, &bus->free, next) { | |
355 | if (strcmp(port->path, dev->port_path) == 0) { | |
356 | break; | |
357 | } | |
358 | } | |
359 | if (port == NULL) { | |
be62a2eb | 360 | error_report("Error: usb port %s (bus %s) not found (in use?)", |
891fb2cd | 361 | dev->port_path, bus->qbus.name); |
fa19bf83 | 362 | return -1; |
5f69076b GH |
363 | } |
364 | } else { | |
f79f2bfc | 365 | if (bus->nfree == 1 && strcmp(object_get_typename(OBJECT(dev)), "usb-hub") != 0) { |
891fb2cd GH |
366 | /* Create a new hub and chain it on */ |
367 | usb_create_simple(bus, "usb-hub"); | |
368 | } | |
369 | if (bus->nfree == 0) { | |
370 | error_report("Error: tried to attach usb device %s to a bus " | |
be62a2eb | 371 | "with no free ports", dev->product_desc); |
891fb2cd GH |
372 | return -1; |
373 | } | |
5f69076b GH |
374 | port = QTAILQ_FIRST(&bus->free); |
375 | } | |
891fb2cd | 376 | trace_usb_port_claim(bus->busnr, port->path); |
a5d2f727 | 377 | |
72cf2d4f | 378 | QTAILQ_REMOVE(&bus->free, port, next); |
a5d2f727 GH |
379 | bus->nfree--; |
380 | ||
891fb2cd GH |
381 | dev->port = port; |
382 | port->dev = dev; | |
a5d2f727 | 383 | |
72cf2d4f | 384 | QTAILQ_INSERT_TAIL(&bus->used, port, next); |
a5d2f727 | 385 | bus->nused++; |
fa19bf83 | 386 | return 0; |
a5d2f727 GH |
387 | } |
388 | ||
891fb2cd | 389 | void usb_release_port(USBDevice *dev) |
a5d2f727 GH |
390 | { |
391 | USBBus *bus = usb_bus_from_device(dev); | |
891fb2cd | 392 | USBPort *port = dev->port; |
a5d2f727 | 393 | |
891fb2cd GH |
394 | assert(port != NULL); |
395 | trace_usb_port_release(bus->busnr, port->path); | |
396 | ||
397 | QTAILQ_REMOVE(&bus->used, port, next); | |
398 | bus->nused--; | |
399 | ||
400 | dev->port = NULL; | |
401 | port->dev = NULL; | |
402 | ||
403 | QTAILQ_INSERT_TAIL(&bus->free, port, next); | |
404 | bus->nfree++; | |
a5d2f727 GH |
405 | } |
406 | ||
891fb2cd | 407 | int usb_device_attach(USBDevice *dev) |
a8e662b5 GH |
408 | { |
409 | USBBus *bus = usb_bus_from_device(dev); | |
891fb2cd | 410 | USBPort *port = dev->port; |
a8e662b5 | 411 | |
891fb2cd GH |
412 | assert(port != NULL); |
413 | assert(!dev->attached); | |
414 | trace_usb_port_attach(bus->busnr, port->path); | |
415 | ||
416 | if (!(port->speedmask & dev->speedmask)) { | |
417 | error_report("Warning: speed mismatch trying to attach " | |
be62a2eb | 418 | "usb device %s to bus %s", |
891fb2cd | 419 | dev->product_desc, bus->qbus.name); |
a8e662b5 GH |
420 | return -1; |
421 | } | |
a8e662b5 | 422 | |
891fb2cd GH |
423 | dev->attached++; |
424 | usb_attach(port); | |
a8e662b5 | 425 | |
891fb2cd GH |
426 | return 0; |
427 | } | |
428 | ||
429 | int usb_device_detach(USBDevice *dev) | |
430 | { | |
431 | USBBus *bus = usb_bus_from_device(dev); | |
432 | USBPort *port = dev->port; | |
a8e662b5 | 433 | |
891fb2cd GH |
434 | assert(port != NULL); |
435 | assert(dev->attached); | |
436 | trace_usb_port_detach(bus->busnr, port->path); | |
a8e662b5 | 437 | |
891fb2cd GH |
438 | usb_detach(port); |
439 | dev->attached--; | |
a8e662b5 GH |
440 | return 0; |
441 | } | |
442 | ||
a5d2f727 GH |
443 | int usb_device_delete_addr(int busnr, int addr) |
444 | { | |
445 | USBBus *bus; | |
446 | USBPort *port; | |
447 | USBDevice *dev; | |
448 | ||
449 | bus = usb_bus_find(busnr); | |
450 | if (!bus) | |
451 | return -1; | |
452 | ||
72cf2d4f | 453 | QTAILQ_FOREACH(port, &bus->used, next) { |
a5d2f727 GH |
454 | if (port->dev->addr == addr) |
455 | break; | |
456 | } | |
457 | if (!port) | |
458 | return -1; | |
a5d2f727 | 459 | dev = port->dev; |
a5d2f727 | 460 | |
a8e662b5 | 461 | qdev_free(&dev->qdev); |
a5d2f727 GH |
462 | return 0; |
463 | } | |
464 | ||
465 | static const char *usb_speed(unsigned int speed) | |
466 | { | |
467 | static const char *txt[] = { | |
468 | [ USB_SPEED_LOW ] = "1.5", | |
469 | [ USB_SPEED_FULL ] = "12", | |
470 | [ USB_SPEED_HIGH ] = "480", | |
290d26d2 | 471 | [ USB_SPEED_SUPER ] = "5000", |
a5d2f727 GH |
472 | }; |
473 | if (speed >= ARRAY_SIZE(txt)) | |
474 | return "?"; | |
475 | return txt[speed]; | |
476 | } | |
477 | ||
478 | static void usb_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent) | |
479 | { | |
62aed765 | 480 | USBDevice *dev = USB_DEVICE(qdev); |
a5d2f727 GH |
481 | USBBus *bus = usb_bus_from_device(dev); |
482 | ||
c7a2196a | 483 | monitor_printf(mon, "%*saddr %d.%d, port %s, speed %s, name %s%s\n", |
66a6593a | 484 | indent, "", bus->busnr, dev->addr, |
c7a2196a | 485 | dev->port ? dev->port->path : "-", |
0fe6d12e | 486 | usb_speed(dev->speed), dev->product_desc, |
66a6593a | 487 | dev->attached ? ", attached" : ""); |
a5d2f727 GH |
488 | } |
489 | ||
c7a2196a GH |
490 | static char *usb_get_dev_path(DeviceState *qdev) |
491 | { | |
62aed765 | 492 | USBDevice *dev = USB_DEVICE(qdev); |
eeb0cf9a GH |
493 | DeviceState *hcd = qdev->parent_bus->parent; |
494 | char *id = NULL; | |
495 | ||
09e5ab63 AL |
496 | if (dev->flags & (1 << USB_DEV_FLAG_FULL_PATH)) { |
497 | id = qdev_get_dev_path(hcd); | |
eeb0cf9a GH |
498 | } |
499 | if (id) { | |
500 | char *ret = g_strdup_printf("%s/%s", id, dev->port->path); | |
501 | g_free(id); | |
502 | return ret; | |
503 | } else { | |
504 | return g_strdup(dev->port->path); | |
505 | } | |
c7a2196a GH |
506 | } |
507 | ||
70d31cb2 GH |
508 | static char *usb_get_fw_dev_path(DeviceState *qdev) |
509 | { | |
62aed765 | 510 | USBDevice *dev = USB_DEVICE(qdev); |
70d31cb2 | 511 | char *fw_path, *in; |
ea87e95f | 512 | ssize_t pos = 0, fw_len; |
70d31cb2 GH |
513 | long nr; |
514 | ||
ea87e95f | 515 | fw_len = 32 + strlen(dev->port->path) * 6; |
7267c094 | 516 | fw_path = g_malloc(fw_len); |
70d31cb2 | 517 | in = dev->port->path; |
ea87e95f | 518 | while (fw_len - pos > 0) { |
70d31cb2 GH |
519 | nr = strtol(in, &in, 10); |
520 | if (in[0] == '.') { | |
521 | /* some hub between root port and device */ | |
ea87e95f | 522 | pos += snprintf(fw_path + pos, fw_len - pos, "hub@%ld/", nr); |
70d31cb2 GH |
523 | in++; |
524 | } else { | |
525 | /* the device itself */ | |
ea87e95f BS |
526 | pos += snprintf(fw_path + pos, fw_len - pos, "%s@%ld", |
527 | qdev_fw_name(qdev), nr); | |
70d31cb2 GH |
528 | break; |
529 | } | |
530 | } | |
531 | return fw_path; | |
532 | } | |
533 | ||
a5d2f727 GH |
534 | void usb_info(Monitor *mon) |
535 | { | |
536 | USBBus *bus; | |
537 | USBDevice *dev; | |
538 | USBPort *port; | |
539 | ||
72cf2d4f | 540 | if (QTAILQ_EMPTY(&busses)) { |
a5d2f727 GH |
541 | monitor_printf(mon, "USB support not enabled\n"); |
542 | return; | |
543 | } | |
544 | ||
72cf2d4f BS |
545 | QTAILQ_FOREACH(bus, &busses, next) { |
546 | QTAILQ_FOREACH(port, &bus->used, next) { | |
a5d2f727 GH |
547 | dev = port->dev; |
548 | if (!dev) | |
549 | continue; | |
c7a2196a GH |
550 | monitor_printf(mon, " Device %d.%d, Port %s, Speed %s Mb/s, Product %s\n", |
551 | bus->busnr, dev->addr, port->path, usb_speed(dev->speed), | |
0fe6d12e | 552 | dev->product_desc); |
a5d2f727 GH |
553 | } |
554 | } | |
555 | } | |
556 | ||
0958b4cc GH |
557 | /* handle legacy -usbdevice cmd line option */ |
558 | USBDevice *usbdevice_create(const char *cmdline) | |
559 | { | |
560 | USBBus *bus = usb_bus_find(-1 /* any */); | |
62aed765 AL |
561 | LegacyUSBFactory *f = NULL; |
562 | GSList *i; | |
702f3e0f JK |
563 | char driver[32]; |
564 | const char *params; | |
0958b4cc GH |
565 | int len; |
566 | ||
567 | params = strchr(cmdline,':'); | |
568 | if (params) { | |
569 | params++; | |
570 | len = params - cmdline; | |
571 | if (len > sizeof(driver)) | |
572 | len = sizeof(driver); | |
573 | pstrcpy(driver, len, cmdline); | |
574 | } else { | |
702f3e0f | 575 | params = ""; |
0958b4cc GH |
576 | pstrcpy(driver, sizeof(driver), cmdline); |
577 | } | |
578 | ||
62aed765 AL |
579 | for (i = legacy_usb_factory; i; i = i->next) { |
580 | f = i->data; | |
581 | if (strcmp(f->usbdevice_name, driver) == 0) { | |
582 | break; | |
583 | } | |
0958b4cc | 584 | } |
62aed765 | 585 | if (i == NULL) { |
0958b4cc GH |
586 | #if 0 |
587 | /* no error because some drivers are not converted (yet) */ | |
1ecda02b | 588 | error_report("usbdevice %s not found", driver); |
0958b4cc GH |
589 | #endif |
590 | return NULL; | |
591 | } | |
592 | ||
62aed765 | 593 | if (!f->usbdevice_init) { |
98f22dc1 | 594 | if (*params) { |
1ecda02b | 595 | error_report("usbdevice %s accepts no params", driver); |
0958b4cc GH |
596 | return NULL; |
597 | } | |
62aed765 | 598 | return usb_create_simple(bus, f->name); |
0958b4cc | 599 | } |
3741715c | 600 | return f->usbdevice_init(bus, params); |
0958b4cc | 601 | } |
62aed765 | 602 | |
39bffca2 AL |
603 | static void usb_device_class_init(ObjectClass *klass, void *data) |
604 | { | |
605 | DeviceClass *k = DEVICE_CLASS(klass); | |
0d936928 | 606 | k->bus_type = TYPE_USB_BUS; |
39bffca2 AL |
607 | k->init = usb_qdev_init; |
608 | k->unplug = qdev_simple_unplug_cb; | |
609 | k->exit = usb_qdev_exit; | |
bce54474 | 610 | k->props = usb_props; |
39bffca2 AL |
611 | } |
612 | ||
62aed765 AL |
613 | static TypeInfo usb_device_type_info = { |
614 | .name = TYPE_USB_DEVICE, | |
615 | .parent = TYPE_DEVICE, | |
616 | .instance_size = sizeof(USBDevice), | |
617 | .abstract = true, | |
618 | .class_size = sizeof(USBDeviceClass), | |
39bffca2 | 619 | .class_init = usb_device_class_init, |
62aed765 AL |
620 | }; |
621 | ||
83f7d43a | 622 | static void usb_register_types(void) |
62aed765 | 623 | { |
0d936928 | 624 | type_register_static(&usb_bus_info); |
62aed765 AL |
625 | type_register_static(&usb_device_type_info); |
626 | } | |
627 | ||
83f7d43a | 628 | type_init(usb_register_types) |