]> git.proxmox.com Git - mirror_qemu.git/blame - hw/usb/hcd-xhci.c
xhci: flush dequeue pointer to endpoint context
[mirror_qemu.git] / hw / usb / hcd-xhci.c
CommitLineData
62c6ae04
HM
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 */
e532b2e0 21#include "qemu/osdep.h"
f1ae32a1 22#include "hw/hw.h"
1de7afc9 23#include "qemu/timer.h"
94b037f2 24#include "qemu/queue.h"
f1ae32a1 25#include "hw/usb.h"
a2cb15b0
MT
26#include "hw/pci/pci.h"
27#include "hw/pci/msi.h"
28#include "hw/pci/msix.h"
2d754a10 29#include "trace.h"
1108b2f8 30#include "qapi/error.h"
62c6ae04
HM
31
32//#define DEBUG_XHCI
33//#define DEBUG_DATA
34
35#ifdef DEBUG_XHCI
36#define DPRINTF(...) fprintf(stderr, __VA_ARGS__)
37#else
38#define DPRINTF(...) do {} while (0)
39#endif
024426ac
GH
40#define FIXME(_msg) do { fprintf(stderr, "FIXME %s:%d %s\n", \
41 __func__, __LINE__, _msg); abort(); } while (0)
62c6ae04 42
d95e74ea
GH
43#define MAXPORTS_2 15
44#define MAXPORTS_3 15
62c6ae04 45
0846e635 46#define MAXPORTS (MAXPORTS_2+MAXPORTS_3)
d95e74ea
GH
47#define MAXSLOTS 64
48#define MAXINTRS 16
62c6ae04 49
62c6ae04 50/* Very pessimistic, let's hope it's enough for all cases */
1fe163fe 51#define EV_QUEUE (((3 * 24) + 16) * MAXSLOTS)
62c6ae04 52
05f43d44 53#define TRB_LINK_LIMIT 4
f89b60f6
GH
54#define COMMAND_LIMIT 256
55#define TRANSFER_LIMIT 256
05f43d44 56
62c6ae04 57#define LEN_CAP 0x40
62c6ae04 58#define LEN_OPER (0x400 + 0x10 * MAXPORTS)
106b214c 59#define LEN_RUNTIME ((MAXINTRS + 1) * 0x20)
62c6ae04
HM
60#define LEN_DOORBELL ((MAXSLOTS + 1) * 0x20)
61
106b214c
GH
62#define OFF_OPER LEN_CAP
63#define OFF_RUNTIME 0x1000
64#define OFF_DOORBELL 0x2000
4c47f800
GH
65#define OFF_MSIX_TABLE 0x3000
66#define OFF_MSIX_PBA 0x3800
62c6ae04 67/* must be power of 2 */
106b214c 68#define LEN_REGS 0x4000
62c6ae04 69
106b214c
GH
70#if (OFF_OPER + LEN_OPER) > OFF_RUNTIME
71#error Increase OFF_RUNTIME
72#endif
73#if (OFF_RUNTIME + LEN_RUNTIME) > OFF_DOORBELL
74#error Increase OFF_DOORBELL
75#endif
62c6ae04
HM
76#if (OFF_DOORBELL + LEN_DOORBELL) > LEN_REGS
77# error Increase LEN_REGS
78#endif
79
62c6ae04
HM
80/* bit definitions */
81#define USBCMD_RS (1<<0)
82#define USBCMD_HCRST (1<<1)
83#define USBCMD_INTE (1<<2)
84#define USBCMD_HSEE (1<<3)
85#define USBCMD_LHCRST (1<<7)
86#define USBCMD_CSS (1<<8)
87#define USBCMD_CRS (1<<9)
88#define USBCMD_EWE (1<<10)
89#define USBCMD_EU3S (1<<11)
90
91#define USBSTS_HCH (1<<0)
92#define USBSTS_HSE (1<<2)
93#define USBSTS_EINT (1<<3)
94#define USBSTS_PCD (1<<4)
95#define USBSTS_SSS (1<<8)
96#define USBSTS_RSS (1<<9)
97#define USBSTS_SRE (1<<10)
98#define USBSTS_CNR (1<<11)
99#define USBSTS_HCE (1<<12)
100
101
102#define PORTSC_CCS (1<<0)
103#define PORTSC_PED (1<<1)
104#define PORTSC_OCA (1<<3)
105#define PORTSC_PR (1<<4)
106#define PORTSC_PLS_SHIFT 5
107#define PORTSC_PLS_MASK 0xf
108#define PORTSC_PP (1<<9)
109#define PORTSC_SPEED_SHIFT 10
110#define PORTSC_SPEED_MASK 0xf
111#define PORTSC_SPEED_FULL (1<<10)
112#define PORTSC_SPEED_LOW (2<<10)
113#define PORTSC_SPEED_HIGH (3<<10)
114#define PORTSC_SPEED_SUPER (4<<10)
115#define PORTSC_PIC_SHIFT 14
116#define PORTSC_PIC_MASK 0x3
117#define PORTSC_LWS (1<<16)
118#define PORTSC_CSC (1<<17)
119#define PORTSC_PEC (1<<18)
120#define PORTSC_WRC (1<<19)
121#define PORTSC_OCC (1<<20)
122#define PORTSC_PRC (1<<21)
123#define PORTSC_PLC (1<<22)
124#define PORTSC_CEC (1<<23)
125#define PORTSC_CAS (1<<24)
126#define PORTSC_WCE (1<<25)
127#define PORTSC_WDE (1<<26)
128#define PORTSC_WOE (1<<27)
129#define PORTSC_DR (1<<30)
130#define PORTSC_WPR (1<<31)
131
132#define CRCR_RCS (1<<0)
133#define CRCR_CS (1<<1)
134#define CRCR_CA (1<<2)
135#define CRCR_CRR (1<<3)
136
137#define IMAN_IP (1<<0)
138#define IMAN_IE (1<<1)
139
140#define ERDP_EHB (1<<3)
141
142#define TRB_SIZE 16
143typedef struct XHCITRB {
144 uint64_t parameter;
145 uint32_t status;
146 uint32_t control;
59a70ccd 147 dma_addr_t addr;
62c6ae04
HM
148 bool ccs;
149} XHCITRB;
150
85e05d82
GH
151enum {
152 PLS_U0 = 0,
153 PLS_U1 = 1,
154 PLS_U2 = 2,
155 PLS_U3 = 3,
156 PLS_DISABLED = 4,
157 PLS_RX_DETECT = 5,
158 PLS_INACTIVE = 6,
159 PLS_POLLING = 7,
160 PLS_RECOVERY = 8,
161 PLS_HOT_RESET = 9,
162 PLS_COMPILANCE_MODE = 10,
163 PLS_TEST_MODE = 11,
164 PLS_RESUME = 15,
165};
62c6ae04
HM
166
167typedef enum TRBType {
168 TRB_RESERVED = 0,
169 TR_NORMAL,
170 TR_SETUP,
171 TR_DATA,
172 TR_STATUS,
173 TR_ISOCH,
174 TR_LINK,
175 TR_EVDATA,
176 TR_NOOP,
177 CR_ENABLE_SLOT,
178 CR_DISABLE_SLOT,
179 CR_ADDRESS_DEVICE,
180 CR_CONFIGURE_ENDPOINT,
181 CR_EVALUATE_CONTEXT,
182 CR_RESET_ENDPOINT,
183 CR_STOP_ENDPOINT,
184 CR_SET_TR_DEQUEUE,
185 CR_RESET_DEVICE,
186 CR_FORCE_EVENT,
187 CR_NEGOTIATE_BW,
188 CR_SET_LATENCY_TOLERANCE,
189 CR_GET_PORT_BANDWIDTH,
190 CR_FORCE_HEADER,
191 CR_NOOP,
192 ER_TRANSFER = 32,
193 ER_COMMAND_COMPLETE,
194 ER_PORT_STATUS_CHANGE,
195 ER_BANDWIDTH_REQUEST,
196 ER_DOORBELL,
197 ER_HOST_CONTROLLER,
198 ER_DEVICE_NOTIFICATION,
199 ER_MFINDEX_WRAP,
200 /* vendor specific bits */
62c6ae04
HM
201 CR_VENDOR_NEC_FIRMWARE_REVISION = 49,
202 CR_VENDOR_NEC_CHALLENGE_RESPONSE = 50,
203} TRBType;
204
205#define CR_LINK TR_LINK
206
207typedef enum TRBCCode {
208 CC_INVALID = 0,
209 CC_SUCCESS,
210 CC_DATA_BUFFER_ERROR,
211 CC_BABBLE_DETECTED,
212 CC_USB_TRANSACTION_ERROR,
213 CC_TRB_ERROR,
214 CC_STALL_ERROR,
215 CC_RESOURCE_ERROR,
216 CC_BANDWIDTH_ERROR,
217 CC_NO_SLOTS_ERROR,
218 CC_INVALID_STREAM_TYPE_ERROR,
219 CC_SLOT_NOT_ENABLED_ERROR,
220 CC_EP_NOT_ENABLED_ERROR,
221 CC_SHORT_PACKET,
222 CC_RING_UNDERRUN,
223 CC_RING_OVERRUN,
224 CC_VF_ER_FULL,
225 CC_PARAMETER_ERROR,
226 CC_BANDWIDTH_OVERRUN,
227 CC_CONTEXT_STATE_ERROR,
228 CC_NO_PING_RESPONSE_ERROR,
229 CC_EVENT_RING_FULL_ERROR,
230 CC_INCOMPATIBLE_DEVICE_ERROR,
231 CC_MISSED_SERVICE_ERROR,
232 CC_COMMAND_RING_STOPPED,
233 CC_COMMAND_ABORTED,
234 CC_STOPPED,
235 CC_STOPPED_LENGTH_INVALID,
236 CC_MAX_EXIT_LATENCY_TOO_LARGE_ERROR = 29,
237 CC_ISOCH_BUFFER_OVERRUN = 31,
238 CC_EVENT_LOST_ERROR,
239 CC_UNDEFINED_ERROR,
240 CC_INVALID_STREAM_ID_ERROR,
241 CC_SECONDARY_BANDWIDTH_ERROR,
242 CC_SPLIT_TRANSACTION_ERROR
243} TRBCCode;
244
245#define TRB_C (1<<0)
246#define TRB_TYPE_SHIFT 10
247#define TRB_TYPE_MASK 0x3f
248#define TRB_TYPE(t) (((t).control >> TRB_TYPE_SHIFT) & TRB_TYPE_MASK)
249
250#define TRB_EV_ED (1<<2)
251
252#define TRB_TR_ENT (1<<1)
253#define TRB_TR_ISP (1<<2)
254#define TRB_TR_NS (1<<3)
255#define TRB_TR_CH (1<<4)
256#define TRB_TR_IOC (1<<5)
257#define TRB_TR_IDT (1<<6)
258#define TRB_TR_TBC_SHIFT 7
259#define TRB_TR_TBC_MASK 0x3
260#define TRB_TR_BEI (1<<9)
261#define TRB_TR_TLBPC_SHIFT 16
262#define TRB_TR_TLBPC_MASK 0xf
263#define TRB_TR_FRAMEID_SHIFT 20
264#define TRB_TR_FRAMEID_MASK 0x7ff
265#define TRB_TR_SIA (1<<31)
266
267#define TRB_TR_DIR (1<<16)
268
269#define TRB_CR_SLOTID_SHIFT 24
270#define TRB_CR_SLOTID_MASK 0xff
271#define TRB_CR_EPID_SHIFT 16
272#define TRB_CR_EPID_MASK 0x1f
273
274#define TRB_CR_BSR (1<<9)
275#define TRB_CR_DC (1<<9)
276
277#define TRB_LK_TC (1<<1)
278
2d1de850
GH
279#define TRB_INTR_SHIFT 22
280#define TRB_INTR_MASK 0x3ff
281#define TRB_INTR(t) (((t).status >> TRB_INTR_SHIFT) & TRB_INTR_MASK)
282
62c6ae04
HM
283#define EP_TYPE_MASK 0x7
284#define EP_TYPE_SHIFT 3
285
286#define EP_STATE_MASK 0x7
287#define EP_DISABLED (0<<0)
288#define EP_RUNNING (1<<0)
289#define EP_HALTED (2<<0)
290#define EP_STOPPED (3<<0)
291#define EP_ERROR (4<<0)
292
293#define SLOT_STATE_MASK 0x1f
294#define SLOT_STATE_SHIFT 27
295#define SLOT_STATE(s) (((s)>>SLOT_STATE_SHIFT)&SLOT_STATE_MASK)
296#define SLOT_ENABLED 0
297#define SLOT_DEFAULT 1
298#define SLOT_ADDRESSED 2
299#define SLOT_CONFIGURED 3
300
301#define SLOT_CONTEXT_ENTRIES_MASK 0x1f
302#define SLOT_CONTEXT_ENTRIES_SHIFT 27
303
1d8a4e69 304typedef struct XHCIState XHCIState;
024426ac
GH
305typedef struct XHCIStreamContext XHCIStreamContext;
306typedef struct XHCIEPContext XHCIEPContext;
1d8a4e69 307
85e05d82
GH
308#define get_field(data, field) \
309 (((data) >> field##_SHIFT) & field##_MASK)
310
311#define set_field(data, newval, field) do { \
312 uint32_t val = *data; \
313 val &= ~(field##_MASK << field##_SHIFT); \
314 val |= ((newval) & field##_MASK) << field##_SHIFT; \
315 *data = val; \
316 } while (0)
317
62c6ae04
HM
318typedef enum EPType {
319 ET_INVALID = 0,
320 ET_ISO_OUT,
321 ET_BULK_OUT,
322 ET_INTR_OUT,
323 ET_CONTROL,
324 ET_ISO_IN,
325 ET_BULK_IN,
326 ET_INTR_IN,
327} EPType;
328
329typedef struct XHCIRing {
59a70ccd 330 dma_addr_t dequeue;
62c6ae04
HM
331 bool ccs;
332} XHCIRing;
333
334typedef struct XHCIPort {
1d8a4e69 335 XHCIState *xhci;
62c6ae04 336 uint32_t portsc;
0846e635
GH
337 uint32_t portnr;
338 USBPort *uport;
339 uint32_t speedmask;
1d8a4e69
GH
340 char name[16];
341 MemoryRegion mem;
62c6ae04
HM
342} XHCIPort;
343
62c6ae04 344typedef struct XHCITransfer {
94b037f2 345 XHCIEPContext *epctx;
62c6ae04 346 USBPacket packet;
d5a15814 347 QEMUSGList sgl;
7c605a23
GH
348 bool running_async;
349 bool running_retry;
62c6ae04 350 bool complete;
a6fb2ddb 351 bool int_req;
62c6ae04 352 unsigned int iso_pkts;
024426ac 353 unsigned int streamid;
62c6ae04
HM
354 bool in_xfer;
355 bool iso_xfer;
4d7a81c0 356 bool timed_xfer;
62c6ae04
HM
357
358 unsigned int trb_count;
62c6ae04
HM
359 XHCITRB *trbs;
360
62c6ae04
HM
361 TRBCCode status;
362
363 unsigned int pkts;
364 unsigned int pktsize;
365 unsigned int cur_pkt;
3d139684
GH
366
367 uint64_t mfindex_kick;
94b037f2
GH
368
369 QTAILQ_ENTRY(XHCITransfer) next;
62c6ae04
HM
370} XHCITransfer;
371
024426ac
GH
372struct XHCIStreamContext {
373 dma_addr_t pctx;
374 unsigned int sct;
375 XHCIRing ring;
024426ac
GH
376};
377
378struct XHCIEPContext {
3d139684
GH
379 XHCIState *xhci;
380 unsigned int slotid;
381 unsigned int epid;
382
62c6ae04 383 XHCIRing ring;
94b037f2
GH
384 uint32_t xfer_count;
385 QTAILQ_HEAD(, XHCITransfer) transfers;
7c605a23 386 XHCITransfer *retry;
62c6ae04 387 EPType type;
59a70ccd 388 dma_addr_t pctx;
62c6ae04 389 unsigned int max_psize;
62c6ae04 390 uint32_t state;
96d87bdd 391 uint32_t kick_active;
3d139684 392
024426ac
GH
393 /* streams */
394 unsigned int max_pstreams;
395 bool lsa;
396 unsigned int nr_pstreams;
397 XHCIStreamContext *pstreams;
398
3d139684
GH
399 /* iso xfer scheduling */
400 unsigned int interval;
401 int64_t mfindex_last;
402 QEMUTimer *kick_timer;
024426ac 403};
62c6ae04
HM
404
405typedef struct XHCISlot {
406 bool enabled;
4034e693 407 bool addressed;
59a70ccd 408 dma_addr_t ctx;
ccaf87a0 409 USBPort *uport;
62c6ae04
HM
410 XHCIEPContext * eps[31];
411} XHCISlot;
412
413typedef struct XHCIEvent {
414 TRBType type;
415 TRBCCode ccode;
416 uint64_t ptr;
417 uint32_t length;
418 uint32_t flags;
419 uint8_t slotid;
420 uint8_t epid;
421} XHCIEvent;
422
962d11e1
GH
423typedef struct XHCIInterrupter {
424 uint32_t iman;
425 uint32_t imod;
426 uint32_t erstsz;
427 uint32_t erstba_low;
428 uint32_t erstba_high;
429 uint32_t erdp_low;
430 uint32_t erdp_high;
431
898248a3 432 bool msix_used, er_pcs;
962d11e1
GH
433
434 dma_addr_t er_start;
435 uint32_t er_size;
436 unsigned int er_ep_idx;
437
898248a3
GH
438 /* kept for live migration compat only */
439 bool er_full_unused;
962d11e1
GH
440 XHCIEvent ev_buffer[EV_QUEUE];
441 unsigned int ev_buffer_put;
442 unsigned int ev_buffer_get;
443
444} XHCIInterrupter;
445
62c6ae04 446struct XHCIState {
9b7d3334
AF
447 /*< private >*/
448 PCIDevice parent_obj;
449 /*< public >*/
450
62c6ae04 451 USBBus bus;
62c6ae04 452 MemoryRegion mem;
1b067564
GH
453 MemoryRegion mem_cap;
454 MemoryRegion mem_oper;
455 MemoryRegion mem_runtime;
456 MemoryRegion mem_doorbell;
62c6ae04 457
0846e635
GH
458 /* properties */
459 uint32_t numports_2;
460 uint32_t numports_3;
91062ae0
GH
461 uint32_t numintrs;
462 uint32_t numslots;
c5e9b02d 463 uint32_t flags;
2aa6bfcb 464 uint32_t max_pstreams_mask;
290fd20d
C
465 OnOffAuto msi;
466 OnOffAuto msix;
0846e635 467
62c6ae04
HM
468 /* Operational Registers */
469 uint32_t usbcmd;
470 uint32_t usbsts;
471 uint32_t dnctrl;
472 uint32_t crcr_low;
473 uint32_t crcr_high;
474 uint32_t dcbaap_low;
475 uint32_t dcbaap_high;
476 uint32_t config;
477
0846e635 478 USBPort uports[MAX(MAXPORTS_2, MAXPORTS_3)];
62c6ae04
HM
479 XHCIPort ports[MAXPORTS];
480 XHCISlot slots[MAXSLOTS];
0846e635 481 uint32_t numports;
62c6ae04
HM
482
483 /* Runtime Registers */
01546fa6
GH
484 int64_t mfindex_start;
485 QEMUTimer *mfwrap_timer;
962d11e1 486 XHCIInterrupter intr[MAXINTRS];
62c6ae04
HM
487
488 XHCIRing cmd_ring;
2992d6b4
GH
489
490 bool nec_quirks;
62c6ae04
HM
491};
492
72a810f4
GH
493#define TYPE_XHCI "base-xhci"
494#define TYPE_NEC_XHCI "nec-usb-xhci"
495#define TYPE_QEMU_XHCI "qemu-xhci"
37034575
PC
496
497#define XHCI(obj) \
498 OBJECT_CHECK(XHCIState, (obj), TYPE_XHCI)
499
62c6ae04
HM
500typedef struct XHCIEvRingSeg {
501 uint32_t addr_low;
502 uint32_t addr_high;
503 uint32_t size;
504 uint32_t rsvd;
505} XHCIEvRingSeg;
506
c5e9b02d 507enum xhci_flags {
290fd20d 508 XHCI_FLAG_SS_FIRST = 1,
e6043e92 509 XHCI_FLAG_FORCE_PCIE_ENDCAP,
2aa6bfcb 510 XHCI_FLAG_ENABLE_STREAMS,
c5e9b02d
GH
511};
512
01546fa6 513static void xhci_kick_ep(XHCIState *xhci, unsigned int slotid,
024426ac 514 unsigned int epid, unsigned int streamid);
3a533ee8 515static void xhci_kick_epctx(XHCIEPContext *epctx, unsigned int streamid);
0bc85da6
GH
516static TRBCCode xhci_disable_ep(XHCIState *xhci, unsigned int slotid,
517 unsigned int epid);
582d6f4a 518static void xhci_xfer_report(XHCITransfer *xfer);
962d11e1
GH
519static void xhci_event(XHCIState *xhci, XHCIEvent *event, int v);
520static void xhci_write_event(XHCIState *xhci, XHCIEvent *event, int v);
070eeef9 521static USBEndpoint *xhci_epid_to_usbep(XHCIEPContext *epctx);
01546fa6 522
f10de44e
GH
523static const char *TRBType_names[] = {
524 [TRB_RESERVED] = "TRB_RESERVED",
525 [TR_NORMAL] = "TR_NORMAL",
526 [TR_SETUP] = "TR_SETUP",
527 [TR_DATA] = "TR_DATA",
528 [TR_STATUS] = "TR_STATUS",
529 [TR_ISOCH] = "TR_ISOCH",
530 [TR_LINK] = "TR_LINK",
531 [TR_EVDATA] = "TR_EVDATA",
532 [TR_NOOP] = "TR_NOOP",
533 [CR_ENABLE_SLOT] = "CR_ENABLE_SLOT",
534 [CR_DISABLE_SLOT] = "CR_DISABLE_SLOT",
535 [CR_ADDRESS_DEVICE] = "CR_ADDRESS_DEVICE",
536 [CR_CONFIGURE_ENDPOINT] = "CR_CONFIGURE_ENDPOINT",
537 [CR_EVALUATE_CONTEXT] = "CR_EVALUATE_CONTEXT",
538 [CR_RESET_ENDPOINT] = "CR_RESET_ENDPOINT",
539 [CR_STOP_ENDPOINT] = "CR_STOP_ENDPOINT",
540 [CR_SET_TR_DEQUEUE] = "CR_SET_TR_DEQUEUE",
541 [CR_RESET_DEVICE] = "CR_RESET_DEVICE",
542 [CR_FORCE_EVENT] = "CR_FORCE_EVENT",
543 [CR_NEGOTIATE_BW] = "CR_NEGOTIATE_BW",
544 [CR_SET_LATENCY_TOLERANCE] = "CR_SET_LATENCY_TOLERANCE",
545 [CR_GET_PORT_BANDWIDTH] = "CR_GET_PORT_BANDWIDTH",
546 [CR_FORCE_HEADER] = "CR_FORCE_HEADER",
547 [CR_NOOP] = "CR_NOOP",
548 [ER_TRANSFER] = "ER_TRANSFER",
549 [ER_COMMAND_COMPLETE] = "ER_COMMAND_COMPLETE",
550 [ER_PORT_STATUS_CHANGE] = "ER_PORT_STATUS_CHANGE",
551 [ER_BANDWIDTH_REQUEST] = "ER_BANDWIDTH_REQUEST",
552 [ER_DOORBELL] = "ER_DOORBELL",
553 [ER_HOST_CONTROLLER] = "ER_HOST_CONTROLLER",
554 [ER_DEVICE_NOTIFICATION] = "ER_DEVICE_NOTIFICATION",
555 [ER_MFINDEX_WRAP] = "ER_MFINDEX_WRAP",
f10de44e
GH
556 [CR_VENDOR_NEC_FIRMWARE_REVISION] = "CR_VENDOR_NEC_FIRMWARE_REVISION",
557 [CR_VENDOR_NEC_CHALLENGE_RESPONSE] = "CR_VENDOR_NEC_CHALLENGE_RESPONSE",
558};
559
873123fe
GH
560static const char *TRBCCode_names[] = {
561 [CC_INVALID] = "CC_INVALID",
562 [CC_SUCCESS] = "CC_SUCCESS",
563 [CC_DATA_BUFFER_ERROR] = "CC_DATA_BUFFER_ERROR",
564 [CC_BABBLE_DETECTED] = "CC_BABBLE_DETECTED",
565 [CC_USB_TRANSACTION_ERROR] = "CC_USB_TRANSACTION_ERROR",
566 [CC_TRB_ERROR] = "CC_TRB_ERROR",
567 [CC_STALL_ERROR] = "CC_STALL_ERROR",
568 [CC_RESOURCE_ERROR] = "CC_RESOURCE_ERROR",
569 [CC_BANDWIDTH_ERROR] = "CC_BANDWIDTH_ERROR",
570 [CC_NO_SLOTS_ERROR] = "CC_NO_SLOTS_ERROR",
571 [CC_INVALID_STREAM_TYPE_ERROR] = "CC_INVALID_STREAM_TYPE_ERROR",
572 [CC_SLOT_NOT_ENABLED_ERROR] = "CC_SLOT_NOT_ENABLED_ERROR",
573 [CC_EP_NOT_ENABLED_ERROR] = "CC_EP_NOT_ENABLED_ERROR",
574 [CC_SHORT_PACKET] = "CC_SHORT_PACKET",
575 [CC_RING_UNDERRUN] = "CC_RING_UNDERRUN",
576 [CC_RING_OVERRUN] = "CC_RING_OVERRUN",
577 [CC_VF_ER_FULL] = "CC_VF_ER_FULL",
578 [CC_PARAMETER_ERROR] = "CC_PARAMETER_ERROR",
579 [CC_BANDWIDTH_OVERRUN] = "CC_BANDWIDTH_OVERRUN",
580 [CC_CONTEXT_STATE_ERROR] = "CC_CONTEXT_STATE_ERROR",
581 [CC_NO_PING_RESPONSE_ERROR] = "CC_NO_PING_RESPONSE_ERROR",
582 [CC_EVENT_RING_FULL_ERROR] = "CC_EVENT_RING_FULL_ERROR",
583 [CC_INCOMPATIBLE_DEVICE_ERROR] = "CC_INCOMPATIBLE_DEVICE_ERROR",
584 [CC_MISSED_SERVICE_ERROR] = "CC_MISSED_SERVICE_ERROR",
585 [CC_COMMAND_RING_STOPPED] = "CC_COMMAND_RING_STOPPED",
586 [CC_COMMAND_ABORTED] = "CC_COMMAND_ABORTED",
587 [CC_STOPPED] = "CC_STOPPED",
588 [CC_STOPPED_LENGTH_INVALID] = "CC_STOPPED_LENGTH_INVALID",
589 [CC_MAX_EXIT_LATENCY_TOO_LARGE_ERROR]
590 = "CC_MAX_EXIT_LATENCY_TOO_LARGE_ERROR",
591 [CC_ISOCH_BUFFER_OVERRUN] = "CC_ISOCH_BUFFER_OVERRUN",
592 [CC_EVENT_LOST_ERROR] = "CC_EVENT_LOST_ERROR",
593 [CC_UNDEFINED_ERROR] = "CC_UNDEFINED_ERROR",
594 [CC_INVALID_STREAM_ID_ERROR] = "CC_INVALID_STREAM_ID_ERROR",
595 [CC_SECONDARY_BANDWIDTH_ERROR] = "CC_SECONDARY_BANDWIDTH_ERROR",
596 [CC_SPLIT_TRANSACTION_ERROR] = "CC_SPLIT_TRANSACTION_ERROR",
597};
598
1c82392a
GH
599static const char *ep_state_names[] = {
600 [EP_DISABLED] = "disabled",
601 [EP_RUNNING] = "running",
602 [EP_HALTED] = "halted",
603 [EP_STOPPED] = "stopped",
604 [EP_ERROR] = "error",
605};
606
f10de44e
GH
607static const char *lookup_name(uint32_t index, const char **list, uint32_t llen)
608{
609 if (index >= llen || list[index] == NULL) {
610 return "???";
611 }
612 return list[index];
613}
614
615static const char *trb_name(XHCITRB *trb)
616{
617 return lookup_name(TRB_TYPE(*trb), TRBType_names,
618 ARRAY_SIZE(TRBType_names));
619}
f10de44e 620
873123fe
GH
621static const char *event_name(XHCIEvent *event)
622{
623 return lookup_name(event->ccode, TRBCCode_names,
624 ARRAY_SIZE(TRBCCode_names));
625}
626
1c82392a
GH
627static const char *ep_state_name(uint32_t state)
628{
629 return lookup_name(state, ep_state_names,
630 ARRAY_SIZE(ep_state_names));
631}
632
f9955235
GH
633static bool xhci_get_flag(XHCIState *xhci, enum xhci_flags bit)
634{
635 return xhci->flags & (1 << bit);
636}
637
4f72b8d2
GH
638static void xhci_set_flag(XHCIState *xhci, enum xhci_flags bit)
639{
640 xhci->flags |= (1 << bit);
641}
642
01546fa6
GH
643static uint64_t xhci_mfindex_get(XHCIState *xhci)
644{
bc72ad67 645 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
01546fa6
GH
646 return (now - xhci->mfindex_start) / 125000;
647}
648
649static void xhci_mfwrap_update(XHCIState *xhci)
650{
651 const uint32_t bits = USBCMD_RS | USBCMD_EWE;
652 uint32_t mfindex, left;
653 int64_t now;
654
655 if ((xhci->usbcmd & bits) == bits) {
bc72ad67 656 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
01546fa6
GH
657 mfindex = ((now - xhci->mfindex_start) / 125000) & 0x3fff;
658 left = 0x4000 - mfindex;
bc72ad67 659 timer_mod(xhci->mfwrap_timer, now + left * 125000);
01546fa6 660 } else {
bc72ad67 661 timer_del(xhci->mfwrap_timer);
01546fa6
GH
662 }
663}
664
665static void xhci_mfwrap_timer(void *opaque)
666{
667 XHCIState *xhci = opaque;
668 XHCIEvent wrap = { ER_MFINDEX_WRAP, CC_SUCCESS };
669
962d11e1 670 xhci_event(xhci, &wrap, 0);
01546fa6
GH
671 xhci_mfwrap_update(xhci);
672}
62c6ae04 673
59a70ccd 674static inline dma_addr_t xhci_addr64(uint32_t low, uint32_t high)
62c6ae04 675{
59a70ccd
DG
676 if (sizeof(dma_addr_t) == 4) {
677 return low;
678 } else {
679 return low | (((dma_addr_t)high << 16) << 16);
680 }
62c6ae04
HM
681}
682
59a70ccd 683static inline dma_addr_t xhci_mask64(uint64_t addr)
62c6ae04 684{
59a70ccd
DG
685 if (sizeof(dma_addr_t) == 4) {
686 return addr & 0xffffffff;
687 } else {
688 return addr;
689 }
62c6ae04
HM
690}
691
616b5d53
DG
692static inline void xhci_dma_read_u32s(XHCIState *xhci, dma_addr_t addr,
693 uint32_t *buf, size_t len)
694{
695 int i;
696
697 assert((len % sizeof(uint32_t)) == 0);
698
9b7d3334 699 pci_dma_read(PCI_DEVICE(xhci), addr, buf, len);
616b5d53
DG
700
701 for (i = 0; i < (len / sizeof(uint32_t)); i++) {
702 buf[i] = le32_to_cpu(buf[i]);
703 }
704}
705
706static inline void xhci_dma_write_u32s(XHCIState *xhci, dma_addr_t addr,
707 uint32_t *buf, size_t len)
708{
709 int i;
182b391e
PX
710 uint32_t tmp[5];
711 uint32_t n = len / sizeof(uint32_t);
616b5d53
DG
712
713 assert((len % sizeof(uint32_t)) == 0);
182b391e 714 assert(n <= ARRAY_SIZE(tmp));
616b5d53 715
182b391e 716 for (i = 0; i < n; i++) {
616b5d53
DG
717 tmp[i] = cpu_to_le32(buf[i]);
718 }
9b7d3334 719 pci_dma_write(PCI_DEVICE(xhci), addr, tmp, len);
616b5d53
DG
720}
721
0846e635
GH
722static XHCIPort *xhci_lookup_port(XHCIState *xhci, struct USBPort *uport)
723{
724 int index;
725
726 if (!uport->dev) {
727 return NULL;
728 }
729 switch (uport->dev->speed) {
730 case USB_SPEED_LOW:
731 case USB_SPEED_FULL:
732 case USB_SPEED_HIGH:
7bafd888
GH
733 if (xhci_get_flag(xhci, XHCI_FLAG_SS_FIRST)) {
734 index = uport->index + xhci->numports_3;
735 } else {
736 index = uport->index;
737 }
0846e635
GH
738 break;
739 case USB_SPEED_SUPER:
7bafd888
GH
740 if (xhci_get_flag(xhci, XHCI_FLAG_SS_FIRST)) {
741 index = uport->index;
742 } else {
743 index = uport->index + xhci->numports_2;
744 }
0846e635
GH
745 break;
746 default:
747 return NULL;
748 }
749 return &xhci->ports[index];
750}
751
4c4abe7c 752static void xhci_intx_update(XHCIState *xhci)
62c6ae04 753{
9b7d3334 754 PCIDevice *pci_dev = PCI_DEVICE(xhci);
62c6ae04
HM
755 int level = 0;
756
9b7d3334
AF
757 if (msix_enabled(pci_dev) ||
758 msi_enabled(pci_dev)) {
4c4abe7c
GH
759 return;
760 }
761
962d11e1
GH
762 if (xhci->intr[0].iman & IMAN_IP &&
763 xhci->intr[0].iman & IMAN_IE &&
215bff17 764 xhci->usbcmd & USBCMD_INTE) {
62c6ae04
HM
765 level = 1;
766 }
767
4c4abe7c 768 trace_usb_xhci_irq_intx(level);
9e64f8a3 769 pci_set_irq(pci_dev, level);
4c4abe7c
GH
770}
771
962d11e1 772static void xhci_msix_update(XHCIState *xhci, int v)
4c47f800 773{
9b7d3334 774 PCIDevice *pci_dev = PCI_DEVICE(xhci);
4c47f800
GH
775 bool enabled;
776
9b7d3334 777 if (!msix_enabled(pci_dev)) {
4c47f800
GH
778 return;
779 }
780
962d11e1
GH
781 enabled = xhci->intr[v].iman & IMAN_IE;
782 if (enabled == xhci->intr[v].msix_used) {
4c47f800
GH
783 return;
784 }
785
786 if (enabled) {
962d11e1 787 trace_usb_xhci_irq_msix_use(v);
9b7d3334 788 msix_vector_use(pci_dev, v);
962d11e1 789 xhci->intr[v].msix_used = true;
4c47f800 790 } else {
962d11e1 791 trace_usb_xhci_irq_msix_unuse(v);
9b7d3334 792 msix_vector_unuse(pci_dev, v);
962d11e1 793 xhci->intr[v].msix_used = false;
4c47f800
GH
794 }
795}
796
962d11e1 797static void xhci_intr_raise(XHCIState *xhci, int v)
4c4abe7c 798{
9b7d3334 799 PCIDevice *pci_dev = PCI_DEVICE(xhci);
7da76e12 800 bool pending = (xhci->intr[v].erdp_low & ERDP_EHB);
9b7d3334 801
962d11e1
GH
802 xhci->intr[v].erdp_low |= ERDP_EHB;
803 xhci->intr[v].iman |= IMAN_IP;
2cae4119
GH
804 xhci->usbsts |= USBSTS_EINT;
805
7da76e12
GH
806 if (pending) {
807 return;
808 }
962d11e1 809 if (!(xhci->intr[v].iman & IMAN_IE)) {
4c4abe7c
GH
810 return;
811 }
812
813 if (!(xhci->usbcmd & USBCMD_INTE)) {
814 return;
815 }
816
9b7d3334 817 if (msix_enabled(pci_dev)) {
962d11e1 818 trace_usb_xhci_irq_msix(v);
9b7d3334 819 msix_notify(pci_dev, v);
4c47f800
GH
820 return;
821 }
822
9b7d3334 823 if (msi_enabled(pci_dev)) {
962d11e1 824 trace_usb_xhci_irq_msi(v);
9b7d3334 825 msi_notify(pci_dev, v);
4c4abe7c 826 return;
62c6ae04 827 }
4c4abe7c 828
962d11e1
GH
829 if (v == 0) {
830 trace_usb_xhci_irq_intx(1);
9e64f8a3 831 pci_irq_assert(pci_dev);
962d11e1 832 }
62c6ae04
HM
833}
834
835static inline int xhci_running(XHCIState *xhci)
836{
898248a3 837 return !(xhci->usbsts & USBSTS_HCH);
62c6ae04
HM
838}
839
840static void xhci_die(XHCIState *xhci)
841{
842 xhci->usbsts |= USBSTS_HCE;
d6bb65fc 843 DPRINTF("xhci: asserted controller error\n");
62c6ae04
HM
844}
845
962d11e1 846static void xhci_write_event(XHCIState *xhci, XHCIEvent *event, int v)
62c6ae04 847{
9b7d3334 848 PCIDevice *pci_dev = PCI_DEVICE(xhci);
962d11e1 849 XHCIInterrupter *intr = &xhci->intr[v];
62c6ae04 850 XHCITRB ev_trb;
59a70ccd 851 dma_addr_t addr;
62c6ae04
HM
852
853 ev_trb.parameter = cpu_to_le64(event->ptr);
854 ev_trb.status = cpu_to_le32(event->length | (event->ccode << 24));
855 ev_trb.control = (event->slotid << 24) | (event->epid << 16) |
856 event->flags | (event->type << TRB_TYPE_SHIFT);
962d11e1 857 if (intr->er_pcs) {
62c6ae04
HM
858 ev_trb.control |= TRB_C;
859 }
860 ev_trb.control = cpu_to_le32(ev_trb.control);
861
962d11e1 862 trace_usb_xhci_queue_event(v, intr->er_ep_idx, trb_name(&ev_trb),
873123fe
GH
863 event_name(event), ev_trb.parameter,
864 ev_trb.status, ev_trb.control);
62c6ae04 865
962d11e1 866 addr = intr->er_start + TRB_SIZE*intr->er_ep_idx;
9b7d3334 867 pci_dma_write(pci_dev, addr, &ev_trb, TRB_SIZE);
62c6ae04 868
962d11e1
GH
869 intr->er_ep_idx++;
870 if (intr->er_ep_idx >= intr->er_size) {
871 intr->er_ep_idx = 0;
872 intr->er_pcs = !intr->er_pcs;
62c6ae04
HM
873 }
874}
875
962d11e1 876static void xhci_event(XHCIState *xhci, XHCIEvent *event, int v)
62c6ae04 877{
2d1de850 878 XHCIInterrupter *intr;
59a70ccd 879 dma_addr_t erdp;
62c6ae04
HM
880 unsigned int dp_idx;
881
91062ae0
GH
882 if (v >= xhci->numintrs) {
883 DPRINTF("intr nr out of range (%d >= %d)\n", v, xhci->numintrs);
2d1de850
GH
884 return;
885 }
886 intr = &xhci->intr[v];
887
962d11e1
GH
888 erdp = xhci_addr64(intr->erdp_low, intr->erdp_high);
889 if (erdp < intr->er_start ||
890 erdp >= (intr->er_start + TRB_SIZE*intr->er_size)) {
d6bb65fc
GH
891 DPRINTF("xhci: ERDP out of bounds: "DMA_ADDR_FMT"\n", erdp);
892 DPRINTF("xhci: ER[%d] at "DMA_ADDR_FMT" len %d\n",
962d11e1 893 v, intr->er_start, intr->er_size);
62c6ae04
HM
894 xhci_die(xhci);
895 return;
896 }
897
962d11e1
GH
898 dp_idx = (erdp - intr->er_start) / TRB_SIZE;
899 assert(dp_idx < intr->er_size);
62c6ae04 900
898248a3
GH
901 if ((intr->er_ep_idx + 2) % intr->er_size == dp_idx) {
902 DPRINTF("xhci: ER %d full, send ring full error\n", v);
62c6ae04 903 XHCIEvent full = {ER_HOST_CONTROLLER, CC_EVENT_RING_FULL_ERROR};
898248a3
GH
904 xhci_write_event(xhci, &full, v);
905 } else if ((intr->er_ep_idx + 1) % intr->er_size == dp_idx) {
906 DPRINTF("xhci: ER %d full, drop event\n", v);
62c6ae04 907 } else {
962d11e1 908 xhci_write_event(xhci, event, v);
62c6ae04
HM
909 }
910
962d11e1 911 xhci_intr_raise(xhci, v);
62c6ae04
HM
912}
913
914static void xhci_ring_init(XHCIState *xhci, XHCIRing *ring,
59a70ccd 915 dma_addr_t base)
62c6ae04 916{
62c6ae04
HM
917 ring->dequeue = base;
918 ring->ccs = 1;
919}
920
921static TRBType xhci_ring_fetch(XHCIState *xhci, XHCIRing *ring, XHCITRB *trb,
59a70ccd 922 dma_addr_t *addr)
62c6ae04 923{
9b7d3334 924 PCIDevice *pci_dev = PCI_DEVICE(xhci);
05f43d44 925 uint32_t link_cnt = 0;
9b7d3334 926
62c6ae04
HM
927 while (1) {
928 TRBType type;
9b7d3334 929 pci_dma_read(pci_dev, ring->dequeue, trb, TRB_SIZE);
62c6ae04
HM
930 trb->addr = ring->dequeue;
931 trb->ccs = ring->ccs;
932 le64_to_cpus(&trb->parameter);
933 le32_to_cpus(&trb->status);
934 le32_to_cpus(&trb->control);
935
0703a4a7
GH
936 trace_usb_xhci_fetch_trb(ring->dequeue, trb_name(trb),
937 trb->parameter, trb->status, trb->control);
62c6ae04
HM
938
939 if ((trb->control & TRB_C) != ring->ccs) {
940 return 0;
941 }
942
943 type = TRB_TYPE(*trb);
944
945 if (type != TR_LINK) {
946 if (addr) {
947 *addr = ring->dequeue;
948 }
949 ring->dequeue += TRB_SIZE;
950 return type;
951 } else {
05f43d44 952 if (++link_cnt > TRB_LINK_LIMIT) {
f89b60f6 953 trace_usb_xhci_enforced_limit("trb-link");
05f43d44
GH
954 return 0;
955 }
62c6ae04
HM
956 ring->dequeue = xhci_mask64(trb->parameter);
957 if (trb->control & TRB_LK_TC) {
958 ring->ccs = !ring->ccs;
959 }
960 }
961 }
962}
963
964static int xhci_ring_chain_length(XHCIState *xhci, const XHCIRing *ring)
965{
9b7d3334 966 PCIDevice *pci_dev = PCI_DEVICE(xhci);
62c6ae04
HM
967 XHCITRB trb;
968 int length = 0;
59a70ccd 969 dma_addr_t dequeue = ring->dequeue;
62c6ae04
HM
970 bool ccs = ring->ccs;
971 /* hack to bundle together the two/three TDs that make a setup transfer */
972 bool control_td_set = 0;
05f43d44 973 uint32_t link_cnt = 0;
62c6ae04
HM
974
975 while (1) {
976 TRBType type;
9b7d3334 977 pci_dma_read(pci_dev, dequeue, &trb, TRB_SIZE);
62c6ae04
HM
978 le64_to_cpus(&trb.parameter);
979 le32_to_cpus(&trb.status);
980 le32_to_cpus(&trb.control);
981
62c6ae04
HM
982 if ((trb.control & TRB_C) != ccs) {
983 return -length;
984 }
985
986 type = TRB_TYPE(trb);
987
988 if (type == TR_LINK) {
05f43d44
GH
989 if (++link_cnt > TRB_LINK_LIMIT) {
990 return -length;
991 }
62c6ae04
HM
992 dequeue = xhci_mask64(trb.parameter);
993 if (trb.control & TRB_LK_TC) {
994 ccs = !ccs;
995 }
996 continue;
997 }
998
999 length += 1;
1000 dequeue += TRB_SIZE;
1001
1002 if (type == TR_SETUP) {
1003 control_td_set = 1;
1004 } else if (type == TR_STATUS) {
1005 control_td_set = 0;
1006 }
1007
1008 if (!control_td_set && !(trb.control & TRB_TR_CH)) {
1009 return length;
1010 }
1011 }
1012}
1013
962d11e1 1014static void xhci_er_reset(XHCIState *xhci, int v)
62c6ae04 1015{
962d11e1 1016 XHCIInterrupter *intr = &xhci->intr[v];
62c6ae04
HM
1017 XHCIEvRingSeg seg;
1018
e099ad4b
GH
1019 if (intr->erstsz == 0) {
1020 /* disabled */
1021 intr->er_start = 0;
1022 intr->er_size = 0;
1023 return;
1024 }
62c6ae04 1025 /* cache the (sole) event ring segment location */
962d11e1 1026 if (intr->erstsz != 1) {
d6bb65fc 1027 DPRINTF("xhci: invalid value for ERSTSZ: %d\n", intr->erstsz);
62c6ae04
HM
1028 xhci_die(xhci);
1029 return;
1030 }
962d11e1 1031 dma_addr_t erstba = xhci_addr64(intr->erstba_low, intr->erstba_high);
9b7d3334 1032 pci_dma_read(PCI_DEVICE(xhci), erstba, &seg, sizeof(seg));
62c6ae04
HM
1033 le32_to_cpus(&seg.addr_low);
1034 le32_to_cpus(&seg.addr_high);
1035 le32_to_cpus(&seg.size);
1036 if (seg.size < 16 || seg.size > 4096) {
d6bb65fc 1037 DPRINTF("xhci: invalid value for segment size: %d\n", seg.size);
62c6ae04
HM
1038 xhci_die(xhci);
1039 return;
1040 }
962d11e1
GH
1041 intr->er_start = xhci_addr64(seg.addr_low, seg.addr_high);
1042 intr->er_size = seg.size;
62c6ae04 1043
962d11e1
GH
1044 intr->er_ep_idx = 0;
1045 intr->er_pcs = 1;
62c6ae04 1046
962d11e1
GH
1047 DPRINTF("xhci: event ring[%d]:" DMA_ADDR_FMT " [%d]\n",
1048 v, intr->er_start, intr->er_size);
62c6ae04
HM
1049}
1050
1051static void xhci_run(XHCIState *xhci)
1052{
fc0ddaca 1053 trace_usb_xhci_run();
62c6ae04 1054 xhci->usbsts &= ~USBSTS_HCH;
bc72ad67 1055 xhci->mfindex_start = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
62c6ae04
HM
1056}
1057
1058static void xhci_stop(XHCIState *xhci)
1059{
fc0ddaca 1060 trace_usb_xhci_stop();
62c6ae04
HM
1061 xhci->usbsts |= USBSTS_HCH;
1062 xhci->crcr_low &= ~CRCR_CRR;
1063}
1064
024426ac
GH
1065static XHCIStreamContext *xhci_alloc_stream_contexts(unsigned count,
1066 dma_addr_t base)
1067{
1068 XHCIStreamContext *stctx;
1069 unsigned int i;
1070
1071 stctx = g_new0(XHCIStreamContext, count);
1072 for (i = 0; i < count; i++) {
1073 stctx[i].pctx = base + i * 16;
1074 stctx[i].sct = -1;
1075 }
1076 return stctx;
1077}
1078
1079static void xhci_reset_streams(XHCIEPContext *epctx)
1080{
1081 unsigned int i;
1082
1083 for (i = 0; i < epctx->nr_pstreams; i++) {
1084 epctx->pstreams[i].sct = -1;
024426ac
GH
1085 }
1086}
1087
1088static void xhci_alloc_streams(XHCIEPContext *epctx, dma_addr_t base)
1089{
1090 assert(epctx->pstreams == NULL);
f90e160b 1091 epctx->nr_pstreams = 2 << epctx->max_pstreams;
024426ac
GH
1092 epctx->pstreams = xhci_alloc_stream_contexts(epctx->nr_pstreams, base);
1093}
1094
1095static void xhci_free_streams(XHCIEPContext *epctx)
1096{
024426ac
GH
1097 assert(epctx->pstreams != NULL);
1098
024426ac
GH
1099 g_free(epctx->pstreams);
1100 epctx->pstreams = NULL;
1101 epctx->nr_pstreams = 0;
1102}
1103
72391da5
HG
1104static int xhci_epmask_to_eps_with_streams(XHCIState *xhci,
1105 unsigned int slotid,
1106 uint32_t epmask,
1107 XHCIEPContext **epctxs,
1108 USBEndpoint **eps)
1109{
1110 XHCISlot *slot;
1111 XHCIEPContext *epctx;
1112 USBEndpoint *ep;
1113 int i, j;
1114
1115 assert(slotid >= 1 && slotid <= xhci->numslots);
1116
1117 slot = &xhci->slots[slotid - 1];
1118
1119 for (i = 2, j = 0; i <= 31; i++) {
3d80365b 1120 if (!(epmask & (1u << i))) {
72391da5
HG
1121 continue;
1122 }
1123
1124 epctx = slot->eps[i - 1];
070eeef9 1125 ep = xhci_epid_to_usbep(epctx);
72391da5
HG
1126 if (!epctx || !epctx->nr_pstreams || !ep) {
1127 continue;
1128 }
1129
1130 if (epctxs) {
1131 epctxs[j] = epctx;
1132 }
1133 eps[j++] = ep;
1134 }
1135 return j;
1136}
1137
1138static void xhci_free_device_streams(XHCIState *xhci, unsigned int slotid,
1139 uint32_t epmask)
1140{
1141 USBEndpoint *eps[30];
1142 int nr_eps;
1143
1144 nr_eps = xhci_epmask_to_eps_with_streams(xhci, slotid, epmask, NULL, eps);
1145 if (nr_eps) {
1146 usb_device_free_streams(eps[0]->dev, eps, nr_eps);
1147 }
1148}
1149
1150static TRBCCode xhci_alloc_device_streams(XHCIState *xhci, unsigned int slotid,
1151 uint32_t epmask)
1152{
1153 XHCIEPContext *epctxs[30];
1154 USBEndpoint *eps[30];
1155 int i, r, nr_eps, req_nr_streams, dev_max_streams;
1156
1157 nr_eps = xhci_epmask_to_eps_with_streams(xhci, slotid, epmask, epctxs,
1158 eps);
1159 if (nr_eps == 0) {
1160 return CC_SUCCESS;
1161 }
1162
1163 req_nr_streams = epctxs[0]->nr_pstreams;
1164 dev_max_streams = eps[0]->max_streams;
1165
1166 for (i = 1; i < nr_eps; i++) {
1167 /*
1168 * HdG: I don't expect these to ever trigger, but if they do we need
1169 * to come up with another solution, ie group identical endpoints
1170 * together and make an usb_device_alloc_streams call per group.
1171 */
1172 if (epctxs[i]->nr_pstreams != req_nr_streams) {
1173 FIXME("guest streams config not identical for all eps");
1174 return CC_RESOURCE_ERROR;
1175 }
1176 if (eps[i]->max_streams != dev_max_streams) {
1177 FIXME("device streams config not identical for all eps");
1178 return CC_RESOURCE_ERROR;
1179 }
1180 }
1181
1182 /*
1183 * max-streams in both the device descriptor and in the controller is a
1184 * power of 2. But stream id 0 is reserved, so if a device can do up to 4
1185 * streams the guest will ask for 5 rounded up to the next power of 2 which
1186 * becomes 8. For emulated devices usb_device_alloc_streams is a nop.
1187 *
1188 * For redirected devices however this is an issue, as there we must ask
1189 * the real xhci controller to alloc streams, and the host driver for the
1190 * real xhci controller will likely disallow allocating more streams then
1191 * the device can handle.
1192 *
1193 * So we limit the requested nr_streams to the maximum number the device
1194 * can handle.
1195 */
1196 if (req_nr_streams > dev_max_streams) {
1197 req_nr_streams = dev_max_streams;
1198 }
1199
1200 r = usb_device_alloc_streams(eps[0]->dev, eps, nr_eps, req_nr_streams);
1201 if (r != 0) {
d6bb65fc 1202 DPRINTF("xhci: alloc streams failed\n");
72391da5
HG
1203 return CC_RESOURCE_ERROR;
1204 }
1205
1206 return CC_SUCCESS;
1207}
1208
024426ac
GH
1209static XHCIStreamContext *xhci_find_stream(XHCIEPContext *epctx,
1210 unsigned int streamid,
1211 uint32_t *cc_error)
1212{
1213 XHCIStreamContext *sctx;
1214 dma_addr_t base;
1215 uint32_t ctx[2], sct;
1216
1217 assert(streamid != 0);
1218 if (epctx->lsa) {
1219 if (streamid >= epctx->nr_pstreams) {
1220 *cc_error = CC_INVALID_STREAM_ID_ERROR;
1221 return NULL;
1222 }
1223 sctx = epctx->pstreams + streamid;
1224 } else {
1225 FIXME("secondary streams not implemented yet");
1226 }
1227
1228 if (sctx->sct == -1) {
1229 xhci_dma_read_u32s(epctx->xhci, sctx->pctx, ctx, sizeof(ctx));
024426ac
GH
1230 sct = (ctx[0] >> 1) & 0x07;
1231 if (epctx->lsa && sct != 1) {
1232 *cc_error = CC_INVALID_STREAM_TYPE_ERROR;
1233 return NULL;
1234 }
1235 sctx->sct = sct;
1236 base = xhci_addr64(ctx[0] & ~0xf, ctx[1]);
1237 xhci_ring_init(epctx->xhci, &sctx->ring, base);
1238 }
1239 return sctx;
1240}
1241
62c6ae04 1242static void xhci_set_ep_state(XHCIState *xhci, XHCIEPContext *epctx,
024426ac 1243 XHCIStreamContext *sctx, uint32_t state)
62c6ae04 1244{
c90daa1c 1245 XHCIRing *ring = NULL;
62c6ae04 1246 uint32_t ctx[5];
024426ac 1247 uint32_t ctx2[2];
62c6ae04 1248
616b5d53 1249 xhci_dma_read_u32s(xhci, epctx->pctx, ctx, sizeof(ctx));
62c6ae04
HM
1250 ctx[0] &= ~EP_STATE_MASK;
1251 ctx[0] |= state;
024426ac
GH
1252
1253 /* update ring dequeue ptr */
1254 if (epctx->nr_pstreams) {
1255 if (sctx != NULL) {
c90daa1c 1256 ring = &sctx->ring;
024426ac
GH
1257 xhci_dma_read_u32s(xhci, sctx->pctx, ctx2, sizeof(ctx2));
1258 ctx2[0] &= 0xe;
1259 ctx2[0] |= sctx->ring.dequeue | sctx->ring.ccs;
1260 ctx2[1] = (sctx->ring.dequeue >> 16) >> 16;
1261 xhci_dma_write_u32s(xhci, sctx->pctx, ctx2, sizeof(ctx2));
1262 }
1263 } else {
c90daa1c
HG
1264 ring = &epctx->ring;
1265 }
1266 if (ring) {
1267 ctx[2] = ring->dequeue | ring->ccs;
1268 ctx[3] = (ring->dequeue >> 16) >> 16;
1269
024426ac
GH
1270 DPRINTF("xhci: set epctx: " DMA_ADDR_FMT " state=%d dequeue=%08x%08x\n",
1271 epctx->pctx, state, ctx[3], ctx[2]);
1272 }
1273
616b5d53 1274 xhci_dma_write_u32s(xhci, epctx->pctx, ctx, sizeof(ctx));
1c82392a
GH
1275 if (epctx->state != state) {
1276 trace_usb_xhci_ep_state(epctx->slotid, epctx->epid,
1277 ep_state_name(epctx->state),
1278 ep_state_name(state));
1279 }
62c6ae04
HM
1280 epctx->state = state;
1281}
1282
3d139684
GH
1283static void xhci_ep_kick_timer(void *opaque)
1284{
1285 XHCIEPContext *epctx = opaque;
3a533ee8 1286 xhci_kick_epctx(epctx, 0);
3d139684
GH
1287}
1288
492b21f6
GH
1289static XHCIEPContext *xhci_alloc_epctx(XHCIState *xhci,
1290 unsigned int slotid,
1291 unsigned int epid)
1292{
1293 XHCIEPContext *epctx;
492b21f6
GH
1294
1295 epctx = g_new0(XHCIEPContext, 1);
1296 epctx->xhci = xhci;
1297 epctx->slotid = slotid;
1298 epctx->epid = epid;
1299
94b037f2 1300 QTAILQ_INIT(&epctx->transfers);
bc72ad67 1301 epctx->kick_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, xhci_ep_kick_timer, epctx);
492b21f6
GH
1302
1303 return epctx;
1304}
1305
003e15a1
GH
1306static void xhci_init_epctx(XHCIEPContext *epctx,
1307 dma_addr_t pctx, uint32_t *ctx)
62c6ae04 1308{
59a70ccd 1309 dma_addr_t dequeue;
62c6ae04 1310
62c6ae04 1311 dequeue = xhci_addr64(ctx[2] & ~0xf, ctx[3]);
62c6ae04
HM
1312
1313 epctx->type = (ctx[1] >> EP_TYPE_SHIFT) & EP_TYPE_MASK;
62c6ae04
HM
1314 epctx->pctx = pctx;
1315 epctx->max_psize = ctx[1]>>16;
1316 epctx->max_psize *= 1+((ctx[1]>>8)&0xff);
2aa6bfcb 1317 epctx->max_pstreams = (ctx[0] >> 10) & epctx->xhci->max_pstreams_mask;
024426ac 1318 epctx->lsa = (ctx[0] >> 15) & 1;
024426ac
GH
1319 if (epctx->max_pstreams) {
1320 xhci_alloc_streams(epctx, dequeue);
1321 } else {
003e15a1 1322 xhci_ring_init(epctx->xhci, &epctx->ring, dequeue);
024426ac
GH
1323 epctx->ring.ccs = ctx[2] & 1;
1324 }
62c6ae04 1325
ca716278 1326 epctx->interval = 1 << ((ctx[0] >> 16) & 0xff);
003e15a1
GH
1327}
1328
1329static TRBCCode xhci_enable_ep(XHCIState *xhci, unsigned int slotid,
1330 unsigned int epid, dma_addr_t pctx,
1331 uint32_t *ctx)
1332{
1333 XHCISlot *slot;
1334 XHCIEPContext *epctx;
1335
1336 trace_usb_xhci_ep_enable(slotid, epid);
1337 assert(slotid >= 1 && slotid <= xhci->numslots);
1338 assert(epid >= 1 && epid <= 31);
1339
1340 slot = &xhci->slots[slotid-1];
1341 if (slot->eps[epid-1]) {
1342 xhci_disable_ep(xhci, slotid, epid);
1343 }
1344
1345 epctx = xhci_alloc_epctx(xhci, slotid, epid);
1346 slot->eps[epid-1] = epctx;
1347 xhci_init_epctx(epctx, pctx, ctx);
1348
8c244210
GA
1349 DPRINTF("xhci: endpoint %d.%d type is %d, max transaction (burst) "
1350 "size is %d\n", epid/2, epid%2, epctx->type, epctx->max_psize);
1351
3d139684 1352 epctx->mfindex_last = 0;
3d139684 1353
62c6ae04
HM
1354 epctx->state = EP_RUNNING;
1355 ctx[0] &= ~EP_STATE_MASK;
1356 ctx[0] |= EP_RUNNING;
1357
1358 return CC_SUCCESS;
1359}
1360
94b037f2
GH
1361static XHCITransfer *xhci_ep_alloc_xfer(XHCIEPContext *epctx,
1362 uint32_t length)
1363{
1364 uint32_t limit = epctx->nr_pstreams + 16;
1365 XHCITransfer *xfer;
1366
1367 if (epctx->xfer_count >= limit) {
1368 return NULL;
1369 }
1370
1371 xfer = g_new0(XHCITransfer, 1);
94b037f2 1372 xfer->epctx = epctx;
94b037f2
GH
1373 xfer->trbs = g_new(XHCITRB, length);
1374 xfer->trb_count = length;
1375 usb_packet_init(&xfer->packet);
1376
1377 QTAILQ_INSERT_TAIL(&epctx->transfers, xfer, next);
1378 epctx->xfer_count++;
1379
1380 return xfer;
1381}
1382
1383static void xhci_ep_free_xfer(XHCITransfer *xfer)
1384{
1385 QTAILQ_REMOVE(&xfer->epctx->transfers, xfer, next);
1386 xfer->epctx->xfer_count--;
1387
1388 usb_packet_cleanup(&xfer->packet);
1389 g_free(xfer->trbs);
1390 g_free(xfer);
1391}
1392
582d6f4a 1393static int xhci_ep_nuke_one_xfer(XHCITransfer *t, TRBCCode report)
3151f209
HG
1394{
1395 int killed = 0;
1396
582d6f4a
HG
1397 if (report && (t->running_async || t->running_retry)) {
1398 t->status = report;
1399 xhci_xfer_report(t);
1400 }
1401
3151f209
HG
1402 if (t->running_async) {
1403 usb_cancel_packet(&t->packet);
1404 t->running_async = 0;
3151f209
HG
1405 killed = 1;
1406 }
1407 if (t->running_retry) {
5612564e
GH
1408 if (t->epctx) {
1409 t->epctx->retry = NULL;
1410 timer_del(t->epctx->kick_timer);
3151f209
HG
1411 }
1412 t->running_retry = 0;
582d6f4a 1413 killed = 1;
3151f209 1414 }
ef1e1e07 1415 g_free(t->trbs);
3151f209
HG
1416
1417 t->trbs = NULL;
94b037f2 1418 t->trb_count = 0;
3151f209
HG
1419
1420 return killed;
1421}
1422
62c6ae04 1423static int xhci_ep_nuke_xfers(XHCIState *xhci, unsigned int slotid,
582d6f4a 1424 unsigned int epid, TRBCCode report)
62c6ae04
HM
1425{
1426 XHCISlot *slot;
1427 XHCIEPContext *epctx;
94b037f2
GH
1428 XHCITransfer *xfer;
1429 int killed = 0;
f79738b0 1430 USBEndpoint *ep = NULL;
91062ae0 1431 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
1432 assert(epid >= 1 && epid <= 31);
1433
1434 DPRINTF("xhci_ep_nuke_xfers(%d, %d)\n", slotid, epid);
1435
1436 slot = &xhci->slots[slotid-1];
1437
1438 if (!slot->eps[epid-1]) {
1439 return 0;
1440 }
1441
1442 epctx = slot->eps[epid-1];
1443
94b037f2
GH
1444 for (;;) {
1445 xfer = QTAILQ_FIRST(&epctx->transfers);
1446 if (xfer == NULL) {
1447 break;
1448 }
1449 killed += xhci_ep_nuke_one_xfer(xfer, report);
582d6f4a
HG
1450 if (killed) {
1451 report = 0; /* Only report once */
1452 }
94b037f2 1453 xhci_ep_free_xfer(xfer);
62c6ae04 1454 }
518ad5f2 1455
070eeef9 1456 ep = xhci_epid_to_usbep(epctx);
f79738b0
HG
1457 if (ep) {
1458 usb_device_ep_stopped(ep->dev, ep);
1459 }
62c6ae04
HM
1460 return killed;
1461}
1462
1463static TRBCCode xhci_disable_ep(XHCIState *xhci, unsigned int slotid,
1464 unsigned int epid)
1465{
1466 XHCISlot *slot;
1467 XHCIEPContext *epctx;
1468
c1f6b493 1469 trace_usb_xhci_ep_disable(slotid, epid);
91062ae0 1470 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
1471 assert(epid >= 1 && epid <= 31);
1472
62c6ae04
HM
1473 slot = &xhci->slots[slotid-1];
1474
1475 if (!slot->eps[epid-1]) {
1476 DPRINTF("xhci: slot %d ep %d already disabled\n", slotid, epid);
1477 return CC_SUCCESS;
1478 }
1479
582d6f4a 1480 xhci_ep_nuke_xfers(xhci, slotid, epid, 0);
62c6ae04
HM
1481
1482 epctx = slot->eps[epid-1];
1483
024426ac
GH
1484 if (epctx->nr_pstreams) {
1485 xhci_free_streams(epctx);
1486 }
1487
491d68d9
RK
1488 /* only touch guest RAM if we're not resetting the HC */
1489 if (xhci->dcbaap_low || xhci->dcbaap_high) {
1490 xhci_set_ep_state(xhci, epctx, NULL, EP_DISABLED);
1491 }
62c6ae04 1492
bc72ad67 1493 timer_free(epctx->kick_timer);
62c6ae04
HM
1494 g_free(epctx);
1495 slot->eps[epid-1] = NULL;
1496
1497 return CC_SUCCESS;
1498}
1499
1500static TRBCCode xhci_stop_ep(XHCIState *xhci, unsigned int slotid,
1501 unsigned int epid)
1502{
1503 XHCISlot *slot;
1504 XHCIEPContext *epctx;
1505
c1f6b493 1506 trace_usb_xhci_ep_stop(slotid, epid);
91062ae0 1507 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
1508
1509 if (epid < 1 || epid > 31) {
d6bb65fc 1510 DPRINTF("xhci: bad ep %d\n", epid);
62c6ae04
HM
1511 return CC_TRB_ERROR;
1512 }
1513
1514 slot = &xhci->slots[slotid-1];
1515
1516 if (!slot->eps[epid-1]) {
1517 DPRINTF("xhci: slot %d ep %d not enabled\n", slotid, epid);
1518 return CC_EP_NOT_ENABLED_ERROR;
1519 }
1520
582d6f4a 1521 if (xhci_ep_nuke_xfers(xhci, slotid, epid, CC_STOPPED) > 0) {
d6bb65fc 1522 DPRINTF("xhci: FIXME: endpoint stopped w/ xfers running, "
62c6ae04
HM
1523 "data might be lost\n");
1524 }
1525
1526 epctx = slot->eps[epid-1];
1527
024426ac
GH
1528 xhci_set_ep_state(xhci, epctx, NULL, EP_STOPPED);
1529
1530 if (epctx->nr_pstreams) {
1531 xhci_reset_streams(epctx);
1532 }
62c6ae04
HM
1533
1534 return CC_SUCCESS;
1535}
1536
1537static TRBCCode xhci_reset_ep(XHCIState *xhci, unsigned int slotid,
1538 unsigned int epid)
1539{
1540 XHCISlot *slot;
1541 XHCIEPContext *epctx;
62c6ae04 1542
c1f6b493 1543 trace_usb_xhci_ep_reset(slotid, epid);
91062ae0 1544 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04 1545
62c6ae04 1546 if (epid < 1 || epid > 31) {
d6bb65fc 1547 DPRINTF("xhci: bad ep %d\n", epid);
62c6ae04
HM
1548 return CC_TRB_ERROR;
1549 }
1550
1551 slot = &xhci->slots[slotid-1];
1552
1553 if (!slot->eps[epid-1]) {
1554 DPRINTF("xhci: slot %d ep %d not enabled\n", slotid, epid);
1555 return CC_EP_NOT_ENABLED_ERROR;
1556 }
1557
1558 epctx = slot->eps[epid-1];
1559
1560 if (epctx->state != EP_HALTED) {
d6bb65fc 1561 DPRINTF("xhci: reset EP while EP %d not halted (%d)\n",
62c6ae04
HM
1562 epid, epctx->state);
1563 return CC_CONTEXT_STATE_ERROR;
1564 }
1565
582d6f4a 1566 if (xhci_ep_nuke_xfers(xhci, slotid, epid, 0) > 0) {
d6bb65fc 1567 DPRINTF("xhci: FIXME: endpoint reset w/ xfers running, "
62c6ae04
HM
1568 "data might be lost\n");
1569 }
1570
75cc1c1f 1571 if (!xhci->slots[slotid-1].uport ||
de9de157
HG
1572 !xhci->slots[slotid-1].uport->dev ||
1573 !xhci->slots[slotid-1].uport->dev->attached) {
62c6ae04
HM
1574 return CC_USB_TRANSACTION_ERROR;
1575 }
1576
024426ac
GH
1577 xhci_set_ep_state(xhci, epctx, NULL, EP_STOPPED);
1578
1579 if (epctx->nr_pstreams) {
1580 xhci_reset_streams(epctx);
1581 }
62c6ae04
HM
1582
1583 return CC_SUCCESS;
1584}
1585
1586static TRBCCode xhci_set_ep_dequeue(XHCIState *xhci, unsigned int slotid,
024426ac
GH
1587 unsigned int epid, unsigned int streamid,
1588 uint64_t pdequeue)
62c6ae04
HM
1589{
1590 XHCISlot *slot;
1591 XHCIEPContext *epctx;
024426ac 1592 XHCIStreamContext *sctx;
59a70ccd 1593 dma_addr_t dequeue;
62c6ae04 1594
91062ae0 1595 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
1596
1597 if (epid < 1 || epid > 31) {
d6bb65fc 1598 DPRINTF("xhci: bad ep %d\n", epid);
62c6ae04
HM
1599 return CC_TRB_ERROR;
1600 }
1601
024426ac 1602 trace_usb_xhci_ep_set_dequeue(slotid, epid, streamid, pdequeue);
62c6ae04
HM
1603 dequeue = xhci_mask64(pdequeue);
1604
1605 slot = &xhci->slots[slotid-1];
1606
1607 if (!slot->eps[epid-1]) {
1608 DPRINTF("xhci: slot %d ep %d not enabled\n", slotid, epid);
1609 return CC_EP_NOT_ENABLED_ERROR;
1610 }
1611
1612 epctx = slot->eps[epid-1];
1613
62c6ae04 1614 if (epctx->state != EP_STOPPED) {
d6bb65fc 1615 DPRINTF("xhci: set EP dequeue pointer while EP %d not stopped\n", epid);
62c6ae04
HM
1616 return CC_CONTEXT_STATE_ERROR;
1617 }
1618
024426ac
GH
1619 if (epctx->nr_pstreams) {
1620 uint32_t err;
1621 sctx = xhci_find_stream(epctx, streamid, &err);
1622 if (sctx == NULL) {
1623 return err;
1624 }
1625 xhci_ring_init(xhci, &sctx->ring, dequeue & ~0xf);
1626 sctx->ring.ccs = dequeue & 1;
1627 } else {
1628 sctx = NULL;
1629 xhci_ring_init(xhci, &epctx->ring, dequeue & ~0xF);
1630 epctx->ring.ccs = dequeue & 1;
1631 }
62c6ae04 1632
024426ac 1633 xhci_set_ep_state(xhci, epctx, sctx, EP_STOPPED);
62c6ae04
HM
1634
1635 return CC_SUCCESS;
1636}
1637
a6fb2ddb 1638static int xhci_xfer_create_sgl(XHCITransfer *xfer, int in_xfer)
62c6ae04 1639{
5612564e 1640 XHCIState *xhci = xfer->epctx->xhci;
d5a15814 1641 int i;
62c6ae04 1642
a6fb2ddb 1643 xfer->int_req = false;
9b7d3334 1644 pci_dma_sglist_init(&xfer->sgl, PCI_DEVICE(xhci), xfer->trb_count);
62c6ae04
HM
1645 for (i = 0; i < xfer->trb_count; i++) {
1646 XHCITRB *trb = &xfer->trbs[i];
59a70ccd 1647 dma_addr_t addr;
62c6ae04
HM
1648 unsigned int chunk = 0;
1649
a6fb2ddb
HG
1650 if (trb->control & TRB_TR_IOC) {
1651 xfer->int_req = true;
1652 }
1653
62c6ae04
HM
1654 switch (TRB_TYPE(*trb)) {
1655 case TR_DATA:
1656 if ((!(trb->control & TRB_TR_DIR)) != (!in_xfer)) {
d6bb65fc 1657 DPRINTF("xhci: data direction mismatch for TR_DATA\n");
d5a15814 1658 goto err;
62c6ae04
HM
1659 }
1660 /* fallthrough */
1661 case TR_NORMAL:
1662 case TR_ISOCH:
1663 addr = xhci_mask64(trb->parameter);
d5a15814
GH
1664 chunk = trb->status & 0x1ffff;
1665 if (trb->control & TRB_TR_IDT) {
1666 if (chunk > 8 || in_xfer) {
d6bb65fc 1667 DPRINTF("xhci: invalid immediate data TRB\n");
d5a15814
GH
1668 goto err;
1669 }
1670 qemu_sglist_add(&xfer->sgl, trb->addr, chunk);
1671 } else {
1672 qemu_sglist_add(&xfer->sgl, addr, chunk);
1673 }
1674 break;
1675 }
1676 }
1677
d5a15814
GH
1678 return 0;
1679
1680err:
1681 qemu_sglist_destroy(&xfer->sgl);
1682 xhci_die(xhci);
1683 return -1;
1684}
1685
1686static void xhci_xfer_unmap(XHCITransfer *xfer)
1687{
1688 usb_packet_unmap(&xfer->packet, &xfer->sgl);
1689 qemu_sglist_destroy(&xfer->sgl);
1690}
1691
1692static void xhci_xfer_report(XHCITransfer *xfer)
1693{
1694 uint32_t edtla = 0;
1695 unsigned int left;
1696 bool reported = 0;
1697 bool shortpkt = 0;
1698 XHCIEvent event = {ER_TRANSFER, CC_SUCCESS};
5612564e 1699 XHCIState *xhci = xfer->epctx->xhci;
d5a15814
GH
1700 int i;
1701
9b8251c5 1702 left = xfer->packet.actual_length;
d5a15814
GH
1703
1704 for (i = 0; i < xfer->trb_count; i++) {
1705 XHCITRB *trb = &xfer->trbs[i];
1706 unsigned int chunk = 0;
1707
1708 switch (TRB_TYPE(*trb)) {
b66ad1f1
HPS
1709 case TR_SETUP:
1710 chunk = trb->status & 0x1ffff;
1711 if (chunk > 8) {
1712 chunk = 8;
1713 }
1714 break;
d5a15814
GH
1715 case TR_DATA:
1716 case TR_NORMAL:
1717 case TR_ISOCH:
62c6ae04
HM
1718 chunk = trb->status & 0x1ffff;
1719 if (chunk > left) {
1720 chunk = left;
d5a15814
GH
1721 if (xfer->status == CC_SUCCESS) {
1722 shortpkt = 1;
62c6ae04
HM
1723 }
1724 }
1725 left -= chunk;
62c6ae04 1726 edtla += chunk;
62c6ae04
HM
1727 break;
1728 case TR_STATUS:
1729 reported = 0;
1730 shortpkt = 0;
1731 break;
1732 }
1733
88dbed3f
GH
1734 if (!reported && ((trb->control & TRB_TR_IOC) ||
1735 (shortpkt && (trb->control & TRB_TR_ISP)) ||
1736 (xfer->status != CC_SUCCESS && left == 0))) {
d6fcb293
GH
1737 event.slotid = xfer->epctx->slotid;
1738 event.epid = xfer->epctx->epid;
62c6ae04
HM
1739 event.length = (trb->status & 0x1ffff) - chunk;
1740 event.flags = 0;
1741 event.ptr = trb->addr;
1742 if (xfer->status == CC_SUCCESS) {
1743 event.ccode = shortpkt ? CC_SHORT_PACKET : CC_SUCCESS;
1744 } else {
1745 event.ccode = xfer->status;
1746 }
1747 if (TRB_TYPE(*trb) == TR_EVDATA) {
1748 event.ptr = trb->parameter;
1749 event.flags |= TRB_EV_ED;
1750 event.length = edtla & 0xffffff;
1751 DPRINTF("xhci_xfer_data: EDTLA=%d\n", event.length);
1752 edtla = 0;
1753 }
2d1de850 1754 xhci_event(xhci, &event, TRB_INTR(*trb));
62c6ae04 1755 reported = 1;
d5a15814
GH
1756 if (xfer->status != CC_SUCCESS) {
1757 return;
1758 }
62c6ae04 1759 }
df0f1692
GH
1760
1761 switch (TRB_TYPE(*trb)) {
1762 case TR_SETUP:
1763 reported = 0;
1764 shortpkt = 0;
1765 break;
1766 }
1767
62c6ae04 1768 }
62c6ae04
HM
1769}
1770
1771static void xhci_stall_ep(XHCITransfer *xfer)
1772{
5612564e
GH
1773 XHCIEPContext *epctx = xfer->epctx;
1774 XHCIState *xhci = epctx->xhci;
024426ac
GH
1775 uint32_t err;
1776 XHCIStreamContext *sctx;
62c6ae04 1777
024426ac
GH
1778 if (epctx->nr_pstreams) {
1779 sctx = xhci_find_stream(epctx, xfer->streamid, &err);
1780 if (sctx == NULL) {
1781 return;
1782 }
1783 sctx->ring.dequeue = xfer->trbs[0].addr;
1784 sctx->ring.ccs = xfer->trbs[0].ccs;
1785 xhci_set_ep_state(xhci, epctx, sctx, EP_HALTED);
1786 } else {
1787 epctx->ring.dequeue = xfer->trbs[0].addr;
1788 epctx->ring.ccs = xfer->trbs[0].ccs;
1789 xhci_set_ep_state(xhci, epctx, NULL, EP_HALTED);
1790 }
62c6ae04
HM
1791}
1792
1793static int xhci_submit(XHCIState *xhci, XHCITransfer *xfer,
1794 XHCIEPContext *epctx);
1795
5c08106f
GH
1796static int xhci_setup_packet(XHCITransfer *xfer)
1797{
079d0b7f
GH
1798 USBEndpoint *ep;
1799 int dir;
1800
1801 dir = xfer->in_xfer ? USB_TOKEN_IN : USB_TOKEN_OUT;
5c08106f
GH
1802
1803 if (xfer->packet.ep) {
1804 ep = xfer->packet.ep;
5c08106f 1805 } else {
070eeef9 1806 ep = xhci_epid_to_usbep(xfer->epctx);
518ad5f2 1807 if (!ep) {
d6bb65fc 1808 DPRINTF("xhci: slot %d has no device\n",
ccaf87a0 1809 xfer->slotid);
5c08106f
GH
1810 return -1;
1811 }
5c08106f
GH
1812 }
1813
a6fb2ddb 1814 xhci_xfer_create_sgl(xfer, dir == USB_TOKEN_IN); /* Also sets int_req */
024426ac 1815 usb_packet_setup(&xfer->packet, dir, ep, xfer->streamid,
8550a02d 1816 xfer->trbs[0].addr, false, xfer->int_req);
a6fb2ddb 1817 usb_packet_map(&xfer->packet, &xfer->sgl);
62c6ae04 1818 DPRINTF("xhci: setup packet pid 0x%x addr %d ep %d\n",
518ad5f2 1819 xfer->packet.pid, ep->dev->addr, ep->nr);
62c6ae04
HM
1820 return 0;
1821}
1822
13e8ff7a 1823static int xhci_try_complete_packet(XHCITransfer *xfer)
62c6ae04 1824{
9a77a0f5 1825 if (xfer->packet.status == USB_RET_ASYNC) {
97df650b 1826 trace_usb_xhci_xfer_async(xfer);
7c605a23
GH
1827 xfer->running_async = 1;
1828 xfer->running_retry = 0;
1829 xfer->complete = 0;
7c605a23 1830 return 0;
9a77a0f5 1831 } else if (xfer->packet.status == USB_RET_NAK) {
97df650b 1832 trace_usb_xhci_xfer_nak(xfer);
7c605a23
GH
1833 xfer->running_async = 0;
1834 xfer->running_retry = 1;
62c6ae04 1835 xfer->complete = 0;
62c6ae04
HM
1836 return 0;
1837 } else {
7c605a23
GH
1838 xfer->running_async = 0;
1839 xfer->running_retry = 0;
62c6ae04 1840 xfer->complete = 1;
d5a15814 1841 xhci_xfer_unmap(xfer);
62c6ae04
HM
1842 }
1843
9a77a0f5
HG
1844 if (xfer->packet.status == USB_RET_SUCCESS) {
1845 trace_usb_xhci_xfer_success(xfer, xfer->packet.actual_length);
d5a15814
GH
1846 xfer->status = CC_SUCCESS;
1847 xhci_xfer_report(xfer);
62c6ae04
HM
1848 return 0;
1849 }
1850
1851 /* error */
9a77a0f5
HG
1852 trace_usb_xhci_xfer_error(xfer, xfer->packet.status);
1853 switch (xfer->packet.status) {
62c6ae04 1854 case USB_RET_NODEV:
ed60ff02 1855 case USB_RET_IOERROR:
62c6ae04 1856 xfer->status = CC_USB_TRANSACTION_ERROR;
d5a15814 1857 xhci_xfer_report(xfer);
62c6ae04
HM
1858 xhci_stall_ep(xfer);
1859 break;
1860 case USB_RET_STALL:
1861 xfer->status = CC_STALL_ERROR;
d5a15814 1862 xhci_xfer_report(xfer);
62c6ae04
HM
1863 xhci_stall_ep(xfer);
1864 break;
4e906d56
GH
1865 case USB_RET_BABBLE:
1866 xfer->status = CC_BABBLE_DETECTED;
1867 xhci_xfer_report(xfer);
1868 xhci_stall_ep(xfer);
1869 break;
62c6ae04 1870 default:
d6bb65fc 1871 DPRINTF("%s: FIXME: status = %d\n", __func__,
9a77a0f5 1872 xfer->packet.status);
024426ac 1873 FIXME("unhandled USB_RET_*");
62c6ae04
HM
1874 }
1875 return 0;
1876}
1877
1878static int xhci_fire_ctl_transfer(XHCIState *xhci, XHCITransfer *xfer)
1879{
1880 XHCITRB *trb_setup, *trb_status;
2850ca9e 1881 uint8_t bmRequestType;
62c6ae04 1882
62c6ae04
HM
1883 trb_setup = &xfer->trbs[0];
1884 trb_status = &xfer->trbs[xfer->trb_count-1];
1885
d6fcb293
GH
1886 trace_usb_xhci_xfer_start(xfer, xfer->epctx->slotid,
1887 xfer->epctx->epid, xfer->streamid);
97df650b 1888
62c6ae04
HM
1889 /* at most one Event Data TRB allowed after STATUS */
1890 if (TRB_TYPE(*trb_status) == TR_EVDATA && xfer->trb_count > 2) {
1891 trb_status--;
1892 }
1893
1894 /* do some sanity checks */
1895 if (TRB_TYPE(*trb_setup) != TR_SETUP) {
d6bb65fc 1896 DPRINTF("xhci: ep0 first TD not SETUP: %d\n",
62c6ae04
HM
1897 TRB_TYPE(*trb_setup));
1898 return -1;
1899 }
1900 if (TRB_TYPE(*trb_status) != TR_STATUS) {
d6bb65fc 1901 DPRINTF("xhci: ep0 last TD not STATUS: %d\n",
62c6ae04
HM
1902 TRB_TYPE(*trb_status));
1903 return -1;
1904 }
1905 if (!(trb_setup->control & TRB_TR_IDT)) {
d6bb65fc 1906 DPRINTF("xhci: Setup TRB doesn't have IDT set\n");
62c6ae04
HM
1907 return -1;
1908 }
1909 if ((trb_setup->status & 0x1ffff) != 8) {
d6bb65fc 1910 DPRINTF("xhci: Setup TRB has bad length (%d)\n",
62c6ae04
HM
1911 (trb_setup->status & 0x1ffff));
1912 return -1;
1913 }
1914
1915 bmRequestType = trb_setup->parameter;
62c6ae04 1916
62c6ae04
HM
1917 xfer->in_xfer = bmRequestType & USB_DIR_IN;
1918 xfer->iso_xfer = false;
4d7a81c0 1919 xfer->timed_xfer = false;
62c6ae04 1920
5c08106f
GH
1921 if (xhci_setup_packet(xfer) < 0) {
1922 return -1;
1923 }
2850ca9e 1924 xfer->packet.parameter = trb_setup->parameter;
2850ca9e 1925
9a77a0f5 1926 usb_handle_packet(xfer->packet.ep->dev, &xfer->packet);
13e8ff7a 1927 xhci_try_complete_packet(xfer);
62c6ae04
HM
1928 return 0;
1929}
1930
4d7a81c0
GH
1931static void xhci_calc_intr_kick(XHCIState *xhci, XHCITransfer *xfer,
1932 XHCIEPContext *epctx, uint64_t mfindex)
1933{
1934 uint64_t asap = ((mfindex + epctx->interval - 1) &
1935 ~(epctx->interval-1));
1936 uint64_t kick = epctx->mfindex_last + epctx->interval;
1937
1938 assert(epctx->interval != 0);
1939 xfer->mfindex_kick = MAX(asap, kick);
1940}
1941
3d139684
GH
1942static void xhci_calc_iso_kick(XHCIState *xhci, XHCITransfer *xfer,
1943 XHCIEPContext *epctx, uint64_t mfindex)
1944{
1945 if (xfer->trbs[0].control & TRB_TR_SIA) {
1946 uint64_t asap = ((mfindex + epctx->interval - 1) &
1947 ~(epctx->interval-1));
1948 if (asap >= epctx->mfindex_last &&
1949 asap <= epctx->mfindex_last + epctx->interval * 4) {
1950 xfer->mfindex_kick = epctx->mfindex_last + epctx->interval;
1951 } else {
1952 xfer->mfindex_kick = asap;
1953 }
1954 } else {
786ad214
GH
1955 xfer->mfindex_kick = ((xfer->trbs[0].control >> TRB_TR_FRAMEID_SHIFT)
1956 & TRB_TR_FRAMEID_MASK) << 3;
3d139684 1957 xfer->mfindex_kick |= mfindex & ~0x3fff;
cc03ff9d 1958 if (xfer->mfindex_kick + 0x100 < mfindex) {
3d139684
GH
1959 xfer->mfindex_kick += 0x4000;
1960 }
1961 }
1962}
1963
4d7a81c0
GH
1964static void xhci_check_intr_iso_kick(XHCIState *xhci, XHCITransfer *xfer,
1965 XHCIEPContext *epctx, uint64_t mfindex)
3d139684
GH
1966{
1967 if (xfer->mfindex_kick > mfindex) {
bc72ad67 1968 timer_mod(epctx->kick_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
3d139684
GH
1969 (xfer->mfindex_kick - mfindex) * 125000);
1970 xfer->running_retry = 1;
1971 } else {
1972 epctx->mfindex_last = xfer->mfindex_kick;
bc72ad67 1973 timer_del(epctx->kick_timer);
3d139684
GH
1974 xfer->running_retry = 0;
1975 }
1976}
1977
1978
62c6ae04
HM
1979static int xhci_submit(XHCIState *xhci, XHCITransfer *xfer, XHCIEPContext *epctx)
1980{
3d139684 1981 uint64_t mfindex;
62c6ae04
HM
1982
1983 DPRINTF("xhci_submit(slotid=%d,epid=%d)\n", xfer->slotid, xfer->epid);
62c6ae04
HM
1984
1985 xfer->in_xfer = epctx->type>>2;
62c6ae04 1986
62c6ae04
HM
1987 switch(epctx->type) {
1988 case ET_INTR_OUT:
1989 case ET_INTR_IN:
4d7a81c0
GH
1990 xfer->pkts = 0;
1991 xfer->iso_xfer = false;
1992 xfer->timed_xfer = true;
1993 mfindex = xhci_mfindex_get(xhci);
1994 xhci_calc_intr_kick(xhci, xfer, epctx, mfindex);
1995 xhci_check_intr_iso_kick(xhci, xfer, epctx, mfindex);
1996 if (xfer->running_retry) {
1997 return -1;
1998 }
1999 break;
62c6ae04
HM
2000 case ET_BULK_OUT:
2001 case ET_BULK_IN:
3d139684
GH
2002 xfer->pkts = 0;
2003 xfer->iso_xfer = false;
4d7a81c0 2004 xfer->timed_xfer = false;
62c6ae04
HM
2005 break;
2006 case ET_ISO_OUT:
2007 case ET_ISO_IN:
3d139684
GH
2008 xfer->pkts = 1;
2009 xfer->iso_xfer = true;
4d7a81c0 2010 xfer->timed_xfer = true;
3d139684
GH
2011 mfindex = xhci_mfindex_get(xhci);
2012 xhci_calc_iso_kick(xhci, xfer, epctx, mfindex);
4d7a81c0 2013 xhci_check_intr_iso_kick(xhci, xfer, epctx, mfindex);
3d139684
GH
2014 if (xfer->running_retry) {
2015 return -1;
2016 }
62c6ae04
HM
2017 break;
2018 default:
4f9cc734 2019 trace_usb_xhci_unimplemented("endpoint type", epctx->type);
62c6ae04
HM
2020 return -1;
2021 }
2022
5c08106f
GH
2023 if (xhci_setup_packet(xfer) < 0) {
2024 return -1;
2025 }
9a77a0f5 2026 usb_handle_packet(xfer->packet.ep->dev, &xfer->packet);
13e8ff7a 2027 xhci_try_complete_packet(xfer);
62c6ae04
HM
2028 return 0;
2029}
2030
2031static int xhci_fire_transfer(XHCIState *xhci, XHCITransfer *xfer, XHCIEPContext *epctx)
2032{
d6fcb293
GH
2033 trace_usb_xhci_xfer_start(xfer, xfer->epctx->slotid,
2034 xfer->epctx->epid, xfer->streamid);
331e9406 2035 return xhci_submit(xhci, xfer, epctx);
62c6ae04
HM
2036}
2037
024426ac
GH
2038static void xhci_kick_ep(XHCIState *xhci, unsigned int slotid,
2039 unsigned int epid, unsigned int streamid)
62c6ae04
HM
2040{
2041 XHCIEPContext *epctx;
62c6ae04 2042
91062ae0 2043 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04 2044 assert(epid >= 1 && epid <= 31);
62c6ae04
HM
2045
2046 if (!xhci->slots[slotid-1].enabled) {
d6bb65fc 2047 DPRINTF("xhci: xhci_kick_ep for disabled slot %d\n", slotid);
62c6ae04
HM
2048 return;
2049 }
2050 epctx = xhci->slots[slotid-1].eps[epid-1];
2051 if (!epctx) {
d6bb65fc 2052 DPRINTF("xhci: xhci_kick_ep for disabled endpoint %d,%d\n",
62c6ae04
HM
2053 epid, slotid);
2054 return;
2055 }
2056
96d87bdd
GH
2057 if (epctx->kick_active) {
2058 return;
2059 }
3a533ee8
GH
2060 xhci_kick_epctx(epctx, streamid);
2061}
2062
2063static void xhci_kick_epctx(XHCIEPContext *epctx, unsigned int streamid)
2064{
2065 XHCIState *xhci = epctx->xhci;
243afe85 2066 XHCIStreamContext *stctx = NULL;
3a533ee8
GH
2067 XHCITransfer *xfer;
2068 XHCIRing *ring;
2069 USBEndpoint *ep = NULL;
2070 uint64_t mfindex;
f89b60f6 2071 unsigned int count = 0;
3a533ee8
GH
2072 int length;
2073 int i;
2074
2075 trace_usb_xhci_ep_kick(epctx->slotid, epctx->epid, streamid);
96d87bdd 2076 assert(!epctx->kick_active);
3a533ee8 2077
de9de157
HG
2078 /* If the device has been detached, but the guest has not noticed this
2079 yet the 2 above checks will succeed, but we must NOT continue */
3a533ee8
GH
2080 if (!xhci->slots[epctx->slotid - 1].uport ||
2081 !xhci->slots[epctx->slotid - 1].uport->dev ||
2082 !xhci->slots[epctx->slotid - 1].uport->dev->attached) {
de9de157
HG
2083 return;
2084 }
2085
7c605a23 2086 if (epctx->retry) {
7c605a23 2087 XHCITransfer *xfer = epctx->retry;
7c605a23 2088
97df650b 2089 trace_usb_xhci_xfer_retry(xfer);
7c605a23 2090 assert(xfer->running_retry);
4d7a81c0
GH
2091 if (xfer->timed_xfer) {
2092 /* time to kick the transfer? */
3d139684 2093 mfindex = xhci_mfindex_get(xhci);
4d7a81c0 2094 xhci_check_intr_iso_kick(xhci, xfer, epctx, mfindex);
3d139684
GH
2095 if (xfer->running_retry) {
2096 return;
2097 }
4d7a81c0
GH
2098 xfer->timed_xfer = 0;
2099 xfer->running_retry = 1;
2100 }
2101 if (xfer->iso_xfer) {
2102 /* retry iso transfer */
3d139684
GH
2103 if (xhci_setup_packet(xfer) < 0) {
2104 return;
2105 }
9a77a0f5
HG
2106 usb_handle_packet(xfer->packet.ep->dev, &xfer->packet);
2107 assert(xfer->packet.status != USB_RET_NAK);
13e8ff7a 2108 xhci_try_complete_packet(xfer);
3d139684
GH
2109 } else {
2110 /* retry nak'ed transfer */
2111 if (xhci_setup_packet(xfer) < 0) {
2112 return;
2113 }
9a77a0f5
HG
2114 usb_handle_packet(xfer->packet.ep->dev, &xfer->packet);
2115 if (xfer->packet.status == USB_RET_NAK) {
3d139684
GH
2116 return;
2117 }
13e8ff7a 2118 xhci_try_complete_packet(xfer);
7c605a23 2119 }
7c605a23 2120 assert(!xfer->running_retry);
f94d18d6
GH
2121 if (xfer->complete) {
2122 xhci_ep_free_xfer(epctx->retry);
2123 }
7c605a23
GH
2124 epctx->retry = NULL;
2125 }
2126
62c6ae04
HM
2127 if (epctx->state == EP_HALTED) {
2128 DPRINTF("xhci: ep halted, not running schedule\n");
2129 return;
2130 }
2131
024426ac
GH
2132
2133 if (epctx->nr_pstreams) {
2134 uint32_t err;
2135 stctx = xhci_find_stream(epctx, streamid, &err);
2136 if (stctx == NULL) {
2137 return;
2138 }
2139 ring = &stctx->ring;
2140 xhci_set_ep_state(xhci, epctx, stctx, EP_RUNNING);
2141 } else {
2142 ring = &epctx->ring;
2143 streamid = 0;
2144 xhci_set_ep_state(xhci, epctx, NULL, EP_RUNNING);
2145 }
7d04c2b7 2146 assert(ring->dequeue != 0);
62c6ae04 2147
96d87bdd 2148 epctx->kick_active++;
62c6ae04 2149 while (1) {
024426ac 2150 length = xhci_ring_chain_length(xhci, ring);
94b037f2 2151 if (length <= 0) {
62c6ae04 2152 break;
62c6ae04 2153 }
94b037f2
GH
2154 xfer = xhci_ep_alloc_xfer(epctx, length);
2155 if (xfer == NULL) {
2156 break;
62c6ae04 2157 }
62c6ae04
HM
2158
2159 for (i = 0; i < length; i++) {
f81bb347
AK
2160 TRBType type;
2161 type = xhci_ring_fetch(xhci, ring, &xfer->trbs[i], NULL);
2162 assert(type);
62c6ae04 2163 }
024426ac 2164 xfer->streamid = streamid;
62c6ae04 2165
3a533ee8 2166 if (epctx->epid == 1) {
94b037f2 2167 xhci_fire_ctl_transfer(xhci, xfer);
62c6ae04 2168 } else {
94b037f2
GH
2169 xhci_fire_transfer(xhci, xfer, epctx);
2170 }
2171 if (xfer->complete) {
2172 xhci_ep_free_xfer(xfer);
2173 xfer = NULL;
62c6ae04
HM
2174 }
2175
3c4866e0 2176 if (epctx->state == EP_HALTED) {
3c4866e0
GH
2177 break;
2178 }
94b037f2 2179 if (xfer != NULL && xfer->running_retry) {
7c605a23
GH
2180 DPRINTF("xhci: xfer nacked, stopping schedule\n");
2181 epctx->retry = xfer;
2182 break;
2183 }
f89b60f6
GH
2184 if (count++ > TRANSFER_LIMIT) {
2185 trace_usb_xhci_enforced_limit("transfers");
2186 break;
2187 }
62c6ae04 2188 }
243afe85
GH
2189 /* update ring dequeue ptr */
2190 xhci_set_ep_state(xhci, epctx, stctx, epctx->state);
96d87bdd 2191 epctx->kick_active--;
518ad5f2 2192
070eeef9 2193 ep = xhci_epid_to_usbep(epctx);
36dfe324
HG
2194 if (ep) {
2195 usb_device_flush_ep_queue(ep->dev, ep);
2196 }
62c6ae04
HM
2197}
2198
2199static TRBCCode xhci_enable_slot(XHCIState *xhci, unsigned int slotid)
2200{
348f1037 2201 trace_usb_xhci_slot_enable(slotid);
91062ae0 2202 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04 2203 xhci->slots[slotid-1].enabled = 1;
ccaf87a0 2204 xhci->slots[slotid-1].uport = NULL;
62c6ae04
HM
2205 memset(xhci->slots[slotid-1].eps, 0, sizeof(XHCIEPContext*)*31);
2206
2207 return CC_SUCCESS;
2208}
2209
2210static TRBCCode xhci_disable_slot(XHCIState *xhci, unsigned int slotid)
2211{
2212 int i;
2213
348f1037 2214 trace_usb_xhci_slot_disable(slotid);
91062ae0 2215 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
2216
2217 for (i = 1; i <= 31; i++) {
2218 if (xhci->slots[slotid-1].eps[i-1]) {
2219 xhci_disable_ep(xhci, slotid, i);
2220 }
2221 }
2222
2223 xhci->slots[slotid-1].enabled = 0;
4034e693 2224 xhci->slots[slotid-1].addressed = 0;
5c67dd7b 2225 xhci->slots[slotid-1].uport = NULL;
62c6ae04
HM
2226 return CC_SUCCESS;
2227}
2228
ccaf87a0
GH
2229static USBPort *xhci_lookup_uport(XHCIState *xhci, uint32_t *slot_ctx)
2230{
2231 USBPort *uport;
2232 char path[32];
2233 int i, pos, port;
2234
2235 port = (slot_ctx[1]>>16) & 0xFF;
f2ad97ff
GH
2236 if (port < 1 || port > xhci->numports) {
2237 return NULL;
2238 }
ccaf87a0
GH
2239 port = xhci->ports[port-1].uport->index+1;
2240 pos = snprintf(path, sizeof(path), "%d", port);
2241 for (i = 0; i < 5; i++) {
2242 port = (slot_ctx[0] >> 4*i) & 0x0f;
2243 if (!port) {
2244 break;
2245 }
2246 pos += snprintf(path + pos, sizeof(path) - pos, ".%d", port);
2247 }
2248
2249 QTAILQ_FOREACH(uport, &xhci->bus.used, next) {
2250 if (strcmp(uport->path, path) == 0) {
2251 return uport;
2252 }
2253 }
2254 return NULL;
2255}
2256
62c6ae04
HM
2257static TRBCCode xhci_address_slot(XHCIState *xhci, unsigned int slotid,
2258 uint64_t pictx, bool bsr)
2259{
2260 XHCISlot *slot;
ccaf87a0 2261 USBPort *uport;
62c6ae04 2262 USBDevice *dev;
59a70ccd 2263 dma_addr_t ictx, octx, dcbaap;
62c6ae04
HM
2264 uint64_t poctx;
2265 uint32_t ictl_ctx[2];
2266 uint32_t slot_ctx[4];
2267 uint32_t ep0_ctx[5];
62c6ae04
HM
2268 int i;
2269 TRBCCode res;
2270
91062ae0 2271 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
2272
2273 dcbaap = xhci_addr64(xhci->dcbaap_low, xhci->dcbaap_high);
9b7d3334 2274 poctx = ldq_le_pci_dma(PCI_DEVICE(xhci), dcbaap + 8 * slotid);
62c6ae04 2275 ictx = xhci_mask64(pictx);
616b5d53 2276 octx = xhci_mask64(poctx);
62c6ae04 2277
59a70ccd
DG
2278 DPRINTF("xhci: input context at "DMA_ADDR_FMT"\n", ictx);
2279 DPRINTF("xhci: output context at "DMA_ADDR_FMT"\n", octx);
62c6ae04 2280
616b5d53 2281 xhci_dma_read_u32s(xhci, ictx, ictl_ctx, sizeof(ictl_ctx));
62c6ae04
HM
2282
2283 if (ictl_ctx[0] != 0x0 || ictl_ctx[1] != 0x3) {
d6bb65fc 2284 DPRINTF("xhci: invalid input context control %08x %08x\n",
62c6ae04
HM
2285 ictl_ctx[0], ictl_ctx[1]);
2286 return CC_TRB_ERROR;
2287 }
2288
616b5d53
DG
2289 xhci_dma_read_u32s(xhci, ictx+32, slot_ctx, sizeof(slot_ctx));
2290 xhci_dma_read_u32s(xhci, ictx+64, ep0_ctx, sizeof(ep0_ctx));
62c6ae04
HM
2291
2292 DPRINTF("xhci: input slot context: %08x %08x %08x %08x\n",
2293 slot_ctx[0], slot_ctx[1], slot_ctx[2], slot_ctx[3]);
2294
2295 DPRINTF("xhci: input ep0 context: %08x %08x %08x %08x %08x\n",
2296 ep0_ctx[0], ep0_ctx[1], ep0_ctx[2], ep0_ctx[3], ep0_ctx[4]);
2297
ccaf87a0
GH
2298 uport = xhci_lookup_uport(xhci, slot_ctx);
2299 if (uport == NULL) {
d6bb65fc 2300 DPRINTF("xhci: port not found\n");
62c6ae04 2301 return CC_TRB_ERROR;
ccaf87a0 2302 }
65d81ed4 2303 trace_usb_xhci_slot_address(slotid, uport->path);
ccaf87a0
GH
2304
2305 dev = uport->dev;
de9de157 2306 if (!dev || !dev->attached) {
d6bb65fc 2307 DPRINTF("xhci: port %s not connected\n", uport->path);
62c6ae04
HM
2308 return CC_USB_TRANSACTION_ERROR;
2309 }
2310
91062ae0 2311 for (i = 0; i < xhci->numslots; i++) {
0bc85da6
GH
2312 if (i == slotid-1) {
2313 continue;
2314 }
ccaf87a0 2315 if (xhci->slots[i].uport == uport) {
d6bb65fc 2316 DPRINTF("xhci: port %s already assigned to slot %d\n",
ccaf87a0 2317 uport->path, i+1);
62c6ae04
HM
2318 return CC_TRB_ERROR;
2319 }
2320 }
2321
2322 slot = &xhci->slots[slotid-1];
ccaf87a0 2323 slot->uport = uport;
62c6ae04
HM
2324 slot->ctx = octx;
2325
a4055d85
ZS
2326 /* Make sure device is in USB_STATE_DEFAULT state */
2327 usb_device_reset(dev);
62c6ae04
HM
2328 if (bsr) {
2329 slot_ctx[3] = SLOT_DEFAULT << SLOT_STATE_SHIFT;
2330 } else {
a820b575 2331 USBPacket p;
a6718874
GH
2332 uint8_t buf[1];
2333
af203be3 2334 slot_ctx[3] = (SLOT_ADDRESSED << SLOT_STATE_SHIFT) | slotid;
a6718874
GH
2335 memset(&p, 0, sizeof(p));
2336 usb_packet_addbuf(&p, buf, sizeof(buf));
a820b575 2337 usb_packet_setup(&p, USB_TOKEN_OUT,
8550a02d 2338 usb_ep_get(dev, USB_TOKEN_OUT, 0), 0,
a820b575
GH
2339 0, false, false);
2340 usb_device_handle_control(dev, &p,
62c6ae04 2341 DeviceOutRequest | USB_REQ_SET_ADDRESS,
af203be3 2342 slotid, 0, 0, NULL);
a820b575 2343 assert(p.status != USB_RET_ASYNC);
62c6ae04
HM
2344 }
2345
2346 res = xhci_enable_ep(xhci, slotid, 1, octx+32, ep0_ctx);
2347
2348 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2349 slot_ctx[0], slot_ctx[1], slot_ctx[2], slot_ctx[3]);
2350 DPRINTF("xhci: output ep0 context: %08x %08x %08x %08x %08x\n",
2351 ep0_ctx[0], ep0_ctx[1], ep0_ctx[2], ep0_ctx[3], ep0_ctx[4]);
2352
616b5d53
DG
2353 xhci_dma_write_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
2354 xhci_dma_write_u32s(xhci, octx+32, ep0_ctx, sizeof(ep0_ctx));
62c6ae04 2355
4034e693 2356 xhci->slots[slotid-1].addressed = 1;
62c6ae04
HM
2357 return res;
2358}
2359
2360
2361static TRBCCode xhci_configure_slot(XHCIState *xhci, unsigned int slotid,
2362 uint64_t pictx, bool dc)
2363{
59a70ccd 2364 dma_addr_t ictx, octx;
62c6ae04
HM
2365 uint32_t ictl_ctx[2];
2366 uint32_t slot_ctx[4];
2367 uint32_t islot_ctx[4];
2368 uint32_t ep_ctx[5];
2369 int i;
2370 TRBCCode res;
2371
348f1037 2372 trace_usb_xhci_slot_configure(slotid);
91062ae0 2373 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
2374
2375 ictx = xhci_mask64(pictx);
2376 octx = xhci->slots[slotid-1].ctx;
2377
59a70ccd
DG
2378 DPRINTF("xhci: input context at "DMA_ADDR_FMT"\n", ictx);
2379 DPRINTF("xhci: output context at "DMA_ADDR_FMT"\n", octx);
62c6ae04
HM
2380
2381 if (dc) {
2382 for (i = 2; i <= 31; i++) {
2383 if (xhci->slots[slotid-1].eps[i-1]) {
2384 xhci_disable_ep(xhci, slotid, i);
2385 }
2386 }
2387
616b5d53 2388 xhci_dma_read_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
62c6ae04
HM
2389 slot_ctx[3] &= ~(SLOT_STATE_MASK << SLOT_STATE_SHIFT);
2390 slot_ctx[3] |= SLOT_ADDRESSED << SLOT_STATE_SHIFT;
2391 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2392 slot_ctx[0], slot_ctx[1], slot_ctx[2], slot_ctx[3]);
616b5d53 2393 xhci_dma_write_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
62c6ae04
HM
2394
2395 return CC_SUCCESS;
2396 }
2397
616b5d53 2398 xhci_dma_read_u32s(xhci, ictx, ictl_ctx, sizeof(ictl_ctx));
62c6ae04
HM
2399
2400 if ((ictl_ctx[0] & 0x3) != 0x0 || (ictl_ctx[1] & 0x3) != 0x1) {
d6bb65fc 2401 DPRINTF("xhci: invalid input context control %08x %08x\n",
62c6ae04
HM
2402 ictl_ctx[0], ictl_ctx[1]);
2403 return CC_TRB_ERROR;
2404 }
2405
616b5d53
DG
2406 xhci_dma_read_u32s(xhci, ictx+32, islot_ctx, sizeof(islot_ctx));
2407 xhci_dma_read_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
62c6ae04
HM
2408
2409 if (SLOT_STATE(slot_ctx[3]) < SLOT_ADDRESSED) {
d6bb65fc 2410 DPRINTF("xhci: invalid slot state %08x\n", slot_ctx[3]);
62c6ae04
HM
2411 return CC_CONTEXT_STATE_ERROR;
2412 }
2413
72391da5
HG
2414 xhci_free_device_streams(xhci, slotid, ictl_ctx[0] | ictl_ctx[1]);
2415
62c6ae04
HM
2416 for (i = 2; i <= 31; i++) {
2417 if (ictl_ctx[0] & (1<<i)) {
2418 xhci_disable_ep(xhci, slotid, i);
2419 }
2420 if (ictl_ctx[1] & (1<<i)) {
616b5d53 2421 xhci_dma_read_u32s(xhci, ictx+32+(32*i), ep_ctx, sizeof(ep_ctx));
62c6ae04
HM
2422 DPRINTF("xhci: input ep%d.%d context: %08x %08x %08x %08x %08x\n",
2423 i/2, i%2, ep_ctx[0], ep_ctx[1], ep_ctx[2],
2424 ep_ctx[3], ep_ctx[4]);
2425 xhci_disable_ep(xhci, slotid, i);
2426 res = xhci_enable_ep(xhci, slotid, i, octx+(32*i), ep_ctx);
2427 if (res != CC_SUCCESS) {
2428 return res;
2429 }
2430 DPRINTF("xhci: output ep%d.%d context: %08x %08x %08x %08x %08x\n",
2431 i/2, i%2, ep_ctx[0], ep_ctx[1], ep_ctx[2],
2432 ep_ctx[3], ep_ctx[4]);
616b5d53 2433 xhci_dma_write_u32s(xhci, octx+(32*i), ep_ctx, sizeof(ep_ctx));
62c6ae04
HM
2434 }
2435 }
2436
72391da5
HG
2437 res = xhci_alloc_device_streams(xhci, slotid, ictl_ctx[1]);
2438 if (res != CC_SUCCESS) {
2439 for (i = 2; i <= 31; i++) {
3d80365b 2440 if (ictl_ctx[1] & (1u << i)) {
72391da5
HG
2441 xhci_disable_ep(xhci, slotid, i);
2442 }
2443 }
2444 return res;
2445 }
2446
62c6ae04
HM
2447 slot_ctx[3] &= ~(SLOT_STATE_MASK << SLOT_STATE_SHIFT);
2448 slot_ctx[3] |= SLOT_CONFIGURED << SLOT_STATE_SHIFT;
2449 slot_ctx[0] &= ~(SLOT_CONTEXT_ENTRIES_MASK << SLOT_CONTEXT_ENTRIES_SHIFT);
2450 slot_ctx[0] |= islot_ctx[0] & (SLOT_CONTEXT_ENTRIES_MASK <<
2451 SLOT_CONTEXT_ENTRIES_SHIFT);
2452 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2453 slot_ctx[0], slot_ctx[1], slot_ctx[2], slot_ctx[3]);
2454
616b5d53 2455 xhci_dma_write_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
62c6ae04
HM
2456
2457 return CC_SUCCESS;
2458}
2459
2460
2461static TRBCCode xhci_evaluate_slot(XHCIState *xhci, unsigned int slotid,
2462 uint64_t pictx)
2463{
59a70ccd 2464 dma_addr_t ictx, octx;
62c6ae04
HM
2465 uint32_t ictl_ctx[2];
2466 uint32_t iep0_ctx[5];
2467 uint32_t ep0_ctx[5];
2468 uint32_t islot_ctx[4];
2469 uint32_t slot_ctx[4];
2470
348f1037 2471 trace_usb_xhci_slot_evaluate(slotid);
91062ae0 2472 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
2473
2474 ictx = xhci_mask64(pictx);
2475 octx = xhci->slots[slotid-1].ctx;
2476
59a70ccd
DG
2477 DPRINTF("xhci: input context at "DMA_ADDR_FMT"\n", ictx);
2478 DPRINTF("xhci: output context at "DMA_ADDR_FMT"\n", octx);
62c6ae04 2479
616b5d53 2480 xhci_dma_read_u32s(xhci, ictx, ictl_ctx, sizeof(ictl_ctx));
62c6ae04
HM
2481
2482 if (ictl_ctx[0] != 0x0 || ictl_ctx[1] & ~0x3) {
d6bb65fc 2483 DPRINTF("xhci: invalid input context control %08x %08x\n",
62c6ae04
HM
2484 ictl_ctx[0], ictl_ctx[1]);
2485 return CC_TRB_ERROR;
2486 }
2487
2488 if (ictl_ctx[1] & 0x1) {
616b5d53 2489 xhci_dma_read_u32s(xhci, ictx+32, islot_ctx, sizeof(islot_ctx));
62c6ae04
HM
2490
2491 DPRINTF("xhci: input slot context: %08x %08x %08x %08x\n",
2492 islot_ctx[0], islot_ctx[1], islot_ctx[2], islot_ctx[3]);
2493
616b5d53 2494 xhci_dma_read_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
62c6ae04
HM
2495
2496 slot_ctx[1] &= ~0xFFFF; /* max exit latency */
2497 slot_ctx[1] |= islot_ctx[1] & 0xFFFF;
2498 slot_ctx[2] &= ~0xFF00000; /* interrupter target */
2499 slot_ctx[2] |= islot_ctx[2] & 0xFF000000;
2500
2501 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2502 slot_ctx[0], slot_ctx[1], slot_ctx[2], slot_ctx[3]);
2503
616b5d53 2504 xhci_dma_write_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
62c6ae04
HM
2505 }
2506
2507 if (ictl_ctx[1] & 0x2) {
616b5d53 2508 xhci_dma_read_u32s(xhci, ictx+64, iep0_ctx, sizeof(iep0_ctx));
62c6ae04
HM
2509
2510 DPRINTF("xhci: input ep0 context: %08x %08x %08x %08x %08x\n",
2511 iep0_ctx[0], iep0_ctx[1], iep0_ctx[2],
2512 iep0_ctx[3], iep0_ctx[4]);
2513
616b5d53 2514 xhci_dma_read_u32s(xhci, octx+32, ep0_ctx, sizeof(ep0_ctx));
62c6ae04
HM
2515
2516 ep0_ctx[1] &= ~0xFFFF0000; /* max packet size*/
2517 ep0_ctx[1] |= iep0_ctx[1] & 0xFFFF0000;
2518
2519 DPRINTF("xhci: output ep0 context: %08x %08x %08x %08x %08x\n",
2520 ep0_ctx[0], ep0_ctx[1], ep0_ctx[2], ep0_ctx[3], ep0_ctx[4]);
2521
616b5d53 2522 xhci_dma_write_u32s(xhci, octx+32, ep0_ctx, sizeof(ep0_ctx));
62c6ae04
HM
2523 }
2524
2525 return CC_SUCCESS;
2526}
2527
2528static TRBCCode xhci_reset_slot(XHCIState *xhci, unsigned int slotid)
2529{
2530 uint32_t slot_ctx[4];
59a70ccd 2531 dma_addr_t octx;
62c6ae04
HM
2532 int i;
2533
348f1037 2534 trace_usb_xhci_slot_reset(slotid);
91062ae0 2535 assert(slotid >= 1 && slotid <= xhci->numslots);
62c6ae04
HM
2536
2537 octx = xhci->slots[slotid-1].ctx;
2538
59a70ccd 2539 DPRINTF("xhci: output context at "DMA_ADDR_FMT"\n", octx);
62c6ae04
HM
2540
2541 for (i = 2; i <= 31; i++) {
2542 if (xhci->slots[slotid-1].eps[i-1]) {
2543 xhci_disable_ep(xhci, slotid, i);
2544 }
2545 }
2546
616b5d53 2547 xhci_dma_read_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
62c6ae04
HM
2548 slot_ctx[3] &= ~(SLOT_STATE_MASK << SLOT_STATE_SHIFT);
2549 slot_ctx[3] |= SLOT_DEFAULT << SLOT_STATE_SHIFT;
2550 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2551 slot_ctx[0], slot_ctx[1], slot_ctx[2], slot_ctx[3]);
616b5d53 2552 xhci_dma_write_u32s(xhci, octx, slot_ctx, sizeof(slot_ctx));
62c6ae04
HM
2553
2554 return CC_SUCCESS;
2555}
2556
2557static unsigned int xhci_get_slot(XHCIState *xhci, XHCIEvent *event, XHCITRB *trb)
2558{
2559 unsigned int slotid;
2560 slotid = (trb->control >> TRB_CR_SLOTID_SHIFT) & TRB_CR_SLOTID_MASK;
91062ae0 2561 if (slotid < 1 || slotid > xhci->numslots) {
d6bb65fc 2562 DPRINTF("xhci: bad slot id %d\n", slotid);
62c6ae04
HM
2563 event->ccode = CC_TRB_ERROR;
2564 return 0;
2565 } else if (!xhci->slots[slotid-1].enabled) {
d6bb65fc 2566 DPRINTF("xhci: slot id %d not enabled\n", slotid);
62c6ae04
HM
2567 event->ccode = CC_SLOT_NOT_ENABLED_ERROR;
2568 return 0;
2569 }
2570 return slotid;
2571}
2572
81251841
GH
2573/* cleanup slot state on usb device detach */
2574static void xhci_detach_slot(XHCIState *xhci, USBPort *uport)
2575{
0cb41e2c 2576 int slot, ep;
81251841
GH
2577
2578 for (slot = 0; slot < xhci->numslots; slot++) {
2579 if (xhci->slots[slot].uport == uport) {
2580 break;
2581 }
2582 }
2583 if (slot == xhci->numslots) {
2584 return;
2585 }
2586
0cb41e2c
GH
2587 for (ep = 0; ep < 31; ep++) {
2588 if (xhci->slots[slot].eps[ep]) {
582d6f4a 2589 xhci_ep_nuke_xfers(xhci, slot + 1, ep + 1, 0);
0cb41e2c
GH
2590 }
2591 }
81251841
GH
2592 xhci->slots[slot].uport = NULL;
2593}
2594
62c6ae04
HM
2595static TRBCCode xhci_get_port_bandwidth(XHCIState *xhci, uint64_t pctx)
2596{
59a70ccd 2597 dma_addr_t ctx;
0846e635 2598 uint8_t bw_ctx[xhci->numports+1];
62c6ae04
HM
2599
2600 DPRINTF("xhci_get_port_bandwidth()\n");
2601
2602 ctx = xhci_mask64(pctx);
2603
59a70ccd 2604 DPRINTF("xhci: bandwidth context at "DMA_ADDR_FMT"\n", ctx);
62c6ae04
HM
2605
2606 /* TODO: actually implement real values here */
2607 bw_ctx[0] = 0;
0846e635 2608 memset(&bw_ctx[1], 80, xhci->numports); /* 80% */
9b7d3334 2609 pci_dma_write(PCI_DEVICE(xhci), ctx, bw_ctx, sizeof(bw_ctx));
62c6ae04
HM
2610
2611 return CC_SUCCESS;
2612}
2613
2614static uint32_t rotl(uint32_t v, unsigned count)
2615{
2616 count &= 31;
2617 return (v << count) | (v >> (32 - count));
2618}
2619
2620
2621static uint32_t xhci_nec_challenge(uint32_t hi, uint32_t lo)
2622{
2623 uint32_t val;
2624 val = rotl(lo - 0x49434878, 32 - ((hi>>8) & 0x1F));
2625 val += rotl(lo + 0x49434878, hi & 0x1F);
2626 val -= rotl(hi ^ 0x49434878, (lo >> 16) & 0x1F);
2627 return ~val;
2628}
2629
62c6ae04
HM
2630static void xhci_process_commands(XHCIState *xhci)
2631{
2632 XHCITRB trb;
2633 TRBType type;
2634 XHCIEvent event = {ER_COMMAND_COMPLETE, CC_SUCCESS};
59a70ccd 2635 dma_addr_t addr;
f89b60f6 2636 unsigned int i, slotid = 0, count = 0;
62c6ae04
HM
2637
2638 DPRINTF("xhci_process_commands()\n");
2639 if (!xhci_running(xhci)) {
2640 DPRINTF("xhci_process_commands() called while xHC stopped or paused\n");
2641 return;
2642 }
2643
2644 xhci->crcr_low |= CRCR_CRR;
2645
2646 while ((type = xhci_ring_fetch(xhci, &xhci->cmd_ring, &trb, &addr))) {
2647 event.ptr = addr;
2648 switch (type) {
2649 case CR_ENABLE_SLOT:
91062ae0 2650 for (i = 0; i < xhci->numslots; i++) {
62c6ae04
HM
2651 if (!xhci->slots[i].enabled) {
2652 break;
2653 }
2654 }
91062ae0 2655 if (i >= xhci->numslots) {
d6bb65fc 2656 DPRINTF("xhci: no device slots available\n");
62c6ae04
HM
2657 event.ccode = CC_NO_SLOTS_ERROR;
2658 } else {
2659 slotid = i+1;
2660 event.ccode = xhci_enable_slot(xhci, slotid);
2661 }
2662 break;
2663 case CR_DISABLE_SLOT:
2664 slotid = xhci_get_slot(xhci, &event, &trb);
2665 if (slotid) {
2666 event.ccode = xhci_disable_slot(xhci, slotid);
2667 }
2668 break;
2669 case CR_ADDRESS_DEVICE:
2670 slotid = xhci_get_slot(xhci, &event, &trb);
2671 if (slotid) {
2672 event.ccode = xhci_address_slot(xhci, slotid, trb.parameter,
2673 trb.control & TRB_CR_BSR);
2674 }
2675 break;
2676 case CR_CONFIGURE_ENDPOINT:
2677 slotid = xhci_get_slot(xhci, &event, &trb);
2678 if (slotid) {
2679 event.ccode = xhci_configure_slot(xhci, slotid, trb.parameter,
2680 trb.control & TRB_CR_DC);
2681 }
2682 break;
2683 case CR_EVALUATE_CONTEXT:
2684 slotid = xhci_get_slot(xhci, &event, &trb);
2685 if (slotid) {
2686 event.ccode = xhci_evaluate_slot(xhci, slotid, trb.parameter);
2687 }
2688 break;
2689 case CR_STOP_ENDPOINT:
2690 slotid = xhci_get_slot(xhci, &event, &trb);
2691 if (slotid) {
2692 unsigned int epid = (trb.control >> TRB_CR_EPID_SHIFT)
2693 & TRB_CR_EPID_MASK;
2694 event.ccode = xhci_stop_ep(xhci, slotid, epid);
2695 }
2696 break;
2697 case CR_RESET_ENDPOINT:
2698 slotid = xhci_get_slot(xhci, &event, &trb);
2699 if (slotid) {
2700 unsigned int epid = (trb.control >> TRB_CR_EPID_SHIFT)
2701 & TRB_CR_EPID_MASK;
2702 event.ccode = xhci_reset_ep(xhci, slotid, epid);
2703 }
2704 break;
2705 case CR_SET_TR_DEQUEUE:
2706 slotid = xhci_get_slot(xhci, &event, &trb);
2707 if (slotid) {
2708 unsigned int epid = (trb.control >> TRB_CR_EPID_SHIFT)
2709 & TRB_CR_EPID_MASK;
024426ac
GH
2710 unsigned int streamid = (trb.status >> 16) & 0xffff;
2711 event.ccode = xhci_set_ep_dequeue(xhci, slotid,
2712 epid, streamid,
62c6ae04
HM
2713 trb.parameter);
2714 }
2715 break;
2716 case CR_RESET_DEVICE:
2717 slotid = xhci_get_slot(xhci, &event, &trb);
2718 if (slotid) {
2719 event.ccode = xhci_reset_slot(xhci, slotid);
2720 }
2721 break;
2722 case CR_GET_PORT_BANDWIDTH:
2723 event.ccode = xhci_get_port_bandwidth(xhci, trb.parameter);
2724 break;
62c6ae04 2725 case CR_VENDOR_NEC_FIRMWARE_REVISION:
2992d6b4
GH
2726 if (xhci->nec_quirks) {
2727 event.type = 48; /* NEC reply */
2728 event.length = 0x3025;
2729 } else {
2730 event.ccode = CC_TRB_ERROR;
2731 }
62c6ae04
HM
2732 break;
2733 case CR_VENDOR_NEC_CHALLENGE_RESPONSE:
2992d6b4
GH
2734 if (xhci->nec_quirks) {
2735 uint32_t chi = trb.parameter >> 32;
2736 uint32_t clo = trb.parameter;
2737 uint32_t val = xhci_nec_challenge(chi, clo);
2738 event.length = val & 0xFFFF;
2739 event.epid = val >> 16;
2740 slotid = val >> 24;
2741 event.type = 48; /* NEC reply */
2742 } else {
2743 event.ccode = CC_TRB_ERROR;
2744 }
2745 break;
62c6ae04 2746 default:
0ab966cf 2747 trace_usb_xhci_unimplemented("command", type);
62c6ae04
HM
2748 event.ccode = CC_TRB_ERROR;
2749 break;
2750 }
2751 event.slotid = slotid;
2d1de850 2752 xhci_event(xhci, &event, 0);
f89b60f6
GH
2753
2754 if (count++ > COMMAND_LIMIT) {
2755 trace_usb_xhci_enforced_limit("commands");
2756 return;
2757 }
62c6ae04
HM
2758 }
2759}
2760
6a32f80f
GH
2761static bool xhci_port_have_device(XHCIPort *port)
2762{
2763 if (!port->uport->dev || !port->uport->dev->attached) {
2764 return false; /* no device present */
2765 }
2766 if (!((1 << port->uport->dev->speed) & port->speedmask)) {
2767 return false; /* speed mismatch */
2768 }
2769 return true;
2770}
2771
f705a362
GH
2772static void xhci_port_notify(XHCIPort *port, uint32_t bits)
2773{
2774 XHCIEvent ev = { ER_PORT_STATUS_CHANGE, CC_SUCCESS,
2775 port->portnr << 24 };
2776
2777 if ((port->portsc & bits) == bits) {
2778 return;
2779 }
bdfce20d 2780 trace_usb_xhci_port_notify(port->portnr, bits);
f705a362
GH
2781 port->portsc |= bits;
2782 if (!xhci_running(port->xhci)) {
2783 return;
2784 }
2785 xhci_event(port->xhci, &ev, 0);
2786}
2787
f3214027 2788static void xhci_port_update(XHCIPort *port, int is_detach)
62c6ae04 2789{
b62b0828
GH
2790 uint32_t pls = PLS_RX_DETECT;
2791
62c6ae04 2792 port->portsc = PORTSC_PP;
6a32f80f 2793 if (!is_detach && xhci_port_have_device(port)) {
62c6ae04 2794 port->portsc |= PORTSC_CCS;
0846e635 2795 switch (port->uport->dev->speed) {
62c6ae04
HM
2796 case USB_SPEED_LOW:
2797 port->portsc |= PORTSC_SPEED_LOW;
b62b0828 2798 pls = PLS_POLLING;
62c6ae04
HM
2799 break;
2800 case USB_SPEED_FULL:
2801 port->portsc |= PORTSC_SPEED_FULL;
b62b0828 2802 pls = PLS_POLLING;
62c6ae04
HM
2803 break;
2804 case USB_SPEED_HIGH:
2805 port->portsc |= PORTSC_SPEED_HIGH;
b62b0828 2806 pls = PLS_POLLING;
62c6ae04 2807 break;
0846e635
GH
2808 case USB_SPEED_SUPER:
2809 port->portsc |= PORTSC_SPEED_SUPER;
b62b0828
GH
2810 port->portsc |= PORTSC_PED;
2811 pls = PLS_U0;
0846e635 2812 break;
62c6ae04
HM
2813 }
2814 }
b62b0828 2815 set_field(&port->portsc, pls, PORTSC_PLS);
4f47f0f8 2816 trace_usb_xhci_port_link(port->portnr, pls);
f705a362 2817 xhci_port_notify(port, PORTSC_CSC);
62c6ae04
HM
2818}
2819
dad5b9ea 2820static void xhci_port_reset(XHCIPort *port, bool warm_reset)
40030130 2821{
7bd3055f 2822 trace_usb_xhci_port_reset(port->portnr, warm_reset);
4f47f0f8 2823
b62b0828
GH
2824 if (!xhci_port_have_device(port)) {
2825 return;
2826 }
2827
40030130 2828 usb_device_reset(port->uport->dev);
b62b0828
GH
2829
2830 switch (port->uport->dev->speed) {
dad5b9ea
GH
2831 case USB_SPEED_SUPER:
2832 if (warm_reset) {
2833 port->portsc |= PORTSC_WRC;
2834 }
2835 /* fall through */
b62b0828
GH
2836 case USB_SPEED_LOW:
2837 case USB_SPEED_FULL:
2838 case USB_SPEED_HIGH:
2839 set_field(&port->portsc, PLS_U0, PORTSC_PLS);
4f47f0f8 2840 trace_usb_xhci_port_link(port->portnr, PLS_U0);
b62b0828
GH
2841 port->portsc |= PORTSC_PED;
2842 break;
2843 }
2844
2845 port->portsc &= ~PORTSC_PR;
2846 xhci_port_notify(port, PORTSC_PRC);
40030130
GH
2847}
2848
64619739 2849static void xhci_reset(DeviceState *dev)
62c6ae04 2850{
37034575 2851 XHCIState *xhci = XHCI(dev);
62c6ae04
HM
2852 int i;
2853
2d754a10 2854 trace_usb_xhci_reset();
62c6ae04 2855 if (!(xhci->usbsts & USBSTS_HCH)) {
d6bb65fc 2856 DPRINTF("xhci: reset while running!\n");
62c6ae04
HM
2857 }
2858
2859 xhci->usbcmd = 0;
2860 xhci->usbsts = USBSTS_HCH;
2861 xhci->dnctrl = 0;
2862 xhci->crcr_low = 0;
2863 xhci->crcr_high = 0;
2864 xhci->dcbaap_low = 0;
2865 xhci->dcbaap_high = 0;
2866 xhci->config = 0;
62c6ae04 2867
91062ae0 2868 for (i = 0; i < xhci->numslots; i++) {
62c6ae04
HM
2869 xhci_disable_slot(xhci, i+1);
2870 }
2871
0846e635 2872 for (i = 0; i < xhci->numports; i++) {
f3214027 2873 xhci_port_update(xhci->ports + i, 0);
62c6ae04
HM
2874 }
2875
91062ae0 2876 for (i = 0; i < xhci->numintrs; i++) {
962d11e1
GH
2877 xhci->intr[i].iman = 0;
2878 xhci->intr[i].imod = 0;
2879 xhci->intr[i].erstsz = 0;
2880 xhci->intr[i].erstba_low = 0;
2881 xhci->intr[i].erstba_high = 0;
2882 xhci->intr[i].erdp_low = 0;
2883 xhci->intr[i].erdp_high = 0;
2884 xhci->intr[i].msix_used = 0;
62c6ae04 2885
962d11e1
GH
2886 xhci->intr[i].er_ep_idx = 0;
2887 xhci->intr[i].er_pcs = 1;
962d11e1
GH
2888 xhci->intr[i].ev_buffer_put = 0;
2889 xhci->intr[i].ev_buffer_get = 0;
2890 }
01546fa6 2891
bc72ad67 2892 xhci->mfindex_start = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
01546fa6 2893 xhci_mfwrap_update(xhci);
62c6ae04
HM
2894}
2895
a8170e5e 2896static uint64_t xhci_cap_read(void *ptr, hwaddr reg, unsigned size)
62c6ae04 2897{
1b067564 2898 XHCIState *xhci = ptr;
2d754a10 2899 uint32_t ret;
62c6ae04
HM
2900
2901 switch (reg) {
2902 case 0x00: /* HCIVERSION, CAPLENGTH */
2d754a10
GH
2903 ret = 0x01000000 | LEN_CAP;
2904 break;
62c6ae04 2905 case 0x04: /* HCSPARAMS 1 */
0846e635 2906 ret = ((xhci->numports_2+xhci->numports_3)<<24)
91062ae0 2907 | (xhci->numintrs<<8) | xhci->numslots;
2d754a10 2908 break;
62c6ae04 2909 case 0x08: /* HCSPARAMS 2 */
2d754a10
GH
2910 ret = 0x0000000f;
2911 break;
62c6ae04 2912 case 0x0c: /* HCSPARAMS 3 */
2d754a10
GH
2913 ret = 0x00000000;
2914 break;
62c6ae04 2915 case 0x10: /* HCCPARAMS */
2d754a10 2916 if (sizeof(dma_addr_t) == 4) {
2aa6bfcb 2917 ret = 0x00080000 | (xhci->max_pstreams_mask << 12);
2d754a10 2918 } else {
2aa6bfcb 2919 ret = 0x00080001 | (xhci->max_pstreams_mask << 12);
2d754a10
GH
2920 }
2921 break;
62c6ae04 2922 case 0x14: /* DBOFF */
2d754a10
GH
2923 ret = OFF_DOORBELL;
2924 break;
62c6ae04 2925 case 0x18: /* RTSOFF */
2d754a10
GH
2926 ret = OFF_RUNTIME;
2927 break;
62c6ae04
HM
2928
2929 /* extended capabilities */
2930 case 0x20: /* Supported Protocol:00 */
2d754a10
GH
2931 ret = 0x02000402; /* USB 2.0 */
2932 break;
62c6ae04 2933 case 0x24: /* Supported Protocol:04 */
0ebfb144 2934 ret = 0x20425355; /* "USB " */
2d754a10 2935 break;
62c6ae04 2936 case 0x28: /* Supported Protocol:08 */
7bafd888
GH
2937 if (xhci_get_flag(xhci, XHCI_FLAG_SS_FIRST)) {
2938 ret = (xhci->numports_2<<8) | (xhci->numports_3+1);
2939 } else {
2940 ret = (xhci->numports_2<<8) | 1;
2941 }
2d754a10 2942 break;
62c6ae04 2943 case 0x2c: /* Supported Protocol:0c */
2d754a10
GH
2944 ret = 0x00000000; /* reserved */
2945 break;
62c6ae04 2946 case 0x30: /* Supported Protocol:00 */
2d754a10
GH
2947 ret = 0x03000002; /* USB 3.0 */
2948 break;
62c6ae04 2949 case 0x34: /* Supported Protocol:04 */
0ebfb144 2950 ret = 0x20425355; /* "USB " */
2d754a10 2951 break;
62c6ae04 2952 case 0x38: /* Supported Protocol:08 */
7bafd888
GH
2953 if (xhci_get_flag(xhci, XHCI_FLAG_SS_FIRST)) {
2954 ret = (xhci->numports_3<<8) | 1;
2955 } else {
2956 ret = (xhci->numports_3<<8) | (xhci->numports_2+1);
2957 }
2d754a10 2958 break;
62c6ae04 2959 case 0x3c: /* Supported Protocol:0c */
2d754a10
GH
2960 ret = 0x00000000; /* reserved */
2961 break;
62c6ae04 2962 default:
0ab966cf 2963 trace_usb_xhci_unimplemented("cap read", reg);
2d754a10 2964 ret = 0;
62c6ae04 2965 }
2d754a10
GH
2966
2967 trace_usb_xhci_cap_read(reg, ret);
2968 return ret;
62c6ae04
HM
2969}
2970
a8170e5e 2971static uint64_t xhci_port_read(void *ptr, hwaddr reg, unsigned size)
62c6ae04 2972{
1d8a4e69 2973 XHCIPort *port = ptr;
2d754a10
GH
2974 uint32_t ret;
2975
1d8a4e69 2976 switch (reg) {
62c6ae04 2977 case 0x00: /* PORTSC */
1d8a4e69 2978 ret = port->portsc;
2d754a10 2979 break;
62c6ae04
HM
2980 case 0x04: /* PORTPMSC */
2981 case 0x08: /* PORTLI */
2d754a10
GH
2982 ret = 0;
2983 break;
62c6ae04
HM
2984 case 0x0c: /* reserved */
2985 default:
0ab966cf 2986 trace_usb_xhci_unimplemented("port read", reg);
2d754a10 2987 ret = 0;
62c6ae04 2988 }
2d754a10 2989
1d8a4e69 2990 trace_usb_xhci_port_read(port->portnr, reg, ret);
2d754a10 2991 return ret;
62c6ae04
HM
2992}
2993
a8170e5e 2994static void xhci_port_write(void *ptr, hwaddr reg,
1d8a4e69 2995 uint64_t val, unsigned size)
62c6ae04 2996{
1d8a4e69 2997 XHCIPort *port = ptr;
bdfce20d 2998 uint32_t portsc, notify;
62c6ae04 2999
1d8a4e69 3000 trace_usb_xhci_port_write(port->portnr, reg, val);
2d754a10 3001
1d8a4e69 3002 switch (reg) {
62c6ae04 3003 case 0x00: /* PORTSC */
bdfce20d 3004 /* write-1-to-start bits */
dad5b9ea
GH
3005 if (val & PORTSC_WPR) {
3006 xhci_port_reset(port, true);
3007 break;
3008 }
bdfce20d 3009 if (val & PORTSC_PR) {
dad5b9ea 3010 xhci_port_reset(port, false);
bdfce20d
GH
3011 break;
3012 }
3013
1d8a4e69 3014 portsc = port->portsc;
bdfce20d 3015 notify = 0;
62c6ae04
HM
3016 /* write-1-to-clear bits*/
3017 portsc &= ~(val & (PORTSC_CSC|PORTSC_PEC|PORTSC_WRC|PORTSC_OCC|
3018 PORTSC_PRC|PORTSC_PLC|PORTSC_CEC));
3019 if (val & PORTSC_LWS) {
3020 /* overwrite PLS only when LWS=1 */
bdfce20d
GH
3021 uint32_t old_pls = get_field(port->portsc, PORTSC_PLS);
3022 uint32_t new_pls = get_field(val, PORTSC_PLS);
3023 switch (new_pls) {
3024 case PLS_U0:
3025 if (old_pls != PLS_U0) {
3026 set_field(&portsc, new_pls, PORTSC_PLS);
3027 trace_usb_xhci_port_link(port->portnr, new_pls);
3028 notify = PORTSC_PLC;
3029 }
3030 break;
3031 case PLS_U3:
3032 if (old_pls < PLS_U3) {
3033 set_field(&portsc, new_pls, PORTSC_PLS);
3034 trace_usb_xhci_port_link(port->portnr, new_pls);
3035 }
3036 break;
3037 case PLS_RESUME:
3038 /* windows does this for some reason, don't spam stderr */
3039 break;
3040 default:
d6bb65fc 3041 DPRINTF("%s: ignore pls write (old %d, new %d)\n",
bdfce20d
GH
3042 __func__, old_pls, new_pls);
3043 break;
3044 }
62c6ae04
HM
3045 }
3046 /* read/write bits */
3047 portsc &= ~(PORTSC_PP|PORTSC_WCE|PORTSC_WDE|PORTSC_WOE);
3048 portsc |= (val & (PORTSC_PP|PORTSC_WCE|PORTSC_WDE|PORTSC_WOE));
40030130 3049 port->portsc = portsc;
bdfce20d
GH
3050 if (notify) {
3051 xhci_port_notify(port, notify);
62c6ae04 3052 }
62c6ae04
HM
3053 break;
3054 case 0x04: /* PORTPMSC */
3055 case 0x08: /* PORTLI */
3056 default:
0ab966cf 3057 trace_usb_xhci_unimplemented("port write", reg);
62c6ae04
HM
3058 }
3059}
3060
a8170e5e 3061static uint64_t xhci_oper_read(void *ptr, hwaddr reg, unsigned size)
62c6ae04 3062{
1b067564 3063 XHCIState *xhci = ptr;
2d754a10 3064 uint32_t ret;
62c6ae04 3065
62c6ae04
HM
3066 switch (reg) {
3067 case 0x00: /* USBCMD */
2d754a10
GH
3068 ret = xhci->usbcmd;
3069 break;
62c6ae04 3070 case 0x04: /* USBSTS */
2d754a10
GH
3071 ret = xhci->usbsts;
3072 break;
62c6ae04 3073 case 0x08: /* PAGESIZE */
2d754a10
GH
3074 ret = 1; /* 4KiB */
3075 break;
62c6ae04 3076 case 0x14: /* DNCTRL */
2d754a10
GH
3077 ret = xhci->dnctrl;
3078 break;
62c6ae04 3079 case 0x18: /* CRCR low */
2d754a10
GH
3080 ret = xhci->crcr_low & ~0xe;
3081 break;
62c6ae04 3082 case 0x1c: /* CRCR high */
2d754a10
GH
3083 ret = xhci->crcr_high;
3084 break;
62c6ae04 3085 case 0x30: /* DCBAAP low */
2d754a10
GH
3086 ret = xhci->dcbaap_low;
3087 break;
62c6ae04 3088 case 0x34: /* DCBAAP high */
2d754a10
GH
3089 ret = xhci->dcbaap_high;
3090 break;
62c6ae04 3091 case 0x38: /* CONFIG */
2d754a10
GH
3092 ret = xhci->config;
3093 break;
62c6ae04 3094 default:
0ab966cf 3095 trace_usb_xhci_unimplemented("oper read", reg);
2d754a10 3096 ret = 0;
62c6ae04 3097 }
2d754a10
GH
3098
3099 trace_usb_xhci_oper_read(reg, ret);
3100 return ret;
62c6ae04
HM
3101}
3102
a8170e5e 3103static void xhci_oper_write(void *ptr, hwaddr reg,
1b067564 3104 uint64_t val, unsigned size)
62c6ae04 3105{
1b067564 3106 XHCIState *xhci = ptr;
37034575 3107 DeviceState *d = DEVICE(ptr);
1b067564 3108
2d754a10
GH
3109 trace_usb_xhci_oper_write(reg, val);
3110
62c6ae04
HM
3111 switch (reg) {
3112 case 0x00: /* USBCMD */
3113 if ((val & USBCMD_RS) && !(xhci->usbcmd & USBCMD_RS)) {
3114 xhci_run(xhci);
3115 } else if (!(val & USBCMD_RS) && (xhci->usbcmd & USBCMD_RS)) {
3116 xhci_stop(xhci);
3117 }
f1f8bc21
GH
3118 if (val & USBCMD_CSS) {
3119 /* save state */
3120 xhci->usbsts &= ~USBSTS_SRE;
3121 }
3122 if (val & USBCMD_CRS) {
3123 /* restore state */
3124 xhci->usbsts |= USBSTS_SRE;
3125 }
62c6ae04 3126 xhci->usbcmd = val & 0xc0f;
01546fa6 3127 xhci_mfwrap_update(xhci);
62c6ae04 3128 if (val & USBCMD_HCRST) {
37034575 3129 xhci_reset(d);
62c6ae04 3130 }
4c4abe7c 3131 xhci_intx_update(xhci);
62c6ae04
HM
3132 break;
3133
3134 case 0x04: /* USBSTS */
3135 /* these bits are write-1-to-clear */
3136 xhci->usbsts &= ~(val & (USBSTS_HSE|USBSTS_EINT|USBSTS_PCD|USBSTS_SRE));
4c4abe7c 3137 xhci_intx_update(xhci);
62c6ae04
HM
3138 break;
3139
3140 case 0x14: /* DNCTRL */
3141 xhci->dnctrl = val & 0xffff;
3142 break;
3143 case 0x18: /* CRCR low */
3144 xhci->crcr_low = (val & 0xffffffcf) | (xhci->crcr_low & CRCR_CRR);
3145 break;
3146 case 0x1c: /* CRCR high */
3147 xhci->crcr_high = val;
3148 if (xhci->crcr_low & (CRCR_CA|CRCR_CS) && (xhci->crcr_low & CRCR_CRR)) {
3149 XHCIEvent event = {ER_COMMAND_COMPLETE, CC_COMMAND_RING_STOPPED};
3150 xhci->crcr_low &= ~CRCR_CRR;
2d1de850 3151 xhci_event(xhci, &event, 0);
62c6ae04
HM
3152 DPRINTF("xhci: command ring stopped (CRCR=%08x)\n", xhci->crcr_low);
3153 } else {
59a70ccd 3154 dma_addr_t base = xhci_addr64(xhci->crcr_low & ~0x3f, val);
62c6ae04
HM
3155 xhci_ring_init(xhci, &xhci->cmd_ring, base);
3156 }
3157 xhci->crcr_low &= ~(CRCR_CA | CRCR_CS);
3158 break;
3159 case 0x30: /* DCBAAP low */
3160 xhci->dcbaap_low = val & 0xffffffc0;
3161 break;
3162 case 0x34: /* DCBAAP high */
3163 xhci->dcbaap_high = val;
3164 break;
3165 case 0x38: /* CONFIG */
3166 xhci->config = val & 0xff;
3167 break;
3168 default:
0ab966cf 3169 trace_usb_xhci_unimplemented("oper write", reg);
62c6ae04
HM
3170 }
3171}
3172
a8170e5e 3173static uint64_t xhci_runtime_read(void *ptr, hwaddr reg,
1b067564 3174 unsigned size)
62c6ae04 3175{
1b067564 3176 XHCIState *xhci = ptr;
43d9d604 3177 uint32_t ret = 0;
62c6ae04 3178
43d9d604
GH
3179 if (reg < 0x20) {
3180 switch (reg) {
3181 case 0x00: /* MFINDEX */
3182 ret = xhci_mfindex_get(xhci) & 0x3fff;
3183 break;
3184 default:
0ab966cf 3185 trace_usb_xhci_unimplemented("runtime read", reg);
43d9d604
GH
3186 break;
3187 }
3188 } else {
3189 int v = (reg - 0x20) / 0x20;
3190 XHCIInterrupter *intr = &xhci->intr[v];
3191 switch (reg & 0x1f) {
3192 case 0x00: /* IMAN */
3193 ret = intr->iman;
3194 break;
3195 case 0x04: /* IMOD */
3196 ret = intr->imod;
3197 break;
3198 case 0x08: /* ERSTSZ */
3199 ret = intr->erstsz;
3200 break;
3201 case 0x10: /* ERSTBA low */
3202 ret = intr->erstba_low;
3203 break;
3204 case 0x14: /* ERSTBA high */
3205 ret = intr->erstba_high;
3206 break;
3207 case 0x18: /* ERDP low */
3208 ret = intr->erdp_low;
3209 break;
3210 case 0x1c: /* ERDP high */
3211 ret = intr->erdp_high;
3212 break;
3213 }
62c6ae04 3214 }
2d754a10
GH
3215
3216 trace_usb_xhci_runtime_read(reg, ret);
3217 return ret;
62c6ae04
HM
3218}
3219
a8170e5e 3220static void xhci_runtime_write(void *ptr, hwaddr reg,
1b067564 3221 uint64_t val, unsigned size)
62c6ae04 3222{
1b067564 3223 XHCIState *xhci = ptr;
43d9d604
GH
3224 int v = (reg - 0x20) / 0x20;
3225 XHCIInterrupter *intr = &xhci->intr[v];
8e9f18b6 3226 trace_usb_xhci_runtime_write(reg, val);
62c6ae04 3227
43d9d604 3228 if (reg < 0x20) {
0ab966cf 3229 trace_usb_xhci_unimplemented("runtime write", reg);
43d9d604
GH
3230 return;
3231 }
3232
3233 switch (reg & 0x1f) {
3234 case 0x00: /* IMAN */
62c6ae04 3235 if (val & IMAN_IP) {
962d11e1 3236 intr->iman &= ~IMAN_IP;
62c6ae04 3237 }
962d11e1
GH
3238 intr->iman &= ~IMAN_IE;
3239 intr->iman |= val & IMAN_IE;
43d9d604
GH
3240 if (v == 0) {
3241 xhci_intx_update(xhci);
3242 }
3243 xhci_msix_update(xhci, v);
62c6ae04 3244 break;
43d9d604 3245 case 0x04: /* IMOD */
962d11e1 3246 intr->imod = val;
62c6ae04 3247 break;
43d9d604 3248 case 0x08: /* ERSTSZ */
962d11e1 3249 intr->erstsz = val & 0xffff;
62c6ae04 3250 break;
43d9d604 3251 case 0x10: /* ERSTBA low */
2992d6b4
GH
3252 if (xhci->nec_quirks) {
3253 /* NEC driver bug: it doesn't align this to 64 bytes */
3254 intr->erstba_low = val & 0xfffffff0;
3255 } else {
3256 intr->erstba_low = val & 0xffffffc0;
3257 }
62c6ae04 3258 break;
43d9d604 3259 case 0x14: /* ERSTBA high */
962d11e1 3260 intr->erstba_high = val;
43d9d604 3261 xhci_er_reset(xhci, v);
62c6ae04 3262 break;
43d9d604 3263 case 0x18: /* ERDP low */
62c6ae04 3264 if (val & ERDP_EHB) {
962d11e1 3265 intr->erdp_low &= ~ERDP_EHB;
62c6ae04 3266 }
962d11e1 3267 intr->erdp_low = (val & ~ERDP_EHB) | (intr->erdp_low & ERDP_EHB);
7da76e12
GH
3268 if (val & ERDP_EHB) {
3269 dma_addr_t erdp = xhci_addr64(intr->erdp_low, intr->erdp_high);
3270 unsigned int dp_idx = (erdp - intr->er_start) / TRB_SIZE;
3271 if (erdp >= intr->er_start &&
3272 erdp < (intr->er_start + TRB_SIZE * intr->er_size) &&
3273 dp_idx != intr->er_ep_idx) {
3274 xhci_intr_raise(xhci, v);
3275 }
3276 }
62c6ae04 3277 break;
43d9d604 3278 case 0x1c: /* ERDP high */
962d11e1 3279 intr->erdp_high = val;
62c6ae04
HM
3280 break;
3281 default:
0ab966cf 3282 trace_usb_xhci_unimplemented("oper write", reg);
62c6ae04
HM
3283 }
3284}
3285
a8170e5e 3286static uint64_t xhci_doorbell_read(void *ptr, hwaddr reg,
1b067564 3287 unsigned size)
62c6ae04 3288{
62c6ae04 3289 /* doorbells always read as 0 */
2d754a10 3290 trace_usb_xhci_doorbell_read(reg, 0);
62c6ae04
HM
3291 return 0;
3292}
3293
a8170e5e 3294static void xhci_doorbell_write(void *ptr, hwaddr reg,
1b067564 3295 uint64_t val, unsigned size)
62c6ae04 3296{
1b067564 3297 XHCIState *xhci = ptr;
024426ac 3298 unsigned int epid, streamid;
1b067564 3299
2d754a10 3300 trace_usb_xhci_doorbell_write(reg, val);
62c6ae04
HM
3301
3302 if (!xhci_running(xhci)) {
d6bb65fc 3303 DPRINTF("xhci: wrote doorbell while xHC stopped or paused\n");
62c6ae04
HM
3304 return;
3305 }
3306
3307 reg >>= 2;
3308
3309 if (reg == 0) {
3310 if (val == 0) {
3311 xhci_process_commands(xhci);
3312 } else {
d6bb65fc 3313 DPRINTF("xhci: bad doorbell 0 write: 0x%x\n",
1b067564 3314 (uint32_t)val);
62c6ae04
HM
3315 }
3316 } else {
024426ac
GH
3317 epid = val & 0xff;
3318 streamid = (val >> 16) & 0xffff;
91062ae0 3319 if (reg > xhci->numslots) {
d6bb65fc 3320 DPRINTF("xhci: bad doorbell %d\n", (int)reg);
024426ac 3321 } else if (epid > 31) {
d6bb65fc 3322 DPRINTF("xhci: bad doorbell %d write: 0x%x\n",
1b067564 3323 (int)reg, (uint32_t)val);
62c6ae04 3324 } else {
024426ac 3325 xhci_kick_ep(xhci, reg, epid, streamid);
62c6ae04
HM
3326 }
3327 }
3328}
3329
6d3bc22e
GH
3330static void xhci_cap_write(void *opaque, hwaddr addr, uint64_t val,
3331 unsigned width)
3332{
3333 /* nothing */
3334}
3335
1b067564
GH
3336static const MemoryRegionOps xhci_cap_ops = {
3337 .read = xhci_cap_read,
6d3bc22e 3338 .write = xhci_cap_write,
6ee021d4 3339 .valid.min_access_size = 1,
1b067564 3340 .valid.max_access_size = 4,
6ee021d4
GH
3341 .impl.min_access_size = 4,
3342 .impl.max_access_size = 4,
1b067564
GH
3343 .endianness = DEVICE_LITTLE_ENDIAN,
3344};
62c6ae04 3345
1b067564
GH
3346static const MemoryRegionOps xhci_oper_ops = {
3347 .read = xhci_oper_read,
3348 .write = xhci_oper_write,
3349 .valid.min_access_size = 4,
3350 .valid.max_access_size = 4,
3351 .endianness = DEVICE_LITTLE_ENDIAN,
3352};
62c6ae04 3353
1d8a4e69
GH
3354static const MemoryRegionOps xhci_port_ops = {
3355 .read = xhci_port_read,
3356 .write = xhci_port_write,
3357 .valid.min_access_size = 4,
3358 .valid.max_access_size = 4,
3359 .endianness = DEVICE_LITTLE_ENDIAN,
3360};
3361
1b067564
GH
3362static const MemoryRegionOps xhci_runtime_ops = {
3363 .read = xhci_runtime_read,
3364 .write = xhci_runtime_write,
3365 .valid.min_access_size = 4,
3366 .valid.max_access_size = 4,
3367 .endianness = DEVICE_LITTLE_ENDIAN,
3368};
62c6ae04 3369
1b067564
GH
3370static const MemoryRegionOps xhci_doorbell_ops = {
3371 .read = xhci_doorbell_read,
3372 .write = xhci_doorbell_write,
62c6ae04
HM
3373 .valid.min_access_size = 4,
3374 .valid.max_access_size = 4,
3375 .endianness = DEVICE_LITTLE_ENDIAN,
3376};
3377
3378static void xhci_attach(USBPort *usbport)
3379{
3380 XHCIState *xhci = usbport->opaque;
0846e635 3381 XHCIPort *port = xhci_lookup_port(xhci, usbport);
62c6ae04 3382
f3214027 3383 xhci_port_update(port, 0);
62c6ae04
HM
3384}
3385
3386static void xhci_detach(USBPort *usbport)
3387{
3388 XHCIState *xhci = usbport->opaque;
0846e635 3389 XHCIPort *port = xhci_lookup_port(xhci, usbport);
62c6ae04 3390
f3dcf638 3391 xhci_detach_slot(xhci, usbport);
f3214027 3392 xhci_port_update(port, 1);
62c6ae04
HM
3393}
3394
8c735e43
GH
3395static void xhci_wakeup(USBPort *usbport)
3396{
3397 XHCIState *xhci = usbport->opaque;
0846e635 3398 XHCIPort *port = xhci_lookup_port(xhci, usbport);
8c735e43 3399
85e05d82 3400 if (get_field(port->portsc, PORTSC_PLS) != PLS_U3) {
8c735e43
GH
3401 return;
3402 }
85e05d82 3403 set_field(&port->portsc, PLS_RESUME, PORTSC_PLS);
f705a362 3404 xhci_port_notify(port, PORTSC_PLC);
8c735e43
GH
3405}
3406
62c6ae04
HM
3407static void xhci_complete(USBPort *port, USBPacket *packet)
3408{
3409 XHCITransfer *xfer = container_of(packet, XHCITransfer, packet);
3410
9a77a0f5 3411 if (packet->status == USB_RET_REMOVE_FROM_QUEUE) {
582d6f4a 3412 xhci_ep_nuke_one_xfer(xfer, 0);
0cae7b1a
HG
3413 return;
3414 }
13e8ff7a 3415 xhci_try_complete_packet(xfer);
3a533ee8 3416 xhci_kick_epctx(xfer->epctx, xfer->streamid);
94b037f2
GH
3417 if (xfer->complete) {
3418 xhci_ep_free_xfer(xfer);
3419 }
62c6ae04
HM
3420}
3421
ccaf87a0 3422static void xhci_child_detach(USBPort *uport, USBDevice *child)
62c6ae04 3423{
ccaf87a0
GH
3424 USBBus *bus = usb_bus_from_device(child);
3425 XHCIState *xhci = container_of(bus, XHCIState, bus);
ccaf87a0 3426
463c534d 3427 xhci_detach_slot(xhci, child->port);
62c6ae04
HM
3428}
3429
1d8a4e69 3430static USBPortOps xhci_uport_ops = {
62c6ae04
HM
3431 .attach = xhci_attach,
3432 .detach = xhci_detach,
8c735e43 3433 .wakeup = xhci_wakeup,
62c6ae04
HM
3434 .complete = xhci_complete,
3435 .child_detach = xhci_child_detach,
3436};
3437
7c605a23
GH
3438static int xhci_find_epid(USBEndpoint *ep)
3439{
3440 if (ep->nr == 0) {
3441 return 1;
3442 }
3443 if (ep->pid == USB_TOKEN_IN) {
3444 return ep->nr * 2 + 1;
3445 } else {
3446 return ep->nr * 2;
3447 }
3448}
3449
070eeef9 3450static USBEndpoint *xhci_epid_to_usbep(XHCIEPContext *epctx)
518ad5f2 3451{
070eeef9
GH
3452 USBPort *uport;
3453 uint32_t token;
518ad5f2 3454
070eeef9 3455 if (!epctx) {
518ad5f2
HG
3456 return NULL;
3457 }
070eeef9
GH
3458 uport = epctx->xhci->slots[epctx->slotid - 1].uport;
3459 token = (epctx->epid & 1) ? USB_TOKEN_IN : USB_TOKEN_OUT;
3460 if (!uport) {
3461 return NULL;
3462 }
3463 return usb_ep_get(uport->dev, token, epctx->epid >> 1);
518ad5f2
HG
3464}
3465
8550a02d
GH
3466static void xhci_wakeup_endpoint(USBBus *bus, USBEndpoint *ep,
3467 unsigned int stream)
7c605a23
GH
3468{
3469 XHCIState *xhci = container_of(bus, XHCIState, bus);
3470 int slotid;
3471
3472 DPRINTF("%s\n", __func__);
af203be3 3473 slotid = ep->dev->addr;
7c605a23
GH
3474 if (slotid == 0 || !xhci->slots[slotid-1].enabled) {
3475 DPRINTF("%s: oops, no slot for dev %d\n", __func__, ep->dev->addr);
3476 return;
3477 }
024426ac 3478 xhci_kick_ep(xhci, slotid, xhci_find_epid(ep), stream);
7c605a23
GH
3479}
3480
62c6ae04 3481static USBBusOps xhci_bus_ops = {
7c605a23 3482 .wakeup_endpoint = xhci_wakeup_endpoint,
62c6ae04
HM
3483};
3484
37034575 3485static void usb_xhci_init(XHCIState *xhci)
62c6ae04 3486{
37034575 3487 DeviceState *dev = DEVICE(xhci);
0846e635
GH
3488 XHCIPort *port;
3489 int i, usbports, speedmask;
62c6ae04
HM
3490
3491 xhci->usbsts = USBSTS_HCH;
3492
0846e635
GH
3493 if (xhci->numports_2 > MAXPORTS_2) {
3494 xhci->numports_2 = MAXPORTS_2;
3495 }
3496 if (xhci->numports_3 > MAXPORTS_3) {
3497 xhci->numports_3 = MAXPORTS_3;
3498 }
3499 usbports = MAX(xhci->numports_2, xhci->numports_3);
3500 xhci->numports = xhci->numports_2 + xhci->numports_3;
3501
c889b3a5 3502 usb_bus_new(&xhci->bus, sizeof(xhci->bus), &xhci_bus_ops, dev);
62c6ae04 3503
0846e635
GH
3504 for (i = 0; i < usbports; i++) {
3505 speedmask = 0;
3506 if (i < xhci->numports_2) {
7bafd888
GH
3507 if (xhci_get_flag(xhci, XHCI_FLAG_SS_FIRST)) {
3508 port = &xhci->ports[i + xhci->numports_3];
3509 port->portnr = i + 1 + xhci->numports_3;
3510 } else {
3511 port = &xhci->ports[i];
3512 port->portnr = i + 1;
3513 }
0846e635
GH
3514 port->uport = &xhci->uports[i];
3515 port->speedmask =
3516 USB_SPEED_MASK_LOW |
3517 USB_SPEED_MASK_FULL |
3518 USB_SPEED_MASK_HIGH;
1d8a4e69 3519 snprintf(port->name, sizeof(port->name), "usb2 port #%d", i+1);
0846e635
GH
3520 speedmask |= port->speedmask;
3521 }
3522 if (i < xhci->numports_3) {
7bafd888
GH
3523 if (xhci_get_flag(xhci, XHCI_FLAG_SS_FIRST)) {
3524 port = &xhci->ports[i];
3525 port->portnr = i + 1;
3526 } else {
3527 port = &xhci->ports[i + xhci->numports_2];
3528 port->portnr = i + 1 + xhci->numports_2;
3529 }
0846e635
GH
3530 port->uport = &xhci->uports[i];
3531 port->speedmask = USB_SPEED_MASK_SUPER;
1d8a4e69 3532 snprintf(port->name, sizeof(port->name), "usb3 port #%d", i+1);
0846e635
GH
3533 speedmask |= port->speedmask;
3534 }
3535 usb_register_port(&xhci->bus, &xhci->uports[i], xhci, i,
1d8a4e69 3536 &xhci_uport_ops, speedmask);
62c6ae04 3537 }
62c6ae04
HM
3538}
3539
9af21dbe 3540static void usb_xhci_realize(struct PCIDevice *dev, Error **errp)
62c6ae04 3541{
1d8a4e69 3542 int i, ret;
1108b2f8 3543 Error *err = NULL;
62c6ae04 3544
37034575 3545 XHCIState *xhci = XHCI(dev);
62c6ae04 3546
9b7d3334
AF
3547 dev->config[PCI_CLASS_PROG] = 0x30; /* xHCI */
3548 dev->config[PCI_INTERRUPT_PIN] = 0x01; /* interrupt pin 1 */
3549 dev->config[PCI_CACHE_LINE_SIZE] = 0x10;
3550 dev->config[0x60] = 0x30; /* release number */
62c6ae04 3551
2992d6b4
GH
3552 if (strcmp(object_get_typename(OBJECT(dev)), TYPE_NEC_XHCI) == 0) {
3553 xhci->nec_quirks = true;
3554 }
91062ae0
GH
3555 if (xhci->numintrs > MAXINTRS) {
3556 xhci->numintrs = MAXINTRS;
3557 }
c94a7c69
GH
3558 while (xhci->numintrs & (xhci->numintrs - 1)) { /* ! power of 2 */
3559 xhci->numintrs++;
3560 }
91062ae0
GH
3561 if (xhci->numintrs < 1) {
3562 xhci->numintrs = 1;
3563 }
3564 if (xhci->numslots > MAXSLOTS) {
3565 xhci->numslots = MAXSLOTS;
3566 }
3567 if (xhci->numslots < 1) {
3568 xhci->numslots = 1;
3569 }
2aa6bfcb
GH
3570 if (xhci_get_flag(xhci, XHCI_FLAG_ENABLE_STREAMS)) {
3571 xhci->max_pstreams_mask = 7; /* == 256 primary streams */
3572 } else {
3573 xhci->max_pstreams_mask = 0;
3574 }
91062ae0 3575
20729dbd
C
3576 if (xhci->msi != ON_OFF_AUTO_OFF) {
3577 ret = msi_init(dev, 0x70, xhci->numintrs, true, false, &err);
3578 /* Any error other than -ENOTSUP(board's MSI support is broken)
3579 * is a programming error */
3580 assert(!ret || ret == -ENOTSUP);
3581 if (ret && xhci->msi == ON_OFF_AUTO_ON) {
3582 /* Can't satisfy user's explicit msi=on request, fail */
3583 error_append_hint(&err, "You have to use msi=auto (default) or "
3584 "msi=off with this machine type.\n");
3585 error_propagate(errp, err);
3586 return;
3587 }
3588 assert(!err || xhci->msi == ON_OFF_AUTO_AUTO);
3589 /* With msi=auto, we fall back to MSI off silently */
3590 error_free(err);
3591 }
3592
3593 usb_xhci_init(xhci);
bc72ad67 3594 xhci->mfwrap_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, xhci_mfwrap_timer, xhci);
01546fa6 3595
22fc860b
PB
3596 memory_region_init(&xhci->mem, OBJECT(xhci), "xhci", LEN_REGS);
3597 memory_region_init_io(&xhci->mem_cap, OBJECT(xhci), &xhci_cap_ops, xhci,
1b067564 3598 "capabilities", LEN_CAP);
22fc860b 3599 memory_region_init_io(&xhci->mem_oper, OBJECT(xhci), &xhci_oper_ops, xhci,
1d8a4e69 3600 "operational", 0x400);
22fc860b 3601 memory_region_init_io(&xhci->mem_runtime, OBJECT(xhci), &xhci_runtime_ops, xhci,
1b067564 3602 "runtime", LEN_RUNTIME);
22fc860b 3603 memory_region_init_io(&xhci->mem_doorbell, OBJECT(xhci), &xhci_doorbell_ops, xhci,
1b067564
GH
3604 "doorbell", LEN_DOORBELL);
3605
3606 memory_region_add_subregion(&xhci->mem, 0, &xhci->mem_cap);
3607 memory_region_add_subregion(&xhci->mem, OFF_OPER, &xhci->mem_oper);
3608 memory_region_add_subregion(&xhci->mem, OFF_RUNTIME, &xhci->mem_runtime);
3609 memory_region_add_subregion(&xhci->mem, OFF_DOORBELL, &xhci->mem_doorbell);
3610
1d8a4e69
GH
3611 for (i = 0; i < xhci->numports; i++) {
3612 XHCIPort *port = &xhci->ports[i];
3613 uint32_t offset = OFF_OPER + 0x400 + 0x10 * i;
3614 port->xhci = xhci;
22fc860b 3615 memory_region_init_io(&port->mem, OBJECT(xhci), &xhci_port_ops, port,
1d8a4e69
GH
3616 port->name, 0x10);
3617 memory_region_add_subregion(&xhci->mem, offset, &port->mem);
3618 }
3619
9b7d3334 3620 pci_register_bar(dev, 0,
62c6ae04
HM
3621 PCI_BASE_ADDRESS_SPACE_MEMORY|PCI_BASE_ADDRESS_MEM_TYPE_64,
3622 &xhci->mem);
3623
e6043e92
DDAG
3624 if (pci_bus_is_express(dev->bus) ||
3625 xhci_get_flag(xhci, XHCI_FLAG_FORCE_PCIE_ENDCAP)) {
058fdcf5
GH
3626 ret = pcie_endpoint_cap_init(dev, 0xa0);
3627 assert(ret >= 0);
3628 }
62c6ae04 3629
290fd20d 3630 if (xhci->msix != ON_OFF_AUTO_OFF) {
ee640c62 3631 /* TODO check for errors, and should fail when msix=on */
9b7d3334 3632 msix_init(dev, xhci->numintrs,
4c47f800
GH
3633 &xhci->mem, 0, OFF_MSIX_TABLE,
3634 &xhci->mem, 0, OFF_MSIX_PBA,
ee640c62 3635 0x90, NULL);
4c47f800 3636 }
62c6ae04
HM
3637}
3638
53c30545
GA
3639static void usb_xhci_exit(PCIDevice *dev)
3640{
3641 int i;
3642 XHCIState *xhci = XHCI(dev);
3643
d733f74c
GA
3644 trace_usb_xhci_exit();
3645
53c30545
GA
3646 for (i = 0; i < xhci->numslots; i++) {
3647 xhci_disable_slot(xhci, i + 1);
3648 }
3649
3650 if (xhci->mfwrap_timer) {
3651 timer_del(xhci->mfwrap_timer);
3652 timer_free(xhci->mfwrap_timer);
3653 xhci->mfwrap_timer = NULL;
3654 }
3655
3656 memory_region_del_subregion(&xhci->mem, &xhci->mem_cap);
3657 memory_region_del_subregion(&xhci->mem, &xhci->mem_oper);
3658 memory_region_del_subregion(&xhci->mem, &xhci->mem_runtime);
3659 memory_region_del_subregion(&xhci->mem, &xhci->mem_doorbell);
3660
3661 for (i = 0; i < xhci->numports; i++) {
3662 XHCIPort *port = &xhci->ports[i];
3663 memory_region_del_subregion(&xhci->mem, &port->mem);
3664 }
3665
3666 /* destroy msix memory region */
3667 if (dev->msix_table && dev->msix_pba
3668 && dev->msix_entry_used) {
b53dd449 3669 msix_uninit(dev, &xhci->mem, &xhci->mem);
53c30545
GA
3670 }
3671
3672 usb_bus_release(&xhci->bus);
3673}
3674
37352df3
GH
3675static int usb_xhci_post_load(void *opaque, int version_id)
3676{
3677 XHCIState *xhci = opaque;
9b7d3334 3678 PCIDevice *pci_dev = PCI_DEVICE(xhci);
37352df3
GH
3679 XHCISlot *slot;
3680 XHCIEPContext *epctx;
3681 dma_addr_t dcbaap, pctx;
3682 uint32_t slot_ctx[4];
3683 uint32_t ep_ctx[5];
3684 int slotid, epid, state, intr;
3685
3686 dcbaap = xhci_addr64(xhci->dcbaap_low, xhci->dcbaap_high);
3687
3688 for (slotid = 1; slotid <= xhci->numslots; slotid++) {
3689 slot = &xhci->slots[slotid-1];
3690 if (!slot->addressed) {
3691 continue;
3692 }
3693 slot->ctx =
9b7d3334 3694 xhci_mask64(ldq_le_pci_dma(pci_dev, dcbaap + 8 * slotid));
37352df3
GH
3695 xhci_dma_read_u32s(xhci, slot->ctx, slot_ctx, sizeof(slot_ctx));
3696 slot->uport = xhci_lookup_uport(xhci, slot_ctx);
f2ad97ff
GH
3697 if (!slot->uport) {
3698 /* should not happen, but may trigger on guest bugs */
3699 slot->enabled = 0;
3700 slot->addressed = 0;
3701 continue;
3702 }
37352df3
GH
3703 assert(slot->uport && slot->uport->dev);
3704
f6969b9f 3705 for (epid = 1; epid <= 31; epid++) {
37352df3
GH
3706 pctx = slot->ctx + 32 * epid;
3707 xhci_dma_read_u32s(xhci, pctx, ep_ctx, sizeof(ep_ctx));
3708 state = ep_ctx[0] & EP_STATE_MASK;
3709 if (state == EP_DISABLED) {
3710 continue;
3711 }
3712 epctx = xhci_alloc_epctx(xhci, slotid, epid);
3713 slot->eps[epid-1] = epctx;
3714 xhci_init_epctx(epctx, pctx, ep_ctx);
3715 epctx->state = state;
3716 if (state == EP_RUNNING) {
3717 /* kick endpoint after vmload is finished */
bc72ad67 3718 timer_mod(epctx->kick_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL));
37352df3
GH
3719 }
3720 }
3721 }
3722
3723 for (intr = 0; intr < xhci->numintrs; intr++) {
3724 if (xhci->intr[intr].msix_used) {
9b7d3334 3725 msix_vector_use(pci_dev, intr);
37352df3 3726 } else {
9b7d3334 3727 msix_vector_unuse(pci_dev, intr);
37352df3
GH
3728 }
3729 }
3730
3731 return 0;
3732}
3733
3734static const VMStateDescription vmstate_xhci_ring = {
3735 .name = "xhci-ring",
3736 .version_id = 1,
3737 .fields = (VMStateField[]) {
3738 VMSTATE_UINT64(dequeue, XHCIRing),
3739 VMSTATE_BOOL(ccs, XHCIRing),
3740 VMSTATE_END_OF_LIST()
3741 }
3742};
3743
3744static const VMStateDescription vmstate_xhci_port = {
3745 .name = "xhci-port",
3746 .version_id = 1,
3747 .fields = (VMStateField[]) {
3748 VMSTATE_UINT32(portsc, XHCIPort),
3749 VMSTATE_END_OF_LIST()
3750 }
3751};
3752
3753static const VMStateDescription vmstate_xhci_slot = {
3754 .name = "xhci-slot",
3755 .version_id = 1,
3756 .fields = (VMStateField[]) {
3757 VMSTATE_BOOL(enabled, XHCISlot),
3758 VMSTATE_BOOL(addressed, XHCISlot),
3759 VMSTATE_END_OF_LIST()
3760 }
3761};
3762
3763static const VMStateDescription vmstate_xhci_event = {
3764 .name = "xhci-event",
3765 .version_id = 1,
3766 .fields = (VMStateField[]) {
3767 VMSTATE_UINT32(type, XHCIEvent),
3768 VMSTATE_UINT32(ccode, XHCIEvent),
3769 VMSTATE_UINT64(ptr, XHCIEvent),
3770 VMSTATE_UINT32(length, XHCIEvent),
3771 VMSTATE_UINT32(flags, XHCIEvent),
3772 VMSTATE_UINT8(slotid, XHCIEvent),
3773 VMSTATE_UINT8(epid, XHCIEvent),
3afca1d6 3774 VMSTATE_END_OF_LIST()
37352df3
GH
3775 }
3776};
3777
3778static bool xhci_er_full(void *opaque, int version_id)
3779{
898248a3 3780 return false;
37352df3
GH
3781}
3782
3783static const VMStateDescription vmstate_xhci_intr = {
3784 .name = "xhci-intr",
3785 .version_id = 1,
3786 .fields = (VMStateField[]) {
3787 /* registers */
3788 VMSTATE_UINT32(iman, XHCIInterrupter),
3789 VMSTATE_UINT32(imod, XHCIInterrupter),
3790 VMSTATE_UINT32(erstsz, XHCIInterrupter),
3791 VMSTATE_UINT32(erstba_low, XHCIInterrupter),
3792 VMSTATE_UINT32(erstba_high, XHCIInterrupter),
3793 VMSTATE_UINT32(erdp_low, XHCIInterrupter),
3794 VMSTATE_UINT32(erdp_high, XHCIInterrupter),
3795
3796 /* state */
3797 VMSTATE_BOOL(msix_used, XHCIInterrupter),
3798 VMSTATE_BOOL(er_pcs, XHCIInterrupter),
3799 VMSTATE_UINT64(er_start, XHCIInterrupter),
3800 VMSTATE_UINT32(er_size, XHCIInterrupter),
3801 VMSTATE_UINT32(er_ep_idx, XHCIInterrupter),
3802
3803 /* event queue (used if ring is full) */
898248a3 3804 VMSTATE_BOOL(er_full_unused, XHCIInterrupter),
37352df3
GH
3805 VMSTATE_UINT32_TEST(ev_buffer_put, XHCIInterrupter, xhci_er_full),
3806 VMSTATE_UINT32_TEST(ev_buffer_get, XHCIInterrupter, xhci_er_full),
3807 VMSTATE_STRUCT_ARRAY_TEST(ev_buffer, XHCIInterrupter, EV_QUEUE,
3808 xhci_er_full, 1,
3809 vmstate_xhci_event, XHCIEvent),
3810
3811 VMSTATE_END_OF_LIST()
3812 }
3813};
3814
62c6ae04
HM
3815static const VMStateDescription vmstate_xhci = {
3816 .name = "xhci",
37352df3
GH
3817 .version_id = 1,
3818 .post_load = usb_xhci_post_load,
3819 .fields = (VMStateField[]) {
20daa90a 3820 VMSTATE_PCI_DEVICE(parent_obj, XHCIState),
9b7d3334 3821 VMSTATE_MSIX(parent_obj, XHCIState),
37352df3
GH
3822
3823 VMSTATE_STRUCT_VARRAY_UINT32(ports, XHCIState, numports, 1,
3824 vmstate_xhci_port, XHCIPort),
3825 VMSTATE_STRUCT_VARRAY_UINT32(slots, XHCIState, numslots, 1,
3826 vmstate_xhci_slot, XHCISlot),
3827 VMSTATE_STRUCT_VARRAY_UINT32(intr, XHCIState, numintrs, 1,
3828 vmstate_xhci_intr, XHCIInterrupter),
3829
3830 /* Operational Registers */
3831 VMSTATE_UINT32(usbcmd, XHCIState),
3832 VMSTATE_UINT32(usbsts, XHCIState),
3833 VMSTATE_UINT32(dnctrl, XHCIState),
3834 VMSTATE_UINT32(crcr_low, XHCIState),
3835 VMSTATE_UINT32(crcr_high, XHCIState),
3836 VMSTATE_UINT32(dcbaap_low, XHCIState),
3837 VMSTATE_UINT32(dcbaap_high, XHCIState),
3838 VMSTATE_UINT32(config, XHCIState),
3839
3840 /* Runtime Registers & state */
3841 VMSTATE_INT64(mfindex_start, XHCIState),
e720677e 3842 VMSTATE_TIMER_PTR(mfwrap_timer, XHCIState),
37352df3
GH
3843 VMSTATE_STRUCT(cmd_ring, XHCIState, 1, vmstate_xhci_ring, XHCIRing),
3844
3845 VMSTATE_END_OF_LIST()
3846 }
62c6ae04
HM
3847};
3848
4f72b8d2 3849static Property nec_xhci_properties[] = {
290fd20d
C
3850 DEFINE_PROP_ON_OFF_AUTO("msi", XHCIState, msi, ON_OFF_AUTO_AUTO),
3851 DEFINE_PROP_ON_OFF_AUTO("msix", XHCIState, msix, ON_OFF_AUTO_AUTO),
7bafd888
GH
3852 DEFINE_PROP_BIT("superspeed-ports-first",
3853 XHCIState, flags, XHCI_FLAG_SS_FIRST, true),
e6043e92
DDAG
3854 DEFINE_PROP_BIT("force-pcie-endcap", XHCIState, flags,
3855 XHCI_FLAG_FORCE_PCIE_ENDCAP, false),
91062ae0
GH
3856 DEFINE_PROP_UINT32("intrs", XHCIState, numintrs, MAXINTRS),
3857 DEFINE_PROP_UINT32("slots", XHCIState, numslots, MAXSLOTS),
4f72b8d2
GH
3858 DEFINE_PROP_END_OF_LIST(),
3859};
3860
3861static Property xhci_properties[] = {
3862 DEFINE_PROP_BIT("streams", XHCIState, flags,
3863 XHCI_FLAG_ENABLE_STREAMS, true),
91062ae0
GH
3864 DEFINE_PROP_UINT32("p2", XHCIState, numports_2, 4),
3865 DEFINE_PROP_UINT32("p3", XHCIState, numports_3, 4),
39bffca2
AL
3866 DEFINE_PROP_END_OF_LIST(),
3867};
3868
40021f08
AL
3869static void xhci_class_init(ObjectClass *klass, void *data)
3870{
3871 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
39bffca2 3872 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08 3873
39bffca2
AL
3874 dc->vmsd = &vmstate_xhci;
3875 dc->props = xhci_properties;
64619739 3876 dc->reset = xhci_reset;
125ee0ed 3877 set_bit(DEVICE_CATEGORY_USB, dc->categories);
9af21dbe 3878 k->realize = usb_xhci_realize;
53c30545 3879 k->exit = usb_xhci_exit;
40021f08 3880 k->class_id = PCI_CLASS_SERIAL_USB;
40021f08 3881 k->is_express = 1;
40021f08
AL
3882}
3883
8c43a6f0 3884static const TypeInfo xhci_info = {
37034575 3885 .name = TYPE_XHCI,
39bffca2
AL
3886 .parent = TYPE_PCI_DEVICE,
3887 .instance_size = sizeof(XHCIState),
3888 .class_init = xhci_class_init,
72a810f4
GH
3889 .abstract = true,
3890};
3891
3892static void nec_xhci_class_init(ObjectClass *klass, void *data)
3893{
3894 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
4f72b8d2 3895 DeviceClass *dc = DEVICE_CLASS(klass);
72a810f4 3896
4f72b8d2 3897 dc->props = nec_xhci_properties;
72a810f4
GH
3898 k->vendor_id = PCI_VENDOR_ID_NEC;
3899 k->device_id = PCI_DEVICE_ID_NEC_UPD720200;
3900 k->revision = 0x03;
3901}
3902
3903static const TypeInfo nec_xhci_info = {
3904 .name = TYPE_NEC_XHCI,
3905 .parent = TYPE_XHCI,
3906 .class_init = nec_xhci_class_init,
3907};
3908
3909static void qemu_xhci_class_init(ObjectClass *klass, void *data)
3910{
3911 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
3912
3913 k->vendor_id = PCI_VENDOR_ID_REDHAT;
3914 k->device_id = PCI_DEVICE_ID_REDHAT_XHCI;
3915 k->revision = 0x01;
3916}
3917
4f72b8d2
GH
3918static void qemu_xhci_instance_init(Object *obj)
3919{
3920 XHCIState *xhci = XHCI(obj);
3921
3922 xhci->msi = ON_OFF_AUTO_OFF;
3923 xhci->msix = ON_OFF_AUTO_AUTO;
3924 xhci->numintrs = MAXINTRS;
3925 xhci->numslots = MAXSLOTS;
3926 xhci_set_flag(xhci, XHCI_FLAG_SS_FIRST);
3927}
3928
72a810f4
GH
3929static const TypeInfo qemu_xhci_info = {
3930 .name = TYPE_QEMU_XHCI,
3931 .parent = TYPE_XHCI,
3932 .class_init = qemu_xhci_class_init,
4f72b8d2 3933 .instance_init = qemu_xhci_instance_init,
62c6ae04
HM
3934};
3935
83f7d43a 3936static void xhci_register_types(void)
62c6ae04 3937{
39bffca2 3938 type_register_static(&xhci_info);
72a810f4
GH
3939 type_register_static(&nec_xhci_info);
3940 type_register_static(&qemu_xhci_info);
62c6ae04 3941}
83f7d43a
AF
3942
3943type_init(xhci_register_types)