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.
16 ARM_PMU_DEVICE_CPU
= 0,
20 #ifdef CONFIG_CPU_HAS_PMU
23 * reserve_pmu() - reserve the hardware performance counters
25 * Reserve the hardware performance counters in the system for exclusive use.
26 * The platform_device for the system is returned on success, ERR_PTR()
27 * encoded error on failure.
29 extern struct platform_device
*
30 reserve_pmu(enum arm_pmu_type device
);
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 platform_device returned from reserve_pmu() must be passed as
41 release_pmu(struct platform_device
*pdev
);
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.
51 init_pmu(enum arm_pmu_type device
);
53 #else /* CONFIG_CPU_HAS_PMU */
55 #include <linux/err.h>
57 static inline struct platform_device
*
58 reserve_pmu(enum arm_pmu_type device
)
60 return ERR_PTR(-ENODEV
);
64 release_pmu(struct platform_device
*pdev
)
70 init_pmu(enum arm_pmu_type device
)
75 #endif /* CONFIG_CPU_HAS_PMU */
77 #endif /* __ARM_PMU_H__ */