Add UART driver for Realtek RTS5912. Signed-off-by: Lin Yu-Cheng <lin_yu_cheng@realtek.com>
19 lines
509 B
Text
19 lines
509 B
Text
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (c) 2024 Realtek Semiconductor Corporation, SIBG-SD7
|
|
#
|
|
|
|
config UART_RTS5912
|
|
bool "UART driver for Realtek RTS5912 EC"
|
|
default y if DT_HAS_REALTEK_RTS5912_UART_ENABLED
|
|
select PINCTRL
|
|
select CLOCK_CONTROL
|
|
help
|
|
This option enables the RTS5912 UART wrapper driver.
|
|
|
|
config UART_RTS5912_INIT_PRIORITY
|
|
int "RTS5912 UART wrapper init priority"
|
|
default 49
|
|
depends on UART_RTS5912
|
|
help
|
|
Initialization priority for Realtek RTS5912 UART wrapper driver.
|