cirrus,clps711x-uart.txt 921 B

12345678910111213141516171819202122232425262728293031
  1. * Cirrus Logic CLPS711X Universal Asynchronous Receiver/Transmitter (UART)
  2. Required properties:
  3. - compatible: Should be "cirrus,clps711x-uart".
  4. - reg: Address and length of the register set for the device.
  5. - interrupts: Should contain UART TX and RX interrupt.
  6. - clocks: Should contain UART core clock number.
  7. - syscon: Phandle to SYSCON node, which contain UART control bits.
  8. Optional properties:
  9. - {rts,cts,dtr,dsr,rng,dcd}-gpios: specify a GPIO for RTS/CTS/DTR/DSR/RI/DCD
  10. line respectively.
  11. Note: Each UART port should have an alias correctly numbered
  12. in "aliases" node.
  13. Example:
  14. aliases {
  15. serial0 = &uart1;
  16. };
  17. uart1: uart@80000480 {
  18. compatible = "cirrus,clps711x-uart";
  19. reg = <0x80000480 0x80>;
  20. interrupts = <12 13>;
  21. clocks = <&clks 11>;
  22. syscon = <&syscon1>;
  23. cts-gpios = <&sysgpio 0 GPIO_ACTIVE_LOW>;
  24. dsr-gpios = <&sysgpio 1 GPIO_ACTIVE_LOW>;
  25. dcd-gpios = <&sysgpio 2 GPIO_ACTIVE_LOW>;
  26. };