rda,8810pl-uart.yaml 812 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/serial/rda,8810pl-uart.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: RDA Micro UART Interface
  7. maintainers:
  8. - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
  9. allOf:
  10. - $ref: serial.yaml#
  11. properties:
  12. compatible:
  13. const: rda,8810pl-uart
  14. reg:
  15. maxItems: 1
  16. interrupts:
  17. maxItems: 1
  18. clocks:
  19. maxItems: 1
  20. required:
  21. - compatible
  22. - reg
  23. - interrupts
  24. - clocks
  25. unevaluatedProperties: false
  26. examples:
  27. - |
  28. #include <dt-bindings/interrupt-controller/irq.h>
  29. uart3: serial@20a90000 {
  30. compatible = "rda,8810pl-uart";
  31. reg = <0x20a90000 0x1000>;
  32. interrupts = <11 IRQ_TYPE_LEVEL_HIGH>;
  33. clocks = <&uart_clk>;
  34. };
  35. ...