2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2004, 05, 06 by Ralf Baechle
7 * Copyright (C) 2005 by MIPS Technologies, Inc.
9 #include <linux/oprofile.h>
10 #include <linux/interrupt.h>
11 #include <linux/smp.h>
12 #include <asm/irq_regs.h>
16 #define M_PERFCTL_EXL (1UL << 0)
17 #define M_PERFCTL_KERNEL (1UL << 1)
18 #define M_PERFCTL_SUPERVISOR (1UL << 2)
19 #define M_PERFCTL_USER (1UL << 3)
20 #define M_PERFCTL_INTERRUPT_ENABLE (1UL << 4)
21 #define M_PERFCTL_EVENT(event) (((event) & 0x3f) << 5)
22 #define M_PERFCTL_VPEID(vpe) ((vpe) << 16)
23 #define M_PERFCTL_MT_EN(filter) ((filter) << 20)
24 #define M_TC_EN_ALL M_PERFCTL_MT_EN(0)
25 #define M_TC_EN_VPE M_PERFCTL_MT_EN(1)
26 #define M_TC_EN_TC M_PERFCTL_MT_EN(2)
27 #define M_PERFCTL_TCID(tcid) ((tcid) << 22)
28 #define M_PERFCTL_WIDE (1UL << 30)
29 #define M_PERFCTL_MORE (1UL << 31)
31 #define M_COUNTER_OVERFLOW (1UL << 31)
33 #ifdef CONFIG_MIPS_MT_SMP
34 #define WHAT (M_TC_EN_VPE | M_PERFCTL_VPEID(smp_processor_id()))
35 #define vpe_id() smp_processor_id()
38 #define vpe_id() smp_processor_id()
41 #define __define_perf_accessors(r, n, np) \
43 static inline unsigned int r_c0_ ## r ## n(void) \
45 unsigned int cpu = vpe_id(); \
49 return read_c0_ ## r ## n(); \
51 return read_c0_ ## r ## np(); \
58 static inline void w_c0_ ## r ## n(unsigned int value) \
60 unsigned int cpu = vpe_id(); \
64 write_c0_ ## r ## n(value); \
67 write_c0_ ## r ## np(value); \
75 __define_perf_accessors(perfcntr, 0, 2)
76 __define_perf_accessors(perfcntr, 1, 3)
77 __define_perf_accessors(perfcntr, 2, 2)
78 __define_perf_accessors(perfcntr, 3, 2)
80 __define_perf_accessors(perfctrl, 0, 2)
81 __define_perf_accessors(perfctrl, 1, 3)
82 __define_perf_accessors(perfctrl, 2, 2)
83 __define_perf_accessors(perfctrl, 3, 2)
85 struct op_mips_model op_model_mipsxx_ops;
87 static struct mipsxx_register_config {
88 unsigned int control[4];
89 unsigned int counter[4];
92 /* Compute all of the registers in preparation for enabling profiling. */
94 static void mipsxx_reg_setup(struct op_counter_config *ctr)
96 unsigned int counters = op_model_mipsxx_ops.num_counters;
99 /* Compute the performance counter control word. */
100 /* For now count kernel and user mode */
101 for (i = 0; i < counters; i++) {
108 reg.control[i] = M_PERFCTL_EVENT(ctr[i].event) |
109 M_PERFCTL_INTERRUPT_ENABLE;
111 reg.control[i] |= M_PERFCTL_KERNEL;
113 reg.control[i] |= M_PERFCTL_USER;
115 reg.control[i] |= M_PERFCTL_EXL;
116 reg.counter[i] = 0x80000000 - ctr[i].count;
120 /* Program all of the registers in preparation for enabling profiling. */
122 static void mipsxx_cpu_setup (void *args)
124 unsigned int counters = op_model_mipsxx_ops.num_counters;
129 w_c0_perfcntr3(reg.counter[3]);
132 w_c0_perfcntr2(reg.counter[2]);
135 w_c0_perfcntr1(reg.counter[1]);
138 w_c0_perfcntr0(reg.counter[0]);
142 /* Start all counters on current CPU */
143 static void mipsxx_cpu_start(void *args)
145 unsigned int counters = op_model_mipsxx_ops.num_counters;
149 w_c0_perfctrl3(WHAT | reg.control[3]);
151 w_c0_perfctrl2(WHAT | reg.control[2]);
153 w_c0_perfctrl1(WHAT | reg.control[1]);
155 w_c0_perfctrl0(WHAT | reg.control[0]);
159 /* Stop all counters on current CPU */
160 static void mipsxx_cpu_stop(void *args)
162 unsigned int counters = op_model_mipsxx_ops.num_counters;
176 static int mipsxx_perfcount_handler(void)
178 unsigned int counters = op_model_mipsxx_ops.num_counters;
179 unsigned int control;
180 unsigned int counter;
184 #define HANDLE_COUNTER(n) \
186 control = r_c0_perfctrl ## n(); \
187 counter = r_c0_perfcntr ## n(); \
188 if ((control & M_PERFCTL_INTERRUPT_ENABLE) && \
189 (counter & M_COUNTER_OVERFLOW)) { \
190 oprofile_add_sample(get_irq_regs(), n); \
191 w_c0_perfcntr ## n(reg.counter[n]); \
203 #define M_CONFIG1_PC (1 << 4)
205 static inline int __n_counters(void)
207 if (!(read_c0_config1() & M_CONFIG1_PC))
209 if (!(r_c0_perfctrl0() & M_PERFCTL_MORE))
211 if (!(r_c0_perfctrl1() & M_PERFCTL_MORE))
213 if (!(r_c0_perfctrl2() & M_PERFCTL_MORE))
219 static inline int n_counters(void)
223 switch (current_cpu_data.cputype) {
234 counters = __n_counters();
237 #ifdef CONFIG_MIPS_MT_SMP
243 static inline void reset_counters(int counters)
261 static int __init mipsxx_init(void)
265 counters = n_counters();
267 printk(KERN_ERR "Oprofile: CPU has no performance counters\n");
271 reset_counters(counters);
273 op_model_mipsxx_ops.num_counters = counters;
274 switch (current_cpu_data.cputype) {
276 op_model_mipsxx_ops.cpu_type = "mips/20K";
280 op_model_mipsxx_ops.cpu_type = "mips/24K";
284 op_model_mipsxx_ops.cpu_type = "mips/25K";
288 op_model_mipsxx_ops.cpu_type = "mips/34K";
292 op_model_mipsxx_ops.cpu_type = "mips/74K";
296 op_model_mipsxx_ops.cpu_type = "mips/5K";
300 if ((current_cpu_data.processor_id & 0xff) == 0x20)
301 op_model_mipsxx_ops.cpu_type = "mips/r10000-v2.x";
303 op_model_mipsxx_ops.cpu_type = "mips/r10000";
308 op_model_mipsxx_ops.cpu_type = "mips/r12000";
313 op_model_mipsxx_ops.cpu_type = "mips/sb1";
317 printk(KERN_ERR "Profiling unsupported for this CPU\n");
322 perf_irq = mipsxx_perfcount_handler;
327 static void mipsxx_exit(void)
329 reset_counters(op_model_mipsxx_ops.num_counters);
331 perf_irq = null_perf_irq;
334 struct op_mips_model op_model_mipsxx_ops = {
335 .reg_setup = mipsxx_reg_setup,
336 .cpu_setup = mipsxx_cpu_setup,
339 .cpu_start = mipsxx_cpu_start,
340 .cpu_stop = mipsxx_cpu_stop,