All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] xhci features for usb-next
@ 2022-05-11 22:04 Mathias Nyman
  2022-05-11 22:04 ` [PATCH 1/9] xhci: factor out parts of xhci_gen_setup() Mathias Nyman
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Mathias Nyman @ 2022-05-11 22:04 UTC (permalink / raw)
  To: gregkh; +Cc: linux-usb, Mathias Nyman

Hi Greg

New xhci features for 5.19
Major change is support for xHC with just one roothub.

Thanks
Mathias

Heiner Kallweit (5):
  xhci: factor out parts of xhci_gen_setup()
  xhci: prepare for operation w/o shared hcd
  usb: host: xhci-plat: create shared hcd after having added main hcd
  usb: host: xhci-plat: prepare operation w/o shared hcd
  usb: host: xhci-plat: omit shared hcd if either root hub has no ports

Mathias Nyman (4):
  xhci: use generic command timer for stop endpoint commands.
  xhci: prevent U2 link power state if Intel tier policy prevented U1
  xhci: Remove quirk for over 10 year old evaluation hardware
  xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI

 drivers/usb/host/xhci-hub.c  |   3 +-
 drivers/usb/host/xhci-mem.c  |  23 ++---
 drivers/usb/host/xhci-pci.c  |   5 +-
 drivers/usb/host/xhci-plat.c |  46 ++++++----
 drivers/usb/host/xhci-ring.c | 144 ++++++++---------------------
 drivers/usb/host/xhci.c      | 173 +++++++++++++++++++----------------
 drivers/usb/host/xhci.h      |  30 +++++-
 7 files changed, 199 insertions(+), 225 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH 0/9] xhci features for usb-next
@ 2024-02-29 14:14 Mathias Nyman
  0 siblings, 0 replies; 12+ messages in thread
From: Mathias Nyman @ 2024-02-29 14:14 UTC (permalink / raw)
  To: gregkh; +Cc: linux-usb, Mathias Nyman

Hi Greg

Some xhci features for usb-next.

Includes minor xhci port refactoring, improvements to dbc event
polling, and a couple transfer event handling changes that are
almost fixes.
I'd still only add those to usb-next as they are improvements
discovered while fixing other issues. No real world bugs.

Also includes a small kzalloc failure check tagged for stable.

Thanks
Mathias

Mathias Nyman (1):
  xhci: dbc: poll at different rate depending on data transfer activity

Michal Pecio (2):
  xhci: fix matching completion events with TDs
  xhci: retry Stop Endpoint on buggy NEC controllers

Niklas Neronin (5):
  xhci: rework how real & fake ports are found
  xhci: replace real & fake port with pointer to root hub port
  xhci: save slot ID in struct 'xhci_port'
  usb: xhci: remove duplicate code from 'xhci_clear_command_ring()'
  usb: xhci: utilize 'xhci_free_segments_for_ring()' for freeing
    segments

Prashanth K (1):
  usb: xhci: Add error handling in xhci_map_urb_for_dma

 drivers/usb/host/xhci-dbgcap.c  | 13 ++++-
 drivers/usb/host/xhci-dbgcap.h  |  2 +
 drivers/usb/host/xhci-hub.c     | 69 ++++--------------------
 drivers/usb/host/xhci-mem.c     | 93 +++++++++++++++------------------
 drivers/usb/host/xhci-mtk-sch.c | 14 ++---
 drivers/usb/host/xhci-pci.c     | 10 ++--
 drivers/usb/host/xhci-ring.c    | 27 ++++++----
 drivers/usb/host/xhci-trace.h   | 12 ++---
 drivers/usb/host/xhci.c         | 28 +++-------
 drivers/usb/host/xhci.h         |  7 ++-
 10 files changed, 107 insertions(+), 168 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH 0/9] xhci features for usb-next
@ 2020-03-12 14:45 Mathias Nyman
  0 siblings, 0 replies; 12+ messages in thread
From: Mathias Nyman @ 2020-03-12 14:45 UTC (permalink / raw)
  To: gregkh; +Cc: linux-usb, Mathias Nyman

Hi Greg

A set of xhci features for usb-next.
Turning on LPM support for a couple controllers, and finishing USB3
root port suspend and resume requests based on actual port link
states transitions instead of waiting for some default time.

-Mathias

JC Kuo (1):
  usb: host: xhci-tegra: Tegra186/Tegra194 LPM

Kai-Heng Feng (2):
  xhci: Ensure link state is U3 after setting USB_SS_PORT_LS_U3
  xhci: Wait until link state trainsits to U0 after setting
    USB_SS_PORT_LS_U0

Mathias Nyman (4):
  xhci: bail out early if driver can't accress host in resume
  xhci: Add a separate debug message for split transaction errors.
  xhci: Show host status when watchdog triggers and host is assumed
    dead.
  xhci: Finetune host initiated USB3 rootport link suspend and resume

Mika Westerberg (1):
  xhci-pci: Allow host runtime PM as default for Intel Tiger Lake xHCI

Nicolas Saenz Julienne (1):
  usb: xhci: Enable LPM for VIA LABS VL805

 drivers/usb/host/xhci-hub.c   | 61 +++++++++++++++++++++++++++++------
 drivers/usb/host/xhci-mem.c   |  1 +
 drivers/usb/host/xhci-pci.c   |  7 +++-
 drivers/usb/host/xhci-ring.c  |  9 ++++++
 drivers/usb/host/xhci-tegra.c |  7 ++++
 drivers/usb/host/xhci.c       |  4 ++-
 drivers/usb/host/xhci.h       | 30 +++++++++++++++++
 7 files changed, 107 insertions(+), 12 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2024-02-29 14:13 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-11 22:04 [PATCH 0/9] xhci features for usb-next Mathias Nyman
2022-05-11 22:04 ` [PATCH 1/9] xhci: factor out parts of xhci_gen_setup() Mathias Nyman
2022-05-11 22:04 ` [PATCH 2/9] xhci: prepare for operation w/o shared hcd Mathias Nyman
2022-05-11 22:04 ` [PATCH 3/9] usb: host: xhci-plat: create shared hcd after having added main hcd Mathias Nyman
2022-05-11 22:04 ` [PATCH 4/9] usb: host: xhci-plat: prepare operation w/o shared hcd Mathias Nyman
2022-05-11 22:04 ` [PATCH 5/9] usb: host: xhci-plat: omit shared hcd if either root hub has no ports Mathias Nyman
2022-05-11 22:04 ` [PATCH 6/9] xhci: use generic command timer for stop endpoint commands Mathias Nyman
2022-05-11 22:04 ` [PATCH 7/9] xhci: prevent U2 link power state if Intel tier policy prevented U1 Mathias Nyman
2022-05-11 22:04 ` [PATCH 8/9] xhci: Remove quirk for over 10 year old evaluation hardware Mathias Nyman
2022-05-11 22:04 ` [PATCH 9/9] xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI Mathias Nyman
  -- strict thread matches above, loose matches on Subject: below --
2024-02-29 14:14 [PATCH 0/9] xhci features for usb-next Mathias Nyman
2020-03-12 14:45 Mathias Nyman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.