qemu/hw/usb/hcd-xhci.h
<<
>>
Prefs
   1/*
   2 * USB xHCI controller emulation
   3 *
   4 * Copyright (c) 2011 Securiforest
   5 * Date: 2011-05-11 ;  Author: Hector Martin <hector@marcansoft.com>
   6 * Based on usb-ohci.c, emulates Renesas NEC USB 3.0
   7 *
   8 * This library is free software; you can redistribute it and/or
   9 * modify it under the terms of the GNU Lesser General Public
  10 * License as published by the Free Software Foundation; either
  11 * version 2 of the License, or (at your option) any later version.
  12 *
  13 * This library is distributed in the hope that it will be useful,
  14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16 * Lesser General Public License for more details.
  17 *
  18 * You should have received a copy of the GNU Lesser General Public
  19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  20 */
  21
  22#define TYPE_XHCI "base-xhci"
  23#define TYPE_NEC_XHCI "nec-usb-xhci"
  24#define TYPE_QEMU_XHCI "qemu-xhci"
  25
  26#define XHCI(obj) \
  27    OBJECT_CHECK(XHCIState, (obj), TYPE_XHCI)
  28
  29#define MAXPORTS_2 15
  30#define MAXPORTS_3 15
  31
  32#define MAXPORTS (MAXPORTS_2 + MAXPORTS_3)
  33#define MAXSLOTS 64
  34#define MAXINTRS 16
  35
  36/* Very pessimistic, let's hope it's enough for all cases */
  37#define EV_QUEUE (((3 * 24) + 16) * MAXSLOTS)
  38
  39typedef struct XHCIState XHCIState;
  40typedef struct XHCIStreamContext XHCIStreamContext;
  41typedef struct XHCIEPContext XHCIEPContext;
  42
  43enum xhci_flags {
  44    XHCI_FLAG_SS_FIRST = 1,
  45    XHCI_FLAG_FORCE_PCIE_ENDCAP,
  46    XHCI_FLAG_ENABLE_STREAMS,
  47};
  48
  49typedef enum TRBType {
  50    TRB_RESERVED = 0,
  51    TR_NORMAL,
  52    TR_SETUP,
  53    TR_DATA,
  54    TR_STATUS,
  55    TR_ISOCH,
  56    TR_LINK,
  57    TR_EVDATA,
  58    TR_NOOP,
  59    CR_ENABLE_SLOT,
  60    CR_DISABLE_SLOT,
  61    CR_ADDRESS_DEVICE,
  62    CR_CONFIGURE_ENDPOINT,
  63    CR_EVALUATE_CONTEXT,
  64    CR_RESET_ENDPOINT,
  65    CR_STOP_ENDPOINT,
  66    CR_SET_TR_DEQUEUE,
  67    CR_RESET_DEVICE,
  68    CR_FORCE_EVENT,
  69    CR_NEGOTIATE_BW,
  70    CR_SET_LATENCY_TOLERANCE,
  71    CR_GET_PORT_BANDWIDTH,
  72    CR_FORCE_HEADER,
  73    CR_NOOP,
  74    ER_TRANSFER = 32,
  75    ER_COMMAND_COMPLETE,
  76    ER_PORT_STATUS_CHANGE,
  77    ER_BANDWIDTH_REQUEST,
  78    ER_DOORBELL,
  79    ER_HOST_CONTROLLER,
  80    ER_DEVICE_NOTIFICATION,
  81    ER_MFINDEX_WRAP,
  82    /* vendor specific bits */
  83    CR_VENDOR_NEC_FIRMWARE_REVISION  = 49,
  84    CR_VENDOR_NEC_CHALLENGE_RESPONSE = 50,
  85} TRBType;
  86
  87typedef enum TRBCCode {
  88    CC_INVALID = 0,
  89    CC_SUCCESS,
  90    CC_DATA_BUFFER_ERROR,
  91    CC_BABBLE_DETECTED,
  92    CC_USB_TRANSACTION_ERROR,
  93    CC_TRB_ERROR,
  94    CC_STALL_ERROR,
  95    CC_RESOURCE_ERROR,
  96    CC_BANDWIDTH_ERROR,
  97    CC_NO_SLOTS_ERROR,
  98    CC_INVALID_STREAM_TYPE_ERROR,
  99    CC_SLOT_NOT_ENABLED_ERROR,
 100    CC_EP_NOT_ENABLED_ERROR,
 101    CC_SHORT_PACKET,
 102    CC_RING_UNDERRUN,
 103    CC_RING_OVERRUN,
 104    CC_VF_ER_FULL,
 105    CC_PARAMETER_ERROR,
 106    CC_BANDWIDTH_OVERRUN,
 107    CC_CONTEXT_STATE_ERROR,
 108    CC_NO_PING_RESPONSE_ERROR,
 109    CC_EVENT_RING_FULL_ERROR,
 110    CC_INCOMPATIBLE_DEVICE_ERROR,
 111    CC_MISSED_SERVICE_ERROR,
 112    CC_COMMAND_RING_STOPPED,
 113    CC_COMMAND_ABORTED,
 114    CC_STOPPED,
 115    CC_STOPPED_LENGTH_INVALID,
 116    CC_MAX_EXIT_LATENCY_TOO_LARGE_ERROR = 29,
 117    CC_ISOCH_BUFFER_OVERRUN = 31,
 118    CC_EVENT_LOST_ERROR,
 119    CC_UNDEFINED_ERROR,
 120    CC_INVALID_STREAM_ID_ERROR,
 121    CC_SECONDARY_BANDWIDTH_ERROR,
 122    CC_SPLIT_TRANSACTION_ERROR
 123} TRBCCode;
 124
 125typedef struct XHCIRing {
 126    dma_addr_t dequeue;
 127    bool ccs;
 128} XHCIRing;
 129
 130typedef struct XHCIPort {
 131    XHCIState *xhci;
 132    uint32_t portsc;
 133    uint32_t portnr;
 134    USBPort  *uport;
 135    uint32_t speedmask;
 136    char name[16];
 137    MemoryRegion mem;
 138} XHCIPort;
 139
 140typedef struct XHCISlot {
 141    bool enabled;
 142    bool addressed;
 143    uint16_t intr;
 144    dma_addr_t ctx;
 145    USBPort *uport;
 146    XHCIEPContext *eps[31];
 147} XHCISlot;
 148
 149typedef struct XHCIEvent {
 150    TRBType type;
 151    TRBCCode ccode;
 152    uint64_t ptr;
 153    uint32_t length;
 154    uint32_t flags;
 155    uint8_t slotid;
 156    uint8_t epid;
 157} XHCIEvent;
 158
 159typedef struct XHCIInterrupter {
 160    uint32_t iman;
 161    uint32_t imod;
 162    uint32_t erstsz;
 163    uint32_t erstba_low;
 164    uint32_t erstba_high;
 165    uint32_t erdp_low;
 166    uint32_t erdp_high;
 167
 168    bool msix_used, er_pcs;
 169
 170    dma_addr_t er_start;
 171    uint32_t er_size;
 172    unsigned int er_ep_idx;
 173
 174    /* kept for live migration compat only */
 175    bool er_full_unused;
 176    XHCIEvent ev_buffer[EV_QUEUE];
 177    unsigned int ev_buffer_put;
 178    unsigned int ev_buffer_get;
 179
 180} XHCIInterrupter;
 181
 182struct XHCIState {
 183    /*< private >*/
 184    PCIDevice parent_obj;
 185    /*< public >*/
 186
 187    USBBus bus;
 188    MemoryRegion mem;
 189    MemoryRegion mem_cap;
 190    MemoryRegion mem_oper;
 191    MemoryRegion mem_runtime;
 192    MemoryRegion mem_doorbell;
 193
 194    /* properties */
 195    uint32_t numports_2;
 196    uint32_t numports_3;
 197    uint32_t numintrs;
 198    uint32_t numslots;
 199    uint32_t flags;
 200    uint32_t max_pstreams_mask;
 201    OnOffAuto msi;
 202    OnOffAuto msix;
 203
 204    /* Operational Registers */
 205    uint32_t usbcmd;
 206    uint32_t usbsts;
 207    uint32_t dnctrl;
 208    uint32_t crcr_low;
 209    uint32_t crcr_high;
 210    uint32_t dcbaap_low;
 211    uint32_t dcbaap_high;
 212    uint32_t config;
 213
 214    USBPort  uports[MAX(MAXPORTS_2, MAXPORTS_3)];
 215    XHCIPort ports[MAXPORTS];
 216    XHCISlot slots[MAXSLOTS];
 217    uint32_t numports;
 218
 219    /* Runtime Registers */
 220    int64_t mfindex_start;
 221    QEMUTimer *mfwrap_timer;
 222    XHCIInterrupter intr[MAXINTRS];
 223
 224    XHCIRing cmd_ring;
 225
 226    bool nec_quirks;
 227};
 228