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
> sizeof(s
->data_buf
)) {
98 "usb_generic_handle_packet: ctrl buffer too small (%d > %zu)\n",
99 s
->setup_len
, sizeof(s
->data_buf
));
100 return USB_RET_STALL
;
102 if (s
->setup_len
== 0)
103 s
->setup_state
= SETUP_STATE_ACK
;
105 s
->setup_state
= SETUP_STATE_DATA
;
111 static int do_token_in(USBDevice
*s
, USBPacket
*p
)
113 int request
, value
, index
;
117 return s
->info
->handle_data(s
, p
);
119 request
= (s
->setup_buf
[0] << 8) | s
->setup_buf
[1];
120 value
= (s
->setup_buf
[3] << 8) | s
->setup_buf
[2];
121 index
= (s
->setup_buf
[5] << 8) | s
->setup_buf
[4];
123 switch(s
->setup_state
) {
124 case SETUP_STATE_ACK
:
125 if (!(s
->setup_buf
[0] & USB_DIR_IN
)) {
126 s
->setup_state
= SETUP_STATE_IDLE
;
127 ret
= s
->info
->handle_control(s
, request
, value
, index
,
128 s
->setup_len
, s
->data_buf
);
137 case SETUP_STATE_DATA
:
138 if (s
->setup_buf
[0] & USB_DIR_IN
) {
139 int len
= s
->setup_len
- s
->setup_index
;
142 memcpy(p
->data
, s
->data_buf
+ s
->setup_index
, len
);
143 s
->setup_index
+= len
;
144 if (s
->setup_index
>= s
->setup_len
)
145 s
->setup_state
= SETUP_STATE_ACK
;
149 s
->setup_state
= SETUP_STATE_IDLE
;
150 return USB_RET_STALL
;
153 return USB_RET_STALL
;
157 static int do_token_out(USBDevice
*s
, USBPacket
*p
)
160 return s
->info
->handle_data(s
, p
);
162 switch(s
->setup_state
) {
163 case SETUP_STATE_ACK
:
164 if (s
->setup_buf
[0] & USB_DIR_IN
) {
165 s
->setup_state
= SETUP_STATE_IDLE
;
168 /* ignore additional output */
172 case SETUP_STATE_DATA
:
173 if (!(s
->setup_buf
[0] & USB_DIR_IN
)) {
174 int len
= s
->setup_len
- s
->setup_index
;
177 memcpy(s
->data_buf
+ s
->setup_index
, p
->data
, len
);
178 s
->setup_index
+= len
;
179 if (s
->setup_index
>= s
->setup_len
)
180 s
->setup_state
= SETUP_STATE_ACK
;
184 s
->setup_state
= SETUP_STATE_IDLE
;
185 return USB_RET_STALL
;
188 return USB_RET_STALL
;
193 * Generic packet handler.
194 * Called by the HC (host controller).
196 * Returns length of the transaction or one of the USB_RET_XXX codes.
198 int usb_generic_handle_packet(USBDevice
*s
, USBPacket
*p
)
202 s
->state
= USB_STATE_ATTACHED
;
203 if (s
->info
->handle_attach
) {
204 s
->info
->handle_attach(s
);
209 s
->state
= USB_STATE_NOTATTACHED
;
213 s
->remote_wakeup
= 0;
215 s
->state
= USB_STATE_DEFAULT
;
216 if (s
->info
->handle_reset
) {
217 s
->info
->handle_reset(s
);
222 /* Rest of the PIDs must match our address */
223 if (s
->state
< USB_STATE_DEFAULT
|| p
->devaddr
!= s
->addr
)
224 return USB_RET_NODEV
;
227 case USB_TOKEN_SETUP
:
228 return do_token_setup(s
, p
);
231 return do_token_in(s
, p
);
234 return do_token_out(s
, p
);
237 return USB_RET_STALL
;
241 /* XXX: fix overflow */
242 int set_usb_string(uint8_t *buf
, const char *str
)
251 for(i
= 0; i
< len
; i
++) {
258 /* Send an internal message to a USB device. */
259 void usb_send_msg(USBDevice
*dev
, int msg
)
262 memset(&p
, 0, sizeof(p
));
264 dev
->info
->handle_packet(dev
, &p
);
266 /* This _must_ be synchronous */