4 * Copyright (c) 2005 Fabrice Bellard
6 * 2008 Generic packet handler rewrite by Max Krasnyansky
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu-common.h"
29 void usb_attach(USBPort *port, USBDevice *dev)
34 usb_attach(port, NULL);
38 port->ops->attach(port);
39 usb_send_msg(dev, USB_MSG_ATTACH);
43 port->ops->detach(port);
45 usb_send_msg(dev, USB_MSG_DETACH);
52 void usb_wakeup(USBDevice *dev)
54 if (dev->remote_wakeup && dev->port && dev->port->ops->wakeup) {
55 dev->port->ops->wakeup(dev);
59 /**********************/
61 /* generic USB device helpers (you are not forced to use them when
62 writing your USB device driver, but they help handling the
66 #define SETUP_STATE_IDLE 0
67 #define SETUP_STATE_DATA 1
68 #define SETUP_STATE_ACK 2
70 static int do_token_setup(USBDevice *s, USBPacket *p)
72 int request, value, index;
78 memcpy(s->setup_buf, p->data, 8);
79 s->setup_len = (s->setup_buf[7] << 8) | s->setup_buf[6];
82 request = (s->setup_buf[0] << 8) | s->setup_buf[1];
83 value = (s->setup_buf[3] << 8) | s->setup_buf[2];
84 index = (s->setup_buf[5] << 8) | s->setup_buf[4];
86 if (s->setup_buf[0] & USB_DIR_IN) {
87 ret = s->info->handle_control(s, request, value, index,
88 s->setup_len, s->data_buf);
92 if (ret < s->setup_len)
94 s->setup_state = SETUP_STATE_DATA;
96 if (s->setup_len == 0)
97 s->setup_state = SETUP_STATE_ACK;
99 s->setup_state = SETUP_STATE_DATA;
105 static int do_token_in(USBDevice *s, USBPacket *p)
107 int request, value, index;
111 return s->info->handle_data(s, p);
113 request = (s->setup_buf[0] << 8) | s->setup_buf[1];
114 value = (s->setup_buf[3] << 8) | s->setup_buf[2];
115 index = (s->setup_buf[5] << 8) | s->setup_buf[4];
117 switch(s->setup_state) {
118 case SETUP_STATE_ACK:
119 if (!(s->setup_buf[0] & USB_DIR_IN)) {
120 s->setup_state = SETUP_STATE_IDLE;
121 ret = s->info->handle_control(s, request, value, index,
122 s->setup_len, s->data_buf);
131 case SETUP_STATE_DATA:
132 if (s->setup_buf[0] & USB_DIR_IN) {
133 int len = s->setup_len - s->setup_index;
136 memcpy(p->data, s->data_buf + s->setup_index, len);
137 s->setup_index += len;
138 if (s->setup_index >= s->setup_len)
139 s->setup_state = SETUP_STATE_ACK;
143 s->setup_state = SETUP_STATE_IDLE;
144 return USB_RET_STALL;
147 return USB_RET_STALL;
151 static int do_token_out(USBDevice *s, USBPacket *p)
154 return s->info->handle_data(s, p);
156 switch(s->setup_state) {
157 case SETUP_STATE_ACK:
158 if (s->setup_buf[0] & USB_DIR_IN) {
159 s->setup_state = SETUP_STATE_IDLE;
162 /* ignore additional output */
166 case SETUP_STATE_DATA:
167 if (!(s->setup_buf[0] & USB_DIR_IN)) {
168 int len = s->setup_len - s->setup_index;
171 memcpy(s->data_buf + s->setup_index, p->data, len);
172 s->setup_index += len;
173 if (s->setup_index >= s->setup_len)
174 s->setup_state = SETUP_STATE_ACK;
178 s->setup_state = SETUP_STATE_IDLE;
179 return USB_RET_STALL;
182 return USB_RET_STALL;
187 * Generic packet handler.
188 * Called by the HC (host controller).
190 * Returns length of the transaction or one of the USB_RET_XXX codes.
192 int usb_generic_handle_packet(USBDevice *s, USBPacket *p)
196 s->state = USB_STATE_ATTACHED;
200 s->state = USB_STATE_NOTATTACHED;
204 s->remote_wakeup = 0;
206 s->state = USB_STATE_DEFAULT;
207 s->info->handle_reset(s);
211 /* Rest of the PIDs must match our address */
212 if (s->state < USB_STATE_DEFAULT || p->devaddr != s->addr)
213 return USB_RET_NODEV;
216 case USB_TOKEN_SETUP:
217 return do_token_setup(s, p);
220 return do_token_in(s, p);
223 return do_token_out(s, p);
226 return USB_RET_STALL;
230 /* XXX: fix overflow */
231 int set_usb_string(uint8_t *buf, const char *str)
240 for(i = 0; i < len; i++) {
247 /* Send an internal message to a USB device. */
248 void usb_send_msg(USBDevice *dev, int msg)
251 memset(&p, 0, sizeof(p));
253 dev->info->handle_packet(dev, &p);
255 /* This _must_ be synchronous */