9e44f59e9a
This adds a new driver for Renesas RZ/T2M. The driver allows configuration of pin direction, pull up/down resistors, drive strength and slew rate, and selection of function for a pin. Signed-off-by: Wojciech Sipak <wsipak@antmicro.com>
13 lines
317 B
Plaintext
13 lines
317 B
Plaintext
# Copyright (c) 2023 Antmicro <www.antmicro.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config UART_RZT2M
|
|
bool "Renesas RZ/T2M UART Driver"
|
|
default y
|
|
depends on DT_HAS_RENESAS_RZT2M_UART_ENABLED
|
|
select SERIAL_HAS_DRIVER
|
|
select SERIAL_SUPPORT_INTERRUPT
|
|
select PINCTRL
|
|
help
|
|
Enable Renesas RZ/T2M UART Driver.
|