-
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: armada-37xx: Add pin controller support for Armada 37xx
The Armada 37xx SoC come with 2 pin controllers: one on the south bridge (managing 28 pins) and one on the north bridge (managing 36 pins). At the hardware level the controller configure the pins by group and not pin by pin. This constraint is reflected in the design of the driver: only the group related functions are implemented. Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
- Loading branch information
Gregory CLEMENT
authored and
Linus Walleij
committed
Apr 24, 2017
1 parent
f13980e
commit 87466cc
Showing
4 changed files
with
658 additions
and
2 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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
obj-y += pinctrl-mvebu.o | ||
obj-$(CONFIG_PINCTRL_MVEBU) += pinctrl-mvebu.o | ||
obj-$(CONFIG_PINCTRL_DOVE) += pinctrl-dove.o | ||
obj-$(CONFIG_PINCTRL_KIRKWOOD) += pinctrl-kirkwood.o | ||
obj-$(CONFIG_PINCTRL_ARMADA_370) += pinctrl-armada-370.o | ||
obj-$(CONFIG_PINCTRL_ARMADA_375) += pinctrl-armada-375.o | ||
obj-$(CONFIG_PINCTRL_ARMADA_38X) += pinctrl-armada-38x.o | ||
obj-$(CONFIG_PINCTRL_ARMADA_39X) += pinctrl-armada-39x.o | ||
obj-$(CONFIG_PINCTRL_ARMADA_XP) += pinctrl-armada-xp.o | ||
obj-$(CONFIG_PINCTRL_ARMADA_37XX) += pinctrl-armada-37xx.o | ||
obj-$(CONFIG_PINCTRL_ORION) += pinctrl-orion.o |
Oops, something went wrong.