1menu "UART Devices"
2
3config DRIVERS_UART
4    bool "enable uart driver"
5        default y
6
7config HAL_TEST_UART
8    bool "enable uart hal APIs test command"
9    depends on DRIVERS_UART
10        default n
11
12config SUNXI_UART_SUPPORT_POLL
13    bool "support poll APIs"
14    depends on DRIVERS_UART
15        default n
16
17config SUNXI_UART_REGISTER_UART0
18    bool "support uart0 device"
19    depends on DRIVERS_UART
20        default n
21
22config SUNXI_UART_REGISTER_UART1
23    bool "support uart1 device"
24    depends on DRIVERS_UART
25        default n
26
27config SUNXI_UART_REGISTER_UART2
28    bool "support uart2 device"
29    depends on DRIVERS_UART
30        default n
31
32config SUNXI_UART_REGISTER_UART3
33    bool "support uart3 device"
34    depends on DRIVERS_UART
35        default n
36
37endmenu
38