1# NEORV32 UART configuration
2
3# Copyright (c) 2021 Henrik Brix Andersen <henrik@brixandersen.dk>
4# SPDX-License-Identifier: Apache-2.0
5
6config UART_NEORV32
7	bool "NEORV32 UART"
8	default y
9	depends on DT_HAS_NEORV32_UART_ENABLED
10	depends on SYSCON
11	select SERIAL_HAS_DRIVER
12	select SERIAL_SUPPORT_INTERRUPT
13	help
14	  This option enables the UART driver for the NEORV32.
15