2019-04-06 15:08:09 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2015-12-01 17:42:19 +01:00
|
|
|
menuconfig UART_NS16550
|
|
|
|
bool "NS16550 serial driver"
|
|
|
|
select SERIAL_HAS_DRIVER
|
2017-06-22 18:26:58 +02:00
|
|
|
select SERIAL_SUPPORT_INTERRUPT
|
2015-12-01 17:42:19 +01:00
|
|
|
help
|
|
|
|
This option enables the NS16550 serial driver.
|
|
|
|
This driver can be used for the serial hardware
|
2016-08-18 01:33:08 +02:00
|
|
|
available on x86 boards.
|
2015-12-01 17:42:19 +01:00
|
|
|
|
2016-01-06 18:17:03 +01:00
|
|
|
config UART_NS16550_LINE_CTRL
|
|
|
|
bool "Enable Serial Line Control for Apps"
|
|
|
|
depends on UART_LINE_CTRL && UART_NS16550
|
|
|
|
help
|
|
|
|
This enables the API for apps to control the serial line,
|
|
|
|
such as CTS and RTS.
|
|
|
|
|
|
|
|
Says n if not sure.
|
|
|
|
|
|
|
|
config UART_NS16550_DRV_CMD
|
|
|
|
bool "Enable Driver Commands"
|
|
|
|
depends on UART_DRV_CMD && UART_NS16550
|
|
|
|
help
|
|
|
|
This enables the API for apps to send commands to driver.
|
|
|
|
|
|
|
|
Says n if not sure.
|
|
|
|
|
2016-11-15 03:23:45 +01:00
|
|
|
config UART_NS16750
|
2020-03-03 21:25:52 +01:00
|
|
|
bool "Enable UART 16750 (64-bytes FIFO and auto flow control)"
|
2016-11-15 03:23:45 +01:00
|
|
|
depends on UART_NS16550
|
|
|
|
help
|
2020-03-03 21:25:52 +01:00
|
|
|
This enables support for 64-bytes FIFO and automatic hardware
|
|
|
|
flow control if UART controller is 16750.
|
2016-11-15 03:23:45 +01:00
|
|
|
|
2019-05-29 08:58:02 +02:00
|
|
|
config UART_NS16550_ACCESS_WORD_ONLY
|
|
|
|
bool "NS16550 only allows word access"
|
|
|
|
depends on UART_NS16550
|
|
|
|
help
|
|
|
|
In some case, e.g. ARC HS Development kit, the peripheral space of ns
|
|
|
|
16550 (DesignWare UART) only allows word access, byte access will raise
|
|
|
|
exception.
|