diff options
author | Zhang Jiejing <jiejing.zhang@freescale.com> | 2011-04-06 23:52:22 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-07-20 13:10:42 +0800 |
commit | df45fa02fbbe16d73717c6219c167e511bd6f7b2 (patch) | |
tree | a7d5bad3421b3ab1970bc8541ab822b3d0eee5ba /drivers/input | |
parent | 64dd5b8200381b4cb60fdd43c08dbbc217ea4010 (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-x | drivers/input/touchscreen/Kconfig | 11 | ||||
-rwxr-xr-x | drivers/input/touchscreen/Makefile | 1 |
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 |