Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 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 | |
| 7 | title: NVIDIA Tegra186 CCPLEX Cluster |
| 8 | |
| 9 | maintainers: |
| 10 | - Thierry Reding <thierry.reding@gmail.com> |
| 11 | - Jon Hunter <jonathanh@nvidia.com> |
| 12 | |
| 13 | properties: |
| 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 | |
| 24 | additionalProperties: false |
| 25 | |
| 26 | required: |
| 27 | - compatible |
| 28 | - reg |
| 29 | - nvidia,bpmp |
| 30 | |
| 31 | examples: |
| 32 | - | |
| 33 | ccplex@e000000 { |
| 34 | compatible = "nvidia,tegra186-ccplex-cluster"; |
| 35 | reg = <0x0e000000 0x400000>; |
| 36 | nvidia,bpmp = <&bpmp>; |
| 37 | }; |