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 5B81F30E0DC; Tue, 31 Mar 2026 16:25:02 +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=1774974302; cv=none; b=pbCBLCmSvo7i6BxBsdiylzJpYTZRtDkE4MeLlemNj0Fk1wzxH0Qbfe8tuJNN7D77apE0egPuiRQKHQCxaLs+/q0lUoLkpuWjoPuEehbyBzaFfJNxuS+vUYvGshVj4u2wVV7XwsEYgQthevHak2aM4kDk1YQ3YV8dbIOJqxfOpJc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774974302; c=relaxed/simple; bh=xR4cnQOvAbK0/wqG2t4wLZcIA5exNZNmKycVfmsIlbI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=cogvEHYu1iUTEByta+JmsYTrApJU4ut3WCspO3WMU6+WN3CGovKC1aSpOTXeW0qECJbMGqeB16yS+IDHhLwzZWxYMOehYU1AXWJdDtwsZiMBrJGxqRFdH0t+T3xzy8dnIuQXGcRn42zA0NfK4qqbdihN94hrS2TlKSfip+YBV8Q= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=lA8WU46u; 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="lA8WU46u" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9CA7CC19423; Tue, 31 Mar 2026 16:25:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1774974301; bh=xR4cnQOvAbK0/wqG2t4wLZcIA5exNZNmKycVfmsIlbI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lA8WU46uWD67Cs9CujhdFOmUMcHnHjay5ZrOlxeWJuvCjHP+dCeCf7jhv6YlXIVL9 JH1iQcri7YpIjwu4aPHPz9twQSOtcTzzUgl1M2v2uua28VvRyyoZH9mxDZgvLd/l8K iZNe8AJs86LkIGXZe25kSt9sz+WxcE/x7M76idEg= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Alan Borzeszkowski , Mika Westerberg , Mark Brown , Sasha Levin Subject: [PATCH 6.6 032/175] spi: intel-pci: Add support for Nova Lake mobile SPI flash Date: Tue, 31 Mar 2026 18:20:16 +0200 Message-ID: <20260331161730.966478605@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260331161729.779738837@linuxfoundation.org> References: <20260331161729.779738837@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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alan Borzeszkowski [ Upstream commit 85b731ad4bbf6eb3fedf267ab00be3596f148432 ] Add Intel Nova Lake PCD-H SPI serial flash PCI ID to the list of supported devices. Signed-off-by: Alan Borzeszkowski Acked-by: Mika Westerberg Link: https://patch.msgid.link/20260309153703.74282-1-alan.borzeszkowski@linux.intel.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- drivers/spi/spi-intel-pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spi-intel-pci.c b/drivers/spi/spi-intel-pci.c index 5c0dec90eec1d..43692315ea305 100644 --- a/drivers/spi/spi-intel-pci.c +++ b/drivers/spi/spi-intel-pci.c @@ -86,6 +86,7 @@ static const struct pci_device_id intel_spi_pci_ids[] = { { PCI_VDEVICE(INTEL, 0xa324), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0xa3a4), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0xa823), (unsigned long)&cnl_info }, + { PCI_VDEVICE(INTEL, 0xd323), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0xe323), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0xe423), (unsigned long)&cnl_info }, { }, -- 2.51.0