brintos

brintos / linux-shallow public Read only

0
0
Text · 698 B · c55a821 Raw
46 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/display/brcm,bcm2835-v3d.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Broadcom VC4 (VideoCore4) V3D GPU8 9maintainers:10  - Eric Anholt <eric@anholt.net>11 12properties:13  compatible:14    enum:15      - brcm,bcm2835-v3d16      - brcm,cygnus-v3d17 18  reg:19    maxItems: 120 21  clocks:22    maxItems: 123 24  interrupts:25    maxItems: 126 27  power-domains:28    maxItems: 129 30required:31  - compatible32  - reg33  - interrupts34 35additionalProperties: false36 37examples:38  - |39    v3d: v3d@7ec00000 {40        compatible = "brcm,bcm2835-v3d";41        reg = <0x7ec00000 0x1000>;42        interrupts = <1 10>;43    };44 45...46