]> Git Repo - qemu.git/blame - hw/usb/hcd-ehci.c
ehci: fix Interrupt Threshold Control implementation
[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;
9bc3a3a2 368 int revalidate;
0122f472
GH
369
370 /* cached data from guest - needs to be flushed
371 * when guest removes an entry (doorbell, handshake sequence)
372 */
eb36a88e
GH
373 EHCIqh qh; /* copy of current QH (being worked on) */
374 uint32_t qhaddr; /* address QH read from */
375 uint32_t qtdaddr; /* address QTD read from */
e59928b3 376 USBDevice *dev;
eb36a88e 377 QTAILQ_HEAD(, EHCIPacket) packets;
0122f472
GH
378};
379
df5d5c5c
HG
380typedef QTAILQ_HEAD(EHCIQueueHead, EHCIQueue) EHCIQueueHead;
381
0122f472 382struct EHCIState {
94527ead 383 PCIDevice dev;
0122f472 384 USBBus bus;
94527ead 385 qemu_irq irq;
e57964f5 386 MemoryRegion mem;
a0a3167a 387 int companion_count;
16a2dee6
GH
388
389 /* properties */
16a2dee6
GH
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;
9a773408
GH
418 uint32_t astate; /* Current state in asynchronous schedule */
419 uint32_t pstate; /* Current state in periodic schedule */
94527ead 420 USBPort ports[NB_PORTS];
a0a3167a 421 USBPort *companion_ports[NB_PORTS];
94527ead 422 uint32_t usbsts_pending;
7efc17af 423 uint32_t usbsts_frindex;
df5d5c5c
HG
424 EHCIQueueHead aqueues;
425 EHCIQueueHead pqueues;
94527ead 426
9a773408
GH
427 /* which address to look at next */
428 uint32_t a_fetch_addr;
429 uint32_t p_fetch_addr;
94527ead 430
0122f472 431 USBPacket ipacket;
0ce668bc 432 QEMUSGList isgl;
0122f472 433
adddecb1 434 uint64_t last_run_ns;
3a215326 435 uint32_t async_stepdown;
0122f472 436};
94527ead
GH
437
438#define SET_LAST_RUN_CLOCK(s) \
adddecb1 439 (s)->last_run_ns = qemu_get_clock_ns(vm_clock);
94527ead
GH
440
441/* nifty macros from Arnon's EHCI version */
442#define get_field(data, field) \
443 (((data) & field##_MASK) >> field##_SH)
444
445#define set_field(data, newval, field) do { \
446 uint32_t val = *data; \
447 val &= ~ field##_MASK; \
448 val |= ((newval) << field##_SH) & field##_MASK; \
449 *data = val; \
450 } while(0)
451
26d53979 452static const char *ehci_state_names[] = {
aac882e7
GH
453 [EST_INACTIVE] = "INACTIVE",
454 [EST_ACTIVE] = "ACTIVE",
455 [EST_EXECUTING] = "EXECUTING",
456 [EST_SLEEPING] = "SLEEPING",
457 [EST_WAITLISTHEAD] = "WAITLISTHEAD",
458 [EST_FETCHENTRY] = "FETCH ENTRY",
459 [EST_FETCHQH] = "FETCH QH",
460 [EST_FETCHITD] = "FETCH ITD",
461 [EST_ADVANCEQUEUE] = "ADVANCEQUEUE",
462 [EST_FETCHQTD] = "FETCH QTD",
463 [EST_EXECUTE] = "EXECUTE",
464 [EST_WRITEBACK] = "WRITEBACK",
465 [EST_HORIZONTALQH] = "HORIZONTALQH",
26d53979
GH
466};
467
468static const char *ehci_mmio_names[] = {
aac882e7
GH
469 [CAPLENGTH] = "CAPLENGTH",
470 [HCIVERSION] = "HCIVERSION",
471 [HCSPARAMS] = "HCSPARAMS",
472 [HCCPARAMS] = "HCCPARAMS",
473 [USBCMD] = "USBCMD",
474 [USBSTS] = "USBSTS",
475 [USBINTR] = "USBINTR",
476 [FRINDEX] = "FRINDEX",
477 [PERIODICLISTBASE] = "P-LIST BASE",
478 [ASYNCLISTADDR] = "A-LIST ADDR",
479 [PORTSC_BEGIN] = "PORTSC #0",
480 [PORTSC_BEGIN + 4] = "PORTSC #1",
481 [PORTSC_BEGIN + 8] = "PORTSC #2",
482 [PORTSC_BEGIN + 12] = "PORTSC #3",
335b8d20
GH
483 [PORTSC_BEGIN + 16] = "PORTSC #4",
484 [PORTSC_BEGIN + 20] = "PORTSC #5",
aac882e7 485 [CONFIGFLAG] = "CONFIGFLAG",
26d53979 486};
94527ead 487
26d53979 488static const char *nr2str(const char **n, size_t len, uint32_t nr)
94527ead 489{
26d53979
GH
490 if (nr < len && n[nr] != NULL) {
491 return n[nr];
94527ead 492 } else {
26d53979 493 return "unknown";
94527ead
GH
494 }
495}
94527ead 496
26d53979
GH
497static const char *state2str(uint32_t state)
498{
499 return nr2str(ehci_state_names, ARRAY_SIZE(ehci_state_names), state);
500}
501
502static const char *addr2str(target_phys_addr_t addr)
503{
504 return nr2str(ehci_mmio_names, ARRAY_SIZE(ehci_mmio_names), addr);
505}
506
439a97cc
GH
507static void ehci_trace_usbsts(uint32_t mask, int state)
508{
509 /* interrupts */
510 if (mask & USBSTS_INT) {
511 trace_usb_ehci_usbsts("INT", state);
512 }
513 if (mask & USBSTS_ERRINT) {
514 trace_usb_ehci_usbsts("ERRINT", state);
515 }
516 if (mask & USBSTS_PCD) {
517 trace_usb_ehci_usbsts("PCD", state);
518 }
519 if (mask & USBSTS_FLR) {
520 trace_usb_ehci_usbsts("FLR", state);
521 }
522 if (mask & USBSTS_HSE) {
523 trace_usb_ehci_usbsts("HSE", state);
524 }
525 if (mask & USBSTS_IAA) {
526 trace_usb_ehci_usbsts("IAA", state);
527 }
528
529 /* status */
530 if (mask & USBSTS_HALT) {
531 trace_usb_ehci_usbsts("HALT", state);
532 }
533 if (mask & USBSTS_REC) {
534 trace_usb_ehci_usbsts("REC", state);
535 }
536 if (mask & USBSTS_PSS) {
537 trace_usb_ehci_usbsts("PSS", state);
538 }
539 if (mask & USBSTS_ASS) {
540 trace_usb_ehci_usbsts("ASS", state);
541 }
542}
543
544static inline void ehci_set_usbsts(EHCIState *s, int mask)
545{
546 if ((s->usbsts & mask) == mask) {
547 return;
548 }
549 ehci_trace_usbsts(mask, 1);
550 s->usbsts |= mask;
551}
552
553static inline void ehci_clear_usbsts(EHCIState *s, int mask)
554{
555 if ((s->usbsts & mask) == 0) {
556 return;
557 }
558 ehci_trace_usbsts(mask, 0);
559 s->usbsts &= ~mask;
560}
94527ead 561
7efc17af
GH
562/* update irq line */
563static inline void ehci_update_irq(EHCIState *s)
94527ead
GH
564{
565 int level = 0;
566
94527ead
GH
567 if ((s->usbsts & USBINTR_MASK) & s->usbintr) {
568 level = 1;
569 }
570
7efc17af 571 trace_usb_ehci_irq(level, s->frindex, s->usbsts, s->usbintr);
94527ead
GH
572 qemu_set_irq(s->irq, level);
573}
574
7efc17af
GH
575/* flag interrupt condition */
576static inline void ehci_raise_irq(EHCIState *s, int intr)
94527ead 577{
6d3b6d3d
GH
578 if (intr & (USBSTS_PCD | USBSTS_FLR | USBSTS_HSE)) {
579 s->usbsts |= intr;
580 ehci_update_irq(s);
581 } else {
582 s->usbsts_pending |= intr;
583 }
94527ead
GH
584}
585
7efc17af
GH
586/*
587 * Commit pending interrupts (added via ehci_raise_irq),
588 * at the rate allowed by "Interrupt Threshold Control".
589 */
590static inline void ehci_commit_irq(EHCIState *s)
94527ead 591{
7efc17af
GH
592 uint32_t itc;
593
94527ead
GH
594 if (!s->usbsts_pending) {
595 return;
596 }
7efc17af
GH
597 if (s->usbsts_frindex > s->frindex) {
598 return;
599 }
600
601 itc = (s->usbcmd >> 16) & 0xff;
602 s->usbsts |= s->usbsts_pending;
94527ead 603 s->usbsts_pending = 0;
7efc17af
GH
604 s->usbsts_frindex = s->frindex + itc;
605 ehci_update_irq(s);
94527ead
GH
606}
607
daf25307
GH
608static void ehci_update_halt(EHCIState *s)
609{
610 if (s->usbcmd & USBCMD_RUNSTOP) {
611 ehci_clear_usbsts(s, USBSTS_HALT);
612 } else {
613 if (s->astate == EST_INACTIVE && s->pstate == EST_INACTIVE) {
614 ehci_set_usbsts(s, USBSTS_HALT);
615 }
616 }
617}
618
26d53979
GH
619static void ehci_set_state(EHCIState *s, int async, int state)
620{
621 if (async) {
622 trace_usb_ehci_state("async", state2str(state));
623 s->astate = state;
b53f685d
GH
624 if (s->astate == EST_INACTIVE) {
625 ehci_clear_usbsts(s, USBSTS_ASS);
daf25307 626 ehci_update_halt(s);
b53f685d
GH
627 } else {
628 ehci_set_usbsts(s, USBSTS_ASS);
629 }
26d53979
GH
630 } else {
631 trace_usb_ehci_state("periodic", state2str(state));
632 s->pstate = state;
b53f685d
GH
633 if (s->pstate == EST_INACTIVE) {
634 ehci_clear_usbsts(s, USBSTS_PSS);
daf25307 635 ehci_update_halt(s);
b53f685d
GH
636 } else {
637 ehci_set_usbsts(s, USBSTS_PSS);
638 }
26d53979
GH
639 }
640}
641
642static int ehci_get_state(EHCIState *s, int async)
643{
644 return async ? s->astate : s->pstate;
645}
646
0122f472
GH
647static void ehci_set_fetch_addr(EHCIState *s, int async, uint32_t addr)
648{
649 if (async) {
650 s->a_fetch_addr = addr;
651 } else {
652 s->p_fetch_addr = addr;
653 }
654}
655
656static int ehci_get_fetch_addr(EHCIState *s, int async)
657{
658 return async ? s->a_fetch_addr : s->p_fetch_addr;
659}
660
8ac6d699 661static void ehci_trace_qh(EHCIQueue *q, target_phys_addr_t addr, EHCIqh *qh)
26d53979 662{
025b168c
GH
663 /* need three here due to argument count limits */
664 trace_usb_ehci_qh_ptrs(q, addr, qh->next,
665 qh->current_qtd, qh->next_qtd, qh->altnext_qtd);
666 trace_usb_ehci_qh_fields(addr,
667 get_field(qh->epchar, QH_EPCHAR_RL),
668 get_field(qh->epchar, QH_EPCHAR_MPLEN),
669 get_field(qh->epchar, QH_EPCHAR_EPS),
670 get_field(qh->epchar, QH_EPCHAR_EP),
671 get_field(qh->epchar, QH_EPCHAR_DEVADDR));
672 trace_usb_ehci_qh_bits(addr,
673 (bool)(qh->epchar & QH_EPCHAR_C),
674 (bool)(qh->epchar & QH_EPCHAR_H),
675 (bool)(qh->epchar & QH_EPCHAR_DTC),
676 (bool)(qh->epchar & QH_EPCHAR_I));
26d53979
GH
677}
678
8ac6d699 679static void ehci_trace_qtd(EHCIQueue *q, target_phys_addr_t addr, EHCIqtd *qtd)
26d53979 680{
025b168c
GH
681 /* need three here due to argument count limits */
682 trace_usb_ehci_qtd_ptrs(q, addr, qtd->next, qtd->altnext);
683 trace_usb_ehci_qtd_fields(addr,
684 get_field(qtd->token, QTD_TOKEN_TBYTES),
685 get_field(qtd->token, QTD_TOKEN_CPAGE),
686 get_field(qtd->token, QTD_TOKEN_CERR),
687 get_field(qtd->token, QTD_TOKEN_PID));
688 trace_usb_ehci_qtd_bits(addr,
689 (bool)(qtd->token & QTD_TOKEN_IOC),
690 (bool)(qtd->token & QTD_TOKEN_ACTIVE),
691 (bool)(qtd->token & QTD_TOKEN_HALT),
692 (bool)(qtd->token & QTD_TOKEN_BABBLE),
693 (bool)(qtd->token & QTD_TOKEN_XACTERR));
26d53979
GH
694}
695
696static void ehci_trace_itd(EHCIState *s, target_phys_addr_t addr, EHCIitd *itd)
697{
e654887f
GH
698 trace_usb_ehci_itd(addr, itd->next,
699 get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT),
700 get_field(itd->bufptr[2], ITD_BUFPTR_MULT),
701 get_field(itd->bufptr[0], ITD_BUFPTR_EP),
702 get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR));
26d53979
GH
703}
704
2fe80192
GH
705static void ehci_trace_sitd(EHCIState *s, target_phys_addr_t addr,
706 EHCIsitd *sitd)
707{
708 trace_usb_ehci_sitd(addr, sitd->next,
709 (bool)(sitd->results & SITD_RESULTS_ACTIVE));
710}
711
ec807d12
GH
712static inline bool ehci_enabled(EHCIState *s)
713{
714 return s->usbcmd & USBCMD_RUNSTOP;
715}
716
717static inline bool ehci_async_enabled(EHCIState *s)
718{
719 return ehci_enabled(s) && (s->usbcmd & USBCMD_ASE);
720}
721
722static inline bool ehci_periodic_enabled(EHCIState *s)
723{
724 return ehci_enabled(s) && (s->usbcmd & USBCMD_PSE);
725}
726
eb36a88e
GH
727/* packet management */
728
729static EHCIPacket *ehci_alloc_packet(EHCIQueue *q)
730{
731 EHCIPacket *p;
732
eb36a88e
GH
733 p = g_new0(EHCIPacket, 1);
734 p->queue = q;
735 usb_packet_init(&p->packet);
736 QTAILQ_INSERT_TAIL(&q->packets, p, next);
737 trace_usb_ehci_packet_action(p->queue, p, "alloc");
738 return p;
739}
740
741static void ehci_free_packet(EHCIPacket *p)
742{
743 trace_usb_ehci_packet_action(p->queue, p, "free");
744 if (p->async == EHCI_ASYNC_INFLIGHT) {
745 usb_cancel_packet(&p->packet);
746 }
747 QTAILQ_REMOVE(&p->queue->packets, p, next);
748 usb_packet_cleanup(&p->packet);
749 g_free(p);
750}
751
8ac6d699
GH
752/* queue management */
753
8f6d5e26 754static EHCIQueue *ehci_alloc_queue(EHCIState *ehci, uint32_t addr, int async)
8ac6d699 755{
df5d5c5c 756 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
8ac6d699
GH
757 EHCIQueue *q;
758
7267c094 759 q = g_malloc0(sizeof(*q));
8ac6d699 760 q->ehci = ehci;
8f6d5e26 761 q->qhaddr = addr;
ae0138a8 762 q->async = async;
eb36a88e 763 QTAILQ_INIT(&q->packets);
df5d5c5c 764 QTAILQ_INSERT_HEAD(head, q, next);
8ac6d699
GH
765 trace_usb_ehci_queue_action(q, "alloc");
766 return q;
767}
768
ae0138a8 769static void ehci_free_queue(EHCIQueue *q)
8ac6d699 770{
ae0138a8 771 EHCIQueueHead *head = q->async ? &q->ehci->aqueues : &q->ehci->pqueues;
eb36a88e
GH
772 EHCIPacket *p;
773
8ac6d699 774 trace_usb_ehci_queue_action(q, "free");
eb36a88e
GH
775 while ((p = QTAILQ_FIRST(&q->packets)) != NULL) {
776 ehci_free_packet(p);
8ac6d699 777 }
df5d5c5c 778 QTAILQ_REMOVE(head, q, next);
7267c094 779 g_free(q);
8ac6d699
GH
780}
781
df5d5c5c
HG
782static EHCIQueue *ehci_find_queue_by_qh(EHCIState *ehci, uint32_t addr,
783 int async)
8ac6d699 784{
df5d5c5c 785 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
8ac6d699
GH
786 EHCIQueue *q;
787
df5d5c5c 788 QTAILQ_FOREACH(q, head, next) {
8ac6d699
GH
789 if (addr == q->qhaddr) {
790 return q;
791 }
792 }
793 return NULL;
794}
795
9bc3a3a2
GH
796static void ehci_queues_tag_unused_async(EHCIState *ehci)
797{
798 EHCIQueue *q;
799
800 QTAILQ_FOREACH(q, &ehci->aqueues, next) {
801 if (!q->seen) {
802 q->revalidate = 1;
803 }
804 }
805}
806
807static void ehci_queues_rip_unused(EHCIState *ehci, int async)
8ac6d699 808{
df5d5c5c 809 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
3a215326 810 uint64_t maxage = FRAME_TIMER_NS * ehci->maxframes * 4;
8ac6d699
GH
811 EHCIQueue *q, *tmp;
812
df5d5c5c 813 QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
8ac6d699
GH
814 if (q->seen) {
815 q->seen = 0;
adddecb1 816 q->ts = ehci->last_run_ns;
8ac6d699
GH
817 continue;
818 }
9bc3a3a2 819 if (ehci->last_run_ns < q->ts + maxage) {
8ac6d699
GH
820 continue;
821 }
ae0138a8 822 ehci_free_queue(q);
8ac6d699
GH
823 }
824}
825
df5d5c5c 826static void ehci_queues_rip_device(EHCIState *ehci, USBDevice *dev, int async)
07771f6f 827{
df5d5c5c 828 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
07771f6f
GH
829 EHCIQueue *q, *tmp;
830
df5d5c5c 831 QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
e59928b3 832 if (q->dev != dev) {
07771f6f
GH
833 continue;
834 }
ae0138a8 835 ehci_free_queue(q);
07771f6f
GH
836 }
837}
838
df5d5c5c 839static void ehci_queues_rip_all(EHCIState *ehci, int async)
8ac6d699 840{
df5d5c5c 841 EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
8ac6d699
GH
842 EHCIQueue *q, *tmp;
843
df5d5c5c 844 QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
ae0138a8 845 ehci_free_queue(q);
8ac6d699
GH
846 }
847}
848
94527ead
GH
849/* Attach or detach a device on root hub */
850
851static void ehci_attach(USBPort *port)
852{
853 EHCIState *s = port->opaque;
854 uint32_t *portsc = &s->portsc[port->index];
30e9d412 855 const char *owner = (*portsc & PORTSC_POWNER) ? "comp" : "ehci";
94527ead 856
30e9d412 857 trace_usb_ehci_port_attach(port->index, owner, port->dev->product_desc);
94527ead 858
a0a3167a
HG
859 if (*portsc & PORTSC_POWNER) {
860 USBPort *companion = s->companion_ports[port->index];
861 companion->dev = port->dev;
862 companion->ops->attach(companion);
863 return;
864 }
865
94527ead
GH
866 *portsc |= PORTSC_CONNECT;
867 *portsc |= PORTSC_CSC;
868
7efc17af
GH
869 ehci_raise_irq(s, USBSTS_PCD);
870 ehci_commit_irq(s);
94527ead
GH
871}
872
873static void ehci_detach(USBPort *port)
874{
875 EHCIState *s = port->opaque;
876 uint32_t *portsc = &s->portsc[port->index];
30e9d412 877 const char *owner = (*portsc & PORTSC_POWNER) ? "comp" : "ehci";
94527ead 878
30e9d412 879 trace_usb_ehci_port_detach(port->index, owner);
94527ead 880
a0a3167a
HG
881 if (*portsc & PORTSC_POWNER) {
882 USBPort *companion = s->companion_ports[port->index];
883 companion->ops->detach(companion);
884 companion->dev = NULL;
f76e1d81
HG
885 /*
886 * EHCI spec 4.2.2: "When a disconnect occurs... On the event,
887 * the port ownership is returned immediately to the EHCI controller."
888 */
889 *portsc &= ~PORTSC_POWNER;
a0a3167a
HG
890 return;
891 }
892
df5d5c5c
HG
893 ehci_queues_rip_device(s, port->dev, 0);
894 ehci_queues_rip_device(s, port->dev, 1);
4706ab6c 895
fbd97532 896 *portsc &= ~(PORTSC_CONNECT|PORTSC_PED);
94527ead
GH
897 *portsc |= PORTSC_CSC;
898
7efc17af
GH
899 ehci_raise_irq(s, USBSTS_PCD);
900 ehci_commit_irq(s);
94527ead
GH
901}
902
4706ab6c
HG
903static void ehci_child_detach(USBPort *port, USBDevice *child)
904{
905 EHCIState *s = port->opaque;
a0a3167a
HG
906 uint32_t portsc = s->portsc[port->index];
907
908 if (portsc & PORTSC_POWNER) {
909 USBPort *companion = s->companion_ports[port->index];
910 companion->ops->child_detach(companion, child);
a0a3167a
HG
911 return;
912 }
4706ab6c 913
df5d5c5c
HG
914 ehci_queues_rip_device(s, child, 0);
915 ehci_queues_rip_device(s, child, 1);
4706ab6c
HG
916}
917
a0a3167a
HG
918static void ehci_wakeup(USBPort *port)
919{
920 EHCIState *s = port->opaque;
921 uint32_t portsc = s->portsc[port->index];
922
923 if (portsc & PORTSC_POWNER) {
924 USBPort *companion = s->companion_ports[port->index];
925 if (companion->ops->wakeup) {
926 companion->ops->wakeup(companion);
927 }
37952117 928 return;
a0a3167a 929 }
37952117
HG
930
931 qemu_bh_schedule(s->async_bh);
a0a3167a
HG
932}
933
934static int ehci_register_companion(USBBus *bus, USBPort *ports[],
935 uint32_t portcount, uint32_t firstport)
936{
937 EHCIState *s = container_of(bus, EHCIState, bus);
938 uint32_t i;
939
940 if (firstport + portcount > NB_PORTS) {
941 qerror_report(QERR_INVALID_PARAMETER_VALUE, "firstport",
942 "firstport on masterbus");
943 error_printf_unless_qmp(
944 "firstport value of %u makes companion take ports %u - %u, which "
945 "is outside of the valid range of 0 - %u\n", firstport, firstport,
946 firstport + portcount - 1, NB_PORTS - 1);
947 return -1;
948 }
949
950 for (i = 0; i < portcount; i++) {
951 if (s->companion_ports[firstport + i]) {
952 qerror_report(QERR_INVALID_PARAMETER_VALUE, "masterbus",
953 "an USB masterbus");
954 error_printf_unless_qmp(
955 "port %u on masterbus %s already has a companion assigned\n",
956 firstport + i, bus->qbus.name);
957 return -1;
958 }
959 }
960
961 for (i = 0; i < portcount; i++) {
962 s->companion_ports[firstport + i] = ports[i];
963 s->ports[firstport + i].speedmask |=
964 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL;
965 /* Ensure devs attached before the initial reset go to the companion */
966 s->portsc[firstport + i] = PORTSC_POWNER;
967 }
968
969 s->companion_count++;
970 s->mmio[0x05] = (s->companion_count << 4) | portcount;
971
972 return 0;
973}
974
828143c6
GH
975static USBDevice *ehci_find_device(EHCIState *ehci, uint8_t addr)
976{
977 USBDevice *dev;
978 USBPort *port;
979 int i;
980
981 for (i = 0; i < NB_PORTS; i++) {
982 port = &ehci->ports[i];
983 if (!(ehci->portsc[i] & PORTSC_PED)) {
984 DPRINTF("Port %d not enabled\n", i);
985 continue;
986 }
987 dev = usb_find_device(port, addr);
988 if (dev != NULL) {
989 return dev;
990 }
991 }
992 return NULL;
993}
994
94527ead
GH
995/* 4.1 host controller initialization */
996static void ehci_reset(void *opaque)
997{
998 EHCIState *s = opaque;
94527ead 999 int i;
a0a3167a 1000 USBDevice *devs[NB_PORTS];
94527ead 1001
439a97cc 1002 trace_usb_ehci_reset();
94527ead 1003
a0a3167a
HG
1004 /*
1005 * Do the detach before touching portsc, so that it correctly gets send to
1006 * us or to our companion based on PORTSC_POWNER before the reset.
1007 */
1008 for(i = 0; i < NB_PORTS; i++) {
1009 devs[i] = s->ports[i].dev;
891fb2cd
GH
1010 if (devs[i] && devs[i]->attached) {
1011 usb_detach(&s->ports[i]);
a0a3167a
HG
1012 }
1013 }
1014
94527ead
GH
1015 memset(&s->mmio[OPREGBASE], 0x00, MMIO_SIZE - OPREGBASE);
1016
1017 s->usbcmd = NB_MAXINTRATE << USBCMD_ITC_SH;
1018 s->usbsts = USBSTS_HALT;
7efc17af
GH
1019 s->usbsts_pending = 0;
1020 s->usbsts_frindex = 0;
94527ead
GH
1021
1022 s->astate = EST_INACTIVE;
1023 s->pstate = EST_INACTIVE;
94527ead
GH
1024
1025 for(i = 0; i < NB_PORTS; i++) {
a0a3167a
HG
1026 if (s->companion_ports[i]) {
1027 s->portsc[i] = PORTSC_POWNER | PORTSC_PPOWER;
1028 } else {
1029 s->portsc[i] = PORTSC_PPOWER;
1030 }
891fb2cd
GH
1031 if (devs[i] && devs[i]->attached) {
1032 usb_attach(&s->ports[i]);
d28f4e2d 1033 usb_device_reset(devs[i]);
94527ead
GH
1034 }
1035 }
df5d5c5c
HG
1036 ehci_queues_rip_all(s, 0);
1037 ehci_queues_rip_all(s, 1);
81d37739 1038 qemu_del_timer(s->frame_timer);
0fb3e299 1039 qemu_bh_cancel(s->async_bh);
94527ead
GH
1040}
1041
1042static uint32_t ehci_mem_readb(void *ptr, target_phys_addr_t addr)
1043{
1044 EHCIState *s = ptr;
1045 uint32_t val;
1046
1047 val = s->mmio[addr];
1048
1049 return val;
1050}
1051
1052static uint32_t ehci_mem_readw(void *ptr, target_phys_addr_t addr)
1053{
1054 EHCIState *s = ptr;
1055 uint32_t val;
1056
1057 val = s->mmio[addr] | (s->mmio[addr+1] << 8);
1058
1059 return val;
1060}
1061
1062static uint32_t ehci_mem_readl(void *ptr, target_phys_addr_t addr)
1063{
1064 EHCIState *s = ptr;
1065 uint32_t val;
1066
1067 val = s->mmio[addr] | (s->mmio[addr+1] << 8) |
1068 (s->mmio[addr+2] << 16) | (s->mmio[addr+3] << 24);
1069
439a97cc 1070 trace_usb_ehci_mmio_readl(addr, addr2str(addr), val);
94527ead
GH
1071 return val;
1072}
1073
1074static void ehci_mem_writeb(void *ptr, target_phys_addr_t addr, uint32_t val)
1075{
1076 fprintf(stderr, "EHCI doesn't handle byte writes to MMIO\n");
1077 exit(1);
1078}
1079
1080static void ehci_mem_writew(void *ptr, target_phys_addr_t addr, uint32_t val)
1081{
1082 fprintf(stderr, "EHCI doesn't handle 16-bit writes to MMIO\n");
1083 exit(1);
1084}
1085
a0a3167a
HG
1086static void handle_port_owner_write(EHCIState *s, int port, uint32_t owner)
1087{
1088 USBDevice *dev = s->ports[port].dev;
1089 uint32_t *portsc = &s->portsc[port];
1090 uint32_t orig;
1091
1092 if (s->companion_ports[port] == NULL)
1093 return;
1094
1095 owner = owner & PORTSC_POWNER;
1096 orig = *portsc & PORTSC_POWNER;
1097
1098 if (!(owner ^ orig)) {
1099 return;
1100 }
1101
891fb2cd
GH
1102 if (dev && dev->attached) {
1103 usb_detach(&s->ports[port]);
a0a3167a
HG
1104 }
1105
1106 *portsc &= ~PORTSC_POWNER;
1107 *portsc |= owner;
1108
891fb2cd
GH
1109 if (dev && dev->attached) {
1110 usb_attach(&s->ports[port]);
a0a3167a
HG
1111 }
1112}
1113
94527ead
GH
1114static void handle_port_status_write(EHCIState *s, int port, uint32_t val)
1115{
1116 uint32_t *portsc = &s->portsc[port];
94527ead
GH
1117 USBDevice *dev = s->ports[port].dev;
1118
fbd97532
HG
1119 /* Clear rwc bits */
1120 *portsc &= ~(val & PORTSC_RWC_MASK);
1121 /* The guest may clear, but not set the PED bit */
1122 *portsc &= val | ~PORTSC_PED;
a0a3167a
HG
1123 /* POWNER is masked out by RO_MASK as it is RO when we've no companion */
1124 handle_port_owner_write(s, port, val);
1125 /* And finally apply RO_MASK */
94527ead
GH
1126 val &= PORTSC_RO_MASK;
1127
94527ead 1128 if ((val & PORTSC_PRESET) && !(*portsc & PORTSC_PRESET)) {
dcbd0b5c 1129 trace_usb_ehci_port_reset(port, 1);
94527ead
GH
1130 }
1131
1132 if (!(val & PORTSC_PRESET) &&(*portsc & PORTSC_PRESET)) {
dcbd0b5c 1133 trace_usb_ehci_port_reset(port, 0);
891fb2cd 1134 if (dev && dev->attached) {
d28f4e2d 1135 usb_port_reset(&s->ports[port]);
94527ead
GH
1136 *portsc &= ~PORTSC_CSC;
1137 }
1138
fbd97532
HG
1139 /*
1140 * Table 2.16 Set the enable bit(and enable bit change) to indicate
94527ead 1141 * to SW that this port has a high speed device attached
94527ead 1142 */
891fb2cd 1143 if (dev && dev->attached && (dev->speedmask & USB_SPEED_MASK_HIGH)) {
fbd97532
HG
1144 val |= PORTSC_PED;
1145 }
94527ead
GH
1146 }
1147
1148 *portsc &= ~PORTSC_RO_MASK;
1149 *portsc |= val;
94527ead
GH
1150}
1151
1152static void ehci_mem_writel(void *ptr, target_phys_addr_t addr, uint32_t val)
1153{
1154 EHCIState *s = ptr;
c4f8e211
GH
1155 uint32_t *mmio = (uint32_t *)(&s->mmio[addr]);
1156 uint32_t old = *mmio;
94527ead 1157 int i;
439a97cc 1158
c4f8e211 1159 trace_usb_ehci_mmio_writel(addr, addr2str(addr), val);
94527ead
GH
1160
1161 /* Only aligned reads are allowed on OHCI */
1162 if (addr & 3) {
1163 fprintf(stderr, "usb-ehci: Mis-aligned write to addr 0x"
1164 TARGET_FMT_plx "\n", addr);
1165 return;
1166 }
1167
1168 if (addr >= PORTSC && addr < PORTSC + 4 * NB_PORTS) {
1169 handle_port_status_write(s, (addr-PORTSC)/4, val);
c4f8e211 1170 trace_usb_ehci_mmio_change(addr, addr2str(addr), *mmio, old);
94527ead
GH
1171 return;
1172 }
1173
1174 if (addr < OPREGBASE) {
1175 fprintf(stderr, "usb-ehci: write attempt to read-only register"
1176 TARGET_FMT_plx "\n", addr);
1177 return;
1178 }
1179
1180
1181 /* Do any register specific pre-write processing here. */
94527ead
GH
1182 switch(addr) {
1183 case USBCMD:
7046530c
GH
1184 if (val & USBCMD_HCRESET) {
1185 ehci_reset(s);
1186 val = s->usbcmd;
1187 break;
1188 }
1189
daf25307
GH
1190 if (((USBCMD_RUNSTOP | USBCMD_PSE | USBCMD_ASE) & val) !=
1191 ((USBCMD_RUNSTOP | USBCMD_PSE | USBCMD_ASE) & s->usbcmd)) {
3a215326 1192 if (s->pstate == EST_INACTIVE) {
daf25307
GH
1193 SET_LAST_RUN_CLOCK(s);
1194 }
1195 ehci_update_halt(s);
3a215326
GH
1196 s->async_stepdown = 0;
1197 qemu_mod_timer(s->frame_timer, qemu_get_clock_ns(vm_clock));
94527ead
GH
1198 }
1199
94527ead
GH
1200 /* not supporting dynamic frame list size at the moment */
1201 if ((val & USBCMD_FLS) && !(s->usbcmd & USBCMD_FLS)) {
1202 fprintf(stderr, "attempt to set frame list size -- value %d\n",
1203 val & USBCMD_FLS);
1204 val &= ~USBCMD_FLS;
1205 }
94527ead
GH
1206 break;
1207
94527ead 1208 case USBSTS:
a31f0531
JM
1209 val &= USBSTS_RO_MASK; // bits 6 through 31 are RO
1210 ehci_clear_usbsts(s, val); // bits 0 through 5 are R/WC
439a97cc 1211 val = s->usbsts;
7efc17af 1212 ehci_update_irq(s);
94527ead
GH
1213 break;
1214
94527ead
GH
1215 case USBINTR:
1216 val &= USBINTR_MASK;
94527ead
GH
1217 break;
1218
8a771f77
HG
1219 case FRINDEX:
1220 val &= 0x00003ff8; /* frindex is 14bits and always a multiple of 8 */
1221 break;
1222
94527ead 1223 case CONFIGFLAG:
94527ead
GH
1224 val &= 0x1;
1225 if (val) {
1226 for(i = 0; i < NB_PORTS; i++)
a0a3167a 1227 handle_port_owner_write(s, i, 0);
94527ead
GH
1228 }
1229 break;
1230
1231 case PERIODICLISTBASE:
ec807d12 1232 if (ehci_periodic_enabled(s)) {
94527ead
GH
1233 fprintf(stderr,
1234 "ehci: PERIODIC list base register set while periodic schedule\n"
1235 " is enabled and HC is enabled\n");
1236 }
94527ead
GH
1237 break;
1238
1239 case ASYNCLISTADDR:
ec807d12 1240 if (ehci_async_enabled(s)) {
94527ead
GH
1241 fprintf(stderr,
1242 "ehci: ASYNC list address register set while async schedule\n"
1243 " is enabled and HC is enabled\n");
1244 }
94527ead
GH
1245 break;
1246 }
1247
c4f8e211
GH
1248 *mmio = val;
1249 trace_usb_ehci_mmio_change(addr, addr2str(addr), *mmio, old);
94527ead
GH
1250}
1251
1252
1253// TODO : Put in common header file, duplication from usb-ohci.c
1254
1255/* Get an array of dwords from main memory */
68d55358
DG
1256static inline int get_dwords(EHCIState *ehci, uint32_t addr,
1257 uint32_t *buf, int num)
94527ead
GH
1258{
1259 int i;
1260
1261 for(i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
4bf80119 1262 pci_dma_read(&ehci->dev, addr, buf, sizeof(*buf));
94527ead
GH
1263 *buf = le32_to_cpu(*buf);
1264 }
1265
1266 return 1;
1267}
1268
1269/* Put an array of dwords in to main memory */
68d55358
DG
1270static inline int put_dwords(EHCIState *ehci, uint32_t addr,
1271 uint32_t *buf, int num)
94527ead
GH
1272{
1273 int i;
1274
1275 for(i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
1276 uint32_t tmp = cpu_to_le32(*buf);
4bf80119 1277 pci_dma_write(&ehci->dev, addr, &tmp, sizeof(tmp));
94527ead
GH
1278 }
1279
1280 return 1;
1281}
1282
a5e0139a
GH
1283/*
1284 * Write the qh back to guest physical memory. This step isn't
1285 * in the EHCI spec but we need to do it since we don't share
1286 * physical memory with our guest VM.
1287 *
1288 * The first three dwords are read-only for the EHCI, so skip them
1289 * when writing back the qh.
1290 */
1291static void ehci_flush_qh(EHCIQueue *q)
1292{
1293 uint32_t *qh = (uint32_t *) &q->qh;
1294 uint32_t dwords = sizeof(EHCIqh) >> 2;
1295 uint32_t addr = NLPTR_GET(q->qhaddr);
1296
1297 put_dwords(q->ehci, addr + 3 * sizeof(uint32_t), qh + 3, dwords - 3);
1298}
1299
94527ead
GH
1300// 4.10.2
1301
0122f472 1302static int ehci_qh_do_overlay(EHCIQueue *q)
94527ead 1303{
eb36a88e 1304 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
94527ead
GH
1305 int i;
1306 int dtoggle;
1307 int ping;
1308 int eps;
1309 int reload;
1310
eb36a88e
GH
1311 assert(p != NULL);
1312 assert(p->qtdaddr == q->qtdaddr);
1313
94527ead
GH
1314 // remember values in fields to preserve in qh after overlay
1315
0122f472
GH
1316 dtoggle = q->qh.token & QTD_TOKEN_DTOGGLE;
1317 ping = q->qh.token & QTD_TOKEN_PING;
94527ead 1318
eb36a88e
GH
1319 q->qh.current_qtd = p->qtdaddr;
1320 q->qh.next_qtd = p->qtd.next;
1321 q->qh.altnext_qtd = p->qtd.altnext;
1322 q->qh.token = p->qtd.token;
94527ead
GH
1323
1324
0122f472 1325 eps = get_field(q->qh.epchar, QH_EPCHAR_EPS);
94527ead 1326 if (eps == EHCI_QH_EPS_HIGH) {
0122f472
GH
1327 q->qh.token &= ~QTD_TOKEN_PING;
1328 q->qh.token |= ping;
94527ead
GH
1329 }
1330
0122f472
GH
1331 reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1332 set_field(&q->qh.altnext_qtd, reload, QH_ALTNEXT_NAKCNT);
94527ead
GH
1333
1334 for (i = 0; i < 5; i++) {
eb36a88e 1335 q->qh.bufptr[i] = p->qtd.bufptr[i];
94527ead
GH
1336 }
1337
0122f472 1338 if (!(q->qh.epchar & QH_EPCHAR_DTC)) {
94527ead 1339 // preserve QH DT bit
0122f472
GH
1340 q->qh.token &= ~QTD_TOKEN_DTOGGLE;
1341 q->qh.token |= dtoggle;
94527ead
GH
1342 }
1343
0122f472
GH
1344 q->qh.bufptr[1] &= ~BUFPTR_CPROGMASK_MASK;
1345 q->qh.bufptr[2] &= ~BUFPTR_FRAMETAG_MASK;
94527ead 1346
a5e0139a 1347 ehci_flush_qh(q);
94527ead
GH
1348
1349 return 0;
1350}
1351
eb36a88e 1352static int ehci_init_transfer(EHCIPacket *p)
94527ead 1353{
0ce668bc 1354 uint32_t cpage, offset, bytes, plen;
68d55358 1355 dma_addr_t page;
94527ead 1356
eb36a88e
GH
1357 cpage = get_field(p->qtd.token, QTD_TOKEN_CPAGE);
1358 bytes = get_field(p->qtd.token, QTD_TOKEN_TBYTES);
1359 offset = p->qtd.bufptr[0] & ~QTD_BUFPTR_MASK;
1360 pci_dma_sglist_init(&p->sgl, &p->queue->ehci->dev, 5);
94527ead 1361
0ce668bc
GH
1362 while (bytes > 0) {
1363 if (cpage > 4) {
1364 fprintf(stderr, "cpage out of range (%d)\n", cpage);
1365 return USB_RET_PROCERR;
1366 }
94527ead 1367
eb36a88e 1368 page = p->qtd.bufptr[cpage] & QTD_BUFPTR_MASK;
0ce668bc
GH
1369 page += offset;
1370 plen = bytes;
1371 if (plen > 4096 - offset) {
1372 plen = 4096 - offset;
1373 offset = 0;
1374 cpage++;
94527ead
GH
1375 }
1376
eb36a88e 1377 qemu_sglist_add(&p->sgl, page, plen);
0ce668bc
GH
1378 bytes -= plen;
1379 }
1380 return 0;
1381}
94527ead 1382
0ce668bc
GH
1383static void ehci_finish_transfer(EHCIQueue *q, int status)
1384{
1385 uint32_t cpage, offset;
94527ead 1386
0ce668bc
GH
1387 if (status > 0) {
1388 /* update cpage & offset */
1389 cpage = get_field(q->qh.token, QTD_TOKEN_CPAGE);
1390 offset = q->qh.bufptr[0] & ~QTD_BUFPTR_MASK;
94527ead 1391
0ce668bc
GH
1392 offset += status;
1393 cpage += offset >> QTD_BUFPTR_SH;
1394 offset &= ~QTD_BUFPTR_MASK;
94527ead 1395
0ce668bc
GH
1396 set_field(&q->qh.token, cpage, QTD_TOKEN_CPAGE);
1397 q->qh.bufptr[0] &= QTD_BUFPTR_MASK;
1398 q->qh.bufptr[0] |= offset;
1399 }
94527ead
GH
1400}
1401
d47e59b8 1402static void ehci_async_complete_packet(USBPort *port, USBPacket *packet)
94527ead 1403{
eb36a88e 1404 EHCIPacket *p;
a0a3167a
HG
1405 EHCIState *s = port->opaque;
1406 uint32_t portsc = s->portsc[port->index];
1407
1408 if (portsc & PORTSC_POWNER) {
1409 USBPort *companion = s->companion_ports[port->index];
1410 companion->ops->complete(companion, packet);
1411 return;
1412 }
94527ead 1413
eb36a88e
GH
1414 p = container_of(packet, EHCIPacket, packet);
1415 trace_usb_ehci_packet_action(p->queue, p, "wakeup");
1416 assert(p->async == EHCI_ASYNC_INFLIGHT);
1417 p->async = EHCI_ASYNC_FINISHED;
1418 p->usb_status = packet->result;
ae710b99
GH
1419
1420 if (p->queue->async) {
1421 qemu_bh_schedule(p->queue->ehci->async_bh);
1422 }
94527ead
GH
1423}
1424
0122f472 1425static void ehci_execute_complete(EHCIQueue *q)
94527ead 1426{
eb36a88e
GH
1427 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
1428
1429 assert(p != NULL);
1430 assert(p->qtdaddr == q->qtdaddr);
1431 assert(p->async != EHCI_ASYNC_INFLIGHT);
1432 p->async = EHCI_ASYNC_NONE;
94527ead
GH
1433
1434 DPRINTF("execute_complete: qhaddr 0x%x, next %x, qtdaddr 0x%x, status %d\n",
0122f472 1435 q->qhaddr, q->qh.next, q->qtdaddr, q->usb_status);
94527ead 1436
eb36a88e
GH
1437 if (p->usb_status < 0) {
1438 switch (p->usb_status) {
d61000a8 1439 case USB_RET_IOERROR:
94527ead 1440 case USB_RET_NODEV:
d2bd525f 1441 q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR);
dd54cfe0 1442 set_field(&q->qh.token, 0, QTD_TOKEN_CERR);
7efc17af 1443 ehci_raise_irq(q->ehci, USBSTS_ERRINT);
94527ead
GH
1444 break;
1445 case USB_RET_STALL:
0122f472 1446 q->qh.token |= QTD_TOKEN_HALT;
7efc17af 1447 ehci_raise_irq(q->ehci, USBSTS_ERRINT);
94527ead
GH
1448 break;
1449 case USB_RET_NAK:
553a6a59
HG
1450 set_field(&q->qh.altnext_qtd, 0, QH_ALTNEXT_NAKCNT);
1451 return; /* We're not done yet with this transaction */
94527ead 1452 case USB_RET_BABBLE:
d2bd525f 1453 q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE);
7efc17af 1454 ehci_raise_irq(q->ehci, USBSTS_ERRINT);
94527ead
GH
1455 break;
1456 default:
0122f472 1457 /* should not be triggerable */
eb36a88e 1458 fprintf(stderr, "USB invalid response %d\n", p->usb_status);
0122f472 1459 assert(0);
94527ead
GH
1460 break;
1461 }
eb36a88e
GH
1462 } else if ((p->usb_status > p->tbytes) && (p->pid == USB_TOKEN_IN)) {
1463 p->usb_status = USB_RET_BABBLE;
dd54cfe0 1464 q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE);
7efc17af 1465 ehci_raise_irq(q->ehci, USBSTS_ERRINT);
94527ead 1466 } else {
94527ead
GH
1467 // TODO check 4.12 for splits
1468
eb36a88e
GH
1469 if (p->tbytes && p->pid == USB_TOKEN_IN) {
1470 p->tbytes -= p->usb_status;
94527ead 1471 } else {
eb36a88e 1472 p->tbytes = 0;
94527ead
GH
1473 }
1474
eb36a88e
GH
1475 DPRINTF("updating tbytes to %d\n", p->tbytes);
1476 set_field(&q->qh.token, p->tbytes, QTD_TOKEN_TBYTES);
94527ead 1477 }
eb36a88e 1478 ehci_finish_transfer(q, p->usb_status);
e2f89926 1479 usb_packet_unmap(&p->packet, &p->sgl);
eb36a88e 1480 qemu_sglist_destroy(&p->sgl);
94527ead 1481
0122f472
GH
1482 q->qh.token ^= QTD_TOKEN_DTOGGLE;
1483 q->qh.token &= ~QTD_TOKEN_ACTIVE;
94527ead 1484
553a6a59 1485 if (q->qh.token & QTD_TOKEN_IOC) {
7efc17af 1486 ehci_raise_irq(q->ehci, USBSTS_INT);
94527ead 1487 }
94527ead
GH
1488}
1489
1490// 4.10.3
1491
773dc9cd 1492static int ehci_execute(EHCIPacket *p, const char *action)
94527ead 1493{
079d0b7f 1494 USBEndpoint *ep;
94527ead 1495 int ret;
94527ead 1496 int endp;
94527ead 1497
4224558f
GH
1498 if (!(p->qtd.token & QTD_TOKEN_ACTIVE)) {
1499 fprintf(stderr, "Attempting to execute inactive qtd\n");
94527ead
GH
1500 return USB_RET_PROCERR;
1501 }
1502
4224558f 1503 p->tbytes = (p->qtd.token & QTD_TOKEN_TBYTES_MASK) >> QTD_TOKEN_TBYTES_SH;
eb36a88e 1504 if (p->tbytes > BUFF_SIZE) {
94527ead
GH
1505 fprintf(stderr, "Request for more bytes than allowed\n");
1506 return USB_RET_PROCERR;
1507 }
1508
4224558f 1509 p->pid = (p->qtd.token & QTD_TOKEN_PID_MASK) >> QTD_TOKEN_PID_SH;
eb36a88e
GH
1510 switch (p->pid) {
1511 case 0:
1512 p->pid = USB_TOKEN_OUT;
1513 break;
1514 case 1:
1515 p->pid = USB_TOKEN_IN;
1516 break;
1517 case 2:
1518 p->pid = USB_TOKEN_SETUP;
1519 break;
1520 default:
1521 fprintf(stderr, "bad token\n");
1522 break;
94527ead
GH
1523 }
1524
eb36a88e 1525 if (ehci_init_transfer(p) != 0) {
94527ead
GH
1526 return USB_RET_PROCERR;
1527 }
1528
4224558f 1529 endp = get_field(p->queue->qh.epchar, QH_EPCHAR_EP);
e59928b3 1530 ep = usb_ep_get(p->queue->dev, p->pid, endp);
94527ead 1531
eb36a88e
GH
1532 usb_packet_setup(&p->packet, p->pid, ep);
1533 usb_packet_map(&p->packet, &p->sgl);
0ce668bc 1534
773dc9cd 1535 trace_usb_ehci_packet_action(p->queue, p, action);
e59928b3 1536 ret = usb_handle_packet(p->queue->dev, &p->packet);
828143c6
GH
1537 DPRINTF("submit: qh %x next %x qtd %x pid %x len %zd "
1538 "(total %d) endp %x ret %d\n",
1539 q->qhaddr, q->qh.next, q->qtdaddr, q->pid,
1540 q->packet.iov.size, q->tbytes, endp, ret);
94527ead
GH
1541
1542 if (ret > BUFF_SIZE) {
1543 fprintf(stderr, "ret from usb_handle_packet > BUFF_SIZE\n");
1544 return USB_RET_PROCERR;
1545 }
1546
94527ead
GH
1547 return ret;
1548}
1549
1550/* 4.7.2
1551 */
1552
1553static int ehci_process_itd(EHCIState *ehci,
1554 EHCIitd *itd)
1555{
94527ead 1556 USBDevice *dev;
079d0b7f 1557 USBEndpoint *ep;
94527ead 1558 int ret;
828143c6 1559 uint32_t i, len, pid, dir, devaddr, endp;
e654887f 1560 uint32_t pg, off, ptr1, ptr2, max, mult;
94527ead
GH
1561
1562 dir =(itd->bufptr[1] & ITD_BUFPTR_DIRECTION);
e654887f 1563 devaddr = get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR);
94527ead 1564 endp = get_field(itd->bufptr[0], ITD_BUFPTR_EP);
e654887f
GH
1565 max = get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT);
1566 mult = get_field(itd->bufptr[2], ITD_BUFPTR_MULT);
94527ead
GH
1567
1568 for(i = 0; i < 8; i++) {
1569 if (itd->transact[i] & ITD_XACT_ACTIVE) {
e654887f
GH
1570 pg = get_field(itd->transact[i], ITD_XACT_PGSEL);
1571 off = itd->transact[i] & ITD_XACT_OFFSET_MASK;
1572 ptr1 = (itd->bufptr[pg] & ITD_BUFPTR_MASK);
1573 ptr2 = (itd->bufptr[pg+1] & ITD_BUFPTR_MASK);
1574 len = get_field(itd->transact[i], ITD_XACT_LENGTH);
1575
1576 if (len > max * mult) {
1577 len = max * mult;
1578 }
94527ead
GH
1579
1580 if (len > BUFF_SIZE) {
1581 return USB_RET_PROCERR;
1582 }
1583
68d55358 1584 pci_dma_sglist_init(&ehci->isgl, &ehci->dev, 2);
e654887f
GH
1585 if (off + len > 4096) {
1586 /* transfer crosses page border */
0ce668bc
GH
1587 uint32_t len2 = off + len - 4096;
1588 uint32_t len1 = len - len2;
1589 qemu_sglist_add(&ehci->isgl, ptr1 + off, len1);
1590 qemu_sglist_add(&ehci->isgl, ptr2, len2);
e654887f 1591 } else {
0ce668bc 1592 qemu_sglist_add(&ehci->isgl, ptr1 + off, len);
e654887f 1593 }
94527ead 1594
0ce668bc 1595 pid = dir ? USB_TOKEN_IN : USB_TOKEN_OUT;
94527ead 1596
079d0b7f
GH
1597 dev = ehci_find_device(ehci, devaddr);
1598 ep = usb_ep_get(dev, pid, endp);
aa0568ff
GH
1599 if (ep->type == USB_ENDPOINT_XFER_ISOC) {
1600 usb_packet_setup(&ehci->ipacket, pid, ep);
1601 usb_packet_map(&ehci->ipacket, &ehci->isgl);
1602 ret = usb_handle_packet(dev, &ehci->ipacket);
1603 assert(ret != USB_RET_ASYNC);
e2f89926 1604 usb_packet_unmap(&ehci->ipacket, &ehci->isgl);
aa0568ff
GH
1605 } else {
1606 DPRINTF("ISOCH: attempt to addess non-iso endpoint\n");
1607 ret = USB_RET_NAK;
1608 }
0ce668bc
GH
1609 qemu_sglist_destroy(&ehci->isgl);
1610
5eafd438 1611 if (ret < 0) {
df787185
HG
1612 switch (ret) {
1613 default:
1614 fprintf(stderr, "Unexpected iso usb result: %d\n", ret);
1615 /* Fall through */
d61000a8 1616 case USB_RET_IOERROR:
df787185
HG
1617 case USB_RET_NODEV:
1618 /* 3.3.2: XACTERR is only allowed on IN transactions */
1619 if (dir) {
1620 itd->transact[i] |= ITD_XACT_XACTERR;
7efc17af 1621 ehci_raise_irq(ehci, USBSTS_ERRINT);
df787185
HG
1622 }
1623 break;
1624 case USB_RET_BABBLE:
1625 itd->transact[i] |= ITD_XACT_BABBLE;
7efc17af 1626 ehci_raise_irq(ehci, USBSTS_ERRINT);
df787185 1627 break;
5eafd438
HG
1628 case USB_RET_NAK:
1629 /* no data for us, so do a zero-length transfer */
1630 ret = 0;
1631 break;
1632 }
1633 }
1634 if (ret >= 0) {
1635 if (!dir) {
1636 /* OUT */
1637 set_field(&itd->transact[i], len - ret, ITD_XACT_LENGTH);
1638 } else {
1639 /* IN */
1640 set_field(&itd->transact[i], ret, ITD_XACT_LENGTH);
94527ead
GH
1641 }
1642 }
df787185 1643 if (itd->transact[i] & ITD_XACT_IOC) {
7efc17af 1644 ehci_raise_irq(ehci, USBSTS_INT);
df787185 1645 }
e654887f 1646 itd->transact[i] &= ~ITD_XACT_ACTIVE;
94527ead
GH
1647 }
1648 }
1649 return 0;
1650}
1651
cd665715 1652
94527ead
GH
1653/* This state is the entry point for asynchronous schedule
1654 * processing. Entry here consitutes a EHCI start event state (4.8.5)
1655 */
26d53979 1656static int ehci_state_waitlisthead(EHCIState *ehci, int async)
94527ead 1657{
0122f472 1658 EHCIqh qh;
94527ead
GH
1659 int i = 0;
1660 int again = 0;
1661 uint32_t entry = ehci->asynclistaddr;
1662
1663 /* set reclamation flag at start event (4.8.6) */
1664 if (async) {
439a97cc 1665 ehci_set_usbsts(ehci, USBSTS_REC);
94527ead
GH
1666 }
1667
9bc3a3a2 1668 ehci_queues_rip_unused(ehci, async);
8ac6d699 1669
94527ead
GH
1670 /* Find the head of the list (4.9.1.1) */
1671 for(i = 0; i < MAX_QH; i++) {
68d55358
DG
1672 get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &qh,
1673 sizeof(EHCIqh) >> 2);
8ac6d699 1674 ehci_trace_qh(NULL, NLPTR_GET(entry), &qh);
94527ead 1675
0122f472 1676 if (qh.epchar & QH_EPCHAR_H) {
94527ead
GH
1677 if (async) {
1678 entry |= (NLPTR_TYPE_QH << 1);
1679 }
1680
0122f472 1681 ehci_set_fetch_addr(ehci, async, entry);
26d53979 1682 ehci_set_state(ehci, async, EST_FETCHENTRY);
94527ead
GH
1683 again = 1;
1684 goto out;
1685 }
1686
0122f472 1687 entry = qh.next;
94527ead 1688 if (entry == ehci->asynclistaddr) {
94527ead
GH
1689 break;
1690 }
1691 }
1692
1693 /* no head found for list. */
1694
26d53979 1695 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
1696
1697out:
1698 return again;
1699}
1700
1701
1702/* This state is the entry point for periodic schedule processing as
1703 * well as being a continuation state for async processing.
1704 */
26d53979 1705static int ehci_state_fetchentry(EHCIState *ehci, int async)
94527ead
GH
1706{
1707 int again = 0;
0122f472 1708 uint32_t entry = ehci_get_fetch_addr(ehci, async);
94527ead 1709
2a5ff735 1710 if (NLPTR_TBIT(entry)) {
26d53979 1711 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
1712 goto out;
1713 }
1714
1715 /* section 4.8, only QH in async schedule */
1716 if (async && (NLPTR_TYPE_GET(entry) != NLPTR_TYPE_QH)) {
1717 fprintf(stderr, "non queue head request in async schedule\n");
1718 return -1;
1719 }
1720
1721 switch (NLPTR_TYPE_GET(entry)) {
1722 case NLPTR_TYPE_QH:
26d53979 1723 ehci_set_state(ehci, async, EST_FETCHQH);
94527ead
GH
1724 again = 1;
1725 break;
1726
1727 case NLPTR_TYPE_ITD:
26d53979 1728 ehci_set_state(ehci, async, EST_FETCHITD);
94527ead
GH
1729 again = 1;
1730 break;
1731
2fe80192
GH
1732 case NLPTR_TYPE_STITD:
1733 ehci_set_state(ehci, async, EST_FETCHSITD);
1734 again = 1;
1735 break;
1736
94527ead 1737 default:
2fe80192 1738 /* TODO: handle FSTN type */
94527ead
GH
1739 fprintf(stderr, "FETCHENTRY: entry at %X is of type %d "
1740 "which is not supported yet\n", entry, NLPTR_TYPE_GET(entry));
1741 return -1;
1742 }
1743
1744out:
1745 return again;
1746}
1747
0122f472 1748static EHCIQueue *ehci_state_fetchqh(EHCIState *ehci, int async)
94527ead 1749{
eb36a88e 1750 EHCIPacket *p;
e59928b3 1751 uint32_t entry, devaddr;
0122f472 1752 EHCIQueue *q;
9bc3a3a2 1753 EHCIqh qh;
94527ead 1754
0122f472 1755 entry = ehci_get_fetch_addr(ehci, async);
df5d5c5c 1756 q = ehci_find_queue_by_qh(ehci, entry, async);
8ac6d699 1757 if (NULL == q) {
8f6d5e26 1758 q = ehci_alloc_queue(ehci, entry, async);
8ac6d699 1759 }
eb36a88e 1760 p = QTAILQ_FIRST(&q->packets);
8ac6d699 1761
8f6d5e26 1762 q->seen++;
8ac6d699
GH
1763 if (q->seen > 1) {
1764 /* we are going in circles -- stop processing */
1765 ehci_set_state(ehci, async, EST_ACTIVE);
1766 q = NULL;
1767 goto out;
1768 }
94527ead 1769
68d55358 1770 get_dwords(ehci, NLPTR_GET(q->qhaddr),
9bc3a3a2
GH
1771 (uint32_t *) &qh, sizeof(EHCIqh) >> 2);
1772 if (q->revalidate && (q->qh.epchar != qh.epchar ||
1773 q->qh.epcap != qh.epcap ||
1774 q->qh.current_qtd != qh.current_qtd)) {
1775 ehci_free_queue(q);
1776 q = ehci_alloc_queue(ehci, entry, async);
1777 q->seen++;
1778 p = NULL;
1779 }
1780 q->qh = qh;
1781 q->revalidate = 0;
8ac6d699
GH
1782 ehci_trace_qh(q, NLPTR_GET(q->qhaddr), &q->qh);
1783
e59928b3
GH
1784 devaddr = get_field(q->qh.epchar, QH_EPCHAR_DEVADDR);
1785 if (q->dev != NULL && q->dev->addr != devaddr) {
1786 if (!QTAILQ_EMPTY(&q->packets)) {
1787 /* should not happen (guest bug) */
1788 while ((p = QTAILQ_FIRST(&q->packets)) != NULL) {
1789 ehci_free_packet(p);
1790 }
1791 }
1792 q->dev = NULL;
1793 }
1794 if (q->dev == NULL) {
1795 q->dev = ehci_find_device(q->ehci, devaddr);
1796 }
1797
eb36a88e 1798 if (p && p->async == EHCI_ASYNC_INFLIGHT) {
8ac6d699
GH
1799 /* I/O still in progress -- skip queue */
1800 ehci_set_state(ehci, async, EST_HORIZONTALQH);
1801 goto out;
1802 }
eb36a88e 1803 if (p && p->async == EHCI_ASYNC_FINISHED) {
8ac6d699 1804 /* I/O finished -- continue processing queue */
773dc9cd 1805 trace_usb_ehci_packet_action(p->queue, p, "complete");
8ac6d699
GH
1806 ehci_set_state(ehci, async, EST_EXECUTING);
1807 goto out;
1808 }
0122f472
GH
1809
1810 if (async && (q->qh.epchar & QH_EPCHAR_H)) {
94527ead
GH
1811
1812 /* EHCI spec version 1.0 Section 4.8.3 & 4.10.1 */
1813 if (ehci->usbsts & USBSTS_REC) {
439a97cc 1814 ehci_clear_usbsts(ehci, USBSTS_REC);
94527ead
GH
1815 } else {
1816 DPRINTF("FETCHQH: QH 0x%08x. H-bit set, reclamation status reset"
0122f472 1817 " - done processing\n", q->qhaddr);
26d53979 1818 ehci_set_state(ehci, async, EST_ACTIVE);
0122f472 1819 q = NULL;
94527ead
GH
1820 goto out;
1821 }
1822 }
1823
1824#if EHCI_DEBUG
0122f472 1825 if (q->qhaddr != q->qh.next) {
94527ead 1826 DPRINTF("FETCHQH: QH 0x%08x (h %x halt %x active %x) next 0x%08x\n",
0122f472
GH
1827 q->qhaddr,
1828 q->qh.epchar & QH_EPCHAR_H,
1829 q->qh.token & QTD_TOKEN_HALT,
1830 q->qh.token & QTD_TOKEN_ACTIVE,
1831 q->qh.next);
94527ead
GH
1832 }
1833#endif
1834
0122f472 1835 if (q->qh.token & QTD_TOKEN_HALT) {
26d53979 1836 ehci_set_state(ehci, async, EST_HORIZONTALQH);
94527ead 1837
2a5ff735
HG
1838 } else if ((q->qh.token & QTD_TOKEN_ACTIVE) &&
1839 (NLPTR_TBIT(q->qh.current_qtd) == 0)) {
0122f472 1840 q->qtdaddr = q->qh.current_qtd;
26d53979 1841 ehci_set_state(ehci, async, EST_FETCHQTD);
94527ead
GH
1842
1843 } else {
1844 /* EHCI spec version 1.0 Section 4.10.2 */
26d53979 1845 ehci_set_state(ehci, async, EST_ADVANCEQUEUE);
94527ead
GH
1846 }
1847
1848out:
0122f472 1849 return q;
94527ead
GH
1850}
1851
26d53979 1852static int ehci_state_fetchitd(EHCIState *ehci, int async)
94527ead 1853{
0122f472 1854 uint32_t entry;
94527ead
GH
1855 EHCIitd itd;
1856
0122f472
GH
1857 assert(!async);
1858 entry = ehci_get_fetch_addr(ehci, async);
1859
68d55358 1860 get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd,
94527ead 1861 sizeof(EHCIitd) >> 2);
0122f472 1862 ehci_trace_itd(ehci, entry, &itd);
94527ead
GH
1863
1864 if (ehci_process_itd(ehci, &itd) != 0) {
1865 return -1;
1866 }
1867
68d55358
DG
1868 put_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd,
1869 sizeof(EHCIitd) >> 2);
0122f472 1870 ehci_set_fetch_addr(ehci, async, itd.next);
26d53979 1871 ehci_set_state(ehci, async, EST_FETCHENTRY);
94527ead
GH
1872
1873 return 1;
1874}
1875
2fe80192
GH
1876static int ehci_state_fetchsitd(EHCIState *ehci, int async)
1877{
1878 uint32_t entry;
1879 EHCIsitd sitd;
1880
1881 assert(!async);
1882 entry = ehci_get_fetch_addr(ehci, async);
1883
68d55358 1884 get_dwords(ehci, NLPTR_GET(entry), (uint32_t *)&sitd,
2fe80192
GH
1885 sizeof(EHCIsitd) >> 2);
1886 ehci_trace_sitd(ehci, entry, &sitd);
1887
1888 if (!(sitd.results & SITD_RESULTS_ACTIVE)) {
1889 /* siTD is not active, nothing to do */;
1890 } else {
1891 /* TODO: split transfers are not implemented */
1892 fprintf(stderr, "WARNING: Skipping active siTD\n");
1893 }
1894
1895 ehci_set_fetch_addr(ehci, async, sitd.next);
1896 ehci_set_state(ehci, async, EST_FETCHENTRY);
1897 return 1;
1898}
1899
94527ead 1900/* Section 4.10.2 - paragraph 3 */
ae0138a8 1901static int ehci_state_advqueue(EHCIQueue *q)
94527ead
GH
1902{
1903#if 0
1904 /* TO-DO: 4.10.2 - paragraph 2
1905 * if I-bit is set to 1 and QH is not active
1906 * go to horizontal QH
1907 */
1908 if (I-bit set) {
26d53979 1909 ehci_set_state(ehci, async, EST_HORIZONTALQH);
94527ead
GH
1910 goto out;
1911 }
1912#endif
1913
1914 /*
1915 * want data and alt-next qTD is valid
1916 */
0122f472 1917 if (((q->qh.token & QTD_TOKEN_TBYTES_MASK) != 0) &&
0122f472
GH
1918 (NLPTR_TBIT(q->qh.altnext_qtd) == 0)) {
1919 q->qtdaddr = q->qh.altnext_qtd;
ae0138a8 1920 ehci_set_state(q->ehci, q->async, EST_FETCHQTD);
94527ead
GH
1921
1922 /*
1923 * next qTD is valid
1924 */
2a5ff735 1925 } else if (NLPTR_TBIT(q->qh.next_qtd) == 0) {
0122f472 1926 q->qtdaddr = q->qh.next_qtd;
ae0138a8 1927 ehci_set_state(q->ehci, q->async, EST_FETCHQTD);
94527ead
GH
1928
1929 /*
1930 * no valid qTD, try next QH
1931 */
1932 } else {
ae0138a8 1933 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
94527ead
GH
1934 }
1935
1936 return 1;
1937}
1938
1939/* Section 4.10.2 - paragraph 4 */
ae0138a8 1940static int ehci_state_fetchqtd(EHCIQueue *q)
94527ead 1941{
eb36a88e
GH
1942 EHCIqtd qtd;
1943 EHCIPacket *p;
94527ead
GH
1944 int again = 0;
1945
eb36a88e 1946 get_dwords(q->ehci, NLPTR_GET(q->qtdaddr), (uint32_t *) &qtd,
68d55358 1947 sizeof(EHCIqtd) >> 2);
eb36a88e 1948 ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), &qtd);
94527ead 1949
773dc9cd
GH
1950 p = QTAILQ_FIRST(&q->packets);
1951 while (p != NULL && p->qtdaddr != q->qtdaddr) {
1952 /* should not happen (guest bug) */
1953 ehci_free_packet(p);
1954 p = QTAILQ_FIRST(&q->packets);
1955 }
1956 if (p != NULL) {
1957 ehci_qh_do_overlay(q);
1958 ehci_flush_qh(q);
1959 if (p->async == EHCI_ASYNC_INFLIGHT) {
ae0138a8 1960 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
773dc9cd 1961 } else {
ae0138a8 1962 ehci_set_state(q->ehci, q->async, EST_EXECUTING);
773dc9cd
GH
1963 }
1964 again = 1;
1965 } else if (qtd.token & QTD_TOKEN_ACTIVE) {
eb36a88e
GH
1966 p = ehci_alloc_packet(q);
1967 p->qtdaddr = q->qtdaddr;
1968 p->qtd = qtd;
ae0138a8 1969 ehci_set_state(q->ehci, q->async, EST_EXECUTE);
94527ead
GH
1970 again = 1;
1971 } else {
ae0138a8 1972 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
94527ead
GH
1973 again = 1;
1974 }
1975
1976 return again;
1977}
1978
ae0138a8 1979static int ehci_state_horizqh(EHCIQueue *q)
94527ead
GH
1980{
1981 int again = 0;
1982
ae0138a8
GH
1983 if (ehci_get_fetch_addr(q->ehci, q->async) != q->qh.next) {
1984 ehci_set_fetch_addr(q->ehci, q->async, q->qh.next);
1985 ehci_set_state(q->ehci, q->async, EST_FETCHENTRY);
94527ead
GH
1986 again = 1;
1987 } else {
ae0138a8 1988 ehci_set_state(q->ehci, q->async, EST_ACTIVE);
94527ead
GH
1989 }
1990
1991 return again;
1992}
1993
ae0138a8 1994static void ehci_fill_queue(EHCIPacket *p)
773dc9cd
GH
1995{
1996 EHCIQueue *q = p->queue;
1997 EHCIqtd qtd = p->qtd;
1998 uint32_t qtdaddr;
1999
2000 for (;;) {
2001 if (NLPTR_TBIT(qtd.altnext) == 0) {
2002 break;
2003 }
2004 if (NLPTR_TBIT(qtd.next) != 0) {
2005 break;
2006 }
2007 qtdaddr = qtd.next;
2008 get_dwords(q->ehci, NLPTR_GET(qtdaddr),
2009 (uint32_t *) &qtd, sizeof(EHCIqtd) >> 2);
2010 ehci_trace_qtd(q, NLPTR_GET(qtdaddr), &qtd);
2011 if (!(qtd.token & QTD_TOKEN_ACTIVE)) {
2012 break;
2013 }
2014 p = ehci_alloc_packet(q);
2015 p->qtdaddr = qtdaddr;
2016 p->qtd = qtd;
2017 p->usb_status = ehci_execute(p, "queue");
df6839c7 2018 assert(p->usb_status == USB_RET_ASYNC);
773dc9cd
GH
2019 p->async = EHCI_ASYNC_INFLIGHT;
2020 }
2021}
2022
ae0138a8 2023static int ehci_state_execute(EHCIQueue *q)
94527ead 2024{
eb36a88e 2025 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
94527ead 2026 int again = 0;
94527ead 2027
eb36a88e
GH
2028 assert(p != NULL);
2029 assert(p->qtdaddr == q->qtdaddr);
2030
0122f472 2031 if (ehci_qh_do_overlay(q) != 0) {
94527ead
GH
2032 return -1;
2033 }
2034
94527ead
GH
2035 // TODO verify enough time remains in the uframe as in 4.4.1.1
2036 // TODO write back ptr to async list when done or out of time
2037 // TODO Windows does not seem to ever set the MULT field
2038
ae0138a8 2039 if (!q->async) {
0122f472 2040 int transactCtr = get_field(q->qh.epcap, QH_EPCAP_MULT);
94527ead 2041 if (!transactCtr) {
ae0138a8 2042 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
94527ead
GH
2043 again = 1;
2044 goto out;
2045 }
2046 }
2047
ae0138a8 2048 if (q->async) {
0122f472 2049 ehci_set_usbsts(q->ehci, USBSTS_REC);
94527ead
GH
2050 }
2051
773dc9cd 2052 p->usb_status = ehci_execute(p, "process");
eb36a88e 2053 if (p->usb_status == USB_RET_PROCERR) {
94527ead
GH
2054 again = -1;
2055 goto out;
2056 }
eb36a88e 2057 if (p->usb_status == USB_RET_ASYNC) {
8ac6d699 2058 ehci_flush_qh(q);
773dc9cd 2059 trace_usb_ehci_packet_action(p->queue, p, "async");
eb36a88e 2060 p->async = EHCI_ASYNC_INFLIGHT;
ae0138a8 2061 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
94527ead 2062 again = 1;
ae0138a8 2063 ehci_fill_queue(p);
8ac6d699 2064 goto out;
94527ead
GH
2065 }
2066
ae0138a8 2067 ehci_set_state(q->ehci, q->async, EST_EXECUTING);
8ac6d699
GH
2068 again = 1;
2069
94527ead
GH
2070out:
2071 return again;
2072}
2073
ae0138a8 2074static int ehci_state_executing(EHCIQueue *q)
94527ead 2075{
eb36a88e 2076 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
94527ead 2077 int again = 0;
94527ead 2078
eb36a88e
GH
2079 assert(p != NULL);
2080 assert(p->qtdaddr == q->qtdaddr);
2081
0122f472 2082 ehci_execute_complete(q);
eb36a88e 2083 if (p->usb_status == USB_RET_ASYNC) {
94527ead
GH
2084 goto out;
2085 }
eb36a88e 2086 if (p->usb_status == USB_RET_PROCERR) {
94527ead
GH
2087 again = -1;
2088 goto out;
2089 }
2090
2091 // 4.10.3
ae0138a8 2092 if (!q->async) {
0122f472 2093 int transactCtr = get_field(q->qh.epcap, QH_EPCAP_MULT);
94527ead 2094 transactCtr--;
0122f472 2095 set_field(&q->qh.epcap, transactCtr, QH_EPCAP_MULT);
94527ead
GH
2096 // 4.10.3, bottom of page 82, should exit this state when transaction
2097 // counter decrements to 0
2098 }
2099
94527ead 2100 /* 4.10.5 */
eb36a88e 2101 if (p->usb_status == USB_RET_NAK) {
ae0138a8 2102 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
94527ead 2103 } else {
ae0138a8 2104 ehci_set_state(q->ehci, q->async, EST_WRITEBACK);
94527ead
GH
2105 }
2106
2107 again = 1;
2108
2109out:
8ac6d699 2110 ehci_flush_qh(q);
94527ead
GH
2111 return again;
2112}
2113
2114
ae0138a8 2115static int ehci_state_writeback(EHCIQueue *q)
94527ead 2116{
eb36a88e 2117 EHCIPacket *p = QTAILQ_FIRST(&q->packets);
4ed1c57a 2118 uint32_t *qtd, addr;
94527ead
GH
2119 int again = 0;
2120
2121 /* Write back the QTD from the QH area */
eb36a88e
GH
2122 assert(p != NULL);
2123 assert(p->qtdaddr == q->qtdaddr);
2124
2125 ehci_trace_qtd(q, NLPTR_GET(p->qtdaddr), (EHCIqtd *) &q->qh.next_qtd);
4ed1c57a
GH
2126 qtd = (uint32_t *) &q->qh.next_qtd;
2127 addr = NLPTR_GET(p->qtdaddr);
2128 put_dwords(q->ehci, addr + 2 * sizeof(uint32_t), qtd + 2, 2);
eb36a88e 2129 ehci_free_packet(p);
94527ead 2130
d2bd525f
GH
2131 /*
2132 * EHCI specs say go horizontal here.
2133 *
2134 * We can also advance the queue here for performance reasons. We
2135 * need to take care to only take that shortcut in case we've
2136 * processed the qtd just written back without errors, i.e. halt
2137 * bit is clear.
94527ead 2138 */
d2bd525f 2139 if (q->qh.token & QTD_TOKEN_HALT) {
ae0138a8 2140 ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
d2bd525f
GH
2141 again = 1;
2142 } else {
ae0138a8 2143 ehci_set_state(q->ehci, q->async, EST_ADVANCEQUEUE);
94527ead 2144 again = 1;
d2bd525f 2145 }
94527ead
GH
2146 return again;
2147}
2148
2149/*
2150 * This is the state machine that is common to both async and periodic
2151 */
2152
ae0138a8 2153static void ehci_advance_state(EHCIState *ehci, int async)
94527ead 2154{
0122f472 2155 EHCIQueue *q = NULL;
94527ead 2156 int again;
94527ead
GH
2157
2158 do {
26d53979 2159 switch(ehci_get_state(ehci, async)) {
94527ead 2160 case EST_WAITLISTHEAD:
26d53979 2161 again = ehci_state_waitlisthead(ehci, async);
94527ead
GH
2162 break;
2163
2164 case EST_FETCHENTRY:
26d53979 2165 again = ehci_state_fetchentry(ehci, async);
94527ead
GH
2166 break;
2167
2168 case EST_FETCHQH:
0122f472 2169 q = ehci_state_fetchqh(ehci, async);
ae0138a8
GH
2170 if (q != NULL) {
2171 assert(q->async == async);
2172 again = 1;
2173 } else {
2174 again = 0;
2175 }
94527ead
GH
2176 break;
2177
2178 case EST_FETCHITD:
26d53979 2179 again = ehci_state_fetchitd(ehci, async);
94527ead
GH
2180 break;
2181
2fe80192
GH
2182 case EST_FETCHSITD:
2183 again = ehci_state_fetchsitd(ehci, async);
2184 break;
2185
94527ead 2186 case EST_ADVANCEQUEUE:
ae0138a8 2187 again = ehci_state_advqueue(q);
94527ead
GH
2188 break;
2189
2190 case EST_FETCHQTD:
ae0138a8 2191 again = ehci_state_fetchqtd(q);
94527ead
GH
2192 break;
2193
2194 case EST_HORIZONTALQH:
ae0138a8 2195 again = ehci_state_horizqh(q);
94527ead
GH
2196 break;
2197
2198 case EST_EXECUTE:
ae0138a8 2199 again = ehci_state_execute(q);
3a215326
GH
2200 if (async) {
2201 ehci->async_stepdown = 0;
2202 }
94527ead
GH
2203 break;
2204
2205 case EST_EXECUTING:
8ac6d699 2206 assert(q != NULL);
3a215326
GH
2207 if (async) {
2208 ehci->async_stepdown = 0;
2209 }
ae0138a8 2210 again = ehci_state_executing(q);
94527ead
GH
2211 break;
2212
2213 case EST_WRITEBACK:
b2467216 2214 assert(q != NULL);
ae0138a8 2215 again = ehci_state_writeback(q);
94527ead
GH
2216 break;
2217
2218 default:
2219 fprintf(stderr, "Bad state!\n");
2220 again = -1;
8ac6d699 2221 assert(0);
94527ead
GH
2222 break;
2223 }
2224
2225 if (again < 0) {
2226 fprintf(stderr, "processing error - resetting ehci HC\n");
2227 ehci_reset(ehci);
2228 again = 0;
2229 }
2230 }
2231 while (again);
94527ead
GH
2232}
2233
2234static void ehci_advance_async_state(EHCIState *ehci)
2235{
df5d5c5c 2236 const int async = 1;
94527ead 2237
26d53979 2238 switch(ehci_get_state(ehci, async)) {
94527ead 2239 case EST_INACTIVE:
ec807d12 2240 if (!ehci_async_enabled(ehci)) {
94527ead
GH
2241 break;
2242 }
26d53979 2243 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
2244 // No break, fall through to ACTIVE
2245
2246 case EST_ACTIVE:
ec807d12 2247 if (!ehci_async_enabled(ehci)) {
e850c2b4 2248 ehci_queues_rip_all(ehci, async);
26d53979 2249 ehci_set_state(ehci, async, EST_INACTIVE);
94527ead
GH
2250 break;
2251 }
2252
4be23939 2253 /* make sure guest has acknowledged the doorbell interrupt */
94527ead
GH
2254 /* TO-DO: is this really needed? */
2255 if (ehci->usbsts & USBSTS_IAA) {
2256 DPRINTF("IAA status bit still set.\n");
2257 break;
2258 }
2259
94527ead
GH
2260 /* check that address register has been set */
2261 if (ehci->asynclistaddr == 0) {
2262 break;
2263 }
2264
26d53979 2265 ehci_set_state(ehci, async, EST_WAITLISTHEAD);
26d53979 2266 ehci_advance_state(ehci, async);
4be23939
HG
2267
2268 /* If the doorbell is set, the guest wants to make a change to the
2269 * schedule. The host controller needs to release cached data.
2270 * (section 4.8.2)
2271 */
2272 if (ehci->usbcmd & USBCMD_IAAD) {
2273 /* Remove all unseen qhs from the async qhs queue */
9bc3a3a2 2274 ehci_queues_tag_unused_async(ehci);
4be23939
HG
2275 DPRINTF("ASYNC: doorbell request acknowledged\n");
2276 ehci->usbcmd &= ~USBCMD_IAAD;
7efc17af 2277 ehci_raise_irq(ehci, USBSTS_IAA);
4be23939 2278 }
94527ead
GH
2279 break;
2280
2281 default:
2282 /* this should only be due to a developer mistake */
2283 fprintf(stderr, "ehci: Bad asynchronous state %d. "
2284 "Resetting to active\n", ehci->astate);
0122f472 2285 assert(0);
94527ead
GH
2286 }
2287}
2288
2289static void ehci_advance_periodic_state(EHCIState *ehci)
2290{
2291 uint32_t entry;
2292 uint32_t list;
df5d5c5c 2293 const int async = 0;
94527ead
GH
2294
2295 // 4.6
2296
26d53979 2297 switch(ehci_get_state(ehci, async)) {
94527ead 2298 case EST_INACTIVE:
ec807d12 2299 if (!(ehci->frindex & 7) && ehci_periodic_enabled(ehci)) {
26d53979 2300 ehci_set_state(ehci, async, EST_ACTIVE);
94527ead
GH
2301 // No break, fall through to ACTIVE
2302 } else
2303 break;
2304
2305 case EST_ACTIVE:
ec807d12 2306 if (!(ehci->frindex & 7) && !ehci_periodic_enabled(ehci)) {
e850c2b4 2307 ehci_queues_rip_all(ehci, async);
26d53979 2308 ehci_set_state(ehci, async, EST_INACTIVE);
94527ead
GH
2309 break;
2310 }
2311
2312 list = ehci->periodiclistbase & 0xfffff000;
2313 /* check that register has been set */
2314 if (list == 0) {
2315 break;
2316 }
2317 list |= ((ehci->frindex & 0x1ff8) >> 1);
2318
4bf80119 2319 pci_dma_read(&ehci->dev, list, &entry, sizeof entry);
94527ead
GH
2320 entry = le32_to_cpu(entry);
2321
2322 DPRINTF("PERIODIC state adv fr=%d. [%08X] -> %08X\n",
2323 ehci->frindex / 8, list, entry);
0122f472 2324 ehci_set_fetch_addr(ehci, async,entry);
26d53979
GH
2325 ehci_set_state(ehci, async, EST_FETCHENTRY);
2326 ehci_advance_state(ehci, async);
9bc3a3a2 2327 ehci_queues_rip_unused(ehci, async);
94527ead
GH
2328 break;
2329
94527ead
GH
2330 default:
2331 /* this should only be due to a developer mistake */
2332 fprintf(stderr, "ehci: Bad periodic state %d. "
2333 "Resetting to active\n", ehci->pstate);
0122f472 2334 assert(0);
94527ead
GH
2335 }
2336}
2337
6ceced0b
GH
2338static void ehci_update_frindex(EHCIState *ehci, int frames)
2339{
2340 int i;
2341
2342 if (!ehci_enabled(ehci)) {
2343 return;
2344 }
2345
2346 for (i = 0; i < frames; i++) {
2347 ehci->frindex += 8;
2348
2349 if (ehci->frindex == 0x00002000) {
7efc17af 2350 ehci_raise_irq(ehci, USBSTS_FLR);
6ceced0b
GH
2351 }
2352
2353 if (ehci->frindex == 0x00004000) {
7efc17af 2354 ehci_raise_irq(ehci, USBSTS_FLR);
6ceced0b 2355 ehci->frindex = 0;
7efc17af
GH
2356 if (ehci->usbsts_frindex > 0x00004000) {
2357 ehci->usbsts_frindex -= 0x00004000;
2358 } else {
2359 ehci->usbsts_frindex = 0;
2360 }
6ceced0b
GH
2361 }
2362 }
2363}
2364
94527ead
GH
2365static void ehci_frame_timer(void *opaque)
2366{
2367 EHCIState *ehci = opaque;
7efc17af 2368 int need_timer = 0;
94527ead 2369 int64_t expire_time, t_now;
adddecb1 2370 uint64_t ns_elapsed;
f020ed36 2371 int frames, skipped_frames;
94527ead 2372 int i;
94527ead 2373
94527ead 2374 t_now = qemu_get_clock_ns(vm_clock);
adddecb1
GH
2375 ns_elapsed = t_now - ehci->last_run_ns;
2376 frames = ns_elapsed / FRAME_TIMER_NS;
94527ead 2377
3a215326 2378 if (ehci_periodic_enabled(ehci) || ehci->pstate != EST_INACTIVE) {
7efc17af 2379 need_timer++;
afb7a0b8 2380 ehci->async_stepdown = 0;
94527ead 2381
f020ed36
GH
2382 if (frames > ehci->maxframes) {
2383 skipped_frames = frames - ehci->maxframes;
2384 ehci_update_frindex(ehci, skipped_frames);
2385 ehci->last_run_ns += FRAME_TIMER_NS * skipped_frames;
2386 frames -= skipped_frames;
2387 DPRINTF("WARNING - EHCI skipped %d frames\n", skipped_frames);
2388 }
2389
3a215326
GH
2390 for (i = 0; i < frames; i++) {
2391 ehci_update_frindex(ehci, 1);
f020ed36 2392 ehci_advance_periodic_state(ehci);
3a215326
GH
2393 ehci->last_run_ns += FRAME_TIMER_NS;
2394 }
2395 } else {
2396 if (ehci->async_stepdown < ehci->maxframes / 2) {
2397 ehci->async_stepdown++;
2398 }
3a215326
GH
2399 ehci_update_frindex(ehci, frames);
2400 ehci->last_run_ns += FRAME_TIMER_NS * frames;
94527ead
GH
2401 }
2402
94527ead
GH
2403 /* Async is not inside loop since it executes everything it can once
2404 * called
2405 */
3a215326 2406 if (ehci_async_enabled(ehci) || ehci->astate != EST_INACTIVE) {
7efc17af 2407 need_timer++;
afb7a0b8 2408 ehci_advance_async_state(ehci);
3a215326 2409 }
94527ead 2410
7efc17af
GH
2411 ehci_commit_irq(ehci);
2412 if (ehci->usbsts_pending) {
2413 need_timer++;
2414 ehci->async_stepdown = 0;
daf25307 2415 }
f0ad01f9 2416
7efc17af 2417 if (need_timer) {
afb7a0b8
GH
2418 expire_time = t_now + (get_ticks_per_sec()
2419 * (ehci->async_stepdown+1) / FRAME_TIMER_FREQ);
7efc17af
GH
2420 qemu_mod_timer(ehci->frame_timer, expire_time);
2421 }
94527ead
GH
2422}
2423
0fb3e299
GH
2424static void ehci_async_bh(void *opaque)
2425{
2426 EHCIState *ehci = opaque;
2427 ehci_advance_async_state(ehci);
2428}
94527ead 2429
e57964f5
AK
2430static const MemoryRegionOps ehci_mem_ops = {
2431 .old_mmio = {
2432 .read = { ehci_mem_readb, ehci_mem_readw, ehci_mem_readl },
2433 .write = { ehci_mem_writeb, ehci_mem_writew, ehci_mem_writel },
2434 },
2435 .endianness = DEVICE_LITTLE_ENDIAN,
94527ead
GH
2436};
2437
94527ead
GH
2438static int usb_ehci_initfn(PCIDevice *dev);
2439
2440static USBPortOps ehci_port_ops = {
2441 .attach = ehci_attach,
2442 .detach = ehci_detach,
4706ab6c 2443 .child_detach = ehci_child_detach,
a0a3167a 2444 .wakeup = ehci_wakeup,
94527ead
GH
2445 .complete = ehci_async_complete_packet,
2446};
2447
07771f6f 2448static USBBusOps ehci_bus_ops = {
a0a3167a 2449 .register_companion = ehci_register_companion,
07771f6f
GH
2450};
2451
9a773408
GH
2452static int usb_ehci_post_load(void *opaque, int version_id)
2453{
2454 EHCIState *s = opaque;
2455 int i;
2456
2457 for (i = 0; i < NB_PORTS; i++) {
2458 USBPort *companion = s->companion_ports[i];
2459 if (companion == NULL) {
2460 continue;
2461 }
2462 if (s->portsc[i] & PORTSC_POWNER) {
2463 companion->dev = s->ports[i].dev;
2464 } else {
2465 companion->dev = NULL;
2466 }
2467 }
2468
2469 return 0;
2470}
2471
9490fb06 2472static const VMStateDescription vmstate_ehci = {
9a773408 2473 .name = "ehci",
6d3b6d3d
GH
2474 .version_id = 2,
2475 .minimum_version_id = 1,
9a773408
GH
2476 .post_load = usb_ehci_post_load,
2477 .fields = (VMStateField[]) {
2478 VMSTATE_PCI_DEVICE(dev, EHCIState),
2479 /* mmio registers */
2480 VMSTATE_UINT32(usbcmd, EHCIState),
2481 VMSTATE_UINT32(usbsts, EHCIState),
6d3b6d3d
GH
2482 VMSTATE_UINT32_V(usbsts_pending, EHCIState, 2),
2483 VMSTATE_UINT32_V(usbsts_frindex, EHCIState, 2),
9a773408
GH
2484 VMSTATE_UINT32(usbintr, EHCIState),
2485 VMSTATE_UINT32(frindex, EHCIState),
2486 VMSTATE_UINT32(ctrldssegment, EHCIState),
2487 VMSTATE_UINT32(periodiclistbase, EHCIState),
2488 VMSTATE_UINT32(asynclistaddr, EHCIState),
2489 VMSTATE_UINT32(configflag, EHCIState),
2490 VMSTATE_UINT32(portsc[0], EHCIState),
2491 VMSTATE_UINT32(portsc[1], EHCIState),
2492 VMSTATE_UINT32(portsc[2], EHCIState),
2493 VMSTATE_UINT32(portsc[3], EHCIState),
2494 VMSTATE_UINT32(portsc[4], EHCIState),
2495 VMSTATE_UINT32(portsc[5], EHCIState),
2496 /* frame timer */
2497 VMSTATE_TIMER(frame_timer, EHCIState),
2498 VMSTATE_UINT64(last_run_ns, EHCIState),
2499 VMSTATE_UINT32(async_stepdown, EHCIState),
2500 /* schedule state */
2501 VMSTATE_UINT32(astate, EHCIState),
2502 VMSTATE_UINT32(pstate, EHCIState),
2503 VMSTATE_UINT32(a_fetch_addr, EHCIState),
2504 VMSTATE_UINT32(p_fetch_addr, EHCIState),
2505 VMSTATE_END_OF_LIST()
2506 }
9490fb06
GH
2507};
2508
3028376e 2509static Property ehci_properties[] = {
3028376e
GH
2510 DEFINE_PROP_UINT32("maxframes", EHCIState, maxframes, 128),
2511 DEFINE_PROP_END_OF_LIST(),
2512};
2513
40021f08
AL
2514static void ehci_class_init(ObjectClass *klass, void *data)
2515{
39bffca2 2516 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
2517 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
2518
2519 k->init = usb_ehci_initfn;
2520 k->vendor_id = PCI_VENDOR_ID_INTEL;
2521 k->device_id = PCI_DEVICE_ID_INTEL_82801D; /* ich4 */
2522 k->revision = 0x10;
2523 k->class_id = PCI_CLASS_SERIAL_USB;
39bffca2
AL
2524 dc->vmsd = &vmstate_ehci;
2525 dc->props = ehci_properties;
40021f08
AL
2526}
2527
39bffca2
AL
2528static TypeInfo ehci_info = {
2529 .name = "usb-ehci",
2530 .parent = TYPE_PCI_DEVICE,
2531 .instance_size = sizeof(EHCIState),
2532 .class_init = ehci_class_init,
e855761c
AL
2533};
2534
40021f08
AL
2535static void ich9_ehci_class_init(ObjectClass *klass, void *data)
2536{
39bffca2 2537 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
2538 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
2539
2540 k->init = usb_ehci_initfn;
2541 k->vendor_id = PCI_VENDOR_ID_INTEL;
2542 k->device_id = PCI_DEVICE_ID_INTEL_82801I_EHCI1;
2543 k->revision = 0x03;
2544 k->class_id = PCI_CLASS_SERIAL_USB;
39bffca2
AL
2545 dc->vmsd = &vmstate_ehci;
2546 dc->props = ehci_properties;
40021f08
AL
2547}
2548
39bffca2
AL
2549static TypeInfo ich9_ehci_info = {
2550 .name = "ich9-usb-ehci1",
2551 .parent = TYPE_PCI_DEVICE,
2552 .instance_size = sizeof(EHCIState),
2553 .class_init = ich9_ehci_class_init,
94527ead
GH
2554};
2555
2556static int usb_ehci_initfn(PCIDevice *dev)
2557{
2558 EHCIState *s = DO_UPCAST(EHCIState, dev, dev);
2559 uint8_t *pci_conf = s->dev.config;
2560 int i;
2561
94527ead 2562 pci_set_byte(&pci_conf[PCI_CLASS_PROG], 0x20);
94527ead
GH
2563
2564 /* capabilities pointer */
2565 pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x00);
2566 //pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x50);
2567
817e0b6f 2568 pci_set_byte(&pci_conf[PCI_INTERRUPT_PIN], 4); /* interrupt pin D */
94527ead
GH
2569 pci_set_byte(&pci_conf[PCI_MIN_GNT], 0);
2570 pci_set_byte(&pci_conf[PCI_MAX_LAT], 0);
2571
2572 // pci_conf[0x50] = 0x01; // power management caps
2573
4001f22f 2574 pci_set_byte(&pci_conf[USB_SBRN], USB_RELEASE_2); // release number (2.1.4)
94527ead
GH
2575 pci_set_byte(&pci_conf[0x61], 0x20); // frame length adjustment (2.1.5)
2576 pci_set_word(&pci_conf[0x62], 0x00); // port wake up capability (2.1.6)
2577
2578 pci_conf[0x64] = 0x00;
2579 pci_conf[0x65] = 0x00;
2580 pci_conf[0x66] = 0x00;
2581 pci_conf[0x67] = 0x00;
2582 pci_conf[0x68] = 0x01;
2583 pci_conf[0x69] = 0x00;
2584 pci_conf[0x6a] = 0x00;
2585 pci_conf[0x6b] = 0x00; // USBLEGSUP
2586 pci_conf[0x6c] = 0x00;
2587 pci_conf[0x6d] = 0x00;
2588 pci_conf[0x6e] = 0x00;
2589 pci_conf[0x6f] = 0xc0; // USBLEFCTLSTS
2590
2591 // 2.2 host controller interface version
2592 s->mmio[0x00] = (uint8_t) OPREGBASE;
2593 s->mmio[0x01] = 0x00;
2594 s->mmio[0x02] = 0x00;
2595 s->mmio[0x03] = 0x01; // HC version
2596 s->mmio[0x04] = NB_PORTS; // Number of downstream ports
2597 s->mmio[0x05] = 0x00; // No companion ports at present
2598 s->mmio[0x06] = 0x00;
2599 s->mmio[0x07] = 0x00;
2600 s->mmio[0x08] = 0x80; // We can cache whole frame, not 64-bit capable
2601 s->mmio[0x09] = 0x68; // EECP
2602 s->mmio[0x0a] = 0x00;
2603 s->mmio[0x0b] = 0x00;
2604
2605 s->irq = s->dev.irq[3];
2606
07771f6f 2607 usb_bus_new(&s->bus, &ehci_bus_ops, &s->dev.qdev);
94527ead
GH
2608 for(i = 0; i < NB_PORTS; i++) {
2609 usb_register_port(&s->bus, &s->ports[i], s, i, &ehci_port_ops,
2610 USB_SPEED_MASK_HIGH);
94527ead
GH
2611 s->ports[i].dev = 0;
2612 }
2613
2614 s->frame_timer = qemu_new_timer_ns(vm_clock, ehci_frame_timer, s);
0fb3e299 2615 s->async_bh = qemu_bh_new(ehci_async_bh, s);
df5d5c5c
HG
2616 QTAILQ_INIT(&s->aqueues);
2617 QTAILQ_INIT(&s->pqueues);
7341ea07 2618 usb_packet_init(&s->ipacket);
94527ead
GH
2619
2620 qemu_register_reset(ehci_reset, s);
2621
e57964f5 2622 memory_region_init_io(&s->mem, &ehci_mem_ops, s, "ehci", MMIO_SIZE);
e824b2cc 2623 pci_register_bar(&s->dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->mem);
94527ead 2624
94527ead
GH
2625 return 0;
2626}
2627
83f7d43a 2628static void ehci_register_types(void)
94527ead 2629{
39bffca2
AL
2630 type_register_static(&ehci_info);
2631 type_register_static(&ich9_ehci_info);
94527ead 2632}
83f7d43a
AF
2633
2634type_init(ehci_register_types)
94527ead
GH
2635
2636/*
2637 * vim: expandtab ts=4
2638 */
This page took 0.631983 seconds and 4 git commands to generate.