2 * QEMU USB HUB emulation
4 * Copyright (c) 2005 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
24 #include "qemu-common.h"
26 #include "hw/usb/desc.h"
32 typedef struct USBHubPort
{
38 typedef struct USBHubState
{
41 USBHubPort ports
[NUM_PORTS
];
44 #define ClearHubFeature (0x2000 | USB_REQ_CLEAR_FEATURE)
45 #define ClearPortFeature (0x2300 | USB_REQ_CLEAR_FEATURE)
46 #define GetHubDescriptor (0xa000 | USB_REQ_GET_DESCRIPTOR)
47 #define GetHubStatus (0xa000 | USB_REQ_GET_STATUS)
48 #define GetPortStatus (0xa300 | USB_REQ_GET_STATUS)
49 #define SetHubFeature (0x2000 | USB_REQ_SET_FEATURE)
50 #define SetPortFeature (0x2300 | USB_REQ_SET_FEATURE)
52 #define PORT_STAT_CONNECTION 0x0001
53 #define PORT_STAT_ENABLE 0x0002
54 #define PORT_STAT_SUSPEND 0x0004
55 #define PORT_STAT_OVERCURRENT 0x0008
56 #define PORT_STAT_RESET 0x0010
57 #define PORT_STAT_POWER 0x0100
58 #define PORT_STAT_LOW_SPEED 0x0200
59 #define PORT_STAT_HIGH_SPEED 0x0400
60 #define PORT_STAT_TEST 0x0800
61 #define PORT_STAT_INDICATOR 0x1000
63 #define PORT_STAT_C_CONNECTION 0x0001
64 #define PORT_STAT_C_ENABLE 0x0002
65 #define PORT_STAT_C_SUSPEND 0x0004
66 #define PORT_STAT_C_OVERCURRENT 0x0008
67 #define PORT_STAT_C_RESET 0x0010
69 #define PORT_CONNECTION 0
71 #define PORT_SUSPEND 2
72 #define PORT_OVERCURRENT 3
75 #define PORT_LOWSPEED 9
76 #define PORT_HIGHSPEED 10
77 #define PORT_C_CONNECTION 16
78 #define PORT_C_ENABLE 17
79 #define PORT_C_SUSPEND 18
80 #define PORT_C_OVERCURRENT 19
81 #define PORT_C_RESET 20
83 #define PORT_INDICATOR 22
85 /* same as Linux kernel root hubs */
93 static const USBDescStrings desc_strings
= {
94 [STR_MANUFACTURER
] = "QEMU " QEMU_VERSION
,
95 [STR_PRODUCT
] = "QEMU USB Hub",
96 [STR_SERIALNUMBER
] = "314159",
99 static const USBDescIface desc_iface_hub
= {
100 .bInterfaceNumber
= 0,
102 .bInterfaceClass
= USB_CLASS_HUB
,
103 .eps
= (USBDescEndpoint
[]) {
105 .bEndpointAddress
= USB_DIR_IN
| 0x01,
106 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
107 .wMaxPacketSize
= 1 + (NUM_PORTS
+ 7) / 8,
113 static const USBDescDevice desc_device_hub
= {
115 .bDeviceClass
= USB_CLASS_HUB
,
116 .bMaxPacketSize0
= 8,
117 .bNumConfigurations
= 1,
118 .confs
= (USBDescConfig
[]) {
121 .bConfigurationValue
= 1,
122 .bmAttributes
= 0xe0,
124 .ifs
= &desc_iface_hub
,
129 static const USBDesc desc_hub
= {
134 .iManufacturer
= STR_MANUFACTURER
,
135 .iProduct
= STR_PRODUCT
,
136 .iSerialNumber
= STR_SERIALNUMBER
,
138 .full
= &desc_device_hub
,
142 static const uint8_t qemu_hub_hub_descriptor
[] =
144 0x00, /* u8 bLength; patched in later */
145 0x29, /* u8 bDescriptorType; Hub-descriptor */
146 0x00, /* u8 bNbrPorts; (patched later) */
147 0x0a, /* u16 wHubCharacteristics; */
148 0x00, /* (per-port OC, no power switching) */
149 0x01, /* u8 bPwrOn2pwrGood; 2ms */
150 0x00 /* u8 bHubContrCurrent; 0 mA */
152 /* DeviceRemovable and PortPwrCtrlMask patched in later */
155 static void usb_hub_attach(USBPort
*port1
)
157 USBHubState
*s
= port1
->opaque
;
158 USBHubPort
*port
= &s
->ports
[port1
->index
];
160 port
->wPortStatus
|= PORT_STAT_CONNECTION
;
161 port
->wPortChange
|= PORT_STAT_C_CONNECTION
;
162 if (port
->port
.dev
->speed
== USB_SPEED_LOW
) {
163 port
->wPortStatus
|= PORT_STAT_LOW_SPEED
;
165 port
->wPortStatus
&= ~PORT_STAT_LOW_SPEED
;
170 static void usb_hub_detach(USBPort
*port1
)
172 USBHubState
*s
= port1
->opaque
;
173 USBHubPort
*port
= &s
->ports
[port1
->index
];
177 /* Let upstream know the device on this port is gone */
178 s
->dev
.port
->ops
->child_detach(s
->dev
.port
, port1
->dev
);
180 port
->wPortStatus
&= ~PORT_STAT_CONNECTION
;
181 port
->wPortChange
|= PORT_STAT_C_CONNECTION
;
182 if (port
->wPortStatus
& PORT_STAT_ENABLE
) {
183 port
->wPortStatus
&= ~PORT_STAT_ENABLE
;
184 port
->wPortChange
|= PORT_STAT_C_ENABLE
;
188 static void usb_hub_child_detach(USBPort
*port1
, USBDevice
*child
)
190 USBHubState
*s
= port1
->opaque
;
192 /* Pass along upstream */
193 s
->dev
.port
->ops
->child_detach(s
->dev
.port
, child
);
196 static void usb_hub_wakeup(USBPort
*port1
)
198 USBHubState
*s
= port1
->opaque
;
199 USBHubPort
*port
= &s
->ports
[port1
->index
];
201 if (port
->wPortStatus
& PORT_STAT_SUSPEND
) {
202 port
->wPortChange
|= PORT_STAT_C_SUSPEND
;
207 static void usb_hub_complete(USBPort
*port
, USBPacket
*packet
)
209 USBHubState
*s
= port
->opaque
;
212 * Just pass it along upstream for now.
214 * If we ever implement usb 2.0 split transactions this will
215 * become a little more complicated ...
217 * Can't use usb_packet_complete() here because packet->owner is
218 * cleared already, go call the ->complete() callback directly
221 s
->dev
.port
->ops
->complete(s
->dev
.port
, packet
);
224 static USBDevice
*usb_hub_find_device(USBDevice
*dev
, uint8_t addr
)
226 USBHubState
*s
= DO_UPCAST(USBHubState
, dev
, dev
);
228 USBDevice
*downstream
;
231 for (i
= 0; i
< NUM_PORTS
; i
++) {
233 if (!(port
->wPortStatus
& PORT_STAT_ENABLE
)) {
236 downstream
= usb_find_device(&port
->port
, addr
);
237 if (downstream
!= NULL
) {
244 static void usb_hub_handle_reset(USBDevice
*dev
)
246 USBHubState
*s
= DO_UPCAST(USBHubState
, dev
, dev
);
250 for (i
= 0; i
< NUM_PORTS
; i
++) {
252 port
->wPortStatus
= PORT_STAT_POWER
;
253 port
->wPortChange
= 0;
254 if (port
->port
.dev
&& port
->port
.dev
->attached
) {
255 port
->wPortStatus
|= PORT_STAT_CONNECTION
;
256 port
->wPortChange
|= PORT_STAT_C_CONNECTION
;
257 if (port
->port
.dev
->speed
== USB_SPEED_LOW
) {
258 port
->wPortStatus
|= PORT_STAT_LOW_SPEED
;
264 static int usb_hub_handle_control(USBDevice
*dev
, USBPacket
*p
,
265 int request
, int value
, int index
, int length
, uint8_t *data
)
267 USBHubState
*s
= (USBHubState
*)dev
;
270 ret
= usb_desc_handle_control(dev
, p
, request
, value
, index
, length
, data
);
276 case EndpointOutRequest
| USB_REQ_CLEAR_FEATURE
:
277 if (value
== 0 && index
!= 0x81) { /* clear ep halt */
282 /* usb specific requests */
292 unsigned int n
= index
- 1;
294 if (n
>= NUM_PORTS
) {
298 data
[0] = port
->wPortStatus
;
299 data
[1] = port
->wPortStatus
>> 8;
300 data
[2] = port
->wPortChange
;
301 data
[3] = port
->wPortChange
>> 8;
306 case ClearHubFeature
:
307 if (value
== 0 || value
== 1) {
315 unsigned int n
= index
- 1;
318 if (n
>= NUM_PORTS
) {
322 dev
= port
->port
.dev
;
325 port
->wPortStatus
|= PORT_STAT_SUSPEND
;
328 if (dev
&& dev
->attached
) {
329 usb_device_reset(dev
);
330 port
->wPortChange
|= PORT_STAT_C_RESET
;
332 port
->wPortStatus
|= PORT_STAT_ENABLE
;
343 case ClearPortFeature
:
345 unsigned int n
= index
- 1;
348 if (n
>= NUM_PORTS
) {
354 port
->wPortStatus
&= ~PORT_STAT_ENABLE
;
357 port
->wPortChange
&= ~PORT_STAT_C_ENABLE
;
360 port
->wPortStatus
&= ~PORT_STAT_SUSPEND
;
363 port
->wPortChange
&= ~PORT_STAT_C_SUSPEND
;
365 case PORT_C_CONNECTION
:
366 port
->wPortChange
&= ~PORT_STAT_C_CONNECTION
;
368 case PORT_C_OVERCURRENT
:
369 port
->wPortChange
&= ~PORT_STAT_C_OVERCURRENT
;
372 port
->wPortChange
&= ~PORT_STAT_C_RESET
;
380 case GetHubDescriptor
:
382 unsigned int n
, limit
, var_hub_size
= 0;
383 memcpy(data
, qemu_hub_hub_descriptor
,
384 sizeof(qemu_hub_hub_descriptor
));
387 /* fill DeviceRemovable bits */
388 limit
= ((NUM_PORTS
+ 1 + 7) / 8) + 7;
389 for (n
= 7; n
< limit
; n
++) {
394 /* fill PortPwrCtrlMask bits */
395 limit
= limit
+ ((NUM_PORTS
+ 7) / 8);
396 for (;n
< limit
; n
++) {
401 ret
= sizeof(qemu_hub_hub_descriptor
) + var_hub_size
;
413 static int usb_hub_handle_data(USBDevice
*dev
, USBPacket
*p
)
415 USBHubState
*s
= (USBHubState
*)dev
;
420 if (p
->ep
->nr
== 1) {
425 n
= (NUM_PORTS
+ 1 + 7) / 8;
426 if (p
->iov
.size
== 1) { /* FreeBSD workaround */
428 } else if (n
> p
->iov
.size
) {
429 return USB_RET_BABBLE
;
432 for(i
= 0; i
< NUM_PORTS
; i
++) {
434 if (port
->wPortChange
)
435 status
|= (1 << (i
+ 1));
438 for(i
= 0; i
< n
; i
++) {
439 buf
[i
] = status
>> (8 * i
);
441 usb_packet_copy(p
, buf
, n
);
444 ret
= USB_RET_NAK
; /* usb11 11.13.1 */
459 static void usb_hub_handle_destroy(USBDevice
*dev
)
461 USBHubState
*s
= (USBHubState
*)dev
;
464 for (i
= 0; i
< NUM_PORTS
; i
++) {
465 usb_unregister_port(usb_bus_from_device(dev
),
470 static USBPortOps usb_hub_port_ops
= {
471 .attach
= usb_hub_attach
,
472 .detach
= usb_hub_detach
,
473 .child_detach
= usb_hub_child_detach
,
474 .wakeup
= usb_hub_wakeup
,
475 .complete
= usb_hub_complete
,
478 static int usb_hub_initfn(USBDevice
*dev
)
480 USBHubState
*s
= DO_UPCAST(USBHubState
, dev
, dev
);
485 s
->intr
= usb_ep_get(dev
, USB_TOKEN_IN
, 1);
486 for (i
= 0; i
< NUM_PORTS
; i
++) {
488 usb_register_port(usb_bus_from_device(dev
),
489 &port
->port
, s
, i
, &usb_hub_port_ops
,
490 USB_SPEED_MASK_LOW
| USB_SPEED_MASK_FULL
);
491 usb_port_location(&port
->port
, dev
->port
, i
+1);
493 usb_hub_handle_reset(dev
);
497 static const VMStateDescription vmstate_usb_hub_port
= {
498 .name
= "usb-hub-port",
500 .minimum_version_id
= 1,
501 .fields
= (VMStateField
[]) {
502 VMSTATE_UINT16(wPortStatus
, USBHubPort
),
503 VMSTATE_UINT16(wPortChange
, USBHubPort
),
504 VMSTATE_END_OF_LIST()
508 static const VMStateDescription vmstate_usb_hub
= {
511 .minimum_version_id
= 1,
512 .fields
= (VMStateField
[]) {
513 VMSTATE_USB_DEVICE(dev
, USBHubState
),
514 VMSTATE_STRUCT_ARRAY(ports
, USBHubState
, NUM_PORTS
, 0,
515 vmstate_usb_hub_port
, USBHubPort
),
516 VMSTATE_END_OF_LIST()
520 static void usb_hub_class_initfn(ObjectClass
*klass
, void *data
)
522 DeviceClass
*dc
= DEVICE_CLASS(klass
);
523 USBDeviceClass
*uc
= USB_DEVICE_CLASS(klass
);
525 uc
->init
= usb_hub_initfn
;
526 uc
->product_desc
= "QEMU USB Hub";
527 uc
->usb_desc
= &desc_hub
;
528 uc
->find_device
= usb_hub_find_device
;
529 uc
->handle_reset
= usb_hub_handle_reset
;
530 uc
->handle_control
= usb_hub_handle_control
;
531 uc
->handle_data
= usb_hub_handle_data
;
532 uc
->handle_destroy
= usb_hub_handle_destroy
;
534 dc
->vmsd
= &vmstate_usb_hub
;
537 static TypeInfo hub_info
= {
539 .parent
= TYPE_USB_DEVICE
,
540 .instance_size
= sizeof(USBHubState
),
541 .class_init
= usb_hub_class_initfn
,
544 static void usb_hub_register_types(void)
546 type_register_static(&hub_info
);
549 type_init(usb_hub_register_types
)