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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id C0973C00528 for ; Wed, 2 Aug 2023 10:11:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type: Content-Transfer-Encoding:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:From:References:Cc:To:Subject: MIME-Version:Date:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=AVt8nTRoXFX+fAW49n4cdq62r/2nkrMNQf+yweT/QaQ=; b=y0dmeqFtzpHl96 hDWgBRbgQbRkR0lu1WXg54QSeK+zxSuf6tBioQL5ELCEc+KpU9jv5YIWd0NlbXaXB7o21EO630QsP 5BtK06Fu+oz2ubZrneYq3IBWe33JXCS9Q+C5M2yss+Y3XT/P3j6SLkWo/FJo5dzw50n4nJz4J8G8s G3TGouVBE5IT58yJQxmi7mO4KPn5ki4eCAHvgXWPYiTtin09eiYt6C937fQIplQOgL5DjaVhNnOtX nKnECvS4mvhNaQN/EEdHHPMilzaM1ZbLcm5hlBxjWpn8CPA/gj9t3H+i3fYveBF/lt0vCVSGro+p4 9pWfBVPbw2839FmOP+Rw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qR8p9-004Za0-1B; Wed, 02 Aug 2023 10:11:23 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qR8p5-004ZYw-2h for linux-arm-kernel@lists.infradead.org; Wed, 02 Aug 2023 10:11:21 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id DEB35113E; Wed, 2 Aug 2023 03:11:57 -0700 (PDT) Received: from [10.57.89.109] (unknown [10.57.89.109]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 67A013F6C4; Wed, 2 Aug 2023 03:11:13 -0700 (PDT) Message-ID: <2c1894c4-c0e3-ea90-d5f6-24c3ed8c0e4f@arm.com> Date: Wed, 2 Aug 2023 11:11:11 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 Subject: Re: [PATCH V2 2/4] arm_pmu: acpi: Add a representative platform device for TRBE To: Anshuman Khandual , Will Deacon Cc: linux-arm-kernel@lists.infradead.org, Catalin Marinas , Mark Rutland , linux-kernel@vger.kernel.org References: <20230801094052.750416-1-anshuman.khandual@arm.com> <20230801094052.750416-3-anshuman.khandual@arm.com> <20230801145111.GF26253@willie-the-truck> <505c6b25-d9e8-d7b3-1a0d-2b51e45fb66a@arm.com> From: Suzuki K Poulose In-Reply-To: <505c6b25-d9e8-d7b3-1a0d-2b51e45fb66a@arm.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230802_031119_940035_07E1DF09 X-CRM114-Status: GOOD ( 12.61 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 02/08/2023 02:07, Anshuman Khandual wrote: > > > On 8/1/23 20:21, Will Deacon wrote: >> On Tue, Aug 01, 2023 at 03:10:50PM +0530, Anshuman Khandual wrote: >>> diff --git a/include/linux/perf/arm_pmu.h b/include/linux/perf/arm_pmu.h >>> index a0801f68762b..7ec26d21303d 100644 >>> --- a/include/linux/perf/arm_pmu.h >>> +++ b/include/linux/perf/arm_pmu.h >>> @@ -187,5 +187,6 @@ void armpmu_free_irq(int irq, int cpu); >>> #endif /* CONFIG_ARM_PMU */ >>> >>> #define ARMV8_SPE_PDEV_NAME "arm,spe-v1" >>> +#define ARMV8_TRBE_PDEV_NAME "arm-trbe-acpi" >> >> Why is the TRBE name formatted differently to the SPE one? > > Nothing specific, although "arm,spe-v1" seemed more like a DT naming > scheme. But could change the name as "arm,trbe-v1" to be in sync with > SPE here. Do we really need v1 ? I would leave it as arm,trbe Suzuki _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel