summaryrefslogtreecommitdiff
path: root/drivers/usb/host/xhci-mem.c
AgeCommit message (Expand)AuthorFilesLines
2024-12-17usb: xhci: fix ring expansion regression in 6.13-rc1Niklas Neronin1-1/+1
2024-11-06usb: xhci: remove irrelevant commentNiklas Neronin1-5/+0
2024-11-06usb: xhci: add xhci_initialize_ring_segments()Niklas Neronin1-18/+23
2024-11-06usb: xhci: rework xhci_link_segments()Niklas Neronin1-24/+30
2024-11-06usb: xhci: refactor xhci_link_rings() to use source and destination ringsNiklas Neronin1-20/+20
2024-11-06usb: xhci: rework xhci_free_segments_for_ring()Niklas Neronin1-10/+11
2024-11-06usb: xhci: adjust xhci_alloc_segments_for_ring() argumentsNiklas Neronin1-27/+21
2024-11-06usb: xhci: remove option to change a default ring's TRB cycle bitNiklas Neronin1-27/+23
2024-11-06usb: xhci: introduce macro for ring segment list iterationNiklas Neronin1-17/+7
2024-11-06xhci: add stream context tracingMathias Nyman1-0/+2
2024-09-05xhci: support setting interrupt moderation IMOD for secondary interruptersMathias Nyman1-1/+7
2024-08-13usb: xhci: Check for xhci->interrupters being allocated in xhci_mem_clearup()Marc Zyngier1-1/+1
2024-06-27usb: xhci: move all segment re-numbering to xhci_link_rings()Niklas Neronin1-12/+13
2024-06-27usb: xhci: move link chain bit quirk checks into one helper function.Niklas Neronin1-8/+2
2024-06-20xhci: Add a quirk for writing ERST in high-low orderDaehwan Jung1-1/+4
2024-05-01usb: xhci: use array_size() when allocating and freeing memoryNiklas Neronin1-7/+7
2024-05-01usb: xhci: check if 'requested segments' exceeds ERST capacityNiklas Neronin1-11/+11
2024-05-01xhci: stored cached port capability values in one placeMathias Nyman1-11/+1
2024-03-02usb: xhci: utilize 'xhci_free_segments_for_ring()' for freeing segmentsNiklas Neronin1-22/+15
2024-03-02xhci: save slot ID in struct 'xhci_port'Niklas Neronin1-0/+5
2024-03-02xhci: replace real & fake port with pointer to root hub portNiklas Neronin1-20/+15
2024-03-02xhci: rework how real & fake ports are foundNiklas Neronin1-19/+15
2024-02-17xhci: make isoc_bei_interval variable interrupter specific.Mathias Nyman1-1/+1
2024-01-28xhci: fix off by one check when adding a secondary interrupter.Mathias Nyman1-1/+1
2024-01-28xhci: fix possible null pointer dereference at secondary interrupter removalMathias Nyman1-6/+6
2024-01-04xhci: add support to allocate several interruptersMathias Nyman1-11/+97
2023-11-23usb: xhci: Add timeout argument in address_device USB HCD callbackHardik Gajjar1-0/+2
2023-10-21xhci: split free interrupter into separate remove and free partsMathias Nyman1-11/+21
2023-10-21xhci: Clean up xhci_{alloc,free}_erst() declarationsLukas Wunner1-1/+1
2023-10-21xhci: Clean up ERST_PTR_MASK inversionLukas Wunner1-2/+1
2023-10-21xhci: Update last segment pointer after Event Ring expansionLukas Wunner1-5/+7
2023-10-21xhci: Adjust segment numbers after ring expansionLukas Wunner1-6/+10
2023-10-21xhci: Use more than one Event Ring segmentJonathan Bell1-3/+7
2023-10-21xhci: Set DESI bits in ERDP register correctlyLukas Wunner1-14/+11
2023-10-02xhci: Preserve RsvdP bits in ERSTBA register correctlyLukas Wunner1-2/+2
2023-08-09USB: Remove remnants of Wireless USB and UWBAlan Stern1-3/+0
2023-06-13xhci: Show ZHAOXIN xHCI root hub speed correctlyWeitao Wang1-7/+24
2023-06-13xhci: Fix TRB prefetch issue of ZHAOXIN hostsWeitao Wang1-2/+6
2023-06-13xhci: Stop unnecessary tracking of free trbs in a ringMathias Nyman1-1/+0
2023-06-13xhci: Fix transfer ring expansion size calculationMathias Nyman1-11/+3
2023-06-13xhci: split allocate interrupter into separate alloacte and add partsMathias Nyman1-37/+41
2023-03-23xhci: mem: Join string literals backAndy Shevchenko1-17/+10
2023-03-23xhci: mem: Replace explicit castings with appropriate specifiersAndy Shevchenko1-10/+7
2023-03-23xhci: mem: Use while (i--) pattern to clean upAndy Shevchenko1-2/+1
2023-03-23xhci: mem: Drop useless return:sAndy Shevchenko1-7/+4
2023-03-23xhci: mem: Get rid of redundant 'else'Andy Shevchenko1-8/+6
2023-03-23xhci: mem: Use dma_poll_zalloc() instead of explicit memset()Andy Shevchenko1-4/+2
2023-03-23xhci: mem: Carefully calculate size for memory allocationsAndy Shevchenko1-4/+5
2023-02-02xhci: move port specific items such as state completions to port structureMathias Nyman1-7/+3
2023-02-02xhci: Refactor interrupter code for initial multi interrupter support.Mathias Nyman1-58/+110