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>
24 static unsigned long reset_value
[OP_MAX_COUNTER
];
26 static int num_counters
;
27 static int oprofile_running
;
28 static int mmcra_has_sihv
;
30 /* mmcr values are set in power4_reg_setup, used in power4_cpu_setup */
36 * Since we do not have an NMI, backtracing through spinlocks is
37 * only a best guess. In light of this, allow it to be disabled at
40 static int backtrace_spinlocks
;
42 static void power4_reg_setup(struct op_counter_config
*ctr
,
43 struct op_system_config
*sys
,
48 num_counters
= num_ctrs
;
51 * SIHV / SIPR bits are only implemented on POWER4+ (GQ) and above.
52 * However we disable it on all POWER4 until we verify it works
53 * (I was seeing some strange behaviour last time I tried).
55 * It has been verified to work on POWER5 so we enable it there.
57 if (cpu_has_feature(CPU_FTR_MMCRA_SIHV
))
61 * The performance counter event settings are given in the mmcr0,
62 * mmcr1 and mmcra values passed from the user in the
63 * op_system_config structure (sys variable).
65 mmcr0_val
= sys
->mmcr0
;
66 mmcr1_val
= sys
->mmcr1
;
67 mmcra_val
= sys
->mmcra
;
69 backtrace_spinlocks
= sys
->backtrace_spinlocks
;
71 for (i
= 0; i
< num_counters
; ++i
)
72 reset_value
[i
] = 0x80000000UL
- ctr
[i
].count
;
74 /* setup user and kernel profiling */
75 if (sys
->enable_kernel
)
76 mmcr0_val
&= ~MMCR0_KERNEL_DISABLE
;
78 mmcr0_val
|= MMCR0_KERNEL_DISABLE
;
81 mmcr0_val
&= ~MMCR0_PROBLEM_DISABLE
;
83 mmcr0_val
|= MMCR0_PROBLEM_DISABLE
;
86 extern void ppc64_enable_pmcs(void);
88 static void power4_cpu_setup(void *unused
)
90 unsigned int mmcr0
= mmcr0_val
;
91 unsigned long mmcra
= mmcra_val
;
95 /* set the freeze bit */
97 mtspr(SPRN_MMCR0
, mmcr0
);
99 mmcr0
|= MMCR0_FCM1
|MMCR0_PMXE
|MMCR0_FCECE
;
100 mmcr0
|= MMCR0_PMC1CE
|MMCR0_PMCjCE
;
101 mtspr(SPRN_MMCR0
, mmcr0
);
103 mtspr(SPRN_MMCR1
, mmcr1_val
);
105 mmcra
|= MMCRA_SAMPLE_ENABLE
;
106 mtspr(SPRN_MMCRA
, mmcra
);
108 dbg("setup on cpu %d, mmcr0 %lx\n", smp_processor_id(),
110 dbg("setup on cpu %d, mmcr1 %lx\n", smp_processor_id(),
112 dbg("setup on cpu %d, mmcra %lx\n", smp_processor_id(),
116 static void power4_start(struct op_counter_config
*ctr
)
121 /* set the PMM bit (see comment below) */
122 mtmsrd(mfmsr() | MSR_PMM
);
124 for (i
= 0; i
< num_counters
; ++i
) {
125 if (ctr
[i
].enabled
) {
126 ctr_write(i
, reset_value
[i
]);
132 mmcr0
= mfspr(SPRN_MMCR0
);
135 * We must clear the PMAO bit on some (GQ) chips. Just do it
138 mmcr0
&= ~MMCR0_PMAO
;
141 * now clear the freeze bit, counting will not start until we
142 * rfid from this excetion, because only at that point will
143 * the PMM bit be cleared
146 mtspr(SPRN_MMCR0
, mmcr0
);
148 oprofile_running
= 1;
150 dbg("start on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0
);
153 static void power4_stop(void)
157 /* freeze counters */
158 mmcr0
= mfspr(SPRN_MMCR0
);
160 mtspr(SPRN_MMCR0
, mmcr0
);
162 oprofile_running
= 0;
164 dbg("stop on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0
);
169 /* Fake functions used by canonicalize_pc */
170 static void __attribute_used__
hypervisor_bucket(void)
174 static void __attribute_used__
rtas_bucket(void)
178 static void __attribute_used__
kernel_unknown_bucket(void)
182 static unsigned long check_spinlock_pc(struct pt_regs
*regs
,
183 unsigned long profile_pc
)
185 unsigned long pc
= instruction_pointer(regs
);
188 * If both the SIAR (sampled instruction) and the perfmon exception
189 * occurred in a spinlock region then we account the sample to the
190 * calling function. This isnt 100% correct, we really need soft
191 * IRQ disable so we always get the perfmon exception at the
192 * point at which the SIAR is set.
194 if (backtrace_spinlocks
&& in_lock_functions(pc
) &&
195 in_lock_functions(profile_pc
))
202 * On GQ and newer the MMCRA stores the HV and PR bits at the time
203 * the SIAR was sampled. We use that to work out if the SIAR was sampled in
204 * the hypervisor, our exception vectors or RTAS.
206 static unsigned long get_pc(struct pt_regs
*regs
)
208 unsigned long pc
= mfspr(SPRN_SIAR
);
211 /* Cant do much about it */
213 return check_spinlock_pc(regs
, pc
);
215 mmcra
= mfspr(SPRN_MMCRA
);
217 /* Were we in the hypervisor? */
218 if ((systemcfg
->platform
== PLATFORM_PSERIES_LPAR
) &&
219 (mmcra
& MMCRA_SIHV
))
220 /* function descriptor madness */
221 return *((unsigned long *)hypervisor_bucket
);
223 /* We were in userspace, nothing to do */
224 if (mmcra
& MMCRA_SIPR
)
227 #ifdef CONFIG_PPC_RTAS
228 /* Were we in RTAS? */
229 if (pc
>= rtas
.base
&& pc
< (rtas
.base
+ rtas
.size
))
230 /* function descriptor madness */
231 return *((unsigned long *)rtas_bucket
);
234 /* Were we in our exception vectors or SLB real mode miss handler? */
235 if (pc
< 0x1000000UL
)
236 return (unsigned long)__va(pc
);
238 /* Not sure where we were */
240 /* function descriptor madness */
241 return *((unsigned long *)kernel_unknown_bucket
);
243 return check_spinlock_pc(regs
, pc
);
246 static int get_kernel(unsigned long pc
)
250 if (!mmcra_has_sihv
) {
251 is_kernel
= (pc
>= KERNELBASE
);
253 unsigned long mmcra
= mfspr(SPRN_MMCRA
);
254 is_kernel
= ((mmcra
& MMCRA_SIPR
) == 0);
260 static void power4_handle_interrupt(struct pt_regs
*regs
,
261 struct op_counter_config
*ctr
)
270 is_kernel
= get_kernel(pc
);
272 /* set the PMM bit (see comment below) */
273 mtmsrd(mfmsr() | MSR_PMM
);
275 for (i
= 0; i
< num_counters
; ++i
) {
278 if (oprofile_running
&& ctr
[i
].enabled
) {
279 oprofile_add_pc(pc
, is_kernel
, i
);
280 ctr_write(i
, reset_value
[i
]);
287 mmcr0
= mfspr(SPRN_MMCR0
);
289 /* reset the perfmon trigger */
293 * We must clear the PMAO bit on some (GQ) chips. Just do it
296 mmcr0
&= ~MMCR0_PMAO
;
299 * now clear the freeze bit, counting will not start until we
300 * rfid from this exception, because only at that point will
301 * the PMM bit be cleared
304 mtspr(SPRN_MMCR0
, mmcr0
);
307 struct op_ppc64_model op_model_power4
= {
308 .reg_setup
= power4_reg_setup
,
309 .cpu_setup
= power4_cpu_setup
,
310 .start
= power4_start
,
312 .handle_interrupt
= power4_handle_interrupt
,