diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-01 16:20:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-01 16:20:04 -0400 |
commit | 251df49db3327c64bf917bfdba94491fde2b4ee0 (patch) | |
tree | 71eef72e1c393057f7b14cc4d8da5e48c7728336 /Documentation | |
parent | 8a72f3820c4d14b27ad5336aed00063a7a7f1bef (diff) | |
parent | bf61c8840efe60fd8f91446860b63338fb424158 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input updates from Dmitry Torokhov:
"Assorted fixes and cleanups to the existing drivers plus a new driver
for IMS Passenger Control Unit device they use for ther in-flight
entertainment system."
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (44 commits)
Input: trackpoint - Optimize trackpoint init to use power-on reset
Input: apbps2 - convert to devm_ioremap_resource()
Input: ALPS - use %ph to print buffers
ARM - shmobile: Armadillo800EVA: Move st1232 reset pin handling
Input: st1232 - add reset pin handling
Input: st1232 - convert to devm_* infrastructure
Input: MT - handle semi-mt devices in core
Input: adxl34x - use spi_get_drvdata()
Input: ad7877 - use spi_get_drvdata() and spi_set_drvdata()
Input: ads7846 - use spi_get_drvdata() and spi_set_drvdata()
Input: ims-pcu - fix a memory leak on error
Input: sysrq - supplement reset sequence with timeout functionality
Input: tegra-kbc - support for defining row/columns based on SoC
Input: imx_keypad - switch to using managed resources
Input: arc_ps2 - add support for device tree
Input: mma8450 - fix signed 12bits to 32bits conversion
Input: eeti_ts - remove redundant null check
Input: edt-ft5x06 - remove redundant null check before kfree
Input: ad714x - add CONFIG_PM_SLEEP to suspend/resume functions
Input: adxl34x - add CONFIG_PM_SLEEP to suspend/resume functions
...
Diffstat (limited to 'Documentation')
4 files changed, 86 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/ps2keyb-mouse-apbps2.txt b/Documentation/devicetree/bindings/input/ps2keyb-mouse-apbps2.txt new file mode 100644 index 000000000000..3029c5694cf6 --- /dev/null +++ b/Documentation/devicetree/bindings/input/ps2keyb-mouse-apbps2.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | Aeroflex Gaisler APBPS2 PS/2 Core, supporting Keyboard or Mouse. | ||
2 | |||
3 | The APBPS2 PS/2 core is available in the GRLIB VHDL IP core library. | ||
4 | |||
5 | Note: In the ordinary environment for the APBPS2 core, a LEON SPARC system, | ||
6 | these properties are built from information in the AMBA plug&play and from | ||
7 | bootloader settings. | ||
8 | |||
9 | Required properties: | ||
10 | |||
11 | - name : Should be "GAISLER_APBPS2" or "01_060" | ||
12 | - reg : Address and length of the register set for the device | ||
13 | - interrupts : Interrupt numbers for this device | ||
14 | |||
15 | For further information look in the documentation for the GLIB IP core library: | ||
16 | http://www.gaisler.com/products/grlib/grip.pdf | ||
diff --git a/Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt b/Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt new file mode 100644 index 000000000000..f40f21c642b9 --- /dev/null +++ b/Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt | |||
@@ -0,0 +1,30 @@ | |||
1 | * AUO in-cell touchscreen controller using Pixcir sensors | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: must be "auo,auo_pixcir_ts" | ||
5 | - reg: I2C address of the chip | ||
6 | - interrupts: interrupt to which the chip is connected | ||
7 | - gpios: gpios the chip is connected to | ||
8 | first one is the interrupt gpio and second one the reset gpio | ||
9 | - x-size: horizontal resolution of touchscreen | ||
10 | - y-size: vertical resolution of touchscreen | ||
11 | |||
12 | Example: | ||
13 | |||
14 | i2c@00000000 { | ||
15 | /* ... */ | ||
16 | |||
17 | auo_pixcir_ts@5c { | ||
18 | compatible = "auo,auo_pixcir_ts"; | ||
19 | reg = <0x5c>; | ||
20 | interrupts = <2 0>; | ||
21 | |||
22 | gpios = <&gpf 2 0 2>, /* INT */ | ||
23 | <&gpf 5 1 0>; /* RST */ | ||
24 | |||
25 | x-size = <800>; | ||
26 | y-size = <600>; | ||
27 | }; | ||
28 | |||
29 | /* ... */ | ||
30 | }; | ||
diff --git a/Documentation/devicetree/bindings/input/touchscreen/sitronix-st1232.txt b/Documentation/devicetree/bindings/input/touchscreen/sitronix-st1232.txt new file mode 100644 index 000000000000..64ad48b824a2 --- /dev/null +++ b/Documentation/devicetree/bindings/input/touchscreen/sitronix-st1232.txt | |||
@@ -0,0 +1,24 @@ | |||
1 | * Sitronix st1232 touchscreen controller | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: must be "sitronix,st1232" | ||
5 | - reg: I2C address of the chip | ||
6 | - interrupts: interrupt to which the chip is connected | ||
7 | |||
8 | Optional properties: | ||
9 | - gpios: a phandle to the reset GPIO | ||
10 | |||
11 | Example: | ||
12 | |||
13 | i2c@00000000 { | ||
14 | /* ... */ | ||
15 | |||
16 | touchscreen@55 { | ||
17 | compatible = "sitronix,st1232"; | ||
18 | reg = <0x55>; | ||
19 | interrupts = <2 0>; | ||
20 | gpios = <&gpio1 166 0>; | ||
21 | }; | ||
22 | |||
23 | /* ... */ | ||
24 | }; | ||
diff --git a/Documentation/devicetree/bindings/serio/snps-arc_ps2.txt b/Documentation/devicetree/bindings/serio/snps-arc_ps2.txt new file mode 100644 index 000000000000..38c2f21e8044 --- /dev/null +++ b/Documentation/devicetree/bindings/serio/snps-arc_ps2.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | * ARC PS/2 driver: PS/2 block used in some ARC FPGA's & nSIM OSCI model | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : "snps,arc_ps2" | ||
5 | - reg : offset and length (always 0x14) of registers | ||
6 | - interrupts : interrupt | ||
7 | - interrupt-names : name of interrupt, must be "arc_ps2_irq" | ||
8 | |||
9 | Example: | ||
10 | |||
11 | serio@c9000400 { | ||
12 | compatible = "snps,arc_ps2"; | ||
13 | reg = <0xc9000400 0x14>; | ||
14 | interrupts = <13>; | ||
15 | interrupt-names = "arc_ps2_irq"; | ||
16 | } | ||