diff options
| author | Wilson Ding <[email protected]> | 2016-02-16 19:14:53 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2016-03-07 16:11:14 -0800 |
| commit | 30530791a7a032dc27dbbab56b8afabd5138074c (patch) | |
| tree | d1a5505aea2f2b173e841cf34a6b3471db38e615 /include/uapi/linux | |
| parent | 82a3f87f6e80e0bf7978152021eb8938976721cb (diff) | |
serial: mvebu-uart: initial support for Armada-3700 serial port
Armada-3700's uart is a simple serial port, which doesn't
support. Configuring the modem control lines. The uart port has a 32
bytes Tx FIFO and a 64 bytes Rx FIFO
The uart driver implements the uart core operations. It also support the
system (early) console based on Armada-3700's serial port.
Known Issue:
The uart driver currently doesn't support clock programming, which means
the baud-rate stays with the default value configured by the bootloader
at boot time
[[email protected]: Rewrite many part which are too long
to enumerate]
Signed-off-by: Wilson Ding <[email protected]>
Signed-off-by: Nadav Haklai <[email protected]>
Signed-off-by: Gregory CLEMENT <[email protected]>
Acked-by: Rob Herring <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/serial_core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uapi/linux/serial_core.h b/include/uapi/linux/serial_core.h index 3e5d757407fb..e513a4ee369b 100644 --- a/include/uapi/linux/serial_core.h +++ b/include/uapi/linux/serial_core.h @@ -261,4 +261,7 @@ /* STM32 USART */ #define PORT_STM32 113 +/* MVEBU UART */ +#define PORT_MVEBU 114 + #endif /* _UAPILINUX_SERIAL_CORE_H */ |