* [PATCH] INPUT: Give more precise auto repeat control for gpio_keys driver
@ 2009-06-11 12:07 Alek Du
2009-06-24 14:29 ` [PATCH] [resend] " Du, Alek
0 siblings, 1 reply; 2+ messages in thread
From: Alek Du @ 2009-06-11 12:07 UTC (permalink / raw)
To: Dmitry Torokhov, linux-input
>From 99fbdefb4d9e74e5641e892bb9fbe7cae1c1e39a Mon Sep 17 00:00:00 2001
From: Alek Du <alek.du@intel.com>
Date: Fri, 8 May 2009 12:35:48 +0800
Subject: [PATCH] INPUT: Give more precise auto repeat control for gpio_keys driver
We have a situation that for same gpio key driver, some keys can't be
auto repeatable while most of other keys are repeatable. By adding a
disable repeat flag for each button, we could precisely control that.
Signed-off-by: Alek Du <alek.du@intel.com>
---
drivers/input/keyboard/gpio_keys.c | 3 +++
include/linux/gpio_keys.h | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c
index 5e9fb79..bfde124 100644
--- a/drivers/input/keyboard/gpio_keys.c
+++ b/drivers/input/keyboard/gpio_keys.c
@@ -50,6 +50,9 @@ static void gpio_keys_report_event(struct work_struct *work)
int state = (gpio_get_value(button->gpio) ? 1 : 0) ^ button->active_low;
input_event(input, type, button->code, !!state);
+ /* if button disabled auto repeat */
+ if (state && test_bit(EV_REP, input->evbit) && button->norep)
+ input_event(input, type, button->code, 0);
input_sync(input);
}
diff --git a/include/linux/gpio_keys.h b/include/linux/gpio_keys.h
index 1289fa7..ffda87c 100644
--- a/include/linux/gpio_keys.h
+++ b/include/linux/gpio_keys.h
@@ -10,6 +10,7 @@ struct gpio_keys_button {
int type; /* input event type (EV_KEY, EV_SW) */
int wakeup; /* configure the button as a wake-up source */
int debounce_interval; /* debounce ticks interval in msecs */
+ unsigned int norep:1; /* more precise auto repeat control */
};
struct gpio_keys_platform_data {
--
1.6.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] [resend] INPUT: Give more precise auto repeat control for gpio_keys driver
2009-06-11 12:07 [PATCH] INPUT: Give more precise auto repeat control for gpio_keys driver Alek Du
@ 2009-06-24 14:29 ` Du, Alek
0 siblings, 0 replies; 2+ messages in thread
From: Du, Alek @ 2009-06-24 14:29 UTC (permalink / raw)
To: Dmitry Torokhov, linux-input
>From 99fbdefb4d9e74e5641e892bb9fbe7cae1c1e39a Mon Sep 17 00:00:00 2001
From: Alek Du <alek.du@intel.com>
Date: Fri, 8 May 2009 12:35:48 +0800
Subject: [PATCH] INPUT: Give more precise auto repeat control for gpio_keys driver
gpio_keys_platform_data has a rep flag to control auto repeat feature. But
It is not enough, for example, there is a situation that most of buttons are repeatable, while some buttons like poweroff or mute can't be repeatable. By adding another repeat flag for gpio_keys_button, we could precisely control that.
Signed-off-by: Alek Du <alek.du@intel.com>
---
drivers/input/keyboard/gpio_keys.c | 3 +++
include/linux/gpio_keys.h | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c
index 5e9fb79..bfde124 100644
--- a/drivers/input/keyboard/gpio_keys.c
+++ b/drivers/input/keyboard/gpio_keys.c
@@ -50,6 +50,9 @@ static void gpio_keys_report_event(struct work_struct *work)
int state = (gpio_get_value(button->gpio) ? 1 : 0) ^ button->active_low;
input_event(input, type, button->code, !!state);
+ /* if button disabled auto repeat */
+ if (state && test_bit(EV_REP, input->evbit) && button->norep)
+ input_event(input, type, button->code, 0);
input_sync(input);
}
diff --git a/include/linux/gpio_keys.h b/include/linux/gpio_keys.h
index 1289fa7..ffda87c 100644
--- a/include/linux/gpio_keys.h
+++ b/include/linux/gpio_keys.h
@@ -10,6 +10,7 @@ struct gpio_keys_button {
int type; /* input event type (EV_KEY, EV_SW) */
int wakeup; /* configure the button as a wake-up source */
int debounce_interval; /* debounce ticks interval in msecs */
+ unsigned int norep:1; /* more precise auto repeat control */
};
struct gpio_keys_platform_data {
--
1.6.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-06-24 14:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-11 12:07 [PATCH] INPUT: Give more precise auto repeat control for gpio_keys driver Alek Du
2009-06-24 14:29 ` [PATCH] [resend] " Du, Alek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).