fsl-mxs-auart.txt 887 B

123456789101112131415161718192021222324252627282930313233
  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. - dmas: DMA specifier, consisting of a phandle to DMA controller node
  8. and AUART DMA channel ID.
  9. Refer to dma.txt and fsl-mxs-dma.txt for details.
  10. - dma-names: "rx" for RX channel, "tx" for TX channel.
  11. Example:
  12. auart0: serial@8006a000 {
  13. compatible = "fsl,imx28-auart", "fsl,imx23-auart";
  14. reg = <0x8006a000 0x2000>;
  15. interrupts = <112>;
  16. dmas = <&dma_apbx 8>, <&dma_apbx 9>;
  17. dma-names = "rx", "tx";
  18. };
  19. Note: Each auart port should have an alias correctly numbered in "aliases"
  20. node.
  21. Example:
  22. aliases {
  23. serial0 = &auart0;
  24. serial1 = &auart1;
  25. serial2 = &auart2;
  26. serial3 = &auart3;
  27. serial4 = &auart4;
  28. };