2 * USB xHCI controller emulation
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
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.
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.
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/>.
21 #include "qemu/osdep.h"
23 #include "qemu/timer.h"
24 #include "qemu/queue.h"
26 #include "hw/pci/pci.h"
27 #include "hw/pci/msi.h"
28 #include "hw/pci/msix.h"
30 #include "qapi/error.h"
36 #define DPRINTF(...) fprintf(stderr, __VA_ARGS__)
38 #define DPRINTF(...) do {} while (0)
40 #define FIXME(_msg) do { fprintf(stderr, "FIXME %s:%d %s\n", \
41 __func__, __LINE__, _msg); abort(); } while (0)
46 #define MAXPORTS (MAXPORTS_2+MAXPORTS_3)
50 /* Very pessimistic, let's hope it's enough for all cases */
51 #define EV_QUEUE (((3 * 24) + 16) * MAXSLOTS)
52 /* Do not deliver ER Full events. NEC's driver does some things not bound
53 * to the specs when it gets them */
56 #define TRB_LINK_LIMIT 4
59 #define LEN_OPER (0x400 + 0x10 * MAXPORTS)
60 #define LEN_RUNTIME ((MAXINTRS + 1) * 0x20)
61 #define LEN_DOORBELL ((MAXSLOTS + 1) * 0x20)
63 #define OFF_OPER LEN_CAP
64 #define OFF_RUNTIME 0x1000
65 #define OFF_DOORBELL 0x2000
66 #define OFF_MSIX_TABLE 0x3000
67 #define OFF_MSIX_PBA 0x3800
68 /* must be power of 2 */
69 #define LEN_REGS 0x4000
71 #if (OFF_OPER + LEN_OPER) > OFF_RUNTIME
72 #error Increase OFF_RUNTIME
74 #if (OFF_RUNTIME + LEN_RUNTIME) > OFF_DOORBELL
75 #error Increase OFF_DOORBELL
77 #if (OFF_DOORBELL + LEN_DOORBELL) > LEN_REGS
78 # error Increase LEN_REGS
82 #define USBCMD_RS (1<<0)
83 #define USBCMD_HCRST (1<<1)
84 #define USBCMD_INTE (1<<2)
85 #define USBCMD_HSEE (1<<3)
86 #define USBCMD_LHCRST (1<<7)
87 #define USBCMD_CSS (1<<8)
88 #define USBCMD_CRS (1<<9)
89 #define USBCMD_EWE (1<<10)
90 #define USBCMD_EU3S (1<<11)
92 #define USBSTS_HCH (1<<0)
93 #define USBSTS_HSE (1<<2)
94 #define USBSTS_EINT (1<<3)
95 #define USBSTS_PCD (1<<4)
96 #define USBSTS_SSS (1<<8)
97 #define USBSTS_RSS (1<<9)
98 #define USBSTS_SRE (1<<10)
99 #define USBSTS_CNR (1<<11)
100 #define USBSTS_HCE (1<<12)
103 #define PORTSC_CCS (1<<0)
104 #define PORTSC_PED (1<<1)
105 #define PORTSC_OCA (1<<3)
106 #define PORTSC_PR (1<<4)
107 #define PORTSC_PLS_SHIFT 5
108 #define PORTSC_PLS_MASK 0xf
109 #define PORTSC_PP (1<<9)
110 #define PORTSC_SPEED_SHIFT 10
111 #define PORTSC_SPEED_MASK 0xf
112 #define PORTSC_SPEED_FULL (1<<10)
113 #define PORTSC_SPEED_LOW (2<<10)
114 #define PORTSC_SPEED_HIGH (3<<10)
115 #define PORTSC_SPEED_SUPER (4<<10)
116 #define PORTSC_PIC_SHIFT 14
117 #define PORTSC_PIC_MASK 0x3
118 #define PORTSC_LWS (1<<16)
119 #define PORTSC_CSC (1<<17)
120 #define PORTSC_PEC (1<<18)
121 #define PORTSC_WRC (1<<19)
122 #define PORTSC_OCC (1<<20)
123 #define PORTSC_PRC (1<<21)
124 #define PORTSC_PLC (1<<22)
125 #define PORTSC_CEC (1<<23)
126 #define PORTSC_CAS (1<<24)
127 #define PORTSC_WCE (1<<25)
128 #define PORTSC_WDE (1<<26)
129 #define PORTSC_WOE (1<<27)
130 #define PORTSC_DR (1<<30)
131 #define PORTSC_WPR (1<<31)
133 #define CRCR_RCS (1<<0)
134 #define CRCR_CS (1<<1)
135 #define CRCR_CA (1<<2)
136 #define CRCR_CRR (1<<3)
138 #define IMAN_IP (1<<0)
139 #define IMAN_IE (1<<1)
141 #define ERDP_EHB (1<<3)
144 typedef struct XHCITRB
{
163 PLS_COMPILANCE_MODE
= 10,
168 typedef enum TRBType
{
181 CR_CONFIGURE_ENDPOINT
,
189 CR_SET_LATENCY_TOLERANCE
,
190 CR_GET_PORT_BANDWIDTH
,
195 ER_PORT_STATUS_CHANGE
,
196 ER_BANDWIDTH_REQUEST
,
199 ER_DEVICE_NOTIFICATION
,
201 /* vendor specific bits */
202 CR_VENDOR_VIA_CHALLENGE_RESPONSE
= 48,
203 CR_VENDOR_NEC_FIRMWARE_REVISION
= 49,
204 CR_VENDOR_NEC_CHALLENGE_RESPONSE
= 50,
207 #define CR_LINK TR_LINK
209 typedef enum TRBCCode
{
212 CC_DATA_BUFFER_ERROR
,
214 CC_USB_TRANSACTION_ERROR
,
220 CC_INVALID_STREAM_TYPE_ERROR
,
221 CC_SLOT_NOT_ENABLED_ERROR
,
222 CC_EP_NOT_ENABLED_ERROR
,
228 CC_BANDWIDTH_OVERRUN
,
229 CC_CONTEXT_STATE_ERROR
,
230 CC_NO_PING_RESPONSE_ERROR
,
231 CC_EVENT_RING_FULL_ERROR
,
232 CC_INCOMPATIBLE_DEVICE_ERROR
,
233 CC_MISSED_SERVICE_ERROR
,
234 CC_COMMAND_RING_STOPPED
,
237 CC_STOPPED_LENGTH_INVALID
,
238 CC_MAX_EXIT_LATENCY_TOO_LARGE_ERROR
= 29,
239 CC_ISOCH_BUFFER_OVERRUN
= 31,
242 CC_INVALID_STREAM_ID_ERROR
,
243 CC_SECONDARY_BANDWIDTH_ERROR
,
244 CC_SPLIT_TRANSACTION_ERROR
248 #define TRB_TYPE_SHIFT 10
249 #define TRB_TYPE_MASK 0x3f
250 #define TRB_TYPE(t) (((t).control >> TRB_TYPE_SHIFT) & TRB_TYPE_MASK)
252 #define TRB_EV_ED (1<<2)
254 #define TRB_TR_ENT (1<<1)
255 #define TRB_TR_ISP (1<<2)
256 #define TRB_TR_NS (1<<3)
257 #define TRB_TR_CH (1<<4)
258 #define TRB_TR_IOC (1<<5)
259 #define TRB_TR_IDT (1<<6)
260 #define TRB_TR_TBC_SHIFT 7
261 #define TRB_TR_TBC_MASK 0x3
262 #define TRB_TR_BEI (1<<9)
263 #define TRB_TR_TLBPC_SHIFT 16
264 #define TRB_TR_TLBPC_MASK 0xf
265 #define TRB_TR_FRAMEID_SHIFT 20
266 #define TRB_TR_FRAMEID_MASK 0x7ff
267 #define TRB_TR_SIA (1<<31)
269 #define TRB_TR_DIR (1<<16)
271 #define TRB_CR_SLOTID_SHIFT 24
272 #define TRB_CR_SLOTID_MASK 0xff
273 #define TRB_CR_EPID_SHIFT 16
274 #define TRB_CR_EPID_MASK 0x1f
276 #define TRB_CR_BSR (1<<9)
277 #define TRB_CR_DC (1<<9)
279 #define TRB_LK_TC (1<<1)
281 #define TRB_INTR_SHIFT 22
282 #define TRB_INTR_MASK 0x3ff
283 #define TRB_INTR(t) (((t).status >> TRB_INTR_SHIFT) & TRB_INTR_MASK)
285 #define EP_TYPE_MASK 0x7
286 #define EP_TYPE_SHIFT 3
288 #define EP_STATE_MASK 0x7
289 #define EP_DISABLED (0<<0)
290 #define EP_RUNNING (1<<0)
291 #define EP_HALTED (2<<0)
292 #define EP_STOPPED (3<<0)
293 #define EP_ERROR (4<<0)
295 #define SLOT_STATE_MASK 0x1f
296 #define SLOT_STATE_SHIFT 27
297 #define SLOT_STATE(s) (((s)>>SLOT_STATE_SHIFT)&SLOT_STATE_MASK)
298 #define SLOT_ENABLED 0
299 #define SLOT_DEFAULT 1
300 #define SLOT_ADDRESSED 2
301 #define SLOT_CONFIGURED 3
303 #define SLOT_CONTEXT_ENTRIES_MASK 0x1f
304 #define SLOT_CONTEXT_ENTRIES_SHIFT 27
306 typedef struct XHCIState XHCIState
;
307 typedef struct XHCIStreamContext XHCIStreamContext
;
308 typedef struct XHCIEPContext XHCIEPContext
;
310 #define get_field(data, field) \
311 (((data) >> field##_SHIFT) & field##_MASK)
313 #define set_field(data, newval, field) do { \
314 uint32_t val = *data; \
315 val &= ~(field##_MASK << field##_SHIFT); \
316 val |= ((newval) & field##_MASK) << field##_SHIFT; \
320 typedef enum EPType
{
331 typedef struct XHCIRing
{
336 typedef struct XHCIPort
{
346 typedef struct XHCITransfer
{
347 XHCIEPContext
*epctx
;
354 unsigned int iso_pkts
;
355 unsigned int streamid
;
360 unsigned int trb_count
;
366 unsigned int pktsize
;
367 unsigned int cur_pkt
;
369 uint64_t mfindex_kick
;
371 QTAILQ_ENTRY(XHCITransfer
) next
;
374 struct XHCIStreamContext
{
380 struct XHCIEPContext
{
387 QTAILQ_HEAD(, XHCITransfer
) transfers
;
391 unsigned int max_psize
;
395 unsigned int max_pstreams
;
397 unsigned int nr_pstreams
;
398 XHCIStreamContext
*pstreams
;
400 /* iso xfer scheduling */
401 unsigned int interval
;
402 int64_t mfindex_last
;
403 QEMUTimer
*kick_timer
;
406 typedef struct XHCISlot
{
411 XHCIEPContext
* eps
[31];
414 typedef struct XHCIEvent
{
424 typedef struct XHCIInterrupter
{
429 uint32_t erstba_high
;
433 bool msix_used
, er_pcs
, er_full
;
437 unsigned int er_ep_idx
;
439 XHCIEvent ev_buffer
[EV_QUEUE
];
440 unsigned int ev_buffer_put
;
441 unsigned int ev_buffer_get
;
447 PCIDevice parent_obj
;
452 MemoryRegion mem_cap
;
453 MemoryRegion mem_oper
;
454 MemoryRegion mem_runtime
;
455 MemoryRegion mem_doorbell
;
463 uint32_t max_pstreams_mask
;
467 /* Operational Registers */
474 uint32_t dcbaap_high
;
477 USBPort uports
[MAX(MAXPORTS_2
, MAXPORTS_3
)];
478 XHCIPort ports
[MAXPORTS
];
479 XHCISlot slots
[MAXSLOTS
];
482 /* Runtime Registers */
483 int64_t mfindex_start
;
484 QEMUTimer
*mfwrap_timer
;
485 XHCIInterrupter intr
[MAXINTRS
];
490 #define TYPE_XHCI "nec-usb-xhci"
493 OBJECT_CHECK(XHCIState, (obj), TYPE_XHCI)
495 typedef struct XHCIEvRingSeg
{
503 XHCI_FLAG_SS_FIRST
= 1,
504 XHCI_FLAG_FORCE_PCIE_ENDCAP
,
505 XHCI_FLAG_ENABLE_STREAMS
,
508 static void xhci_kick_ep(XHCIState
*xhci
, unsigned int slotid
,
509 unsigned int epid
, unsigned int streamid
);
510 static void xhci_kick_epctx(XHCIEPContext
*epctx
, unsigned int streamid
);
511 static TRBCCode
xhci_disable_ep(XHCIState
*xhci
, unsigned int slotid
,
513 static void xhci_xfer_report(XHCITransfer
*xfer
);
514 static void xhci_event(XHCIState
*xhci
, XHCIEvent
*event
, int v
);
515 static void xhci_write_event(XHCIState
*xhci
, XHCIEvent
*event
, int v
);
516 static USBEndpoint
*xhci_epid_to_usbep(XHCIEPContext
*epctx
);
518 static const char *TRBType_names
[] = {
519 [TRB_RESERVED
] = "TRB_RESERVED",
520 [TR_NORMAL
] = "TR_NORMAL",
521 [TR_SETUP
] = "TR_SETUP",
522 [TR_DATA
] = "TR_DATA",
523 [TR_STATUS
] = "TR_STATUS",
524 [TR_ISOCH
] = "TR_ISOCH",
525 [TR_LINK
] = "TR_LINK",
526 [TR_EVDATA
] = "TR_EVDATA",
527 [TR_NOOP
] = "TR_NOOP",
528 [CR_ENABLE_SLOT
] = "CR_ENABLE_SLOT",
529 [CR_DISABLE_SLOT
] = "CR_DISABLE_SLOT",
530 [CR_ADDRESS_DEVICE
] = "CR_ADDRESS_DEVICE",
531 [CR_CONFIGURE_ENDPOINT
] = "CR_CONFIGURE_ENDPOINT",
532 [CR_EVALUATE_CONTEXT
] = "CR_EVALUATE_CONTEXT",
533 [CR_RESET_ENDPOINT
] = "CR_RESET_ENDPOINT",
534 [CR_STOP_ENDPOINT
] = "CR_STOP_ENDPOINT",
535 [CR_SET_TR_DEQUEUE
] = "CR_SET_TR_DEQUEUE",
536 [CR_RESET_DEVICE
] = "CR_RESET_DEVICE",
537 [CR_FORCE_EVENT
] = "CR_FORCE_EVENT",
538 [CR_NEGOTIATE_BW
] = "CR_NEGOTIATE_BW",
539 [CR_SET_LATENCY_TOLERANCE
] = "CR_SET_LATENCY_TOLERANCE",
540 [CR_GET_PORT_BANDWIDTH
] = "CR_GET_PORT_BANDWIDTH",
541 [CR_FORCE_HEADER
] = "CR_FORCE_HEADER",
542 [CR_NOOP
] = "CR_NOOP",
543 [ER_TRANSFER
] = "ER_TRANSFER",
544 [ER_COMMAND_COMPLETE
] = "ER_COMMAND_COMPLETE",
545 [ER_PORT_STATUS_CHANGE
] = "ER_PORT_STATUS_CHANGE",
546 [ER_BANDWIDTH_REQUEST
] = "ER_BANDWIDTH_REQUEST",
547 [ER_DOORBELL
] = "ER_DOORBELL",
548 [ER_HOST_CONTROLLER
] = "ER_HOST_CONTROLLER",
549 [ER_DEVICE_NOTIFICATION
] = "ER_DEVICE_NOTIFICATION",
550 [ER_MFINDEX_WRAP
] = "ER_MFINDEX_WRAP",
551 [CR_VENDOR_VIA_CHALLENGE_RESPONSE
] = "CR_VENDOR_VIA_CHALLENGE_RESPONSE",
552 [CR_VENDOR_NEC_FIRMWARE_REVISION
] = "CR_VENDOR_NEC_FIRMWARE_REVISION",
553 [CR_VENDOR_NEC_CHALLENGE_RESPONSE
] = "CR_VENDOR_NEC_CHALLENGE_RESPONSE",
556 static const char *TRBCCode_names
[] = {
557 [CC_INVALID
] = "CC_INVALID",
558 [CC_SUCCESS
] = "CC_SUCCESS",
559 [CC_DATA_BUFFER_ERROR
] = "CC_DATA_BUFFER_ERROR",
560 [CC_BABBLE_DETECTED
] = "CC_BABBLE_DETECTED",
561 [CC_USB_TRANSACTION_ERROR
] = "CC_USB_TRANSACTION_ERROR",
562 [CC_TRB_ERROR
] = "CC_TRB_ERROR",
563 [CC_STALL_ERROR
] = "CC_STALL_ERROR",
564 [CC_RESOURCE_ERROR
] = "CC_RESOURCE_ERROR",
565 [CC_BANDWIDTH_ERROR
] = "CC_BANDWIDTH_ERROR",
566 [CC_NO_SLOTS_ERROR
] = "CC_NO_SLOTS_ERROR",
567 [CC_INVALID_STREAM_TYPE_ERROR
] = "CC_INVALID_STREAM_TYPE_ERROR",
568 [CC_SLOT_NOT_ENABLED_ERROR
] = "CC_SLOT_NOT_ENABLED_ERROR",
569 [CC_EP_NOT_ENABLED_ERROR
] = "CC_EP_NOT_ENABLED_ERROR",
570 [CC_SHORT_PACKET
] = "CC_SHORT_PACKET",
571 [CC_RING_UNDERRUN
] = "CC_RING_UNDERRUN",
572 [CC_RING_OVERRUN
] = "CC_RING_OVERRUN",
573 [CC_VF_ER_FULL
] = "CC_VF_ER_FULL",
574 [CC_PARAMETER_ERROR
] = "CC_PARAMETER_ERROR",
575 [CC_BANDWIDTH_OVERRUN
] = "CC_BANDWIDTH_OVERRUN",
576 [CC_CONTEXT_STATE_ERROR
] = "CC_CONTEXT_STATE_ERROR",
577 [CC_NO_PING_RESPONSE_ERROR
] = "CC_NO_PING_RESPONSE_ERROR",
578 [CC_EVENT_RING_FULL_ERROR
] = "CC_EVENT_RING_FULL_ERROR",
579 [CC_INCOMPATIBLE_DEVICE_ERROR
] = "CC_INCOMPATIBLE_DEVICE_ERROR",
580 [CC_MISSED_SERVICE_ERROR
] = "CC_MISSED_SERVICE_ERROR",
581 [CC_COMMAND_RING_STOPPED
] = "CC_COMMAND_RING_STOPPED",
582 [CC_COMMAND_ABORTED
] = "CC_COMMAND_ABORTED",
583 [CC_STOPPED
] = "CC_STOPPED",
584 [CC_STOPPED_LENGTH_INVALID
] = "CC_STOPPED_LENGTH_INVALID",
585 [CC_MAX_EXIT_LATENCY_TOO_LARGE_ERROR
]
586 = "CC_MAX_EXIT_LATENCY_TOO_LARGE_ERROR",
587 [CC_ISOCH_BUFFER_OVERRUN
] = "CC_ISOCH_BUFFER_OVERRUN",
588 [CC_EVENT_LOST_ERROR
] = "CC_EVENT_LOST_ERROR",
589 [CC_UNDEFINED_ERROR
] = "CC_UNDEFINED_ERROR",
590 [CC_INVALID_STREAM_ID_ERROR
] = "CC_INVALID_STREAM_ID_ERROR",
591 [CC_SECONDARY_BANDWIDTH_ERROR
] = "CC_SECONDARY_BANDWIDTH_ERROR",
592 [CC_SPLIT_TRANSACTION_ERROR
] = "CC_SPLIT_TRANSACTION_ERROR",
595 static const char *ep_state_names
[] = {
596 [EP_DISABLED
] = "disabled",
597 [EP_RUNNING
] = "running",
598 [EP_HALTED
] = "halted",
599 [EP_STOPPED
] = "stopped",
600 [EP_ERROR
] = "error",
603 static const char *lookup_name(uint32_t index
, const char **list
, uint32_t llen
)
605 if (index
>= llen
|| list
[index
] == NULL
) {
611 static const char *trb_name(XHCITRB
*trb
)
613 return lookup_name(TRB_TYPE(*trb
), TRBType_names
,
614 ARRAY_SIZE(TRBType_names
));
617 static const char *event_name(XHCIEvent
*event
)
619 return lookup_name(event
->ccode
, TRBCCode_names
,
620 ARRAY_SIZE(TRBCCode_names
));
623 static const char *ep_state_name(uint32_t state
)
625 return lookup_name(state
, ep_state_names
,
626 ARRAY_SIZE(ep_state_names
));
629 static bool xhci_get_flag(XHCIState
*xhci
, enum xhci_flags bit
)
631 return xhci
->flags
& (1 << bit
);
634 static uint64_t xhci_mfindex_get(XHCIState
*xhci
)
636 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
637 return (now
- xhci
->mfindex_start
) / 125000;
640 static void xhci_mfwrap_update(XHCIState
*xhci
)
642 const uint32_t bits
= USBCMD_RS
| USBCMD_EWE
;
643 uint32_t mfindex
, left
;
646 if ((xhci
->usbcmd
& bits
) == bits
) {
647 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
648 mfindex
= ((now
- xhci
->mfindex_start
) / 125000) & 0x3fff;
649 left
= 0x4000 - mfindex
;
650 timer_mod(xhci
->mfwrap_timer
, now
+ left
* 125000);
652 timer_del(xhci
->mfwrap_timer
);
656 static void xhci_mfwrap_timer(void *opaque
)
658 XHCIState
*xhci
= opaque
;
659 XHCIEvent wrap
= { ER_MFINDEX_WRAP
, CC_SUCCESS
};
661 xhci_event(xhci
, &wrap
, 0);
662 xhci_mfwrap_update(xhci
);
665 static inline dma_addr_t
xhci_addr64(uint32_t low
, uint32_t high
)
667 if (sizeof(dma_addr_t
) == 4) {
670 return low
| (((dma_addr_t
)high
<< 16) << 16);
674 static inline dma_addr_t
xhci_mask64(uint64_t addr
)
676 if (sizeof(dma_addr_t
) == 4) {
677 return addr
& 0xffffffff;
683 static inline void xhci_dma_read_u32s(XHCIState
*xhci
, dma_addr_t addr
,
684 uint32_t *buf
, size_t len
)
688 assert((len
% sizeof(uint32_t)) == 0);
690 pci_dma_read(PCI_DEVICE(xhci
), addr
, buf
, len
);
692 for (i
= 0; i
< (len
/ sizeof(uint32_t)); i
++) {
693 buf
[i
] = le32_to_cpu(buf
[i
]);
697 static inline void xhci_dma_write_u32s(XHCIState
*xhci
, dma_addr_t addr
,
698 uint32_t *buf
, size_t len
)
702 uint32_t n
= len
/ sizeof(uint32_t);
704 assert((len
% sizeof(uint32_t)) == 0);
705 assert(n
<= ARRAY_SIZE(tmp
));
707 for (i
= 0; i
< n
; i
++) {
708 tmp
[i
] = cpu_to_le32(buf
[i
]);
710 pci_dma_write(PCI_DEVICE(xhci
), addr
, tmp
, len
);
713 static XHCIPort
*xhci_lookup_port(XHCIState
*xhci
, struct USBPort
*uport
)
720 switch (uport
->dev
->speed
) {
724 if (xhci_get_flag(xhci
, XHCI_FLAG_SS_FIRST
)) {
725 index
= uport
->index
+ xhci
->numports_3
;
727 index
= uport
->index
;
730 case USB_SPEED_SUPER
:
731 if (xhci_get_flag(xhci
, XHCI_FLAG_SS_FIRST
)) {
732 index
= uport
->index
;
734 index
= uport
->index
+ xhci
->numports_2
;
740 return &xhci
->ports
[index
];
743 static void xhci_intx_update(XHCIState
*xhci
)
745 PCIDevice
*pci_dev
= PCI_DEVICE(xhci
);
748 if (msix_enabled(pci_dev
) ||
749 msi_enabled(pci_dev
)) {
753 if (xhci
->intr
[0].iman
& IMAN_IP
&&
754 xhci
->intr
[0].iman
& IMAN_IE
&&
755 xhci
->usbcmd
& USBCMD_INTE
) {
759 trace_usb_xhci_irq_intx(level
);
760 pci_set_irq(pci_dev
, level
);
763 static void xhci_msix_update(XHCIState
*xhci
, int v
)
765 PCIDevice
*pci_dev
= PCI_DEVICE(xhci
);
768 if (!msix_enabled(pci_dev
)) {
772 enabled
= xhci
->intr
[v
].iman
& IMAN_IE
;
773 if (enabled
== xhci
->intr
[v
].msix_used
) {
778 trace_usb_xhci_irq_msix_use(v
);
779 msix_vector_use(pci_dev
, v
);
780 xhci
->intr
[v
].msix_used
= true;
782 trace_usb_xhci_irq_msix_unuse(v
);
783 msix_vector_unuse(pci_dev
, v
);
784 xhci
->intr
[v
].msix_used
= false;
788 static void xhci_intr_raise(XHCIState
*xhci
, int v
)
790 PCIDevice
*pci_dev
= PCI_DEVICE(xhci
);
792 xhci
->intr
[v
].erdp_low
|= ERDP_EHB
;
793 xhci
->intr
[v
].iman
|= IMAN_IP
;
794 xhci
->usbsts
|= USBSTS_EINT
;
796 if (!(xhci
->intr
[v
].iman
& IMAN_IE
)) {
800 if (!(xhci
->usbcmd
& USBCMD_INTE
)) {
804 if (msix_enabled(pci_dev
)) {
805 trace_usb_xhci_irq_msix(v
);
806 msix_notify(pci_dev
, v
);
810 if (msi_enabled(pci_dev
)) {
811 trace_usb_xhci_irq_msi(v
);
812 msi_notify(pci_dev
, v
);
817 trace_usb_xhci_irq_intx(1);
818 pci_irq_assert(pci_dev
);
822 static inline int xhci_running(XHCIState
*xhci
)
824 return !(xhci
->usbsts
& USBSTS_HCH
) && !xhci
->intr
[0].er_full
;
827 static void xhci_die(XHCIState
*xhci
)
829 xhci
->usbsts
|= USBSTS_HCE
;
830 DPRINTF("xhci: asserted controller error\n");
833 static void xhci_write_event(XHCIState
*xhci
, XHCIEvent
*event
, int v
)
835 PCIDevice
*pci_dev
= PCI_DEVICE(xhci
);
836 XHCIInterrupter
*intr
= &xhci
->intr
[v
];
840 ev_trb
.parameter
= cpu_to_le64(event
->ptr
);
841 ev_trb
.status
= cpu_to_le32(event
->length
| (event
->ccode
<< 24));
842 ev_trb
.control
= (event
->slotid
<< 24) | (event
->epid
<< 16) |
843 event
->flags
| (event
->type
<< TRB_TYPE_SHIFT
);
845 ev_trb
.control
|= TRB_C
;
847 ev_trb
.control
= cpu_to_le32(ev_trb
.control
);
849 trace_usb_xhci_queue_event(v
, intr
->er_ep_idx
, trb_name(&ev_trb
),
850 event_name(event
), ev_trb
.parameter
,
851 ev_trb
.status
, ev_trb
.control
);
853 addr
= intr
->er_start
+ TRB_SIZE
*intr
->er_ep_idx
;
854 pci_dma_write(pci_dev
, addr
, &ev_trb
, TRB_SIZE
);
857 if (intr
->er_ep_idx
>= intr
->er_size
) {
859 intr
->er_pcs
= !intr
->er_pcs
;
863 static void xhci_events_update(XHCIState
*xhci
, int v
)
865 XHCIInterrupter
*intr
= &xhci
->intr
[v
];
870 if (xhci
->usbsts
& USBSTS_HCH
) {
874 erdp
= xhci_addr64(intr
->erdp_low
, intr
->erdp_high
);
875 if (erdp
< intr
->er_start
||
876 erdp
>= (intr
->er_start
+ TRB_SIZE
*intr
->er_size
)) {
877 DPRINTF("xhci: ERDP out of bounds: "DMA_ADDR_FMT
"\n", erdp
);
878 DPRINTF("xhci: ER[%d] at "DMA_ADDR_FMT
" len %d\n",
879 v
, intr
->er_start
, intr
->er_size
);
883 dp_idx
= (erdp
- intr
->er_start
) / TRB_SIZE
;
884 assert(dp_idx
< intr
->er_size
);
886 /* NEC didn't read section 4.9.4 of the spec (v1.0 p139 top Note) and thus
887 * deadlocks when the ER is full. Hack it by holding off events until
888 * the driver decides to free at least half of the ring */
890 int er_free
= dp_idx
- intr
->er_ep_idx
;
892 er_free
+= intr
->er_size
;
894 if (er_free
< (intr
->er_size
/2)) {
895 DPRINTF("xhci_events_update(): event ring still "
896 "more than half full (hack)\n");
901 while (intr
->ev_buffer_put
!= intr
->ev_buffer_get
) {
902 assert(intr
->er_full
);
903 if (((intr
->er_ep_idx
+1) % intr
->er_size
) == dp_idx
) {
904 DPRINTF("xhci_events_update(): event ring full again\n");
906 XHCIEvent full
= {ER_HOST_CONTROLLER
, CC_EVENT_RING_FULL_ERROR
};
907 xhci_write_event(xhci
, &full
, v
);
912 XHCIEvent
*event
= &intr
->ev_buffer
[intr
->ev_buffer_get
];
913 xhci_write_event(xhci
, event
, v
);
914 intr
->ev_buffer_get
++;
916 if (intr
->ev_buffer_get
== EV_QUEUE
) {
917 intr
->ev_buffer_get
= 0;
922 xhci_intr_raise(xhci
, v
);
925 if (intr
->er_full
&& intr
->ev_buffer_put
== intr
->ev_buffer_get
) {
926 DPRINTF("xhci_events_update(): event ring no longer full\n");
931 static void xhci_event(XHCIState
*xhci
, XHCIEvent
*event
, int v
)
933 XHCIInterrupter
*intr
;
937 if (v
>= xhci
->numintrs
) {
938 DPRINTF("intr nr out of range (%d >= %d)\n", v
, xhci
->numintrs
);
941 intr
= &xhci
->intr
[v
];
944 DPRINTF("xhci_event(): ER full, queueing\n");
945 if (((intr
->ev_buffer_put
+1) % EV_QUEUE
) == intr
->ev_buffer_get
) {
946 DPRINTF("xhci: event queue full, dropping event!\n");
949 intr
->ev_buffer
[intr
->ev_buffer_put
++] = *event
;
950 if (intr
->ev_buffer_put
== EV_QUEUE
) {
951 intr
->ev_buffer_put
= 0;
956 erdp
= xhci_addr64(intr
->erdp_low
, intr
->erdp_high
);
957 if (erdp
< intr
->er_start
||
958 erdp
>= (intr
->er_start
+ TRB_SIZE
*intr
->er_size
)) {
959 DPRINTF("xhci: ERDP out of bounds: "DMA_ADDR_FMT
"\n", erdp
);
960 DPRINTF("xhci: ER[%d] at "DMA_ADDR_FMT
" len %d\n",
961 v
, intr
->er_start
, intr
->er_size
);
966 dp_idx
= (erdp
- intr
->er_start
) / TRB_SIZE
;
967 assert(dp_idx
< intr
->er_size
);
969 if ((intr
->er_ep_idx
+1) % intr
->er_size
== dp_idx
) {
970 DPRINTF("xhci_event(): ER full, queueing\n");
972 XHCIEvent full
= {ER_HOST_CONTROLLER
, CC_EVENT_RING_FULL_ERROR
};
973 xhci_write_event(xhci
, &full
);
976 if (((intr
->ev_buffer_put
+1) % EV_QUEUE
) == intr
->ev_buffer_get
) {
977 DPRINTF("xhci: event queue full, dropping event!\n");
980 intr
->ev_buffer
[intr
->ev_buffer_put
++] = *event
;
981 if (intr
->ev_buffer_put
== EV_QUEUE
) {
982 intr
->ev_buffer_put
= 0;
985 xhci_write_event(xhci
, event
, v
);
988 xhci_intr_raise(xhci
, v
);
991 static void xhci_ring_init(XHCIState
*xhci
, XHCIRing
*ring
,
994 ring
->dequeue
= base
;
998 static TRBType
xhci_ring_fetch(XHCIState
*xhci
, XHCIRing
*ring
, XHCITRB
*trb
,
1001 PCIDevice
*pci_dev
= PCI_DEVICE(xhci
);
1002 uint32_t link_cnt
= 0;
1006 pci_dma_read(pci_dev
, ring
->dequeue
, trb
, TRB_SIZE
);
1007 trb
->addr
= ring
->dequeue
;
1008 trb
->ccs
= ring
->ccs
;
1009 le64_to_cpus(&trb
->parameter
);
1010 le32_to_cpus(&trb
->status
);
1011 le32_to_cpus(&trb
->control
);
1013 trace_usb_xhci_fetch_trb(ring
->dequeue
, trb_name(trb
),
1014 trb
->parameter
, trb
->status
, trb
->control
);
1016 if ((trb
->control
& TRB_C
) != ring
->ccs
) {
1020 type
= TRB_TYPE(*trb
);
1022 if (type
!= TR_LINK
) {
1024 *addr
= ring
->dequeue
;
1026 ring
->dequeue
+= TRB_SIZE
;
1029 if (++link_cnt
> TRB_LINK_LIMIT
) {
1032 ring
->dequeue
= xhci_mask64(trb
->parameter
);
1033 if (trb
->control
& TRB_LK_TC
) {
1034 ring
->ccs
= !ring
->ccs
;
1040 static int xhci_ring_chain_length(XHCIState
*xhci
, const XHCIRing
*ring
)
1042 PCIDevice
*pci_dev
= PCI_DEVICE(xhci
);
1045 dma_addr_t dequeue
= ring
->dequeue
;
1046 bool ccs
= ring
->ccs
;
1047 /* hack to bundle together the two/three TDs that make a setup transfer */
1048 bool control_td_set
= 0;
1049 uint32_t link_cnt
= 0;
1053 pci_dma_read(pci_dev
, dequeue
, &trb
, TRB_SIZE
);
1054 le64_to_cpus(&trb
.parameter
);
1055 le32_to_cpus(&trb
.status
);
1056 le32_to_cpus(&trb
.control
);
1058 if ((trb
.control
& TRB_C
) != ccs
) {
1062 type
= TRB_TYPE(trb
);
1064 if (type
== TR_LINK
) {
1065 if (++link_cnt
> TRB_LINK_LIMIT
) {
1068 dequeue
= xhci_mask64(trb
.parameter
);
1069 if (trb
.control
& TRB_LK_TC
) {
1076 dequeue
+= TRB_SIZE
;
1078 if (type
== TR_SETUP
) {
1080 } else if (type
== TR_STATUS
) {
1084 if (!control_td_set
&& !(trb
.control
& TRB_TR_CH
)) {
1090 static void xhci_er_reset(XHCIState
*xhci
, int v
)
1092 XHCIInterrupter
*intr
= &xhci
->intr
[v
];
1095 if (intr
->erstsz
== 0) {
1101 /* cache the (sole) event ring segment location */
1102 if (intr
->erstsz
!= 1) {
1103 DPRINTF("xhci: invalid value for ERSTSZ: %d\n", intr
->erstsz
);
1107 dma_addr_t erstba
= xhci_addr64(intr
->erstba_low
, intr
->erstba_high
);
1108 pci_dma_read(PCI_DEVICE(xhci
), erstba
, &seg
, sizeof(seg
));
1109 le32_to_cpus(&seg
.addr_low
);
1110 le32_to_cpus(&seg
.addr_high
);
1111 le32_to_cpus(&seg
.size
);
1112 if (seg
.size
< 16 || seg
.size
> 4096) {
1113 DPRINTF("xhci: invalid value for segment size: %d\n", seg
.size
);
1117 intr
->er_start
= xhci_addr64(seg
.addr_low
, seg
.addr_high
);
1118 intr
->er_size
= seg
.size
;
1120 intr
->er_ep_idx
= 0;
1124 DPRINTF("xhci: event ring[%d]:" DMA_ADDR_FMT
" [%d]\n",
1125 v
, intr
->er_start
, intr
->er_size
);
1128 static void xhci_run(XHCIState
*xhci
)
1130 trace_usb_xhci_run();
1131 xhci
->usbsts
&= ~USBSTS_HCH
;
1132 xhci
->mfindex_start
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
1135 static void xhci_stop(XHCIState
*xhci
)
1137 trace_usb_xhci_stop();
1138 xhci
->usbsts
|= USBSTS_HCH
;
1139 xhci
->crcr_low
&= ~CRCR_CRR
;
1142 static XHCIStreamContext
*xhci_alloc_stream_contexts(unsigned count
,
1145 XHCIStreamContext
*stctx
;
1148 stctx
= g_new0(XHCIStreamContext
, count
);
1149 for (i
= 0; i
< count
; i
++) {
1150 stctx
[i
].pctx
= base
+ i
* 16;
1156 static void xhci_reset_streams(XHCIEPContext
*epctx
)
1160 for (i
= 0; i
< epctx
->nr_pstreams
; i
++) {
1161 epctx
->pstreams
[i
].sct
= -1;
1165 static void xhci_alloc_streams(XHCIEPContext
*epctx
, dma_addr_t base
)
1167 assert(epctx
->pstreams
== NULL
);
1168 epctx
->nr_pstreams
= 2 << epctx
->max_pstreams
;
1169 epctx
->pstreams
= xhci_alloc_stream_contexts(epctx
->nr_pstreams
, base
);
1172 static void xhci_free_streams(XHCIEPContext
*epctx
)
1174 assert(epctx
->pstreams
!= NULL
);
1176 g_free(epctx
->pstreams
);
1177 epctx
->pstreams
= NULL
;
1178 epctx
->nr_pstreams
= 0;
1181 static int xhci_epmask_to_eps_with_streams(XHCIState
*xhci
,
1182 unsigned int slotid
,
1184 XHCIEPContext
**epctxs
,
1188 XHCIEPContext
*epctx
;
1192 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
1194 slot
= &xhci
->slots
[slotid
- 1];
1196 for (i
= 2, j
= 0; i
<= 31; i
++) {
1197 if (!(epmask
& (1u << i
))) {
1201 epctx
= slot
->eps
[i
- 1];
1202 ep
= xhci_epid_to_usbep(epctx
);
1203 if (!epctx
|| !epctx
->nr_pstreams
|| !ep
) {
1215 static void xhci_free_device_streams(XHCIState
*xhci
, unsigned int slotid
,
1218 USBEndpoint
*eps
[30];
1221 nr_eps
= xhci_epmask_to_eps_with_streams(xhci
, slotid
, epmask
, NULL
, eps
);
1223 usb_device_free_streams(eps
[0]->dev
, eps
, nr_eps
);
1227 static TRBCCode
xhci_alloc_device_streams(XHCIState
*xhci
, unsigned int slotid
,
1230 XHCIEPContext
*epctxs
[30];
1231 USBEndpoint
*eps
[30];
1232 int i
, r
, nr_eps
, req_nr_streams
, dev_max_streams
;
1234 nr_eps
= xhci_epmask_to_eps_with_streams(xhci
, slotid
, epmask
, epctxs
,
1240 req_nr_streams
= epctxs
[0]->nr_pstreams
;
1241 dev_max_streams
= eps
[0]->max_streams
;
1243 for (i
= 1; i
< nr_eps
; i
++) {
1245 * HdG: I don't expect these to ever trigger, but if they do we need
1246 * to come up with another solution, ie group identical endpoints
1247 * together and make an usb_device_alloc_streams call per group.
1249 if (epctxs
[i
]->nr_pstreams
!= req_nr_streams
) {
1250 FIXME("guest streams config not identical for all eps");
1251 return CC_RESOURCE_ERROR
;
1253 if (eps
[i
]->max_streams
!= dev_max_streams
) {
1254 FIXME("device streams config not identical for all eps");
1255 return CC_RESOURCE_ERROR
;
1260 * max-streams in both the device descriptor and in the controller is a
1261 * power of 2. But stream id 0 is reserved, so if a device can do up to 4
1262 * streams the guest will ask for 5 rounded up to the next power of 2 which
1263 * becomes 8. For emulated devices usb_device_alloc_streams is a nop.
1265 * For redirected devices however this is an issue, as there we must ask
1266 * the real xhci controller to alloc streams, and the host driver for the
1267 * real xhci controller will likely disallow allocating more streams then
1268 * the device can handle.
1270 * So we limit the requested nr_streams to the maximum number the device
1273 if (req_nr_streams
> dev_max_streams
) {
1274 req_nr_streams
= dev_max_streams
;
1277 r
= usb_device_alloc_streams(eps
[0]->dev
, eps
, nr_eps
, req_nr_streams
);
1279 DPRINTF("xhci: alloc streams failed\n");
1280 return CC_RESOURCE_ERROR
;
1286 static XHCIStreamContext
*xhci_find_stream(XHCIEPContext
*epctx
,
1287 unsigned int streamid
,
1290 XHCIStreamContext
*sctx
;
1292 uint32_t ctx
[2], sct
;
1294 assert(streamid
!= 0);
1296 if (streamid
>= epctx
->nr_pstreams
) {
1297 *cc_error
= CC_INVALID_STREAM_ID_ERROR
;
1300 sctx
= epctx
->pstreams
+ streamid
;
1302 FIXME("secondary streams not implemented yet");
1305 if (sctx
->sct
== -1) {
1306 xhci_dma_read_u32s(epctx
->xhci
, sctx
->pctx
, ctx
, sizeof(ctx
));
1307 sct
= (ctx
[0] >> 1) & 0x07;
1308 if (epctx
->lsa
&& sct
!= 1) {
1309 *cc_error
= CC_INVALID_STREAM_TYPE_ERROR
;
1313 base
= xhci_addr64(ctx
[0] & ~0xf, ctx
[1]);
1314 xhci_ring_init(epctx
->xhci
, &sctx
->ring
, base
);
1319 static void xhci_set_ep_state(XHCIState
*xhci
, XHCIEPContext
*epctx
,
1320 XHCIStreamContext
*sctx
, uint32_t state
)
1322 XHCIRing
*ring
= NULL
;
1326 xhci_dma_read_u32s(xhci
, epctx
->pctx
, ctx
, sizeof(ctx
));
1327 ctx
[0] &= ~EP_STATE_MASK
;
1330 /* update ring dequeue ptr */
1331 if (epctx
->nr_pstreams
) {
1334 xhci_dma_read_u32s(xhci
, sctx
->pctx
, ctx2
, sizeof(ctx2
));
1336 ctx2
[0] |= sctx
->ring
.dequeue
| sctx
->ring
.ccs
;
1337 ctx2
[1] = (sctx
->ring
.dequeue
>> 16) >> 16;
1338 xhci_dma_write_u32s(xhci
, sctx
->pctx
, ctx2
, sizeof(ctx2
));
1341 ring
= &epctx
->ring
;
1344 ctx
[2] = ring
->dequeue
| ring
->ccs
;
1345 ctx
[3] = (ring
->dequeue
>> 16) >> 16;
1347 DPRINTF("xhci: set epctx: " DMA_ADDR_FMT
" state=%d dequeue=%08x%08x\n",
1348 epctx
->pctx
, state
, ctx
[3], ctx
[2]);
1351 xhci_dma_write_u32s(xhci
, epctx
->pctx
, ctx
, sizeof(ctx
));
1352 if (epctx
->state
!= state
) {
1353 trace_usb_xhci_ep_state(epctx
->slotid
, epctx
->epid
,
1354 ep_state_name(epctx
->state
),
1355 ep_state_name(state
));
1357 epctx
->state
= state
;
1360 static void xhci_ep_kick_timer(void *opaque
)
1362 XHCIEPContext
*epctx
= opaque
;
1363 xhci_kick_epctx(epctx
, 0);
1366 static XHCIEPContext
*xhci_alloc_epctx(XHCIState
*xhci
,
1367 unsigned int slotid
,
1370 XHCIEPContext
*epctx
;
1372 epctx
= g_new0(XHCIEPContext
, 1);
1374 epctx
->slotid
= slotid
;
1377 QTAILQ_INIT(&epctx
->transfers
);
1378 epctx
->kick_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, xhci_ep_kick_timer
, epctx
);
1383 static void xhci_init_epctx(XHCIEPContext
*epctx
,
1384 dma_addr_t pctx
, uint32_t *ctx
)
1388 dequeue
= xhci_addr64(ctx
[2] & ~0xf, ctx
[3]);
1390 epctx
->type
= (ctx
[1] >> EP_TYPE_SHIFT
) & EP_TYPE_MASK
;
1392 epctx
->max_psize
= ctx
[1]>>16;
1393 epctx
->max_psize
*= 1+((ctx
[1]>>8)&0xff);
1394 epctx
->max_pstreams
= (ctx
[0] >> 10) & epctx
->xhci
->max_pstreams_mask
;
1395 epctx
->lsa
= (ctx
[0] >> 15) & 1;
1396 if (epctx
->max_pstreams
) {
1397 xhci_alloc_streams(epctx
, dequeue
);
1399 xhci_ring_init(epctx
->xhci
, &epctx
->ring
, dequeue
);
1400 epctx
->ring
.ccs
= ctx
[2] & 1;
1403 epctx
->interval
= 1 << ((ctx
[0] >> 16) & 0xff);
1406 static TRBCCode
xhci_enable_ep(XHCIState
*xhci
, unsigned int slotid
,
1407 unsigned int epid
, dma_addr_t pctx
,
1411 XHCIEPContext
*epctx
;
1413 trace_usb_xhci_ep_enable(slotid
, epid
);
1414 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
1415 assert(epid
>= 1 && epid
<= 31);
1417 slot
= &xhci
->slots
[slotid
-1];
1418 if (slot
->eps
[epid
-1]) {
1419 xhci_disable_ep(xhci
, slotid
, epid
);
1422 epctx
= xhci_alloc_epctx(xhci
, slotid
, epid
);
1423 slot
->eps
[epid
-1] = epctx
;
1424 xhci_init_epctx(epctx
, pctx
, ctx
);
1426 DPRINTF("xhci: endpoint %d.%d type is %d, max transaction (burst) "
1427 "size is %d\n", epid
/2, epid
%2, epctx
->type
, epctx
->max_psize
);
1429 epctx
->mfindex_last
= 0;
1431 epctx
->state
= EP_RUNNING
;
1432 ctx
[0] &= ~EP_STATE_MASK
;
1433 ctx
[0] |= EP_RUNNING
;
1438 static XHCITransfer
*xhci_ep_alloc_xfer(XHCIEPContext
*epctx
,
1441 uint32_t limit
= epctx
->nr_pstreams
+ 16;
1444 if (epctx
->xfer_count
>= limit
) {
1448 xfer
= g_new0(XHCITransfer
, 1);
1449 xfer
->epctx
= epctx
;
1450 xfer
->trbs
= g_new(XHCITRB
, length
);
1451 xfer
->trb_count
= length
;
1452 usb_packet_init(&xfer
->packet
);
1454 QTAILQ_INSERT_TAIL(&epctx
->transfers
, xfer
, next
);
1455 epctx
->xfer_count
++;
1460 static void xhci_ep_free_xfer(XHCITransfer
*xfer
)
1462 QTAILQ_REMOVE(&xfer
->epctx
->transfers
, xfer
, next
);
1463 xfer
->epctx
->xfer_count
--;
1465 usb_packet_cleanup(&xfer
->packet
);
1470 static int xhci_ep_nuke_one_xfer(XHCITransfer
*t
, TRBCCode report
)
1474 if (report
&& (t
->running_async
|| t
->running_retry
)) {
1476 xhci_xfer_report(t
);
1479 if (t
->running_async
) {
1480 usb_cancel_packet(&t
->packet
);
1481 t
->running_async
= 0;
1484 if (t
->running_retry
) {
1486 t
->epctx
->retry
= NULL
;
1487 timer_del(t
->epctx
->kick_timer
);
1489 t
->running_retry
= 0;
1500 static int xhci_ep_nuke_xfers(XHCIState
*xhci
, unsigned int slotid
,
1501 unsigned int epid
, TRBCCode report
)
1504 XHCIEPContext
*epctx
;
1507 USBEndpoint
*ep
= NULL
;
1508 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
1509 assert(epid
>= 1 && epid
<= 31);
1511 DPRINTF("xhci_ep_nuke_xfers(%d, %d)\n", slotid
, epid
);
1513 slot
= &xhci
->slots
[slotid
-1];
1515 if (!slot
->eps
[epid
-1]) {
1519 epctx
= slot
->eps
[epid
-1];
1522 xfer
= QTAILQ_FIRST(&epctx
->transfers
);
1526 killed
+= xhci_ep_nuke_one_xfer(xfer
, report
);
1528 report
= 0; /* Only report once */
1530 xhci_ep_free_xfer(xfer
);
1533 ep
= xhci_epid_to_usbep(epctx
);
1535 usb_device_ep_stopped(ep
->dev
, ep
);
1540 static TRBCCode
xhci_disable_ep(XHCIState
*xhci
, unsigned int slotid
,
1544 XHCIEPContext
*epctx
;
1546 trace_usb_xhci_ep_disable(slotid
, epid
);
1547 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
1548 assert(epid
>= 1 && epid
<= 31);
1550 slot
= &xhci
->slots
[slotid
-1];
1552 if (!slot
->eps
[epid
-1]) {
1553 DPRINTF("xhci: slot %d ep %d already disabled\n", slotid
, epid
);
1557 xhci_ep_nuke_xfers(xhci
, slotid
, epid
, 0);
1559 epctx
= slot
->eps
[epid
-1];
1561 if (epctx
->nr_pstreams
) {
1562 xhci_free_streams(epctx
);
1565 /* only touch guest RAM if we're not resetting the HC */
1566 if (xhci
->dcbaap_low
|| xhci
->dcbaap_high
) {
1567 xhci_set_ep_state(xhci
, epctx
, NULL
, EP_DISABLED
);
1570 timer_free(epctx
->kick_timer
);
1572 slot
->eps
[epid
-1] = NULL
;
1577 static TRBCCode
xhci_stop_ep(XHCIState
*xhci
, unsigned int slotid
,
1581 XHCIEPContext
*epctx
;
1583 trace_usb_xhci_ep_stop(slotid
, epid
);
1584 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
1586 if (epid
< 1 || epid
> 31) {
1587 DPRINTF("xhci: bad ep %d\n", epid
);
1588 return CC_TRB_ERROR
;
1591 slot
= &xhci
->slots
[slotid
-1];
1593 if (!slot
->eps
[epid
-1]) {
1594 DPRINTF("xhci: slot %d ep %d not enabled\n", slotid
, epid
);
1595 return CC_EP_NOT_ENABLED_ERROR
;
1598 if (xhci_ep_nuke_xfers(xhci
, slotid
, epid
, CC_STOPPED
) > 0) {
1599 DPRINTF("xhci: FIXME: endpoint stopped w/ xfers running, "
1600 "data might be lost\n");
1603 epctx
= slot
->eps
[epid
-1];
1605 xhci_set_ep_state(xhci
, epctx
, NULL
, EP_STOPPED
);
1607 if (epctx
->nr_pstreams
) {
1608 xhci_reset_streams(epctx
);
1614 static TRBCCode
xhci_reset_ep(XHCIState
*xhci
, unsigned int slotid
,
1618 XHCIEPContext
*epctx
;
1620 trace_usb_xhci_ep_reset(slotid
, epid
);
1621 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
1623 if (epid
< 1 || epid
> 31) {
1624 DPRINTF("xhci: bad ep %d\n", epid
);
1625 return CC_TRB_ERROR
;
1628 slot
= &xhci
->slots
[slotid
-1];
1630 if (!slot
->eps
[epid
-1]) {
1631 DPRINTF("xhci: slot %d ep %d not enabled\n", slotid
, epid
);
1632 return CC_EP_NOT_ENABLED_ERROR
;
1635 epctx
= slot
->eps
[epid
-1];
1637 if (epctx
->state
!= EP_HALTED
) {
1638 DPRINTF("xhci: reset EP while EP %d not halted (%d)\n",
1639 epid
, epctx
->state
);
1640 return CC_CONTEXT_STATE_ERROR
;
1643 if (xhci_ep_nuke_xfers(xhci
, slotid
, epid
, 0) > 0) {
1644 DPRINTF("xhci: FIXME: endpoint reset w/ xfers running, "
1645 "data might be lost\n");
1648 if (!xhci
->slots
[slotid
-1].uport
||
1649 !xhci
->slots
[slotid
-1].uport
->dev
||
1650 !xhci
->slots
[slotid
-1].uport
->dev
->attached
) {
1651 return CC_USB_TRANSACTION_ERROR
;
1654 xhci_set_ep_state(xhci
, epctx
, NULL
, EP_STOPPED
);
1656 if (epctx
->nr_pstreams
) {
1657 xhci_reset_streams(epctx
);
1663 static TRBCCode
xhci_set_ep_dequeue(XHCIState
*xhci
, unsigned int slotid
,
1664 unsigned int epid
, unsigned int streamid
,
1668 XHCIEPContext
*epctx
;
1669 XHCIStreamContext
*sctx
;
1672 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
1674 if (epid
< 1 || epid
> 31) {
1675 DPRINTF("xhci: bad ep %d\n", epid
);
1676 return CC_TRB_ERROR
;
1679 trace_usb_xhci_ep_set_dequeue(slotid
, epid
, streamid
, pdequeue
);
1680 dequeue
= xhci_mask64(pdequeue
);
1682 slot
= &xhci
->slots
[slotid
-1];
1684 if (!slot
->eps
[epid
-1]) {
1685 DPRINTF("xhci: slot %d ep %d not enabled\n", slotid
, epid
);
1686 return CC_EP_NOT_ENABLED_ERROR
;
1689 epctx
= slot
->eps
[epid
-1];
1691 if (epctx
->state
!= EP_STOPPED
) {
1692 DPRINTF("xhci: set EP dequeue pointer while EP %d not stopped\n", epid
);
1693 return CC_CONTEXT_STATE_ERROR
;
1696 if (epctx
->nr_pstreams
) {
1698 sctx
= xhci_find_stream(epctx
, streamid
, &err
);
1702 xhci_ring_init(xhci
, &sctx
->ring
, dequeue
& ~0xf);
1703 sctx
->ring
.ccs
= dequeue
& 1;
1706 xhci_ring_init(xhci
, &epctx
->ring
, dequeue
& ~0xF);
1707 epctx
->ring
.ccs
= dequeue
& 1;
1710 xhci_set_ep_state(xhci
, epctx
, sctx
, EP_STOPPED
);
1715 static int xhci_xfer_create_sgl(XHCITransfer
*xfer
, int in_xfer
)
1717 XHCIState
*xhci
= xfer
->epctx
->xhci
;
1720 xfer
->int_req
= false;
1721 pci_dma_sglist_init(&xfer
->sgl
, PCI_DEVICE(xhci
), xfer
->trb_count
);
1722 for (i
= 0; i
< xfer
->trb_count
; i
++) {
1723 XHCITRB
*trb
= &xfer
->trbs
[i
];
1725 unsigned int chunk
= 0;
1727 if (trb
->control
& TRB_TR_IOC
) {
1728 xfer
->int_req
= true;
1731 switch (TRB_TYPE(*trb
)) {
1733 if ((!(trb
->control
& TRB_TR_DIR
)) != (!in_xfer
)) {
1734 DPRINTF("xhci: data direction mismatch for TR_DATA\n");
1740 addr
= xhci_mask64(trb
->parameter
);
1741 chunk
= trb
->status
& 0x1ffff;
1742 if (trb
->control
& TRB_TR_IDT
) {
1743 if (chunk
> 8 || in_xfer
) {
1744 DPRINTF("xhci: invalid immediate data TRB\n");
1747 qemu_sglist_add(&xfer
->sgl
, trb
->addr
, chunk
);
1749 qemu_sglist_add(&xfer
->sgl
, addr
, chunk
);
1758 qemu_sglist_destroy(&xfer
->sgl
);
1763 static void xhci_xfer_unmap(XHCITransfer
*xfer
)
1765 usb_packet_unmap(&xfer
->packet
, &xfer
->sgl
);
1766 qemu_sglist_destroy(&xfer
->sgl
);
1769 static void xhci_xfer_report(XHCITransfer
*xfer
)
1775 XHCIEvent event
= {ER_TRANSFER
, CC_SUCCESS
};
1776 XHCIState
*xhci
= xfer
->epctx
->xhci
;
1779 left
= xfer
->packet
.actual_length
;
1781 for (i
= 0; i
< xfer
->trb_count
; i
++) {
1782 XHCITRB
*trb
= &xfer
->trbs
[i
];
1783 unsigned int chunk
= 0;
1785 switch (TRB_TYPE(*trb
)) {
1787 chunk
= trb
->status
& 0x1ffff;
1795 chunk
= trb
->status
& 0x1ffff;
1798 if (xfer
->status
== CC_SUCCESS
) {
1811 if (!reported
&& ((trb
->control
& TRB_TR_IOC
) ||
1812 (shortpkt
&& (trb
->control
& TRB_TR_ISP
)) ||
1813 (xfer
->status
!= CC_SUCCESS
&& left
== 0))) {
1814 event
.slotid
= xfer
->epctx
->slotid
;
1815 event
.epid
= xfer
->epctx
->epid
;
1816 event
.length
= (trb
->status
& 0x1ffff) - chunk
;
1818 event
.ptr
= trb
->addr
;
1819 if (xfer
->status
== CC_SUCCESS
) {
1820 event
.ccode
= shortpkt
? CC_SHORT_PACKET
: CC_SUCCESS
;
1822 event
.ccode
= xfer
->status
;
1824 if (TRB_TYPE(*trb
) == TR_EVDATA
) {
1825 event
.ptr
= trb
->parameter
;
1826 event
.flags
|= TRB_EV_ED
;
1827 event
.length
= edtla
& 0xffffff;
1828 DPRINTF("xhci_xfer_data: EDTLA=%d\n", event
.length
);
1831 xhci_event(xhci
, &event
, TRB_INTR(*trb
));
1833 if (xfer
->status
!= CC_SUCCESS
) {
1838 switch (TRB_TYPE(*trb
)) {
1848 static void xhci_stall_ep(XHCITransfer
*xfer
)
1850 XHCIEPContext
*epctx
= xfer
->epctx
;
1851 XHCIState
*xhci
= epctx
->xhci
;
1853 XHCIStreamContext
*sctx
;
1855 if (epctx
->nr_pstreams
) {
1856 sctx
= xhci_find_stream(epctx
, xfer
->streamid
, &err
);
1860 sctx
->ring
.dequeue
= xfer
->trbs
[0].addr
;
1861 sctx
->ring
.ccs
= xfer
->trbs
[0].ccs
;
1862 xhci_set_ep_state(xhci
, epctx
, sctx
, EP_HALTED
);
1864 epctx
->ring
.dequeue
= xfer
->trbs
[0].addr
;
1865 epctx
->ring
.ccs
= xfer
->trbs
[0].ccs
;
1866 xhci_set_ep_state(xhci
, epctx
, NULL
, EP_HALTED
);
1870 static int xhci_submit(XHCIState
*xhci
, XHCITransfer
*xfer
,
1871 XHCIEPContext
*epctx
);
1873 static int xhci_setup_packet(XHCITransfer
*xfer
)
1878 dir
= xfer
->in_xfer
? USB_TOKEN_IN
: USB_TOKEN_OUT
;
1880 if (xfer
->packet
.ep
) {
1881 ep
= xfer
->packet
.ep
;
1883 ep
= xhci_epid_to_usbep(xfer
->epctx
);
1885 DPRINTF("xhci: slot %d has no device\n",
1891 xhci_xfer_create_sgl(xfer
, dir
== USB_TOKEN_IN
); /* Also sets int_req */
1892 usb_packet_setup(&xfer
->packet
, dir
, ep
, xfer
->streamid
,
1893 xfer
->trbs
[0].addr
, false, xfer
->int_req
);
1894 usb_packet_map(&xfer
->packet
, &xfer
->sgl
);
1895 DPRINTF("xhci: setup packet pid 0x%x addr %d ep %d\n",
1896 xfer
->packet
.pid
, ep
->dev
->addr
, ep
->nr
);
1900 static int xhci_complete_packet(XHCITransfer
*xfer
)
1902 if (xfer
->packet
.status
== USB_RET_ASYNC
) {
1903 trace_usb_xhci_xfer_async(xfer
);
1904 xfer
->running_async
= 1;
1905 xfer
->running_retry
= 0;
1908 } else if (xfer
->packet
.status
== USB_RET_NAK
) {
1909 trace_usb_xhci_xfer_nak(xfer
);
1910 xfer
->running_async
= 0;
1911 xfer
->running_retry
= 1;
1915 xfer
->running_async
= 0;
1916 xfer
->running_retry
= 0;
1918 xhci_xfer_unmap(xfer
);
1921 if (xfer
->packet
.status
== USB_RET_SUCCESS
) {
1922 trace_usb_xhci_xfer_success(xfer
, xfer
->packet
.actual_length
);
1923 xfer
->status
= CC_SUCCESS
;
1924 xhci_xfer_report(xfer
);
1929 trace_usb_xhci_xfer_error(xfer
, xfer
->packet
.status
);
1930 switch (xfer
->packet
.status
) {
1932 case USB_RET_IOERROR
:
1933 xfer
->status
= CC_USB_TRANSACTION_ERROR
;
1934 xhci_xfer_report(xfer
);
1935 xhci_stall_ep(xfer
);
1938 xfer
->status
= CC_STALL_ERROR
;
1939 xhci_xfer_report(xfer
);
1940 xhci_stall_ep(xfer
);
1942 case USB_RET_BABBLE
:
1943 xfer
->status
= CC_BABBLE_DETECTED
;
1944 xhci_xfer_report(xfer
);
1945 xhci_stall_ep(xfer
);
1948 DPRINTF("%s: FIXME: status = %d\n", __func__
,
1949 xfer
->packet
.status
);
1950 FIXME("unhandled USB_RET_*");
1955 static int xhci_fire_ctl_transfer(XHCIState
*xhci
, XHCITransfer
*xfer
)
1957 XHCITRB
*trb_setup
, *trb_status
;
1958 uint8_t bmRequestType
;
1960 trb_setup
= &xfer
->trbs
[0];
1961 trb_status
= &xfer
->trbs
[xfer
->trb_count
-1];
1963 trace_usb_xhci_xfer_start(xfer
, xfer
->epctx
->slotid
,
1964 xfer
->epctx
->epid
, xfer
->streamid
);
1966 /* at most one Event Data TRB allowed after STATUS */
1967 if (TRB_TYPE(*trb_status
) == TR_EVDATA
&& xfer
->trb_count
> 2) {
1971 /* do some sanity checks */
1972 if (TRB_TYPE(*trb_setup
) != TR_SETUP
) {
1973 DPRINTF("xhci: ep0 first TD not SETUP: %d\n",
1974 TRB_TYPE(*trb_setup
));
1977 if (TRB_TYPE(*trb_status
) != TR_STATUS
) {
1978 DPRINTF("xhci: ep0 last TD not STATUS: %d\n",
1979 TRB_TYPE(*trb_status
));
1982 if (!(trb_setup
->control
& TRB_TR_IDT
)) {
1983 DPRINTF("xhci: Setup TRB doesn't have IDT set\n");
1986 if ((trb_setup
->status
& 0x1ffff) != 8) {
1987 DPRINTF("xhci: Setup TRB has bad length (%d)\n",
1988 (trb_setup
->status
& 0x1ffff));
1992 bmRequestType
= trb_setup
->parameter
;
1994 xfer
->in_xfer
= bmRequestType
& USB_DIR_IN
;
1995 xfer
->iso_xfer
= false;
1996 xfer
->timed_xfer
= false;
1998 if (xhci_setup_packet(xfer
) < 0) {
2001 xfer
->packet
.parameter
= trb_setup
->parameter
;
2003 usb_handle_packet(xfer
->packet
.ep
->dev
, &xfer
->packet
);
2005 xhci_complete_packet(xfer
);
2006 if (!xfer
->running_async
&& !xfer
->running_retry
) {
2007 xhci_kick_epctx(xfer
->epctx
, 0);
2012 static void xhci_calc_intr_kick(XHCIState
*xhci
, XHCITransfer
*xfer
,
2013 XHCIEPContext
*epctx
, uint64_t mfindex
)
2015 uint64_t asap
= ((mfindex
+ epctx
->interval
- 1) &
2016 ~(epctx
->interval
-1));
2017 uint64_t kick
= epctx
->mfindex_last
+ epctx
->interval
;
2019 assert(epctx
->interval
!= 0);
2020 xfer
->mfindex_kick
= MAX(asap
, kick
);
2023 static void xhci_calc_iso_kick(XHCIState
*xhci
, XHCITransfer
*xfer
,
2024 XHCIEPContext
*epctx
, uint64_t mfindex
)
2026 if (xfer
->trbs
[0].control
& TRB_TR_SIA
) {
2027 uint64_t asap
= ((mfindex
+ epctx
->interval
- 1) &
2028 ~(epctx
->interval
-1));
2029 if (asap
>= epctx
->mfindex_last
&&
2030 asap
<= epctx
->mfindex_last
+ epctx
->interval
* 4) {
2031 xfer
->mfindex_kick
= epctx
->mfindex_last
+ epctx
->interval
;
2033 xfer
->mfindex_kick
= asap
;
2036 xfer
->mfindex_kick
= ((xfer
->trbs
[0].control
>> TRB_TR_FRAMEID_SHIFT
)
2037 & TRB_TR_FRAMEID_MASK
) << 3;
2038 xfer
->mfindex_kick
|= mfindex
& ~0x3fff;
2039 if (xfer
->mfindex_kick
+ 0x100 < mfindex
) {
2040 xfer
->mfindex_kick
+= 0x4000;
2045 static void xhci_check_intr_iso_kick(XHCIState
*xhci
, XHCITransfer
*xfer
,
2046 XHCIEPContext
*epctx
, uint64_t mfindex
)
2048 if (xfer
->mfindex_kick
> mfindex
) {
2049 timer_mod(epctx
->kick_timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) +
2050 (xfer
->mfindex_kick
- mfindex
) * 125000);
2051 xfer
->running_retry
= 1;
2053 epctx
->mfindex_last
= xfer
->mfindex_kick
;
2054 timer_del(epctx
->kick_timer
);
2055 xfer
->running_retry
= 0;
2060 static int xhci_submit(XHCIState
*xhci
, XHCITransfer
*xfer
, XHCIEPContext
*epctx
)
2064 DPRINTF("xhci_submit(slotid=%d,epid=%d)\n", xfer
->slotid
, xfer
->epid
);
2066 xfer
->in_xfer
= epctx
->type
>>2;
2068 switch(epctx
->type
) {
2072 xfer
->iso_xfer
= false;
2073 xfer
->timed_xfer
= true;
2074 mfindex
= xhci_mfindex_get(xhci
);
2075 xhci_calc_intr_kick(xhci
, xfer
, epctx
, mfindex
);
2076 xhci_check_intr_iso_kick(xhci
, xfer
, epctx
, mfindex
);
2077 if (xfer
->running_retry
) {
2084 xfer
->iso_xfer
= false;
2085 xfer
->timed_xfer
= false;
2090 xfer
->iso_xfer
= true;
2091 xfer
->timed_xfer
= true;
2092 mfindex
= xhci_mfindex_get(xhci
);
2093 xhci_calc_iso_kick(xhci
, xfer
, epctx
, mfindex
);
2094 xhci_check_intr_iso_kick(xhci
, xfer
, epctx
, mfindex
);
2095 if (xfer
->running_retry
) {
2100 trace_usb_xhci_unimplemented("endpoint type", epctx
->type
);
2104 if (xhci_setup_packet(xfer
) < 0) {
2107 usb_handle_packet(xfer
->packet
.ep
->dev
, &xfer
->packet
);
2109 xhci_complete_packet(xfer
);
2110 if (!xfer
->running_async
&& !xfer
->running_retry
) {
2111 xhci_kick_epctx(xfer
->epctx
, xfer
->streamid
);
2116 static int xhci_fire_transfer(XHCIState
*xhci
, XHCITransfer
*xfer
, XHCIEPContext
*epctx
)
2118 trace_usb_xhci_xfer_start(xfer
, xfer
->epctx
->slotid
,
2119 xfer
->epctx
->epid
, xfer
->streamid
);
2120 return xhci_submit(xhci
, xfer
, epctx
);
2123 static void xhci_kick_ep(XHCIState
*xhci
, unsigned int slotid
,
2124 unsigned int epid
, unsigned int streamid
)
2126 XHCIEPContext
*epctx
;
2128 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
2129 assert(epid
>= 1 && epid
<= 31);
2131 if (!xhci
->slots
[slotid
-1].enabled
) {
2132 DPRINTF("xhci: xhci_kick_ep for disabled slot %d\n", slotid
);
2135 epctx
= xhci
->slots
[slotid
-1].eps
[epid
-1];
2137 DPRINTF("xhci: xhci_kick_ep for disabled endpoint %d,%d\n",
2142 xhci_kick_epctx(epctx
, streamid
);
2145 static void xhci_kick_epctx(XHCIEPContext
*epctx
, unsigned int streamid
)
2147 XHCIState
*xhci
= epctx
->xhci
;
2148 XHCIStreamContext
*stctx
;
2151 USBEndpoint
*ep
= NULL
;
2156 trace_usb_xhci_ep_kick(epctx
->slotid
, epctx
->epid
, streamid
);
2158 /* If the device has been detached, but the guest has not noticed this
2159 yet the 2 above checks will succeed, but we must NOT continue */
2160 if (!xhci
->slots
[epctx
->slotid
- 1].uport
||
2161 !xhci
->slots
[epctx
->slotid
- 1].uport
->dev
||
2162 !xhci
->slots
[epctx
->slotid
- 1].uport
->dev
->attached
) {
2167 XHCITransfer
*xfer
= epctx
->retry
;
2169 trace_usb_xhci_xfer_retry(xfer
);
2170 assert(xfer
->running_retry
);
2171 if (xfer
->timed_xfer
) {
2172 /* time to kick the transfer? */
2173 mfindex
= xhci_mfindex_get(xhci
);
2174 xhci_check_intr_iso_kick(xhci
, xfer
, epctx
, mfindex
);
2175 if (xfer
->running_retry
) {
2178 xfer
->timed_xfer
= 0;
2179 xfer
->running_retry
= 1;
2181 if (xfer
->iso_xfer
) {
2182 /* retry iso transfer */
2183 if (xhci_setup_packet(xfer
) < 0) {
2186 usb_handle_packet(xfer
->packet
.ep
->dev
, &xfer
->packet
);
2187 assert(xfer
->packet
.status
!= USB_RET_NAK
);
2188 xhci_complete_packet(xfer
);
2190 /* retry nak'ed transfer */
2191 if (xhci_setup_packet(xfer
) < 0) {
2194 usb_handle_packet(xfer
->packet
.ep
->dev
, &xfer
->packet
);
2195 if (xfer
->packet
.status
== USB_RET_NAK
) {
2198 xhci_complete_packet(xfer
);
2200 assert(!xfer
->running_retry
);
2201 xhci_ep_free_xfer(epctx
->retry
);
2202 epctx
->retry
= NULL
;
2205 if (epctx
->state
== EP_HALTED
) {
2206 DPRINTF("xhci: ep halted, not running schedule\n");
2211 if (epctx
->nr_pstreams
) {
2213 stctx
= xhci_find_stream(epctx
, streamid
, &err
);
2214 if (stctx
== NULL
) {
2217 ring
= &stctx
->ring
;
2218 xhci_set_ep_state(xhci
, epctx
, stctx
, EP_RUNNING
);
2220 ring
= &epctx
->ring
;
2222 xhci_set_ep_state(xhci
, epctx
, NULL
, EP_RUNNING
);
2224 assert(ring
->dequeue
!= 0);
2227 length
= xhci_ring_chain_length(xhci
, ring
);
2231 xfer
= xhci_ep_alloc_xfer(epctx
, length
);
2236 for (i
= 0; i
< length
; i
++) {
2238 type
= xhci_ring_fetch(xhci
, ring
, &xfer
->trbs
[i
], NULL
);
2241 xfer
->streamid
= streamid
;
2243 if (epctx
->epid
== 1) {
2244 xhci_fire_ctl_transfer(xhci
, xfer
);
2246 xhci_fire_transfer(xhci
, xfer
, epctx
);
2248 if (xfer
->complete
) {
2249 xhci_ep_free_xfer(xfer
);
2253 if (epctx
->state
== EP_HALTED
) {
2256 if (xfer
!= NULL
&& xfer
->running_retry
) {
2257 DPRINTF("xhci: xfer nacked, stopping schedule\n");
2258 epctx
->retry
= xfer
;
2263 ep
= xhci_epid_to_usbep(epctx
);
2265 usb_device_flush_ep_queue(ep
->dev
, ep
);
2269 static TRBCCode
xhci_enable_slot(XHCIState
*xhci
, unsigned int slotid
)
2271 trace_usb_xhci_slot_enable(slotid
);
2272 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
2273 xhci
->slots
[slotid
-1].enabled
= 1;
2274 xhci
->slots
[slotid
-1].uport
= NULL
;
2275 memset(xhci
->slots
[slotid
-1].eps
, 0, sizeof(XHCIEPContext
*)*31);
2280 static TRBCCode
xhci_disable_slot(XHCIState
*xhci
, unsigned int slotid
)
2284 trace_usb_xhci_slot_disable(slotid
);
2285 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
2287 for (i
= 1; i
<= 31; i
++) {
2288 if (xhci
->slots
[slotid
-1].eps
[i
-1]) {
2289 xhci_disable_ep(xhci
, slotid
, i
);
2293 xhci
->slots
[slotid
-1].enabled
= 0;
2294 xhci
->slots
[slotid
-1].addressed
= 0;
2295 xhci
->slots
[slotid
-1].uport
= NULL
;
2299 static USBPort
*xhci_lookup_uport(XHCIState
*xhci
, uint32_t *slot_ctx
)
2305 port
= (slot_ctx
[1]>>16) & 0xFF;
2306 if (port
< 1 || port
> xhci
->numports
) {
2309 port
= xhci
->ports
[port
-1].uport
->index
+1;
2310 pos
= snprintf(path
, sizeof(path
), "%d", port
);
2311 for (i
= 0; i
< 5; i
++) {
2312 port
= (slot_ctx
[0] >> 4*i
) & 0x0f;
2316 pos
+= snprintf(path
+ pos
, sizeof(path
) - pos
, ".%d", port
);
2319 QTAILQ_FOREACH(uport
, &xhci
->bus
.used
, next
) {
2320 if (strcmp(uport
->path
, path
) == 0) {
2327 static TRBCCode
xhci_address_slot(XHCIState
*xhci
, unsigned int slotid
,
2328 uint64_t pictx
, bool bsr
)
2333 dma_addr_t ictx
, octx
, dcbaap
;
2335 uint32_t ictl_ctx
[2];
2336 uint32_t slot_ctx
[4];
2337 uint32_t ep0_ctx
[5];
2341 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
2343 dcbaap
= xhci_addr64(xhci
->dcbaap_low
, xhci
->dcbaap_high
);
2344 poctx
= ldq_le_pci_dma(PCI_DEVICE(xhci
), dcbaap
+ 8 * slotid
);
2345 ictx
= xhci_mask64(pictx
);
2346 octx
= xhci_mask64(poctx
);
2348 DPRINTF("xhci: input context at "DMA_ADDR_FMT
"\n", ictx
);
2349 DPRINTF("xhci: output context at "DMA_ADDR_FMT
"\n", octx
);
2351 xhci_dma_read_u32s(xhci
, ictx
, ictl_ctx
, sizeof(ictl_ctx
));
2353 if (ictl_ctx
[0] != 0x0 || ictl_ctx
[1] != 0x3) {
2354 DPRINTF("xhci: invalid input context control %08x %08x\n",
2355 ictl_ctx
[0], ictl_ctx
[1]);
2356 return CC_TRB_ERROR
;
2359 xhci_dma_read_u32s(xhci
, ictx
+32, slot_ctx
, sizeof(slot_ctx
));
2360 xhci_dma_read_u32s(xhci
, ictx
+64, ep0_ctx
, sizeof(ep0_ctx
));
2362 DPRINTF("xhci: input slot context: %08x %08x %08x %08x\n",
2363 slot_ctx
[0], slot_ctx
[1], slot_ctx
[2], slot_ctx
[3]);
2365 DPRINTF("xhci: input ep0 context: %08x %08x %08x %08x %08x\n",
2366 ep0_ctx
[0], ep0_ctx
[1], ep0_ctx
[2], ep0_ctx
[3], ep0_ctx
[4]);
2368 uport
= xhci_lookup_uport(xhci
, slot_ctx
);
2369 if (uport
== NULL
) {
2370 DPRINTF("xhci: port not found\n");
2371 return CC_TRB_ERROR
;
2373 trace_usb_xhci_slot_address(slotid
, uport
->path
);
2376 if (!dev
|| !dev
->attached
) {
2377 DPRINTF("xhci: port %s not connected\n", uport
->path
);
2378 return CC_USB_TRANSACTION_ERROR
;
2381 for (i
= 0; i
< xhci
->numslots
; i
++) {
2382 if (i
== slotid
-1) {
2385 if (xhci
->slots
[i
].uport
== uport
) {
2386 DPRINTF("xhci: port %s already assigned to slot %d\n",
2388 return CC_TRB_ERROR
;
2392 slot
= &xhci
->slots
[slotid
-1];
2393 slot
->uport
= uport
;
2396 /* Make sure device is in USB_STATE_DEFAULT state */
2397 usb_device_reset(dev
);
2399 slot_ctx
[3] = SLOT_DEFAULT
<< SLOT_STATE_SHIFT
;
2404 slot_ctx
[3] = (SLOT_ADDRESSED
<< SLOT_STATE_SHIFT
) | slotid
;
2405 memset(&p
, 0, sizeof(p
));
2406 usb_packet_addbuf(&p
, buf
, sizeof(buf
));
2407 usb_packet_setup(&p
, USB_TOKEN_OUT
,
2408 usb_ep_get(dev
, USB_TOKEN_OUT
, 0), 0,
2410 usb_device_handle_control(dev
, &p
,
2411 DeviceOutRequest
| USB_REQ_SET_ADDRESS
,
2412 slotid
, 0, 0, NULL
);
2413 assert(p
.status
!= USB_RET_ASYNC
);
2416 res
= xhci_enable_ep(xhci
, slotid
, 1, octx
+32, ep0_ctx
);
2418 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2419 slot_ctx
[0], slot_ctx
[1], slot_ctx
[2], slot_ctx
[3]);
2420 DPRINTF("xhci: output ep0 context: %08x %08x %08x %08x %08x\n",
2421 ep0_ctx
[0], ep0_ctx
[1], ep0_ctx
[2], ep0_ctx
[3], ep0_ctx
[4]);
2423 xhci_dma_write_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2424 xhci_dma_write_u32s(xhci
, octx
+32, ep0_ctx
, sizeof(ep0_ctx
));
2426 xhci
->slots
[slotid
-1].addressed
= 1;
2431 static TRBCCode
xhci_configure_slot(XHCIState
*xhci
, unsigned int slotid
,
2432 uint64_t pictx
, bool dc
)
2434 dma_addr_t ictx
, octx
;
2435 uint32_t ictl_ctx
[2];
2436 uint32_t slot_ctx
[4];
2437 uint32_t islot_ctx
[4];
2442 trace_usb_xhci_slot_configure(slotid
);
2443 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
2445 ictx
= xhci_mask64(pictx
);
2446 octx
= xhci
->slots
[slotid
-1].ctx
;
2448 DPRINTF("xhci: input context at "DMA_ADDR_FMT
"\n", ictx
);
2449 DPRINTF("xhci: output context at "DMA_ADDR_FMT
"\n", octx
);
2452 for (i
= 2; i
<= 31; i
++) {
2453 if (xhci
->slots
[slotid
-1].eps
[i
-1]) {
2454 xhci_disable_ep(xhci
, slotid
, i
);
2458 xhci_dma_read_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2459 slot_ctx
[3] &= ~(SLOT_STATE_MASK
<< SLOT_STATE_SHIFT
);
2460 slot_ctx
[3] |= SLOT_ADDRESSED
<< SLOT_STATE_SHIFT
;
2461 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2462 slot_ctx
[0], slot_ctx
[1], slot_ctx
[2], slot_ctx
[3]);
2463 xhci_dma_write_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2468 xhci_dma_read_u32s(xhci
, ictx
, ictl_ctx
, sizeof(ictl_ctx
));
2470 if ((ictl_ctx
[0] & 0x3) != 0x0 || (ictl_ctx
[1] & 0x3) != 0x1) {
2471 DPRINTF("xhci: invalid input context control %08x %08x\n",
2472 ictl_ctx
[0], ictl_ctx
[1]);
2473 return CC_TRB_ERROR
;
2476 xhci_dma_read_u32s(xhci
, ictx
+32, islot_ctx
, sizeof(islot_ctx
));
2477 xhci_dma_read_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2479 if (SLOT_STATE(slot_ctx
[3]) < SLOT_ADDRESSED
) {
2480 DPRINTF("xhci: invalid slot state %08x\n", slot_ctx
[3]);
2481 return CC_CONTEXT_STATE_ERROR
;
2484 xhci_free_device_streams(xhci
, slotid
, ictl_ctx
[0] | ictl_ctx
[1]);
2486 for (i
= 2; i
<= 31; i
++) {
2487 if (ictl_ctx
[0] & (1<<i
)) {
2488 xhci_disable_ep(xhci
, slotid
, i
);
2490 if (ictl_ctx
[1] & (1<<i
)) {
2491 xhci_dma_read_u32s(xhci
, ictx
+32+(32*i
), ep_ctx
, sizeof(ep_ctx
));
2492 DPRINTF("xhci: input ep%d.%d context: %08x %08x %08x %08x %08x\n",
2493 i
/2, i
%2, ep_ctx
[0], ep_ctx
[1], ep_ctx
[2],
2494 ep_ctx
[3], ep_ctx
[4]);
2495 xhci_disable_ep(xhci
, slotid
, i
);
2496 res
= xhci_enable_ep(xhci
, slotid
, i
, octx
+(32*i
), ep_ctx
);
2497 if (res
!= CC_SUCCESS
) {
2500 DPRINTF("xhci: output ep%d.%d context: %08x %08x %08x %08x %08x\n",
2501 i
/2, i
%2, ep_ctx
[0], ep_ctx
[1], ep_ctx
[2],
2502 ep_ctx
[3], ep_ctx
[4]);
2503 xhci_dma_write_u32s(xhci
, octx
+(32*i
), ep_ctx
, sizeof(ep_ctx
));
2507 res
= xhci_alloc_device_streams(xhci
, slotid
, ictl_ctx
[1]);
2508 if (res
!= CC_SUCCESS
) {
2509 for (i
= 2; i
<= 31; i
++) {
2510 if (ictl_ctx
[1] & (1u << i
)) {
2511 xhci_disable_ep(xhci
, slotid
, i
);
2517 slot_ctx
[3] &= ~(SLOT_STATE_MASK
<< SLOT_STATE_SHIFT
);
2518 slot_ctx
[3] |= SLOT_CONFIGURED
<< SLOT_STATE_SHIFT
;
2519 slot_ctx
[0] &= ~(SLOT_CONTEXT_ENTRIES_MASK
<< SLOT_CONTEXT_ENTRIES_SHIFT
);
2520 slot_ctx
[0] |= islot_ctx
[0] & (SLOT_CONTEXT_ENTRIES_MASK
<<
2521 SLOT_CONTEXT_ENTRIES_SHIFT
);
2522 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2523 slot_ctx
[0], slot_ctx
[1], slot_ctx
[2], slot_ctx
[3]);
2525 xhci_dma_write_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2531 static TRBCCode
xhci_evaluate_slot(XHCIState
*xhci
, unsigned int slotid
,
2534 dma_addr_t ictx
, octx
;
2535 uint32_t ictl_ctx
[2];
2536 uint32_t iep0_ctx
[5];
2537 uint32_t ep0_ctx
[5];
2538 uint32_t islot_ctx
[4];
2539 uint32_t slot_ctx
[4];
2541 trace_usb_xhci_slot_evaluate(slotid
);
2542 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
2544 ictx
= xhci_mask64(pictx
);
2545 octx
= xhci
->slots
[slotid
-1].ctx
;
2547 DPRINTF("xhci: input context at "DMA_ADDR_FMT
"\n", ictx
);
2548 DPRINTF("xhci: output context at "DMA_ADDR_FMT
"\n", octx
);
2550 xhci_dma_read_u32s(xhci
, ictx
, ictl_ctx
, sizeof(ictl_ctx
));
2552 if (ictl_ctx
[0] != 0x0 || ictl_ctx
[1] & ~0x3) {
2553 DPRINTF("xhci: invalid input context control %08x %08x\n",
2554 ictl_ctx
[0], ictl_ctx
[1]);
2555 return CC_TRB_ERROR
;
2558 if (ictl_ctx
[1] & 0x1) {
2559 xhci_dma_read_u32s(xhci
, ictx
+32, islot_ctx
, sizeof(islot_ctx
));
2561 DPRINTF("xhci: input slot context: %08x %08x %08x %08x\n",
2562 islot_ctx
[0], islot_ctx
[1], islot_ctx
[2], islot_ctx
[3]);
2564 xhci_dma_read_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2566 slot_ctx
[1] &= ~0xFFFF; /* max exit latency */
2567 slot_ctx
[1] |= islot_ctx
[1] & 0xFFFF;
2568 slot_ctx
[2] &= ~0xFF00000; /* interrupter target */
2569 slot_ctx
[2] |= islot_ctx
[2] & 0xFF000000;
2571 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2572 slot_ctx
[0], slot_ctx
[1], slot_ctx
[2], slot_ctx
[3]);
2574 xhci_dma_write_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2577 if (ictl_ctx
[1] & 0x2) {
2578 xhci_dma_read_u32s(xhci
, ictx
+64, iep0_ctx
, sizeof(iep0_ctx
));
2580 DPRINTF("xhci: input ep0 context: %08x %08x %08x %08x %08x\n",
2581 iep0_ctx
[0], iep0_ctx
[1], iep0_ctx
[2],
2582 iep0_ctx
[3], iep0_ctx
[4]);
2584 xhci_dma_read_u32s(xhci
, octx
+32, ep0_ctx
, sizeof(ep0_ctx
));
2586 ep0_ctx
[1] &= ~0xFFFF0000; /* max packet size*/
2587 ep0_ctx
[1] |= iep0_ctx
[1] & 0xFFFF0000;
2589 DPRINTF("xhci: output ep0 context: %08x %08x %08x %08x %08x\n",
2590 ep0_ctx
[0], ep0_ctx
[1], ep0_ctx
[2], ep0_ctx
[3], ep0_ctx
[4]);
2592 xhci_dma_write_u32s(xhci
, octx
+32, ep0_ctx
, sizeof(ep0_ctx
));
2598 static TRBCCode
xhci_reset_slot(XHCIState
*xhci
, unsigned int slotid
)
2600 uint32_t slot_ctx
[4];
2604 trace_usb_xhci_slot_reset(slotid
);
2605 assert(slotid
>= 1 && slotid
<= xhci
->numslots
);
2607 octx
= xhci
->slots
[slotid
-1].ctx
;
2609 DPRINTF("xhci: output context at "DMA_ADDR_FMT
"\n", octx
);
2611 for (i
= 2; i
<= 31; i
++) {
2612 if (xhci
->slots
[slotid
-1].eps
[i
-1]) {
2613 xhci_disable_ep(xhci
, slotid
, i
);
2617 xhci_dma_read_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2618 slot_ctx
[3] &= ~(SLOT_STATE_MASK
<< SLOT_STATE_SHIFT
);
2619 slot_ctx
[3] |= SLOT_DEFAULT
<< SLOT_STATE_SHIFT
;
2620 DPRINTF("xhci: output slot context: %08x %08x %08x %08x\n",
2621 slot_ctx
[0], slot_ctx
[1], slot_ctx
[2], slot_ctx
[3]);
2622 xhci_dma_write_u32s(xhci
, octx
, slot_ctx
, sizeof(slot_ctx
));
2627 static unsigned int xhci_get_slot(XHCIState
*xhci
, XHCIEvent
*event
, XHCITRB
*trb
)
2629 unsigned int slotid
;
2630 slotid
= (trb
->control
>> TRB_CR_SLOTID_SHIFT
) & TRB_CR_SLOTID_MASK
;
2631 if (slotid
< 1 || slotid
> xhci
->numslots
) {
2632 DPRINTF("xhci: bad slot id %d\n", slotid
);
2633 event
->ccode
= CC_TRB_ERROR
;
2635 } else if (!xhci
->slots
[slotid
-1].enabled
) {
2636 DPRINTF("xhci: slot id %d not enabled\n", slotid
);
2637 event
->ccode
= CC_SLOT_NOT_ENABLED_ERROR
;
2643 /* cleanup slot state on usb device detach */
2644 static void xhci_detach_slot(XHCIState
*xhci
, USBPort
*uport
)
2648 for (slot
= 0; slot
< xhci
->numslots
; slot
++) {
2649 if (xhci
->slots
[slot
].uport
== uport
) {
2653 if (slot
== xhci
->numslots
) {
2657 for (ep
= 0; ep
< 31; ep
++) {
2658 if (xhci
->slots
[slot
].eps
[ep
]) {
2659 xhci_ep_nuke_xfers(xhci
, slot
+ 1, ep
+ 1, 0);
2662 xhci
->slots
[slot
].uport
= NULL
;
2665 static TRBCCode
xhci_get_port_bandwidth(XHCIState
*xhci
, uint64_t pctx
)
2668 uint8_t bw_ctx
[xhci
->numports
+1];
2670 DPRINTF("xhci_get_port_bandwidth()\n");
2672 ctx
= xhci_mask64(pctx
);
2674 DPRINTF("xhci: bandwidth context at "DMA_ADDR_FMT
"\n", ctx
);
2676 /* TODO: actually implement real values here */
2678 memset(&bw_ctx
[1], 80, xhci
->numports
); /* 80% */
2679 pci_dma_write(PCI_DEVICE(xhci
), ctx
, bw_ctx
, sizeof(bw_ctx
));
2684 static uint32_t rotl(uint32_t v
, unsigned count
)
2687 return (v
<< count
) | (v
>> (32 - count
));
2691 static uint32_t xhci_nec_challenge(uint32_t hi
, uint32_t lo
)
2694 val
= rotl(lo
- 0x49434878, 32 - ((hi
>>8) & 0x1F));
2695 val
+= rotl(lo
+ 0x49434878, hi
& 0x1F);
2696 val
-= rotl(hi
^ 0x49434878, (lo
>> 16) & 0x1F);
2700 static void xhci_via_challenge(XHCIState
*xhci
, uint64_t addr
)
2702 PCIDevice
*pci_dev
= PCI_DEVICE(xhci
);
2705 dma_addr_t paddr
= xhci_mask64(addr
);
2707 pci_dma_read(pci_dev
, paddr
, &buf
, 32);
2709 memcpy(obuf
, buf
, sizeof(obuf
));
2711 if ((buf
[0] & 0xff) == 2) {
2712 obuf
[0] = 0x49932000 + 0x54dc200 * buf
[2] + 0x7429b578 * buf
[3];
2713 obuf
[0] |= (buf
[2] * buf
[3]) & 0xff;
2714 obuf
[1] = 0x0132bb37 + 0xe89 * buf
[2] + 0xf09 * buf
[3];
2715 obuf
[2] = 0x0066c2e9 + 0x2091 * buf
[2] + 0x19bd * buf
[3];
2716 obuf
[3] = 0xd5281342 + 0x2cc9691 * buf
[2] + 0x2367662 * buf
[3];
2717 obuf
[4] = 0x0123c75c + 0x1595 * buf
[2] + 0x19ec * buf
[3];
2718 obuf
[5] = 0x00f695de + 0x26fd * buf
[2] + 0x3e9 * buf
[3];
2719 obuf
[6] = obuf
[2] ^ obuf
[3] ^ 0x29472956;
2720 obuf
[7] = obuf
[2] ^ obuf
[3] ^ 0x65866593;
2723 pci_dma_write(pci_dev
, paddr
, &obuf
, 32);
2726 static void xhci_process_commands(XHCIState
*xhci
)
2730 XHCIEvent event
= {ER_COMMAND_COMPLETE
, CC_SUCCESS
};
2732 unsigned int i
, slotid
= 0;
2734 DPRINTF("xhci_process_commands()\n");
2735 if (!xhci_running(xhci
)) {
2736 DPRINTF("xhci_process_commands() called while xHC stopped or paused\n");
2740 xhci
->crcr_low
|= CRCR_CRR
;
2742 while ((type
= xhci_ring_fetch(xhci
, &xhci
->cmd_ring
, &trb
, &addr
))) {
2745 case CR_ENABLE_SLOT
:
2746 for (i
= 0; i
< xhci
->numslots
; i
++) {
2747 if (!xhci
->slots
[i
].enabled
) {
2751 if (i
>= xhci
->numslots
) {
2752 DPRINTF("xhci: no device slots available\n");
2753 event
.ccode
= CC_NO_SLOTS_ERROR
;
2756 event
.ccode
= xhci_enable_slot(xhci
, slotid
);
2759 case CR_DISABLE_SLOT
:
2760 slotid
= xhci_get_slot(xhci
, &event
, &trb
);
2762 event
.ccode
= xhci_disable_slot(xhci
, slotid
);
2765 case CR_ADDRESS_DEVICE
:
2766 slotid
= xhci_get_slot(xhci
, &event
, &trb
);
2768 event
.ccode
= xhci_address_slot(xhci
, slotid
, trb
.parameter
,
2769 trb
.control
& TRB_CR_BSR
);
2772 case CR_CONFIGURE_ENDPOINT
:
2773 slotid
= xhci_get_slot(xhci
, &event
, &trb
);
2775 event
.ccode
= xhci_configure_slot(xhci
, slotid
, trb
.parameter
,
2776 trb
.control
& TRB_CR_DC
);
2779 case CR_EVALUATE_CONTEXT
:
2780 slotid
= xhci_get_slot(xhci
, &event
, &trb
);
2782 event
.ccode
= xhci_evaluate_slot(xhci
, slotid
, trb
.parameter
);
2785 case CR_STOP_ENDPOINT
:
2786 slotid
= xhci_get_slot(xhci
, &event
, &trb
);
2788 unsigned int epid
= (trb
.control
>> TRB_CR_EPID_SHIFT
)
2790 event
.ccode
= xhci_stop_ep(xhci
, slotid
, epid
);
2793 case CR_RESET_ENDPOINT
:
2794 slotid
= xhci_get_slot(xhci
, &event
, &trb
);
2796 unsigned int epid
= (trb
.control
>> TRB_CR_EPID_SHIFT
)
2798 event
.ccode
= xhci_reset_ep(xhci
, slotid
, epid
);
2801 case CR_SET_TR_DEQUEUE
:
2802 slotid
= xhci_get_slot(xhci
, &event
, &trb
);
2804 unsigned int epid
= (trb
.control
>> TRB_CR_EPID_SHIFT
)
2806 unsigned int streamid
= (trb
.status
>> 16) & 0xffff;
2807 event
.ccode
= xhci_set_ep_dequeue(xhci
, slotid
,
2812 case CR_RESET_DEVICE
:
2813 slotid
= xhci_get_slot(xhci
, &event
, &trb
);
2815 event
.ccode
= xhci_reset_slot(xhci
, slotid
);
2818 case CR_GET_PORT_BANDWIDTH
:
2819 event
.ccode
= xhci_get_port_bandwidth(xhci
, trb
.parameter
);
2821 case CR_VENDOR_VIA_CHALLENGE_RESPONSE
:
2822 xhci_via_challenge(xhci
, trb
.parameter
);
2824 case CR_VENDOR_NEC_FIRMWARE_REVISION
:
2825 event
.type
= 48; /* NEC reply */
2826 event
.length
= 0x3025;
2828 case CR_VENDOR_NEC_CHALLENGE_RESPONSE
:
2830 uint32_t chi
= trb
.parameter
>> 32;
2831 uint32_t clo
= trb
.parameter
;
2832 uint32_t val
= xhci_nec_challenge(chi
, clo
);
2833 event
.length
= val
& 0xFFFF;
2834 event
.epid
= val
>> 16;
2836 event
.type
= 48; /* NEC reply */
2840 trace_usb_xhci_unimplemented("command", type
);
2841 event
.ccode
= CC_TRB_ERROR
;
2844 event
.slotid
= slotid
;
2845 xhci_event(xhci
, &event
, 0);
2849 static bool xhci_port_have_device(XHCIPort
*port
)
2851 if (!port
->uport
->dev
|| !port
->uport
->dev
->attached
) {
2852 return false; /* no device present */
2854 if (!((1 << port
->uport
->dev
->speed
) & port
->speedmask
)) {
2855 return false; /* speed mismatch */
2860 static void xhci_port_notify(XHCIPort
*port
, uint32_t bits
)
2862 XHCIEvent ev
= { ER_PORT_STATUS_CHANGE
, CC_SUCCESS
,
2863 port
->portnr
<< 24 };
2865 if ((port
->portsc
& bits
) == bits
) {
2868 trace_usb_xhci_port_notify(port
->portnr
, bits
);
2869 port
->portsc
|= bits
;
2870 if (!xhci_running(port
->xhci
)) {
2873 xhci_event(port
->xhci
, &ev
, 0);
2876 static void xhci_port_update(XHCIPort
*port
, int is_detach
)
2878 uint32_t pls
= PLS_RX_DETECT
;
2880 port
->portsc
= PORTSC_PP
;
2881 if (!is_detach
&& xhci_port_have_device(port
)) {
2882 port
->portsc
|= PORTSC_CCS
;
2883 switch (port
->uport
->dev
->speed
) {
2885 port
->portsc
|= PORTSC_SPEED_LOW
;
2888 case USB_SPEED_FULL
:
2889 port
->portsc
|= PORTSC_SPEED_FULL
;
2892 case USB_SPEED_HIGH
:
2893 port
->portsc
|= PORTSC_SPEED_HIGH
;
2896 case USB_SPEED_SUPER
:
2897 port
->portsc
|= PORTSC_SPEED_SUPER
;
2898 port
->portsc
|= PORTSC_PED
;
2903 set_field(&port
->portsc
, pls
, PORTSC_PLS
);
2904 trace_usb_xhci_port_link(port
->portnr
, pls
);
2905 xhci_port_notify(port
, PORTSC_CSC
);
2908 static void xhci_port_reset(XHCIPort
*port
, bool warm_reset
)
2910 trace_usb_xhci_port_reset(port
->portnr
, warm_reset
);
2912 if (!xhci_port_have_device(port
)) {
2916 usb_device_reset(port
->uport
->dev
);
2918 switch (port
->uport
->dev
->speed
) {
2919 case USB_SPEED_SUPER
:
2921 port
->portsc
|= PORTSC_WRC
;
2925 case USB_SPEED_FULL
:
2926 case USB_SPEED_HIGH
:
2927 set_field(&port
->portsc
, PLS_U0
, PORTSC_PLS
);
2928 trace_usb_xhci_port_link(port
->portnr
, PLS_U0
);
2929 port
->portsc
|= PORTSC_PED
;
2933 port
->portsc
&= ~PORTSC_PR
;
2934 xhci_port_notify(port
, PORTSC_PRC
);
2937 static void xhci_reset(DeviceState
*dev
)
2939 XHCIState
*xhci
= XHCI(dev
);
2942 trace_usb_xhci_reset();
2943 if (!(xhci
->usbsts
& USBSTS_HCH
)) {
2944 DPRINTF("xhci: reset while running!\n");
2948 xhci
->usbsts
= USBSTS_HCH
;
2951 xhci
->crcr_high
= 0;
2952 xhci
->dcbaap_low
= 0;
2953 xhci
->dcbaap_high
= 0;
2956 for (i
= 0; i
< xhci
->numslots
; i
++) {
2957 xhci_disable_slot(xhci
, i
+1);
2960 for (i
= 0; i
< xhci
->numports
; i
++) {
2961 xhci_port_update(xhci
->ports
+ i
, 0);
2964 for (i
= 0; i
< xhci
->numintrs
; i
++) {
2965 xhci
->intr
[i
].iman
= 0;
2966 xhci
->intr
[i
].imod
= 0;
2967 xhci
->intr
[i
].erstsz
= 0;
2968 xhci
->intr
[i
].erstba_low
= 0;
2969 xhci
->intr
[i
].erstba_high
= 0;
2970 xhci
->intr
[i
].erdp_low
= 0;
2971 xhci
->intr
[i
].erdp_high
= 0;
2972 xhci
->intr
[i
].msix_used
= 0;
2974 xhci
->intr
[i
].er_ep_idx
= 0;
2975 xhci
->intr
[i
].er_pcs
= 1;
2976 xhci
->intr
[i
].er_full
= 0;
2977 xhci
->intr
[i
].ev_buffer_put
= 0;
2978 xhci
->intr
[i
].ev_buffer_get
= 0;
2981 xhci
->mfindex_start
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2982 xhci_mfwrap_update(xhci
);
2985 static uint64_t xhci_cap_read(void *ptr
, hwaddr reg
, unsigned size
)
2987 XHCIState
*xhci
= ptr
;
2991 case 0x00: /* HCIVERSION, CAPLENGTH */
2992 ret
= 0x01000000 | LEN_CAP
;
2994 case 0x04: /* HCSPARAMS 1 */
2995 ret
= ((xhci
->numports_2
+xhci
->numports_3
)<<24)
2996 | (xhci
->numintrs
<<8) | xhci
->numslots
;
2998 case 0x08: /* HCSPARAMS 2 */
3001 case 0x0c: /* HCSPARAMS 3 */
3004 case 0x10: /* HCCPARAMS */
3005 if (sizeof(dma_addr_t
) == 4) {
3006 ret
= 0x00080000 | (xhci
->max_pstreams_mask
<< 12);
3008 ret
= 0x00080001 | (xhci
->max_pstreams_mask
<< 12);
3011 case 0x14: /* DBOFF */
3014 case 0x18: /* RTSOFF */
3018 /* extended capabilities */
3019 case 0x20: /* Supported Protocol:00 */
3020 ret
= 0x02000402; /* USB 2.0 */
3022 case 0x24: /* Supported Protocol:04 */
3023 ret
= 0x20425355; /* "USB " */
3025 case 0x28: /* Supported Protocol:08 */
3026 if (xhci_get_flag(xhci
, XHCI_FLAG_SS_FIRST
)) {
3027 ret
= (xhci
->numports_2
<<8) | (xhci
->numports_3
+1);
3029 ret
= (xhci
->numports_2
<<8) | 1;
3032 case 0x2c: /* Supported Protocol:0c */
3033 ret
= 0x00000000; /* reserved */
3035 case 0x30: /* Supported Protocol:00 */
3036 ret
= 0x03000002; /* USB 3.0 */
3038 case 0x34: /* Supported Protocol:04 */
3039 ret
= 0x20425355; /* "USB " */
3041 case 0x38: /* Supported Protocol:08 */
3042 if (xhci_get_flag(xhci
, XHCI_FLAG_SS_FIRST
)) {
3043 ret
= (xhci
->numports_3
<<8) | 1;
3045 ret
= (xhci
->numports_3
<<8) | (xhci
->numports_2
+1);
3048 case 0x3c: /* Supported Protocol:0c */
3049 ret
= 0x00000000; /* reserved */
3052 trace_usb_xhci_unimplemented("cap read", reg
);
3056 trace_usb_xhci_cap_read(reg
, ret
);
3060 static uint64_t xhci_port_read(void *ptr
, hwaddr reg
, unsigned size
)
3062 XHCIPort
*port
= ptr
;
3066 case 0x00: /* PORTSC */
3069 case 0x04: /* PORTPMSC */
3070 case 0x08: /* PORTLI */
3073 case 0x0c: /* reserved */
3075 trace_usb_xhci_unimplemented("port read", reg
);
3079 trace_usb_xhci_port_read(port
->portnr
, reg
, ret
);
3083 static void xhci_port_write(void *ptr
, hwaddr reg
,
3084 uint64_t val
, unsigned size
)
3086 XHCIPort
*port
= ptr
;
3087 uint32_t portsc
, notify
;
3089 trace_usb_xhci_port_write(port
->portnr
, reg
, val
);
3092 case 0x00: /* PORTSC */
3093 /* write-1-to-start bits */
3094 if (val
& PORTSC_WPR
) {
3095 xhci_port_reset(port
, true);
3098 if (val
& PORTSC_PR
) {
3099 xhci_port_reset(port
, false);
3103 portsc
= port
->portsc
;
3105 /* write-1-to-clear bits*/
3106 portsc
&= ~(val
& (PORTSC_CSC
|PORTSC_PEC
|PORTSC_WRC
|PORTSC_OCC
|
3107 PORTSC_PRC
|PORTSC_PLC
|PORTSC_CEC
));
3108 if (val
& PORTSC_LWS
) {
3109 /* overwrite PLS only when LWS=1 */
3110 uint32_t old_pls
= get_field(port
->portsc
, PORTSC_PLS
);
3111 uint32_t new_pls
= get_field(val
, PORTSC_PLS
);
3114 if (old_pls
!= PLS_U0
) {
3115 set_field(&portsc
, new_pls
, PORTSC_PLS
);
3116 trace_usb_xhci_port_link(port
->portnr
, new_pls
);
3117 notify
= PORTSC_PLC
;
3121 if (old_pls
< PLS_U3
) {
3122 set_field(&portsc
, new_pls
, PORTSC_PLS
);
3123 trace_usb_xhci_port_link(port
->portnr
, new_pls
);
3127 /* windows does this for some reason, don't spam stderr */
3130 DPRINTF("%s: ignore pls write (old %d, new %d)\n",
3131 __func__
, old_pls
, new_pls
);
3135 /* read/write bits */
3136 portsc
&= ~(PORTSC_PP
|PORTSC_WCE
|PORTSC_WDE
|PORTSC_WOE
);
3137 portsc
|= (val
& (PORTSC_PP
|PORTSC_WCE
|PORTSC_WDE
|PORTSC_WOE
));
3138 port
->portsc
= portsc
;
3140 xhci_port_notify(port
, notify
);
3143 case 0x04: /* PORTPMSC */
3144 case 0x08: /* PORTLI */
3146 trace_usb_xhci_unimplemented("port write", reg
);
3150 static uint64_t xhci_oper_read(void *ptr
, hwaddr reg
, unsigned size
)
3152 XHCIState
*xhci
= ptr
;
3156 case 0x00: /* USBCMD */
3159 case 0x04: /* USBSTS */
3162 case 0x08: /* PAGESIZE */
3165 case 0x14: /* DNCTRL */
3168 case 0x18: /* CRCR low */
3169 ret
= xhci
->crcr_low
& ~0xe;
3171 case 0x1c: /* CRCR high */
3172 ret
= xhci
->crcr_high
;
3174 case 0x30: /* DCBAAP low */
3175 ret
= xhci
->dcbaap_low
;
3177 case 0x34: /* DCBAAP high */
3178 ret
= xhci
->dcbaap_high
;
3180 case 0x38: /* CONFIG */
3184 trace_usb_xhci_unimplemented("oper read", reg
);
3188 trace_usb_xhci_oper_read(reg
, ret
);
3192 static void xhci_oper_write(void *ptr
, hwaddr reg
,
3193 uint64_t val
, unsigned size
)
3195 XHCIState
*xhci
= ptr
;
3196 DeviceState
*d
= DEVICE(ptr
);
3198 trace_usb_xhci_oper_write(reg
, val
);
3201 case 0x00: /* USBCMD */
3202 if ((val
& USBCMD_RS
) && !(xhci
->usbcmd
& USBCMD_RS
)) {
3204 } else if (!(val
& USBCMD_RS
) && (xhci
->usbcmd
& USBCMD_RS
)) {
3207 if (val
& USBCMD_CSS
) {
3209 xhci
->usbsts
&= ~USBSTS_SRE
;
3211 if (val
& USBCMD_CRS
) {
3213 xhci
->usbsts
|= USBSTS_SRE
;
3215 xhci
->usbcmd
= val
& 0xc0f;
3216 xhci_mfwrap_update(xhci
);
3217 if (val
& USBCMD_HCRST
) {
3220 xhci_intx_update(xhci
);
3223 case 0x04: /* USBSTS */
3224 /* these bits are write-1-to-clear */
3225 xhci
->usbsts
&= ~(val
& (USBSTS_HSE
|USBSTS_EINT
|USBSTS_PCD
|USBSTS_SRE
));
3226 xhci_intx_update(xhci
);
3229 case 0x14: /* DNCTRL */
3230 xhci
->dnctrl
= val
& 0xffff;
3232 case 0x18: /* CRCR low */
3233 xhci
->crcr_low
= (val
& 0xffffffcf) | (xhci
->crcr_low
& CRCR_CRR
);
3235 case 0x1c: /* CRCR high */
3236 xhci
->crcr_high
= val
;
3237 if (xhci
->crcr_low
& (CRCR_CA
|CRCR_CS
) && (xhci
->crcr_low
& CRCR_CRR
)) {
3238 XHCIEvent event
= {ER_COMMAND_COMPLETE
, CC_COMMAND_RING_STOPPED
};
3239 xhci
->crcr_low
&= ~CRCR_CRR
;
3240 xhci_event(xhci
, &event
, 0);
3241 DPRINTF("xhci: command ring stopped (CRCR=%08x)\n", xhci
->crcr_low
);
3243 dma_addr_t base
= xhci_addr64(xhci
->crcr_low
& ~0x3f, val
);
3244 xhci_ring_init(xhci
, &xhci
->cmd_ring
, base
);
3246 xhci
->crcr_low
&= ~(CRCR_CA
| CRCR_CS
);
3248 case 0x30: /* DCBAAP low */
3249 xhci
->dcbaap_low
= val
& 0xffffffc0;
3251 case 0x34: /* DCBAAP high */
3252 xhci
->dcbaap_high
= val
;
3254 case 0x38: /* CONFIG */
3255 xhci
->config
= val
& 0xff;
3258 trace_usb_xhci_unimplemented("oper write", reg
);
3262 static uint64_t xhci_runtime_read(void *ptr
, hwaddr reg
,
3265 XHCIState
*xhci
= ptr
;
3270 case 0x00: /* MFINDEX */
3271 ret
= xhci_mfindex_get(xhci
) & 0x3fff;
3274 trace_usb_xhci_unimplemented("runtime read", reg
);
3278 int v
= (reg
- 0x20) / 0x20;
3279 XHCIInterrupter
*intr
= &xhci
->intr
[v
];
3280 switch (reg
& 0x1f) {
3281 case 0x00: /* IMAN */
3284 case 0x04: /* IMOD */
3287 case 0x08: /* ERSTSZ */
3290 case 0x10: /* ERSTBA low */
3291 ret
= intr
->erstba_low
;
3293 case 0x14: /* ERSTBA high */
3294 ret
= intr
->erstba_high
;
3296 case 0x18: /* ERDP low */
3297 ret
= intr
->erdp_low
;
3299 case 0x1c: /* ERDP high */
3300 ret
= intr
->erdp_high
;
3305 trace_usb_xhci_runtime_read(reg
, ret
);
3309 static void xhci_runtime_write(void *ptr
, hwaddr reg
,
3310 uint64_t val
, unsigned size
)
3312 XHCIState
*xhci
= ptr
;
3313 int v
= (reg
- 0x20) / 0x20;
3314 XHCIInterrupter
*intr
= &xhci
->intr
[v
];
3315 trace_usb_xhci_runtime_write(reg
, val
);
3318 trace_usb_xhci_unimplemented("runtime write", reg
);
3322 switch (reg
& 0x1f) {
3323 case 0x00: /* IMAN */
3324 if (val
& IMAN_IP
) {
3325 intr
->iman
&= ~IMAN_IP
;
3327 intr
->iman
&= ~IMAN_IE
;
3328 intr
->iman
|= val
& IMAN_IE
;
3330 xhci_intx_update(xhci
);
3332 xhci_msix_update(xhci
, v
);
3334 case 0x04: /* IMOD */
3337 case 0x08: /* ERSTSZ */
3338 intr
->erstsz
= val
& 0xffff;
3340 case 0x10: /* ERSTBA low */
3341 /* XXX NEC driver bug: it doesn't align this to 64 bytes
3342 intr->erstba_low = val & 0xffffffc0; */
3343 intr
->erstba_low
= val
& 0xfffffff0;
3345 case 0x14: /* ERSTBA high */
3346 intr
->erstba_high
= val
;
3347 xhci_er_reset(xhci
, v
);
3349 case 0x18: /* ERDP low */
3350 if (val
& ERDP_EHB
) {
3351 intr
->erdp_low
&= ~ERDP_EHB
;
3353 intr
->erdp_low
= (val
& ~ERDP_EHB
) | (intr
->erdp_low
& ERDP_EHB
);
3355 case 0x1c: /* ERDP high */
3356 intr
->erdp_high
= val
;
3357 xhci_events_update(xhci
, v
);
3360 trace_usb_xhci_unimplemented("oper write", reg
);
3364 static uint64_t xhci_doorbell_read(void *ptr
, hwaddr reg
,
3367 /* doorbells always read as 0 */
3368 trace_usb_xhci_doorbell_read(reg
, 0);
3372 static void xhci_doorbell_write(void *ptr
, hwaddr reg
,
3373 uint64_t val
, unsigned size
)
3375 XHCIState
*xhci
= ptr
;
3376 unsigned int epid
, streamid
;
3378 trace_usb_xhci_doorbell_write(reg
, val
);
3380 if (!xhci_running(xhci
)) {
3381 DPRINTF("xhci: wrote doorbell while xHC stopped or paused\n");
3389 xhci_process_commands(xhci
);
3391 DPRINTF("xhci: bad doorbell 0 write: 0x%x\n",
3396 streamid
= (val
>> 16) & 0xffff;
3397 if (reg
> xhci
->numslots
) {
3398 DPRINTF("xhci: bad doorbell %d\n", (int)reg
);
3399 } else if (epid
> 31) {
3400 DPRINTF("xhci: bad doorbell %d write: 0x%x\n",
3401 (int)reg
, (uint32_t)val
);
3403 xhci_kick_ep(xhci
, reg
, epid
, streamid
);
3408 static void xhci_cap_write(void *opaque
, hwaddr addr
, uint64_t val
,
3414 static const MemoryRegionOps xhci_cap_ops
= {
3415 .read
= xhci_cap_read
,
3416 .write
= xhci_cap_write
,
3417 .valid
.min_access_size
= 1,
3418 .valid
.max_access_size
= 4,
3419 .impl
.min_access_size
= 4,
3420 .impl
.max_access_size
= 4,
3421 .endianness
= DEVICE_LITTLE_ENDIAN
,
3424 static const MemoryRegionOps xhci_oper_ops
= {
3425 .read
= xhci_oper_read
,
3426 .write
= xhci_oper_write
,
3427 .valid
.min_access_size
= 4,
3428 .valid
.max_access_size
= 4,
3429 .endianness
= DEVICE_LITTLE_ENDIAN
,
3432 static const MemoryRegionOps xhci_port_ops
= {
3433 .read
= xhci_port_read
,
3434 .write
= xhci_port_write
,
3435 .valid
.min_access_size
= 4,
3436 .valid
.max_access_size
= 4,
3437 .endianness
= DEVICE_LITTLE_ENDIAN
,
3440 static const MemoryRegionOps xhci_runtime_ops
= {
3441 .read
= xhci_runtime_read
,
3442 .write
= xhci_runtime_write
,
3443 .valid
.min_access_size
= 4,
3444 .valid
.max_access_size
= 4,
3445 .endianness
= DEVICE_LITTLE_ENDIAN
,
3448 static const MemoryRegionOps xhci_doorbell_ops
= {
3449 .read
= xhci_doorbell_read
,
3450 .write
= xhci_doorbell_write
,
3451 .valid
.min_access_size
= 4,
3452 .valid
.max_access_size
= 4,
3453 .endianness
= DEVICE_LITTLE_ENDIAN
,
3456 static void xhci_attach(USBPort
*usbport
)
3458 XHCIState
*xhci
= usbport
->opaque
;
3459 XHCIPort
*port
= xhci_lookup_port(xhci
, usbport
);
3461 xhci_port_update(port
, 0);
3464 static void xhci_detach(USBPort
*usbport
)
3466 XHCIState
*xhci
= usbport
->opaque
;
3467 XHCIPort
*port
= xhci_lookup_port(xhci
, usbport
);
3469 xhci_detach_slot(xhci
, usbport
);
3470 xhci_port_update(port
, 1);
3473 static void xhci_wakeup(USBPort
*usbport
)
3475 XHCIState
*xhci
= usbport
->opaque
;
3476 XHCIPort
*port
= xhci_lookup_port(xhci
, usbport
);
3478 if (get_field(port
->portsc
, PORTSC_PLS
) != PLS_U3
) {
3481 set_field(&port
->portsc
, PLS_RESUME
, PORTSC_PLS
);
3482 xhci_port_notify(port
, PORTSC_PLC
);
3485 static void xhci_complete(USBPort
*port
, USBPacket
*packet
)
3487 XHCITransfer
*xfer
= container_of(packet
, XHCITransfer
, packet
);
3489 if (packet
->status
== USB_RET_REMOVE_FROM_QUEUE
) {
3490 xhci_ep_nuke_one_xfer(xfer
, 0);
3493 xhci_complete_packet(xfer
);
3494 xhci_kick_epctx(xfer
->epctx
, xfer
->streamid
);
3495 if (xfer
->complete
) {
3496 xhci_ep_free_xfer(xfer
);
3500 static void xhci_child_detach(USBPort
*uport
, USBDevice
*child
)
3502 USBBus
*bus
= usb_bus_from_device(child
);
3503 XHCIState
*xhci
= container_of(bus
, XHCIState
, bus
);
3505 xhci_detach_slot(xhci
, child
->port
);
3508 static USBPortOps xhci_uport_ops
= {
3509 .attach
= xhci_attach
,
3510 .detach
= xhci_detach
,
3511 .wakeup
= xhci_wakeup
,
3512 .complete
= xhci_complete
,
3513 .child_detach
= xhci_child_detach
,
3516 static int xhci_find_epid(USBEndpoint
*ep
)
3521 if (ep
->pid
== USB_TOKEN_IN
) {
3522 return ep
->nr
* 2 + 1;
3528 static USBEndpoint
*xhci_epid_to_usbep(XHCIEPContext
*epctx
)
3536 uport
= epctx
->xhci
->slots
[epctx
->slotid
- 1].uport
;
3537 token
= (epctx
->epid
& 1) ? USB_TOKEN_IN
: USB_TOKEN_OUT
;
3541 return usb_ep_get(uport
->dev
, token
, epctx
->epid
>> 1);
3544 static void xhci_wakeup_endpoint(USBBus
*bus
, USBEndpoint
*ep
,
3545 unsigned int stream
)
3547 XHCIState
*xhci
= container_of(bus
, XHCIState
, bus
);
3550 DPRINTF("%s\n", __func__
);
3551 slotid
= ep
->dev
->addr
;
3552 if (slotid
== 0 || !xhci
->slots
[slotid
-1].enabled
) {
3553 DPRINTF("%s: oops, no slot for dev %d\n", __func__
, ep
->dev
->addr
);
3556 xhci_kick_ep(xhci
, slotid
, xhci_find_epid(ep
), stream
);
3559 static USBBusOps xhci_bus_ops
= {
3560 .wakeup_endpoint
= xhci_wakeup_endpoint
,
3563 static void usb_xhci_init(XHCIState
*xhci
)
3565 DeviceState
*dev
= DEVICE(xhci
);
3567 int i
, usbports
, speedmask
;
3569 xhci
->usbsts
= USBSTS_HCH
;
3571 if (xhci
->numports_2
> MAXPORTS_2
) {
3572 xhci
->numports_2
= MAXPORTS_2
;
3574 if (xhci
->numports_3
> MAXPORTS_3
) {
3575 xhci
->numports_3
= MAXPORTS_3
;
3577 usbports
= MAX(xhci
->numports_2
, xhci
->numports_3
);
3578 xhci
->numports
= xhci
->numports_2
+ xhci
->numports_3
;
3580 usb_bus_new(&xhci
->bus
, sizeof(xhci
->bus
), &xhci_bus_ops
, dev
);
3582 for (i
= 0; i
< usbports
; i
++) {
3584 if (i
< xhci
->numports_2
) {
3585 if (xhci_get_flag(xhci
, XHCI_FLAG_SS_FIRST
)) {
3586 port
= &xhci
->ports
[i
+ xhci
->numports_3
];
3587 port
->portnr
= i
+ 1 + xhci
->numports_3
;
3589 port
= &xhci
->ports
[i
];
3590 port
->portnr
= i
+ 1;
3592 port
->uport
= &xhci
->uports
[i
];
3594 USB_SPEED_MASK_LOW
|
3595 USB_SPEED_MASK_FULL
|
3596 USB_SPEED_MASK_HIGH
;
3597 snprintf(port
->name
, sizeof(port
->name
), "usb2 port #%d", i
+1);
3598 speedmask
|= port
->speedmask
;
3600 if (i
< xhci
->numports_3
) {
3601 if (xhci_get_flag(xhci
, XHCI_FLAG_SS_FIRST
)) {
3602 port
= &xhci
->ports
[i
];
3603 port
->portnr
= i
+ 1;
3605 port
= &xhci
->ports
[i
+ xhci
->numports_2
];
3606 port
->portnr
= i
+ 1 + xhci
->numports_2
;
3608 port
->uport
= &xhci
->uports
[i
];
3609 port
->speedmask
= USB_SPEED_MASK_SUPER
;
3610 snprintf(port
->name
, sizeof(port
->name
), "usb3 port #%d", i
+1);
3611 speedmask
|= port
->speedmask
;
3613 usb_register_port(&xhci
->bus
, &xhci
->uports
[i
], xhci
, i
,
3614 &xhci_uport_ops
, speedmask
);
3618 static void usb_xhci_realize(struct PCIDevice
*dev
, Error
**errp
)
3623 XHCIState
*xhci
= XHCI(dev
);
3625 dev
->config
[PCI_CLASS_PROG
] = 0x30; /* xHCI */
3626 dev
->config
[PCI_INTERRUPT_PIN
] = 0x01; /* interrupt pin 1 */
3627 dev
->config
[PCI_CACHE_LINE_SIZE
] = 0x10;
3628 dev
->config
[0x60] = 0x30; /* release number */
3630 usb_xhci_init(xhci
);
3632 if (xhci
->msi
!= ON_OFF_AUTO_OFF
) {
3633 ret
= msi_init(dev
, 0x70, xhci
->numintrs
, true, false, &err
);
3634 /* Any error other than -ENOTSUP(board's MSI support is broken)
3635 * is a programming error */
3636 assert(!ret
|| ret
== -ENOTSUP
);
3637 if (ret
&& xhci
->msi
== ON_OFF_AUTO_ON
) {
3638 /* Can't satisfy user's explicit msi=on request, fail */
3639 error_append_hint(&err
, "You have to use msi=auto (default) or "
3640 "msi=off with this machine type.\n");
3641 error_propagate(errp
, err
);
3644 assert(!err
|| xhci
->msi
== ON_OFF_AUTO_AUTO
);
3645 /* With msi=auto, we fall back to MSI off silently */
3649 if (xhci
->numintrs
> MAXINTRS
) {
3650 xhci
->numintrs
= MAXINTRS
;
3652 while (xhci
->numintrs
& (xhci
->numintrs
- 1)) { /* ! power of 2 */
3655 if (xhci
->numintrs
< 1) {
3658 if (xhci
->numslots
> MAXSLOTS
) {
3659 xhci
->numslots
= MAXSLOTS
;
3661 if (xhci
->numslots
< 1) {
3664 if (xhci_get_flag(xhci
, XHCI_FLAG_ENABLE_STREAMS
)) {
3665 xhci
->max_pstreams_mask
= 7; /* == 256 primary streams */
3667 xhci
->max_pstreams_mask
= 0;
3670 xhci
->mfwrap_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, xhci_mfwrap_timer
, xhci
);
3672 memory_region_init(&xhci
->mem
, OBJECT(xhci
), "xhci", LEN_REGS
);
3673 memory_region_init_io(&xhci
->mem_cap
, OBJECT(xhci
), &xhci_cap_ops
, xhci
,
3674 "capabilities", LEN_CAP
);
3675 memory_region_init_io(&xhci
->mem_oper
, OBJECT(xhci
), &xhci_oper_ops
, xhci
,
3676 "operational", 0x400);
3677 memory_region_init_io(&xhci
->mem_runtime
, OBJECT(xhci
), &xhci_runtime_ops
, xhci
,
3678 "runtime", LEN_RUNTIME
);
3679 memory_region_init_io(&xhci
->mem_doorbell
, OBJECT(xhci
), &xhci_doorbell_ops
, xhci
,
3680 "doorbell", LEN_DOORBELL
);
3682 memory_region_add_subregion(&xhci
->mem
, 0, &xhci
->mem_cap
);
3683 memory_region_add_subregion(&xhci
->mem
, OFF_OPER
, &xhci
->mem_oper
);
3684 memory_region_add_subregion(&xhci
->mem
, OFF_RUNTIME
, &xhci
->mem_runtime
);
3685 memory_region_add_subregion(&xhci
->mem
, OFF_DOORBELL
, &xhci
->mem_doorbell
);
3687 for (i
= 0; i
< xhci
->numports
; i
++) {
3688 XHCIPort
*port
= &xhci
->ports
[i
];
3689 uint32_t offset
= OFF_OPER
+ 0x400 + 0x10 * i
;
3691 memory_region_init_io(&port
->mem
, OBJECT(xhci
), &xhci_port_ops
, port
,
3693 memory_region_add_subregion(&xhci
->mem
, offset
, &port
->mem
);
3696 pci_register_bar(dev
, 0,
3697 PCI_BASE_ADDRESS_SPACE_MEMORY
|PCI_BASE_ADDRESS_MEM_TYPE_64
,
3700 if (pci_bus_is_express(dev
->bus
) ||
3701 xhci_get_flag(xhci
, XHCI_FLAG_FORCE_PCIE_ENDCAP
)) {
3702 ret
= pcie_endpoint_cap_init(dev
, 0xa0);
3706 if (xhci
->msix
!= ON_OFF_AUTO_OFF
) {
3707 /* TODO check for errors */
3708 msix_init(dev
, xhci
->numintrs
,
3709 &xhci
->mem
, 0, OFF_MSIX_TABLE
,
3710 &xhci
->mem
, 0, OFF_MSIX_PBA
,
3715 static void usb_xhci_exit(PCIDevice
*dev
)
3718 XHCIState
*xhci
= XHCI(dev
);
3720 trace_usb_xhci_exit();
3722 for (i
= 0; i
< xhci
->numslots
; i
++) {
3723 xhci_disable_slot(xhci
, i
+ 1);
3726 if (xhci
->mfwrap_timer
) {
3727 timer_del(xhci
->mfwrap_timer
);
3728 timer_free(xhci
->mfwrap_timer
);
3729 xhci
->mfwrap_timer
= NULL
;
3732 memory_region_del_subregion(&xhci
->mem
, &xhci
->mem_cap
);
3733 memory_region_del_subregion(&xhci
->mem
, &xhci
->mem_oper
);
3734 memory_region_del_subregion(&xhci
->mem
, &xhci
->mem_runtime
);
3735 memory_region_del_subregion(&xhci
->mem
, &xhci
->mem_doorbell
);
3737 for (i
= 0; i
< xhci
->numports
; i
++) {
3738 XHCIPort
*port
= &xhci
->ports
[i
];
3739 memory_region_del_subregion(&xhci
->mem
, &port
->mem
);
3742 /* destroy msix memory region */
3743 if (dev
->msix_table
&& dev
->msix_pba
3744 && dev
->msix_entry_used
) {
3745 msix_uninit(dev
, &xhci
->mem
, &xhci
->mem
);
3748 usb_bus_release(&xhci
->bus
);
3751 static int usb_xhci_post_load(void *opaque
, int version_id
)
3753 XHCIState
*xhci
= opaque
;
3754 PCIDevice
*pci_dev
= PCI_DEVICE(xhci
);
3756 XHCIEPContext
*epctx
;
3757 dma_addr_t dcbaap
, pctx
;
3758 uint32_t slot_ctx
[4];
3760 int slotid
, epid
, state
, intr
;
3762 dcbaap
= xhci_addr64(xhci
->dcbaap_low
, xhci
->dcbaap_high
);
3764 for (slotid
= 1; slotid
<= xhci
->numslots
; slotid
++) {
3765 slot
= &xhci
->slots
[slotid
-1];
3766 if (!slot
->addressed
) {
3770 xhci_mask64(ldq_le_pci_dma(pci_dev
, dcbaap
+ 8 * slotid
));
3771 xhci_dma_read_u32s(xhci
, slot
->ctx
, slot_ctx
, sizeof(slot_ctx
));
3772 slot
->uport
= xhci_lookup_uport(xhci
, slot_ctx
);
3774 /* should not happen, but may trigger on guest bugs */
3776 slot
->addressed
= 0;
3779 assert(slot
->uport
&& slot
->uport
->dev
);
3781 for (epid
= 1; epid
<= 31; epid
++) {
3782 pctx
= slot
->ctx
+ 32 * epid
;
3783 xhci_dma_read_u32s(xhci
, pctx
, ep_ctx
, sizeof(ep_ctx
));
3784 state
= ep_ctx
[0] & EP_STATE_MASK
;
3785 if (state
== EP_DISABLED
) {
3788 epctx
= xhci_alloc_epctx(xhci
, slotid
, epid
);
3789 slot
->eps
[epid
-1] = epctx
;
3790 xhci_init_epctx(epctx
, pctx
, ep_ctx
);
3791 epctx
->state
= state
;
3792 if (state
== EP_RUNNING
) {
3793 /* kick endpoint after vmload is finished */
3794 timer_mod(epctx
->kick_timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
));
3799 for (intr
= 0; intr
< xhci
->numintrs
; intr
++) {
3800 if (xhci
->intr
[intr
].msix_used
) {
3801 msix_vector_use(pci_dev
, intr
);
3803 msix_vector_unuse(pci_dev
, intr
);
3810 static const VMStateDescription vmstate_xhci_ring
= {
3811 .name
= "xhci-ring",
3813 .fields
= (VMStateField
[]) {
3814 VMSTATE_UINT64(dequeue
, XHCIRing
),
3815 VMSTATE_BOOL(ccs
, XHCIRing
),
3816 VMSTATE_END_OF_LIST()
3820 static const VMStateDescription vmstate_xhci_port
= {
3821 .name
= "xhci-port",
3823 .fields
= (VMStateField
[]) {
3824 VMSTATE_UINT32(portsc
, XHCIPort
),
3825 VMSTATE_END_OF_LIST()
3829 static const VMStateDescription vmstate_xhci_slot
= {
3830 .name
= "xhci-slot",
3832 .fields
= (VMStateField
[]) {
3833 VMSTATE_BOOL(enabled
, XHCISlot
),
3834 VMSTATE_BOOL(addressed
, XHCISlot
),
3835 VMSTATE_END_OF_LIST()
3839 static const VMStateDescription vmstate_xhci_event
= {
3840 .name
= "xhci-event",
3842 .fields
= (VMStateField
[]) {
3843 VMSTATE_UINT32(type
, XHCIEvent
),
3844 VMSTATE_UINT32(ccode
, XHCIEvent
),
3845 VMSTATE_UINT64(ptr
, XHCIEvent
),
3846 VMSTATE_UINT32(length
, XHCIEvent
),
3847 VMSTATE_UINT32(flags
, XHCIEvent
),
3848 VMSTATE_UINT8(slotid
, XHCIEvent
),
3849 VMSTATE_UINT8(epid
, XHCIEvent
),
3850 VMSTATE_END_OF_LIST()
3854 static bool xhci_er_full(void *opaque
, int version_id
)
3856 struct XHCIInterrupter
*intr
= opaque
;
3857 return intr
->er_full
;
3860 static const VMStateDescription vmstate_xhci_intr
= {
3861 .name
= "xhci-intr",
3863 .fields
= (VMStateField
[]) {
3865 VMSTATE_UINT32(iman
, XHCIInterrupter
),
3866 VMSTATE_UINT32(imod
, XHCIInterrupter
),
3867 VMSTATE_UINT32(erstsz
, XHCIInterrupter
),
3868 VMSTATE_UINT32(erstba_low
, XHCIInterrupter
),
3869 VMSTATE_UINT32(erstba_high
, XHCIInterrupter
),
3870 VMSTATE_UINT32(erdp_low
, XHCIInterrupter
),
3871 VMSTATE_UINT32(erdp_high
, XHCIInterrupter
),
3874 VMSTATE_BOOL(msix_used
, XHCIInterrupter
),
3875 VMSTATE_BOOL(er_pcs
, XHCIInterrupter
),
3876 VMSTATE_UINT64(er_start
, XHCIInterrupter
),
3877 VMSTATE_UINT32(er_size
, XHCIInterrupter
),
3878 VMSTATE_UINT32(er_ep_idx
, XHCIInterrupter
),
3880 /* event queue (used if ring is full) */
3881 VMSTATE_BOOL(er_full
, XHCIInterrupter
),
3882 VMSTATE_UINT32_TEST(ev_buffer_put
, XHCIInterrupter
, xhci_er_full
),
3883 VMSTATE_UINT32_TEST(ev_buffer_get
, XHCIInterrupter
, xhci_er_full
),
3884 VMSTATE_STRUCT_ARRAY_TEST(ev_buffer
, XHCIInterrupter
, EV_QUEUE
,
3886 vmstate_xhci_event
, XHCIEvent
),
3888 VMSTATE_END_OF_LIST()
3892 static const VMStateDescription vmstate_xhci
= {
3895 .post_load
= usb_xhci_post_load
,
3896 .fields
= (VMStateField
[]) {
3897 VMSTATE_PCI_DEVICE(parent_obj
, XHCIState
),
3898 VMSTATE_MSIX(parent_obj
, XHCIState
),
3900 VMSTATE_STRUCT_VARRAY_UINT32(ports
, XHCIState
, numports
, 1,
3901 vmstate_xhci_port
, XHCIPort
),
3902 VMSTATE_STRUCT_VARRAY_UINT32(slots
, XHCIState
, numslots
, 1,
3903 vmstate_xhci_slot
, XHCISlot
),
3904 VMSTATE_STRUCT_VARRAY_UINT32(intr
, XHCIState
, numintrs
, 1,
3905 vmstate_xhci_intr
, XHCIInterrupter
),
3907 /* Operational Registers */
3908 VMSTATE_UINT32(usbcmd
, XHCIState
),
3909 VMSTATE_UINT32(usbsts
, XHCIState
),
3910 VMSTATE_UINT32(dnctrl
, XHCIState
),
3911 VMSTATE_UINT32(crcr_low
, XHCIState
),
3912 VMSTATE_UINT32(crcr_high
, XHCIState
),
3913 VMSTATE_UINT32(dcbaap_low
, XHCIState
),
3914 VMSTATE_UINT32(dcbaap_high
, XHCIState
),
3915 VMSTATE_UINT32(config
, XHCIState
),
3917 /* Runtime Registers & state */
3918 VMSTATE_INT64(mfindex_start
, XHCIState
),
3919 VMSTATE_TIMER_PTR(mfwrap_timer
, XHCIState
),
3920 VMSTATE_STRUCT(cmd_ring
, XHCIState
, 1, vmstate_xhci_ring
, XHCIRing
),
3922 VMSTATE_END_OF_LIST()
3926 static Property xhci_properties
[] = {
3927 DEFINE_PROP_ON_OFF_AUTO("msi", XHCIState
, msi
, ON_OFF_AUTO_AUTO
),
3928 DEFINE_PROP_ON_OFF_AUTO("msix", XHCIState
, msix
, ON_OFF_AUTO_AUTO
),
3929 DEFINE_PROP_BIT("superspeed-ports-first",
3930 XHCIState
, flags
, XHCI_FLAG_SS_FIRST
, true),
3931 DEFINE_PROP_BIT("force-pcie-endcap", XHCIState
, flags
,
3932 XHCI_FLAG_FORCE_PCIE_ENDCAP
, false),
3933 DEFINE_PROP_BIT("streams", XHCIState
, flags
,
3934 XHCI_FLAG_ENABLE_STREAMS
, true),
3935 DEFINE_PROP_UINT32("intrs", XHCIState
, numintrs
, MAXINTRS
),
3936 DEFINE_PROP_UINT32("slots", XHCIState
, numslots
, MAXSLOTS
),
3937 DEFINE_PROP_UINT32("p2", XHCIState
, numports_2
, 4),
3938 DEFINE_PROP_UINT32("p3", XHCIState
, numports_3
, 4),
3939 DEFINE_PROP_END_OF_LIST(),
3942 static void xhci_class_init(ObjectClass
*klass
, void *data
)
3944 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
3945 DeviceClass
*dc
= DEVICE_CLASS(klass
);
3947 dc
->vmsd
= &vmstate_xhci
;
3948 dc
->props
= xhci_properties
;
3949 dc
->reset
= xhci_reset
;
3950 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
3951 k
->realize
= usb_xhci_realize
;
3952 k
->exit
= usb_xhci_exit
;
3953 k
->vendor_id
= PCI_VENDOR_ID_NEC
;
3954 k
->device_id
= PCI_DEVICE_ID_NEC_UPD720200
;
3955 k
->class_id
= PCI_CLASS_SERIAL_USB
;
3960 static const TypeInfo xhci_info
= {
3962 .parent
= TYPE_PCI_DEVICE
,
3963 .instance_size
= sizeof(XHCIState
),
3964 .class_init
= xhci_class_init
,
3967 static void xhci_register_types(void)
3969 type_register_static(&xhci_info
);
3972 type_init(xhci_register_types
)