brcm,bcm2835-txp.yaml 623 B

12345678910111213141516171819202122232425262728293031323334353637
  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. const: brcm,bcm2835-txp
  12. reg:
  13. maxItems: 1
  14. interrupts:
  15. maxItems: 1
  16. required:
  17. - compatible
  18. - reg
  19. - interrupts
  20. additionalProperties: false
  21. examples:
  22. - |
  23. txp: txp@7e004000 {
  24. compatible = "brcm,bcm2835-txp";
  25. reg = <0x7e004000 0x20>;
  26. interrupts = <1 11>;
  27. };
  28. ...