]> git.karo-electronics.de Git - linux-beck.git/commitdiff
pinctrl: more clarifications for generic pull configs
authorHeiko Stübner <heiko@sntech.de>
Tue, 25 Jun 2013 12:55:42 +0000 (14:55 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 25 Jun 2013 13:33:57 +0000 (15:33 +0200)
PULL_PIN_DEFAULT is meant for hardware completely hiding any pull
settings from the driver, so that it's really only possible to turn
the pull on or off, but it not being possible to determine any
pull settings from software.

Also the binding-documentation for the pull arguments did not match
the changes to the expected values.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Reviewed-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt
include/linux/pinctrl/pinconf-generic.h

index 2d730e3dd496c432d5a3e46bc372be76f26270d2..7498bdc00e19adba3437493eeb4df0637c401bd3 100644 (file)
@@ -165,9 +165,8 @@ output-high         - set the pin to output mode with high level
 
 Arguments for parameters:
 
-- bias-pull-up, -down and -pin-default take as optional argument 0 to disable
-  the pull, on hardware supporting it the pull strength in Ohm. bias-disable
-  will also disable any active pull.
+- bias-pull-up, -down and -pin-default take as optional argument on hardware
+  supporting it the pull strength in Ohm. bias-disable will disable the pull.
 
 - drive-strength takes as argument the target strength in mA.
 
index 10ad996afee49ac4c42b91176f77d7a17344f34e..48aa4ba7b089dbc210038bf3ca8088cba8c08b49 100644 (file)
  *     impedance to GROUND). If the argument is != 0 pull-down is enabled,
  *     if it is 0, pull-down is total, i.e. the pin is connected to GROUND.
  * @PIN_CONFIG_BIAS_PULL_PIN_DEFAULT: the pin will be pulled up or down based
- *     on embedded knowledge of the controller, like current mux function.
+ *     on embedded knowledge of the controller hardware, like current mux
+ *     function. The pull direction and possibly strength too will normally
+ *     be decided completely inside the hardware block and not be readable
+ *     from the kernel side.
  *     If the argument is != 0 pull up/down is enabled, if it is 0, the
  *     configuration is ignored. The proper way to disable it is to use
  *     @PIN_CONFIG_BIAS_DISABLE.