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

30
#include "hw/usb/hcd-ehci.h"
G
Gerd Hoffmann 已提交
31 32

/* Capability Registers Base Address - section 2.2 */
33 34 35 36
#define CAPLENGTH        0x0000  /* 1-byte, 0x0001 reserved */
#define HCIVERSION       0x0002  /* 2-bytes, i/f version # */
#define HCSPARAMS        0x0004  /* 4-bytes, structural params */
#define HCCPARAMS        0x0008  /* 4-bytes, capability params */
G
Gerd Hoffmann 已提交
37
#define EECP             HCCPARAMS + 1
38 39
#define HCSPPORTROUTE1   0x000c
#define HCSPPORTROUTE2   0x0010
G
Gerd Hoffmann 已提交
40

41
#define USBCMD           0x0000
G
Gerd Hoffmann 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54
#define USBCMD_RUNSTOP   (1 << 0)      // run / Stop
#define USBCMD_HCRESET   (1 << 1)      // HC Reset
#define USBCMD_FLS       (3 << 2)      // Frame List Size
#define USBCMD_FLS_SH    2             // Frame List Size Shift
#define USBCMD_PSE       (1 << 4)      // Periodic Schedule Enable
#define USBCMD_ASE       (1 << 5)      // Asynch Schedule Enable
#define USBCMD_IAAD      (1 << 6)      // Int Asynch Advance Doorbell
#define USBCMD_LHCR      (1 << 7)      // Light Host Controller Reset
#define USBCMD_ASPMC     (3 << 8)      // Async Sched Park Mode Count
#define USBCMD_ASPME     (1 << 11)     // Async Sched Park Mode Enable
#define USBCMD_ITC       (0x7f << 16)  // Int Threshold Control
#define USBCMD_ITC_SH    16            // Int Threshold Control Shift

55
#define USBSTS           0x0004
G
Gerd Hoffmann 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
#define USBSTS_RO_MASK   0x0000003f
#define USBSTS_INT       (1 << 0)      // USB Interrupt
#define USBSTS_ERRINT    (1 << 1)      // Error Interrupt
#define USBSTS_PCD       (1 << 2)      // Port Change Detect
#define USBSTS_FLR       (1 << 3)      // Frame List Rollover
#define USBSTS_HSE       (1 << 4)      // Host System Error
#define USBSTS_IAA       (1 << 5)      // Interrupt on Async Advance
#define USBSTS_HALT      (1 << 12)     // HC Halted
#define USBSTS_REC       (1 << 13)     // Reclamation
#define USBSTS_PSS       (1 << 14)     // Periodic Schedule Status
#define USBSTS_ASS       (1 << 15)     // Asynchronous Schedule Status

/*
 *  Interrupt enable bits correspond to the interrupt active bits in USBSTS
 *  so no need to redefine here.
 */
72
#define USBINTR              0x0008
G
Gerd Hoffmann 已提交
73 74
#define USBINTR_MASK         0x0000003f

75 76 77 78
#define FRINDEX              0x000c
#define CTRLDSSEGMENT        0x0010
#define PERIODICLISTBASE     0x0014
#define ASYNCLISTADDR        0x0018
G
Gerd Hoffmann 已提交
79 80
#define ASYNCLISTADDR_MASK   0xffffffe0

81
#define CONFIGFLAG           0x0040
G
Gerd Hoffmann 已提交
82 83

/*
84
 * Bits that are reserved or are read-only are masked out of values
G
Gerd Hoffmann 已提交
85 86
 * written to us by software
 */
87
#define PORTSC_RO_MASK       0x007001c0
G
Gerd Hoffmann 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
#define PORTSC_RWC_MASK      0x0000002a
#define PORTSC_WKOC_E        (1 << 22)    // Wake on Over Current Enable
#define PORTSC_WKDS_E        (1 << 21)    // Wake on Disconnect Enable
#define PORTSC_WKCN_E        (1 << 20)    // Wake on Connect Enable
#define PORTSC_PTC           (15 << 16)   // Port Test Control
#define PORTSC_PTC_SH        16           // Port Test Control shift
#define PORTSC_PIC           (3 << 14)    // Port Indicator Control
#define PORTSC_PIC_SH        14           // Port Indicator Control Shift
#define PORTSC_POWNER        (1 << 13)    // Port Owner
#define PORTSC_PPOWER        (1 << 12)    // Port Power
#define PORTSC_LINESTAT      (3 << 10)    // Port Line Status
#define PORTSC_LINESTAT_SH   10           // Port Line Status Shift
#define PORTSC_PRESET        (1 << 8)     // Port Reset
#define PORTSC_SUSPEND       (1 << 7)     // Port Suspend
#define PORTSC_FPRES         (1 << 6)     // Force Port Resume
#define PORTSC_OCC           (1 << 5)     // Over Current Change
#define PORTSC_OCA           (1 << 4)     // Over Current Active
#define PORTSC_PEDC          (1 << 3)     // Port Enable/Disable Change
#define PORTSC_PED           (1 << 2)     // Port Enable/Disable
#define PORTSC_CSC           (1 << 1)     // Connect Status Change
#define PORTSC_CONNECT       (1 << 0)     // Current Connect Status

#define FRAME_TIMER_FREQ 1000
G
Gerd Hoffmann 已提交
111
#define FRAME_TIMER_NS   (1000000000 / FRAME_TIMER_FREQ)
G
Gerd Hoffmann 已提交
112 113 114 115

#define NB_MAXINTRATE    8        // Max rate at which controller issues ints
#define BUFF_SIZE        5*4096   // Max bytes to transfer per transaction
#define MAX_QH           100      // Max allowable queue heads in a chain
116
#define MIN_FR_PER_TICK  3        // Min frames to process when catching up
117
#define PERIODIC_ACTIVE  64
G
Gerd Hoffmann 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131

/*  Internal periodic / asynchronous schedule state machine states
 */
typedef enum {
    EST_INACTIVE = 1000,
    EST_ACTIVE,
    EST_EXECUTING,
    EST_SLEEPING,
    /*  The following states are internal to the state machine function
    */
    EST_WAITLISTHEAD,
    EST_FETCHENTRY,
    EST_FETCHQH,
    EST_FETCHITD,
G
Gerd Hoffmann 已提交
132
    EST_FETCHSITD,
G
Gerd Hoffmann 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
    EST_ADVANCEQUEUE,
    EST_FETCHQTD,
    EST_EXECUTE,
    EST_WRITEBACK,
    EST_HORIZONTALQH
} EHCI_STATES;

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

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

#define SET_LAST_RUN_CLOCK(s) \
G
Gerd Hoffmann 已提交
152
    (s)->last_run_ns = qemu_get_clock_ns(vm_clock);
G
Gerd Hoffmann 已提交
153 154 155 156 157 158 159 160 161 162 163 164

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

#define set_field(data, newval, field) do { \
    uint32_t val = *data; \
    val &= ~ field##_MASK; \
    val |= ((newval) << field##_SH) & field##_MASK; \
    *data = val; \
    } while(0)

165
static const char *ehci_state_names[] = {
G
Gerd Hoffmann 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178
    [EST_INACTIVE]     = "INACTIVE",
    [EST_ACTIVE]       = "ACTIVE",
    [EST_EXECUTING]    = "EXECUTING",
    [EST_SLEEPING]     = "SLEEPING",
    [EST_WAITLISTHEAD] = "WAITLISTHEAD",
    [EST_FETCHENTRY]   = "FETCH ENTRY",
    [EST_FETCHQH]      = "FETCH QH",
    [EST_FETCHITD]     = "FETCH ITD",
    [EST_ADVANCEQUEUE] = "ADVANCEQUEUE",
    [EST_FETCHQTD]     = "FETCH QTD",
    [EST_EXECUTE]      = "EXECUTE",
    [EST_WRITEBACK]    = "WRITEBACK",
    [EST_HORIZONTALQH] = "HORIZONTALQH",
179 180 181
};

static const char *ehci_mmio_names[] = {
G
Gerd Hoffmann 已提交
182 183 184 185 186 187 188
    [USBCMD]            = "USBCMD",
    [USBSTS]            = "USBSTS",
    [USBINTR]           = "USBINTR",
    [FRINDEX]           = "FRINDEX",
    [PERIODICLISTBASE]  = "P-LIST BASE",
    [ASYNCLISTADDR]     = "A-LIST ADDR",
    [CONFIGFLAG]        = "CONFIGFLAG",
189
};
G
Gerd Hoffmann 已提交
190

191 192
static int ehci_state_executing(EHCIQueue *q);
static int ehci_state_writeback(EHCIQueue *q);
193
static int ehci_state_advqueue(EHCIQueue *q);
194
static int ehci_fill_queue(EHCIPacket *p);
195
static void ehci_free_packet(EHCIPacket *p);
196

197
static const char *nr2str(const char **n, size_t len, uint32_t nr)
G
Gerd Hoffmann 已提交
198
{
199 200
    if (nr < len && n[nr] != NULL) {
        return n[nr];
G
Gerd Hoffmann 已提交
201
    } else {
202
        return "unknown";
G
Gerd Hoffmann 已提交
203 204 205
    }
}

206 207 208 209 210
static const char *state2str(uint32_t state)
{
    return nr2str(ehci_state_names, ARRAY_SIZE(ehci_state_names), state);
}

A
Avi Kivity 已提交
211
static const char *addr2str(hwaddr addr)
212
{
213
    return nr2str(ehci_mmio_names, ARRAY_SIZE(ehci_mmio_names), addr);
214 215
}

G
Gerd Hoffmann 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
static void ehci_trace_usbsts(uint32_t mask, int state)
{
    /* interrupts */
    if (mask & USBSTS_INT) {
        trace_usb_ehci_usbsts("INT", state);
    }
    if (mask & USBSTS_ERRINT) {
        trace_usb_ehci_usbsts("ERRINT", state);
    }
    if (mask & USBSTS_PCD) {
        trace_usb_ehci_usbsts("PCD", state);
    }
    if (mask & USBSTS_FLR) {
        trace_usb_ehci_usbsts("FLR", state);
    }
    if (mask & USBSTS_HSE) {
        trace_usb_ehci_usbsts("HSE", state);
    }
    if (mask & USBSTS_IAA) {
        trace_usb_ehci_usbsts("IAA", state);
    }

    /* status */
    if (mask & USBSTS_HALT) {
        trace_usb_ehci_usbsts("HALT", state);
    }
    if (mask & USBSTS_REC) {
        trace_usb_ehci_usbsts("REC", state);
    }
    if (mask & USBSTS_PSS) {
        trace_usb_ehci_usbsts("PSS", state);
    }
    if (mask & USBSTS_ASS) {
        trace_usb_ehci_usbsts("ASS", state);
    }
}

static inline void ehci_set_usbsts(EHCIState *s, int mask)
{
    if ((s->usbsts & mask) == mask) {
        return;
    }
    ehci_trace_usbsts(mask, 1);
    s->usbsts |= mask;
}

static inline void ehci_clear_usbsts(EHCIState *s, int mask)
{
    if ((s->usbsts & mask) == 0) {
        return;
    }
    ehci_trace_usbsts(mask, 0);
    s->usbsts &= ~mask;
}
G
Gerd Hoffmann 已提交
270

271 272
/* update irq line */
static inline void ehci_update_irq(EHCIState *s)
G
Gerd Hoffmann 已提交
273 274 275 276 277 278 279
{
    int level = 0;

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

280
    trace_usb_ehci_irq(level, s->frindex, s->usbsts, s->usbintr);
G
Gerd Hoffmann 已提交
281 282 283
    qemu_set_irq(s->irq, level);
}

284 285
/* flag interrupt condition */
static inline void ehci_raise_irq(EHCIState *s, int intr)
G
Gerd Hoffmann 已提交
286
{
287 288 289 290 291 292
    if (intr & (USBSTS_PCD | USBSTS_FLR | USBSTS_HSE)) {
        s->usbsts |= intr;
        ehci_update_irq(s);
    } else {
        s->usbsts_pending |= intr;
    }
G
Gerd Hoffmann 已提交
293 294
}

295 296 297 298 299
/*
 * Commit pending interrupts (added via ehci_raise_irq),
 * at the rate allowed by "Interrupt Threshold Control".
 */
static inline void ehci_commit_irq(EHCIState *s)
G
Gerd Hoffmann 已提交
300
{
301 302
    uint32_t itc;

G
Gerd Hoffmann 已提交
303 304 305
    if (!s->usbsts_pending) {
        return;
    }
306 307 308 309 310 311
    if (s->usbsts_frindex > s->frindex) {
        return;
    }

    itc = (s->usbcmd >> 16) & 0xff;
    s->usbsts |= s->usbsts_pending;
G
Gerd Hoffmann 已提交
312
    s->usbsts_pending = 0;
313 314
    s->usbsts_frindex = s->frindex + itc;
    ehci_update_irq(s);
G
Gerd Hoffmann 已提交
315 316
}

G
Gerd Hoffmann 已提交
317 318 319 320 321 322 323 324 325 326 327
static void ehci_update_halt(EHCIState *s)
{
    if (s->usbcmd & USBCMD_RUNSTOP) {
        ehci_clear_usbsts(s, USBSTS_HALT);
    } else {
        if (s->astate == EST_INACTIVE && s->pstate == EST_INACTIVE) {
            ehci_set_usbsts(s, USBSTS_HALT);
        }
    }
}

328 329 330 331 332
static void ehci_set_state(EHCIState *s, int async, int state)
{
    if (async) {
        trace_usb_ehci_state("async", state2str(state));
        s->astate = state;
333 334
        if (s->astate == EST_INACTIVE) {
            ehci_clear_usbsts(s, USBSTS_ASS);
G
Gerd Hoffmann 已提交
335
            ehci_update_halt(s);
336 337 338
        } else {
            ehci_set_usbsts(s, USBSTS_ASS);
        }
339 340 341
    } else {
        trace_usb_ehci_state("periodic", state2str(state));
        s->pstate = state;
342 343
        if (s->pstate == EST_INACTIVE) {
            ehci_clear_usbsts(s, USBSTS_PSS);
G
Gerd Hoffmann 已提交
344
            ehci_update_halt(s);
345 346 347
        } else {
            ehci_set_usbsts(s, USBSTS_PSS);
        }
348 349 350 351 352 353 354 355
    }
}

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

G
Gerd Hoffmann 已提交
356 357 358 359 360 361 362 363 364 365 366 367 368 369
static void ehci_set_fetch_addr(EHCIState *s, int async, uint32_t addr)
{
    if (async) {
        s->a_fetch_addr = addr;
    } else {
        s->p_fetch_addr = addr;
    }
}

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

A
Avi Kivity 已提交
370
static void ehci_trace_qh(EHCIQueue *q, hwaddr addr, EHCIqh *qh)
371
{
372 373 374 375 376 377 378 379 380 381 382 383 384 385
    /* need three here due to argument count limits */
    trace_usb_ehci_qh_ptrs(q, addr, qh->next,
                           qh->current_qtd, qh->next_qtd, qh->altnext_qtd);
    trace_usb_ehci_qh_fields(addr,
                             get_field(qh->epchar, QH_EPCHAR_RL),
                             get_field(qh->epchar, QH_EPCHAR_MPLEN),
                             get_field(qh->epchar, QH_EPCHAR_EPS),
                             get_field(qh->epchar, QH_EPCHAR_EP),
                             get_field(qh->epchar, QH_EPCHAR_DEVADDR));
    trace_usb_ehci_qh_bits(addr,
                           (bool)(qh->epchar & QH_EPCHAR_C),
                           (bool)(qh->epchar & QH_EPCHAR_H),
                           (bool)(qh->epchar & QH_EPCHAR_DTC),
                           (bool)(qh->epchar & QH_EPCHAR_I));
386 387
}

A
Avi Kivity 已提交
388
static void ehci_trace_qtd(EHCIQueue *q, hwaddr addr, EHCIqtd *qtd)
389
{
390 391 392 393 394 395 396 397 398 399 400 401 402
    /* need three here due to argument count limits */
    trace_usb_ehci_qtd_ptrs(q, addr, qtd->next, qtd->altnext);
    trace_usb_ehci_qtd_fields(addr,
                              get_field(qtd->token, QTD_TOKEN_TBYTES),
                              get_field(qtd->token, QTD_TOKEN_CPAGE),
                              get_field(qtd->token, QTD_TOKEN_CERR),
                              get_field(qtd->token, QTD_TOKEN_PID));
    trace_usb_ehci_qtd_bits(addr,
                            (bool)(qtd->token & QTD_TOKEN_IOC),
                            (bool)(qtd->token & QTD_TOKEN_ACTIVE),
                            (bool)(qtd->token & QTD_TOKEN_HALT),
                            (bool)(qtd->token & QTD_TOKEN_BABBLE),
                            (bool)(qtd->token & QTD_TOKEN_XACTERR));
403 404
}

A
Avi Kivity 已提交
405
static void ehci_trace_itd(EHCIState *s, hwaddr addr, EHCIitd *itd)
406
{
G
Gerd Hoffmann 已提交
407 408 409 410 411
    trace_usb_ehci_itd(addr, itd->next,
                       get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT),
                       get_field(itd->bufptr[2], ITD_BUFPTR_MULT),
                       get_field(itd->bufptr[0], ITD_BUFPTR_EP),
                       get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR));
412 413
}

A
Avi Kivity 已提交
414
static void ehci_trace_sitd(EHCIState *s, hwaddr addr,
G
Gerd Hoffmann 已提交
415 416 417 418 419 420
                            EHCIsitd *sitd)
{
    trace_usb_ehci_sitd(addr, sitd->next,
                        (bool)(sitd->results & SITD_RESULTS_ACTIVE));
}

G
Gerd Hoffmann 已提交
421 422 423 424 425 426
static void ehci_trace_guest_bug(EHCIState *s, const char *message)
{
    trace_usb_ehci_guest_bug(message);
    fprintf(stderr, "ehci warning: %s\n", message);
}

427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
static inline bool ehci_enabled(EHCIState *s)
{
    return s->usbcmd & USBCMD_RUNSTOP;
}

static inline bool ehci_async_enabled(EHCIState *s)
{
    return ehci_enabled(s) && (s->usbcmd & USBCMD_ASE);
}

static inline bool ehci_periodic_enabled(EHCIState *s)
{
    return ehci_enabled(s) && (s->usbcmd & USBCMD_PSE);
}

442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
/* Get an array of dwords from main memory */
static inline int get_dwords(EHCIState *ehci, uint32_t addr,
                             uint32_t *buf, int num)
{
    int i;

    if (!ehci->dma) {
        ehci_raise_irq(ehci, USBSTS_HSE);
        ehci->usbcmd &= ~USBCMD_RUNSTOP;
        trace_usb_ehci_dma_error();
        return -1;
    }

    for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
        dma_memory_read(ehci->dma, addr, buf, sizeof(*buf));
        *buf = le32_to_cpu(*buf);
    }

    return num;
}

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

    if (!ehci->dma) {
        ehci_raise_irq(ehci, USBSTS_HSE);
        ehci->usbcmd &= ~USBCMD_RUNSTOP;
        trace_usb_ehci_dma_error();
        return -1;
    }

    for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
        uint32_t tmp = cpu_to_le32(*buf);
        dma_memory_write(ehci->dma, addr, &tmp, sizeof(tmp));
    }

    return num;
}

484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
static bool ehci_verify_qh(EHCIQueue *q, EHCIqh *qh)
{
    uint32_t devaddr = get_field(qh->epchar, QH_EPCHAR_DEVADDR);
    uint32_t endp    = get_field(qh->epchar, QH_EPCHAR_EP);
    if ((devaddr != get_field(q->qh.epchar, QH_EPCHAR_DEVADDR)) ||
        (endp    != get_field(q->qh.epchar, QH_EPCHAR_EP)) ||
        (qh->current_qtd != q->qh.current_qtd) ||
        (q->async && qh->next_qtd != q->qh.next_qtd) ||
        (memcmp(&qh->altnext_qtd, &q->qh.altnext_qtd,
                                 7 * sizeof(uint32_t)) != 0) ||
        (q->dev != NULL && q->dev->addr != devaddr)) {
        return false;
    } else {
        return true;
    }
}

static bool ehci_verify_qtd(EHCIPacket *p, EHCIqtd *qtd)
{
    if (p->qtdaddr != p->queue->qtdaddr ||
        (p->queue->async && !NLPTR_TBIT(p->qtd.next) &&
            (p->qtd.next != qtd->next)) ||
        (!NLPTR_TBIT(p->qtd.altnext) && (p->qtd.altnext != qtd->altnext)) ||
507
        p->qtd.token != qtd->token ||
508 509 510 511 512 513 514
        p->qtd.bufptr[0] != qtd->bufptr[0]) {
        return false;
    } else {
        return true;
    }
}

515 516 517 518 519
/* Finish executing and writeback a packet outside of the regular
   fetchqh -> fetchqtd -> execute -> writeback cycle */
static void ehci_writeback_async_complete_packet(EHCIPacket *p)
{
    EHCIQueue *q = p->queue;
520 521
    EHCIqtd qtd;
    EHCIqh qh;
522 523
    int state;

524 525 526 527 528 529 530 531 532 533 534
    /* Verify the qh + qtd, like we do when going through fetchqh & fetchqtd */
    get_dwords(q->ehci, NLPTR_GET(q->qhaddr),
               (uint32_t *) &qh, sizeof(EHCIqh) >> 2);
    get_dwords(q->ehci, NLPTR_GET(q->qtdaddr),
               (uint32_t *) &qtd, sizeof(EHCIqtd) >> 2);
    if (!ehci_verify_qh(q, &qh) || !ehci_verify_qtd(p, &qtd)) {
        p->async = EHCI_ASYNC_INITIALIZED;
        ehci_free_packet(p);
        return;
    }

535 536 537 538 539 540 541 542 543
    state = ehci_get_state(q->ehci, q->async);
    ehci_state_executing(q);
    ehci_state_writeback(q); /* Frees the packet! */
    if (!(q->qh.token & QTD_TOKEN_HALT)) {
        ehci_state_advqueue(q);
    }
    ehci_set_state(q->ehci, q->async, state);
}

G
Gerd Hoffmann 已提交
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
/* packet management */

static EHCIPacket *ehci_alloc_packet(EHCIQueue *q)
{
    EHCIPacket *p;

    p = g_new0(EHCIPacket, 1);
    p->queue = q;
    usb_packet_init(&p->packet);
    QTAILQ_INSERT_TAIL(&q->packets, p, next);
    trace_usb_ehci_packet_action(p->queue, p, "alloc");
    return p;
}

static void ehci_free_packet(EHCIPacket *p)
{
560
    if (p->async == EHCI_ASYNC_FINISHED) {
561
        ehci_writeback_async_complete_packet(p);
562 563
        return;
    }
564
    trace_usb_ehci_packet_action(p->queue, p, "free");
565 566 567 568
    if (p->async == EHCI_ASYNC_INITIALIZED) {
        usb_packet_unmap(&p->packet, &p->sgl);
        qemu_sglist_destroy(&p->sgl);
    }
569 570 571 572 573
    if (p->async == EHCI_ASYNC_INFLIGHT) {
        usb_cancel_packet(&p->packet);
        usb_packet_unmap(&p->packet, &p->sgl);
        qemu_sglist_destroy(&p->sgl);
    }
G
Gerd Hoffmann 已提交
574 575 576 577 578
    QTAILQ_REMOVE(&p->queue->packets, p, next);
    usb_packet_cleanup(&p->packet);
    g_free(p);
}

G
Gerd Hoffmann 已提交
579 580
/* queue management */

G
Gerd Hoffmann 已提交
581
static EHCIQueue *ehci_alloc_queue(EHCIState *ehci, uint32_t addr, int async)
G
Gerd Hoffmann 已提交
582
{
583
    EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
G
Gerd Hoffmann 已提交
584 585
    EHCIQueue *q;

586
    q = g_malloc0(sizeof(*q));
G
Gerd Hoffmann 已提交
587
    q->ehci = ehci;
G
Gerd Hoffmann 已提交
588
    q->qhaddr = addr;
589
    q->async = async;
G
Gerd Hoffmann 已提交
590
    QTAILQ_INIT(&q->packets);
591
    QTAILQ_INSERT_HEAD(head, q, next);
G
Gerd Hoffmann 已提交
592 593 594 595
    trace_usb_ehci_queue_action(q, "alloc");
    return q;
}

G
Gerd Hoffmann 已提交
596
static int ehci_cancel_queue(EHCIQueue *q)
G
Gerd Hoffmann 已提交
597 598
{
    EHCIPacket *p;
G
Gerd Hoffmann 已提交
599
    int packets = 0;
G
Gerd Hoffmann 已提交
600 601 602

    p = QTAILQ_FIRST(&q->packets);
    if (p == NULL) {
G
Gerd Hoffmann 已提交
603
        return 0;
G
Gerd Hoffmann 已提交
604 605 606 607 608
    }

    trace_usb_ehci_queue_action(q, "cancel");
    do {
        ehci_free_packet(p);
G
Gerd Hoffmann 已提交
609
        packets++;
G
Gerd Hoffmann 已提交
610
    } while ((p = QTAILQ_FIRST(&q->packets)) != NULL);
G
Gerd Hoffmann 已提交
611
    return packets;
G
Gerd Hoffmann 已提交
612 613
}

G
Gerd Hoffmann 已提交
614
static int ehci_reset_queue(EHCIQueue *q)
615
{
G
Gerd Hoffmann 已提交
616 617
    int packets;

618
    trace_usb_ehci_queue_action(q, "reset");
G
Gerd Hoffmann 已提交
619
    packets = ehci_cancel_queue(q);
620 621
    q->dev = NULL;
    q->qtdaddr = 0;
G
Gerd Hoffmann 已提交
622
    return packets;
623 624
}

625
static void ehci_free_queue(EHCIQueue *q, const char *warn)
G
Gerd Hoffmann 已提交
626
{
627
    EHCIQueueHead *head = q->async ? &q->ehci->aqueues : &q->ehci->pqueues;
628
    int cancelled;
G
Gerd Hoffmann 已提交
629

G
Gerd Hoffmann 已提交
630
    trace_usb_ehci_queue_action(q, "free");
631 632 633 634
    cancelled = ehci_cancel_queue(q);
    if (warn && cancelled > 0) {
        ehci_trace_guest_bug(q->ehci, warn);
    }
635
    QTAILQ_REMOVE(head, q, next);
636
    g_free(q);
G
Gerd Hoffmann 已提交
637 638
}

639 640
static EHCIQueue *ehci_find_queue_by_qh(EHCIState *ehci, uint32_t addr,
                                        int async)
G
Gerd Hoffmann 已提交
641
{
642
    EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
G
Gerd Hoffmann 已提交
643 644
    EHCIQueue *q;

645
    QTAILQ_FOREACH(q, head, next) {
G
Gerd Hoffmann 已提交
646 647 648 649 650 651 652
        if (addr == q->qhaddr) {
            return q;
        }
    }
    return NULL;
}

653
static void ehci_queues_rip_unused(EHCIState *ehci, int async)
G
Gerd Hoffmann 已提交
654
{
655
    EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
656
    const char *warn = async ? "guest unlinked busy QH" : NULL;
G
Gerd Hoffmann 已提交
657
    uint64_t maxage = FRAME_TIMER_NS * ehci->maxframes * 4;
G
Gerd Hoffmann 已提交
658 659
    EHCIQueue *q, *tmp;

660
    QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
G
Gerd Hoffmann 已提交
661 662
        if (q->seen) {
            q->seen = 0;
G
Gerd Hoffmann 已提交
663
            q->ts = ehci->last_run_ns;
G
Gerd Hoffmann 已提交
664 665
            continue;
        }
666
        if (ehci->last_run_ns < q->ts + maxage) {
G
Gerd Hoffmann 已提交
667 668
            continue;
        }
669
        ehci_free_queue(q, warn);
G
Gerd Hoffmann 已提交
670 671 672
    }
}

673 674 675 676 677 678 679 680 681 682 683 684
static void ehci_queues_rip_unseen(EHCIState *ehci, int async)
{
    EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
    EHCIQueue *q, *tmp;

    QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
        if (!q->seen) {
            ehci_free_queue(q, NULL);
        }
    }
}

685
static void ehci_queues_rip_device(EHCIState *ehci, USBDevice *dev, int async)
686
{
687
    EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
688 689
    EHCIQueue *q, *tmp;

690
    QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
691
        if (q->dev != dev) {
692 693
            continue;
        }
694
        ehci_free_queue(q, NULL);
695 696 697
    }
}

698
static void ehci_queues_rip_all(EHCIState *ehci, int async)
G
Gerd Hoffmann 已提交
699
{
700
    EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues;
701
    const char *warn = async ? "guest stopped busy async schedule" : NULL;
G
Gerd Hoffmann 已提交
702 703
    EHCIQueue *q, *tmp;

704
    QTAILQ_FOREACH_SAFE(q, head, next, tmp) {
705
        ehci_free_queue(q, warn);
G
Gerd Hoffmann 已提交
706 707 708
    }
}

G
Gerd Hoffmann 已提交
709 710 711 712 713 714
/* Attach or detach a device on root hub */

static void ehci_attach(USBPort *port)
{
    EHCIState *s = port->opaque;
    uint32_t *portsc = &s->portsc[port->index];
G
Gerd Hoffmann 已提交
715
    const char *owner = (*portsc & PORTSC_POWNER) ? "comp" : "ehci";
G
Gerd Hoffmann 已提交
716

G
Gerd Hoffmann 已提交
717
    trace_usb_ehci_port_attach(port->index, owner, port->dev->product_desc);
G
Gerd Hoffmann 已提交
718

719 720 721 722 723 724 725
    if (*portsc & PORTSC_POWNER) {
        USBPort *companion = s->companion_ports[port->index];
        companion->dev = port->dev;
        companion->ops->attach(companion);
        return;
    }

G
Gerd Hoffmann 已提交
726 727 728
    *portsc |= PORTSC_CONNECT;
    *portsc |= PORTSC_CSC;

729 730
    ehci_raise_irq(s, USBSTS_PCD);
    ehci_commit_irq(s);
G
Gerd Hoffmann 已提交
731 732 733 734 735 736
}

static void ehci_detach(USBPort *port)
{
    EHCIState *s = port->opaque;
    uint32_t *portsc = &s->portsc[port->index];
G
Gerd Hoffmann 已提交
737
    const char *owner = (*portsc & PORTSC_POWNER) ? "comp" : "ehci";
G
Gerd Hoffmann 已提交
738

G
Gerd Hoffmann 已提交
739
    trace_usb_ehci_port_detach(port->index, owner);
G
Gerd Hoffmann 已提交
740

741 742 743 744
    if (*portsc & PORTSC_POWNER) {
        USBPort *companion = s->companion_ports[port->index];
        companion->ops->detach(companion);
        companion->dev = NULL;
745 746 747 748 749
        /*
         * EHCI spec 4.2.2: "When a disconnect occurs... On the event,
         * the port ownership is returned immediately to the EHCI controller."
         */
        *portsc &= ~PORTSC_POWNER;
750 751 752
        return;
    }

753 754
    ehci_queues_rip_device(s, port->dev, 0);
    ehci_queues_rip_device(s, port->dev, 1);
755

756
    *portsc &= ~(PORTSC_CONNECT|PORTSC_PED);
G
Gerd Hoffmann 已提交
757 758
    *portsc |= PORTSC_CSC;

759 760
    ehci_raise_irq(s, USBSTS_PCD);
    ehci_commit_irq(s);
G
Gerd Hoffmann 已提交
761 762
}

763 764 765
static void ehci_child_detach(USBPort *port, USBDevice *child)
{
    EHCIState *s = port->opaque;
766 767 768 769 770 771 772
    uint32_t portsc = s->portsc[port->index];

    if (portsc & PORTSC_POWNER) {
        USBPort *companion = s->companion_ports[port->index];
        companion->ops->child_detach(companion, child);
        return;
    }
773

774 775
    ehci_queues_rip_device(s, child, 0);
    ehci_queues_rip_device(s, child, 1);
776 777
}

778 779 780 781 782 783 784 785 786 787
static void ehci_wakeup(USBPort *port)
{
    EHCIState *s = port->opaque;
    uint32_t portsc = s->portsc[port->index];

    if (portsc & PORTSC_POWNER) {
        USBPort *companion = s->companion_ports[port->index];
        if (companion->ops->wakeup) {
            companion->ops->wakeup(companion);
        }
788
        return;
789
    }
790 791

    qemu_bh_schedule(s->async_bh);
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
}

static int ehci_register_companion(USBBus *bus, USBPort *ports[],
                                   uint32_t portcount, uint32_t firstport)
{
    EHCIState *s = container_of(bus, EHCIState, bus);
    uint32_t i;

    if (firstport + portcount > NB_PORTS) {
        qerror_report(QERR_INVALID_PARAMETER_VALUE, "firstport",
                      "firstport on masterbus");
        error_printf_unless_qmp(
            "firstport value of %u makes companion take ports %u - %u, which "
            "is outside of the valid range of 0 - %u\n", firstport, firstport,
            firstport + portcount - 1, NB_PORTS - 1);
        return -1;
    }

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

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

    s->companion_count++;
830
    s->caps[0x05] = (s->companion_count << 4) | portcount;
831 832 833 834

    return 0;
}

835 836 837 838 839 840 841 842 843 844 845 846 847
static void ehci_wakeup_endpoint(USBBus *bus, USBEndpoint *ep)
{
    EHCIState *s = container_of(bus, EHCIState, bus);
    uint32_t portsc = s->portsc[ep->dev->port->index];

    if (portsc & PORTSC_POWNER) {
        return;
    }

    s->periodic_sched_active = PERIODIC_ACTIVE;
    qemu_bh_schedule(s->async_bh);
}

848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
static USBDevice *ehci_find_device(EHCIState *ehci, uint8_t addr)
{
    USBDevice *dev;
    USBPort *port;
    int i;

    for (i = 0; i < NB_PORTS; i++) {
        port = &ehci->ports[i];
        if (!(ehci->portsc[i] & PORTSC_PED)) {
            DPRINTF("Port %d not enabled\n", i);
            continue;
        }
        dev = usb_find_device(port, addr);
        if (dev != NULL) {
            return dev;
        }
    }
    return NULL;
}

G
Gerd Hoffmann 已提交
868 869 870 871 872
/* 4.1 host controller initialization */
static void ehci_reset(void *opaque)
{
    EHCIState *s = opaque;
    int i;
873
    USBDevice *devs[NB_PORTS];
G
Gerd Hoffmann 已提交
874

G
Gerd Hoffmann 已提交
875
    trace_usb_ehci_reset();
G
Gerd Hoffmann 已提交
876

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

888 889
    memset(&s->opreg, 0x00, sizeof(s->opreg));
    memset(&s->portsc, 0x00, sizeof(s->portsc));
G
Gerd Hoffmann 已提交
890 891 892

    s->usbcmd = NB_MAXINTRATE << USBCMD_ITC_SH;
    s->usbsts = USBSTS_HALT;
893 894
    s->usbsts_pending = 0;
    s->usbsts_frindex = 0;
G
Gerd Hoffmann 已提交
895 896 897 898 899

    s->astate = EST_INACTIVE;
    s->pstate = EST_INACTIVE;

    for(i = 0; i < NB_PORTS; i++) {
900 901 902 903 904
        if (s->companion_ports[i]) {
            s->portsc[i] = PORTSC_POWNER | PORTSC_PPOWER;
        } else {
            s->portsc[i] = PORTSC_PPOWER;
        }
905 906
        if (devs[i] && devs[i]->attached) {
            usb_attach(&s->ports[i]);
G
Gerd Hoffmann 已提交
907
            usb_device_reset(devs[i]);
G
Gerd Hoffmann 已提交
908 909
        }
    }
910 911
    ehci_queues_rip_all(s, 0);
    ehci_queues_rip_all(s, 1);
G
Gerd Hoffmann 已提交
912
    qemu_del_timer(s->frame_timer);
913
    qemu_bh_cancel(s->async_bh);
G
Gerd Hoffmann 已提交
914 915
}

A
Avi Kivity 已提交
916
static uint64_t ehci_caps_read(void *ptr, hwaddr addr,
917
                               unsigned size)
G
Gerd Hoffmann 已提交
918 919
{
    EHCIState *s = ptr;
920
    return s->caps[addr];
G
Gerd Hoffmann 已提交
921 922
}

A
Avi Kivity 已提交
923
static uint64_t ehci_opreg_read(void *ptr, hwaddr addr,
924
                                unsigned size)
G
Gerd Hoffmann 已提交
925 926 927 928
{
    EHCIState *s = ptr;
    uint32_t val;

929
    val = s->opreg[addr >> 2];
930
    trace_usb_ehci_opreg_read(addr + s->opregbase, addr2str(addr), val);
G
Gerd Hoffmann 已提交
931 932 933
    return val;
}

A
Avi Kivity 已提交
934
static uint64_t ehci_port_read(void *ptr, hwaddr addr,
935
                               unsigned size)
G
Gerd Hoffmann 已提交
936 937 938 939
{
    EHCIState *s = ptr;
    uint32_t val;

940 941
    val = s->portsc[addr >> 2];
    trace_usb_ehci_portsc_read(addr + PORTSC_BEGIN, addr >> 2, val);
G
Gerd Hoffmann 已提交
942 943 944
    return val;
}

945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
static void handle_port_owner_write(EHCIState *s, int port, uint32_t owner)
{
    USBDevice *dev = s->ports[port].dev;
    uint32_t *portsc = &s->portsc[port];
    uint32_t orig;

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

    owner = owner & PORTSC_POWNER;
    orig  = *portsc & PORTSC_POWNER;

    if (!(owner ^ orig)) {
        return;
    }

961 962
    if (dev && dev->attached) {
        usb_detach(&s->ports[port]);
963 964 965 966 967
    }

    *portsc &= ~PORTSC_POWNER;
    *portsc |= owner;

968 969
    if (dev && dev->attached) {
        usb_attach(&s->ports[port]);
970 971 972
    }
}

A
Avi Kivity 已提交
973
static void ehci_port_write(void *ptr, hwaddr addr,
974
                            uint64_t val, unsigned size)
G
Gerd Hoffmann 已提交
975
{
976 977
    EHCIState *s = ptr;
    int port = addr >> 2;
G
Gerd Hoffmann 已提交
978
    uint32_t *portsc = &s->portsc[port];
979
    uint32_t old = *portsc;
G
Gerd Hoffmann 已提交
980 981
    USBDevice *dev = s->ports[port].dev;

982 983
    trace_usb_ehci_portsc_write(addr + PORTSC_BEGIN, addr >> 2, val);

984 985 986 987
    /* Clear rwc bits */
    *portsc &= ~(val & PORTSC_RWC_MASK);
    /* The guest may clear, but not set the PED bit */
    *portsc &= val | ~PORTSC_PED;
988 989 990
    /* POWNER is masked out by RO_MASK as it is RO when we've no companion */
    handle_port_owner_write(s, port, val);
    /* And finally apply RO_MASK */
G
Gerd Hoffmann 已提交
991 992 993
    val &= PORTSC_RO_MASK;

    if ((val & PORTSC_PRESET) && !(*portsc & PORTSC_PRESET)) {
G
Gerd Hoffmann 已提交
994
        trace_usb_ehci_port_reset(port, 1);
G
Gerd Hoffmann 已提交
995 996 997
    }

    if (!(val & PORTSC_PRESET) &&(*portsc & PORTSC_PRESET)) {
G
Gerd Hoffmann 已提交
998
        trace_usb_ehci_port_reset(port, 0);
999
        if (dev && dev->attached) {
G
Gerd Hoffmann 已提交
1000
            usb_port_reset(&s->ports[port]);
G
Gerd Hoffmann 已提交
1001 1002 1003
            *portsc &= ~PORTSC_CSC;
        }

1004 1005
        /*
         *  Table 2.16 Set the enable bit(and enable bit change) to indicate
G
Gerd Hoffmann 已提交
1006 1007
         *  to SW that this port has a high speed device attached
         */
1008
        if (dev && dev->attached && (dev->speedmask & USB_SPEED_MASK_HIGH)) {
1009 1010
            val |= PORTSC_PED;
        }
G
Gerd Hoffmann 已提交
1011 1012 1013 1014
    }

    *portsc &= ~PORTSC_RO_MASK;
    *portsc |= val;
1015
    trace_usb_ehci_portsc_change(addr + PORTSC_BEGIN, addr >> 2, *portsc, old);
G
Gerd Hoffmann 已提交
1016 1017
}

A
Avi Kivity 已提交
1018
static void ehci_opreg_write(void *ptr, hwaddr addr,
1019
                             uint64_t val, unsigned size)
G
Gerd Hoffmann 已提交
1020 1021
{
    EHCIState *s = ptr;
1022
    uint32_t *mmio = s->opreg + (addr >> 2);
G
Gerd Hoffmann 已提交
1023
    uint32_t old = *mmio;
G
Gerd Hoffmann 已提交
1024
    int i;
G
Gerd Hoffmann 已提交
1025

1026
    trace_usb_ehci_opreg_write(addr + s->opregbase, addr2str(addr), val);
G
Gerd Hoffmann 已提交
1027

1028
    switch (addr) {
G
Gerd Hoffmann 已提交
1029
    case USBCMD:
G
Gerd Hoffmann 已提交
1030 1031 1032 1033 1034 1035
        if (val & USBCMD_HCRESET) {
            ehci_reset(s);
            val = s->usbcmd;
            break;
        }

1036 1037 1038
        /* not supporting dynamic frame list size at the moment */
        if ((val & USBCMD_FLS) && !(s->usbcmd & USBCMD_FLS)) {
            fprintf(stderr, "attempt to set frame list size -- value %d\n",
1039
                    (int)val & USBCMD_FLS);
1040 1041 1042
            val &= ~USBCMD_FLS;
        }

1043 1044 1045 1046 1047 1048 1049
        if (val & USBCMD_IAAD) {
            /*
             * Process IAAD immediately, otherwise the Linux IAAD watchdog may
             * trigger and re-use a qh without us seeing the unlink.
             */
            s->async_stepdown = 0;
            qemu_bh_schedule(s->async_bh);
G
Gerd Hoffmann 已提交
1050
            trace_usb_ehci_doorbell_ring();
1051 1052
        }

G
Gerd Hoffmann 已提交
1053 1054
        if (((USBCMD_RUNSTOP | USBCMD_PSE | USBCMD_ASE) & val) !=
            ((USBCMD_RUNSTOP | USBCMD_PSE | USBCMD_ASE) & s->usbcmd)) {
G
Gerd Hoffmann 已提交
1055
            if (s->pstate == EST_INACTIVE) {
G
Gerd Hoffmann 已提交
1056 1057
                SET_LAST_RUN_CLOCK(s);
            }
1058
            s->usbcmd = val; /* Set usbcmd for ehci_update_halt() */
G
Gerd Hoffmann 已提交
1059
            ehci_update_halt(s);
G
Gerd Hoffmann 已提交
1060
            s->async_stepdown = 0;
1061
            qemu_bh_schedule(s->async_bh);
G
Gerd Hoffmann 已提交
1062 1063 1064 1065
        }
        break;

    case USBSTS:
J
Jim Meyering 已提交
1066 1067
        val &= USBSTS_RO_MASK;              // bits 6 through 31 are RO
        ehci_clear_usbsts(s, val);          // bits 0 through 5 are R/WC
G
Gerd Hoffmann 已提交
1068
        val = s->usbsts;
1069
        ehci_update_irq(s);
G
Gerd Hoffmann 已提交
1070 1071 1072 1073
        break;

    case USBINTR:
        val &= USBINTR_MASK;
1074 1075 1076
        if (ehci_enabled(s) && (USBSTS_FLR & val)) {
            qemu_bh_schedule(s->async_bh);
        }
G
Gerd Hoffmann 已提交
1077 1078
        break;

1079 1080 1081 1082
    case FRINDEX:
        val &= 0x00003ff8; /* frindex is 14bits and always a multiple of 8 */
        break;

G
Gerd Hoffmann 已提交
1083 1084 1085 1086
    case CONFIGFLAG:
        val &= 0x1;
        if (val) {
            for(i = 0; i < NB_PORTS; i++)
1087
                handle_port_owner_write(s, i, 0);
G
Gerd Hoffmann 已提交
1088 1089 1090 1091
        }
        break;

    case PERIODICLISTBASE:
1092
        if (ehci_periodic_enabled(s)) {
G
Gerd Hoffmann 已提交
1093 1094 1095 1096 1097 1098 1099
            fprintf(stderr,
              "ehci: PERIODIC list base register set while periodic schedule\n"
              "      is enabled and HC is enabled\n");
        }
        break;

    case ASYNCLISTADDR:
1100
        if (ehci_async_enabled(s)) {
G
Gerd Hoffmann 已提交
1101 1102 1103 1104 1105 1106 1107
            fprintf(stderr,
              "ehci: ASYNC list address register set while async schedule\n"
              "      is enabled and HC is enabled\n");
        }
        break;
    }

G
Gerd Hoffmann 已提交
1108
    *mmio = val;
1109 1110
    trace_usb_ehci_opreg_change(addr + s->opregbase, addr2str(addr),
                                *mmio, old);
G
Gerd Hoffmann 已提交
1111 1112
}

G
Gerd Hoffmann 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
/*
 *  Write the qh back to guest physical memory.  This step isn't
 *  in the EHCI spec but we need to do it since we don't share
 *  physical memory with our guest VM.
 *
 *  The first three dwords are read-only for the EHCI, so skip them
 *  when writing back the qh.
 */
static void ehci_flush_qh(EHCIQueue *q)
{
    uint32_t *qh = (uint32_t *) &q->qh;
    uint32_t dwords = sizeof(EHCIqh) >> 2;
    uint32_t addr = NLPTR_GET(q->qhaddr);

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

G
Gerd Hoffmann 已提交
1130 1131
// 4.10.2

G
Gerd Hoffmann 已提交
1132
static int ehci_qh_do_overlay(EHCIQueue *q)
G
Gerd Hoffmann 已提交
1133
{
G
Gerd Hoffmann 已提交
1134
    EHCIPacket *p = QTAILQ_FIRST(&q->packets);
G
Gerd Hoffmann 已提交
1135 1136 1137 1138 1139 1140
    int i;
    int dtoggle;
    int ping;
    int eps;
    int reload;

G
Gerd Hoffmann 已提交
1141 1142 1143
    assert(p != NULL);
    assert(p->qtdaddr == q->qtdaddr);

G
Gerd Hoffmann 已提交
1144 1145
    // remember values in fields to preserve in qh after overlay

G
Gerd Hoffmann 已提交
1146 1147
    dtoggle = q->qh.token & QTD_TOKEN_DTOGGLE;
    ping    = q->qh.token & QTD_TOKEN_PING;
G
Gerd Hoffmann 已提交
1148

G
Gerd Hoffmann 已提交
1149 1150 1151 1152
    q->qh.current_qtd = p->qtdaddr;
    q->qh.next_qtd    = p->qtd.next;
    q->qh.altnext_qtd = p->qtd.altnext;
    q->qh.token       = p->qtd.token;
G
Gerd Hoffmann 已提交
1153 1154


G
Gerd Hoffmann 已提交
1155
    eps = get_field(q->qh.epchar, QH_EPCHAR_EPS);
G
Gerd Hoffmann 已提交
1156
    if (eps == EHCI_QH_EPS_HIGH) {
G
Gerd Hoffmann 已提交
1157 1158
        q->qh.token &= ~QTD_TOKEN_PING;
        q->qh.token |= ping;
G
Gerd Hoffmann 已提交
1159 1160
    }

G
Gerd Hoffmann 已提交
1161 1162
    reload = get_field(q->qh.epchar, QH_EPCHAR_RL);
    set_field(&q->qh.altnext_qtd, reload, QH_ALTNEXT_NAKCNT);
G
Gerd Hoffmann 已提交
1163 1164

    for (i = 0; i < 5; i++) {
G
Gerd Hoffmann 已提交
1165
        q->qh.bufptr[i] = p->qtd.bufptr[i];
G
Gerd Hoffmann 已提交
1166 1167
    }

G
Gerd Hoffmann 已提交
1168
    if (!(q->qh.epchar & QH_EPCHAR_DTC)) {
G
Gerd Hoffmann 已提交
1169
        // preserve QH DT bit
G
Gerd Hoffmann 已提交
1170 1171
        q->qh.token &= ~QTD_TOKEN_DTOGGLE;
        q->qh.token |= dtoggle;
G
Gerd Hoffmann 已提交
1172 1173
    }

G
Gerd Hoffmann 已提交
1174 1175
    q->qh.bufptr[1] &= ~BUFPTR_CPROGMASK_MASK;
    q->qh.bufptr[2] &= ~BUFPTR_FRAMETAG_MASK;
G
Gerd Hoffmann 已提交
1176

G
Gerd Hoffmann 已提交
1177
    ehci_flush_qh(q);
G
Gerd Hoffmann 已提交
1178 1179 1180 1181

    return 0;
}

G
Gerd Hoffmann 已提交
1182
static int ehci_init_transfer(EHCIPacket *p)
G
Gerd Hoffmann 已提交
1183
{
1184
    uint32_t cpage, offset, bytes, plen;
1185
    dma_addr_t page;
G
Gerd Hoffmann 已提交
1186

G
Gerd Hoffmann 已提交
1187 1188 1189
    cpage  = get_field(p->qtd.token, QTD_TOKEN_CPAGE);
    bytes  = get_field(p->qtd.token, QTD_TOKEN_TBYTES);
    offset = p->qtd.bufptr[0] & ~QTD_BUFPTR_MASK;
1190
    qemu_sglist_init(&p->sgl, 5, p->queue->ehci->dma);
G
Gerd Hoffmann 已提交
1191

1192 1193 1194
    while (bytes > 0) {
        if (cpage > 4) {
            fprintf(stderr, "cpage out of range (%d)\n", cpage);
1195
            return -1;
1196
        }
G
Gerd Hoffmann 已提交
1197

G
Gerd Hoffmann 已提交
1198
        page  = p->qtd.bufptr[cpage] & QTD_BUFPTR_MASK;
1199 1200 1201 1202 1203 1204
        page += offset;
        plen  = bytes;
        if (plen > 4096 - offset) {
            plen = 4096 - offset;
            offset = 0;
            cpage++;
G
Gerd Hoffmann 已提交
1205 1206
        }

G
Gerd Hoffmann 已提交
1207
        qemu_sglist_add(&p->sgl, page, plen);
1208 1209 1210 1211
        bytes -= plen;
    }
    return 0;
}
G
Gerd Hoffmann 已提交
1212

1213
static void ehci_finish_transfer(EHCIQueue *q, int len)
1214 1215
{
    uint32_t cpage, offset;
G
Gerd Hoffmann 已提交
1216

1217
    if (len > 0) {
1218 1219 1220
        /* update cpage & offset */
        cpage  = get_field(q->qh.token, QTD_TOKEN_CPAGE);
        offset = q->qh.bufptr[0] & ~QTD_BUFPTR_MASK;
G
Gerd Hoffmann 已提交
1221

1222
        offset += len;
1223 1224
        cpage  += offset >> QTD_BUFPTR_SH;
        offset &= ~QTD_BUFPTR_MASK;
G
Gerd Hoffmann 已提交
1225

1226 1227 1228 1229
        set_field(&q->qh.token, cpage, QTD_TOKEN_CPAGE);
        q->qh.bufptr[0] &= QTD_BUFPTR_MASK;
        q->qh.bufptr[0] |= offset;
    }
G
Gerd Hoffmann 已提交
1230 1231
}

1232
static void ehci_async_complete_packet(USBPort *port, USBPacket *packet)
G
Gerd Hoffmann 已提交
1233
{
G
Gerd Hoffmann 已提交
1234
    EHCIPacket *p;
1235 1236 1237 1238 1239 1240 1241 1242
    EHCIState *s = port->opaque;
    uint32_t portsc = s->portsc[port->index];

    if (portsc & PORTSC_POWNER) {
        USBPort *companion = s->companion_ports[port->index];
        companion->ops->complete(companion, packet);
        return;
    }
G
Gerd Hoffmann 已提交
1243

G
Gerd Hoffmann 已提交
1244 1245
    p = container_of(packet, EHCIPacket, packet);
    assert(p->async == EHCI_ASYNC_INFLIGHT);
1246

1247
    if (packet->status == USB_RET_REMOVE_FROM_QUEUE) {
1248 1249 1250 1251 1252 1253
        trace_usb_ehci_packet_action(p->queue, p, "remove");
        ehci_free_packet(p);
        return;
    }

    trace_usb_ehci_packet_action(p->queue, p, "wakeup");
G
Gerd Hoffmann 已提交
1254
    p->async = EHCI_ASYNC_FINISHED;
1255

1256 1257
    if (!p->queue->async) {
        s->periodic_sched_active = PERIODIC_ACTIVE;
1258
    }
1259
    qemu_bh_schedule(s->async_bh);
G
Gerd Hoffmann 已提交
1260 1261
}

G
Gerd Hoffmann 已提交
1262
static void ehci_execute_complete(EHCIQueue *q)
G
Gerd Hoffmann 已提交
1263
{
G
Gerd Hoffmann 已提交
1264
    EHCIPacket *p = QTAILQ_FIRST(&q->packets);
1265
    uint32_t tbytes;
G
Gerd Hoffmann 已提交
1266 1267 1268

    assert(p != NULL);
    assert(p->qtdaddr == q->qtdaddr);
1269 1270
    assert(p->async == EHCI_ASYNC_INITIALIZED ||
           p->async == EHCI_ASYNC_FINISHED);
G
Gerd Hoffmann 已提交
1271

1272 1273 1274 1275
    DPRINTF("execute_complete: qhaddr 0x%x, next 0x%x, qtdaddr 0x%x, "
            "status %d, actual_length %d\n",
            q->qhaddr, q->qh.next, q->qtdaddr,
            p->packet.status, p->packet.actual_length);
G
Gerd Hoffmann 已提交
1276

1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
    switch (p->packet.status) {
    case USB_RET_SUCCESS:
        break;
    case USB_RET_IOERROR:
    case USB_RET_NODEV:
        q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR);
        set_field(&q->qh.token, 0, QTD_TOKEN_CERR);
        ehci_raise_irq(q->ehci, USBSTS_ERRINT);
        break;
    case USB_RET_STALL:
        q->qh.token |= QTD_TOKEN_HALT;
        ehci_raise_irq(q->ehci, USBSTS_ERRINT);
        break;
    case USB_RET_NAK:
        set_field(&q->qh.altnext_qtd, 0, QH_ALTNEXT_NAKCNT);
        return; /* We're not done yet with this transaction */
    case USB_RET_BABBLE:
        q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE);
        ehci_raise_irq(q->ehci, USBSTS_ERRINT);
        break;
    default:
        /* should not be triggerable */
        fprintf(stderr, "USB invalid response %d\n", p->packet.status);
        assert(0);
        break;
    }

    /* TODO check 4.12 for splits */
    tbytes = get_field(q->qh.token, QTD_TOKEN_TBYTES);
    if (tbytes && p->pid == USB_TOKEN_IN) {
        tbytes -= p->packet.actual_length;
        if (tbytes) {
            /* 4.15.1.2 must raise int on a short input packet */
            ehci_raise_irq(q->ehci, USBSTS_INT);
G
Gerd Hoffmann 已提交
1311 1312
        }
    } else {
1313
        tbytes = 0;
G
Gerd Hoffmann 已提交
1314
    }
1315 1316 1317 1318
    DPRINTF("updating tbytes to %d\n", tbytes);
    set_field(&q->qh.token, tbytes, QTD_TOKEN_TBYTES);

    ehci_finish_transfer(q, p->packet.actual_length);
1319
    usb_packet_unmap(&p->packet, &p->sgl);
G
Gerd Hoffmann 已提交
1320
    qemu_sglist_destroy(&p->sgl);
1321
    p->async = EHCI_ASYNC_NONE;
G
Gerd Hoffmann 已提交
1322

G
Gerd Hoffmann 已提交
1323 1324
    q->qh.token ^= QTD_TOKEN_DTOGGLE;
    q->qh.token &= ~QTD_TOKEN_ACTIVE;
G
Gerd Hoffmann 已提交
1325

1326
    if (q->qh.token & QTD_TOKEN_IOC) {
1327
        ehci_raise_irq(q->ehci, USBSTS_INT);
1328 1329 1330
        if (q->async) {
            q->ehci->int_req_by_async = true;
        }
G
Gerd Hoffmann 已提交
1331 1332 1333
    }
}

1334
/* 4.10.3 returns "again" */
G
Gerd Hoffmann 已提交
1335
static int ehci_execute(EHCIPacket *p, const char *action)
G
Gerd Hoffmann 已提交
1336
{
1337
    USBEndpoint *ep;
G
Gerd Hoffmann 已提交
1338
    int endp;
1339
    bool spd;
G
Gerd Hoffmann 已提交
1340

1341 1342 1343
    assert(p->async == EHCI_ASYNC_NONE ||
           p->async == EHCI_ASYNC_INITIALIZED);

1344 1345
    if (!(p->qtd.token & QTD_TOKEN_ACTIVE)) {
        fprintf(stderr, "Attempting to execute inactive qtd\n");
1346
        return -1;
G
Gerd Hoffmann 已提交
1347 1348
    }

1349
    if (get_field(p->qtd.token, QTD_TOKEN_TBYTES) > BUFF_SIZE) {
1350 1351
        ehci_trace_guest_bug(p->queue->ehci,
                             "guest requested more bytes than allowed");
1352
        return -1;
G
Gerd Hoffmann 已提交
1353 1354
    }

1355
    p->pid = (p->qtd.token & QTD_TOKEN_PID_MASK) >> QTD_TOKEN_PID_SH;
G
Gerd Hoffmann 已提交
1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
    switch (p->pid) {
    case 0:
        p->pid = USB_TOKEN_OUT;
        break;
    case 1:
        p->pid = USB_TOKEN_IN;
        break;
    case 2:
        p->pid = USB_TOKEN_SETUP;
        break;
    default:
        fprintf(stderr, "bad token\n");
        break;
G
Gerd Hoffmann 已提交
1369 1370
    }

1371
    endp = get_field(p->queue->qh.epchar, QH_EPCHAR_EP);
1372
    ep = usb_ep_get(p->queue->dev, p->pid, endp);
G
Gerd Hoffmann 已提交
1373

1374 1375
    if (p->async == EHCI_ASYNC_NONE) {
        if (ehci_init_transfer(p) != 0) {
1376
            return -1;
1377 1378
        }

1379
        spd = (p->pid == USB_TOKEN_IN && NLPTR_TBIT(p->qtd.altnext) == 0);
1380 1381
        usb_packet_setup(&p->packet, p->pid, ep, p->qtdaddr, spd,
                         (p->qtd.token & QTD_TOKEN_IOC) != 0);
1382 1383 1384
        usb_packet_map(&p->packet, &p->sgl);
        p->async = EHCI_ASYNC_INITIALIZED;
    }
1385

G
Gerd Hoffmann 已提交
1386
    trace_usb_ehci_packet_action(p->queue, p, action);
1387 1388 1389 1390 1391
    usb_handle_packet(p->queue->dev, &p->packet);
    DPRINTF("submit: qh 0x%x next 0x%x qtd 0x%x pid 0x%x len %zd endp 0x%x "
            "status %d actual_length %d\n", p->queue->qhaddr, p->qtd.next,
            p->qtdaddr, p->pid, p->packet.iov.size, endp, p->packet.status,
            p->packet.actual_length);
G
Gerd Hoffmann 已提交
1392

1393
    if (p->packet.actual_length > BUFF_SIZE) {
G
Gerd Hoffmann 已提交
1394
        fprintf(stderr, "ret from usb_handle_packet > BUFF_SIZE\n");
1395
        return -1;
G
Gerd Hoffmann 已提交
1396 1397
    }

1398
    return 1;
G
Gerd Hoffmann 已提交
1399 1400 1401 1402 1403 1404
}

/*  4.7.2
 */

static int ehci_process_itd(EHCIState *ehci,
G
Gerd Hoffmann 已提交
1405 1406
                            EHCIitd *itd,
                            uint32_t addr)
G
Gerd Hoffmann 已提交
1407 1408
{
    USBDevice *dev;
1409
    USBEndpoint *ep;
1410
    uint32_t i, len, pid, dir, devaddr, endp;
G
Gerd Hoffmann 已提交
1411
    uint32_t pg, off, ptr1, ptr2, max, mult;
G
Gerd Hoffmann 已提交
1412

1413 1414
    ehci->periodic_sched_active = PERIODIC_ACTIVE;

G
Gerd Hoffmann 已提交
1415
    dir =(itd->bufptr[1] & ITD_BUFPTR_DIRECTION);
G
Gerd Hoffmann 已提交
1416
    devaddr = get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR);
G
Gerd Hoffmann 已提交
1417
    endp = get_field(itd->bufptr[0], ITD_BUFPTR_EP);
G
Gerd Hoffmann 已提交
1418 1419
    max = get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT);
    mult = get_field(itd->bufptr[2], ITD_BUFPTR_MULT);
G
Gerd Hoffmann 已提交
1420 1421 1422

    for(i = 0; i < 8; i++) {
        if (itd->transact[i] & ITD_XACT_ACTIVE) {
G
Gerd Hoffmann 已提交
1423 1424 1425 1426 1427 1428 1429 1430 1431
            pg   = get_field(itd->transact[i], ITD_XACT_PGSEL);
            off  = itd->transact[i] & ITD_XACT_OFFSET_MASK;
            ptr1 = (itd->bufptr[pg] & ITD_BUFPTR_MASK);
            ptr2 = (itd->bufptr[pg+1] & ITD_BUFPTR_MASK);
            len  = get_field(itd->transact[i], ITD_XACT_LENGTH);

            if (len > max * mult) {
                len = max * mult;
            }
G
Gerd Hoffmann 已提交
1432 1433

            if (len > BUFF_SIZE) {
1434
                return -1;
G
Gerd Hoffmann 已提交
1435 1436
            }

1437
            qemu_sglist_init(&ehci->isgl, 2, ehci->dma);
G
Gerd Hoffmann 已提交
1438 1439
            if (off + len > 4096) {
                /* transfer crosses page border */
1440 1441 1442 1443
                uint32_t len2 = off + len - 4096;
                uint32_t len1 = len - len2;
                qemu_sglist_add(&ehci->isgl, ptr1 + off, len1);
                qemu_sglist_add(&ehci->isgl, ptr2, len2);
G
Gerd Hoffmann 已提交
1444
            } else {
1445
                qemu_sglist_add(&ehci->isgl, ptr1 + off, len);
G
Gerd Hoffmann 已提交
1446
            }
G
Gerd Hoffmann 已提交
1447

1448
            pid = dir ? USB_TOKEN_IN : USB_TOKEN_OUT;
G
Gerd Hoffmann 已提交
1449

1450 1451
            dev = ehci_find_device(ehci, devaddr);
            ep = usb_ep_get(dev, pid, endp);
1452
            if (ep && ep->type == USB_ENDPOINT_XFER_ISOC) {
1453 1454
                usb_packet_setup(&ehci->ipacket, pid, ep, addr, false,
                                 (itd->transact[i] & ITD_XACT_IOC) != 0);
G
Gerd Hoffmann 已提交
1455
                usb_packet_map(&ehci->ipacket, &ehci->isgl);
1456
                usb_handle_packet(dev, &ehci->ipacket);
1457
                usb_packet_unmap(&ehci->ipacket, &ehci->isgl);
G
Gerd Hoffmann 已提交
1458 1459
            } else {
                DPRINTF("ISOCH: attempt to addess non-iso endpoint\n");
1460 1461
                ehci->ipacket.status = USB_RET_NAK;
                ehci->ipacket.actual_length = 0;
G
Gerd Hoffmann 已提交
1462
            }
1463 1464
            qemu_sglist_destroy(&ehci->isgl);

1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
            switch (ehci->ipacket.status) {
            case USB_RET_SUCCESS:
                break;
            default:
                fprintf(stderr, "Unexpected iso usb result: %d\n",
                        ehci->ipacket.status);
                /* Fall through */
            case USB_RET_IOERROR:
            case USB_RET_NODEV:
                /* 3.3.2: XACTERR is only allowed on IN transactions */
                if (dir) {
                    itd->transact[i] |= ITD_XACT_XACTERR;
1477
                    ehci_raise_irq(ehci, USBSTS_ERRINT);
1478
                }
1479 1480 1481 1482 1483 1484 1485 1486 1487
                break;
            case USB_RET_BABBLE:
                itd->transact[i] |= ITD_XACT_BABBLE;
                ehci_raise_irq(ehci, USBSTS_ERRINT);
                break;
            case USB_RET_NAK:
                /* no data for us, so do a zero-length transfer */
                ehci->ipacket.actual_length = 0;
                break;
1488
            }
1489 1490 1491 1492 1493 1494
            if (!dir) {
                set_field(&itd->transact[i], len - ehci->ipacket.actual_length,
                          ITD_XACT_LENGTH); /* OUT */
            } else {
                set_field(&itd->transact[i], ehci->ipacket.actual_length,
                          ITD_XACT_LENGTH); /* IN */
G
Gerd Hoffmann 已提交
1495
            }
1496
            if (itd->transact[i] & ITD_XACT_IOC) {
1497
                ehci_raise_irq(ehci, USBSTS_INT);
1498
            }
G
Gerd Hoffmann 已提交
1499
            itd->transact[i] &= ~ITD_XACT_ACTIVE;
G
Gerd Hoffmann 已提交
1500 1501 1502 1503 1504
        }
    }
    return 0;
}

G
Gerd Hoffmann 已提交
1505

G
Gerd Hoffmann 已提交
1506 1507 1508
/*  This state is the entry point for asynchronous schedule
 *  processing.  Entry here consitutes a EHCI start event state (4.8.5)
 */
1509
static int ehci_state_waitlisthead(EHCIState *ehci,  int async)
G
Gerd Hoffmann 已提交
1510
{
G
Gerd Hoffmann 已提交
1511
    EHCIqh qh;
G
Gerd Hoffmann 已提交
1512 1513 1514 1515 1516 1517
    int i = 0;
    int again = 0;
    uint32_t entry = ehci->asynclistaddr;

    /* set reclamation flag at start event (4.8.6) */
    if (async) {
G
Gerd Hoffmann 已提交
1518
        ehci_set_usbsts(ehci, USBSTS_REC);
G
Gerd Hoffmann 已提交
1519 1520
    }

1521
    ehci_queues_rip_unused(ehci, async);
G
Gerd Hoffmann 已提交
1522

G
Gerd Hoffmann 已提交
1523 1524
    /*  Find the head of the list (4.9.1.1) */
    for(i = 0; i < MAX_QH; i++) {
G
Gerd Hoffmann 已提交
1525 1526 1527 1528
        if (get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &qh,
                       sizeof(EHCIqh) >> 2) < 0) {
            return 0;
        }
G
Gerd Hoffmann 已提交
1529
        ehci_trace_qh(NULL, NLPTR_GET(entry), &qh);
G
Gerd Hoffmann 已提交
1530

G
Gerd Hoffmann 已提交
1531
        if (qh.epchar & QH_EPCHAR_H) {
G
Gerd Hoffmann 已提交
1532 1533 1534 1535
            if (async) {
                entry |= (NLPTR_TYPE_QH << 1);
            }

G
Gerd Hoffmann 已提交
1536
            ehci_set_fetch_addr(ehci, async, entry);
1537
            ehci_set_state(ehci, async, EST_FETCHENTRY);
G
Gerd Hoffmann 已提交
1538 1539 1540 1541
            again = 1;
            goto out;
        }

G
Gerd Hoffmann 已提交
1542
        entry = qh.next;
G
Gerd Hoffmann 已提交
1543 1544 1545 1546 1547 1548 1549
        if (entry == ehci->asynclistaddr) {
            break;
        }
    }

    /* no head found for list. */

1550
    ehci_set_state(ehci, async, EST_ACTIVE);
G
Gerd Hoffmann 已提交
1551 1552 1553 1554 1555 1556 1557 1558 1559

out:
    return again;
}


/*  This state is the entry point for periodic schedule processing as
 *  well as being a continuation state for async processing.
 */
1560
static int ehci_state_fetchentry(EHCIState *ehci, int async)
G
Gerd Hoffmann 已提交
1561 1562
{
    int again = 0;
G
Gerd Hoffmann 已提交
1563
    uint32_t entry = ehci_get_fetch_addr(ehci, async);
G
Gerd Hoffmann 已提交
1564

1565
    if (NLPTR_TBIT(entry)) {
1566
        ehci_set_state(ehci, async, EST_ACTIVE);
G
Gerd Hoffmann 已提交
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
        goto out;
    }

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

    switch (NLPTR_TYPE_GET(entry)) {
    case NLPTR_TYPE_QH:
1578
        ehci_set_state(ehci, async, EST_FETCHQH);
G
Gerd Hoffmann 已提交
1579 1580 1581 1582
        again = 1;
        break;

    case NLPTR_TYPE_ITD:
1583
        ehci_set_state(ehci, async, EST_FETCHITD);
G
Gerd Hoffmann 已提交
1584 1585 1586
        again = 1;
        break;

G
Gerd Hoffmann 已提交
1587 1588 1589 1590 1591
    case NLPTR_TYPE_STITD:
        ehci_set_state(ehci, async, EST_FETCHSITD);
        again = 1;
        break;

G
Gerd Hoffmann 已提交
1592
    default:
G
Gerd Hoffmann 已提交
1593
        /* TODO: handle FSTN type */
G
Gerd Hoffmann 已提交
1594 1595 1596 1597 1598 1599 1600 1601 1602
        fprintf(stderr, "FETCHENTRY: entry at %X is of type %d "
                "which is not supported yet\n", entry, NLPTR_TYPE_GET(entry));
        return -1;
    }

out:
    return again;
}

G
Gerd Hoffmann 已提交
1603
static EHCIQueue *ehci_state_fetchqh(EHCIState *ehci, int async)
G
Gerd Hoffmann 已提交
1604
{
1605
    uint32_t entry;
G
Gerd Hoffmann 已提交
1606
    EHCIPacket *p;
G
Gerd Hoffmann 已提交
1607
    EHCIQueue *q;
1608
    EHCIqh qh;
G
Gerd Hoffmann 已提交
1609

G
Gerd Hoffmann 已提交
1610
    entry = ehci_get_fetch_addr(ehci, async);
1611
    q = ehci_find_queue_by_qh(ehci, entry, async);
G
Gerd Hoffmann 已提交
1612
    if (NULL == q) {
G
Gerd Hoffmann 已提交
1613
        q = ehci_alloc_queue(ehci, entry, async);
G
Gerd Hoffmann 已提交
1614
    }
G
Gerd Hoffmann 已提交
1615
    p = QTAILQ_FIRST(&q->packets);
G
Gerd Hoffmann 已提交
1616

G
Gerd Hoffmann 已提交
1617
    q->seen++;
G
Gerd Hoffmann 已提交
1618 1619 1620 1621 1622 1623
    if (q->seen > 1) {
        /* we are going in circles -- stop processing */
        ehci_set_state(ehci, async, EST_ACTIVE);
        q = NULL;
        goto out;
    }
G
Gerd Hoffmann 已提交
1624

G
Gerd Hoffmann 已提交
1625 1626 1627 1628 1629
    if (get_dwords(ehci, NLPTR_GET(q->qhaddr),
                   (uint32_t *) &qh, sizeof(EHCIqh) >> 2) < 0) {
        q = NULL;
        goto out;
    }
1630 1631 1632 1633 1634 1635
    ehci_trace_qh(q, NLPTR_GET(q->qhaddr), &qh);

    /*
     * The overlay area of the qh should never be changed by the guest,
     * except when idle, in which case the reset is a nop.
     */
1636
    if (!ehci_verify_qh(q, &qh)) {
G
Gerd Hoffmann 已提交
1637 1638 1639
        if (ehci_reset_queue(q) > 0) {
            ehci_trace_guest_bug(ehci, "guest updated active QH");
        }
1640 1641 1642 1643
        p = NULL;
    }
    q->qh = qh;

1644 1645 1646 1647 1648
    q->transact_ctr = get_field(q->qh.epcap, QH_EPCAP_MULT);
    if (q->transact_ctr == 0) { /* Guest bug in some versions of windows */
        q->transact_ctr = 4;
    }

1649
    if (q->dev == NULL) {
1650 1651
        q->dev = ehci_find_device(q->ehci,
                                  get_field(q->qh.epchar, QH_EPCHAR_DEVADDR));
1652 1653
    }

G
Gerd Hoffmann 已提交
1654
    if (p && p->async == EHCI_ASYNC_FINISHED) {
G
Gerd Hoffmann 已提交
1655
        /* I/O finished -- continue processing queue */
G
Gerd Hoffmann 已提交
1656
        trace_usb_ehci_packet_action(p->queue, p, "complete");
G
Gerd Hoffmann 已提交
1657 1658 1659
        ehci_set_state(ehci, async, EST_EXECUTING);
        goto out;
    }
G
Gerd Hoffmann 已提交
1660 1661

    if (async && (q->qh.epchar & QH_EPCHAR_H)) {
G
Gerd Hoffmann 已提交
1662 1663 1664

        /*  EHCI spec version 1.0 Section 4.8.3 & 4.10.1 */
        if (ehci->usbsts & USBSTS_REC) {
G
Gerd Hoffmann 已提交
1665
            ehci_clear_usbsts(ehci, USBSTS_REC);
G
Gerd Hoffmann 已提交
1666 1667
        } else {
            DPRINTF("FETCHQH:  QH 0x%08x. H-bit set, reclamation status reset"
G
Gerd Hoffmann 已提交
1668
                       " - done processing\n", q->qhaddr);
1669
            ehci_set_state(ehci, async, EST_ACTIVE);
G
Gerd Hoffmann 已提交
1670
            q = NULL;
G
Gerd Hoffmann 已提交
1671 1672 1673 1674 1675
            goto out;
        }
    }

#if EHCI_DEBUG
G
Gerd Hoffmann 已提交
1676
    if (q->qhaddr != q->qh.next) {
G
Gerd Hoffmann 已提交
1677
    DPRINTF("FETCHQH:  QH 0x%08x (h %x halt %x active %x) next 0x%08x\n",
G
Gerd Hoffmann 已提交
1678 1679 1680 1681 1682
               q->qhaddr,
               q->qh.epchar & QH_EPCHAR_H,
               q->qh.token & QTD_TOKEN_HALT,
               q->qh.token & QTD_TOKEN_ACTIVE,
               q->qh.next);
G
Gerd Hoffmann 已提交
1683 1684 1685
    }
#endif

G
Gerd Hoffmann 已提交
1686
    if (q->qh.token & QTD_TOKEN_HALT) {
1687
        ehci_set_state(ehci, async, EST_HORIZONTALQH);
G
Gerd Hoffmann 已提交
1688

1689 1690
    } else if ((q->qh.token & QTD_TOKEN_ACTIVE) &&
               (NLPTR_TBIT(q->qh.current_qtd) == 0)) {
G
Gerd Hoffmann 已提交
1691
        q->qtdaddr = q->qh.current_qtd;
1692
        ehci_set_state(ehci, async, EST_FETCHQTD);
G
Gerd Hoffmann 已提交
1693 1694 1695

    } else {
        /*  EHCI spec version 1.0 Section 4.10.2 */
1696
        ehci_set_state(ehci, async, EST_ADVANCEQUEUE);
G
Gerd Hoffmann 已提交
1697 1698 1699
    }

out:
G
Gerd Hoffmann 已提交
1700
    return q;
G
Gerd Hoffmann 已提交
1701 1702
}

1703
static int ehci_state_fetchitd(EHCIState *ehci, int async)
G
Gerd Hoffmann 已提交
1704
{
G
Gerd Hoffmann 已提交
1705
    uint32_t entry;
G
Gerd Hoffmann 已提交
1706 1707
    EHCIitd itd;

G
Gerd Hoffmann 已提交
1708 1709 1710
    assert(!async);
    entry = ehci_get_fetch_addr(ehci, async);

G
Gerd Hoffmann 已提交
1711 1712 1713 1714
    if (get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd,
                   sizeof(EHCIitd) >> 2) < 0) {
        return -1;
    }
G
Gerd Hoffmann 已提交
1715
    ehci_trace_itd(ehci, entry, &itd);
G
Gerd Hoffmann 已提交
1716

G
Gerd Hoffmann 已提交
1717
    if (ehci_process_itd(ehci, &itd, entry) != 0) {
G
Gerd Hoffmann 已提交
1718 1719 1720
        return -1;
    }

1721 1722
    put_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd,
               sizeof(EHCIitd) >> 2);
G
Gerd Hoffmann 已提交
1723
    ehci_set_fetch_addr(ehci, async, itd.next);
1724
    ehci_set_state(ehci, async, EST_FETCHENTRY);
G
Gerd Hoffmann 已提交
1725 1726 1727 1728

    return 1;
}

G
Gerd Hoffmann 已提交
1729 1730 1731 1732 1733 1734 1735 1736
static int ehci_state_fetchsitd(EHCIState *ehci, int async)
{
    uint32_t entry;
    EHCIsitd sitd;

    assert(!async);
    entry = ehci_get_fetch_addr(ehci, async);

G
Gerd Hoffmann 已提交
1737 1738 1739 1740
    if (get_dwords(ehci, NLPTR_GET(entry), (uint32_t *)&sitd,
                   sizeof(EHCIsitd) >> 2) < 0) {
        return 0;
    }
G
Gerd Hoffmann 已提交
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
    ehci_trace_sitd(ehci, entry, &sitd);

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

    ehci_set_fetch_addr(ehci, async, sitd.next);
    ehci_set_state(ehci, async, EST_FETCHENTRY);
    return 1;
}

G
Gerd Hoffmann 已提交
1755
/* Section 4.10.2 - paragraph 3 */
1756
static int ehci_state_advqueue(EHCIQueue *q)
G
Gerd Hoffmann 已提交
1757 1758 1759 1760 1761 1762 1763
{
#if 0
    /* TO-DO: 4.10.2 - paragraph 2
     * if I-bit is set to 1 and QH is not active
     * go to horizontal QH
     */
    if (I-bit set) {
1764
        ehci_set_state(ehci, async, EST_HORIZONTALQH);
G
Gerd Hoffmann 已提交
1765 1766 1767 1768 1769 1770 1771
        goto out;
    }
#endif

    /*
     * want data and alt-next qTD is valid
     */
G
Gerd Hoffmann 已提交
1772 1773 1774
    if (((q->qh.token & QTD_TOKEN_TBYTES_MASK) != 0) &&
        (NLPTR_TBIT(q->qh.altnext_qtd) == 0)) {
        q->qtdaddr = q->qh.altnext_qtd;
1775
        ehci_set_state(q->ehci, q->async, EST_FETCHQTD);
G
Gerd Hoffmann 已提交
1776 1777 1778 1779

    /*
     *  next qTD is valid
     */
1780
    } else if (NLPTR_TBIT(q->qh.next_qtd) == 0) {
G
Gerd Hoffmann 已提交
1781
        q->qtdaddr = q->qh.next_qtd;
1782
        ehci_set_state(q->ehci, q->async, EST_FETCHQTD);
G
Gerd Hoffmann 已提交
1783 1784 1785 1786 1787

    /*
     *  no valid qTD, try next QH
     */
    } else {
1788
        ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
G
Gerd Hoffmann 已提交
1789 1790 1791 1792 1793 1794
    }

    return 1;
}

/* Section 4.10.2 - paragraph 4 */
1795
static int ehci_state_fetchqtd(EHCIQueue *q)
G
Gerd Hoffmann 已提交
1796
{
G
Gerd Hoffmann 已提交
1797 1798
    EHCIqtd qtd;
    EHCIPacket *p;
1799
    int again = 1;
G
Gerd Hoffmann 已提交
1800

G
Gerd Hoffmann 已提交
1801 1802 1803 1804
    if (get_dwords(q->ehci, NLPTR_GET(q->qtdaddr), (uint32_t *) &qtd,
                   sizeof(EHCIqtd) >> 2) < 0) {
        return 0;
    }
G
Gerd Hoffmann 已提交
1805
    ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), &qtd);
G
Gerd Hoffmann 已提交
1806

G
Gerd Hoffmann 已提交
1807 1808
    p = QTAILQ_FIRST(&q->packets);
    if (p != NULL) {
1809
        if (!ehci_verify_qtd(p, &qtd)) {
1810
            ehci_cancel_queue(q);
1811 1812 1813
            if (qtd.token & QTD_TOKEN_ACTIVE) {
                ehci_trace_guest_bug(q->ehci, "guest updated active qTD");
            }
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823
            p = NULL;
        } else {
            p->qtd = qtd;
            ehci_qh_do_overlay(q);
        }
    }

    if (!(qtd.token & QTD_TOKEN_ACTIVE)) {
        ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
    } else if (p != NULL) {
1824 1825
        switch (p->async) {
        case EHCI_ASYNC_NONE:
1826
        case EHCI_ASYNC_INITIALIZED:
1827
            /* Not yet executed (MULT), or previously nacked (int) packet */
1828 1829
            ehci_set_state(q->ehci, q->async, EST_EXECUTE);
            break;
1830
        case EHCI_ASYNC_INFLIGHT:
1831
            /* Check if the guest has added new tds to the queue */
1832
            again = ehci_fill_queue(QTAILQ_LAST(&q->packets, pkts_head));
1833
            /* Unfinished async handled packet, go horizontal */
1834
            ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
1835 1836
            break;
        case EHCI_ASYNC_FINISHED:
1837 1838 1839 1840
            /*
             * We get here when advqueue moves to a packet which is already
             * finished, which can happen with packets queued up by fill_queue
             */
1841
            ehci_set_state(q->ehci, q->async, EST_EXECUTING);
1842
            break;
G
Gerd Hoffmann 已提交
1843
        }
1844
    } else {
G
Gerd Hoffmann 已提交
1845 1846 1847
        p = ehci_alloc_packet(q);
        p->qtdaddr = q->qtdaddr;
        p->qtd = qtd;
1848
        ehci_set_state(q->ehci, q->async, EST_EXECUTE);
G
Gerd Hoffmann 已提交
1849 1850 1851 1852 1853
    }

    return again;
}

1854
static int ehci_state_horizqh(EHCIQueue *q)
G
Gerd Hoffmann 已提交
1855 1856 1857
{
    int again = 0;

1858 1859 1860
    if (ehci_get_fetch_addr(q->ehci, q->async) != q->qh.next) {
        ehci_set_fetch_addr(q->ehci, q->async, q->qh.next);
        ehci_set_state(q->ehci, q->async, EST_FETCHENTRY);
G
Gerd Hoffmann 已提交
1861 1862
        again = 1;
    } else {
1863
        ehci_set_state(q->ehci, q->async, EST_ACTIVE);
G
Gerd Hoffmann 已提交
1864 1865 1866 1867 1868
    }

    return again;
}

1869
/* Returns "again" */
1870
static int ehci_fill_queue(EHCIPacket *p)
G
Gerd Hoffmann 已提交
1871
{
1872
    USBEndpoint *ep = p->packet.ep;
G
Gerd Hoffmann 已提交
1873 1874
    EHCIQueue *q = p->queue;
    EHCIqtd qtd = p->qtd;
1875
    uint32_t qtdaddr;
G
Gerd Hoffmann 已提交
1876 1877 1878 1879 1880 1881

    for (;;) {
        if (NLPTR_TBIT(qtd.next) != 0) {
            break;
        }
        qtdaddr = qtd.next;
1882 1883 1884 1885
        /*
         * Detect circular td lists, Windows creates these, counting on the
         * active bit going low after execution to make the queue stop.
         */
1886 1887 1888 1889
        QTAILQ_FOREACH(p, &q->packets, next) {
            if (p->qtdaddr == qtdaddr) {
                goto leave;
            }
1890
        }
G
Gerd Hoffmann 已提交
1891 1892 1893 1894
        if (get_dwords(q->ehci, NLPTR_GET(qtdaddr),
                       (uint32_t *) &qtd, sizeof(EHCIqtd) >> 2) < 0) {
            return -1;
        }
G
Gerd Hoffmann 已提交
1895 1896 1897 1898 1899 1900 1901
        ehci_trace_qtd(q, NLPTR_GET(qtdaddr), &qtd);
        if (!(qtd.token & QTD_TOKEN_ACTIVE)) {
            break;
        }
        p = ehci_alloc_packet(q);
        p->qtdaddr = qtdaddr;
        p->qtd = qtd;
1902 1903
        if (ehci_execute(p, "queue") == -1) {
            return -1;
1904
        }
1905
        assert(p->packet.status == USB_RET_ASYNC);
G
Gerd Hoffmann 已提交
1906 1907
        p->async = EHCI_ASYNC_INFLIGHT;
    }
1908
leave:
1909 1910
    usb_device_flush_ep_queue(ep->dev, ep);
    return 1;
G
Gerd Hoffmann 已提交
1911 1912
}

1913
static int ehci_state_execute(EHCIQueue *q)
G
Gerd Hoffmann 已提交
1914
{
G
Gerd Hoffmann 已提交
1915
    EHCIPacket *p = QTAILQ_FIRST(&q->packets);
G
Gerd Hoffmann 已提交
1916 1917
    int again = 0;

G
Gerd Hoffmann 已提交
1918 1919 1920
    assert(p != NULL);
    assert(p->qtdaddr == q->qtdaddr);

G
Gerd Hoffmann 已提交
1921
    if (ehci_qh_do_overlay(q) != 0) {
G
Gerd Hoffmann 已提交
1922 1923 1924 1925 1926 1927
        return -1;
    }

    // TODO verify enough time remains in the uframe as in 4.4.1.1
    // TODO write back ptr to async list when done or out of time

1928 1929 1930 1931 1932
    /* 4.10.3, bottom of page 82, go horizontal on transaction counter == 0 */
    if (!q->async && q->transact_ctr == 0) {
        ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
        again = 1;
        goto out;
G
Gerd Hoffmann 已提交
1933 1934
    }

1935
    if (q->async) {
G
Gerd Hoffmann 已提交
1936
        ehci_set_usbsts(q->ehci, USBSTS_REC);
G
Gerd Hoffmann 已提交
1937 1938
    }

1939 1940
    again = ehci_execute(p, "process");
    if (again == -1) {
G
Gerd Hoffmann 已提交
1941 1942
        goto out;
    }
1943
    if (p->packet.status == USB_RET_ASYNC) {
G
Gerd Hoffmann 已提交
1944
        ehci_flush_qh(q);
G
Gerd Hoffmann 已提交
1945
        trace_usb_ehci_packet_action(p->queue, p, "async");
G
Gerd Hoffmann 已提交
1946
        p->async = EHCI_ASYNC_INFLIGHT;
1947
        ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
1948
        if (q->async) {
1949
            again = ehci_fill_queue(p);
1950 1951 1952
        } else {
            again = 1;
        }
G
Gerd Hoffmann 已提交
1953
        goto out;
G
Gerd Hoffmann 已提交
1954 1955
    }

1956
    ehci_set_state(q->ehci, q->async, EST_EXECUTING);
G
Gerd Hoffmann 已提交
1957 1958
    again = 1;

G
Gerd Hoffmann 已提交
1959 1960 1961 1962
out:
    return again;
}

1963
static int ehci_state_executing(EHCIQueue *q)
G
Gerd Hoffmann 已提交
1964
{
G
Gerd Hoffmann 已提交
1965
    EHCIPacket *p = QTAILQ_FIRST(&q->packets);
G
Gerd Hoffmann 已提交
1966

G
Gerd Hoffmann 已提交
1967 1968 1969
    assert(p != NULL);
    assert(p->qtdaddr == q->qtdaddr);

G
Gerd Hoffmann 已提交
1970
    ehci_execute_complete(q);
G
Gerd Hoffmann 已提交
1971

1972 1973 1974
    /* 4.10.3 */
    if (!q->async && q->transact_ctr > 0) {
        q->transact_ctr--;
G
Gerd Hoffmann 已提交
1975 1976 1977
    }

    /* 4.10.5 */
1978
    if (p->packet.status == USB_RET_NAK) {
1979
        ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
G
Gerd Hoffmann 已提交
1980
    } else {
1981
        ehci_set_state(q->ehci, q->async, EST_WRITEBACK);
G
Gerd Hoffmann 已提交
1982 1983
    }

G
Gerd Hoffmann 已提交
1984
    ehci_flush_qh(q);
1985
    return 1;
G
Gerd Hoffmann 已提交
1986 1987 1988
}


1989
static int ehci_state_writeback(EHCIQueue *q)
G
Gerd Hoffmann 已提交
1990
{
G
Gerd Hoffmann 已提交
1991
    EHCIPacket *p = QTAILQ_FIRST(&q->packets);
G
Gerd Hoffmann 已提交
1992
    uint32_t *qtd, addr;
G
Gerd Hoffmann 已提交
1993 1994 1995
    int again = 0;

    /*  Write back the QTD from the QH area */
G
Gerd Hoffmann 已提交
1996 1997 1998 1999
    assert(p != NULL);
    assert(p->qtdaddr == q->qtdaddr);

    ehci_trace_qtd(q, NLPTR_GET(p->qtdaddr), (EHCIqtd *) &q->qh.next_qtd);
G
Gerd Hoffmann 已提交
2000 2001 2002
    qtd = (uint32_t *) &q->qh.next_qtd;
    addr = NLPTR_GET(p->qtdaddr);
    put_dwords(q->ehci, addr + 2 * sizeof(uint32_t), qtd + 2, 2);
G
Gerd Hoffmann 已提交
2003
    ehci_free_packet(p);
G
Gerd Hoffmann 已提交
2004

G
Gerd Hoffmann 已提交
2005 2006 2007 2008 2009 2010 2011
    /*
     * EHCI specs say go horizontal here.
     *
     * We can also advance the queue here for performance reasons.  We
     * need to take care to only take that shortcut in case we've
     * processed the qtd just written back without errors, i.e. halt
     * bit is clear.
G
Gerd Hoffmann 已提交
2012
     */
G
Gerd Hoffmann 已提交
2013
    if (q->qh.token & QTD_TOKEN_HALT) {
2014
        ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH);
G
Gerd Hoffmann 已提交
2015 2016
        again = 1;
    } else {
2017
        ehci_set_state(q->ehci, q->async, EST_ADVANCEQUEUE);
G
Gerd Hoffmann 已提交
2018
        again = 1;
G
Gerd Hoffmann 已提交
2019
    }
G
Gerd Hoffmann 已提交
2020 2021 2022 2023 2024 2025 2026
    return again;
}

/*
 * This is the state machine that is common to both async and periodic
 */

2027
static void ehci_advance_state(EHCIState *ehci, int async)
G
Gerd Hoffmann 已提交
2028
{
G
Gerd Hoffmann 已提交
2029
    EHCIQueue *q = NULL;
G
Gerd Hoffmann 已提交
2030 2031 2032
    int again;

    do {
2033
        switch(ehci_get_state(ehci, async)) {
G
Gerd Hoffmann 已提交
2034
        case EST_WAITLISTHEAD:
2035
            again = ehci_state_waitlisthead(ehci, async);
G
Gerd Hoffmann 已提交
2036 2037 2038
            break;

        case EST_FETCHENTRY:
2039
            again = ehci_state_fetchentry(ehci, async);
G
Gerd Hoffmann 已提交
2040 2041 2042
            break;

        case EST_FETCHQH:
G
Gerd Hoffmann 已提交
2043
            q = ehci_state_fetchqh(ehci, async);
2044 2045 2046 2047 2048 2049
            if (q != NULL) {
                assert(q->async == async);
                again = 1;
            } else {
                again = 0;
            }
G
Gerd Hoffmann 已提交
2050 2051 2052
            break;

        case EST_FETCHITD:
2053
            again = ehci_state_fetchitd(ehci, async);
G
Gerd Hoffmann 已提交
2054 2055
            break;

G
Gerd Hoffmann 已提交
2056 2057 2058 2059
        case EST_FETCHSITD:
            again = ehci_state_fetchsitd(ehci, async);
            break;

G
Gerd Hoffmann 已提交
2060
        case EST_ADVANCEQUEUE:
2061
            again = ehci_state_advqueue(q);
G
Gerd Hoffmann 已提交
2062 2063 2064
            break;

        case EST_FETCHQTD:
2065
            again = ehci_state_fetchqtd(q);
G
Gerd Hoffmann 已提交
2066 2067 2068
            break;

        case EST_HORIZONTALQH:
2069
            again = ehci_state_horizqh(q);
G
Gerd Hoffmann 已提交
2070 2071 2072
            break;

        case EST_EXECUTE:
2073
            again = ehci_state_execute(q);
G
Gerd Hoffmann 已提交
2074 2075 2076
            if (async) {
                ehci->async_stepdown = 0;
            }
G
Gerd Hoffmann 已提交
2077 2078 2079
            break;

        case EST_EXECUTING:
G
Gerd Hoffmann 已提交
2080
            assert(q != NULL);
G
Gerd Hoffmann 已提交
2081 2082 2083
            if (async) {
                ehci->async_stepdown = 0;
            }
2084
            again = ehci_state_executing(q);
G
Gerd Hoffmann 已提交
2085 2086 2087
            break;

        case EST_WRITEBACK:
G
Gerd Hoffmann 已提交
2088
            assert(q != NULL);
2089
            again = ehci_state_writeback(q);
2090 2091 2092
            if (!async) {
                ehci->periodic_sched_active = PERIODIC_ACTIVE;
            }
G
Gerd Hoffmann 已提交
2093 2094 2095 2096 2097
            break;

        default:
            fprintf(stderr, "Bad state!\n");
            again = -1;
G
Gerd Hoffmann 已提交
2098
            assert(0);
G
Gerd Hoffmann 已提交
2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
            break;
        }

        if (again < 0) {
            fprintf(stderr, "processing error - resetting ehci HC\n");
            ehci_reset(ehci);
            again = 0;
        }
    }
    while (again);
}

static void ehci_advance_async_state(EHCIState *ehci)
{
2113
    const int async = 1;
G
Gerd Hoffmann 已提交
2114

2115
    switch(ehci_get_state(ehci, async)) {
G
Gerd Hoffmann 已提交
2116
    case EST_INACTIVE:
2117
        if (!ehci_async_enabled(ehci)) {
G
Gerd Hoffmann 已提交
2118 2119
            break;
        }
2120
        ehci_set_state(ehci, async, EST_ACTIVE);
G
Gerd Hoffmann 已提交
2121 2122 2123
        // No break, fall through to ACTIVE

    case EST_ACTIVE:
2124
        if (!ehci_async_enabled(ehci)) {
2125
            ehci_queues_rip_all(ehci, async);
2126
            ehci_set_state(ehci, async, EST_INACTIVE);
G
Gerd Hoffmann 已提交
2127 2128 2129
            break;
        }

2130
        /* make sure guest has acknowledged the doorbell interrupt */
G
Gerd Hoffmann 已提交
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141
        /* TO-DO: is this really needed? */
        if (ehci->usbsts & USBSTS_IAA) {
            DPRINTF("IAA status bit still set.\n");
            break;
        }

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

2142 2143
        ehci_set_state(ehci, async, EST_WAITLISTHEAD);
        ehci_advance_state(ehci, async);
2144 2145 2146 2147 2148 2149 2150

        /* If the doorbell is set, the guest wants to make a change to the
         * schedule. The host controller needs to release cached data.
         * (section 4.8.2)
         */
        if (ehci->usbcmd & USBCMD_IAAD) {
            /* Remove all unseen qhs from the async qhs queue */
2151
            ehci_queues_rip_unseen(ehci, async);
G
Gerd Hoffmann 已提交
2152
            trace_usb_ehci_doorbell_ack();
2153
            ehci->usbcmd &= ~USBCMD_IAAD;
2154
            ehci_raise_irq(ehci, USBSTS_IAA);
2155
        }
G
Gerd Hoffmann 已提交
2156 2157 2158 2159 2160 2161
        break;

    default:
        /* this should only be due to a developer mistake */
        fprintf(stderr, "ehci: Bad asynchronous state %d. "
                "Resetting to active\n", ehci->astate);
G
Gerd Hoffmann 已提交
2162
        assert(0);
G
Gerd Hoffmann 已提交
2163 2164 2165 2166 2167 2168 2169
    }
}

static void ehci_advance_periodic_state(EHCIState *ehci)
{
    uint32_t entry;
    uint32_t list;
2170
    const int async = 0;
G
Gerd Hoffmann 已提交
2171 2172 2173

    // 4.6

2174
    switch(ehci_get_state(ehci, async)) {
G
Gerd Hoffmann 已提交
2175
    case EST_INACTIVE:
2176
        if (!(ehci->frindex & 7) && ehci_periodic_enabled(ehci)) {
2177
            ehci_set_state(ehci, async, EST_ACTIVE);
G
Gerd Hoffmann 已提交
2178 2179 2180 2181 2182
            // No break, fall through to ACTIVE
        } else
            break;

    case EST_ACTIVE:
2183
        if (!(ehci->frindex & 7) && !ehci_periodic_enabled(ehci)) {
2184
            ehci_queues_rip_all(ehci, async);
2185
            ehci_set_state(ehci, async, EST_INACTIVE);
G
Gerd Hoffmann 已提交
2186 2187 2188 2189 2190 2191 2192 2193 2194 2195
            break;
        }

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

G
Gerd Hoffmann 已提交
2196 2197 2198
        if (get_dwords(ehci, list, &entry, 1) < 0) {
            break;
        }
G
Gerd Hoffmann 已提交
2199 2200 2201

        DPRINTF("PERIODIC state adv fr=%d.  [%08X] -> %08X\n",
                ehci->frindex / 8, list, entry);
G
Gerd Hoffmann 已提交
2202
        ehci_set_fetch_addr(ehci, async,entry);
2203 2204
        ehci_set_state(ehci, async, EST_FETCHENTRY);
        ehci_advance_state(ehci, async);
2205
        ehci_queues_rip_unused(ehci, async);
G
Gerd Hoffmann 已提交
2206 2207 2208 2209 2210 2211
        break;

    default:
        /* this should only be due to a developer mistake */
        fprintf(stderr, "ehci: Bad periodic state %d. "
                "Resetting to active\n", ehci->pstate);
G
Gerd Hoffmann 已提交
2212
        assert(0);
G
Gerd Hoffmann 已提交
2213 2214 2215
    }
}

G
Gerd Hoffmann 已提交
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
static void ehci_update_frindex(EHCIState *ehci, int frames)
{
    int i;

    if (!ehci_enabled(ehci)) {
        return;
    }

    for (i = 0; i < frames; i++) {
        ehci->frindex += 8;

        if (ehci->frindex == 0x00002000) {
2228
            ehci_raise_irq(ehci, USBSTS_FLR);
G
Gerd Hoffmann 已提交
2229 2230 2231
        }

        if (ehci->frindex == 0x00004000) {
2232
            ehci_raise_irq(ehci, USBSTS_FLR);
G
Gerd Hoffmann 已提交
2233
            ehci->frindex = 0;
2234
            if (ehci->usbsts_frindex >= 0x00004000) {
2235 2236 2237 2238
                ehci->usbsts_frindex -= 0x00004000;
            } else {
                ehci->usbsts_frindex = 0;
            }
G
Gerd Hoffmann 已提交
2239 2240 2241 2242
        }
    }
}

G
Gerd Hoffmann 已提交
2243 2244 2245
static void ehci_frame_timer(void *opaque)
{
    EHCIState *ehci = opaque;
2246
    int need_timer = 0;
G
Gerd Hoffmann 已提交
2247
    int64_t expire_time, t_now;
G
Gerd Hoffmann 已提交
2248
    uint64_t ns_elapsed;
G
Gerd Hoffmann 已提交
2249
    int frames, skipped_frames;
G
Gerd Hoffmann 已提交
2250 2251 2252
    int i;

    t_now = qemu_get_clock_ns(vm_clock);
G
Gerd Hoffmann 已提交
2253 2254
    ns_elapsed = t_now - ehci->last_run_ns;
    frames = ns_elapsed / FRAME_TIMER_NS;
G
Gerd Hoffmann 已提交
2255

G
Gerd Hoffmann 已提交
2256
    if (ehci_periodic_enabled(ehci) || ehci->pstate != EST_INACTIVE) {
2257
        need_timer++;
G
Gerd Hoffmann 已提交
2258

G
Gerd Hoffmann 已提交
2259 2260 2261 2262 2263 2264 2265 2266
        if (frames > ehci->maxframes) {
            skipped_frames = frames - ehci->maxframes;
            ehci_update_frindex(ehci, skipped_frames);
            ehci->last_run_ns += FRAME_TIMER_NS * skipped_frames;
            frames -= skipped_frames;
            DPRINTF("WARNING - EHCI skipped %d frames\n", skipped_frames);
        }

G
Gerd Hoffmann 已提交
2267
        for (i = 0; i < frames; i++) {
2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280
            /*
             * If we're running behind schedule, we should not catch up
             * too fast, as that will make some guests unhappy:
             * 1) We must process a minimum of MIN_FR_PER_TICK frames,
             *    otherwise we will never catch up
             * 2) Process frames until the guest has requested an irq (IOC)
             */
            if (i >= MIN_FR_PER_TICK) {
                ehci_commit_irq(ehci);
                if ((ehci->usbsts & USBINTR_MASK) & ehci->usbintr) {
                    break;
                }
            }
2281 2282 2283
            if (ehci->periodic_sched_active) {
                ehci->periodic_sched_active--;
            }
G
Gerd Hoffmann 已提交
2284
            ehci_update_frindex(ehci, 1);
G
Gerd Hoffmann 已提交
2285
            ehci_advance_periodic_state(ehci);
G
Gerd Hoffmann 已提交
2286 2287 2288
            ehci->last_run_ns += FRAME_TIMER_NS;
        }
    } else {
2289
        ehci->periodic_sched_active = 0;
G
Gerd Hoffmann 已提交
2290 2291
        ehci_update_frindex(ehci, frames);
        ehci->last_run_ns += FRAME_TIMER_NS * frames;
G
Gerd Hoffmann 已提交
2292 2293
    }

2294 2295 2296 2297 2298 2299
    if (ehci->periodic_sched_active) {
        ehci->async_stepdown = 0;
    } else if (ehci->async_stepdown < ehci->maxframes / 2) {
        ehci->async_stepdown++;
    }

G
Gerd Hoffmann 已提交
2300 2301 2302
    /*  Async is not inside loop since it executes everything it can once
     *  called
     */
G
Gerd Hoffmann 已提交
2303
    if (ehci_async_enabled(ehci) || ehci->astate != EST_INACTIVE) {
2304
        need_timer++;
2305
        ehci_advance_async_state(ehci);
G
Gerd Hoffmann 已提交
2306
    }
G
Gerd Hoffmann 已提交
2307

2308 2309 2310 2311
    ehci_commit_irq(ehci);
    if (ehci->usbsts_pending) {
        need_timer++;
        ehci->async_stepdown = 0;
G
Gerd Hoffmann 已提交
2312
    }
2313

2314 2315 2316 2317
    if (ehci_enabled(ehci) && (ehci->usbintr & USBSTS_FLR)) {
        need_timer++;
    }

2318
    if (need_timer) {
2319 2320 2321 2322 2323 2324 2325
        /* If we've raised int, we speed up the timer, so that we quickly
         * notice any new packets queued up in response */
        if (ehci->int_req_by_async && (ehci->usbsts & USBSTS_INT)) {
            expire_time = t_now + get_ticks_per_sec() / (FRAME_TIMER_FREQ * 2);
            ehci->int_req_by_async = false;
        } else {
            expire_time = t_now + (get_ticks_per_sec()
2326
                               * (ehci->async_stepdown+1) / FRAME_TIMER_FREQ);
2327
        }
2328 2329
        qemu_mod_timer(ehci->frame_timer, expire_time);
    }
G
Gerd Hoffmann 已提交
2330 2331
}

2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353
static const MemoryRegionOps ehci_mmio_caps_ops = {
    .read = ehci_caps_read,
    .valid.min_access_size = 1,
    .valid.max_access_size = 4,
    .impl.min_access_size = 1,
    .impl.max_access_size = 1,
    .endianness = DEVICE_LITTLE_ENDIAN,
};

static const MemoryRegionOps ehci_mmio_opreg_ops = {
    .read = ehci_opreg_read,
    .write = ehci_opreg_write,
    .valid.min_access_size = 4,
    .valid.max_access_size = 4,
    .endianness = DEVICE_LITTLE_ENDIAN,
};

static const MemoryRegionOps ehci_mmio_port_ops = {
    .read = ehci_port_read,
    .write = ehci_port_write,
    .valid.min_access_size = 4,
    .valid.max_access_size = 4,
A
Avi Kivity 已提交
2354
    .endianness = DEVICE_LITTLE_ENDIAN,
G
Gerd Hoffmann 已提交
2355 2356 2357 2358 2359
};

static USBPortOps ehci_port_ops = {
    .attach = ehci_attach,
    .detach = ehci_detach,
2360
    .child_detach = ehci_child_detach,
2361
    .wakeup = ehci_wakeup,
G
Gerd Hoffmann 已提交
2362 2363 2364
    .complete = ehci_async_complete_packet,
};

2365
static USBBusOps ehci_bus_ops = {
2366
    .register_companion = ehci_register_companion,
2367
    .wakeup_endpoint = ehci_wakeup_endpoint,
2368 2369
};

G
Gerd Hoffmann 已提交
2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389
static int usb_ehci_post_load(void *opaque, int version_id)
{
    EHCIState *s = opaque;
    int i;

    for (i = 0; i < NB_PORTS; i++) {
        USBPort *companion = s->companion_ports[i];
        if (companion == NULL) {
            continue;
        }
        if (s->portsc[i] & PORTSC_POWNER) {
            companion->dev = s->ports[i].dev;
        } else {
            companion->dev = NULL;
        }
    }

    return 0;
}

2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415
static void usb_ehci_vm_state_change(void *opaque, int running, RunState state)
{
    EHCIState *ehci = opaque;

    /*
     * We don't migrate the EHCIQueue-s, instead we rebuild them for the
     * schedule in guest memory. We must do the rebuilt ASAP, so that
     * USB-devices which have async handled packages have a packet in the
     * ep queue to match the completion with.
     */
    if (state == RUN_STATE_RUNNING) {
        ehci_advance_async_state(ehci);
    }

    /*
     * The schedule rebuilt from guest memory could cause the migration dest
     * to miss a QH unlink, and fail to cancel packets, since the unlinked QH
     * will never have existed on the destination. Therefor we must flush the
     * async schedule on savevm to catch any not yet noticed unlinks.
     */
    if (state == RUN_STATE_SAVE_VM) {
        ehci_advance_async_state(ehci);
        ehci_queues_rip_unseen(ehci, 1);
    }
}

2416
const VMStateDescription vmstate_ehci = {
P
Peter Crosthwaite 已提交
2417
    .name        = "ehci-core",
2418 2419
    .version_id  = 2,
    .minimum_version_id  = 1,
G
Gerd Hoffmann 已提交
2420 2421 2422 2423 2424
    .post_load   = usb_ehci_post_load,
    .fields      = (VMStateField[]) {
        /* mmio registers */
        VMSTATE_UINT32(usbcmd, EHCIState),
        VMSTATE_UINT32(usbsts, EHCIState),
2425 2426
        VMSTATE_UINT32_V(usbsts_pending, EHCIState, 2),
        VMSTATE_UINT32_V(usbsts_frindex, EHCIState, 2),
G
Gerd Hoffmann 已提交
2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449
        VMSTATE_UINT32(usbintr, EHCIState),
        VMSTATE_UINT32(frindex, EHCIState),
        VMSTATE_UINT32(ctrldssegment, EHCIState),
        VMSTATE_UINT32(periodiclistbase, EHCIState),
        VMSTATE_UINT32(asynclistaddr, EHCIState),
        VMSTATE_UINT32(configflag, EHCIState),
        VMSTATE_UINT32(portsc[0], EHCIState),
        VMSTATE_UINT32(portsc[1], EHCIState),
        VMSTATE_UINT32(portsc[2], EHCIState),
        VMSTATE_UINT32(portsc[3], EHCIState),
        VMSTATE_UINT32(portsc[4], EHCIState),
        VMSTATE_UINT32(portsc[5], EHCIState),
        /* frame timer */
        VMSTATE_TIMER(frame_timer, EHCIState),
        VMSTATE_UINT64(last_run_ns, EHCIState),
        VMSTATE_UINT32(async_stepdown, EHCIState),
        /* schedule state */
        VMSTATE_UINT32(astate, EHCIState),
        VMSTATE_UINT32(pstate, EHCIState),
        VMSTATE_UINT32(a_fetch_addr, EHCIState),
        VMSTATE_UINT32(p_fetch_addr, EHCIState),
        VMSTATE_END_OF_LIST()
    }
G
Gerd Hoffmann 已提交
2450 2451
};

2452
void usb_ehci_initfn(EHCIState *s, DeviceState *dev)
G
Gerd Hoffmann 已提交
2453 2454 2455
{
    int i;

2456
    /* 2.2 host controller interface version */
2457
    s->caps[0x00] = (uint8_t)(s->opregbase - s->capsbase);
2458 2459 2460 2461 2462 2463 2464 2465 2466 2467
    s->caps[0x01] = 0x00;
    s->caps[0x02] = 0x00;
    s->caps[0x03] = 0x01;        /* HC version */
    s->caps[0x04] = NB_PORTS;    /* Number of downstream ports */
    s->caps[0x05] = 0x00;        /* No companion ports at present */
    s->caps[0x06] = 0x00;
    s->caps[0x07] = 0x00;
    s->caps[0x08] = 0x80;        /* We can cache whole frame, no 64-bit */
    s->caps[0x0a] = 0x00;
    s->caps[0x0b] = 0x00;
G
Gerd Hoffmann 已提交
2468

P
Peter Crosthwaite 已提交
2469
    usb_bus_new(&s->bus, &ehci_bus_ops, dev);
G
Gerd Hoffmann 已提交
2470 2471 2472 2473 2474 2475 2476
    for(i = 0; i < NB_PORTS; i++) {
        usb_register_port(&s->bus, &s->ports[i], s, i, &ehci_port_ops,
                          USB_SPEED_MASK_HIGH);
        s->ports[i].dev = 0;
    }

    s->frame_timer = qemu_new_timer_ns(vm_clock, ehci_frame_timer, s);
2477
    s->async_bh = qemu_bh_new(ehci_frame_timer, s);
2478 2479
    QTAILQ_INIT(&s->aqueues);
    QTAILQ_INIT(&s->pqueues);
2480
    usb_packet_init(&s->ipacket);
G
Gerd Hoffmann 已提交
2481 2482

    qemu_register_reset(ehci_reset, s);
2483
    qemu_add_vm_change_state_handler(usb_ehci_vm_state_change, s);
G
Gerd Hoffmann 已提交
2484

2485 2486
    memory_region_init(&s->mem, "ehci", MMIO_SIZE);
    memory_region_init_io(&s->mem_caps, &ehci_mmio_caps_ops, s,
2487
                          "capabilities", CAPA_SIZE);
2488
    memory_region_init_io(&s->mem_opreg, &ehci_mmio_opreg_ops, s,
2489
                          "operational", PORTSC_BEGIN);
2490 2491 2492
    memory_region_init_io(&s->mem_ports, &ehci_mmio_port_ops, s,
                          "ports", PORTSC_END - PORTSC_BEGIN);

2493 2494 2495 2496
    memory_region_add_subregion(&s->mem, s->capsbase, &s->mem_caps);
    memory_region_add_subregion(&s->mem, s->opregbase, &s->mem_opreg);
    memory_region_add_subregion(&s->mem, s->opregbase + PORTSC_BEGIN,
                                &s->mem_ports);
P
Peter Crosthwaite 已提交
2497 2498
}

G
Gerd Hoffmann 已提交
2499 2500 2501
/*
 * vim: expandtab ts=4
 */