2007-01-18 12:44:09 +07:00
|
|
|
#ifndef _GPIO_KEYS_H
|
|
|
|
#define _GPIO_KEYS_H
|
|
|
|
|
|
|
|
struct gpio_keys_button {
|
|
|
|
/* Configuration parameters */
|
2007-05-01 11:39:13 +07:00
|
|
|
int code; /* input event code (KEY_*, SW_*) */
|
2007-01-18 12:44:09 +07:00
|
|
|
int gpio;
|
|
|
|
int active_low;
|
|
|
|
char *desc;
|
2007-05-01 11:39:13 +07:00
|
|
|
int type; /* input event type (EV_KEY, EV_SW) */
|
2007-09-26 11:01:17 +07:00
|
|
|
int wakeup; /* configure the button as a wake-up source */
|
2008-05-08 03:30:15 +07:00
|
|
|
int debounce_interval; /* debounce ticks interval in msecs */
|
2010-02-04 15:48:00 +07:00
|
|
|
bool can_disable;
|
2007-01-18 12:44:09 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gpio_keys_platform_data {
|
|
|
|
struct gpio_keys_button *buttons;
|
|
|
|
int nbuttons;
|
2010-12-07 08:14:47 +07:00
|
|
|
unsigned int poll_interval; /* polling interval in msecs -
|
|
|
|
for polling driver only */
|
2008-10-28 09:30:53 +07:00
|
|
|
unsigned int rep:1; /* enable input subsystem auto repeat */
|
2010-08-04 09:44:40 +07:00
|
|
|
int (*enable)(struct device *dev);
|
|
|
|
void (*disable)(struct device *dev);
|
2007-01-18 12:44:09 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|