1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/cpu/nvidia,tegra186-ccplex-cluster.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: NVIDIA Tegra186 CCPLEX Cluster
8
9maintainers:
10  - Thierry Reding <thierry.reding@gmail.com>
11  - Jon Hunter <jonathanh@nvidia.com>
12
13properties:
14  compatible:
15    const: nvidia,tegra186-ccplex-cluster
16
17  reg:
18    maxItems: 1
19
20  nvidia,bpmp:
21    description: phandle to the BPMP used to query CPU frequency tables
22    $ref: /schemas/types.yaml#/definitions/phandle
23
24additionalProperties: false
25
26required:
27  - compatible
28  - reg
29  - nvidia,bpmp
30
31examples:
32  - |
33    ccplex@e000000 {
34        compatible = "nvidia,tegra186-ccplex-cluster";
35        reg = <0x0e000000 0x400000>;
36        nvidia,bpmp = <&bpmp>;
37    };
38