]> git.proxmox.com Git - mirror_qemu.git/blame - hw/usb/dev-hub.c
Merge remote-tracking branch 'remotes/ehabkost/tags/x86-next-pull-request' into staging
[mirror_qemu.git] / hw / usb / dev-hub.c
CommitLineData
72899afc
FB
1/*
2 * QEMU USB HUB emulation
3 *
4 * Copyright (c) 2005 Fabrice Bellard
5fafdf24 5 *
72899afc
FB
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
0b8fa32f 24
e532b2e0 25#include "qemu/osdep.h"
da34e65c 26#include "qapi/error.h"
1cc403eb 27#include "qemu/timer.h"
529f8f9f 28#include "trace.h"
a27bd6c7 29#include "hw/qdev-properties.h"
f1ae32a1 30#include "hw/usb.h"
d6454270 31#include "migration/vmstate.h"
463581a8 32#include "desc.h"
c24e4aac 33#include "qemu/error-report.h"
0b8fa32f 34#include "qemu/module.h"
72899afc 35
9d84bb00 36#define MAX_PORTS 8
72899afc
FB
37
38typedef struct USBHubPort {
39 USBPort port;
40 uint16_t wPortStatus;
41 uint16_t wPortChange;
42} USBHubPort;
43
44typedef struct USBHubState {
45 USBDevice dev;
7567b51f 46 USBEndpoint *intr;
9d84bb00 47 uint32_t num_ports;
1cc403eb
GH
48 bool port_power;
49 QEMUTimer *port_timer;
9d84bb00 50 USBHubPort ports[MAX_PORTS];
72899afc
FB
51} USBHubState;
52
e81b13ad
GA
53#define TYPE_USB_HUB "usb-hub"
54#define USB_HUB(obj) OBJECT_CHECK(USBHubState, (obj), TYPE_USB_HUB)
55
72899afc
FB
56#define ClearHubFeature (0x2000 | USB_REQ_CLEAR_FEATURE)
57#define ClearPortFeature (0x2300 | USB_REQ_CLEAR_FEATURE)
58#define GetHubDescriptor (0xa000 | USB_REQ_GET_DESCRIPTOR)
59#define GetHubStatus (0xa000 | USB_REQ_GET_STATUS)
60#define GetPortStatus (0xa300 | USB_REQ_GET_STATUS)
61#define SetHubFeature (0x2000 | USB_REQ_SET_FEATURE)
62#define SetPortFeature (0x2300 | USB_REQ_SET_FEATURE)
63
64#define PORT_STAT_CONNECTION 0x0001
65#define PORT_STAT_ENABLE 0x0002
66#define PORT_STAT_SUSPEND 0x0004
67#define PORT_STAT_OVERCURRENT 0x0008
68#define PORT_STAT_RESET 0x0010
69#define PORT_STAT_POWER 0x0100
70#define PORT_STAT_LOW_SPEED 0x0200
71#define PORT_STAT_HIGH_SPEED 0x0400
72#define PORT_STAT_TEST 0x0800
73#define PORT_STAT_INDICATOR 0x1000
74
75#define PORT_STAT_C_CONNECTION 0x0001
76#define PORT_STAT_C_ENABLE 0x0002
77#define PORT_STAT_C_SUSPEND 0x0004
78#define PORT_STAT_C_OVERCURRENT 0x0008
79#define PORT_STAT_C_RESET 0x0010
80
81#define PORT_CONNECTION 0
82#define PORT_ENABLE 1
83#define PORT_SUSPEND 2
84#define PORT_OVERCURRENT 3
85#define PORT_RESET 4
86#define PORT_POWER 8
87#define PORT_LOWSPEED 9
88#define PORT_HIGHSPEED 10
89#define PORT_C_CONNECTION 16
90#define PORT_C_ENABLE 17
91#define PORT_C_SUSPEND 18
92#define PORT_C_OVERCURRENT 19
93#define PORT_C_RESET 20
94#define PORT_TEST 21
95#define PORT_INDICATOR 22
96
97/* same as Linux kernel root hubs */
98
062651c7
GH
99enum {
100 STR_MANUFACTURER = 1,
101 STR_PRODUCT,
102 STR_SERIALNUMBER,
103};
104
105static const USBDescStrings desc_strings = {
93bfef4c 106 [STR_MANUFACTURER] = "QEMU",
062651c7
GH
107 [STR_PRODUCT] = "QEMU USB Hub",
108 [STR_SERIALNUMBER] = "314159",
109};
110
111static const USBDescIface desc_iface_hub = {
112 .bInterfaceNumber = 0,
113 .bNumEndpoints = 1,
114 .bInterfaceClass = USB_CLASS_HUB,
115 .eps = (USBDescEndpoint[]) {
116 {
117 .bEndpointAddress = USB_DIR_IN | 0x01,
118 .bmAttributes = USB_ENDPOINT_XFER_INT,
9d84bb00 119 .wMaxPacketSize = 1 + DIV_ROUND_UP(MAX_PORTS, 8),
062651c7
GH
120 .bInterval = 0xff,
121 },
122 }
123};
124
125static const USBDescDevice desc_device_hub = {
126 .bcdUSB = 0x0110,
127 .bDeviceClass = USB_CLASS_HUB,
128 .bMaxPacketSize0 = 8,
129 .bNumConfigurations = 1,
130 .confs = (USBDescConfig[]) {
131 {
132 .bNumInterfaces = 1,
133 .bConfigurationValue = 1,
bd93976a
PK
134 .bmAttributes = USB_CFG_ATT_ONE | USB_CFG_ATT_SELFPOWER |
135 USB_CFG_ATT_WAKEUP,
add75088 136 .nif = 1,
062651c7
GH
137 .ifs = &desc_iface_hub,
138 },
139 },
140};
141
142static const USBDesc desc_hub = {
143 .id = {
db80358a
RT
144 .idVendor = 0x0409,
145 .idProduct = 0x55aa,
062651c7
GH
146 .bcdDevice = 0x0101,
147 .iManufacturer = STR_MANUFACTURER,
148 .iProduct = STR_PRODUCT,
149 .iSerialNumber = STR_SERIALNUMBER,
150 },
151 .full = &desc_device_hub,
152 .str = desc_strings,
153};
154
72899afc
FB
155static const uint8_t qemu_hub_hub_descriptor[] =
156{
7d37435b
PB
157 0x00, /* u8 bLength; patched in later */
158 0x29, /* u8 bDescriptorType; Hub-descriptor */
159 0x00, /* u8 bNbrPorts; (patched later) */
160 0x0a, /* u16 wHubCharacteristics; */
161 0x00, /* (per-port OC, no power switching) */
162 0x01, /* u8 bPwrOn2pwrGood; 2ms */
163 0x00 /* u8 bHubContrCurrent; 0 mA */
985d1742
FB
164
165 /* DeviceRemovable and PortPwrCtrlMask patched in later */
72899afc
FB
166};
167
868a4203
GH
168static bool usb_hub_port_change(USBHubPort *port, uint16_t status)
169{
170 bool notify = false;
171
172 if (status & 0x1f) {
173 port->wPortChange |= status;
174 notify = true;
175 }
176 return notify;
177}
178
179static bool usb_hub_port_set(USBHubPort *port, uint16_t status)
180{
181 if (port->wPortStatus & status) {
182 return false;
183 }
184 port->wPortStatus |= status;
185 return usb_hub_port_change(port, status);
186}
187
188static bool usb_hub_port_clear(USBHubPort *port, uint16_t status)
189{
190 if (!(port->wPortStatus & status)) {
191 return false;
192 }
193 port->wPortStatus &= ~status;
194 return usb_hub_port_change(port, status);
195}
196
638ac2d8
GH
197static bool usb_hub_port_update(USBHubPort *port)
198{
199 bool notify = false;
200
201 if (port->port.dev && port->port.dev->attached) {
202 notify = usb_hub_port_set(port, PORT_STAT_CONNECTION);
203 if (port->port.dev->speed == USB_SPEED_LOW) {
204 usb_hub_port_set(port, PORT_STAT_LOW_SPEED);
205 } else {
206 usb_hub_port_clear(port, PORT_STAT_LOW_SPEED);
207 }
208 }
209 return notify;
210}
211
1cc403eb
GH
212static void usb_hub_port_update_timer(void *opaque)
213{
214 USBHubState *s = opaque;
215 bool notify = false;
216 int i;
217
218 for (i = 0; i < s->num_ports; i++) {
219 notify |= usb_hub_port_update(&s->ports[i]);
220 }
221 if (notify) {
222 usb_wakeup(s->intr, 0);
223 }
224}
225
618c169b 226static void usb_hub_attach(USBPort *port1)
72899afc
FB
227{
228 USBHubState *s = port1->opaque;
229 USBHubPort *port = &s->ports[port1->index];
3b46e624 230
529f8f9f 231 trace_usb_hub_attach(s->dev.addr, port1->index + 1);
638ac2d8 232 usb_hub_port_update(port);
8550a02d 233 usb_wakeup(s->intr, 0);
618c169b
GH
234}
235
236static void usb_hub_detach(USBPort *port1)
237{
238 USBHubState *s = port1->opaque;
239 USBHubPort *port = &s->ports[port1->index];
240
529f8f9f 241 trace_usb_hub_detach(s->dev.addr, port1->index + 1);
8550a02d 242 usb_wakeup(s->intr, 0);
be35cbbc 243
4706ab6c
HG
244 /* Let upstream know the device on this port is gone */
245 s->dev.port->ops->child_detach(s->dev.port, port1->dev);
246
868a4203
GH
247 usb_hub_port_clear(port, PORT_STAT_CONNECTION);
248 usb_hub_port_clear(port, PORT_STAT_ENABLE);
249 usb_hub_port_clear(port, PORT_STAT_SUSPEND);
8550a02d 250 usb_wakeup(s->intr, 0);
72899afc
FB
251}
252
4706ab6c
HG
253static void usb_hub_child_detach(USBPort *port1, USBDevice *child)
254{
255 USBHubState *s = port1->opaque;
256
257 /* Pass along upstream */
258 s->dev.port->ops->child_detach(s->dev.port, child);
259}
260
d47e59b8 261static void usb_hub_wakeup(USBPort *port1)
34239c7b 262{
d47e59b8
HG
263 USBHubState *s = port1->opaque;
264 USBHubPort *port = &s->ports[port1->index];
34239c7b 265
868a4203 266 if (usb_hub_port_clear(port, PORT_STAT_SUSPEND)) {
8550a02d 267 usb_wakeup(s->intr, 0);
34239c7b
GH
268 }
269}
270
d47e59b8 271static void usb_hub_complete(USBPort *port, USBPacket *packet)
13a9a0d3 272{
d47e59b8 273 USBHubState *s = port->opaque;
13a9a0d3
GH
274
275 /*
276 * Just pass it along upstream for now.
277 *
80cf7cf7 278 * If we ever implement usb 2.0 split transactions this will
13a9a0d3 279 * become a little more complicated ...
80cf7cf7
GH
280 *
281 * Can't use usb_packet_complete() here because packet->owner is
282 * cleared already, go call the ->complete() callback directly
283 * instead.
13a9a0d3 284 */
80cf7cf7 285 s->dev.port->ops->complete(s->dev.port, packet);
13a9a0d3
GH
286}
287
06c75088
GH
288static USBDevice *usb_hub_find_device(USBDevice *dev, uint8_t addr)
289{
e81b13ad 290 USBHubState *s = USB_HUB(dev);
06c75088
GH
291 USBHubPort *port;
292 USBDevice *downstream;
293 int i;
294
9d84bb00 295 for (i = 0; i < s->num_ports; i++) {
06c75088
GH
296 port = &s->ports[i];
297 if (!(port->wPortStatus & PORT_STAT_ENABLE)) {
298 continue;
299 }
300 downstream = usb_find_device(&port->port, addr);
301 if (downstream != NULL) {
302 return downstream;
303 }
304 }
305 return NULL;
306}
307
059809e4 308static void usb_hub_handle_reset(USBDevice *dev)
72899afc 309{
e81b13ad 310 USBHubState *s = USB_HUB(dev);
20d183b6
GH
311 USBHubPort *port;
312 int i;
313
529f8f9f 314 trace_usb_hub_reset(s->dev.addr);
9d84bb00 315 for (i = 0; i < s->num_ports; i++) {
20d183b6 316 port = s->ports + i;
868a4203 317 port->wPortStatus = 0;
20d183b6 318 port->wPortChange = 0;
868a4203 319 usb_hub_port_set(port, PORT_STAT_POWER);
638ac2d8 320 usb_hub_port_update(port);
20d183b6 321 }
72899afc
FB
322}
323
529f8f9f
GH
324static const char *feature_name(int feature)
325{
326 static const char *name[] = {
327 [PORT_CONNECTION] = "connection",
328 [PORT_ENABLE] = "enable",
329 [PORT_SUSPEND] = "suspend",
330 [PORT_OVERCURRENT] = "overcurrent",
331 [PORT_RESET] = "reset",
332 [PORT_POWER] = "power",
333 [PORT_LOWSPEED] = "lowspeed",
334 [PORT_HIGHSPEED] = "highspeed",
bdb88a8e
GH
335 [PORT_C_CONNECTION] = "change-connection",
336 [PORT_C_ENABLE] = "change-enable",
337 [PORT_C_SUSPEND] = "change-suspend",
338 [PORT_C_OVERCURRENT] = "change-overcurrent",
339 [PORT_C_RESET] = "change-reset",
529f8f9f
GH
340 [PORT_TEST] = "test",
341 [PORT_INDICATOR] = "indicator",
342 };
343 if (feature < 0 || feature >= ARRAY_SIZE(name)) {
344 return "?";
345 }
346 return name[feature] ?: "?";
347}
348
9a77a0f5 349static void usb_hub_handle_control(USBDevice *dev, USBPacket *p,
007fd62f 350 int request, int value, int index, int length, uint8_t *data)
72899afc
FB
351{
352 USBHubState *s = (USBHubState *)dev;
353 int ret;
354
529f8f9f
GH
355 trace_usb_hub_control(s->dev.addr, request, value, index, length);
356
007fd62f 357 ret = usb_desc_handle_control(dev, p, request, value, index, length, data);
062651c7 358 if (ret >= 0) {
9a77a0f5 359 return;
062651c7
GH
360 }
361
72899afc 362 switch(request) {
985d1742
FB
363 case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
364 if (value == 0 && index != 0x81) { /* clear ep halt */
365 goto fail;
366 }
985d1742 367 break;
72899afc
FB
368 /* usb specific requests */
369 case GetHubStatus:
370 data[0] = 0;
371 data[1] = 0;
372 data[2] = 0;
373 data[3] = 0;
9a77a0f5 374 p->actual_length = 4;
72899afc
FB
375 break;
376 case GetPortStatus:
377 {
378 unsigned int n = index - 1;
379 USBHubPort *port;
9d84bb00 380 if (n >= s->num_ports) {
72899afc 381 goto fail;
062651c7 382 }
72899afc 383 port = &s->ports[n];
529f8f9f
GH
384 trace_usb_hub_get_port_status(s->dev.addr, index,
385 port->wPortStatus,
386 port->wPortChange);
72899afc
FB
387 data[0] = port->wPortStatus;
388 data[1] = port->wPortStatus >> 8;
389 data[2] = port->wPortChange;
390 data[3] = port->wPortChange >> 8;
9a77a0f5 391 p->actual_length = 4;
72899afc
FB
392 }
393 break;
394 case SetHubFeature:
395 case ClearHubFeature:
9a77a0f5 396 if (value != 0 && value != 1) {
72899afc
FB
397 goto fail;
398 }
72899afc
FB
399 break;
400 case SetPortFeature:
401 {
402 unsigned int n = index - 1;
403 USBHubPort *port;
404 USBDevice *dev;
529f8f9f
GH
405
406 trace_usb_hub_set_port_feature(s->dev.addr, index,
407 feature_name(value));
408
9d84bb00 409 if (n >= s->num_ports) {
72899afc 410 goto fail;
062651c7 411 }
72899afc
FB
412 port = &s->ports[n];
413 dev = port->port.dev;
414 switch(value) {
415 case PORT_SUSPEND:
416 port->wPortStatus |= PORT_STAT_SUSPEND;
417 break;
418 case PORT_RESET:
868a4203
GH
419 usb_hub_port_set(port, PORT_STAT_RESET);
420 usb_hub_port_clear(port, PORT_STAT_RESET);
3393bc10 421 if (dev && dev->attached) {
d28f4e2d 422 usb_device_reset(dev);
868a4203 423 usb_hub_port_set(port, PORT_STAT_ENABLE);
72899afc 424 }
868a4203 425 usb_wakeup(s->intr, 0);
72899afc
FB
426 break;
427 case PORT_POWER:
1cc403eb
GH
428 if (s->port_power) {
429 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
430 usb_hub_port_set(port, PORT_STAT_POWER);
431 timer_mod(s->port_timer, now + 5000000); /* 5 ms */
432 }
72899afc
FB
433 break;
434 default:
435 goto fail;
436 }
72899afc
FB
437 }
438 break;
439 case ClearPortFeature:
440 {
441 unsigned int n = index - 1;
442 USBHubPort *port;
d4c4e6fd 443
529f8f9f
GH
444 trace_usb_hub_clear_port_feature(s->dev.addr, index,
445 feature_name(value));
446
9d84bb00 447 if (n >= s->num_ports) {
72899afc 448 goto fail;
062651c7 449 }
72899afc 450 port = &s->ports[n];
72899afc
FB
451 switch(value) {
452 case PORT_ENABLE:
453 port->wPortStatus &= ~PORT_STAT_ENABLE;
454 break;
455 case PORT_C_ENABLE:
456 port->wPortChange &= ~PORT_STAT_C_ENABLE;
457 break;
458 case PORT_SUSPEND:
868a4203 459 usb_hub_port_clear(port, PORT_STAT_SUSPEND);
72899afc
FB
460 break;
461 case PORT_C_SUSPEND:
462 port->wPortChange &= ~PORT_STAT_C_SUSPEND;
463 break;
464 case PORT_C_CONNECTION:
465 port->wPortChange &= ~PORT_STAT_C_CONNECTION;
466 break;
467 case PORT_C_OVERCURRENT:
468 port->wPortChange &= ~PORT_STAT_C_OVERCURRENT;
469 break;
470 case PORT_C_RESET:
471 port->wPortChange &= ~PORT_STAT_C_RESET;
472 break;
1cc403eb
GH
473 case PORT_POWER:
474 if (s->port_power) {
475 usb_hub_port_clear(port, PORT_STAT_POWER);
476 usb_hub_port_clear(port, PORT_STAT_CONNECTION);
477 usb_hub_port_clear(port, PORT_STAT_ENABLE);
478 usb_hub_port_clear(port, PORT_STAT_SUSPEND);
479 port->wPortChange = 0;
480 }
72899afc
FB
481 default:
482 goto fail;
483 }
72899afc
FB
484 }
485 break;
486 case GetHubDescriptor:
985d1742
FB
487 {
488 unsigned int n, limit, var_hub_size = 0;
5fafdf24 489 memcpy(data, qemu_hub_hub_descriptor,
985d1742 490 sizeof(qemu_hub_hub_descriptor));
9d84bb00 491 data[2] = s->num_ports;
985d1742 492
1cc403eb
GH
493 if (s->port_power) {
494 data[3] &= ~0x03;
495 data[3] |= 0x01;
496 }
497
985d1742 498 /* fill DeviceRemovable bits */
9d84bb00 499 limit = DIV_ROUND_UP(s->num_ports + 1, 8) + 7;
985d1742
FB
500 for (n = 7; n < limit; n++) {
501 data[n] = 0x00;
502 var_hub_size++;
503 }
504
505 /* fill PortPwrCtrlMask bits */
9d84bb00 506 limit = limit + DIV_ROUND_UP(s->num_ports, 8);
985d1742
FB
507 for (;n < limit; n++) {
508 data[n] = 0xff;
509 var_hub_size++;
510 }
511
9a77a0f5
HG
512 p->actual_length = sizeof(qemu_hub_hub_descriptor) + var_hub_size;
513 data[0] = p->actual_length;
985d1742
FB
514 break;
515 }
72899afc
FB
516 default:
517 fail:
9a77a0f5 518 p->status = USB_RET_STALL;
72899afc
FB
519 break;
520 }
72899afc
FB
521}
522
9a77a0f5 523static void usb_hub_handle_data(USBDevice *dev, USBPacket *p)
72899afc
FB
524{
525 USBHubState *s = (USBHubState *)dev;
72899afc 526
4d611c9a 527 switch(p->pid) {
72899afc 528 case USB_TOKEN_IN:
079d0b7f 529 if (p->ep->nr == 1) {
72899afc
FB
530 USBHubPort *port;
531 unsigned int status;
4f4321c1 532 uint8_t buf[4];
72899afc 533 int i, n;
9d84bb00 534 n = DIV_ROUND_UP(s->num_ports + 1, 8);
4f4321c1 535 if (p->iov.size == 1) { /* FreeBSD workaround */
985d1742 536 n = 1;
4f4321c1 537 } else if (n > p->iov.size) {
9a77a0f5
HG
538 p->status = USB_RET_BABBLE;
539 return;
985d1742 540 }
72899afc 541 status = 0;
9d84bb00 542 for (i = 0; i < s->num_ports; i++) {
72899afc 543 port = &s->ports[i];
bdebd6ee 544 if (port->wPortChange)
72899afc
FB
545 status |= (1 << (i + 1));
546 }
547 if (status != 0) {
b8cbc137 548 trace_usb_hub_status_report(s->dev.addr, status);
72899afc 549 for(i = 0; i < n; i++) {
4f4321c1 550 buf[i] = status >> (8 * i);
72899afc 551 }
4f4321c1 552 usb_packet_copy(p, buf, n);
72899afc 553 } else {
9a77a0f5 554 p->status = USB_RET_NAK; /* usb11 11.13.1 */
72899afc
FB
555 }
556 } else {
557 goto fail;
558 }
559 break;
560 case USB_TOKEN_OUT:
561 default:
562 fail:
9a77a0f5 563 p->status = USB_RET_STALL;
72899afc
FB
564 break;
565 }
72899afc
FB
566}
567
b69c3c21 568static void usb_hub_unrealize(USBDevice *dev)
059809e4
FB
569{
570 USBHubState *s = (USBHubState *)dev;
a8e662b5 571 int i;
059809e4 572
9d84bb00 573 for (i = 0; i < s->num_ports; i++) {
a8e662b5
GH
574 usb_unregister_port(usb_bus_from_device(dev),
575 &s->ports[i].port);
576 }
1cc403eb
GH
577
578 timer_del(s->port_timer);
579 timer_free(s->port_timer);
059809e4
FB
580}
581
0d86d2be
GH
582static USBPortOps usb_hub_port_ops = {
583 .attach = usb_hub_attach,
618c169b 584 .detach = usb_hub_detach,
4706ab6c 585 .child_detach = usb_hub_child_detach,
34239c7b 586 .wakeup = usb_hub_wakeup,
13a9a0d3 587 .complete = usb_hub_complete,
0d86d2be
GH
588};
589
f3f8c459 590static void usb_hub_realize(USBDevice *dev, Error **errp)
72899afc 591{
e81b13ad 592 USBHubState *s = USB_HUB(dev);
72899afc
FB
593 USBHubPort *port;
594 int i;
595
9d84bb00
GH
596 if (s->num_ports < 1 || s->num_ports > MAX_PORTS) {
597 error_setg(errp, "num_ports (%d) out of range (1..%d)",
598 s->num_ports, MAX_PORTS);
599 return;
600 }
601
c24e4aac 602 if (dev->port->hubcount == 5) {
f3f8c459
GA
603 error_setg(errp, "usb hub chain too deep");
604 return;
c24e4aac
GH
605 }
606
9d55d1ad 607 usb_desc_create_serial(dev);
a980a065 608 usb_desc_init(dev);
1cc403eb
GH
609 s->port_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
610 usb_hub_port_update_timer, s);
7567b51f 611 s->intr = usb_ep_get(dev, USB_TOKEN_IN, 1);
9d84bb00 612 for (i = 0; i < s->num_ports; i++) {
72899afc 613 port = &s->ports[i];
a5d2f727 614 usb_register_port(usb_bus_from_device(dev),
ace1318b 615 &port->port, s, i, &usb_hub_port_ops,
843d4e0c 616 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL);
891fb2cd 617 usb_port_location(&port->port, dev->port, i+1);
72899afc 618 }
20d183b6 619 usb_hub_handle_reset(dev);
806b6024
GH
620}
621
d1550090
GH
622static const VMStateDescription vmstate_usb_hub_port = {
623 .name = "usb-hub-port",
624 .version_id = 1,
625 .minimum_version_id = 1,
6e3d652a 626 .fields = (VMStateField[]) {
d1550090
GH
627 VMSTATE_UINT16(wPortStatus, USBHubPort),
628 VMSTATE_UINT16(wPortChange, USBHubPort),
629 VMSTATE_END_OF_LIST()
630 }
631};
632
1cc403eb
GH
633static bool usb_hub_port_timer_needed(void *opaque)
634{
635 USBHubState *s = opaque;
636
637 return s->port_power;
638}
639
640static const VMStateDescription vmstate_usb_hub_port_timer = {
641 .name = "usb-hub/port-timer",
642 .version_id = 1,
643 .minimum_version_id = 1,
644 .needed = usb_hub_port_timer_needed,
645 .fields = (VMStateField[]) {
646 VMSTATE_TIMER_PTR(port_timer, USBHubState),
647 VMSTATE_END_OF_LIST()
648 },
649};
650
d1550090
GH
651static const VMStateDescription vmstate_usb_hub = {
652 .name = "usb-hub",
653 .version_id = 1,
654 .minimum_version_id = 1,
6e3d652a 655 .fields = (VMStateField[]) {
d1550090 656 VMSTATE_USB_DEVICE(dev, USBHubState),
9d84bb00 657 VMSTATE_STRUCT_ARRAY(ports, USBHubState, MAX_PORTS, 0,
d1550090
GH
658 vmstate_usb_hub_port, USBHubPort),
659 VMSTATE_END_OF_LIST()
1cc403eb
GH
660 },
661 .subsections = (const VMStateDescription * []) {
662 &vmstate_usb_hub_port_timer,
663 NULL
d1550090
GH
664 }
665};
666
9d84bb00
GH
667static Property usb_hub_properties[] = {
668 DEFINE_PROP_UINT32("ports", USBHubState, num_ports, 8),
1cc403eb 669 DEFINE_PROP_BOOL("port-power", USBHubState, port_power, false),
9d84bb00
GH
670 DEFINE_PROP_END_OF_LIST(),
671};
672
39bffca2 673static void usb_hub_class_initfn(ObjectClass *klass, void *data)
62aed765 674{
39bffca2 675 DeviceClass *dc = DEVICE_CLASS(klass);
62aed765
AL
676 USBDeviceClass *uc = USB_DEVICE_CLASS(klass);
677
f3f8c459 678 uc->realize = usb_hub_realize;
62aed765
AL
679 uc->product_desc = "QEMU USB Hub";
680 uc->usb_desc = &desc_hub;
06c75088 681 uc->find_device = usb_hub_find_device;
62aed765
AL
682 uc->handle_reset = usb_hub_handle_reset;
683 uc->handle_control = usb_hub_handle_control;
684 uc->handle_data = usb_hub_handle_data;
c4fe9700 685 uc->unrealize = usb_hub_unrealize;
125ee0ed 686 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
39bffca2
AL
687 dc->fw_name = "hub";
688 dc->vmsd = &vmstate_usb_hub;
4f67d30b 689 device_class_set_props(dc, usb_hub_properties);
62aed765
AL
690}
691
8c43a6f0 692static const TypeInfo hub_info = {
e81b13ad 693 .name = TYPE_USB_HUB,
39bffca2
AL
694 .parent = TYPE_USB_DEVICE,
695 .instance_size = sizeof(USBHubState),
696 .class_init = usb_hub_class_initfn,
806b6024
GH
697};
698
83f7d43a 699static void usb_hub_register_types(void)
806b6024 700{
39bffca2 701 type_register_static(&hub_info);
72899afc 702}
83f7d43a
AF
703
704type_init(usb_hub_register_types)