Merge tag 'docs-5.11-2' of git://git.lwn.net/linux
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / display / brcm,bcm2835-vec.yaml
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/display/brcm,bcm2835-vec.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Broadcom VC4 (VideoCore4) VEC
8
9 maintainers:
10   - Eric Anholt <eric@anholt.net>
11
12 properties:
13   compatible:
14     const: brcm,bcm2835-vec
15
16   reg:
17     maxItems: 1
18
19   clocks:
20     maxItems: 1
21
22   interrupts:
23     maxItems: 1
24
25 required:
26   - compatible
27   - reg
28   - clocks
29   - interrupts
30
31 additionalProperties: false
32
33 examples:
34   - |
35     #include <dt-bindings/clock/bcm2835.h>
36
37     vec: vec@7e806000 {
38         compatible = "brcm,bcm2835-vec";
39         reg = <0x7e806000 0x1000>;
40         clocks = <&clocks BCM2835_CLOCK_VEC>;
41         interrupts = <2 27>;
42     };
43
44 ...