From mboxrd@z Thu Jan 1 00:00:00 1970 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 A45CDC43219 for ; Fri, 11 Nov 2022 02:38:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233139AbiKKCh6 (ORCPT ); Thu, 10 Nov 2022 21:37:58 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47192 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232684AbiKKCgo (ORCPT ); Thu, 10 Nov 2022 21:36:44 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B3219FD3F; Thu, 10 Nov 2022 18:35:34 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 64F7AB823DF; Fri, 11 Nov 2022 02:35:33 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1816EC43147; Fri, 11 Nov 2022 02:35:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1668134132; bh=95b1XakCFBg/d5siGzijyvjnKGr+D1NMWcvNvxWOtxc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ccXgcPS7uWhVVmcy9a9XjbSFqP1DVliir24vXePOl/WPZrro2WjJ3IKLSkug3VLkh Y4GUAAfIPtt/3AIY8l7iL0Q90D+CZOOGiysX6TdC1v1wFl42KV9F/u7/CwLQrkpZkY Fp8zlD1Z7RCBQ2ozTovwpO1CELpsW+b6IcMl9SpqtVO5fyo8SW3Q0KBG/vWvZScz7H IDoYQJNAWrfxwEWKrAyaEUZVW8PeTTjcZ5PppvZ0V6YWPDEsbdCtir4rOgyqQ9xMa6 6HoyedBPftQwgW+RsPEPS62uS9ZkJHp0D8hdoeFE3oGuDg/qJlr8Gmx+B5dbTKkYPg ky6VYZPHofi3w== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Tony Luck , Borislav Petkov , Dave Hansen , Sasha Levin , x86@kernel.org, tglx@linutronix.de, mingo@redhat.com, bp@alien8.de Subject: [PATCH AUTOSEL 5.15 11/11] x86/cpu: Add several Intel server CPU model numbers Date: Thu, 10 Nov 2022 21:35:11 -0500 Message-Id: <20221111023511.227800-11-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221111023511.227800-1-sashal@kernel.org> References: <20221111023511.227800-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Tony Luck [ Upstream commit 7beade0dd41d42d797ccb7791b134a77fcebf35b ] These servers are all on the public versions of the roadmap. The model numbers for Grand Ridge, Granite Rapids, and Sierra Forest were included in the September 2022 edition of the Instruction Set Extensions document. Signed-off-by: Tony Luck Signed-off-by: Borislav Petkov Acked-by: Dave Hansen Link: https://lore.kernel.org/r/20221103203310.5058-1-tony.luck@intel.com Signed-off-by: Sasha Levin --- arch/x86/include/asm/intel-family.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/arch/x86/include/asm/intel-family.h b/arch/x86/include/asm/intel-family.h index 27158436f322..13922963431a 100644 --- a/arch/x86/include/asm/intel-family.h +++ b/arch/x86/include/asm/intel-family.h @@ -105,10 +105,15 @@ #define INTEL_FAM6_SAPPHIRERAPIDS_X 0x8F /* Golden Cove */ +#define INTEL_FAM6_EMERALDRAPIDS_X 0xCF + +#define INTEL_FAM6_GRANITERAPIDS_X 0xAD +#define INTEL_FAM6_GRANITERAPIDS_D 0xAE + #define INTEL_FAM6_ALDERLAKE 0x97 /* Golden Cove / Gracemont */ #define INTEL_FAM6_ALDERLAKE_L 0x9A /* Golden Cove / Gracemont */ -/* "Small Core" Processors (Atom) */ +/* "Small Core" Processors (Atom/E-Core) */ #define INTEL_FAM6_ATOM_BONNELL 0x1C /* Diamondville, Pineview */ #define INTEL_FAM6_ATOM_BONNELL_MID 0x26 /* Silverthorne, Lincroft */ @@ -135,6 +140,10 @@ #define INTEL_FAM6_ATOM_TREMONT 0x96 /* Elkhart Lake */ #define INTEL_FAM6_ATOM_TREMONT_L 0x9C /* Jasper Lake */ +#define INTEL_FAM6_SIERRAFOREST_X 0xAF + +#define INTEL_FAM6_GRANDRIDGE 0xB6 + /* Xeon Phi */ #define INTEL_FAM6_XEON_PHI_KNL 0x57 /* Knights Landing */ -- 2.35.1