0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/brcm,bcm2835-txp.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Broadcom VC4 (VideoCore4) TXP (writeback) Controller
0008
0009 maintainers:
0010 - Eric Anholt <eric@anholt.net>
0011
0012 properties:
0013 compatible:
0014 const: brcm,bcm2835-txp
0015
0016 reg:
0017 maxItems: 1
0018
0019 interrupts:
0020 maxItems: 1
0021
0022 required:
0023 - compatible
0024 - reg
0025 - interrupts
0026
0027 additionalProperties: false
0028
0029 examples:
0030 - |
0031 txp: txp@7e004000 {
0032 compatible = "brcm,bcm2835-txp";
0033 reg = <0x7e004000 0x20>;
0034 interrupts = <1 11>;
0035 };
0036
0037 ...