diff options
author | Michael Hennerich <michael.hennerich@analog.com> | 2007-10-13 00:36:46 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2007-10-13 00:36:46 -0400 |
commit | 8f740ef391fc81cb887fa08d213cf67b843cb3b7 (patch) | |
tree | 19228690eb2a962b379e5c0838eaf0dd3c58d285 /include/asm-blackfin/mach-bf548 | |
parent | 937ad5c1e35191d29d305280525394fe87f4ac4f (diff) |
Input: add support for Blackfin BF54x Keypad controller
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'include/asm-blackfin/mach-bf548')
-rw-r--r-- | include/asm-blackfin/mach-bf548/bf54x_keys.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/asm-blackfin/mach-bf548/bf54x_keys.h b/include/asm-blackfin/mach-bf548/bf54x_keys.h new file mode 100644 index 00000000000..1fb4ec77cc2 --- /dev/null +++ b/include/asm-blackfin/mach-bf548/bf54x_keys.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #ifndef _BFIN_KPAD_H | ||
2 | #define _BFIN_KPAD_H | ||
3 | |||
4 | struct bfin_kpad_platform_data { | ||
5 | int rows; | ||
6 | int cols; | ||
7 | const unsigned int *keymap; | ||
8 | unsigned short keymapsize; | ||
9 | unsigned short repeat; | ||
10 | u32 debounce_time; /* in ns */ | ||
11 | u32 coldrive_time; /* in ns */ | ||
12 | u32 keyup_test_interval; /* in ms */ | ||
13 | }; | ||
14 | |||
15 | #define KEYVAL(col, row, val) (((1 << col) << 24) | ((1 << row) << 16) | (val)) | ||
16 | |||
17 | #endif | ||