]> Git Repo - qemu.git/blame - hw/usb/hcd-ehci.c
usb-mtp: print parent path in IN_IGNORED trace fn
[qemu.git] / hw / usb / hcd-ehci.c
CommitLineData
94527ead
GH
1/*
2 * QEMU USB EHCI Emulation
3 *
4 * Copyright(c) 2008 Emutex Ltd. (address@hidden)
522079dd
HG
5 * Copyright(c) 2011-2012 Red Hat, Inc.
6 *
7 * Red Hat Authors:
8 * Gerd Hoffmann <[email protected]>
9 * Hans de Goede <[email protected]>
94527ead
GH
10 *
11 * EHCI project was started by Mark Burkley, with contributions by
12 * Niels de Vos. David S. Ahern continued working on it. Kevin Wolf,
13 * Jan Kiszka and Vincent Palatin contributed bugfixes.
14 *
15 *
16 * This library is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU Lesser General Public
18 * License as published by the Free Software Foundation; either
19 * version 2 of the License, or(at your option) any later version.
20 *
21 * This library is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, see <http://www.gnu.org/licenses/>.
94527ead
GH
28 */
29
e532b2e0 30#include "qemu/osdep.h"
da34e65c 31#include "qapi/error.h"
381626a9 32#include "hw/usb/ehci-regs.h"
0bf96f94 33#include "hw/usb/hcd-ehci.h"
12269616 34#include "trace.h"
2ab4b135 35#include "qemu/error-report.h"
94527ead 36
94527ead 37#define FRAME_TIMER_FREQ 1000
13566fe3 38#define FRAME_TIMER_NS (NANOSECONDS_PER_SECOND / FRAME_TIMER_FREQ)
9359a58b 39#define UFRAME_TIMER_NS (FRAME_TIMER_NS / 8)
94527ead
GH
40
41#define NB_MAXINTRATE 8 // Max rate at which controller issues ints
94527ead 42#define BUFF_SIZE 5*4096 // Max bytes to transfer per transaction
94527ead 43#define MAX_QH 100 // Max allowable queue heads in a chain
9359a58b
HG
44#define MIN_UFR_PER_TICK 24 /* Min frames to process when catching up */
45#define PERIODIC_ACTIVE 512 /* Micro-frames */
94527ead
GH
46
47/* Internal periodic / asynchronous schedule state machine states
48 */
49typedef enum {
50 EST_INACTIVE = 1000,
51 EST_ACTIVE,
52 EST_EXECUTING,
53 EST_SLEEPING,
54 /* The following states are internal to the state machine function
55 */
56 EST_WAITLISTHEAD,
57 EST_FETCHENTRY,
58 EST_FETCHQH,
59 EST_FETCHITD,
2fe80192 60 EST_FETCHSITD,
94527ead
GH
61 EST_ADVANCEQUEUE,
62 EST_FETCHQTD,
63 EST_EXECUTE,
64 EST_WRITEBACK,
65 EST_HORIZONTALQH
66} EHCI_STATES;
67
68/* macros for accessing fields within next link pointer entry */
69#define NLPTR_GET(x) ((x) & 0xffffffe0)
70#define NLPTR_TYPE_GET(x) (((x) >> 1) & 3)
71#define NLPTR_TBIT(x) ((x) & 1) // 1=invalid, 0=valid
72
73/* link pointer types */
74#define NLPTR_TYPE_ITD 0 // isoc xfer descriptor
75#define NLPTR_TYPE_QH 1 // queue head
76#define NLPTR_TYPE_STITD 2 // split xaction, isoc xfer descriptor
77#define NLPTR_TYPE_FSTN 3 // frame span traversal node
78
94527ead 79#define SET_LAST_RUN_CLOCK(s) \
bc72ad67 80 (s)->last_run_ns = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
94527ead
GH
81
82/* nifty macros from Arnon's EHCI version */
83#define get_field(data, field) \
84 (((data) & field##_MASK) >> field##_SH)
85
86#define set_field(data, newval, field) do { \
87 uint32_t val = *data; \
88 val &= ~ field##_MASK; \
89 val |= ((newval) << field##_SH) & field##_MASK; \
90 *data = val; \
91 } while(0)
92
26d53979 93static const char *ehci_state_names[] = {
aac882e7
GH
94 [EST_INACTIVE] = "INACTIVE",
95 [EST_ACTIVE] = "ACTIVE",
96 [EST_EXECUTING] = "EXECUTING",
97 [EST_SLEEPING] = "SLEEPING",
98 [EST_WAITLISTHEAD] = "WAITLISTHEAD",
99 [EST_FETCHENTRY] = "FETCH ENTRY",
100 [EST_FETCHQH] = "FETCH QH",
101 [EST_FETCHITD] = "FETCH ITD",
102 [EST_ADVANCEQUEUE] = "ADVANCEQUEUE",
103 [EST_FETCHQTD] = "FETCH QTD",
104 [EST_EXECUTE] = "EXECUTE",
105 [EST_WRITEBACK] = "WRITEBACK",
106 [EST_HORIZONTALQH] = "HORIZONTALQH",
26d53979
GH
107};
108
109static const char *ehci_mmio_names[] = {
aac882e7
GH
110 [USBCMD] = "USBCMD",
111 [USBSTS] = "USBSTS",
112 [USBINTR] = "USBINTR",
113 [FRINDEX] = "FRINDEX",
114 [PERIODICLISTBASE] = "P-LIST BASE",
115 [ASYNCLISTADDR] = "A-LIST ADDR",
aac882e7 116 [CONFIGFLAG] = "CONFIGFLAG",
26d53979 117};
94527ead 118
4b63a0df
HG
119static int ehci_state_executing(EHCIQueue *q);
120static int ehci_state_writeback(EHCIQueue *q);
ff80ce59 121static int ehci_state_advqueue(EHCIQueue *q);
b4ea8664 122static int ehci_fill_queue(EHCIPacket *p);
2b3de6ad 123static void ehci_free_packet(EHCIPacket *p);
4b63a0df 124
26d53979 125static const char *nr2str(const char **n, size_t len, uint32_t nr)
94527ead 126{
26d53979
GH
127 if (nr < len && n[nr] != NULL) {
128 return n[nr];
94527ead 129 } else {
26d53979 130 return "unknown";
94527ead
GH
131 }
132}
94527ead 133
26d53979
GH
134static const char *state2str(uint32_t state)
135{
136 return nr2str(ehci_state_names, ARRAY_SIZE(ehci_state_names), state);
137}
138
a8170e5e 139static const char *addr2str(hwaddr addr)
26d53979 140{
27a11324 141 return nr2str(ehci_mmio_names, ARRAY_SIZE(ehci_mmio_names), addr);
26d53979
GH
142}
143
439a97cc
GH
144static void ehci_trace_usbsts(uint32_t mask, int state)
145{
146 /* interrupts */
147 if (mask & USBSTS_INT) {
148 trace_usb_ehci_usbsts("INT", state);
149 }
150 if (mask & USBSTS_ERRINT) {
151 trace_usb_ehci_usbsts("ERRINT", state);
152 }
153 if (mask & USBSTS_PCD) {
154 trace_usb_ehci_usbsts("PCD", state);
155 }
156 if (mask & USBSTS_FLR) {
157 trace_usb_ehci_usbsts("FLR", state);
158 }
159 if (mask & USBSTS_HSE) {
160 trace_usb_ehci_usbsts("HSE", state);
161 }
162 if (mask & USBSTS_IAA) {
163 trace_usb_ehci_usbsts("IAA", state);
164 }
165
166 /* status */
167 if (mask & USBSTS_HALT) {
168 trace_usb_ehci_usbsts("HALT", state);
169 }
170 if (mask & USBSTS_REC) {
171 trace_usb_ehci_usbsts("REC", state);
172 }
173 if (mask & USBSTS_PSS) {
174 trace_usb_ehci_usbsts("PSS", state);
175 }
176 if (mask & USBSTS_ASS) {
177 trace_usb_ehci_usbsts("ASS", state);
178 }
179}
180
181static inline void ehci_set_usbsts(EHCIState *s, int mask)
182{
183 if ((s->usbsts & mask) == mask) {
184 return;
185 }
186 ehci_trace_usbsts(mask, 1);
187 s->usbsts |= mask;
188}
189
190static inline void ehci_clear_usbsts(EHCIState *s, int mask)
191{
192 if ((s->usbsts & mask) == 0) {
193 return;
194 }
195 ehci_trace_usbsts(mask, 0);
196 s->usbsts &= ~mask;
197}
94527ead 198
7efc17af
GH
199/* update irq line */
200static inline void ehci_update_irq(EHCIState *s)
94527ead
GH
201{
202 int level = 0;
203
94527ead
GH
204 if ((s->usbsts & USBINTR_MASK) & s->usbintr) {
205 level = 1;
206 }
207
7efc17af 208 trace_usb_ehci_irq(level, s->frindex, s->usbsts, s->usbintr);
94527ead
GH
209 qemu_set_irq(s->irq, level);
210}
211
7efc17af
GH
212/* flag interrupt condition */
213static inline void ehci_raise_irq(EHCIState *s, int intr)
94527ead 214{
6d3b6d3d
GH
215 if (intr & (USBSTS_PCD | USBSTS_FLR | USBSTS_HSE)) {
216 s->usbsts |= intr;
217 ehci_update_irq(s);
218 } else {
219 s->usbsts_pending |= intr;
220 }
94527ead
GH
221}
222
7efc17af
GH
223/*
224 * Commit pending interrupts (added via ehci_raise_irq),
225 * at the rate allowed by "Interrupt Threshold Control".
226 */
227static inline void ehci_commit_irq(EHCIState *s)
94527ead 228{
7efc17af
GH
229 uint32_t itc;
230
94527ead
GH
231 if (!s->usbsts_pending) {
232 return;
233 }
7efc17af
GH
234 if (s->usbsts_frindex > s->frindex) {
235 return;
236 }
237
238 itc = (s->usbcmd >> 16) & 0xff;
239 s->usbsts |= s->usbsts_pending;
94527ead 240 s->usbsts_pending = 0;
7efc17af
GH
241 s->usbsts_frindex = s->frindex + itc;
242 ehci_update_irq(s);
94527ead
GH
243}
244
daf25307
GH
245static void ehci_update_halt(EHCIState *s)
246{
247 if (s->usbcmd & USBCMD_RUNSTOP) {
248 ehci_clear_usbsts(s, USBSTS_HALT);
249 } else {
250 if (s->astate == EST_INACTIVE && s->pstate == EST_INACTIVE) {
251 ehci_set_usbsts(s, USBSTS_HALT);
252 }
253 }
254}
255
26d53979
GH
256static void ehci_set_state(EHCIState *s, int async, int state)
257{
258 if (async) {
259 trace_usb_ehci_state("async", state2str(state));
260 s->astate = state;
b53f685d
GH
261 if (s->astate == EST_INACTIVE) {
262 ehci_clear_usbsts(s, USBSTS_ASS);
daf25307 263 ehci_update_halt(s);
b53f685d
GH
264 } else {
265 ehci_set_usbsts(s, USBSTS_ASS);
266 }
26d53979
GH
267 } else {
268 trace_usb_ehci_state("periodic", state2str(state));
269 s->pstate = state;
b53f685d
GH
270 if (s->pstate == EST_INACTIVE) {
271 ehci_clear_usbsts(s, USBSTS_PSS);
daf25307 272 ehci_update_halt(s);
b53f685d
GH
273 } else {
274 ehci_set_usbsts(s, USBSTS_PSS);
275 }
26d53979
GH
276 }
277}
278
279static int ehci_get_state(EHCIState *s, int async)
280{
281 return async ? s->astate : s->pstate;
282}
283
0122f472
GH
284static void ehci_set_fetch_addr(EHCIState *s, int async, uint32_t addr)
285{
286 if (async) {
287 s->a_fetch_addr = addr;
288 } else {
289 s->p_fetch_addr = addr;
290 }
291}
292
293static int ehci_get_fetch_addr(EHCIState *s, int async)
294{
295 return async ? s->a_fetch_addr : s->p_fetch_addr;
296}
297
a8170e5e 298static void ehci_trace_qh(EHCIQueue *q, hwaddr addr, EHCIqh *qh)
26d53979 299{
025b168c
GH
300 /* need three here due to argument count limits */
301 trace_usb_ehci_qh_ptrs(q, addr, qh->next,
302 qh->current_qtd, qh->next_qtd, qh->altnext_qtd);
303 trace_usb_ehci_qh_fields(addr,
304 get_field(qh->epchar, QH_EPCHAR_RL),
305 get_field(qh->epchar, QH_EPCHAR_MPLEN),
306 get_field(qh->epchar, QH_EPCHAR_EPS),
307 get_field(qh->epchar, QH_EPCHAR_EP),
308 get_field(qh->epchar, QH_EPCHAR_DEVADDR));
309 trace_usb_ehci_qh_bits(addr,
310 (bool)(qh->epchar & QH_EPCHAR_C),
311 (bool)(qh->epchar & QH_EPCHAR_H),
312 (bool)(qh->epchar & QH_EPCHAR_DTC),
313 (bool)(qh->epchar & QH_EPCHAR_I));
26d53979
GH
314}
315
a8170e5e 316static void ehci_trace_qtd(EHCIQueue *q, hwaddr addr, EHCIqtd *qtd)
26d53979 317{
025b168c
GH
318 /* need three here due to argument count limits */
319 trace_usb_ehci_qtd_ptrs(q, addr, qtd->next, qtd->altnext);
320 trace_usb_ehci_qtd_fields(addr,
321 get_field(qtd->token, QTD_TOKEN_TBYTES),
322 get_field(qtd->token, QTD_TOKEN_CPAGE),
323 get_field(qtd->token, QTD_TOKEN_CERR),
324 get_field(qtd->token, QTD_TOKEN_PID));
325 trace_usb_ehci_qtd_bits(addr,
326 (bool)(qtd->token & QTD_TOKEN_IOC),
327 (bool)(qtd->token & QTD_TOKEN_ACTIVE),
328 (bool)(qtd->token & QTD_TOKEN_HALT),
329 (bool)(qtd->token & QTD_TOKEN_BABBLE),
330 (bool)(qtd->token & QTD_TOKEN_XACTERR));
26d53979
GH
331}
332
a8170e5e 333static void ehci_trace_itd(EHCIState *s, hwaddr addr, EHCIitd *itd)
26d53979 334{
e654887f
GH
335 trace_usb_ehci_itd(addr, itd->next,
336 get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT),
337 get_field(itd->bufptr[2], ITD_BUFPTR_MULT),
338 get_field(itd->bufptr[0], ITD_BUFPTR_EP),
339 get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR));
26d53979
GH
340}
341
a8170e5e 342static void ehci_trace_sitd(EHCIState *s, hwaddr addr,
2fe80192
GH
343 EHCIsitd *sitd)
344{
345 trace_usb_ehci_sitd(addr, sitd->next,
346 (bool)(sitd->results & SITD_RESULTS_ACTIVE));
347}
348
5c514681
GH
349static void ehci_trace_guest_bug(EHCIState *s, const char *message)
350{
351 trace_usb_ehci_guest_bug(message);
2ab4b135 352 warn_report("%s", message);
5c514681
GH
353}
354
ec807d12
GH
355static inline bool ehci_enabled(EHCIState *s)
356{
357 return s->usbcmd & USBCMD_RUNSTOP;
358}
359
360static inline bool ehci_async_enabled(EHCIState *s)
361{
362 return ehci_enabled(s) && (s->usbcmd & USBCMD_ASE);
363}
364
365static inline bool ehci_periodic_enabled(EHCIState *s)
366{
367 return ehci_enabled(s) && (s->usbcmd & USBCMD_PSE);
368}
369
190d8492
HG
370/* Get an array of dwords from main memory */
371static inline int get_dwords(EHCIState *ehci, uint32_t addr,
372 uint32_t *buf, int num)
373{
374 int i;
375
df32fd1c 376 if (!ehci->as) {
190d8492
HG
377 ehci_raise_irq(ehci, USBSTS_HSE);
378 ehci->usbcmd &= ~USBCMD_RUNSTOP;
379 trace_usb_ehci_dma_error();
380 return -1;
381 }
382
383 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
df32fd1c 384 dma_memory_read(ehci->as, addr, buf, sizeof(*buf));
190d8492
HG
385 *buf = le32_to_cpu(*buf);
386 }
387
388 return num;
389}
390
391/* Put an array of dwords in to main memory */
392static inline int put_dwords(EHCIState *ehci, uint32_t addr,
393 uint32_t *buf, int num)
394{
395 int i;
396
df32fd1c 397 if (!ehci->as) {
190d8492
HG
398 ehci_raise_irq(ehci, USBSTS_HSE);
399 ehci->usbcmd &= ~USBCMD_RUNSTOP;
400 trace_usb_ehci_dma_error();
401 return -1;
402 }
403
404 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
405 uint32_t tmp = cpu_to_le32(*buf);
df32fd1c 406 dma_memory_write(ehci->as, addr, &tmp, sizeof(tmp));
190d8492
HG
407 }
408
409 return num;
410}
411
51e0c5d0
HG
412static int ehci_get_pid(EHCIqtd *qtd)
413{
414 switch (get_field(qtd->token, QTD_TOKEN_PID)) {
415 case 0:
416 return USB_TOKEN_OUT;
417 case 1:
418 return USB_TOKEN_IN;
419 case 2:
420 return USB_TOKEN_SETUP;
421 default:
422 fprintf(stderr, "bad token\n");
423 return 0;
424 }
425}
426
c6432634
HG
427static bool ehci_verify_qh(EHCIQueue *q, EHCIqh *qh)
428{
429 uint32_t devaddr = get_field(qh->epchar, QH_EPCHAR_DEVADDR);
430 uint32_t endp = get_field(qh->epchar, QH_EPCHAR_EP);
431 if ((devaddr != get_field(q->qh.epchar, QH_EPCHAR_DEVADDR)) ||
432 (endp != get_field(q->qh.epchar, QH_EPCHAR_EP)) ||
433 (qh->current_qtd != q->qh.current_qtd) ||
434 (q->async && qh->next_qtd != q->qh.next_qtd) ||
435 (memcmp(&qh->altnext_qtd, &q->qh.altnext_qtd,
436 7 * sizeof(uint32_t)) != 0) ||
437 (q->dev != NULL && q->dev->addr != devaddr)) {
438 return false;
439 } else {
440 return true;
441 }
442}
443
444static bool ehci_verify_qtd(EHCIPacket *p, EHCIqtd *qtd)
445{
446 if (p->qtdaddr != p->queue->qtdaddr ||
447 (p->queue->async && !NLPTR_TBIT(p->qtd.next) &&
448 (p->qtd.next != qtd->next)) ||
449 (!NLPTR_TBIT(p->qtd.altnext) && (p->qtd.altnext != qtd->altnext)) ||
d066c57b 450 p->qtd.token != qtd->token ||
c6432634
HG
451 p->qtd.bufptr[0] != qtd->bufptr[0]) {
452 return false;
453 } else {
454 return true;
455 }
456}
457
bbbc39cc
HG
458static bool ehci_verify_pid(EHCIQueue *q, EHCIqtd *qtd)
459{
460 int ep = get_field(q->qh.epchar, QH_EPCHAR_EP);
461 int pid = ehci_get_pid(qtd);
462
463 /* Note the pid changing is normal for ep 0 (the control ep) */
464 if (q->last_pid && ep != 0 && pid != q->last_pid) {
465 return false;
466 } else {
467 return true;
468 }
469}
470
f881c8d3
HG
471/* Finish executing and writeback a packet outside of the regular
472 fetchqh -> fetchqtd -> execute -> writeback cycle */
473static void ehci_writeback_async_complete_packet(EHCIPacket *p)
474{
475 EHCIQueue *q = p->queue;
2b3de6ad
HG
476 EHCIqtd qtd;
477 EHCIqh qh;
f881c8d3
HG
478 int state;
479
2b3de6ad
HG
480 /* Verify the qh + qtd, like we do when going through fetchqh & fetchqtd */
481 get_dwords(q->ehci, NLPTR_GET(q->qhaddr),
482 (uint32_t *) &qh, sizeof(EHCIqh) >> 2);
483 get_dwords(q->ehci, NLPTR_GET(q->qtdaddr),
484 (uint32_t *) &qtd, sizeof(EHCIqtd) >> 2);
485 if (!ehci_verify_qh(q, &qh) || !ehci_verify_qtd(p, &qtd)) {
486 p->async = EHCI_ASYNC_INITIALIZED;
487 ehci_free_packet(p);
488 return;
489 }
490
f881c8d3
HG
491 state = ehci_get_state(q->ehci, q->async);
492 ehci_state_executing(q);
493 ehci_state_writeback(q); /* Frees the packet! */
494 if (!(q->qh.token & QTD_TOKEN_HALT)) {
495 ehci_state_advqueue(q);
496 }
497 ehci_set_state(q->ehci, q->async, state);
498}
499
eb36a88e
GH
500/* packet management */
501
502static EHCIPacket *ehci_alloc_packet(EHCIQueue *q)
503{
504 EHCIPacket *p;
505
eb36a88e
GH
506 p = g_new0(EHCIPacket, 1);
507 p->queue = q;
508 usb_packet_init(&p->packet);
509 QTAILQ_INSERT_TAIL(&q->packets, p, next);
510 trace_usb_ehci_packet_action(p->queue, p, "alloc");
511 return p;
512}
513
514static void ehci_free_packet(EHCIPacket *p)
515{
e449f26b
HG
516 if (p->async == EHCI_ASYNC_FINISHED &&
517 !(p->queue->qh.token & QTD_TOKEN_HALT)) {
f881c8d3 518 ehci_writeback_async_complete_packet(p);
4b63a0df
HG
519 return;
520 }
616789cd
GH
521 trace_usb_ehci_packet_action(p->queue, p, "free");
522 if (p->async == EHCI_ASYNC_INFLIGHT) {
523 usb_cancel_packet(&p->packet);
e449f26b
HG
524 }
525 if (p->async == EHCI_ASYNC_FINISHED &&
526 p->packet.status == USB_RET_SUCCESS) {
527 fprintf(stderr,
528 "EHCI: Dropping completed packet from halted %s ep %02X\n",
529 (p->pid == USB_TOKEN_IN) ? "in" : "out",
530 get_field(p->queue->qh.epchar, QH_EPCHAR_EP));
531 }
532 if (p->async != EHCI_ASYNC_NONE) {
616789cd
GH
533 usb_packet_unmap(&p->packet, &p->sgl);
534 qemu_sglist_destroy(&p->sgl);
535 }
eb36a88e
GH
536 QTAILQ_REMOVE(&p->queue->packets, p, next);
537 usb_packet_cleanup(&p->packet);
538 g_free(p);
539}
540
8ac6d699
GH
541/* queue management */
542
8f6d5e26 543static EHCIQueue *ehci_alloc_queue(EHCIState *ehci, uint32_t addr, int async)
8ac6d699 544{
df5d5c5c 545 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
8ac6d699
GH
546 EHCIQueue *q;
547
7267c094 548 q = g_malloc0(sizeof(*q));
8ac6d699 549 q->ehci = ehci;
8f6d5e26 550 q->qhaddr = addr;
ae0138a8 551 q->async = async;
eb36a88e 552 QTAILQ_INIT(&q->packets);
df5d5c5c 553 QTAILQ_INSERT_HEAD(head, q, next);
8ac6d699
GH
554 trace_usb_ehci_queue_action(q, "alloc");
555 return q;
556}
557
f79738b0
HG
558static void ehci_queue_stopped(EHCIQueue *q)
559{
560 int endp = get_field(q->qh.epchar, QH_EPCHAR_EP);
561
562 if (!q->last_pid || !q->dev) {
563 return;
564 }
565
566 usb_device_ep_stopped(q->dev, usb_ep_get(q->dev, q->last_pid, endp));
567}
568
5c514681 569static int ehci_cancel_queue(EHCIQueue *q)
c7cdca3b
GH
570{
571 EHCIPacket *p;
5c514681 572 int packets = 0;
c7cdca3b
GH
573
574 p = QTAILQ_FIRST(&q->packets);
575 if (p == NULL) {
f79738b0 576 goto leave;
c7cdca3b
GH
577 }
578
579 trace_usb_ehci_queue_action(q, "cancel");
580 do {
581 ehci_free_packet(p);
5c514681 582 packets++;
c7cdca3b 583 } while ((p = QTAILQ_FIRST(&q->packets)) != NULL);
f79738b0
HG
584
585leave:
586 ehci_queue_stopped(q);
5c514681 587 return packets;
c7cdca3b
GH
588}
589
5c514681 590static int ehci_reset_queue(EHCIQueue *q)
dafe31fc 591{
5c514681
GH
592 int packets;
593
dafe31fc 594 trace_usb_ehci_queue_action(q, "reset");
5c514681 595 packets = ehci_cancel_queue(q);
dafe31fc
HG
596 q->dev = NULL;
597 q->qtdaddr = 0;
bbbc39cc 598 q->last_pid = 0;
5c514681 599 return packets;
dafe31fc
HG
600}
601
3a8ca08e 602static void ehci_free_queue(EHCIQueue *q, const char *warn)
8ac6d699 603{
ae0138a8 604 EHCIQueueHead *head = q->async ? &q->ehci->aqueues : &q->ehci->pqueues;
3a8ca08e 605 int cancelled;
eb36a88e 606
8ac6d699 607 trace_usb_ehci_queue_action(q, "free");
3a8ca08e
HG
608 cancelled = ehci_cancel_queue(q);
609 if (warn && cancelled > 0) {
610 ehci_trace_guest_bug(q->ehci, warn);
611 }
df5d5c5c 612 QTAILQ_REMOVE(head, q, next);
7267c094 613 g_free(q);
8ac6d699
GH
614}
615
df5d5c5c
HG
616static EHCIQueue *ehci_find_queue_by_qh(EHCIState *ehci, uint32_t addr,
617 int async)
8ac6d699 618{
df5d5c5c 619 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
8ac6d699
GH
620 EHCIQueue *q;
621
df5d5c5c 622 QTAILQ_FOREACH(q, head, next) {
8ac6d699
GH
623 if (addr == q->qhaddr) {
624 return q;
625 }
626 }
627 return NULL;
628}
629
8f5457eb 630static void ehci_queues_rip_unused(EHCIState *ehci, int async)
8ac6d699 631{
df5d5c5c 632 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
8f5457eb 633 const char *warn = async ? "guest unlinked busy QH" : NULL;
3a215326 634 uint64_t maxage = FRAME_TIMER_NS * ehci->maxframes * 4;
8ac6d699
GH
635 EHCIQueue *q, *tmp;
636
df5d5c5c 637 QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
8ac6d699
GH
638 if (q->seen) {
639 q->seen = 0;
adddecb1 640 q->ts = ehci->last_run_ns;
8ac6d699
GH
641 continue;
642 }
8f5457eb 643 if (ehci->last_run_ns < q->ts + maxage) {
8ac6d699
GH
644 continue;
645 }
3a8ca08e 646 ehci_free_queue(q, warn);
8ac6d699
GH
647 }
648}
649
8f5457eb
HG
650static void ehci_queues_rip_unseen(EHCIState *ehci, int async)
651{
652 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
653 EHCIQueue *q, *tmp;
654
655 QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
656 if (!q->seen) {
657 ehci_free_queue(q, NULL);
658 }
659 }
660}
661
df5d5c5c 662static void ehci_queues_rip_device(EHCIState *ehci, USBDevice *dev, int async)
07771f6f 663{
df5d5c5c 664 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
07771f6f
GH
665 EHCIQueue *q, *tmp;
666
df5d5c5c 667 QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
e59928b3 668 if (q->dev != dev) {
07771f6f
GH
669 continue;
670 }
3a8ca08e 671 ehci_free_queue(q, NULL);
07771f6f
GH
672 }
673}
674
df5d5c5c 675static void ehci_queues_rip_all(EHCIState *ehci, int async)
8ac6d699 676{
df5d5c5c 677 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
3a8ca08e 678 const char *warn = async ? "guest stopped busy async schedule" : NULL;
8ac6d699
GH
679 EHCIQueue *q, *tmp;
680
df5d5c5c 681 QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
3a8ca08e 682 ehci_free_queue(q, warn);
8ac6d699
GH
683 }
684}
685
94527ead
GH
686/* Attach or detach a device on root hub */
687
688static void ehci_attach(USBPort *port)
689{
690 EHCIState *s = port->opaque;
691 uint32_t *portsc = &s->portsc[port->index];
30e9d412 692 const char *owner = (*portsc & PORTSC_POWNER) ? "comp" : "ehci";
94527ead 693
30e9d412 694 trace_usb_ehci_port_attach(port->index, owner, port->dev->product_desc);
94527ead 695
a0a3167a
HG
696 if (*portsc & PORTSC_POWNER) {
697 USBPort *companion = s->companion_ports[port->index];
698 companion->dev = port->dev;
699 companion->ops->attach(companion);
700 return;
701 }
702
94527ead
GH
703 *portsc |= PORTSC_CONNECT;
704 *portsc |= PORTSC_CSC;
705
7efc17af 706 ehci_raise_irq(s, USBSTS_PCD);
94527ead
GH
707}
708
709static void ehci_detach(USBPort *port)
710{
711 EHCIState *s = port->opaque;
712 uint32_t *portsc = &s->portsc[port->index];
30e9d412 713 const char *owner = (*portsc & PORTSC_POWNER) ? "comp" : "ehci";
94527ead 714
30e9d412 715 trace_usb_ehci_port_detach(port->index, owner);
94527ead 716
a0a3167a
HG
717 if (*portsc & PORTSC_POWNER) {
718 USBPort *companion = s->companion_ports[port->index];
719 companion->ops->detach(companion);
720 companion->dev = NULL;
f76e1d81
HG
721 /*
722 * EHCI spec 4.2.2: "When a disconnect occurs... On the event,
723 * the port ownership is returned immediately to the EHCI controller."
724 */
725 *portsc &= ~PORTSC_POWNER;
a0a3167a
HG
726 return;
727 }
728
df5d5c5c
HG
729 ehci_queues_rip_device(s, port->dev, 0);
730 ehci_queues_rip_device(s, port->dev, 1);
4706ab6c 731
cbf82fa0 732 *portsc &= ~(PORTSC_CONNECT|PORTSC_PED|PORTSC_SUSPEND);
94527ead
GH
733 *portsc |= PORTSC_CSC;
734
7efc17af 735 ehci_raise_irq(s, USBSTS_PCD);
94527ead
GH
736}
737
4706ab6c
HG
738static void ehci_child_detach(USBPort *port, USBDevice *child)
739{
740 EHCIState *s = port->opaque;
a0a3167a
HG
741 uint32_t portsc = s->portsc[port->index];
742
743 if (portsc & PORTSC_POWNER) {
744 USBPort *companion = s->companion_ports[port->index];
745 companion->ops->child_detach(companion, child);
a0a3167a
HG
746 return;
747 }
4706ab6c 748
df5d5c5c
HG
749 ehci_queues_rip_device(s, child, 0);
750 ehci_queues_rip_device(s, child, 1);
4706ab6c
HG
751}
752
a0a3167a
HG
753static void ehci_wakeup(USBPort *port)
754{
755 EHCIState *s = port->opaque;
e489df40 756 uint32_t *portsc = &s->portsc[port->index];
a0a3167a 757
e489df40 758 if (*portsc & PORTSC_POWNER) {
a0a3167a
HG
759 USBPort *companion = s->companion_ports[port->index];
760 if (companion->ops->wakeup) {
761 companion->ops->wakeup(companion);
762 }
37952117 763 return;
a0a3167a 764 }
37952117 765
e489df40
GH
766 if (*portsc & PORTSC_SUSPEND) {
767 trace_usb_ehci_port_wakeup(port->index);
768 *portsc |= PORTSC_FPRES;
769 ehci_raise_irq(s, USBSTS_PCD);
770 }
771
37952117 772 qemu_bh_schedule(s->async_bh);
a0a3167a
HG
773}
774
f4bbaaf5
MA
775static void ehci_register_companion(USBBus *bus, USBPort *ports[],
776 uint32_t portcount, uint32_t firstport,
777 Error **errp)
a0a3167a
HG
778{
779 EHCIState *s = container_of(bus, EHCIState, bus);
780 uint32_t i;
781
782 if (firstport + portcount > NB_PORTS) {
2e269f3d
MA
783 error_setg(errp, "firstport must be between 0 and %u",
784 NB_PORTS - portcount);
f4bbaaf5 785 return;
a0a3167a
HG
786 }
787
788 for (i = 0; i < portcount; i++) {
789 if (s->companion_ports[firstport + i]) {
2e269f3d
MA
790 error_setg(errp, "firstport %u asks for ports %u-%u,"
791 " but port %u has a companion assigned already",
792 firstport, firstport, firstport + portcount - 1,
793 firstport + i);
f4bbaaf5 794 return;
a0a3167a
HG
795 }
796 }
797
798 for (i = 0; i < portcount; i++) {
799 s->companion_ports[firstport + i] = ports[i];
800 s->ports[firstport + i].speedmask |=
801 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL;
802 /* Ensure devs attached before the initial reset go to the companion */
803 s->portsc[firstport + i] = PORTSC_POWNER;
804 }
805
806 s->companion_count++;
3e4f910c 807 s->caps[0x05] = (s->companion_count << 4) | portcount;
a0a3167a
HG
808}
809
8550a02d
GH
810static void ehci_wakeup_endpoint(USBBus *bus, USBEndpoint *ep,
811 unsigned int stream)
80826240
HG
812{
813 EHCIState *s = container_of(bus, EHCIState, bus);
814 uint32_t portsc = s->portsc[ep->dev->port->index];
815
816 if (portsc & PORTSC_POWNER) {
817 return;
818 }
819
820 s->periodic_sched_active = PERIODIC_ACTIVE;
821 qemu_bh_schedule(s->async_bh);
822}
823
828143c6
GH
824static USBDevice *ehci_find_device(EHCIState *ehci, uint8_t addr)
825{
826 USBDevice *dev;
827 USBPort *port;
828 int i;
829
830 for (i = 0; i < NB_PORTS; i++) {
831 port = &ehci->ports[i];
832 if (!(ehci->portsc[i] & PORTSC_PED)) {
833 DPRINTF("Port %d not enabled\n", i);
834 continue;
835 }
836 dev = usb_find_device(port, addr);
837 if (dev != NULL) {
838 return dev;
839 }
840 }
841 return NULL;
842}
843
94527ead 844/* 4.1 host controller initialization */
4e289b1b 845void ehci_reset(void *opaque)
94527ead
GH
846{
847 EHCIState *s = opaque;
94527ead 848 int i;
a0a3167a 849 USBDevice *devs[NB_PORTS];
94527ead 850
439a97cc 851 trace_usb_ehci_reset();
94527ead 852
a0a3167a
HG
853 /*
854 * Do the detach before touching portsc, so that it correctly gets send to
855 * us or to our companion based on PORTSC_POWNER before the reset.
856 */
857 for(i = 0; i < NB_PORTS; i++) {
858 devs[i] = s->ports[i].dev;
891fb2cd
GH
859 if (devs[i] && devs[i]->attached) {
860 usb_detach(&s->ports[i]);
a0a3167a
HG
861 }
862 }
863
3e4f910c
GH
864 memset(&s->opreg, 0x00, sizeof(s->opreg));
865 memset(&s->portsc, 0x00, sizeof(s->portsc));
94527ead
GH
866
867 s->usbcmd = NB_MAXINTRATE << USBCMD_ITC_SH;
868 s->usbsts = USBSTS_HALT;
7efc17af
GH
869 s->usbsts_pending = 0;
870 s->usbsts_frindex = 0;
5a866074 871 ehci_update_irq(s);
94527ead
GH
872
873 s->astate = EST_INACTIVE;
874 s->pstate = EST_INACTIVE;
94527ead
GH
875
876 for(i = 0; i < NB_PORTS; i++) {
a0a3167a
HG
877 if (s->companion_ports[i]) {
878 s->portsc[i] = PORTSC_POWNER | PORTSC_PPOWER;
879 } else {
880 s->portsc[i] = PORTSC_PPOWER;
881 }
891fb2cd
GH
882 if (devs[i] && devs[i]->attached) {
883 usb_attach(&s->ports[i]);
d28f4e2d 884 usb_device_reset(devs[i]);
94527ead
GH
885 }
886 }
df5d5c5c
HG
887 ehci_queues_rip_all(s, 0);
888 ehci_queues_rip_all(s, 1);
bc72ad67 889 timer_del(s->frame_timer);
0fb3e299 890 qemu_bh_cancel(s->async_bh);
94527ead
GH
891}
892
a8170e5e 893static uint64_t ehci_caps_read(void *ptr, hwaddr addr,
3e4f910c 894 unsigned size)
94527ead
GH
895{
896 EHCIState *s = ptr;
3e4f910c 897 return s->caps[addr];
94527ead
GH
898}
899
dff0367c
PP
900static void ehci_caps_write(void *ptr, hwaddr addr,
901 uint64_t val, unsigned size)
902{
903}
904
a8170e5e 905static uint64_t ehci_opreg_read(void *ptr, hwaddr addr,
3e4f910c 906 unsigned size)
94527ead
GH
907{
908 EHCIState *s = ptr;
909 uint32_t val;
910
9359a58b
HG
911 switch (addr) {
912 case FRINDEX:
913 /* Round down to mult of 8, else it can go backwards on migration */
914 val = s->frindex & ~7;
915 break;
916 default:
917 val = s->opreg[addr >> 2];
918 }
919
27a11324 920 trace_usb_ehci_opreg_read(addr + s->opregbase, addr2str(addr), val);
94527ead
GH
921 return val;
922}
923
a8170e5e 924static uint64_t ehci_port_read(void *ptr, hwaddr addr,
3e4f910c 925 unsigned size)
94527ead
GH
926{
927 EHCIState *s = ptr;
928 uint32_t val;
929
3e4f910c 930 val = s->portsc[addr >> 2];
cc8d6a84 931 trace_usb_ehci_portsc_read(addr + s->portscbase, addr >> 2, val);
94527ead
GH
932 return val;
933}
934
a0a3167a
HG
935static void handle_port_owner_write(EHCIState *s, int port, uint32_t owner)
936{
937 USBDevice *dev = s->ports[port].dev;
938 uint32_t *portsc = &s->portsc[port];
939 uint32_t orig;
940
941 if (s->companion_ports[port] == NULL)
942 return;
943
944 owner = owner & PORTSC_POWNER;
945 orig = *portsc & PORTSC_POWNER;
946
947 if (!(owner ^ orig)) {
948 return;
949 }
950
891fb2cd
GH
951 if (dev && dev->attached) {
952 usb_detach(&s->ports[port]);
a0a3167a
HG
953 }
954
955 *portsc &= ~PORTSC_POWNER;
956 *portsc |= owner;
957
891fb2cd
GH
958 if (dev && dev->attached) {
959 usb_attach(&s->ports[port]);
a0a3167a
HG
960 }
961}
962
a8170e5e 963static void ehci_port_write(void *ptr, hwaddr addr,
3e4f910c 964 uint64_t val, unsigned size)
94527ead 965{
3e4f910c
GH
966 EHCIState *s = ptr;
967 int port = addr >> 2;
94527ead 968 uint32_t *portsc = &s->portsc[port];
3e4f910c 969 uint32_t old = *portsc;
94527ead
GH
970 USBDevice *dev = s->ports[port].dev;
971
cc8d6a84 972 trace_usb_ehci_portsc_write(addr + s->portscbase, addr >> 2, val);
3e4f910c 973
fbd97532
HG
974 /* Clear rwc bits */
975 *portsc &= ~(val & PORTSC_RWC_MASK);
976 /* The guest may clear, but not set the PED bit */
977 *portsc &= val | ~PORTSC_PED;
a0a3167a
HG
978 /* POWNER is masked out by RO_MASK as it is RO when we've no companion */
979 handle_port_owner_write(s, port, val);
980 /* And finally apply RO_MASK */
94527ead
GH
981 val &= PORTSC_RO_MASK;
982
94527ead 983 if ((val & PORTSC_PRESET) && !(*portsc & PORTSC_PRESET)) {
dcbd0b5c 984 trace_usb_ehci_port_reset(port, 1);
94527ead
GH
985 }
986
987 if (!(val & PORTSC_PRESET) &&(*portsc & PORTSC_PRESET)) {
dcbd0b5c 988 trace_usb_ehci_port_reset(port, 0);
891fb2cd 989 if (dev && dev->attached) {
d28f4e2d 990 usb_port_reset(&s->ports[port]);
94527ead
GH
991 *portsc &= ~PORTSC_CSC;
992 }
993
fbd97532
HG
994 /*
995 * Table 2.16 Set the enable bit(and enable bit change) to indicate
94527ead 996 * to SW that this port has a high speed device attached
94527ead 997 */
891fb2cd 998 if (dev && dev->attached && (dev->speedmask & USB_SPEED_MASK_HIGH)) {
fbd97532
HG
999 val |= PORTSC_PED;
1000 }
94527ead
GH
1001 }
1002
e489df40
GH
1003 if ((val & PORTSC_SUSPEND) && !(*portsc & PORTSC_SUSPEND)) {
1004 trace_usb_ehci_port_suspend(port);
1005 }
1006 if (!(val & PORTSC_FPRES) && (*portsc & PORTSC_FPRES)) {
1007 trace_usb_ehci_port_resume(port);
1008 val &= ~PORTSC_SUSPEND;
1009 }
1010
94527ead
GH
1011 *portsc &= ~PORTSC_RO_MASK;
1012 *portsc |= val;
cc8d6a84 1013 trace_usb_ehci_portsc_change(addr + s->portscbase, addr >> 2, *portsc, old);
94527ead
GH
1014}
1015
a8170e5e 1016static void ehci_opreg_write(void *ptr, hwaddr addr,
3e4f910c 1017 uint64_t val, unsigned size)
94527ead
GH
1018{
1019 EHCIState *s = ptr;
3e4f910c 1020 uint32_t *mmio = s->opreg + (addr >> 2);
c4f8e211 1021 uint32_t old = *mmio;
94527ead 1022 int i;
439a97cc 1023
27a11324 1024 trace_usb_ehci_opreg_write(addr + s->opregbase, addr2str(addr), val);
94527ead 1025
27a11324 1026 switch (addr) {
94527ead 1027 case USBCMD:
7046530c
GH
1028 if (val & USBCMD_HCRESET) {
1029 ehci_reset(s);
1030 val = s->usbcmd;
1031 break;
1032 }
1033
47d073cc
HG
1034 /* not supporting dynamic frame list size at the moment */
1035 if ((val & USBCMD_FLS) && !(s->usbcmd & USBCMD_FLS)) {
1036 fprintf(stderr, "attempt to set frame list size -- value %d\n",
3e4f910c 1037 (int)val & USBCMD_FLS);
47d073cc
HG
1038 val &= ~USBCMD_FLS;
1039 }
1040
a1c3e4b8
HG
1041 if (val & USBCMD_IAAD) {
1042 /*
1043 * Process IAAD immediately, otherwise the Linux IAAD watchdog may
1044 * trigger and re-use a qh without us seeing the unlink.
1045 */
1046 s->async_stepdown = 0;
1047 qemu_bh_schedule(s->async_bh);
1defcbd1 1048 trace_usb_ehci_doorbell_ring();
a1c3e4b8
HG
1049 }
1050
daf25307
GH
1051 if (((USBCMD_RUNSTOP | USBCMD_PSE | USBCMD_ASE) & val) !=
1052 ((USBCMD_RUNSTOP | USBCMD_PSE | USBCMD_ASE) & s->usbcmd)) {
3a215326 1053 if (s->pstate == EST_INACTIVE) {
daf25307
GH
1054 SET_LAST_RUN_CLOCK(s);
1055 }
47d073cc 1056 s->usbcmd = val; /* Set usbcmd for ehci_update_halt() */
daf25307 1057 ehci_update_halt(s);
3a215326 1058 s->async_stepdown = 0;
0262f65a 1059 qemu_bh_schedule(s->async_bh);
94527ead 1060 }
94527ead
GH
1061 break;
1062
94527ead 1063 case USBSTS:
a31f0531
JM
1064 val &= USBSTS_RO_MASK; // bits 6 through 31 are RO
1065 ehci_clear_usbsts(s, val); // bits 0 through 5 are R/WC
439a97cc 1066 val = s->usbsts;
7efc17af 1067 ehci_update_irq(s);
94527ead
GH
1068 break;
1069
94527ead
GH
1070 case USBINTR:
1071 val &= USBINTR_MASK;
40862309
GH
1072 if (ehci_enabled(s) && (USBSTS_FLR & val)) {
1073 qemu_bh_schedule(s->async_bh);
1074 }
94527ead
GH
1075 break;
1076
8a771f77 1077 case FRINDEX:
9359a58b
HG
1078 val &= 0x00003fff; /* frindex is 14bits */
1079 s->usbsts_frindex = val;
8a771f77
HG
1080 break;
1081
94527ead 1082 case CONFIGFLAG:
94527ead
GH
1083 val &= 0x1;
1084 if (val) {
1085 for(i = 0; i < NB_PORTS; i++)
a0a3167a 1086 handle_port_owner_write(s, i, 0);
94527ead
GH
1087 }
1088 break;
1089
1090 case PERIODICLISTBASE:
ec807d12 1091 if (ehci_periodic_enabled(s)) {
94527ead
GH
1092 fprintf(stderr,
1093 "ehci: PERIODIC list base register set while periodic schedule\n"
1094 " is enabled and HC is enabled\n");
1095 }
94527ead
GH
1096 break;
1097
1098 case ASYNCLISTADDR:
ec807d12 1099 if (ehci_async_enabled(s)) {
94527ead
GH
1100 fprintf(stderr,
1101 "ehci: ASYNC list address register set while async schedule\n"
1102 " is enabled and HC is enabled\n");
1103 }
94527ead
GH
1104 break;
1105 }
1106
c4f8e211 1107 *mmio = val;
27a11324
PC
1108 trace_usb_ehci_opreg_change(addr + s->opregbase, addr2str(addr),
1109 *mmio, old);
94527ead
GH
1110}
1111
a5e0139a
GH
1112/*
1113 * Write the qh back to guest physical memory. This step isn't
1114 * in the EHCI spec but we need to do it since we don't share
1115 * physical memory with our guest VM.
1116 *
1117 * The first three dwords are read-only for the EHCI, so skip them
1118 * when writing back the qh.
1119 */
1120static void ehci_flush_qh(EHCIQueue *q)
1121{
1122 uint32_t *qh = (uint32_t *) &q->qh;
1123 uint32_t dwords = sizeof(EHCIqh) >> 2;
1124 uint32_t addr = NLPTR_GET(q->qhaddr);
1125
1126 put_dwords(q->ehci, addr + 3 * sizeof(uint32_t), qh + 3, dwords - 3);
1127}
1128
94527ead
GH
1129// 4.10.2
1130
0122f472 1131static int ehci_qh_do_overlay(EHCIQueue *q)
94527ead 1132{
eb36a88e 1133 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
94527ead
GH
1134 int i;
1135 int dtoggle;
1136 int ping;
1137 int eps;
1138 int reload;
1139
eb36a88e
GH
1140 assert(p != NULL);
1141 assert(p->qtdaddr == q->qtdaddr);
1142
94527ead
GH
1143 // remember values in fields to preserve in qh after overlay
1144
0122f472
GH
1145 dtoggle = q->qh.token & QTD_TOKEN_DTOGGLE;
1146 ping = q->qh.token & QTD_TOKEN_PING;
94527ead 1147
eb36a88e
GH
1148 q->qh.current_qtd = p->qtdaddr;
1149 q->qh.next_qtd = p->qtd.next;
1150 q->qh.altnext_qtd = p->qtd.altnext;
1151 q->qh.token = p->qtd.token;
94527ead
GH
1152
1153
0122f472 1154 eps = get_field(q->qh.epchar, QH_EPCHAR_EPS);
94527ead 1155 if (eps == EHCI_QH_EPS_HIGH) {
0122f472
GH
1156 q->qh.token &= ~QTD_TOKEN_PING;
1157 q->qh.token |= ping;
94527ead
GH
1158 }
1159
0122f472
GH
1160 reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1161 set_field(&q->qh.altnext_qtd, reload, QH_ALTNEXT_NAKCNT);
94527ead
GH
1162
1163 for (i = 0; i < 5; i++) {
eb36a88e 1164 q->qh.bufptr[i] = p->qtd.bufptr[i];
94527ead
GH
1165 }
1166
0122f472 1167 if (!(q->qh.epchar & QH_EPCHAR_DTC)) {
94527ead 1168 // preserve QH DT bit
0122f472
GH
1169 q->qh.token &= ~QTD_TOKEN_DTOGGLE;
1170 q->qh.token |= dtoggle;
94527ead
GH
1171 }
1172
0122f472
GH
1173 q->qh.bufptr[1] &= ~BUFPTR_CPROGMASK_MASK;
1174 q->qh.bufptr[2] &= ~BUFPTR_FRAMETAG_MASK;
94527ead 1175
a5e0139a 1176 ehci_flush_qh(q);
94527ead
GH
1177
1178 return 0;
1179}
1180
eb36a88e 1181static int ehci_init_transfer(EHCIPacket *p)
94527ead 1182{
0ce668bc 1183 uint32_t cpage, offset, bytes, plen;
68d55358 1184 dma_addr_t page;
94527ead 1185
eb36a88e
GH
1186 cpage = get_field(p->qtd.token, QTD_TOKEN_CPAGE);
1187 bytes = get_field(p->qtd.token, QTD_TOKEN_TBYTES);
1188 offset = p->qtd.bufptr[0] & ~QTD_BUFPTR_MASK;
adbecc89 1189 qemu_sglist_init(&p->sgl, p->queue->ehci->device, 5, p->queue->ehci->as);
94527ead 1190
0ce668bc
GH
1191 while (bytes > 0) {
1192 if (cpage > 4) {
1193 fprintf(stderr, "cpage out of range (%d)\n", cpage);
791f9775 1194 qemu_sglist_destroy(&p->sgl);
01e26b0e 1195 return -1;
0ce668bc 1196 }
94527ead 1197
eb36a88e 1198 page = p->qtd.bufptr[cpage] & QTD_BUFPTR_MASK;
0ce668bc
GH
1199 page += offset;
1200 plen = bytes;
1201 if (plen > 4096 - offset) {
1202 plen = 4096 - offset;
1203 offset = 0;
1204 cpage++;
94527ead
GH
1205 }
1206
eb36a88e 1207 qemu_sglist_add(&p->sgl, page, plen);
0ce668bc
GH
1208 bytes -= plen;
1209 }
1210 return 0;
1211}
94527ead 1212
e696b1da 1213static void ehci_finish_transfer(EHCIQueue *q, int len)
0ce668bc
GH
1214{
1215 uint32_t cpage, offset;
94527ead 1216
e696b1da 1217 if (len > 0) {
0ce668bc
GH
1218 /* update cpage & offset */
1219 cpage = get_field(q->qh.token, QTD_TOKEN_CPAGE);
1220 offset = q->qh.bufptr[0] & ~QTD_BUFPTR_MASK;
94527ead 1221
e696b1da 1222 offset += len;
0ce668bc
GH
1223 cpage += offset >> QTD_BUFPTR_SH;
1224 offset &= ~QTD_BUFPTR_MASK;
94527ead 1225
0ce668bc
GH
1226 set_field(&q->qh.token, cpage, QTD_TOKEN_CPAGE);
1227 q->qh.bufptr[0] &= QTD_BUFPTR_MASK;
1228 q->qh.bufptr[0] |= offset;
1229 }
94527ead
GH
1230}
1231
d47e59b8 1232static void ehci_async_complete_packet(USBPort *port, USBPacket *packet)
94527ead 1233{
eb36a88e 1234 EHCIPacket *p;
a0a3167a
HG
1235 EHCIState *s = port->opaque;
1236 uint32_t portsc = s->portsc[port->index];
1237
1238 if (portsc & PORTSC_POWNER) {
1239 USBPort *companion = s->companion_ports[port->index];
1240 companion->ops->complete(companion, packet);
1241 return;
1242 }
94527ead 1243
eb36a88e 1244 p = container_of(packet, EHCIPacket, packet);
eb36a88e 1245 assert(p->async == EHCI_ASYNC_INFLIGHT);
0cae7b1a 1246
9a77a0f5 1247 if (packet->status == USB_RET_REMOVE_FROM_QUEUE) {
0cae7b1a
HG
1248 trace_usb_ehci_packet_action(p->queue, p, "remove");
1249 ehci_free_packet(p);
1250 return;
1251 }
1252
1253 trace_usb_ehci_packet_action(p->queue, p, "wakeup");
eb36a88e 1254 p->async = EHCI_ASYNC_FINISHED;
ae710b99 1255
80826240
HG
1256 if (!p->queue->async) {
1257 s->periodic_sched_active = PERIODIC_ACTIVE;
ae710b99 1258 }
80826240 1259 qemu_bh_schedule(s->async_bh);
94527ead
GH
1260}
1261
0122f472 1262static void ehci_execute_complete(EHCIQueue *q)
94527ead 1263{
eb36a88e 1264 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
e696b1da 1265 uint32_t tbytes;
eb36a88e
GH
1266
1267 assert(p != NULL);
1268 assert(p->qtdaddr == q->qtdaddr);
ef5b2344
HG
1269 assert(p->async == EHCI_ASYNC_INITIALIZED ||
1270 p->async == EHCI_ASYNC_FINISHED);
94527ead 1271
e696b1da
HG
1272 DPRINTF("execute_complete: qhaddr 0x%x, next 0x%x, qtdaddr 0x%x, "
1273 "status %d, actual_length %d\n",
1274 q->qhaddr, q->qh.next, q->qtdaddr,
1275 p->packet.status, p->packet.actual_length);
94527ead 1276
e696b1da
HG
1277 switch (p->packet.status) {
1278 case USB_RET_SUCCESS:
1279 break;
1280 case USB_RET_IOERROR:
1281 case USB_RET_NODEV:
1282 q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR);
1283 set_field(&q->qh.token, 0, QTD_TOKEN_CERR);
1284 ehci_raise_irq(q->ehci, USBSTS_ERRINT);
1285 break;
1286 case USB_RET_STALL:
1287 q->qh.token |= QTD_TOKEN_HALT;
1288 ehci_raise_irq(q->ehci, USBSTS_ERRINT);
1289 break;
1290 case USB_RET_NAK:
1291 set_field(&q->qh.altnext_qtd, 0, QH_ALTNEXT_NAKCNT);
1292 return; /* We're not done yet with this transaction */
1293 case USB_RET_BABBLE:
1294 q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE);
1295 ehci_raise_irq(q->ehci, USBSTS_ERRINT);
1296 break;
1297 default:
1298 /* should not be triggerable */
1299 fprintf(stderr, "USB invalid response %d\n", p->packet.status);
dfc6f865 1300 g_assert_not_reached();
e696b1da
HG
1301 break;
1302 }
1303
1304 /* TODO check 4.12 for splits */
1305 tbytes = get_field(q->qh.token, QTD_TOKEN_TBYTES);
1306 if (tbytes && p->pid == USB_TOKEN_IN) {
1307 tbytes -= p->packet.actual_length;
1308 if (tbytes) {
1309 /* 4.15.1.2 must raise int on a short input packet */
1310 ehci_raise_irq(q->ehci, USBSTS_INT);
52c15e59
HG
1311 if (q->async) {
1312 q->ehci->int_req_by_async = true;
1313 }
94527ead
GH
1314 }
1315 } else {
e696b1da 1316 tbytes = 0;
94527ead 1317 }
e696b1da
HG
1318 DPRINTF("updating tbytes to %d\n", tbytes);
1319 set_field(&q->qh.token, tbytes, QTD_TOKEN_TBYTES);
1320
1321 ehci_finish_transfer(q, p->packet.actual_length);
e2f89926 1322 usb_packet_unmap(&p->packet, &p->sgl);
eb36a88e 1323 qemu_sglist_destroy(&p->sgl);
ef5b2344 1324 p->async = EHCI_ASYNC_NONE;
94527ead 1325
0122f472
GH
1326 q->qh.token ^= QTD_TOKEN_DTOGGLE;
1327 q->qh.token &= ~QTD_TOKEN_ACTIVE;
94527ead 1328
553a6a59 1329 if (q->qh.token & QTD_TOKEN_IOC) {
7efc17af 1330 ehci_raise_irq(q->ehci, USBSTS_INT);
44272b0f
HG
1331 if (q->async) {
1332 q->ehci->int_req_by_async = true;
1333 }
94527ead 1334 }
94527ead
GH
1335}
1336
01e26b0e 1337/* 4.10.3 returns "again" */
773dc9cd 1338static int ehci_execute(EHCIPacket *p, const char *action)
94527ead 1339{
079d0b7f 1340 USBEndpoint *ep;
94527ead 1341 int endp;
6ba43f1f 1342 bool spd;
94527ead 1343
ef5b2344
HG
1344 assert(p->async == EHCI_ASYNC_NONE ||
1345 p->async == EHCI_ASYNC_INITIALIZED);
1346
4224558f
GH
1347 if (!(p->qtd.token & QTD_TOKEN_ACTIVE)) {
1348 fprintf(stderr, "Attempting to execute inactive qtd\n");
01e26b0e 1349 return -1;
94527ead
GH
1350 }
1351
549a3c3d 1352 if (get_field(p->qtd.token, QTD_TOKEN_TBYTES) > BUFF_SIZE) {
3a8ca08e
HG
1353 ehci_trace_guest_bug(p->queue->ehci,
1354 "guest requested more bytes than allowed");
01e26b0e 1355 return -1;
94527ead
GH
1356 }
1357
f79738b0
HG
1358 if (!ehci_verify_pid(p->queue, &p->qtd)) {
1359 ehci_queue_stopped(p->queue); /* Mark the ep in the prev dir stopped */
1360 }
51e0c5d0 1361 p->pid = ehci_get_pid(&p->qtd);
bbbc39cc 1362 p->queue->last_pid = p->pid;
4224558f 1363 endp = get_field(p->queue->qh.epchar, QH_EPCHAR_EP);
e59928b3 1364 ep = usb_ep_get(p->queue->dev, p->pid, endp);
94527ead 1365
ef5b2344
HG
1366 if (p->async == EHCI_ASYNC_NONE) {
1367 if (ehci_init_transfer(p) != 0) {
01e26b0e 1368 return -1;
ef5b2344
HG
1369 }
1370
6ba43f1f 1371 spd = (p->pid == USB_TOKEN_IN && NLPTR_TBIT(p->qtd.altnext) == 0);
8550a02d 1372 usb_packet_setup(&p->packet, p->pid, ep, 0, p->qtdaddr, spd,
a6fb2ddb 1373 (p->qtd.token & QTD_TOKEN_IOC) != 0);
ef5b2344
HG
1374 usb_packet_map(&p->packet, &p->sgl);
1375 p->async = EHCI_ASYNC_INITIALIZED;
1376 }
0ce668bc 1377
773dc9cd 1378 trace_usb_ehci_packet_action(p->queue, p, action);
9a77a0f5
HG
1379 usb_handle_packet(p->queue->dev, &p->packet);
1380 DPRINTF("submit: qh 0x%x next 0x%x qtd 0x%x pid 0x%x len %zd endp 0x%x "
1381 "status %d actual_length %d\n", p->queue->qhaddr, p->qtd.next,
1382 p->qtdaddr, p->pid, p->packet.iov.size, endp, p->packet.status,
1383 p->packet.actual_length);
94527ead 1384
9a77a0f5 1385 if (p->packet.actual_length > BUFF_SIZE) {
94527ead 1386 fprintf(stderr, "ret from usb_handle_packet > BUFF_SIZE\n");
01e26b0e 1387 return -1;
94527ead
GH
1388 }
1389
01e26b0e 1390 return 1;
94527ead
GH
1391}
1392
1393/* 4.7.2
1394 */
1395
1396static int ehci_process_itd(EHCIState *ehci,
e983395d
GH
1397 EHCIitd *itd,
1398 uint32_t addr)
94527ead 1399{
94527ead 1400 USBDevice *dev;
079d0b7f 1401 USBEndpoint *ep;
a49923d2 1402 uint32_t i, len, pid, dir, devaddr, endp;
e654887f 1403 uint32_t pg, off, ptr1, ptr2, max, mult;
94527ead 1404
80826240
HG
1405 ehci->periodic_sched_active = PERIODIC_ACTIVE;
1406
94527ead 1407 dir =(itd->bufptr[1] & ITD_BUFPTR_DIRECTION);
e654887f 1408 devaddr = get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR);
94527ead 1409 endp = get_field(itd->bufptr[0], ITD_BUFPTR_EP);
e654887f
GH
1410 max = get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT);
1411 mult = get_field(itd->bufptr[2], ITD_BUFPTR_MULT);
94527ead
GH
1412
1413 for(i = 0; i < 8; i++) {
1414 if (itd->transact[i] & ITD_XACT_ACTIVE) {
e654887f
GH
1415 pg = get_field(itd->transact[i], ITD_XACT_PGSEL);
1416 off = itd->transact[i] & ITD_XACT_OFFSET_MASK;
e654887f
GH
1417 len = get_field(itd->transact[i], ITD_XACT_LENGTH);
1418
1419 if (len > max * mult) {
1420 len = max * mult;
1421 }
49d925ce 1422 if (len > BUFF_SIZE || pg > 6) {
01e26b0e 1423 return -1;
94527ead
GH
1424 }
1425
49d925ce 1426 ptr1 = (itd->bufptr[pg] & ITD_BUFPTR_MASK);
adbecc89 1427 qemu_sglist_init(&ehci->isgl, ehci->device, 2, ehci->as);
e654887f
GH
1428 if (off + len > 4096) {
1429 /* transfer crosses page border */
49d925ce 1430 if (pg == 6) {
b16c129d 1431 qemu_sglist_destroy(&ehci->isgl);
49d925ce
PP
1432 return -1; /* avoid page pg + 1 */
1433 }
1434 ptr2 = (itd->bufptr[pg + 1] & ITD_BUFPTR_MASK);
0ce668bc
GH
1435 uint32_t len2 = off + len - 4096;
1436 uint32_t len1 = len - len2;
1437 qemu_sglist_add(&ehci->isgl, ptr1 + off, len1);
1438 qemu_sglist_add(&ehci->isgl, ptr2, len2);
e654887f 1439 } else {
0ce668bc 1440 qemu_sglist_add(&ehci->isgl, ptr1 + off, len);
e654887f 1441 }
94527ead 1442
0ce668bc 1443 pid = dir ? USB_TOKEN_IN : USB_TOKEN_OUT;
94527ead 1444
079d0b7f
GH
1445 dev = ehci_find_device(ehci, devaddr);
1446 ep = usb_ep_get(dev, pid, endp);
7ce86aa1 1447 if (ep && ep->type == USB_ENDPOINT_XFER_ISOC) {
8550a02d 1448 usb_packet_setup(&ehci->ipacket, pid, ep, 0, addr, false,
a6fb2ddb 1449 (itd->transact[i] & ITD_XACT_IOC) != 0);
aa0568ff 1450 usb_packet_map(&ehci->ipacket, &ehci->isgl);
9a77a0f5 1451 usb_handle_packet(dev, &ehci->ipacket);
e2f89926 1452 usb_packet_unmap(&ehci->ipacket, &ehci->isgl);
aa0568ff
GH
1453 } else {
1454 DPRINTF("ISOCH: attempt to addess non-iso endpoint\n");
e696b1da
HG
1455 ehci->ipacket.status = USB_RET_NAK;
1456 ehci->ipacket.actual_length = 0;
aa0568ff 1457 }
0ce668bc
GH
1458 qemu_sglist_destroy(&ehci->isgl);
1459
e696b1da
HG
1460 switch (ehci->ipacket.status) {
1461 case USB_RET_SUCCESS:
1462 break;
1463 default:
1464 fprintf(stderr, "Unexpected iso usb result: %d\n",
1465 ehci->ipacket.status);
1466 /* Fall through */
1467 case USB_RET_IOERROR:
1468 case USB_RET_NODEV:
1469 /* 3.3.2: XACTERR is only allowed on IN transactions */
1470 if (dir) {
1471 itd->transact[i] |= ITD_XACT_XACTERR;
7efc17af 1472 ehci_raise_irq(ehci, USBSTS_ERRINT);
5eafd438 1473 }
e696b1da
HG
1474 break;
1475 case USB_RET_BABBLE:
1476 itd->transact[i] |= ITD_XACT_BABBLE;
1477 ehci_raise_irq(ehci, USBSTS_ERRINT);
1478 break;
1479 case USB_RET_NAK:
1480 /* no data for us, so do a zero-length transfer */
1481 ehci->ipacket.actual_length = 0;
1482 break;
5eafd438 1483 }
e696b1da
HG
1484 if (!dir) {
1485 set_field(&itd->transact[i], len - ehci->ipacket.actual_length,
1486 ITD_XACT_LENGTH); /* OUT */
1487 } else {
1488 set_field(&itd->transact[i], ehci->ipacket.actual_length,
1489 ITD_XACT_LENGTH); /* IN */
94527ead 1490 }
df787185 1491 if (itd->transact[i] & ITD_XACT_IOC) {
7efc17af 1492 ehci_raise_irq(ehci, USBSTS_INT);
df787185 1493 }
e654887f 1494 itd->transact[i] &= ~ITD_XACT_ACTIVE;
94527ead
GH
1495 }
1496 }
a49923d2 1497 return 0;
94527ead
GH
1498}
1499
cd665715 1500
94527ead
GH
1501/* This state is the entry point for asynchronous schedule
1502 * processing. Entry here consitutes a EHCI start event state (4.8.5)
1503 */
26d53979 1504static int ehci_state_waitlisthead(EHCIState *ehci, int async)
94527ead 1505{
0122f472 1506 EHCIqh qh;
94527ead
GH
1507 int i = 0;
1508 int again = 0;
1509 uint32_t entry = ehci->asynclistaddr;
1510
1511 /* set reclamation flag at start event (4.8.6) */
1512 if (async) {
439a97cc 1513 ehci_set_usbsts(ehci, USBSTS_REC);
94527ead
GH
1514 }
1515
8f5457eb 1516 ehci_queues_rip_unused(ehci, async);
8ac6d699 1517
94527ead
GH
1518 /* Find the head of the list (4.9.1.1) */
1519 for(i = 0; i < MAX_QH; i++) {
55903f1d
GH
1520 if (get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &qh,
1521 sizeof(EHCIqh) >> 2) < 0) {
1522 return 0;
1523 }
8ac6d699 1524 ehci_trace_qh(NULL, NLPTR_GET(entry), &qh);
94527ead 1525
0122f472 1526 if (qh.epchar & QH_EPCHAR_H) {
94527ead
GH
1527 if (async) {
1528 entry |= (NLPTR_TYPE_QH << 1);
1529 }
1530
0122f472 1531 ehci_set_fetch_addr(ehci, async, entry);
26d53979 1532 ehci_set_state(ehci, async, EST_FETCHENTRY);
94527ead
GH
1533 again = 1;
1534 goto out;
1535 }
1536
0122f472 1537 entry = qh.next;
94527ead 1538 if (entry == ehci->asynclistaddr) {
94527ead
GH
1539 break;
1540 }
1541 }
1542
1543 /* no head found for list. */
1544
26d53979 1545 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
1546
1547out:
1548 return again;
1549}
1550
1551
1552/* This state is the entry point for periodic schedule processing as
1553 * well as being a continuation state for async processing.
1554 */
26d53979 1555static int ehci_state_fetchentry(EHCIState *ehci, int async)
94527ead
GH
1556{
1557 int again = 0;
0122f472 1558 uint32_t entry = ehci_get_fetch_addr(ehci, async);
94527ead 1559
2a5ff735 1560 if (NLPTR_TBIT(entry)) {
26d53979 1561 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
1562 goto out;
1563 }
1564
1565 /* section 4.8, only QH in async schedule */
1566 if (async && (NLPTR_TYPE_GET(entry) != NLPTR_TYPE_QH)) {
1567 fprintf(stderr, "non queue head request in async schedule\n");
1568 return -1;
1569 }
1570
1571 switch (NLPTR_TYPE_GET(entry)) {
1572 case NLPTR_TYPE_QH:
26d53979 1573 ehci_set_state(ehci, async, EST_FETCHQH);
94527ead
GH
1574 again = 1;
1575 break;
1576
1577 case NLPTR_TYPE_ITD:
26d53979 1578 ehci_set_state(ehci, async, EST_FETCHITD);
94527ead
GH
1579 again = 1;
1580 break;
1581
2fe80192
GH
1582 case NLPTR_TYPE_STITD:
1583 ehci_set_state(ehci, async, EST_FETCHSITD);
1584 again = 1;
1585 break;
1586
94527ead 1587 default:
2fe80192 1588 /* TODO: handle FSTN type */
94527ead
GH
1589 fprintf(stderr, "FETCHENTRY: entry at %X is of type %d "
1590 "which is not supported yet\n", entry, NLPTR_TYPE_GET(entry));
1591 return -1;
1592 }
1593
1594out:
1595 return again;
1596}
1597
0122f472 1598static EHCIQueue *ehci_state_fetchqh(EHCIState *ehci, int async)
94527ead 1599{
c6432634 1600 uint32_t entry;
0122f472 1601 EHCIQueue *q;
dafe31fc 1602 EHCIqh qh;
94527ead 1603
0122f472 1604 entry = ehci_get_fetch_addr(ehci, async);
df5d5c5c 1605 q = ehci_find_queue_by_qh(ehci, entry, async);
d0657b2a 1606 if (q == NULL) {
8f6d5e26 1607 q = ehci_alloc_queue(ehci, entry, async);
8ac6d699 1608 }
8ac6d699 1609
8f6d5e26 1610 q->seen++;
8ac6d699
GH
1611 if (q->seen > 1) {
1612 /* we are going in circles -- stop processing */
1613 ehci_set_state(ehci, async, EST_ACTIVE);
1614 q = NULL;
1615 goto out;
1616 }
94527ead 1617
55903f1d
GH
1618 if (get_dwords(ehci, NLPTR_GET(q->qhaddr),
1619 (uint32_t *) &qh, sizeof(EHCIqh) >> 2) < 0) {
1620 q = NULL;
1621 goto out;
1622 }
dafe31fc
HG
1623 ehci_trace_qh(q, NLPTR_GET(q->qhaddr), &qh);
1624
1625 /*
1626 * The overlay area of the qh should never be changed by the guest,
1627 * except when idle, in which case the reset is a nop.
1628 */
c6432634 1629 if (!ehci_verify_qh(q, &qh)) {
5c514681
GH
1630 if (ehci_reset_queue(q) > 0) {
1631 ehci_trace_guest_bug(ehci, "guest updated active QH");
1632 }
dafe31fc
HG
1633 }
1634 q->qh = qh;
1635
cae5d3f4
HG
1636 q->transact_ctr = get_field(q->qh.epcap, QH_EPCAP_MULT);
1637 if (q->transact_ctr == 0) { /* Guest bug in some versions of windows */
1638 q->transact_ctr = 4;
1639 }
1640
e59928b3 1641 if (q->dev == NULL) {
c6432634
HG
1642 q->dev = ehci_find_device(q->ehci,
1643 get_field(q->qh.epchar, QH_EPCHAR_DEVADDR));
e59928b3
GH
1644 }
1645
0122f472 1646 if (async && (q->qh.epchar & QH_EPCHAR_H)) {
94527ead
GH
1647
1648 /* EHCI spec version 1.0 Section 4.8.3 & 4.10.1 */
1649 if (ehci->usbsts & USBSTS_REC) {
439a97cc 1650 ehci_clear_usbsts(ehci, USBSTS_REC);
94527ead
GH
1651 } else {
1652 DPRINTF("FETCHQH: QH 0x%08x. H-bit set, reclamation status reset"
0122f472 1653 " - done processing\n", q->qhaddr);
26d53979 1654 ehci_set_state(ehci, async, EST_ACTIVE);
0122f472 1655 q = NULL;
94527ead
GH
1656 goto out;
1657 }
1658 }
1659
1660#if EHCI_DEBUG
0122f472 1661 if (q->qhaddr != q->qh.next) {
94527ead 1662 DPRINTF("FETCHQH: QH 0x%08x (h %x halt %x active %x) next 0x%08x\n",
0122f472
GH
1663 q->qhaddr,
1664 q->qh.epchar & QH_EPCHAR_H,
1665 q->qh.token & QTD_TOKEN_HALT,
1666 q->qh.token & QTD_TOKEN_ACTIVE,
1667 q->qh.next);
94527ead
GH
1668 }
1669#endif
1670
0122f472 1671 if (q->qh.token & QTD_TOKEN_HALT) {
26d53979 1672 ehci_set_state(ehci, async, EST_HORIZONTALQH);
94527ead 1673
2a5ff735
HG
1674 } else if ((q->qh.token & QTD_TOKEN_ACTIVE) &&
1675 (NLPTR_TBIT(q->qh.current_qtd) == 0)) {
0122f472 1676 q->qtdaddr = q->qh.current_qtd;
26d53979 1677 ehci_set_state(ehci, async, EST_FETCHQTD);
94527ead
GH
1678
1679 } else {
1680 /* EHCI spec version 1.0 Section 4.10.2 */
26d53979 1681 ehci_set_state(ehci, async, EST_ADVANCEQUEUE);
94527ead
GH
1682 }
1683
1684out:
0122f472 1685 return q;
94527ead
GH
1686}
1687
26d53979 1688static int ehci_state_fetchitd(EHCIState *ehci, int async)
94527ead 1689{
0122f472 1690 uint32_t entry;
94527ead
GH
1691 EHCIitd itd;
1692
0122f472
GH
1693 assert(!async);
1694 entry = ehci_get_fetch_addr(ehci, async);
1695
55903f1d
GH
1696 if (get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd,
1697 sizeof(EHCIitd) >> 2) < 0) {
1698 return -1;
1699 }
0122f472 1700 ehci_trace_itd(ehci, entry, &itd);
94527ead 1701
e983395d 1702 if (ehci_process_itd(ehci, &itd, entry) != 0) {
94527ead
GH
1703 return -1;
1704 }
1705
68d55358
DG
1706 put_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd,
1707 sizeof(EHCIitd) >> 2);
0122f472 1708 ehci_set_fetch_addr(ehci, async, itd.next);
26d53979 1709 ehci_set_state(ehci, async, EST_FETCHENTRY);
94527ead
GH
1710
1711 return 1;
1712}
1713
2fe80192
GH
1714static int ehci_state_fetchsitd(EHCIState *ehci, int async)
1715{
1716 uint32_t entry;
1717 EHCIsitd sitd;
1718
1719 assert(!async);
1720 entry = ehci_get_fetch_addr(ehci, async);
1721
55903f1d
GH
1722 if (get_dwords(ehci, NLPTR_GET(entry), (uint32_t *)&sitd,
1723 sizeof(EHCIsitd) >> 2) < 0) {
1724 return 0;
1725 }
2fe80192
GH
1726 ehci_trace_sitd(ehci, entry, &sitd);
1727
1728 if (!(sitd.results & SITD_RESULTS_ACTIVE)) {
1729 /* siTD is not active, nothing to do */;
1730 } else {
1731 /* TODO: split transfers are not implemented */
2ab4b135 1732 warn_report("Skipping active siTD");
2fe80192
GH
1733 }
1734
1735 ehci_set_fetch_addr(ehci, async, sitd.next);
1736 ehci_set_state(ehci, async, EST_FETCHENTRY);
1737 return 1;
1738}
1739
94527ead 1740/* Section 4.10.2 - paragraph 3 */
ae0138a8 1741static int ehci_state_advqueue(EHCIQueue *q)
94527ead
GH
1742{
1743#if 0
1744 /* TO-DO: 4.10.2 - paragraph 2
1745 * if I-bit is set to 1 and QH is not active
1746 * go to horizontal QH
1747 */
1748 if (I-bit set) {
26d53979 1749 ehci_set_state(ehci, async, EST_HORIZONTALQH);
94527ead
GH
1750 goto out;
1751 }
1752#endif
1753
1754 /*
1755 * want data and alt-next qTD is valid
1756 */
0122f472 1757 if (((q->qh.token & QTD_TOKEN_TBYTES_MASK) != 0) &&
0122f472
GH
1758 (NLPTR_TBIT(q->qh.altnext_qtd) == 0)) {
1759 q->qtdaddr = q->qh.altnext_qtd;
ae0138a8 1760 ehci_set_state(q->ehci, q->async, EST_FETCHQTD);
94527ead
GH
1761
1762 /*
1763 * next qTD is valid
1764 */
2a5ff735 1765 } else if (NLPTR_TBIT(q->qh.next_qtd) == 0) {
0122f472 1766 q->qtdaddr = q->qh.next_qtd;
ae0138a8 1767 ehci_set_state(q->ehci, q->async, EST_FETCHQTD);
94527ead
GH
1768
1769 /*
1770 * no valid qTD, try next QH
1771 */
1772 } else {
ae0138a8 1773 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
94527ead
GH
1774 }
1775
1776 return 1;
1777}
1778
1779/* Section 4.10.2 - paragraph 4 */
ae0138a8 1780static int ehci_state_fetchqtd(EHCIQueue *q)
94527ead 1781{
eb36a88e
GH
1782 EHCIqtd qtd;
1783 EHCIPacket *p;
b4ea8664 1784 int again = 1;
94527ead 1785
55903f1d
GH
1786 if (get_dwords(q->ehci, NLPTR_GET(q->qtdaddr), (uint32_t *) &qtd,
1787 sizeof(EHCIqtd) >> 2) < 0) {
1788 return 0;
1789 }
eb36a88e 1790 ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), &qtd);
94527ead 1791
773dc9cd 1792 p = QTAILQ_FIRST(&q->packets);
773dc9cd 1793 if (p != NULL) {
c6432634 1794 if (!ehci_verify_qtd(p, &qtd)) {
287fd3f1 1795 ehci_cancel_queue(q);
d066c57b
HG
1796 if (qtd.token & QTD_TOKEN_ACTIVE) {
1797 ehci_trace_guest_bug(q->ehci, "guest updated active qTD");
1798 }
287fd3f1
GH
1799 p = NULL;
1800 } else {
1801 p->qtd = qtd;
1802 ehci_qh_do_overlay(q);
1803 }
1804 }
1805
1806 if (!(qtd.token & QTD_TOKEN_ACTIVE)) {
287fd3f1 1807 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
287fd3f1 1808 } else if (p != NULL) {
adf47834
HG
1809 switch (p->async) {
1810 case EHCI_ASYNC_NONE:
ef5b2344 1811 case EHCI_ASYNC_INITIALIZED:
cae5d3f4 1812 /* Not yet executed (MULT), or previously nacked (int) packet */
ef5b2344
HG
1813 ehci_set_state(q->ehci, q->async, EST_EXECUTE);
1814 break;
adf47834 1815 case EHCI_ASYNC_INFLIGHT:
b4ea8664 1816 /* Check if the guest has added new tds to the queue */
01e26b0e 1817 again = ehci_fill_queue(QTAILQ_LAST(&q->packets, pkts_head));
ef5b2344 1818 /* Unfinished async handled packet, go horizontal */
ae0138a8 1819 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
adf47834
HG
1820 break;
1821 case EHCI_ASYNC_FINISHED:
e3fdfd48 1822 /* Complete executing of the packet */
ae0138a8 1823 ehci_set_state(q->ehci, q->async, EST_EXECUTING);
adf47834 1824 break;
773dc9cd 1825 }
287fd3f1 1826 } else {
eb36a88e
GH
1827 p = ehci_alloc_packet(q);
1828 p->qtdaddr = q->qtdaddr;
1829 p->qtd = qtd;
ae0138a8 1830 ehci_set_state(q->ehci, q->async, EST_EXECUTE);
94527ead
GH
1831 }
1832
1833 return again;
1834}
1835
ae0138a8 1836static int ehci_state_horizqh(EHCIQueue *q)
94527ead
GH
1837{
1838 int again = 0;
1839
ae0138a8
GH
1840 if (ehci_get_fetch_addr(q->ehci, q->async) != q->qh.next) {
1841 ehci_set_fetch_addr(q->ehci, q->async, q->qh.next);
1842 ehci_set_state(q->ehci, q->async, EST_FETCHENTRY);
94527ead
GH
1843 again = 1;
1844 } else {
ae0138a8 1845 ehci_set_state(q->ehci, q->async, EST_ACTIVE);
94527ead
GH
1846 }
1847
1848 return again;
1849}
1850
01e26b0e 1851/* Returns "again" */
eff6dce7 1852static int ehci_fill_queue(EHCIPacket *p)
773dc9cd 1853{
36dfe324 1854 USBEndpoint *ep = p->packet.ep;
773dc9cd
GH
1855 EHCIQueue *q = p->queue;
1856 EHCIqtd qtd = p->qtd;
601a2347 1857 uint32_t qtdaddr;
773dc9cd
GH
1858
1859 for (;;) {
773dc9cd
GH
1860 if (NLPTR_TBIT(qtd.next) != 0) {
1861 break;
1862 }
1863 qtdaddr = qtd.next;
e3a36bce
HG
1864 /*
1865 * Detect circular td lists, Windows creates these, counting on the
1866 * active bit going low after execution to make the queue stop.
1867 */
601a2347
HG
1868 QTAILQ_FOREACH(p, &q->packets, next) {
1869 if (p->qtdaddr == qtdaddr) {
1870 goto leave;
1871 }
e3a36bce 1872 }
55903f1d
GH
1873 if (get_dwords(q->ehci, NLPTR_GET(qtdaddr),
1874 (uint32_t *) &qtd, sizeof(EHCIqtd) >> 2) < 0) {
1875 return -1;
1876 }
773dc9cd
GH
1877 ehci_trace_qtd(q, NLPTR_GET(qtdaddr), &qtd);
1878 if (!(qtd.token & QTD_TOKEN_ACTIVE)) {
1879 break;
1880 }
bbbc39cc
HG
1881 if (!ehci_verify_pid(q, &qtd)) {
1882 ehci_trace_guest_bug(q->ehci, "guest queued token with wrong pid");
1883 break;
1884 }
773dc9cd
GH
1885 p = ehci_alloc_packet(q);
1886 p->qtdaddr = qtdaddr;
1887 p->qtd = qtd;
01e26b0e
HG
1888 if (ehci_execute(p, "queue") == -1) {
1889 return -1;
eff6dce7 1890 }
01e26b0e 1891 assert(p->packet.status == USB_RET_ASYNC);
773dc9cd
GH
1892 p->async = EHCI_ASYNC_INFLIGHT;
1893 }
601a2347 1894leave:
01e26b0e
HG
1895 usb_device_flush_ep_queue(ep->dev, ep);
1896 return 1;
773dc9cd
GH
1897}
1898
ae0138a8 1899static int ehci_state_execute(EHCIQueue *q)
94527ead 1900{
eb36a88e 1901 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
94527ead 1902 int again = 0;
94527ead 1903
eb36a88e
GH
1904 assert(p != NULL);
1905 assert(p->qtdaddr == q->qtdaddr);
1906
0122f472 1907 if (ehci_qh_do_overlay(q) != 0) {
94527ead
GH
1908 return -1;
1909 }
1910
94527ead
GH
1911 // TODO verify enough time remains in the uframe as in 4.4.1.1
1912 // TODO write back ptr to async list when done or out of time
94527ead 1913
cae5d3f4
HG
1914 /* 4.10.3, bottom of page 82, go horizontal on transaction counter == 0 */
1915 if (!q->async && q->transact_ctr == 0) {
1916 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
1917 again = 1;
1918 goto out;
94527ead
GH
1919 }
1920
ae0138a8 1921 if (q->async) {
0122f472 1922 ehci_set_usbsts(q->ehci, USBSTS_REC);
94527ead
GH
1923 }
1924
01e26b0e
HG
1925 again = ehci_execute(p, "process");
1926 if (again == -1) {
94527ead
GH
1927 goto out;
1928 }
01e26b0e 1929 if (p->packet.status == USB_RET_ASYNC) {
8ac6d699 1930 ehci_flush_qh(q);
773dc9cd 1931 trace_usb_ehci_packet_action(p->queue, p, "async");
eb36a88e 1932 p->async = EHCI_ASYNC_INFLIGHT;
ae0138a8 1933 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
cae5d3f4 1934 if (q->async) {
01e26b0e 1935 again = ehci_fill_queue(p);
cae5d3f4
HG
1936 } else {
1937 again = 1;
1938 }
8ac6d699 1939 goto out;
94527ead
GH
1940 }
1941
ae0138a8 1942 ehci_set_state(q->ehci, q->async, EST_EXECUTING);
8ac6d699
GH
1943 again = 1;
1944
94527ead
GH
1945out:
1946 return again;
1947}
1948
ae0138a8 1949static int ehci_state_executing(EHCIQueue *q)
94527ead 1950{
eb36a88e 1951 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
94527ead 1952
eb36a88e
GH
1953 assert(p != NULL);
1954 assert(p->qtdaddr == q->qtdaddr);
1955
0122f472 1956 ehci_execute_complete(q);
94527ead 1957
cae5d3f4
HG
1958 /* 4.10.3 */
1959 if (!q->async && q->transact_ctr > 0) {
1960 q->transact_ctr--;
94527ead
GH
1961 }
1962
94527ead 1963 /* 4.10.5 */
e696b1da 1964 if (p->packet.status == USB_RET_NAK) {
ae0138a8 1965 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
94527ead 1966 } else {
ae0138a8 1967 ehci_set_state(q->ehci, q->async, EST_WRITEBACK);
94527ead
GH
1968 }
1969
8ac6d699 1970 ehci_flush_qh(q);
574ef171 1971 return 1;
94527ead
GH
1972}
1973
1974
ae0138a8 1975static int ehci_state_writeback(EHCIQueue *q)
94527ead 1976{
eb36a88e 1977 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
4ed1c57a 1978 uint32_t *qtd, addr;
94527ead
GH
1979 int again = 0;
1980
1981 /* Write back the QTD from the QH area */
eb36a88e
GH
1982 assert(p != NULL);
1983 assert(p->qtdaddr == q->qtdaddr);
1984
1985 ehci_trace_qtd(q, NLPTR_GET(p->qtdaddr), (EHCIqtd *) &q->qh.next_qtd);
4ed1c57a
GH
1986 qtd = (uint32_t *) &q->qh.next_qtd;
1987 addr = NLPTR_GET(p->qtdaddr);
1988 put_dwords(q->ehci, addr + 2 * sizeof(uint32_t), qtd + 2, 2);
eb36a88e 1989 ehci_free_packet(p);
94527ead 1990
d2bd525f
GH
1991 /*
1992 * EHCI specs say go horizontal here.
1993 *
1994 * We can also advance the queue here for performance reasons. We
1995 * need to take care to only take that shortcut in case we've
1996 * processed the qtd just written back without errors, i.e. halt
1997 * bit is clear.
94527ead 1998 */
d2bd525f 1999 if (q->qh.token & QTD_TOKEN_HALT) {
ae0138a8 2000 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
d2bd525f
GH
2001 again = 1;
2002 } else {
ae0138a8 2003 ehci_set_state(q->ehci, q->async, EST_ADVANCEQUEUE);
94527ead 2004 again = 1;
d2bd525f 2005 }
94527ead
GH
2006 return again;
2007}
2008
2009/*
2010 * This is the state machine that is common to both async and periodic
2011 */
2012
ae0138a8 2013static void ehci_advance_state(EHCIState *ehci, int async)
94527ead 2014{
0122f472 2015 EHCIQueue *q = NULL;
1ae3f2f1 2016 int itd_count = 0;
94527ead 2017 int again;
94527ead
GH
2018
2019 do {
26d53979 2020 switch(ehci_get_state(ehci, async)) {
94527ead 2021 case EST_WAITLISTHEAD:
26d53979 2022 again = ehci_state_waitlisthead(ehci, async);
94527ead
GH
2023 break;
2024
2025 case EST_FETCHENTRY:
26d53979 2026 again = ehci_state_fetchentry(ehci, async);
94527ead
GH
2027 break;
2028
2029 case EST_FETCHQH:
0122f472 2030 q = ehci_state_fetchqh(ehci, async);
ae0138a8
GH
2031 if (q != NULL) {
2032 assert(q->async == async);
2033 again = 1;
2034 } else {
2035 again = 0;
2036 }
94527ead
GH
2037 break;
2038
2039 case EST_FETCHITD:
26d53979 2040 again = ehci_state_fetchitd(ehci, async);
1ae3f2f1 2041 itd_count++;
94527ead
GH
2042 break;
2043
2fe80192
GH
2044 case EST_FETCHSITD:
2045 again = ehci_state_fetchsitd(ehci, async);
1ae3f2f1 2046 itd_count++;
2fe80192
GH
2047 break;
2048
94527ead 2049 case EST_ADVANCEQUEUE:
cc8d2b65 2050 assert(q != NULL);
ae0138a8 2051 again = ehci_state_advqueue(q);
94527ead
GH
2052 break;
2053
2054 case EST_FETCHQTD:
cc8d2b65 2055 assert(q != NULL);
ae0138a8 2056 again = ehci_state_fetchqtd(q);
94527ead
GH
2057 break;
2058
2059 case EST_HORIZONTALQH:
cc8d2b65 2060 assert(q != NULL);
ae0138a8 2061 again = ehci_state_horizqh(q);
94527ead
GH
2062 break;
2063
2064 case EST_EXECUTE:
cc8d2b65 2065 assert(q != NULL);
ae0138a8 2066 again = ehci_state_execute(q);
3a215326
GH
2067 if (async) {
2068 ehci->async_stepdown = 0;
2069 }
94527ead
GH
2070 break;
2071
2072 case EST_EXECUTING:
8ac6d699 2073 assert(q != NULL);
3a215326
GH
2074 if (async) {
2075 ehci->async_stepdown = 0;
2076 }
ae0138a8 2077 again = ehci_state_executing(q);
94527ead
GH
2078 break;
2079
2080 case EST_WRITEBACK:
b2467216 2081 assert(q != NULL);
ae0138a8 2082 again = ehci_state_writeback(q);
80826240
HG
2083 if (!async) {
2084 ehci->periodic_sched_active = PERIODIC_ACTIVE;
2085 }
94527ead
GH
2086 break;
2087
2088 default:
2089 fprintf(stderr, "Bad state!\n");
2090 again = -1;
dfc6f865 2091 g_assert_not_reached();
94527ead
GH
2092 break;
2093 }
2094
1ae3f2f1
GH
2095 if (again < 0 || itd_count > 16) {
2096 /* TODO: notify guest (raise HSE irq?) */
94527ead
GH
2097 fprintf(stderr, "processing error - resetting ehci HC\n");
2098 ehci_reset(ehci);
2099 again = 0;
2100 }
2101 }
2102 while (again);
94527ead
GH
2103}
2104
2105static void ehci_advance_async_state(EHCIState *ehci)
2106{
df5d5c5c 2107 const int async = 1;
94527ead 2108
26d53979 2109 switch(ehci_get_state(ehci, async)) {
94527ead 2110 case EST_INACTIVE:
ec807d12 2111 if (!ehci_async_enabled(ehci)) {
94527ead
GH
2112 break;
2113 }
26d53979 2114 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
2115 // No break, fall through to ACTIVE
2116
2117 case EST_ACTIVE:
ec807d12 2118 if (!ehci_async_enabled(ehci)) {
e850c2b4 2119 ehci_queues_rip_all(ehci, async);
26d53979 2120 ehci_set_state(ehci, async, EST_INACTIVE);
94527ead
GH
2121 break;
2122 }
2123
4be23939 2124 /* make sure guest has acknowledged the doorbell interrupt */
94527ead
GH
2125 /* TO-DO: is this really needed? */
2126 if (ehci->usbsts & USBSTS_IAA) {
2127 DPRINTF("IAA status bit still set.\n");
2128 break;
2129 }
2130
94527ead
GH
2131 /* check that address register has been set */
2132 if (ehci->asynclistaddr == 0) {
2133 break;
2134 }
2135
26d53979 2136 ehci_set_state(ehci, async, EST_WAITLISTHEAD);
26d53979 2137 ehci_advance_state(ehci, async);
4be23939
HG
2138
2139 /* If the doorbell is set, the guest wants to make a change to the
2140 * schedule. The host controller needs to release cached data.
2141 * (section 4.8.2)
2142 */
2143 if (ehci->usbcmd & USBCMD_IAAD) {
2144 /* Remove all unseen qhs from the async qhs queue */
8f5457eb 2145 ehci_queues_rip_unseen(ehci, async);
1defcbd1 2146 trace_usb_ehci_doorbell_ack();
4be23939 2147 ehci->usbcmd &= ~USBCMD_IAAD;
7efc17af 2148 ehci_raise_irq(ehci, USBSTS_IAA);
4be23939 2149 }
94527ead
GH
2150 break;
2151
2152 default:
2153 /* this should only be due to a developer mistake */
2154 fprintf(stderr, "ehci: Bad asynchronous state %d. "
2155 "Resetting to active\n", ehci->astate);
dfc6f865 2156 g_assert_not_reached();
94527ead
GH
2157 }
2158}
2159
2160static void ehci_advance_periodic_state(EHCIState *ehci)
2161{
2162 uint32_t entry;
2163 uint32_t list;
df5d5c5c 2164 const int async = 0;
94527ead
GH
2165
2166 // 4.6
2167
26d53979 2168 switch(ehci_get_state(ehci, async)) {
94527ead 2169 case EST_INACTIVE:
ec807d12 2170 if (!(ehci->frindex & 7) && ehci_periodic_enabled(ehci)) {
26d53979 2171 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
2172 // No break, fall through to ACTIVE
2173 } else
2174 break;
2175
2176 case EST_ACTIVE:
ec807d12 2177 if (!(ehci->frindex & 7) && !ehci_periodic_enabled(ehci)) {
e850c2b4 2178 ehci_queues_rip_all(ehci, async);
26d53979 2179 ehci_set_state(ehci, async, EST_INACTIVE);
94527ead
GH
2180 break;
2181 }
2182
2183 list = ehci->periodiclistbase & 0xfffff000;
2184 /* check that register has been set */
2185 if (list == 0) {
2186 break;
2187 }
2188 list |= ((ehci->frindex & 0x1ff8) >> 1);
2189
55903f1d
GH
2190 if (get_dwords(ehci, list, &entry, 1) < 0) {
2191 break;
2192 }
94527ead
GH
2193
2194 DPRINTF("PERIODIC state adv fr=%d. [%08X] -> %08X\n",
2195 ehci->frindex / 8, list, entry);
0122f472 2196 ehci_set_fetch_addr(ehci, async,entry);
26d53979
GH
2197 ehci_set_state(ehci, async, EST_FETCHENTRY);
2198 ehci_advance_state(ehci, async);
8f5457eb 2199 ehci_queues_rip_unused(ehci, async);
94527ead
GH
2200 break;
2201
94527ead
GH
2202 default:
2203 /* this should only be due to a developer mistake */
2204 fprintf(stderr, "ehci: Bad periodic state %d. "
2205 "Resetting to active\n", ehci->pstate);
dfc6f865 2206 g_assert_not_reached();
94527ead
GH
2207 }
2208}
2209
9359a58b 2210static void ehci_update_frindex(EHCIState *ehci, int uframes)
6ceced0b 2211{
9359a58b 2212 if (!ehci_enabled(ehci) && ehci->pstate == EST_INACTIVE) {
6ceced0b
GH
2213 return;
2214 }
2215
72aa364b
EY
2216 /* Generate FLR interrupt if frame index rolls over 0x2000 */
2217 if ((ehci->frindex % 0x2000) + uframes >= 0x2000) {
2218 ehci_raise_irq(ehci, USBSTS_FLR);
2219 }
6ceced0b 2220
72aa364b
EY
2221 /* How many times will frindex roll over 0x4000 with this frame count?
2222 * usbsts_frindex is decremented by 0x4000 on rollover until it reaches 0
2223 */
2224 int rollovers = (ehci->frindex + uframes) / 0x4000;
2225 if (rollovers > 0) {
2226 if (ehci->usbsts_frindex >= (rollovers * 0x4000)) {
2227 ehci->usbsts_frindex -= 0x4000 * rollovers;
2228 } else {
2229 ehci->usbsts_frindex = 0;
6ceced0b
GH
2230 }
2231 }
72aa364b
EY
2232
2233 ehci->frindex = (ehci->frindex + uframes) % 0x4000;
6ceced0b
GH
2234}
2235
3bfecee2 2236static void ehci_work_bh(void *opaque)
94527ead
GH
2237{
2238 EHCIState *ehci = opaque;
7efc17af 2239 int need_timer = 0;
94527ead 2240 int64_t expire_time, t_now;
adddecb1 2241 uint64_t ns_elapsed;
3ae7eb88 2242 uint64_t uframes, skipped_uframes;
94527ead 2243 int i;
94527ead 2244
ad3c5412
GH
2245 if (ehci->working) {
2246 return;
2247 }
2248 ehci->working = true;
2249
bc72ad67 2250 t_now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
adddecb1 2251 ns_elapsed = t_now - ehci->last_run_ns;
9359a58b 2252 uframes = ns_elapsed / UFRAME_TIMER_NS;
94527ead 2253
3a215326 2254 if (ehci_periodic_enabled(ehci) || ehci->pstate != EST_INACTIVE) {
7efc17af 2255 need_timer++;
94527ead 2256
9359a58b
HG
2257 if (uframes > (ehci->maxframes * 8)) {
2258 skipped_uframes = uframes - (ehci->maxframes * 8);
2259 ehci_update_frindex(ehci, skipped_uframes);
2260 ehci->last_run_ns += UFRAME_TIMER_NS * skipped_uframes;
2261 uframes -= skipped_uframes;
2262 DPRINTF("WARNING - EHCI skipped %d uframes\n", skipped_uframes);
f020ed36
GH
2263 }
2264
9359a58b 2265 for (i = 0; i < uframes; i++) {
8f74ed1e
HG
2266 /*
2267 * If we're running behind schedule, we should not catch up
2268 * too fast, as that will make some guests unhappy:
9359a58b 2269 * 1) We must process a minimum of MIN_UFR_PER_TICK frames,
8f74ed1e
HG
2270 * otherwise we will never catch up
2271 * 2) Process frames until the guest has requested an irq (IOC)
2272 */
9359a58b 2273 if (i >= MIN_UFR_PER_TICK) {
8f74ed1e
HG
2274 ehci_commit_irq(ehci);
2275 if ((ehci->usbsts & USBINTR_MASK) & ehci->usbintr) {
2276 break;
2277 }
2278 }
80826240
HG
2279 if (ehci->periodic_sched_active) {
2280 ehci->periodic_sched_active--;
2281 }
3a215326 2282 ehci_update_frindex(ehci, 1);
9359a58b
HG
2283 if ((ehci->frindex & 7) == 0) {
2284 ehci_advance_periodic_state(ehci);
2285 }
2286 ehci->last_run_ns += UFRAME_TIMER_NS;
3a215326
GH
2287 }
2288 } else {
80826240 2289 ehci->periodic_sched_active = 0;
9359a58b
HG
2290 ehci_update_frindex(ehci, uframes);
2291 ehci->last_run_ns += UFRAME_TIMER_NS * uframes;
94527ead
GH
2292 }
2293
80826240
HG
2294 if (ehci->periodic_sched_active) {
2295 ehci->async_stepdown = 0;
2296 } else if (ehci->async_stepdown < ehci->maxframes / 2) {
2297 ehci->async_stepdown++;
2298 }
2299
94527ead
GH
2300 /* Async is not inside loop since it executes everything it can once
2301 * called
2302 */
3a215326 2303 if (ehci_async_enabled(ehci) || ehci->astate != EST_INACTIVE) {
7efc17af 2304 need_timer++;
afb7a0b8 2305 ehci_advance_async_state(ehci);
3a215326 2306 }
94527ead 2307
7efc17af
GH
2308 ehci_commit_irq(ehci);
2309 if (ehci->usbsts_pending) {
2310 need_timer++;
2311 ehci->async_stepdown = 0;
daf25307 2312 }
f0ad01f9 2313
40862309
GH
2314 if (ehci_enabled(ehci) && (ehci->usbintr & USBSTS_FLR)) {
2315 need_timer++;
2316 }
2317
7efc17af 2318 if (need_timer) {
44272b0f
HG
2319 /* If we've raised int, we speed up the timer, so that we quickly
2320 * notice any new packets queued up in response */
2321 if (ehci->int_req_by_async && (ehci->usbsts & USBSTS_INT)) {
73bcb24d
RS
2322 expire_time = t_now +
2323 NANOSECONDS_PER_SECOND / (FRAME_TIMER_FREQ * 4);
44272b0f
HG
2324 ehci->int_req_by_async = false;
2325 } else {
73bcb24d 2326 expire_time = t_now + (NANOSECONDS_PER_SECOND
afb7a0b8 2327 * (ehci->async_stepdown+1) / FRAME_TIMER_FREQ);
44272b0f 2328 }
bc72ad67 2329 timer_mod(ehci->frame_timer, expire_time);
7efc17af 2330 }
ad3c5412
GH
2331
2332 ehci->working = false;
94527ead
GH
2333}
2334
3bfecee2
GH
2335static void ehci_work_timer(void *opaque)
2336{
2337 EHCIState *ehci = opaque;
2338
2339 qemu_bh_schedule(ehci->async_bh);
2340}
2341
3e4f910c
GH
2342static const MemoryRegionOps ehci_mmio_caps_ops = {
2343 .read = ehci_caps_read,
dff0367c 2344 .write = ehci_caps_write,
3e4f910c
GH
2345 .valid.min_access_size = 1,
2346 .valid.max_access_size = 4,
2347 .impl.min_access_size = 1,
2348 .impl.max_access_size = 1,
2349 .endianness = DEVICE_LITTLE_ENDIAN,
2350};
2351
2352static const MemoryRegionOps ehci_mmio_opreg_ops = {
2353 .read = ehci_opreg_read,
2354 .write = ehci_opreg_write,
2355 .valid.min_access_size = 4,
2356 .valid.max_access_size = 4,
2357 .endianness = DEVICE_LITTLE_ENDIAN,
2358};
2359
2360static const MemoryRegionOps ehci_mmio_port_ops = {
2361 .read = ehci_port_read,
2362 .write = ehci_port_write,
2363 .valid.min_access_size = 4,
2364 .valid.max_access_size = 4,
e57964f5 2365 .endianness = DEVICE_LITTLE_ENDIAN,
94527ead
GH
2366};
2367
94527ead
GH
2368static USBPortOps ehci_port_ops = {
2369 .attach = ehci_attach,
2370 .detach = ehci_detach,
4706ab6c 2371 .child_detach = ehci_child_detach,
a0a3167a 2372 .wakeup = ehci_wakeup,
94527ead
GH
2373 .complete = ehci_async_complete_packet,
2374};
2375
ec56214f 2376static USBBusOps ehci_bus_ops_companion = {
a0a3167a 2377 .register_companion = ehci_register_companion,
80826240 2378 .wakeup_endpoint = ehci_wakeup_endpoint,
07771f6f 2379};
ec56214f
GH
2380static USBBusOps ehci_bus_ops_standalone = {
2381 .wakeup_endpoint = ehci_wakeup_endpoint,
2382};
07771f6f 2383
44b1ff31 2384static int usb_ehci_pre_save(void *opaque)
9359a58b
HG
2385{
2386 EHCIState *ehci = opaque;
2387 uint32_t new_frindex;
2388
2389 /* Round down frindex to a multiple of 8 for migration compatibility */
2390 new_frindex = ehci->frindex & ~7;
2391 ehci->last_run_ns -= (ehci->frindex - new_frindex) * UFRAME_TIMER_NS;
2392 ehci->frindex = new_frindex;
44b1ff31
DDAG
2393
2394 return 0;
9359a58b
HG
2395}
2396
9a773408
GH
2397static int usb_ehci_post_load(void *opaque, int version_id)
2398{
2399 EHCIState *s = opaque;
2400 int i;
2401
2402 for (i = 0; i < NB_PORTS; i++) {
2403 USBPort *companion = s->companion_ports[i];
2404 if (companion == NULL) {
2405 continue;
2406 }
2407 if (s->portsc[i] & PORTSC_POWNER) {
2408 companion->dev = s->ports[i].dev;
2409 } else {
2410 companion->dev = NULL;
2411 }
2412 }
2413
2414 return 0;
2415}
2416
ceab6f96
HG
2417static void usb_ehci_vm_state_change(void *opaque, int running, RunState state)
2418{
2419 EHCIState *ehci = opaque;
2420
2421 /*
2422 * We don't migrate the EHCIQueue-s, instead we rebuild them for the
2423 * schedule in guest memory. We must do the rebuilt ASAP, so that
2424 * USB-devices which have async handled packages have a packet in the
2425 * ep queue to match the completion with.
2426 */
2427 if (state == RUN_STATE_RUNNING) {
2428 ehci_advance_async_state(ehci);
2429 }
2430
2431 /*
2432 * The schedule rebuilt from guest memory could cause the migration dest
2433 * to miss a QH unlink, and fail to cancel packets, since the unlinked QH
2434 * will never have existed on the destination. Therefor we must flush the
2435 * async schedule on savevm to catch any not yet noticed unlinks.
2436 */
2437 if (state == RUN_STATE_SAVE_VM) {
2438 ehci_advance_async_state(ehci);
2439 ehci_queues_rip_unseen(ehci, 1);
2440 }
2441}
2442
0bf96f94 2443const VMStateDescription vmstate_ehci = {
5010d4dc 2444 .name = "ehci-core",
6d3b6d3d
GH
2445 .version_id = 2,
2446 .minimum_version_id = 1,
9359a58b 2447 .pre_save = usb_ehci_pre_save,
9a773408 2448 .post_load = usb_ehci_post_load,
6e3d652a 2449 .fields = (VMStateField[]) {
9a773408
GH
2450 /* mmio registers */
2451 VMSTATE_UINT32(usbcmd, EHCIState),
2452 VMSTATE_UINT32(usbsts, EHCIState),
6d3b6d3d
GH
2453 VMSTATE_UINT32_V(usbsts_pending, EHCIState, 2),
2454 VMSTATE_UINT32_V(usbsts_frindex, EHCIState, 2),
9a773408
GH
2455 VMSTATE_UINT32(usbintr, EHCIState),
2456 VMSTATE_UINT32(frindex, EHCIState),
2457 VMSTATE_UINT32(ctrldssegment, EHCIState),
2458 VMSTATE_UINT32(periodiclistbase, EHCIState),
2459 VMSTATE_UINT32(asynclistaddr, EHCIState),
2460 VMSTATE_UINT32(configflag, EHCIState),
2461 VMSTATE_UINT32(portsc[0], EHCIState),
2462 VMSTATE_UINT32(portsc[1], EHCIState),
2463 VMSTATE_UINT32(portsc[2], EHCIState),
2464 VMSTATE_UINT32(portsc[3], EHCIState),
2465 VMSTATE_UINT32(portsc[4], EHCIState),
2466 VMSTATE_UINT32(portsc[5], EHCIState),
2467 /* frame timer */
e720677e 2468 VMSTATE_TIMER_PTR(frame_timer, EHCIState),
9a773408
GH
2469 VMSTATE_UINT64(last_run_ns, EHCIState),
2470 VMSTATE_UINT32(async_stepdown, EHCIState),
2471 /* schedule state */
2472 VMSTATE_UINT32(astate, EHCIState),
2473 VMSTATE_UINT32(pstate, EHCIState),
2474 VMSTATE_UINT32(a_fetch_addr, EHCIState),
2475 VMSTATE_UINT32(p_fetch_addr, EHCIState),
2476 VMSTATE_END_OF_LIST()
2477 }
9490fb06
GH
2478};
2479
08f4c90b 2480void usb_ehci_realize(EHCIState *s, DeviceState *dev, Error **errp)
94527ead 2481{
94527ead
GH
2482 int i;
2483
cc8d6a84
KJS
2484 if (s->portnr > NB_PORTS) {
2485 error_setg(errp, "Too many ports! Max. port number is %d.",
2486 NB_PORTS);
2487 return;
2488 }
2a7f2630
GH
2489 if (s->maxframes < 8 || s->maxframes > 512) {
2490 error_setg(errp, "maxframes %d out if range (8 .. 512)",
2491 s->maxframes);
2492 return;
2493 }
cc8d6a84 2494
ec56214f
GH
2495 usb_bus_new(&s->bus, sizeof(s->bus), s->companion_enable ?
2496 &ehci_bus_ops_companion : &ehci_bus_ops_standalone, dev);
cc8d6a84 2497 for (i = 0; i < s->portnr; i++) {
d4614cc3
AF
2498 usb_register_port(&s->bus, &s->ports[i], s, i, &ehci_port_ops,
2499 USB_SPEED_MASK_HIGH);
2500 s->ports[i].dev = 0;
2501 }
2502
3bfecee2
GH
2503 s->frame_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, ehci_work_timer, s);
2504 s->async_bh = qemu_bh_new(ehci_work_bh, s);
adbecc89 2505 s->device = dev;
d4614cc3 2506
05a36991 2507 s->vmstate = qemu_add_vm_change_state_handler(usb_ehci_vm_state_change, s);
d4614cc3
AF
2508}
2509
4e130cf6
GA
2510void usb_ehci_unrealize(EHCIState *s, DeviceState *dev, Error **errp)
2511{
d733f74c
GA
2512 trace_usb_ehci_unrealize();
2513
4e130cf6
GA
2514 if (s->frame_timer) {
2515 timer_del(s->frame_timer);
2516 timer_free(s->frame_timer);
2517 s->frame_timer = NULL;
2518 }
2519 if (s->async_bh) {
2520 qemu_bh_delete(s->async_bh);
2521 }
2522
2523 ehci_queues_rip_all(s, 0);
2524 ehci_queues_rip_all(s, 1);
2525
2526 memory_region_del_subregion(&s->mem, &s->mem_caps);
2527 memory_region_del_subregion(&s->mem, &s->mem_opreg);
2528 memory_region_del_subregion(&s->mem, &s->mem_ports);
2529
2530 usb_bus_release(&s->bus);
2531
2532 if (s->vmstate) {
2533 qemu_del_vm_change_state_handler(s->vmstate);
2534 }
2535}
2536
d4614cc3
AF
2537void usb_ehci_init(EHCIState *s, DeviceState *dev)
2538{
3e4f910c 2539 /* 2.2 host controller interface version */
27a11324 2540 s->caps[0x00] = (uint8_t)(s->opregbase - s->capsbase);
3e4f910c
GH
2541 s->caps[0x01] = 0x00;
2542 s->caps[0x02] = 0x00;
2543 s->caps[0x03] = 0x01; /* HC version */
cc8d6a84 2544 s->caps[0x04] = s->portnr; /* Number of downstream ports */
3e4f910c
GH
2545 s->caps[0x05] = 0x00; /* No companion ports at present */
2546 s->caps[0x06] = 0x00;
2547 s->caps[0x07] = 0x00;
2548 s->caps[0x08] = 0x80; /* We can cache whole frame, no 64-bit */
3e4f910c
GH
2549 s->caps[0x0a] = 0x00;
2550 s->caps[0x0b] = 0x00;
94527ead 2551
df5d5c5c
HG
2552 QTAILQ_INIT(&s->aqueues);
2553 QTAILQ_INIT(&s->pqueues);
7341ea07 2554 usb_packet_init(&s->ipacket);
94527ead 2555
22fc860b
PB
2556 memory_region_init(&s->mem, OBJECT(dev), "ehci", MMIO_SIZE);
2557 memory_region_init_io(&s->mem_caps, OBJECT(dev), &ehci_mmio_caps_ops, s,
27a11324 2558 "capabilities", CAPA_SIZE);
22fc860b 2559 memory_region_init_io(&s->mem_opreg, OBJECT(dev), &ehci_mmio_opreg_ops, s,
cc8d6a84 2560 "operational", s->portscbase);
22fc860b 2561 memory_region_init_io(&s->mem_ports, OBJECT(dev), &ehci_mmio_port_ops, s,
cc8d6a84 2562 "ports", 4 * s->portnr);
3e4f910c 2563
27a11324
PC
2564 memory_region_add_subregion(&s->mem, s->capsbase, &s->mem_caps);
2565 memory_region_add_subregion(&s->mem, s->opregbase, &s->mem_opreg);
cc8d6a84 2566 memory_region_add_subregion(&s->mem, s->opregbase + s->portscbase,
27a11324 2567 &s->mem_ports);
5010d4dc
PC
2568}
2569
d710e1e7
LQ
2570void usb_ehci_finalize(EHCIState *s)
2571{
2572 usb_packet_cleanup(&s->ipacket);
2573}
2574
94527ead
GH
2575/*
2576 * vim: expandtab ts=4
2577 */
This page took 1.037552 seconds and 4 git commands to generate.