op_model_power4.c 11.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * Copyright (C) 2004 Anton Blanchard <anton@au.ibm.com>, IBM
3 4
 * Added mmcra[slot] support:
 * Copyright (C) 2006-2007 Will Schmidt <willschm@us.ibm.com>, IBM
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/oprofile.h>
#include <linux/init.h>
#include <linux/smp.h>
15
#include <asm/firmware.h>
L
Linus Torvalds 已提交
16 17 18 19
#include <asm/ptrace.h>
#include <asm/processor.h>
#include <asm/cputable.h>
#include <asm/rtas.h>
20
#include <asm/oprofile_impl.h>
21
#include <asm/reg.h>
L
Linus Torvalds 已提交
22 23

#define dbg(args...)
24 25 26 27 28 29 30
#define OPROFILE_PM_PMCSEL_MSK      0xffULL
#define OPROFILE_PM_UNIT_SHIFT      60
#define OPROFILE_PM_UNIT_MSK        0xfULL
#define OPROFILE_MAX_PMC_NUM        3
#define OPROFILE_PMSEL_FIELD_WIDTH  8
#define OPROFILE_UNIT_FIELD_WIDTH   4
#define MMCRA_SIAR_VALID_MASK       0x10000000ULL
L
Linus Torvalds 已提交
31 32 33 34

static unsigned long reset_value[OP_MAX_COUNTER];

static int oprofile_running;
35
static int use_slot_nums;
L
Linus Torvalds 已提交
36 37 38 39

/* mmcr values are set in power4_reg_setup, used in power4_cpu_setup */
static u32 mmcr0_val;
static u64 mmcr1_val;
40
static u64 mmcra_val;
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
static u32 cntr_marked_events;

static int power7_marked_instr_event(u64 mmcr1)
{
	u64 psel, unit;
	int pmc, cntr_marked_events = 0;

	/* Given the MMCR1 value, look at the field for each counter to
	 * determine if it is a marked event.  Code based on the function
	 * power7_marked_instr_event() in file arch/powerpc/perf/power7-pmu.c.
	 */
	for (pmc = 0; pmc < 4; pmc++) {
		psel = mmcr1 & (OPROFILE_PM_PMCSEL_MSK
				<< (OPROFILE_MAX_PMC_NUM - pmc)
				* OPROFILE_MAX_PMC_NUM);
		psel = (psel >> ((OPROFILE_MAX_PMC_NUM - pmc)
				 * OPROFILE_PMSEL_FIELD_WIDTH)) & ~1ULL;
		unit = mmcr1 & (OPROFILE_PM_UNIT_MSK
				<< (OPROFILE_PM_UNIT_SHIFT
				    - (pmc * OPROFILE_PMSEL_FIELD_WIDTH )));
		unit = unit >> (OPROFILE_PM_UNIT_SHIFT
				- (pmc * OPROFILE_PMSEL_FIELD_WIDTH));

		switch (psel >> 4) {
		case 2:
			cntr_marked_events |= (pmc == 1 || pmc == 3) << pmc;
			break;
		case 3:
			if (psel == 0x3c) {
				cntr_marked_events |= (pmc == 0) << pmc;
				break;
			}

			if (psel == 0x3e) {
				cntr_marked_events |= (pmc != 1) << pmc;
				break;
			}

			cntr_marked_events |= 1 << pmc;
			break;
		case 4:
		case 5:
			cntr_marked_events |= (unit == 0xd) << pmc;
			break;
		case 6:
			if (psel == 0x64)
				cntr_marked_events |= (pmc >= 2) << pmc;
			break;
		case 8:
			cntr_marked_events |= (unit == 0xd) << pmc;
			break;
		}
	}
	return cntr_marked_events;
}
L
Linus Torvalds 已提交
96

97
static int power4_reg_setup(struct op_counter_config *ctr,
L
Linus Torvalds 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111
			     struct op_system_config *sys,
			     int num_ctrs)
{
	int i;

	/*
	 * The performance counter event settings are given in the mmcr0,
	 * mmcr1 and mmcra values passed from the user in the
	 * op_system_config structure (sys variable).
	 */
	mmcr0_val = sys->mmcr0;
	mmcr1_val = sys->mmcr1;
	mmcra_val = sys->mmcra;

112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
	/* Power 7+ and newer architectures:
	 * Determine which counter events in the group (the group of events is
	 * specified by the bit settings in the MMCR1 register) are marked
	 * events for use in the interrupt handler.  Do the calculation once
	 * before OProfile starts.  Information is used in the interrupt
	 * handler.  Starting with Power 7+ we only record the sample for
	 * marked events if the SIAR valid bit is set.  For non marked events
	 * the sample is always recorded.
	 */
	if (pvr_version_is(PVR_POWER7p))
		cntr_marked_events = power7_marked_instr_event(mmcr1_val);
	else
		cntr_marked_events = 0; /* For older processors, set the bit map
					 * to zero so the sample will always be
					 * be recorded.
					 */

129
	for (i = 0; i < cur_cpu_spec->num_pmcs; ++i)
L
Linus Torvalds 已提交
130 131 132 133 134 135 136 137 138 139 140 141
		reset_value[i] = 0x80000000UL - ctr[i].count;

	/* setup user and kernel profiling */
	if (sys->enable_kernel)
		mmcr0_val &= ~MMCR0_KERNEL_DISABLE;
	else
		mmcr0_val |= MMCR0_KERNEL_DISABLE;

	if (sys->enable_user)
		mmcr0_val &= ~MMCR0_PROBLEM_DISABLE;
	else
		mmcr0_val |= MMCR0_PROBLEM_DISABLE;
142

143 144 145 146
	if (pvr_version_is(PVR_POWER4) || pvr_version_is(PVR_POWER4p) ||
	    pvr_version_is(PVR_970) || pvr_version_is(PVR_970FX) ||
	    pvr_version_is(PVR_970MP) || pvr_version_is(PVR_970GX) ||
	    pvr_version_is(PVR_POWER5) || pvr_version_is(PVR_POWER5p))
147 148
		use_slot_nums = 1;

149
	return 0;
L
Linus Torvalds 已提交
150 151
}

152
extern void ppc_enable_pmcs(void);
L
Linus Torvalds 已提交
153

154 155 156 157 158 159 160 161 162 163 164 165
/*
 * Older CPUs require the MMCRA sample bit to be always set, but newer 
 * CPUs only want it set for some groups. Eventually we will remove all
 * knowledge of this bit in the kernel, oprofile userspace should be
 * setting it when required.
 *
 * In order to keep current installations working we force the bit for
 * those older CPUs. Once everyone has updated their oprofile userspace we
 * can remove this hack.
 */
static inline int mmcra_must_set_sample(void)
{
166 167 168
	if (pvr_version_is(PVR_POWER4) || pvr_version_is(PVR_POWER4p) ||
	    pvr_version_is(PVR_970) || pvr_version_is(PVR_970FX) ||
	    pvr_version_is(PVR_970MP) || pvr_version_is(PVR_970GX))
169 170 171 172 173
		return 1;

	return 0;
}

174
static int power4_cpu_setup(struct op_counter_config *ctr)
L
Linus Torvalds 已提交
175 176 177 178
{
	unsigned int mmcr0 = mmcr0_val;
	unsigned long mmcra = mmcra_val;

179
	ppc_enable_pmcs();
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188 189 190

	/* set the freeze bit */
	mmcr0 |= MMCR0_FC;
	mtspr(SPRN_MMCR0, mmcr0);

	mmcr0 |= MMCR0_FCM1|MMCR0_PMXE|MMCR0_FCECE;
	mmcr0 |= MMCR0_PMC1CE|MMCR0_PMCjCE;
	mtspr(SPRN_MMCR0, mmcr0);

	mtspr(SPRN_MMCR1, mmcr1_val);

191 192
	if (mmcra_must_set_sample())
		mmcra |= MMCRA_SAMPLE_ENABLE;
L
Linus Torvalds 已提交
193 194 195 196 197 198 199 200
	mtspr(SPRN_MMCRA, mmcra);

	dbg("setup on cpu %d, mmcr0 %lx\n", smp_processor_id(),
	    mfspr(SPRN_MMCR0));
	dbg("setup on cpu %d, mmcr1 %lx\n", smp_processor_id(),
	    mfspr(SPRN_MMCR1));
	dbg("setup on cpu %d, mmcra %lx\n", smp_processor_id(),
	    mfspr(SPRN_MMCRA));
201 202

	return 0;
L
Linus Torvalds 已提交
203 204
}

205
static int power4_start(struct op_counter_config *ctr)
L
Linus Torvalds 已提交
206 207 208 209 210 211 212
{
	int i;
	unsigned int mmcr0;

	/* set the PMM bit (see comment below) */
	mtmsrd(mfmsr() | MSR_PMM);

213
	for (i = 0; i < cur_cpu_spec->num_pmcs; ++i) {
L
Linus Torvalds 已提交
214
		if (ctr[i].enabled) {
O
Olof Johansson 已提交
215
			classic_ctr_write(i, reset_value[i]);
L
Linus Torvalds 已提交
216
		} else {
O
Olof Johansson 已提交
217
			classic_ctr_write(i, 0);
L
Linus Torvalds 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
		}
	}

	mmcr0 = mfspr(SPRN_MMCR0);

	/*
	 * We must clear the PMAO bit on some (GQ) chips. Just do it
	 * all the time
	 */
	mmcr0 &= ~MMCR0_PMAO;

	/*
	 * now clear the freeze bit, counting will not start until we
	 * rfid from this excetion, because only at that point will
	 * the PMM bit be cleared
	 */
	mmcr0 &= ~MMCR0_FC;
	mtspr(SPRN_MMCR0, mmcr0);

	oprofile_running = 1;

	dbg("start on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0);
240
	return 0;
L
Linus Torvalds 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
}

static void power4_stop(void)
{
	unsigned int mmcr0;

	/* freeze counters */
	mmcr0 = mfspr(SPRN_MMCR0);
	mmcr0 |= MMCR0_FC;
	mtspr(SPRN_MMCR0, mmcr0);

	oprofile_running = 0;

	dbg("stop on cpu %d, mmcr0 %x\n", smp_processor_id(), mmcr0);

	mb();
}

/* Fake functions used by canonicalize_pc */
A
Adrian Bunk 已提交
260
static void __used hypervisor_bucket(void)
L
Linus Torvalds 已提交
261 262 263
{
}

A
Adrian Bunk 已提交
264
static void __used rtas_bucket(void)
L
Linus Torvalds 已提交
265 266 267
{
}

A
Adrian Bunk 已提交
268
static void __used kernel_unknown_bucket(void)
L
Linus Torvalds 已提交
269 270 271 272 273 274 275
{
}

/*
 * On GQ and newer the MMCRA stores the HV and PR bits at the time
 * the SIAR was sampled. We use that to work out if the SIAR was sampled in
 * the hypervisor, our exception vectors or RTAS.
276 277 278 279 280
 * If the MMCRA_SAMPLE_ENABLE bit is set, we can use the MMCRA[slot] bits
 * to more accurately identify the address of the sampled instruction. The
 * mmcra[slot] bits represent the slot number of a sampled instruction
 * within an instruction group.  The slot will contain a value between 1
 * and 5 if MMCRA_SAMPLE_ENABLE is set, otherwise 0.
L
Linus Torvalds 已提交
281 282 283 284 285
 */
static unsigned long get_pc(struct pt_regs *regs)
{
	unsigned long pc = mfspr(SPRN_SIAR);
	unsigned long mmcra;
286
	unsigned long slot;
L
Linus Torvalds 已提交
287

L
Lucas De Marchi 已提交
288
	/* Can't do much about it */
289
	if (!cur_cpu_spec->oprofile_mmcra_sihv)
290
		return pc;
L
Linus Torvalds 已提交
291 292 293

	mmcra = mfspr(SPRN_MMCRA);

294
	if (use_slot_nums && (mmcra & MMCRA_SAMPLE_ENABLE)) {
295 296 297 298 299
		slot = ((mmcra & MMCRA_SLOT) >> MMCRA_SLOT_SHIFT);
		if (slot > 1)
			pc += 4 * (slot - 1);
	}

L
Linus Torvalds 已提交
300
	/* Were we in the hypervisor? */
301 302
	if (firmware_has_feature(FW_FEATURE_LPAR) &&
	    (mmcra & cur_cpu_spec->oprofile_mmcra_sihv))
L
Linus Torvalds 已提交
303 304 305 306
		/* function descriptor madness */
		return *((unsigned long *)hypervisor_bucket);

	/* We were in userspace, nothing to do */
307
	if (mmcra & cur_cpu_spec->oprofile_mmcra_sipr)
L
Linus Torvalds 已提交
308 309 310 311 312 313 314 315 316 317 318 319 320 321
		return pc;

#ifdef CONFIG_PPC_RTAS
	/* Were we in RTAS? */
	if (pc >= rtas.base && pc < (rtas.base + rtas.size))
		/* function descriptor madness */
		return *((unsigned long *)rtas_bucket);
#endif

	/* Were we in our exception vectors or SLB real mode miss handler? */
	if (pc < 0x1000000UL)
		return (unsigned long)__va(pc);

	/* Not sure where we were */
322
	if (!is_kernel_addr(pc))
L
Linus Torvalds 已提交
323 324 325
		/* function descriptor madness */
		return *((unsigned long *)kernel_unknown_bucket);

326
	return pc;
L
Linus Torvalds 已提交
327 328
}

329
static int get_kernel(unsigned long pc, unsigned long mmcra)
L
Linus Torvalds 已提交
330 331 332
{
	int is_kernel;

333
	if (!cur_cpu_spec->oprofile_mmcra_sihv) {
334
		is_kernel = is_kernel_addr(pc);
L
Linus Torvalds 已提交
335
	} else {
336
		is_kernel = ((mmcra & cur_cpu_spec->oprofile_mmcra_sipr) == 0);
L
Linus Torvalds 已提交
337 338 339 340 341
	}

	return is_kernel;
}

342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
static bool pmc_overflow(unsigned long val)
{
	if ((int)val < 0)
		return true;

	/*
	 * Events on POWER7 can roll back if a speculative event doesn't
	 * eventually complete. Unfortunately in some rare cases they will
	 * raise a performance monitor exception. We need to catch this to
	 * ensure we reset the PMC. In all cases the PMC will be 256 or less
	 * cycles from overflow.
	 *
	 * We only do this if the first pass fails to find any overflowing
	 * PMCs because a user might set a period of less than 256 and we
	 * don't want to mistakenly reset them.
	 */
358
	if (pvr_version_is(PVR_POWER7) && ((0x80000000 - val) <= 256))
359 360 361 362 363
		return true;

	return false;
}

L
Linus Torvalds 已提交
364 365 366 367 368 369 370 371
static void power4_handle_interrupt(struct pt_regs *regs,
				    struct op_counter_config *ctr)
{
	unsigned long pc;
	int is_kernel;
	int val;
	int i;
	unsigned int mmcr0;
372
	unsigned long mmcra;
373
	bool siar_valid = false;
374 375

	mmcra = mfspr(SPRN_MMCRA);
L
Linus Torvalds 已提交
376 377

	pc = get_pc(regs);
378
	is_kernel = get_kernel(pc, mmcra);
L
Linus Torvalds 已提交
379 380 381 382

	/* set the PMM bit (see comment below) */
	mtmsrd(mfmsr() | MSR_PMM);

383 384 385 386
	/* Check that the SIAR  valid bit in MMCRA is set to 1. */
	if ((mmcra & MMCRA_SIAR_VALID_MASK) == MMCRA_SIAR_VALID_MASK)
		siar_valid = true;

387
	for (i = 0; i < cur_cpu_spec->num_pmcs; ++i) {
O
Olof Johansson 已提交
388
		val = classic_ctr_read(i);
389
		if (pmc_overflow(val)) {
L
Linus Torvalds 已提交
390
			if (oprofile_running && ctr[i].enabled) {
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
				/* Power 7+ and newer architectures:
				 * If the event is a marked event, then only
				 * save the sample if the SIAR valid bit is
				 * set.  If the event is not marked, then
				 * always save the sample.
				 * Note, the Sample enable bit in the MMCRA
				 * register must be set to 1 if the group
				 * contains a marked event.
				 */
				if ((siar_valid &&
				     (cntr_marked_events & (1 << i)))
				    || !(cntr_marked_events & (1 << i)))
					oprofile_add_ext_sample(pc, regs, i,
								is_kernel);

O
Olof Johansson 已提交
406
				classic_ctr_write(i, reset_value[i]);
L
Linus Torvalds 已提交
407
			} else {
O
Olof Johansson 已提交
408
				classic_ctr_write(i, 0);
L
Linus Torvalds 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
			}
		}
	}

	mmcr0 = mfspr(SPRN_MMCR0);

	/* reset the perfmon trigger */
	mmcr0 |= MMCR0_PMXE;

	/*
	 * We must clear the PMAO bit on some (GQ) chips. Just do it
	 * all the time
	 */
	mmcr0 &= ~MMCR0_PMAO;

424 425 426 427
	/* Clear the appropriate bits in the MMCRA */
	mmcra &= ~cur_cpu_spec->oprofile_mmcra_clear;
	mtspr(SPRN_MMCRA, mmcra);

L
Linus Torvalds 已提交
428 429 430 431 432 433 434 435 436
	/*
	 * now clear the freeze bit, counting will not start until we
	 * rfid from this exception, because only at that point will
	 * the PMM bit be cleared
	 */
	mmcr0 &= ~MMCR0_FC;
	mtspr(SPRN_MMCR0, mmcr0);
}

437
struct op_powerpc_model op_model_power4 = {
L
Linus Torvalds 已提交
438 439 440 441 442 443
	.reg_setup		= power4_reg_setup,
	.cpu_setup		= power4_cpu_setup,
	.start			= power4_start,
	.stop			= power4_stop,
	.handle_interrupt	= power4_handle_interrupt,
};