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/firmware.h>
14 #include <asm/ptrace.h>
15 #include <asm/system.h>
16 #include <asm/processor.h>
17 #include <asm/cputable.h>
19 #include <asm/oprofile_impl.h>
24 static unsigned long reset_value
[OP_MAX_COUNTER
];
26 static int oprofile_running
;
28 /* mmcr values are set in power4_reg_setup, used in power4_cpu_setup */
33 static void power4_reg_setup(struct op_counter_config
*ctr
,
34 struct op_system_config
*sys
,
40 * The performance counter event settings are given in the mmcr0,
41 * mmcr1 and mmcra values passed from the user in the
42 * op_system_config structure (sys variable).
44 mmcr0_val
= sys
->mmcr0
;
45 mmcr1_val
= sys
->mmcr1
;
46 mmcra_val
= sys
->mmcra
;
48 for (i
= 0; i
< cur_cpu_spec
->num_pmcs
; ++i
)
49 reset_value
[i
] = 0x80000000UL
- ctr
[i
].count
;
51 /* setup user and kernel profiling */
52 if (sys
->enable_kernel
)
53 mmcr0_val
&= ~MMCR0_KERNEL_DISABLE
;
55 mmcr0_val
|= MMCR0_KERNEL_DISABLE
;
58 mmcr0_val
&= ~MMCR0_PROBLEM_DISABLE
;
60 mmcr0_val
|= MMCR0_PROBLEM_DISABLE
;
63 extern void ppc64_enable_pmcs(void);
66 * Older CPUs require the MMCRA sample bit to be always set, but newer
67 * CPUs only want it set for some groups. Eventually we will remove all
68 * knowledge of this bit in the kernel, oprofile userspace should be
69 * setting it when required.
71 * In order to keep current installations working we force the bit for
72 * those older CPUs. Once everyone has updated their oprofile userspace we
73 * can remove this hack.
75 static inline int mmcra_must_set_sample(void)
77 if (__is_processor(PV_POWER4
) || __is_processor(PV_POWER4p
) ||
78 __is_processor(PV_970
) || __is_processor(PV_970FX
) ||
79 __is_processor(PV_970MP
))
85 static void power4_cpu_setup(void *unused
)
87 unsigned int mmcr0
= mmcr0_val
;
88 unsigned long mmcra
= mmcra_val
;
92 /* set the freeze bit */
94 mtspr(SPRN_MMCR0
, mmcr0
);
96 mmcr0
|= MMCR0_FCM1
|MMCR0_PMXE
|MMCR0_FCECE
;
97 mmcr0
|= MMCR0_PMC1CE
|MMCR0_PMCjCE
;
98 mtspr(SPRN_MMCR0
, mmcr0
);
100 mtspr(SPRN_MMCR1
, mmcr1_val
);
102 if (mmcra_must_set_sample())
103 mmcra
|= MMCRA_SAMPLE_ENABLE
;
104 mtspr(SPRN_MMCRA
, mmcra
);
106 dbg("setup on cpu %d, mmcr0 %lx\n", smp_processor_id(),
108 dbg("setup on cpu %d, mmcr1 %lx\n", smp_processor_id(),
110 dbg("setup on cpu %d, mmcra %lx\n", smp_processor_id(),
114 static void power4_start(struct op_counter_config
*ctr
)
119 /* set the PMM bit (see comment below) */
120 mtmsrd(mfmsr() | MSR_PMM
);
122 for (i
= 0; i
< cur_cpu_spec
->num_pmcs
; ++i
) {
123 if (ctr
[i
].enabled
) {
124 ctr_write(i
, reset_value
[i
]);
130 mmcr0
= mfspr(SPRN_MMCR0
);
133 * We must clear the PMAO bit on some (GQ) chips. Just do it
136 mmcr0
&= ~MMCR0_PMAO
;
139 * now clear the freeze bit, counting will not start until we
140 * rfid from this excetion, because only at that point will
141 * the PMM bit be cleared
144 mtspr(SPRN_MMCR0
, mmcr0
);
146 oprofile_running
= 1;
148 dbg("start on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0
);
151 static void power4_stop(void)
155 /* freeze counters */
156 mmcr0
= mfspr(SPRN_MMCR0
);
158 mtspr(SPRN_MMCR0
, mmcr0
);
160 oprofile_running
= 0;
162 dbg("stop on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0
);
167 /* Fake functions used by canonicalize_pc */
168 static void __attribute_used__
hypervisor_bucket(void)
172 static void __attribute_used__
rtas_bucket(void)
176 static void __attribute_used__
kernel_unknown_bucket(void)
181 * On GQ and newer the MMCRA stores the HV and PR bits at the time
182 * the SIAR was sampled. We use that to work out if the SIAR was sampled in
183 * the hypervisor, our exception vectors or RTAS.
185 static unsigned long get_pc(struct pt_regs
*regs
)
187 unsigned long pc
= mfspr(SPRN_SIAR
);
190 /* Cant do much about it */
191 if (!cur_cpu_spec
->oprofile_mmcra_sihv
)
194 mmcra
= mfspr(SPRN_MMCRA
);
196 /* Were we in the hypervisor? */
197 if (firmware_has_feature(FW_FEATURE_LPAR
) &&
198 (mmcra
& cur_cpu_spec
->oprofile_mmcra_sihv
))
199 /* function descriptor madness */
200 return *((unsigned long *)hypervisor_bucket
);
202 /* We were in userspace, nothing to do */
203 if (mmcra
& cur_cpu_spec
->oprofile_mmcra_sipr
)
206 #ifdef CONFIG_PPC_RTAS
207 /* Were we in RTAS? */
208 if (pc
>= rtas
.base
&& pc
< (rtas
.base
+ rtas
.size
))
209 /* function descriptor madness */
210 return *((unsigned long *)rtas_bucket
);
213 /* Were we in our exception vectors or SLB real mode miss handler? */
214 if (pc
< 0x1000000UL
)
215 return (unsigned long)__va(pc
);
217 /* Not sure where we were */
218 if (!is_kernel_addr(pc
))
219 /* function descriptor madness */
220 return *((unsigned long *)kernel_unknown_bucket
);
225 static int get_kernel(unsigned long pc
, unsigned long mmcra
)
229 if (!cur_cpu_spec
->oprofile_mmcra_sihv
) {
230 is_kernel
= is_kernel_addr(pc
);
232 is_kernel
= ((mmcra
& cur_cpu_spec
->oprofile_mmcra_sipr
) == 0);
238 static void power4_handle_interrupt(struct pt_regs
*regs
,
239 struct op_counter_config
*ctr
)
248 mmcra
= mfspr(SPRN_MMCRA
);
251 is_kernel
= get_kernel(pc
, mmcra
);
253 /* set the PMM bit (see comment below) */
254 mtmsrd(mfmsr() | MSR_PMM
);
256 for (i
= 0; i
< cur_cpu_spec
->num_pmcs
; ++i
) {
259 if (oprofile_running
&& ctr
[i
].enabled
) {
260 oprofile_add_ext_sample(pc
, regs
, i
, is_kernel
);
261 ctr_write(i
, reset_value
[i
]);
268 mmcr0
= mfspr(SPRN_MMCR0
);
270 /* reset the perfmon trigger */
274 * We must clear the PMAO bit on some (GQ) chips. Just do it
277 mmcr0
&= ~MMCR0_PMAO
;
279 /* Clear the appropriate bits in the MMCRA */
280 mmcra
&= ~cur_cpu_spec
->oprofile_mmcra_clear
;
281 mtspr(SPRN_MMCRA
, mmcra
);
284 * now clear the freeze bit, counting will not start until we
285 * rfid from this exception, because only at that point will
286 * the PMM bit be cleared
289 mtspr(SPRN_MMCR0
, mmcr0
);
292 struct op_powerpc_model op_model_power4
= {
293 .reg_setup
= power4_reg_setup
,
294 .cpu_setup
= power4_cpu_setup
,
295 .start
= power4_start
,
297 .handle_interrupt
= power4_handle_interrupt
,