diff options
author | Haojian Zhuang <haojian.zhuang@linaro.org> | 2013-01-18 02:31:15 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-01-21 09:43:42 -0500 |
commit | 684697cbbcd076b8fde78d8863e341700533b542 (patch) | |
tree | 9fd5d797316919312ed6db8b8a1e5210968c0977 /include/linux/pinctrl | |
parent | ef5e3eef6b6b22eb4ad7a893d2299418808667ba (diff) |
pinctrl: generic: add slew rate config parameter
Add PIN_CONFIG_SLEW_RATE parameter into pinconf-generic driver.
Signed-off-by: Haojian Zhuang <haojian.zhuang@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'include/linux/pinctrl')
-rw-r--r-- | include/linux/pinctrl/pinconf-generic.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/pinctrl/pinconf-generic.h b/include/linux/pinctrl/pinconf-generic.h index 40d7bb9c7562..3e7909aa5c03 100644 --- a/include/linux/pinctrl/pinconf-generic.h +++ b/include/linux/pinctrl/pinconf-generic.h | |||
@@ -60,6 +60,9 @@ | |||
60 | * @PIN_CONFIG_POWER_SOURCE: if the pin can select between different power | 60 | * @PIN_CONFIG_POWER_SOURCE: if the pin can select between different power |
61 | * supplies, the argument to this parameter (on a custom format) tells | 61 | * supplies, the argument to this parameter (on a custom format) tells |
62 | * the driver which alternative power source to use. | 62 | * the driver which alternative power source to use. |
63 | * @PIN_CONFIG_SLEW_RATE: if the pin can select slew rate, the argument to | ||
64 | * this parameter (on a custom format) tells the driver which alternative | ||
65 | * slew rate to use. | ||
63 | * @PIN_CONFIG_LOW_POWER_MODE: this will configure the pin for low power | 66 | * @PIN_CONFIG_LOW_POWER_MODE: this will configure the pin for low power |
64 | * operation, if several modes of operation are supported these can be | 67 | * operation, if several modes of operation are supported these can be |
65 | * passed in the argument on a custom form, else just use argument 1 | 68 | * passed in the argument on a custom form, else just use argument 1 |
@@ -83,6 +86,7 @@ enum pin_config_param { | |||
83 | PIN_CONFIG_INPUT_SCHMITT, | 86 | PIN_CONFIG_INPUT_SCHMITT, |
84 | PIN_CONFIG_INPUT_DEBOUNCE, | 87 | PIN_CONFIG_INPUT_DEBOUNCE, |
85 | PIN_CONFIG_POWER_SOURCE, | 88 | PIN_CONFIG_POWER_SOURCE, |
89 | PIN_CONFIG_SLEW_RATE, | ||
86 | PIN_CONFIG_LOW_POWER_MODE, | 90 | PIN_CONFIG_LOW_POWER_MODE, |
87 | PIN_CONFIG_OUTPUT, | 91 | PIN_CONFIG_OUTPUT, |
88 | PIN_CONFIG_END = 0x7FFF, | 92 | PIN_CONFIG_END = 0x7FFF, |