brcm,bcm2835-v3d.yaml 698 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # SPDX-License-Identifier: GPL-2.0
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/display/brcm,bcm2835-v3d.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Broadcom VC4 (VideoCore4) V3D GPU
  7. maintainers:
  8. - Eric Anholt <eric@anholt.net>
  9. properties:
  10. compatible:
  11. enum:
  12. - brcm,bcm2835-v3d
  13. - brcm,cygnus-v3d
  14. reg:
  15. maxItems: 1
  16. clocks:
  17. maxItems: 1
  18. interrupts:
  19. maxItems: 1
  20. power-domains:
  21. maxItems: 1
  22. required:
  23. - compatible
  24. - reg
  25. - interrupts
  26. additionalProperties: false
  27. examples:
  28. - |
  29. v3d: v3d@7ec00000 {
  30. compatible = "brcm,bcm2835-v3d";
  31. reg = <0x7ec00000 0x1000>;
  32. interrupts = <1 10>;
  33. };
  34. ...