1# Copyright (c) 2018 Linaro Limited 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig UART_PL011 5 bool "ARM PL011 UART Driver" 6 select SERIAL_HAS_DRIVER 7 select SERIAL_SUPPORT_INTERRUPT 8 help 9 This option enables the UART driver for the PL011 10 11if UART_PL011 12 13config UART_PL011_PORT0 14 bool "Enable driver for UART 0" 15 help 16 Build the driver to utilize UART controller Port 0. 17 18config UART_PL011_PORT1 19 bool "Enable driver for UART 1" 20 help 21 Build the driver to utilize UART controller Port 1. 22 23config UART_PL011_SBSA 24 bool "Enable SBSA UART" 25 help 26 Enable SBSA mode for PL011 driver. SBSA stands for 27 Server Based System Architecture. This specification 28 among other things defines simplified UART interface 29 which is subset of PL011 interface. 30 31endif # UART_PL011 32