2015-05-20 11:40:39 -05:00
|
|
|
# Kconfig - serial driver configuration options
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
|
|
#
|
2017-01-18 17:01:01 -08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-05-20 11:40:39 -05:00
|
|
|
#
|
|
|
|
|
2015-08-11 20:22:49 -07:00
|
|
|
menuconfig SERIAL
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Serial Drivers"
|
2015-08-11 20:22:49 -07:00
|
|
|
help
|
2017-12-13 10:08:21 -05:00
|
|
|
Enable options for serial drivers.
|
2015-05-20 11:40:39 -05:00
|
|
|
|
2015-08-11 20:22:49 -07:00
|
|
|
if SERIAL
|
2015-05-26 10:25:55 -04:00
|
|
|
|
2016-03-17 10:24:45 -07:00
|
|
|
comment "Capabilities"
|
|
|
|
|
2015-08-12 10:33:56 -07:00
|
|
|
config SERIAL_HAS_DRIVER
|
|
|
|
bool
|
|
|
|
help
|
2017-12-13 10:08:21 -05:00
|
|
|
This is an option to be enabled by individual serial driver
|
|
|
|
to signal that there is a serial driver. This is being used
|
|
|
|
by other drivers which are dependent on serial.
|
2015-08-12 10:33:56 -07:00
|
|
|
|
2017-06-22 11:26:58 -05:00
|
|
|
config SERIAL_SUPPORT_INTERRUPT
|
|
|
|
bool
|
|
|
|
help
|
2017-12-13 10:08:21 -05:00
|
|
|
This is an option to be enabled by individual serial driver
|
|
|
|
to signal that the driver and hardware supports interrupts.
|
2017-06-22 11:26:58 -05:00
|
|
|
|
2016-05-24 18:17:13 -05:00
|
|
|
config UART_INTERRUPT_DRIVEN
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Enable UART Interrupt support"
|
2017-06-22 11:26:58 -05:00
|
|
|
depends on SERIAL_SUPPORT_INTERRUPT
|
2015-12-10 13:29:57 -08:00
|
|
|
help
|
2017-12-13 10:08:21 -05:00
|
|
|
This option enables interrupt support for UART allowing console
|
|
|
|
input and other UART based drivers.
|
2015-12-10 13:29:57 -08:00
|
|
|
|
2016-01-06 09:17:03 -08:00
|
|
|
config UART_LINE_CTRL
|
|
|
|
bool "Enable Serial Line Control API"
|
|
|
|
help
|
2017-12-13 10:08:21 -05:00
|
|
|
This enables the API for apps to control the serial line,
|
|
|
|
such as baud rate, CTS and RTS.
|
2016-01-06 09:17:03 -08:00
|
|
|
|
2017-12-13 10:08:21 -05:00
|
|
|
Implementation is up to individual driver.
|
2016-01-06 09:17:03 -08:00
|
|
|
|
2017-12-13 10:08:21 -05:00
|
|
|
Says no if not sure.
|
2016-01-06 09:17:03 -08:00
|
|
|
|
|
|
|
config UART_DRV_CMD
|
|
|
|
bool "Enable driver commands API"
|
|
|
|
help
|
2017-12-13 10:08:21 -05:00
|
|
|
This enables the API to send extra commands to drivers.
|
|
|
|
This allows drivers to expose hardware specific functions.
|
2016-01-06 09:17:03 -08:00
|
|
|
|
2017-12-13 10:08:21 -05:00
|
|
|
Says no if not sure.
|
2016-01-06 09:17:03 -08:00
|
|
|
|
2016-03-17 10:24:45 -07:00
|
|
|
comment "Serial Drivers"
|
|
|
|
|
2015-12-01 08:42:19 -08:00
|
|
|
source "drivers/serial/Kconfig.ns16550"
|
2015-08-05 12:13:36 -07:00
|
|
|
|
2017-01-09 12:25:59 -06:00
|
|
|
source "drivers/serial/Kconfig.mcux"
|
|
|
|
|
2017-07-26 06:53:02 -05:00
|
|
|
source "drivers/serial/Kconfig.mcux_lpc_usart"
|
|
|
|
|
2017-04-26 09:56:39 -05:00
|
|
|
source "drivers/serial/Kconfig.mcux_lpsci"
|
|
|
|
|
2017-01-18 05:54:58 -06:00
|
|
|
source "drivers/serial/Kconfig.mcux_lpuart"
|
|
|
|
|
2018-06-10 19:02:14 +02:00
|
|
|
source "drivers/serial/Kconfig.miv"
|
|
|
|
|
2018-03-14 18:36:53 +00:00
|
|
|
source "drivers/serial/Kconfig.imx"
|
|
|
|
|
2015-12-01 08:42:19 -08:00
|
|
|
source "drivers/serial/Kconfig.stellaris"
|
2015-05-26 10:25:55 -04:00
|
|
|
|
2018-09-22 19:19:59 +02:00
|
|
|
source "drivers/serial/Kconfig.native_posix"
|
|
|
|
|
2015-12-01 08:42:19 -08:00
|
|
|
source "drivers/serial/Kconfig.nsim"
|
|
|
|
|
2016-10-13 17:55:02 +02:00
|
|
|
source "drivers/serial/Kconfig.usart_sam"
|
|
|
|
|
2017-03-23 01:45:32 +01:00
|
|
|
source "drivers/serial/Kconfig.uart_sam"
|
|
|
|
|
2016-02-26 14:51:28 -03:00
|
|
|
source "drivers/serial/Kconfig.qmsi"
|
|
|
|
|
2016-03-03 15:33:20 +01:00
|
|
|
source "drivers/serial/Kconfig.stm32"
|
|
|
|
|
2018-06-08 15:29:24 +02:00
|
|
|
source "drivers/serial/Kconfig.nrfx"
|
2016-05-18 07:49:04 -07:00
|
|
|
|
2016-06-20 14:11:35 -07:00
|
|
|
source "drivers/serial/Kconfig.altera_jtag"
|
|
|
|
|
2016-10-31 17:46:32 -07:00
|
|
|
source "drivers/serial/Kconfig.cc32xx"
|
|
|
|
|
2016-09-19 15:58:03 +01:00
|
|
|
source "drivers/serial/Kconfig.cmsdk_apb"
|
|
|
|
|
2018-08-15 15:41:21 -07:00
|
|
|
source "drivers/serial/Kconfig.sifive"
|
2017-03-14 22:16:37 +01:00
|
|
|
|
2017-05-10 17:12:12 -07:00
|
|
|
source "drivers/serial/Kconfig.esp32"
|
|
|
|
|
2017-04-05 19:06:17 +02:00
|
|
|
source "drivers/serial/Kconfig.gecko"
|
|
|
|
|
2018-10-30 18:26:25 +00:00
|
|
|
source "drivers/serial/Kconfig.leuart_gecko"
|
|
|
|
|
2017-07-22 11:47:21 +05:30
|
|
|
source "drivers/serial/Kconfig.msp432p4xx"
|
|
|
|
|
2017-11-18 11:59:08 +01:00
|
|
|
source "drivers/serial/Kconfig.sam0"
|
|
|
|
|
2018-06-28 15:20:16 -05:00
|
|
|
source "drivers/serial/Kconfig.psoc6"
|
|
|
|
|
2015-08-11 20:22:49 -07:00
|
|
|
endif
|