-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pinctrl: nomadik: move all Nomadik drivers to subdir
We have a bunch of Nomadik family pin control drivers, so let's move them into their own subdirectory. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
- Loading branch information
Linus Walleij
committed
Jul 11, 2014
1 parent
ebe629a
commit 3a19805
Showing
15 changed files
with
66 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
if ARCH_U8500 | ||
|
||
config PINCTRL_ABX500 | ||
bool "ST-Ericsson ABx500 family Mixed Signal Circuit gpio functions" | ||
depends on AB8500_CORE | ||
select GENERIC_PINCONF | ||
help | ||
Select this to enable the ABx500 family IC GPIO driver | ||
|
||
config PINCTRL_AB8500 | ||
bool "AB8500 pin controller driver" | ||
depends on PINCTRL_ABX500 && ARCH_U8500 | ||
|
||
config PINCTRL_AB8540 | ||
bool "AB8540 pin controller driver" | ||
depends on PINCTRL_ABX500 && ARCH_U8500 | ||
|
||
config PINCTRL_AB9540 | ||
bool "AB9540 pin controller driver" | ||
depends on PINCTRL_ABX500 && ARCH_U8500 | ||
|
||
config PINCTRL_AB8505 | ||
bool "AB8505 pin controller driver" | ||
depends on PINCTRL_ABX500 && ARCH_U8500 | ||
|
||
endif | ||
|
||
if (ARCH_U8500 || ARCH_NOMADIK) | ||
|
||
config PINCTRL_NOMADIK | ||
bool "Nomadik pin controller driver" | ||
depends on ARCH_U8500 || ARCH_NOMADIK | ||
select PINMUX | ||
select PINCONF | ||
select GPIOLIB | ||
select OF_GPIO | ||
select GPIOLIB_IRQCHIP | ||
|
||
config PINCTRL_STN8815 | ||
bool "STN8815 pin controller driver" | ||
depends on PINCTRL_NOMADIK && ARCH_NOMADIK | ||
|
||
config PINCTRL_DB8500 | ||
bool "DB8500 pin controller driver" | ||
depends on PINCTRL_NOMADIK && ARCH_U8500 | ||
|
||
config PINCTRL_DB8540 | ||
bool "DB8540 pin controller driver" | ||
depends on PINCTRL_NOMADIK && ARCH_U8500 | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Nomadik family pin control drivers | ||
obj-$(CONFIG_PINCTRL_ABX500) += pinctrl-abx500.o | ||
obj-$(CONFIG_PINCTRL_AB8500) += pinctrl-ab8500.o | ||
obj-$(CONFIG_PINCTRL_AB8540) += pinctrl-ab8540.o | ||
obj-$(CONFIG_PINCTRL_AB9540) += pinctrl-ab9540.o | ||
obj-$(CONFIG_PINCTRL_AB8505) += pinctrl-ab8505.o | ||
obj-$(CONFIG_PINCTRL_NOMADIK) += pinctrl-nomadik.o | ||
obj-$(CONFIG_PINCTRL_STN8815) += pinctrl-nomadik-stn8815.o | ||
obj-$(CONFIG_PINCTRL_DB8500) += pinctrl-nomadik-db8500.o | ||
obj-$(CONFIG_PINCTRL_DB8540) += pinctrl-nomadik-db8540.o |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.