LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Jiri Kosina <jkosina@suse.cz>
To: "Adolfo R. Brandes" <arbrandes@gmail.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: USB HID: Missing keys on Gyration Media Center Universal Remote Control
Date: Tue, 19 Feb 2008 13:43:11 +0100 (CET) [thread overview]
Message-ID: <Pine.LNX.4.64.0802191333050.30955@jikos.suse.cz> (raw)
In-Reply-To: <b4292e150802120709u1ac16800l11366913a0b54a8@mail.gmail.com>
On Tue, 12 Feb 2008, Adolfo R. Brandes wrote:
> However, the TV key is still not seen by the X server (tested using
> xev and evrouter). I'm attaching 3 files:
> * hid-input.c.patch: your patch with compilation warnings and errors
> fixed, against 2.6.24-rc6.
> * kern0.log: hid-debug and evbug output for these events: Connect, 0
> Key, Sleep Key, 0 Key, TV Key, Disconnect.
> * usbmon0.log: usbmon output for the same sequence of events (but at a
> different point in time).
Thanks for the data. The "TV" key is indeed very strange, as there seems
to be report received, corresponding usbmon log:
de8ec680 1405369735 C Ii:2:014:2 0:8 3 = 064600
de8ec680 1405369751 S Ii:2:014:2 -115:8 5 <
but only the "release" report, that is sent just afterwards, seems to have
reached HID layer, I don't know why. Could you please test the patch
below, and send me the output?
diff --git a/drivers/hid/hid-input-quirks.c b/drivers/hid/hid-input-quirks.c
index a870ba5..99f05ce 100644
--- a/drivers/hid/hid-input-quirks.c
+++ b/drivers/hid/hid-input-quirks.c
@@ -418,6 +418,27 @@ void hidinput_event_quirks(struct hid_device *hid, struct hid_field *field, stru
input_event(input, usage->type, REL_WHEEL, -value);
return;
}
+ /* "Sleep" key */
+ if (hid->vendor == 0x0c16 && hid->product == 0x0002 &&
+ (usage->hid & HID_USAGE_PAGE) == HID_UP_GENDESK &&
+ (usage->hid & 0xf0) == 0x80 &&
+ (usage->hid & 0xf) == 0x2) {
+ input_event(input, usage->type, usage->code, 1);
+ input_sync(input);
+ input_event(input, usage->type, usage->code, 0);
+ input_sync(input);
+ return;
+ }
+ /* "TV" key */
+ if (hid->vendor == 0x0c16 && hid->product == 0x0002 &&
+ (usage->hid & HID_USAGE_PAGE) == HID_UP_LOGIVENDOR &&
+ (usage->hid & HID_USAGE) == 0x0000) {
+ input_event(input, usage->type, usage->code, 1);
+ input_sync(input);
+ input_event(input, usage->type, usage->code, 0);
+ input_sync(input);
+ return;
+ }
}
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c
index 5325d98..45b8059 100644
--- a/drivers/hid/hid-input.c
+++ b/drivers/hid/hid-input.c
@@ -721,8 +721,13 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
case HID_UP_LOGIVENDOR:
- goto ignore;
-
+ set_bit(EV_REP, input->evbit);
+ switch(usage->hid & HID_USAGE) {
+ case 0x027: map_key_clear(KEY_TV); break;
+ default: goto ignore;
+ };
+ break;
+
case HID_UP_PID:
switch(usage->hid & HID_USAGE) {
diff --git a/drivers/hid/usbhid/hid-core.c b/drivers/hid/usbhid/hid-core.c
index d95979f..650322b 100644
--- a/drivers/hid/usbhid/hid-core.c
+++ b/drivers/hid/usbhid/hid-core.c
@@ -195,6 +195,8 @@ static void hid_irq_in(struct urb *urb)
struct usbhid_device *usbhid = hid->driver_data;
int status;
+ printk(KERN_DEBUG "input irq status %d received. len == %x\n",
+ urb->status, urb->actual_length);
switch (urb->status) {
case 0: /* success */
usbhid->retry_delay = 0;
next prev parent reply other threads:[~2008-02-19 12:43 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-12-28 16:48 Adolfo R. Brandes
2008-01-09 14:12 ` Jiri Kosina
2008-01-09 17:53 ` Adolfo R. Brandes
2008-01-17 13:26 ` Jiri Kosina
2008-01-18 17:01 ` Adolfo R. Brandes
2008-01-18 17:58 ` Adolfo R. Brandes
2008-02-11 20:17 ` Jiri Kosina
2008-02-12 13:23 ` Adolfo R. Brandes
2008-02-12 15:09 ` Adolfo R. Brandes
2008-02-19 12:43 ` Jiri Kosina [this message]
2008-02-19 13:04 ` Jiri Kosina
2008-06-16 23:31 Philippe Troin
2008-06-17 14:00 ` Jiri Kosina
2008-06-17 16:34 ` Philippe Troin
2008-06-18 9:40 ` Jiri Kosina
2008-06-19 20:48 ` Philippe Troin
2008-08-01 0:28 ` Philippe Troin
2008-08-01 9:29 ` Jiri Kosina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.LNX.4.64.0802191333050.30955@jikos.suse.cz \
--to=jkosina@suse.cz \
--cc=arbrandes@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--subject='Re: USB HID: Missing keys on Gyration Media Center Universal Remote Control' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
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).