2 * QEMU Bluetooth HCI USB Transport Layer v1.0
4 * Copyright (C) 2007 OpenMoko, Inc.
5 * Copyright (C) 2008 Andrzej Zaborowski <balrog@zabor.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 or
10 * (at your option) version 3 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "qemu-common.h"
34 #define CFIFO_LEN_MASK 255
35 #define DFIFO_LEN_MASK 4095
36 struct usb_hci_in_fifo_s
{
37 uint8_t data
[(DFIFO_LEN_MASK
+ 1) * 2];
41 } fifo
[CFIFO_LEN_MASK
+ 1];
42 int dstart
, dlen
, dsize
, start
, len
;
45 struct usb_hci_out_fifo_s
{
48 } outcmd
, outacl
, outsco
;
55 static const uint8_t qemu_bt_dev_descriptor
[] = {
56 0x12, /* u8 bLength; */
57 USB_DT_DEVICE
, /* u8 bDescriptorType; Device */
58 0x10, 0x01, /* u16 bcdUSB; v1.10 */
60 0xe0, /* u8 bDeviceClass; Wireless */
61 0x01, /* u8 bDeviceSubClass; Radio Frequency */
62 0x01, /* u8 bDeviceProtocol; Bluetooth */
63 0x40, /* u8 bMaxPacketSize0; 64 Bytes */
65 0x12, 0x0a, /* u16 idVendor; */
66 0x01, 0x00, /* u16 idProduct; Bluetooth Dongle (HCI mode) */
67 0x58, 0x19, /* u16 bcdDevice; (some devices have 0x48, 0x02) */
69 0x00, /* u8 iManufacturer; */
70 0x00, /* u8 iProduct; */
71 0x00, /* u8 iSerialNumber; */
72 0x01, /* u8 bNumConfigurations; */
75 static const uint8_t qemu_bt_config_descriptor
[] = {
76 /* one configuration */
77 0x09, /* u8 bLength; */
78 USB_DT_CONFIG
, /* u8 bDescriptorType; */
79 0xb1, 0x00, /* u16 wTotalLength; */
80 0x02, /* u8 bNumInterfaces; (2) */
81 0x01, /* u8 bConfigurationValue; */
82 0x00, /* u8 iConfiguration; */
83 0xc0, /* u8 bmAttributes;
88 0x00, /* u8 MaxPower; */
91 * USB 2.0, single TT organization (mandatory):
92 * one interface, protocol 0
94 * USB 2.0, multiple TT organization (optional):
95 * two interfaces, protocols 1 (like single TT)
96 * and 2 (multiple TT mode) ... config is
102 0x09, /* u8 if_bLength; */
103 USB_DT_INTERFACE
, /* u8 if_bDescriptorType; */
104 0x00, /* u8 if_bInterfaceNumber; */
105 0x00, /* u8 if_bAlternateSetting; */
106 0x03, /* u8 if_bNumEndpoints; */
107 0xe0, /* u8 if_bInterfaceClass; Wireless */
108 0x01, /* u8 if_bInterfaceSubClass; Radio Frequency */
109 0x01, /* u8 if_bInterfaceProtocol; Bluetooth */
110 0x00, /* u8 if_iInterface; */
113 0x07, /* u8 ep_bLength; */
114 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
115 USB_DIR_IN
| USB_EVT_EP
, /* u8 ep_bEndpointAddress; */
116 0x03, /* u8 ep_bmAttributes; Interrupt */
117 0x10, 0x00, /* u16 ep_wMaxPacketSize; */
118 0x02, /* u8 ep_bInterval; */
121 0x07, /* u8 ep_bLength; */
122 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
123 USB_DIR_OUT
| USB_ACL_EP
, /* u8 ep_bEndpointAddress; */
124 0x02, /* u8 ep_bmAttributes; Bulk */
125 0x40, 0x00, /* u16 ep_wMaxPacketSize; */
126 0x0a, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
129 0x07, /* u8 ep_bLength; */
130 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
131 USB_DIR_IN
| USB_ACL_EP
, /* u8 ep_bEndpointAddress; */
132 0x02, /* u8 ep_bmAttributes; Bulk */
133 0x40, 0x00, /* u16 ep_wMaxPacketSize; */
134 0x0a, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
136 /* interface two setting one */
137 0x09, /* u8 if_bLength; */
138 USB_DT_INTERFACE
, /* u8 if_bDescriptorType; */
139 0x01, /* u8 if_bInterfaceNumber; */
140 0x00, /* u8 if_bAlternateSetting; */
141 0x02, /* u8 if_bNumEndpoints; */
142 0xe0, /* u8 if_bInterfaceClass; Wireless */
143 0x01, /* u8 if_bInterfaceSubClass; Radio Frequency */
144 0x01, /* u8 if_bInterfaceProtocol; Bluetooth */
145 0x00, /* u8 if_iInterface; */
148 0x07, /* u8 ep_bLength; */
149 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
150 USB_DIR_OUT
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
151 0x01, /* u8 ep_bmAttributes; Isochronous */
152 0x00, 0x00, /* u16 ep_wMaxPacketSize; */
153 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
156 0x07, /* u8 ep_bLength; */
157 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
158 USB_DIR_IN
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
159 0x01, /* u8 ep_bmAttributes; Isochronous */
160 0x00, 0x00, /* u16 ep_wMaxPacketSize; */
161 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
163 /* interface two setting two */
164 0x09, /* u8 if_bLength; */
165 USB_DT_INTERFACE
, /* u8 if_bDescriptorType; */
166 0x01, /* u8 if_bInterfaceNumber; */
167 0x01, /* u8 if_bAlternateSetting; */
168 0x02, /* u8 if_bNumEndpoints; */
169 0xe0, /* u8 if_bInterfaceClass; Wireless */
170 0x01, /* u8 if_bInterfaceSubClass; Radio Frequency */
171 0x01, /* u8 if_bInterfaceProtocol; Bluetooth */
172 0x00, /* u8 if_iInterface; */
175 0x07, /* u8 ep_bLength; */
176 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
177 USB_DIR_OUT
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
178 0x01, /* u8 ep_bmAttributes; Isochronous */
179 0x09, 0x00, /* u16 ep_wMaxPacketSize; */
180 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
183 0x07, /* u8 ep_bLength; */
184 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
185 USB_DIR_IN
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
186 0x01, /* u8 ep_bmAttributes; Isochronous */
187 0x09, 0x00, /* u16 ep_wMaxPacketSize; */
188 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
190 /* interface two setting three */
191 0x09, /* u8 if_bLength; */
192 USB_DT_INTERFACE
, /* u8 if_bDescriptorType; */
193 0x01, /* u8 if_bInterfaceNumber; */
194 0x02, /* u8 if_bAlternateSetting; */
195 0x02, /* u8 if_bNumEndpoints; */
196 0xe0, /* u8 if_bInterfaceClass; Wireless */
197 0x01, /* u8 if_bInterfaceSubClass; Radio Frequency */
198 0x01, /* u8 if_bInterfaceProtocol; Bluetooth */
199 0x00, /* u8 if_iInterface; */
202 0x07, /* u8 ep_bLength; */
203 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
204 USB_DIR_OUT
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
205 0x01, /* u8 ep_bmAttributes; Isochronous */
206 0x11, 0x00, /* u16 ep_wMaxPacketSize; */
207 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
210 0x07, /* u8 ep_bLength; */
211 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
212 USB_DIR_IN
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
213 0x01, /* u8 ep_bmAttributes; Isochronous */
214 0x11, 0x00, /* u16 ep_wMaxPacketSize; */
215 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
217 /* interface two setting four */
218 0x09, /* u8 if_bLength; */
219 USB_DT_INTERFACE
, /* u8 if_bDescriptorType; */
220 0x01, /* u8 if_bInterfaceNumber; */
221 0x03, /* u8 if_bAlternateSetting; */
222 0x02, /* u8 if_bNumEndpoints; */
223 0xe0, /* u8 if_bInterfaceClass; Wireless */
224 0x01, /* u8 if_bInterfaceSubClass; Radio Frequency */
225 0x01, /* u8 if_bInterfaceProtocol; Bluetooth */
226 0x00, /* u8 if_iInterface; */
229 0x07, /* u8 ep_bLength; */
230 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
231 USB_DIR_OUT
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
232 0x01, /* u8 ep_bmAttributes; Isochronous */
233 0x19, 0x00, /* u16 ep_wMaxPacketSize; */
234 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
237 0x07, /* u8 ep_bLength; */
238 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
239 USB_DIR_IN
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
240 0x01, /* u8 ep_bmAttributes; Isochronous */
241 0x19, 0x00, /* u16 ep_wMaxPacketSize; */
242 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
244 /* interface two setting five */
245 0x09, /* u8 if_bLength; */
246 USB_DT_INTERFACE
, /* u8 if_bDescriptorType; */
247 0x01, /* u8 if_bInterfaceNumber; */
248 0x04, /* u8 if_bAlternateSetting; */
249 0x02, /* u8 if_bNumEndpoints; */
250 0xe0, /* u8 if_bInterfaceClass; Wireless */
251 0x01, /* u8 if_bInterfaceSubClass; Radio Frequency */
252 0x01, /* u8 if_bInterfaceProtocol; Bluetooth */
253 0x00, /* u8 if_iInterface; */
256 0x07, /* u8 ep_bLength; */
257 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
258 USB_DIR_OUT
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
259 0x01, /* u8 ep_bmAttributes; Isochronous */
260 0x21, 0x00, /* u16 ep_wMaxPacketSize; */
261 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
264 0x07, /* u8 ep_bLength; */
265 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
266 USB_DIR_IN
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
267 0x01, /* u8 ep_bmAttributes; Isochronous */
268 0x21, 0x00, /* u16 ep_wMaxPacketSize; */
269 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
271 /* interface two setting six */
272 0x09, /* u8 if_bLength; */
273 USB_DT_INTERFACE
, /* u8 if_bDescriptorType; */
274 0x01, /* u8 if_bInterfaceNumber; */
275 0x05, /* u8 if_bAlternateSetting; */
276 0x02, /* u8 if_bNumEndpoints; */
277 0xe0, /* u8 if_bInterfaceClass; Wireless */
278 0x01, /* u8 if_bInterfaceSubClass; Radio Frequency */
279 0x01, /* u8 if_bInterfaceProtocol; Bluetooth */
280 0x00, /* u8 if_iInterface; */
283 0x07, /* u8 ep_bLength; */
284 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
285 USB_DIR_OUT
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
286 0x01, /* u8 ep_bmAttributes; Isochronous */
287 0x31, 0x00, /* u16 ep_wMaxPacketSize; */
288 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
291 0x07, /* u8 ep_bLength; */
292 USB_DT_ENDPOINT
, /* u8 ep_bDescriptorType; */
293 USB_DIR_IN
| USB_SCO_EP
, /* u8 ep_bEndpointAddress; */
294 0x01, /* u8 ep_bmAttributes; Isochronous */
295 0x31, 0x00, /* u16 ep_wMaxPacketSize; */
296 0x01, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */
298 /* If implemented, the DFU interface descriptor goes here with no
299 * endpoints or alternative settings. */
302 static void usb_bt_fifo_reset(struct usb_hci_in_fifo_s
*fifo
)
306 fifo
->dsize
= DFIFO_LEN_MASK
+ 1;
311 static void usb_bt_fifo_enqueue(struct usb_hci_in_fifo_s
*fifo
,
312 const uint8_t *data
, int len
)
314 int off
= fifo
->dstart
+ fifo
->dlen
;
318 if (off
<= DFIFO_LEN_MASK
) {
319 if (off
+ len
> DFIFO_LEN_MASK
+ 1 &&
320 (fifo
->dsize
= off
+ len
) > (DFIFO_LEN_MASK
+ 1) * 2) {
321 fprintf(stderr
, "%s: can't alloc %i bytes\n", __FUNCTION__
, len
);
324 buf
= fifo
->data
+ off
;
326 if (fifo
->dlen
> fifo
->dsize
) {
327 fprintf(stderr
, "%s: can't alloc %i bytes\n", __FUNCTION__
, len
);
330 buf
= fifo
->data
+ off
- fifo
->dsize
;
333 off
= (fifo
->start
+ fifo
->len
++) & CFIFO_LEN_MASK
;
334 fifo
->fifo
[off
].data
= memcpy(buf
, data
, len
);
335 fifo
->fifo
[off
].len
= len
;
338 static inline int usb_bt_fifo_dequeue(struct usb_hci_in_fifo_s
*fifo
,
343 if (likely(!fifo
->len
))
344 return USB_RET_STALL
;
346 len
= MIN(p
->len
, fifo
->fifo
[fifo
->start
].len
);
347 memcpy(p
->data
, fifo
->fifo
[fifo
->start
].data
, len
);
349 fifo
->fifo
[fifo
->start
].len
-= len
;
350 fifo
->fifo
[fifo
->start
].data
+= len
;
353 fifo
->start
&= CFIFO_LEN_MASK
;
359 if (fifo
->dstart
>= fifo
->dsize
) {
361 fifo
->dsize
= DFIFO_LEN_MASK
+ 1;
367 static void inline usb_bt_fifo_out_enqueue(struct USBBtState
*s
,
368 struct usb_hci_out_fifo_s
*fifo
,
369 void (*send
)(struct HCIInfo
*, const uint8_t *, int),
370 int (*complete
)(const uint8_t *, int),
371 const uint8_t *data
, int len
)
374 memcpy(fifo
->data
+ fifo
->len
, data
, len
);
376 if (complete(fifo
->data
, fifo
->len
)) {
377 send(s
->hci
, fifo
->data
, fifo
->len
);
380 } else if (complete(data
, len
))
381 send(s
->hci
, data
, len
);
383 memcpy(fifo
->data
, data
, len
);
387 /* TODO: do we need to loop? */
390 static int usb_bt_hci_cmd_complete(const uint8_t *data
, int len
)
392 len
-= HCI_COMMAND_HDR_SIZE
;
394 len
>= ((struct hci_command_hdr
*) data
)->plen
;
397 static int usb_bt_hci_acl_complete(const uint8_t *data
, int len
)
399 len
-= HCI_ACL_HDR_SIZE
;
401 len
>= le16_to_cpu(((struct hci_acl_hdr
*) data
)->dlen
);
404 static int usb_bt_hci_sco_complete(const uint8_t *data
, int len
)
406 len
-= HCI_SCO_HDR_SIZE
;
408 len
>= ((struct hci_sco_hdr
*) data
)->dlen
;
411 static void usb_bt_handle_reset(USBDevice
*dev
)
413 struct USBBtState
*s
= (struct USBBtState
*) dev
->opaque
;
415 usb_bt_fifo_reset(&s
->evt
);
416 usb_bt_fifo_reset(&s
->acl
);
417 usb_bt_fifo_reset(&s
->sco
);
424 static int usb_bt_handle_control(USBDevice
*dev
, int request
, int value
,
425 int index
, int length
, uint8_t *data
)
427 struct USBBtState
*s
= (struct USBBtState
*) dev
->opaque
;
431 case DeviceRequest
| USB_REQ_GET_STATUS
:
432 case InterfaceRequest
| USB_REQ_GET_STATUS
:
433 case EndpointRequest
| USB_REQ_GET_STATUS
:
434 data
[0] = (1 << USB_DEVICE_SELF_POWERED
) |
435 (dev
->remote_wakeup
<< USB_DEVICE_REMOTE_WAKEUP
);
439 case DeviceOutRequest
| USB_REQ_CLEAR_FEATURE
:
440 case InterfaceOutRequest
| USB_REQ_CLEAR_FEATURE
:
441 case EndpointOutRequest
| USB_REQ_CLEAR_FEATURE
:
442 if (value
== USB_DEVICE_REMOTE_WAKEUP
) {
443 dev
->remote_wakeup
= 0;
449 case DeviceOutRequest
| USB_REQ_SET_FEATURE
:
450 case InterfaceOutRequest
| USB_REQ_SET_FEATURE
:
451 case EndpointOutRequest
| USB_REQ_SET_FEATURE
:
452 if (value
== USB_DEVICE_REMOTE_WAKEUP
) {
453 dev
->remote_wakeup
= 1;
459 case DeviceOutRequest
| USB_REQ_SET_ADDRESS
:
463 case DeviceRequest
| USB_REQ_GET_DESCRIPTOR
:
464 switch (value
>> 8) {
466 ret
= sizeof(qemu_bt_dev_descriptor
);
467 memcpy(data
, qemu_bt_dev_descriptor
, ret
);
470 ret
= sizeof(qemu_bt_config_descriptor
);
471 memcpy(data
, qemu_bt_config_descriptor
, ret
);
474 switch(value
& 0xff) {
491 case DeviceRequest
| USB_REQ_GET_CONFIGURATION
:
492 data
[0] = qemu_bt_config_descriptor
[0x5];
496 case DeviceOutRequest
| USB_REQ_SET_CONFIGURATION
:
498 if (value
!= qemu_bt_config_descriptor
[0x5] && value
!= 0) {
499 printf("%s: Wrong SET_CONFIGURATION request (%i)\n",
500 __FUNCTION__
, value
);
504 usb_bt_fifo_reset(&s
->evt
);
505 usb_bt_fifo_reset(&s
->acl
);
506 usb_bt_fifo_reset(&s
->sco
);
508 case InterfaceRequest
| USB_REQ_GET_INTERFACE
:
509 if (value
!= 0 || (index
& ~1) || length
!= 1)
512 data
[0] = s
->altsetting
;
517 case InterfaceOutRequest
| USB_REQ_SET_INTERFACE
:
518 if ((index
& ~1) || length
!= 0 ||
519 (index
== 1 && (value
< 0 || value
> 4)) ||
520 (index
== 0 && value
!= 0)) {
521 printf("%s: Wrong SET_INTERFACE request (%i, %i)\n",
522 __FUNCTION__
, index
, value
);
525 s
->altsetting
= value
;
528 case ((USB_DIR_OUT
| USB_TYPE_CLASS
| USB_RECIP_DEVICE
) << 8):
530 usb_bt_fifo_out_enqueue(s
, &s
->outcmd
, s
->hci
->cmd_send
,
531 usb_bt_hci_cmd_complete
, data
, length
);
541 static int usb_bt_handle_data(USBDevice
*dev
, USBPacket
*p
)
543 struct USBBtState
*s
= (struct USBBtState
*) dev
->opaque
;
551 switch (p
->devep
& 0xf) {
553 ret
= usb_bt_fifo_dequeue(&s
->evt
, p
);
557 ret
= usb_bt_fifo_dequeue(&s
->acl
, p
);
561 ret
= usb_bt_fifo_dequeue(&s
->sco
, p
);
570 switch (p
->devep
& 0xf) {
572 usb_bt_fifo_out_enqueue(s
, &s
->outacl
, s
->hci
->acl_send
,
573 usb_bt_hci_acl_complete
, p
->data
, p
->len
);
577 usb_bt_fifo_out_enqueue(s
, &s
->outsco
, s
->hci
->sco_send
,
578 usb_bt_hci_sco_complete
, p
->data
, p
->len
);
595 static void usb_bt_out_hci_packet_event(void *opaque
,
596 const uint8_t *data
, int len
)
598 struct USBBtState
*s
= (struct USBBtState
*) opaque
;
600 usb_bt_fifo_enqueue(&s
->evt
, data
, len
);
603 static void usb_bt_out_hci_packet_acl(void *opaque
,
604 const uint8_t *data
, int len
)
606 struct USBBtState
*s
= (struct USBBtState
*) opaque
;
608 usb_bt_fifo_enqueue(&s
->acl
, data
, len
);
611 static void usb_bt_handle_destroy(USBDevice
*dev
)
613 struct USBBtState
*s
= (struct USBBtState
*) dev
->opaque
;
615 s
->hci
->opaque
= NULL
;
616 s
->hci
->evt_recv
= NULL
;
617 s
->hci
->acl_recv
= NULL
;
621 USBDevice
*usb_bt_init(HCIInfo
*hci
)
623 struct USBBtState
*s
;
627 s
= qemu_mallocz(sizeof(struct USBBtState
));
629 s
->dev
.speed
= USB_SPEED_HIGH
;
630 s
->dev
.handle_packet
= usb_generic_handle_packet
;
631 pstrcpy(s
->dev
.devname
, sizeof(s
->dev
.devname
), "QEMU BT dongle");
633 s
->dev
.handle_reset
= usb_bt_handle_reset
;
634 s
->dev
.handle_control
= usb_bt_handle_control
;
635 s
->dev
.handle_data
= usb_bt_handle_data
;
636 s
->dev
.handle_destroy
= usb_bt_handle_destroy
;
640 s
->hci
->evt_recv
= usb_bt_out_hci_packet_event
;
641 s
->hci
->acl_recv
= usb_bt_out_hci_packet_acl
;
643 usb_bt_handle_reset(&s
->dev
);