1. 09 Apr, 2022 2 commits
    • Henry Lin's avatar
      xhci: stop polling roothubs after shutdown · dc92944a
      Henry Lin authored
      While rebooting, XHCI controller and its bus device will be shut down
      in order by .shutdown callback. Stopping roothubs polling in
      xhci_shutdown() can prevent XHCI driver from accessing port status
      after its bus device shutdown.
      
      Take PCIe XHCI controller as example, if XHCI driver doesn't stop roothubs
      polling, XHCI driver may access PCIe BAR register for port status after
      parent PCIe root port driver is shutdown and cause PCIe bus error.
      
      [check shared hcd exist before stopping its roothub polling -Mathias]
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarHenry Lin <henryl@nvidia.com>
      Signed-off-by: default avatarMathias Nyman <mathias.nyman@linux.intel.com>
      Link: https://lore.kernel.org/r/20220408134823.2527272-3-mathias.nyman@linux.intel.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      dc92944a
    • Weitao Wang's avatar
      USB: Fix xhci event ring dequeue pointer ERDP update issue · e91ac208
      Weitao Wang authored
      In some situations software handles TRB events slower than adding TRBs.
      If the number of TRB events to be processed in a given interrupt is exactly
      the same as the event ring size 256, then the local variable
      "event_ring_deq" that holds the initial dequeue position is equal to
      software_dequeue after handling all 256 interrupts.
      
      It will cause driver to not update ERDP to hardware,
      
      Software dequeue pointer is out of sync with ERDP on interrupt exit.
      On the next interrupt, the event ring may full but driver will not
      update ERDP as software_dequeue is equal to ERDP.
      
      [  536.377115] xhci_hcd 0000:00:12.0: ERROR unknown event type 37
      [  566.933173] sd 8:0:0:0: [sdb] tag#27 uas_eh_abort_handler 0 uas-tag 7 inflight: CMD OUT
      [  566.933181] sd 8:0:0:0: [sdb] tag#27 CDB: Write(10) 2a 00 17 71 e6 78 00 00 08 00
      [  572.041186] xhci_hcd On some situataions,the0000:00:12.0: xHCI host not responding to stop endpoint command.
      [  572.057193] xhci_hcd 0000:00:12.0: Host halt failed, -110
      [  572.057196] xhci_hcd 0000:00:12.0: xHCI host controller not responding, assume dead
      [  572.057236] sd 8:0:0:0: [sdb] tag#26 uas_eh_abort_handler 0 uas-tag 6 inflight: CMD
      [  572.057240] sd 8:0:0:0: [sdb] tag#26 CDB: Write(10) 2a 00 38 eb cc d8 00 00 08 00
      [  572.057244] sd 8:0:0:0: [sdb] tag#25 uas_eh_abort_handler 0 uas-tag 5 inflight: CMD
      
      Hardware ERDP is updated mid event handling if there are more than 128
      events in an interrupt (half of ring size).
      Fix this by updating the software local variable at the same time as
      hardware ERDP.
      
      [commit message rewording -Mathias]
      
      Fixes: dc0ffbea ("usb: host: xhci: update event ring dequeue pointer on purpose")
      Reviewed-by: default avatarPeter Chen <peter.chen@kernel.org>
      Signed-off-by: default avatarWeitao Wang <WeitaoWang-oc@zhaoxin.com>
      Signed-off-by: default avatarMathias Nyman <mathias.nyman@linux.intel.com>
      Link: https://lore.kernel.org/r/20220408134823.2527272-2-mathias.nyman@linux.intel.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      e91ac208
  2. 03 Apr, 2022 8 commits
  3. 02 Apr, 2022 30 commits