diff options
author | Pawel Moll <pawel.moll@arm.com> | 2014-07-22 21:32:59 +0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-07-24 00:14:43 +0400 |
commit | a33b0daab73a0e08cc04459dd44b0121a8e8f81b (patch) | |
tree | e7c432add19822871a057313264825c85e9cdf80 /Documentation/devicetree/bindings/arm/ccn.txt | |
parent | 779ae55bd8ee63f2ba35a0ec15f033e512e706ee (diff) | |
download | linux-a33b0daab73a0e08cc04459dd44b0121a8e8f81b.tar.xz |
bus: ARM CCN PMU driver
Driver providing perf backend for ARM Cache Coherent Network
interconnect. Supports counting all hardware events and crosspoint
watchpoints.
Currently works with CCN-504 only, although there should be
no changes required for CCN-508 (just impossible to test it now).
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'Documentation/devicetree/bindings/arm/ccn.txt')
-rw-r--r-- | Documentation/devicetree/bindings/arm/ccn.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/ccn.txt b/Documentation/devicetree/bindings/arm/ccn.txt new file mode 100644 index 000000000000..b100d3847d88 --- /dev/null +++ b/Documentation/devicetree/bindings/arm/ccn.txt @@ -0,0 +1,21 @@ +* ARM CCN (Cache Coherent Network) + +Required properties: + +- compatible: (standard compatible string) should be one of: + "arm,ccn-504" + "arm,ccn-508" + +- reg: (standard registers property) physical address and size + (16MB) of the configuration registers block + +- interrupts: (standard interrupt property) single interrupt + generated by the control block + +Example: + + ccn@0x2000000000 { + compatible = "arm,ccn-504"; + reg = <0x20 0x00000000 0 0x1000000>; + interrupts = <0 181 4>; + }; |