powerpc/perf: Pass the struct perf_events down to compute_mmcr()
authorMichael Ellerman <mpe@ellerman.id.au>
Wed, 23 Jul 2014 11:12:37 +0000 (21:12 +1000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 28 Jul 2014 04:30:47 +0000 (14:30 +1000)
To support per-event exclude settings on Power8 we need access to the
struct perf_events in compute_mmcr().

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/include/asm/perf_event_server.h
arch/powerpc/perf/core-book3s.c
arch/powerpc/perf/mpc7450-pmu.c
arch/powerpc/perf/power4-pmu.c
arch/powerpc/perf/power5+-pmu.c
arch/powerpc/perf/power5-pmu.c
arch/powerpc/perf/power6-pmu.c
arch/powerpc/perf/power7-pmu.c
arch/powerpc/perf/power8-pmu.c
arch/powerpc/perf/ppc970-pmu.c

index b3e936027b26353a82ddf627306772d31e972739..814622146d5a11b53b39eff36d308b6a5ec9b643 100644 (file)
@@ -19,6 +19,8 @@
 #define MAX_EVENT_ALTERNATIVES 8
 #define MAX_LIMITED_HWCOUNTERS 2
 
+struct perf_event;
+
 /*
  * This struct provides the constants and functions needed to
  * describe the PMU on a particular POWER-family CPU.
@@ -30,7 +32,8 @@ struct power_pmu {
        unsigned long   add_fields;
        unsigned long   test_adder;
        int             (*compute_mmcr)(u64 events[], int n_ev,
-                               unsigned int hwc[], unsigned long mmcr[]);
+                               unsigned int hwc[], unsigned long mmcr[],
+                               struct perf_event *pevents[]);
        int             (*get_constraint)(u64 event_id, unsigned long *mskp,
                                unsigned long *valp);
        int             (*get_alternatives)(u64 event_id, unsigned int flags,
index f82c0973866ff39e2ba6e9538c4d20bbfb6c03b0..01b30238d7d132a4def166b5fcd446bd7fbeaaab 100644 (file)
@@ -1224,7 +1224,7 @@ static void power_pmu_enable(struct pmu *pmu)
        memset(cpuhw->mmcr, 0, sizeof(cpuhw->mmcr));
 
        if (ppmu->compute_mmcr(cpuhw->events, cpuhw->n_events, hwc_index,
-                              cpuhw->mmcr)) {
+                              cpuhw->mmcr, cpuhw->event)) {
                /* shouldn't ever get here */
                printk(KERN_ERR "oops compute_mmcr failed\n");
                goto out;
index fe21b515ca44f7027599fb73cea813e048194a95..d115c5635bf3ca15f0ac18f4f3b0951d6156999e 100644 (file)
@@ -260,8 +260,9 @@ static const u32 pmcsel_mask[N_COUNTER] = {
 /*
  * Compute MMCR0/1/2 values for a set of events.
  */
-static int mpc7450_compute_mmcr(u64 event[], int n_ev,
-                               unsigned int hwc[], unsigned long mmcr[])
+static int mpc7450_compute_mmcr(u64 event[], int n_ev, unsigned int hwc[],
+                               unsigned long mmcr[],
+                               struct perf_event *pevents[])
 {
        u8 event_index[N_CLASSES][N_COUNTER];
        int n_classevent[N_CLASSES];
index 9103a1de864da338149e75a4b4e3ddc23f3f816f..ce6072fa481be8e47352a3ff78626e8ad0cbdd87 100644 (file)
@@ -356,7 +356,7 @@ static int p4_get_alternatives(u64 event, unsigned int flags, u64 alt[])
 }
 
 static int p4_compute_mmcr(u64 event[], int n_ev,
-                          unsigned int hwc[], unsigned long mmcr[])
+                          unsigned int hwc[], unsigned long mmcr[], struct perf_event *pevents[])
 {
        unsigned long mmcr0 = 0, mmcr1 = 0, mmcra = 0;
        unsigned int pmc, unit, byte, psel, lower;
index b03b6dc0172d8c2cf3a0c91713edddbb34be2a7c..0526dac66007fee536d5e831ba6bdc7ad079cdc4 100644 (file)
@@ -452,7 +452,7 @@ static int power5p_marked_instr_event(u64 event)
 }
 
 static int power5p_compute_mmcr(u64 event[], int n_ev,
-                               unsigned int hwc[], unsigned long mmcr[])
+                               unsigned int hwc[], unsigned long mmcr[], struct perf_event *pevents[])
 {
        unsigned long mmcr1 = 0;
        unsigned long mmcra = 0;
index 1e8ce423c3af0b39b031e82094da116426f8bb78..4dc99f9f796258df3fe77419142ea9984d07f831 100644 (file)
@@ -383,7 +383,7 @@ static int power5_marked_instr_event(u64 event)
 }
 
 static int power5_compute_mmcr(u64 event[], int n_ev,
-                              unsigned int hwc[], unsigned long mmcr[])
+                              unsigned int hwc[], unsigned long mmcr[], struct perf_event *pevents[])
 {
        unsigned long mmcr1 = 0;
        unsigned long mmcra = MMCRA_SDAR_DCACHE_MISS | MMCRA_SDAR_ERAT_MISS;
index 31128e086fed04e0959768d39bba9d8fcf9e13f8..9c9d646b68a1eb29da4e154a5118ddc8d8fc6ffb 100644 (file)
@@ -175,7 +175,7 @@ static int power6_marked_instr_event(u64 event)
  * Assign PMC numbers and compute MMCR1 value for a set of events
  */
 static int p6_compute_mmcr(u64 event[], int n_ev,
-                          unsigned int hwc[], unsigned long mmcr[])
+                          unsigned int hwc[], unsigned long mmcr[], struct perf_event *pevents[])
 {
        unsigned long mmcr1 = 0;
        unsigned long mmcra = MMCRA_SDAR_DCACHE_MISS | MMCRA_SDAR_ERAT_MISS;
index 56c67bca2f7558435110451b1e7659a20f84ef72..5b62f238929003a0deade3e8a2a63203df06337b 100644 (file)
@@ -245,7 +245,7 @@ static int power7_marked_instr_event(u64 event)
 }
 
 static int power7_compute_mmcr(u64 event[], int n_ev,
-                              unsigned int hwc[], unsigned long mmcr[])
+                              unsigned int hwc[], unsigned long mmcr[], struct perf_event *pevents[])
 {
        unsigned long mmcr1 = 0;
        unsigned long mmcra = MMCRA_SDAR_DCACHE_MISS | MMCRA_SDAR_ERAT_MISS;
index 639cd9156585f797a82c138eee2474f3eda84242..19bbddf495dd3feaeedfba389a1880041a897697 100644 (file)
@@ -393,7 +393,8 @@ static int power8_get_constraint(u64 event, unsigned long *maskp, unsigned long
 }
 
 static int power8_compute_mmcr(u64 event[], int n_ev,
-                              unsigned int hwc[], unsigned long mmcr[])
+                              unsigned int hwc[], unsigned long mmcr[],
+                              struct perf_event *pevents[])
 {
        unsigned long mmcra, mmcr1, unit, combine, psel, cache, val;
        unsigned int pmc, pmc_inuse;
index 20139ceeacf68b03009a8854adb6eb82d8dfebb9..8b6a8a36fa3818cc67093ac60f968089b84944eb 100644 (file)
@@ -257,7 +257,7 @@ static int p970_get_alternatives(u64 event, unsigned int flags, u64 alt[])
 }
 
 static int p970_compute_mmcr(u64 event[], int n_ev,
-                            unsigned int hwc[], unsigned long mmcr[])
+                            unsigned int hwc[], unsigned long mmcr[], struct perf_event *pevents[])
 {
        unsigned long mmcr0 = 0, mmcr1 = 0, mmcra = 0;
        unsigned int pmc, unit, byte, psel;