fsl-imx-uart.txt 779 B

1234567891011121314151617181920212223242526272829
  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. Note: Each uart controller should have an alias correctly numbered
  12. in "aliases" node.
  13. Example:
  14. aliases {
  15. serial0 = &uart1;
  16. };
  17. uart1: serial@73fbc000 {
  18. compatible = "fsl,imx51-uart", "fsl,imx21-uart";
  19. reg = <0x73fbc000 0x4000>;
  20. interrupts = <31>;
  21. fsl,uart-has-rtscts;
  22. fsl,dte-mode;
  23. };