1# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/brcm,bcm2835-pixelvalve0.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Broadcom VC4 (VideoCore4) PixelValve
8
9maintainers:
10  - Eric Anholt <eric@anholt.net>
11
12properties:
13  compatible:
14    enum:
15      - brcm,bcm2835-pixelvalve0
16      - brcm,bcm2835-pixelvalve1
17      - brcm,bcm2835-pixelvalve2
18
19  reg:
20    maxItems: 1
21
22  interrupts:
23    maxItems: 1
24
25required:
26  - compatible
27  - reg
28  - interrupts
29
30additionalProperties: false
31
32examples:
33  - |
34    pixelvalve@7e807000 {
35        compatible = "brcm,bcm2835-pixelvalve2";
36        reg = <0x7e807000 0x100>;
37        interrupts = <2 10>; /* pixelvalve */
38    };
39
40...
41