]> git.proxmox.com Git - mirror_qemu.git/blame - hw/usb-ehci.c
usb-ehci: drop unused num-ports state member
[mirror_qemu.git] / hw / usb-ehci.c
CommitLineData
94527ead
GH
1/*
2 * QEMU USB EHCI Emulation
3 *
4 * Copyright(c) 2008 Emutex Ltd. (address@hidden)
5 *
6 * EHCI project was started by Mark Burkley, with contributions by
7 * Niels de Vos. David S. Ahern continued working on it. Kevin Wolf,
8 * Jan Kiszka and Vincent Palatin contributed bugfixes.
9 *
10 *
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or(at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23 *
24 * TODO:
25 * o Downstream port handoff
26 */
27
28#include "hw.h"
29#include "qemu-timer.h"
30#include "usb.h"
31#include "pci.h"
32#include "monitor.h"
439a97cc 33#include "trace.h"
94527ead
GH
34
35#define EHCI_DEBUG 0
94527ead 36
26d53979 37#if EHCI_DEBUG
94527ead
GH
38#define DPRINTF printf
39#else
40#define DPRINTF(...)
41#endif
42
94527ead
GH
43/* internal processing - reset HC to try and recover */
44#define USB_RET_PROCERR (-99)
45
46#define MMIO_SIZE 0x1000
47
48/* Capability Registers Base Address - section 2.2 */
49#define CAPREGBASE 0x0000
50#define CAPLENGTH CAPREGBASE + 0x0000 // 1-byte, 0x0001 reserved
51#define HCIVERSION CAPREGBASE + 0x0002 // 2-bytes, i/f version #
52#define HCSPARAMS CAPREGBASE + 0x0004 // 4-bytes, structural params
53#define HCCPARAMS CAPREGBASE + 0x0008 // 4-bytes, capability params
54#define EECP HCCPARAMS + 1
55#define HCSPPORTROUTE1 CAPREGBASE + 0x000c
56#define HCSPPORTROUTE2 CAPREGBASE + 0x0010
57
58#define OPREGBASE 0x0020 // Operational Registers Base Address
59
60#define USBCMD OPREGBASE + 0x0000
61#define USBCMD_RUNSTOP (1 << 0) // run / Stop
62#define USBCMD_HCRESET (1 << 1) // HC Reset
63#define USBCMD_FLS (3 << 2) // Frame List Size
64#define USBCMD_FLS_SH 2 // Frame List Size Shift
65#define USBCMD_PSE (1 << 4) // Periodic Schedule Enable
66#define USBCMD_ASE (1 << 5) // Asynch Schedule Enable
67#define USBCMD_IAAD (1 << 6) // Int Asynch Advance Doorbell
68#define USBCMD_LHCR (1 << 7) // Light Host Controller Reset
69#define USBCMD_ASPMC (3 << 8) // Async Sched Park Mode Count
70#define USBCMD_ASPME (1 << 11) // Async Sched Park Mode Enable
71#define USBCMD_ITC (0x7f << 16) // Int Threshold Control
72#define USBCMD_ITC_SH 16 // Int Threshold Control Shift
73
74#define USBSTS OPREGBASE + 0x0004
75#define USBSTS_RO_MASK 0x0000003f
76#define USBSTS_INT (1 << 0) // USB Interrupt
77#define USBSTS_ERRINT (1 << 1) // Error Interrupt
78#define USBSTS_PCD (1 << 2) // Port Change Detect
79#define USBSTS_FLR (1 << 3) // Frame List Rollover
80#define USBSTS_HSE (1 << 4) // Host System Error
81#define USBSTS_IAA (1 << 5) // Interrupt on Async Advance
82#define USBSTS_HALT (1 << 12) // HC Halted
83#define USBSTS_REC (1 << 13) // Reclamation
84#define USBSTS_PSS (1 << 14) // Periodic Schedule Status
85#define USBSTS_ASS (1 << 15) // Asynchronous Schedule Status
86
87/*
88 * Interrupt enable bits correspond to the interrupt active bits in USBSTS
89 * so no need to redefine here.
90 */
91#define USBINTR OPREGBASE + 0x0008
92#define USBINTR_MASK 0x0000003f
93
94#define FRINDEX OPREGBASE + 0x000c
95#define CTRLDSSEGMENT OPREGBASE + 0x0010
96#define PERIODICLISTBASE OPREGBASE + 0x0014
97#define ASYNCLISTADDR OPREGBASE + 0x0018
98#define ASYNCLISTADDR_MASK 0xffffffe0
99
100#define CONFIGFLAG OPREGBASE + 0x0040
101
102#define PORTSC (OPREGBASE + 0x0044)
103#define PORTSC_BEGIN PORTSC
104#define PORTSC_END (PORTSC + 4 * NB_PORTS)
105/*
106 * Bits that are reserverd or are read-only are masked out of values
107 * written to us by software
108 */
109#define PORTSC_RO_MASK 0x007021c5
110#define PORTSC_RWC_MASK 0x0000002a
111#define PORTSC_WKOC_E (1 << 22) // Wake on Over Current Enable
112#define PORTSC_WKDS_E (1 << 21) // Wake on Disconnect Enable
113#define PORTSC_WKCN_E (1 << 20) // Wake on Connect Enable
114#define PORTSC_PTC (15 << 16) // Port Test Control
115#define PORTSC_PTC_SH 16 // Port Test Control shift
116#define PORTSC_PIC (3 << 14) // Port Indicator Control
117#define PORTSC_PIC_SH 14 // Port Indicator Control Shift
118#define PORTSC_POWNER (1 << 13) // Port Owner
119#define PORTSC_PPOWER (1 << 12) // Port Power
120#define PORTSC_LINESTAT (3 << 10) // Port Line Status
121#define PORTSC_LINESTAT_SH 10 // Port Line Status Shift
122#define PORTSC_PRESET (1 << 8) // Port Reset
123#define PORTSC_SUSPEND (1 << 7) // Port Suspend
124#define PORTSC_FPRES (1 << 6) // Force Port Resume
125#define PORTSC_OCC (1 << 5) // Over Current Change
126#define PORTSC_OCA (1 << 4) // Over Current Active
127#define PORTSC_PEDC (1 << 3) // Port Enable/Disable Change
128#define PORTSC_PED (1 << 2) // Port Enable/Disable
129#define PORTSC_CSC (1 << 1) // Connect Status Change
130#define PORTSC_CONNECT (1 << 0) // Current Connect Status
131
132#define FRAME_TIMER_FREQ 1000
adddecb1 133#define FRAME_TIMER_NS (1000000000 / FRAME_TIMER_FREQ)
94527ead
GH
134
135#define NB_MAXINTRATE 8 // Max rate at which controller issues ints
136#define NB_PORTS 4 // Number of downstream ports
137#define BUFF_SIZE 5*4096 // Max bytes to transfer per transaction
138#define MAX_ITERATIONS 20 // Max number of QH before we break the loop
139#define MAX_QH 100 // Max allowable queue heads in a chain
140
141/* Internal periodic / asynchronous schedule state machine states
142 */
143typedef enum {
144 EST_INACTIVE = 1000,
145 EST_ACTIVE,
146 EST_EXECUTING,
147 EST_SLEEPING,
148 /* The following states are internal to the state machine function
149 */
150 EST_WAITLISTHEAD,
151 EST_FETCHENTRY,
152 EST_FETCHQH,
153 EST_FETCHITD,
154 EST_ADVANCEQUEUE,
155 EST_FETCHQTD,
156 EST_EXECUTE,
157 EST_WRITEBACK,
158 EST_HORIZONTALQH
159} EHCI_STATES;
160
161/* macros for accessing fields within next link pointer entry */
162#define NLPTR_GET(x) ((x) & 0xffffffe0)
163#define NLPTR_TYPE_GET(x) (((x) >> 1) & 3)
164#define NLPTR_TBIT(x) ((x) & 1) // 1=invalid, 0=valid
165
166/* link pointer types */
167#define NLPTR_TYPE_ITD 0 // isoc xfer descriptor
168#define NLPTR_TYPE_QH 1 // queue head
169#define NLPTR_TYPE_STITD 2 // split xaction, isoc xfer descriptor
170#define NLPTR_TYPE_FSTN 3 // frame span traversal node
171
172
173/* EHCI spec version 1.0 Section 3.3
174 */
175typedef struct EHCIitd {
176 uint32_t next;
177
178 uint32_t transact[8];
179#define ITD_XACT_ACTIVE (1 << 31)
180#define ITD_XACT_DBERROR (1 << 30)
181#define ITD_XACT_BABBLE (1 << 29)
182#define ITD_XACT_XACTERR (1 << 28)
183#define ITD_XACT_LENGTH_MASK 0x0fff0000
184#define ITD_XACT_LENGTH_SH 16
185#define ITD_XACT_IOC (1 << 15)
186#define ITD_XACT_PGSEL_MASK 0x00007000
187#define ITD_XACT_PGSEL_SH 12
188#define ITD_XACT_OFFSET_MASK 0x00000fff
189
190 uint32_t bufptr[7];
191#define ITD_BUFPTR_MASK 0xfffff000
192#define ITD_BUFPTR_SH 12
193#define ITD_BUFPTR_EP_MASK 0x00000f00
194#define ITD_BUFPTR_EP_SH 8
195#define ITD_BUFPTR_DEVADDR_MASK 0x0000007f
196#define ITD_BUFPTR_DEVADDR_SH 0
197#define ITD_BUFPTR_DIRECTION (1 << 11)
198#define ITD_BUFPTR_MAXPKT_MASK 0x000007ff
199#define ITD_BUFPTR_MAXPKT_SH 0
200#define ITD_BUFPTR_MULT_MASK 0x00000003
e654887f 201#define ITD_BUFPTR_MULT_SH 0
94527ead
GH
202} EHCIitd;
203
204/* EHCI spec version 1.0 Section 3.4
205 */
206typedef struct EHCIsitd {
207 uint32_t next; // Standard next link pointer
208 uint32_t epchar;
209#define SITD_EPCHAR_IO (1 << 31)
210#define SITD_EPCHAR_PORTNUM_MASK 0x7f000000
211#define SITD_EPCHAR_PORTNUM_SH 24
212#define SITD_EPCHAR_HUBADD_MASK 0x007f0000
213#define SITD_EPCHAR_HUBADDR_SH 16
214#define SITD_EPCHAR_EPNUM_MASK 0x00000f00
215#define SITD_EPCHAR_EPNUM_SH 8
216#define SITD_EPCHAR_DEVADDR_MASK 0x0000007f
217
218 uint32_t uframe;
219#define SITD_UFRAME_CMASK_MASK 0x0000ff00
220#define SITD_UFRAME_CMASK_SH 8
221#define SITD_UFRAME_SMASK_MASK 0x000000ff
222
223 uint32_t results;
224#define SITD_RESULTS_IOC (1 << 31)
225#define SITD_RESULTS_PGSEL (1 << 30)
226#define SITD_RESULTS_TBYTES_MASK 0x03ff0000
227#define SITD_RESULTS_TYBYTES_SH 16
228#define SITD_RESULTS_CPROGMASK_MASK 0x0000ff00
229#define SITD_RESULTS_CPROGMASK_SH 8
230#define SITD_RESULTS_ACTIVE (1 << 7)
231#define SITD_RESULTS_ERR (1 << 6)
232#define SITD_RESULTS_DBERR (1 << 5)
233#define SITD_RESULTS_BABBLE (1 << 4)
234#define SITD_RESULTS_XACTERR (1 << 3)
235#define SITD_RESULTS_MISSEDUF (1 << 2)
236#define SITD_RESULTS_SPLITXSTATE (1 << 1)
237
238 uint32_t bufptr[2];
239#define SITD_BUFPTR_MASK 0xfffff000
240#define SITD_BUFPTR_CURROFF_MASK 0x00000fff
241#define SITD_BUFPTR_TPOS_MASK 0x00000018
242#define SITD_BUFPTR_TPOS_SH 3
243#define SITD_BUFPTR_TCNT_MASK 0x00000007
244
245 uint32_t backptr; // Standard next link pointer
246} EHCIsitd;
247
248/* EHCI spec version 1.0 Section 3.5
249 */
250typedef struct EHCIqtd {
251 uint32_t next; // Standard next link pointer
252 uint32_t altnext; // Standard next link pointer
253 uint32_t token;
254#define QTD_TOKEN_DTOGGLE (1 << 31)
255#define QTD_TOKEN_TBYTES_MASK 0x7fff0000
256#define QTD_TOKEN_TBYTES_SH 16
257#define QTD_TOKEN_IOC (1 << 15)
258#define QTD_TOKEN_CPAGE_MASK 0x00007000
259#define QTD_TOKEN_CPAGE_SH 12
260#define QTD_TOKEN_CERR_MASK 0x00000c00
261#define QTD_TOKEN_CERR_SH 10
262#define QTD_TOKEN_PID_MASK 0x00000300
263#define QTD_TOKEN_PID_SH 8
264#define QTD_TOKEN_ACTIVE (1 << 7)
265#define QTD_TOKEN_HALT (1 << 6)
266#define QTD_TOKEN_DBERR (1 << 5)
267#define QTD_TOKEN_BABBLE (1 << 4)
268#define QTD_TOKEN_XACTERR (1 << 3)
269#define QTD_TOKEN_MISSEDUF (1 << 2)
270#define QTD_TOKEN_SPLITXSTATE (1 << 1)
271#define QTD_TOKEN_PING (1 << 0)
272
273 uint32_t bufptr[5]; // Standard buffer pointer
274#define QTD_BUFPTR_MASK 0xfffff000
275} EHCIqtd;
276
277/* EHCI spec version 1.0 Section 3.6
278 */
279typedef struct EHCIqh {
280 uint32_t next; // Standard next link pointer
281
282 /* endpoint characteristics */
283 uint32_t epchar;
284#define QH_EPCHAR_RL_MASK 0xf0000000
285#define QH_EPCHAR_RL_SH 28
286#define QH_EPCHAR_C (1 << 27)
287#define QH_EPCHAR_MPLEN_MASK 0x07FF0000
288#define QH_EPCHAR_MPLEN_SH 16
289#define QH_EPCHAR_H (1 << 15)
290#define QH_EPCHAR_DTC (1 << 14)
291#define QH_EPCHAR_EPS_MASK 0x00003000
292#define QH_EPCHAR_EPS_SH 12
293#define EHCI_QH_EPS_FULL 0
294#define EHCI_QH_EPS_LOW 1
295#define EHCI_QH_EPS_HIGH 2
296#define EHCI_QH_EPS_RESERVED 3
297
298#define QH_EPCHAR_EP_MASK 0x00000f00
299#define QH_EPCHAR_EP_SH 8
300#define QH_EPCHAR_I (1 << 7)
301#define QH_EPCHAR_DEVADDR_MASK 0x0000007f
302#define QH_EPCHAR_DEVADDR_SH 0
303
304 /* endpoint capabilities */
305 uint32_t epcap;
306#define QH_EPCAP_MULT_MASK 0xc0000000
307#define QH_EPCAP_MULT_SH 30
308#define QH_EPCAP_PORTNUM_MASK 0x3f800000
309#define QH_EPCAP_PORTNUM_SH 23
310#define QH_EPCAP_HUBADDR_MASK 0x007f0000
311#define QH_EPCAP_HUBADDR_SH 16
312#define QH_EPCAP_CMASK_MASK 0x0000ff00
313#define QH_EPCAP_CMASK_SH 8
314#define QH_EPCAP_SMASK_MASK 0x000000ff
315#define QH_EPCAP_SMASK_SH 0
316
317 uint32_t current_qtd; // Standard next link pointer
318 uint32_t next_qtd; // Standard next link pointer
319 uint32_t altnext_qtd;
320#define QH_ALTNEXT_NAKCNT_MASK 0x0000001e
321#define QH_ALTNEXT_NAKCNT_SH 1
322
323 uint32_t token; // Same as QTD token
324 uint32_t bufptr[5]; // Standard buffer pointer
325#define BUFPTR_CPROGMASK_MASK 0x000000ff
326#define BUFPTR_FRAMETAG_MASK 0x0000001f
327#define BUFPTR_SBYTES_MASK 0x00000fe0
328#define BUFPTR_SBYTES_SH 5
329} EHCIqh;
330
331/* EHCI spec version 1.0 Section 3.7
332 */
333typedef struct EHCIfstn {
334 uint32_t next; // Standard next link pointer
335 uint32_t backptr; // Standard next link pointer
336} EHCIfstn;
337
0122f472
GH
338typedef struct EHCIQueue EHCIQueue;
339typedef struct EHCIState EHCIState;
340
341enum async_state {
342 EHCI_ASYNC_NONE = 0,
343 EHCI_ASYNC_INFLIGHT,
344 EHCI_ASYNC_FINISHED,
345};
346
347struct EHCIQueue {
348 EHCIState *ehci;
8ac6d699
GH
349 QTAILQ_ENTRY(EHCIQueue) next;
350 bool async_schedule;
adddecb1
GH
351 uint32_t seen;
352 uint64_t ts;
0122f472
GH
353
354 /* cached data from guest - needs to be flushed
355 * when guest removes an entry (doorbell, handshake sequence)
356 */
357 EHCIqh qh; // copy of current QH (being worked on)
358 uint32_t qhaddr; // address QH read from
359 EHCIqtd qtd; // copy of current QTD (being worked on)
360 uint32_t qtdaddr; // address QTD read from
361
362 USBPacket packet;
363 uint8_t buffer[BUFF_SIZE];
364 int pid;
365 uint32_t tbytes;
366 enum async_state async;
367 int usb_status;
368};
369
370struct EHCIState {
94527ead 371 PCIDevice dev;
0122f472 372 USBBus bus;
94527ead
GH
373 qemu_irq irq;
374 target_phys_addr_t mem_base;
375 int mem;
16a2dee6
GH
376
377 /* properties */
378 uint32_t freq;
379 uint32_t maxframes;
380
94527ead
GH
381 /*
382 * EHCI spec version 1.0 Section 2.3
383 * Host Controller Operational Registers
384 */
385 union {
386 uint8_t mmio[MMIO_SIZE];
387 struct {
388 uint8_t cap[OPREGBASE];
389 uint32_t usbcmd;
390 uint32_t usbsts;
391 uint32_t usbintr;
392 uint32_t frindex;
393 uint32_t ctrldssegment;
394 uint32_t periodiclistbase;
395 uint32_t asynclistaddr;
396 uint32_t notused[9];
397 uint32_t configflag;
398 uint32_t portsc[NB_PORTS];
399 };
400 };
0122f472 401
94527ead
GH
402 /*
403 * Internal states, shadow registers, etc
404 */
405 uint32_t sofv;
406 QEMUTimer *frame_timer;
407 int attach_poll_counter;
408 int astate; // Current state in asynchronous schedule
409 int pstate; // Current state in periodic schedule
410 USBPort ports[NB_PORTS];
94527ead 411 uint32_t usbsts_pending;
8ac6d699 412 QTAILQ_HEAD(, EHCIQueue) queues;
94527ead 413
0122f472
GH
414 uint32_t a_fetch_addr; // which address to look at next
415 uint32_t p_fetch_addr; // which address to look at next
94527ead 416
0122f472
GH
417 USBPacket ipacket;
418 uint8_t ibuffer[BUFF_SIZE];
94527ead 419 int isoch_pause;
0122f472 420
adddecb1 421 uint64_t last_run_ns;
0122f472 422};
94527ead
GH
423
424#define SET_LAST_RUN_CLOCK(s) \
adddecb1 425 (s)->last_run_ns = qemu_get_clock_ns(vm_clock);
94527ead
GH
426
427/* nifty macros from Arnon's EHCI version */
428#define get_field(data, field) \
429 (((data) & field##_MASK) >> field##_SH)
430
431#define set_field(data, newval, field) do { \
432 uint32_t val = *data; \
433 val &= ~ field##_MASK; \
434 val |= ((newval) << field##_SH) & field##_MASK; \
435 *data = val; \
436 } while(0)
437
26d53979
GH
438static const char *ehci_state_names[] = {
439 [ EST_INACTIVE ] = "INACTIVE",
440 [ EST_ACTIVE ] = "ACTIVE",
441 [ EST_EXECUTING ] = "EXECUTING",
442 [ EST_SLEEPING ] = "SLEEPING",
443 [ EST_WAITLISTHEAD ] = "WAITLISTHEAD",
444 [ EST_FETCHENTRY ] = "FETCH ENTRY",
445 [ EST_FETCHQH ] = "FETCH QH",
446 [ EST_FETCHITD ] = "FETCH ITD",
447 [ EST_ADVANCEQUEUE ] = "ADVANCEQUEUE",
448 [ EST_FETCHQTD ] = "FETCH QTD",
449 [ EST_EXECUTE ] = "EXECUTE",
450 [ EST_WRITEBACK ] = "WRITEBACK",
451 [ EST_HORIZONTALQH ] = "HORIZONTALQH",
452};
453
454static const char *ehci_mmio_names[] = {
455 [ CAPLENGTH ] = "CAPLENGTH",
456 [ HCIVERSION ] = "HCIVERSION",
457 [ HCSPARAMS ] = "HCSPARAMS",
458 [ HCCPARAMS ] = "HCCPARAMS",
459 [ USBCMD ] = "USBCMD",
460 [ USBSTS ] = "USBSTS",
461 [ USBINTR ] = "USBINTR",
462 [ FRINDEX ] = "FRINDEX",
463 [ PERIODICLISTBASE ] = "P-LIST BASE",
464 [ ASYNCLISTADDR ] = "A-LIST ADDR",
465 [ PORTSC_BEGIN ] = "PORTSC #0",
466 [ PORTSC_BEGIN + 4] = "PORTSC #1",
467 [ PORTSC_BEGIN + 8] = "PORTSC #2",
468 [ PORTSC_BEGIN + 12] = "PORTSC #3",
469 [ CONFIGFLAG ] = "CONFIGFLAG",
470};
94527ead 471
26d53979 472static const char *nr2str(const char **n, size_t len, uint32_t nr)
94527ead 473{
26d53979
GH
474 if (nr < len && n[nr] != NULL) {
475 return n[nr];
94527ead 476 } else {
26d53979 477 return "unknown";
94527ead
GH
478 }
479}
94527ead 480
26d53979
GH
481static const char *state2str(uint32_t state)
482{
483 return nr2str(ehci_state_names, ARRAY_SIZE(ehci_state_names), state);
484}
485
486static const char *addr2str(target_phys_addr_t addr)
487{
488 return nr2str(ehci_mmio_names, ARRAY_SIZE(ehci_mmio_names), addr);
489}
490
439a97cc
GH
491static void ehci_trace_usbsts(uint32_t mask, int state)
492{
493 /* interrupts */
494 if (mask & USBSTS_INT) {
495 trace_usb_ehci_usbsts("INT", state);
496 }
497 if (mask & USBSTS_ERRINT) {
498 trace_usb_ehci_usbsts("ERRINT", state);
499 }
500 if (mask & USBSTS_PCD) {
501 trace_usb_ehci_usbsts("PCD", state);
502 }
503 if (mask & USBSTS_FLR) {
504 trace_usb_ehci_usbsts("FLR", state);
505 }
506 if (mask & USBSTS_HSE) {
507 trace_usb_ehci_usbsts("HSE", state);
508 }
509 if (mask & USBSTS_IAA) {
510 trace_usb_ehci_usbsts("IAA", state);
511 }
512
513 /* status */
514 if (mask & USBSTS_HALT) {
515 trace_usb_ehci_usbsts("HALT", state);
516 }
517 if (mask & USBSTS_REC) {
518 trace_usb_ehci_usbsts("REC", state);
519 }
520 if (mask & USBSTS_PSS) {
521 trace_usb_ehci_usbsts("PSS", state);
522 }
523 if (mask & USBSTS_ASS) {
524 trace_usb_ehci_usbsts("ASS", state);
525 }
526}
527
528static inline void ehci_set_usbsts(EHCIState *s, int mask)
529{
530 if ((s->usbsts & mask) == mask) {
531 return;
532 }
533 ehci_trace_usbsts(mask, 1);
534 s->usbsts |= mask;
535}
536
537static inline void ehci_clear_usbsts(EHCIState *s, int mask)
538{
539 if ((s->usbsts & mask) == 0) {
540 return;
541 }
542 ehci_trace_usbsts(mask, 0);
543 s->usbsts &= ~mask;
544}
94527ead
GH
545
546static inline void ehci_set_interrupt(EHCIState *s, int intr)
547{
548 int level = 0;
549
550 // TODO honour interrupt threshold requests
551
439a97cc 552 ehci_set_usbsts(s, intr);
94527ead
GH
553
554 if ((s->usbsts & USBINTR_MASK) & s->usbintr) {
555 level = 1;
556 }
557
558 qemu_set_irq(s->irq, level);
559}
560
561static inline void ehci_record_interrupt(EHCIState *s, int intr)
562{
563 s->usbsts_pending |= intr;
564}
565
566static inline void ehci_commit_interrupt(EHCIState *s)
567{
568 if (!s->usbsts_pending) {
569 return;
570 }
571 ehci_set_interrupt(s, s->usbsts_pending);
572 s->usbsts_pending = 0;
573}
574
26d53979
GH
575static void ehci_set_state(EHCIState *s, int async, int state)
576{
577 if (async) {
578 trace_usb_ehci_state("async", state2str(state));
579 s->astate = state;
580 } else {
581 trace_usb_ehci_state("periodic", state2str(state));
582 s->pstate = state;
583 }
584}
585
586static int ehci_get_state(EHCIState *s, int async)
587{
588 return async ? s->astate : s->pstate;
589}
590
0122f472
GH
591static void ehci_set_fetch_addr(EHCIState *s, int async, uint32_t addr)
592{
593 if (async) {
594 s->a_fetch_addr = addr;
595 } else {
596 s->p_fetch_addr = addr;
597 }
598}
599
600static int ehci_get_fetch_addr(EHCIState *s, int async)
601{
602 return async ? s->a_fetch_addr : s->p_fetch_addr;
603}
604
8ac6d699 605static void ehci_trace_qh(EHCIQueue *q, target_phys_addr_t addr, EHCIqh *qh)
26d53979 606{
025b168c
GH
607 /* need three here due to argument count limits */
608 trace_usb_ehci_qh_ptrs(q, addr, qh->next,
609 qh->current_qtd, qh->next_qtd, qh->altnext_qtd);
610 trace_usb_ehci_qh_fields(addr,
611 get_field(qh->epchar, QH_EPCHAR_RL),
612 get_field(qh->epchar, QH_EPCHAR_MPLEN),
613 get_field(qh->epchar, QH_EPCHAR_EPS),
614 get_field(qh->epchar, QH_EPCHAR_EP),
615 get_field(qh->epchar, QH_EPCHAR_DEVADDR));
616 trace_usb_ehci_qh_bits(addr,
617 (bool)(qh->epchar & QH_EPCHAR_C),
618 (bool)(qh->epchar & QH_EPCHAR_H),
619 (bool)(qh->epchar & QH_EPCHAR_DTC),
620 (bool)(qh->epchar & QH_EPCHAR_I));
26d53979
GH
621}
622
8ac6d699 623static void ehci_trace_qtd(EHCIQueue *q, target_phys_addr_t addr, EHCIqtd *qtd)
26d53979 624{
025b168c
GH
625 /* need three here due to argument count limits */
626 trace_usb_ehci_qtd_ptrs(q, addr, qtd->next, qtd->altnext);
627 trace_usb_ehci_qtd_fields(addr,
628 get_field(qtd->token, QTD_TOKEN_TBYTES),
629 get_field(qtd->token, QTD_TOKEN_CPAGE),
630 get_field(qtd->token, QTD_TOKEN_CERR),
631 get_field(qtd->token, QTD_TOKEN_PID));
632 trace_usb_ehci_qtd_bits(addr,
633 (bool)(qtd->token & QTD_TOKEN_IOC),
634 (bool)(qtd->token & QTD_TOKEN_ACTIVE),
635 (bool)(qtd->token & QTD_TOKEN_HALT),
636 (bool)(qtd->token & QTD_TOKEN_BABBLE),
637 (bool)(qtd->token & QTD_TOKEN_XACTERR));
26d53979
GH
638}
639
640static void ehci_trace_itd(EHCIState *s, target_phys_addr_t addr, EHCIitd *itd)
641{
e654887f
GH
642 trace_usb_ehci_itd(addr, itd->next,
643 get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT),
644 get_field(itd->bufptr[2], ITD_BUFPTR_MULT),
645 get_field(itd->bufptr[0], ITD_BUFPTR_EP),
646 get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR));
26d53979
GH
647}
648
8ac6d699
GH
649/* queue management */
650
651static EHCIQueue *ehci_alloc_queue(EHCIState *ehci, int async)
652{
653 EHCIQueue *q;
654
655 q = qemu_mallocz(sizeof(*q));
656 q->ehci = ehci;
657 q->async_schedule = async;
658 QTAILQ_INSERT_HEAD(&ehci->queues, q, next);
659 trace_usb_ehci_queue_action(q, "alloc");
660 return q;
661}
662
663static void ehci_free_queue(EHCIQueue *q)
664{
665 trace_usb_ehci_queue_action(q, "free");
666 if (q->async == EHCI_ASYNC_INFLIGHT) {
667 usb_cancel_packet(&q->packet);
668 }
669 QTAILQ_REMOVE(&q->ehci->queues, q, next);
670 qemu_free(q);
671}
672
673static EHCIQueue *ehci_find_queue_by_qh(EHCIState *ehci, uint32_t addr)
674{
675 EHCIQueue *q;
676
677 QTAILQ_FOREACH(q, &ehci->queues, next) {
678 if (addr == q->qhaddr) {
679 return q;
680 }
681 }
682 return NULL;
683}
684
685static void ehci_queues_rip_unused(EHCIState *ehci)
686{
687 EHCIQueue *q, *tmp;
688
689 QTAILQ_FOREACH_SAFE(q, &ehci->queues, next, tmp) {
690 if (q->seen) {
691 q->seen = 0;
adddecb1 692 q->ts = ehci->last_run_ns;
8ac6d699
GH
693 continue;
694 }
adddecb1 695 if (ehci->last_run_ns < q->ts + 250000000) {
8ac6d699
GH
696 /* allow 0.25 sec idle */
697 continue;
698 }
699 ehci_free_queue(q);
700 }
701}
702
07771f6f
GH
703static void ehci_queues_rip_device(EHCIState *ehci, USBDevice *dev)
704{
705 EHCIQueue *q, *tmp;
706
707 QTAILQ_FOREACH_SAFE(q, &ehci->queues, next, tmp) {
708 if (q->packet.owner != dev) {
709 continue;
710 }
711 ehci_free_queue(q);
712 }
713}
714
8ac6d699
GH
715static void ehci_queues_rip_all(EHCIState *ehci)
716{
717 EHCIQueue *q, *tmp;
718
719 QTAILQ_FOREACH_SAFE(q, &ehci->queues, next, tmp) {
720 ehci_free_queue(q);
721 }
722}
723
94527ead
GH
724/* Attach or detach a device on root hub */
725
726static void ehci_attach(USBPort *port)
727{
728 EHCIState *s = port->opaque;
729 uint32_t *portsc = &s->portsc[port->index];
730
dcbd0b5c 731 trace_usb_ehci_port_attach(port->index, port->dev->product_desc);
94527ead
GH
732
733 *portsc |= PORTSC_CONNECT;
734 *portsc |= PORTSC_CSC;
735
736 /*
737 * If a high speed device is attached then we own this port(indicated
738 * by zero in the PORTSC_POWNER bit field) so set the status bit
739 * and set an interrupt if enabled.
740 */
741 if ( !(*portsc & PORTSC_POWNER)) {
742 ehci_set_interrupt(s, USBSTS_PCD);
743 }
744}
745
746static void ehci_detach(USBPort *port)
747{
748 EHCIState *s = port->opaque;
749 uint32_t *portsc = &s->portsc[port->index];
750
dcbd0b5c 751 trace_usb_ehci_port_detach(port->index);
94527ead 752
4706ab6c
HG
753 ehci_queues_rip_device(s, port->dev);
754
94527ead
GH
755 *portsc &= ~PORTSC_CONNECT;
756 *portsc |= PORTSC_CSC;
757
758 /*
759 * If a high speed device is attached then we own this port(indicated
760 * by zero in the PORTSC_POWNER bit field) so set the status bit
761 * and set an interrupt if enabled.
762 */
763 if ( !(*portsc & PORTSC_POWNER)) {
764 ehci_set_interrupt(s, USBSTS_PCD);
765 }
766}
767
4706ab6c
HG
768static void ehci_child_detach(USBPort *port, USBDevice *child)
769{
770 EHCIState *s = port->opaque;
771
772 ehci_queues_rip_device(s, child);
773}
774
94527ead
GH
775/* 4.1 host controller initialization */
776static void ehci_reset(void *opaque)
777{
778 EHCIState *s = opaque;
94527ead
GH
779 int i;
780
439a97cc 781 trace_usb_ehci_reset();
94527ead
GH
782
783 memset(&s->mmio[OPREGBASE], 0x00, MMIO_SIZE - OPREGBASE);
784
785 s->usbcmd = NB_MAXINTRATE << USBCMD_ITC_SH;
786 s->usbsts = USBSTS_HALT;
787
788 s->astate = EST_INACTIVE;
789 s->pstate = EST_INACTIVE;
94527ead
GH
790 s->isoch_pause = -1;
791 s->attach_poll_counter = 0;
792
793 for(i = 0; i < NB_PORTS; i++) {
794 s->portsc[i] = PORTSC_POWNER | PORTSC_PPOWER;
795
796 if (s->ports[i].dev) {
797 usb_attach(&s->ports[i], s->ports[i].dev);
798 }
799 }
8ac6d699 800 ehci_queues_rip_all(s);
94527ead
GH
801}
802
803static uint32_t ehci_mem_readb(void *ptr, target_phys_addr_t addr)
804{
805 EHCIState *s = ptr;
806 uint32_t val;
807
808 val = s->mmio[addr];
809
810 return val;
811}
812
813static uint32_t ehci_mem_readw(void *ptr, target_phys_addr_t addr)
814{
815 EHCIState *s = ptr;
816 uint32_t val;
817
818 val = s->mmio[addr] | (s->mmio[addr+1] << 8);
819
820 return val;
821}
822
823static uint32_t ehci_mem_readl(void *ptr, target_phys_addr_t addr)
824{
825 EHCIState *s = ptr;
826 uint32_t val;
827
828 val = s->mmio[addr] | (s->mmio[addr+1] << 8) |
829 (s->mmio[addr+2] << 16) | (s->mmio[addr+3] << 24);
830
439a97cc 831 trace_usb_ehci_mmio_readl(addr, addr2str(addr), val);
94527ead
GH
832 return val;
833}
834
835static void ehci_mem_writeb(void *ptr, target_phys_addr_t addr, uint32_t val)
836{
837 fprintf(stderr, "EHCI doesn't handle byte writes to MMIO\n");
838 exit(1);
839}
840
841static void ehci_mem_writew(void *ptr, target_phys_addr_t addr, uint32_t val)
842{
843 fprintf(stderr, "EHCI doesn't handle 16-bit writes to MMIO\n");
844 exit(1);
845}
846
847static void handle_port_status_write(EHCIState *s, int port, uint32_t val)
848{
849 uint32_t *portsc = &s->portsc[port];
850 int rwc;
851 USBDevice *dev = s->ports[port].dev;
852
94527ead
GH
853 rwc = val & PORTSC_RWC_MASK;
854 val &= PORTSC_RO_MASK;
855
856 // handle_read_write_clear(&val, portsc, PORTSC_PEDC | PORTSC_CSC);
857
858 *portsc &= ~rwc;
859
860 if ((val & PORTSC_PRESET) && !(*portsc & PORTSC_PRESET)) {
dcbd0b5c 861 trace_usb_ehci_port_reset(port, 1);
94527ead
GH
862 }
863
864 if (!(val & PORTSC_PRESET) &&(*portsc & PORTSC_PRESET)) {
dcbd0b5c 865 trace_usb_ehci_port_reset(port, 0);
94527ead
GH
866 usb_attach(&s->ports[port], dev);
867
868 // TODO how to handle reset of ports with no device
869 if (dev) {
870 usb_send_msg(dev, USB_MSG_RESET);
871 }
872
873 if (s->ports[port].dev) {
94527ead
GH
874 *portsc &= ~PORTSC_CSC;
875 }
876
877 /* Table 2.16 Set the enable bit(and enable bit change) to indicate
878 * to SW that this port has a high speed device attached
879 *
880 * TODO - when to disable?
881 */
882 val |= PORTSC_PED;
883 val |= PORTSC_PEDC;
884 }
885
886 *portsc &= ~PORTSC_RO_MASK;
887 *portsc |= val;
94527ead
GH
888}
889
890static void ehci_mem_writel(void *ptr, target_phys_addr_t addr, uint32_t val)
891{
892 EHCIState *s = ptr;
c4f8e211
GH
893 uint32_t *mmio = (uint32_t *)(&s->mmio[addr]);
894 uint32_t old = *mmio;
94527ead 895 int i;
439a97cc 896
c4f8e211 897 trace_usb_ehci_mmio_writel(addr, addr2str(addr), val);
94527ead
GH
898
899 /* Only aligned reads are allowed on OHCI */
900 if (addr & 3) {
901 fprintf(stderr, "usb-ehci: Mis-aligned write to addr 0x"
902 TARGET_FMT_plx "\n", addr);
903 return;
904 }
905
906 if (addr >= PORTSC && addr < PORTSC + 4 * NB_PORTS) {
907 handle_port_status_write(s, (addr-PORTSC)/4, val);
c4f8e211 908 trace_usb_ehci_mmio_change(addr, addr2str(addr), *mmio, old);
94527ead
GH
909 return;
910 }
911
912 if (addr < OPREGBASE) {
913 fprintf(stderr, "usb-ehci: write attempt to read-only register"
914 TARGET_FMT_plx "\n", addr);
915 return;
916 }
917
918
919 /* Do any register specific pre-write processing here. */
94527ead
GH
920 switch(addr) {
921 case USBCMD:
94527ead 922 if ((val & USBCMD_RUNSTOP) && !(s->usbcmd & USBCMD_RUNSTOP)) {
94527ead
GH
923 qemu_mod_timer(s->frame_timer, qemu_get_clock_ns(vm_clock));
924 SET_LAST_RUN_CLOCK(s);
439a97cc 925 ehci_clear_usbsts(s, USBSTS_HALT);
94527ead
GH
926 }
927
928 if (!(val & USBCMD_RUNSTOP) && (s->usbcmd & USBCMD_RUNSTOP)) {
94527ead
GH
929 qemu_del_timer(s->frame_timer);
930 // TODO - should finish out some stuff before setting halt
439a97cc 931 ehci_set_usbsts(s, USBSTS_HALT);
94527ead
GH
932 }
933
934 if (val & USBCMD_HCRESET) {
94527ead
GH
935 ehci_reset(s);
936 val &= ~USBCMD_HCRESET;
937 }
938
939 /* not supporting dynamic frame list size at the moment */
940 if ((val & USBCMD_FLS) && !(s->usbcmd & USBCMD_FLS)) {
941 fprintf(stderr, "attempt to set frame list size -- value %d\n",
942 val & USBCMD_FLS);
943 val &= ~USBCMD_FLS;
944 }
94527ead
GH
945 break;
946
94527ead
GH
947 case USBSTS:
948 val &= USBSTS_RO_MASK; // bits 6 thru 31 are RO
439a97cc
GH
949 ehci_clear_usbsts(s, val); // bits 0 thru 5 are R/WC
950 val = s->usbsts;
94527ead
GH
951 ehci_set_interrupt(s, 0);
952 break;
953
94527ead
GH
954 case USBINTR:
955 val &= USBINTR_MASK;
94527ead
GH
956 break;
957
958 case FRINDEX:
959 s->sofv = val >> 3;
94527ead
GH
960 break;
961
962 case CONFIGFLAG:
94527ead
GH
963 val &= 0x1;
964 if (val) {
965 for(i = 0; i < NB_PORTS; i++)
966 s->portsc[i] &= ~PORTSC_POWNER;
967 }
968 break;
969
970 case PERIODICLISTBASE:
971 if ((s->usbcmd & USBCMD_PSE) && (s->usbcmd & USBCMD_RUNSTOP)) {
972 fprintf(stderr,
973 "ehci: PERIODIC list base register set while periodic schedule\n"
974 " is enabled and HC is enabled\n");
975 }
94527ead
GH
976 break;
977
978 case ASYNCLISTADDR:
979 if ((s->usbcmd & USBCMD_ASE) && (s->usbcmd & USBCMD_RUNSTOP)) {
980 fprintf(stderr,
981 "ehci: ASYNC list address register set while async schedule\n"
982 " is enabled and HC is enabled\n");
983 }
94527ead
GH
984 break;
985 }
986
c4f8e211
GH
987 *mmio = val;
988 trace_usb_ehci_mmio_change(addr, addr2str(addr), *mmio, old);
94527ead
GH
989}
990
991
992// TODO : Put in common header file, duplication from usb-ohci.c
993
994/* Get an array of dwords from main memory */
995static inline int get_dwords(uint32_t addr, uint32_t *buf, int num)
996{
997 int i;
998
999 for(i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
1000 cpu_physical_memory_rw(addr,(uint8_t *)buf, sizeof(*buf), 0);
1001 *buf = le32_to_cpu(*buf);
1002 }
1003
1004 return 1;
1005}
1006
1007/* Put an array of dwords in to main memory */
1008static inline int put_dwords(uint32_t addr, uint32_t *buf, int num)
1009{
1010 int i;
1011
1012 for(i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
1013 uint32_t tmp = cpu_to_le32(*buf);
1014 cpu_physical_memory_rw(addr,(uint8_t *)&tmp, sizeof(tmp), 1);
1015 }
1016
1017 return 1;
1018}
1019
1020// 4.10.2
1021
0122f472 1022static int ehci_qh_do_overlay(EHCIQueue *q)
94527ead
GH
1023{
1024 int i;
1025 int dtoggle;
1026 int ping;
1027 int eps;
1028 int reload;
1029
1030 // remember values in fields to preserve in qh after overlay
1031
0122f472
GH
1032 dtoggle = q->qh.token & QTD_TOKEN_DTOGGLE;
1033 ping = q->qh.token & QTD_TOKEN_PING;
94527ead 1034
0122f472
GH
1035 q->qh.current_qtd = q->qtdaddr;
1036 q->qh.next_qtd = q->qtd.next;
1037 q->qh.altnext_qtd = q->qtd.altnext;
1038 q->qh.token = q->qtd.token;
94527ead
GH
1039
1040
0122f472 1041 eps = get_field(q->qh.epchar, QH_EPCHAR_EPS);
94527ead 1042 if (eps == EHCI_QH_EPS_HIGH) {
0122f472
GH
1043 q->qh.token &= ~QTD_TOKEN_PING;
1044 q->qh.token |= ping;
94527ead
GH
1045 }
1046
0122f472
GH
1047 reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1048 set_field(&q->qh.altnext_qtd, reload, QH_ALTNEXT_NAKCNT);
94527ead
GH
1049
1050 for (i = 0; i < 5; i++) {
0122f472 1051 q->qh.bufptr[i] = q->qtd.bufptr[i];
94527ead
GH
1052 }
1053
0122f472 1054 if (!(q->qh.epchar & QH_EPCHAR_DTC)) {
94527ead 1055 // preserve QH DT bit
0122f472
GH
1056 q->qh.token &= ~QTD_TOKEN_DTOGGLE;
1057 q->qh.token |= dtoggle;
94527ead
GH
1058 }
1059
0122f472
GH
1060 q->qh.bufptr[1] &= ~BUFPTR_CPROGMASK_MASK;
1061 q->qh.bufptr[2] &= ~BUFPTR_FRAMETAG_MASK;
94527ead 1062
0122f472 1063 put_dwords(NLPTR_GET(q->qhaddr), (uint32_t *) &q->qh, sizeof(EHCIqh) >> 2);
94527ead
GH
1064
1065 return 0;
1066}
1067
0122f472 1068static int ehci_buffer_rw(EHCIQueue *q, int bytes, int rw)
94527ead
GH
1069{
1070 int bufpos = 0;
1071 int cpage, offset;
1072 uint32_t head;
1073 uint32_t tail;
1074
1075
1076 if (!bytes) {
1077 return 0;
1078 }
1079
0122f472 1080 cpage = get_field(q->qh.token, QTD_TOKEN_CPAGE);
94527ead
GH
1081 if (cpage > 4) {
1082 fprintf(stderr, "cpage out of range (%d)\n", cpage);
1083 return USB_RET_PROCERR;
1084 }
1085
0122f472 1086 offset = q->qh.bufptr[0] & ~QTD_BUFPTR_MASK;
94527ead
GH
1087
1088 do {
1089 /* start and end of this page */
0122f472 1090 head = q->qh.bufptr[cpage] & QTD_BUFPTR_MASK;
94527ead
GH
1091 tail = head + ~QTD_BUFPTR_MASK + 1;
1092 /* add offset into page */
1093 head |= offset;
1094
1095 if (bytes <= (tail - head)) {
1096 tail = head + bytes;
1097 }
1098
f2c88dc1 1099 trace_usb_ehci_data(rw, cpage, offset, head, tail-head, bufpos);
0122f472 1100 cpu_physical_memory_rw(head, q->buffer + bufpos, tail - head, rw);
94527ead
GH
1101
1102 bufpos += (tail - head);
ba7cb5a8 1103 offset += (tail - head);
94527ead
GH
1104 bytes -= (tail - head);
1105
1106 if (bytes > 0) {
1107 cpage++;
1108 offset = 0;
1109 }
1110 } while (bytes > 0);
1111
1112 /* save cpage */
0122f472 1113 set_field(&q->qh.token, cpage, QTD_TOKEN_CPAGE);
94527ead
GH
1114
1115 /* save offset into cpage */
ba7cb5a8 1116 q->qh.bufptr[0] &= QTD_BUFPTR_MASK;
0122f472 1117 q->qh.bufptr[0] |= offset;
94527ead
GH
1118
1119 return 0;
1120}
1121
d47e59b8 1122static void ehci_async_complete_packet(USBPort *port, USBPacket *packet)
94527ead 1123{
0122f472 1124 EHCIQueue *q = container_of(packet, EHCIQueue, packet);
94527ead 1125
8ac6d699
GH
1126 trace_usb_ehci_queue_action(q, "wakeup");
1127 assert(q->async == EHCI_ASYNC_INFLIGHT);
0122f472
GH
1128 q->async = EHCI_ASYNC_FINISHED;
1129 q->usb_status = packet->len;
94527ead
GH
1130}
1131
0122f472 1132static void ehci_execute_complete(EHCIQueue *q)
94527ead
GH
1133{
1134 int c_err, reload;
1135
8ac6d699 1136 assert(q->async != EHCI_ASYNC_INFLIGHT);
0122f472 1137 q->async = EHCI_ASYNC_NONE;
94527ead
GH
1138
1139 DPRINTF("execute_complete: qhaddr 0x%x, next %x, qtdaddr 0x%x, status %d\n",
0122f472 1140 q->qhaddr, q->qh.next, q->qtdaddr, q->usb_status);
94527ead 1141
0122f472 1142 if (q->usb_status < 0) {
94527ead
GH
1143err:
1144 /* TO-DO: put this is in a function that can be invoked below as well */
0122f472 1145 c_err = get_field(q->qh.token, QTD_TOKEN_CERR);
94527ead 1146 c_err--;
0122f472 1147 set_field(&q->qh.token, c_err, QTD_TOKEN_CERR);
94527ead 1148
0122f472 1149 switch(q->usb_status) {
94527ead 1150 case USB_RET_NODEV:
d2bd525f
GH
1151 q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR);
1152 ehci_record_interrupt(q->ehci, USBSTS_ERRINT);
94527ead
GH
1153 break;
1154 case USB_RET_STALL:
0122f472
GH
1155 q->qh.token |= QTD_TOKEN_HALT;
1156 ehci_record_interrupt(q->ehci, USBSTS_ERRINT);
94527ead
GH
1157 break;
1158 case USB_RET_NAK:
1159 /* 4.10.3 */
0122f472
GH
1160 reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1161 if ((q->pid == USB_TOKEN_IN) && reload) {
1162 int nakcnt = get_field(q->qh.altnext_qtd, QH_ALTNEXT_NAKCNT);
94527ead 1163 nakcnt--;
0122f472 1164 set_field(&q->qh.altnext_qtd, nakcnt, QH_ALTNEXT_NAKCNT);
94527ead 1165 } else if (!reload) {
0122f472 1166 return;
94527ead
GH
1167 }
1168 break;
1169 case USB_RET_BABBLE:
d2bd525f 1170 q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE);
0122f472 1171 ehci_record_interrupt(q->ehci, USBSTS_ERRINT);
94527ead
GH
1172 break;
1173 default:
0122f472
GH
1174 /* should not be triggerable */
1175 fprintf(stderr, "USB invalid response %d to handle\n", q->usb_status);
1176 assert(0);
94527ead
GH
1177 break;
1178 }
1179 } else {
1180 // DPRINTF("Short packet condition\n");
1181 // TODO check 4.12 for splits
1182
0122f472
GH
1183 if ((q->usb_status > q->tbytes) && (q->pid == USB_TOKEN_IN)) {
1184 q->usb_status = USB_RET_BABBLE;
94527ead
GH
1185 goto err;
1186 }
1187
0122f472
GH
1188 if (q->tbytes && q->pid == USB_TOKEN_IN) {
1189 if (ehci_buffer_rw(q, q->usb_status, 1) != 0) {
1190 q->usb_status = USB_RET_PROCERR;
1191 return;
94527ead 1192 }
0122f472 1193 q->tbytes -= q->usb_status;
94527ead 1194 } else {
0122f472 1195 q->tbytes = 0;
94527ead
GH
1196 }
1197
0122f472
GH
1198 DPRINTF("updating tbytes to %d\n", q->tbytes);
1199 set_field(&q->qh.token, q->tbytes, QTD_TOKEN_TBYTES);
94527ead
GH
1200 }
1201
0122f472
GH
1202 q->qh.token ^= QTD_TOKEN_DTOGGLE;
1203 q->qh.token &= ~QTD_TOKEN_ACTIVE;
94527ead 1204
0122f472
GH
1205 if ((q->usb_status >= 0) && (q->qh.token & QTD_TOKEN_IOC)) {
1206 ehci_record_interrupt(q->ehci, USBSTS_INT);
94527ead 1207 }
94527ead
GH
1208}
1209
1210// 4.10.3
1211
0122f472 1212static int ehci_execute(EHCIQueue *q)
94527ead
GH
1213{
1214 USBPort *port;
1215 USBDevice *dev;
1216 int ret;
1217 int i;
1218 int endp;
1219 int devadr;
1220
0122f472 1221 if ( !(q->qh.token & QTD_TOKEN_ACTIVE)) {
94527ead
GH
1222 fprintf(stderr, "Attempting to execute inactive QH\n");
1223 return USB_RET_PROCERR;
1224 }
1225
0122f472
GH
1226 q->tbytes = (q->qh.token & QTD_TOKEN_TBYTES_MASK) >> QTD_TOKEN_TBYTES_SH;
1227 if (q->tbytes > BUFF_SIZE) {
94527ead
GH
1228 fprintf(stderr, "Request for more bytes than allowed\n");
1229 return USB_RET_PROCERR;
1230 }
1231
0122f472
GH
1232 q->pid = (q->qh.token & QTD_TOKEN_PID_MASK) >> QTD_TOKEN_PID_SH;
1233 switch(q->pid) {
1234 case 0: q->pid = USB_TOKEN_OUT; break;
1235 case 1: q->pid = USB_TOKEN_IN; break;
1236 case 2: q->pid = USB_TOKEN_SETUP; break;
94527ead
GH
1237 default: fprintf(stderr, "bad token\n"); break;
1238 }
1239
0122f472
GH
1240 if ((q->tbytes && q->pid != USB_TOKEN_IN) &&
1241 (ehci_buffer_rw(q, q->tbytes, 0) != 0)) {
94527ead
GH
1242 return USB_RET_PROCERR;
1243 }
1244
0122f472
GH
1245 endp = get_field(q->qh.epchar, QH_EPCHAR_EP);
1246 devadr = get_field(q->qh.epchar, QH_EPCHAR_DEVADDR);
94527ead
GH
1247
1248 ret = USB_RET_NODEV;
1249
1250 // TO-DO: associating device with ehci port
1251 for(i = 0; i < NB_PORTS; i++) {
0122f472 1252 port = &q->ehci->ports[i];
94527ead
GH
1253 dev = port->dev;
1254
1255 // TODO sometime we will also need to check if we are the port owner
1256
0122f472 1257 if (!(q->ehci->portsc[i] &(PORTSC_CONNECT))) {
94527ead 1258 DPRINTF("Port %d, no exec, not connected(%08X)\n",
0122f472 1259 i, q->ehci->portsc[i]);
94527ead
GH
1260 continue;
1261 }
1262
0122f472
GH
1263 q->packet.pid = q->pid;
1264 q->packet.devaddr = devadr;
1265 q->packet.devep = endp;
1266 q->packet.data = q->buffer;
1267 q->packet.len = q->tbytes;
94527ead 1268
0122f472 1269 ret = usb_handle_packet(dev, &q->packet);
94527ead
GH
1270
1271 DPRINTF("submit: qh %x next %x qtd %x pid %x len %d (total %d) endp %x ret %d\n",
0122f472
GH
1272 q->qhaddr, q->qh.next, q->qtdaddr, q->pid,
1273 q->packet.len, q->tbytes, endp, ret);
94527ead
GH
1274
1275 if (ret != USB_RET_NODEV) {
1276 break;
1277 }
1278 }
1279
1280 if (ret > BUFF_SIZE) {
1281 fprintf(stderr, "ret from usb_handle_packet > BUFF_SIZE\n");
1282 return USB_RET_PROCERR;
1283 }
1284
94527ead
GH
1285 return ret;
1286}
1287
1288/* 4.7.2
1289 */
1290
1291static int ehci_process_itd(EHCIState *ehci,
1292 EHCIitd *itd)
1293{
1294 USBPort *port;
1295 USBDevice *dev;
1296 int ret;
e654887f
GH
1297 uint32_t i, j, len, len1, len2, pid, dir, devaddr, endp;
1298 uint32_t pg, off, ptr1, ptr2, max, mult;
94527ead
GH
1299
1300 dir =(itd->bufptr[1] & ITD_BUFPTR_DIRECTION);
e654887f 1301 devaddr = get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR);
94527ead 1302 endp = get_field(itd->bufptr[0], ITD_BUFPTR_EP);
e654887f
GH
1303 max = get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT);
1304 mult = get_field(itd->bufptr[2], ITD_BUFPTR_MULT);
94527ead
GH
1305
1306 for(i = 0; i < 8; i++) {
1307 if (itd->transact[i] & ITD_XACT_ACTIVE) {
e654887f
GH
1308 pg = get_field(itd->transact[i], ITD_XACT_PGSEL);
1309 off = itd->transact[i] & ITD_XACT_OFFSET_MASK;
1310 ptr1 = (itd->bufptr[pg] & ITD_BUFPTR_MASK);
1311 ptr2 = (itd->bufptr[pg+1] & ITD_BUFPTR_MASK);
1312 len = get_field(itd->transact[i], ITD_XACT_LENGTH);
1313
1314 if (len > max * mult) {
1315 len = max * mult;
1316 }
94527ead
GH
1317
1318 if (len > BUFF_SIZE) {
1319 return USB_RET_PROCERR;
1320 }
1321
e654887f
GH
1322 if (off + len > 4096) {
1323 /* transfer crosses page border */
1324 len2 = off + len - 4096;
1325 len1 = len - len2;
1326 } else {
1327 len1 = len;
1328 len2 = 0;
1329 }
94527ead
GH
1330
1331 if (!dir) {
94527ead 1332 pid = USB_TOKEN_OUT;
e654887f
GH
1333 trace_usb_ehci_data(0, pg, off, ptr1 + off, len1, 0);
1334 cpu_physical_memory_rw(ptr1 + off, &ehci->ibuffer[0], len1, 0);
1335 if (len2) {
1336 trace_usb_ehci_data(0, pg+1, 0, ptr2, len2, len1);
1337 cpu_physical_memory_rw(ptr2, &ehci->ibuffer[len1], len2, 0);
1338 }
1339 } else {
94527ead 1340 pid = USB_TOKEN_IN;
e654887f 1341 }
94527ead
GH
1342
1343 ret = USB_RET_NODEV;
1344
1345 for (j = 0; j < NB_PORTS; j++) {
1346 port = &ehci->ports[j];
1347 dev = port->dev;
1348
1349 // TODO sometime we will also need to check if we are the port owner
1350
1351 if (!(ehci->portsc[j] &(PORTSC_CONNECT))) {
94527ead
GH
1352 continue;
1353 }
1354
0122f472 1355 ehci->ipacket.pid = pid;
e654887f 1356 ehci->ipacket.devaddr = devaddr;
0122f472
GH
1357 ehci->ipacket.devep = endp;
1358 ehci->ipacket.data = ehci->ibuffer;
1359 ehci->ipacket.len = len;
94527ead 1360
0122f472 1361 ret = usb_handle_packet(dev, &ehci->ipacket);
94527ead
GH
1362
1363 if (ret != USB_RET_NODEV) {
1364 break;
1365 }
1366 }
1367
e654887f 1368#if 0
94527ead
GH
1369 /* In isoch, there is no facility to indicate a NAK so let's
1370 * instead just complete a zero-byte transaction. Setting
1371 * DBERR seems too draconian.
1372 */
1373
1374 if (ret == USB_RET_NAK) {
1375 if (ehci->isoch_pause > 0) {
1376 DPRINTF("ISOCH: received a NAK but paused so returning\n");
1377 ehci->isoch_pause--;
1378 return 0;
1379 } else if (ehci->isoch_pause == -1) {
1380 DPRINTF("ISOCH: recv NAK & isoch pause inactive, setting\n");
1381 // Pause frindex for up to 50 msec waiting for data from
1382 // remote
1383 ehci->isoch_pause = 50;
1384 return 0;
1385 } else {
1386 DPRINTF("ISOCH: isoch pause timeout! return 0\n");
1387 ret = 0;
1388 }
1389 } else {
1390 DPRINTF("ISOCH: received ACK, clearing pause\n");
1391 ehci->isoch_pause = -1;
1392 }
e654887f
GH
1393#else
1394 if (ret == USB_RET_NAK) {
1395 ret = 0;
1396 }
1397#endif
94527ead
GH
1398
1399 if (ret >= 0) {
e654887f
GH
1400 if (!dir) {
1401 /* OUT */
1402 set_field(&itd->transact[i], len - ret, ITD_XACT_LENGTH);
1403 } else {
1404 /* IN */
1405 if (len1 > ret) {
1406 len1 = ret;
1407 }
1408 if (len2 > ret - len1) {
1409 len2 = ret - len1;
1410 }
1411 if (len1) {
1412 trace_usb_ehci_data(1, pg, off, ptr1 + off, len1, 0);
1413 cpu_physical_memory_rw(ptr1 + off, &ehci->ibuffer[0], len1, 1);
1414 }
1415 if (len2) {
1416 trace_usb_ehci_data(1, pg+1, 0, ptr2, len2, len1);
1417 cpu_physical_memory_rw(ptr2, &ehci->ibuffer[len1], len2, 1);
1418 }
1419 set_field(&itd->transact[i], ret, ITD_XACT_LENGTH);
1420 }
94527ead
GH
1421
1422 if (itd->transact[i] & ITD_XACT_IOC) {
1423 ehci_record_interrupt(ehci, USBSTS_INT);
1424 }
1425 }
e654887f 1426 itd->transact[i] &= ~ITD_XACT_ACTIVE;
94527ead
GH
1427 }
1428 }
1429 return 0;
1430}
1431
1432/* This state is the entry point for asynchronous schedule
1433 * processing. Entry here consitutes a EHCI start event state (4.8.5)
1434 */
26d53979 1435static int ehci_state_waitlisthead(EHCIState *ehci, int async)
94527ead 1436{
0122f472 1437 EHCIqh qh;
94527ead
GH
1438 int i = 0;
1439 int again = 0;
1440 uint32_t entry = ehci->asynclistaddr;
1441
1442 /* set reclamation flag at start event (4.8.6) */
1443 if (async) {
439a97cc 1444 ehci_set_usbsts(ehci, USBSTS_REC);
94527ead
GH
1445 }
1446
8ac6d699
GH
1447 ehci_queues_rip_unused(ehci);
1448
94527ead
GH
1449 /* Find the head of the list (4.9.1.1) */
1450 for(i = 0; i < MAX_QH; i++) {
0122f472 1451 get_dwords(NLPTR_GET(entry), (uint32_t *) &qh, sizeof(EHCIqh) >> 2);
8ac6d699 1452 ehci_trace_qh(NULL, NLPTR_GET(entry), &qh);
94527ead 1453
0122f472 1454 if (qh.epchar & QH_EPCHAR_H) {
94527ead
GH
1455 if (async) {
1456 entry |= (NLPTR_TYPE_QH << 1);
1457 }
1458
0122f472 1459 ehci_set_fetch_addr(ehci, async, entry);
26d53979 1460 ehci_set_state(ehci, async, EST_FETCHENTRY);
94527ead
GH
1461 again = 1;
1462 goto out;
1463 }
1464
0122f472 1465 entry = qh.next;
94527ead 1466 if (entry == ehci->asynclistaddr) {
94527ead
GH
1467 break;
1468 }
1469 }
1470
1471 /* no head found for list. */
1472
26d53979 1473 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
1474
1475out:
1476 return again;
1477}
1478
1479
1480/* This state is the entry point for periodic schedule processing as
1481 * well as being a continuation state for async processing.
1482 */
26d53979 1483static int ehci_state_fetchentry(EHCIState *ehci, int async)
94527ead
GH
1484{
1485 int again = 0;
0122f472 1486 uint32_t entry = ehci_get_fetch_addr(ehci, async);
94527ead 1487
94527ead
GH
1488 if (entry < 0x1000) {
1489 DPRINTF("fetchentry: entry invalid (0x%08x)\n", entry);
26d53979 1490 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
1491 goto out;
1492 }
1493
1494 /* section 4.8, only QH in async schedule */
1495 if (async && (NLPTR_TYPE_GET(entry) != NLPTR_TYPE_QH)) {
1496 fprintf(stderr, "non queue head request in async schedule\n");
1497 return -1;
1498 }
1499
1500 switch (NLPTR_TYPE_GET(entry)) {
1501 case NLPTR_TYPE_QH:
26d53979 1502 ehci_set_state(ehci, async, EST_FETCHQH);
94527ead
GH
1503 again = 1;
1504 break;
1505
1506 case NLPTR_TYPE_ITD:
26d53979 1507 ehci_set_state(ehci, async, EST_FETCHITD);
94527ead
GH
1508 again = 1;
1509 break;
1510
1511 default:
1512 // TODO: handle siTD and FSTN types
1513 fprintf(stderr, "FETCHENTRY: entry at %X is of type %d "
1514 "which is not supported yet\n", entry, NLPTR_TYPE_GET(entry));
1515 return -1;
1516 }
1517
1518out:
1519 return again;
1520}
1521
0122f472 1522static EHCIQueue *ehci_state_fetchqh(EHCIState *ehci, int async)
94527ead 1523{
0122f472
GH
1524 uint32_t entry;
1525 EHCIQueue *q;
94527ead 1526 int reload;
94527ead 1527
0122f472 1528 entry = ehci_get_fetch_addr(ehci, async);
8ac6d699
GH
1529 q = ehci_find_queue_by_qh(ehci, entry);
1530 if (NULL == q) {
1531 q = ehci_alloc_queue(ehci, async);
1532 }
0122f472 1533 q->qhaddr = entry;
8ac6d699
GH
1534 q->seen++;
1535
1536 if (q->seen > 1) {
1537 /* we are going in circles -- stop processing */
1538 ehci_set_state(ehci, async, EST_ACTIVE);
1539 q = NULL;
1540 goto out;
1541 }
94527ead 1542
0122f472 1543 get_dwords(NLPTR_GET(q->qhaddr), (uint32_t *) &q->qh, sizeof(EHCIqh) >> 2);
8ac6d699
GH
1544 ehci_trace_qh(q, NLPTR_GET(q->qhaddr), &q->qh);
1545
1546 if (q->async == EHCI_ASYNC_INFLIGHT) {
1547 /* I/O still in progress -- skip queue */
1548 ehci_set_state(ehci, async, EST_HORIZONTALQH);
1549 goto out;
1550 }
1551 if (q->async == EHCI_ASYNC_FINISHED) {
1552 /* I/O finished -- continue processing queue */
1553 trace_usb_ehci_queue_action(q, "resume");
1554 ehci_set_state(ehci, async, EST_EXECUTING);
1555 goto out;
1556 }
0122f472
GH
1557
1558 if (async && (q->qh.epchar & QH_EPCHAR_H)) {
94527ead
GH
1559
1560 /* EHCI spec version 1.0 Section 4.8.3 & 4.10.1 */
1561 if (ehci->usbsts & USBSTS_REC) {
439a97cc 1562 ehci_clear_usbsts(ehci, USBSTS_REC);
94527ead
GH
1563 } else {
1564 DPRINTF("FETCHQH: QH 0x%08x. H-bit set, reclamation status reset"
0122f472 1565 " - done processing\n", q->qhaddr);
26d53979 1566 ehci_set_state(ehci, async, EST_ACTIVE);
0122f472 1567 q = NULL;
94527ead
GH
1568 goto out;
1569 }
1570 }
1571
1572#if EHCI_DEBUG
0122f472 1573 if (q->qhaddr != q->qh.next) {
94527ead 1574 DPRINTF("FETCHQH: QH 0x%08x (h %x halt %x active %x) next 0x%08x\n",
0122f472
GH
1575 q->qhaddr,
1576 q->qh.epchar & QH_EPCHAR_H,
1577 q->qh.token & QTD_TOKEN_HALT,
1578 q->qh.token & QTD_TOKEN_ACTIVE,
1579 q->qh.next);
94527ead
GH
1580 }
1581#endif
1582
0122f472 1583 reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
94527ead 1584 if (reload) {
0122f472 1585 set_field(&q->qh.altnext_qtd, reload, QH_ALTNEXT_NAKCNT);
94527ead
GH
1586 }
1587
0122f472 1588 if (q->qh.token & QTD_TOKEN_HALT) {
26d53979 1589 ehci_set_state(ehci, async, EST_HORIZONTALQH);
94527ead 1590
0122f472
GH
1591 } else if ((q->qh.token & QTD_TOKEN_ACTIVE) && (q->qh.current_qtd > 0x1000)) {
1592 q->qtdaddr = q->qh.current_qtd;
26d53979 1593 ehci_set_state(ehci, async, EST_FETCHQTD);
94527ead
GH
1594
1595 } else {
1596 /* EHCI spec version 1.0 Section 4.10.2 */
26d53979 1597 ehci_set_state(ehci, async, EST_ADVANCEQUEUE);
94527ead
GH
1598 }
1599
1600out:
0122f472 1601 return q;
94527ead
GH
1602}
1603
26d53979 1604static int ehci_state_fetchitd(EHCIState *ehci, int async)
94527ead 1605{
0122f472 1606 uint32_t entry;
94527ead
GH
1607 EHCIitd itd;
1608
0122f472
GH
1609 assert(!async);
1610 entry = ehci_get_fetch_addr(ehci, async);
1611
1612 get_dwords(NLPTR_GET(entry),(uint32_t *) &itd,
94527ead 1613 sizeof(EHCIitd) >> 2);
0122f472 1614 ehci_trace_itd(ehci, entry, &itd);
94527ead
GH
1615
1616 if (ehci_process_itd(ehci, &itd) != 0) {
1617 return -1;
1618 }
1619
0122f472 1620 put_dwords(NLPTR_GET(entry), (uint32_t *) &itd,
94527ead 1621 sizeof(EHCIitd) >> 2);
0122f472 1622 ehci_set_fetch_addr(ehci, async, itd.next);
26d53979 1623 ehci_set_state(ehci, async, EST_FETCHENTRY);
94527ead
GH
1624
1625 return 1;
1626}
1627
1628/* Section 4.10.2 - paragraph 3 */
0122f472 1629static int ehci_state_advqueue(EHCIQueue *q, int async)
94527ead
GH
1630{
1631#if 0
1632 /* TO-DO: 4.10.2 - paragraph 2
1633 * if I-bit is set to 1 and QH is not active
1634 * go to horizontal QH
1635 */
1636 if (I-bit set) {
26d53979 1637 ehci_set_state(ehci, async, EST_HORIZONTALQH);
94527ead
GH
1638 goto out;
1639 }
1640#endif
1641
1642 /*
1643 * want data and alt-next qTD is valid
1644 */
0122f472
GH
1645 if (((q->qh.token & QTD_TOKEN_TBYTES_MASK) != 0) &&
1646 (q->qh.altnext_qtd > 0x1000) &&
1647 (NLPTR_TBIT(q->qh.altnext_qtd) == 0)) {
1648 q->qtdaddr = q->qh.altnext_qtd;
1649 ehci_set_state(q->ehci, async, EST_FETCHQTD);
94527ead
GH
1650
1651 /*
1652 * next qTD is valid
1653 */
0122f472
GH
1654 } else if ((q->qh.next_qtd > 0x1000) &&
1655 (NLPTR_TBIT(q->qh.next_qtd) == 0)) {
1656 q->qtdaddr = q->qh.next_qtd;
1657 ehci_set_state(q->ehci, async, EST_FETCHQTD);
94527ead
GH
1658
1659 /*
1660 * no valid qTD, try next QH
1661 */
1662 } else {
0122f472 1663 ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
94527ead
GH
1664 }
1665
1666 return 1;
1667}
1668
1669/* Section 4.10.2 - paragraph 4 */
0122f472 1670static int ehci_state_fetchqtd(EHCIQueue *q, int async)
94527ead 1671{
94527ead
GH
1672 int again = 0;
1673
0122f472 1674 get_dwords(NLPTR_GET(q->qtdaddr),(uint32_t *) &q->qtd, sizeof(EHCIqtd) >> 2);
8ac6d699 1675 ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), &q->qtd);
94527ead 1676
0122f472
GH
1677 if (q->qtd.token & QTD_TOKEN_ACTIVE) {
1678 ehci_set_state(q->ehci, async, EST_EXECUTE);
94527ead
GH
1679 again = 1;
1680 } else {
0122f472 1681 ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
94527ead
GH
1682 again = 1;
1683 }
1684
1685 return again;
1686}
1687
0122f472 1688static int ehci_state_horizqh(EHCIQueue *q, int async)
94527ead
GH
1689{
1690 int again = 0;
1691
0122f472
GH
1692 if (ehci_get_fetch_addr(q->ehci, async) != q->qh.next) {
1693 ehci_set_fetch_addr(q->ehci, async, q->qh.next);
1694 ehci_set_state(q->ehci, async, EST_FETCHENTRY);
94527ead
GH
1695 again = 1;
1696 } else {
0122f472 1697 ehci_set_state(q->ehci, async, EST_ACTIVE);
94527ead
GH
1698 }
1699
1700 return again;
1701}
1702
8ac6d699
GH
1703/*
1704 * Write the qh back to guest physical memory. This step isn't
1705 * in the EHCI spec but we need to do it since we don't share
1706 * physical memory with our guest VM.
1707 *
1708 * The first three dwords are read-only for the EHCI, so skip them
1709 * when writing back the qh.
1710 */
1711static void ehci_flush_qh(EHCIQueue *q)
1712{
1713 uint32_t *qh = (uint32_t *) &q->qh;
1714 uint32_t dwords = sizeof(EHCIqh) >> 2;
1715 uint32_t addr = NLPTR_GET(q->qhaddr);
1716
1717 put_dwords(addr + 3 * sizeof(uint32_t), qh + 3, dwords - 3);
1718}
1719
0122f472 1720static int ehci_state_execute(EHCIQueue *q, int async)
94527ead 1721{
94527ead
GH
1722 int again = 0;
1723 int reload, nakcnt;
1724 int smask;
1725
0122f472 1726 if (ehci_qh_do_overlay(q) != 0) {
94527ead
GH
1727 return -1;
1728 }
1729
0122f472 1730 smask = get_field(q->qh.epcap, QH_EPCAP_SMASK);
94527ead
GH
1731
1732 if (!smask) {
0122f472
GH
1733 reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1734 nakcnt = get_field(q->qh.altnext_qtd, QH_ALTNEXT_NAKCNT);
94527ead 1735 if (reload && !nakcnt) {
0122f472 1736 ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
94527ead
GH
1737 again = 1;
1738 goto out;
1739 }
1740 }
1741
1742 // TODO verify enough time remains in the uframe as in 4.4.1.1
1743 // TODO write back ptr to async list when done or out of time
1744 // TODO Windows does not seem to ever set the MULT field
1745
1746 if (!async) {
0122f472 1747 int transactCtr = get_field(q->qh.epcap, QH_EPCAP_MULT);
94527ead 1748 if (!transactCtr) {
0122f472 1749 ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
94527ead
GH
1750 again = 1;
1751 goto out;
1752 }
1753 }
1754
1755 if (async) {
0122f472 1756 ehci_set_usbsts(q->ehci, USBSTS_REC);
94527ead
GH
1757 }
1758
0122f472
GH
1759 q->usb_status = ehci_execute(q);
1760 if (q->usb_status == USB_RET_PROCERR) {
94527ead
GH
1761 again = -1;
1762 goto out;
1763 }
8ac6d699
GH
1764 if (q->usb_status == USB_RET_ASYNC) {
1765 ehci_flush_qh(q);
1766 trace_usb_ehci_queue_action(q, "suspend");
1767 q->async = EHCI_ASYNC_INFLIGHT;
1768 ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
94527ead 1769 again = 1;
8ac6d699 1770 goto out;
94527ead
GH
1771 }
1772
8ac6d699
GH
1773 ehci_set_state(q->ehci, async, EST_EXECUTING);
1774 again = 1;
1775
94527ead
GH
1776out:
1777 return again;
1778}
1779
0122f472 1780static int ehci_state_executing(EHCIQueue *q, int async)
94527ead 1781{
94527ead
GH
1782 int again = 0;
1783 int reload, nakcnt;
1784
0122f472
GH
1785 ehci_execute_complete(q);
1786 if (q->usb_status == USB_RET_ASYNC) {
94527ead
GH
1787 goto out;
1788 }
0122f472 1789 if (q->usb_status == USB_RET_PROCERR) {
94527ead
GH
1790 again = -1;
1791 goto out;
1792 }
1793
1794 // 4.10.3
1795 if (!async) {
0122f472 1796 int transactCtr = get_field(q->qh.epcap, QH_EPCAP_MULT);
94527ead 1797 transactCtr--;
0122f472 1798 set_field(&q->qh.epcap, transactCtr, QH_EPCAP_MULT);
94527ead
GH
1799 // 4.10.3, bottom of page 82, should exit this state when transaction
1800 // counter decrements to 0
1801 }
1802
0122f472 1803 reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
94527ead 1804 if (reload) {
0122f472
GH
1805 nakcnt = get_field(q->qh.altnext_qtd, QH_ALTNEXT_NAKCNT);
1806 if (q->usb_status == USB_RET_NAK) {
94527ead
GH
1807 if (nakcnt) {
1808 nakcnt--;
1809 }
94527ead
GH
1810 } else {
1811 nakcnt = reload;
94527ead 1812 }
0122f472 1813 set_field(&q->qh.altnext_qtd, nakcnt, QH_ALTNEXT_NAKCNT);
94527ead
GH
1814 }
1815
94527ead 1816 /* 4.10.5 */
0122f472
GH
1817 if ((q->usb_status == USB_RET_NAK) || (q->qh.token & QTD_TOKEN_ACTIVE)) {
1818 ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
94527ead 1819 } else {
0122f472 1820 ehci_set_state(q->ehci, async, EST_WRITEBACK);
94527ead
GH
1821 }
1822
1823 again = 1;
1824
1825out:
8ac6d699 1826 ehci_flush_qh(q);
94527ead
GH
1827 return again;
1828}
1829
1830
0122f472 1831static int ehci_state_writeback(EHCIQueue *q, int async)
94527ead 1832{
94527ead
GH
1833 int again = 0;
1834
1835 /* Write back the QTD from the QH area */
8ac6d699 1836 ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), (EHCIqtd*) &q->qh.next_qtd);
0122f472 1837 put_dwords(NLPTR_GET(q->qtdaddr),(uint32_t *) &q->qh.next_qtd,
94527ead
GH
1838 sizeof(EHCIqtd) >> 2);
1839
d2bd525f
GH
1840 /*
1841 * EHCI specs say go horizontal here.
1842 *
1843 * We can also advance the queue here for performance reasons. We
1844 * need to take care to only take that shortcut in case we've
1845 * processed the qtd just written back without errors, i.e. halt
1846 * bit is clear.
94527ead 1847 */
d2bd525f
GH
1848 if (q->qh.token & QTD_TOKEN_HALT) {
1849 ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
1850 again = 1;
1851 } else {
0122f472 1852 ehci_set_state(q->ehci, async, EST_ADVANCEQUEUE);
94527ead 1853 again = 1;
d2bd525f 1854 }
94527ead
GH
1855 return again;
1856}
1857
1858/*
1859 * This is the state machine that is common to both async and periodic
1860 */
1861
26d53979
GH
1862static void ehci_advance_state(EHCIState *ehci,
1863 int async)
94527ead 1864{
0122f472 1865 EHCIQueue *q = NULL;
94527ead
GH
1866 int again;
1867 int iter = 0;
1868
1869 do {
26d53979 1870 if (ehci_get_state(ehci, async) == EST_FETCHQH) {
94527ead
GH
1871 iter++;
1872 /* if we are roaming a lot of QH without executing a qTD
1873 * something is wrong with the linked list. TO-DO: why is
1874 * this hack needed?
1875 */
8ac6d699
GH
1876 assert(iter < MAX_ITERATIONS);
1877#if 0
94527ead
GH
1878 if (iter > MAX_ITERATIONS) {
1879 DPRINTF("\n*** advance_state: bailing on MAX ITERATIONS***\n");
26d53979 1880 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
1881 break;
1882 }
8ac6d699 1883#endif
94527ead 1884 }
26d53979 1885 switch(ehci_get_state(ehci, async)) {
94527ead 1886 case EST_WAITLISTHEAD:
26d53979 1887 again = ehci_state_waitlisthead(ehci, async);
94527ead
GH
1888 break;
1889
1890 case EST_FETCHENTRY:
26d53979 1891 again = ehci_state_fetchentry(ehci, async);
94527ead
GH
1892 break;
1893
1894 case EST_FETCHQH:
0122f472
GH
1895 q = ehci_state_fetchqh(ehci, async);
1896 again = q ? 1 : 0;
94527ead
GH
1897 break;
1898
1899 case EST_FETCHITD:
26d53979 1900 again = ehci_state_fetchitd(ehci, async);
94527ead
GH
1901 break;
1902
1903 case EST_ADVANCEQUEUE:
0122f472 1904 again = ehci_state_advqueue(q, async);
94527ead
GH
1905 break;
1906
1907 case EST_FETCHQTD:
0122f472 1908 again = ehci_state_fetchqtd(q, async);
94527ead
GH
1909 break;
1910
1911 case EST_HORIZONTALQH:
0122f472 1912 again = ehci_state_horizqh(q, async);
94527ead
GH
1913 break;
1914
1915 case EST_EXECUTE:
1916 iter = 0;
0122f472 1917 again = ehci_state_execute(q, async);
94527ead
GH
1918 break;
1919
1920 case EST_EXECUTING:
8ac6d699 1921 assert(q != NULL);
0122f472 1922 again = ehci_state_executing(q, async);
94527ead
GH
1923 break;
1924
1925 case EST_WRITEBACK:
0122f472 1926 again = ehci_state_writeback(q, async);
94527ead
GH
1927 break;
1928
1929 default:
1930 fprintf(stderr, "Bad state!\n");
1931 again = -1;
8ac6d699 1932 assert(0);
94527ead
GH
1933 break;
1934 }
1935
1936 if (again < 0) {
1937 fprintf(stderr, "processing error - resetting ehci HC\n");
1938 ehci_reset(ehci);
1939 again = 0;
8ac6d699 1940 assert(0);
94527ead
GH
1941 }
1942 }
1943 while (again);
1944
1945 ehci_commit_interrupt(ehci);
94527ead
GH
1946}
1947
1948static void ehci_advance_async_state(EHCIState *ehci)
1949{
26d53979 1950 int async = 1;
94527ead 1951
26d53979 1952 switch(ehci_get_state(ehci, async)) {
94527ead
GH
1953 case EST_INACTIVE:
1954 if (!(ehci->usbcmd & USBCMD_ASE)) {
1955 break;
1956 }
439a97cc 1957 ehci_set_usbsts(ehci, USBSTS_ASS);
26d53979 1958 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
1959 // No break, fall through to ACTIVE
1960
1961 case EST_ACTIVE:
1962 if ( !(ehci->usbcmd & USBCMD_ASE)) {
439a97cc 1963 ehci_clear_usbsts(ehci, USBSTS_ASS);
26d53979 1964 ehci_set_state(ehci, async, EST_INACTIVE);
94527ead
GH
1965 break;
1966 }
1967
1968 /* If the doorbell is set, the guest wants to make a change to the
1969 * schedule. The host controller needs to release cached data.
1970 * (section 4.8.2)
1971 */
1972 if (ehci->usbcmd & USBCMD_IAAD) {
1973 DPRINTF("ASYNC: doorbell request acknowledged\n");
1974 ehci->usbcmd &= ~USBCMD_IAAD;
1975 ehci_set_interrupt(ehci, USBSTS_IAA);
1976 break;
1977 }
1978
1979 /* make sure guest has acknowledged */
1980 /* TO-DO: is this really needed? */
1981 if (ehci->usbsts & USBSTS_IAA) {
1982 DPRINTF("IAA status bit still set.\n");
1983 break;
1984 }
1985
94527ead
GH
1986 /* check that address register has been set */
1987 if (ehci->asynclistaddr == 0) {
1988 break;
1989 }
1990
26d53979 1991 ehci_set_state(ehci, async, EST_WAITLISTHEAD);
26d53979 1992 ehci_advance_state(ehci, async);
94527ead
GH
1993 break;
1994
1995 default:
1996 /* this should only be due to a developer mistake */
1997 fprintf(stderr, "ehci: Bad asynchronous state %d. "
1998 "Resetting to active\n", ehci->astate);
0122f472 1999 assert(0);
94527ead
GH
2000 }
2001}
2002
2003static void ehci_advance_periodic_state(EHCIState *ehci)
2004{
2005 uint32_t entry;
2006 uint32_t list;
26d53979 2007 int async = 0;
94527ead
GH
2008
2009 // 4.6
2010
26d53979 2011 switch(ehci_get_state(ehci, async)) {
94527ead
GH
2012 case EST_INACTIVE:
2013 if ( !(ehci->frindex & 7) && (ehci->usbcmd & USBCMD_PSE)) {
439a97cc 2014 ehci_set_usbsts(ehci, USBSTS_PSS);
26d53979 2015 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
2016 // No break, fall through to ACTIVE
2017 } else
2018 break;
2019
2020 case EST_ACTIVE:
2021 if ( !(ehci->frindex & 7) && !(ehci->usbcmd & USBCMD_PSE)) {
439a97cc 2022 ehci_clear_usbsts(ehci, USBSTS_PSS);
26d53979 2023 ehci_set_state(ehci, async, EST_INACTIVE);
94527ead
GH
2024 break;
2025 }
2026
2027 list = ehci->periodiclistbase & 0xfffff000;
2028 /* check that register has been set */
2029 if (list == 0) {
2030 break;
2031 }
2032 list |= ((ehci->frindex & 0x1ff8) >> 1);
2033
2034 cpu_physical_memory_rw(list, (uint8_t *) &entry, sizeof entry, 0);
2035 entry = le32_to_cpu(entry);
2036
2037 DPRINTF("PERIODIC state adv fr=%d. [%08X] -> %08X\n",
2038 ehci->frindex / 8, list, entry);
0122f472 2039 ehci_set_fetch_addr(ehci, async,entry);
26d53979
GH
2040 ehci_set_state(ehci, async, EST_FETCHENTRY);
2041 ehci_advance_state(ehci, async);
94527ead
GH
2042 break;
2043
94527ead
GH
2044 default:
2045 /* this should only be due to a developer mistake */
2046 fprintf(stderr, "ehci: Bad periodic state %d. "
2047 "Resetting to active\n", ehci->pstate);
0122f472 2048 assert(0);
94527ead
GH
2049 }
2050}
2051
2052static void ehci_frame_timer(void *opaque)
2053{
2054 EHCIState *ehci = opaque;
2055 int64_t expire_time, t_now;
adddecb1 2056 uint64_t ns_elapsed;
94527ead 2057 int frames;
94527ead
GH
2058 int i;
2059 int skipped_frames = 0;
2060
94527ead 2061 t_now = qemu_get_clock_ns(vm_clock);
16a2dee6 2062 expire_time = t_now + (get_ticks_per_sec() / ehci->freq);
94527ead 2063
adddecb1
GH
2064 ns_elapsed = t_now - ehci->last_run_ns;
2065 frames = ns_elapsed / FRAME_TIMER_NS;
94527ead
GH
2066
2067 for (i = 0; i < frames; i++) {
2068 if ( !(ehci->usbsts & USBSTS_HALT)) {
2069 if (ehci->isoch_pause <= 0) {
2070 ehci->frindex += 8;
2071 }
2072
2073 if (ehci->frindex > 0x00001fff) {
2074 ehci->frindex = 0;
2075 ehci_set_interrupt(ehci, USBSTS_FLR);
2076 }
2077
2078 ehci->sofv = (ehci->frindex - 1) >> 3;
2079 ehci->sofv &= 0x000003ff;
2080 }
2081
16a2dee6 2082 if (frames - i > ehci->maxframes) {
94527ead
GH
2083 skipped_frames++;
2084 } else {
d0539307 2085 ehci_advance_periodic_state(ehci);
94527ead
GH
2086 }
2087
adddecb1 2088 ehci->last_run_ns += FRAME_TIMER_NS;
94527ead
GH
2089 }
2090
2091#if 0
2092 if (skipped_frames) {
2093 DPRINTF("WARNING - EHCI skipped %d frames\n", skipped_frames);
2094 }
2095#endif
2096
2097 /* Async is not inside loop since it executes everything it can once
2098 * called
2099 */
d0539307 2100 ehci_advance_async_state(ehci);
94527ead
GH
2101
2102 qemu_mod_timer(ehci->frame_timer, expire_time);
2103}
2104
2105static CPUReadMemoryFunc *ehci_readfn[3]={
2106 ehci_mem_readb,
2107 ehci_mem_readw,
2108 ehci_mem_readl
2109};
2110
2111static CPUWriteMemoryFunc *ehci_writefn[3]={
2112 ehci_mem_writeb,
2113 ehci_mem_writew,
2114 ehci_mem_writel
2115};
2116
2117static void ehci_map(PCIDevice *pci_dev, int region_num,
2118 pcibus_t addr, pcibus_t size, int type)
2119{
2120 EHCIState *s =(EHCIState *)pci_dev;
2121
2122 DPRINTF("ehci_map: region %d, addr %08" PRIx64 ", size %" PRId64 ", s->mem %08X\n",
2123 region_num, addr, size, s->mem);
2124 s->mem_base = addr;
2125 cpu_register_physical_memory(addr, size, s->mem);
2126}
2127
2128static int usb_ehci_initfn(PCIDevice *dev);
2129
2130static USBPortOps ehci_port_ops = {
2131 .attach = ehci_attach,
2132 .detach = ehci_detach,
4706ab6c 2133 .child_detach = ehci_child_detach,
94527ead
GH
2134 .complete = ehci_async_complete_packet,
2135};
2136
07771f6f 2137static USBBusOps ehci_bus_ops = {
07771f6f
GH
2138};
2139
94527ead
GH
2140static PCIDeviceInfo ehci_info = {
2141 .qdev.name = "usb-ehci",
2142 .qdev.size = sizeof(EHCIState),
2143 .init = usb_ehci_initfn,
9047c0b4
MT
2144 .vendor_id = PCI_VENDOR_ID_INTEL,
2145 .device_id = PCI_DEVICE_ID_INTEL_82801D,
2146 .revision = 0x10,
2147 .class_id = PCI_CLASS_SERIAL_USB,
16a2dee6
GH
2148 .qdev.props = (Property[]) {
2149 DEFINE_PROP_UINT32("freq", EHCIState, freq, FRAME_TIMER_FREQ),
2150 DEFINE_PROP_UINT32("maxframes", EHCIState, maxframes, 128),
2151 DEFINE_PROP_END_OF_LIST(),
2152 },
94527ead
GH
2153};
2154
2155static int usb_ehci_initfn(PCIDevice *dev)
2156{
2157 EHCIState *s = DO_UPCAST(EHCIState, dev, dev);
2158 uint8_t *pci_conf = s->dev.config;
2159 int i;
2160
94527ead 2161 pci_set_byte(&pci_conf[PCI_CLASS_PROG], 0x20);
94527ead
GH
2162
2163 /* capabilities pointer */
2164 pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x00);
2165 //pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x50);
2166
2167 pci_set_byte(&pci_conf[PCI_INTERRUPT_PIN], 4); // interrupt pin 3
2168 pci_set_byte(&pci_conf[PCI_MIN_GNT], 0);
2169 pci_set_byte(&pci_conf[PCI_MAX_LAT], 0);
2170
2171 // pci_conf[0x50] = 0x01; // power management caps
2172
4001f22f 2173 pci_set_byte(&pci_conf[USB_SBRN], USB_RELEASE_2); // release number (2.1.4)
94527ead
GH
2174 pci_set_byte(&pci_conf[0x61], 0x20); // frame length adjustment (2.1.5)
2175 pci_set_word(&pci_conf[0x62], 0x00); // port wake up capability (2.1.6)
2176
2177 pci_conf[0x64] = 0x00;
2178 pci_conf[0x65] = 0x00;
2179 pci_conf[0x66] = 0x00;
2180 pci_conf[0x67] = 0x00;
2181 pci_conf[0x68] = 0x01;
2182 pci_conf[0x69] = 0x00;
2183 pci_conf[0x6a] = 0x00;
2184 pci_conf[0x6b] = 0x00; // USBLEGSUP
2185 pci_conf[0x6c] = 0x00;
2186 pci_conf[0x6d] = 0x00;
2187 pci_conf[0x6e] = 0x00;
2188 pci_conf[0x6f] = 0xc0; // USBLEFCTLSTS
2189
2190 // 2.2 host controller interface version
2191 s->mmio[0x00] = (uint8_t) OPREGBASE;
2192 s->mmio[0x01] = 0x00;
2193 s->mmio[0x02] = 0x00;
2194 s->mmio[0x03] = 0x01; // HC version
2195 s->mmio[0x04] = NB_PORTS; // Number of downstream ports
2196 s->mmio[0x05] = 0x00; // No companion ports at present
2197 s->mmio[0x06] = 0x00;
2198 s->mmio[0x07] = 0x00;
2199 s->mmio[0x08] = 0x80; // We can cache whole frame, not 64-bit capable
2200 s->mmio[0x09] = 0x68; // EECP
2201 s->mmio[0x0a] = 0x00;
2202 s->mmio[0x0b] = 0x00;
2203
2204 s->irq = s->dev.irq[3];
2205
07771f6f 2206 usb_bus_new(&s->bus, &ehci_bus_ops, &s->dev.qdev);
94527ead
GH
2207 for(i = 0; i < NB_PORTS; i++) {
2208 usb_register_port(&s->bus, &s->ports[i], s, i, &ehci_port_ops,
2209 USB_SPEED_MASK_HIGH);
94527ead
GH
2210 s->ports[i].dev = 0;
2211 }
2212
2213 s->frame_timer = qemu_new_timer_ns(vm_clock, ehci_frame_timer, s);
8ac6d699 2214 QTAILQ_INIT(&s->queues);
94527ead
GH
2215
2216 qemu_register_reset(ehci_reset, s);
2217
2218 s->mem = cpu_register_io_memory(ehci_readfn, ehci_writefn, s,
2219 DEVICE_LITTLE_ENDIAN);
2220
2221 pci_register_bar(&s->dev, 0, MMIO_SIZE, PCI_BASE_ADDRESS_SPACE_MEMORY,
2222 ehci_map);
2223
2224 fprintf(stderr, "*** EHCI support is under development ***\n");
2225
2226 return 0;
2227}
2228
2229static void ehci_register(void)
2230{
2231 pci_qdev_register(&ehci_info);
2232}
2233device_init(ehci_register);
2234
2235/*
2236 * vim: expandtab ts=4
2237 */