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 D2A6A22A81D; Tue, 29 Apr 2025 17:08:20 +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=1745946500; cv=none; b=K1PAmpPYHlQObRwuNgZQPIrR0clXTOILhl8/SASH7FTyznJIRngnmzemCA3k2GX+pZnqUPf3CxsmXHf7WI3A+5QvttKHntJn9ibMLd5i7fzFXwkE/PQzxjZffGXn0hLAHbb35JjjwjbffUCoKGHfd0jJUVHzgZF8ukUHmhvIq/I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1745946500; c=relaxed/simple; bh=CF/JgNGiO5CCTLl6rXA8V7FKMecgIt/6JbkYZRYXBfI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=gEqfwtOoF3Fp1lC4TVKzfRYJaLYBX+FyCU78H76SAfzVnkJ+Dcvj0dMwTeYKZb/eOvQKatiCBNCDjdEJVBC9tqYtb3mymmxJ6PR4Yh5VFtkci5N/XgdQCDylsYaGfKfv8byRmi8htXPtxefse+ejcNJYIRgZpoN6OhbmawZPGQ8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=fGsSYq90; 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="fGsSYq90" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0E6C5C4CEE3; Tue, 29 Apr 2025 17:08:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1745946500; bh=CF/JgNGiO5CCTLl6rXA8V7FKMecgIt/6JbkYZRYXBfI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fGsSYq90XDKoYse1je/lD2AQXPy/z1FdxipFfc8NcAtXIBHTBOYAQ3BhjPb+cyqRk QAp23tH2jCcMnu0V3nPZtF12azG66N9kciz868ViSEkbf+2w0+prJ4Uow35YRDVXMn usYf9vAuTlHKIhN+002P8cgp3rGqzkacnW9JvTLw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pi Xiange , Ingo Molnar , Christian Ludloff , Peter Zijlstra , Tony Luck , Andrew Cooper , "H. Peter Anvin" , John Ogness , "Ahmed S. Darwish" , x86-cpuid@lists.linux.dev, Sasha Levin Subject: [PATCH 6.14 288/311] x86/cpu: Add CPU model number for Bartlett Lake CPUs with Raptor Cove cores Date: Tue, 29 Apr 2025 18:42:05 +0200 Message-ID: <20250429161132.802018860@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250429161121.011111832@linuxfoundation.org> References: <20250429161121.011111832@linuxfoundation.org> User-Agent: quilt/0.68 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.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pi Xiange [ Upstream commit d466304c4322ad391797437cd84cca7ce1660de0 ] Bartlett Lake has a P-core only product with Raptor Cove. [ mingo: Switch around the define as pointed out by Christian Ludloff: Ratpr Cove is the core, Bartlett Lake is the product. Signed-off-by: Pi Xiange Signed-off-by: Ingo Molnar Cc: Christian Ludloff Cc: Peter Zijlstra Cc: Tony Luck Cc: Andrew Cooper Cc: "H. Peter Anvin" Cc: John Ogness Cc: "Ahmed S. Darwish" Cc: x86-cpuid@lists.linux.dev Link: https://lore.kernel.org/r/20250414032839.5368-1-xiange.pi@intel.com Signed-off-by: Sasha Levin --- arch/x86/include/asm/intel-family.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/include/asm/intel-family.h b/arch/x86/include/asm/intel-family.h index 6d7b04ffc5fd0..ef5a06ddf0287 100644 --- a/arch/x86/include/asm/intel-family.h +++ b/arch/x86/include/asm/intel-family.h @@ -115,6 +115,8 @@ #define INTEL_GRANITERAPIDS_X IFM(6, 0xAD) #define INTEL_GRANITERAPIDS_D IFM(6, 0xAE) +#define INTEL_BARTLETTLAKE IFM(6, 0xD7) /* Raptor Cove */ + /* "Hybrid" Processors (P-Core/E-Core) */ #define INTEL_LAKEFIELD IFM(6, 0x8A) /* Sunny Cove / Tremont */ -- 2.39.5