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