fsl-imx-uart.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. * Freescale i.MX Universal Asynchronous Receiver/Transmitter (UART)
  2. Required properties:
  3. - compatible : Should be "fsl,<soc>-uart"
  4. - reg : Address and length of the register set for the device
  5. - interrupts : Should contain uart interrupt
  6. Optional properties:
  7. - fsl,dte-mode : Indicate the uart works in DTE mode. The uart works
  8. in DCE mode by default.
  9. - rs485-rts-delay, rs485-rts-active-low, rs485-rx-during-tx,
  10. linux,rs485-enabled-at-boot-time: see rs485.txt. Note that for RS485
  11. you must enable either the "uart-has-rtscts" or the "rts-gpios"
  12. properties. In case you use "uart-has-rtscts" the signal that controls
  13. the transceiver is actually CTS_B, not RTS_B. CTS_B is always output,
  14. and RTS_B is input, regardless of dte-mode.
  15. Please check Documentation/devicetree/bindings/serial/serial.txt
  16. for the complete list of generic properties.
  17. Note: Each uart controller should have an alias correctly numbered
  18. in "aliases" node.
  19. Example:
  20. aliases {
  21. serial0 = &uart1;
  22. };
  23. uart1: serial@73fbc000 {
  24. compatible = "fsl,imx51-uart", "fsl,imx21-uart";
  25. reg = <0x73fbc000 0x4000>;
  26. interrupts = <31>;
  27. uart-has-rtscts;
  28. fsl,dte-mode;
  29. };