Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/brcm,bcm2835-v3d.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Broadcom VC4 (VideoCore4) V3D GPU
0008 
0009 maintainers:
0010   - Eric Anholt <eric@anholt.net>
0011 
0012 properties:
0013   compatible:
0014     enum:
0015       - brcm,bcm2835-v3d
0016       - brcm,cygnus-v3d
0017 
0018   reg:
0019     maxItems: 1
0020 
0021   clocks:
0022     maxItems: 1
0023 
0024   interrupts:
0025     maxItems: 1
0026 
0027   power-domains:
0028     maxItems: 1
0029 
0030 required:
0031   - compatible
0032   - reg
0033   - interrupts
0034 
0035 additionalProperties: false
0036 
0037 examples:
0038   - |
0039     v3d: v3d@7ec00000 {
0040         compatible = "brcm,bcm2835-v3d";
0041         reg = <0x7ec00000 0x1000>;
0042         interrupts = <1 10>;
0043     };
0044 
0045 ...