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"
31 typedef struct USBHubPort
{
37 typedef struct USBHubState
{
40 USBHubPort ports
[MAX_PORTS
];
43 #define ClearHubFeature (0x2000 | USB_REQ_CLEAR_FEATURE)
44 #define ClearPortFeature (0x2300 | USB_REQ_CLEAR_FEATURE)
45 #define GetHubDescriptor (0xa000 | USB_REQ_GET_DESCRIPTOR)
46 #define GetHubStatus (0xa000 | USB_REQ_GET_STATUS)
47 #define GetPortStatus (0xa300 | USB_REQ_GET_STATUS)
48 #define SetHubFeature (0x2000 | USB_REQ_SET_FEATURE)
49 #define SetPortFeature (0x2300 | USB_REQ_SET_FEATURE)
51 #define PORT_STAT_CONNECTION 0x0001
52 #define PORT_STAT_ENABLE 0x0002
53 #define PORT_STAT_SUSPEND 0x0004
54 #define PORT_STAT_OVERCURRENT 0x0008
55 #define PORT_STAT_RESET 0x0010
56 #define PORT_STAT_POWER 0x0100
57 #define PORT_STAT_LOW_SPEED 0x0200
58 #define PORT_STAT_HIGH_SPEED 0x0400
59 #define PORT_STAT_TEST 0x0800
60 #define PORT_STAT_INDICATOR 0x1000
62 #define PORT_STAT_C_CONNECTION 0x0001
63 #define PORT_STAT_C_ENABLE 0x0002
64 #define PORT_STAT_C_SUSPEND 0x0004
65 #define PORT_STAT_C_OVERCURRENT 0x0008
66 #define PORT_STAT_C_RESET 0x0010
68 #define PORT_CONNECTION 0
70 #define PORT_SUSPEND 2
71 #define PORT_OVERCURRENT 3
74 #define PORT_LOWSPEED 9
75 #define PORT_HIGHSPEED 10
76 #define PORT_C_CONNECTION 16
77 #define PORT_C_ENABLE 17
78 #define PORT_C_SUSPEND 18
79 #define PORT_C_OVERCURRENT 19
80 #define PORT_C_RESET 20
82 #define PORT_INDICATOR 22
84 /* same as Linux kernel root hubs */
86 static const uint8_t qemu_hub_dev_descriptor
[] = {
87 0x12, /* u8 bLength; */
88 0x01, /* u8 bDescriptorType; Device */
89 0x10, 0x01, /* u16 bcdUSB; v1.1 */
91 0x09, /* u8 bDeviceClass; HUB_CLASSCODE */
92 0x00, /* u8 bDeviceSubClass; */
93 0x00, /* u8 bDeviceProtocol; [ low/full speeds only ] */
94 0x08, /* u8 bMaxPacketSize0; 8 Bytes */
96 0x00, 0x00, /* u16 idVendor; */
97 0x00, 0x00, /* u16 idProduct; */
98 0x01, 0x01, /* u16 bcdDevice */
100 0x03, /* u8 iManufacturer; */
101 0x02, /* u8 iProduct; */
102 0x01, /* u8 iSerialNumber; */
103 0x01 /* u8 bNumConfigurations; */
106 /* XXX: patch interrupt size */
107 static const uint8_t qemu_hub_config_descriptor
[] = {
109 /* one configuration */
110 0x09, /* u8 bLength; */
111 0x02, /* u8 bDescriptorType; Configuration */
112 0x19, 0x00, /* u16 wTotalLength; */
113 0x01, /* u8 bNumInterfaces; (1) */
114 0x01, /* u8 bConfigurationValue; */
115 0x00, /* u8 iConfiguration; */
116 0xc0, /* u8 bmAttributes;
121 0x00, /* u8 MaxPower; */
124 * USB 2.0, single TT organization (mandatory):
125 * one interface, protocol 0
127 * USB 2.0, multiple TT organization (optional):
128 * two interfaces, protocols 1 (like single TT)
129 * and 2 (multiple TT mode) ... config is
135 0x09, /* u8 if_bLength; */
136 0x04, /* u8 if_bDescriptorType; Interface */
137 0x00, /* u8 if_bInterfaceNumber; */
138 0x00, /* u8 if_bAlternateSetting; */
139 0x01, /* u8 if_bNumEndpoints; */
140 0x09, /* u8 if_bInterfaceClass; HUB_CLASSCODE */
141 0x00, /* u8 if_bInterfaceSubClass; */
142 0x00, /* u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
143 0x00, /* u8 if_iInterface; */
145 /* one endpoint (status change endpoint) */
146 0x07, /* u8 ep_bLength; */
147 0x05, /* u8 ep_bDescriptorType; Endpoint */
148 0x81, /* u8 ep_bEndpointAddress; IN Endpoint 1 */
149 0x03, /* u8 ep_bmAttributes; Interrupt */
150 0x02, 0x00, /* u16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
151 0xff /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
154 static const uint8_t qemu_hub_hub_descriptor
[] =
156 0x00, /* u8 bLength; patched in later */
157 0x29, /* u8 bDescriptorType; Hub-descriptor */
158 0x00, /* u8 bNbrPorts; (patched later) */
159 0x0a, /* u16 wHubCharacteristics; */
160 0x00, /* (per-port OC, no power switching) */
161 0x01, /* u8 bPwrOn2pwrGood; 2ms */
162 0x00 /* u8 bHubContrCurrent; 0 mA */
164 /* DeviceRemovable and PortPwrCtrlMask patched in later */
167 static void usb_hub_attach(USBPort
*port1
, USBDevice
*dev
)
169 USBHubState
*s
= port1
->opaque
;
170 USBHubPort
*port
= &s
->ports
[port1
->index
];
174 usb_attach(port1
, NULL
);
176 port
->wPortStatus
|= PORT_STAT_CONNECTION
;
177 port
->wPortChange
|= PORT_STAT_C_CONNECTION
;
178 if (dev
->speed
== USB_SPEED_LOW
)
179 port
->wPortStatus
|= PORT_STAT_LOW_SPEED
;
181 port
->wPortStatus
&= ~PORT_STAT_LOW_SPEED
;
182 port
->port
.dev
= dev
;
183 /* send the attach message */
184 usb_send_msg(dev
, USB_MSG_ATTACH
);
186 dev
= port
->port
.dev
;
188 port
->wPortStatus
&= ~PORT_STAT_CONNECTION
;
189 port
->wPortChange
|= PORT_STAT_C_CONNECTION
;
190 if (port
->wPortStatus
& PORT_STAT_ENABLE
) {
191 port
->wPortStatus
&= ~PORT_STAT_ENABLE
;
192 port
->wPortChange
|= PORT_STAT_C_ENABLE
;
194 /* send the detach message */
195 usb_send_msg(dev
, USB_MSG_DETACH
);
196 port
->port
.dev
= NULL
;
201 static void usb_hub_handle_reset(USBDevice
*dev
)
206 static int usb_hub_handle_control(USBDevice
*dev
, int request
, int value
,
207 int index
, int length
, uint8_t *data
)
209 USBHubState
*s
= (USBHubState
*)dev
;
213 case DeviceRequest
| USB_REQ_GET_STATUS
:
214 data
[0] = (1 << USB_DEVICE_SELF_POWERED
) |
215 (dev
->remote_wakeup
<< USB_DEVICE_REMOTE_WAKEUP
);
219 case DeviceOutRequest
| USB_REQ_CLEAR_FEATURE
:
220 if (value
== USB_DEVICE_REMOTE_WAKEUP
) {
221 dev
->remote_wakeup
= 0;
227 case EndpointOutRequest
| USB_REQ_CLEAR_FEATURE
:
228 if (value
== 0 && index
!= 0x81) { /* clear ep halt */
233 case DeviceOutRequest
| USB_REQ_SET_FEATURE
:
234 if (value
== USB_DEVICE_REMOTE_WAKEUP
) {
235 dev
->remote_wakeup
= 1;
241 case DeviceOutRequest
| USB_REQ_SET_ADDRESS
:
245 case DeviceRequest
| USB_REQ_GET_DESCRIPTOR
:
248 memcpy(data
, qemu_hub_dev_descriptor
,
249 sizeof(qemu_hub_dev_descriptor
));
250 ret
= sizeof(qemu_hub_dev_descriptor
);
253 memcpy(data
, qemu_hub_config_descriptor
,
254 sizeof(qemu_hub_config_descriptor
));
256 /* status change endpoint size based on number
258 data
[22] = (s
->nb_ports
+ 1 + 7) / 8;
260 ret
= sizeof(qemu_hub_config_descriptor
);
263 switch(value
& 0xff) {
274 ret
= set_usb_string(data
, "314159");
277 /* product description */
278 ret
= set_usb_string(data
, "QEMU USB Hub");
281 /* vendor description */
282 ret
= set_usb_string(data
, "QEMU " QEMU_VERSION
);
292 case DeviceRequest
| USB_REQ_GET_CONFIGURATION
:
296 case DeviceOutRequest
| USB_REQ_SET_CONFIGURATION
:
299 case DeviceRequest
| USB_REQ_GET_INTERFACE
:
303 case DeviceOutRequest
| USB_REQ_SET_INTERFACE
:
306 /* usb specific requests */
316 unsigned int n
= index
- 1;
318 if (n
>= s
->nb_ports
)
321 data
[0] = port
->wPortStatus
;
322 data
[1] = port
->wPortStatus
>> 8;
323 data
[2] = port
->wPortChange
;
324 data
[3] = port
->wPortChange
>> 8;
329 case ClearHubFeature
:
330 if (value
== 0 || value
== 1) {
338 unsigned int n
= index
- 1;
341 if (n
>= s
->nb_ports
)
344 dev
= port
->port
.dev
;
347 port
->wPortStatus
|= PORT_STAT_SUSPEND
;
351 usb_send_msg(dev
, USB_MSG_RESET
);
352 port
->wPortChange
|= PORT_STAT_C_RESET
;
354 port
->wPortStatus
|= PORT_STAT_ENABLE
;
365 case ClearPortFeature
:
367 unsigned int n
= index
- 1;
370 if (n
>= s
->nb_ports
)
373 dev
= port
->port
.dev
;
376 port
->wPortStatus
&= ~PORT_STAT_ENABLE
;
379 port
->wPortChange
&= ~PORT_STAT_C_ENABLE
;
382 port
->wPortStatus
&= ~PORT_STAT_SUSPEND
;
385 port
->wPortChange
&= ~PORT_STAT_C_SUSPEND
;
387 case PORT_C_CONNECTION
:
388 port
->wPortChange
&= ~PORT_STAT_C_CONNECTION
;
390 case PORT_C_OVERCURRENT
:
391 port
->wPortChange
&= ~PORT_STAT_C_OVERCURRENT
;
394 port
->wPortChange
&= ~PORT_STAT_C_RESET
;
402 case GetHubDescriptor
:
404 unsigned int n
, limit
, var_hub_size
= 0;
405 memcpy(data
, qemu_hub_hub_descriptor
,
406 sizeof(qemu_hub_hub_descriptor
));
407 data
[2] = s
->nb_ports
;
409 /* fill DeviceRemovable bits */
410 limit
= ((s
->nb_ports
+ 1 + 7) / 8) + 7;
411 for (n
= 7; n
< limit
; n
++) {
416 /* fill PortPwrCtrlMask bits */
417 limit
= limit
+ ((s
->nb_ports
+ 7) / 8);
418 for (;n
< limit
; n
++) {
423 ret
= sizeof(qemu_hub_hub_descriptor
) + var_hub_size
;
435 static int usb_hub_handle_data(USBDevice
*dev
, USBPacket
*p
)
437 USBHubState
*s
= (USBHubState
*)dev
;
446 n
= (s
->nb_ports
+ 1 + 7) / 8;
447 if (p
->len
== 1) { /* FreeBSD workaround */
449 } else if (n
> p
->len
) {
450 return USB_RET_BABBLE
;
453 for(i
= 0; i
< s
->nb_ports
; i
++) {
455 if (port
->wPortChange
)
456 status
|= (1 << (i
+ 1));
459 for(i
= 0; i
< n
; i
++) {
460 p
->data
[i
] = status
>> (8 * i
);
464 ret
= USB_RET_NAK
; /* usb11 11.13.1 */
479 static int usb_hub_broadcast_packet(USBHubState
*s
, USBPacket
*p
)
485 for(i
= 0; i
< s
->nb_ports
; i
++) {
487 dev
= port
->port
.dev
;
488 if (dev
&& (port
->wPortStatus
& PORT_STAT_ENABLE
)) {
489 ret
= dev
->handle_packet(dev
, p
);
490 if (ret
!= USB_RET_NODEV
) {
495 return USB_RET_NODEV
;
498 static int usb_hub_handle_packet(USBDevice
*dev
, USBPacket
*p
)
500 USBHubState
*s
= (USBHubState
*)dev
;
502 #if defined(DEBUG) && 0
503 printf("usb_hub: pid=0x%x\n", pid
);
505 if (dev
->state
== USB_STATE_DEFAULT
&&
507 p
->devaddr
!= dev
->addr
&&
508 (p
->pid
== USB_TOKEN_SETUP
||
509 p
->pid
== USB_TOKEN_OUT
||
510 p
->pid
== USB_TOKEN_IN
)) {
511 /* broadcast the packet to the devices */
512 return usb_hub_broadcast_packet(s
, p
);
514 return usb_generic_handle_packet(dev
, p
);
517 static void usb_hub_handle_destroy(USBDevice
*dev
)
519 USBHubState
*s
= (USBHubState
*)dev
;
524 USBDevice
*usb_hub_init(int nb_ports
)
530 if (nb_ports
> MAX_PORTS
)
532 s
= qemu_mallocz(sizeof(USBHubState
));
533 s
->dev
.speed
= USB_SPEED_FULL
;
534 s
->dev
.handle_packet
= usb_hub_handle_packet
;
536 /* generic USB device init */
537 s
->dev
.handle_reset
= usb_hub_handle_reset
;
538 s
->dev
.handle_control
= usb_hub_handle_control
;
539 s
->dev
.handle_data
= usb_hub_handle_data
;
540 s
->dev
.handle_destroy
= usb_hub_handle_destroy
;
542 pstrcpy(s
->dev
.devname
, sizeof(s
->dev
.devname
), "QEMU USB Hub");
544 s
->nb_ports
= nb_ports
;
545 for(i
= 0; i
< s
->nb_ports
; i
++) {
547 qemu_register_usb_port(&port
->port
, s
, i
, usb_hub_attach
);
548 port
->wPortStatus
= PORT_STAT_POWER
;
549 port
->wPortChange
= 0;
551 return (USBDevice
*)s
;