summaryrefslogtreecommitdiff
path: root/drivers/input
diff options
context:
space:
mode:
authorZhang Jiejing <jiejing.zhang@freescale.com>2011-04-06 23:52:22 +0800
committerJason Liu <r64343@freescale.com>2012-01-09 20:07:59 +0800
commit53b9067bcf119ed3403324684caf55cb339fcc83 (patch)
tree64a07015145af1984bd01a410511d25367aa0ca5 /drivers/input
parent34496f0b27e6aa4aab2fff266b45b48d38638a45 (diff)
ENGR00138130-1 input: add max11801 resistance touchscreen controller driver
Add MAXI max11801 resistance touch screen controller driver, This driver use Auto Mode and Aperture Mode. Other max1180x driver can support in this driver, they use almost same register address and define, you can find a table in max11801_ts.c You can find data sheet under this link: http://www.maxim-ic.com/datasheet/index.mvp/id/5943 Signed-off-by: Zhang Jiejing <jiejing.zhang@freescale.com>
Diffstat (limited to 'drivers/input')
-rwxr-xr-xdrivers/input/touchscreen/Kconfig11
-rwxr-xr-xdrivers/input/touchscreen/Makefile1
2 files changed, 12 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig
index 5fbc288f64d7..7cd31c031096 100755
--- a/drivers/input/touchscreen/Kconfig
+++ b/drivers/input/touchscreen/Kconfig
@@ -746,4 +746,15 @@ config TOUCHSCREEN_DA9052
Say y here to support the touchscreen found on
Dialog Semiconductor DA9052 PMIC
+config TOUCHSCREEN_MAX11801
+ tristate "MAX11801 based touchscreens"
+ depends on I2C
+ help
+ Say Y here if you have a MAX11801 based touchscreen
+ controller
+
+ If unsure, say N.
+
+ To compile this driver as a module, choose M here: the
+ module will be called max11801_ts
endif
diff --git a/drivers/input/touchscreen/Makefile b/drivers/input/touchscreen/Makefile
index 82bb5ad5cd89..4a4dfe2fe4f2 100755
--- a/drivers/input/touchscreen/Makefile
+++ b/drivers/input/touchscreen/Makefile
@@ -63,3 +63,4 @@ obj-$(CONFIG_TOUCHSCREEN_WM97XX_ZYLONITE) += zylonite-wm97xx.o
obj-$(CONFIG_TOUCHSCREEN_W90X900) += w90p910_ts.o
obj-$(CONFIG_TOUCHSCREEN_P1003) += p1003_ts.o
obj-$(CONFIG_TOUCHSCREEN_TPS6507X) += tps6507x-ts.o
+obj-$(CONFIG_TOUCHSCREEN_MAX11801) += max11801_ts.o