aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm
diff options
context:
space:
mode:
authorEric Miao <eric.y.miao@gmail.com>2008-01-31 00:59:23 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2008-01-31 00:59:23 -0500
commit76cb44e1a853f9c438ccf62eb5006f089430da72 (patch)
treeb3b53e6145c2a08c7819a4e5f1022cd491d79a80 /include/asm-arm
parentInput: pxa27x_keypad - use device resources for I/O memory mapping and IRQ (diff)
downloadlinux-dev-76cb44e1a853f9c438ccf62eb5006f089430da72.tar.xz
linux-dev-76cb44e1a853f9c438ccf62eb5006f089430da72.zip
Input: pxa27x_keypad - add debounce_interval to the keypad platform data
Currently, only one debounce_interval is introduced for both direct and matrix keys. This is true in most cases, although the keypad controller supports different debounce for direct/matrix keys. Some platforms do require this to be tuned, instead of the default reset value of 100ms. Rotary encoder will always use zero debounce time for now to achieve certain sensitivity. Signed-off-by: Eric Miao <eric.miao@marvell.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'include/asm-arm')
-rw-r--r--include/asm-arm/arch-pxa/pxa27x_keypad.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-arm/arch-pxa/pxa27x_keypad.h b/include/asm-arm/arch-pxa/pxa27x_keypad.h
index 6b832329ebc2..644f7609b523 100644
--- a/include/asm-arm/arch-pxa/pxa27x_keypad.h
+++ b/include/asm-arm/arch-pxa/pxa27x_keypad.h
@@ -19,6 +19,9 @@
*
* 3. rotary can be either interpreted as a relative input event (e.g.
* REL_WHEEL/REL_HWHEEL) or specific keys (e.g. UP/DOWN/LEFT/RIGHT)
+ *
+ * 4. matrix key and direct key will use the same debounce_interval by
+ * default, which should be sufficient in most cases
*/
struct pxa27x_keypad_platform_data {
@@ -43,6 +46,9 @@ struct pxa27x_keypad_platform_data {
int rotary1_rel_code;
int rotary1_up_key;
int rotary1_down_key;
+
+ /* key debounce interval */
+ unsigned int debounce_interval;
};
#define KEY(row, col, val) (((row) << 28) | ((col) << 24) | (val))