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