diff options
| author | Tomasz Figa <t.figa@samsung.com> | 2012-10-11 04:03:50 -0400 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-10-11 04:29:36 -0400 |
| commit | ad5396ee32afbdabb6188ffba67778080ea795b8 (patch) | |
| tree | 3b804f68084673f4e85373a9724805e37379621e /Documentation/devicetree/bindings/input/touchscreen | |
| parent | dae6ba4ab797ed411fbde60ef5b5f6fbf13f0090 (diff) | |
Input: mms114 - add device tree bindings
Add device tree bindings for mms114 touchscreen.
[Dmitry Torokhov: added #ifdef CONFIG_OF guards]
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'Documentation/devicetree/bindings/input/touchscreen')
| -rw-r--r-- | Documentation/devicetree/bindings/input/touchscreen/mms114.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/touchscreen/mms114.txt b/Documentation/devicetree/bindings/input/touchscreen/mms114.txt new file mode 100644 index 000000000000..89d4c56c5671 --- /dev/null +++ b/Documentation/devicetree/bindings/input/touchscreen/mms114.txt | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | * MELFAS MMS114 touchscreen controller | ||
| 2 | |||
| 3 | Required properties: | ||
| 4 | - compatible: must be "melfas,mms114" | ||
| 5 | - reg: I2C address of the chip | ||
| 6 | - interrupts: interrupt to which the chip is connected | ||
| 7 | - x-size: horizontal resolution of touchscreen | ||
| 8 | - y-size: vertical resolution of touchscreen | ||
| 9 | |||
| 10 | Optional properties: | ||
| 11 | - contact-threshold: | ||
| 12 | - moving-threshold: | ||
| 13 | - x-invert: invert X axis | ||
| 14 | - y-invert: invert Y axis | ||
| 15 | |||
| 16 | Example: | ||
| 17 | |||
| 18 | i2c@00000000 { | ||
| 19 | /* ... */ | ||
| 20 | |||
| 21 | touchscreen@48 { | ||
| 22 | compatible = "melfas,mms114"; | ||
| 23 | reg = <0x48>; | ||
| 24 | interrupts = <39 0>; | ||
| 25 | x-size = <720>; | ||
| 26 | y-size = <1280>; | ||
| 27 | contact-threshold = <10>; | ||
| 28 | moving-threshold = <10>; | ||
| 29 | x-invert; | ||
| 30 | y-invert; | ||
| 31 | }; | ||
| 32 | |||
| 33 | /* ... */ | ||
| 34 | }; | ||
