1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2004 Anton Blanchard <anton@au.ibm.com>, IBM
4 * Added mmcra[slot] support:
5 * Copyright (C) 2006-2007 Will Schmidt <willschm@us.ibm.com>, IBM
8 #include <linux/oprofile.h>
10 #include <asm/firmware.h>
11 #include <asm/ptrace.h>
12 #include <asm/processor.h>
13 #include <asm/cputable.h>
15 #include <asm/oprofile_impl.h>
19 #define OPROFILE_PM_PMCSEL_MSK 0xffULL
20 #define OPROFILE_PM_UNIT_SHIFT 60
21 #define OPROFILE_PM_UNIT_MSK 0xfULL
22 #define OPROFILE_MAX_PMC_NUM 3
23 #define OPROFILE_PMSEL_FIELD_WIDTH 8
24 #define OPROFILE_UNIT_FIELD_WIDTH 4
25 #define MMCRA_SIAR_VALID_MASK 0x10000000ULL
27 static unsigned long reset_value
[OP_MAX_COUNTER
];
29 static int oprofile_running
;
30 static int use_slot_nums
;
32 /* mmcr values are set in power4_reg_setup, used in power4_cpu_setup */
36 static u32 cntr_marked_events
;
38 static int power7_marked_instr_event(u64 mmcr1
)
41 int pmc
, cntr_marked_events
= 0;
43 /* Given the MMCR1 value, look at the field for each counter to
44 * determine if it is a marked event. Code based on the function
45 * power7_marked_instr_event() in file arch/powerpc/perf/power7-pmu.c.
47 for (pmc
= 0; pmc
< 4; pmc
++) {
48 psel
= mmcr1
& (OPROFILE_PM_PMCSEL_MSK
49 << (OPROFILE_MAX_PMC_NUM
- pmc
)
50 * OPROFILE_PMSEL_FIELD_WIDTH
);
51 psel
= (psel
>> ((OPROFILE_MAX_PMC_NUM
- pmc
)
52 * OPROFILE_PMSEL_FIELD_WIDTH
)) & ~1ULL;
53 unit
= mmcr1
& (OPROFILE_PM_UNIT_MSK
54 << (OPROFILE_PM_UNIT_SHIFT
55 - (pmc
* OPROFILE_PMSEL_FIELD_WIDTH
)));
56 unit
= unit
>> (OPROFILE_PM_UNIT_SHIFT
57 - (pmc
* OPROFILE_PMSEL_FIELD_WIDTH
));
61 cntr_marked_events
|= (pmc
== 1 || pmc
== 3) << pmc
;
65 cntr_marked_events
|= (pmc
== 0) << pmc
;
70 cntr_marked_events
|= (pmc
!= 1) << pmc
;
74 cntr_marked_events
|= 1 << pmc
;
78 cntr_marked_events
|= (unit
== 0xd) << pmc
;
82 cntr_marked_events
|= (pmc
>= 2) << pmc
;
85 cntr_marked_events
|= (unit
== 0xd) << pmc
;
89 return cntr_marked_events
;
92 static int power4_reg_setup(struct op_counter_config
*ctr
,
93 struct op_system_config
*sys
,
99 * The performance counter event settings are given in the mmcr0,
100 * mmcr1 and mmcra values passed from the user in the
101 * op_system_config structure (sys variable).
103 mmcr0_val
= sys
->mmcr0
;
104 mmcr1_val
= sys
->mmcr1
;
105 mmcra_val
= sys
->mmcra
;
107 /* Power 7+ and newer architectures:
108 * Determine which counter events in the group (the group of events is
109 * specified by the bit settings in the MMCR1 register) are marked
110 * events for use in the interrupt handler. Do the calculation once
111 * before OProfile starts. Information is used in the interrupt
112 * handler. Starting with Power 7+ we only record the sample for
113 * marked events if the SIAR valid bit is set. For non marked events
114 * the sample is always recorded.
116 if (pvr_version_is(PVR_POWER7p
))
117 cntr_marked_events
= power7_marked_instr_event(mmcr1_val
);
119 cntr_marked_events
= 0; /* For older processors, set the bit map
120 * to zero so the sample will always be
124 for (i
= 0; i
< cur_cpu_spec
->num_pmcs
; ++i
)
125 reset_value
[i
] = 0x80000000UL
- ctr
[i
].count
;
127 /* setup user and kernel profiling */
128 if (sys
->enable_kernel
)
129 mmcr0_val
&= ~MMCR0_KERNEL_DISABLE
;
131 mmcr0_val
|= MMCR0_KERNEL_DISABLE
;
133 if (sys
->enable_user
)
134 mmcr0_val
&= ~MMCR0_PROBLEM_DISABLE
;
136 mmcr0_val
|= MMCR0_PROBLEM_DISABLE
;
138 if (pvr_version_is(PVR_POWER4
) || pvr_version_is(PVR_POWER4p
) ||
139 pvr_version_is(PVR_970
) || pvr_version_is(PVR_970FX
) ||
140 pvr_version_is(PVR_970MP
) || pvr_version_is(PVR_970GX
) ||
141 pvr_version_is(PVR_POWER5
) || pvr_version_is(PVR_POWER5p
))
147 extern void ppc_enable_pmcs(void);
150 * Older CPUs require the MMCRA sample bit to be always set, but newer
151 * CPUs only want it set for some groups. Eventually we will remove all
152 * knowledge of this bit in the kernel, oprofile userspace should be
153 * setting it when required.
155 * In order to keep current installations working we force the bit for
156 * those older CPUs. Once everyone has updated their oprofile userspace we
157 * can remove this hack.
159 static inline int mmcra_must_set_sample(void)
161 if (pvr_version_is(PVR_POWER4
) || pvr_version_is(PVR_POWER4p
) ||
162 pvr_version_is(PVR_970
) || pvr_version_is(PVR_970FX
) ||
163 pvr_version_is(PVR_970MP
) || pvr_version_is(PVR_970GX
))
169 static int power4_cpu_setup(struct op_counter_config
*ctr
)
171 unsigned int mmcr0
= mmcr0_val
;
172 unsigned long mmcra
= mmcra_val
;
176 /* set the freeze bit */
178 mtspr(SPRN_MMCR0
, mmcr0
);
180 mmcr0
|= MMCR0_FCM1
|MMCR0_PMXE
|MMCR0_FCECE
;
181 mmcr0
|= MMCR0_PMC1CE
|MMCR0_PMCjCE
;
182 mtspr(SPRN_MMCR0
, mmcr0
);
184 mtspr(SPRN_MMCR1
, mmcr1_val
);
186 if (mmcra_must_set_sample())
187 mmcra
|= MMCRA_SAMPLE_ENABLE
;
188 mtspr(SPRN_MMCRA
, mmcra
);
190 dbg("setup on cpu %d, mmcr0 %lx\n", smp_processor_id(),
192 dbg("setup on cpu %d, mmcr1 %lx\n", smp_processor_id(),
194 dbg("setup on cpu %d, mmcra %lx\n", smp_processor_id(),
200 static int power4_start(struct op_counter_config
*ctr
)
205 /* set the PMM bit (see comment below) */
206 mtmsr(mfmsr() | MSR_PMM
);
208 for (i
= 0; i
< cur_cpu_spec
->num_pmcs
; ++i
) {
209 if (ctr
[i
].enabled
) {
210 classic_ctr_write(i
, reset_value
[i
]);
212 classic_ctr_write(i
, 0);
216 mmcr0
= mfspr(SPRN_MMCR0
);
219 * We must clear the PMAO bit on some (GQ) chips. Just do it
222 mmcr0
&= ~MMCR0_PMAO
;
225 * now clear the freeze bit, counting will not start until we
226 * rfid from this excetion, because only at that point will
227 * the PMM bit be cleared
230 mtspr(SPRN_MMCR0
, mmcr0
);
232 oprofile_running
= 1;
234 dbg("start on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0
);
238 static void power4_stop(void)
242 /* freeze counters */
243 mmcr0
= mfspr(SPRN_MMCR0
);
245 mtspr(SPRN_MMCR0
, mmcr0
);
247 oprofile_running
= 0;
249 dbg("stop on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0
);
254 /* Fake functions used by canonicalize_pc */
255 static void __used
hypervisor_bucket(void)
259 static void __used
rtas_bucket(void)
263 static void __used
kernel_unknown_bucket(void)
268 * On GQ and newer the MMCRA stores the HV and PR bits at the time
269 * the SIAR was sampled. We use that to work out if the SIAR was sampled in
270 * the hypervisor, our exception vectors or RTAS.
271 * If the MMCRA_SAMPLE_ENABLE bit is set, we can use the MMCRA[slot] bits
272 * to more accurately identify the address of the sampled instruction. The
273 * mmcra[slot] bits represent the slot number of a sampled instruction
274 * within an instruction group. The slot will contain a value between 1
275 * and 5 if MMCRA_SAMPLE_ENABLE is set, otherwise 0.
277 static unsigned long get_pc(struct pt_regs
*regs
)
279 unsigned long pc
= mfspr(SPRN_SIAR
);
283 /* Can't do much about it */
284 if (!cur_cpu_spec
->oprofile_mmcra_sihv
)
287 mmcra
= mfspr(SPRN_MMCRA
);
289 if (use_slot_nums
&& (mmcra
& MMCRA_SAMPLE_ENABLE
)) {
290 slot
= ((mmcra
& MMCRA_SLOT
) >> MMCRA_SLOT_SHIFT
);
292 pc
+= 4 * (slot
- 1);
295 /* Were we in the hypervisor? */
296 if (firmware_has_feature(FW_FEATURE_LPAR
) &&
297 (mmcra
& cur_cpu_spec
->oprofile_mmcra_sihv
))
298 /* function descriptor madness */
299 return *((unsigned long *)hypervisor_bucket
);
301 /* We were in userspace, nothing to do */
302 if (mmcra
& cur_cpu_spec
->oprofile_mmcra_sipr
)
305 #ifdef CONFIG_PPC_RTAS
306 /* Were we in RTAS? */
307 if (pc
>= rtas
.base
&& pc
< (rtas
.base
+ rtas
.size
))
308 /* function descriptor madness */
309 return *((unsigned long *)rtas_bucket
);
312 /* Were we in our exception vectors or SLB real mode miss handler? */
313 if (pc
< 0x1000000UL
)
314 return (unsigned long)__va(pc
);
316 /* Not sure where we were */
317 if (!is_kernel_addr(pc
))
318 /* function descriptor madness */
319 return *((unsigned long *)kernel_unknown_bucket
);
324 static int get_kernel(unsigned long pc
, unsigned long mmcra
)
328 if (!cur_cpu_spec
->oprofile_mmcra_sihv
) {
329 is_kernel
= is_kernel_addr(pc
);
331 is_kernel
= ((mmcra
& cur_cpu_spec
->oprofile_mmcra_sipr
) == 0);
337 static bool pmc_overflow(unsigned long val
)
343 * Events on POWER7 can roll back if a speculative event doesn't
344 * eventually complete. Unfortunately in some rare cases they will
345 * raise a performance monitor exception. We need to catch this to
346 * ensure we reset the PMC. In all cases the PMC will be 256 or less
347 * cycles from overflow.
349 * We only do this if the first pass fails to find any overflowing
350 * PMCs because a user might set a period of less than 256 and we
351 * don't want to mistakenly reset them.
353 if (pvr_version_is(PVR_POWER7
) && ((0x80000000 - val
) <= 256))
359 static void power4_handle_interrupt(struct pt_regs
*regs
,
360 struct op_counter_config
*ctr
)
368 bool siar_valid
= false;
370 mmcra
= mfspr(SPRN_MMCRA
);
373 is_kernel
= get_kernel(pc
, mmcra
);
375 /* set the PMM bit (see comment below) */
376 mtmsr(mfmsr() | MSR_PMM
);
378 /* Check that the SIAR valid bit in MMCRA is set to 1. */
379 if ((mmcra
& MMCRA_SIAR_VALID_MASK
) == MMCRA_SIAR_VALID_MASK
)
382 for (i
= 0; i
< cur_cpu_spec
->num_pmcs
; ++i
) {
383 val
= classic_ctr_read(i
);
384 if (pmc_overflow(val
)) {
385 if (oprofile_running
&& ctr
[i
].enabled
) {
386 /* Power 7+ and newer architectures:
387 * If the event is a marked event, then only
388 * save the sample if the SIAR valid bit is
389 * set. If the event is not marked, then
390 * always save the sample.
391 * Note, the Sample enable bit in the MMCRA
392 * register must be set to 1 if the group
393 * contains a marked event.
396 (cntr_marked_events
& (1 << i
)))
397 || !(cntr_marked_events
& (1 << i
)))
398 oprofile_add_ext_sample(pc
, regs
, i
,
401 classic_ctr_write(i
, reset_value
[i
]);
403 classic_ctr_write(i
, 0);
408 mmcr0
= mfspr(SPRN_MMCR0
);
410 /* reset the perfmon trigger */
414 * We must clear the PMAO bit on some (GQ) chips. Just do it
417 mmcr0
&= ~MMCR0_PMAO
;
419 /* Clear the appropriate bits in the MMCRA */
420 mmcra
&= ~cur_cpu_spec
->oprofile_mmcra_clear
;
421 mtspr(SPRN_MMCRA
, mmcra
);
424 * now clear the freeze bit, counting will not start until we
425 * rfid from this exception, because only at that point will
426 * the PMM bit be cleared
429 mtspr(SPRN_MMCR0
, mmcr0
);
432 struct op_powerpc_model op_model_power4
= {
433 .reg_setup
= power4_reg_setup
,
434 .cpu_setup
= power4_cpu_setup
,
435 .start
= power4_start
,
437 .handle_interrupt
= power4_handle_interrupt
,