From nobody Sun May 19 22:46:08 2024 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 6F7AAC6FD1C for ; Fri, 24 Mar 2023 20:00:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231983AbjCXUAI (ORCPT ); Fri, 24 Mar 2023 16:00:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41244 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231691AbjCXUAG (ORCPT ); Fri, 24 Mar 2023 16:00:06 -0400 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 613681F5F1 for ; Fri, 24 Mar 2023 12:59:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679687987; x=1711223987; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=sNVllBtmU8q7PqMLUiVSP/EAmHPB6Rm0X9oOm1Judio=; b=RfeyQW9uQgP6iXzV7pd2Du1S422CMmIp+QL3e0dfZU0gxEIfzJ0TjV4z qrFYl9spKonSK+NernpWl3WQlhPHUgWVak1Qh+HO8Dib9sgXeJQwIQ4IG lKozOQfKpPC9Pi0KIMRrzKgz/KI3dNwHoR87CEnAAYMIjU34TL7gIF5uX Tw5Q1VRp2vUMXEAUl/QJR1JONyR/cOBFiqWl/vExPuFjwAZxmJeNm4D+/ p3CeFmkGrsiLS4Xow+JI4B2ccHSALQMMERLpm/jxQAyDETfF+sNPG7Yoq ntgP8KMSojQDp5VI3xeNsq2NH/5T1HSywZpJTYvexhlKFXNqb4JxgF6NB g==; X-IronPort-AV: E=McAfee;i="6600,9927,10659"; a="341443992" X-IronPort-AV: E=Sophos;i="5.98,288,1673942400"; d="scan'208";a="341443992" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Mar 2023 12:59:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10659"; a="685298887" X-IronPort-AV: E=Sophos;i="5.98,288,1673942400"; d="scan'208";a="685298887" Received: from agluck-desk3.sc.intel.com ([172.25.222.78]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Mar 2023 12:59:37 -0700 From: Tony Luck To: x86@kernel.org Cc: linux-kernel@vger.kernel.org, patches@lists.linux.dev, Tony Luck Subject: [PATCH] x86/cpu: Add model number for Intel Arrow Lake processor Date: Fri, 24 Mar 2023 12:59:32 -0700 Message-Id: <20230324195932.241441-1-tony.luck@intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" https://www.intel.com/content/www/us/en/newsroom/news/intel-technology-road= maps-milestones.html says this will be built on Intel 20A tiles and launch in 2024. Signed-off-by: Tony Luck --- 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/int= el-family.h index cbaf174d8efd..b3af2d45bbbb 100644 --- a/arch/x86/include/asm/intel-family.h +++ b/arch/x86/include/asm/intel-family.h @@ -125,6 +125,8 @@ =20 #define INTEL_FAM6_LUNARLAKE_M 0xBD =20 +#define INTEL_FAM6_ARROWLAKE 0xC6 + /* "Small Core" Processors (Atom/E-Core) */ =20 #define INTEL_FAM6_ATOM_BONNELL 0x1C /* Diamondville, Pineview */ --=20 2.39.2