Maxime Ripard | 0945360 | 2020-05-27 17:47:36 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | %YAML 1.2 |
| 3 | --- |
| 4 | $id: http://devicetree.org/schemas/display/brcm,bcm2835-v3d.yaml# |
| 5 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | |
| 7 | title: Broadcom VC4 (VideoCore4) V3D GPU |
| 8 | |
| 9 | maintainers: |
| 10 | - Eric Anholt <eric@anholt.net> |
| 11 | |
| 12 | properties: |
| 13 | compatible: |
| 14 | enum: |
| 15 | - brcm,bcm2835-v3d |
| 16 | - brcm,cygnus-v3d |
| 17 | |
| 18 | reg: |
| 19 | maxItems: 1 |
| 20 | |
| 21 | clocks: |
| 22 | maxItems: 1 |
| 23 | |
| 24 | interrupts: |
| 25 | maxItems: 1 |
| 26 | |
| 27 | required: |
| 28 | - compatible |
| 29 | - reg |
| 30 | - interrupts |
| 31 | |
| 32 | additionalProperties: false |
| 33 | |
| 34 | examples: |
| 35 | - | |
| 36 | v3d: v3d@7ec00000 { |
| 37 | compatible = "brcm,bcm2835-v3d"; |
| 38 | reg = <0x7ec00000 0x1000>; |
| 39 | interrupts = <1 10>; |
| 40 | }; |
| 41 | |
| 42 | ... |