brcm,bcm2835-txp.yaml 683 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. title: Broadcom VC4 (VideoCore4) TXP (writeback) Controller
  7. maintainers:
  8. - Eric Anholt <eric@anholt.net>
  9. properties:
  10. compatible:
  11. enum:
  12. - brcm,bcm2712-mop
  13. - brcm,bcm2712-moplet
  14. - brcm,bcm2835-txp
  15. reg:
  16. maxItems: 1
  17. interrupts:
  18. maxItems: 1
  19. required:
  20. - compatible
  21. - reg
  22. - interrupts
  23. additionalProperties: false
  24. examples:
  25. - |
  26. txp: txp@7e004000 {
  27. compatible = "brcm,bcm2835-txp";
  28. reg = <0x7e004000 0x20>;
  29. interrupts = <1 11>;
  30. };
  31. ...