Skip to content

Commit

Permalink
Staging: mid: Intel MID touch screen driver
Browse files Browse the repository at this point in the history
Touchscreen driver used by intel mid devices. Some clean up by Alan Cox. This
driver is basically ready for upstreaming properly but is tied wrongly to the
SPI layer and needs firmware/SFI changes to fix that.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Sreedhara DS authored and Greg Kroah-Hartman committed Jun 4, 2010
1 parent d7636e0 commit a4cff8b
Show file tree
Hide file tree
Showing 6 changed files with 879 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/staging/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,7 @@ source "drivers/staging/adis16255/Kconfig"

source "drivers/staging/xgifb/Kconfig"

source "drivers/staging/mrst-touchscreen/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
1 change: 1 addition & 0 deletions drivers/staging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ obj-$(CONFIG_CXT1E1) += cxt1e1/
obj-$(CONFIG_TI_ST) += ti-st/
obj-$(CONFIG_ADIS16255) += adis16255/
obj-$(CONFIG_FB_XGI) += xgifb/
obj-$(CONFIG_TOUCHSCREEN_MRSTOUCH) += mrst-touchscreen/
7 changes: 7 additions & 0 deletions drivers/staging/mrst-touchscreen/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
config TOUCHSCREEN_INTEL_MID
tristate "Intel MID platform resistive touchscreen"
depends on INTEL_SCU_IPC
default y
help
Say Y here if you have a Intel MID based touchscreen
If unsure, say N.
3 changes: 3 additions & 0 deletions drivers/staging/mrst-touchscreen/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
obj-$(CONFIG_TOUCHSCREEN_INTEL_MID) := intel_mid_touch.o


2 changes: 2 additions & 0 deletions drivers/staging/mrst-touchscreen/TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Move the driver to not think it is SPI (requires fixing some of the SFI
and firmware side)
Loading

0 comments on commit a4cff8b

Please sign in to comment.