From patchwork Mon Jan 16 14:22:09 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mathias Nyman X-Patchwork-Id: 645021 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3E227C63797 for ; Mon, 16 Jan 2023 14:44:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230402AbjAPOoK (ORCPT ); Mon, 16 Jan 2023 09:44:10 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37242 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230127AbjAPOn1 (ORCPT ); Mon, 16 Jan 2023 09:43:27 -0500 Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 74EE2265B7 for ; Mon, 16 Jan 2023 06:21:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1673878863; x=1705414863; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=5X/KWOvmd9+vKnA+vdGE75aS753J+ioQjo998SDmI5I=; b=gmdZe6gHNyNzBUC9D1UzSB4T/6oV0UlV67uQZHEy5vqvoa1hBDPDLw8u AAs3DM/ZK8Xd2XQaq6SnirMwPU/PqZRBG2oRDwfhXCiGPoTDqo/VUXbHN /dmJhKDveU3syD6PIWv6lxcABcUR0MyQE+mzSH48XzbTKTsJpYr8L2Fg2 UNQk65b8N+jwYVw9CGhpF7eoo0a1dpeEZlsCylb+Kd9W85Sqi8yTqltlx eKxLqyGeZ5R3AHgfqEyfckN7urbAC7QPgf4Oj4XEzDjuNRmcj0jfwP27T /AwTmV2sbmx+/v97AsthePFcM4okfUf6Zd0XvKPZwQHaIFK8DbTxeinP1 g==; X-IronPort-AV: E=McAfee;i="6500,9779,10592"; a="312322914" X-IronPort-AV: E=Sophos;i="5.97,221,1669104000"; d="scan'208";a="312322914" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jan 2023 06:21:02 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10592"; a="987817159" X-IronPort-AV: E=Sophos;i="5.97,221,1669104000"; d="scan'208";a="987817159" Received: from mattu-haswell.fi.intel.com ([10.237.72.199]) by fmsmga005.fm.intel.com with ESMTP; 16 Jan 2023 06:21:00 -0800 From: Mathias Nyman To: Cc: , Mathias Nyman Subject: [PATCH 0/7] usb and xhci fixes for usb-linus Date: Mon, 16 Jan 2023 16:22:09 +0200 Message-Id: <20230116142216.1141605-1-mathias.nyman@linux.intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org Hi Greg A few fixes for usb-linus. Biggest change is checking from ACPI tables if OS needs to disable USB3 U1/U2 LPM states for a port, even if both the host and device supports LPM. This can be the case if the system uses a USB3 U1/U2 incapable retimer for a port. This touches usb-acpi code in usb core. Thanks -Mathias Jimmy Hu (1): usb: xhci: Check endpoint is valid before dereferencing it Mathias Nyman (5): xhci: Fix null pointer dereference when host dies xhci: Add update_hub_device override for PCI xHCI hosts xhci: Add a flag to disable USB3 lpm on a xhci root port level. usb: acpi: add helper to check port lpm capability using acpi _DSM xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables Ricardo Ribalda (1): xhci-pci: set the dma max_seg_size drivers/usb/core/usb-acpi.c | 65 ++++++++++++++++++++++++++++++++++++ drivers/usb/host/xhci-pci.c | 45 +++++++++++++++++++++++++ drivers/usb/host/xhci-ring.c | 5 ++- drivers/usb/host/xhci.c | 18 +++++++++- drivers/usb/host/xhci.h | 5 +++ include/linux/usb.h | 3 ++ 6 files changed, 139 insertions(+), 2 deletions(-)