blob: 45cb27469fbaa14db9824f9635287b0507498354 [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>
Andrew Brestickera669efc2014-09-18 14:47:12 -070014#include <asm/time.h>
Ralf Baechle54176732005-02-07 02:54:29 +000015
16#include "op_impl.h"
17
Ralf Baechle70342282013-01-22 12:59:30 +010018#define M_PERFCTL_EXL (1UL << 0)
19#define M_PERFCTL_KERNEL (1UL << 1)
20#define M_PERFCTL_SUPERVISOR (1UL << 2)
21#define M_PERFCTL_USER (1UL << 3)
22#define M_PERFCTL_INTERRUPT_ENABLE (1UL << 4)
Ralf Baechle39a51102008-01-29 10:14:59 +000023#define M_PERFCTL_EVENT(event) (((event) & 0x3ff) << 5)
Ralf Baechle70342282013-01-22 12:59:30 +010024#define M_PERFCTL_VPEID(vpe) ((vpe) << 16)
Ralf Baechle92c7b622006-06-23 18:39:00 +010025#define M_PERFCTL_MT_EN(filter) ((filter) << 20)
Ralf Baechle70342282013-01-22 12:59:30 +010026#define M_TC_EN_ALL M_PERFCTL_MT_EN(0)
27#define M_TC_EN_VPE M_PERFCTL_MT_EN(1)
28#define M_TC_EN_TC M_PERFCTL_MT_EN(2)
29#define M_PERFCTL_TCID(tcid) ((tcid) << 22)
30#define M_PERFCTL_WIDE (1UL << 30)
31#define M_PERFCTL_MORE (1UL << 31)
Ralf Baechle54176732005-02-07 02:54:29 +000032
Ralf Baechle70342282013-01-22 12:59:30 +010033#define M_COUNTER_OVERFLOW (1UL << 31)
Ralf Baechle92c7b622006-06-23 18:39:00 +010034
Madhusudan Bhatc7833902012-10-31 12:01:27 +000035/* Netlogic XLR specific, count events in all threads in a core */
Ralf Baechle70342282013-01-22 12:59:30 +010036#define M_PERFCTL_COUNT_ALL_THREADS (1UL << 13)
Madhusudan Bhatc7833902012-10-31 12:01:27 +000037
Dmitri Vorobiev46684732008-04-02 03:58:38 +040038static int (*save_perf_irq)(void);
Andrew Brestickera669efc2014-09-18 14:47:12 -070039static int perfcount_irq;
Dmitri Vorobiev46684732008-04-02 03:58:38 +040040
Madhusudan Bhatc7833902012-10-31 12:01:27 +000041/*
42 * XLR has only one set of counters per core. Designate the
43 * first hardware thread in the core for setup and init.
44 * Skip CPUs with non-zero hardware thread id (4 hwt per core)
45 */
Jayachandran C83a18412013-03-25 06:51:52 +000046#if defined(CONFIG_CPU_XLR) && defined(CONFIG_SMP)
Madhusudan Bhatc7833902012-10-31 12:01:27 +000047#define oprofile_skip_cpu(c) ((cpu_logical_map(c) & 0x3) != 0)
48#else
49#define oprofile_skip_cpu(c) 0
50#endif
51
Ralf Baechle92c7b622006-06-23 18:39:00 +010052#ifdef CONFIG_MIPS_MT_SMP
Ralf Baechle39b8d522008-04-28 17:14:26 +010053static int cpu_has_mipsmt_pertccounters;
54#define WHAT (M_TC_EN_VPE | \
55 M_PERFCTL_VPEID(cpu_data[smp_processor_id()].vpe_id))
56#define vpe_id() (cpu_has_mipsmt_pertccounters ? \
57 0 : cpu_data[smp_processor_id()].vpe_id)
Ralf Baechle5e2862e2007-12-06 09:12:28 +000058
59/*
60 * The number of bits to shift to convert between counters per core and
61 * counters per VPE. There is no reasonable interface atm to obtain the
62 * number of VPEs used by Linux and in the 34K this number is fixed to two
63 * anyways so we hardcore a few things here for the moment. The way it's
64 * done here will ensure that oprofile VSMP kernel will run right on a lesser
65 * core like a 24K also or with maxcpus=1.
66 */
67static inline unsigned int vpe_shift(void)
68{
69 if (num_possible_cpus() > 1)
70 return 1;
71
72 return 0;
73}
74
Ralf Baechle92c7b622006-06-23 18:39:00 +010075#else
Ralf Baechle5e2862e2007-12-06 09:12:28 +000076
Ralf Baechlebe609f32006-10-23 13:22:06 +010077#define WHAT 0
Ralf Baechle6f4c5bd2007-04-24 21:42:20 +010078#define vpe_id() 0
Ralf Baechle5e2862e2007-12-06 09:12:28 +000079
80static inline unsigned int vpe_shift(void)
81{
82 return 0;
83}
84
Ralf Baechle92c7b622006-06-23 18:39:00 +010085#endif
86
Ralf Baechle5e2862e2007-12-06 09:12:28 +000087static inline unsigned int counters_total_to_per_cpu(unsigned int counters)
88{
89 return counters >> vpe_shift();
90}
91
92static inline unsigned int counters_per_cpu_to_total(unsigned int counters)
93{
94 return counters << vpe_shift();
95}
96
Ralf Baechle92c7b622006-06-23 18:39:00 +010097#define __define_perf_accessors(r, n, np) \
98 \
99static inline unsigned int r_c0_ ## r ## n(void) \
100{ \
Ralf Baechlebe609f32006-10-23 13:22:06 +0100101 unsigned int cpu = vpe_id(); \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100102 \
103 switch (cpu) { \
104 case 0: \
105 return read_c0_ ## r ## n(); \
106 case 1: \
107 return read_c0_ ## r ## np(); \
108 default: \
109 BUG(); \
110 } \
Thiemo Seufer30f244a2006-07-07 10:38:51 +0100111 return 0; \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100112} \
113 \
114static inline void w_c0_ ## r ## n(unsigned int value) \
115{ \
Ralf Baechlebe609f32006-10-23 13:22:06 +0100116 unsigned int cpu = vpe_id(); \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100117 \
118 switch (cpu) { \
119 case 0: \
120 write_c0_ ## r ## n(value); \
121 return; \
122 case 1: \
123 write_c0_ ## r ## np(value); \
124 return; \
125 default: \
126 BUG(); \
127 } \
Thiemo Seufer30f244a2006-07-07 10:38:51 +0100128 return; \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100129} \
130
131__define_perf_accessors(perfcntr, 0, 2)
132__define_perf_accessors(perfcntr, 1, 3)
Chris Dearman795a2252007-03-01 17:58:24 +0000133__define_perf_accessors(perfcntr, 2, 0)
134__define_perf_accessors(perfcntr, 3, 1)
Ralf Baechle92c7b622006-06-23 18:39:00 +0100135
136__define_perf_accessors(perfctrl, 0, 2)
137__define_perf_accessors(perfctrl, 1, 3)
Chris Dearman795a2252007-03-01 17:58:24 +0000138__define_perf_accessors(perfctrl, 2, 0)
139__define_perf_accessors(perfctrl, 3, 1)
Ralf Baechle54176732005-02-07 02:54:29 +0000140
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900141struct op_mips_model op_model_mipsxx_ops;
Ralf Baechle54176732005-02-07 02:54:29 +0000142
143static struct mipsxx_register_config {
144 unsigned int control[4];
145 unsigned int counter[4];
146} reg;
147
Ralf Baechle70342282013-01-22 12:59:30 +0100148/* Compute all of the registers in preparation for enabling profiling. */
Ralf Baechle54176732005-02-07 02:54:29 +0000149
150static void mipsxx_reg_setup(struct op_counter_config *ctr)
151{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900152 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000153 int i;
154
155 /* Compute the performance counter control word. */
Ralf Baechle54176732005-02-07 02:54:29 +0000156 for (i = 0; i < counters; i++) {
157 reg.control[i] = 0;
158 reg.counter[i] = 0;
159
160 if (!ctr[i].enabled)
161 continue;
162
163 reg.control[i] = M_PERFCTL_EVENT(ctr[i].event) |
Ralf Baechle70342282013-01-22 12:59:30 +0100164 M_PERFCTL_INTERRUPT_ENABLE;
Ralf Baechle54176732005-02-07 02:54:29 +0000165 if (ctr[i].kernel)
166 reg.control[i] |= M_PERFCTL_KERNEL;
167 if (ctr[i].user)
168 reg.control[i] |= M_PERFCTL_USER;
169 if (ctr[i].exl)
170 reg.control[i] |= M_PERFCTL_EXL;
Ralf Baechlecf5b2d22013-08-01 18:31:05 +0200171 if (boot_cpu_type() == CPU_XLR)
Madhusudan Bhatc7833902012-10-31 12:01:27 +0000172 reg.control[i] |= M_PERFCTL_COUNT_ALL_THREADS;
Ralf Baechle54176732005-02-07 02:54:29 +0000173 reg.counter[i] = 0x80000000 - ctr[i].count;
174 }
175}
176
Ralf Baechle70342282013-01-22 12:59:30 +0100177/* Program all of the registers in preparation for enabling profiling. */
Ralf Baechle54176732005-02-07 02:54:29 +0000178
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100179static void mipsxx_cpu_setup(void *args)
Ralf Baechle54176732005-02-07 02:54:29 +0000180{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900181 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000182
Madhusudan Bhatc7833902012-10-31 12:01:27 +0000183 if (oprofile_skip_cpu(smp_processor_id()))
184 return;
185
Ralf Baechle54176732005-02-07 02:54:29 +0000186 switch (counters) {
187 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100188 w_c0_perfctrl3(0);
189 w_c0_perfcntr3(reg.counter[3]);
Ralf Baechle54176732005-02-07 02:54:29 +0000190 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100191 w_c0_perfctrl2(0);
192 w_c0_perfcntr2(reg.counter[2]);
Ralf Baechle54176732005-02-07 02:54:29 +0000193 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100194 w_c0_perfctrl1(0);
195 w_c0_perfcntr1(reg.counter[1]);
Ralf Baechle54176732005-02-07 02:54:29 +0000196 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100197 w_c0_perfctrl0(0);
198 w_c0_perfcntr0(reg.counter[0]);
Ralf Baechle54176732005-02-07 02:54:29 +0000199 }
200}
201
202/* Start all counters on current CPU */
203static void mipsxx_cpu_start(void *args)
204{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900205 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000206
Madhusudan Bhatc7833902012-10-31 12:01:27 +0000207 if (oprofile_skip_cpu(smp_processor_id()))
208 return;
209
Ralf Baechle54176732005-02-07 02:54:29 +0000210 switch (counters) {
211 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100212 w_c0_perfctrl3(WHAT | reg.control[3]);
Ralf Baechle54176732005-02-07 02:54:29 +0000213 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100214 w_c0_perfctrl2(WHAT | reg.control[2]);
Ralf Baechle54176732005-02-07 02:54:29 +0000215 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100216 w_c0_perfctrl1(WHAT | reg.control[1]);
Ralf Baechle54176732005-02-07 02:54:29 +0000217 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100218 w_c0_perfctrl0(WHAT | reg.control[0]);
Ralf Baechle54176732005-02-07 02:54:29 +0000219 }
220}
221
222/* Stop all counters on current CPU */
223static void mipsxx_cpu_stop(void *args)
224{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900225 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000226
Madhusudan Bhatc7833902012-10-31 12:01:27 +0000227 if (oprofile_skip_cpu(smp_processor_id()))
228 return;
229
Ralf Baechle54176732005-02-07 02:54:29 +0000230 switch (counters) {
231 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100232 w_c0_perfctrl3(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000233 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100234 w_c0_perfctrl2(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000235 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100236 w_c0_perfctrl1(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000237 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100238 w_c0_perfctrl0(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000239 }
240}
241
Ralf Baechle937a8012006-10-07 19:44:33 +0100242static int mipsxx_perfcount_handler(void)
Ralf Baechle54176732005-02-07 02:54:29 +0000243{
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900244 unsigned int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle54176732005-02-07 02:54:29 +0000245 unsigned int control;
246 unsigned int counter;
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100247 int handled = IRQ_NONE;
248
James Hogan3ba50402015-01-27 21:45:48 +0000249 if (cpu_has_mips_r2 && !(read_c0_cause() & CAUSEF_PCI))
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100250 return handled;
Ralf Baechle54176732005-02-07 02:54:29 +0000251
252 switch (counters) {
253#define HANDLE_COUNTER(n) \
254 case n + 1: \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100255 control = r_c0_perfctrl ## n(); \
256 counter = r_c0_perfcntr ## n(); \
Ralf Baechle54176732005-02-07 02:54:29 +0000257 if ((control & M_PERFCTL_INTERRUPT_ENABLE) && \
258 (counter & M_COUNTER_OVERFLOW)) { \
Ralf Baechle937a8012006-10-07 19:44:33 +0100259 oprofile_add_sample(get_irq_regs(), n); \
Ralf Baechle92c7b622006-06-23 18:39:00 +0100260 w_c0_perfcntr ## n(reg.counter[n]); \
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100261 handled = IRQ_HANDLED; \
Ralf Baechle54176732005-02-07 02:54:29 +0000262 }
263 HANDLE_COUNTER(3)
264 HANDLE_COUNTER(2)
265 HANDLE_COUNTER(1)
266 HANDLE_COUNTER(0)
267 }
Ralf Baechleba339c02005-12-09 12:29:38 +0000268
269 return handled;
Ralf Baechle54176732005-02-07 02:54:29 +0000270}
271
Ralf Baechle92c7b622006-06-23 18:39:00 +0100272static inline int __n_counters(void)
Ralf Baechle54176732005-02-07 02:54:29 +0000273{
James Hogan30228c42016-05-11 13:50:53 +0100274 if (!cpu_has_perf)
Ralf Baechle54176732005-02-07 02:54:29 +0000275 return 0;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100276 if (!(read_c0_perfctrl0() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000277 return 1;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100278 if (!(read_c0_perfctrl1() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000279 return 2;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100280 if (!(read_c0_perfctrl2() & M_PERFCTL_MORE))
Ralf Baechle54176732005-02-07 02:54:29 +0000281 return 3;
282
283 return 4;
284}
285
Ralf Baechle92c7b622006-06-23 18:39:00 +0100286static inline int n_counters(void)
287{
Ralf Baechle714cfe72006-10-23 00:44:02 +0100288 int counters;
289
Ralf Baechle10cc3522007-10-11 23:46:15 +0100290 switch (current_cpu_type()) {
Ralf Baechle714cfe72006-10-23 00:44:02 +0100291 case CPU_R10000:
292 counters = 2;
Ralf Baechle148171b2007-02-28 15:34:22 +0000293 break;
Ralf Baechle714cfe72006-10-23 00:44:02 +0100294
295 case CPU_R12000:
296 case CPU_R14000:
Joshua Kinard30577392015-01-21 07:59:45 -0500297 case CPU_R16000:
Ralf Baechle714cfe72006-10-23 00:44:02 +0100298 counters = 4;
Ralf Baechle148171b2007-02-28 15:34:22 +0000299 break;
Ralf Baechle714cfe72006-10-23 00:44:02 +0100300
301 default:
302 counters = __n_counters();
303 }
Ralf Baechle92c7b622006-06-23 18:39:00 +0100304
Ralf Baechle92c7b622006-06-23 18:39:00 +0100305 return counters;
306}
307
Ralf Baechle39b8d522008-04-28 17:14:26 +0100308static void reset_counters(void *arg)
Ralf Baechle54176732005-02-07 02:54:29 +0000309{
Thiemo Seufer005ca9a2008-05-06 11:23:33 +0100310 int counters = (int)(long)arg;
Ralf Baechle54176732005-02-07 02:54:29 +0000311 switch (counters) {
312 case 4:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100313 w_c0_perfctrl3(0);
314 w_c0_perfcntr3(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000315 case 3:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100316 w_c0_perfctrl2(0);
317 w_c0_perfcntr2(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000318 case 2:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100319 w_c0_perfctrl1(0);
320 w_c0_perfcntr1(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000321 case 1:
Ralf Baechle92c7b622006-06-23 18:39:00 +0100322 w_c0_perfctrl0(0);
323 w_c0_perfcntr0(0);
Ralf Baechle54176732005-02-07 02:54:29 +0000324 }
325}
326
Felix Fietkau3572a2c2012-05-02 17:33:04 +0200327static irqreturn_t mipsxx_perfcount_int(int irq, void *dev_id)
328{
329 return mipsxx_perfcount_handler();
330}
331
Ralf Baechle54176732005-02-07 02:54:29 +0000332static int __init mipsxx_init(void)
333{
334 int counters;
335
336 counters = n_counters();
Ralf Baechle9efeae92005-12-09 12:34:45 +0000337 if (counters == 0) {
338 printk(KERN_ERR "Oprofile: CPU has no performance counters\n");
Ralf Baechle54176732005-02-07 02:54:29 +0000339 return -ENODEV;
Ralf Baechle9efeae92005-12-09 12:34:45 +0000340 }
Ralf Baechle54176732005-02-07 02:54:29 +0000341
Ralf Baechle39b8d522008-04-28 17:14:26 +0100342#ifdef CONFIG_MIPS_MT_SMP
343 cpu_has_mipsmt_pertccounters = read_c0_config7() & (1<<19);
344 if (!cpu_has_mipsmt_pertccounters)
345 counters = counters_total_to_per_cpu(counters);
346#endif
Ingo Molnarf6f88e92008-07-15 22:08:52 +0200347 on_each_cpu(reset_counters, (void *)(long)counters, 1);
Chris Dearman795a2252007-03-01 17:58:24 +0000348
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900349 op_model_mipsxx_ops.num_counters = counters;
Ralf Baechle10cc3522007-10-11 23:46:15 +0100350 switch (current_cpu_type()) {
Steven J. Hill113c62d2012-07-06 23:56:00 +0200351 case CPU_M14KC:
352 op_model_mipsxx_ops.cpu_type = "mips/M14Kc";
353 break;
354
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000355 case CPU_M14KEC:
356 op_model_mipsxx_ops.cpu_type = "mips/M14KEc";
357 break;
358
Ralf Baechle20659882005-12-09 12:42:13 +0000359 case CPU_20KC:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900360 op_model_mipsxx_ops.cpu_type = "mips/20K";
Ralf Baechle20659882005-12-09 12:42:13 +0000361 break;
362
Ralf Baechle54176732005-02-07 02:54:29 +0000363 case CPU_24K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900364 op_model_mipsxx_ops.cpu_type = "mips/24K";
Ralf Baechle54176732005-02-07 02:54:29 +0000365 break;
366
Ralf Baechle20659882005-12-09 12:42:13 +0000367 case CPU_25KF:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900368 op_model_mipsxx_ops.cpu_type = "mips/25K";
Ralf Baechle20659882005-12-09 12:42:13 +0000369 break;
370
Ralf Baechle39b8d522008-04-28 17:14:26 +0100371 case CPU_1004K:
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000372 case CPU_34K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900373 op_model_mipsxx_ops.cpu_type = "mips/34K";
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000374 break;
Chris Dearmanc6209532006-05-02 14:08:46 +0100375
Steven J. Hill442e14a2014-01-17 15:03:50 -0600376 case CPU_1074K:
Chris Dearmanc6209532006-05-02 14:08:46 +0100377 case CPU_74K:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900378 op_model_mipsxx_ops.cpu_type = "mips/74K";
Chris Dearmanc6209532006-05-02 14:08:46 +0100379 break;
Ralf Baechlefcfd9802006-02-01 17:54:30 +0000380
Leonid Yegoshin26ab96d2013-11-27 10:07:53 +0000381 case CPU_INTERAPTIV:
382 op_model_mipsxx_ops.cpu_type = "mips/interAptiv";
383 break;
384
Leonid Yegoshin708ac4b2013-11-14 16:12:27 +0000385 case CPU_PROAPTIV:
386 op_model_mipsxx_ops.cpu_type = "mips/proAptiv";
387 break;
388
James Hogan8c7f6ba2014-01-22 16:19:41 +0000389 case CPU_P5600:
390 op_model_mipsxx_ops.cpu_type = "mips/P5600";
391 break;
392
Markos Chandras4e88a862015-07-09 10:40:36 +0100393 case CPU_I6400:
394 op_model_mipsxx_ops.cpu_type = "mips/I6400";
395 break;
396
Leonid Yegoshinf36c4722014-03-04 13:34:43 +0000397 case CPU_M5150:
398 op_model_mipsxx_ops.cpu_type = "mips/M5150";
399 break;
400
Ralf Baechle20659882005-12-09 12:42:13 +0000401 case CPU_5KC:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900402 op_model_mipsxx_ops.cpu_type = "mips/5K";
Ralf Baechle20659882005-12-09 12:42:13 +0000403 break;
404
Ralf Baechle714cfe72006-10-23 00:44:02 +0100405 case CPU_R10000:
406 if ((current_cpu_data.processor_id & 0xff) == 0x20)
407 op_model_mipsxx_ops.cpu_type = "mips/r10000-v2.x";
408 else
409 op_model_mipsxx_ops.cpu_type = "mips/r10000";
410 break;
411
412 case CPU_R12000:
413 case CPU_R14000:
414 op_model_mipsxx_ops.cpu_type = "mips/r12000";
415 break;
416
Joshua Kinard30577392015-01-21 07:59:45 -0500417 case CPU_R16000:
418 op_model_mipsxx_ops.cpu_type = "mips/r16000";
419 break;
420
Mark Masonc03bc122006-01-17 12:06:32 -0800421 case CPU_SB1:
422 case CPU_SB1A:
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900423 op_model_mipsxx_ops.cpu_type = "mips/sb1";
Mark Masonc03bc122006-01-17 12:06:32 -0800424 break;
425
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100426 case CPU_LOONGSON1:
427 op_model_mipsxx_ops.cpu_type = "mips/loongson1";
428 break;
429
Madhusudan Bhatc7833902012-10-31 12:01:27 +0000430 case CPU_XLR:
431 op_model_mipsxx_ops.cpu_type = "mips/xlr";
432 break;
433
Ralf Baechle54176732005-02-07 02:54:29 +0000434 default:
435 printk(KERN_ERR "Profiling unsupported for this CPU\n");
436
437 return -ENODEV;
438 }
439
Dmitri Vorobiev46684732008-04-02 03:58:38 +0400440 save_perf_irq = perf_irq;
Ralf Baechle54176732005-02-07 02:54:29 +0000441 perf_irq = mipsxx_perfcount_handler;
442
Andrew Brestickera669efc2014-09-18 14:47:12 -0700443 if (get_c0_perfcount_int)
444 perfcount_irq = get_c0_perfcount_int();
James Hogan7eca5b12015-01-27 21:45:49 +0000445 else if (cp0_perfcount_irq >= 0)
Andrew Brestickera669efc2014-09-18 14:47:12 -0700446 perfcount_irq = MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
447 else
448 perfcount_irq = -1;
449
450 if (perfcount_irq >= 0)
451 return request_irq(perfcount_irq, mipsxx_perfcount_int,
James Hogan369a93b2015-01-27 21:45:54 +0000452 IRQF_PERCPU | IRQF_NOBALANCING |
453 IRQF_NO_THREAD | IRQF_NO_SUSPEND |
454 IRQF_SHARED,
455 "Perfcounter", save_perf_irq);
Felix Fietkau3572a2c2012-05-02 17:33:04 +0200456
Ralf Baechle54176732005-02-07 02:54:29 +0000457 return 0;
458}
459
460static void mipsxx_exit(void)
461{
Chris Dearman795a2252007-03-01 17:58:24 +0000462 int counters = op_model_mipsxx_ops.num_counters;
Ralf Baechle5e2862e2007-12-06 09:12:28 +0000463
Andrew Brestickera669efc2014-09-18 14:47:12 -0700464 if (perfcount_irq >= 0)
465 free_irq(perfcount_irq, save_perf_irq);
Felix Fietkau3572a2c2012-05-02 17:33:04 +0200466
Ralf Baechle5e2862e2007-12-06 09:12:28 +0000467 counters = counters_per_cpu_to_total(counters);
Ingo Molnarf6f88e92008-07-15 22:08:52 +0200468 on_each_cpu(reset_counters, (void *)(long)counters, 1);
Ralf Baechle54176732005-02-07 02:54:29 +0000469
Dmitri Vorobiev46684732008-04-02 03:58:38 +0400470 perf_irq = save_perf_irq;
Ralf Baechle54176732005-02-07 02:54:29 +0000471}
472
Atsushi Nemoto1acf1ca2006-05-23 16:42:38 +0900473struct op_mips_model op_model_mipsxx_ops = {
Ralf Baechle54176732005-02-07 02:54:29 +0000474 .reg_setup = mipsxx_reg_setup,
475 .cpu_setup = mipsxx_cpu_setup,
476 .init = mipsxx_init,
477 .exit = mipsxx_exit,
478 .cpu_start = mipsxx_cpu_start,
479 .cpu_stop = mipsxx_cpu_stop,
480};