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