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 89FAEC433EF for ; Tue, 5 Jul 2022 08:27:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230360AbiGEI10 (ORCPT ); Tue, 5 Jul 2022 04:27:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38396 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230283AbiGEI1M (ORCPT ); Tue, 5 Jul 2022 04:27:12 -0400 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F03B613E16 for ; Tue, 5 Jul 2022 01:27:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1657009626; x=1688545626; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=eqKZjDbOL+WYvX7nzhqPnjkKi0Nr4XUAIF1Wn9yRswQ=; b=Y1hj8Eif4H7md877YbTT8L9LXgjlbPageNQSiifH12+jhNXe6IaeE0rK lCDO0BeaYeiGg/LHoJBKQxLyp0S/UwiB9jDpax9HAf1qvFzmtQi14bQNs D3FQogfWluTIiiqNYWqsRijxKqJpOBBpcWIIthu4rp00EzVmK3oB/RYMJ hpKWJ/T3JY2wVT1vcKcPOVF+NRWXSJinRv3F74pCI1pr4mZS4pQRAE3fY YUyBBodM7k9T/XUZD2XlE2dz0UkqGGDZ4+y3uv7L+2Jc8l/ewWtTO7+ld v7mPpHf+EdjaU/ncae2P5WNfDFXnJu9iSqoGc6Eds0sqdpItoCdK/3RcJ A==; X-IronPort-AV: E=McAfee;i="6400,9594,10398"; a="263713145" X-IronPort-AV: E=Sophos;i="5.92,245,1650956400"; d="scan'208";a="263713145" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Jul 2022 01:27:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,245,1650956400"; d="scan'208";a="592834157" Received: from black.fi.intel.com (HELO black.fi.intel.com.) ([10.237.72.28]) by orsmga002.jf.intel.com with ESMTP; 05 Jul 2022 01:27:05 -0700 From: Alexander Shishkin To: Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, Alexander Shishkin , Andy Shevchenko Subject: [PATCH 5/6] intel_th: pci: Add Raptor Lake-S PCH support Date: Tue, 5 Jul 2022 11:26:36 +0300 Message-Id: <20220705082637.59979-6-alexander.shishkin@linux.intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220705082637.59979-1-alexander.shishkin@linux.intel.com> References: <20220705082637.59979-1-alexander.shishkin@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add support for the Trace Hub in Raptor Lake-S PCH. Signed-off-by: Alexander Shishkin Reviewed-by: Andy Shevchenko --- drivers/hwtracing/intel_th/pci.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/hwtracing/intel_th/pci.c b/drivers/hwtracing/intel_th/pci.c index 41a31c7f505f..5b6da26f1b63 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c @@ -289,6 +289,11 @@ static const struct pci_device_id intel_th_pci_id_table[] = { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x7e24), .driver_data = (kernel_ulong_t)&intel_th_2x, }, + { + /* Raptor Lake-S */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x7a26), + .driver_data = (kernel_ulong_t)&intel_th_2x, + }, { /* Alder Lake CPU */ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x466f), -- 2.35.1