diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-03-24 22:32:45 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-04-01 00:56:07 +0900 |
commit | 3b05b5f0e450bbe8414d60c6c1ff44ef0cf3174a (patch) | |
tree | 05b91eab11527186569c5b90cc9e595a9471ad2a /drivers/pinctrl/uniphier/pinctrl-uniphier.h | |
parent | 8cc92b996ddecd4c364d0bbb474c3569ebec55c7 (diff) | |
download | u-boot-imx-3b05b5f0e450bbe8414d60c6c1ff44ef0cf3174a.zip u-boot-imx-3b05b5f0e450bbe8414d60c6c1ff44ef0cf3174a.tar.gz u-boot-imx-3b05b5f0e450bbe8414d60c6c1ff44ef0cf3174a.tar.bz2 |
pinctrl: uniphier: support per-pin input enable for new SoCs
Upcoming new pinctrl drivers for PH1-LD11 and PH-LD20 support input
signal gating for each pin. (While, existing ones only support it
per pin-group.) This commit prepares the core part for that.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'drivers/pinctrl/uniphier/pinctrl-uniphier.h')
-rw-r--r-- | drivers/pinctrl/uniphier/pinctrl-uniphier.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/uniphier/pinctrl-uniphier.h b/drivers/pinctrl/uniphier/pinctrl-uniphier.h index d582317..2b43848 100644 --- a/drivers/pinctrl/uniphier/pinctrl-uniphier.h +++ b/drivers/pinctrl/uniphier/pinctrl-uniphier.h @@ -70,6 +70,7 @@ struct uniphier_pinctrl_socdata { const char * const *functions; int functions_count; unsigned caps; +#define UNIPHIER_PINCTRL_CAPS_PERPIN_IECTRL BIT(1) #define UNIPHIER_PINCTRL_CAPS_DBGMUX_SEPARATE BIT(0) }; |