fsl-imx-uart.txt 524 B

1234567891011121314151617181920
  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. Example:
  10. uart@73fbc000 {
  11. compatible = "fsl,imx51-uart", "fsl,imx21-uart";
  12. reg = <0x73fbc000 0x4000>;
  13. interrupts = <31>;
  14. fsl,uart-has-rtscts;
  15. };