]> Pileus Git - ~andy/linux/blob - arch/blackfin/mach-bf548/include/mach/bf54x_keys.h
Merge branch 'x86/apic' into x86-v28-for-linus-phase4-B
[~andy/linux] / arch / blackfin / mach-bf548 / include / mach / bf54x_keys.h
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