Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/display/brcm,bcm2835-txp.yaml
26308 views
1
# SPDX-License-Identifier: GPL-2.0
2
%YAML 1.2
3
---
4
$id: http://devicetree.org/schemas/display/brcm,bcm2835-txp.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7
title: Broadcom VC4 (VideoCore4) TXP (writeback) Controller
8
9
maintainers:
10
- Eric Anholt <eric@anholt.net>
11
12
properties:
13
compatible:
14
enum:
15
- brcm,bcm2712-mop
16
- brcm,bcm2712-moplet
17
- brcm,bcm2835-txp
18
19
reg:
20
maxItems: 1
21
22
interrupts:
23
maxItems: 1
24
25
required:
26
- compatible
27
- reg
28
- interrupts
29
30
additionalProperties: false
31
32
examples:
33
- |
34
txp: txp@7e004000 {
35
compatible = "brcm,bcm2835-txp";
36
reg = <0x7e004000 0x20>;
37
interrupts = <1 11>;
38
};
39
40
...
41
42