diff options
author | Jingchang Lu <b35083@freescale.com> | 2013-06-06 21:20:40 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-09 01:30:44 -0400 |
commit | c9e2e946fb0ba5d2398feb89558f98c5c28e23e3 (patch) | |
tree | c2cebc2606be1bd35623147381de3dbab3a11802 /Documentation | |
parent | 1ba7055af26f008e8fc8dab9dcb1701534afbe16 (diff) |
tty: serial: add Freescale lpuart driver support
Add Freescale lpuart driver support. The lpuart device
can be found on Vybrid VF610 and Layerscape LS-1 SoCs.
Signed-off-by: Jingchang Lu <b35083@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/tty/serial/fsl-lpuart.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/tty/serial/fsl-lpuart.txt b/Documentation/devicetree/bindings/tty/serial/fsl-lpuart.txt new file mode 100644 index 000000000000..6fd1dd1638dd --- /dev/null +++ b/Documentation/devicetree/bindings/tty/serial/fsl-lpuart.txt | |||
@@ -0,0 +1,14 @@ | |||
1 | * Freescale low power universal asynchronous receiver/transmitter (lpuart) | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : Should be "fsl,<soc>-lpuart" | ||
5 | - reg : Address and length of the register set for the device | ||
6 | - interrupts : Should contain uart interrupt | ||
7 | |||
8 | Example: | ||
9 | |||
10 | uart0: serial@40027000 { | ||
11 | compatible = "fsl,vf610-lpuart"; | ||
12 | reg = <0x40027000 0x1000>; | ||
13 | interrupts = <0 61 0x00>; | ||
14 | }; | ||