1# RV32M1 SDK LPUART
2
3# Copyright (c) 2018 Foundries.io
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig UART_RV32M1_LPUART
7	bool "RV32M1 LPUART driver"
8	depends on HAS_RV32M1_LPUART && CLOCK_CONTROL
9	select SERIAL_HAS_DRIVER
10	select SERIAL_SUPPORT_INTERRUPT
11	help
12	  Enable the RV32M1 LPUART driver.
13
14if UART_RV32M1_LPUART
15
16config UART_RV32M1_LPUART_0
17	bool "UART 0"
18	help
19	  Enable UART 0.
20
21config UART_RV32M1_LPUART_1
22	bool "UART 1"
23	depends on RV32M1_INTMUX
24	help
25	  Enable UART 1.
26
27config UART_RV32M1_LPUART_2
28	bool "UART 2"
29	depends on RV32M1_INTMUX
30	help
31	  Enable UART 2.
32
33config UART_RV32M1_LPUART_3
34	bool "UART 3"
35	depends on RV32M1_INTMUX
36	help
37	  Enable UART 3.
38
39endif # UART_RV32M1_LPUART
40