]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/serial/fsl-imx-uart.txt
Merge tag 'driver-core-4.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git...
[karo-tx-linux.git] / Documentation / devicetree / bindings / serial / fsl-imx-uart.txt
1 * Freescale i.MX Universal Asynchronous Receiver/Transmitter (UART)
2
3 Required properties:
4 - compatible : Should be "fsl,<soc>-uart"
5 - reg : Address and length of the register set for the device
6 - interrupts : Should contain uart interrupt
7
8 Optional properties:
9 - fsl,irda-mode : Indicate the uart supports irda mode
10 - fsl,dte-mode : Indicate the uart works in DTE mode. The uart works
11                   in DCE mode by default.
12
13 Please check Documentation/devicetree/bindings/serial/serial.txt
14 for the complete list of generic properties.
15
16 Note: Each uart controller should have an alias correctly numbered
17 in "aliases" node.
18
19 Example:
20
21 aliases {
22         serial0 = &uart1;
23 };
24
25 uart1: serial@73fbc000 {
26         compatible = "fsl,imx51-uart", "fsl,imx21-uart";
27         reg = <0x73fbc000 0x4000>;
28         interrupts = <31>;
29         uart-has-rtscts;
30         fsl,dte-mode;
31 };