aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/xhci-ring.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2022-07-27USB: xhci: Fix comment typoJason Wang1-1/+1
2022-05-12xhci: Remove quirk for over 10 year old evaluation hardwareMathias Nyman1-32/+5
2022-05-12xhci: use generic command timer for stop endpoint commands.Mathias Nyman1-73/+34
2022-04-09USB: Fix xhci event ring dequeue pointer ERDP update issueWeitao Wang1-0/+1
2021-12-10xhci: avoid race between disable slot command and host runtime suspendMathias Nyman1-1/+0
2021-12-03xhci: Fix commad ring abort, write all 64 bits to CRCR register.Mathias Nyman1-7/+14
2021-10-11xhci: Fix command ring pointer corruption while aborting a commandPavankumar Kondeti1-4/+10
2021-10-11xhci: add quirk for host controllers that don't update endpoint DCSJonathan Bell1-1/+24
2021-08-26xhci: Add bus number to some debug messagesMathias Nyman1-1/+2
2021-08-26xhci: Add additional dynamic debug to follow URBs in cancel and error cases.Mathias Nyman1-6/+24
2021-08-26xhci: Fix failure to give back some cached cancelled URBs.Mathias Nyman1-15/+25
2021-08-26xhci: fix even more unsafe memory usage in xhci tracingMathias Nyman1-1/+2
2021-06-17xhci: Add adaptive interrupt rate for isoch TRBs with XHCI_AVOID_BEI quirkMathias Nyman1-1/+6
2021-05-25xhci: Fix 5.12 regression of missing xHC cache clearing command after a StallMathias Nyman1-2/+6
2021-05-25xhci: fix giving back URB with incorrect status regression in 5.12Mathias Nyman1-5/+1
2021-05-13xhci: Fix giving back cancelled URBs even if halted endpoint can't resetMathias Nyman1-5/+11
2021-04-06xhci: prevent double-fetch of transfer and transfer event TRBsMathias Nyman1-23/+19
2021-03-23USB: xhci: drop workaround for forced irq threadingJohan Hovold1-3/+2
2021-03-15Merge 5.12-rc3 into usb-nextGreg Kroah-Hartman1-1/+2
2021-03-11usb: xhci: do not perform Soft Retry for some xHCI hostsStanislaw Gruszka1-1/+2
2021-03-10usb: xhci-mtk: support to build xhci-mtk-hcd.koChunfeng Yun1-1/+0
2021-02-08Merge 5.11-rc7 into usb-nextGreg Kroah-Hartman1-11/+20
2021-02-03xhci: fix bounce buffer usage for non-sg list caseMathias Nyman1-11/+20
2021-01-29xhci: handle halting transfer event properly after endpoint stop and halt raced.Mathias Nyman1-16/+52
2021-01-29xhci: Check for pending reset endpoint command before queueing a new one.Mathias Nyman1-3/+7
2021-01-29xhci: remove obsolete dequeue pointer moving codeMathias Nyman1-182/+0
2021-01-29xhci: introduce a new move_dequeue_past_td() function to replace old code.Mathias Nyman1-7/+145
2021-01-29xhci: handle stop endpoint command completion with endpoint in running state.Mathias Nyman1-0/+13
2021-01-29xhci: Fix halted endpoint at stop endpoint command completionMathias Nyman1-2/+60
2021-01-29xhci: split handling halted endpoints into two stepsMathias Nyman1-91/+87
2021-01-29xhci: move and rename xhci_cleanup_halted_endpoint()Mathias Nyman1-41/+43
2021-01-29xhci: turn cancelled td cleanup to its own functionMathias Nyman1-55/+53
2021-01-29xhci: store TD status in the td struct instead of passing it alongMathias Nyman1-27/+29
2021-01-29xhci: use xhci_td_cleanup() helper when giving back cancelled URBsMathias Nyman1-7/+5
2021-01-29xhci: move xhci_td_cleanup so it can be called by more functionsMathias Nyman1-46/+46
2021-01-29xhci: Add xhci_reset_halted_ep() helper functionMathias Nyman1-6/+25
2021-01-29xhci: flush endpoint start to reduce race risk with stop endpoint command.Mathias Nyman1-3/+2
2021-01-29xhci: Check link TRBs when updating ring enqueue and dequeue pointers.Mathias Nyman1-5/+32
2021-01-29xhci: avoid DMA double fetch when reading event trb type.Mathias Nyman1-15/+12
2021-01-29xhci: remove extra loop in interrupt contextMathias Nyman1-7/+14
2021-01-29xhci: check slot_id is valid before gathering slot infoLalithambika Krishna Kumar1-1/+6
2021-01-29xhci: prevent a theoretical endless loop while preparing rings.Mathias Nyman1-0/+7
2021-01-29xhci: remove xhci_stream_id_to_ring() helperMathias Nyman1-1/+2
2021-01-29xhci: add xhci_virt_ep_to_ring() helperMathias Nyman1-24/+22
2021-01-29xhci: check virt_dev is valid before dereferencing itMathias Nyman1-3/+9
2021-01-29xhci: add xhci_get_virt_ep() helperMathias Nyman1-24/+50
2021-01-29xhci: remove unused event parameter from completion handlersMathias Nyman1-8/+6
2021-01-29xhci: adjust parameters passed to cleanup_halted_endpoint()Mathias Nyman1-21/+14
2021-01-29xhci: get isochronous ring directly from endpoint structureMathias Nyman1-11/+6
2021-01-29xhci: Avoid parsing transfer events several timesMathias Nyman1-20/+8