]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/serial/fsl-imx-uart.txt
mtd: blkdevs: Fix mtd block write failure
[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 - fsl,dma-size : Indicate the size of the DMA buffer and its periods
13
14 Please check Documentation/devicetree/bindings/serial/serial.txt
15 for the complete list of generic properties.
16
17 Note: Each uart controller should have an alias correctly numbered
18 in "aliases" node.
19
20 Example:
21
22 aliases {
23         serial0 = &uart1;
24 };
25
26 uart1: serial@73fbc000 {
27         compatible = "fsl,imx51-uart", "fsl,imx21-uart";
28         reg = <0x73fbc000 0x4000>;
29         interrupts = <31>;
30         uart-has-rtscts;
31         fsl,dte-mode;
32         fsl,dma-size = <1024 4>;
33 };