0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/perf/arm,ccn.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: ARM CCN (Cache Coherent Network) Performance Monitors
0008
0009 maintainers:
0010 - Robin Murphy <robin.murphy@arm.com>
0011
0012 properties:
0013 compatible:
0014 enum:
0015 - arm,ccn-502
0016 - arm,ccn-504
0017 - arm,ccn-508
0018 - arm,ccn-512
0019
0020 reg:
0021 maxItems: 1
0022
0023 interrupts:
0024 maxItems: 1
0025
0026 required:
0027 - compatible
0028 - reg
0029 - interrupts
0030
0031 additionalProperties: false
0032
0033 examples:
0034 - |
0035 ccn@20000000 {
0036 compatible = "arm,ccn-504";
0037 reg = <0x20000000 0x1000000>;
0038 interrupts = <0 181 4>;
0039 };
0040 ...