fsl-mxs-auart.txt 625 B

123456789101112131415161718192021222324252627
  1. * Freescale MXS Application UART (AUART)
  2. Required properties:
  3. - compatible : Should be "fsl,<soc>-auart". The supported SoCs include
  4. imx23 and imx28.
  5. - reg : Address and length of the register set for the device
  6. - interrupts : Should contain the auart interrupt numbers
  7. Example:
  8. auart0: serial@8006a000 {
  9. compatible = "fsl,imx28-auart", "fsl,imx23-auart";
  10. reg = <0x8006a000 0x2000>;
  11. interrupts = <112 70 71>;
  12. };
  13. Note: Each auart port should have an alias correctly numbered in "aliases"
  14. node.
  15. Example:
  16. aliases {
  17. serial0 = &auart0;
  18. serial1 = &auart1;
  19. serial2 = &auart2;
  20. serial3 = &auart3;
  21. serial4 = &auart4;
  22. };