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/oprofile_impl.h>
21 static void ctrl_write(unsigned int i, unsigned int val)
24 unsigned long shift = 0, mask = 0;
26 dbg("ctrl_write %d %x\n", i, val);
30 tmp = mfspr(SPRN_MMCR0);
35 tmp = mfspr(SPRN_MMCR0);
40 tmp = mfspr(SPRN_MMCR1);
45 tmp = mfspr(SPRN_MMCR1);
50 tmp = mfspr(SPRN_MMCR1);
55 tmp = mfspr(SPRN_MMCR1);
60 tmp = mfspr(SPRN_MMCR1);
65 tmp = mfspr(SPRN_MMCR1);
71 tmp = tmp & ~(mask << shift);
77 mtspr(SPRN_MMCR0, tmp);
80 mtspr(SPRN_MMCR1, tmp);
83 dbg("ctrl_write mmcr0 %lx mmcr1 %lx\n", mfspr(SPRN_MMCR0),
87 static unsigned long reset_value[OP_MAX_COUNTER];
89 static int num_counters;
91 static void rs64_reg_setup(struct op_counter_config *ctr,
92 struct op_system_config *sys,
97 num_counters = num_ctrs;
99 for (i = 0; i < num_counters; ++i)
100 reset_value[i] = 0x80000000UL - ctr[i].count;
102 /* XXX setup user and kernel profiling */
105 static void rs64_cpu_setup(void *unused)
109 /* reset MMCR0 and set the freeze bit */
111 mtspr(SPRN_MMCR0, mmcr0);
113 /* reset MMCR1, MMCRA */
114 mtspr(SPRN_MMCR1, 0);
116 if (cpu_has_feature(CPU_FTR_MMCRA))
117 mtspr(SPRN_MMCRA, 0);
119 mmcr0 |= MMCR0_FCM1|MMCR0_PMXE|MMCR0_FCECE;
120 /* Only applies to POWER3, but should be safe on RS64 */
121 mmcr0 |= MMCR0_PMC1CE|MMCR0_PMCjCE;
122 mtspr(SPRN_MMCR0, mmcr0);
124 dbg("setup on cpu %d, mmcr0 %lx\n", smp_processor_id(),
126 dbg("setup on cpu %d, mmcr1 %lx\n", smp_processor_id(),
130 static void rs64_start(struct op_counter_config *ctr)
135 /* set the PMM bit (see comment below) */
136 mtmsrd(mfmsr() | MSR_PMM);
138 for (i = 0; i < num_counters; ++i) {
139 if (ctr[i].enabled) {
140 ctr_write(i, reset_value[i]);
141 ctrl_write(i, ctr[i].event);
147 mmcr0 = mfspr(SPRN_MMCR0);
150 * now clear the freeze bit, counting will not start until we
151 * rfid from this excetion, because only at that point will
152 * the PMM bit be cleared
155 mtspr(SPRN_MMCR0, mmcr0);
157 dbg("start on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0);
160 static void rs64_stop(void)
164 /* freeze counters */
165 mmcr0 = mfspr(SPRN_MMCR0);
167 mtspr(SPRN_MMCR0, mmcr0);
169 dbg("stop on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0);
174 static void rs64_handle_interrupt(struct pt_regs *regs,
175 struct op_counter_config *ctr)
180 unsigned long pc = mfspr(SPRN_SIAR);
181 int is_kernel = (pc >= KERNELBASE);
183 /* set the PMM bit (see comment below) */
184 mtmsrd(mfmsr() | MSR_PMM);
186 for (i = 0; i < num_counters; ++i) {
189 if (ctr[i].enabled) {
190 oprofile_add_pc(pc, is_kernel, i);
191 ctr_write(i, reset_value[i]);
198 mmcr0 = mfspr(SPRN_MMCR0);
200 /* reset the perfmon trigger */
204 * now clear the freeze bit, counting will not start until we
205 * rfid from this exception, because only at that point will
206 * the PMM bit be cleared
209 mtspr(SPRN_MMCR0, mmcr0);
212 struct op_powerpc_model op_model_rs64 = {
213 .reg_setup = rs64_reg_setup,
214 .cpu_setup = rs64_cpu_setup,
217 .handle_interrupt = rs64_handle_interrupt,