diff options
author | Eric Miao <eric.y.miao@gmail.com> | 2008-01-31 00:58:37 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-01-31 00:58:37 -0500 |
commit | 1814db69698479eec2c000a43c83b5f263f6fbb6 (patch) | |
tree | 311c8980e0224d4842125ff1cf49c117f6d2a4e7 /include | |
parent | 1a1cd739a4b985f87c47e2809db7e240dba2c385 (diff) |
Input: pxa27x_keypad - introduce driver structure and use KEY() to define matrix keys
1. Introduce the "struct pxa27x_keypad" structure for driver specific
information, such as "struct clk", generated matrix key codes and
so on
2. Use KEY() macro to define matrix keys, instead of original 8x8 map
this makes definition easier with keypad where keys are sparse
3. Keep a generated array in "struct pxa27x_keypad" for fast lookup
4. Separate the matrix scan into a dedicated function for readability
and report only those keys whose state has been changed, instead
of report all states
5. Make use of KPAS to decide the faster path if only one key has been
detected
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-pxa/pxa27x_keypad.h | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/include/asm-arm/arch-pxa/pxa27x_keypad.h b/include/asm-arm/arch-pxa/pxa27x_keypad.h index ef17db6d791e..1b1bf9fe6d81 100644 --- a/include/asm-arm/arch-pxa/pxa27x_keypad.h +++ b/include/asm-arm/arch-pxa/pxa27x_keypad.h | |||
@@ -1,12 +1,25 @@ | |||
1 | #define PXAKBD_MAXROW 8 | 1 | #ifndef __ASM_ARCH_PXA27x_KEYPAD_H |
2 | #define PXAKBD_MAXCOL 8 | 2 | #define __ASM_ARCH_PXA27x_KEYPAD_H |
3 | |||
4 | #include <linux/input.h> | ||
5 | |||
6 | #define MAX_MATRIX_KEY_ROWS (8) | ||
7 | #define MAX_MATRIX_KEY_COLS (8) | ||
3 | 8 | ||
4 | struct pxa27x_keypad_platform_data { | 9 | struct pxa27x_keypad_platform_data { |
5 | int nr_rows, nr_cols; | 10 | |
6 | int keycodes[PXAKBD_MAXROW][PXAKBD_MAXCOL]; | 11 | /* code map for the matrix keys */ |
12 | unsigned int matrix_key_rows; | ||
13 | unsigned int matrix_key_cols; | ||
14 | unsigned int *matrix_key_map; | ||
15 | int matrix_key_map_size; | ||
7 | 16 | ||
8 | #ifdef CONFIG_PM | 17 | #ifdef CONFIG_PM |
9 | u32 reg_kpc; | 18 | u32 reg_kpc; |
10 | u32 reg_kprec; | 19 | u32 reg_kprec; |
11 | #endif | 20 | #endif |
12 | }; | 21 | }; |
22 | |||
23 | #define KEY(row, col, val) (((row) << 28) | ((col) << 24) | (val)) | ||
24 | |||
25 | #endif /* __ASM_ARCH_PXA27x_KEYPAD_H */ | ||