Merge drm/drm-next into drm-intel-next-queued
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / display / brcm,bcm2835-pixelvalve0.yaml
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
7 title: Broadcom VC4 (VideoCore4) PixelValve
8
9 maintainers:
10   - Eric Anholt <eric@anholt.net>
11
12 properties:
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
25 required:
26   - compatible
27   - reg
28   - interrupts
29
30 additionalProperties: false
31
32 examples:
33   - |
34     pixelvalve@7e807000 {
35         compatible = "brcm,bcm2835-pixelvalve2";
36         reg = <0x7e807000 0x100>;
37         interrupts = <2 10>; /* pixelvalve */
38     };
39
40 ...