Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 1 | /* |
| 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 Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 6 | * Copyright (C) 2004, 05, 06 by Ralf Baechle |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 7 | * Copyright (C) 2005 by MIPS Technologies, Inc. |
| 8 | */ |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 9 | #include <linux/cpumask.h> |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 10 | #include <linux/oprofile.h> |
| 11 | #include <linux/interrupt.h> |
| 12 | #include <linux/smp.h> |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 13 | #include <asm/irq_regs.h> |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 14 | |
| 15 | #include "op_impl.h" |
| 16 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 17 | #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 Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 22 | #define M_PERFCTL_EVENT(event) (((event) & 0x3f) << 5) |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 23 | #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 Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 31 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 32 | #define M_COUNTER_OVERFLOW (1UL << 31) |
| 33 | |
| 34 | #ifdef CONFIG_MIPS_MT_SMP |
Ralf Baechle | be609f3 | 2006-10-23 13:22:06 +0100 | [diff] [blame] | 35 | #define WHAT (M_TC_EN_VPE | M_PERFCTL_VPEID(smp_processor_id())) |
| 36 | #define vpe_id() smp_processor_id() |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * The number of bits to shift to convert between counters per core and |
| 40 | * counters per VPE. There is no reasonable interface atm to obtain the |
| 41 | * number of VPEs used by Linux and in the 34K this number is fixed to two |
| 42 | * anyways so we hardcore a few things here for the moment. The way it's |
| 43 | * done here will ensure that oprofile VSMP kernel will run right on a lesser |
| 44 | * core like a 24K also or with maxcpus=1. |
| 45 | */ |
| 46 | static inline unsigned int vpe_shift(void) |
| 47 | { |
| 48 | if (num_possible_cpus() > 1) |
| 49 | return 1; |
| 50 | |
| 51 | return 0; |
| 52 | } |
| 53 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 54 | #else |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 55 | |
Ralf Baechle | be609f3 | 2006-10-23 13:22:06 +0100 | [diff] [blame] | 56 | #define WHAT 0 |
Ralf Baechle | 6f4c5bd | 2007-04-24 21:42:20 +0100 | [diff] [blame] | 57 | #define vpe_id() 0 |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 58 | |
| 59 | static inline unsigned int vpe_shift(void) |
| 60 | { |
| 61 | return 0; |
| 62 | } |
| 63 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 64 | #endif |
| 65 | |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 66 | static inline unsigned int counters_total_to_per_cpu(unsigned int counters) |
| 67 | { |
| 68 | return counters >> vpe_shift(); |
| 69 | } |
| 70 | |
| 71 | static inline unsigned int counters_per_cpu_to_total(unsigned int counters) |
| 72 | { |
| 73 | return counters << vpe_shift(); |
| 74 | } |
| 75 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 76 | #define __define_perf_accessors(r, n, np) \ |
| 77 | \ |
| 78 | static inline unsigned int r_c0_ ## r ## n(void) \ |
| 79 | { \ |
Ralf Baechle | be609f3 | 2006-10-23 13:22:06 +0100 | [diff] [blame] | 80 | unsigned int cpu = vpe_id(); \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 81 | \ |
| 82 | switch (cpu) { \ |
| 83 | case 0: \ |
| 84 | return read_c0_ ## r ## n(); \ |
| 85 | case 1: \ |
| 86 | return read_c0_ ## r ## np(); \ |
| 87 | default: \ |
| 88 | BUG(); \ |
| 89 | } \ |
Thiemo Seufer | 30f244a | 2006-07-07 10:38:51 +0100 | [diff] [blame] | 90 | return 0; \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 91 | } \ |
| 92 | \ |
| 93 | static inline void w_c0_ ## r ## n(unsigned int value) \ |
| 94 | { \ |
Ralf Baechle | be609f3 | 2006-10-23 13:22:06 +0100 | [diff] [blame] | 95 | unsigned int cpu = vpe_id(); \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 96 | \ |
| 97 | switch (cpu) { \ |
| 98 | case 0: \ |
| 99 | write_c0_ ## r ## n(value); \ |
| 100 | return; \ |
| 101 | case 1: \ |
| 102 | write_c0_ ## r ## np(value); \ |
| 103 | return; \ |
| 104 | default: \ |
| 105 | BUG(); \ |
| 106 | } \ |
Thiemo Seufer | 30f244a | 2006-07-07 10:38:51 +0100 | [diff] [blame] | 107 | return; \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 108 | } \ |
| 109 | |
| 110 | __define_perf_accessors(perfcntr, 0, 2) |
| 111 | __define_perf_accessors(perfcntr, 1, 3) |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 112 | __define_perf_accessors(perfcntr, 2, 0) |
| 113 | __define_perf_accessors(perfcntr, 3, 1) |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 114 | |
| 115 | __define_perf_accessors(perfctrl, 0, 2) |
| 116 | __define_perf_accessors(perfctrl, 1, 3) |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 117 | __define_perf_accessors(perfctrl, 2, 0) |
| 118 | __define_perf_accessors(perfctrl, 3, 1) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 119 | |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 120 | struct op_mips_model op_model_mipsxx_ops; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 121 | |
| 122 | static struct mipsxx_register_config { |
| 123 | unsigned int control[4]; |
| 124 | unsigned int counter[4]; |
| 125 | } reg; |
| 126 | |
| 127 | /* Compute all of the registers in preparation for enabling profiling. */ |
| 128 | |
| 129 | static void mipsxx_reg_setup(struct op_counter_config *ctr) |
| 130 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 131 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 132 | int i; |
| 133 | |
| 134 | /* Compute the performance counter control word. */ |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 135 | for (i = 0; i < counters; i++) { |
| 136 | reg.control[i] = 0; |
| 137 | reg.counter[i] = 0; |
| 138 | |
| 139 | if (!ctr[i].enabled) |
| 140 | continue; |
| 141 | |
| 142 | reg.control[i] = M_PERFCTL_EVENT(ctr[i].event) | |
| 143 | M_PERFCTL_INTERRUPT_ENABLE; |
| 144 | if (ctr[i].kernel) |
| 145 | reg.control[i] |= M_PERFCTL_KERNEL; |
| 146 | if (ctr[i].user) |
| 147 | reg.control[i] |= M_PERFCTL_USER; |
| 148 | if (ctr[i].exl) |
| 149 | reg.control[i] |= M_PERFCTL_EXL; |
| 150 | reg.counter[i] = 0x80000000 - ctr[i].count; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | /* Program all of the registers in preparation for enabling profiling. */ |
| 155 | |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 156 | static void mipsxx_cpu_setup(void *args) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 157 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 158 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 159 | |
| 160 | switch (counters) { |
| 161 | case 4: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 162 | w_c0_perfctrl3(0); |
| 163 | w_c0_perfcntr3(reg.counter[3]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 164 | case 3: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 165 | w_c0_perfctrl2(0); |
| 166 | w_c0_perfcntr2(reg.counter[2]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 167 | case 2: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 168 | w_c0_perfctrl1(0); |
| 169 | w_c0_perfcntr1(reg.counter[1]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 170 | case 1: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 171 | w_c0_perfctrl0(0); |
| 172 | w_c0_perfcntr0(reg.counter[0]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 173 | } |
| 174 | } |
| 175 | |
| 176 | /* Start all counters on current CPU */ |
| 177 | static void mipsxx_cpu_start(void *args) |
| 178 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 179 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 180 | |
| 181 | switch (counters) { |
| 182 | case 4: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 183 | w_c0_perfctrl3(WHAT | reg.control[3]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 184 | case 3: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 185 | w_c0_perfctrl2(WHAT | reg.control[2]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 186 | case 2: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 187 | w_c0_perfctrl1(WHAT | reg.control[1]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 188 | case 1: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 189 | w_c0_perfctrl0(WHAT | reg.control[0]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
| 193 | /* Stop all counters on current CPU */ |
| 194 | static void mipsxx_cpu_stop(void *args) |
| 195 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 196 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 197 | |
| 198 | switch (counters) { |
| 199 | case 4: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 200 | w_c0_perfctrl3(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 201 | case 3: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 202 | w_c0_perfctrl2(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 203 | case 2: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 204 | w_c0_perfctrl1(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 205 | case 1: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 206 | w_c0_perfctrl0(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 207 | } |
| 208 | } |
| 209 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 210 | static int mipsxx_perfcount_handler(void) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 211 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 212 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 213 | unsigned int control; |
| 214 | unsigned int counter; |
Chris Dearman | ffe9ee4 | 2007-05-24 22:24:20 +0100 | [diff] [blame] | 215 | int handled = IRQ_NONE; |
| 216 | |
| 217 | if (cpu_has_mips_r2 && !(read_c0_cause() & (1 << 26))) |
| 218 | return handled; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 219 | |
| 220 | switch (counters) { |
| 221 | #define HANDLE_COUNTER(n) \ |
| 222 | case n + 1: \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 223 | control = r_c0_perfctrl ## n(); \ |
| 224 | counter = r_c0_perfcntr ## n(); \ |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 225 | if ((control & M_PERFCTL_INTERRUPT_ENABLE) && \ |
| 226 | (counter & M_COUNTER_OVERFLOW)) { \ |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 227 | oprofile_add_sample(get_irq_regs(), n); \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 228 | w_c0_perfcntr ## n(reg.counter[n]); \ |
Chris Dearman | ffe9ee4 | 2007-05-24 22:24:20 +0100 | [diff] [blame] | 229 | handled = IRQ_HANDLED; \ |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 230 | } |
| 231 | HANDLE_COUNTER(3) |
| 232 | HANDLE_COUNTER(2) |
| 233 | HANDLE_COUNTER(1) |
| 234 | HANDLE_COUNTER(0) |
| 235 | } |
Ralf Baechle | ba339c0 | 2005-12-09 12:29:38 +0000 | [diff] [blame] | 236 | |
| 237 | return handled; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | #define M_CONFIG1_PC (1 << 4) |
| 241 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 242 | static inline int __n_counters(void) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 243 | { |
| 244 | if (!(read_c0_config1() & M_CONFIG1_PC)) |
| 245 | return 0; |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 246 | if (!(r_c0_perfctrl0() & M_PERFCTL_MORE)) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 247 | return 1; |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 248 | if (!(r_c0_perfctrl1() & M_PERFCTL_MORE)) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 249 | return 2; |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 250 | if (!(r_c0_perfctrl2() & M_PERFCTL_MORE)) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 251 | return 3; |
| 252 | |
| 253 | return 4; |
| 254 | } |
| 255 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 256 | static inline int n_counters(void) |
| 257 | { |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 258 | int counters; |
| 259 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 260 | switch (current_cpu_type()) { |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 261 | case CPU_R10000: |
| 262 | counters = 2; |
Ralf Baechle | 148171b | 2007-02-28 15:34:22 +0000 | [diff] [blame] | 263 | break; |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 264 | |
| 265 | case CPU_R12000: |
| 266 | case CPU_R14000: |
| 267 | counters = 4; |
Ralf Baechle | 148171b | 2007-02-28 15:34:22 +0000 | [diff] [blame] | 268 | break; |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 269 | |
| 270 | default: |
| 271 | counters = __n_counters(); |
| 272 | } |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 273 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 274 | return counters; |
| 275 | } |
| 276 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 277 | static inline void reset_counters(int counters) |
| 278 | { |
| 279 | switch (counters) { |
| 280 | case 4: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 281 | w_c0_perfctrl3(0); |
| 282 | w_c0_perfcntr3(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 283 | case 3: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 284 | w_c0_perfctrl2(0); |
| 285 | w_c0_perfcntr2(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 286 | case 2: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 287 | w_c0_perfctrl1(0); |
| 288 | w_c0_perfcntr1(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 289 | case 1: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 290 | w_c0_perfctrl0(0); |
| 291 | w_c0_perfcntr0(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 292 | } |
| 293 | } |
| 294 | |
| 295 | static int __init mipsxx_init(void) |
| 296 | { |
| 297 | int counters; |
| 298 | |
| 299 | counters = n_counters(); |
Ralf Baechle | 9efeae9 | 2005-12-09 12:34:45 +0000 | [diff] [blame] | 300 | if (counters == 0) { |
| 301 | printk(KERN_ERR "Oprofile: CPU has no performance counters\n"); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 302 | return -ENODEV; |
Ralf Baechle | 9efeae9 | 2005-12-09 12:34:45 +0000 | [diff] [blame] | 303 | } |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 304 | |
| 305 | reset_counters(counters); |
| 306 | |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 307 | counters = counters_total_to_per_cpu(counters); |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 308 | |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 309 | op_model_mipsxx_ops.num_counters = counters; |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 310 | switch (current_cpu_type()) { |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 311 | case CPU_20KC: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 312 | op_model_mipsxx_ops.cpu_type = "mips/20K"; |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 313 | break; |
| 314 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 315 | case CPU_24K: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 316 | op_model_mipsxx_ops.cpu_type = "mips/24K"; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 317 | break; |
| 318 | |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 319 | case CPU_25KF: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 320 | op_model_mipsxx_ops.cpu_type = "mips/25K"; |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 321 | break; |
| 322 | |
Ralf Baechle | fcfd980 | 2006-02-01 17:54:30 +0000 | [diff] [blame] | 323 | case CPU_34K: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 324 | op_model_mipsxx_ops.cpu_type = "mips/34K"; |
Ralf Baechle | fcfd980 | 2006-02-01 17:54:30 +0000 | [diff] [blame] | 325 | break; |
Chris Dearman | c620953 | 2006-05-02 14:08:46 +0100 | [diff] [blame] | 326 | |
| 327 | case CPU_74K: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 328 | op_model_mipsxx_ops.cpu_type = "mips/74K"; |
Chris Dearman | c620953 | 2006-05-02 14:08:46 +0100 | [diff] [blame] | 329 | break; |
Ralf Baechle | fcfd980 | 2006-02-01 17:54:30 +0000 | [diff] [blame] | 330 | |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 331 | case CPU_5KC: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 332 | op_model_mipsxx_ops.cpu_type = "mips/5K"; |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 333 | break; |
| 334 | |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 335 | case CPU_R10000: |
| 336 | if ((current_cpu_data.processor_id & 0xff) == 0x20) |
| 337 | op_model_mipsxx_ops.cpu_type = "mips/r10000-v2.x"; |
| 338 | else |
| 339 | op_model_mipsxx_ops.cpu_type = "mips/r10000"; |
| 340 | break; |
| 341 | |
| 342 | case CPU_R12000: |
| 343 | case CPU_R14000: |
| 344 | op_model_mipsxx_ops.cpu_type = "mips/r12000"; |
| 345 | break; |
| 346 | |
Mark Mason | c03bc12 | 2006-01-17 12:06:32 -0800 | [diff] [blame] | 347 | case CPU_SB1: |
| 348 | case CPU_SB1A: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 349 | op_model_mipsxx_ops.cpu_type = "mips/sb1"; |
Mark Mason | c03bc12 | 2006-01-17 12:06:32 -0800 | [diff] [blame] | 350 | break; |
| 351 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 352 | default: |
| 353 | printk(KERN_ERR "Profiling unsupported for this CPU\n"); |
| 354 | |
| 355 | return -ENODEV; |
| 356 | } |
| 357 | |
| 358 | perf_irq = mipsxx_perfcount_handler; |
| 359 | |
| 360 | return 0; |
| 361 | } |
| 362 | |
| 363 | static void mipsxx_exit(void) |
| 364 | { |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 365 | int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 366 | |
| 367 | counters = counters_per_cpu_to_total(counters); |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 368 | reset_counters(counters); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 369 | |
| 370 | perf_irq = null_perf_irq; |
| 371 | } |
| 372 | |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 373 | struct op_mips_model op_model_mipsxx_ops = { |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 374 | .reg_setup = mipsxx_reg_setup, |
| 375 | .cpu_setup = mipsxx_cpu_setup, |
| 376 | .init = mipsxx_init, |
| 377 | .exit = mipsxx_exit, |
| 378 | .cpu_start = mipsxx_cpu_start, |
| 379 | .cpu_stop = mipsxx_cpu_stop, |
| 380 | }; |