1# SPDX-License-Identifier: Apache-2.0 2 3menuconfig UART_STELLARIS 4 bool "Stellaris serial driver" 5 default y 6 depends on DT_HAS_TI_STELLARIS_UART_ENABLED 7 select SERIAL_HAS_DRIVER 8 select SERIAL_SUPPORT_INTERRUPT 9 help 10 This option enables the Stellaris serial driver. 11 This specific driver can be used for the serial hardware 12 available at the Texas Instrument LM3S6965 board. 13 14if UART_STELLARIS 15 16# ---------- Port 0 ---------- 17 18config UART_STELLARIS_PORT_0 19 bool "Stellaris UART Port 0" 20 help 21 This tells the driver to configure the UART port at boot, depending on 22 the additional configure options below. 23 24# ---------- Port 1 ---------- 25 26config UART_STELLARIS_PORT_1 27 bool "Stellaris UART Port 1" 28 help 29 This tells the driver to configure the UART port at boot, depending on 30 the additional configure options below. 31 32# ---------- Port 2 ---------- 33 34config UART_STELLARIS_PORT_2 35 bool "Stellaris UART Port 2" 36 help 37 This tells the driver to configure the UART port at boot, depending on 38 the additional configure options below. 39 40endif # UART_STELLARIS 41