diff options
| author | Stefan Bosch <[email protected]> | 2020-07-10 19:07:30 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-07-29 08:43:40 -0400 |
| commit | 8d393b2c2278c846d26d59b37a2b46d3bcdb1663 (patch) | |
| tree | f77274622d36aab84d67a7a589a3f0da9ec98233 /drivers/pinctrl/nexell/Kconfig | |
| parent | 8408318943ebff4ec0533bf3318dd591a06926f5 (diff) | |
pinctrl: add nexell driver
Changes in relation to FriendlyARM's U-Boot nanopi2-v2016.01:
- livetree API (dev_read_...) is used instead of fdt one (fdt...).
- doc/device-tree-bindings/pinctrl/nexell,s5pxx18-pinctrl.txt added.
Signed-off-by: Stefan Bosch <[email protected]>
Diffstat (limited to 'drivers/pinctrl/nexell/Kconfig')
| -rw-r--r-- | drivers/pinctrl/nexell/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/pinctrl/nexell/Kconfig b/drivers/pinctrl/nexell/Kconfig new file mode 100644 index 00000000000..8f1e4722396 --- /dev/null +++ b/drivers/pinctrl/nexell/Kconfig @@ -0,0 +1,18 @@ +if ARCH_NEXELL + +config PINCTRL_NEXELL + bool "Nexell pinctrl driver" + help + Support of pin multiplexing and pin configuration for Nexell + SoCs. + +config PINCTRL_NEXELL_S5PXX18 + bool "Nexell s5pxx18 SoC pinctrl driver" + default y if ARCH_S5P4418 || ARCH_S5P6818 + depends on ARCH_NEXELL && PINCTRL_FULL + select PINCTRL_NEXELL + help + Support of pin multiplexing and pin configuration for S5P4418 + and S5P6818 SoC. + +endif |
