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-vc4.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Broadcom VC4 (VideoCore4) GPU
0008 
0009 maintainers:
0010   - Eric Anholt <eric@anholt.net>
0011 
0012 description: >
0013   The VC4 device present on the Raspberry Pi includes a display system
0014   with HDMI output and the HVS (Hardware Video Scaler) for compositing
0015   display planes.
0016 
0017 properties:
0018   compatible:
0019     enum:
0020       - brcm,bcm2711-vc5
0021       - brcm,bcm2835-vc4
0022       - brcm,cygnus-vc4
0023 
0024 required:
0025   - compatible
0026 
0027 additionalProperties: false
0028 
0029 examples:
0030   - |
0031     vc4: gpu {
0032         compatible = "brcm,bcm2835-vc4";
0033     };
0034 
0035 ...