blob: 54759f1669d3a00aca9e07fb213842b397b4b800 [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 */
Ralf Baechle5e2862e2007-12-06 09:12:28 +00009#include <linux/cpumask.h>
Ralf Baechle54176732005-02-07 02:54:29 +000010#include <linux/oprofile.h>
11#include <linux/interrupt.h>
12#include <linux/smp.h>
Ralf Baechle937a8012006-10-07 19:44:33 +010013#include <asm/irq_regs.h>
Ralf Baechle54176732005-02-07 02:54:29 +000014
15#include "op_impl.h"
16
Ralf Baechle92c7b622006-06-23 18:39:00 +010017#define M_PERFCTL_EXL (1UL << 0)
18#define M_PERFCTL_KERNEL (1UL << 1)
19#define M_PERFCTL_SUPERVISOR (1UL << 2)
20#define M_PERFCTL_USER (1UL << 3)
21#define M_PERFCTL_INTERRUPT_ENABLE (1UL << 4)
Ralf Baechle39a51102008-01-29 10:14:59 +000022#define M_PERFCTL_EVENT(event) (((event) & 0x3ff) << 5)
Ralf Baechle92c7b622006-06-23 18:39:00 +010023#define M_PERFCTL_VPEID(vpe) ((vpe) << 16)
24#define M_PERFCTL_MT_EN(filter) ((filter) << 20)
25#define M_TC_EN_ALL M_PERFCTL_MT_EN(0)
26#define M_TC_EN_VPE M_PERFCTL_MT_EN(1)
27#define M_TC_EN_TC M_PERFCTL_MT_EN(2)
28#define M_PERFCTL_TCID(tcid) ((tcid) << 22)
29#define M_PERFCTL_WIDE (1UL << 30)
30#define M_PERFCTL_MORE (1UL << 31)
Ralf Baechle54176732005-02-07 02:54:29 +000031
Ralf Baechle92c7b622006-06-23 18:39:00 +010032#define M_COUNTER_OVERFLOW (1UL << 31)
33
Dmitri Vorobiev46684732008-04-02 03:58:38 +040034static int (*save_perf_irq)(void);
35
Ralf Baechle92c7b622006-06-23 18:39:00 +010036#ifdef CONFIG_MIPS_MT_SMP
Ralf Baechle39b8d522008-04-28 17:14:26 +010037static int cpu_has_mipsmt_pertccounters;
38#define WHAT (M_TC_EN_VPE | \
39 M_PERFCTL_VPEID(cpu_data[smp_processor_id()].vpe_id))
40#define vpe_id() (cpu_has_mipsmt_pertccounters ? \
41 0 : cpu_data[smp_processor_id()].vpe_id)
Ralf Baechle5e2862e2007-12-06 09:12:28 +000042
43/*
44 * The number of bits to shift to convert between counters per core and
45 * counters per VPE. There is no reasonable interface atm to obtain the
46 * number of VPEs used by Linux and in the 34K this number is fixed to two
47 * anyways so we hardcore a few things here for the moment. The way it's
48 * done here will ensure that oprofile VSMP kernel will run right on a lesser
49 * core like a 24K also or with maxcpus=1.
50 */
51static inline unsigned int vpe_shift(void)
52{
53 if (num_possible_cpus() > 1)
54 return 1;
55
56 return 0;
57}
58
Ralf Baechle92c7b622006-06-23 18:39:00 +010059#else
Ralf Baechle5e2862e2007-12-06 09:12:28 +000060
Ralf Baechlebe609f32006-10-23 13:22:06 +010061#define WHAT 0
Ralf Baechle6f4c5bd2007-04-24 21:42:20 +010062#define vpe_id() 0
Ralf Baechle5e2862e2007-12-06 09:12:28 +000063
64static inline unsigned int vpe_shift(void)
65{
66 return 0;
67}
68
Ralf Baechle92c7b622006-06-23 18:39:00 +010069#endif
70
Ralf Baechle5e2862e2007-12-06 09:12:28 +000071static inline unsigned int counters_total_to_per_cpu(unsigned int counters)
72{
73 return counters >> vpe_shift();
74}
75
76static inline unsigned int counters_per_cpu_to_total(unsigned int counters)
77{
78 return counters << vpe_shift();
79}
80
Ralf Baechle92c7b622006-06-23 18:39:00 +010081#define __define_perf_accessors(r, n, np) \
82 \
83static inline unsigned int r_c0_ ## r ## n(void) \
84{ \
Ralf Baechlebe609f32006-10-23 13:22:06 +010085 unsigned int cpu = vpe_id(); \
Ralf Baechle92c7b622006-06-23 18:39:00 +010086 \
87 switch (cpu) { \
88 case 0: \
89 return read_c0_ ## r ## n(); \
90 case 1: \
91 return read_c0_ ## r ## np(); \
92 default: \
93 BUG(); \
94 } \
Thiemo Seufer30f244a2006-07-07 10:38:51 +010095 return 0; \
Ralf Baechle92c7b622006-06-23 18:39:00 +010096} \
97 \
98static inline void w_c0_ ## r ## n(unsigned int value) \
99{ \
Ralf Baechlebe609f32006-10-23 13:22:06 +0100100 unsigned int cpu = vpe_id(); \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100101 \
102 switch (cpu) { \
103 case 0: \
104 write_c0_ ## r ## n(value); \
105 return; \
106 case 1: \
107 write_c0_ ## r ## np(value); \
108 return; \
109 default: \
110 BUG(); \
111 } \
Thiemo Seufer30f244a2006-07-07 10:38:51 +0100112 return; \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100113} \
114
115__define_perf_accessors(perfcntr, 0, 2)
116__define_perf_accessors(perfcntr, 1, 3)
Chris Dearman795a2252007-03-01 17:58:24 +0000117__define_perf_accessors(perfcntr, 2, 0)
118__define_perf_accessors(perfcntr, 3, 1)
Ralf Baechle92c7b622006-06-23 18:39:00 +0100119
120__define_perf_accessors(perfctrl, 0, 2)
121__define_perf_accessors(perfctrl, 1, 3)
Chris Dearman795a2252007-03-01 17:58:24 +0000122__define_perf_accessors(perfctrl, 2, 0)
123__define_perf_accessors(perfctrl, 3, 1)
Ralf Baechle54176732005-02-07 02:54:29 +0000124
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900125struct op_mips_model op_model_mipsxx_ops;
Ralf Baechle54176732005-02-07 02:54:29 +0000126
127static struct mipsxx_register_config {
128 unsigned int control[4];
129 unsigned int counter[4];
130} reg;
131
132/* Compute all of the registers in preparation for enabling profiling. */
133
134static void mipsxx_reg_setup(struct op_counter_config *ctr)
135{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900136 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000137 int i;
138
139 /* Compute the performance counter control word. */
Ralf Baechle54176732005-02-07 02:54:29 +0000140 for (i = 0; i < counters; i++) {
141 reg.control[i] = 0;
142 reg.counter[i] = 0;
143
144 if (!ctr[i].enabled)
145 continue;
146
147 reg.control[i] = M_PERFCTL_EVENT(ctr[i].event) |
148 M_PERFCTL_INTERRUPT_ENABLE;
149 if (ctr[i].kernel)
150 reg.control[i] |= M_PERFCTL_KERNEL;
151 if (ctr[i].user)
152 reg.control[i] |= M_PERFCTL_USER;
153 if (ctr[i].exl)
154 reg.control[i] |= M_PERFCTL_EXL;
155 reg.counter[i] = 0x80000000 - ctr[i].count;
156 }
157}
158
159/* Program all of the registers in preparation for enabling profiling. */
160
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100161static void mipsxx_cpu_setup(void *args)
Ralf Baechle54176732005-02-07 02:54:29 +0000162{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900163 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000164
165 switch (counters) {
166 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100167 w_c0_perfctrl3(0);
168 w_c0_perfcntr3(reg.counter[3]);
Ralf Baechle54176732005-02-07 02:54:29 +0000169 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100170 w_c0_perfctrl2(0);
171 w_c0_perfcntr2(reg.counter[2]);
Ralf Baechle54176732005-02-07 02:54:29 +0000172 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100173 w_c0_perfctrl1(0);
174 w_c0_perfcntr1(reg.counter[1]);
Ralf Baechle54176732005-02-07 02:54:29 +0000175 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100176 w_c0_perfctrl0(0);
177 w_c0_perfcntr0(reg.counter[0]);
Ralf Baechle54176732005-02-07 02:54:29 +0000178 }
179}
180
181/* Start all counters on current CPU */
182static void mipsxx_cpu_start(void *args)
183{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900184 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000185
186 switch (counters) {
187 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100188 w_c0_perfctrl3(WHAT | reg.control[3]);
Ralf Baechle54176732005-02-07 02:54:29 +0000189 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100190 w_c0_perfctrl2(WHAT | reg.control[2]);
Ralf Baechle54176732005-02-07 02:54:29 +0000191 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100192 w_c0_perfctrl1(WHAT | reg.control[1]);
Ralf Baechle54176732005-02-07 02:54:29 +0000193 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100194 w_c0_perfctrl0(WHAT | reg.control[0]);
Ralf Baechle54176732005-02-07 02:54:29 +0000195 }
196}
197
198/* Stop all counters on current CPU */
199static void mipsxx_cpu_stop(void *args)
200{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900201 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000202
203 switch (counters) {
204 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100205 w_c0_perfctrl3(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000206 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100207 w_c0_perfctrl2(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000208 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100209 w_c0_perfctrl1(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000210 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100211 w_c0_perfctrl0(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000212 }
213}
214
Ralf Baechle937a8012006-10-07 19:44:33 +0100215static int mipsxx_perfcount_handler(void)
Ralf Baechle54176732005-02-07 02:54:29 +0000216{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900217 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000218 unsigned int control;
219 unsigned int counter;
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100220 int handled = IRQ_NONE;
221
222 if (cpu_has_mips_r2 && !(read_c0_cause() & (1 << 26)))
223 return handled;
Ralf Baechle54176732005-02-07 02:54:29 +0000224
225 switch (counters) {
226#define HANDLE_COUNTER(n) \
227 case n + 1: \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100228 control = r_c0_perfctrl ## n(); \
229 counter = r_c0_perfcntr ## n(); \
Ralf Baechle54176732005-02-07 02:54:29 +0000230 if ((control & M_PERFCTL_INTERRUPT_ENABLE) && \
231 (counter & M_COUNTER_OVERFLOW)) { \
Ralf Baechle937a8012006-10-07 19:44:33 +0100232 oprofile_add_sample(get_irq_regs(), n); \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100233 w_c0_perfcntr ## n(reg.counter[n]); \
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100234 handled = IRQ_HANDLED; \
Ralf Baechle54176732005-02-07 02:54:29 +0000235 }
236 HANDLE_COUNTER(3)
237 HANDLE_COUNTER(2)
238 HANDLE_COUNTER(1)
239 HANDLE_COUNTER(0)
240 }
Ralf Baechleba339c02005-12-09 12:29:38 +0000241
242 return handled;
Ralf Baechle54176732005-02-07 02:54:29 +0000243}
244
245#define M_CONFIG1_PC (1 << 4)
246
Ralf Baechle92c7b622006-06-23 18:39:00 +0100247static inline int __n_counters(void)
Ralf Baechle54176732005-02-07 02:54:29 +0000248{
249 if (!(read_c0_config1() & M_CONFIG1_PC))
250 return 0;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100251 if (!(read_c0_perfctrl0() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000252 return 1;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100253 if (!(read_c0_perfctrl1() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000254 return 2;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100255 if (!(read_c0_perfctrl2() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000256 return 3;
257
258 return 4;
259}
260
Ralf Baechle92c7b622006-06-23 18:39:00 +0100261static inline int n_counters(void)
262{
Ralf Baechle714cfe72006-10-23 00:44:02 +0100263 int counters;
264
Ralf Baechle10cc3522007-10-11 23:46:15 +0100265 switch (current_cpu_type()) {
Ralf Baechle714cfe72006-10-23 00:44:02 +0100266 case CPU_R10000:
267 counters = 2;
Ralf Baechle148171b2007-02-28 15:34:22 +0000268 break;
Ralf Baechle714cfe72006-10-23 00:44:02 +0100269
270 case CPU_R12000:
271 case CPU_R14000:
272 counters = 4;
Ralf Baechle148171b2007-02-28 15:34:22 +0000273 break;
Ralf Baechle714cfe72006-10-23 00:44:02 +0100274
275 default:
276 counters = __n_counters();
277 }
Ralf Baechle92c7b622006-06-23 18:39:00 +0100278
Ralf Baechle92c7b622006-06-23 18:39:00 +0100279 return counters;
280}
281
Ralf Baechle39b8d522008-04-28 17:14:26 +0100282static void reset_counters(void *arg)
Ralf Baechle54176732005-02-07 02:54:29 +0000283{
Thiemo Seufer005ca9a2008-05-06 11:23:33 +0100284 int counters = (int)(long)arg;
Ralf Baechle54176732005-02-07 02:54:29 +0000285 switch (counters) {
286 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100287 w_c0_perfctrl3(0);
288 w_c0_perfcntr3(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000289 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100290 w_c0_perfctrl2(0);
291 w_c0_perfcntr2(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000292 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100293 w_c0_perfctrl1(0);
294 w_c0_perfcntr1(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000295 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100296 w_c0_perfctrl0(0);
297 w_c0_perfcntr0(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000298 }
299}
300
301static int __init mipsxx_init(void)
302{
303 int counters;
304
305 counters = n_counters();
Ralf Baechle9efeae92005-12-09 12:34:45 +0000306 if (counters == 0) {
307 printk(KERN_ERR "Oprofile: CPU has no performance counters\n");
Ralf Baechle54176732005-02-07 02:54:29 +0000308 return -ENODEV;
Ralf Baechle9efeae92005-12-09 12:34:45 +0000309 }
Ralf Baechle54176732005-02-07 02:54:29 +0000310
Ralf Baechle39b8d522008-04-28 17:14:26 +0100311#ifdef CONFIG_MIPS_MT_SMP
312 cpu_has_mipsmt_pertccounters = read_c0_config7() & (1<<19);
313 if (!cpu_has_mipsmt_pertccounters)
314 counters = counters_total_to_per_cpu(counters);
315#endif
Ingo Molnarf6f88e92008-07-15 22:08:52 +0200316 on_each_cpu(reset_counters, (void *)(long)counters, 1);
Chris Dearman795a2252007-03-01 17:58:24 +0000317
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900318 op_model_mipsxx_ops.num_counters = counters;
Ralf Baechle10cc3522007-10-11 23:46:15 +0100319 switch (current_cpu_type()) {
Ralf Baechle20659882005-12-09 12:42:13 +0000320 case CPU_20KC:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900321 op_model_mipsxx_ops.cpu_type = "mips/20K";
Ralf Baechle20659882005-12-09 12:42:13 +0000322 break;
323
Ralf Baechle54176732005-02-07 02:54:29 +0000324 case CPU_24K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900325 op_model_mipsxx_ops.cpu_type = "mips/24K";
Ralf Baechle54176732005-02-07 02:54:29 +0000326 break;
327
Ralf Baechle20659882005-12-09 12:42:13 +0000328 case CPU_25KF:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900329 op_model_mipsxx_ops.cpu_type = "mips/25K";
Ralf Baechle20659882005-12-09 12:42:13 +0000330 break;
331
Ralf Baechle39b8d522008-04-28 17:14:26 +0100332 case CPU_1004K:
333#if 0
334 /* FIXME: report as 34K for now */
335 op_model_mipsxx_ops.cpu_type = "mips/1004K";
336 break;
337#endif
338
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000339 case CPU_34K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900340 op_model_mipsxx_ops.cpu_type = "mips/34K";
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000341 break;
Chris Dearmanc6209532006-05-02 14:08:46 +0100342
343 case CPU_74K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900344 op_model_mipsxx_ops.cpu_type = "mips/74K";
Chris Dearmanc6209532006-05-02 14:08:46 +0100345 break;
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000346
Ralf Baechle20659882005-12-09 12:42:13 +0000347 case CPU_5KC:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900348 op_model_mipsxx_ops.cpu_type = "mips/5K";
Ralf Baechle20659882005-12-09 12:42:13 +0000349 break;
350
Ralf Baechle714cfe72006-10-23 00:44:02 +0100351 case CPU_R10000:
352 if ((current_cpu_data.processor_id & 0xff) == 0x20)
353 op_model_mipsxx_ops.cpu_type = "mips/r10000-v2.x";
354 else
355 op_model_mipsxx_ops.cpu_type = "mips/r10000";
356 break;
357
358 case CPU_R12000:
359 case CPU_R14000:
360 op_model_mipsxx_ops.cpu_type = "mips/r12000";
361 break;
362
Mark Masonc03bc122006-01-17 12:06:32 -0800363 case CPU_SB1:
364 case CPU_SB1A:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900365 op_model_mipsxx_ops.cpu_type = "mips/sb1";
Mark Masonc03bc122006-01-17 12:06:32 -0800366 break;
367
Ralf Baechle54176732005-02-07 02:54:29 +0000368 default:
369 printk(KERN_ERR "Profiling unsupported for this CPU\n");
370
371 return -ENODEV;
372 }
373
Dmitri Vorobiev46684732008-04-02 03:58:38 +0400374 save_perf_irq = perf_irq;
Ralf Baechle54176732005-02-07 02:54:29 +0000375 perf_irq = mipsxx_perfcount_handler;
376
377 return 0;
378}
379
380static void mipsxx_exit(void)
381{
Chris Dearman795a2252007-03-01 17:58:24 +0000382 int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle5e2862e2007-12-06 09:12:28 +0000383
384 counters = counters_per_cpu_to_total(counters);
Ingo Molnarf6f88e92008-07-15 22:08:52 +0200385 on_each_cpu(reset_counters, (void *)(long)counters, 1);
Ralf Baechle54176732005-02-07 02:54:29 +0000386
Dmitri Vorobiev46684732008-04-02 03:58:38 +0400387 perf_irq = save_perf_irq;
Ralf Baechle54176732005-02-07 02:54:29 +0000388}
389
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900390struct op_mips_model op_model_mipsxx_ops = {
Ralf Baechle54176732005-02-07 02:54:29 +0000391 .reg_setup = mipsxx_reg_setup,
392 .cpu_setup = mipsxx_cpu_setup,
393 .init = mipsxx_init,
394 .exit = mipsxx_exit,
395 .cpu_start = mipsxx_cpu_start,
396 .cpu_stop = mipsxx_cpu_stop,
397};