Merge drm/drm-next into drm-intel-next-queued
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / display / brcm,bcm2835-hvs.yaml
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/display/brcm,bcm2835-hvs.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Broadcom VC4 (VideoCore4) Hardware Video Scaler
8
9 maintainers:
10   - Eric Anholt <eric@anholt.net>
11
12 properties:
13   compatible:
14     const: brcm,bcm2835-hvs
15
16   reg:
17     maxItems: 1
18
19   interrupts:
20     maxItems: 1
21
22 required:
23   - compatible
24   - reg
25   - interrupts
26
27 additionalProperties: false
28
29 examples:
30   - |
31     hvs@7e400000 {
32         compatible = "brcm,bcm2835-hvs";
33         reg = <0x7e400000 0x6000>;
34         interrupts = <2 1>;
35     };
36
37 ...