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