diff options
author | Nicolas Bellido <ml@acolin.be> | 2006-11-24 00:42:50 -0500 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2006-11-24 00:42:50 -0500 |
commit | f9705fcb9887fcff364a0c8dffbac693aa221d4f (patch) | |
tree | 5126de9a40199f1c6b3c7797109b83f577f30d33 /drivers/input/keyboard/Kconfig | |
parent | 153a9df01c0d1ecdc56161c7a0f830325145dd64 (diff) |
Input: add driver for keyboard on AAED-2000 development board (ARM)
The keyboard is connected via GPIOs to the processor, and scanned
using a column sample register. The hardware provides no debouncing
mechanism, so the state of the keys is read KBDSCAN_STABLE_COUNT
times before being reported to the input layer.
The status of the keys needs to be polled because there is no
interrupt hooked to the lines. A workqueue is used for this.
Signed-off-by: Nicolas Bellido Y Ortega <ml@acolin.be>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/keyboard/Kconfig')
-rw-r--r-- | drivers/input/keyboard/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig index 81a333f73010..049f2f544e75 100644 --- a/drivers/input/keyboard/Kconfig +++ b/drivers/input/keyboard/Kconfig | |||
@@ -203,4 +203,15 @@ config KEYBOARD_OMAP | |||
203 | To compile this driver as a module, choose M here: the | 203 | To compile this driver as a module, choose M here: the |
204 | module will be called omap-keypad. | 204 | module will be called omap-keypad. |
205 | 205 | ||
206 | config KEYBOARD_AAED2000 | ||
207 | tristate "AAED-2000 keyboard" | ||
208 | depends on MACH_AAED2000 | ||
209 | default y | ||
210 | help | ||
211 | Say Y here to enable the keyboard on the Agilent AAED-2000 | ||
212 | development board. | ||
213 | |||
214 | To compile this driver as a module, choose M here: the | ||
215 | module will be called aaed2000_kbd. | ||
216 | |||
206 | endif | 217 | endif |