blob: dd0aec9c3ce1df31f45368087a0496edb006a937 [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)
21#define M_PERFCTL_EVENT(event) ((event) << 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)
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
34#define WHAT (M_TC_EN_VPE | M_PERFCTL_VPEID(smp_processor_id()))
35#else
36#define WHAT 0
37#endif
38
39#define __define_perf_accessors(r, n, np) \
40 \
41static inline unsigned int r_c0_ ## r ## n(void) \
42{ \
43 unsigned int cpu = smp_processor_id(); \
44 \
45 switch (cpu) { \
46 case 0: \
47 return read_c0_ ## r ## n(); \
48 case 1: \
49 return read_c0_ ## r ## np(); \
50 default: \
51 BUG(); \
52 } \
Thiemo Seufer30f244a2006-07-07 10:38:51 +010053 return 0; \
Ralf Baechle92c7b622006-06-23 18:39:00 +010054} \
55 \
56static inline void w_c0_ ## r ## n(unsigned int value) \
57{ \
58 unsigned int cpu = smp_processor_id(); \
59 \
60 switch (cpu) { \
61 case 0: \
62 write_c0_ ## r ## n(value); \
63 return; \
64 case 1: \
65 write_c0_ ## r ## np(value); \
66 return; \
67 default: \
68 BUG(); \
69 } \
Thiemo Seufer30f244a2006-07-07 10:38:51 +010070 return; \
Ralf Baechle92c7b622006-06-23 18:39:00 +010071} \
72
73__define_perf_accessors(perfcntr, 0, 2)
74__define_perf_accessors(perfcntr, 1, 3)
75__define_perf_accessors(perfcntr, 2, 2)
76__define_perf_accessors(perfcntr, 3, 2)
77
78__define_perf_accessors(perfctrl, 0, 2)
79__define_perf_accessors(perfctrl, 1, 3)
80__define_perf_accessors(perfctrl, 2, 2)
81__define_perf_accessors(perfctrl, 3, 2)
Ralf Baechle54176732005-02-07 02:54:29 +000082
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +090083struct op_mips_model op_model_mipsxx_ops;
Ralf Baechle54176732005-02-07 02:54:29 +000084
85static struct mipsxx_register_config {
86 unsigned int control[4];
87 unsigned int counter[4];
88} reg;
89
90/* Compute all of the registers in preparation for enabling profiling. */
91
92static void mipsxx_reg_setup(struct op_counter_config *ctr)
93{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +090094 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +000095 int i;
96
97 /* Compute the performance counter control word. */
98 /* For now count kernel and user mode */
99 for (i = 0; i < counters; i++) {
100 reg.control[i] = 0;
101 reg.counter[i] = 0;
102
103 if (!ctr[i].enabled)
104 continue;
105
106 reg.control[i] = M_PERFCTL_EVENT(ctr[i].event) |
107 M_PERFCTL_INTERRUPT_ENABLE;
108 if (ctr[i].kernel)
109 reg.control[i] |= M_PERFCTL_KERNEL;
110 if (ctr[i].user)
111 reg.control[i] |= M_PERFCTL_USER;
112 if (ctr[i].exl)
113 reg.control[i] |= M_PERFCTL_EXL;
114 reg.counter[i] = 0x80000000 - ctr[i].count;
115 }
116}
117
118/* Program all of the registers in preparation for enabling profiling. */
119
120static void mipsxx_cpu_setup (void *args)
121{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900122 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000123
124 switch (counters) {
125 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100126 w_c0_perfctrl3(0);
127 w_c0_perfcntr3(reg.counter[3]);
Ralf Baechle54176732005-02-07 02:54:29 +0000128 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100129 w_c0_perfctrl2(0);
130 w_c0_perfcntr2(reg.counter[2]);
Ralf Baechle54176732005-02-07 02:54:29 +0000131 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100132 w_c0_perfctrl1(0);
133 w_c0_perfcntr1(reg.counter[1]);
Ralf Baechle54176732005-02-07 02:54:29 +0000134 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100135 w_c0_perfctrl0(0);
136 w_c0_perfcntr0(reg.counter[0]);
Ralf Baechle54176732005-02-07 02:54:29 +0000137 }
138}
139
140/* Start all counters on current CPU */
141static void mipsxx_cpu_start(void *args)
142{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900143 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000144
145 switch (counters) {
146 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100147 w_c0_perfctrl3(WHAT | reg.control[3]);
Ralf Baechle54176732005-02-07 02:54:29 +0000148 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100149 w_c0_perfctrl2(WHAT | reg.control[2]);
Ralf Baechle54176732005-02-07 02:54:29 +0000150 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100151 w_c0_perfctrl1(WHAT | reg.control[1]);
Ralf Baechle54176732005-02-07 02:54:29 +0000152 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100153 w_c0_perfctrl0(WHAT | reg.control[0]);
Ralf Baechle54176732005-02-07 02:54:29 +0000154 }
155}
156
157/* Stop all counters on current CPU */
158static void mipsxx_cpu_stop(void *args)
159{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900160 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000161
162 switch (counters) {
163 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100164 w_c0_perfctrl3(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000165 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100166 w_c0_perfctrl2(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000167 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100168 w_c0_perfctrl1(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000169 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100170 w_c0_perfctrl0(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000171 }
172}
173
Ralf Baechle937a8012006-10-07 19:44:33 +0100174static int mipsxx_perfcount_handler(void)
Ralf Baechle54176732005-02-07 02:54:29 +0000175{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900176 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000177 unsigned int control;
178 unsigned int counter;
Ralf Baechleba339c02005-12-09 12:29:38 +0000179 int handled = 0;
Ralf Baechle54176732005-02-07 02:54:29 +0000180
181 switch (counters) {
182#define HANDLE_COUNTER(n) \
183 case n + 1: \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100184 control = r_c0_perfctrl ## n(); \
185 counter = r_c0_perfcntr ## n(); \
Ralf Baechle54176732005-02-07 02:54:29 +0000186 if ((control & M_PERFCTL_INTERRUPT_ENABLE) && \
187 (counter & M_COUNTER_OVERFLOW)) { \
Ralf Baechle937a8012006-10-07 19:44:33 +0100188 oprofile_add_sample(get_irq_regs(), n); \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100189 w_c0_perfcntr ## n(reg.counter[n]); \
Ralf Baechleba339c02005-12-09 12:29:38 +0000190 handled = 1; \
Ralf Baechle54176732005-02-07 02:54:29 +0000191 }
192 HANDLE_COUNTER(3)
193 HANDLE_COUNTER(2)
194 HANDLE_COUNTER(1)
195 HANDLE_COUNTER(0)
196 }
Ralf Baechleba339c02005-12-09 12:29:38 +0000197
198 return handled;
Ralf Baechle54176732005-02-07 02:54:29 +0000199}
200
201#define M_CONFIG1_PC (1 << 4)
202
Ralf Baechle92c7b622006-06-23 18:39:00 +0100203static inline int __n_counters(void)
Ralf Baechle54176732005-02-07 02:54:29 +0000204{
205 if (!(read_c0_config1() & M_CONFIG1_PC))
206 return 0;
Ralf Baechle92c7b622006-06-23 18:39:00 +0100207 if (!(r_c0_perfctrl0() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000208 return 1;
Ralf Baechle92c7b622006-06-23 18:39:00 +0100209 if (!(r_c0_perfctrl1() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000210 return 2;
Ralf Baechle92c7b622006-06-23 18:39:00 +0100211 if (!(r_c0_perfctrl2() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000212 return 3;
213
214 return 4;
215}
216
Ralf Baechle92c7b622006-06-23 18:39:00 +0100217static inline int n_counters(void)
218{
219 int counters = __n_counters();
220
221#ifndef CONFIG_SMP
222 if (current_cpu_data.cputype == CPU_34K)
223 return counters >> 1;
224#endif
225
226 return counters;
227}
228
Ralf Baechle54176732005-02-07 02:54:29 +0000229static inline void reset_counters(int counters)
230{
231 switch (counters) {
232 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100233 w_c0_perfctrl3(0);
234 w_c0_perfcntr3(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000235 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100236 w_c0_perfctrl2(0);
237 w_c0_perfcntr2(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000238 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100239 w_c0_perfctrl1(0);
240 w_c0_perfcntr1(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000241 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100242 w_c0_perfctrl0(0);
243 w_c0_perfcntr0(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000244 }
245}
246
247static int __init mipsxx_init(void)
248{
249 int counters;
250
251 counters = n_counters();
Ralf Baechle9efeae92005-12-09 12:34:45 +0000252 if (counters == 0) {
253 printk(KERN_ERR "Oprofile: CPU has no performance counters\n");
Ralf Baechle54176732005-02-07 02:54:29 +0000254 return -ENODEV;
Ralf Baechle9efeae92005-12-09 12:34:45 +0000255 }
Ralf Baechle54176732005-02-07 02:54:29 +0000256
257 reset_counters(counters);
258
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900259 op_model_mipsxx_ops.num_counters = counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000260 switch (current_cpu_data.cputype) {
Ralf Baechle20659882005-12-09 12:42:13 +0000261 case CPU_20KC:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900262 op_model_mipsxx_ops.cpu_type = "mips/20K";
Ralf Baechle20659882005-12-09 12:42:13 +0000263 break;
264
Ralf Baechle54176732005-02-07 02:54:29 +0000265 case CPU_24K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900266 op_model_mipsxx_ops.cpu_type = "mips/24K";
Ralf Baechle54176732005-02-07 02:54:29 +0000267 break;
268
Ralf Baechle20659882005-12-09 12:42:13 +0000269 case CPU_25KF:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900270 op_model_mipsxx_ops.cpu_type = "mips/25K";
Ralf Baechle20659882005-12-09 12:42:13 +0000271 break;
272
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000273 case CPU_34K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900274 op_model_mipsxx_ops.cpu_type = "mips/34K";
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000275 break;
Chris Dearmanc6209532006-05-02 14:08:46 +0100276
277 case CPU_74K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900278 op_model_mipsxx_ops.cpu_type = "mips/74K";
Chris Dearmanc6209532006-05-02 14:08:46 +0100279 break;
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000280
Ralf Baechle20659882005-12-09 12:42:13 +0000281 case CPU_5KC:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900282 op_model_mipsxx_ops.cpu_type = "mips/5K";
Ralf Baechle20659882005-12-09 12:42:13 +0000283 break;
284
Mark Masonc03bc122006-01-17 12:06:32 -0800285 case CPU_SB1:
286 case CPU_SB1A:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900287 op_model_mipsxx_ops.cpu_type = "mips/sb1";
Mark Masonc03bc122006-01-17 12:06:32 -0800288 break;
289
Ralf Baechle54176732005-02-07 02:54:29 +0000290 default:
291 printk(KERN_ERR "Profiling unsupported for this CPU\n");
292
293 return -ENODEV;
294 }
295
296 perf_irq = mipsxx_perfcount_handler;
297
298 return 0;
299}
300
301static void mipsxx_exit(void)
302{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900303 reset_counters(op_model_mipsxx_ops.num_counters);
Ralf Baechle54176732005-02-07 02:54:29 +0000304
305 perf_irq = null_perf_irq;
306}
307
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900308struct op_mips_model op_model_mipsxx_ops = {
Ralf Baechle54176732005-02-07 02:54:29 +0000309 .reg_setup = mipsxx_reg_setup,
310 .cpu_setup = mipsxx_cpu_setup,
311 .init = mipsxx_init,
312 .exit = mipsxx_exit,
313 .cpu_start = mipsxx_cpu_start,
314 .cpu_stop = mipsxx_cpu_stop,
315};