fsl-imx-uart.txt 652 B

12345678910111213141516171819202122
  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,uart-has-rtscts : Indicate the uart has rts and cts
  8. - fsl,irda-mode : Indicate the uart supports irda mode
  9. - fsl,dte-mode : Indicate the uart works in DTE mode. The uart works
  10. is DCE mode by default.
  11. Example:
  12. serial@73fbc000 {
  13. compatible = "fsl,imx51-uart", "fsl,imx21-uart";
  14. reg = <0x73fbc000 0x4000>;
  15. interrupts = <31>;
  16. fsl,uart-has-rtscts;
  17. fsl,dte-mode;
  18. };