From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DBCBF336ECA; Wed, 3 Dec 2025 15:53:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764777214; cv=none; b=Wfw7+SGH/chxby2E4MR40V54qMEjgtcC366mxN54BhrVEVwpZqSMwKZrhai07wBWIF/6Ysd0aQuxn96eFZ2Rn+J51SYplKgMGUvevLWuRNgt3CTYck6fcJGGgmI9KBhAj/yeO2rV33yUhGwYf3J4gbwNjeE3mkpjyjvzX9ZHhBY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764777214; c=relaxed/simple; bh=vYybLirJY3WMjvRnKNz6Y703LuP0YysJD2b7p7jODP0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=BWIMsdgIAGvjXbxQhUfjjly4CFbN6+6dTKUcHPE3uCf3JqXAhvOucBUJzzO/75N2xa8YXihfcdzQxHHj0dZP6vILD2bcXRy3ejBu6/5LaRi7D3jPt74DBxx524NKJriKGrrM7QXxxTDMjolDVbsvo56JdO8+r67jNTEIYIHI7pY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=WW89LbSc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="WW89LbSc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5C0EEC4CEF5; Wed, 3 Dec 2025 15:53:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764777213; bh=vYybLirJY3WMjvRnKNz6Y703LuP0YysJD2b7p7jODP0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WW89LbScfne8Bh6beg7mwbG3c3ApVTHqFa8tdlzjLhqy222SzAHQZVs4Dib+mhVnF NYqm7zwBZZguDcZZUja2/VDDtYZUmtNHVyb3f5+5L5bvAxuHymUqRdlqqz6uW9vVkj tg70hjJMZGRor4py7VW95poyb4P//xca75ZDNgDw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Heikki Krogerus , stable , Thinh Nguyen Subject: [PATCH 6.17 118/146] usb: dwc3: pci: add support for the Intel Nova Lake -S Date: Wed, 3 Dec 2025 16:28:16 +0100 Message-ID: <20251203152350.782048555@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251203152346.456176474@linuxfoundation.org> References: <20251203152346.456176474@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Heikki Krogerus commit c57ce99ec6cb55b53910b6b3d7437f80159ff9d8 upstream. This patch adds the necessary PCI ID for Intel Nova Lake -S devices. Signed-off-by: Heikki Krogerus Cc: stable Acked-by: Thinh Nguyen Link: https://patch.msgid.link/20251106115926.2317877-1-heikki.krogerus@linux.intel.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/dwc3-pci.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/usb/dwc3/dwc3-pci.c +++ b/drivers/usb/dwc3/dwc3-pci.c @@ -53,6 +53,7 @@ #define PCI_DEVICE_ID_INTEL_MTLP 0x7ec1 #define PCI_DEVICE_ID_INTEL_MTLS 0x7f6f #define PCI_DEVICE_ID_INTEL_MTL 0x7e7e +#define PCI_DEVICE_ID_INTEL_NVLS_PCH 0x6e6f #define PCI_DEVICE_ID_INTEL_ARLH_PCH 0x777e #define PCI_DEVICE_ID_INTEL_TGL 0x9a15 #define PCI_DEVICE_ID_INTEL_PTLH 0xe332 @@ -443,6 +444,7 @@ static const struct pci_device_id dwc3_p { PCI_DEVICE_DATA(INTEL, MTLM, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, MTLP, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, MTL, &dwc3_pci_intel_swnode) }, + { PCI_DEVICE_DATA(INTEL, NVLS_PCH, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, MTLS, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, ARLH_PCH, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, TGL, &dwc3_pci_intel_swnode) },