From nobody Mon Sep 15 23:10:43 2025 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 27DC5C5479D for ; Mon, 9 Jan 2023 11:15:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234587AbjAILPS (ORCPT ); Mon, 9 Jan 2023 06:15:18 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41142 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233470AbjAILPI (ORCPT ); Mon, 9 Jan 2023 06:15:08 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AA895140BE; Mon, 9 Jan 2023 03:15:07 -0800 (PST) Date: Mon, 09 Jan 2023 11:15:04 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1673262905; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=TCuvXDoEvc3nzb1/+6O0HqtN6o1rWLFs30UDviQlK58=; b=smvZLfIJcNBKYxY5SEcA2UI5Ylluok6uds8aApumbFgKbiuYPggauPBzackddKr0k3CKwu l2VrICOdBByJCkcedGCcXWoIifD5P7p+SaeqWpoOpsMLqIE9iHUcEVKDZSnplH7eop+eA3 lDzhNIX1OpPdUtFlWO4OiwKH+zWrZz6H/L8aXMso9wHheVNZMQVp/TY4UtTO3eyCF8AQ7I LlLFKOVqZHGLCmRsg+z14p965ooIsOX3Xk/AIIcsIGCZC1aqzXvMkzRSuzH2XRDVLxtjIo wXqJ79LWHuGEtPb2H0M4JLJi6ElrtyEhp1BzSd4gJwLqV/JR5Kvxh2/sEIxbfA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1673262905; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=TCuvXDoEvc3nzb1/+6O0HqtN6o1rWLFs30UDviQlK58=; b=whVV4Oc+zDpibvuDW8kuOUZvqMy034wIBu16mlZ308dT/jGc7q5utXWavABSDxqrL5Ln25 s02pPpwvLni3+/AA== From: "tip-bot2 for Kan Liang" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: perf/urgent] perf/x86/intel/uncore: Add Emerald Rapids Cc: Kan Liang , Ingo Molnar , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20230106160449.3566477-4-kan.liang@linux.intel.com> References: <20230106160449.3566477-4-kan.liang@linux.intel.com> MIME-Version: 1.0 Message-ID: <167326290401.4906.1603865120827312283.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the perf/urgent branch of tip: Commit-ID: 5268a2842066c227e6ccd94bac562f1e1000244f Gitweb: https://git.kernel.org/tip/5268a2842066c227e6ccd94bac562f1e1= 000244f Author: Kan Liang AuthorDate: Fri, 06 Jan 2023 08:04:49 -08:00 Committer: Ingo Molnar CommitterDate: Mon, 09 Jan 2023 12:00:58 +01:00 perf/x86/intel/uncore: Add Emerald Rapids >From the perspective of the uncore PMU, the new Emerald Rapids is the same as the Sapphire Rapids. The only difference is the event list, which will be supported in the perf tool later. Signed-off-by: Kan Liang Signed-off-by: Ingo Molnar Link: https://lore.kernel.org/r/20230106160449.3566477-4-kan.liang@linux.in= tel.com --- arch/x86/events/intel/uncore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/events/intel/uncore.c b/arch/x86/events/intel/uncore.c index 6f1ccc5..459b1aa 100644 --- a/arch/x86/events/intel/uncore.c +++ b/arch/x86/events/intel/uncore.c @@ -1833,6 +1833,7 @@ static const struct x86_cpu_id intel_uncore_match[] _= _initconst =3D { X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE_P, &adl_uncore_init), X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE_S, &adl_uncore_init), X86_MATCH_INTEL_FAM6_MODEL(SAPPHIRERAPIDS_X, &spr_uncore_init), + X86_MATCH_INTEL_FAM6_MODEL(EMERALDRAPIDS_X, &spr_uncore_init), X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT_D, &snr_uncore_init), {}, };