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 3C99A1ACEDE; Tue, 17 Mar 2026 17:14:23 +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=1773767663; cv=none; b=YnXB882s7WsbtSva7CaESTcsql0iy5kG0MNH7MuZhvnfEFX4EdonK2V7ofZCKJ8ezIfqGuGlu6IPqTnAEfVVnoQDcWONXKtJpLsPSKxA76bLAsneamT/OyqvI8ftXmChzs4V2CpKDh2mX8tQJbdc2LcfRARnqlZ7HFE9T0q5PPU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773767663; c=relaxed/simple; bh=shxf5IX1hdSQ7d3WnDlqQVDfJn5b4kFDghiegsj8GpU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iaCNUaw/lb7q5a141rHT6lBzkTFQ9rqNmtjv2y2kDqAGNExhk6v2VB9fWXwemC/SM99VctRGlLfGS9hLp5rvb76BgdFrIDsHy7+1ao69qmjuOlx2Yt1i/KfDw2BQQPXk2x5+qfwTLx05tEy4qyvlS43I59+BNN3tMItX2cFvcKg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Tb2r6s6C; 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="Tb2r6s6C" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3F74BC4CEF7; Tue, 17 Mar 2026 17:14:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1773767663; bh=shxf5IX1hdSQ7d3WnDlqQVDfJn5b4kFDghiegsj8GpU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Tb2r6s6CDTcowBcJXYceBzRrs7FA5/VGKGBPPCruOsW/ewbvReAHKmTwjBTjbI1NC AYTHMWp3YXd6SNXiefEuusg8Y/abfaB+XATVh49ZdAQsPsVka2zJByKNFWiE9anbyx KFohktULqa8EY8v/B2FZOO/6Cg+P+3B1Ix07V9w8= 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.18 132/333] usb: dwc3: pci: add support for the Intel Nova Lake -H Date: Tue, 17 Mar 2026 17:32:41 +0100 Message-ID: <20260317163004.257656335@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260317162959.345812316@linuxfoundation.org> References: <20260317162959.345812316@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.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Heikki Krogerus commit 17ab4d4078e22be7fd8fd6fc710c15c085a4cb1b upstream. This patch adds the necessary PCI ID for Intel Nova Lake -H devices. Signed-off-by: Heikki Krogerus Cc: stable Acked-by: Thinh Nguyen Link: https://patch.msgid.link/20260309130204.208661-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 @@ -56,6 +56,7 @@ #define PCI_DEVICE_ID_INTEL_CNPH 0xa36e #define PCI_DEVICE_ID_INTEL_CNPV 0xa3b0 #define PCI_DEVICE_ID_INTEL_RPL 0xa70e +#define PCI_DEVICE_ID_INTEL_NVLH 0xd37f #define PCI_DEVICE_ID_INTEL_PTLH 0xe332 #define PCI_DEVICE_ID_INTEL_PTLH_PCH 0xe37e #define PCI_DEVICE_ID_INTEL_PTLU 0xe432 @@ -448,6 +449,7 @@ static const struct pci_device_id dwc3_p { PCI_DEVICE_DATA(INTEL, CNPH, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, CNPV, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, RPL, &dwc3_pci_intel_swnode) }, + { PCI_DEVICE_DATA(INTEL, NVLH, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, PTLH, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, PTLH_PCH, &dwc3_pci_intel_swnode) }, { PCI_DEVICE_DATA(INTEL, PTLU, &dwc3_pci_intel_swnode) },