mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 02:51:44 +00:00
a33b0daab7
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>
22 lines
482 B
Plaintext
22 lines
482 B
Plaintext
* 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>;
|
|
};
|