summaryrefslogtreecommitdiffstats
path: root/arch/ppc64/kernel/pmc.c
blob: cdfec7438d0132334f17b65ec539fa919c997b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
/*
 *  linux/arch/ppc64/kernel/pmc.c
 *
 *  Copyright (C) 2004 David Gibson, IBM Corporation.
 *
 *  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/config.h>
#include <linux/errno.h>
#include <linux/spinlock.h>
#include <linux/module.h>

#include <asm/processor.h>
#include <asm/pmc.h>

/* Ensure exceptions are disabled */
static void dummy_perf(struct pt_regs *regs)
{
	unsigned int mmcr0 = mfspr(SPRN_MMCR0);

	mmcr0 &= ~(MMCR0_PMXE|MMCR0_PMAO);
	mtspr(SPRN_MMCR0, mmcr0);
}

static spinlock_t pmc_owner_lock = SPIN_LOCK_UNLOCKED;
static void *pmc_owner_caller; /* mostly for debugging */
perf_irq_t perf_irq = dummy_perf;

int reserve_pmc_hardware(perf_irq_t new_perf_irq)
{
	int err = 0;

	spin_lock(&pmc_owner_lock);

	if (pmc_owner_caller) {
		printk(KERN_WARNING "reserve_pmc_hardware: "
		       "PMC hardware busy (reserved by caller %p)\n",
		       pmc_owner_caller);
		err = -EBUSY;
		goto out;
	}

	pmc_owner_caller = __builtin_return_address(0);
	perf_irq = new_perf_irq ? : dummy_perf;

 out:
	spin_unlock(&pmc_owner_lock);
	return err;
}
EXPORT_SYMBOL_GPL(reserve_pmc_hardware);

void release_pmc_hardware(void)
{
	spin_lock(&pmc_owner_lock);

	WARN_ON(! pmc_owner_caller);

	pmc_owner_caller = NULL;
	perf_irq = dummy_perf;

	spin_unlock(&pmc_owner_lock);
}
EXPORT_SYMBOL_GPL(release_pmc_hardware);

void power4_enable_pmcs(void)
{
	unsigned long hid0;

	hid0 = mfspr(HID0);
	hid0 |= 1UL << (63 - 20);

	/* POWER4 requires the following sequence */
	asm volatile(
		"sync\n"
		"mtspr     %1, %0\n"
		"mfspr     %0, %1\n"
		"mfspr     %0, %1\n"
		"mfspr     %0, %1\n"
		"mfspr     %0, %1\n"
		"mfspr     %0, %1\n"
		"mfspr     %0, %1\n"
		"isync" : "=&r" (hid0) : "i" (HID0), "0" (hid0):
		"memory");
}
>2013-07-211-2/+194 * Rachana: Add glyph ൎദ and change 'akhn' to 'pres' for ൎദ്രRajeesh K Nambiar2013-07-211-1/+49 * Rachana: 'akhn' to 'psts' correction for ൎന്നു, and add ൎന്...Rajeesh K Nambiar2013-07-211-1/+75 * Rachana: 'akhn' to 'psts' correction for ൎതൃ, ൎത്തൃRajeesh K Nambiar2013-07-211-2/+2 * Rachana: Use 'psts' instead of 'akhn' for <dotreph,ch3,u1>Rajeesh K Nambiar2013-07-201-1/+1 * Rachana: Use 'psts' rule instead of 'akhn' for ligatures involving ു, ൂ, ൃRajeesh K Nambiar2013-07-201-8/+8 * Rachana,Meera: More fixes to <Va,Virama,Va>, <Ya,Virama,Ya> casesRajeesh K Nambiar2013-07-171-1/+3 * Fix dotrephy1yy1 using pstsSanthosh Thottingal2013-06-291-11/+69 * Add akhn also for vvaSanthosh Thottingal2013-06-291-1/+2 * Rachana: Fix dotreph vva (dotreph v1 xx v1)Rajeesh K Nambiar2013-06-231-2/+1 * Reinstate 'pres' rules in combination with 'half' for La, Ya and Va.Rajeesh K Nambiar2013-06-231-21/+21 * Reinstate 'half' rules - needed for ICU Layout Engine :-(. This reverts 14bb0...Rajeesh K Nambiar2013-06-231-104/+77 * Fix ാം renderingSanthosh Thottingal2013-06-221-2/+55 * [Rachana] Round the position points to intSanthosh Thottingal2013-06-221-300/+254 * Rachana- Glyphs for DOT REPH (04DE)Santhosh Thottingal2013-06-221-1080/+5696 * Give default positioning for dot repha 0D4ESanthosh Thottingal2013-06-211-10/+10 * Rachana: Remove 'half' forms and adjust 'pres' rules accordingly (for mlym).Rajeesh K Nambiar2013-04-281-78/+35 * Rachana: fix 'psts' rule for യ്തുRajeesh K Nambiar2013-04-231-3/+4 * Revert "Port Rachana to mlm2 opentype spec while keeping mlym compatible."Rajeesh K Nambiar2013-04-211-806/+800 * Rachana: more 'akhn' fixesRajeesh K Nambiar2013-04-211-8/+8 * Port Rachana to mlm2 opentype spec while keeping mlym compatible.Rajeesh K Nambiar2013-03-311-800/+806 * Add rest of the glyphs defined unicode 6.0Santhosh Thottingal2013-03-231-26/+645 * Remove hintsing instructionsSanthosh Thottingal2013-03-23