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 CDD40C433EF for ; Tue, 25 Jan 2022 17:00:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1586952AbiAYRA5 (ORCPT ); Tue, 25 Jan 2022 12:00:57 -0500 Received: from foss.arm.com ([217.140.110.172]:56040 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237321AbiAYQ6a (ORCPT ); Tue, 25 Jan 2022 11:58:30 -0500 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 06E531FB; Tue, 25 Jan 2022 08:58:23 -0800 (PST) Received: from [10.32.33.50] (e121896.warwick.arm.com [10.32.33.50]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 5EDE43F766; Tue, 25 Jan 2022 08:58:21 -0800 (PST) Subject: Re: [RFC V1 10/11] perf: Expand perf_branch_entry.type To: Anshuman Khandual , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Catalin Marinas , Will Deacon , Mark Rutland , Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , linux-perf-users@vger.kernel.org, Alexander Shishkin , Jiri Olsa , Namhyung Kim References: <1642998653-21377-1-git-send-email-anshuman.khandual@arm.com> <1642998653-21377-11-git-send-email-anshuman.khandual@arm.com> From: James Clark Message-ID: <2d7297b3-9a22-626b-9840-a4eaab4b94e8@arm.com> Date: Tue, 25 Jan 2022 16:58:20 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <1642998653-21377-11-git-send-email-anshuman.khandual@arm.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 24/01/2022 04:30, Anshuman Khandual wrote: > Current perf_branch_entry.type is a 4 bits field just enough to accommodate > 16 generic branch types. This is insufficient to accommodate platforms like > arm64 which has much more branch types. Lets just expands this field into a > 6 bits one, which can now hold 64 generic branch types. This also adds more > generic branch types and updates the BRBE driver as required. > > Cc: Peter Zijlstra > Cc: Ingo Molnar > Cc: Arnaldo Carvalho de Melo > Cc: Mark Rutland > Cc: Alexander Shishkin > Cc: Jiri Olsa > Cc: Namhyung Kim > Cc: Will Deacon > Cc: linux-arm-kernel@lists.infradead.org > Cc: linux-perf-users@vger.kernel.org > Cc: linux-kernel@vger.kernel.org > Signed-off-by: Anshuman Khandual > --- > drivers/perf/arm_pmu_brbe.c | 7 ++++++- > include/uapi/linux/perf_event.h | 10 ++++++++-- > tools/include/uapi/linux/perf_event.h | 10 ++++++++-- > tools/perf/util/branch.c | 8 +++++++- > 4 files changed, 29 insertions(+), 6 deletions(-) > > diff --git a/drivers/perf/arm_pmu_brbe.c b/drivers/perf/arm_pmu_brbe.c > index 8d27ad868359..7cd1208c6c58 100644 > --- a/drivers/perf/arm_pmu_brbe.c > +++ b/drivers/perf/arm_pmu_brbe.c > @@ -253,12 +253,17 @@ static int brbe_fetch_perf_type(u64 brbinf) > case BRBINF_TYPE_DEBUG_EXIT: > return PERF_BR_DEBUG_EXIT; > case BRBINF_TYPE_SERROR: > + return PERF_BR_SERROR; > case BRBINF_TYPE_INST_DEBUG: > + return PERF_BR_DEBUG_INST; > case BRBINF_TYPE_DATA_DEBUG: > + return PERF_BR_DEBUG_DATA; > case BRBINF_TYPE_ALGN_FAULT: > + return PERF_BR_FAULT_ALGN; > case BRBINF_TYPE_INST_FAULT: > + return PERF_BR_FAULT_INST; > case BRBINF_TYPE_DATA_FAULT: > - return PERF_BR_UNKNOWN; > + return PERF_BR_FAULT_DATA; > default: > pr_warn("unknown branch type captured\n"); > return PERF_BR_UNKNOWN; > diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h > index b91d0f575d0c..361fdc6b87a0 100644 > --- a/include/uapi/linux/perf_event.h > +++ b/include/uapi/linux/perf_event.h > @@ -256,6 +256,12 @@ enum { > PERF_BR_FIQ = 13, /* fiq */ > PERF_BR_DEBUG_HALT = 14, /* debug halt */ > PERF_BR_DEBUG_EXIT = 15, /* debug exit */ > + PERF_BR_DEBUG_INST = 16, /* instruciton debug */ > + PERF_BR_DEBUG_DATA = 17, /* data debug */ > + PERF_BR_FAULT_ALGN = 18, /* alignment fault */ > + PERF_BR_FAULT_DATA = 19, /* data fault */ > + PERF_BR_FAULT_INST = 20, /* instruction fault */ > + PERF_BR_SERROR = 21, /* system error */ > PERF_BR_MAX, > }; > > @@ -1370,8 +1376,8 @@ struct perf_branch_entry { > in_tx:1, /* in transaction */ > abort:1, /* transaction abort */ > cycles:16, /* cycle count to last branch */ > - type:4, /* branch type */ > - reserved:40; > + type:6, /* branch type */ > + reserved:38; > }; > > union perf_sample_weight { > diff --git a/tools/include/uapi/linux/perf_event.h b/tools/include/uapi/linux/perf_event.h > index 1882054e8684..9a82b8aaed93 100644 > --- a/tools/include/uapi/linux/perf_event.h > +++ b/tools/include/uapi/linux/perf_event.h > @@ -256,6 +256,12 @@ enum { > PERF_BR_FIQ = 13, /* fiq */ > PERF_BR_DEBUG_HALT = 14, /* debug halt */ > PERF_BR_DEBUG_EXIT = 15, /* debug exit */ > + PERF_BR_DEBUG_INST = 16, /* instruciton debug */ > + PERF_BR_DEBUG_DATA = 17, /* data debug */ > + PERF_BR_FAULT_ALGN = 18, /* alignment fault */ > + PERF_BR_FAULT_DATA = 19, /* data fault */ > + PERF_BR_FAULT_INST = 20, /* instruction fault */ > + PERF_BR_SERROR = 21, /* system error */ > PERF_BR_MAX, > }; > > @@ -1370,8 +1376,8 @@ struct perf_branch_entry { > in_tx:1, /* in transaction */ > abort:1, /* transaction abort */ > cycles:16, /* cycle count to last branch */ > - type:4, /* branch type */ > - reserved:40; > + type:6, /* branch type */ > + reserved:38; > }; There's another copy of this struct in branch.h that is used to access the same data in perf which also needs updating: struct branch_flags { union { u64 value; struct { u64 mispred:1; u64 predicted:1; u64 in_tx:1; u64 abort:1; u64 cycles:16; u64 type:4; u64 reserved:40; }; }; }; It's never assigned directly but there is some casting stuff going on in evsel__parse_sample() and it eventually ends up being used to access branch records. Same applies to the privilege data change. > > union perf_sample_weight { > diff --git a/tools/perf/util/branch.c b/tools/perf/util/branch.c > index 74e5e67b1779..1e216ea2e2a8 100644 > --- a/tools/perf/util/branch.c > +++ b/tools/perf/util/branch.c > @@ -54,7 +54,13 @@ const char *branch_type_name(int type) > "IRQ", > "FIQ", > "DEBUG_HALT", > - "DEBUG_EXIT" > + "DEBUG_EXIT", > + "DEBUG_INST", > + "DEBUG_DATA", > + "FAULT_ALGN", > + "FAULT_DATA", > + "FAULT_INST", > + "SERROR" > }; > > if (type >= 0 && type < PERF_BR_MAX) > 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 B4C0DC433F5 for ; Tue, 25 Jan 2022 16:59:54 +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-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date: Message-ID:From:References:Cc:To:Subject:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Owner; bh=bj50kVVJoS70ySvK00/+z5QFSc957AfOfTO096u/rqM=; b=x/Kc5s9HJ6jr/UYAhg2T5UdWTi E3aNQifHzpLA+wqHimTUOwbs8At74nBCG+n4yyVnevPvCv8ntG7I6yLS9OhZZMLQvK/wnk9gaI+fe e72UVpKwsCuidi+DS0A9N2w7muE1rPBe8KH/+ZCffXsluvwuKFVpmwc4mm1pfaaMGjE5EeSK2LyHr jdnSwdPoJBjx2gE/uVBorNZ/sU57DNWCuCpkZbJccE7T7Oppt1g3IjewYUq5RMUXgc419jzfKG8HW mnmO9k6o19sRttskCoMnFFaEqRf7KN9FoxBjAYTNrRviesuQto00kxP+2sblzvht9wbgmSCvo7L3T 6uF7eyVg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nCP9Q-008otT-Mc; Tue, 25 Jan 2022 16:58:36 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nCP9F-008onv-Iy for linux-arm-kernel@lists.infradead.org; Tue, 25 Jan 2022 16:58:27 +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 06E531FB; Tue, 25 Jan 2022 08:58:23 -0800 (PST) Received: from [10.32.33.50] (e121896.warwick.arm.com [10.32.33.50]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 5EDE43F766; Tue, 25 Jan 2022 08:58:21 -0800 (PST) Subject: Re: [RFC V1 10/11] perf: Expand perf_branch_entry.type To: Anshuman Khandual , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Catalin Marinas , Will Deacon , Mark Rutland , Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , linux-perf-users@vger.kernel.org, Alexander Shishkin , Jiri Olsa , Namhyung Kim References: <1642998653-21377-1-git-send-email-anshuman.khandual@arm.com> <1642998653-21377-11-git-send-email-anshuman.khandual@arm.com> From: James Clark Message-ID: <2d7297b3-9a22-626b-9840-a4eaab4b94e8@arm.com> Date: Tue, 25 Jan 2022 16:58:20 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <1642998653-21377-11-git-send-email-anshuman.khandual@arm.com> Content-Language: en-US X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220125_085825_784643_B0AEBCB4 X-CRM114-Status: GOOD ( 25.12 ) 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-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 24/01/2022 04:30, Anshuman Khandual wrote: > Current perf_branch_entry.type is a 4 bits field just enough to accommodate > 16 generic branch types. This is insufficient to accommodate platforms like > arm64 which has much more branch types. Lets just expands this field into a > 6 bits one, which can now hold 64 generic branch types. This also adds more > generic branch types and updates the BRBE driver as required. > > Cc: Peter Zijlstra > Cc: Ingo Molnar > Cc: Arnaldo Carvalho de Melo > Cc: Mark Rutland > Cc: Alexander Shishkin > Cc: Jiri Olsa > Cc: Namhyung Kim > Cc: Will Deacon > Cc: linux-arm-kernel@lists.infradead.org > Cc: linux-perf-users@vger.kernel.org > Cc: linux-kernel@vger.kernel.org > Signed-off-by: Anshuman Khandual > --- > drivers/perf/arm_pmu_brbe.c | 7 ++++++- > include/uapi/linux/perf_event.h | 10 ++++++++-- > tools/include/uapi/linux/perf_event.h | 10 ++++++++-- > tools/perf/util/branch.c | 8 +++++++- > 4 files changed, 29 insertions(+), 6 deletions(-) > > diff --git a/drivers/perf/arm_pmu_brbe.c b/drivers/perf/arm_pmu_brbe.c > index 8d27ad868359..7cd1208c6c58 100644 > --- a/drivers/perf/arm_pmu_brbe.c > +++ b/drivers/perf/arm_pmu_brbe.c > @@ -253,12 +253,17 @@ static int brbe_fetch_perf_type(u64 brbinf) > case BRBINF_TYPE_DEBUG_EXIT: > return PERF_BR_DEBUG_EXIT; > case BRBINF_TYPE_SERROR: > + return PERF_BR_SERROR; > case BRBINF_TYPE_INST_DEBUG: > + return PERF_BR_DEBUG_INST; > case BRBINF_TYPE_DATA_DEBUG: > + return PERF_BR_DEBUG_DATA; > case BRBINF_TYPE_ALGN_FAULT: > + return PERF_BR_FAULT_ALGN; > case BRBINF_TYPE_INST_FAULT: > + return PERF_BR_FAULT_INST; > case BRBINF_TYPE_DATA_FAULT: > - return PERF_BR_UNKNOWN; > + return PERF_BR_FAULT_DATA; > default: > pr_warn("unknown branch type captured\n"); > return PERF_BR_UNKNOWN; > diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h > index b91d0f575d0c..361fdc6b87a0 100644 > --- a/include/uapi/linux/perf_event.h > +++ b/include/uapi/linux/perf_event.h > @@ -256,6 +256,12 @@ enum { > PERF_BR_FIQ = 13, /* fiq */ > PERF_BR_DEBUG_HALT = 14, /* debug halt */ > PERF_BR_DEBUG_EXIT = 15, /* debug exit */ > + PERF_BR_DEBUG_INST = 16, /* instruciton debug */ > + PERF_BR_DEBUG_DATA = 17, /* data debug */ > + PERF_BR_FAULT_ALGN = 18, /* alignment fault */ > + PERF_BR_FAULT_DATA = 19, /* data fault */ > + PERF_BR_FAULT_INST = 20, /* instruction fault */ > + PERF_BR_SERROR = 21, /* system error */ > PERF_BR_MAX, > }; > > @@ -1370,8 +1376,8 @@ struct perf_branch_entry { > in_tx:1, /* in transaction */ > abort:1, /* transaction abort */ > cycles:16, /* cycle count to last branch */ > - type:4, /* branch type */ > - reserved:40; > + type:6, /* branch type */ > + reserved:38; > }; > > union perf_sample_weight { > diff --git a/tools/include/uapi/linux/perf_event.h b/tools/include/uapi/linux/perf_event.h > index 1882054e8684..9a82b8aaed93 100644 > --- a/tools/include/uapi/linux/perf_event.h > +++ b/tools/include/uapi/linux/perf_event.h > @@ -256,6 +256,12 @@ enum { > PERF_BR_FIQ = 13, /* fiq */ > PERF_BR_DEBUG_HALT = 14, /* debug halt */ > PERF_BR_DEBUG_EXIT = 15, /* debug exit */ > + PERF_BR_DEBUG_INST = 16, /* instruciton debug */ > + PERF_BR_DEBUG_DATA = 17, /* data debug */ > + PERF_BR_FAULT_ALGN = 18, /* alignment fault */ > + PERF_BR_FAULT_DATA = 19, /* data fault */ > + PERF_BR_FAULT_INST = 20, /* instruction fault */ > + PERF_BR_SERROR = 21, /* system error */ > PERF_BR_MAX, > }; > > @@ -1370,8 +1376,8 @@ struct perf_branch_entry { > in_tx:1, /* in transaction */ > abort:1, /* transaction abort */ > cycles:16, /* cycle count to last branch */ > - type:4, /* branch type */ > - reserved:40; > + type:6, /* branch type */ > + reserved:38; > }; There's another copy of this struct in branch.h that is used to access the same data in perf which also needs updating: struct branch_flags { union { u64 value; struct { u64 mispred:1; u64 predicted:1; u64 in_tx:1; u64 abort:1; u64 cycles:16; u64 type:4; u64 reserved:40; }; }; }; It's never assigned directly but there is some casting stuff going on in evsel__parse_sample() and it eventually ends up being used to access branch records. Same applies to the privilege data change. > > union perf_sample_weight { > diff --git a/tools/perf/util/branch.c b/tools/perf/util/branch.c > index 74e5e67b1779..1e216ea2e2a8 100644 > --- a/tools/perf/util/branch.c > +++ b/tools/perf/util/branch.c > @@ -54,7 +54,13 @@ const char *branch_type_name(int type) > "IRQ", > "FIQ", > "DEBUG_HALT", > - "DEBUG_EXIT" > + "DEBUG_EXIT", > + "DEBUG_INST", > + "DEBUG_DATA", > + "FAULT_ALGN", > + "FAULT_DATA", > + "FAULT_INST", > + "SERROR" > }; > > if (type >= 0 && type < PERF_BR_MAX) > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel