Initial TS attempt

Added hsuart, user pins and the dumb ts driver
This commit is contained in:
Oleg Drokin
2012-02-01 19:40:17 -05:00
committed by James Sullins
parent 50d9f4b09e
commit 38fb38688f
23 changed files with 11072 additions and 5 deletions

View File

@@ -817,4 +817,16 @@ config TOUCHSCREEN_CYTTSP_I2C
To compile this driver as a module, choose M here: the
module will be called cyttsp-i2c.
config TOUCHSCREEN_CY8CTMA395
tristate "Cypress TMA395 capacitive touchscreen controller"
default n
help
Say Y here if you have a CY8CTMA395 based touchscreen controller
If unsure, say N.
To comile this driver as a module, choose M here: the module
will be called cy8ctma395
endif

View File

@@ -69,3 +69,4 @@ obj-$(CONFIG_TOUCHSCREEN_TPS6507X) += tps6507x-ts.o
obj-$(CONFIG_TOUCHSCREEN_MSM_LEGACY) += msm_touch.o
obj-$(CONFIG_TOUCHSCREEN_CY8C_TS) += cy8c_ts.o
obj-$(CONFIG_TOUCHSCREEN_CYTTSP_I2C) += cyttsp-i2c.o
obj-$(CONFIG_TOUCHSCREEN_CY8CTMA395) += cy8ctma395.o

File diff suppressed because it is too large Load Diff

View File

@@ -229,6 +229,17 @@ config ATMEL_SSC
If unsure, say N.
config HSUART
bool "High Speed UART engine"
default n
---help---
Generic HSUART engine, which calls platform specific code to facilitate High speed UART driver".
config USER_PINS
tristate "Sysfs GPIO pins control"
---help---
Select Y if you want to expose some gpio pins through sysfs.
config ENCLOSURE_SERVICES
tristate "Enclosure Services"
default n

View File

@@ -66,3 +66,5 @@ obj-$(CONFIG_PMIC8058_XOADC) += pmic8058-xoadc.o
obj-$(CONFIG_TZCOM) += tzcom.o
obj-$(CONFIG_QFP_FUSE) += qfp_fuse.o
obj-$(CONFIG_KERNEL_LOG) += klog.o
obj-$(CONFIG_HSUART) += hsuart.o
obj-$(CONFIG_USER_PINS) += user-pins.o

2464
drivers/misc/hsuart.c Normal file

File diff suppressed because it is too large Load Diff

1014
drivers/misc/user-pins.c Normal file

File diff suppressed because it is too large Load Diff