blob: c4ee5478427b4ae322a8e1b4dd18f3600a23ce9a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 Anton Blanchard <anton@au.ibm.com>, IBM
3 *
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.
8 */
9
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>
18#include <asm/rtas.h>
Anton Blancharddca85932005-09-06 14:55:35 +100019#include <asm/oprofile_impl.h>
Anton Blanchardcb09cff2005-11-07 18:43:56 +110020#include <asm/reg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#define dbg(args...)
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static unsigned long reset_value[OP_MAX_COUNTER];
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static int oprofile_running;
27static int mmcra_has_sihv;
28
29/* mmcr values are set in power4_reg_setup, used in power4_cpu_setup */
30static u32 mmcr0_val;
31static u64 mmcr1_val;
32static u32 mmcra_val;
33
34/*
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
37 * runtime.
38 */
39static int backtrace_spinlocks;
40
41static void power4_reg_setup(struct op_counter_config *ctr,
42 struct op_system_config *sys,
43 int num_ctrs)
44{
45 int i;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 /*
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).
51 *
52 * It has been verified to work on POWER5 so we enable it there.
53 */
54 if (cpu_has_feature(CPU_FTR_MMCRA_SIHV))
55 mmcra_has_sihv = 1;
56
57 /*
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).
61 */
62 mmcr0_val = sys->mmcr0;
63 mmcr1_val = sys->mmcr1;
64 mmcra_val = sys->mmcra;
65
66 backtrace_spinlocks = sys->backtrace_spinlocks;
67
Anton Blancharda6908cd2005-09-06 14:52:12 +100068 for (i = 0; i < cur_cpu_spec->num_pmcs; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 reset_value[i] = 0x80000000UL - ctr[i].count;
70
71 /* setup user and kernel profiling */
72 if (sys->enable_kernel)
73 mmcr0_val &= ~MMCR0_KERNEL_DISABLE;
74 else
75 mmcr0_val |= MMCR0_KERNEL_DISABLE;
76
77 if (sys->enable_user)
78 mmcr0_val &= ~MMCR0_PROBLEM_DISABLE;
79 else
80 mmcr0_val |= MMCR0_PROBLEM_DISABLE;
81}
82
83extern void ppc64_enable_pmcs(void);
84
Anton Blanchardcb09cff2005-11-07 18:43:56 +110085/*
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.
90 *
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.
94 */
95static inline int mmcra_must_set_sample(void)
96{
97 if (__is_processor(PV_POWER4) || __is_processor(PV_POWER4p) ||
98 __is_processor(PV_970) || __is_processor(PV_970FX) ||
99 __is_processor(PV_970MP))
100 return 1;
101
102 return 0;
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static void power4_cpu_setup(void *unused)
106{
107 unsigned int mmcr0 = mmcr0_val;
108 unsigned long mmcra = mmcra_val;
109
110 ppc64_enable_pmcs();
111
112 /* set the freeze bit */
113 mmcr0 |= MMCR0_FC;
114 mtspr(SPRN_MMCR0, mmcr0);
115
116 mmcr0 |= MMCR0_FCM1|MMCR0_PMXE|MMCR0_FCECE;
117 mmcr0 |= MMCR0_PMC1CE|MMCR0_PMCjCE;
118 mtspr(SPRN_MMCR0, mmcr0);
119
120 mtspr(SPRN_MMCR1, mmcr1_val);
121
Anton Blanchardcb09cff2005-11-07 18:43:56 +1100122 if (mmcra_must_set_sample())
123 mmcra |= MMCRA_SAMPLE_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 mtspr(SPRN_MMCRA, mmcra);
125
126 dbg("setup on cpu %d, mmcr0 %lx\n", smp_processor_id(),
127 mfspr(SPRN_MMCR0));
128 dbg("setup on cpu %d, mmcr1 %lx\n", smp_processor_id(),
129 mfspr(SPRN_MMCR1));
130 dbg("setup on cpu %d, mmcra %lx\n", smp_processor_id(),
131 mfspr(SPRN_MMCRA));
132}
133
134static void power4_start(struct op_counter_config *ctr)
135{
136 int i;
137 unsigned int mmcr0;
138
139 /* set the PMM bit (see comment below) */
140 mtmsrd(mfmsr() | MSR_PMM);
141
Anton Blancharda6908cd2005-09-06 14:52:12 +1000142 for (i = 0; i < cur_cpu_spec->num_pmcs; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (ctr[i].enabled) {
144 ctr_write(i, reset_value[i]);
145 } else {
146 ctr_write(i, 0);
147 }
148 }
149
150 mmcr0 = mfspr(SPRN_MMCR0);
151
152 /*
153 * We must clear the PMAO bit on some (GQ) chips. Just do it
154 * all the time
155 */
156 mmcr0 &= ~MMCR0_PMAO;
157
158 /*
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
162 */
163 mmcr0 &= ~MMCR0_FC;
164 mtspr(SPRN_MMCR0, mmcr0);
165
166 oprofile_running = 1;
167
168 dbg("start on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0);
169}
170
171static void power4_stop(void)
172{
173 unsigned int mmcr0;
174
175 /* freeze counters */
176 mmcr0 = mfspr(SPRN_MMCR0);
177 mmcr0 |= MMCR0_FC;
178 mtspr(SPRN_MMCR0, mmcr0);
179
180 oprofile_running = 0;
181
182 dbg("stop on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0);
183
184 mb();
185}
186
187/* Fake functions used by canonicalize_pc */
188static void __attribute_used__ hypervisor_bucket(void)
189{
190}
191
192static void __attribute_used__ rtas_bucket(void)
193{
194}
195
196static void __attribute_used__ kernel_unknown_bucket(void)
197{
198}
199
200static unsigned long check_spinlock_pc(struct pt_regs *regs,
201 unsigned long profile_pc)
202{
203 unsigned long pc = instruction_pointer(regs);
204
205 /*
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.
211 */
212 if (backtrace_spinlocks && in_lock_functions(pc) &&
213 in_lock_functions(profile_pc))
214 return regs->link;
215 else
216 return profile_pc;
217}
218
219/*
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.
223 */
224static unsigned long get_pc(struct pt_regs *regs)
225{
226 unsigned long pc = mfspr(SPRN_SIAR);
227 unsigned long mmcra;
228
229 /* Cant do much about it */
230 if (!mmcra_has_sihv)
231 return check_spinlock_pc(regs, pc);
232
233 mmcra = mfspr(SPRN_MMCRA);
234
235 /* Were we in the hypervisor? */
236 if ((systemcfg->platform == PLATFORM_PSERIES_LPAR) &&
237 (mmcra & MMCRA_SIHV))
238 /* function descriptor madness */
239 return *((unsigned long *)hypervisor_bucket);
240
241 /* We were in userspace, nothing to do */
242 if (mmcra & MMCRA_SIPR)
243 return pc;
244
245#ifdef CONFIG_PPC_RTAS
246 /* Were we in RTAS? */
247 if (pc >= rtas.base && pc < (rtas.base + rtas.size))
248 /* function descriptor madness */
249 return *((unsigned long *)rtas_bucket);
250#endif
251
252 /* Were we in our exception vectors or SLB real mode miss handler? */
253 if (pc < 0x1000000UL)
254 return (unsigned long)__va(pc);
255
256 /* Not sure where we were */
257 if (pc < KERNELBASE)
258 /* function descriptor madness */
259 return *((unsigned long *)kernel_unknown_bucket);
260
261 return check_spinlock_pc(regs, pc);
262}
263
264static int get_kernel(unsigned long pc)
265{
266 int is_kernel;
267
268 if (!mmcra_has_sihv) {
269 is_kernel = (pc >= KERNELBASE);
270 } else {
271 unsigned long mmcra = mfspr(SPRN_MMCRA);
272 is_kernel = ((mmcra & MMCRA_SIPR) == 0);
273 }
274
275 return is_kernel;
276}
277
278static void power4_handle_interrupt(struct pt_regs *regs,
279 struct op_counter_config *ctr)
280{
281 unsigned long pc;
282 int is_kernel;
283 int val;
284 int i;
285 unsigned int mmcr0;
286
287 pc = get_pc(regs);
288 is_kernel = get_kernel(pc);
289
290 /* set the PMM bit (see comment below) */
291 mtmsrd(mfmsr() | MSR_PMM);
292
Anton Blancharda6908cd2005-09-06 14:52:12 +1000293 for (i = 0; i < cur_cpu_spec->num_pmcs; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 val = ctr_read(i);
295 if (val < 0) {
296 if (oprofile_running && ctr[i].enabled) {
297 oprofile_add_pc(pc, is_kernel, i);
298 ctr_write(i, reset_value[i]);
299 } else {
300 ctr_write(i, 0);
301 }
302 }
303 }
304
305 mmcr0 = mfspr(SPRN_MMCR0);
306
307 /* reset the perfmon trigger */
308 mmcr0 |= MMCR0_PMXE;
309
310 /*
311 * We must clear the PMAO bit on some (GQ) chips. Just do it
312 * all the time
313 */
314 mmcr0 &= ~MMCR0_PMAO;
315
316 /*
317 * now clear the freeze bit, counting will not start until we
318 * rfid from this exception, because only at that point will
319 * the PMM bit be cleared
320 */
321 mmcr0 &= ~MMCR0_FC;
322 mtspr(SPRN_MMCR0, mmcr0);
323}
324
Stephen Rothwella3e48c12005-09-19 23:18:31 +1000325struct op_powerpc_model op_model_power4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 .reg_setup = power4_reg_setup,
327 .cpu_setup = power4_cpu_setup,
328 .start = power4_start,
329 .stop = power4_stop,
330 .handle_interrupt = power4_handle_interrupt,
331};