Statistics
| Branch: | Revision:

root / hw / usb-ehci.c @ df787185

History | View | Annotate | Download (69.2 kB)

1
/*
2
 * QEMU USB EHCI Emulation
3
 *
4
 * Copyright(c) 2008  Emutex Ltd. (address@hidden)
5
 *
6
 * EHCI project was started by Mark Burkley, with contributions by
7
 * Niels de Vos.  David S. Ahern continued working on it.  Kevin Wolf,
8
 * Jan Kiszka and Vincent Palatin contributed bugfixes.
9
 *
10
 *
11
 * This library is free software; you can redistribute it and/or
12
 * modify it under the terms of the GNU Lesser General Public
13
 * License as published by the Free Software Foundation; either
14
 * version 2 of the License, or(at your option) any later version.
15
 *
16
 * This library is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19
 * Lesser General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU General Public License
22
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23
 */
24

    
25
#include "hw.h"
26
#include "qemu-timer.h"
27
#include "usb.h"
28
#include "pci.h"
29
#include "monitor.h"
30
#include "trace.h"
31
#include "dma.h"
32

    
33
#define EHCI_DEBUG   0
34

    
35
#if EHCI_DEBUG
36
#define DPRINTF printf
37
#else
38
#define DPRINTF(...)
39
#endif
40

    
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
/*
104
 * Bits that are reserved or are read-only are masked out of values
105
 * written to us by software
106
 */
107
#define PORTSC_RO_MASK       0x007001c0
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
131
#define FRAME_TIMER_NS   (1000000000 / FRAME_TIMER_FREQ)
132

    
133
#define NB_MAXINTRATE    8        // Max rate at which controller issues ints
134
#define NB_PORTS         6        // Number of downstream ports
135
#define BUFF_SIZE        5*4096   // Max bytes to transfer per transaction
136
#define MAX_ITERATIONS   20       // Max number of QH before we break the loop
137
#define MAX_QH           100      // Max allowable queue heads in a chain
138

    
139
/*  Internal periodic / asynchronous schedule state machine states
140
 */
141
typedef enum {
142
    EST_INACTIVE = 1000,
143
    EST_ACTIVE,
144
    EST_EXECUTING,
145
    EST_SLEEPING,
146
    /*  The following states are internal to the state machine function
147
    */
148
    EST_WAITLISTHEAD,
149
    EST_FETCHENTRY,
150
    EST_FETCHQH,
151
    EST_FETCHITD,
152
    EST_FETCHSITD,
153
    EST_ADVANCEQUEUE,
154
    EST_FETCHQTD,
155
    EST_EXECUTE,
156
    EST_WRITEBACK,
157
    EST_HORIZONTALQH
158
} EHCI_STATES;
159

    
160
/* macros for accessing fields within next link pointer entry */
161
#define NLPTR_GET(x)             ((x) & 0xffffffe0)
162
#define NLPTR_TYPE_GET(x)        (((x) >> 1) & 3)
163
#define NLPTR_TBIT(x)            ((x) & 1)  // 1=invalid, 0=valid
164

    
165
/* link pointer types */
166
#define NLPTR_TYPE_ITD           0     // isoc xfer descriptor
167
#define NLPTR_TYPE_QH            1     // queue head
168
#define NLPTR_TYPE_STITD         2     // split xaction, isoc xfer descriptor
169
#define NLPTR_TYPE_FSTN          3     // frame span traversal node
170

    
171

    
172
/*  EHCI spec version 1.0 Section 3.3
173
 */
174
typedef struct EHCIitd {
175
    uint32_t next;
176

    
177
    uint32_t transact[8];
178
#define ITD_XACT_ACTIVE          (1 << 31)
179
#define ITD_XACT_DBERROR         (1 << 30)
180
#define ITD_XACT_BABBLE          (1 << 29)
181
#define ITD_XACT_XACTERR         (1 << 28)
182
#define ITD_XACT_LENGTH_MASK     0x0fff0000
183
#define ITD_XACT_LENGTH_SH       16
184
#define ITD_XACT_IOC             (1 << 15)
185
#define ITD_XACT_PGSEL_MASK      0x00007000
186
#define ITD_XACT_PGSEL_SH        12
187
#define ITD_XACT_OFFSET_MASK     0x00000fff
188

    
189
    uint32_t bufptr[7];
190
#define ITD_BUFPTR_MASK          0xfffff000
191
#define ITD_BUFPTR_SH            12
192
#define ITD_BUFPTR_EP_MASK       0x00000f00
193
#define ITD_BUFPTR_EP_SH         8
194
#define ITD_BUFPTR_DEVADDR_MASK  0x0000007f
195
#define ITD_BUFPTR_DEVADDR_SH    0
196
#define ITD_BUFPTR_DIRECTION     (1 << 11)
197
#define ITD_BUFPTR_MAXPKT_MASK   0x000007ff
198
#define ITD_BUFPTR_MAXPKT_SH     0
199
#define ITD_BUFPTR_MULT_MASK     0x00000003
200
#define ITD_BUFPTR_MULT_SH       0
201
} EHCIitd;
202

    
203
/*  EHCI spec version 1.0 Section 3.4
204
 */
205
typedef struct EHCIsitd {
206
    uint32_t next;                  // Standard next link pointer
207
    uint32_t epchar;
208
#define SITD_EPCHAR_IO              (1 << 31)
209
#define SITD_EPCHAR_PORTNUM_MASK    0x7f000000
210
#define SITD_EPCHAR_PORTNUM_SH      24
211
#define SITD_EPCHAR_HUBADD_MASK     0x007f0000
212
#define SITD_EPCHAR_HUBADDR_SH      16
213
#define SITD_EPCHAR_EPNUM_MASK      0x00000f00
214
#define SITD_EPCHAR_EPNUM_SH        8
215
#define SITD_EPCHAR_DEVADDR_MASK    0x0000007f
216

    
217
    uint32_t uframe;
218
#define SITD_UFRAME_CMASK_MASK      0x0000ff00
219
#define SITD_UFRAME_CMASK_SH        8
220
#define SITD_UFRAME_SMASK_MASK      0x000000ff
221

    
222
    uint32_t results;
223
#define SITD_RESULTS_IOC              (1 << 31)
224
#define SITD_RESULTS_PGSEL            (1 << 30)
225
#define SITD_RESULTS_TBYTES_MASK      0x03ff0000
226
#define SITD_RESULTS_TYBYTES_SH       16
227
#define SITD_RESULTS_CPROGMASK_MASK   0x0000ff00
228
#define SITD_RESULTS_CPROGMASK_SH     8
229
#define SITD_RESULTS_ACTIVE           (1 << 7)
230
#define SITD_RESULTS_ERR              (1 << 6)
231
#define SITD_RESULTS_DBERR            (1 << 5)
232
#define SITD_RESULTS_BABBLE           (1 << 4)
233
#define SITD_RESULTS_XACTERR          (1 << 3)
234
#define SITD_RESULTS_MISSEDUF         (1 << 2)
235
#define SITD_RESULTS_SPLITXSTATE      (1 << 1)
236

    
237
    uint32_t bufptr[2];
238
#define SITD_BUFPTR_MASK              0xfffff000
239
#define SITD_BUFPTR_CURROFF_MASK      0x00000fff
240
#define SITD_BUFPTR_TPOS_MASK         0x00000018
241
#define SITD_BUFPTR_TPOS_SH           3
242
#define SITD_BUFPTR_TCNT_MASK         0x00000007
243

    
244
    uint32_t backptr;                 // Standard next link pointer
245
} EHCIsitd;
246

    
247
/*  EHCI spec version 1.0 Section 3.5
248
 */
249
typedef struct EHCIqtd {
250
    uint32_t next;                    // Standard next link pointer
251
    uint32_t altnext;                 // Standard next link pointer
252
    uint32_t token;
253
#define QTD_TOKEN_DTOGGLE             (1 << 31)
254
#define QTD_TOKEN_TBYTES_MASK         0x7fff0000
255
#define QTD_TOKEN_TBYTES_SH           16
256
#define QTD_TOKEN_IOC                 (1 << 15)
257
#define QTD_TOKEN_CPAGE_MASK          0x00007000
258
#define QTD_TOKEN_CPAGE_SH            12
259
#define QTD_TOKEN_CERR_MASK           0x00000c00
260
#define QTD_TOKEN_CERR_SH             10
261
#define QTD_TOKEN_PID_MASK            0x00000300
262
#define QTD_TOKEN_PID_SH              8
263
#define QTD_TOKEN_ACTIVE              (1 << 7)
264
#define QTD_TOKEN_HALT                (1 << 6)
265
#define QTD_TOKEN_DBERR               (1 << 5)
266
#define QTD_TOKEN_BABBLE              (1 << 4)
267
#define QTD_TOKEN_XACTERR             (1 << 3)
268
#define QTD_TOKEN_MISSEDUF            (1 << 2)
269
#define QTD_TOKEN_SPLITXSTATE         (1 << 1)
270
#define QTD_TOKEN_PING                (1 << 0)
271

    
272
    uint32_t bufptr[5];               // Standard buffer pointer
273
#define QTD_BUFPTR_MASK               0xfffff000
274
#define QTD_BUFPTR_SH                 12
275
} EHCIqtd;
276

    
277
/*  EHCI spec version 1.0 Section 3.6
278
 */
279
typedef struct EHCIqh {
280
    uint32_t next;                    // Standard next link pointer
281

    
282
    /* endpoint characteristics */
283
    uint32_t epchar;
284
#define QH_EPCHAR_RL_MASK             0xf0000000
285
#define QH_EPCHAR_RL_SH               28
286
#define QH_EPCHAR_C                   (1 << 27)
287
#define QH_EPCHAR_MPLEN_MASK          0x07FF0000
288
#define QH_EPCHAR_MPLEN_SH            16
289
#define QH_EPCHAR_H                   (1 << 15)
290
#define QH_EPCHAR_DTC                 (1 << 14)
291
#define QH_EPCHAR_EPS_MASK            0x00003000
292
#define QH_EPCHAR_EPS_SH              12
293
#define EHCI_QH_EPS_FULL              0
294
#define EHCI_QH_EPS_LOW               1
295
#define EHCI_QH_EPS_HIGH              2
296
#define EHCI_QH_EPS_RESERVED          3
297

    
298
#define QH_EPCHAR_EP_MASK             0x00000f00
299
#define QH_EPCHAR_EP_SH               8
300
#define QH_EPCHAR_I                   (1 << 7)
301
#define QH_EPCHAR_DEVADDR_MASK        0x0000007f
302
#define QH_EPCHAR_DEVADDR_SH          0
303

    
304
    /* endpoint capabilities */
305
    uint32_t epcap;
306
#define QH_EPCAP_MULT_MASK            0xc0000000
307
#define QH_EPCAP_MULT_SH              30
308
#define QH_EPCAP_PORTNUM_MASK         0x3f800000
309
#define QH_EPCAP_PORTNUM_SH           23
310
#define QH_EPCAP_HUBADDR_MASK         0x007f0000
311
#define QH_EPCAP_HUBADDR_SH           16
312
#define QH_EPCAP_CMASK_MASK           0x0000ff00
313
#define QH_EPCAP_CMASK_SH             8
314
#define QH_EPCAP_SMASK_MASK           0x000000ff
315
#define QH_EPCAP_SMASK_SH             0
316

    
317
    uint32_t current_qtd;             // Standard next link pointer
318
    uint32_t next_qtd;                // Standard next link pointer
319
    uint32_t altnext_qtd;
320
#define QH_ALTNEXT_NAKCNT_MASK        0x0000001e
321
#define QH_ALTNEXT_NAKCNT_SH          1
322

    
323
    uint32_t token;                   // Same as QTD token
324
    uint32_t bufptr[5];               // Standard buffer pointer
325
#define BUFPTR_CPROGMASK_MASK         0x000000ff
326
#define BUFPTR_FRAMETAG_MASK          0x0000001f
327
#define BUFPTR_SBYTES_MASK            0x00000fe0
328
#define BUFPTR_SBYTES_SH              5
329
} EHCIqh;
330

    
331
/*  EHCI spec version 1.0 Section 3.7
332
 */
333
typedef struct EHCIfstn {
334
    uint32_t next;                    // Standard next link pointer
335
    uint32_t backptr;                 // Standard next link pointer
336
} EHCIfstn;
337

    
338
typedef struct EHCIQueue EHCIQueue;
339
typedef struct EHCIState EHCIState;
340

    
341
enum async_state {
342
    EHCI_ASYNC_NONE = 0,
343
    EHCI_ASYNC_INFLIGHT,
344
    EHCI_ASYNC_FINISHED,
345
};
346

    
347
struct EHCIQueue {
348
    EHCIState *ehci;
349
    QTAILQ_ENTRY(EHCIQueue) next;
350
    bool async_schedule;
351
    uint32_t seen;
352
    uint64_t ts;
353

    
354
    /* cached data from guest - needs to be flushed
355
     * when guest removes an entry (doorbell, handshake sequence)
356
     */
357
    EHCIqh qh;             // copy of current QH (being worked on)
358
    uint32_t qhaddr;       // address QH read from
359
    EHCIqtd qtd;           // copy of current QTD (being worked on)
360
    uint32_t qtdaddr;      // address QTD read from
361

    
362
    USBPacket packet;
363
    QEMUSGList sgl;
364
    int pid;
365
    uint32_t tbytes;
366
    enum async_state async;
367
    int usb_status;
368
};
369

    
370
struct EHCIState {
371
    PCIDevice dev;
372
    USBBus bus;
373
    qemu_irq irq;
374
    MemoryRegion mem;
375
    int companion_count;
376

    
377
    /* properties */
378
    uint32_t freq;
379
    uint32_t maxframes;
380

    
381
    /*
382
     *  EHCI spec version 1.0 Section 2.3
383
     *  Host Controller Operational Registers
384
     */
385
    union {
386
        uint8_t mmio[MMIO_SIZE];
387
        struct {
388
            uint8_t cap[OPREGBASE];
389
            uint32_t usbcmd;
390
            uint32_t usbsts;
391
            uint32_t usbintr;
392
            uint32_t frindex;
393
            uint32_t ctrldssegment;
394
            uint32_t periodiclistbase;
395
            uint32_t asynclistaddr;
396
            uint32_t notused[9];
397
            uint32_t configflag;
398
            uint32_t portsc[NB_PORTS];
399
        };
400
    };
401

    
402
    /*
403
     *  Internal states, shadow registers, etc
404
     */
405
    uint32_t sofv;
406
    QEMUTimer *frame_timer;
407
    int attach_poll_counter;
408
    int astate;                        // Current state in asynchronous schedule
409
    int pstate;                        // Current state in periodic schedule
410
    USBPort ports[NB_PORTS];
411
    USBPort *companion_ports[NB_PORTS];
412
    uint32_t usbsts_pending;
413
    QTAILQ_HEAD(, EHCIQueue) queues;
414

    
415
    uint32_t a_fetch_addr;   // which address to look at next
416
    uint32_t p_fetch_addr;   // which address to look at next
417

    
418
    USBPacket ipacket;
419
    QEMUSGList isgl;
420
    int isoch_pause;
421

    
422
    uint64_t last_run_ns;
423
};
424

    
425
#define SET_LAST_RUN_CLOCK(s) \
426
    (s)->last_run_ns = qemu_get_clock_ns(vm_clock);
427

    
428
/* nifty macros from Arnon's EHCI version  */
429
#define get_field(data, field) \
430
    (((data) & field##_MASK) >> field##_SH)
431

    
432
#define set_field(data, newval, field) do { \
433
    uint32_t val = *data; \
434
    val &= ~ field##_MASK; \
435
    val |= ((newval) << field##_SH) & field##_MASK; \
436
    *data = val; \
437
    } while(0)
438

    
439
static const char *ehci_state_names[] = {
440
    [EST_INACTIVE]     = "INACTIVE",
441
    [EST_ACTIVE]       = "ACTIVE",
442
    [EST_EXECUTING]    = "EXECUTING",
443
    [EST_SLEEPING]     = "SLEEPING",
444
    [EST_WAITLISTHEAD] = "WAITLISTHEAD",
445
    [EST_FETCHENTRY]   = "FETCH ENTRY",
446
    [EST_FETCHQH]      = "FETCH QH",
447
    [EST_FETCHITD]     = "FETCH ITD",
448
    [EST_ADVANCEQUEUE] = "ADVANCEQUEUE",
449
    [EST_FETCHQTD]     = "FETCH QTD",
450
    [EST_EXECUTE]      = "EXECUTE",
451
    [EST_WRITEBACK]    = "WRITEBACK",
452
    [EST_HORIZONTALQH] = "HORIZONTALQH",
453
};
454

    
455
static const char *ehci_mmio_names[] = {
456
    [CAPLENGTH]         = "CAPLENGTH",
457
    [HCIVERSION]        = "HCIVERSION",
458
    [HCSPARAMS]         = "HCSPARAMS",
459
    [HCCPARAMS]         = "HCCPARAMS",
460
    [USBCMD]            = "USBCMD",
461
    [USBSTS]            = "USBSTS",
462
    [USBINTR]           = "USBINTR",
463
    [FRINDEX]           = "FRINDEX",
464
    [PERIODICLISTBASE]  = "P-LIST BASE",
465
    [ASYNCLISTADDR]     = "A-LIST ADDR",
466
    [PORTSC_BEGIN]      = "PORTSC #0",
467
    [PORTSC_BEGIN + 4]  = "PORTSC #1",
468
    [PORTSC_BEGIN + 8]  = "PORTSC #2",
469
    [PORTSC_BEGIN + 12] = "PORTSC #3",
470
    [PORTSC_BEGIN + 16] = "PORTSC #4",
471
    [PORTSC_BEGIN + 20] = "PORTSC #5",
472
    [CONFIGFLAG]        = "CONFIGFLAG",
473
};
474

    
475
static const char *nr2str(const char **n, size_t len, uint32_t nr)
476
{
477
    if (nr < len && n[nr] != NULL) {
478
        return n[nr];
479
    } else {
480
        return "unknown";
481
    }
482
}
483

    
484
static const char *state2str(uint32_t state)
485
{
486
    return nr2str(ehci_state_names, ARRAY_SIZE(ehci_state_names), state);
487
}
488

    
489
static const char *addr2str(target_phys_addr_t addr)
490
{
491
    return nr2str(ehci_mmio_names, ARRAY_SIZE(ehci_mmio_names), addr);
492
}
493

    
494
static void ehci_trace_usbsts(uint32_t mask, int state)
495
{
496
    /* interrupts */
497
    if (mask & USBSTS_INT) {
498
        trace_usb_ehci_usbsts("INT", state);
499
    }
500
    if (mask & USBSTS_ERRINT) {
501
        trace_usb_ehci_usbsts("ERRINT", state);
502
    }
503
    if (mask & USBSTS_PCD) {
504
        trace_usb_ehci_usbsts("PCD", state);
505
    }
506
    if (mask & USBSTS_FLR) {
507
        trace_usb_ehci_usbsts("FLR", state);
508
    }
509
    if (mask & USBSTS_HSE) {
510
        trace_usb_ehci_usbsts("HSE", state);
511
    }
512
    if (mask & USBSTS_IAA) {
513
        trace_usb_ehci_usbsts("IAA", state);
514
    }
515

    
516
    /* status */
517
    if (mask & USBSTS_HALT) {
518
        trace_usb_ehci_usbsts("HALT", state);
519
    }
520
    if (mask & USBSTS_REC) {
521
        trace_usb_ehci_usbsts("REC", state);
522
    }
523
    if (mask & USBSTS_PSS) {
524
        trace_usb_ehci_usbsts("PSS", state);
525
    }
526
    if (mask & USBSTS_ASS) {
527
        trace_usb_ehci_usbsts("ASS", state);
528
    }
529
}
530

    
531
static inline void ehci_set_usbsts(EHCIState *s, int mask)
532
{
533
    if ((s->usbsts & mask) == mask) {
534
        return;
535
    }
536
    ehci_trace_usbsts(mask, 1);
537
    s->usbsts |= mask;
538
}
539

    
540
static inline void ehci_clear_usbsts(EHCIState *s, int mask)
541
{
542
    if ((s->usbsts & mask) == 0) {
543
        return;
544
    }
545
    ehci_trace_usbsts(mask, 0);
546
    s->usbsts &= ~mask;
547
}
548

    
549
static inline void ehci_set_interrupt(EHCIState *s, int intr)
550
{
551
    int level = 0;
552

    
553
    // TODO honour interrupt threshold requests
554

    
555
    ehci_set_usbsts(s, intr);
556

    
557
    if ((s->usbsts & USBINTR_MASK) & s->usbintr) {
558
        level = 1;
559
    }
560

    
561
    qemu_set_irq(s->irq, level);
562
}
563

    
564
static inline void ehci_record_interrupt(EHCIState *s, int intr)
565
{
566
    s->usbsts_pending |= intr;
567
}
568

    
569
static inline void ehci_commit_interrupt(EHCIState *s)
570
{
571
    if (!s->usbsts_pending) {
572
        return;
573
    }
574
    ehci_set_interrupt(s, s->usbsts_pending);
575
    s->usbsts_pending = 0;
576
}
577

    
578
static void ehci_set_state(EHCIState *s, int async, int state)
579
{
580
    if (async) {
581
        trace_usb_ehci_state("async", state2str(state));
582
        s->astate = state;
583
    } else {
584
        trace_usb_ehci_state("periodic", state2str(state));
585
        s->pstate = state;
586
    }
587
}
588

    
589
static int ehci_get_state(EHCIState *s, int async)
590
{
591
    return async ? s->astate : s->pstate;
592
}
593

    
594
static void ehci_set_fetch_addr(EHCIState *s, int async, uint32_t addr)
595
{
596
    if (async) {
597
        s->a_fetch_addr = addr;
598
    } else {
599
        s->p_fetch_addr = addr;
600
    }
601
}
602

    
603
static int ehci_get_fetch_addr(EHCIState *s, int async)
604
{
605
    return async ? s->a_fetch_addr : s->p_fetch_addr;
606
}
607

    
608
static void ehci_trace_qh(EHCIQueue *q, target_phys_addr_t addr, EHCIqh *qh)
609
{
610
    /* need three here due to argument count limits */
611
    trace_usb_ehci_qh_ptrs(q, addr, qh->next,
612
                           qh->current_qtd, qh->next_qtd, qh->altnext_qtd);
613
    trace_usb_ehci_qh_fields(addr,
614
                             get_field(qh->epchar, QH_EPCHAR_RL),
615
                             get_field(qh->epchar, QH_EPCHAR_MPLEN),
616
                             get_field(qh->epchar, QH_EPCHAR_EPS),
617
                             get_field(qh->epchar, QH_EPCHAR_EP),
618
                             get_field(qh->epchar, QH_EPCHAR_DEVADDR));
619
    trace_usb_ehci_qh_bits(addr,
620
                           (bool)(qh->epchar & QH_EPCHAR_C),
621
                           (bool)(qh->epchar & QH_EPCHAR_H),
622
                           (bool)(qh->epchar & QH_EPCHAR_DTC),
623
                           (bool)(qh->epchar & QH_EPCHAR_I));
624
}
625

    
626
static void ehci_trace_qtd(EHCIQueue *q, target_phys_addr_t addr, EHCIqtd *qtd)
627
{
628
    /* need three here due to argument count limits */
629
    trace_usb_ehci_qtd_ptrs(q, addr, qtd->next, qtd->altnext);
630
    trace_usb_ehci_qtd_fields(addr,
631
                              get_field(qtd->token, QTD_TOKEN_TBYTES),
632
                              get_field(qtd->token, QTD_TOKEN_CPAGE),
633
                              get_field(qtd->token, QTD_TOKEN_CERR),
634
                              get_field(qtd->token, QTD_TOKEN_PID));
635
    trace_usb_ehci_qtd_bits(addr,
636
                            (bool)(qtd->token & QTD_TOKEN_IOC),
637
                            (bool)(qtd->token & QTD_TOKEN_ACTIVE),
638
                            (bool)(qtd->token & QTD_TOKEN_HALT),
639
                            (bool)(qtd->token & QTD_TOKEN_BABBLE),
640
                            (bool)(qtd->token & QTD_TOKEN_XACTERR));
641
}
642

    
643
static void ehci_trace_itd(EHCIState *s, target_phys_addr_t addr, EHCIitd *itd)
644
{
645
    trace_usb_ehci_itd(addr, itd->next,
646
                       get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT),
647
                       get_field(itd->bufptr[2], ITD_BUFPTR_MULT),
648
                       get_field(itd->bufptr[0], ITD_BUFPTR_EP),
649
                       get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR));
650
}
651

    
652
static void ehci_trace_sitd(EHCIState *s, target_phys_addr_t addr,
653
                            EHCIsitd *sitd)
654
{
655
    trace_usb_ehci_sitd(addr, sitd->next,
656
                        (bool)(sitd->results & SITD_RESULTS_ACTIVE));
657
}
658

    
659
/* queue management */
660

    
661
static EHCIQueue *ehci_alloc_queue(EHCIState *ehci, int async)
662
{
663
    EHCIQueue *q;
664

    
665
    q = g_malloc0(sizeof(*q));
666
    q->ehci = ehci;
667
    q->async_schedule = async;
668
    QTAILQ_INSERT_HEAD(&ehci->queues, q, next);
669
    trace_usb_ehci_queue_action(q, "alloc");
670
    return q;
671
}
672

    
673
static void ehci_free_queue(EHCIQueue *q)
674
{
675
    trace_usb_ehci_queue_action(q, "free");
676
    if (q->async == EHCI_ASYNC_INFLIGHT) {
677
        usb_cancel_packet(&q->packet);
678
    }
679
    QTAILQ_REMOVE(&q->ehci->queues, q, next);
680
    g_free(q);
681
}
682

    
683
static EHCIQueue *ehci_find_queue_by_qh(EHCIState *ehci, uint32_t addr)
684
{
685
    EHCIQueue *q;
686

    
687
    QTAILQ_FOREACH(q, &ehci->queues, next) {
688
        if (addr == q->qhaddr) {
689
            return q;
690
        }
691
    }
692
    return NULL;
693
}
694

    
695
static void ehci_queues_rip_unused(EHCIState *ehci)
696
{
697
    EHCIQueue *q, *tmp;
698

    
699
    QTAILQ_FOREACH_SAFE(q, &ehci->queues, next, tmp) {
700
        if (q->seen) {
701
            q->seen = 0;
702
            q->ts = ehci->last_run_ns;
703
            continue;
704
        }
705
        if (ehci->last_run_ns < q->ts + 250000000) {
706
            /* allow 0.25 sec idle */
707
            continue;
708
        }
709
        ehci_free_queue(q);
710
    }
711
}
712

    
713
static void ehci_queues_rip_device(EHCIState *ehci, USBDevice *dev)
714
{
715
    EHCIQueue *q, *tmp;
716

    
717
    QTAILQ_FOREACH_SAFE(q, &ehci->queues, next, tmp) {
718
        if (!usb_packet_is_inflight(&q->packet) ||
719
            q->packet.ep->dev != dev) {
720
            continue;
721
        }
722
        ehci_free_queue(q);
723
    }
724
}
725

    
726
static void ehci_queues_rip_all(EHCIState *ehci)
727
{
728
    EHCIQueue *q, *tmp;
729

    
730
    QTAILQ_FOREACH_SAFE(q, &ehci->queues, next, tmp) {
731
        ehci_free_queue(q);
732
    }
733
}
734

    
735
/* Attach or detach a device on root hub */
736

    
737
static void ehci_attach(USBPort *port)
738
{
739
    EHCIState *s = port->opaque;
740
    uint32_t *portsc = &s->portsc[port->index];
741

    
742
    trace_usb_ehci_port_attach(port->index, port->dev->product_desc);
743

    
744
    if (*portsc & PORTSC_POWNER) {
745
        USBPort *companion = s->companion_ports[port->index];
746
        companion->dev = port->dev;
747
        companion->ops->attach(companion);
748
        return;
749
    }
750

    
751
    *portsc |= PORTSC_CONNECT;
752
    *portsc |= PORTSC_CSC;
753

    
754
    ehci_set_interrupt(s, USBSTS_PCD);
755
}
756

    
757
static void ehci_detach(USBPort *port)
758
{
759
    EHCIState *s = port->opaque;
760
    uint32_t *portsc = &s->portsc[port->index];
761

    
762
    trace_usb_ehci_port_detach(port->index);
763

    
764
    if (*portsc & PORTSC_POWNER) {
765
        USBPort *companion = s->companion_ports[port->index];
766
        companion->ops->detach(companion);
767
        companion->dev = NULL;
768
        /*
769
         * EHCI spec 4.2.2: "When a disconnect occurs... On the event,
770
         * the port ownership is returned immediately to the EHCI controller."
771
         */
772
        *portsc &= ~PORTSC_POWNER;
773
        return;
774
    }
775

    
776
    ehci_queues_rip_device(s, port->dev);
777

    
778
    *portsc &= ~(PORTSC_CONNECT|PORTSC_PED);
779
    *portsc |= PORTSC_CSC;
780

    
781
    ehci_set_interrupt(s, USBSTS_PCD);
782
}
783

    
784
static void ehci_child_detach(USBPort *port, USBDevice *child)
785
{
786
    EHCIState *s = port->opaque;
787
    uint32_t portsc = s->portsc[port->index];
788

    
789
    if (portsc & PORTSC_POWNER) {
790
        USBPort *companion = s->companion_ports[port->index];
791
        companion->ops->child_detach(companion, child);
792
        companion->dev = NULL;
793
        return;
794
    }
795

    
796
    ehci_queues_rip_device(s, child);
797
}
798

    
799
static void ehci_wakeup(USBPort *port)
800
{
801
    EHCIState *s = port->opaque;
802
    uint32_t portsc = s->portsc[port->index];
803

    
804
    if (portsc & PORTSC_POWNER) {
805
        USBPort *companion = s->companion_ports[port->index];
806
        if (companion->ops->wakeup) {
807
            companion->ops->wakeup(companion);
808
        }
809
    }
810
}
811

    
812
static int ehci_register_companion(USBBus *bus, USBPort *ports[],
813
                                   uint32_t portcount, uint32_t firstport)
814
{
815
    EHCIState *s = container_of(bus, EHCIState, bus);
816
    uint32_t i;
817

    
818
    if (firstport + portcount > NB_PORTS) {
819
        qerror_report(QERR_INVALID_PARAMETER_VALUE, "firstport",
820
                      "firstport on masterbus");
821
        error_printf_unless_qmp(
822
            "firstport value of %u makes companion take ports %u - %u, which "
823
            "is outside of the valid range of 0 - %u\n", firstport, firstport,
824
            firstport + portcount - 1, NB_PORTS - 1);
825
        return -1;
826
    }
827

    
828
    for (i = 0; i < portcount; i++) {
829
        if (s->companion_ports[firstport + i]) {
830
            qerror_report(QERR_INVALID_PARAMETER_VALUE, "masterbus",
831
                          "an USB masterbus");
832
            error_printf_unless_qmp(
833
                "port %u on masterbus %s already has a companion assigned\n",
834
                firstport + i, bus->qbus.name);
835
            return -1;
836
        }
837
    }
838

    
839
    for (i = 0; i < portcount; i++) {
840
        s->companion_ports[firstport + i] = ports[i];
841
        s->ports[firstport + i].speedmask |=
842
            USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL;
843
        /* Ensure devs attached before the initial reset go to the companion */
844
        s->portsc[firstport + i] = PORTSC_POWNER;
845
    }
846

    
847
    s->companion_count++;
848
    s->mmio[0x05] = (s->companion_count << 4) | portcount;
849

    
850
    return 0;
851
}
852

    
853
static USBDevice *ehci_find_device(EHCIState *ehci, uint8_t addr)
854
{
855
    USBDevice *dev;
856
    USBPort *port;
857
    int i;
858

    
859
    for (i = 0; i < NB_PORTS; i++) {
860
        port = &ehci->ports[i];
861
        if (!(ehci->portsc[i] & PORTSC_PED)) {
862
            DPRINTF("Port %d not enabled\n", i);
863
            continue;
864
        }
865
        dev = usb_find_device(port, addr);
866
        if (dev != NULL) {
867
            return dev;
868
        }
869
    }
870
    return NULL;
871
}
872

    
873
/* 4.1 host controller initialization */
874
static void ehci_reset(void *opaque)
875
{
876
    EHCIState *s = opaque;
877
    int i;
878
    USBDevice *devs[NB_PORTS];
879

    
880
    trace_usb_ehci_reset();
881

    
882
    /*
883
     * Do the detach before touching portsc, so that it correctly gets send to
884
     * us or to our companion based on PORTSC_POWNER before the reset.
885
     */
886
    for(i = 0; i < NB_PORTS; i++) {
887
        devs[i] = s->ports[i].dev;
888
        if (devs[i] && devs[i]->attached) {
889
            usb_detach(&s->ports[i]);
890
        }
891
    }
892

    
893
    memset(&s->mmio[OPREGBASE], 0x00, MMIO_SIZE - OPREGBASE);
894

    
895
    s->usbcmd = NB_MAXINTRATE << USBCMD_ITC_SH;
896
    s->usbsts = USBSTS_HALT;
897

    
898
    s->astate = EST_INACTIVE;
899
    s->pstate = EST_INACTIVE;
900
    s->isoch_pause = -1;
901
    s->attach_poll_counter = 0;
902

    
903
    for(i = 0; i < NB_PORTS; i++) {
904
        if (s->companion_ports[i]) {
905
            s->portsc[i] = PORTSC_POWNER | PORTSC_PPOWER;
906
        } else {
907
            s->portsc[i] = PORTSC_PPOWER;
908
        }
909
        if (devs[i] && devs[i]->attached) {
910
            usb_attach(&s->ports[i]);
911
            usb_device_reset(devs[i]);
912
        }
913
    }
914
    ehci_queues_rip_all(s);
915
    qemu_del_timer(s->frame_timer);
916
}
917

    
918
static uint32_t ehci_mem_readb(void *ptr, target_phys_addr_t addr)
919
{
920
    EHCIState *s = ptr;
921
    uint32_t val;
922

    
923
    val = s->mmio[addr];
924

    
925
    return val;
926
}
927

    
928
static uint32_t ehci_mem_readw(void *ptr, target_phys_addr_t addr)
929
{
930
    EHCIState *s = ptr;
931
    uint32_t val;
932

    
933
    val = s->mmio[addr] | (s->mmio[addr+1] << 8);
934

    
935
    return val;
936
}
937

    
938
static uint32_t ehci_mem_readl(void *ptr, target_phys_addr_t addr)
939
{
940
    EHCIState *s = ptr;
941
    uint32_t val;
942

    
943
    val = s->mmio[addr] | (s->mmio[addr+1] << 8) |
944
          (s->mmio[addr+2] << 16) | (s->mmio[addr+3] << 24);
945

    
946
    trace_usb_ehci_mmio_readl(addr, addr2str(addr), val);
947
    return val;
948
}
949

    
950
static void ehci_mem_writeb(void *ptr, target_phys_addr_t addr, uint32_t val)
951
{
952
    fprintf(stderr, "EHCI doesn't handle byte writes to MMIO\n");
953
    exit(1);
954
}
955

    
956
static void ehci_mem_writew(void *ptr, target_phys_addr_t addr, uint32_t val)
957
{
958
    fprintf(stderr, "EHCI doesn't handle 16-bit writes to MMIO\n");
959
    exit(1);
960
}
961

    
962
static void handle_port_owner_write(EHCIState *s, int port, uint32_t owner)
963
{
964
    USBDevice *dev = s->ports[port].dev;
965
    uint32_t *portsc = &s->portsc[port];
966
    uint32_t orig;
967

    
968
    if (s->companion_ports[port] == NULL)
969
        return;
970

    
971
    owner = owner & PORTSC_POWNER;
972
    orig  = *portsc & PORTSC_POWNER;
973

    
974
    if (!(owner ^ orig)) {
975
        return;
976
    }
977

    
978
    if (dev && dev->attached) {
979
        usb_detach(&s->ports[port]);
980
    }
981

    
982
    *portsc &= ~PORTSC_POWNER;
983
    *portsc |= owner;
984

    
985
    if (dev && dev->attached) {
986
        usb_attach(&s->ports[port]);
987
    }
988
}
989

    
990
static void handle_port_status_write(EHCIState *s, int port, uint32_t val)
991
{
992
    uint32_t *portsc = &s->portsc[port];
993
    USBDevice *dev = s->ports[port].dev;
994

    
995
    /* Clear rwc bits */
996
    *portsc &= ~(val & PORTSC_RWC_MASK);
997
    /* The guest may clear, but not set the PED bit */
998
    *portsc &= val | ~PORTSC_PED;
999
    /* POWNER is masked out by RO_MASK as it is RO when we've no companion */
1000
    handle_port_owner_write(s, port, val);
1001
    /* And finally apply RO_MASK */
1002
    val &= PORTSC_RO_MASK;
1003

    
1004
    if ((val & PORTSC_PRESET) && !(*portsc & PORTSC_PRESET)) {
1005
        trace_usb_ehci_port_reset(port, 1);
1006
    }
1007

    
1008
    if (!(val & PORTSC_PRESET) &&(*portsc & PORTSC_PRESET)) {
1009
        trace_usb_ehci_port_reset(port, 0);
1010
        if (dev && dev->attached) {
1011
            usb_port_reset(&s->ports[port]);
1012
            *portsc &= ~PORTSC_CSC;
1013
        }
1014

    
1015
        /*
1016
         *  Table 2.16 Set the enable bit(and enable bit change) to indicate
1017
         *  to SW that this port has a high speed device attached
1018
         */
1019
        if (dev && dev->attached && (dev->speedmask & USB_SPEED_MASK_HIGH)) {
1020
            val |= PORTSC_PED;
1021
        }
1022
    }
1023

    
1024
    *portsc &= ~PORTSC_RO_MASK;
1025
    *portsc |= val;
1026
}
1027

    
1028
static void ehci_mem_writel(void *ptr, target_phys_addr_t addr, uint32_t val)
1029
{
1030
    EHCIState *s = ptr;
1031
    uint32_t *mmio = (uint32_t *)(&s->mmio[addr]);
1032
    uint32_t old = *mmio;
1033
    int i;
1034

    
1035
    trace_usb_ehci_mmio_writel(addr, addr2str(addr), val);
1036

    
1037
    /* Only aligned reads are allowed on OHCI */
1038
    if (addr & 3) {
1039
        fprintf(stderr, "usb-ehci: Mis-aligned write to addr 0x"
1040
                TARGET_FMT_plx "\n", addr);
1041
        return;
1042
    }
1043

    
1044
    if (addr >= PORTSC && addr < PORTSC + 4 * NB_PORTS) {
1045
        handle_port_status_write(s, (addr-PORTSC)/4, val);
1046
        trace_usb_ehci_mmio_change(addr, addr2str(addr), *mmio, old);
1047
        return;
1048
    }
1049

    
1050
    if (addr < OPREGBASE) {
1051
        fprintf(stderr, "usb-ehci: write attempt to read-only register"
1052
                TARGET_FMT_plx "\n", addr);
1053
        return;
1054
    }
1055

    
1056

    
1057
    /* Do any register specific pre-write processing here.  */
1058
    switch(addr) {
1059
    case USBCMD:
1060
        if ((val & USBCMD_RUNSTOP) && !(s->usbcmd & USBCMD_RUNSTOP)) {
1061
            qemu_mod_timer(s->frame_timer, qemu_get_clock_ns(vm_clock));
1062
            SET_LAST_RUN_CLOCK(s);
1063
            ehci_clear_usbsts(s, USBSTS_HALT);
1064
        }
1065

    
1066
        if (!(val & USBCMD_RUNSTOP) && (s->usbcmd & USBCMD_RUNSTOP)) {
1067
            qemu_del_timer(s->frame_timer);
1068
            // TODO - should finish out some stuff before setting halt
1069
            ehci_set_usbsts(s, USBSTS_HALT);
1070
        }
1071

    
1072
        if (val & USBCMD_HCRESET) {
1073
            ehci_reset(s);
1074
            val = s->usbcmd;
1075
        }
1076

    
1077
        /* not supporting dynamic frame list size at the moment */
1078
        if ((val & USBCMD_FLS) && !(s->usbcmd & USBCMD_FLS)) {
1079
            fprintf(stderr, "attempt to set frame list size -- value %d\n",
1080
                    val & USBCMD_FLS);
1081
            val &= ~USBCMD_FLS;
1082
        }
1083
        break;
1084

    
1085
    case USBSTS:
1086
        val &= USBSTS_RO_MASK;              // bits 6 thru 31 are RO
1087
        ehci_clear_usbsts(s, val);          // bits 0 thru 5 are R/WC
1088
        val = s->usbsts;
1089
        ehci_set_interrupt(s, 0);
1090
        break;
1091

    
1092
    case USBINTR:
1093
        val &= USBINTR_MASK;
1094
        break;
1095

    
1096
    case FRINDEX:
1097
        s->sofv = val >> 3;
1098
        break;
1099

    
1100
    case CONFIGFLAG:
1101
        val &= 0x1;
1102
        if (val) {
1103
            for(i = 0; i < NB_PORTS; i++)
1104
                handle_port_owner_write(s, i, 0);
1105
        }
1106
        break;
1107

    
1108
    case PERIODICLISTBASE:
1109
        if ((s->usbcmd & USBCMD_PSE) && (s->usbcmd & USBCMD_RUNSTOP)) {
1110
            fprintf(stderr,
1111
              "ehci: PERIODIC list base register set while periodic schedule\n"
1112
              "      is enabled and HC is enabled\n");
1113
        }
1114
        break;
1115

    
1116
    case ASYNCLISTADDR:
1117
        if ((s->usbcmd & USBCMD_ASE) && (s->usbcmd & USBCMD_RUNSTOP)) {
1118
            fprintf(stderr,
1119
              "ehci: ASYNC list address register set while async schedule\n"
1120
              "      is enabled and HC is enabled\n");
1121
        }
1122
        break;
1123
    }
1124

    
1125
    *mmio = val;
1126
    trace_usb_ehci_mmio_change(addr, addr2str(addr), *mmio, old);
1127
}
1128

    
1129

    
1130
// TODO : Put in common header file, duplication from usb-ohci.c
1131

    
1132
/* Get an array of dwords from main memory */
1133
static inline int get_dwords(EHCIState *ehci, uint32_t addr,
1134
                             uint32_t *buf, int num)
1135
{
1136
    int i;
1137

    
1138
    for(i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
1139
        pci_dma_read(&ehci->dev, addr, buf, sizeof(*buf));
1140
        *buf = le32_to_cpu(*buf);
1141
    }
1142

    
1143
    return 1;
1144
}
1145

    
1146
/* Put an array of dwords in to main memory */
1147
static inline int put_dwords(EHCIState *ehci, uint32_t addr,
1148
                             uint32_t *buf, int num)
1149
{
1150
    int i;
1151

    
1152
    for(i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
1153
        uint32_t tmp = cpu_to_le32(*buf);
1154
        pci_dma_write(&ehci->dev, addr, &tmp, sizeof(tmp));
1155
    }
1156

    
1157
    return 1;
1158
}
1159

    
1160
// 4.10.2
1161

    
1162
static int ehci_qh_do_overlay(EHCIQueue *q)
1163
{
1164
    int i;
1165
    int dtoggle;
1166
    int ping;
1167
    int eps;
1168
    int reload;
1169

    
1170
    // remember values in fields to preserve in qh after overlay
1171

    
1172
    dtoggle = q->qh.token & QTD_TOKEN_DTOGGLE;
1173
    ping    = q->qh.token & QTD_TOKEN_PING;
1174

    
1175
    q->qh.current_qtd = q->qtdaddr;
1176
    q->qh.next_qtd    = q->qtd.next;
1177
    q->qh.altnext_qtd = q->qtd.altnext;
1178
    q->qh.token       = q->qtd.token;
1179

    
1180

    
1181
    eps = get_field(q->qh.epchar, QH_EPCHAR_EPS);
1182
    if (eps == EHCI_QH_EPS_HIGH) {
1183
        q->qh.token &= ~QTD_TOKEN_PING;
1184
        q->qh.token |= ping;
1185
    }
1186

    
1187
    reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1188
    set_field(&q->qh.altnext_qtd, reload, QH_ALTNEXT_NAKCNT);
1189

    
1190
    for (i = 0; i < 5; i++) {
1191
        q->qh.bufptr[i] = q->qtd.bufptr[i];
1192
    }
1193

    
1194
    if (!(q->qh.epchar & QH_EPCHAR_DTC)) {
1195
        // preserve QH DT bit
1196
        q->qh.token &= ~QTD_TOKEN_DTOGGLE;
1197
        q->qh.token |= dtoggle;
1198
    }
1199

    
1200
    q->qh.bufptr[1] &= ~BUFPTR_CPROGMASK_MASK;
1201
    q->qh.bufptr[2] &= ~BUFPTR_FRAMETAG_MASK;
1202

    
1203
    put_dwords(q->ehci, NLPTR_GET(q->qhaddr), (uint32_t *) &q->qh,
1204
               sizeof(EHCIqh) >> 2);
1205

    
1206
    return 0;
1207
}
1208

    
1209
static int ehci_init_transfer(EHCIQueue *q)
1210
{
1211
    uint32_t cpage, offset, bytes, plen;
1212
    dma_addr_t page;
1213

    
1214
    cpage  = get_field(q->qh.token, QTD_TOKEN_CPAGE);
1215
    bytes  = get_field(q->qh.token, QTD_TOKEN_TBYTES);
1216
    offset = q->qh.bufptr[0] & ~QTD_BUFPTR_MASK;
1217
    pci_dma_sglist_init(&q->sgl, &q->ehci->dev, 5);
1218

    
1219
    while (bytes > 0) {
1220
        if (cpage > 4) {
1221
            fprintf(stderr, "cpage out of range (%d)\n", cpage);
1222
            return USB_RET_PROCERR;
1223
        }
1224

    
1225
        page  = q->qh.bufptr[cpage] & QTD_BUFPTR_MASK;
1226
        page += offset;
1227
        plen  = bytes;
1228
        if (plen > 4096 - offset) {
1229
            plen = 4096 - offset;
1230
            offset = 0;
1231
            cpage++;
1232
        }
1233

    
1234
        qemu_sglist_add(&q->sgl, page, plen);
1235
        bytes -= plen;
1236
    }
1237
    return 0;
1238
}
1239

    
1240
static void ehci_finish_transfer(EHCIQueue *q, int status)
1241
{
1242
    uint32_t cpage, offset;
1243

    
1244
    qemu_sglist_destroy(&q->sgl);
1245

    
1246
    if (status > 0) {
1247
        /* update cpage & offset */
1248
        cpage  = get_field(q->qh.token, QTD_TOKEN_CPAGE);
1249
        offset = q->qh.bufptr[0] & ~QTD_BUFPTR_MASK;
1250

    
1251
        offset += status;
1252
        cpage  += offset >> QTD_BUFPTR_SH;
1253
        offset &= ~QTD_BUFPTR_MASK;
1254

    
1255
        set_field(&q->qh.token, cpage, QTD_TOKEN_CPAGE);
1256
        q->qh.bufptr[0] &= QTD_BUFPTR_MASK;
1257
        q->qh.bufptr[0] |= offset;
1258
    }
1259
}
1260

    
1261
static void ehci_async_complete_packet(USBPort *port, USBPacket *packet)
1262
{
1263
    EHCIQueue *q;
1264
    EHCIState *s = port->opaque;
1265
    uint32_t portsc = s->portsc[port->index];
1266

    
1267
    if (portsc & PORTSC_POWNER) {
1268
        USBPort *companion = s->companion_ports[port->index];
1269
        companion->ops->complete(companion, packet);
1270
        return;
1271
    }
1272

    
1273
    q = container_of(packet, EHCIQueue, packet);
1274
    trace_usb_ehci_queue_action(q, "wakeup");
1275
    assert(q->async == EHCI_ASYNC_INFLIGHT);
1276
    q->async = EHCI_ASYNC_FINISHED;
1277
    q->usb_status = packet->result;
1278
}
1279

    
1280
static void ehci_execute_complete(EHCIQueue *q)
1281
{
1282
    int c_err, reload;
1283

    
1284
    assert(q->async != EHCI_ASYNC_INFLIGHT);
1285
    q->async = EHCI_ASYNC_NONE;
1286

    
1287
    DPRINTF("execute_complete: qhaddr 0x%x, next %x, qtdaddr 0x%x, status %d\n",
1288
            q->qhaddr, q->qh.next, q->qtdaddr, q->usb_status);
1289

    
1290
    if (q->usb_status < 0) {
1291
err:
1292
        /* TO-DO: put this is in a function that can be invoked below as well */
1293
        c_err = get_field(q->qh.token, QTD_TOKEN_CERR);
1294
        c_err--;
1295
        set_field(&q->qh.token, c_err, QTD_TOKEN_CERR);
1296

    
1297
        switch(q->usb_status) {
1298
        case USB_RET_NODEV:
1299
            q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR);
1300
            ehci_record_interrupt(q->ehci, USBSTS_ERRINT);
1301
            break;
1302
        case USB_RET_STALL:
1303
            q->qh.token |= QTD_TOKEN_HALT;
1304
            ehci_record_interrupt(q->ehci, USBSTS_ERRINT);
1305
            break;
1306
        case USB_RET_NAK:
1307
            /* 4.10.3 */
1308
            reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1309
            if ((q->pid == USB_TOKEN_IN) && reload) {
1310
                int nakcnt = get_field(q->qh.altnext_qtd, QH_ALTNEXT_NAKCNT);
1311
                nakcnt--;
1312
                set_field(&q->qh.altnext_qtd, nakcnt, QH_ALTNEXT_NAKCNT);
1313
            } else if (!reload) {
1314
                return;
1315
            }
1316
            break;
1317
        case USB_RET_BABBLE:
1318
            q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE);
1319
            ehci_record_interrupt(q->ehci, USBSTS_ERRINT);
1320
            break;
1321
        default:
1322
            /* should not be triggerable */
1323
            fprintf(stderr, "USB invalid response %d to handle\n", q->usb_status);
1324
            assert(0);
1325
            break;
1326
        }
1327
    } else {
1328
        // DPRINTF("Short packet condition\n");
1329
        // TODO check 4.12 for splits
1330

    
1331
        if ((q->usb_status > q->tbytes) && (q->pid == USB_TOKEN_IN)) {
1332
            q->usb_status = USB_RET_BABBLE;
1333
            goto err;
1334
        }
1335

    
1336
        if (q->tbytes && q->pid == USB_TOKEN_IN) {
1337
            q->tbytes -= q->usb_status;
1338
        } else {
1339
            q->tbytes = 0;
1340
        }
1341

    
1342
        DPRINTF("updating tbytes to %d\n", q->tbytes);
1343
        set_field(&q->qh.token, q->tbytes, QTD_TOKEN_TBYTES);
1344
    }
1345
    ehci_finish_transfer(q, q->usb_status);
1346
    usb_packet_unmap(&q->packet);
1347

    
1348
    q->qh.token ^= QTD_TOKEN_DTOGGLE;
1349
    q->qh.token &= ~QTD_TOKEN_ACTIVE;
1350

    
1351
    if ((q->usb_status >= 0) && (q->qh.token & QTD_TOKEN_IOC)) {
1352
        ehci_record_interrupt(q->ehci, USBSTS_INT);
1353
    }
1354
}
1355

    
1356
// 4.10.3
1357

    
1358
static int ehci_execute(EHCIQueue *q)
1359
{
1360
    USBDevice *dev;
1361
    USBEndpoint *ep;
1362
    int ret;
1363
    int endp;
1364
    int devadr;
1365

    
1366
    if ( !(q->qh.token & QTD_TOKEN_ACTIVE)) {
1367
        fprintf(stderr, "Attempting to execute inactive QH\n");
1368
        return USB_RET_PROCERR;
1369
    }
1370

    
1371
    q->tbytes = (q->qh.token & QTD_TOKEN_TBYTES_MASK) >> QTD_TOKEN_TBYTES_SH;
1372
    if (q->tbytes > BUFF_SIZE) {
1373
        fprintf(stderr, "Request for more bytes than allowed\n");
1374
        return USB_RET_PROCERR;
1375
    }
1376

    
1377
    q->pid = (q->qh.token & QTD_TOKEN_PID_MASK) >> QTD_TOKEN_PID_SH;
1378
    switch(q->pid) {
1379
        case 0: q->pid = USB_TOKEN_OUT; break;
1380
        case 1: q->pid = USB_TOKEN_IN; break;
1381
        case 2: q->pid = USB_TOKEN_SETUP; break;
1382
        default: fprintf(stderr, "bad token\n"); break;
1383
    }
1384

    
1385
    if (ehci_init_transfer(q) != 0) {
1386
        return USB_RET_PROCERR;
1387
    }
1388

    
1389
    endp = get_field(q->qh.epchar, QH_EPCHAR_EP);
1390
    devadr = get_field(q->qh.epchar, QH_EPCHAR_DEVADDR);
1391

    
1392
    /* TODO: associating device with ehci port */
1393
    dev = ehci_find_device(q->ehci, devadr);
1394
    ep = usb_ep_get(dev, q->pid, endp);
1395

    
1396
    usb_packet_setup(&q->packet, q->pid, ep);
1397
    usb_packet_map(&q->packet, &q->sgl);
1398

    
1399
    ret = usb_handle_packet(dev, &q->packet);
1400
    DPRINTF("submit: qh %x next %x qtd %x pid %x len %zd "
1401
            "(total %d) endp %x ret %d\n",
1402
            q->qhaddr, q->qh.next, q->qtdaddr, q->pid,
1403
            q->packet.iov.size, q->tbytes, endp, ret);
1404

    
1405
    if (ret > BUFF_SIZE) {
1406
        fprintf(stderr, "ret from usb_handle_packet > BUFF_SIZE\n");
1407
        return USB_RET_PROCERR;
1408
    }
1409

    
1410
    return ret;
1411
}
1412

    
1413
/*  4.7.2
1414
 */
1415

    
1416
static int ehci_process_itd(EHCIState *ehci,
1417
                            EHCIitd *itd)
1418
{
1419
    USBDevice *dev;
1420
    USBEndpoint *ep;
1421
    int ret;
1422
    uint32_t i, len, pid, dir, devaddr, endp;
1423
    uint32_t pg, off, ptr1, ptr2, max, mult;
1424

    
1425
    dir =(itd->bufptr[1] & ITD_BUFPTR_DIRECTION);
1426
    devaddr = get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR);
1427
    endp = get_field(itd->bufptr[0], ITD_BUFPTR_EP);
1428
    max = get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT);
1429
    mult = get_field(itd->bufptr[2], ITD_BUFPTR_MULT);
1430

    
1431
    for(i = 0; i < 8; i++) {
1432
        if (itd->transact[i] & ITD_XACT_ACTIVE) {
1433
            pg   = get_field(itd->transact[i], ITD_XACT_PGSEL);
1434
            off  = itd->transact[i] & ITD_XACT_OFFSET_MASK;
1435
            ptr1 = (itd->bufptr[pg] & ITD_BUFPTR_MASK);
1436
            ptr2 = (itd->bufptr[pg+1] & ITD_BUFPTR_MASK);
1437
            len  = get_field(itd->transact[i], ITD_XACT_LENGTH);
1438

    
1439
            if (len > max * mult) {
1440
                len = max * mult;
1441
            }
1442

    
1443
            if (len > BUFF_SIZE) {
1444
                return USB_RET_PROCERR;
1445
            }
1446

    
1447
            pci_dma_sglist_init(&ehci->isgl, &ehci->dev, 2);
1448
            if (off + len > 4096) {
1449
                /* transfer crosses page border */
1450
                uint32_t len2 = off + len - 4096;
1451
                uint32_t len1 = len - len2;
1452
                qemu_sglist_add(&ehci->isgl, ptr1 + off, len1);
1453
                qemu_sglist_add(&ehci->isgl, ptr2, len2);
1454
            } else {
1455
                qemu_sglist_add(&ehci->isgl, ptr1 + off, len);
1456
            }
1457

    
1458
            pid = dir ? USB_TOKEN_IN : USB_TOKEN_OUT;
1459

    
1460
            dev = ehci_find_device(ehci, devaddr);
1461
            ep = usb_ep_get(dev, pid, endp);
1462
            if (ep->type == USB_ENDPOINT_XFER_ISOC) {
1463
                usb_packet_setup(&ehci->ipacket, pid, ep);
1464
                usb_packet_map(&ehci->ipacket, &ehci->isgl);
1465
                ret = usb_handle_packet(dev, &ehci->ipacket);
1466
                assert(ret != USB_RET_ASYNC);
1467
                usb_packet_unmap(&ehci->ipacket);
1468
            } else {
1469
                DPRINTF("ISOCH: attempt to addess non-iso endpoint\n");
1470
                ret = USB_RET_NAK;
1471
            }
1472
            qemu_sglist_destroy(&ehci->isgl);
1473

    
1474
#if 0
1475
            /*  In isoch, there is no facility to indicate a NAK so let's
1476
             *  instead just complete a zero-byte transaction.  Setting
1477
             *  DBERR seems too draconian.
1478
             */
1479

1480
            if (ret == USB_RET_NAK) {
1481
                if (ehci->isoch_pause > 0) {
1482
                    DPRINTF("ISOCH: received a NAK but paused so returning\n");
1483
                    ehci->isoch_pause--;
1484
                    return 0;
1485
                } else if (ehci->isoch_pause == -1) {
1486
                    DPRINTF("ISOCH: recv NAK & isoch pause inactive, setting\n");
1487
                    // Pause frindex for up to 50 msec waiting for data from
1488
                    // remote
1489
                    ehci->isoch_pause = 50;
1490
                    return 0;
1491
                } else {
1492
                    DPRINTF("ISOCH: isoch pause timeout! return 0\n");
1493
                    ret = 0;
1494
                }
1495
            } else {
1496
                DPRINTF("ISOCH: received ACK, clearing pause\n");
1497
                ehci->isoch_pause = -1;
1498
            }
1499
#else
1500
            if (ret == USB_RET_NAK) {
1501
                ret = 0;
1502
            }
1503
#endif
1504

    
1505
            if (ret >= 0) {
1506
                if (!dir) {
1507
                    /* OUT */
1508
                    set_field(&itd->transact[i], len - ret, ITD_XACT_LENGTH);
1509
                } else {
1510
                    /* IN */
1511
                    set_field(&itd->transact[i], ret, ITD_XACT_LENGTH);
1512
                }
1513
            } else {
1514
                switch (ret) {
1515
                default:
1516
                    fprintf(stderr, "Unexpected iso usb result: %d\n", ret);
1517
                    /* Fall through */
1518
                case USB_RET_NODEV:
1519
                    /* 3.3.2: XACTERR is only allowed on IN transactions */
1520
                    if (dir) {
1521
                        itd->transact[i] |= ITD_XACT_XACTERR;
1522
                        ehci_record_interrupt(ehci, USBSTS_ERRINT);
1523
                    }
1524
                    break;
1525
                case USB_RET_BABBLE:
1526
                    itd->transact[i] |= ITD_XACT_BABBLE;
1527
                    ehci_record_interrupt(ehci, USBSTS_ERRINT);
1528
                    break;
1529
                }
1530
            }
1531
            if (itd->transact[i] & ITD_XACT_IOC) {
1532
                ehci_record_interrupt(ehci, USBSTS_INT);
1533
            }
1534
            itd->transact[i] &= ~ITD_XACT_ACTIVE;
1535
        }
1536
    }
1537
    return 0;
1538
}
1539

    
1540
/*  This state is the entry point for asynchronous schedule
1541
 *  processing.  Entry here consitutes a EHCI start event state (4.8.5)
1542
 */
1543
static int ehci_state_waitlisthead(EHCIState *ehci,  int async)
1544
{
1545
    EHCIqh qh;
1546
    int i = 0;
1547
    int again = 0;
1548
    uint32_t entry = ehci->asynclistaddr;
1549

    
1550
    /* set reclamation flag at start event (4.8.6) */
1551
    if (async) {
1552
        ehci_set_usbsts(ehci, USBSTS_REC);
1553
    }
1554

    
1555
    ehci_queues_rip_unused(ehci);
1556

    
1557
    /*  Find the head of the list (4.9.1.1) */
1558
    for(i = 0; i < MAX_QH; i++) {
1559
        get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &qh,
1560
                   sizeof(EHCIqh) >> 2);
1561
        ehci_trace_qh(NULL, NLPTR_GET(entry), &qh);
1562

    
1563
        if (qh.epchar & QH_EPCHAR_H) {
1564
            if (async) {
1565
                entry |= (NLPTR_TYPE_QH << 1);
1566
            }
1567

    
1568
            ehci_set_fetch_addr(ehci, async, entry);
1569
            ehci_set_state(ehci, async, EST_FETCHENTRY);
1570
            again = 1;
1571
            goto out;
1572
        }
1573

    
1574
        entry = qh.next;
1575
        if (entry == ehci->asynclistaddr) {
1576
            break;
1577
        }
1578
    }
1579

    
1580
    /* no head found for list. */
1581

    
1582
    ehci_set_state(ehci, async, EST_ACTIVE);
1583

    
1584
out:
1585
    return again;
1586
}
1587

    
1588

    
1589
/*  This state is the entry point for periodic schedule processing as
1590
 *  well as being a continuation state for async processing.
1591
 */
1592
static int ehci_state_fetchentry(EHCIState *ehci, int async)
1593
{
1594
    int again = 0;
1595
    uint32_t entry = ehci_get_fetch_addr(ehci, async);
1596

    
1597
    if (entry < 0x1000) {
1598
        DPRINTF("fetchentry: entry invalid (0x%08x)\n", entry);
1599
        ehci_set_state(ehci, async, EST_ACTIVE);
1600
        goto out;
1601
    }
1602

    
1603
    /* section 4.8, only QH in async schedule */
1604
    if (async && (NLPTR_TYPE_GET(entry) != NLPTR_TYPE_QH)) {
1605
        fprintf(stderr, "non queue head request in async schedule\n");
1606
        return -1;
1607
    }
1608

    
1609
    switch (NLPTR_TYPE_GET(entry)) {
1610
    case NLPTR_TYPE_QH:
1611
        ehci_set_state(ehci, async, EST_FETCHQH);
1612
        again = 1;
1613
        break;
1614

    
1615
    case NLPTR_TYPE_ITD:
1616
        ehci_set_state(ehci, async, EST_FETCHITD);
1617
        again = 1;
1618
        break;
1619

    
1620
    case NLPTR_TYPE_STITD:
1621
        ehci_set_state(ehci, async, EST_FETCHSITD);
1622
        again = 1;
1623
        break;
1624

    
1625
    default:
1626
        /* TODO: handle FSTN type */
1627
        fprintf(stderr, "FETCHENTRY: entry at %X is of type %d "
1628
                "which is not supported yet\n", entry, NLPTR_TYPE_GET(entry));
1629
        return -1;
1630
    }
1631

    
1632
out:
1633
    return again;
1634
}
1635

    
1636
static EHCIQueue *ehci_state_fetchqh(EHCIState *ehci, int async)
1637
{
1638
    uint32_t entry;
1639
    EHCIQueue *q;
1640
    int reload;
1641

    
1642
    entry = ehci_get_fetch_addr(ehci, async);
1643
    q = ehci_find_queue_by_qh(ehci, entry);
1644
    if (NULL == q) {
1645
        q = ehci_alloc_queue(ehci, async);
1646
    }
1647
    q->qhaddr = entry;
1648
    q->seen++;
1649

    
1650
    if (q->seen > 1) {
1651
        /* we are going in circles -- stop processing */
1652
        ehci_set_state(ehci, async, EST_ACTIVE);
1653
        q = NULL;
1654
        goto out;
1655
    }
1656

    
1657
    get_dwords(ehci, NLPTR_GET(q->qhaddr),
1658
               (uint32_t *) &q->qh, sizeof(EHCIqh) >> 2);
1659
    ehci_trace_qh(q, NLPTR_GET(q->qhaddr), &q->qh);
1660

    
1661
    if (q->async == EHCI_ASYNC_INFLIGHT) {
1662
        /* I/O still in progress -- skip queue */
1663
        ehci_set_state(ehci, async, EST_HORIZONTALQH);
1664
        goto out;
1665
    }
1666
    if (q->async == EHCI_ASYNC_FINISHED) {
1667
        /* I/O finished -- continue processing queue */
1668
        trace_usb_ehci_queue_action(q, "resume");
1669
        ehci_set_state(ehci, async, EST_EXECUTING);
1670
        goto out;
1671
    }
1672

    
1673
    if (async && (q->qh.epchar & QH_EPCHAR_H)) {
1674

    
1675
        /*  EHCI spec version 1.0 Section 4.8.3 & 4.10.1 */
1676
        if (ehci->usbsts & USBSTS_REC) {
1677
            ehci_clear_usbsts(ehci, USBSTS_REC);
1678
        } else {
1679
            DPRINTF("FETCHQH:  QH 0x%08x. H-bit set, reclamation status reset"
1680
                       " - done processing\n", q->qhaddr);
1681
            ehci_set_state(ehci, async, EST_ACTIVE);
1682
            q = NULL;
1683
            goto out;
1684
        }
1685
    }
1686

    
1687
#if EHCI_DEBUG
1688
    if (q->qhaddr != q->qh.next) {
1689
    DPRINTF("FETCHQH:  QH 0x%08x (h %x halt %x active %x) next 0x%08x\n",
1690
               q->qhaddr,
1691
               q->qh.epchar & QH_EPCHAR_H,
1692
               q->qh.token & QTD_TOKEN_HALT,
1693
               q->qh.token & QTD_TOKEN_ACTIVE,
1694
               q->qh.next);
1695
    }
1696
#endif
1697

    
1698
    reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1699
    if (reload) {
1700
        set_field(&q->qh.altnext_qtd, reload, QH_ALTNEXT_NAKCNT);
1701
    }
1702

    
1703
    if (q->qh.token & QTD_TOKEN_HALT) {
1704
        ehci_set_state(ehci, async, EST_HORIZONTALQH);
1705

    
1706
    } else if ((q->qh.token & QTD_TOKEN_ACTIVE) && (q->qh.current_qtd > 0x1000)) {
1707
        q->qtdaddr = q->qh.current_qtd;
1708
        ehci_set_state(ehci, async, EST_FETCHQTD);
1709

    
1710
    } else {
1711
        /*  EHCI spec version 1.0 Section 4.10.2 */
1712
        ehci_set_state(ehci, async, EST_ADVANCEQUEUE);
1713
    }
1714

    
1715
out:
1716
    return q;
1717
}
1718

    
1719
static int ehci_state_fetchitd(EHCIState *ehci, int async)
1720
{
1721
    uint32_t entry;
1722
    EHCIitd itd;
1723

    
1724
    assert(!async);
1725
    entry = ehci_get_fetch_addr(ehci, async);
1726

    
1727
    get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd,
1728
               sizeof(EHCIitd) >> 2);
1729
    ehci_trace_itd(ehci, entry, &itd);
1730

    
1731
    if (ehci_process_itd(ehci, &itd) != 0) {
1732
        return -1;
1733
    }
1734

    
1735
    put_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd,
1736
               sizeof(EHCIitd) >> 2);
1737
    ehci_set_fetch_addr(ehci, async, itd.next);
1738
    ehci_set_state(ehci, async, EST_FETCHENTRY);
1739

    
1740
    return 1;
1741
}
1742

    
1743
static int ehci_state_fetchsitd(EHCIState *ehci, int async)
1744
{
1745
    uint32_t entry;
1746
    EHCIsitd sitd;
1747

    
1748
    assert(!async);
1749
    entry = ehci_get_fetch_addr(ehci, async);
1750

    
1751
    get_dwords(ehci, NLPTR_GET(entry), (uint32_t *)&sitd,
1752
               sizeof(EHCIsitd) >> 2);
1753
    ehci_trace_sitd(ehci, entry, &sitd);
1754

    
1755
    if (!(sitd.results & SITD_RESULTS_ACTIVE)) {
1756
        /* siTD is not active, nothing to do */;
1757
    } else {
1758
        /* TODO: split transfers are not implemented */
1759
        fprintf(stderr, "WARNING: Skipping active siTD\n");
1760
    }
1761

    
1762
    ehci_set_fetch_addr(ehci, async, sitd.next);
1763
    ehci_set_state(ehci, async, EST_FETCHENTRY);
1764
    return 1;
1765
}
1766

    
1767
/* Section 4.10.2 - paragraph 3 */
1768
static int ehci_state_advqueue(EHCIQueue *q, int async)
1769
{
1770
#if 0
1771
    /* TO-DO: 4.10.2 - paragraph 2
1772
     * if I-bit is set to 1 and QH is not active
1773
     * go to horizontal QH
1774
     */
1775
    if (I-bit set) {
1776
        ehci_set_state(ehci, async, EST_HORIZONTALQH);
1777
        goto out;
1778
    }
1779
#endif
1780

    
1781
    /*
1782
     * want data and alt-next qTD is valid
1783
     */
1784
    if (((q->qh.token & QTD_TOKEN_TBYTES_MASK) != 0) &&
1785
        (q->qh.altnext_qtd > 0x1000) &&
1786
        (NLPTR_TBIT(q->qh.altnext_qtd) == 0)) {
1787
        q->qtdaddr = q->qh.altnext_qtd;
1788
        ehci_set_state(q->ehci, async, EST_FETCHQTD);
1789

    
1790
    /*
1791
     *  next qTD is valid
1792
     */
1793
    } else if ((q->qh.next_qtd > 0x1000) &&
1794
               (NLPTR_TBIT(q->qh.next_qtd) == 0)) {
1795
        q->qtdaddr = q->qh.next_qtd;
1796
        ehci_set_state(q->ehci, async, EST_FETCHQTD);
1797

    
1798
    /*
1799
     *  no valid qTD, try next QH
1800
     */
1801
    } else {
1802
        ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
1803
    }
1804

    
1805
    return 1;
1806
}
1807

    
1808
/* Section 4.10.2 - paragraph 4 */
1809
static int ehci_state_fetchqtd(EHCIQueue *q, int async)
1810
{
1811
    int again = 0;
1812

    
1813
    get_dwords(q->ehci, NLPTR_GET(q->qtdaddr), (uint32_t *) &q->qtd,
1814
               sizeof(EHCIqtd) >> 2);
1815
    ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), &q->qtd);
1816

    
1817
    if (q->qtd.token & QTD_TOKEN_ACTIVE) {
1818
        ehci_set_state(q->ehci, async, EST_EXECUTE);
1819
        again = 1;
1820
    } else {
1821
        ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
1822
        again = 1;
1823
    }
1824

    
1825
    return again;
1826
}
1827

    
1828
static int ehci_state_horizqh(EHCIQueue *q, int async)
1829
{
1830
    int again = 0;
1831

    
1832
    if (ehci_get_fetch_addr(q->ehci, async) != q->qh.next) {
1833
        ehci_set_fetch_addr(q->ehci, async, q->qh.next);
1834
        ehci_set_state(q->ehci, async, EST_FETCHENTRY);
1835
        again = 1;
1836
    } else {
1837
        ehci_set_state(q->ehci, async, EST_ACTIVE);
1838
    }
1839

    
1840
    return again;
1841
}
1842

    
1843
/*
1844
 *  Write the qh back to guest physical memory.  This step isn't
1845
 *  in the EHCI spec but we need to do it since we don't share
1846
 *  physical memory with our guest VM.
1847
 *
1848
 *  The first three dwords are read-only for the EHCI, so skip them
1849
 *  when writing back the qh.
1850
 */
1851
static void ehci_flush_qh(EHCIQueue *q)
1852
{
1853
    uint32_t *qh = (uint32_t *) &q->qh;
1854
    uint32_t dwords = sizeof(EHCIqh) >> 2;
1855
    uint32_t addr = NLPTR_GET(q->qhaddr);
1856

    
1857
    put_dwords(q->ehci, addr + 3 * sizeof(uint32_t), qh + 3, dwords - 3);
1858
}
1859

    
1860
static int ehci_state_execute(EHCIQueue *q, int async)
1861
{
1862
    int again = 0;
1863
    int reload, nakcnt;
1864
    int smask;
1865

    
1866
    if (ehci_qh_do_overlay(q) != 0) {
1867
        return -1;
1868
    }
1869

    
1870
    smask = get_field(q->qh.epcap, QH_EPCAP_SMASK);
1871

    
1872
    if (!smask) {
1873
        reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1874
        nakcnt = get_field(q->qh.altnext_qtd, QH_ALTNEXT_NAKCNT);
1875
        if (reload && !nakcnt) {
1876
            ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
1877
            again = 1;
1878
            goto out;
1879
        }
1880
    }
1881

    
1882
    // TODO verify enough time remains in the uframe as in 4.4.1.1
1883
    // TODO write back ptr to async list when done or out of time
1884
    // TODO Windows does not seem to ever set the MULT field
1885

    
1886
    if (!async) {
1887
        int transactCtr = get_field(q->qh.epcap, QH_EPCAP_MULT);
1888
        if (!transactCtr) {
1889
            ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
1890
            again = 1;
1891
            goto out;
1892
        }
1893
    }
1894

    
1895
    if (async) {
1896
        ehci_set_usbsts(q->ehci, USBSTS_REC);
1897
    }
1898

    
1899
    q->usb_status = ehci_execute(q);
1900
    if (q->usb_status == USB_RET_PROCERR) {
1901
        again = -1;
1902
        goto out;
1903
    }
1904
    if (q->usb_status == USB_RET_ASYNC) {
1905
        ehci_flush_qh(q);
1906
        trace_usb_ehci_queue_action(q, "suspend");
1907
        q->async = EHCI_ASYNC_INFLIGHT;
1908
        ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
1909
        again = 1;
1910
        goto out;
1911
    }
1912

    
1913
    ehci_set_state(q->ehci, async, EST_EXECUTING);
1914
    again = 1;
1915

    
1916
out:
1917
    return again;
1918
}
1919

    
1920
static int ehci_state_executing(EHCIQueue *q, int async)
1921
{
1922
    int again = 0;
1923
    int reload, nakcnt;
1924

    
1925
    ehci_execute_complete(q);
1926
    if (q->usb_status == USB_RET_ASYNC) {
1927
        goto out;
1928
    }
1929
    if (q->usb_status == USB_RET_PROCERR) {
1930
        again = -1;
1931
        goto out;
1932
    }
1933

    
1934
    // 4.10.3
1935
    if (!async) {
1936
        int transactCtr = get_field(q->qh.epcap, QH_EPCAP_MULT);
1937
        transactCtr--;
1938
        set_field(&q->qh.epcap, transactCtr, QH_EPCAP_MULT);
1939
        // 4.10.3, bottom of page 82, should exit this state when transaction
1940
        // counter decrements to 0
1941
    }
1942

    
1943
    reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
1944
    if (reload) {
1945
        nakcnt = get_field(q->qh.altnext_qtd, QH_ALTNEXT_NAKCNT);
1946
        if (q->usb_status == USB_RET_NAK) {
1947
            if (nakcnt) {
1948
                nakcnt--;
1949
            }
1950
        } else {
1951
            nakcnt = reload;
1952
        }
1953
        set_field(&q->qh.altnext_qtd, nakcnt, QH_ALTNEXT_NAKCNT);
1954
    }
1955

    
1956
    /* 4.10.5 */
1957
    if ((q->usb_status == USB_RET_NAK) || (q->qh.token & QTD_TOKEN_ACTIVE)) {
1958
        ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
1959
    } else {
1960
        ehci_set_state(q->ehci, async, EST_WRITEBACK);
1961
    }
1962

    
1963
    again = 1;
1964

    
1965
out:
1966
    ehci_flush_qh(q);
1967
    return again;
1968
}
1969

    
1970

    
1971
static int ehci_state_writeback(EHCIQueue *q, int async)
1972
{
1973
    int again = 0;
1974

    
1975
    /*  Write back the QTD from the QH area */
1976
    ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), (EHCIqtd*) &q->qh.next_qtd);
1977
    put_dwords(q->ehci, NLPTR_GET(q->qtdaddr), (uint32_t *) &q->qh.next_qtd,
1978
               sizeof(EHCIqtd) >> 2);
1979

    
1980
    /*
1981
     * EHCI specs say go horizontal here.
1982
     *
1983
     * We can also advance the queue here for performance reasons.  We
1984
     * need to take care to only take that shortcut in case we've
1985
     * processed the qtd just written back without errors, i.e. halt
1986
     * bit is clear.
1987
     */
1988
    if (q->qh.token & QTD_TOKEN_HALT) {
1989
        ehci_set_state(q->ehci, async, EST_HORIZONTALQH);
1990
        again = 1;
1991
    } else {
1992
        ehci_set_state(q->ehci, async, EST_ADVANCEQUEUE);
1993
        again = 1;
1994
    }
1995
    return again;
1996
}
1997

    
1998
/*
1999
 * This is the state machine that is common to both async and periodic
2000
 */
2001

    
2002
static void ehci_advance_state(EHCIState *ehci,
2003
                               int async)
2004
{
2005
    EHCIQueue *q = NULL;
2006
    int again;
2007
    int iter = 0;
2008

    
2009
    do {
2010
        if (ehci_get_state(ehci, async) == EST_FETCHQH) {
2011
            iter++;
2012
            /* if we are roaming a lot of QH without executing a qTD
2013
             * something is wrong with the linked list. TO-DO: why is
2014
             * this hack needed?
2015
             */
2016
            assert(iter < MAX_ITERATIONS);
2017
#if 0
2018
            if (iter > MAX_ITERATIONS) {
2019
                DPRINTF("\n*** advance_state: bailing on MAX ITERATIONS***\n");
2020
                ehci_set_state(ehci, async, EST_ACTIVE);
2021
                break;
2022
            }
2023
#endif
2024
        }
2025
        switch(ehci_get_state(ehci, async)) {
2026
        case EST_WAITLISTHEAD:
2027
            again = ehci_state_waitlisthead(ehci, async);
2028
            break;
2029

    
2030
        case EST_FETCHENTRY:
2031
            again = ehci_state_fetchentry(ehci, async);
2032
            break;
2033

    
2034
        case EST_FETCHQH:
2035
            q = ehci_state_fetchqh(ehci, async);
2036
            again = q ? 1 : 0;
2037
            break;
2038

    
2039
        case EST_FETCHITD:
2040
            again = ehci_state_fetchitd(ehci, async);
2041
            break;
2042

    
2043
        case EST_FETCHSITD:
2044
            again = ehci_state_fetchsitd(ehci, async);
2045
            break;
2046

    
2047
        case EST_ADVANCEQUEUE:
2048
            again = ehci_state_advqueue(q, async);
2049
            break;
2050

    
2051
        case EST_FETCHQTD:
2052
            again = ehci_state_fetchqtd(q, async);
2053
            break;
2054

    
2055
        case EST_HORIZONTALQH:
2056
            again = ehci_state_horizqh(q, async);
2057
            break;
2058

    
2059
        case EST_EXECUTE:
2060
            iter = 0;
2061
            again = ehci_state_execute(q, async);
2062
            break;
2063

    
2064
        case EST_EXECUTING:
2065
            assert(q != NULL);
2066
            again = ehci_state_executing(q, async);
2067
            break;
2068

    
2069
        case EST_WRITEBACK:
2070
            assert(q != NULL);
2071
            again = ehci_state_writeback(q, async);
2072
            break;
2073

    
2074
        default:
2075
            fprintf(stderr, "Bad state!\n");
2076
            again = -1;
2077
            assert(0);
2078
            break;
2079
        }
2080

    
2081
        if (again < 0) {
2082
            fprintf(stderr, "processing error - resetting ehci HC\n");
2083
            ehci_reset(ehci);
2084
            again = 0;
2085
            assert(0);
2086
        }
2087
    }
2088
    while (again);
2089

    
2090
    ehci_commit_interrupt(ehci);
2091
}
2092

    
2093
static void ehci_advance_async_state(EHCIState *ehci)
2094
{
2095
    int async = 1;
2096

    
2097
    switch(ehci_get_state(ehci, async)) {
2098
    case EST_INACTIVE:
2099
        if (!(ehci->usbcmd & USBCMD_ASE)) {
2100
            break;
2101
        }
2102
        ehci_set_usbsts(ehci, USBSTS_ASS);
2103
        ehci_set_state(ehci, async, EST_ACTIVE);
2104
        // No break, fall through to ACTIVE
2105

    
2106
    case EST_ACTIVE:
2107
        if ( !(ehci->usbcmd & USBCMD_ASE)) {
2108
            ehci_clear_usbsts(ehci, USBSTS_ASS);
2109
            ehci_set_state(ehci, async, EST_INACTIVE);
2110
            break;
2111
        }
2112

    
2113
        /* If the doorbell is set, the guest wants to make a change to the
2114
         * schedule. The host controller needs to release cached data.
2115
         * (section 4.8.2)
2116
         */
2117
        if (ehci->usbcmd & USBCMD_IAAD) {
2118
            DPRINTF("ASYNC: doorbell request acknowledged\n");
2119
            ehci->usbcmd &= ~USBCMD_IAAD;
2120
            ehci_set_interrupt(ehci, USBSTS_IAA);
2121
            break;
2122
        }
2123

    
2124
        /* make sure guest has acknowledged */
2125
        /* TO-DO: is this really needed? */
2126
        if (ehci->usbsts & USBSTS_IAA) {
2127
            DPRINTF("IAA status bit still set.\n");
2128
            break;
2129
        }
2130

    
2131
        /* check that address register has been set */
2132
        if (ehci->asynclistaddr == 0) {
2133
            break;
2134
        }
2135

    
2136
        ehci_set_state(ehci, async, EST_WAITLISTHEAD);
2137
        ehci_advance_state(ehci, async);
2138
        break;
2139

    
2140
    default:
2141
        /* this should only be due to a developer mistake */
2142
        fprintf(stderr, "ehci: Bad asynchronous state %d. "
2143
                "Resetting to active\n", ehci->astate);
2144
        assert(0);
2145
    }
2146
}
2147

    
2148
static void ehci_advance_periodic_state(EHCIState *ehci)
2149
{
2150
    uint32_t entry;
2151
    uint32_t list;
2152
    int async = 0;
2153

    
2154
    // 4.6
2155

    
2156
    switch(ehci_get_state(ehci, async)) {
2157
    case EST_INACTIVE:
2158
        if ( !(ehci->frindex & 7) && (ehci->usbcmd & USBCMD_PSE)) {
2159
            ehci_set_usbsts(ehci, USBSTS_PSS);
2160
            ehci_set_state(ehci, async, EST_ACTIVE);
2161
            // No break, fall through to ACTIVE
2162
        } else
2163
            break;
2164

    
2165
    case EST_ACTIVE:
2166
        if ( !(ehci->frindex & 7) && !(ehci->usbcmd & USBCMD_PSE)) {
2167
            ehci_clear_usbsts(ehci, USBSTS_PSS);
2168
            ehci_set_state(ehci, async, EST_INACTIVE);
2169
            break;
2170
        }
2171

    
2172
        list = ehci->periodiclistbase & 0xfffff000;
2173
        /* check that register has been set */
2174
        if (list == 0) {
2175
            break;
2176
        }
2177
        list |= ((ehci->frindex & 0x1ff8) >> 1);
2178

    
2179
        pci_dma_read(&ehci->dev, list, &entry, sizeof entry);
2180
        entry = le32_to_cpu(entry);
2181

    
2182
        DPRINTF("PERIODIC state adv fr=%d.  [%08X] -> %08X\n",
2183
                ehci->frindex / 8, list, entry);
2184
        ehci_set_fetch_addr(ehci, async,entry);
2185
        ehci_set_state(ehci, async, EST_FETCHENTRY);
2186
        ehci_advance_state(ehci, async);
2187
        break;
2188

    
2189
    default:
2190
        /* this should only be due to a developer mistake */
2191
        fprintf(stderr, "ehci: Bad periodic state %d. "
2192
                "Resetting to active\n", ehci->pstate);
2193
        assert(0);
2194
    }
2195
}
2196

    
2197
static void ehci_frame_timer(void *opaque)
2198
{
2199
    EHCIState *ehci = opaque;
2200
    int64_t expire_time, t_now;
2201
    uint64_t ns_elapsed;
2202
    int frames;
2203
    int i;
2204
    int skipped_frames = 0;
2205

    
2206
    t_now = qemu_get_clock_ns(vm_clock);
2207
    expire_time = t_now + (get_ticks_per_sec() / ehci->freq);
2208

    
2209
    ns_elapsed = t_now - ehci->last_run_ns;
2210
    frames = ns_elapsed / FRAME_TIMER_NS;
2211

    
2212
    for (i = 0; i < frames; i++) {
2213
        if ( !(ehci->usbsts & USBSTS_HALT)) {
2214
            if (ehci->isoch_pause <= 0) {
2215
                ehci->frindex += 8;
2216
            }
2217

    
2218
            if (ehci->frindex > 0x00001fff) {
2219
                ehci->frindex = 0;
2220
                ehci_set_interrupt(ehci, USBSTS_FLR);
2221
            }
2222

    
2223
            ehci->sofv = (ehci->frindex - 1) >> 3;
2224
            ehci->sofv &= 0x000003ff;
2225
        }
2226

    
2227
        if (frames - i > ehci->maxframes) {
2228
            skipped_frames++;
2229
        } else {
2230
            ehci_advance_periodic_state(ehci);
2231
        }
2232

    
2233
        ehci->last_run_ns += FRAME_TIMER_NS;
2234
    }
2235

    
2236
#if 0
2237
    if (skipped_frames) {
2238
        DPRINTF("WARNING - EHCI skipped %d frames\n", skipped_frames);
2239
    }
2240
#endif
2241

    
2242
    /*  Async is not inside loop since it executes everything it can once
2243
     *  called
2244
     */
2245
    ehci_advance_async_state(ehci);
2246

    
2247
    qemu_mod_timer(ehci->frame_timer, expire_time);
2248
}
2249

    
2250

    
2251
static const MemoryRegionOps ehci_mem_ops = {
2252
    .old_mmio = {
2253
        .read = { ehci_mem_readb, ehci_mem_readw, ehci_mem_readl },
2254
        .write = { ehci_mem_writeb, ehci_mem_writew, ehci_mem_writel },
2255
    },
2256
    .endianness = DEVICE_LITTLE_ENDIAN,
2257
};
2258

    
2259
static int usb_ehci_initfn(PCIDevice *dev);
2260

    
2261
static USBPortOps ehci_port_ops = {
2262
    .attach = ehci_attach,
2263
    .detach = ehci_detach,
2264
    .child_detach = ehci_child_detach,
2265
    .wakeup = ehci_wakeup,
2266
    .complete = ehci_async_complete_packet,
2267
};
2268

    
2269
static USBBusOps ehci_bus_ops = {
2270
    .register_companion = ehci_register_companion,
2271
};
2272

    
2273
static const VMStateDescription vmstate_ehci = {
2274
    .name = "ehci",
2275
    .unmigratable = 1,
2276
};
2277

    
2278
static Property ehci_properties[] = {
2279
    DEFINE_PROP_UINT32("freq",      EHCIState, freq, FRAME_TIMER_FREQ),
2280
    DEFINE_PROP_UINT32("maxframes", EHCIState, maxframes, 128),
2281
    DEFINE_PROP_END_OF_LIST(),
2282
};
2283

    
2284
static void ehci_class_init(ObjectClass *klass, void *data)
2285
{
2286
    DeviceClass *dc = DEVICE_CLASS(klass);
2287
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
2288

    
2289
    k->init = usb_ehci_initfn;
2290
    k->vendor_id = PCI_VENDOR_ID_INTEL;
2291
    k->device_id = PCI_DEVICE_ID_INTEL_82801D; /* ich4 */
2292
    k->revision = 0x10;
2293
    k->class_id = PCI_CLASS_SERIAL_USB;
2294
    dc->vmsd = &vmstate_ehci;
2295
    dc->props = ehci_properties;
2296
}
2297

    
2298
static TypeInfo ehci_info = {
2299
    .name          = "usb-ehci",
2300
    .parent        = TYPE_PCI_DEVICE,
2301
    .instance_size = sizeof(EHCIState),
2302
    .class_init    = ehci_class_init,
2303
};
2304

    
2305
static void ich9_ehci_class_init(ObjectClass *klass, void *data)
2306
{
2307
    DeviceClass *dc = DEVICE_CLASS(klass);
2308
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
2309

    
2310
    k->init = usb_ehci_initfn;
2311
    k->vendor_id = PCI_VENDOR_ID_INTEL;
2312
    k->device_id = PCI_DEVICE_ID_INTEL_82801I_EHCI1;
2313
    k->revision = 0x03;
2314
    k->class_id = PCI_CLASS_SERIAL_USB;
2315
    dc->vmsd = &vmstate_ehci;
2316
    dc->props = ehci_properties;
2317
}
2318

    
2319
static TypeInfo ich9_ehci_info = {
2320
    .name          = "ich9-usb-ehci1",
2321
    .parent        = TYPE_PCI_DEVICE,
2322
    .instance_size = sizeof(EHCIState),
2323
    .class_init    = ich9_ehci_class_init,
2324
};
2325

    
2326
static int usb_ehci_initfn(PCIDevice *dev)
2327
{
2328
    EHCIState *s = DO_UPCAST(EHCIState, dev, dev);
2329
    uint8_t *pci_conf = s->dev.config;
2330
    int i;
2331

    
2332
    pci_set_byte(&pci_conf[PCI_CLASS_PROG], 0x20);
2333

    
2334
    /* capabilities pointer */
2335
    pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x00);
2336
    //pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x50);
2337

    
2338
    pci_set_byte(&pci_conf[PCI_INTERRUPT_PIN], 4); /* interrupt pin D */
2339
    pci_set_byte(&pci_conf[PCI_MIN_GNT], 0);
2340
    pci_set_byte(&pci_conf[PCI_MAX_LAT], 0);
2341

    
2342
    // pci_conf[0x50] = 0x01; // power management caps
2343

    
2344
    pci_set_byte(&pci_conf[USB_SBRN], USB_RELEASE_2); // release number (2.1.4)
2345
    pci_set_byte(&pci_conf[0x61], 0x20);  // frame length adjustment (2.1.5)
2346
    pci_set_word(&pci_conf[0x62], 0x00);  // port wake up capability (2.1.6)
2347

    
2348
    pci_conf[0x64] = 0x00;
2349
    pci_conf[0x65] = 0x00;
2350
    pci_conf[0x66] = 0x00;
2351
    pci_conf[0x67] = 0x00;
2352
    pci_conf[0x68] = 0x01;
2353
    pci_conf[0x69] = 0x00;
2354
    pci_conf[0x6a] = 0x00;
2355
    pci_conf[0x6b] = 0x00;  // USBLEGSUP
2356
    pci_conf[0x6c] = 0x00;
2357
    pci_conf[0x6d] = 0x00;
2358
    pci_conf[0x6e] = 0x00;
2359
    pci_conf[0x6f] = 0xc0;  // USBLEFCTLSTS
2360

    
2361
    // 2.2 host controller interface version
2362
    s->mmio[0x00] = (uint8_t) OPREGBASE;
2363
    s->mmio[0x01] = 0x00;
2364
    s->mmio[0x02] = 0x00;
2365
    s->mmio[0x03] = 0x01;        // HC version
2366
    s->mmio[0x04] = NB_PORTS;    // Number of downstream ports
2367
    s->mmio[0x05] = 0x00;        // No companion ports at present
2368
    s->mmio[0x06] = 0x00;
2369
    s->mmio[0x07] = 0x00;
2370
    s->mmio[0x08] = 0x80;        // We can cache whole frame, not 64-bit capable
2371
    s->mmio[0x09] = 0x68;        // EECP
2372
    s->mmio[0x0a] = 0x00;
2373
    s->mmio[0x0b] = 0x00;
2374

    
2375
    s->irq = s->dev.irq[3];
2376

    
2377
    usb_bus_new(&s->bus, &ehci_bus_ops, &s->dev.qdev);
2378
    for(i = 0; i < NB_PORTS; i++) {
2379
        usb_register_port(&s->bus, &s->ports[i], s, i, &ehci_port_ops,
2380
                          USB_SPEED_MASK_HIGH);
2381
        s->ports[i].dev = 0;
2382
    }
2383

    
2384
    s->frame_timer = qemu_new_timer_ns(vm_clock, ehci_frame_timer, s);
2385
    QTAILQ_INIT(&s->queues);
2386

    
2387
    qemu_register_reset(ehci_reset, s);
2388

    
2389
    memory_region_init_io(&s->mem, &ehci_mem_ops, s, "ehci", MMIO_SIZE);
2390
    pci_register_bar(&s->dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->mem);
2391

    
2392
    fprintf(stderr, "*** EHCI support is under development ***\n");
2393

    
2394
    return 0;
2395
}
2396

    
2397
static void ehci_register_types(void)
2398
{
2399
    type_register_static(&ehci_info);
2400
    type_register_static(&ich9_ehci_info);
2401
}
2402

    
2403
type_init(ehci_register_types)
2404

    
2405
/*
2406
 * vim: expandtab ts=4
2407
 */