op_model_mipsxx.c 10.2 KB
Newer Older
1 2 3 4 5
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
6
 * Copyright (C) 2004, 05, 06 by Ralf Baechle
7 8
 * Copyright (C) 2005 by MIPS Technologies, Inc.
 */
9
#include <linux/cpumask.h>
10 11 12
#include <linux/oprofile.h>
#include <linux/interrupt.h>
#include <linux/smp.h>
13
#include <asm/irq_regs.h>
14
#include <asm/time.h>
15 16 17

#include "op_impl.h"

18 19 20
#define M_PERFCTL_EVENT(event)		(((event) << MIPS_PERFCTRL_EVENT_S) & \
					 MIPS_PERFCTRL_EVENT)
#define M_PERFCTL_VPEID(vpe)		((vpe)	  << MIPS_PERFCTRL_VPEID_S)
21

R
Ralf Baechle 已提交
22
#define M_COUNTER_OVERFLOW		(1UL	  << 31)
23

24
static int (*save_perf_irq)(void);
25
static int perfcount_irq;
26

27 28 29 30 31
/*
 * XLR has only one set of counters per core. Designate the
 * first hardware thread in the core for setup and init.
 * Skip CPUs with non-zero hardware thread id (4 hwt per core)
 */
32
#if defined(CONFIG_CPU_XLR) && defined(CONFIG_SMP)
33 34 35 36 37
#define oprofile_skip_cpu(c)	((cpu_logical_map(c) & 0x3) != 0)
#else
#define oprofile_skip_cpu(c)	0
#endif

38
#ifdef CONFIG_MIPS_MT_SMP
39
#define WHAT		(MIPS_PERFCTRL_MT_EN_VPE | \
40
			 M_PERFCTL_VPEID(cpu_vpe_id(&current_cpu_data)))
41
#define vpe_id()	(cpu_has_mipsmt_pertccounters ? \
42
			0 : cpu_vpe_id(&current_cpu_data))
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

/*
 * The number of bits to shift to convert between counters per core and
 * counters per VPE.  There is no reasonable interface atm to obtain the
 * number of VPEs used by Linux and in the 34K this number is fixed to two
 * anyways so we hardcore a few things here for the moment.  The way it's
 * done here will ensure that oprofile VSMP kernel will run right on a lesser
 * core like a 24K also or with maxcpus=1.
 */
static inline unsigned int vpe_shift(void)
{
	if (num_possible_cpus() > 1)
		return 1;

	return 0;
}

60
#else
61

62
#define WHAT		0
63
#define vpe_id()	0
64 65 66 67 68 69

static inline unsigned int vpe_shift(void)
{
	return 0;
}

70
#endif
71

72 73 74 75 76 77 78 79 80 81
static inline unsigned int counters_total_to_per_cpu(unsigned int counters)
{
	return counters >> vpe_shift();
}

static inline unsigned int counters_per_cpu_to_total(unsigned int counters)
{
	return counters << vpe_shift();
}

82 83 84 85
#define __define_perf_accessors(r, n, np)				\
									\
static inline unsigned int r_c0_ ## r ## n(void)			\
{									\
86
	unsigned int cpu = vpe_id();					\
87 88 89 90 91 92 93 94 95
									\
	switch (cpu) {							\
	case 0:								\
		return read_c0_ ## r ## n();				\
	case 1:								\
		return read_c0_ ## r ## np();				\
	default:							\
		BUG();							\
	}								\
96
	return 0;							\
97 98 99 100
}									\
									\
static inline void w_c0_ ## r ## n(unsigned int value)			\
{									\
101
	unsigned int cpu = vpe_id();					\
102 103 104 105 106 107 108 109 110 111 112
									\
	switch (cpu) {							\
	case 0:								\
		write_c0_ ## r ## n(value);				\
		return;							\
	case 1:								\
		write_c0_ ## r ## np(value);				\
		return;							\
	default:							\
		BUG();							\
	}								\
113
	return;								\
114 115 116 117
}									\

__define_perf_accessors(perfcntr, 0, 2)
__define_perf_accessors(perfcntr, 1, 3)
118 119
__define_perf_accessors(perfcntr, 2, 0)
__define_perf_accessors(perfcntr, 3, 1)
120 121 122

__define_perf_accessors(perfctrl, 0, 2)
__define_perf_accessors(perfctrl, 1, 3)
123 124
__define_perf_accessors(perfctrl, 2, 0)
__define_perf_accessors(perfctrl, 3, 1)
125

126
struct op_mips_model op_model_mipsxx_ops;
127 128 129 130 131 132

static struct mipsxx_register_config {
	unsigned int control[4];
	unsigned int counter[4];
} reg;

R
Ralf Baechle 已提交
133
/* Compute all of the registers in preparation for enabling profiling.	*/
134 135 136

static void mipsxx_reg_setup(struct op_counter_config *ctr)
{
137
	unsigned int counters = op_model_mipsxx_ops.num_counters;
138 139 140 141 142 143 144 145 146 147 148
	int i;

	/* Compute the performance counter control word.  */
	for (i = 0; i < counters; i++) {
		reg.control[i] = 0;
		reg.counter[i] = 0;

		if (!ctr[i].enabled)
			continue;

		reg.control[i] = M_PERFCTL_EVENT(ctr[i].event) |
149
				 MIPS_PERFCTRL_IE;
150
		if (ctr[i].kernel)
151
			reg.control[i] |= MIPS_PERFCTRL_K;
152
		if (ctr[i].user)
153
			reg.control[i] |= MIPS_PERFCTRL_U;
154
		if (ctr[i].exl)
155
			reg.control[i] |= MIPS_PERFCTRL_EXL;
156
		if (boot_cpu_type() == CPU_XLR)
157
			reg.control[i] |= XLR_PERFCTRL_ALLTHREADS;
158 159 160 161
		reg.counter[i] = 0x80000000 - ctr[i].count;
	}
}

R
Ralf Baechle 已提交
162
/* Program all of the registers in preparation for enabling profiling.	*/
163

164
static void mipsxx_cpu_setup(void *args)
165
{
166
	unsigned int counters = op_model_mipsxx_ops.num_counters;
167

168 169 170
	if (oprofile_skip_cpu(smp_processor_id()))
		return;

171 172
	switch (counters) {
	case 4:
173 174
		w_c0_perfctrl3(0);
		w_c0_perfcntr3(reg.counter[3]);
175
		/* fall through */
176
	case 3:
177 178
		w_c0_perfctrl2(0);
		w_c0_perfcntr2(reg.counter[2]);
179
		/* fall through */
180
	case 2:
181 182
		w_c0_perfctrl1(0);
		w_c0_perfcntr1(reg.counter[1]);
183
		/* fall through */
184
	case 1:
185 186
		w_c0_perfctrl0(0);
		w_c0_perfcntr0(reg.counter[0]);
187 188 189 190 191 192
	}
}

/* Start all counters on current CPU */
static void mipsxx_cpu_start(void *args)
{
193
	unsigned int counters = op_model_mipsxx_ops.num_counters;
194

195 196 197
	if (oprofile_skip_cpu(smp_processor_id()))
		return;

198 199
	switch (counters) {
	case 4:
200
		w_c0_perfctrl3(WHAT | reg.control[3]);
201
		/* fall through */
202
	case 3:
203
		w_c0_perfctrl2(WHAT | reg.control[2]);
204
		/* fall through */
205
	case 2:
206
		w_c0_perfctrl1(WHAT | reg.control[1]);
207
		/* fall through */
208
	case 1:
209
		w_c0_perfctrl0(WHAT | reg.control[0]);
210 211 212 213 214 215
	}
}

/* Stop all counters on current CPU */
static void mipsxx_cpu_stop(void *args)
{
216
	unsigned int counters = op_model_mipsxx_ops.num_counters;
217

218 219 220
	if (oprofile_skip_cpu(smp_processor_id()))
		return;

221 222
	switch (counters) {
	case 4:
223
		w_c0_perfctrl3(0);
224
		/* fall through */
225
	case 3:
226
		w_c0_perfctrl2(0);
227
		/* fall through */
228
	case 2:
229
		w_c0_perfctrl1(0);
230
		/* fall through */
231
	case 1:
232
		w_c0_perfctrl0(0);
233 234 235
	}
}

236
static int mipsxx_perfcount_handler(void)
237
{
238
	unsigned int counters = op_model_mipsxx_ops.num_counters;
239 240
	unsigned int control;
	unsigned int counter;
241 242
	int handled = IRQ_NONE;

243
	if (cpu_has_mips_r2 && !(read_c0_cause() & CAUSEF_PCI))
244
		return handled;
245 246 247

	switch (counters) {
#define HANDLE_COUNTER(n)						\
248
	/* fall through */						\
249
	case n + 1:							\
250 251
		control = r_c0_perfctrl ## n();				\
		counter = r_c0_perfcntr ## n();				\
252
		if ((control & MIPS_PERFCTRL_IE) &&			\
253
		    (counter & M_COUNTER_OVERFLOW)) {			\
254
			oprofile_add_sample(get_irq_regs(), n);		\
255
			w_c0_perfcntr ## n(reg.counter[n]);		\
256
			handled = IRQ_HANDLED;				\
257 258 259 260 261 262
		}
	HANDLE_COUNTER(3)
	HANDLE_COUNTER(2)
	HANDLE_COUNTER(1)
	HANDLE_COUNTER(0)
	}
263 264

	return handled;
265 266
}

267
static inline int __n_counters(void)
268
{
J
James Hogan 已提交
269
	if (!cpu_has_perf)
270
		return 0;
271
	if (!(read_c0_perfctrl0() & MIPS_PERFCTRL_M))
272
		return 1;
273
	if (!(read_c0_perfctrl1() & MIPS_PERFCTRL_M))
274
		return 2;
275
	if (!(read_c0_perfctrl2() & MIPS_PERFCTRL_M))
276 277 278 279 280
		return 3;

	return 4;
}

281 282
static inline int n_counters(void)
{
283 284
	int counters;

285
	switch (current_cpu_type()) {
286 287
	case CPU_R10000:
		counters = 2;
288
		break;
289 290 291

	case CPU_R12000:
	case CPU_R14000:
J
Joshua Kinard 已提交
292
	case CPU_R16000:
293
		counters = 4;
294
		break;
295 296 297 298

	default:
		counters = __n_counters();
	}
299 300 301 302

	return counters;
}

303
static void reset_counters(void *arg)
304
{
305
	int counters = (int)(long)arg;
306 307
	switch (counters) {
	case 4:
308 309
		w_c0_perfctrl3(0);
		w_c0_perfcntr3(0);
310
		/* fall through */
311
	case 3:
312 313
		w_c0_perfctrl2(0);
		w_c0_perfcntr2(0);
314
		/* fall through */
315
	case 2:
316 317
		w_c0_perfctrl1(0);
		w_c0_perfcntr1(0);
318
		/* fall through */
319
	case 1:
320 321
		w_c0_perfctrl0(0);
		w_c0_perfcntr0(0);
322 323 324
	}
}

325 326 327 328 329
static irqreturn_t mipsxx_perfcount_int(int irq, void *dev_id)
{
	return mipsxx_perfcount_handler();
}

330 331 332 333 334
static int __init mipsxx_init(void)
{
	int counters;

	counters = n_counters();
335 336
	if (counters == 0) {
		printk(KERN_ERR "Oprofile: CPU has no performance counters\n");
337
		return -ENODEV;
338
	}
339

340 341 342 343
#ifdef CONFIG_MIPS_MT_SMP
	if (!cpu_has_mipsmt_pertccounters)
		counters = counters_total_to_per_cpu(counters);
#endif
I
Ingo Molnar 已提交
344
	on_each_cpu(reset_counters, (void *)(long)counters, 1);
345

346
	op_model_mipsxx_ops.num_counters = counters;
347
	switch (current_cpu_type()) {
348 349 350 351
	case CPU_M14KC:
		op_model_mipsxx_ops.cpu_type = "mips/M14Kc";
		break;

352 353 354 355
	case CPU_M14KEC:
		op_model_mipsxx_ops.cpu_type = "mips/M14KEc";
		break;

356
	case CPU_20KC:
357
		op_model_mipsxx_ops.cpu_type = "mips/20K";
358 359
		break;

360
	case CPU_24K:
361
		op_model_mipsxx_ops.cpu_type = "mips/24K";
362 363
		break;

364
	case CPU_25KF:
365
		op_model_mipsxx_ops.cpu_type = "mips/25K";
366 367
		break;

368
	case CPU_1004K:
369
	case CPU_34K:
370
		op_model_mipsxx_ops.cpu_type = "mips/34K";
371
		break;
372

373
	case CPU_1074K:
374
	case CPU_74K:
375
		op_model_mipsxx_ops.cpu_type = "mips/74K";
376
		break;
377

378 379 380 381
	case CPU_INTERAPTIV:
		op_model_mipsxx_ops.cpu_type = "mips/interAptiv";
		break;

382 383 384 385
	case CPU_PROAPTIV:
		op_model_mipsxx_ops.cpu_type = "mips/proAptiv";
		break;

386 387 388 389
	case CPU_P5600:
		op_model_mipsxx_ops.cpu_type = "mips/P5600";
		break;

M
Markos Chandras 已提交
390 391 392 393
	case CPU_I6400:
		op_model_mipsxx_ops.cpu_type = "mips/I6400";
		break;

394 395 396 397
	case CPU_M5150:
		op_model_mipsxx_ops.cpu_type = "mips/M5150";
		break;

398
	case CPU_5KC:
399
		op_model_mipsxx_ops.cpu_type = "mips/5K";
400 401
		break;

402 403 404 405 406 407 408 409 410 411 412 413
	case CPU_R10000:
		if ((current_cpu_data.processor_id & 0xff) == 0x20)
			op_model_mipsxx_ops.cpu_type = "mips/r10000-v2.x";
		else
			op_model_mipsxx_ops.cpu_type = "mips/r10000";
		break;

	case CPU_R12000:
	case CPU_R14000:
		op_model_mipsxx_ops.cpu_type = "mips/r12000";
		break;

J
Joshua Kinard 已提交
414 415 416 417
	case CPU_R16000:
		op_model_mipsxx_ops.cpu_type = "mips/r16000";
		break;

M
Mark Mason 已提交
418 419
	case CPU_SB1:
	case CPU_SB1A:
420
		op_model_mipsxx_ops.cpu_type = "mips/sb1";
M
Mark Mason 已提交
421 422
		break;

423 424 425 426
	case CPU_LOONGSON1:
		op_model_mipsxx_ops.cpu_type = "mips/loongson1";
		break;

427 428 429 430
	case CPU_XLR:
		op_model_mipsxx_ops.cpu_type = "mips/xlr";
		break;

431 432 433 434 435 436
	default:
		printk(KERN_ERR "Profiling unsupported for this CPU\n");

		return -ENODEV;
	}

437
	save_perf_irq = perf_irq;
438 439
	perf_irq = mipsxx_perfcount_handler;

440 441
	if (get_c0_perfcount_int)
		perfcount_irq = get_c0_perfcount_int();
442
	else if (cp0_perfcount_irq >= 0)
443 444 445 446 447 448
		perfcount_irq = MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
	else
		perfcount_irq = -1;

	if (perfcount_irq >= 0)
		return request_irq(perfcount_irq, mipsxx_perfcount_int,
449 450 451 452
				   IRQF_PERCPU | IRQF_NOBALANCING |
				   IRQF_NO_THREAD | IRQF_NO_SUSPEND |
				   IRQF_SHARED,
				   "Perfcounter", save_perf_irq);
453

454 455 456 457 458
	return 0;
}

static void mipsxx_exit(void)
{
459
	int counters = op_model_mipsxx_ops.num_counters;
460

461 462
	if (perfcount_irq >= 0)
		free_irq(perfcount_irq, save_perf_irq);
463

464
	counters = counters_per_cpu_to_total(counters);
I
Ingo Molnar 已提交
465
	on_each_cpu(reset_counters, (void *)(long)counters, 1);
466

467
	perf_irq = save_perf_irq;
468 469
}

470
struct op_mips_model op_model_mipsxx_ops = {
471 472 473 474 475 476 477
	.reg_setup	= mipsxx_reg_setup,
	.cpu_setup	= mipsxx_cpu_setup,
	.init		= mipsxx_init,
	.exit		= mipsxx_exit,
	.cpu_start	= mipsxx_cpu_start,
	.cpu_stop	= mipsxx_cpu_stop,
};