mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-25 00:21:28 +02:00
Add pinctrl support for Exynos850 SoC. It was mostly extracted from corresponding Linux kernel code [1]. Power down modes and external interrupt data were removed while converting the code for U-Boot, but everything else was kept almost unchanged. [1] drivers/pinctrl/samsung/pinctrl-exynos-arm64.c Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> Reviewed-by: Chanho Park <chanho61.park@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
27 lines
709 B
Plaintext
27 lines
709 B
Plaintext
config PINCTRL_EXYNOS
|
|
bool
|
|
|
|
config PINCTRL_EXYNOS7420
|
|
bool "Samsung Exynos7420 pinctrl driver"
|
|
depends on ARCH_EXYNOS && PINCTRL_FULL
|
|
select PINCTRL_EXYNOS
|
|
help
|
|
Support pin multiplexing and pin configuration control on
|
|
Samsung's Exynos7420 SoC.
|
|
|
|
config PINCTRL_EXYNOS78x0
|
|
bool "Samsung Exynos78x0 pinctrl driver"
|
|
depends on ARCH_EXYNOS && PINCTRL_FULL
|
|
select PINCTRL_EXYNOS
|
|
help
|
|
Support pin multiplexing and pin configuration control on
|
|
Samsung's Exynos78x0 SoC.
|
|
|
|
config PINCTRL_EXYNOS850
|
|
bool "Samsung Exynos850 pinctrl driver"
|
|
depends on ARCH_EXYNOS && PINCTRL_FULL
|
|
select PINCTRL_EXYNOS
|
|
help
|
|
Support pin multiplexing and pin configuration control on
|
|
Samsung's Exynos850 SoC.
|