aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt10
-rw-r--r--drivers/pinctrl/pinconf-generic.c3
2 files changed, 0 insertions, 13 deletions
diff --git a/Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt b/Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt
index 788ab09e4c1c..aeb3c995cc04 100644
--- a/Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt
+++ b/Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt
@@ -154,10 +154,7 @@ drive-open-source - drive with open source
154drive-strength - sink or source at most X mA 154drive-strength - sink or source at most X mA
155input-schmitt-enable - enable schmitt-trigger mode 155input-schmitt-enable - enable schmitt-trigger mode
156input-schmitt-disable - disable schmitt-trigger mode 156input-schmitt-disable - disable schmitt-trigger mode
157input-schmitt - run in schmitt-trigger mode with hysteresis X
158input-debounce - debounce mode with debound time X 157input-debounce - debounce mode with debound time X
159power-source - select power source X
160slew-rate - use slew-rate X
161low-power-enable - enable low power mode 158low-power-enable - enable low power mode
162low-power-disable - disable low power mode 159low-power-disable - disable low power mode
163output-low - set the pin to output mode with low level 160output-low - set the pin to output mode with low level
@@ -170,16 +167,9 @@ Arguments for parameters:
170 167
171- drive-strength takes as argument the target strength in mA. 168- drive-strength takes as argument the target strength in mA.
172 169
173- input-schmitt takes as argument the adjustable hysteresis in a
174 driver-specific format
175
176- input-debounce takes the debounce time in usec as argument 170- input-debounce takes the debounce time in usec as argument
177 or 0 to disable debouncing 171 or 0 to disable debouncing
178 172
179- power-source argument is the custom value describing the source to select
180
181- slew-rate takes as argument the target rate in a driver-specific format
182
183All parameters not listed here, do not take an argument. 173All parameters not listed here, do not take an argument.
184 174
185More in-depth documentation on these parameters can be found in 175More in-depth documentation on these parameters can be found in
diff --git a/drivers/pinctrl/pinconf-generic.c b/drivers/pinctrl/pinconf-generic.c
index 2b271d5d90bf..8594f033ac21 100644
--- a/drivers/pinctrl/pinconf-generic.c
+++ b/drivers/pinctrl/pinconf-generic.c
@@ -161,10 +161,7 @@ static struct pinconf_generic_dt_params dt_params[] = {
161 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 }, 161 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
162 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 }, 162 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 },
163 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 }, 163 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 },
164 { "input-schmitt", PIN_CONFIG_INPUT_SCHMITT, 0 },
165 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 }, 164 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 },
166 { "power-source", PIN_CONFIG_POWER_SOURCE, 0 },
167 { "slew-rate", PIN_CONFIG_SLEW_RATE, 0 },
168 { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 }, 165 { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 },
169 { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 }, 166 { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 },
170 { "output-low", PIN_CONFIG_OUTPUT, 0, }, 167 { "output-low", PIN_CONFIG_OUTPUT, 0, },