Skip to content

Commit

Permalink
tty/serial: add support for Xilinx PS UART
Browse files Browse the repository at this point in the history
The Xilinx PS Uart is used on the new ARM based SoC. This
UART is not compatible with others such that a seperate
driver is required.

Signed-off-by: John Linn <john.linn@xilinx.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
John Linn authored and Greg Kroah-Hartman committed May 3, 2011
1 parent 0a77c4f commit 61ec901
Show file tree
Hide file tree
Showing 4 changed files with 1,130 additions and 0 deletions.
13 changes: 13 additions & 0 deletions drivers/tty/serial/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1612,4 +1612,17 @@ config SERIAL_MXS_AUART_CONSOLE
help
Enable a MXS AUART port to be the system console.

config SERIAL_XILINX_PS_UART
tristate "Xilinx PS UART support"
select SERIAL_CORE
help
This driver supports the Xilinx PS UART port.

config SERIAL_XILINX_PS_UART_CONSOLE
bool "Xilinx PS UART console support"
depends on SERIAL_XILINX_PS_UART=y
select SERIAL_CORE_CONSOLE
help
Enable a Xilinx PS UART port to be the system console.

endmenu
1 change: 1 addition & 0 deletions drivers/tty/serial/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,4 @@ obj-$(CONFIG_SERIAL_IFX6X60) += ifx6x60.o
obj-$(CONFIG_SERIAL_PCH_UART) += pch_uart.o
obj-$(CONFIG_SERIAL_MSM_SMD) += msm_smd_tty.o
obj-$(CONFIG_SERIAL_MXS_AUART) += mxs-auart.o
obj-$(CONFIG_SERIAL_XILINX_PS_UART) += xilinx_uartps.o
Loading

0 comments on commit 61ec901

Please sign in to comment.