forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/dtor/input Pull some more input subsystem updates from Dmitry Torokhov: "An update to the ALPS driver to support the V8 protocol with touchstick, a change for i8042 to skip selftest on many Asus laptops which helps to keep their touchpads working after resume, and a couple other driver fixes" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: Input: i8042 - skip selftest on ASUS laptops Input: melfas_mip4 - add ic_name sysfs attribute Input: melfas_mip4 - add maintainer information Input: melfas_mip4 - add devicetree binding documentations Input: elantech - add Fujitsu Lifebook E556 to force crc_enabled Input: synaptics-rmi4 - fix error handling in I2C transport driver Input: synaptics-rmi4 - fix error handling in SPI transport driver Input: ALPS - add V8 protocol documentation Input: ALPS - set DualPoint flag for 74 03 28 devices Input: ALPS - allow touchsticks to report pressure Input: ALPS - handle 0-pressure 1F events Input: ALPS - add touchstick support for SS5 hardware Input: elantech - force needed quirks on Fujitsu H760 Input: elantech - fix Lenovo version typo
- Loading branch information
Showing
18 changed files
with
411 additions
and
59 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
* MELFAS MIP4 Touchscreen | ||
|
||
Required properties: | ||
- compatible: must be "melfas,mip4_ts" | ||
- reg: I2C slave address of the chip (0x48 or 0x34) | ||
- interrupt-parent: interrupt controller to which the chip is connected | ||
- interrupts: interrupt to which the chip is connected | ||
|
||
Optional properties: | ||
- ce-gpios: GPIO connected to the CE (chip enable) pin of the chip | ||
|
||
Example: | ||
i2c@00000000 { | ||
touchscreen: melfas_mip4@48 { | ||
compatible = "melfas,mip4_ts"; | ||
reg = <0x48>; | ||
interrupt-parent = <&gpio>; | ||
interrupts = <0 IRQ_TYPE_EDGE_FALLING>; | ||
ce-gpios = <&gpio 0 GPIO_ACTIVE_HIGH>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7829,6 +7829,13 @@ F: Documentation/scsi/megaraid.txt | |
F: drivers/scsi/megaraid.* | ||
F: drivers/scsi/megaraid/ | ||
|
||
MELFAS MIP4 TOUCHSCREEN DRIVER | ||
M: Sangwon Jee <[email protected]> | ||
W: http://www.melfas.com | ||
S: Supported | ||
F: drivers/input/touchscreen/melfas_mip4.c | ||
F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt | ||
|
||
MELLANOX ETHERNET DRIVER (mlx4_en) | ||
M: Tariq Toukan <[email protected]> | ||
L: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.