blob: 1ea5c9c1010b19610943012838f5b9a00fdb5964 [file] [log] [blame]
Ralf Baechle54176732005-02-07 02:54:29 +00001/*
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
4 * for more details.
5 *
Ralf Baechle937a8012006-10-07 19:44:33 +01006 * Copyright (C) 2004, 05, 06 by Ralf Baechle
Ralf Baechle54176732005-02-07 02:54:29 +00007 * Copyright (C) 2005 by MIPS Technologies, Inc.
8 */
9#include <linux/oprofile.h>
10#include <linux/interrupt.h>
11#include <linux/smp.h>
Ralf Baechle937a8012006-10-07 19:44:33 +010012#include <asm/irq_regs.h>
Ralf Baechle54176732005-02-07 02:54:29 +000013
14#include "op_impl.h"
15
Ralf Baechle92c7b622006-06-23 18:39:00 +010016#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)
Ralf Baechle714cfe72006-10-23 00:44:02 +010021#define M_PERFCTL_EVENT(event) (((event) & 0x3f) << 5)
Ralf Baechle92c7b622006-06-23 18:39:00 +010022#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)
Ralf Baechle54176732005-02-07 02:54:29 +000030
Ralf Baechle92c7b622006-06-23 18:39:00 +010031#define M_COUNTER_OVERFLOW (1UL << 31)
32
33#ifdef CONFIG_MIPS_MT_SMP
Ralf Baechlebe609f32006-10-23 13:22:06 +010034#define WHAT (M_TC_EN_VPE | M_PERFCTL_VPEID(smp_processor_id()))
35#define vpe_id() smp_processor_id()
Ralf Baechle92c7b622006-06-23 18:39:00 +010036#else
Ralf Baechlebe609f32006-10-23 13:22:06 +010037#define WHAT 0
Ralf Baechle6f4c5bd2007-04-24 21:42:20 +010038#define vpe_id() 0
Ralf Baechle92c7b622006-06-23 18:39:00 +010039#endif
40
41#define __define_perf_accessors(r, n, np) \
42 \
43static inline unsigned int r_c0_ ## r ## n(void) \
44{ \
Ralf Baechlebe609f32006-10-23 13:22:06 +010045 unsigned int cpu = vpe_id(); \
Ralf Baechle92c7b622006-06-23 18:39:00 +010046 \
47 switch (cpu) { \
48 case 0: \
49 return read_c0_ ## r ## n(); \
50 case 1: \
51 return read_c0_ ## r ## np(); \
52 default: \
53 BUG(); \
54 } \
Thiemo Seufer30f244a2006-07-07 10:38:51 +010055 return 0; \
Ralf Baechle92c7b622006-06-23 18:39:00 +010056} \
57 \
58static inline void w_c0_ ## r ## n(unsigned int value) \
59{ \
Ralf Baechlebe609f32006-10-23 13:22:06 +010060 unsigned int cpu = vpe_id(); \
Ralf Baechle92c7b622006-06-23 18:39:00 +010061 \
62 switch (cpu) { \
63 case 0: \
64 write_c0_ ## r ## n(value); \
65 return; \
66 case 1: \
67 write_c0_ ## r ## np(value); \
68 return; \
69 default: \
70 BUG(); \
71 } \
Thiemo Seufer30f244a2006-07-07 10:38:51 +010072 return; \
Ralf Baechle92c7b622006-06-23 18:39:00 +010073} \
74
75__define_perf_accessors(perfcntr, 0, 2)
76__define_perf_accessors(perfcntr, 1, 3)
Chris Dearman795a2252007-03-01 17:58:24 +000077__define_perf_accessors(perfcntr, 2, 0)
78__define_perf_accessors(perfcntr, 3, 1)
Ralf Baechle92c7b622006-06-23 18:39:00 +010079
80__define_perf_accessors(perfctrl, 0, 2)
81__define_perf_accessors(perfctrl, 1, 3)
Chris Dearman795a2252007-03-01 17:58:24 +000082__define_perf_accessors(perfctrl, 2, 0)
83__define_perf_accessors(perfctrl, 3, 1)
Ralf Baechle54176732005-02-07 02:54:29 +000084
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +090085struct op_mips_model op_model_mipsxx_ops;
Ralf Baechle54176732005-02-07 02:54:29 +000086
87static struct mipsxx_register_config {
88 unsigned int control[4];
89 unsigned int counter[4];
90} reg;
91
92/* Compute all of the registers in preparation for enabling profiling. */
93
94static void mipsxx_reg_setup(struct op_counter_config *ctr)
95{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +090096 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +000097 int i;
98
99 /* Compute the performance counter control word. */
Ralf Baechle54176732005-02-07 02:54:29 +0000100 for (i = 0; i < counters; i++) {
101 reg.control[i] = 0;
102 reg.counter[i] = 0;
103
104 if (!ctr[i].enabled)
105 continue;
106
107 reg.control[i] = M_PERFCTL_EVENT(ctr[i].event) |
108 M_PERFCTL_INTERRUPT_ENABLE;
109 if (ctr[i].kernel)
110 reg.control[i] |= M_PERFCTL_KERNEL;
111 if (ctr[i].user)
112 reg.control[i] |= M_PERFCTL_USER;
113 if (ctr[i].exl)
114 reg.control[i] |= M_PERFCTL_EXL;
115 reg.counter[i] = 0x80000000 - ctr[i].count;
116 }
117}
118
119/* Program all of the registers in preparation for enabling profiling. */
120
121static void mipsxx_cpu_setup (void *args)
122{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900123 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000124
125 switch (counters) {
126 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100127 w_c0_perfctrl3(0);
128 w_c0_perfcntr3(reg.counter[3]);
Ralf Baechle54176732005-02-07 02:54:29 +0000129 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100130 w_c0_perfctrl2(0);
131 w_c0_perfcntr2(reg.counter[2]);
Ralf Baechle54176732005-02-07 02:54:29 +0000132 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100133 w_c0_perfctrl1(0);
134 w_c0_perfcntr1(reg.counter[1]);
Ralf Baechle54176732005-02-07 02:54:29 +0000135 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100136 w_c0_perfctrl0(0);
137 w_c0_perfcntr0(reg.counter[0]);
Ralf Baechle54176732005-02-07 02:54:29 +0000138 }
139}
140
141/* Start all counters on current CPU */
142static void mipsxx_cpu_start(void *args)
143{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900144 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000145
146 switch (counters) {
147 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100148 w_c0_perfctrl3(WHAT | reg.control[3]);
Ralf Baechle54176732005-02-07 02:54:29 +0000149 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100150 w_c0_perfctrl2(WHAT | reg.control[2]);
Ralf Baechle54176732005-02-07 02:54:29 +0000151 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100152 w_c0_perfctrl1(WHAT | reg.control[1]);
Ralf Baechle54176732005-02-07 02:54:29 +0000153 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100154 w_c0_perfctrl0(WHAT | reg.control[0]);
Ralf Baechle54176732005-02-07 02:54:29 +0000155 }
156}
157
158/* Stop all counters on current CPU */
159static void mipsxx_cpu_stop(void *args)
160{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900161 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000162
163 switch (counters) {
164 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100165 w_c0_perfctrl3(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000166 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100167 w_c0_perfctrl2(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000168 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100169 w_c0_perfctrl1(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000170 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100171 w_c0_perfctrl0(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000172 }
173}
174
Ralf Baechle937a8012006-10-07 19:44:33 +0100175static int mipsxx_perfcount_handler(void)
Ralf Baechle54176732005-02-07 02:54:29 +0000176{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900177 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000178 unsigned int control;
179 unsigned int counter;
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100180 int handled = IRQ_NONE;
181
182 if (cpu_has_mips_r2 && !(read_c0_cause() & (1 << 26)))
183 return handled;
Ralf Baechle54176732005-02-07 02:54:29 +0000184
185 switch (counters) {
186#define HANDLE_COUNTER(n) \
187 case n + 1: \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100188 control = r_c0_perfctrl ## n(); \
189 counter = r_c0_perfcntr ## n(); \
Ralf Baechle54176732005-02-07 02:54:29 +0000190 if ((control & M_PERFCTL_INTERRUPT_ENABLE) && \
191 (counter & M_COUNTER_OVERFLOW)) { \
Ralf Baechle937a8012006-10-07 19:44:33 +0100192 oprofile_add_sample(get_irq_regs(), n); \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100193 w_c0_perfcntr ## n(reg.counter[n]); \
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100194 handled = IRQ_HANDLED; \
Ralf Baechle54176732005-02-07 02:54:29 +0000195 }
196 HANDLE_COUNTER(3)
197 HANDLE_COUNTER(2)
198 HANDLE_COUNTER(1)
199 HANDLE_COUNTER(0)
200 }
Ralf Baechleba339c02005-12-09 12:29:38 +0000201
202 return handled;
Ralf Baechle54176732005-02-07 02:54:29 +0000203}
204
205#define M_CONFIG1_PC (1 << 4)
206
Ralf Baechle92c7b622006-06-23 18:39:00 +0100207static inline int __n_counters(void)
Ralf Baechle54176732005-02-07 02:54:29 +0000208{
209 if (!(read_c0_config1() & M_CONFIG1_PC))
210 return 0;
Ralf Baechle92c7b622006-06-23 18:39:00 +0100211 if (!(r_c0_perfctrl0() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000212 return 1;
Ralf Baechle92c7b622006-06-23 18:39:00 +0100213 if (!(r_c0_perfctrl1() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000214 return 2;
Ralf Baechle92c7b622006-06-23 18:39:00 +0100215 if (!(r_c0_perfctrl2() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000216 return 3;
217
218 return 4;
219}
220
Ralf Baechle92c7b622006-06-23 18:39:00 +0100221static inline int n_counters(void)
222{
Ralf Baechle714cfe72006-10-23 00:44:02 +0100223 int counters;
224
225 switch (current_cpu_data.cputype) {
226 case CPU_R10000:
227 counters = 2;
Ralf Baechle148171b2007-02-28 15:34:22 +0000228 break;
Ralf Baechle714cfe72006-10-23 00:44:02 +0100229
230 case CPU_R12000:
231 case CPU_R14000:
232 counters = 4;
Ralf Baechle148171b2007-02-28 15:34:22 +0000233 break;
Ralf Baechle714cfe72006-10-23 00:44:02 +0100234
235 default:
236 counters = __n_counters();
237 }
Ralf Baechle92c7b622006-06-23 18:39:00 +0100238
Ralf Baechle92c7b622006-06-23 18:39:00 +0100239 return counters;
240}
241
Ralf Baechle54176732005-02-07 02:54:29 +0000242static inline void reset_counters(int counters)
243{
244 switch (counters) {
245 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100246 w_c0_perfctrl3(0);
247 w_c0_perfcntr3(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000248 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100249 w_c0_perfctrl2(0);
250 w_c0_perfcntr2(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000251 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100252 w_c0_perfctrl1(0);
253 w_c0_perfcntr1(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000254 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100255 w_c0_perfctrl0(0);
256 w_c0_perfcntr0(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000257 }
258}
259
260static int __init mipsxx_init(void)
261{
262 int counters;
263
264 counters = n_counters();
Ralf Baechle9efeae92005-12-09 12:34:45 +0000265 if (counters == 0) {
266 printk(KERN_ERR "Oprofile: CPU has no performance counters\n");
Ralf Baechle54176732005-02-07 02:54:29 +0000267 return -ENODEV;
Ralf Baechle9efeae92005-12-09 12:34:45 +0000268 }
Ralf Baechle54176732005-02-07 02:54:29 +0000269
270 reset_counters(counters);
271
Chris Dearman795a2252007-03-01 17:58:24 +0000272#ifdef CONFIG_MIPS_MT_SMP
273 counters >>= 1;
274#endif
275
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900276 op_model_mipsxx_ops.num_counters = counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000277 switch (current_cpu_data.cputype) {
Ralf Baechle20659882005-12-09 12:42:13 +0000278 case CPU_20KC:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900279 op_model_mipsxx_ops.cpu_type = "mips/20K";
Ralf Baechle20659882005-12-09 12:42:13 +0000280 break;
281
Ralf Baechle54176732005-02-07 02:54:29 +0000282 case CPU_24K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900283 op_model_mipsxx_ops.cpu_type = "mips/24K";
Ralf Baechle54176732005-02-07 02:54:29 +0000284 break;
285
Ralf Baechle20659882005-12-09 12:42:13 +0000286 case CPU_25KF:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900287 op_model_mipsxx_ops.cpu_type = "mips/25K";
Ralf Baechle20659882005-12-09 12:42:13 +0000288 break;
289
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000290 case CPU_34K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900291 op_model_mipsxx_ops.cpu_type = "mips/34K";
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000292 break;
Chris Dearmanc6209532006-05-02 14:08:46 +0100293
294 case CPU_74K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900295 op_model_mipsxx_ops.cpu_type = "mips/74K";
Chris Dearmanc6209532006-05-02 14:08:46 +0100296 break;
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000297
Ralf Baechle20659882005-12-09 12:42:13 +0000298 case CPU_5KC:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900299 op_model_mipsxx_ops.cpu_type = "mips/5K";
Ralf Baechle20659882005-12-09 12:42:13 +0000300 break;
301
Ralf Baechle714cfe72006-10-23 00:44:02 +0100302 case CPU_R10000:
303 if ((current_cpu_data.processor_id & 0xff) == 0x20)
304 op_model_mipsxx_ops.cpu_type = "mips/r10000-v2.x";
305 else
306 op_model_mipsxx_ops.cpu_type = "mips/r10000";
307 break;
308
309 case CPU_R12000:
310 case CPU_R14000:
311 op_model_mipsxx_ops.cpu_type = "mips/r12000";
312 break;
313
Mark Masonc03bc122006-01-17 12:06:32 -0800314 case CPU_SB1:
315 case CPU_SB1A:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900316 op_model_mipsxx_ops.cpu_type = "mips/sb1";
Mark Masonc03bc122006-01-17 12:06:32 -0800317 break;
318
Ralf Baechle54176732005-02-07 02:54:29 +0000319 default:
320 printk(KERN_ERR "Profiling unsupported for this CPU\n");
321
322 return -ENODEV;
323 }
324
325 perf_irq = mipsxx_perfcount_handler;
326
327 return 0;
328}
329
330static void mipsxx_exit(void)
331{
Chris Dearman795a2252007-03-01 17:58:24 +0000332 int counters = op_model_mipsxx_ops.num_counters;
333#ifdef CONFIG_MIPS_MT_SMP
334 counters <<= 1;
335#endif
336 reset_counters(counters);
Ralf Baechle54176732005-02-07 02:54:29 +0000337
338 perf_irq = null_perf_irq;
339}
340
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900341struct op_mips_model op_model_mipsxx_ops = {
Ralf Baechle54176732005-02-07 02:54:29 +0000342 .reg_setup = mipsxx_reg_setup,
343 .cpu_setup = mipsxx_cpu_setup,
344 .init = mipsxx_init,
345 .exit = mipsxx_exit,
346 .cpu_start = mipsxx_cpu_start,
347 .cpu_stop = mipsxx_cpu_stop,
348};