dev-hid.c 22.7 KB
Newer Older
B
bellard 已提交
1 2
/*
 * QEMU USB HID devices
3
 *
B
bellard 已提交
4
 * Copyright (c) 2005 Fabrice Bellard
B
balrog 已提交
5
 * Copyright (c) 2007 OpenMoko, Inc.  (andrew@openedhand.com)
6
 *
B
bellard 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
G
Gerd Hoffmann 已提交
25
#include "hw/hw.h"
26
#include "ui/console.h"
G
Gerd Hoffmann 已提交
27 28
#include "hw/usb.h"
#include "hw/usb/desc.h"
29
#include "qemu/timer.h"
G
Gerd Hoffmann 已提交
30
#include "hw/hid.h"
B
bellard 已提交
31 32 33 34 35

/* HID interface requests */
#define GET_REPORT   0xa101
#define GET_IDLE     0xa102
#define GET_PROTOCOL 0xa103
B
balrog 已提交
36
#define SET_REPORT   0x2109
B
bellard 已提交
37 38 39
#define SET_IDLE     0x210a
#define SET_PROTOCOL 0x210b

B
balrog 已提交
40 41 42 43 44
/* HID descriptor types */
#define USB_DT_HID    0x21
#define USB_DT_REPORT 0x22
#define USB_DT_PHY    0x23

G
Gerd Hoffmann 已提交
45 46
typedef struct USBHIDState {
    USBDevice dev;
47
    USBEndpoint *intr;
G
Gerd Hoffmann 已提交
48
    HIDState hid;
49
    uint32_t usb_version;
B
balrog 已提交
50 51
} USBHIDState;

52 53 54 55 56 57 58 59 60
enum {
    STR_MANUFACTURER = 1,
    STR_PRODUCT_MOUSE,
    STR_PRODUCT_TABLET,
    STR_PRODUCT_KEYBOARD,
    STR_SERIALNUMBER,
    STR_CONFIG_MOUSE,
    STR_CONFIG_TABLET,
    STR_CONFIG_KEYBOARD,
B
bellard 已提交
61 62
};

63
static const USBDescStrings desc_strings = {
64
    [STR_MANUFACTURER]     = "QEMU",
65 66 67
    [STR_PRODUCT_MOUSE]    = "QEMU USB Mouse",
    [STR_PRODUCT_TABLET]   = "QEMU USB Tablet",
    [STR_PRODUCT_KEYBOARD] = "QEMU USB Keyboard",
68
    [STR_SERIALNUMBER]     = "42", /* == remote wakeup works */
69 70 71
    [STR_CONFIG_MOUSE]     = "HID Mouse",
    [STR_CONFIG_TABLET]    = "HID Tablet",
    [STR_CONFIG_KEYBOARD]  = "HID Keyboard",
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 102
static const USBDescIface desc_iface_mouse = {
    .bInterfaceNumber              = 0,
    .bNumEndpoints                 = 1,
    .bInterfaceClass               = USB_CLASS_HID,
    .bInterfaceSubClass            = 0x01, /* boot */
    .bInterfaceProtocol            = 0x02,
    .ndesc                         = 1,
    .descs = (USBDescOther[]) {
        {
            /* HID descriptor */
            .data = (uint8_t[]) {
                0x09,          /*  u8  bLength */
                USB_DT_HID,    /*  u8  bDescriptorType */
                0x01, 0x00,    /*  u16 HID_class */
                0x00,          /*  u8  country_code */
                0x01,          /*  u8  num_descriptors */
                USB_DT_REPORT, /*  u8  type: Report */
                52, 0,         /*  u16 len */
            },
        },
    },
    .eps = (USBDescEndpoint[]) {
        {
            .bEndpointAddress      = USB_DIR_IN | 0x01,
            .bmAttributes          = USB_ENDPOINT_XFER_INT,
            .wMaxPacketSize        = 4,
            .bInterval             = 0x0a,
        },
    },
B
bellard 已提交
103 104
};

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
static const USBDescIface desc_iface_tablet = {
    .bInterfaceNumber              = 0,
    .bNumEndpoints                 = 1,
    .bInterfaceClass               = USB_CLASS_HID,
    .bInterfaceProtocol            = 0x02,
    .ndesc                         = 1,
    .descs = (USBDescOther[]) {
        {
            /* HID descriptor */
            .data = (uint8_t[]) {
                0x09,          /*  u8  bLength */
                USB_DT_HID,    /*  u8  bDescriptorType */
                0x01, 0x00,    /*  u16 HID_class */
                0x00,          /*  u8  country_code */
                0x01,          /*  u8  num_descriptors */
                USB_DT_REPORT, /*  u8  type: Report */
                74, 0,         /*  u16 len */
            },
        },
    },
    .eps = (USBDescEndpoint[]) {
        {
            .bEndpointAddress      = USB_DIR_IN | 0x01,
            .bmAttributes          = USB_ENDPOINT_XFER_INT,
            .wMaxPacketSize        = 8,
            .bInterval             = 0x0a,
        },
    },
};

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
static const USBDescIface desc_iface_tablet2 = {
    .bInterfaceNumber              = 0,
    .bNumEndpoints                 = 1,
    .bInterfaceClass               = USB_CLASS_HID,
    .bInterfaceProtocol            = 0x02,
    .ndesc                         = 1,
    .descs = (USBDescOther[]) {
        {
            /* HID descriptor */
            .data = (uint8_t[]) {
                0x09,          /*  u8  bLength */
                USB_DT_HID,    /*  u8  bDescriptorType */
                0x01, 0x00,    /*  u16 HID_class */
                0x00,          /*  u8  country_code */
                0x01,          /*  u8  num_descriptors */
                USB_DT_REPORT, /*  u8  type: Report */
                74, 0,         /*  u16 len */
            },
        },
    },
    .eps = (USBDescEndpoint[]) {
        {
            .bEndpointAddress      = USB_DIR_IN | 0x01,
            .bmAttributes          = USB_ENDPOINT_XFER_INT,
            .wMaxPacketSize        = 8,
            .bInterval             = 4, /* 2 ^ (4-1) * 125 usecs = 1 ms */
        },
    },
};

165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
static const USBDescIface desc_iface_keyboard = {
    .bInterfaceNumber              = 0,
    .bNumEndpoints                 = 1,
    .bInterfaceClass               = USB_CLASS_HID,
    .bInterfaceSubClass            = 0x01, /* boot */
    .bInterfaceProtocol            = 0x01, /* keyboard */
    .ndesc                         = 1,
    .descs = (USBDescOther[]) {
        {
            /* HID descriptor */
            .data = (uint8_t[]) {
                0x09,          /*  u8  bLength */
                USB_DT_HID,    /*  u8  bDescriptorType */
                0x11, 0x01,    /*  u16 HID_class */
                0x00,          /*  u8  country_code */
                0x01,          /*  u8  num_descriptors */
                USB_DT_REPORT, /*  u8  type: Report */
                0x3f, 0,       /*  u16 len */
            },
        },
    },
    .eps = (USBDescEndpoint[]) {
        {
            .bEndpointAddress      = USB_DIR_IN | 0x01,
            .bmAttributes          = USB_ENDPOINT_XFER_INT,
            .wMaxPacketSize        = 8,
            .bInterval             = 0x0a,
        },
    },
};

static const USBDescDevice desc_device_mouse = {
    .bcdUSB                        = 0x0100,
    .bMaxPacketSize0               = 8,
    .bNumConfigurations            = 1,
    .confs = (USBDescConfig[]) {
        {
            .bNumInterfaces        = 1,
            .bConfigurationValue   = 1,
            .iConfiguration        = STR_CONFIG_MOUSE,
            .bmAttributes          = 0xa0,
            .bMaxPower             = 50,
207
            .nif = 1,
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
            .ifs = &desc_iface_mouse,
        },
    },
};

static const USBDescDevice desc_device_tablet = {
    .bcdUSB                        = 0x0100,
    .bMaxPacketSize0               = 8,
    .bNumConfigurations            = 1,
    .confs = (USBDescConfig[]) {
        {
            .bNumInterfaces        = 1,
            .bConfigurationValue   = 1,
            .iConfiguration        = STR_CONFIG_TABLET,
            .bmAttributes          = 0xa0,
            .bMaxPower             = 50,
224
            .nif = 1,
225 226 227 228 229
            .ifs = &desc_iface_tablet,
        },
    },
};

230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
static const USBDescDevice desc_device_tablet2 = {
    .bcdUSB                        = 0x0200,
    .bMaxPacketSize0               = 64,
    .bNumConfigurations            = 1,
    .confs = (USBDescConfig[]) {
        {
            .bNumInterfaces        = 1,
            .bConfigurationValue   = 1,
            .iConfiguration        = STR_CONFIG_TABLET,
            .bmAttributes          = 0xa0,
            .bMaxPower             = 50,
            .nif = 1,
            .ifs = &desc_iface_tablet2,
        },
    },
};

247 248 249 250 251 252 253 254 255 256 257
static const USBDescDevice desc_device_keyboard = {
    .bcdUSB                        = 0x0100,
    .bMaxPacketSize0               = 8,
    .bNumConfigurations            = 1,
    .confs = (USBDescConfig[]) {
        {
            .bNumInterfaces        = 1,
            .bConfigurationValue   = 1,
            .iConfiguration        = STR_CONFIG_KEYBOARD,
            .bmAttributes          = 0xa0,
            .bMaxPower             = 50,
258
            .nif = 1,
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 289
            .ifs = &desc_iface_keyboard,
        },
    },
};

static const USBDesc desc_mouse = {
    .id = {
        .idVendor          = 0x0627,
        .idProduct         = 0x0001,
        .bcdDevice         = 0,
        .iManufacturer     = STR_MANUFACTURER,
        .iProduct          = STR_PRODUCT_MOUSE,
        .iSerialNumber     = STR_SERIALNUMBER,
    },
    .full = &desc_device_mouse,
    .str  = desc_strings,
};

static const USBDesc desc_tablet = {
    .id = {
        .idVendor          = 0x0627,
        .idProduct         = 0x0001,
        .bcdDevice         = 0,
        .iManufacturer     = STR_MANUFACTURER,
        .iProduct          = STR_PRODUCT_TABLET,
        .iSerialNumber     = STR_SERIALNUMBER,
    },
    .full = &desc_device_tablet,
    .str  = desc_strings,
};

290 291 292 293 294 295 296 297 298 299 300 301 302 303
static const USBDesc desc_tablet2 = {
    .id = {
        .idVendor          = 0x0627,
        .idProduct         = 0x0001,
        .bcdDevice         = 0,
        .iManufacturer     = STR_MANUFACTURER,
        .iProduct          = STR_PRODUCT_TABLET,
        .iSerialNumber     = STR_SERIALNUMBER,
    },
    .full = &desc_device_tablet,
    .high = &desc_device_tablet2,
    .str  = desc_strings,
};

304 305 306 307 308 309 310 311 312 313 314
static const USBDesc desc_keyboard = {
    .id = {
        .idVendor          = 0x0627,
        .idProduct         = 0x0001,
        .bcdDevice         = 0,
        .iManufacturer     = STR_MANUFACTURER,
        .iProduct          = STR_PRODUCT_KEYBOARD,
        .iSerialNumber     = STR_SERIALNUMBER,
    },
    .full = &desc_device_keyboard,
    .str  = desc_strings,
B
balrog 已提交
315 316
};

B
bellard 已提交
317
static const uint8_t qemu_mouse_hid_report_descriptor[] = {
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
    0x05, 0x01,		/* Usage Page (Generic Desktop) */
    0x09, 0x02,		/* Usage (Mouse) */
    0xa1, 0x01,		/* Collection (Application) */
    0x09, 0x01,		/*   Usage (Pointer) */
    0xa1, 0x00,		/*   Collection (Physical) */
    0x05, 0x09,		/*     Usage Page (Button) */
    0x19, 0x01,		/*     Usage Minimum (1) */
    0x29, 0x03,		/*     Usage Maximum (3) */
    0x15, 0x00,		/*     Logical Minimum (0) */
    0x25, 0x01,		/*     Logical Maximum (1) */
    0x95, 0x03,		/*     Report Count (3) */
    0x75, 0x01,		/*     Report Size (1) */
    0x81, 0x02,		/*     Input (Data, Variable, Absolute) */
    0x95, 0x01,		/*     Report Count (1) */
    0x75, 0x05,		/*     Report Size (5) */
    0x81, 0x01,		/*     Input (Constant) */
    0x05, 0x01,		/*     Usage Page (Generic Desktop) */
    0x09, 0x30,		/*     Usage (X) */
    0x09, 0x31,		/*     Usage (Y) */
    0x09, 0x38,		/*     Usage (Wheel) */
    0x15, 0x81,		/*     Logical Minimum (-0x7f) */
    0x25, 0x7f,		/*     Logical Maximum (0x7f) */
    0x75, 0x08,		/*     Report Size (8) */
    0x95, 0x03,		/*     Report Count (3) */
    0x81, 0x06,		/*     Input (Data, Variable, Relative) */
    0xc0,		/*   End Collection */
    0xc0,		/* End Collection */
B
bellard 已提交
345 346
};

347
static const uint8_t qemu_tablet_hid_report_descriptor[] = {
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
    0x05, 0x01,		/* Usage Page (Generic Desktop) */
    0x09, 0x01,		/* Usage (Pointer) */
    0xa1, 0x01,		/* Collection (Application) */
    0x09, 0x01,		/*   Usage (Pointer) */
    0xa1, 0x00,		/*   Collection (Physical) */
    0x05, 0x09,		/*     Usage Page (Button) */
    0x19, 0x01,		/*     Usage Minimum (1) */
    0x29, 0x03,		/*     Usage Maximum (3) */
    0x15, 0x00,		/*     Logical Minimum (0) */
    0x25, 0x01,		/*     Logical Maximum (1) */
    0x95, 0x03,		/*     Report Count (3) */
    0x75, 0x01,		/*     Report Size (1) */
    0x81, 0x02,		/*     Input (Data, Variable, Absolute) */
    0x95, 0x01,		/*     Report Count (1) */
    0x75, 0x05,		/*     Report Size (5) */
    0x81, 0x01,		/*     Input (Constant) */
    0x05, 0x01,		/*     Usage Page (Generic Desktop) */
    0x09, 0x30,		/*     Usage (X) */
    0x09, 0x31,		/*     Usage (Y) */
    0x15, 0x00,		/*     Logical Minimum (0) */
368
    0x26, 0xff, 0x7f,	/*     Logical Maximum (0x7fff) */
369
    0x35, 0x00,		/*     Physical Minimum (0) */
370
    0x46, 0xff, 0x7f,	/*     Physical Maximum (0x7fff) */
371 372 373 374 375 376 377 378 379 380 381 382 383 384
    0x75, 0x10,		/*     Report Size (16) */
    0x95, 0x02,		/*     Report Count (2) */
    0x81, 0x02,		/*     Input (Data, Variable, Absolute) */
    0x05, 0x01,		/*     Usage Page (Generic Desktop) */
    0x09, 0x38,		/*     Usage (Wheel) */
    0x15, 0x81,		/*     Logical Minimum (-0x7f) */
    0x25, 0x7f,		/*     Logical Maximum (0x7f) */
    0x35, 0x00,		/*     Physical Minimum (same as logical) */
    0x45, 0x00,		/*     Physical Maximum (same as logical) */
    0x75, 0x08,		/*     Report Size (8) */
    0x95, 0x01,		/*     Report Count (1) */
    0x81, 0x06,		/*     Input (Data, Variable, Relative) */
    0xc0,		/*   End Collection */
    0xc0,		/* End Collection */
385 386
};

B
balrog 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
static const uint8_t qemu_keyboard_hid_report_descriptor[] = {
    0x05, 0x01,		/* Usage Page (Generic Desktop) */
    0x09, 0x06,		/* Usage (Keyboard) */
    0xa1, 0x01,		/* Collection (Application) */
    0x75, 0x01,		/*   Report Size (1) */
    0x95, 0x08,		/*   Report Count (8) */
    0x05, 0x07,		/*   Usage Page (Key Codes) */
    0x19, 0xe0,		/*   Usage Minimum (224) */
    0x29, 0xe7,		/*   Usage Maximum (231) */
    0x15, 0x00,		/*   Logical Minimum (0) */
    0x25, 0x01,		/*   Logical Maximum (1) */
    0x81, 0x02,		/*   Input (Data, Variable, Absolute) */
    0x95, 0x01,		/*   Report Count (1) */
    0x75, 0x08,		/*   Report Size (8) */
    0x81, 0x01,		/*   Input (Constant) */
    0x95, 0x05,		/*   Report Count (5) */
    0x75, 0x01,		/*   Report Size (1) */
    0x05, 0x08,		/*   Usage Page (LEDs) */
    0x19, 0x01,		/*   Usage Minimum (1) */
    0x29, 0x05,		/*   Usage Maximum (5) */
    0x91, 0x02,		/*   Output (Data, Variable, Absolute) */
    0x95, 0x01,		/*   Report Count (1) */
    0x75, 0x03,		/*   Report Size (3) */
    0x91, 0x01,		/*   Output (Constant) */
    0x95, 0x06,		/*   Report Count (6) */
    0x75, 0x08,		/*   Report Size (8) */
    0x15, 0x00,		/*   Logical Minimum (0) */
    0x25, 0xff,		/*   Logical Maximum (255) */
    0x05, 0x07,		/*   Usage Page (Key Codes) */
    0x19, 0x00,		/*   Usage Minimum (0) */
    0x29, 0xff,		/*   Usage Maximum (255) */
    0x81, 0x00,		/*   Input (Data, Array) */
    0xc0,		/* End Collection */
};

G
Gerd Hoffmann 已提交
422
static void usb_hid_changed(HIDState *hs)
423
{
G
Gerd Hoffmann 已提交
424
    USBHIDState *us = container_of(hs, USBHIDState, hid);
425

G
Gerd Hoffmann 已提交
426
    usb_wakeup(us->intr, 0);
427 428
}

G
Gerd Hoffmann 已提交
429
static void usb_hid_handle_reset(USBDevice *dev)
B
balrog 已提交
430
{
G
Gerd Hoffmann 已提交
431 432
    USBHIDState *us = DO_UPCAST(USBHIDState, dev, dev);

433
    hid_reset(&us->hid);
434 435
}

436
static void usb_hid_handle_control(USBDevice *dev, USBPacket *p,
437
               int request, int value, int index, int length, uint8_t *data)
B
bellard 已提交
438
{
G
Gerd Hoffmann 已提交
439 440
    USBHIDState *us = DO_UPCAST(USBHIDState, dev, dev);
    HIDState *hs = &us->hid;
441
    int ret;
B
bellard 已提交
442

443
    ret = usb_desc_handle_control(dev, p, request, value, index, length, data);
444
    if (ret >= 0) {
445
        return;
446
    }
B
bellard 已提交
447

G
Gerd Hoffmann 已提交
448
    switch (request) {
B
bellard 已提交
449 450
        /* hid specific requests */
    case InterfaceRequest | USB_REQ_GET_DESCRIPTOR:
G
Gerd Hoffmann 已提交
451
        switch (value >> 8) {
B
bellard 已提交
452
        case 0x22:
G
Gerd Hoffmann 已提交
453
            if (hs->kind == HID_MOUSE) {
454
		memcpy(data, qemu_mouse_hid_report_descriptor,
455
		       sizeof(qemu_mouse_hid_report_descriptor));
456
                p->actual_length = sizeof(qemu_mouse_hid_report_descriptor);
G
Gerd Hoffmann 已提交
457 458
            } else if (hs->kind == HID_TABLET) {
                memcpy(data, qemu_tablet_hid_report_descriptor,
459
		       sizeof(qemu_tablet_hid_report_descriptor));
460
                p->actual_length = sizeof(qemu_tablet_hid_report_descriptor);
G
Gerd Hoffmann 已提交
461
            } else if (hs->kind == HID_KEYBOARD) {
462
                memcpy(data, qemu_keyboard_hid_report_descriptor,
B
balrog 已提交
463
                       sizeof(qemu_keyboard_hid_report_descriptor));
464
                p->actual_length = sizeof(qemu_keyboard_hid_report_descriptor);
B
balrog 已提交
465 466
            }
            break;
B
bellard 已提交
467 468 469 470 471
        default:
            goto fail;
        }
        break;
    case GET_REPORT:
G
Gerd Hoffmann 已提交
472
        if (hs->kind == HID_MOUSE || hs->kind == HID_TABLET) {
473
            p->actual_length = hid_pointer_poll(hs, data, length);
G
Gerd Hoffmann 已提交
474
        } else if (hs->kind == HID_KEYBOARD) {
475
            p->actual_length = hid_keyboard_poll(hs, data, length);
G
Gerd Hoffmann 已提交
476
        }
B
balrog 已提交
477 478
        break;
    case SET_REPORT:
G
Gerd Hoffmann 已提交
479
        if (hs->kind == HID_KEYBOARD) {
480
            p->actual_length = hid_keyboard_write(hs, data, length);
G
Gerd Hoffmann 已提交
481
        } else {
B
balrog 已提交
482
            goto fail;
G
Gerd Hoffmann 已提交
483
        }
B
balrog 已提交
484 485
        break;
    case GET_PROTOCOL:
G
Gerd Hoffmann 已提交
486
        if (hs->kind != HID_KEYBOARD && hs->kind != HID_MOUSE) {
B
balrog 已提交
487
            goto fail;
G
Gerd Hoffmann 已提交
488
        }
489
        data[0] = hs->protocol;
490
        p->actual_length = 1;
B
balrog 已提交
491 492
        break;
    case SET_PROTOCOL:
G
Gerd Hoffmann 已提交
493
        if (hs->kind != HID_KEYBOARD && hs->kind != HID_MOUSE) {
B
balrog 已提交
494
            goto fail;
G
Gerd Hoffmann 已提交
495
        }
496
        hs->protocol = value;
B
balrog 已提交
497 498
        break;
    case GET_IDLE:
499
        data[0] = hs->idle;
500
        p->actual_length = 1;
B
bellard 已提交
501 502
        break;
    case SET_IDLE:
503
        hs->idle = (uint8_t) (value >> 8);
504
        hid_set_next_idle(hs);
505 506 507
        if (hs->kind == HID_MOUSE || hs->kind == HID_TABLET) {
            hid_pointer_activate(hs);
        }
B
bellard 已提交
508 509 510
        break;
    default:
    fail:
511
        p->status = USB_RET_STALL;
B
bellard 已提交
512 513 514 515
        break;
    }
}

516
static void usb_hid_handle_data(USBDevice *dev, USBPacket *p)
B
bellard 已提交
517
{
G
Gerd Hoffmann 已提交
518 519
    USBHIDState *us = DO_UPCAST(USBHIDState, dev, dev);
    HIDState *hs = &us->hid;
G
Gerd Hoffmann 已提交
520
    uint8_t buf[p->iov.size];
521
    int len = 0;
B
bellard 已提交
522

G
Gerd Hoffmann 已提交
523
    switch (p->pid) {
B
bellard 已提交
524
    case USB_TOKEN_IN:
525
        if (p->ep->nr == 1) {
G
Gerd Hoffmann 已提交
526 527 528
            if (hs->kind == HID_MOUSE || hs->kind == HID_TABLET) {
                hid_pointer_activate(hs);
            }
529
            if (!hid_has_events(hs)) {
530 531
                p->status = USB_RET_NAK;
                return;
P
Paolo Bonzini 已提交
532
            }
533
            hid_set_next_idle(hs);
G
Gerd Hoffmann 已提交
534
            if (hs->kind == HID_MOUSE || hs->kind == HID_TABLET) {
535
                len = hid_pointer_poll(hs, buf, p->iov.size);
G
Gerd Hoffmann 已提交
536
            } else if (hs->kind == HID_KEYBOARD) {
537
                len = hid_keyboard_poll(hs, buf, p->iov.size);
P
Paolo Bonzini 已提交
538
            }
539
            usb_packet_copy(p, buf, len);
B
bellard 已提交
540 541 542 543 544 545 546
        } else {
            goto fail;
        }
        break;
    case USB_TOKEN_OUT:
    default:
    fail:
547
        p->status = USB_RET_STALL;
B
bellard 已提交
548 549 550 551
        break;
    }
}

G
Gerd Hoffmann 已提交
552
static void usb_hid_handle_destroy(USBDevice *dev)
553
{
G
Gerd Hoffmann 已提交
554
    USBHIDState *us = DO_UPCAST(USBHIDState, dev, dev);
555

G
Gerd Hoffmann 已提交
556 557 558 559 560 561 562 563
    hid_free(&us->hid);
}

static int usb_hid_initfn(USBDevice *dev, int kind)
{
    USBHIDState *us = DO_UPCAST(USBHIDState, dev, dev);

    usb_desc_init(dev);
564
    us->intr = usb_ep_get(dev, USB_TOKEN_IN, 1);
G
Gerd Hoffmann 已提交
565
    hid_init(&us->hid, kind, usb_hid_changed);
566
    return 0;
567 568
}

569
static int usb_tablet_initfn(USBDevice *dev)
B
bellard 已提交
570
{
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
    USBHIDState *us = DO_UPCAST(USBHIDState, dev, dev);

    switch (us->usb_version) {
    case 1:
        dev->usb_desc = &desc_tablet;
        break;
    case 2:
        dev->usb_desc = &desc_tablet2;
        break;
    default:
        error_report("Invalid usb version %d for usb-tabler (must be 1 or 2)",
                     us->usb_version);
        return -1;
    }

G
Gerd Hoffmann 已提交
586
    return usb_hid_initfn(dev, HID_TABLET);
587
}
B
bellard 已提交
588

589 590
static int usb_mouse_initfn(USBDevice *dev)
{
G
Gerd Hoffmann 已提交
591
    return usb_hid_initfn(dev, HID_MOUSE);
592
}
B
bellard 已提交
593

594 595
static int usb_keyboard_initfn(USBDevice *dev)
{
G
Gerd Hoffmann 已提交
596
    return usb_hid_initfn(dev, HID_KEYBOARD);
597
}
B
bellard 已提交
598

599 600 601 602 603 604 605 606 607 608
static int usb_ptr_post_load(void *opaque, int version_id)
{
    USBHIDState *s = opaque;

    if (s->dev.remote_wakeup) {
        hid_pointer_activate(&s->hid);
    }
    return 0;
}

G
Gerd Hoffmann 已提交
609 610 611 612
static const VMStateDescription vmstate_usb_ptr = {
    .name = "usb-ptr",
    .version_id = 1,
    .minimum_version_id = 1,
613
    .post_load = usb_ptr_post_load,
G
Gerd Hoffmann 已提交
614 615
    .fields = (VMStateField []) {
        VMSTATE_USB_DEVICE(dev, USBHIDState),
M
Michael Walle 已提交
616
        VMSTATE_HID_POINTER_DEVICE(hid, USBHIDState),
G
Gerd Hoffmann 已提交
617 618 619 620 621 622 623 624 625 626
        VMSTATE_END_OF_LIST()
    }
};

static const VMStateDescription vmstate_usb_kbd = {
    .name = "usb-kbd",
    .version_id = 1,
    .minimum_version_id = 1,
    .fields = (VMStateField []) {
        VMSTATE_USB_DEVICE(dev, USBHIDState),
M
Michael Walle 已提交
627
        VMSTATE_HID_KEYBOARD_DEVICE(hid, USBHIDState),
G
Gerd Hoffmann 已提交
628 629 630 631
        VMSTATE_END_OF_LIST()
    }
};

632
static void usb_hid_class_initfn(ObjectClass *klass, void *data)
633 634 635 636 637 638 639
{
    USBDeviceClass *uc = USB_DEVICE_CLASS(klass);

    uc->handle_reset   = usb_hid_handle_reset;
    uc->handle_control = usb_hid_handle_control;
    uc->handle_data    = usb_hid_handle_data;
    uc->handle_destroy = usb_hid_handle_destroy;
640
    uc->handle_attach  = usb_desc_attach;
641 642
}

643 644 645 646 647
static Property usb_tablet_properties[] = {
        DEFINE_PROP_UINT32("usb_version", USBHIDState, usb_version, 2),
        DEFINE_PROP_END_OF_LIST(),
};

648 649
static void usb_tablet_class_initfn(ObjectClass *klass, void *data)
{
650
    DeviceClass *dc = DEVICE_CLASS(klass);
651 652 653 654 655
    USBDeviceClass *uc = USB_DEVICE_CLASS(klass);

    usb_hid_class_initfn(klass, data);
    uc->init           = usb_tablet_initfn;
    uc->product_desc   = "QEMU USB Tablet";
656
    dc->vmsd = &vmstate_usb_ptr;
657
    dc->props = usb_tablet_properties;
658 659
}

660
static const TypeInfo usb_tablet_info = {
661 662 663 664
    .name          = "usb-tablet",
    .parent        = TYPE_USB_DEVICE,
    .instance_size = sizeof(USBHIDState),
    .class_init    = usb_tablet_class_initfn,
665 666 667 668
};

static void usb_mouse_class_initfn(ObjectClass *klass, void *data)
{
669
    DeviceClass *dc = DEVICE_CLASS(klass);
670 671
    USBDeviceClass *uc = USB_DEVICE_CLASS(klass);

672
    usb_hid_class_initfn(klass, data);
673 674 675
    uc->init           = usb_mouse_initfn;
    uc->product_desc   = "QEMU USB Mouse";
    uc->usb_desc       = &desc_mouse;
676
    dc->vmsd = &vmstate_usb_ptr;
677 678
}

679
static const TypeInfo usb_mouse_info = {
680 681 682 683
    .name          = "usb-mouse",
    .parent        = TYPE_USB_DEVICE,
    .instance_size = sizeof(USBHIDState),
    .class_init    = usb_mouse_class_initfn,
684 685 686 687
};

static void usb_keyboard_class_initfn(ObjectClass *klass, void *data)
{
688
    DeviceClass *dc = DEVICE_CLASS(klass);
689 690
    USBDeviceClass *uc = USB_DEVICE_CLASS(klass);

691
    usb_hid_class_initfn(klass, data);
692 693 694
    uc->init           = usb_keyboard_initfn;
    uc->product_desc   = "QEMU USB Keyboard";
    uc->usb_desc       = &desc_keyboard;
695
    dc->vmsd = &vmstate_usb_kbd;
696 697
}

698
static const TypeInfo usb_keyboard_info = {
699 700 701 702
    .name          = "usb-kbd",
    .parent        = TYPE_USB_DEVICE,
    .instance_size = sizeof(USBHIDState),
    .class_init    = usb_keyboard_class_initfn,
703 704
};

A
Andreas Färber 已提交
705
static void usb_hid_register_types(void)
706
{
707
    type_register_static(&usb_tablet_info);
708
    usb_legacy_register("usb-tablet", "tablet", NULL);
709
    type_register_static(&usb_mouse_info);
710
    usb_legacy_register("usb-mouse", "mouse", NULL);
711
    type_register_static(&usb_keyboard_info);
712
    usb_legacy_register("usb-kbd", "keyboard", NULL);
713
}
A
Andreas Färber 已提交
714 715

type_init(usb_hid_register_types)