Merge drm/drm-next into drm-intel-gt-next
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / arm / pmu.yaml
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/arm/pmu.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: ARM Performance Monitor Units
8
9 maintainers:
10   - Mark Rutland <mark.rutland@arm.com>
11   - Will Deacon <will.deacon@arm.com>
12
13 description: |+
14   ARM cores often have a PMU for counting cpu and cache events like cache misses
15   and hits. The interface to the PMU is part of the ARM ARM. The ARM PMU
16   representation in the device tree should be done as under:-
17
18 properties:
19   compatible:
20     items:
21       - enum:
22           - apm,potenza-pmu
23           - arm,armv8-pmuv3 # Only for s/w models
24           - arm,arm1136-pmu
25           - arm,arm1176-pmu
26           - arm,arm11mpcore-pmu
27           - arm,cortex-a5-pmu
28           - arm,cortex-a7-pmu
29           - arm,cortex-a8-pmu
30           - arm,cortex-a9-pmu
31           - arm,cortex-a12-pmu
32           - arm,cortex-a15-pmu
33           - arm,cortex-a17-pmu
34           - arm,cortex-a32-pmu
35           - arm,cortex-a34-pmu
36           - arm,cortex-a35-pmu
37           - arm,cortex-a53-pmu
38           - arm,cortex-a55-pmu
39           - arm,cortex-a57-pmu
40           - arm,cortex-a65-pmu
41           - arm,cortex-a72-pmu
42           - arm,cortex-a73-pmu
43           - arm,cortex-a75-pmu
44           - arm,cortex-a76-pmu
45           - arm,cortex-a77-pmu
46           - arm,cortex-a78-pmu
47           - arm,neoverse-e1-pmu
48           - arm,neoverse-n1-pmu
49           - brcm,vulcan-pmu
50           - cavium,thunder-pmu
51           - qcom,krait-pmu
52           - qcom,scorpion-pmu
53           - qcom,scorpion-mp-pmu
54
55   interrupts:
56     # Don't know how many CPUs, so no constraints to specify
57     description: 1 per-cpu interrupt (PPI) or 1 interrupt per core.
58
59   interrupt-affinity:
60     $ref: /schemas/types.yaml#/definitions/phandle-array
61     description:
62       When using SPIs, specifies a list of phandles to CPU
63       nodes corresponding directly to the affinity of
64       the SPIs listed in the interrupts property.
65
66       When using a PPI, specifies a list of phandles to CPU
67       nodes corresponding to the set of CPUs which have
68       a PMU of this type signalling the PPI listed in the
69       interrupts property, unless this is already specified
70       by the PPI interrupt specifier itself (in which case
71       the interrupt-affinity property shouldn't be present).
72
73       This property should be present when there is more than
74       a single SPI.
75
76   qcom,no-pc-write:
77     type: boolean
78     description:
79       Indicates that this PMU doesn't support the 0xc and 0xd events.
80
81   secure-reg-access:
82     type: boolean
83     description:
84       Indicates that the ARMv7 Secure Debug Enable Register
85       (SDER) is accessible. This will cause the driver to do
86       any setup required that is only possible in ARMv7 secure
87       state. If not present the ARMv7 SDER will not be touched,
88       which means the PMU may fail to operate unless external
89       code (bootloader or security monitor) has performed the
90       appropriate initialisation. Note that this property is
91       not valid for non-ARMv7 CPUs or ARMv7 CPUs booting Linux
92       in Non-secure state.
93
94 required:
95   - compatible
96
97 additionalProperties: false
98
99 ...