usb.h 10.7 KB
Newer Older
B
bellard 已提交
1 2
/*
 * QEMU USB API
3
 *
B
bellard 已提交
4
 * Copyright (c) 2005 Fabrice Bellard
5
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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.
 */
24 25

#include "block.h"
26
#include "qdev.h"
B
Blue Swirl 已提交
27
#include "qemu-queue.h"
28

29 30 31 32 33 34
/* Constants related to the USB / PCI interaction */
#define USB_SBRN    0x60 /* Serial Bus Release Number Register */
#define USB_RELEASE_1  0x10 /* USB 1.0 */
#define USB_RELEASE_2  0x20 /* USB 2.0 */
#define USB_RELEASE_3  0x30 /* USB 3.0 */

B
bellard 已提交
35 36 37 38 39 40 41 42 43
#define USB_TOKEN_SETUP 0x2d
#define USB_TOKEN_IN    0x69 /* device -> host */
#define USB_TOKEN_OUT   0xe1 /* host -> device */

/* specific usb messages, also sent in the 'pid' parameter */
#define USB_MSG_ATTACH   0x100
#define USB_MSG_DETACH   0x101
#define USB_MSG_RESET    0x102

44
#define USB_RET_NODEV  (-1)
B
bellard 已提交
45 46 47
#define USB_RET_NAK    (-2)
#define USB_RET_STALL  (-3)
#define USB_RET_BABBLE (-4)
P
pbrook 已提交
48
#define USB_RET_ASYNC  (-5)
B
bellard 已提交
49 50 51 52

#define USB_SPEED_LOW   0
#define USB_SPEED_FULL  1
#define USB_SPEED_HIGH  2
G
Gerd Hoffmann 已提交
53 54 55 56 57 58
#define USB_SPEED_SUPER 3

#define USB_SPEED_MASK_LOW   (1 << USB_SPEED_LOW)
#define USB_SPEED_MASK_FULL  (1 << USB_SPEED_FULL)
#define USB_SPEED_MASK_HIGH  (1 << USB_SPEED_HIGH)
#define USB_SPEED_MASK_SUPER (1 << USB_SPEED_SUPER)
B
bellard 已提交
59 60 61 62 63 64 65 66 67

#define USB_STATE_NOTATTACHED 0
#define USB_STATE_ATTACHED    1
//#define USB_STATE_POWERED     2
#define USB_STATE_DEFAULT     3
//#define USB_STATE_ADDRESS     4
//#define	USB_STATE_CONFIGURED  5
#define USB_STATE_SUSPENDED   6

B
bellard 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81
#define USB_CLASS_AUDIO			1
#define USB_CLASS_COMM			2
#define USB_CLASS_HID			3
#define USB_CLASS_PHYSICAL		5
#define USB_CLASS_STILL_IMAGE		6
#define USB_CLASS_PRINTER		7
#define USB_CLASS_MASS_STORAGE		8
#define USB_CLASS_HUB			9
#define USB_CLASS_CDC_DATA		0x0a
#define USB_CLASS_CSCID			0x0b
#define USB_CLASS_CONTENT_SEC		0x0d
#define USB_CLASS_APP_SPEC		0xfe
#define USB_CLASS_VENDOR_SPEC		0xff

B
bellard 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
#define USB_DIR_OUT			0
#define USB_DIR_IN			0x80

#define USB_TYPE_MASK			(0x03 << 5)
#define USB_TYPE_STANDARD		(0x00 << 5)
#define USB_TYPE_CLASS			(0x01 << 5)
#define USB_TYPE_VENDOR			(0x02 << 5)
#define USB_TYPE_RESERVED		(0x03 << 5)

#define USB_RECIP_MASK			0x1f
#define USB_RECIP_DEVICE		0x00
#define USB_RECIP_INTERFACE		0x01
#define USB_RECIP_ENDPOINT		0x02
#define USB_RECIP_OTHER			0x03

#define DeviceRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8)
#define DeviceOutRequest ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8)
B
bellard 已提交
99 100 101 102 103 104 105
#define InterfaceRequest \
        ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8)
#define InterfaceOutRequest \
        ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8)
#define EndpointRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8)
#define EndpointOutRequest \
        ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8)
106 107 108 109
#define ClassInterfaceRequest \
        ((USB_DIR_IN|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8)
#define ClassInterfaceOutRequest \
        ((USB_DIR_OUT|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8)
B
bellard 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130

#define USB_REQ_GET_STATUS		0x00
#define USB_REQ_CLEAR_FEATURE		0x01
#define USB_REQ_SET_FEATURE		0x03
#define USB_REQ_SET_ADDRESS		0x05
#define USB_REQ_GET_DESCRIPTOR		0x06
#define USB_REQ_SET_DESCRIPTOR		0x07
#define USB_REQ_GET_CONFIGURATION	0x08
#define USB_REQ_SET_CONFIGURATION	0x09
#define USB_REQ_GET_INTERFACE		0x0A
#define USB_REQ_SET_INTERFACE		0x0B
#define USB_REQ_SYNCH_FRAME		0x0C

#define USB_DEVICE_SELF_POWERED		0
#define USB_DEVICE_REMOTE_WAKEUP	1

#define USB_DT_DEVICE			0x01
#define USB_DT_CONFIG			0x02
#define USB_DT_STRING			0x03
#define USB_DT_INTERFACE		0x04
#define USB_DT_ENDPOINT			0x05
131 132
#define USB_DT_DEVICE_QUALIFIER         0x06
#define USB_DT_OTHER_SPEED_CONFIG       0x07
133
#define USB_DT_INTERFACE_ASSOC          0x0B
B
bellard 已提交
134

B
balrog 已提交
135 136 137 138 139
#define USB_ENDPOINT_XFER_CONTROL	0
#define USB_ENDPOINT_XFER_ISOC		1
#define USB_ENDPOINT_XFER_BULK		2
#define USB_ENDPOINT_XFER_INT		3

140
typedef struct USBBus USBBus;
141
typedef struct USBBusOps USBBusOps;
B
bellard 已提交
142 143
typedef struct USBPort USBPort;
typedef struct USBDevice USBDevice;
144
typedef struct USBDeviceInfo USBDeviceInfo;
P
pbrook 已提交
145
typedef struct USBPacket USBPacket;
B
bellard 已提交
146

147 148 149 150
typedef struct USBDesc USBDesc;
typedef struct USBDescID USBDescID;
typedef struct USBDescDevice USBDescDevice;
typedef struct USBDescConfig USBDescConfig;
151
typedef struct USBDescIfaceAssoc USBDescIfaceAssoc;
152 153 154
typedef struct USBDescIface USBDescIface;
typedef struct USBDescEndpoint USBDescEndpoint;
typedef struct USBDescOther USBDescOther;
155 156 157 158 159 160 161
typedef struct USBDescString USBDescString;

struct USBDescString {
    uint8_t index;
    char *str;
    QLIST_ENTRY(USBDescString) next;
};
162

B
bellard 已提交
163 164
/* definition of a USB device */
struct USBDevice {
165 166
    DeviceState qdev;
    USBDeviceInfo *info;
167
    USBPort *port;
G
Gerd Hoffmann 已提交
168
    char *port_path;
B
bellard 已提交
169
    void *opaque;
170

H
Hans de Goede 已提交
171
    /* Actual connected speed */
172
    int speed;
H
Hans de Goede 已提交
173 174
    /* Supported speeds, not in info because it may be variable (hostdevs) */
    int speedmask;
175
    uint8_t addr;
176
    char product_desc[32];
G
Gerd Hoffmann 已提交
177
    int auto_attach;
178
    int attached;
179

G
Gerd Hoffmann 已提交
180
    int32_t state;
181
    uint8_t setup_buf[8];
H
Hans de Goede 已提交
182
    uint8_t data_buf[4096];
G
Gerd Hoffmann 已提交
183 184 185 186
    int32_t remote_wakeup;
    int32_t setup_state;
    int32_t setup_len;
    int32_t setup_index;
187 188

    QLIST_HEAD(, USBDescString) strings;
189 190
    const USBDescDevice *device;
    const USBDescConfig *config;
191 192 193 194 195 196 197 198
};

struct USBDeviceInfo {
    DeviceInfo qdev;
    int (*init)(USBDevice *dev);

    /*
     * Process USB packet.
199 200
     * Called by the HC (Host Controller).
     *
201
     * Returns length of the transaction
202
     * or one of the USB_RET_XXX codes.
203
     */
P
pbrook 已提交
204
    int (*handle_packet)(USBDevice *dev, USBPacket *p);
205

206 207 208 209 210
    /*
     * Called when a packet is canceled.
     */
    void (*cancel_packet)(USBDevice *dev, USBPacket *p);

211
    /*
212 213
     * Called when device is destroyed.
     */
B
bellard 已提交
214 215
    void (*handle_destroy)(USBDevice *dev);

G
Gerd Hoffmann 已提交
216 217 218 219 220
    /*
     * Attach the device
     */
    void (*handle_attach)(USBDevice *dev);

221 222
    /*
     * Reset the device
223
     */
B
bellard 已提交
224
    void (*handle_reset)(USBDevice *dev);
225 226 227 228 229 230 231

    /*
     * Process control request.
     * Called from handle_packet().
     *
     * Returns length or one of the USB_RET_ codes.
     */
232
    int (*handle_control)(USBDevice *dev, USBPacket *p, int request, int value,
B
bellard 已提交
233
                          int index, int length, uint8_t *data);
234 235 236 237 238 239 240

    /*
     * Process data transfers (both BULK and ISOC).
     * Called from handle_packet().
     *
     * Returns length or one of the USB_RET_ codes.
     */
P
pbrook 已提交
241
    int (*handle_data)(USBDevice *dev, USBPacket *p);
G
Gerd Hoffmann 已提交
242

243
    const char *product_desc;
244
    const USBDesc *usb_desc;
245

G
Gerd Hoffmann 已提交
246 247 248
    /* handle legacy -usbdevice command line options */
    const char *usbdevice_name;
    USBDevice *(*usbdevice_init)(const char *params);
B
bellard 已提交
249 250
};

251
typedef struct USBPortOps {
252 253
    void (*attach)(USBPort *port);
    void (*detach)(USBPort *port);
254
    void (*wakeup)(USBDevice *dev);
255
    void (*complete)(USBDevice *dev, USBPacket *p);
256
} USBPortOps;
P
pbrook 已提交
257

B
bellard 已提交
258 259
/* USB port on which a device can be connected */
struct USBPort {
B
bellard 已提交
260
    USBDevice *dev;
G
Gerd Hoffmann 已提交
261
    int speedmask;
262
    char path[16];
263
    USBPortOps *ops;
B
bellard 已提交
264 265
    void *opaque;
    int index; /* internal port index, may be used with the opaque */
B
Blue Swirl 已提交
266
    QTAILQ_ENTRY(USBPort) next;
B
bellard 已提交
267 268
};

P
pbrook 已提交
269 270 271 272 273 274 275 276 277 278 279
typedef void USBCallback(USBPacket * packet, void *opaque);

/* Structure used to hold information about an active USB packet.  */
struct USBPacket {
    /* Data fields for use by the driver.  */
    int pid;
    uint8_t devaddr;
    uint8_t devep;
    uint8_t *data;
    int len;
    /* Internal use by the USB layer.  */
G
Gerd Hoffmann 已提交
280
    USBDevice *owner;
P
pbrook 已提交
281 282
};

G
Gerd Hoffmann 已提交
283
int usb_handle_packet(USBDevice *dev, USBPacket *p);
G
Gerd Hoffmann 已提交
284 285
void usb_packet_complete(USBDevice *dev, USBPacket *p);
void usb_cancel_packet(USBPacket * p);
G
Gerd Hoffmann 已提交
286

B
bellard 已提交
287
void usb_attach(USBPort *port, USBDevice *dev);
288
void usb_wakeup(USBDevice *dev);
P
pbrook 已提交
289
int usb_generic_handle_packet(USBDevice *s, USBPacket *p);
290
void usb_generic_async_ctrl_complete(USBDevice *s, USBPacket *p);
B
bellard 已提交
291
int set_usb_string(uint8_t *buf, const char *str);
P
pbrook 已提交
292 293
void usb_send_msg(USBDevice *dev, int msg);

B
bellard 已提交
294
/* usb-linux.c */
B
bellard 已提交
295
USBDevice *usb_host_device_open(const char *devname);
296
int usb_host_device_close(const char *devname);
A
aliguori 已提交
297
void usb_host_info(Monitor *mon);
B
bellard 已提交
298 299

/* usb-hid.c */
300
void usb_hid_datain_cb(USBDevice *dev, void *opaque, void (*datain)(void *));
P
pbrook 已提交
301

302 303 304
/* usb-bt.c */
USBDevice *usb_bt_init(HCIInfo *hci);

P
pbrook 已提交
305 306 307 308
/* usb ports of the VM */

#define VM_USB_HUB_SIZE 8

B
balrog 已提交
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
/* usb-musb.c */
enum musb_irq_source_e {
    musb_irq_suspend = 0,
    musb_irq_resume,
    musb_irq_rst_babble,
    musb_irq_sof,
    musb_irq_connect,
    musb_irq_disconnect,
    musb_irq_vbus_request,
    musb_irq_vbus_error,
    musb_irq_rx,
    musb_irq_tx,
    musb_set_vbus,
    musb_set_session,
    __musb_irq_max,
};

P
Paul Brook 已提交
326 327 328 329 330
typedef struct MUSBState MUSBState;
MUSBState *musb_init(qemu_irq *irqs);
uint32_t musb_core_intr_get(MUSBState *s);
void musb_core_intr_clear(MUSBState *s, uint32_t mask);
void musb_set_size(MUSBState *s, int epnum, int size, int is_tx);
331 332 333 334 335

/* usb-bus.c */

struct USBBus {
    BusState qbus;
336
    USBBusOps *ops;
337 338 339
    int busnr;
    int nfree;
    int nused;
B
Blue Swirl 已提交
340 341 342
    QTAILQ_HEAD(, USBPort) free;
    QTAILQ_HEAD(, USBPort) used;
    QTAILQ_ENTRY(USBBus) next;
343 344
};

345 346 347 348 349
struct USBBusOps {
    void (*device_destroy)(USBBus *bus, USBDevice *dev);
};

void usb_bus_new(USBBus *bus, USBBusOps *ops, DeviceState *host);
350 351 352
USBBus *usb_bus_find(int busnr);
void usb_qdev_register(USBDeviceInfo *info);
void usb_qdev_register_many(USBDeviceInfo *info);
353
USBDevice *usb_create(USBBus *bus, const char *name);
354
USBDevice *usb_create_simple(USBBus *bus, const char *name);
G
Gerd Hoffmann 已提交
355
USBDevice *usbdevice_create(const char *cmdline);
356
void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
G
Gerd Hoffmann 已提交
357
                       USBPortOps *ops, int speedmask);
358
void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr);
359
void usb_unregister_port(USBBus *bus, USBPort *port);
360
int usb_device_attach(USBDevice *dev);
361
int usb_device_detach(USBDevice *dev);
362 363 364 365 366 367
int usb_device_delete_addr(int busnr, int addr);

static inline USBBus *usb_bus_from_device(USBDevice *d)
{
    return DO_UPCAST(USBBus, qbus, d->qdev.parent_bus);
}