mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
Add support for Realtek RTD1625 SoC using the realtek common pinctrl driver. This patch introduces the RTK_PIN_CONFIG_V2 and RTK_PIN_CONFIG_I2C macros, which are required to describe the specific register layout and electrical features (such as slew rate and high VIL) of the RTD1625 pins. Signed-off-by: Tzuyi Chang <tychang@realtek.com> Signed-off-by: Yu-Chun Lin <eleanor.lin@realtek.com> Signed-off-by: Linus Walleij <linusw@kernel.org>
38 lines
1021 B
Plaintext
38 lines
1021 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
config PINCTRL_RTD
|
|
tristate "Realtek DHC core pin controller driver"
|
|
depends on ARCH_REALTEK
|
|
default y
|
|
select PINMUX
|
|
select GENERIC_PINCONF
|
|
select REGMAP_MMIO
|
|
|
|
config PINCTRL_RTD1619B
|
|
tristate "Realtek DHC 1619B pin controller driver"
|
|
depends on PINCTRL_RTD
|
|
default y
|
|
|
|
config PINCTRL_RTD1319D
|
|
tristate "Realtek DHC 1319D pin controller driver"
|
|
depends on PINCTRL_RTD
|
|
default y
|
|
|
|
config PINCTRL_RTD1315E
|
|
tristate "Realtek DHC 1315E pin controller driver"
|
|
depends on PINCTRL_RTD
|
|
default y
|
|
|
|
config PINCTRL_RTD1625
|
|
tristate "Realtek DHC 1625 pin controller driver"
|
|
depends on PINCTRL_RTD
|
|
default y
|
|
help
|
|
This driver enables support for the pin controller on the Realtek
|
|
RTD1625 SoCs.
|
|
|
|
It implements pin multiplexing for function selection and GPIO enabling.
|
|
It also utilizes the generic pin configuration interface to manage
|
|
electrical properties for both individual pins and pin groups.
|
|
|
|
Say Y here to enable the pinctrl driver for RTD1625 SoCs |