Mark Rutland | e73c34c | 2011-06-22 15:33:55 +0100 | [diff] [blame] | 1 | * ARM Performance Monitor Units |
| 2 | |
| 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:- |
| 6 | |
| 7 | Required properties: |
| 8 | |
| 9 | - compatible : should be one of |
Will Deacon | 50243ef | 2012-07-28 16:05:55 +0100 | [diff] [blame] | 10 | "arm,cortex-a15-pmu" |
Mark Rutland | e73c34c | 2011-06-22 15:33:55 +0100 | [diff] [blame] | 11 | "arm,cortex-a9-pmu" |
| 12 | "arm,cortex-a8-pmu" |
Will Deacon | 50243ef | 2012-07-28 16:05:55 +0100 | [diff] [blame] | 13 | "arm,cortex-a7-pmu" |
| 14 | "arm,cortex-a5-pmu" |
| 15 | "arm,arm11mpcore-pmu" |
Mark Rutland | e73c34c | 2011-06-22 15:33:55 +0100 | [diff] [blame] | 16 | "arm,arm1176-pmu" |
| 17 | "arm,arm1136-pmu" |
| 18 | - interrupts : 1 combined interrupt or 1 per core. |
| 19 | |
| 20 | Example: |
| 21 | |
| 22 | pmu { |
| 23 | compatible = "arm,cortex-a9-pmu"; |
| 24 | interrupts = <100 101>; |
| 25 | }; |