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> |
Andrew Bresticker | a669efc | 2014-09-18 14:47:12 -0700 | [diff] [blame] | 14 | #include <asm/time.h> |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 15 | |
| 16 | #include "op_impl.h" |
| 17 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 18 | #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 Baechle | 39a5110 | 2008-01-29 10:14:59 +0000 | [diff] [blame] | 23 | #define M_PERFCTL_EVENT(event) (((event) & 0x3ff) << 5) |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 24 | #define M_PERFCTL_VPEID(vpe) ((vpe) << 16) |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 25 | #define M_PERFCTL_MT_EN(filter) ((filter) << 20) |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 26 | #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 Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 32 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 33 | #define M_COUNTER_OVERFLOW (1UL << 31) |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 34 | |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 35 | /* Netlogic XLR specific, count events in all threads in a core */ |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 36 | #define M_PERFCTL_COUNT_ALL_THREADS (1UL << 13) |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 37 | |
Dmitri Vorobiev | 4668473 | 2008-04-02 03:58:38 +0400 | [diff] [blame] | 38 | static int (*save_perf_irq)(void); |
Andrew Bresticker | a669efc | 2014-09-18 14:47:12 -0700 | [diff] [blame] | 39 | static int perfcount_irq; |
Dmitri Vorobiev | 4668473 | 2008-04-02 03:58:38 +0400 | [diff] [blame] | 40 | |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 41 | /* |
| 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 C | 83a1841 | 2013-03-25 06:51:52 +0000 | [diff] [blame] | 46 | #if defined(CONFIG_CPU_XLR) && defined(CONFIG_SMP) |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 47 | #define oprofile_skip_cpu(c) ((cpu_logical_map(c) & 0x3) != 0) |
| 48 | #else |
| 49 | #define oprofile_skip_cpu(c) 0 |
| 50 | #endif |
| 51 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 52 | #ifdef CONFIG_MIPS_MT_SMP |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 53 | static 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 Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 58 | |
| 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 | */ |
| 67 | static inline unsigned int vpe_shift(void) |
| 68 | { |
| 69 | if (num_possible_cpus() > 1) |
| 70 | return 1; |
| 71 | |
| 72 | return 0; |
| 73 | } |
| 74 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 75 | #else |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 76 | |
Ralf Baechle | be609f3 | 2006-10-23 13:22:06 +0100 | [diff] [blame] | 77 | #define WHAT 0 |
Ralf Baechle | 6f4c5bd | 2007-04-24 21:42:20 +0100 | [diff] [blame] | 78 | #define vpe_id() 0 |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 79 | |
| 80 | static inline unsigned int vpe_shift(void) |
| 81 | { |
| 82 | return 0; |
| 83 | } |
| 84 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 85 | #endif |
| 86 | |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 87 | static inline unsigned int counters_total_to_per_cpu(unsigned int counters) |
| 88 | { |
| 89 | return counters >> vpe_shift(); |
| 90 | } |
| 91 | |
| 92 | static inline unsigned int counters_per_cpu_to_total(unsigned int counters) |
| 93 | { |
| 94 | return counters << vpe_shift(); |
| 95 | } |
| 96 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 97 | #define __define_perf_accessors(r, n, np) \ |
| 98 | \ |
| 99 | static inline unsigned int r_c0_ ## r ## n(void) \ |
| 100 | { \ |
Ralf Baechle | be609f3 | 2006-10-23 13:22:06 +0100 | [diff] [blame] | 101 | unsigned int cpu = vpe_id(); \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 102 | \ |
| 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 Seufer | 30f244a | 2006-07-07 10:38:51 +0100 | [diff] [blame] | 111 | return 0; \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 112 | } \ |
| 113 | \ |
| 114 | static inline void w_c0_ ## r ## n(unsigned int value) \ |
| 115 | { \ |
Ralf Baechle | be609f3 | 2006-10-23 13:22:06 +0100 | [diff] [blame] | 116 | unsigned int cpu = vpe_id(); \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 117 | \ |
| 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 Seufer | 30f244a | 2006-07-07 10:38:51 +0100 | [diff] [blame] | 128 | return; \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 129 | } \ |
| 130 | |
| 131 | __define_perf_accessors(perfcntr, 0, 2) |
| 132 | __define_perf_accessors(perfcntr, 1, 3) |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 133 | __define_perf_accessors(perfcntr, 2, 0) |
| 134 | __define_perf_accessors(perfcntr, 3, 1) |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 135 | |
| 136 | __define_perf_accessors(perfctrl, 0, 2) |
| 137 | __define_perf_accessors(perfctrl, 1, 3) |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 138 | __define_perf_accessors(perfctrl, 2, 0) |
| 139 | __define_perf_accessors(perfctrl, 3, 1) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 140 | |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 141 | struct op_mips_model op_model_mipsxx_ops; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 142 | |
| 143 | static struct mipsxx_register_config { |
| 144 | unsigned int control[4]; |
| 145 | unsigned int counter[4]; |
| 146 | } reg; |
| 147 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 148 | /* Compute all of the registers in preparation for enabling profiling. */ |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 149 | |
| 150 | static void mipsxx_reg_setup(struct op_counter_config *ctr) |
| 151 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 152 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 153 | int i; |
| 154 | |
| 155 | /* Compute the performance counter control word. */ |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 156 | 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 Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 164 | M_PERFCTL_INTERRUPT_ENABLE; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 165 | 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 Baechle | cf5b2d23 | 2013-08-01 18:31:05 +0200 | [diff] [blame] | 171 | if (boot_cpu_type() == CPU_XLR) |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 172 | reg.control[i] |= M_PERFCTL_COUNT_ALL_THREADS; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 173 | reg.counter[i] = 0x80000000 - ctr[i].count; |
| 174 | } |
| 175 | } |
| 176 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 177 | /* Program all of the registers in preparation for enabling profiling. */ |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 178 | |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 179 | static void mipsxx_cpu_setup(void *args) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 180 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 181 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 182 | |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 183 | if (oprofile_skip_cpu(smp_processor_id())) |
| 184 | return; |
| 185 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 186 | switch (counters) { |
| 187 | case 4: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 188 | w_c0_perfctrl3(0); |
| 189 | w_c0_perfcntr3(reg.counter[3]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 190 | case 3: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 191 | w_c0_perfctrl2(0); |
| 192 | w_c0_perfcntr2(reg.counter[2]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 193 | case 2: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 194 | w_c0_perfctrl1(0); |
| 195 | w_c0_perfcntr1(reg.counter[1]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 196 | case 1: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 197 | w_c0_perfctrl0(0); |
| 198 | w_c0_perfcntr0(reg.counter[0]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 199 | } |
| 200 | } |
| 201 | |
| 202 | /* Start all counters on current CPU */ |
| 203 | static void mipsxx_cpu_start(void *args) |
| 204 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 205 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 206 | |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 207 | if (oprofile_skip_cpu(smp_processor_id())) |
| 208 | return; |
| 209 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 210 | switch (counters) { |
| 211 | case 4: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 212 | w_c0_perfctrl3(WHAT | reg.control[3]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 213 | case 3: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 214 | w_c0_perfctrl2(WHAT | reg.control[2]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 215 | case 2: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 216 | w_c0_perfctrl1(WHAT | reg.control[1]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 217 | case 1: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 218 | w_c0_perfctrl0(WHAT | reg.control[0]); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 219 | } |
| 220 | } |
| 221 | |
| 222 | /* Stop all counters on current CPU */ |
| 223 | static void mipsxx_cpu_stop(void *args) |
| 224 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 225 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 226 | |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 227 | if (oprofile_skip_cpu(smp_processor_id())) |
| 228 | return; |
| 229 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 230 | switch (counters) { |
| 231 | case 4: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 232 | w_c0_perfctrl3(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 233 | case 3: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 234 | w_c0_perfctrl2(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 235 | case 2: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 236 | w_c0_perfctrl1(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 237 | case 1: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 238 | w_c0_perfctrl0(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 239 | } |
| 240 | } |
| 241 | |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 242 | static int mipsxx_perfcount_handler(void) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 243 | { |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 244 | unsigned int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 245 | unsigned int control; |
| 246 | unsigned int counter; |
Chris Dearman | ffe9ee4 | 2007-05-24 22:24:20 +0100 | [diff] [blame] | 247 | int handled = IRQ_NONE; |
| 248 | |
James Hogan | 3ba5040 | 2015-01-27 21:45:48 +0000 | [diff] [blame^] | 249 | if (cpu_has_mips_r2 && !(read_c0_cause() & CAUSEF_PCI)) |
Chris Dearman | ffe9ee4 | 2007-05-24 22:24:20 +0100 | [diff] [blame] | 250 | return handled; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 251 | |
| 252 | switch (counters) { |
| 253 | #define HANDLE_COUNTER(n) \ |
| 254 | case n + 1: \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 255 | control = r_c0_perfctrl ## n(); \ |
| 256 | counter = r_c0_perfcntr ## n(); \ |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 257 | if ((control & M_PERFCTL_INTERRUPT_ENABLE) && \ |
| 258 | (counter & M_COUNTER_OVERFLOW)) { \ |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 259 | oprofile_add_sample(get_irq_regs(), n); \ |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 260 | w_c0_perfcntr ## n(reg.counter[n]); \ |
Chris Dearman | ffe9ee4 | 2007-05-24 22:24:20 +0100 | [diff] [blame] | 261 | handled = IRQ_HANDLED; \ |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 262 | } |
| 263 | HANDLE_COUNTER(3) |
| 264 | HANDLE_COUNTER(2) |
| 265 | HANDLE_COUNTER(1) |
| 266 | HANDLE_COUNTER(0) |
| 267 | } |
Ralf Baechle | ba339c0 | 2005-12-09 12:29:38 +0000 | [diff] [blame] | 268 | |
| 269 | return handled; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | #define M_CONFIG1_PC (1 << 4) |
| 273 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 274 | static inline int __n_counters(void) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 275 | { |
| 276 | if (!(read_c0_config1() & M_CONFIG1_PC)) |
| 277 | return 0; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 278 | if (!(read_c0_perfctrl0() & M_PERFCTL_MORE)) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 279 | return 1; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 280 | if (!(read_c0_perfctrl1() & M_PERFCTL_MORE)) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 281 | return 2; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 282 | if (!(read_c0_perfctrl2() & M_PERFCTL_MORE)) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 283 | return 3; |
| 284 | |
| 285 | return 4; |
| 286 | } |
| 287 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 288 | static inline int n_counters(void) |
| 289 | { |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 290 | int counters; |
| 291 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 292 | switch (current_cpu_type()) { |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 293 | case CPU_R10000: |
| 294 | counters = 2; |
Ralf Baechle | 148171b | 2007-02-28 15:34:22 +0000 | [diff] [blame] | 295 | break; |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 296 | |
| 297 | case CPU_R12000: |
| 298 | case CPU_R14000: |
| 299 | counters = 4; |
Ralf Baechle | 148171b | 2007-02-28 15:34:22 +0000 | [diff] [blame] | 300 | break; |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 301 | |
| 302 | default: |
| 303 | counters = __n_counters(); |
| 304 | } |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 305 | |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 306 | return counters; |
| 307 | } |
| 308 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 309 | static void reset_counters(void *arg) |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 310 | { |
Thiemo Seufer | 005ca9a | 2008-05-06 11:23:33 +0100 | [diff] [blame] | 311 | int counters = (int)(long)arg; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 312 | switch (counters) { |
| 313 | case 4: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 314 | w_c0_perfctrl3(0); |
| 315 | w_c0_perfcntr3(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 316 | case 3: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 317 | w_c0_perfctrl2(0); |
| 318 | w_c0_perfcntr2(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 319 | case 2: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 320 | w_c0_perfctrl1(0); |
| 321 | w_c0_perfcntr1(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 322 | case 1: |
Ralf Baechle | 92c7b62 | 2006-06-23 18:39:00 +0100 | [diff] [blame] | 323 | w_c0_perfctrl0(0); |
| 324 | w_c0_perfcntr0(0); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 325 | } |
| 326 | } |
| 327 | |
Felix Fietkau | 3572a2c | 2012-05-02 17:33:04 +0200 | [diff] [blame] | 328 | static irqreturn_t mipsxx_perfcount_int(int irq, void *dev_id) |
| 329 | { |
| 330 | return mipsxx_perfcount_handler(); |
| 331 | } |
| 332 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 333 | static int __init mipsxx_init(void) |
| 334 | { |
| 335 | int counters; |
| 336 | |
| 337 | counters = n_counters(); |
Ralf Baechle | 9efeae9 | 2005-12-09 12:34:45 +0000 | [diff] [blame] | 338 | if (counters == 0) { |
| 339 | printk(KERN_ERR "Oprofile: CPU has no performance counters\n"); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 340 | return -ENODEV; |
Ralf Baechle | 9efeae9 | 2005-12-09 12:34:45 +0000 | [diff] [blame] | 341 | } |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 342 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 343 | #ifdef CONFIG_MIPS_MT_SMP |
| 344 | cpu_has_mipsmt_pertccounters = read_c0_config7() & (1<<19); |
| 345 | if (!cpu_has_mipsmt_pertccounters) |
| 346 | counters = counters_total_to_per_cpu(counters); |
| 347 | #endif |
Ingo Molnar | f6f88e9 | 2008-07-15 22:08:52 +0200 | [diff] [blame] | 348 | on_each_cpu(reset_counters, (void *)(long)counters, 1); |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 349 | |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 350 | op_model_mipsxx_ops.num_counters = counters; |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 351 | switch (current_cpu_type()) { |
Steven J. Hill | 113c62d | 2012-07-06 23:56:00 +0200 | [diff] [blame] | 352 | case CPU_M14KC: |
| 353 | op_model_mipsxx_ops.cpu_type = "mips/M14Kc"; |
| 354 | break; |
| 355 | |
Steven J. Hill | f8fa481 | 2012-12-07 03:51:35 +0000 | [diff] [blame] | 356 | case CPU_M14KEC: |
| 357 | op_model_mipsxx_ops.cpu_type = "mips/M14KEc"; |
| 358 | break; |
| 359 | |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 360 | case CPU_20KC: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 361 | op_model_mipsxx_ops.cpu_type = "mips/20K"; |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 362 | break; |
| 363 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 364 | case CPU_24K: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 365 | op_model_mipsxx_ops.cpu_type = "mips/24K"; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 366 | break; |
| 367 | |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 368 | case CPU_25KF: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 369 | op_model_mipsxx_ops.cpu_type = "mips/25K"; |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 370 | break; |
| 371 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 372 | case CPU_1004K: |
Ralf Baechle | fcfd980 | 2006-02-01 17:54:30 +0000 | [diff] [blame] | 373 | case CPU_34K: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 374 | op_model_mipsxx_ops.cpu_type = "mips/34K"; |
Ralf Baechle | fcfd980 | 2006-02-01 17:54:30 +0000 | [diff] [blame] | 375 | break; |
Chris Dearman | c620953 | 2006-05-02 14:08:46 +0100 | [diff] [blame] | 376 | |
Steven J. Hill | 442e14a | 2014-01-17 15:03:50 -0600 | [diff] [blame] | 377 | case CPU_1074K: |
Chris Dearman | c620953 | 2006-05-02 14:08:46 +0100 | [diff] [blame] | 378 | case CPU_74K: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 379 | op_model_mipsxx_ops.cpu_type = "mips/74K"; |
Chris Dearman | c620953 | 2006-05-02 14:08:46 +0100 | [diff] [blame] | 380 | break; |
Ralf Baechle | fcfd980 | 2006-02-01 17:54:30 +0000 | [diff] [blame] | 381 | |
Leonid Yegoshin | 26ab96d | 2013-11-27 10:07:53 +0000 | [diff] [blame] | 382 | case CPU_INTERAPTIV: |
| 383 | op_model_mipsxx_ops.cpu_type = "mips/interAptiv"; |
| 384 | break; |
| 385 | |
Leonid Yegoshin | 708ac4b | 2013-11-14 16:12:27 +0000 | [diff] [blame] | 386 | case CPU_PROAPTIV: |
| 387 | op_model_mipsxx_ops.cpu_type = "mips/proAptiv"; |
| 388 | break; |
| 389 | |
James Hogan | 8c7f6ba | 2014-01-22 16:19:41 +0000 | [diff] [blame] | 390 | case CPU_P5600: |
| 391 | op_model_mipsxx_ops.cpu_type = "mips/P5600"; |
| 392 | break; |
| 393 | |
Leonid Yegoshin | f36c472 | 2014-03-04 13:34:43 +0000 | [diff] [blame] | 394 | case CPU_M5150: |
| 395 | op_model_mipsxx_ops.cpu_type = "mips/M5150"; |
| 396 | break; |
| 397 | |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 398 | case CPU_5KC: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 399 | op_model_mipsxx_ops.cpu_type = "mips/5K"; |
Ralf Baechle | 2065988 | 2005-12-09 12:42:13 +0000 | [diff] [blame] | 400 | break; |
| 401 | |
Ralf Baechle | 714cfe7 | 2006-10-23 00:44:02 +0100 | [diff] [blame] | 402 | case CPU_R10000: |
| 403 | if ((current_cpu_data.processor_id & 0xff) == 0x20) |
| 404 | op_model_mipsxx_ops.cpu_type = "mips/r10000-v2.x"; |
| 405 | else |
| 406 | op_model_mipsxx_ops.cpu_type = "mips/r10000"; |
| 407 | break; |
| 408 | |
| 409 | case CPU_R12000: |
| 410 | case CPU_R14000: |
| 411 | op_model_mipsxx_ops.cpu_type = "mips/r12000"; |
| 412 | break; |
| 413 | |
Mark Mason | c03bc12 | 2006-01-17 12:06:32 -0800 | [diff] [blame] | 414 | case CPU_SB1: |
| 415 | case CPU_SB1A: |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 416 | op_model_mipsxx_ops.cpu_type = "mips/sb1"; |
Mark Mason | c03bc12 | 2006-01-17 12:06:32 -0800 | [diff] [blame] | 417 | break; |
| 418 | |
Kelvin Cheung | 2fa3639 | 2012-06-20 20:05:32 +0100 | [diff] [blame] | 419 | case CPU_LOONGSON1: |
| 420 | op_model_mipsxx_ops.cpu_type = "mips/loongson1"; |
| 421 | break; |
| 422 | |
Madhusudan Bhat | c783390 | 2012-10-31 12:01:27 +0000 | [diff] [blame] | 423 | case CPU_XLR: |
| 424 | op_model_mipsxx_ops.cpu_type = "mips/xlr"; |
| 425 | break; |
| 426 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 427 | default: |
| 428 | printk(KERN_ERR "Profiling unsupported for this CPU\n"); |
| 429 | |
| 430 | return -ENODEV; |
| 431 | } |
| 432 | |
Dmitri Vorobiev | 4668473 | 2008-04-02 03:58:38 +0400 | [diff] [blame] | 433 | save_perf_irq = perf_irq; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 434 | perf_irq = mipsxx_perfcount_handler; |
| 435 | |
Andrew Bresticker | a669efc | 2014-09-18 14:47:12 -0700 | [diff] [blame] | 436 | if (get_c0_perfcount_int) |
| 437 | perfcount_irq = get_c0_perfcount_int(); |
| 438 | else if ((cp0_perfcount_irq >= 0) && |
| 439 | (cp0_compare_irq != cp0_perfcount_irq)) |
| 440 | perfcount_irq = MIPS_CPU_IRQ_BASE + cp0_perfcount_irq; |
| 441 | else |
| 442 | perfcount_irq = -1; |
| 443 | |
| 444 | if (perfcount_irq >= 0) |
| 445 | return request_irq(perfcount_irq, mipsxx_perfcount_int, |
Felix Fietkau | 3572a2c | 2012-05-02 17:33:04 +0200 | [diff] [blame] | 446 | 0, "Perfcounter", save_perf_irq); |
| 447 | |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 448 | return 0; |
| 449 | } |
| 450 | |
| 451 | static void mipsxx_exit(void) |
| 452 | { |
Chris Dearman | 795a225 | 2007-03-01 17:58:24 +0000 | [diff] [blame] | 453 | int counters = op_model_mipsxx_ops.num_counters; |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 454 | |
Andrew Bresticker | a669efc | 2014-09-18 14:47:12 -0700 | [diff] [blame] | 455 | if (perfcount_irq >= 0) |
| 456 | free_irq(perfcount_irq, save_perf_irq); |
Felix Fietkau | 3572a2c | 2012-05-02 17:33:04 +0200 | [diff] [blame] | 457 | |
Ralf Baechle | 5e2862e | 2007-12-06 09:12:28 +0000 | [diff] [blame] | 458 | counters = counters_per_cpu_to_total(counters); |
Ingo Molnar | f6f88e9 | 2008-07-15 22:08:52 +0200 | [diff] [blame] | 459 | on_each_cpu(reset_counters, (void *)(long)counters, 1); |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 460 | |
Dmitri Vorobiev | 4668473 | 2008-04-02 03:58:38 +0400 | [diff] [blame] | 461 | perf_irq = save_perf_irq; |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 462 | } |
| 463 | |
Atsushi Nemoto | 1acf1ca | 2006-05-23 16:42:38 +0900 | [diff] [blame] | 464 | struct op_mips_model op_model_mipsxx_ops = { |
Ralf Baechle | 5417673 | 2005-02-07 02:54:29 +0000 | [diff] [blame] | 465 | .reg_setup = mipsxx_reg_setup, |
| 466 | .cpu_setup = mipsxx_cpu_setup, |
| 467 | .init = mipsxx_init, |
| 468 | .exit = mipsxx_exit, |
| 469 | .cpu_start = mipsxx_cpu_start, |
| 470 | .cpu_stop = mipsxx_cpu_stop, |
| 471 | }; |