Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/display/brcm,bcm2835-hvs.yaml
26308 views
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
enum:
15
- brcm,bcm2711-hvs
16
- brcm,bcm2712-hvs
17
- brcm,bcm2835-hvs
18
19
reg:
20
maxItems: 1
21
22
interrupts:
23
maxItems: 1
24
25
clocks:
26
maxItems: 1
27
description: Core Clock
28
29
required:
30
- compatible
31
- reg
32
- interrupts
33
34
additionalProperties: false
35
36
if:
37
properties:
38
compatible:
39
contains:
40
enum:
41
- brcm,bcm2711-hvs
42
- brcm,bcm2712-hvs
43
44
then:
45
required:
46
- clocks
47
48
examples:
49
- |
50
hvs@7e400000 {
51
compatible = "brcm,bcm2835-hvs";
52
reg = <0x7e400000 0x6000>;
53
interrupts = <2 1>;
54
};
55
56
...
57
58