blob: 49a5e041aa49369a70ee716d02d5dc2a868aff28 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/brcm,bcm2835-vc4.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Broadcom VC4 (VideoCore4) GPU
8
9maintainers:
10 - Eric Anholt <eric@anholt.net>
11
12description: >
13 The VC4 device present on the Raspberry Pi includes a display system
14 with HDMI output and the HVS (Hardware Video Scaler) for compositing
15 display planes.
16
17properties:
18 compatible:
19 enum:
20 - brcm,bcm2711-vc5
21 - brcm,bcm2835-vc4
22 - brcm,cygnus-vc4
23
24required:
25 - compatible
26
27additionalProperties: false
28
29examples:
30 - |
31 vc4: gpu {
32 compatible = "brcm,bcm2835-vc4";
33 };
34
35...