xref: /openbmc/linux/arch/powerpc/perf/core-book3s.c (revision e13e895f)
1f2699491SMichael Ellerman /*
2f2699491SMichael Ellerman  * Performance event support - powerpc architecture code
3f2699491SMichael Ellerman  *
4f2699491SMichael Ellerman  * Copyright 2008-2009 Paul Mackerras, IBM Corporation.
5f2699491SMichael Ellerman  *
6f2699491SMichael Ellerman  * This program is free software; you can redistribute it and/or
7f2699491SMichael Ellerman  * modify it under the terms of the GNU General Public License
8f2699491SMichael Ellerman  * as published by the Free Software Foundation; either version
9f2699491SMichael Ellerman  * 2 of the License, or (at your option) any later version.
10f2699491SMichael Ellerman  */
11f2699491SMichael Ellerman #include <linux/kernel.h>
12f2699491SMichael Ellerman #include <linux/sched.h>
13f2699491SMichael Ellerman #include <linux/perf_event.h>
14f2699491SMichael Ellerman #include <linux/percpu.h>
15f2699491SMichael Ellerman #include <linux/hardirq.h>
16f2699491SMichael Ellerman #include <asm/reg.h>
17f2699491SMichael Ellerman #include <asm/pmc.h>
18f2699491SMichael Ellerman #include <asm/machdep.h>
19f2699491SMichael Ellerman #include <asm/firmware.h>
20f2699491SMichael Ellerman #include <asm/ptrace.h>
21f2699491SMichael Ellerman 
22f2699491SMichael Ellerman struct cpu_hw_events {
23f2699491SMichael Ellerman 	int n_events;
24f2699491SMichael Ellerman 	int n_percpu;
25f2699491SMichael Ellerman 	int disabled;
26f2699491SMichael Ellerman 	int n_added;
27f2699491SMichael Ellerman 	int n_limited;
28f2699491SMichael Ellerman 	u8  pmcs_enabled;
29f2699491SMichael Ellerman 	struct perf_event *event[MAX_HWEVENTS];
30f2699491SMichael Ellerman 	u64 events[MAX_HWEVENTS];
31f2699491SMichael Ellerman 	unsigned int flags[MAX_HWEVENTS];
32f2699491SMichael Ellerman 	unsigned long mmcr[3];
33f2699491SMichael Ellerman 	struct perf_event *limited_counter[MAX_LIMITED_HWCOUNTERS];
34f2699491SMichael Ellerman 	u8  limited_hwidx[MAX_LIMITED_HWCOUNTERS];
35f2699491SMichael Ellerman 	u64 alternatives[MAX_HWEVENTS][MAX_EVENT_ALTERNATIVES];
36f2699491SMichael Ellerman 	unsigned long amasks[MAX_HWEVENTS][MAX_EVENT_ALTERNATIVES];
37f2699491SMichael Ellerman 	unsigned long avalues[MAX_HWEVENTS][MAX_EVENT_ALTERNATIVES];
38f2699491SMichael Ellerman 
39f2699491SMichael Ellerman 	unsigned int group_flag;
40f2699491SMichael Ellerman 	int n_txn_start;
41f2699491SMichael Ellerman };
42f2699491SMichael Ellerman DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events);
43f2699491SMichael Ellerman 
44f2699491SMichael Ellerman struct power_pmu *ppmu;
45f2699491SMichael Ellerman 
46f2699491SMichael Ellerman /*
47f2699491SMichael Ellerman  * Normally, to ignore kernel events we set the FCS (freeze counters
48f2699491SMichael Ellerman  * in supervisor mode) bit in MMCR0, but if the kernel runs with the
49f2699491SMichael Ellerman  * hypervisor bit set in the MSR, or if we are running on a processor
50f2699491SMichael Ellerman  * where the hypervisor bit is forced to 1 (as on Apple G5 processors),
51f2699491SMichael Ellerman  * then we need to use the FCHV bit to ignore kernel events.
52f2699491SMichael Ellerman  */
53f2699491SMichael Ellerman static unsigned int freeze_events_kernel = MMCR0_FCS;
54f2699491SMichael Ellerman 
55f2699491SMichael Ellerman /*
56f2699491SMichael Ellerman  * 32-bit doesn't have MMCRA but does have an MMCR2,
57f2699491SMichael Ellerman  * and a few other names are different.
58f2699491SMichael Ellerman  */
59f2699491SMichael Ellerman #ifdef CONFIG_PPC32
60f2699491SMichael Ellerman 
61f2699491SMichael Ellerman #define MMCR0_FCHV		0
62f2699491SMichael Ellerman #define MMCR0_PMCjCE		MMCR0_PMCnCE
63f2699491SMichael Ellerman 
64f2699491SMichael Ellerman #define SPRN_MMCRA		SPRN_MMCR2
65f2699491SMichael Ellerman #define MMCRA_SAMPLE_ENABLE	0
66f2699491SMichael Ellerman 
67f2699491SMichael Ellerman static inline unsigned long perf_ip_adjust(struct pt_regs *regs)
68f2699491SMichael Ellerman {
69f2699491SMichael Ellerman 	return 0;
70f2699491SMichael Ellerman }
71f2699491SMichael Ellerman static inline void perf_get_data_addr(struct pt_regs *regs, u64 *addrp) { }
72f2699491SMichael Ellerman static inline u32 perf_get_misc_flags(struct pt_regs *regs)
73f2699491SMichael Ellerman {
74f2699491SMichael Ellerman 	return 0;
75f2699491SMichael Ellerman }
7675382aa7SAnton Blanchard static inline void perf_read_regs(struct pt_regs *regs)
7775382aa7SAnton Blanchard {
7875382aa7SAnton Blanchard 	regs->result = 0;
7975382aa7SAnton Blanchard }
80f2699491SMichael Ellerman static inline int perf_intr_is_nmi(struct pt_regs *regs)
81f2699491SMichael Ellerman {
82f2699491SMichael Ellerman 	return 0;
83f2699491SMichael Ellerman }
84f2699491SMichael Ellerman 
85e6878835Ssukadev@linux.vnet.ibm.com static inline int siar_valid(struct pt_regs *regs)
86e6878835Ssukadev@linux.vnet.ibm.com {
87e6878835Ssukadev@linux.vnet.ibm.com 	return 1;
88e6878835Ssukadev@linux.vnet.ibm.com }
89e6878835Ssukadev@linux.vnet.ibm.com 
90f2699491SMichael Ellerman #endif /* CONFIG_PPC32 */
91f2699491SMichael Ellerman 
92f2699491SMichael Ellerman /*
93f2699491SMichael Ellerman  * Things that are specific to 64-bit implementations.
94f2699491SMichael Ellerman  */
95f2699491SMichael Ellerman #ifdef CONFIG_PPC64
96f2699491SMichael Ellerman 
97f2699491SMichael Ellerman static inline unsigned long perf_ip_adjust(struct pt_regs *regs)
98f2699491SMichael Ellerman {
99f2699491SMichael Ellerman 	unsigned long mmcra = regs->dsisr;
100f2699491SMichael Ellerman 
101f2699491SMichael Ellerman 	if ((mmcra & MMCRA_SAMPLE_ENABLE) && !(ppmu->flags & PPMU_ALT_SIPR)) {
102f2699491SMichael Ellerman 		unsigned long slot = (mmcra & MMCRA_SLOT) >> MMCRA_SLOT_SHIFT;
103f2699491SMichael Ellerman 		if (slot > 1)
104f2699491SMichael Ellerman 			return 4 * (slot - 1);
105f2699491SMichael Ellerman 	}
106f2699491SMichael Ellerman 	return 0;
107f2699491SMichael Ellerman }
108f2699491SMichael Ellerman 
109f2699491SMichael Ellerman /*
110f2699491SMichael Ellerman  * The user wants a data address recorded.
111f2699491SMichael Ellerman  * If we're not doing instruction sampling, give them the SDAR
112f2699491SMichael Ellerman  * (sampled data address).  If we are doing instruction sampling, then
113f2699491SMichael Ellerman  * only give them the SDAR if it corresponds to the instruction
114e6878835Ssukadev@linux.vnet.ibm.com  * pointed to by SIAR; this is indicated by the [POWER6_]MMCRA_SDSYNC or
115e6878835Ssukadev@linux.vnet.ibm.com  * the [POWER7P_]MMCRA_SDAR_VALID bit in MMCRA.
116f2699491SMichael Ellerman  */
117f2699491SMichael Ellerman static inline void perf_get_data_addr(struct pt_regs *regs, u64 *addrp)
118f2699491SMichael Ellerman {
119f2699491SMichael Ellerman 	unsigned long mmcra = regs->dsisr;
120e6878835Ssukadev@linux.vnet.ibm.com 	unsigned long sdsync;
121e6878835Ssukadev@linux.vnet.ibm.com 
122e6878835Ssukadev@linux.vnet.ibm.com 	if (ppmu->flags & PPMU_SIAR_VALID)
123e6878835Ssukadev@linux.vnet.ibm.com 		sdsync = POWER7P_MMCRA_SDAR_VALID;
124e6878835Ssukadev@linux.vnet.ibm.com 	else if (ppmu->flags & PPMU_ALT_SIPR)
125e6878835Ssukadev@linux.vnet.ibm.com 		sdsync = POWER6_MMCRA_SDSYNC;
126e6878835Ssukadev@linux.vnet.ibm.com 	else
127e6878835Ssukadev@linux.vnet.ibm.com 		sdsync = MMCRA_SDSYNC;
128f2699491SMichael Ellerman 
129f2699491SMichael Ellerman 	if (!(mmcra & MMCRA_SAMPLE_ENABLE) || (mmcra & sdsync))
130f2699491SMichael Ellerman 		*addrp = mfspr(SPRN_SDAR);
131f2699491SMichael Ellerman }
132f2699491SMichael Ellerman 
13368b30bb9SAnton Blanchard static bool mmcra_sihv(unsigned long mmcra)
13468b30bb9SAnton Blanchard {
13568b30bb9SAnton Blanchard 	unsigned long sihv = MMCRA_SIHV;
13668b30bb9SAnton Blanchard 
13768b30bb9SAnton Blanchard 	if (ppmu->flags & PPMU_ALT_SIPR)
13868b30bb9SAnton Blanchard 		sihv = POWER6_MMCRA_SIHV;
13968b30bb9SAnton Blanchard 
14068b30bb9SAnton Blanchard 	return !!(mmcra & sihv);
14168b30bb9SAnton Blanchard }
14268b30bb9SAnton Blanchard 
14368b30bb9SAnton Blanchard static bool mmcra_sipr(unsigned long mmcra)
14468b30bb9SAnton Blanchard {
14568b30bb9SAnton Blanchard 	unsigned long sipr = MMCRA_SIPR;
14668b30bb9SAnton Blanchard 
14768b30bb9SAnton Blanchard 	if (ppmu->flags & PPMU_ALT_SIPR)
14868b30bb9SAnton Blanchard 		sipr = POWER6_MMCRA_SIPR;
14968b30bb9SAnton Blanchard 
15068b30bb9SAnton Blanchard 	return !!(mmcra & sipr);
15168b30bb9SAnton Blanchard }
15268b30bb9SAnton Blanchard 
1531ce447b9SBenjamin Herrenschmidt static inline u32 perf_flags_from_msr(struct pt_regs *regs)
1541ce447b9SBenjamin Herrenschmidt {
1551ce447b9SBenjamin Herrenschmidt 	if (regs->msr & MSR_PR)
1561ce447b9SBenjamin Herrenschmidt 		return PERF_RECORD_MISC_USER;
1571ce447b9SBenjamin Herrenschmidt 	if ((regs->msr & MSR_HV) && freeze_events_kernel != MMCR0_FCHV)
1581ce447b9SBenjamin Herrenschmidt 		return PERF_RECORD_MISC_HYPERVISOR;
1591ce447b9SBenjamin Herrenschmidt 	return PERF_RECORD_MISC_KERNEL;
1601ce447b9SBenjamin Herrenschmidt }
1611ce447b9SBenjamin Herrenschmidt 
162f2699491SMichael Ellerman static inline u32 perf_get_misc_flags(struct pt_regs *regs)
163f2699491SMichael Ellerman {
164f2699491SMichael Ellerman 	unsigned long mmcra = regs->dsisr;
16575382aa7SAnton Blanchard 	unsigned long use_siar = regs->result;
166f2699491SMichael Ellerman 
16775382aa7SAnton Blanchard 	if (!use_siar)
1681ce447b9SBenjamin Herrenschmidt 		return perf_flags_from_msr(regs);
1691ce447b9SBenjamin Herrenschmidt 
1701ce447b9SBenjamin Herrenschmidt 	/*
1711ce447b9SBenjamin Herrenschmidt 	 * If we don't have flags in MMCRA, rather than using
1721ce447b9SBenjamin Herrenschmidt 	 * the MSR, we intuit the flags from the address in
1731ce447b9SBenjamin Herrenschmidt 	 * SIAR which should give slightly more reliable
1741ce447b9SBenjamin Herrenschmidt 	 * results
1751ce447b9SBenjamin Herrenschmidt 	 */
1761ce447b9SBenjamin Herrenschmidt 	if (ppmu->flags & PPMU_NO_SIPR) {
1771ce447b9SBenjamin Herrenschmidt 		unsigned long siar = mfspr(SPRN_SIAR);
1781ce447b9SBenjamin Herrenschmidt 		if (siar >= PAGE_OFFSET)
1791ce447b9SBenjamin Herrenschmidt 			return PERF_RECORD_MISC_KERNEL;
1801ce447b9SBenjamin Herrenschmidt 		return PERF_RECORD_MISC_USER;
1811ce447b9SBenjamin Herrenschmidt 	}
182f2699491SMichael Ellerman 
183f2699491SMichael Ellerman 	/* PR has priority over HV, so order below is important */
18468b30bb9SAnton Blanchard 	if (mmcra_sipr(mmcra))
185f2699491SMichael Ellerman 		return PERF_RECORD_MISC_USER;
18668b30bb9SAnton Blanchard 	if (mmcra_sihv(mmcra) && (freeze_events_kernel != MMCR0_FCHV))
187f2699491SMichael Ellerman 		return PERF_RECORD_MISC_HYPERVISOR;
188f2699491SMichael Ellerman 	return PERF_RECORD_MISC_KERNEL;
189f2699491SMichael Ellerman }
190f2699491SMichael Ellerman 
191f2699491SMichael Ellerman /*
192f2699491SMichael Ellerman  * Overload regs->dsisr to store MMCRA so we only need to read it once
193f2699491SMichael Ellerman  * on each interrupt.
19475382aa7SAnton Blanchard  * Overload regs->result to specify whether we should use the MSR (result
19575382aa7SAnton Blanchard  * is zero) or the SIAR (result is non zero).
196f2699491SMichael Ellerman  */
197f2699491SMichael Ellerman static inline void perf_read_regs(struct pt_regs *regs)
198f2699491SMichael Ellerman {
19975382aa7SAnton Blanchard 	unsigned long mmcra = mfspr(SPRN_MMCRA);
20075382aa7SAnton Blanchard 	int marked = mmcra & MMCRA_SAMPLE_ENABLE;
20175382aa7SAnton Blanchard 	int use_siar;
20275382aa7SAnton Blanchard 
2035c093efaSAnton Blanchard 	/*
2045c093efaSAnton Blanchard 	 * If this isn't a PMU exception (eg a software event) the SIAR is
2055c093efaSAnton Blanchard 	 * not valid. Use pt_regs.
2065c093efaSAnton Blanchard 	 *
2075c093efaSAnton Blanchard 	 * If it is a marked event use the SIAR.
2085c093efaSAnton Blanchard 	 *
2095c093efaSAnton Blanchard 	 * If the PMU doesn't update the SIAR for non marked events use
2105c093efaSAnton Blanchard 	 * pt_regs.
2115c093efaSAnton Blanchard 	 *
2125c093efaSAnton Blanchard 	 * If the PMU has HV/PR flags then check to see if they
2135c093efaSAnton Blanchard 	 * place the exception in userspace. If so, use pt_regs. In
2145c093efaSAnton Blanchard 	 * continuous sampling mode the SIAR and the PMU exception are
2155c093efaSAnton Blanchard 	 * not synchronised, so they may be many instructions apart.
2165c093efaSAnton Blanchard 	 * This can result in confusing backtraces. We still want
2175c093efaSAnton Blanchard 	 * hypervisor samples as well as samples in the kernel with
2185c093efaSAnton Blanchard 	 * interrupts off hence the userspace check.
2195c093efaSAnton Blanchard 	 */
22075382aa7SAnton Blanchard 	if (TRAP(regs) != 0xf00)
22175382aa7SAnton Blanchard 		use_siar = 0;
2225c093efaSAnton Blanchard 	else if (marked)
2235c093efaSAnton Blanchard 		use_siar = 1;
2245c093efaSAnton Blanchard 	else if ((ppmu->flags & PPMU_NO_CONT_SAMPLING))
2255c093efaSAnton Blanchard 		use_siar = 0;
2265c093efaSAnton Blanchard 	else if (!(ppmu->flags & PPMU_NO_SIPR) && mmcra_sipr(mmcra))
22775382aa7SAnton Blanchard 		use_siar = 0;
22875382aa7SAnton Blanchard 	else
22975382aa7SAnton Blanchard 		use_siar = 1;
23075382aa7SAnton Blanchard 
23175382aa7SAnton Blanchard 	regs->dsisr = mmcra;
23275382aa7SAnton Blanchard 	regs->result = use_siar;
233f2699491SMichael Ellerman }
234f2699491SMichael Ellerman 
235f2699491SMichael Ellerman /*
236f2699491SMichael Ellerman  * If interrupts were soft-disabled when a PMU interrupt occurs, treat
237f2699491SMichael Ellerman  * it as an NMI.
238f2699491SMichael Ellerman  */
239f2699491SMichael Ellerman static inline int perf_intr_is_nmi(struct pt_regs *regs)
240f2699491SMichael Ellerman {
241f2699491SMichael Ellerman 	return !regs->softe;
242f2699491SMichael Ellerman }
243f2699491SMichael Ellerman 
244e6878835Ssukadev@linux.vnet.ibm.com /*
245e6878835Ssukadev@linux.vnet.ibm.com  * On processors like P7+ that have the SIAR-Valid bit, marked instructions
246e6878835Ssukadev@linux.vnet.ibm.com  * must be sampled only if the SIAR-valid bit is set.
247e6878835Ssukadev@linux.vnet.ibm.com  *
248e6878835Ssukadev@linux.vnet.ibm.com  * For unmarked instructions and for processors that don't have the SIAR-Valid
249e6878835Ssukadev@linux.vnet.ibm.com  * bit, assume that SIAR is valid.
250e6878835Ssukadev@linux.vnet.ibm.com  */
251e6878835Ssukadev@linux.vnet.ibm.com static inline int siar_valid(struct pt_regs *regs)
252e6878835Ssukadev@linux.vnet.ibm.com {
253e6878835Ssukadev@linux.vnet.ibm.com 	unsigned long mmcra = regs->dsisr;
254e6878835Ssukadev@linux.vnet.ibm.com 	int marked = mmcra & MMCRA_SAMPLE_ENABLE;
255e6878835Ssukadev@linux.vnet.ibm.com 
256e6878835Ssukadev@linux.vnet.ibm.com 	if ((ppmu->flags & PPMU_SIAR_VALID) && marked)
257e6878835Ssukadev@linux.vnet.ibm.com 		return mmcra & POWER7P_MMCRA_SIAR_VALID;
258e6878835Ssukadev@linux.vnet.ibm.com 
259e6878835Ssukadev@linux.vnet.ibm.com 	return 1;
260e6878835Ssukadev@linux.vnet.ibm.com }
261e6878835Ssukadev@linux.vnet.ibm.com 
262f2699491SMichael Ellerman #endif /* CONFIG_PPC64 */
263f2699491SMichael Ellerman 
264f2699491SMichael Ellerman static void perf_event_interrupt(struct pt_regs *regs);
265f2699491SMichael Ellerman 
266f2699491SMichael Ellerman void perf_event_print_debug(void)
267f2699491SMichael Ellerman {
268f2699491SMichael Ellerman }
269f2699491SMichael Ellerman 
270f2699491SMichael Ellerman /*
271f2699491SMichael Ellerman  * Read one performance monitor counter (PMC).
272f2699491SMichael Ellerman  */
273f2699491SMichael Ellerman static unsigned long read_pmc(int idx)
274f2699491SMichael Ellerman {
275f2699491SMichael Ellerman 	unsigned long val;
276f2699491SMichael Ellerman 
277f2699491SMichael Ellerman 	switch (idx) {
278f2699491SMichael Ellerman 	case 1:
279f2699491SMichael Ellerman 		val = mfspr(SPRN_PMC1);
280f2699491SMichael Ellerman 		break;
281f2699491SMichael Ellerman 	case 2:
282f2699491SMichael Ellerman 		val = mfspr(SPRN_PMC2);
283f2699491SMichael Ellerman 		break;
284f2699491SMichael Ellerman 	case 3:
285f2699491SMichael Ellerman 		val = mfspr(SPRN_PMC3);
286f2699491SMichael Ellerman 		break;
287f2699491SMichael Ellerman 	case 4:
288f2699491SMichael Ellerman 		val = mfspr(SPRN_PMC4);
289f2699491SMichael Ellerman 		break;
290f2699491SMichael Ellerman 	case 5:
291f2699491SMichael Ellerman 		val = mfspr(SPRN_PMC5);
292f2699491SMichael Ellerman 		break;
293f2699491SMichael Ellerman 	case 6:
294f2699491SMichael Ellerman 		val = mfspr(SPRN_PMC6);
295f2699491SMichael Ellerman 		break;
296f2699491SMichael Ellerman #ifdef CONFIG_PPC64
297f2699491SMichael Ellerman 	case 7:
298f2699491SMichael Ellerman 		val = mfspr(SPRN_PMC7);
299f2699491SMichael Ellerman 		break;
300f2699491SMichael Ellerman 	case 8:
301f2699491SMichael Ellerman 		val = mfspr(SPRN_PMC8);
302f2699491SMichael Ellerman 		break;
303f2699491SMichael Ellerman #endif /* CONFIG_PPC64 */
304f2699491SMichael Ellerman 	default:
305f2699491SMichael Ellerman 		printk(KERN_ERR "oops trying to read PMC%d\n", idx);
306f2699491SMichael Ellerman 		val = 0;
307f2699491SMichael Ellerman 	}
308f2699491SMichael Ellerman 	return val;
309f2699491SMichael Ellerman }
310f2699491SMichael Ellerman 
311f2699491SMichael Ellerman /*
312f2699491SMichael Ellerman  * Write one PMC.
313f2699491SMichael Ellerman  */
314f2699491SMichael Ellerman static void write_pmc(int idx, unsigned long val)
315f2699491SMichael Ellerman {
316f2699491SMichael Ellerman 	switch (idx) {
317f2699491SMichael Ellerman 	case 1:
318f2699491SMichael Ellerman 		mtspr(SPRN_PMC1, val);
319f2699491SMichael Ellerman 		break;
320f2699491SMichael Ellerman 	case 2:
321f2699491SMichael Ellerman 		mtspr(SPRN_PMC2, val);
322f2699491SMichael Ellerman 		break;
323f2699491SMichael Ellerman 	case 3:
324f2699491SMichael Ellerman 		mtspr(SPRN_PMC3, val);
325f2699491SMichael Ellerman 		break;
326f2699491SMichael Ellerman 	case 4:
327f2699491SMichael Ellerman 		mtspr(SPRN_PMC4, val);
328f2699491SMichael Ellerman 		break;
329f2699491SMichael Ellerman 	case 5:
330f2699491SMichael Ellerman 		mtspr(SPRN_PMC5, val);
331f2699491SMichael Ellerman 		break;
332f2699491SMichael Ellerman 	case 6:
333f2699491SMichael Ellerman 		mtspr(SPRN_PMC6, val);
334f2699491SMichael Ellerman 		break;
335f2699491SMichael Ellerman #ifdef CONFIG_PPC64
336f2699491SMichael Ellerman 	case 7:
337f2699491SMichael Ellerman 		mtspr(SPRN_PMC7, val);
338f2699491SMichael Ellerman 		break;
339f2699491SMichael Ellerman 	case 8:
340f2699491SMichael Ellerman 		mtspr(SPRN_PMC8, val);
341f2699491SMichael Ellerman 		break;
342f2699491SMichael Ellerman #endif /* CONFIG_PPC64 */
343f2699491SMichael Ellerman 	default:
344f2699491SMichael Ellerman 		printk(KERN_ERR "oops trying to write PMC%d\n", idx);
345f2699491SMichael Ellerman 	}
346f2699491SMichael Ellerman }
347f2699491SMichael Ellerman 
348f2699491SMichael Ellerman /*
349f2699491SMichael Ellerman  * Check if a set of events can all go on the PMU at once.
350f2699491SMichael Ellerman  * If they can't, this will look at alternative codes for the events
351f2699491SMichael Ellerman  * and see if any combination of alternative codes is feasible.
352f2699491SMichael Ellerman  * The feasible set is returned in event_id[].
353f2699491SMichael Ellerman  */
354f2699491SMichael Ellerman static int power_check_constraints(struct cpu_hw_events *cpuhw,
355f2699491SMichael Ellerman 				   u64 event_id[], unsigned int cflags[],
356f2699491SMichael Ellerman 				   int n_ev)
357f2699491SMichael Ellerman {
358f2699491SMichael Ellerman 	unsigned long mask, value, nv;
359f2699491SMichael Ellerman 	unsigned long smasks[MAX_HWEVENTS], svalues[MAX_HWEVENTS];
360f2699491SMichael Ellerman 	int n_alt[MAX_HWEVENTS], choice[MAX_HWEVENTS];
361f2699491SMichael Ellerman 	int i, j;
362f2699491SMichael Ellerman 	unsigned long addf = ppmu->add_fields;
363f2699491SMichael Ellerman 	unsigned long tadd = ppmu->test_adder;
364f2699491SMichael Ellerman 
365f2699491SMichael Ellerman 	if (n_ev > ppmu->n_counter)
366f2699491SMichael Ellerman 		return -1;
367f2699491SMichael Ellerman 
368f2699491SMichael Ellerman 	/* First see if the events will go on as-is */
369f2699491SMichael Ellerman 	for (i = 0; i < n_ev; ++i) {
370f2699491SMichael Ellerman 		if ((cflags[i] & PPMU_LIMITED_PMC_REQD)
371f2699491SMichael Ellerman 		    && !ppmu->limited_pmc_event(event_id[i])) {
372f2699491SMichael Ellerman 			ppmu->get_alternatives(event_id[i], cflags[i],
373f2699491SMichael Ellerman 					       cpuhw->alternatives[i]);
374f2699491SMichael Ellerman 			event_id[i] = cpuhw->alternatives[i][0];
375f2699491SMichael Ellerman 		}
376f2699491SMichael Ellerman 		if (ppmu->get_constraint(event_id[i], &cpuhw->amasks[i][0],
377f2699491SMichael Ellerman 					 &cpuhw->avalues[i][0]))
378f2699491SMichael Ellerman 			return -1;
379f2699491SMichael Ellerman 	}
380f2699491SMichael Ellerman 	value = mask = 0;
381f2699491SMichael Ellerman 	for (i = 0; i < n_ev; ++i) {
382f2699491SMichael Ellerman 		nv = (value | cpuhw->avalues[i][0]) +
383f2699491SMichael Ellerman 			(value & cpuhw->avalues[i][0] & addf);
384f2699491SMichael Ellerman 		if ((((nv + tadd) ^ value) & mask) != 0 ||
385f2699491SMichael Ellerman 		    (((nv + tadd) ^ cpuhw->avalues[i][0]) &
386f2699491SMichael Ellerman 		     cpuhw->amasks[i][0]) != 0)
387f2699491SMichael Ellerman 			break;
388f2699491SMichael Ellerman 		value = nv;
389f2699491SMichael Ellerman 		mask |= cpuhw->amasks[i][0];
390f2699491SMichael Ellerman 	}
391f2699491SMichael Ellerman 	if (i == n_ev)
392f2699491SMichael Ellerman 		return 0;	/* all OK */
393f2699491SMichael Ellerman 
394f2699491SMichael Ellerman 	/* doesn't work, gather alternatives... */
395f2699491SMichael Ellerman 	if (!ppmu->get_alternatives)
396f2699491SMichael Ellerman 		return -1;
397f2699491SMichael Ellerman 	for (i = 0; i < n_ev; ++i) {
398f2699491SMichael Ellerman 		choice[i] = 0;
399f2699491SMichael Ellerman 		n_alt[i] = ppmu->get_alternatives(event_id[i], cflags[i],
400f2699491SMichael Ellerman 						  cpuhw->alternatives[i]);
401f2699491SMichael Ellerman 		for (j = 1; j < n_alt[i]; ++j)
402f2699491SMichael Ellerman 			ppmu->get_constraint(cpuhw->alternatives[i][j],
403f2699491SMichael Ellerman 					     &cpuhw->amasks[i][j],
404f2699491SMichael Ellerman 					     &cpuhw->avalues[i][j]);
405f2699491SMichael Ellerman 	}
406f2699491SMichael Ellerman 
407f2699491SMichael Ellerman 	/* enumerate all possibilities and see if any will work */
408f2699491SMichael Ellerman 	i = 0;
409f2699491SMichael Ellerman 	j = -1;
410f2699491SMichael Ellerman 	value = mask = nv = 0;
411f2699491SMichael Ellerman 	while (i < n_ev) {
412f2699491SMichael Ellerman 		if (j >= 0) {
413f2699491SMichael Ellerman 			/* we're backtracking, restore context */
414f2699491SMichael Ellerman 			value = svalues[i];
415f2699491SMichael Ellerman 			mask = smasks[i];
416f2699491SMichael Ellerman 			j = choice[i];
417f2699491SMichael Ellerman 		}
418f2699491SMichael Ellerman 		/*
419f2699491SMichael Ellerman 		 * See if any alternative k for event_id i,
420f2699491SMichael Ellerman 		 * where k > j, will satisfy the constraints.
421f2699491SMichael Ellerman 		 */
422f2699491SMichael Ellerman 		while (++j < n_alt[i]) {
423f2699491SMichael Ellerman 			nv = (value | cpuhw->avalues[i][j]) +
424f2699491SMichael Ellerman 				(value & cpuhw->avalues[i][j] & addf);
425f2699491SMichael Ellerman 			if ((((nv + tadd) ^ value) & mask) == 0 &&
426f2699491SMichael Ellerman 			    (((nv + tadd) ^ cpuhw->avalues[i][j])
427f2699491SMichael Ellerman 			     & cpuhw->amasks[i][j]) == 0)
428f2699491SMichael Ellerman 				break;
429f2699491SMichael Ellerman 		}
430f2699491SMichael Ellerman 		if (j >= n_alt[i]) {
431f2699491SMichael Ellerman 			/*
432f2699491SMichael Ellerman 			 * No feasible alternative, backtrack
433f2699491SMichael Ellerman 			 * to event_id i-1 and continue enumerating its
434f2699491SMichael Ellerman 			 * alternatives from where we got up to.
435f2699491SMichael Ellerman 			 */
436f2699491SMichael Ellerman 			if (--i < 0)
437f2699491SMichael Ellerman 				return -1;
438f2699491SMichael Ellerman 		} else {
439f2699491SMichael Ellerman 			/*
440f2699491SMichael Ellerman 			 * Found a feasible alternative for event_id i,
441f2699491SMichael Ellerman 			 * remember where we got up to with this event_id,
442f2699491SMichael Ellerman 			 * go on to the next event_id, and start with
443f2699491SMichael Ellerman 			 * the first alternative for it.
444f2699491SMichael Ellerman 			 */
445f2699491SMichael Ellerman 			choice[i] = j;
446f2699491SMichael Ellerman 			svalues[i] = value;
447f2699491SMichael Ellerman 			smasks[i] = mask;
448f2699491SMichael Ellerman 			value = nv;
449f2699491SMichael Ellerman 			mask |= cpuhw->amasks[i][j];
450f2699491SMichael Ellerman 			++i;
451f2699491SMichael Ellerman 			j = -1;
452f2699491SMichael Ellerman 		}
453f2699491SMichael Ellerman 	}
454f2699491SMichael Ellerman 
455f2699491SMichael Ellerman 	/* OK, we have a feasible combination, tell the caller the solution */
456f2699491SMichael Ellerman 	for (i = 0; i < n_ev; ++i)
457f2699491SMichael Ellerman 		event_id[i] = cpuhw->alternatives[i][choice[i]];
458f2699491SMichael Ellerman 	return 0;
459f2699491SMichael Ellerman }
460f2699491SMichael Ellerman 
461f2699491SMichael Ellerman /*
462f2699491SMichael Ellerman  * Check if newly-added events have consistent settings for
463f2699491SMichael Ellerman  * exclude_{user,kernel,hv} with each other and any previously
464f2699491SMichael Ellerman  * added events.
465f2699491SMichael Ellerman  */
466f2699491SMichael Ellerman static int check_excludes(struct perf_event **ctrs, unsigned int cflags[],
467f2699491SMichael Ellerman 			  int n_prev, int n_new)
468f2699491SMichael Ellerman {
469f2699491SMichael Ellerman 	int eu = 0, ek = 0, eh = 0;
470f2699491SMichael Ellerman 	int i, n, first;
471f2699491SMichael Ellerman 	struct perf_event *event;
472f2699491SMichael Ellerman 
473f2699491SMichael Ellerman 	n = n_prev + n_new;
474f2699491SMichael Ellerman 	if (n <= 1)
475f2699491SMichael Ellerman 		return 0;
476f2699491SMichael Ellerman 
477f2699491SMichael Ellerman 	first = 1;
478f2699491SMichael Ellerman 	for (i = 0; i < n; ++i) {
479f2699491SMichael Ellerman 		if (cflags[i] & PPMU_LIMITED_PMC_OK) {
480f2699491SMichael Ellerman 			cflags[i] &= ~PPMU_LIMITED_PMC_REQD;
481f2699491SMichael Ellerman 			continue;
482f2699491SMichael Ellerman 		}
483f2699491SMichael Ellerman 		event = ctrs[i];
484f2699491SMichael Ellerman 		if (first) {
485f2699491SMichael Ellerman 			eu = event->attr.exclude_user;
486f2699491SMichael Ellerman 			ek = event->attr.exclude_kernel;
487f2699491SMichael Ellerman 			eh = event->attr.exclude_hv;
488f2699491SMichael Ellerman 			first = 0;
489f2699491SMichael Ellerman 		} else if (event->attr.exclude_user != eu ||
490f2699491SMichael Ellerman 			   event->attr.exclude_kernel != ek ||
491f2699491SMichael Ellerman 			   event->attr.exclude_hv != eh) {
492f2699491SMichael Ellerman 			return -EAGAIN;
493f2699491SMichael Ellerman 		}
494f2699491SMichael Ellerman 	}
495f2699491SMichael Ellerman 
496f2699491SMichael Ellerman 	if (eu || ek || eh)
497f2699491SMichael Ellerman 		for (i = 0; i < n; ++i)
498f2699491SMichael Ellerman 			if (cflags[i] & PPMU_LIMITED_PMC_OK)
499f2699491SMichael Ellerman 				cflags[i] |= PPMU_LIMITED_PMC_REQD;
500f2699491SMichael Ellerman 
501f2699491SMichael Ellerman 	return 0;
502f2699491SMichael Ellerman }
503f2699491SMichael Ellerman 
504f2699491SMichael Ellerman static u64 check_and_compute_delta(u64 prev, u64 val)
505f2699491SMichael Ellerman {
506f2699491SMichael Ellerman 	u64 delta = (val - prev) & 0xfffffffful;
507f2699491SMichael Ellerman 
508f2699491SMichael Ellerman 	/*
509f2699491SMichael Ellerman 	 * POWER7 can roll back counter values, if the new value is smaller
510f2699491SMichael Ellerman 	 * than the previous value it will cause the delta and the counter to
511f2699491SMichael Ellerman 	 * have bogus values unless we rolled a counter over.  If a coutner is
512f2699491SMichael Ellerman 	 * rolled back, it will be smaller, but within 256, which is the maximum
513f2699491SMichael Ellerman 	 * number of events to rollback at once.  If we dectect a rollback
514f2699491SMichael Ellerman 	 * return 0.  This can lead to a small lack of precision in the
515f2699491SMichael Ellerman 	 * counters.
516f2699491SMichael Ellerman 	 */
517f2699491SMichael Ellerman 	if (prev > val && (prev - val) < 256)
518f2699491SMichael Ellerman 		delta = 0;
519f2699491SMichael Ellerman 
520f2699491SMichael Ellerman 	return delta;
521f2699491SMichael Ellerman }
522f2699491SMichael Ellerman 
523f2699491SMichael Ellerman static void power_pmu_read(struct perf_event *event)
524f2699491SMichael Ellerman {
525f2699491SMichael Ellerman 	s64 val, delta, prev;
526f2699491SMichael Ellerman 
527f2699491SMichael Ellerman 	if (event->hw.state & PERF_HES_STOPPED)
528f2699491SMichael Ellerman 		return;
529f2699491SMichael Ellerman 
530f2699491SMichael Ellerman 	if (!event->hw.idx)
531f2699491SMichael Ellerman 		return;
532f2699491SMichael Ellerman 	/*
533f2699491SMichael Ellerman 	 * Performance monitor interrupts come even when interrupts
534f2699491SMichael Ellerman 	 * are soft-disabled, as long as interrupts are hard-enabled.
535f2699491SMichael Ellerman 	 * Therefore we treat them like NMIs.
536f2699491SMichael Ellerman 	 */
537f2699491SMichael Ellerman 	do {
538f2699491SMichael Ellerman 		prev = local64_read(&event->hw.prev_count);
539f2699491SMichael Ellerman 		barrier();
540f2699491SMichael Ellerman 		val = read_pmc(event->hw.idx);
541f2699491SMichael Ellerman 		delta = check_and_compute_delta(prev, val);
542f2699491SMichael Ellerman 		if (!delta)
543f2699491SMichael Ellerman 			return;
544f2699491SMichael Ellerman 	} while (local64_cmpxchg(&event->hw.prev_count, prev, val) != prev);
545f2699491SMichael Ellerman 
546f2699491SMichael Ellerman 	local64_add(delta, &event->count);
547f2699491SMichael Ellerman 	local64_sub(delta, &event->hw.period_left);
548f2699491SMichael Ellerman }
549f2699491SMichael Ellerman 
550f2699491SMichael Ellerman /*
551f2699491SMichael Ellerman  * On some machines, PMC5 and PMC6 can't be written, don't respect
552f2699491SMichael Ellerman  * the freeze conditions, and don't generate interrupts.  This tells
553f2699491SMichael Ellerman  * us if `event' is using such a PMC.
554f2699491SMichael Ellerman  */
555f2699491SMichael Ellerman static int is_limited_pmc(int pmcnum)
556f2699491SMichael Ellerman {
557f2699491SMichael Ellerman 	return (ppmu->flags & PPMU_LIMITED_PMC5_6)
558f2699491SMichael Ellerman 		&& (pmcnum == 5 || pmcnum == 6);
559f2699491SMichael Ellerman }
560f2699491SMichael Ellerman 
561f2699491SMichael Ellerman static void freeze_limited_counters(struct cpu_hw_events *cpuhw,
562f2699491SMichael Ellerman 				    unsigned long pmc5, unsigned long pmc6)
563f2699491SMichael Ellerman {
564f2699491SMichael Ellerman 	struct perf_event *event;
565f2699491SMichael Ellerman 	u64 val, prev, delta;
566f2699491SMichael Ellerman 	int i;
567f2699491SMichael Ellerman 
568f2699491SMichael Ellerman 	for (i = 0; i < cpuhw->n_limited; ++i) {
569f2699491SMichael Ellerman 		event = cpuhw->limited_counter[i];
570f2699491SMichael Ellerman 		if (!event->hw.idx)
571f2699491SMichael Ellerman 			continue;
572f2699491SMichael Ellerman 		val = (event->hw.idx == 5) ? pmc5 : pmc6;
573f2699491SMichael Ellerman 		prev = local64_read(&event->hw.prev_count);
574f2699491SMichael Ellerman 		event->hw.idx = 0;
575f2699491SMichael Ellerman 		delta = check_and_compute_delta(prev, val);
576f2699491SMichael Ellerman 		if (delta)
577f2699491SMichael Ellerman 			local64_add(delta, &event->count);
578f2699491SMichael Ellerman 	}
579f2699491SMichael Ellerman }
580f2699491SMichael Ellerman 
581f2699491SMichael Ellerman static void thaw_limited_counters(struct cpu_hw_events *cpuhw,
582f2699491SMichael Ellerman 				  unsigned long pmc5, unsigned long pmc6)
583f2699491SMichael Ellerman {
584f2699491SMichael Ellerman 	struct perf_event *event;
585f2699491SMichael Ellerman 	u64 val, prev;
586f2699491SMichael Ellerman 	int i;
587f2699491SMichael Ellerman 
588f2699491SMichael Ellerman 	for (i = 0; i < cpuhw->n_limited; ++i) {
589f2699491SMichael Ellerman 		event = cpuhw->limited_counter[i];
590f2699491SMichael Ellerman 		event->hw.idx = cpuhw->limited_hwidx[i];
591f2699491SMichael Ellerman 		val = (event->hw.idx == 5) ? pmc5 : pmc6;
592f2699491SMichael Ellerman 		prev = local64_read(&event->hw.prev_count);
593f2699491SMichael Ellerman 		if (check_and_compute_delta(prev, val))
594f2699491SMichael Ellerman 			local64_set(&event->hw.prev_count, val);
595f2699491SMichael Ellerman 		perf_event_update_userpage(event);
596f2699491SMichael Ellerman 	}
597f2699491SMichael Ellerman }
598f2699491SMichael Ellerman 
599f2699491SMichael Ellerman /*
600f2699491SMichael Ellerman  * Since limited events don't respect the freeze conditions, we
601f2699491SMichael Ellerman  * have to read them immediately after freezing or unfreezing the
602f2699491SMichael Ellerman  * other events.  We try to keep the values from the limited
603f2699491SMichael Ellerman  * events as consistent as possible by keeping the delay (in
604f2699491SMichael Ellerman  * cycles and instructions) between freezing/unfreezing and reading
605f2699491SMichael Ellerman  * the limited events as small and consistent as possible.
606f2699491SMichael Ellerman  * Therefore, if any limited events are in use, we read them
607f2699491SMichael Ellerman  * both, and always in the same order, to minimize variability,
608f2699491SMichael Ellerman  * and do it inside the same asm that writes MMCR0.
609f2699491SMichael Ellerman  */
610f2699491SMichael Ellerman static void write_mmcr0(struct cpu_hw_events *cpuhw, unsigned long mmcr0)
611f2699491SMichael Ellerman {
612f2699491SMichael Ellerman 	unsigned long pmc5, pmc6;
613f2699491SMichael Ellerman 
614f2699491SMichael Ellerman 	if (!cpuhw->n_limited) {
615f2699491SMichael Ellerman 		mtspr(SPRN_MMCR0, mmcr0);
616f2699491SMichael Ellerman 		return;
617f2699491SMichael Ellerman 	}
618f2699491SMichael Ellerman 
619f2699491SMichael Ellerman 	/*
620f2699491SMichael Ellerman 	 * Write MMCR0, then read PMC5 and PMC6 immediately.
621f2699491SMichael Ellerman 	 * To ensure we don't get a performance monitor interrupt
622f2699491SMichael Ellerman 	 * between writing MMCR0 and freezing/thawing the limited
623f2699491SMichael Ellerman 	 * events, we first write MMCR0 with the event overflow
624f2699491SMichael Ellerman 	 * interrupt enable bits turned off.
625f2699491SMichael Ellerman 	 */
626f2699491SMichael Ellerman 	asm volatile("mtspr %3,%2; mfspr %0,%4; mfspr %1,%5"
627f2699491SMichael Ellerman 		     : "=&r" (pmc5), "=&r" (pmc6)
628f2699491SMichael Ellerman 		     : "r" (mmcr0 & ~(MMCR0_PMC1CE | MMCR0_PMCjCE)),
629f2699491SMichael Ellerman 		       "i" (SPRN_MMCR0),
630f2699491SMichael Ellerman 		       "i" (SPRN_PMC5), "i" (SPRN_PMC6));
631f2699491SMichael Ellerman 
632f2699491SMichael Ellerman 	if (mmcr0 & MMCR0_FC)
633f2699491SMichael Ellerman 		freeze_limited_counters(cpuhw, pmc5, pmc6);
634f2699491SMichael Ellerman 	else
635f2699491SMichael Ellerman 		thaw_limited_counters(cpuhw, pmc5, pmc6);
636f2699491SMichael Ellerman 
637f2699491SMichael Ellerman 	/*
638f2699491SMichael Ellerman 	 * Write the full MMCR0 including the event overflow interrupt
639f2699491SMichael Ellerman 	 * enable bits, if necessary.
640f2699491SMichael Ellerman 	 */
641f2699491SMichael Ellerman 	if (mmcr0 & (MMCR0_PMC1CE | MMCR0_PMCjCE))
642f2699491SMichael Ellerman 		mtspr(SPRN_MMCR0, mmcr0);
643f2699491SMichael Ellerman }
644f2699491SMichael Ellerman 
645f2699491SMichael Ellerman /*
646f2699491SMichael Ellerman  * Disable all events to prevent PMU interrupts and to allow
647f2699491SMichael Ellerman  * events to be added or removed.
648f2699491SMichael Ellerman  */
649f2699491SMichael Ellerman static void power_pmu_disable(struct pmu *pmu)
650f2699491SMichael Ellerman {
651f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw;
652f2699491SMichael Ellerman 	unsigned long flags;
653f2699491SMichael Ellerman 
654f2699491SMichael Ellerman 	if (!ppmu)
655f2699491SMichael Ellerman 		return;
656f2699491SMichael Ellerman 	local_irq_save(flags);
657f2699491SMichael Ellerman 	cpuhw = &__get_cpu_var(cpu_hw_events);
658f2699491SMichael Ellerman 
659f2699491SMichael Ellerman 	if (!cpuhw->disabled) {
660f2699491SMichael Ellerman 		cpuhw->disabled = 1;
661f2699491SMichael Ellerman 		cpuhw->n_added = 0;
662f2699491SMichael Ellerman 
663f2699491SMichael Ellerman 		/*
664f2699491SMichael Ellerman 		 * Check if we ever enabled the PMU on this cpu.
665f2699491SMichael Ellerman 		 */
666f2699491SMichael Ellerman 		if (!cpuhw->pmcs_enabled) {
667f2699491SMichael Ellerman 			ppc_enable_pmcs();
668f2699491SMichael Ellerman 			cpuhw->pmcs_enabled = 1;
669f2699491SMichael Ellerman 		}
670f2699491SMichael Ellerman 
671f2699491SMichael Ellerman 		/*
672f2699491SMichael Ellerman 		 * Disable instruction sampling if it was enabled
673f2699491SMichael Ellerman 		 */
674f2699491SMichael Ellerman 		if (cpuhw->mmcr[2] & MMCRA_SAMPLE_ENABLE) {
675f2699491SMichael Ellerman 			mtspr(SPRN_MMCRA,
676f2699491SMichael Ellerman 			      cpuhw->mmcr[2] & ~MMCRA_SAMPLE_ENABLE);
677f2699491SMichael Ellerman 			mb();
678f2699491SMichael Ellerman 		}
679f2699491SMichael Ellerman 
680f2699491SMichael Ellerman 		/*
681f2699491SMichael Ellerman 		 * Set the 'freeze counters' bit.
682f2699491SMichael Ellerman 		 * The barrier is to make sure the mtspr has been
683f2699491SMichael Ellerman 		 * executed and the PMU has frozen the events
684f2699491SMichael Ellerman 		 * before we return.
685f2699491SMichael Ellerman 		 */
686f2699491SMichael Ellerman 		write_mmcr0(cpuhw, mfspr(SPRN_MMCR0) | MMCR0_FC);
687f2699491SMichael Ellerman 		mb();
688f2699491SMichael Ellerman 	}
689f2699491SMichael Ellerman 	local_irq_restore(flags);
690f2699491SMichael Ellerman }
691f2699491SMichael Ellerman 
692f2699491SMichael Ellerman /*
693f2699491SMichael Ellerman  * Re-enable all events if disable == 0.
694f2699491SMichael Ellerman  * If we were previously disabled and events were added, then
695f2699491SMichael Ellerman  * put the new config on the PMU.
696f2699491SMichael Ellerman  */
697f2699491SMichael Ellerman static void power_pmu_enable(struct pmu *pmu)
698f2699491SMichael Ellerman {
699f2699491SMichael Ellerman 	struct perf_event *event;
700f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw;
701f2699491SMichael Ellerman 	unsigned long flags;
702f2699491SMichael Ellerman 	long i;
703f2699491SMichael Ellerman 	unsigned long val;
704f2699491SMichael Ellerman 	s64 left;
705f2699491SMichael Ellerman 	unsigned int hwc_index[MAX_HWEVENTS];
706f2699491SMichael Ellerman 	int n_lim;
707f2699491SMichael Ellerman 	int idx;
708f2699491SMichael Ellerman 
709f2699491SMichael Ellerman 	if (!ppmu)
710f2699491SMichael Ellerman 		return;
711f2699491SMichael Ellerman 	local_irq_save(flags);
712f2699491SMichael Ellerman 	cpuhw = &__get_cpu_var(cpu_hw_events);
713f2699491SMichael Ellerman 	if (!cpuhw->disabled) {
714f2699491SMichael Ellerman 		local_irq_restore(flags);
715f2699491SMichael Ellerman 		return;
716f2699491SMichael Ellerman 	}
717f2699491SMichael Ellerman 	cpuhw->disabled = 0;
718f2699491SMichael Ellerman 
719f2699491SMichael Ellerman 	/*
720f2699491SMichael Ellerman 	 * If we didn't change anything, or only removed events,
721f2699491SMichael Ellerman 	 * no need to recalculate MMCR* settings and reset the PMCs.
722f2699491SMichael Ellerman 	 * Just reenable the PMU with the current MMCR* settings
723f2699491SMichael Ellerman 	 * (possibly updated for removal of events).
724f2699491SMichael Ellerman 	 */
725f2699491SMichael Ellerman 	if (!cpuhw->n_added) {
726f2699491SMichael Ellerman 		mtspr(SPRN_MMCRA, cpuhw->mmcr[2] & ~MMCRA_SAMPLE_ENABLE);
727f2699491SMichael Ellerman 		mtspr(SPRN_MMCR1, cpuhw->mmcr[1]);
728f2699491SMichael Ellerman 		if (cpuhw->n_events == 0)
729f2699491SMichael Ellerman 			ppc_set_pmu_inuse(0);
730f2699491SMichael Ellerman 		goto out_enable;
731f2699491SMichael Ellerman 	}
732f2699491SMichael Ellerman 
733f2699491SMichael Ellerman 	/*
734f2699491SMichael Ellerman 	 * Compute MMCR* values for the new set of events
735f2699491SMichael Ellerman 	 */
736f2699491SMichael Ellerman 	if (ppmu->compute_mmcr(cpuhw->events, cpuhw->n_events, hwc_index,
737f2699491SMichael Ellerman 			       cpuhw->mmcr)) {
738f2699491SMichael Ellerman 		/* shouldn't ever get here */
739f2699491SMichael Ellerman 		printk(KERN_ERR "oops compute_mmcr failed\n");
740f2699491SMichael Ellerman 		goto out;
741f2699491SMichael Ellerman 	}
742f2699491SMichael Ellerman 
743f2699491SMichael Ellerman 	/*
744f2699491SMichael Ellerman 	 * Add in MMCR0 freeze bits corresponding to the
745f2699491SMichael Ellerman 	 * attr.exclude_* bits for the first event.
746f2699491SMichael Ellerman 	 * We have already checked that all events have the
747f2699491SMichael Ellerman 	 * same values for these bits as the first event.
748f2699491SMichael Ellerman 	 */
749f2699491SMichael Ellerman 	event = cpuhw->event[0];
750f2699491SMichael Ellerman 	if (event->attr.exclude_user)
751f2699491SMichael Ellerman 		cpuhw->mmcr[0] |= MMCR0_FCP;
752f2699491SMichael Ellerman 	if (event->attr.exclude_kernel)
753f2699491SMichael Ellerman 		cpuhw->mmcr[0] |= freeze_events_kernel;
754f2699491SMichael Ellerman 	if (event->attr.exclude_hv)
755f2699491SMichael Ellerman 		cpuhw->mmcr[0] |= MMCR0_FCHV;
756f2699491SMichael Ellerman 
757f2699491SMichael Ellerman 	/*
758f2699491SMichael Ellerman 	 * Write the new configuration to MMCR* with the freeze
759f2699491SMichael Ellerman 	 * bit set and set the hardware events to their initial values.
760f2699491SMichael Ellerman 	 * Then unfreeze the events.
761f2699491SMichael Ellerman 	 */
762f2699491SMichael Ellerman 	ppc_set_pmu_inuse(1);
763f2699491SMichael Ellerman 	mtspr(SPRN_MMCRA, cpuhw->mmcr[2] & ~MMCRA_SAMPLE_ENABLE);
764f2699491SMichael Ellerman 	mtspr(SPRN_MMCR1, cpuhw->mmcr[1]);
765f2699491SMichael Ellerman 	mtspr(SPRN_MMCR0, (cpuhw->mmcr[0] & ~(MMCR0_PMC1CE | MMCR0_PMCjCE))
766f2699491SMichael Ellerman 				| MMCR0_FC);
767f2699491SMichael Ellerman 
768f2699491SMichael Ellerman 	/*
769f2699491SMichael Ellerman 	 * Read off any pre-existing events that need to move
770f2699491SMichael Ellerman 	 * to another PMC.
771f2699491SMichael Ellerman 	 */
772f2699491SMichael Ellerman 	for (i = 0; i < cpuhw->n_events; ++i) {
773f2699491SMichael Ellerman 		event = cpuhw->event[i];
774f2699491SMichael Ellerman 		if (event->hw.idx && event->hw.idx != hwc_index[i] + 1) {
775f2699491SMichael Ellerman 			power_pmu_read(event);
776f2699491SMichael Ellerman 			write_pmc(event->hw.idx, 0);
777f2699491SMichael Ellerman 			event->hw.idx = 0;
778f2699491SMichael Ellerman 		}
779f2699491SMichael Ellerman 	}
780f2699491SMichael Ellerman 
781f2699491SMichael Ellerman 	/*
782f2699491SMichael Ellerman 	 * Initialize the PMCs for all the new and moved events.
783f2699491SMichael Ellerman 	 */
784f2699491SMichael Ellerman 	cpuhw->n_limited = n_lim = 0;
785f2699491SMichael Ellerman 	for (i = 0; i < cpuhw->n_events; ++i) {
786f2699491SMichael Ellerman 		event = cpuhw->event[i];
787f2699491SMichael Ellerman 		if (event->hw.idx)
788f2699491SMichael Ellerman 			continue;
789f2699491SMichael Ellerman 		idx = hwc_index[i] + 1;
790f2699491SMichael Ellerman 		if (is_limited_pmc(idx)) {
791f2699491SMichael Ellerman 			cpuhw->limited_counter[n_lim] = event;
792f2699491SMichael Ellerman 			cpuhw->limited_hwidx[n_lim] = idx;
793f2699491SMichael Ellerman 			++n_lim;
794f2699491SMichael Ellerman 			continue;
795f2699491SMichael Ellerman 		}
796f2699491SMichael Ellerman 		val = 0;
797f2699491SMichael Ellerman 		if (event->hw.sample_period) {
798f2699491SMichael Ellerman 			left = local64_read(&event->hw.period_left);
799f2699491SMichael Ellerman 			if (left < 0x80000000L)
800f2699491SMichael Ellerman 				val = 0x80000000L - left;
801f2699491SMichael Ellerman 		}
802f2699491SMichael Ellerman 		local64_set(&event->hw.prev_count, val);
803f2699491SMichael Ellerman 		event->hw.idx = idx;
804f2699491SMichael Ellerman 		if (event->hw.state & PERF_HES_STOPPED)
805f2699491SMichael Ellerman 			val = 0;
806f2699491SMichael Ellerman 		write_pmc(idx, val);
807f2699491SMichael Ellerman 		perf_event_update_userpage(event);
808f2699491SMichael Ellerman 	}
809f2699491SMichael Ellerman 	cpuhw->n_limited = n_lim;
810f2699491SMichael Ellerman 	cpuhw->mmcr[0] |= MMCR0_PMXE | MMCR0_FCECE;
811f2699491SMichael Ellerman 
812f2699491SMichael Ellerman  out_enable:
813f2699491SMichael Ellerman 	mb();
814f2699491SMichael Ellerman 	write_mmcr0(cpuhw, cpuhw->mmcr[0]);
815f2699491SMichael Ellerman 
816f2699491SMichael Ellerman 	/*
817f2699491SMichael Ellerman 	 * Enable instruction sampling if necessary
818f2699491SMichael Ellerman 	 */
819f2699491SMichael Ellerman 	if (cpuhw->mmcr[2] & MMCRA_SAMPLE_ENABLE) {
820f2699491SMichael Ellerman 		mb();
821f2699491SMichael Ellerman 		mtspr(SPRN_MMCRA, cpuhw->mmcr[2]);
822f2699491SMichael Ellerman 	}
823f2699491SMichael Ellerman 
824f2699491SMichael Ellerman  out:
825f2699491SMichael Ellerman 	local_irq_restore(flags);
826f2699491SMichael Ellerman }
827f2699491SMichael Ellerman 
828f2699491SMichael Ellerman static int collect_events(struct perf_event *group, int max_count,
829f2699491SMichael Ellerman 			  struct perf_event *ctrs[], u64 *events,
830f2699491SMichael Ellerman 			  unsigned int *flags)
831f2699491SMichael Ellerman {
832f2699491SMichael Ellerman 	int n = 0;
833f2699491SMichael Ellerman 	struct perf_event *event;
834f2699491SMichael Ellerman 
835f2699491SMichael Ellerman 	if (!is_software_event(group)) {
836f2699491SMichael Ellerman 		if (n >= max_count)
837f2699491SMichael Ellerman 			return -1;
838f2699491SMichael Ellerman 		ctrs[n] = group;
839f2699491SMichael Ellerman 		flags[n] = group->hw.event_base;
840f2699491SMichael Ellerman 		events[n++] = group->hw.config;
841f2699491SMichael Ellerman 	}
842f2699491SMichael Ellerman 	list_for_each_entry(event, &group->sibling_list, group_entry) {
843f2699491SMichael Ellerman 		if (!is_software_event(event) &&
844f2699491SMichael Ellerman 		    event->state != PERF_EVENT_STATE_OFF) {
845f2699491SMichael Ellerman 			if (n >= max_count)
846f2699491SMichael Ellerman 				return -1;
847f2699491SMichael Ellerman 			ctrs[n] = event;
848f2699491SMichael Ellerman 			flags[n] = event->hw.event_base;
849f2699491SMichael Ellerman 			events[n++] = event->hw.config;
850f2699491SMichael Ellerman 		}
851f2699491SMichael Ellerman 	}
852f2699491SMichael Ellerman 	return n;
853f2699491SMichael Ellerman }
854f2699491SMichael Ellerman 
855f2699491SMichael Ellerman /*
856f2699491SMichael Ellerman  * Add a event to the PMU.
857f2699491SMichael Ellerman  * If all events are not already frozen, then we disable and
858f2699491SMichael Ellerman  * re-enable the PMU in order to get hw_perf_enable to do the
859f2699491SMichael Ellerman  * actual work of reconfiguring the PMU.
860f2699491SMichael Ellerman  */
861f2699491SMichael Ellerman static int power_pmu_add(struct perf_event *event, int ef_flags)
862f2699491SMichael Ellerman {
863f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw;
864f2699491SMichael Ellerman 	unsigned long flags;
865f2699491SMichael Ellerman 	int n0;
866f2699491SMichael Ellerman 	int ret = -EAGAIN;
867f2699491SMichael Ellerman 
868f2699491SMichael Ellerman 	local_irq_save(flags);
869f2699491SMichael Ellerman 	perf_pmu_disable(event->pmu);
870f2699491SMichael Ellerman 
871f2699491SMichael Ellerman 	/*
872f2699491SMichael Ellerman 	 * Add the event to the list (if there is room)
873f2699491SMichael Ellerman 	 * and check whether the total set is still feasible.
874f2699491SMichael Ellerman 	 */
875f2699491SMichael Ellerman 	cpuhw = &__get_cpu_var(cpu_hw_events);
876f2699491SMichael Ellerman 	n0 = cpuhw->n_events;
877f2699491SMichael Ellerman 	if (n0 >= ppmu->n_counter)
878f2699491SMichael Ellerman 		goto out;
879f2699491SMichael Ellerman 	cpuhw->event[n0] = event;
880f2699491SMichael Ellerman 	cpuhw->events[n0] = event->hw.config;
881f2699491SMichael Ellerman 	cpuhw->flags[n0] = event->hw.event_base;
882f2699491SMichael Ellerman 
883f2699491SMichael Ellerman 	if (!(ef_flags & PERF_EF_START))
884f2699491SMichael Ellerman 		event->hw.state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
885f2699491SMichael Ellerman 
886f2699491SMichael Ellerman 	/*
887f2699491SMichael Ellerman 	 * If group events scheduling transaction was started,
888f2699491SMichael Ellerman 	 * skip the schedulability test here, it will be performed
889f2699491SMichael Ellerman 	 * at commit time(->commit_txn) as a whole
890f2699491SMichael Ellerman 	 */
891f2699491SMichael Ellerman 	if (cpuhw->group_flag & PERF_EVENT_TXN)
892f2699491SMichael Ellerman 		goto nocheck;
893f2699491SMichael Ellerman 
894f2699491SMichael Ellerman 	if (check_excludes(cpuhw->event, cpuhw->flags, n0, 1))
895f2699491SMichael Ellerman 		goto out;
896f2699491SMichael Ellerman 	if (power_check_constraints(cpuhw, cpuhw->events, cpuhw->flags, n0 + 1))
897f2699491SMichael Ellerman 		goto out;
898f2699491SMichael Ellerman 	event->hw.config = cpuhw->events[n0];
899f2699491SMichael Ellerman 
900f2699491SMichael Ellerman nocheck:
901f2699491SMichael Ellerman 	++cpuhw->n_events;
902f2699491SMichael Ellerman 	++cpuhw->n_added;
903f2699491SMichael Ellerman 
904f2699491SMichael Ellerman 	ret = 0;
905f2699491SMichael Ellerman  out:
906f2699491SMichael Ellerman 	perf_pmu_enable(event->pmu);
907f2699491SMichael Ellerman 	local_irq_restore(flags);
908f2699491SMichael Ellerman 	return ret;
909f2699491SMichael Ellerman }
910f2699491SMichael Ellerman 
911f2699491SMichael Ellerman /*
912f2699491SMichael Ellerman  * Remove a event from the PMU.
913f2699491SMichael Ellerman  */
914f2699491SMichael Ellerman static void power_pmu_del(struct perf_event *event, int ef_flags)
915f2699491SMichael Ellerman {
916f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw;
917f2699491SMichael Ellerman 	long i;
918f2699491SMichael Ellerman 	unsigned long flags;
919f2699491SMichael Ellerman 
920f2699491SMichael Ellerman 	local_irq_save(flags);
921f2699491SMichael Ellerman 	perf_pmu_disable(event->pmu);
922f2699491SMichael Ellerman 
923f2699491SMichael Ellerman 	power_pmu_read(event);
924f2699491SMichael Ellerman 
925f2699491SMichael Ellerman 	cpuhw = &__get_cpu_var(cpu_hw_events);
926f2699491SMichael Ellerman 	for (i = 0; i < cpuhw->n_events; ++i) {
927f2699491SMichael Ellerman 		if (event == cpuhw->event[i]) {
928f2699491SMichael Ellerman 			while (++i < cpuhw->n_events) {
929f2699491SMichael Ellerman 				cpuhw->event[i-1] = cpuhw->event[i];
930f2699491SMichael Ellerman 				cpuhw->events[i-1] = cpuhw->events[i];
931f2699491SMichael Ellerman 				cpuhw->flags[i-1] = cpuhw->flags[i];
932f2699491SMichael Ellerman 			}
933f2699491SMichael Ellerman 			--cpuhw->n_events;
934f2699491SMichael Ellerman 			ppmu->disable_pmc(event->hw.idx - 1, cpuhw->mmcr);
935f2699491SMichael Ellerman 			if (event->hw.idx) {
936f2699491SMichael Ellerman 				write_pmc(event->hw.idx, 0);
937f2699491SMichael Ellerman 				event->hw.idx = 0;
938f2699491SMichael Ellerman 			}
939f2699491SMichael Ellerman 			perf_event_update_userpage(event);
940f2699491SMichael Ellerman 			break;
941f2699491SMichael Ellerman 		}
942f2699491SMichael Ellerman 	}
943f2699491SMichael Ellerman 	for (i = 0; i < cpuhw->n_limited; ++i)
944f2699491SMichael Ellerman 		if (event == cpuhw->limited_counter[i])
945f2699491SMichael Ellerman 			break;
946f2699491SMichael Ellerman 	if (i < cpuhw->n_limited) {
947f2699491SMichael Ellerman 		while (++i < cpuhw->n_limited) {
948f2699491SMichael Ellerman 			cpuhw->limited_counter[i-1] = cpuhw->limited_counter[i];
949f2699491SMichael Ellerman 			cpuhw->limited_hwidx[i-1] = cpuhw->limited_hwidx[i];
950f2699491SMichael Ellerman 		}
951f2699491SMichael Ellerman 		--cpuhw->n_limited;
952f2699491SMichael Ellerman 	}
953f2699491SMichael Ellerman 	if (cpuhw->n_events == 0) {
954f2699491SMichael Ellerman 		/* disable exceptions if no events are running */
955f2699491SMichael Ellerman 		cpuhw->mmcr[0] &= ~(MMCR0_PMXE | MMCR0_FCECE);
956f2699491SMichael Ellerman 	}
957f2699491SMichael Ellerman 
958f2699491SMichael Ellerman 	perf_pmu_enable(event->pmu);
959f2699491SMichael Ellerman 	local_irq_restore(flags);
960f2699491SMichael Ellerman }
961f2699491SMichael Ellerman 
962f2699491SMichael Ellerman /*
963f2699491SMichael Ellerman  * POWER-PMU does not support disabling individual counters, hence
964f2699491SMichael Ellerman  * program their cycle counter to their max value and ignore the interrupts.
965f2699491SMichael Ellerman  */
966f2699491SMichael Ellerman 
967f2699491SMichael Ellerman static void power_pmu_start(struct perf_event *event, int ef_flags)
968f2699491SMichael Ellerman {
969f2699491SMichael Ellerman 	unsigned long flags;
970f2699491SMichael Ellerman 	s64 left;
971f2699491SMichael Ellerman 	unsigned long val;
972f2699491SMichael Ellerman 
973f2699491SMichael Ellerman 	if (!event->hw.idx || !event->hw.sample_period)
974f2699491SMichael Ellerman 		return;
975f2699491SMichael Ellerman 
976f2699491SMichael Ellerman 	if (!(event->hw.state & PERF_HES_STOPPED))
977f2699491SMichael Ellerman 		return;
978f2699491SMichael Ellerman 
979f2699491SMichael Ellerman 	if (ef_flags & PERF_EF_RELOAD)
980f2699491SMichael Ellerman 		WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
981f2699491SMichael Ellerman 
982f2699491SMichael Ellerman 	local_irq_save(flags);
983f2699491SMichael Ellerman 	perf_pmu_disable(event->pmu);
984f2699491SMichael Ellerman 
985f2699491SMichael Ellerman 	event->hw.state = 0;
986f2699491SMichael Ellerman 	left = local64_read(&event->hw.period_left);
987f2699491SMichael Ellerman 
988f2699491SMichael Ellerman 	val = 0;
989f2699491SMichael Ellerman 	if (left < 0x80000000L)
990f2699491SMichael Ellerman 		val = 0x80000000L - left;
991f2699491SMichael Ellerman 
992f2699491SMichael Ellerman 	write_pmc(event->hw.idx, val);
993f2699491SMichael Ellerman 
994f2699491SMichael Ellerman 	perf_event_update_userpage(event);
995f2699491SMichael Ellerman 	perf_pmu_enable(event->pmu);
996f2699491SMichael Ellerman 	local_irq_restore(flags);
997f2699491SMichael Ellerman }
998f2699491SMichael Ellerman 
999f2699491SMichael Ellerman static void power_pmu_stop(struct perf_event *event, int ef_flags)
1000f2699491SMichael Ellerman {
1001f2699491SMichael Ellerman 	unsigned long flags;
1002f2699491SMichael Ellerman 
1003f2699491SMichael Ellerman 	if (!event->hw.idx || !event->hw.sample_period)
1004f2699491SMichael Ellerman 		return;
1005f2699491SMichael Ellerman 
1006f2699491SMichael Ellerman 	if (event->hw.state & PERF_HES_STOPPED)
1007f2699491SMichael Ellerman 		return;
1008f2699491SMichael Ellerman 
1009f2699491SMichael Ellerman 	local_irq_save(flags);
1010f2699491SMichael Ellerman 	perf_pmu_disable(event->pmu);
1011f2699491SMichael Ellerman 
1012f2699491SMichael Ellerman 	power_pmu_read(event);
1013f2699491SMichael Ellerman 	event->hw.state |= PERF_HES_STOPPED | PERF_HES_UPTODATE;
1014f2699491SMichael Ellerman 	write_pmc(event->hw.idx, 0);
1015f2699491SMichael Ellerman 
1016f2699491SMichael Ellerman 	perf_event_update_userpage(event);
1017f2699491SMichael Ellerman 	perf_pmu_enable(event->pmu);
1018f2699491SMichael Ellerman 	local_irq_restore(flags);
1019f2699491SMichael Ellerman }
1020f2699491SMichael Ellerman 
1021f2699491SMichael Ellerman /*
1022f2699491SMichael Ellerman  * Start group events scheduling transaction
1023f2699491SMichael Ellerman  * Set the flag to make pmu::enable() not perform the
1024f2699491SMichael Ellerman  * schedulability test, it will be performed at commit time
1025f2699491SMichael Ellerman  */
1026f2699491SMichael Ellerman void power_pmu_start_txn(struct pmu *pmu)
1027f2699491SMichael Ellerman {
1028f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw = &__get_cpu_var(cpu_hw_events);
1029f2699491SMichael Ellerman 
1030f2699491SMichael Ellerman 	perf_pmu_disable(pmu);
1031f2699491SMichael Ellerman 	cpuhw->group_flag |= PERF_EVENT_TXN;
1032f2699491SMichael Ellerman 	cpuhw->n_txn_start = cpuhw->n_events;
1033f2699491SMichael Ellerman }
1034f2699491SMichael Ellerman 
1035f2699491SMichael Ellerman /*
1036f2699491SMichael Ellerman  * Stop group events scheduling transaction
1037f2699491SMichael Ellerman  * Clear the flag and pmu::enable() will perform the
1038f2699491SMichael Ellerman  * schedulability test.
1039f2699491SMichael Ellerman  */
1040f2699491SMichael Ellerman void power_pmu_cancel_txn(struct pmu *pmu)
1041f2699491SMichael Ellerman {
1042f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw = &__get_cpu_var(cpu_hw_events);
1043f2699491SMichael Ellerman 
1044f2699491SMichael Ellerman 	cpuhw->group_flag &= ~PERF_EVENT_TXN;
1045f2699491SMichael Ellerman 	perf_pmu_enable(pmu);
1046f2699491SMichael Ellerman }
1047f2699491SMichael Ellerman 
1048f2699491SMichael Ellerman /*
1049f2699491SMichael Ellerman  * Commit group events scheduling transaction
1050f2699491SMichael Ellerman  * Perform the group schedulability test as a whole
1051f2699491SMichael Ellerman  * Return 0 if success
1052f2699491SMichael Ellerman  */
1053f2699491SMichael Ellerman int power_pmu_commit_txn(struct pmu *pmu)
1054f2699491SMichael Ellerman {
1055f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw;
1056f2699491SMichael Ellerman 	long i, n;
1057f2699491SMichael Ellerman 
1058f2699491SMichael Ellerman 	if (!ppmu)
1059f2699491SMichael Ellerman 		return -EAGAIN;
1060f2699491SMichael Ellerman 	cpuhw = &__get_cpu_var(cpu_hw_events);
1061f2699491SMichael Ellerman 	n = cpuhw->n_events;
1062f2699491SMichael Ellerman 	if (check_excludes(cpuhw->event, cpuhw->flags, 0, n))
1063f2699491SMichael Ellerman 		return -EAGAIN;
1064f2699491SMichael Ellerman 	i = power_check_constraints(cpuhw, cpuhw->events, cpuhw->flags, n);
1065f2699491SMichael Ellerman 	if (i < 0)
1066f2699491SMichael Ellerman 		return -EAGAIN;
1067f2699491SMichael Ellerman 
1068f2699491SMichael Ellerman 	for (i = cpuhw->n_txn_start; i < n; ++i)
1069f2699491SMichael Ellerman 		cpuhw->event[i]->hw.config = cpuhw->events[i];
1070f2699491SMichael Ellerman 
1071f2699491SMichael Ellerman 	cpuhw->group_flag &= ~PERF_EVENT_TXN;
1072f2699491SMichael Ellerman 	perf_pmu_enable(pmu);
1073f2699491SMichael Ellerman 	return 0;
1074f2699491SMichael Ellerman }
1075f2699491SMichael Ellerman 
1076f2699491SMichael Ellerman /*
1077f2699491SMichael Ellerman  * Return 1 if we might be able to put event on a limited PMC,
1078f2699491SMichael Ellerman  * or 0 if not.
1079f2699491SMichael Ellerman  * A event can only go on a limited PMC if it counts something
1080f2699491SMichael Ellerman  * that a limited PMC can count, doesn't require interrupts, and
1081f2699491SMichael Ellerman  * doesn't exclude any processor mode.
1082f2699491SMichael Ellerman  */
1083f2699491SMichael Ellerman static int can_go_on_limited_pmc(struct perf_event *event, u64 ev,
1084f2699491SMichael Ellerman 				 unsigned int flags)
1085f2699491SMichael Ellerman {
1086f2699491SMichael Ellerman 	int n;
1087f2699491SMichael Ellerman 	u64 alt[MAX_EVENT_ALTERNATIVES];
1088f2699491SMichael Ellerman 
1089f2699491SMichael Ellerman 	if (event->attr.exclude_user
1090f2699491SMichael Ellerman 	    || event->attr.exclude_kernel
1091f2699491SMichael Ellerman 	    || event->attr.exclude_hv
1092f2699491SMichael Ellerman 	    || event->attr.sample_period)
1093f2699491SMichael Ellerman 		return 0;
1094f2699491SMichael Ellerman 
1095f2699491SMichael Ellerman 	if (ppmu->limited_pmc_event(ev))
1096f2699491SMichael Ellerman 		return 1;
1097f2699491SMichael Ellerman 
1098f2699491SMichael Ellerman 	/*
1099f2699491SMichael Ellerman 	 * The requested event_id isn't on a limited PMC already;
1100f2699491SMichael Ellerman 	 * see if any alternative code goes on a limited PMC.
1101f2699491SMichael Ellerman 	 */
1102f2699491SMichael Ellerman 	if (!ppmu->get_alternatives)
1103f2699491SMichael Ellerman 		return 0;
1104f2699491SMichael Ellerman 
1105f2699491SMichael Ellerman 	flags |= PPMU_LIMITED_PMC_OK | PPMU_LIMITED_PMC_REQD;
1106f2699491SMichael Ellerman 	n = ppmu->get_alternatives(ev, flags, alt);
1107f2699491SMichael Ellerman 
1108f2699491SMichael Ellerman 	return n > 0;
1109f2699491SMichael Ellerman }
1110f2699491SMichael Ellerman 
1111f2699491SMichael Ellerman /*
1112f2699491SMichael Ellerman  * Find an alternative event_id that goes on a normal PMC, if possible,
1113f2699491SMichael Ellerman  * and return the event_id code, or 0 if there is no such alternative.
1114f2699491SMichael Ellerman  * (Note: event_id code 0 is "don't count" on all machines.)
1115f2699491SMichael Ellerman  */
1116f2699491SMichael Ellerman static u64 normal_pmc_alternative(u64 ev, unsigned long flags)
1117f2699491SMichael Ellerman {
1118f2699491SMichael Ellerman 	u64 alt[MAX_EVENT_ALTERNATIVES];
1119f2699491SMichael Ellerman 	int n;
1120f2699491SMichael Ellerman 
1121f2699491SMichael Ellerman 	flags &= ~(PPMU_LIMITED_PMC_OK | PPMU_LIMITED_PMC_REQD);
1122f2699491SMichael Ellerman 	n = ppmu->get_alternatives(ev, flags, alt);
1123f2699491SMichael Ellerman 	if (!n)
1124f2699491SMichael Ellerman 		return 0;
1125f2699491SMichael Ellerman 	return alt[0];
1126f2699491SMichael Ellerman }
1127f2699491SMichael Ellerman 
1128f2699491SMichael Ellerman /* Number of perf_events counting hardware events */
1129f2699491SMichael Ellerman static atomic_t num_events;
1130f2699491SMichael Ellerman /* Used to avoid races in calling reserve/release_pmc_hardware */
1131f2699491SMichael Ellerman static DEFINE_MUTEX(pmc_reserve_mutex);
1132f2699491SMichael Ellerman 
1133f2699491SMichael Ellerman /*
1134f2699491SMichael Ellerman  * Release the PMU if this is the last perf_event.
1135f2699491SMichael Ellerman  */
1136f2699491SMichael Ellerman static void hw_perf_event_destroy(struct perf_event *event)
1137f2699491SMichael Ellerman {
1138f2699491SMichael Ellerman 	if (!atomic_add_unless(&num_events, -1, 1)) {
1139f2699491SMichael Ellerman 		mutex_lock(&pmc_reserve_mutex);
1140f2699491SMichael Ellerman 		if (atomic_dec_return(&num_events) == 0)
1141f2699491SMichael Ellerman 			release_pmc_hardware();
1142f2699491SMichael Ellerman 		mutex_unlock(&pmc_reserve_mutex);
1143f2699491SMichael Ellerman 	}
1144f2699491SMichael Ellerman }
1145f2699491SMichael Ellerman 
1146f2699491SMichael Ellerman /*
1147f2699491SMichael Ellerman  * Translate a generic cache event_id config to a raw event_id code.
1148f2699491SMichael Ellerman  */
1149f2699491SMichael Ellerman static int hw_perf_cache_event(u64 config, u64 *eventp)
1150f2699491SMichael Ellerman {
1151f2699491SMichael Ellerman 	unsigned long type, op, result;
1152f2699491SMichael Ellerman 	int ev;
1153f2699491SMichael Ellerman 
1154f2699491SMichael Ellerman 	if (!ppmu->cache_events)
1155f2699491SMichael Ellerman 		return -EINVAL;
1156f2699491SMichael Ellerman 
1157f2699491SMichael Ellerman 	/* unpack config */
1158f2699491SMichael Ellerman 	type = config & 0xff;
1159f2699491SMichael Ellerman 	op = (config >> 8) & 0xff;
1160f2699491SMichael Ellerman 	result = (config >> 16) & 0xff;
1161f2699491SMichael Ellerman 
1162f2699491SMichael Ellerman 	if (type >= PERF_COUNT_HW_CACHE_MAX ||
1163f2699491SMichael Ellerman 	    op >= PERF_COUNT_HW_CACHE_OP_MAX ||
1164f2699491SMichael Ellerman 	    result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
1165f2699491SMichael Ellerman 		return -EINVAL;
1166f2699491SMichael Ellerman 
1167f2699491SMichael Ellerman 	ev = (*ppmu->cache_events)[type][op][result];
1168f2699491SMichael Ellerman 	if (ev == 0)
1169f2699491SMichael Ellerman 		return -EOPNOTSUPP;
1170f2699491SMichael Ellerman 	if (ev == -1)
1171f2699491SMichael Ellerman 		return -EINVAL;
1172f2699491SMichael Ellerman 	*eventp = ev;
1173f2699491SMichael Ellerman 	return 0;
1174f2699491SMichael Ellerman }
1175f2699491SMichael Ellerman 
1176f2699491SMichael Ellerman static int power_pmu_event_init(struct perf_event *event)
1177f2699491SMichael Ellerman {
1178f2699491SMichael Ellerman 	u64 ev;
1179f2699491SMichael Ellerman 	unsigned long flags;
1180f2699491SMichael Ellerman 	struct perf_event *ctrs[MAX_HWEVENTS];
1181f2699491SMichael Ellerman 	u64 events[MAX_HWEVENTS];
1182f2699491SMichael Ellerman 	unsigned int cflags[MAX_HWEVENTS];
1183f2699491SMichael Ellerman 	int n;
1184f2699491SMichael Ellerman 	int err;
1185f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw;
1186f2699491SMichael Ellerman 
1187f2699491SMichael Ellerman 	if (!ppmu)
1188f2699491SMichael Ellerman 		return -ENOENT;
1189f2699491SMichael Ellerman 
11905375871dSLinus Torvalds 	/* does not support taken branch sampling */
11915375871dSLinus Torvalds 	if (has_branch_stack(event))
11925375871dSLinus Torvalds 		return -EOPNOTSUPP;
11935375871dSLinus Torvalds 
1194f2699491SMichael Ellerman 	switch (event->attr.type) {
1195f2699491SMichael Ellerman 	case PERF_TYPE_HARDWARE:
1196f2699491SMichael Ellerman 		ev = event->attr.config;
1197f2699491SMichael Ellerman 		if (ev >= ppmu->n_generic || ppmu->generic_events[ev] == 0)
1198f2699491SMichael Ellerman 			return -EOPNOTSUPP;
1199f2699491SMichael Ellerman 		ev = ppmu->generic_events[ev];
1200f2699491SMichael Ellerman 		break;
1201f2699491SMichael Ellerman 	case PERF_TYPE_HW_CACHE:
1202f2699491SMichael Ellerman 		err = hw_perf_cache_event(event->attr.config, &ev);
1203f2699491SMichael Ellerman 		if (err)
1204f2699491SMichael Ellerman 			return err;
1205f2699491SMichael Ellerman 		break;
1206f2699491SMichael Ellerman 	case PERF_TYPE_RAW:
1207f2699491SMichael Ellerman 		ev = event->attr.config;
1208f2699491SMichael Ellerman 		break;
1209f2699491SMichael Ellerman 	default:
1210f2699491SMichael Ellerman 		return -ENOENT;
1211f2699491SMichael Ellerman 	}
1212f2699491SMichael Ellerman 
1213f2699491SMichael Ellerman 	event->hw.config_base = ev;
1214f2699491SMichael Ellerman 	event->hw.idx = 0;
1215f2699491SMichael Ellerman 
1216f2699491SMichael Ellerman 	/*
1217f2699491SMichael Ellerman 	 * If we are not running on a hypervisor, force the
1218f2699491SMichael Ellerman 	 * exclude_hv bit to 0 so that we don't care what
1219f2699491SMichael Ellerman 	 * the user set it to.
1220f2699491SMichael Ellerman 	 */
1221f2699491SMichael Ellerman 	if (!firmware_has_feature(FW_FEATURE_LPAR))
1222f2699491SMichael Ellerman 		event->attr.exclude_hv = 0;
1223f2699491SMichael Ellerman 
1224f2699491SMichael Ellerman 	/*
1225f2699491SMichael Ellerman 	 * If this is a per-task event, then we can use
1226f2699491SMichael Ellerman 	 * PM_RUN_* events interchangeably with their non RUN_*
1227f2699491SMichael Ellerman 	 * equivalents, e.g. PM_RUN_CYC instead of PM_CYC.
1228f2699491SMichael Ellerman 	 * XXX we should check if the task is an idle task.
1229f2699491SMichael Ellerman 	 */
1230f2699491SMichael Ellerman 	flags = 0;
1231f2699491SMichael Ellerman 	if (event->attach_state & PERF_ATTACH_TASK)
1232f2699491SMichael Ellerman 		flags |= PPMU_ONLY_COUNT_RUN;
1233f2699491SMichael Ellerman 
1234f2699491SMichael Ellerman 	/*
1235f2699491SMichael Ellerman 	 * If this machine has limited events, check whether this
1236f2699491SMichael Ellerman 	 * event_id could go on a limited event.
1237f2699491SMichael Ellerman 	 */
1238f2699491SMichael Ellerman 	if (ppmu->flags & PPMU_LIMITED_PMC5_6) {
1239f2699491SMichael Ellerman 		if (can_go_on_limited_pmc(event, ev, flags)) {
1240f2699491SMichael Ellerman 			flags |= PPMU_LIMITED_PMC_OK;
1241f2699491SMichael Ellerman 		} else if (ppmu->limited_pmc_event(ev)) {
1242f2699491SMichael Ellerman 			/*
1243f2699491SMichael Ellerman 			 * The requested event_id is on a limited PMC,
1244f2699491SMichael Ellerman 			 * but we can't use a limited PMC; see if any
1245f2699491SMichael Ellerman 			 * alternative goes on a normal PMC.
1246f2699491SMichael Ellerman 			 */
1247f2699491SMichael Ellerman 			ev = normal_pmc_alternative(ev, flags);
1248f2699491SMichael Ellerman 			if (!ev)
1249f2699491SMichael Ellerman 				return -EINVAL;
1250f2699491SMichael Ellerman 		}
1251f2699491SMichael Ellerman 	}
1252f2699491SMichael Ellerman 
1253f2699491SMichael Ellerman 	/*
1254f2699491SMichael Ellerman 	 * If this is in a group, check if it can go on with all the
1255f2699491SMichael Ellerman 	 * other hardware events in the group.  We assume the event
1256f2699491SMichael Ellerman 	 * hasn't been linked into its leader's sibling list at this point.
1257f2699491SMichael Ellerman 	 */
1258f2699491SMichael Ellerman 	n = 0;
1259f2699491SMichael Ellerman 	if (event->group_leader != event) {
1260f2699491SMichael Ellerman 		n = collect_events(event->group_leader, ppmu->n_counter - 1,
1261f2699491SMichael Ellerman 				   ctrs, events, cflags);
1262f2699491SMichael Ellerman 		if (n < 0)
1263f2699491SMichael Ellerman 			return -EINVAL;
1264f2699491SMichael Ellerman 	}
1265f2699491SMichael Ellerman 	events[n] = ev;
1266f2699491SMichael Ellerman 	ctrs[n] = event;
1267f2699491SMichael Ellerman 	cflags[n] = flags;
1268f2699491SMichael Ellerman 	if (check_excludes(ctrs, cflags, n, 1))
1269f2699491SMichael Ellerman 		return -EINVAL;
1270f2699491SMichael Ellerman 
1271f2699491SMichael Ellerman 	cpuhw = &get_cpu_var(cpu_hw_events);
1272f2699491SMichael Ellerman 	err = power_check_constraints(cpuhw, events, cflags, n + 1);
1273f2699491SMichael Ellerman 	put_cpu_var(cpu_hw_events);
1274f2699491SMichael Ellerman 	if (err)
1275f2699491SMichael Ellerman 		return -EINVAL;
1276f2699491SMichael Ellerman 
1277f2699491SMichael Ellerman 	event->hw.config = events[n];
1278f2699491SMichael Ellerman 	event->hw.event_base = cflags[n];
1279f2699491SMichael Ellerman 	event->hw.last_period = event->hw.sample_period;
1280f2699491SMichael Ellerman 	local64_set(&event->hw.period_left, event->hw.last_period);
1281f2699491SMichael Ellerman 
1282f2699491SMichael Ellerman 	/*
1283f2699491SMichael Ellerman 	 * See if we need to reserve the PMU.
1284f2699491SMichael Ellerman 	 * If no events are currently in use, then we have to take a
1285f2699491SMichael Ellerman 	 * mutex to ensure that we don't race with another task doing
1286f2699491SMichael Ellerman 	 * reserve_pmc_hardware or release_pmc_hardware.
1287f2699491SMichael Ellerman 	 */
1288f2699491SMichael Ellerman 	err = 0;
1289f2699491SMichael Ellerman 	if (!atomic_inc_not_zero(&num_events)) {
1290f2699491SMichael Ellerman 		mutex_lock(&pmc_reserve_mutex);
1291f2699491SMichael Ellerman 		if (atomic_read(&num_events) == 0 &&
1292f2699491SMichael Ellerman 		    reserve_pmc_hardware(perf_event_interrupt))
1293f2699491SMichael Ellerman 			err = -EBUSY;
1294f2699491SMichael Ellerman 		else
1295f2699491SMichael Ellerman 			atomic_inc(&num_events);
1296f2699491SMichael Ellerman 		mutex_unlock(&pmc_reserve_mutex);
1297f2699491SMichael Ellerman 	}
1298f2699491SMichael Ellerman 	event->destroy = hw_perf_event_destroy;
1299f2699491SMichael Ellerman 
1300f2699491SMichael Ellerman 	return err;
1301f2699491SMichael Ellerman }
1302f2699491SMichael Ellerman 
13035375871dSLinus Torvalds static int power_pmu_event_idx(struct perf_event *event)
13045375871dSLinus Torvalds {
13055375871dSLinus Torvalds 	return event->hw.idx;
13065375871dSLinus Torvalds }
13075375871dSLinus Torvalds 
1308f2699491SMichael Ellerman struct pmu power_pmu = {
1309f2699491SMichael Ellerman 	.pmu_enable	= power_pmu_enable,
1310f2699491SMichael Ellerman 	.pmu_disable	= power_pmu_disable,
1311f2699491SMichael Ellerman 	.event_init	= power_pmu_event_init,
1312f2699491SMichael Ellerman 	.add		= power_pmu_add,
1313f2699491SMichael Ellerman 	.del		= power_pmu_del,
1314f2699491SMichael Ellerman 	.start		= power_pmu_start,
1315f2699491SMichael Ellerman 	.stop		= power_pmu_stop,
1316f2699491SMichael Ellerman 	.read		= power_pmu_read,
1317f2699491SMichael Ellerman 	.start_txn	= power_pmu_start_txn,
1318f2699491SMichael Ellerman 	.cancel_txn	= power_pmu_cancel_txn,
1319f2699491SMichael Ellerman 	.commit_txn	= power_pmu_commit_txn,
13205375871dSLinus Torvalds 	.event_idx	= power_pmu_event_idx,
1321f2699491SMichael Ellerman };
1322f2699491SMichael Ellerman 
1323e6878835Ssukadev@linux.vnet.ibm.com 
1324f2699491SMichael Ellerman /*
1325f2699491SMichael Ellerman  * A counter has overflowed; update its count and record
1326f2699491SMichael Ellerman  * things if requested.  Note that interrupts are hard-disabled
1327f2699491SMichael Ellerman  * here so there is no possibility of being interrupted.
1328f2699491SMichael Ellerman  */
1329f2699491SMichael Ellerman static void record_and_restart(struct perf_event *event, unsigned long val,
1330f2699491SMichael Ellerman 			       struct pt_regs *regs)
1331f2699491SMichael Ellerman {
1332f2699491SMichael Ellerman 	u64 period = event->hw.sample_period;
1333f2699491SMichael Ellerman 	s64 prev, delta, left;
1334f2699491SMichael Ellerman 	int record = 0;
1335f2699491SMichael Ellerman 
1336f2699491SMichael Ellerman 	if (event->hw.state & PERF_HES_STOPPED) {
1337f2699491SMichael Ellerman 		write_pmc(event->hw.idx, 0);
1338f2699491SMichael Ellerman 		return;
1339f2699491SMichael Ellerman 	}
1340f2699491SMichael Ellerman 
1341f2699491SMichael Ellerman 	/* we don't have to worry about interrupts here */
1342f2699491SMichael Ellerman 	prev = local64_read(&event->hw.prev_count);
1343f2699491SMichael Ellerman 	delta = check_and_compute_delta(prev, val);
1344f2699491SMichael Ellerman 	local64_add(delta, &event->count);
1345f2699491SMichael Ellerman 
1346f2699491SMichael Ellerman 	/*
1347f2699491SMichael Ellerman 	 * See if the total period for this event has expired,
1348f2699491SMichael Ellerman 	 * and update for the next period.
1349f2699491SMichael Ellerman 	 */
1350f2699491SMichael Ellerman 	val = 0;
1351f2699491SMichael Ellerman 	left = local64_read(&event->hw.period_left) - delta;
1352e13e895fSMichael Neuling 	if (delta == 0)
1353e13e895fSMichael Neuling 		left++;
1354f2699491SMichael Ellerman 	if (period) {
1355f2699491SMichael Ellerman 		if (left <= 0) {
1356f2699491SMichael Ellerman 			left += period;
1357f2699491SMichael Ellerman 			if (left <= 0)
1358f2699491SMichael Ellerman 				left = period;
1359e6878835Ssukadev@linux.vnet.ibm.com 			record = siar_valid(regs);
1360f2699491SMichael Ellerman 			event->hw.last_period = event->hw.sample_period;
1361f2699491SMichael Ellerman 		}
1362f2699491SMichael Ellerman 		if (left < 0x80000000LL)
1363f2699491SMichael Ellerman 			val = 0x80000000LL - left;
1364f2699491SMichael Ellerman 	}
1365f2699491SMichael Ellerman 
1366f2699491SMichael Ellerman 	write_pmc(event->hw.idx, val);
1367f2699491SMichael Ellerman 	local64_set(&event->hw.prev_count, val);
1368f2699491SMichael Ellerman 	local64_set(&event->hw.period_left, left);
1369f2699491SMichael Ellerman 	perf_event_update_userpage(event);
1370f2699491SMichael Ellerman 
1371f2699491SMichael Ellerman 	/*
1372f2699491SMichael Ellerman 	 * Finally record data if requested.
1373f2699491SMichael Ellerman 	 */
1374f2699491SMichael Ellerman 	if (record) {
1375f2699491SMichael Ellerman 		struct perf_sample_data data;
1376f2699491SMichael Ellerman 
1377fd0d000bSRobert Richter 		perf_sample_data_init(&data, ~0ULL, event->hw.last_period);
1378f2699491SMichael Ellerman 
1379f2699491SMichael Ellerman 		if (event->attr.sample_type & PERF_SAMPLE_ADDR)
1380f2699491SMichael Ellerman 			perf_get_data_addr(regs, &data.addr);
1381f2699491SMichael Ellerman 
1382f2699491SMichael Ellerman 		if (perf_event_overflow(event, &data, regs))
1383f2699491SMichael Ellerman 			power_pmu_stop(event, 0);
1384f2699491SMichael Ellerman 	}
1385f2699491SMichael Ellerman }
1386f2699491SMichael Ellerman 
1387f2699491SMichael Ellerman /*
1388f2699491SMichael Ellerman  * Called from generic code to get the misc flags (i.e. processor mode)
1389f2699491SMichael Ellerman  * for an event_id.
1390f2699491SMichael Ellerman  */
1391f2699491SMichael Ellerman unsigned long perf_misc_flags(struct pt_regs *regs)
1392f2699491SMichael Ellerman {
1393f2699491SMichael Ellerman 	u32 flags = perf_get_misc_flags(regs);
1394f2699491SMichael Ellerman 
1395f2699491SMichael Ellerman 	if (flags)
1396f2699491SMichael Ellerman 		return flags;
1397f2699491SMichael Ellerman 	return user_mode(regs) ? PERF_RECORD_MISC_USER :
1398f2699491SMichael Ellerman 		PERF_RECORD_MISC_KERNEL;
1399f2699491SMichael Ellerman }
1400f2699491SMichael Ellerman 
1401f2699491SMichael Ellerman /*
1402f2699491SMichael Ellerman  * Called from generic code to get the instruction pointer
1403f2699491SMichael Ellerman  * for an event_id.
1404f2699491SMichael Ellerman  */
1405f2699491SMichael Ellerman unsigned long perf_instruction_pointer(struct pt_regs *regs)
1406f2699491SMichael Ellerman {
140775382aa7SAnton Blanchard 	unsigned long use_siar = regs->result;
1408f2699491SMichael Ellerman 
1409e6878835Ssukadev@linux.vnet.ibm.com 	if (use_siar && siar_valid(regs))
14101ce447b9SBenjamin Herrenschmidt 		return mfspr(SPRN_SIAR) + perf_ip_adjust(regs);
1411e6878835Ssukadev@linux.vnet.ibm.com 	else if (use_siar)
1412e6878835Ssukadev@linux.vnet.ibm.com 		return 0;		// no valid instruction pointer
141375382aa7SAnton Blanchard 	else
141475382aa7SAnton Blanchard 		return regs->nip;
1415f2699491SMichael Ellerman }
1416f2699491SMichael Ellerman 
1417bc09c219SMichael Neuling static bool pmc_overflow_power7(unsigned long val)
1418f2699491SMichael Ellerman {
1419f2699491SMichael Ellerman 	/*
1420f2699491SMichael Ellerman 	 * Events on POWER7 can roll back if a speculative event doesn't
1421f2699491SMichael Ellerman 	 * eventually complete. Unfortunately in some rare cases they will
1422f2699491SMichael Ellerman 	 * raise a performance monitor exception. We need to catch this to
1423f2699491SMichael Ellerman 	 * ensure we reset the PMC. In all cases the PMC will be 256 or less
1424f2699491SMichael Ellerman 	 * cycles from overflow.
1425f2699491SMichael Ellerman 	 *
1426f2699491SMichael Ellerman 	 * We only do this if the first pass fails to find any overflowing
1427f2699491SMichael Ellerman 	 * PMCs because a user might set a period of less than 256 and we
1428f2699491SMichael Ellerman 	 * don't want to mistakenly reset them.
1429f2699491SMichael Ellerman 	 */
1430bc09c219SMichael Neuling 	if ((0x80000000 - val) <= 256)
1431bc09c219SMichael Neuling 		return true;
1432bc09c219SMichael Neuling 
1433bc09c219SMichael Neuling 	return false;
1434bc09c219SMichael Neuling }
1435bc09c219SMichael Neuling 
1436bc09c219SMichael Neuling static bool pmc_overflow(unsigned long val)
1437bc09c219SMichael Neuling {
1438bc09c219SMichael Neuling 	if ((int)val < 0)
1439f2699491SMichael Ellerman 		return true;
1440f2699491SMichael Ellerman 
1441f2699491SMichael Ellerman 	return false;
1442f2699491SMichael Ellerman }
1443f2699491SMichael Ellerman 
1444f2699491SMichael Ellerman /*
1445f2699491SMichael Ellerman  * Performance monitor interrupt stuff
1446f2699491SMichael Ellerman  */
1447f2699491SMichael Ellerman static void perf_event_interrupt(struct pt_regs *regs)
1448f2699491SMichael Ellerman {
1449bc09c219SMichael Neuling 	int i, j;
1450f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw = &__get_cpu_var(cpu_hw_events);
1451f2699491SMichael Ellerman 	struct perf_event *event;
1452bc09c219SMichael Neuling 	unsigned long val[8];
1453bc09c219SMichael Neuling 	int found, active;
1454f2699491SMichael Ellerman 	int nmi;
1455f2699491SMichael Ellerman 
1456f2699491SMichael Ellerman 	if (cpuhw->n_limited)
1457f2699491SMichael Ellerman 		freeze_limited_counters(cpuhw, mfspr(SPRN_PMC5),
1458f2699491SMichael Ellerman 					mfspr(SPRN_PMC6));
1459f2699491SMichael Ellerman 
1460f2699491SMichael Ellerman 	perf_read_regs(regs);
1461f2699491SMichael Ellerman 
1462f2699491SMichael Ellerman 	nmi = perf_intr_is_nmi(regs);
1463f2699491SMichael Ellerman 	if (nmi)
1464f2699491SMichael Ellerman 		nmi_enter();
1465f2699491SMichael Ellerman 	else
1466f2699491SMichael Ellerman 		irq_enter();
1467f2699491SMichael Ellerman 
1468bc09c219SMichael Neuling 	/* Read all the PMCs since we'll need them a bunch of times */
1469bc09c219SMichael Neuling 	for (i = 0; i < ppmu->n_counter; ++i)
1470bc09c219SMichael Neuling 		val[i] = read_pmc(i + 1);
1471bc09c219SMichael Neuling 
1472bc09c219SMichael Neuling 	/* Try to find what caused the IRQ */
1473bc09c219SMichael Neuling 	found = 0;
1474bc09c219SMichael Neuling 	for (i = 0; i < ppmu->n_counter; ++i) {
1475bc09c219SMichael Neuling 		if (!pmc_overflow(val[i]))
1476bc09c219SMichael Neuling 			continue;
1477bc09c219SMichael Neuling 		if (is_limited_pmc(i + 1))
1478bc09c219SMichael Neuling 			continue; /* these won't generate IRQs */
1479bc09c219SMichael Neuling 		/*
1480bc09c219SMichael Neuling 		 * We've found one that's overflowed.  For active
1481bc09c219SMichael Neuling 		 * counters we need to log this.  For inactive
1482bc09c219SMichael Neuling 		 * counters, we need to reset it anyway
1483bc09c219SMichael Neuling 		 */
1484bc09c219SMichael Neuling 		found = 1;
1485bc09c219SMichael Neuling 		active = 0;
1486bc09c219SMichael Neuling 		for (j = 0; j < cpuhw->n_events; ++j) {
1487bc09c219SMichael Neuling 			event = cpuhw->event[j];
1488bc09c219SMichael Neuling 			if (event->hw.idx == (i + 1)) {
1489bc09c219SMichael Neuling 				active = 1;
1490bc09c219SMichael Neuling 				record_and_restart(event, val[i], regs);
1491bc09c219SMichael Neuling 				break;
1492bc09c219SMichael Neuling 			}
1493bc09c219SMichael Neuling 		}
1494bc09c219SMichael Neuling 		if (!active)
1495bc09c219SMichael Neuling 			/* reset non active counters that have overflowed */
1496bc09c219SMichael Neuling 			write_pmc(i + 1, 0);
1497bc09c219SMichael Neuling 	}
1498bc09c219SMichael Neuling 	if (!found && pvr_version_is(PVR_POWER7)) {
1499bc09c219SMichael Neuling 		/* check active counters for special buggy p7 overflow */
1500f2699491SMichael Ellerman 		for (i = 0; i < cpuhw->n_events; ++i) {
1501f2699491SMichael Ellerman 			event = cpuhw->event[i];
1502f2699491SMichael Ellerman 			if (!event->hw.idx || is_limited_pmc(event->hw.idx))
1503f2699491SMichael Ellerman 				continue;
1504bc09c219SMichael Neuling 			if (pmc_overflow_power7(val[event->hw.idx - 1])) {
1505bc09c219SMichael Neuling 				/* event has overflowed in a buggy way*/
1506f2699491SMichael Ellerman 				found = 1;
1507bc09c219SMichael Neuling 				record_and_restart(event,
1508bc09c219SMichael Neuling 						   val[event->hw.idx - 1],
1509bc09c219SMichael Neuling 						   regs);
1510f2699491SMichael Ellerman 			}
1511f2699491SMichael Ellerman 		}
1512f2699491SMichael Ellerman 	}
1513bc09c219SMichael Neuling 	if ((!found) && printk_ratelimit())
1514bc09c219SMichael Neuling 		printk(KERN_WARNING "Can't find PMC that caused IRQ\n");
1515f2699491SMichael Ellerman 
1516f2699491SMichael Ellerman 	/*
1517f2699491SMichael Ellerman 	 * Reset MMCR0 to its normal value.  This will set PMXE and
1518f2699491SMichael Ellerman 	 * clear FC (freeze counters) and PMAO (perf mon alert occurred)
1519f2699491SMichael Ellerman 	 * and thus allow interrupts to occur again.
1520f2699491SMichael Ellerman 	 * XXX might want to use MSR.PM to keep the events frozen until
1521f2699491SMichael Ellerman 	 * we get back out of this interrupt.
1522f2699491SMichael Ellerman 	 */
1523f2699491SMichael Ellerman 	write_mmcr0(cpuhw, cpuhw->mmcr[0]);
1524f2699491SMichael Ellerman 
1525f2699491SMichael Ellerman 	if (nmi)
1526f2699491SMichael Ellerman 		nmi_exit();
1527f2699491SMichael Ellerman 	else
1528f2699491SMichael Ellerman 		irq_exit();
1529f2699491SMichael Ellerman }
1530f2699491SMichael Ellerman 
1531f2699491SMichael Ellerman static void power_pmu_setup(int cpu)
1532f2699491SMichael Ellerman {
1533f2699491SMichael Ellerman 	struct cpu_hw_events *cpuhw = &per_cpu(cpu_hw_events, cpu);
1534f2699491SMichael Ellerman 
1535f2699491SMichael Ellerman 	if (!ppmu)
1536f2699491SMichael Ellerman 		return;
1537f2699491SMichael Ellerman 	memset(cpuhw, 0, sizeof(*cpuhw));
1538f2699491SMichael Ellerman 	cpuhw->mmcr[0] = MMCR0_FC;
1539f2699491SMichael Ellerman }
1540f2699491SMichael Ellerman 
1541f2699491SMichael Ellerman static int __cpuinit
1542f2699491SMichael Ellerman power_pmu_notifier(struct notifier_block *self, unsigned long action, void *hcpu)
1543f2699491SMichael Ellerman {
1544f2699491SMichael Ellerman 	unsigned int cpu = (long)hcpu;
1545f2699491SMichael Ellerman 
1546f2699491SMichael Ellerman 	switch (action & ~CPU_TASKS_FROZEN) {
1547f2699491SMichael Ellerman 	case CPU_UP_PREPARE:
1548f2699491SMichael Ellerman 		power_pmu_setup(cpu);
1549f2699491SMichael Ellerman 		break;
1550f2699491SMichael Ellerman 
1551f2699491SMichael Ellerman 	default:
1552f2699491SMichael Ellerman 		break;
1553f2699491SMichael Ellerman 	}
1554f2699491SMichael Ellerman 
1555f2699491SMichael Ellerman 	return NOTIFY_OK;
1556f2699491SMichael Ellerman }
1557f2699491SMichael Ellerman 
1558f2699491SMichael Ellerman int __cpuinit register_power_pmu(struct power_pmu *pmu)
1559f2699491SMichael Ellerman {
1560f2699491SMichael Ellerman 	if (ppmu)
1561f2699491SMichael Ellerman 		return -EBUSY;		/* something's already registered */
1562f2699491SMichael Ellerman 
1563f2699491SMichael Ellerman 	ppmu = pmu;
1564f2699491SMichael Ellerman 	pr_info("%s performance monitor hardware support registered\n",
1565f2699491SMichael Ellerman 		pmu->name);
1566f2699491SMichael Ellerman 
1567f2699491SMichael Ellerman #ifdef MSR_HV
1568f2699491SMichael Ellerman 	/*
1569f2699491SMichael Ellerman 	 * Use FCHV to ignore kernel events if MSR.HV is set.
1570f2699491SMichael Ellerman 	 */
1571f2699491SMichael Ellerman 	if (mfmsr() & MSR_HV)
1572f2699491SMichael Ellerman 		freeze_events_kernel = MMCR0_FCHV;
1573f2699491SMichael Ellerman #endif /* CONFIG_PPC64 */
1574f2699491SMichael Ellerman 
1575f2699491SMichael Ellerman 	perf_pmu_register(&power_pmu, "cpu", PERF_TYPE_RAW);
1576f2699491SMichael Ellerman 	perf_cpu_notifier(power_pmu_notifier);
1577f2699491SMichael Ellerman 
1578f2699491SMichael Ellerman 	return 0;
1579f2699491SMichael Ellerman }
1580