aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/Kconfig
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/input/touchscreen/Kconfig
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'drivers/input/touchscreen/Kconfig')
-rw-r--r--drivers/input/touchscreen/Kconfig98
1 files changed, 98 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig
new file mode 100644
index 000000000000..7e991274ea40
--- /dev/null
+++ b/drivers/input/touchscreen/Kconfig
@@ -0,0 +1,98 @@
1#
2# Mouse driver configuration
3#
4menuconfig INPUT_TOUCHSCREEN
5 bool "Touchscreens"
6 help
7 Say Y here, and a list of supported touchscreens will be displayed.
8 This option doesn't affect the kernel.
9
10 If unsure, say Y.
11
12if INPUT_TOUCHSCREEN
13
14config TOUCHSCREEN_BITSY
15 tristate "Compaq iPAQ H3600 (Bitsy) touchscreen"
16 depends on SA1100_BITSY
17 select SERIO
18 help
19 Say Y here if you have the h3600 (Bitsy) touchscreen.
20
21 If unsure, say N.
22
23 To compile this driver as a module, choose M here: the
24 module will be called h3600_ts_input.
25
26config TOUCHSCREEN_CORGI
27 tristate "Corgi touchscreen (for Sharp SL-C7xx)"
28 depends on PXA_SHARPSL
29 default y
30 help
31 Say Y here to enable the driver for the touchscreen on the
32 Sharp SL-C7xx series of PDAs.
33
34 If unsure, say N.
35
36 To compile this driver as a module, choose M here: the
37 module will be called ads7846_ts.
38
39config TOUCHSCREEN_GUNZE
40 tristate "Gunze AHL-51S touchscreen"
41 select SERIO
42 help
43 Say Y here if you have the Gunze AHL-51 touchscreen connected to
44 your system.
45
46 If unsure, say N.
47
48 To compile this driver as a module, choose M here: the
49 module will be called gunze.
50
51config TOUCHSCREEN_ELO
52 tristate "Elo serial touchscreens"
53 select SERIO
54 help
55 Say Y here if you have an Elo serial touchscreen connected to
56 your system.
57
58 If unsure, say N.
59
60 To compile this driver as a module, choose M here: the
61 module will be called gunze.
62
63config TOUCHSCREEN_MTOUCH
64 tristate "MicroTouch serial touchscreens"
65 select SERIO
66 help
67 Say Y here if you have a MicroTouch (3M) serial touchscreen connected to
68 your system.
69
70 If unsure, say N.
71
72 To compile this driver as a module, choose M here: the
73 module will be called mtouch.
74
75config TOUCHSCREEN_MK712
76 tristate "ICS MicroClock MK712 touchscreen"
77 help
78 Say Y here if you have the ICS MicroClock MK712 touchscreen
79 controller chip in your system.
80
81 If unsure, say N.
82
83 To compile this driver as a module, choose M here: the
84 module will be called mk712.
85
86config TOUCHSCREEN_HP600
87 tristate "HP Jornada 680/690 touchscreen"
88 depends on SH_HP600 && SH_ADC
89 help
90 Say Y here if you have a HP Jornada 680 or 690 and want to
91 support the built-in touchscreen.
92
93 If unsure, say N.
94
95 To compile this driver as a module, choose M here: the
96 module will be called hp680_ts_input.
97
98endif