forked from OERV-BSP/u-boot
A few pinctrl drivers cannot build without access to some platform specific header files. Express those requirements in Kconfig as well. Signed-off-by: Tom Rini <trini@konsulko.com>
19 lines
608 B
Plaintext
19 lines
608 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
config PINCTRL_TEGRA
|
|
bool "Nvidia Tegra pinctrl driver"
|
|
depends on DM && ARCH_TEGRA
|
|
help
|
|
Support pin multiplexing control on Nvidia Tegra SoCs.
|
|
The driver is an overlay to existing driver and allows
|
|
the usage of dedicated device tree node which contains
|
|
full description of each pin.
|
|
|
|
config SPL_PINCTRL_TEGRA
|
|
bool "Nvidia Tegra SPL pinctrl driver"
|
|
depends on SPL_PINCTRL && ARCH_TEGRA
|
|
help
|
|
Enables support of pre-DM version of pin multiplexing
|
|
control driver used on SPL stage for board setup and
|
|
available for backwards compatibility purpose.
|