ARM: 8054/1: perf: add support for the Cortex-A17 PMU
[linux-2.6/btrfs-unstable.git] / Documentation / devicetree / bindings / arm / pmu.txt
blob75ef91d08f3bd2cbc402326598ead0e34663e790
1 * ARM Performance Monitor Units
3 ARM cores often have a PMU for counting cpu and cache events like cache misses
4 and hits. The interface to the PMU is part of the ARM ARM. The ARM PMU
5 representation in the device tree should be done as under:-
7 Required properties:
9 - compatible : should be one of
10         "arm,armv8-pmuv3"
11         "arm,cortex-a17-pmu"
12         "arm,cortex-a15-pmu"
13         "arm,cortex-a12-pmu"
14         "arm,cortex-a9-pmu"
15         "arm,cortex-a8-pmu"
16         "arm,cortex-a7-pmu"
17         "arm,cortex-a5-pmu"
18         "arm,arm11mpcore-pmu"
19         "arm,arm1176-pmu"
20         "arm,arm1136-pmu"
21         "qcom,krait-pmu"
22 - interrupts : 1 combined interrupt or 1 per core. If the interrupt is a per-cpu
23                interrupt (PPI) then 1 interrupt should be specified.
25 Optional properties:
27 - qcom,no-pc-write : Indicates that this PMU doesn't support the 0xc and 0xd
28                      events.
30 Example:
32 pmu {
33         compatible = "arm,cortex-a9-pmu";
34         interrupts = <100 101>;