1# Copyright (c) 2018 Linaro Limited
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig UART_PL011
5	bool "ARM PL011 UART Driver"
6	default y
7	depends on DT_HAS_ARM_PL011_ENABLED || DT_HAS_ARM_SBSA_UART_ENABLED
8	select SERIAL_HAS_DRIVER
9	select SERIAL_SUPPORT_INTERRUPT
10	select PINCTRL if SOC_EOS_S3
11	select PINCTRL if DT_HAS_AMBIQ_UART_ENABLED
12	help
13	  This option enables the UART driver for the PL011
14
15if UART_PL011
16
17config UART_PL011_SBSA
18	bool "SBSA UART"
19	default y if DT_HAS_ARM_SBSA_UART_ENABLED
20	help
21	  Enable SBSA mode for PL011 driver. SBSA stands for
22	  Server Based System Architecture. This specification
23	  among other things defines simplified UART interface
24	  which is subset of PL011 interface.
25
26endif # UART_PL011
27