diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-26 16:56:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-26 16:56:38 -0400 |
commit | f948ad0787de7b393c325803014fd7d5f1b501b1 (patch) | |
tree | d5ac20ec61151809b8e365a137099a3f93562692 /Documentation | |
parent | 608adca52305e4d14ca5978f9c62698ca45d3f42 (diff) | |
parent | 4fbb0022cba37eef4a263183fdb7dbee89b299f2 (diff) |
Merge tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio
Pull GPIO changes from Linus Walleij:
- New driver for AMD-8111 southbridge GPIOs
- New driver for Wolfson Micro Arizona devices
- Propagate device tree parse errors
- Probe deferral finalizations - all expected calls to GPIO will now
hopefully request deferral where apropriate
- Misc updates to TCA6424, WM8994, LPC32xx, PCF857x, Samsung MXC, OMAP
and PCA953X drivers.
Fix up gpio_idx conflicts in drivers/gpio/gpio-mxc.c
* tag 'gpio-for-v3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio:
gpio: of_get_named_gpio_flags() return -EPROBE_DEFER if GPIO not yet available
gpiolib: Defer failed gpio requests by default
MAINTAINERS: add entry OMAP GPIO driver
gpio/pca953x: increase variables size to support 24 bit of data
GPIO: PCA953X: Increase size of invert variable to support 24 bit
gpio/omap: move bank->dbck initialization to omap_gpio_mod_init()
gpio/mxc: use the edge_sel feature if available
gpio: propagate of_parse_phandle_with_args errors
gpio: samsung: add flags specifier to device-tree binding
gpiolib: Add support for Wolfson Microelectronics Arizona class devices
gpio: gpio-lpc32xx: Add gpio_to_irq mapping
gpio: pcf857x: share 8/16 bit access functions
gpio: LPC32xx: Driver cleanup
MAINTAINERS: Add Wolfson gpiolib drivers to the Wolfson entry
gpiolib: wm8994: Convert to devm_kzalloc()
gpiolib: wm8994: Use irq_domain mappings for gpios
gpio: add a driver for GPIO pins found on AMD-8111 south bridge chips
gpio/tca6424: merge I2C transactions, remove cast
gpio/of: fix a typo of comment message
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/gpio/fsl-imx-gpio.txt | 2 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/gpio/gpio-samsung.txt | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/Documentation/devicetree/bindings/gpio/fsl-imx-gpio.txt b/Documentation/devicetree/bindings/gpio/fsl-imx-gpio.txt index 4f3929713ae4..dbd22e0df21e 100644 --- a/Documentation/devicetree/bindings/gpio/fsl-imx-gpio.txt +++ b/Documentation/devicetree/bindings/gpio/fsl-imx-gpio.txt | |||
@@ -22,7 +22,7 @@ Required properties: | |||
22 | Example: | 22 | Example: |
23 | 23 | ||
24 | gpio0: gpio@73f84000 { | 24 | gpio0: gpio@73f84000 { |
25 | compatible = "fsl,imx51-gpio", "fsl,imx31-gpio"; | 25 | compatible = "fsl,imx51-gpio", "fsl,imx35-gpio"; |
26 | reg = <0x73f84000 0x4000>; | 26 | reg = <0x73f84000 0x4000>; |
27 | interrupts = <50 51>; | 27 | interrupts = <50 51>; |
28 | gpio-controller; | 28 | gpio-controller; |
diff --git a/Documentation/devicetree/bindings/gpio/gpio-samsung.txt b/Documentation/devicetree/bindings/gpio/gpio-samsung.txt index 8f50fe5e6c42..5375625e8cd2 100644 --- a/Documentation/devicetree/bindings/gpio/gpio-samsung.txt +++ b/Documentation/devicetree/bindings/gpio/gpio-samsung.txt | |||
@@ -11,14 +11,15 @@ Required properties: | |||
11 | <[phandle of the gpio controller node] | 11 | <[phandle of the gpio controller node] |
12 | [pin number within the gpio controller] | 12 | [pin number within the gpio controller] |
13 | [mux function] | 13 | [mux function] |
14 | [pull up/down] | 14 | [flags and pull up/down] |
15 | [drive strength]> | 15 | [drive strength]> |
16 | 16 | ||
17 | Values for gpio specifier: | 17 | Values for gpio specifier: |
18 | - Pin number: is a value between 0 to 7. | 18 | - Pin number: is a value between 0 to 7. |
19 | - Pull Up/Down: 0 - Pull Up/Down Disabled. | 19 | - Flags and Pull Up/Down: 0 - Pull Up/Down Disabled. |
20 | 1 - Pull Down Enabled. | 20 | 1 - Pull Down Enabled. |
21 | 3 - Pull Up Enabled. | 21 | 3 - Pull Up Enabled. |
22 | Bit 16 (0x00010000) - Input is active low. | ||
22 | - Drive Strength: 0 - 1x, | 23 | - Drive Strength: 0 - 1x, |
23 | 1 - 3x, | 24 | 1 - 3x, |
24 | 2 - 2x, | 25 | 2 - 2x, |