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
7title: Broadcom VC4 (VideoCore4) TXP (writeback) Controller
8
9maintainers:
10  - Eric Anholt <[email protected]>
11
12properties:
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
25required:
26  - compatible
27  - reg
28  - interrupts
29
30additionalProperties: false
31
32examples:
33  - |
34    txp: txp@7e004000 {
35        compatible = "brcm,bcm2835-txp";
36        reg = <0x7e004000 0x20>;
37        interrupts = <1 11>;
38    };
39
40...
41