0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/brcm,bcm2835-vec.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Broadcom VC4 (VideoCore4) VEC
0008
0009 maintainers:
0010 - Eric Anholt <eric@anholt.net>
0011
0012 properties:
0013 compatible:
0014 enum:
0015 - brcm,bcm2711-vec
0016 - brcm,bcm2835-vec
0017
0018 reg:
0019 maxItems: 1
0020
0021 clocks:
0022 maxItems: 1
0023
0024 interrupts:
0025 maxItems: 1
0026
0027 power-domains:
0028 maxItems: 1
0029
0030 required:
0031 - compatible
0032 - reg
0033 - clocks
0034 - interrupts
0035
0036 additionalProperties: false
0037
0038 examples:
0039 - |
0040 #include <dt-bindings/clock/bcm2835.h>
0041
0042 vec: vec@7e806000 {
0043 compatible = "brcm,bcm2835-vec";
0044 reg = <0x7e806000 0x1000>;
0045 clocks = <&clocks BCM2835_CLOCK_VEC>;
0046 interrupts = <2 27>;
0047 };
0048
0049 ...