2 * Copyright (C) 2004 Anton Blanchard <anton@au.ibm.com>, IBM
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
10 #include <linux/oprofile.h>
11 #include <linux/init.h>
12 #include <linux/smp.h>
13 #include <asm/ptrace.h>
14 #include <asm/system.h>
15 #include <asm/processor.h>
16 #include <asm/cputable.h>
17 #include <asm/systemcfg.h>
19 #include <asm/oprofile_impl.h>
24 static unsigned long reset_value[OP_MAX_COUNTER];
26 static int oprofile_running;
27 static int mmcra_has_sihv;
29 /* mmcr values are set in power4_reg_setup, used in power4_cpu_setup */
35 * Since we do not have an NMI, backtracing through spinlocks is
36 * only a best guess. In light of this, allow it to be disabled at
39 static int backtrace_spinlocks;
41 static void power4_reg_setup(struct op_counter_config *ctr,
42 struct op_system_config *sys,
48 * SIHV / SIPR bits are only implemented on POWER4+ (GQ) and above.
49 * However we disable it on all POWER4 until we verify it works
50 * (I was seeing some strange behaviour last time I tried).
52 * It has been verified to work on POWER5 so we enable it there.
54 if (cpu_has_feature(CPU_FTR_MMCRA_SIHV))
58 * The performance counter event settings are given in the mmcr0,
59 * mmcr1 and mmcra values passed from the user in the
60 * op_system_config structure (sys variable).
62 mmcr0_val = sys->mmcr0;
63 mmcr1_val = sys->mmcr1;
64 mmcra_val = sys->mmcra;
66 backtrace_spinlocks = sys->backtrace_spinlocks;
68 for (i = 0; i < cur_cpu_spec->num_pmcs; ++i)
69 reset_value[i] = 0x80000000UL - ctr[i].count;
71 /* setup user and kernel profiling */
72 if (sys->enable_kernel)
73 mmcr0_val &= ~MMCR0_KERNEL_DISABLE;
75 mmcr0_val |= MMCR0_KERNEL_DISABLE;
78 mmcr0_val &= ~MMCR0_PROBLEM_DISABLE;
80 mmcr0_val |= MMCR0_PROBLEM_DISABLE;
83 extern void ppc64_enable_pmcs(void);
86 * Older CPUs require the MMCRA sample bit to be always set, but newer
87 * CPUs only want it set for some groups. Eventually we will remove all
88 * knowledge of this bit in the kernel, oprofile userspace should be
89 * setting it when required.
91 * In order to keep current installations working we force the bit for
92 * those older CPUs. Once everyone has updated their oprofile userspace we
93 * can remove this hack.
95 static inline int mmcra_must_set_sample(void)
97 if (__is_processor(PV_POWER4) || __is_processor(PV_POWER4p) ||
98 __is_processor(PV_970) || __is_processor(PV_970FX) ||
99 __is_processor(PV_970MP))
105 static void power4_cpu_setup(void *unused)
107 unsigned int mmcr0 = mmcr0_val;
108 unsigned long mmcra = mmcra_val;
112 /* set the freeze bit */
114 mtspr(SPRN_MMCR0, mmcr0);
116 mmcr0 |= MMCR0_FCM1|MMCR0_PMXE|MMCR0_FCECE;
117 mmcr0 |= MMCR0_PMC1CE|MMCR0_PMCjCE;
118 mtspr(SPRN_MMCR0, mmcr0);
120 mtspr(SPRN_MMCR1, mmcr1_val);
122 if (mmcra_must_set_sample())
123 mmcra |= MMCRA_SAMPLE_ENABLE;
124 mtspr(SPRN_MMCRA, mmcra);
126 dbg("setup on cpu %d, mmcr0 %lx\n", smp_processor_id(),
128 dbg("setup on cpu %d, mmcr1 %lx\n", smp_processor_id(),
130 dbg("setup on cpu %d, mmcra %lx\n", smp_processor_id(),
134 static void power4_start(struct op_counter_config *ctr)
139 /* set the PMM bit (see comment below) */
140 mtmsrd(mfmsr() | MSR_PMM);
142 for (i = 0; i < cur_cpu_spec->num_pmcs; ++i) {
143 if (ctr[i].enabled) {
144 ctr_write(i, reset_value[i]);
150 mmcr0 = mfspr(SPRN_MMCR0);
153 * We must clear the PMAO bit on some (GQ) chips. Just do it
156 mmcr0 &= ~MMCR0_PMAO;
159 * now clear the freeze bit, counting will not start until we
160 * rfid from this excetion, because only at that point will
161 * the PMM bit be cleared
164 mtspr(SPRN_MMCR0, mmcr0);
166 oprofile_running = 1;
168 dbg("start on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0);
171 static void power4_stop(void)
175 /* freeze counters */
176 mmcr0 = mfspr(SPRN_MMCR0);
178 mtspr(SPRN_MMCR0, mmcr0);
180 oprofile_running = 0;
182 dbg("stop on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0);
187 /* Fake functions used by canonicalize_pc */
188 static void __attribute_used__ hypervisor_bucket(void)
192 static void __attribute_used__ rtas_bucket(void)
196 static void __attribute_used__ kernel_unknown_bucket(void)
200 static unsigned long check_spinlock_pc(struct pt_regs *regs,
201 unsigned long profile_pc)
203 unsigned long pc = instruction_pointer(regs);
206 * If both the SIAR (sampled instruction) and the perfmon exception
207 * occurred in a spinlock region then we account the sample to the
208 * calling function. This isnt 100% correct, we really need soft
209 * IRQ disable so we always get the perfmon exception at the
210 * point at which the SIAR is set.
212 if (backtrace_spinlocks && in_lock_functions(pc) &&
213 in_lock_functions(profile_pc))
220 * On GQ and newer the MMCRA stores the HV and PR bits at the time
221 * the SIAR was sampled. We use that to work out if the SIAR was sampled in
222 * the hypervisor, our exception vectors or RTAS.
224 static unsigned long get_pc(struct pt_regs *regs)
226 unsigned long pc = mfspr(SPRN_SIAR);
229 /* Cant do much about it */
231 return check_spinlock_pc(regs, pc);
233 mmcra = mfspr(SPRN_MMCRA);
235 /* Were we in the hypervisor? */
236 if (platform_is_lpar() && (mmcra & MMCRA_SIHV))
237 /* function descriptor madness */
238 return *((unsigned long *)hypervisor_bucket);
240 /* We were in userspace, nothing to do */
241 if (mmcra & MMCRA_SIPR)
244 #ifdef CONFIG_PPC_RTAS
245 /* Were we in RTAS? */
246 if (pc >= rtas.base && pc < (rtas.base + rtas.size))
247 /* function descriptor madness */
248 return *((unsigned long *)rtas_bucket);
251 /* Were we in our exception vectors or SLB real mode miss handler? */
252 if (pc < 0x1000000UL)
253 return (unsigned long)__va(pc);
255 /* Not sure where we were */
257 /* function descriptor madness */
258 return *((unsigned long *)kernel_unknown_bucket);
260 return check_spinlock_pc(regs, pc);
263 static int get_kernel(unsigned long pc)
267 if (!mmcra_has_sihv) {
268 is_kernel = (pc >= KERNELBASE);
270 unsigned long mmcra = mfspr(SPRN_MMCRA);
271 is_kernel = ((mmcra & MMCRA_SIPR) == 0);
277 static void power4_handle_interrupt(struct pt_regs *regs,
278 struct op_counter_config *ctr)
287 is_kernel = get_kernel(pc);
289 /* set the PMM bit (see comment below) */
290 mtmsrd(mfmsr() | MSR_PMM);
292 for (i = 0; i < cur_cpu_spec->num_pmcs; ++i) {
295 if (oprofile_running && ctr[i].enabled) {
296 oprofile_add_pc(pc, is_kernel, i);
297 ctr_write(i, reset_value[i]);
304 mmcr0 = mfspr(SPRN_MMCR0);
306 /* reset the perfmon trigger */
310 * We must clear the PMAO bit on some (GQ) chips. Just do it
313 mmcr0 &= ~MMCR0_PMAO;
316 * now clear the freeze bit, counting will not start until we
317 * rfid from this exception, because only at that point will
318 * the PMM bit be cleared
321 mtspr(SPRN_MMCR0, mmcr0);
324 struct op_powerpc_model op_model_power4 = {
325 .reg_setup = power4_reg_setup,
326 .cpu_setup = power4_cpu_setup,
327 .start = power4_start,
329 .handle_interrupt = power4_handle_interrupt,