dev-bluetooth.c 17.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * QEMU Bluetooth HCI USB Transport Layer v1.0
 *
 * Copyright (C) 2007 OpenMoko, Inc.
 * Copyright (C) 2008 Andrzej Zaborowski  <balrog@zabor.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 or
 * (at your option) version 3 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * 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, see <http://www.gnu.org/licenses/>.
19 20 21
 */

#include "qemu-common.h"
G
Gerd Hoffmann 已提交
22 23
#include "hw/usb.h"
#include "hw/usb/desc.h"
24
#include "bt/bt.h"
G
Gerd Hoffmann 已提交
25
#include "hw/bt.h"
26 27 28 29

struct USBBtState {
    USBDevice dev;
    struct HCIInfo *hci;
30
    USBEndpoint *intr;
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

    int config;

#define CFIFO_LEN_MASK	255
#define DFIFO_LEN_MASK	4095
    struct usb_hci_in_fifo_s {
        uint8_t data[(DFIFO_LEN_MASK + 1) * 2];
        struct {
            uint8_t *data;
            int len;
        } fifo[CFIFO_LEN_MASK + 1];
        int dstart, dlen, dsize, start, len;
    } evt, acl, sco;

    struct usb_hci_out_fifo_s {
        uint8_t data[4096];
	int len;
    } outcmd, outacl, outsco;
};

#define USB_EVT_EP	1
#define USB_ACL_EP	2
#define USB_SCO_EP	3

55 56 57 58
enum {
    STR_MANUFACTURER = 1,
    STR_SERIALNUMBER,
};
59

60
static const USBDescStrings desc_strings = {
61
    [STR_MANUFACTURER]     = "QEMU",
62 63
    [STR_SERIALNUMBER]     = "1",
};
64

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
static const USBDescIface desc_iface_bluetooth[] = {
    {
        .bInterfaceNumber              = 0,
        .bNumEndpoints                 = 3,
        .bInterfaceClass               = 0xe0, /* Wireless */
        .bInterfaceSubClass            = 0x01, /* Radio Frequency */
        .bInterfaceProtocol            = 0x01, /* Bluetooth */
        .eps = (USBDescEndpoint[]) {
            {
                .bEndpointAddress      = USB_DIR_IN | USB_EVT_EP,
                .bmAttributes          = USB_ENDPOINT_XFER_INT,
                .wMaxPacketSize        = 0x10,
                .bInterval             = 0x02,
            },
            {
                .bEndpointAddress      = USB_DIR_OUT | USB_ACL_EP,
                .bmAttributes          = USB_ENDPOINT_XFER_BULK,
                .wMaxPacketSize        = 0x40,
                .bInterval             = 0x0a,
            },
            {
                .bEndpointAddress      = USB_DIR_IN | USB_ACL_EP,
                .bmAttributes          = USB_ENDPOINT_XFER_BULK,
                .wMaxPacketSize        = 0x40,
                .bInterval             = 0x0a,
            },
        },
    },{
        .bInterfaceNumber              = 1,
        .bAlternateSetting             = 0,
        .bNumEndpoints                 = 2,
        .bInterfaceClass               = 0xe0, /* Wireless */
        .bInterfaceSubClass            = 0x01, /* Radio Frequency */
        .bInterfaceProtocol            = 0x01, /* Bluetooth */
        .eps = (USBDescEndpoint[]) {
            {
                .bEndpointAddress      = USB_DIR_OUT | USB_SCO_EP,
G
Gerd Hoffmann 已提交
102
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
103 104 105 106 107
                .wMaxPacketSize        = 0,
                .bInterval             = 0x01,
            },
            {
                .bEndpointAddress      = USB_DIR_IN | USB_SCO_EP,
G
Gerd Hoffmann 已提交
108
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
109 110 111 112 113 114 115 116 117 118 119 120 121 122
                .wMaxPacketSize        = 0,
                .bInterval             = 0x01,
            },
        },
    },{
        .bInterfaceNumber              = 1,
        .bAlternateSetting             = 1,
        .bNumEndpoints                 = 2,
        .bInterfaceClass               = 0xe0, /* Wireless */
        .bInterfaceSubClass            = 0x01, /* Radio Frequency */
        .bInterfaceProtocol            = 0x01, /* Bluetooth */
        .eps = (USBDescEndpoint[]) {
            {
                .bEndpointAddress      = USB_DIR_OUT | USB_SCO_EP,
G
Gerd Hoffmann 已提交
123
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
124 125 126 127 128
                .wMaxPacketSize        = 0x09,
                .bInterval             = 0x01,
            },
            {
                .bEndpointAddress      = USB_DIR_IN | USB_SCO_EP,
G
Gerd Hoffmann 已提交
129
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
130 131 132 133 134 135 136 137 138 139 140 141 142 143
                .wMaxPacketSize        = 0x09,
                .bInterval             = 0x01,
            },
        },
    },{
        .bInterfaceNumber              = 1,
        .bAlternateSetting             = 2,
        .bNumEndpoints                 = 2,
        .bInterfaceClass               = 0xe0, /* Wireless */
        .bInterfaceSubClass            = 0x01, /* Radio Frequency */
        .bInterfaceProtocol            = 0x01, /* Bluetooth */
        .eps = (USBDescEndpoint[]) {
            {
                .bEndpointAddress      = USB_DIR_OUT | USB_SCO_EP,
G
Gerd Hoffmann 已提交
144
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
145 146 147 148 149
                .wMaxPacketSize        = 0x11,
                .bInterval             = 0x01,
            },
            {
                .bEndpointAddress      = USB_DIR_IN | USB_SCO_EP,
G
Gerd Hoffmann 已提交
150
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
151 152 153 154 155 156 157 158 159 160 161 162 163 164
                .wMaxPacketSize        = 0x11,
                .bInterval             = 0x01,
            },
        },
    },{
        .bInterfaceNumber              = 1,
        .bAlternateSetting             = 3,
        .bNumEndpoints                 = 2,
        .bInterfaceClass               = 0xe0, /* Wireless */
        .bInterfaceSubClass            = 0x01, /* Radio Frequency */
        .bInterfaceProtocol            = 0x01, /* Bluetooth */
        .eps = (USBDescEndpoint[]) {
            {
                .bEndpointAddress      = USB_DIR_OUT | USB_SCO_EP,
G
Gerd Hoffmann 已提交
165
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
166 167 168 169 170
                .wMaxPacketSize        = 0x19,
                .bInterval             = 0x01,
            },
            {
                .bEndpointAddress      = USB_DIR_IN | USB_SCO_EP,
G
Gerd Hoffmann 已提交
171
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
172 173 174 175 176 177 178 179 180 181 182 183 184 185
                .wMaxPacketSize        = 0x19,
                .bInterval             = 0x01,
            },
        },
    },{
        .bInterfaceNumber              = 1,
        .bAlternateSetting             = 4,
        .bNumEndpoints                 = 2,
        .bInterfaceClass               = 0xe0, /* Wireless */
        .bInterfaceSubClass            = 0x01, /* Radio Frequency */
        .bInterfaceProtocol            = 0x01, /* Bluetooth */
        .eps = (USBDescEndpoint[]) {
            {
                .bEndpointAddress      = USB_DIR_OUT | USB_SCO_EP,
G
Gerd Hoffmann 已提交
186
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
187 188 189 190 191
                .wMaxPacketSize        = 0x21,
                .bInterval             = 0x01,
            },
            {
                .bEndpointAddress      = USB_DIR_IN | USB_SCO_EP,
G
Gerd Hoffmann 已提交
192
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
193 194 195 196 197 198 199 200 201 202 203 204 205 206
                .wMaxPacketSize        = 0x21,
                .bInterval             = 0x01,
            },
        },
    },{
        .bInterfaceNumber              = 1,
        .bAlternateSetting             = 5,
        .bNumEndpoints                 = 2,
        .bInterfaceClass               = 0xe0, /* Wireless */
        .bInterfaceSubClass            = 0x01, /* Radio Frequency */
        .bInterfaceProtocol            = 0x01, /* Bluetooth */
        .eps = (USBDescEndpoint[]) {
            {
                .bEndpointAddress      = USB_DIR_OUT | USB_SCO_EP,
G
Gerd Hoffmann 已提交
207
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
208 209 210 211 212
                .wMaxPacketSize        = 0x31,
                .bInterval             = 0x01,
            },
            {
                .bEndpointAddress      = USB_DIR_IN | USB_SCO_EP,
G
Gerd Hoffmann 已提交
213
                .bmAttributes          = USB_ENDPOINT_XFER_ISOC,
214 215 216 217 218 219
                .wMaxPacketSize        = 0x31,
                .bInterval             = 0x01,
            },
        },
    }
};
220

221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
static const USBDescDevice desc_device_bluetooth = {
    .bcdUSB                        = 0x0110,
    .bDeviceClass                  = 0xe0, /* Wireless */
    .bDeviceSubClass               = 0x01, /* Radio Frequency */
    .bDeviceProtocol               = 0x01, /* Bluetooth */
    .bMaxPacketSize0               = 64,
    .bNumConfigurations            = 1,
    .confs = (USBDescConfig[]) {
        {
            .bNumInterfaces        = 2,
            .bConfigurationValue   = 1,
            .bmAttributes          = 0xc0,
            .bMaxPower             = 0,
            .nif = ARRAY_SIZE(desc_iface_bluetooth),
            .ifs = desc_iface_bluetooth,
        },
    },
238 239
};

240 241 242 243 244 245 246 247 248 249 250
static const USBDesc desc_bluetooth = {
    .id = {
        .idVendor          = 0x0a12,
        .idProduct         = 0x0001,
        .bcdDevice         = 0x1958,
        .iManufacturer     = STR_MANUFACTURER,
        .iProduct          = 0,
        .iSerialNumber     = STR_SERIALNUMBER,
    },
    .full = &desc_device_bluetooth,
    .str  = desc_strings,
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
};

static void usb_bt_fifo_reset(struct usb_hci_in_fifo_s *fifo)
{
    fifo->dstart = 0;
    fifo->dlen = 0;
    fifo->dsize = DFIFO_LEN_MASK + 1;
    fifo->start = 0;
    fifo->len = 0;
}

static void usb_bt_fifo_enqueue(struct usb_hci_in_fifo_s *fifo,
                const uint8_t *data, int len)
{
    int off = fifo->dstart + fifo->dlen;
    uint8_t *buf;

    fifo->dlen += len;
    if (off <= DFIFO_LEN_MASK) {
        if (off + len > DFIFO_LEN_MASK + 1 &&
                        (fifo->dsize = off + len) > (DFIFO_LEN_MASK + 1) * 2) {
            fprintf(stderr, "%s: can't alloc %i bytes\n", __FUNCTION__, len);
            exit(-1);
        }
        buf = fifo->data + off;
    } else {
        if (fifo->dlen > fifo->dsize) {
            fprintf(stderr, "%s: can't alloc %i bytes\n", __FUNCTION__, len);
            exit(-1);
        }
        buf = fifo->data + off - fifo->dsize;
    }

    off = (fifo->start + fifo->len ++) & CFIFO_LEN_MASK;
    fifo->fifo[off].data = memcpy(buf, data, len);
    fifo->fifo[off].len = len;
}

289
static inline void usb_bt_fifo_dequeue(struct usb_hci_in_fifo_s *fifo,
290 291 292 293
                USBPacket *p)
{
    int len;

294
    assert(fifo->len != 0);
295

G
Gerd Hoffmann 已提交
296 297 298
    len = MIN(p->iov.size, fifo->fifo[fifo->start].len);
    usb_packet_copy(p, fifo->fifo[fifo->start].data, len);
    if (len == p->iov.size) {
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
        fifo->fifo[fifo->start].len -= len;
        fifo->fifo[fifo->start].data += len;
    } else {
        fifo->start ++;
        fifo->start &= CFIFO_LEN_MASK;
        fifo->len --;
    }

    fifo->dstart += len;
    fifo->dlen -= len;
    if (fifo->dstart >= fifo->dsize) {
        fifo->dstart = 0;
        fifo->dsize = DFIFO_LEN_MASK + 1;
    }
}

315
static inline void usb_bt_fifo_out_enqueue(struct USBBtState *s,
316 317 318
                struct usb_hci_out_fifo_s *fifo,
                void (*send)(struct HCIInfo *, const uint8_t *, int),
                int (*complete)(const uint8_t *, int),
G
Gerd Hoffmann 已提交
319
                USBPacket *p)
320
{
G
Gerd Hoffmann 已提交
321 322 323 324 325
    usb_packet_copy(p, fifo->data + fifo->len, p->iov.size);
    fifo->len += p->iov.size;
    if (complete(fifo->data, fifo->len)) {
        send(s->hci, fifo->data, fifo->len);
        fifo->len = 0;
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
    }

    /* TODO: do we need to loop? */
}

static int usb_bt_hci_cmd_complete(const uint8_t *data, int len)
{
    len -= HCI_COMMAND_HDR_SIZE;
    return len >= 0 &&
            len >= ((struct hci_command_hdr *) data)->plen;
}

static int usb_bt_hci_acl_complete(const uint8_t *data, int len)
{
    len -= HCI_ACL_HDR_SIZE;
    return len >= 0 &&
            len >= le16_to_cpu(((struct hci_acl_hdr *) data)->dlen);
}

static int usb_bt_hci_sco_complete(const uint8_t *data, int len)
{
    len -= HCI_SCO_HDR_SIZE;
    return len >= 0 &&
            len >= ((struct hci_sco_hdr *) data)->dlen;
}

static void usb_bt_handle_reset(USBDevice *dev)
{
    struct USBBtState *s = (struct USBBtState *) dev->opaque;

    usb_bt_fifo_reset(&s->evt);
    usb_bt_fifo_reset(&s->acl);
    usb_bt_fifo_reset(&s->sco);
    s->outcmd.len = 0;
    s->outacl.len = 0;
    s->outsco.len = 0;
}

364
static void usb_bt_handle_control(USBDevice *dev, USBPacket *p,
365
               int request, int value, int index, int length, uint8_t *data)
366 367
{
    struct USBBtState *s = (struct USBBtState *) dev->opaque;
368 369
    int ret;

370
    ret = usb_desc_handle_control(dev, p, request, value, index, length, data);
371
    if (ret >= 0) {
372 373 374 375 376 377 378 379 380 381 382
        switch (request) {
        case DeviceRequest | USB_REQ_GET_CONFIGURATION:
            s->config = 0;
            break;
        case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
            s->config = 1;
            usb_bt_fifo_reset(&s->evt);
            usb_bt_fifo_reset(&s->acl);
            usb_bt_fifo_reset(&s->sco);
            break;
        }
383
        return;
384
    }
385 386 387 388

    switch (request) {
    case InterfaceRequest | USB_REQ_GET_STATUS:
    case EndpointRequest | USB_REQ_GET_STATUS:
389
        data[0] = 0x00;
390
        data[1] = 0x00;
391
        p->actual_length = 2;
392 393 394
        break;
    case InterfaceOutRequest | USB_REQ_CLEAR_FEATURE:
    case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
395
        goto fail;
396 397
    case InterfaceOutRequest | USB_REQ_SET_FEATURE:
    case EndpointOutRequest | USB_REQ_SET_FEATURE:
398
        goto fail;
399 400 401 402
        break;
    case ((USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_DEVICE) << 8):
        if (s->config)
            usb_bt_fifo_out_enqueue(s, &s->outcmd, s->hci->cmd_send,
G
Gerd Hoffmann 已提交
403
                            usb_bt_hci_cmd_complete, p);
404 405 406
        break;
    default:
    fail:
407
        p->status = USB_RET_STALL;
408 409 410 411
        break;
    }
}

412
static void usb_bt_handle_data(USBDevice *dev, USBPacket *p)
413 414 415 416 417 418 419 420
{
    struct USBBtState *s = (struct USBBtState *) dev->opaque;

    if (!s->config)
        goto fail;

    switch (p->pid) {
    case USB_TOKEN_IN:
421
        switch (p->ep->nr) {
422
        case USB_EVT_EP:
423 424 425 426
            if (s->evt.len == 0) {
                p->status = USB_RET_NAK;
                break;
            }
427
            usb_bt_fifo_dequeue(&s->evt, p);
428 429 430
            break;

        case USB_ACL_EP:
431 432 433 434
            if (s->evt.len == 0) {
                p->status = USB_RET_STALL;
                break;
            }
435
            usb_bt_fifo_dequeue(&s->acl, p);
436 437 438
            break;

        case USB_SCO_EP:
439 440 441 442
            if (s->evt.len == 0) {
                p->status = USB_RET_STALL;
                break;
            }
443
            usb_bt_fifo_dequeue(&s->sco, p);
444 445 446 447 448 449 450 451
            break;

        default:
            goto fail;
        }
        break;

    case USB_TOKEN_OUT:
452
        switch (p->ep->nr) {
453 454
        case USB_ACL_EP:
            usb_bt_fifo_out_enqueue(s, &s->outacl, s->hci->acl_send,
G
Gerd Hoffmann 已提交
455
                            usb_bt_hci_acl_complete, p);
456 457 458 459
            break;

        case USB_SCO_EP:
            usb_bt_fifo_out_enqueue(s, &s->outsco, s->hci->sco_send,
G
Gerd Hoffmann 已提交
460
                            usb_bt_hci_sco_complete, p);
461 462 463 464 465 466 467 468 469
            break;

        default:
            goto fail;
        }
        break;

    default:
    fail:
470
        p->status = USB_RET_STALL;
471 472 473 474 475 476 477 478 479
        break;
    }
}

static void usb_bt_out_hci_packet_event(void *opaque,
                const uint8_t *data, int len)
{
    struct USBBtState *s = (struct USBBtState *) opaque;

480
    if (s->evt.len == 0) {
G
Gerd Hoffmann 已提交
481
        usb_wakeup(s->intr, 0);
482
    }
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
    usb_bt_fifo_enqueue(&s->evt, data, len);
}

static void usb_bt_out_hci_packet_acl(void *opaque,
                const uint8_t *data, int len)
{
    struct USBBtState *s = (struct USBBtState *) opaque;

    usb_bt_fifo_enqueue(&s->acl, data, len);
}

static void usb_bt_handle_destroy(USBDevice *dev)
{
    struct USBBtState *s = (struct USBBtState *) dev->opaque;

498 499 500
    s->hci->opaque = NULL;
    s->hci->evt_recv = NULL;
    s->hci->acl_recv = NULL;
501 502
}

503 504
static int usb_bt_initfn(USBDevice *dev)
{
505 506
    struct USBBtState *s = DO_UPCAST(struct USBBtState, dev, dev);

G
Gerd Hoffmann 已提交
507
    usb_desc_create_serial(dev);
508
    usb_desc_init(dev);
509 510
    s->intr = usb_ep_get(dev, USB_TOKEN_IN, USB_EVT_EP);

511 512 513
    return 0;
}

514
USBDevice *usb_bt_init(USBBus *bus, HCIInfo *hci)
515
{
516
    USBDevice *dev;
517 518
    struct USBBtState *s;

B
balrog 已提交
519 520
    if (!hci)
        return NULL;
521
    dev = usb_create_simple(bus, "usb-bt-dongle");
522 523 524
    if (!dev) {
        return NULL;
    }
525
    s = DO_UPCAST(struct USBBtState, dev, dev);
526 527 528 529 530 531 532 533 534
    s->dev.opaque = s;

    s->hci = hci;
    s->hci->opaque = s;
    s->hci->evt_recv = usb_bt_out_hci_packet_event;
    s->hci->acl_recv = usb_bt_out_hci_packet_acl;

    usb_bt_handle_reset(&s->dev);

535 536 537
    return dev;
}

G
Gerd Hoffmann 已提交
538 539 540 541 542
static const VMStateDescription vmstate_usb_bt = {
    .name = "usb-bt",
    .unmigratable = 1,
};

543 544
static void usb_bt_class_initfn(ObjectClass *klass, void *data)
{
545
    DeviceClass *dc = DEVICE_CLASS(klass);
546 547 548 549 550 551 552 553 554
    USBDeviceClass *uc = USB_DEVICE_CLASS(klass);

    uc->init           = usb_bt_initfn;
    uc->product_desc   = "QEMU BT dongle";
    uc->usb_desc       = &desc_bluetooth;
    uc->handle_reset   = usb_bt_handle_reset;
    uc->handle_control = usb_bt_handle_control;
    uc->handle_data    = usb_bt_handle_data;
    uc->handle_destroy = usb_bt_handle_destroy;
555
    dc->vmsd = &vmstate_usb_bt;
556 557
}

558
static const TypeInfo bt_info = {
559 560 561 562
    .name          = "usb-bt-dongle",
    .parent        = TYPE_USB_DEVICE,
    .instance_size = sizeof(struct USBBtState),
    .class_init    = usb_bt_class_initfn,
563 564
};

A
Andreas Färber 已提交
565
static void usb_bt_register_types(void)
566
{
567
    type_register_static(&bt_info);
568
}
A
Andreas Färber 已提交
569 570

type_init(usb_bt_register_types)