code style scripts/checkpatch.pl (linux-3.9-rc1) formatting
[linux-2.6.34.14-moxart.git] / arch / arm / include / asm / pmu.h
blob2829b9f981a1bb9a75b1de97f73fd174b127dbc5
1 /*
2 * linux/arch/arm/include/asm/pmu.h
4 * Copyright (C) 2009 picoChip Designs Ltd, Jamie Iles
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
12 #ifndef __ARM_PMU_H__
13 #define __ARM_PMU_H__
15 #ifdef CONFIG_CPU_HAS_PMU
17 struct pmu_irqs {
18 const int *irqs;
19 int num_irqs;
22 /**
23 * reserve_pmu() - reserve the hardware performance counters
25 * Reserve the hardware performance counters in the system for exclusive use.
26 * The 'struct pmu_irqs' for the system is returned on success, ERR_PTR()
27 * encoded error on failure.
29 extern const struct pmu_irqs *
30 reserve_pmu(void);
32 /**
33 * release_pmu() - Relinquish control of the performance counters
35 * Release the performance counters and allow someone else to use them.
36 * Callers must have disabled the counters and released IRQs before calling
37 * this. The 'struct pmu_irqs' returned from reserve_pmu() must be passed as
38 * a cookie.
40 extern int
41 release_pmu(const struct pmu_irqs *irqs);
43 /**
44 * init_pmu() - Initialise the PMU.
46 * Initialise the system ready for PMU enabling. This should typically set the
47 * IRQ affinity and nothing else. The users (oprofile/perf events etc) will do
48 * the actual hardware initialisation.
50 extern int
51 init_pmu(void);
53 #else /* CONFIG_CPU_HAS_PMU */
55 static inline const struct pmu_irqs *
56 reserve_pmu(void)
58 return ERR_PTR(-ENODEV);
61 static inline int
62 release_pmu(const struct pmu_irqs *irqs)
64 return -ENODEV;
67 static inline int
68 init_pmu(void)
70 return -ENODEV;
73 #endif /* CONFIG_CPU_HAS_PMU */
75 #endif /* __ARM_PMU_H__ */