From: Rob Herring <r...@kernel.org>

commit 369461ce8fb6c8156206c7110d7da48e9fbc41bb upstream

In preparation to enable user counter access on arm64 and to move some
of the user access handling to perf core, create a common event flag for
user counter access and convert x86 to use it.

Since the architecture specific flags start at the LSB, starting at the
MSB for common flags.

Cc: Peter Zijlstra <pet...@infradead.org>
Cc: Ingo Molnar <mi...@redhat.com>
Cc: Arnaldo Carvalho de Melo <a...@kernel.org>
Cc: Alexander Shishkin <alexander.shish...@linux.intel.com>
Cc: Jiri Olsa <jo...@redhat.com>
Cc: Namhyung Kim <namhy...@kernel.org>
Cc: Kan Liang <kan.li...@linux.intel.com>
Cc: Thomas Gleixner <t...@linutronix.de>
Cc: Borislav Petkov <b...@alien8.de>
Cc: x...@kernel.org
Cc: "H. Peter Anvin" <h...@zytor.com>
Cc: linux-perf-us...@vger.kernel.org
Reviewed-by: Mark Rutland <mark.rutl...@arm.com>
Reviewed-by: Thomas Gleixner <t...@linutronix.de>
Signed-off-by: Rob Herring <r...@kernel.org>
Link: https://lore.kernel.org/r/20211208201124.310740-2-r...@kernel.org
Signed-off-by: Will Deacon <w...@kernel.org>
Signed-off-by: Adrian Zaharia <adrian.zaha...@windriver.com>
---
 arch/x86/events/core.c       | 10 +++++-----
 arch/x86/events/perf_event.h |  2 +-
 include/linux/perf_event.h   |  9 +++++++++
 3 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/arch/x86/events/core.c b/arch/x86/events/core.c
index b79b9f21cbb3..68d3b3461888 100644
--- a/arch/x86/events/core.c
+++ b/arch/x86/events/core.c
@@ -2289,14 +2289,14 @@ static int x86_pmu_event_init(struct perf_event *event)
 
        if (READ_ONCE(x86_pmu.attr_rdpmc) &&
            !(event->hw.flags & PERF_X86_EVENT_LARGE_PEBS))
-               event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED;
+               event->hw.flags |= PERF_EVENT_FLAG_USER_READ_CNT;
 
        return err;
 }
 
 static void x86_pmu_event_mapped(struct perf_event *event, struct mm_struct 
*mm)
 {
-       if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
+       if (!(event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT))
                return;
 
        /*
@@ -2318,7 +2318,7 @@ static void x86_pmu_event_mapped(struct perf_event 
*event, struct mm_struct *mm)
 static void x86_pmu_event_unmapped(struct perf_event *event, struct mm_struct 
*mm)
 {
 
-       if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
+       if (!(event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT))
                return;
 
        if (atomic_dec_and_test(&mm->context.perf_rdpmc_allowed))
@@ -2329,7 +2329,7 @@ static int x86_pmu_event_idx(struct perf_event *event)
 {
        struct hw_perf_event *hwc = &event->hw;
 
-       if (!(hwc->flags & PERF_X86_EVENT_RDPMC_ALLOWED))
+       if (!(hwc->flags & PERF_EVENT_FLAG_USER_READ_CNT))
                return 0;
 
        if (is_metric_idx(hwc->idx))
@@ -2502,7 +2502,7 @@ void arch_perf_update_userpage(struct perf_event *event,
        userpg->cap_user_time = 0;
        userpg->cap_user_time_zero = 0;
        userpg->cap_user_rdpmc =
-               !!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED);
+               !!(event->hw.flags & PERF_EVENT_FLAG_USER_READ_CNT);
        userpg->pmc_width = x86_pmu.cntval_bits;
 
        if (!using_native_sched_clock() || !sched_clock_stable())
diff --git a/arch/x86/events/perf_event.h b/arch/x86/events/perf_event.h
index 0c3b8fa7e532..0070f0d37575 100644
--- a/arch/x86/events/perf_event.h
+++ b/arch/x86/events/perf_event.h
@@ -72,7 +72,7 @@ static inline bool constraint_match(struct event_constraint 
*c, u64 ecode)
 #define PERF_X86_EVENT_PEBS_NA_HSW     0x0010 /* haswell style datala, unknown 
*/
 #define PERF_X86_EVENT_EXCL            0x0020 /* HT exclusivity on counter */
 #define PERF_X86_EVENT_DYNAMIC         0x0040 /* dynamic alloc'd constraint */
-#define PERF_X86_EVENT_RDPMC_ALLOWED   0x0080 /* grant rdpmc permission */
+
 #define PERF_X86_EVENT_EXCL_ACCT       0x0100 /* accounted EXCL event */
 #define PERF_X86_EVENT_AUTO_RELOAD     0x0200 /* use PEBS auto-reload */
 #define PERF_X86_EVENT_LARGE_PEBS      0x0400 /* use large PEBS */
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h
index 67a50c78232f..9d2dffddeb2b 100644
--- a/include/linux/perf_event.h
+++ b/include/linux/perf_event.h
@@ -128,6 +128,15 @@ struct hw_perf_event_extra {
        int             idx;    /* index in shared_regs->regs[] */
 };
 
+/**
+ * hw_perf_event::flag values
+ *
+ * PERF_EVENT_FLAG_ARCH bits are reserved for architecture-specific
+ * usage.
+ */
+#define PERF_EVENT_FLAG_ARCH                   0x0000ffff
+#define PERF_EVENT_FLAG_USER_READ_CNT          0x80000000
+
 /**
  * struct hw_perf_event - performance event hardware details:
  */
-- 
2.36.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#12035): 
https://lists.yoctoproject.org/g/linux-yocto/message/12035
Mute This Topic: https://lists.yoctoproject.org/mt/95765176/21656
Group Owner: linux-yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to