Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / brcm,bcm2835-v3d.yaml
blobc55a8217de250414a4c0252e19e3cdb181578a98
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#
7 title: Broadcom VC4 (VideoCore4) V3D GPU
9 maintainers:
10   - Eric Anholt <eric@anholt.net>
12 properties:
13   compatible:
14     enum:
15       - brcm,bcm2835-v3d
16       - brcm,cygnus-v3d
18   reg:
19     maxItems: 1
21   clocks:
22     maxItems: 1
24   interrupts:
25     maxItems: 1
27   power-domains:
28     maxItems: 1
30 required:
31   - compatible
32   - reg
33   - interrupts
35 additionalProperties: false
37 examples:
38   - |
39     v3d: v3d@7ec00000 {
40         compatible = "brcm,bcm2835-v3d";
41         reg = <0x7ec00000 0x1000>;
42         interrupts = <1 10>;
43     };
45 ...