qca,ar9330-uart.yaml 831 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/serial/qca,ar9330-uart.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Qualcomm Atheros AR9330 High-Speed UART
  7. maintainers:
  8. - Oleksij Rempel <o.rempel@pengutronix.de>
  9. allOf:
  10. - $ref: serial.yaml#
  11. properties:
  12. compatible:
  13. const: qca,ar9330-uart
  14. reg:
  15. maxItems: 1
  16. interrupts:
  17. maxItems: 1
  18. clocks:
  19. maxItems: 1
  20. clock-names:
  21. const: uart
  22. required:
  23. - compatible
  24. - reg
  25. - interrupts
  26. - clocks
  27. - clock-names
  28. unevaluatedProperties: false
  29. examples:
  30. - |
  31. serial@18020000 {
  32. compatible = "qca,ar9330-uart";
  33. reg = <0x18020000 0x14>;
  34. clocks = <&ref>;
  35. clock-names = "uart";
  36. interrupt-parent = <&intc>;
  37. interrupts = <3>;
  38. };
  39. ...