6f6984129a
On current Curie-based boards UART 0 is wired to the nRF51 BLE controller and requires HW flow control to be enabled in order to function. This patch restores the same behavior that was present before the "qmsi: uart: use built-in qmsi driver" patch. Change-Id: If7ea347f5ab8b460f39123dcc0d75d711a5a1c2a Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
67 lines
1.4 KiB
Plaintext
67 lines
1.4 KiB
Plaintext
menuconfig UART_QMSI
|
|
depends on QMSI
|
|
bool "QMSI UART driver"
|
|
default n
|
|
select SERIAL_HAS_DRIVER
|
|
help
|
|
This option enables the QMSI UART driver.
|
|
|
|
This driver is simply a shim driver based on the UART driver
|
|
provided by the QMSI BSP.
|
|
|
|
config UART_QMSI_0
|
|
depends on UART_QMSI
|
|
bool "Enable UART 0 controller"
|
|
default n
|
|
|
|
config UART_QMSI_0_NAME
|
|
depends on UART_QMSI_0
|
|
string "UART_0 device name"
|
|
default "UART_0"
|
|
help
|
|
This option holds the UART_0 device name. If unsure, use the
|
|
default name.
|
|
|
|
config UART_QMSI_0_BAUDRATE
|
|
depends on UART_QMSI_0
|
|
int "UART_0 baud rate"
|
|
default 115200
|
|
help
|
|
This option sets the baud rate from the UART_0 device.
|
|
|
|
config UART_QMSI_0_HW_FC
|
|
depends on UART_QMSI_0
|
|
bool "HW flow control for UART_0 controller"
|
|
|
|
config UART_QMSI_0_IRQ_PRI
|
|
depends on UART_QMSI_0
|
|
int "IRQ priority from UART_0 controller"
|
|
|
|
config UART_QMSI_1
|
|
depends on UART_QMSI
|
|
bool "Enable UART 1 controller"
|
|
default n
|
|
|
|
config UART_QMSI_1_NAME
|
|
depends on UART_QMSI_1
|
|
string "UART_1 device name"
|
|
default "UART_1"
|
|
help
|
|
This option holds the UART_1 device name. If unsure, use the
|
|
default name.
|
|
|
|
config UART_QMSI_1_BAUDRATE
|
|
depends on UART_QMSI_1
|
|
int "UART_1 baud rate"
|
|
default 115200
|
|
help
|
|
This option sets the baud rate from the UART_1 device.
|
|
|
|
config UART_QMSI_1_HW_FC
|
|
depends on UART_QMSI_1
|
|
bool "HW flow control for UART_1 controller"
|
|
|
|
config UART_QMSI_1_IRQ_PRI
|
|
depends on UART_QMSI_1
|
|
int "IRQ priority from UART_1 controller"
|