LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Philippe Troin <phil@fifi.org>
To: Jiri Kosina <jkosina@suse.cz>
Cc: linux-kernel@vger.kernel.org, arbrandes@gmail.com
Subject: Re: USB HID: Missing keys on Gyration Media Center Universal Remote Control
Date: 17 Jun 2008 09:34:21 -0700 [thread overview]
Message-ID: <87skvckoky.fsf@old-tantale.fifi.org> (raw)
In-Reply-To: <Pine.LNX.4.64.0806171557440.10085@jikos.suse.cz>
Jiri Kosina <jkosina@suse.cz> writes:
> On Mon, 16 Jun 2008, Philippe Troin wrote:
>
> > Jiri & all,
> > What's the status on this bug?
> > I used this patch for 2.6.24:
> > diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c
> > index 0b27da7..fc6e77e 100644
> > --- a/drivers/hid/hid-input.c
> > +++ b/drivers/hid/hid-input.c
> > @@ -802,6 +802,7 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
> > case HID_UP_LOGIVENDOR:
> > set_bit(EV_REP, input->evbit);
> > switch(usage->hid & HID_USAGE) {
> > + case 0x000: map_key_clear(KEY_TV);
> > /* Reported on Logitech Ultra X Media Remote */
> > case 0x004: map_key_clear(KEY_AGAIN); break;
> > case 0x00d: map_key_clear(KEY_HOME); break;
> > @@ -1039,6 +1040,28 @@ void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct
> > 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;
> > + }
> > +
> > /* Handling MS keyboards special buttons */
> > if (IS_MS_KB(hid) && usage->hid == (HID_UP_MSVENDOR | 0xff05)) {
> > int key = 0;
> > It was working fine.
>
> Hi,
>
> The patch didn't add complete support for this device, there still has
> been problem with "TV" key, and I have asked Adolfo to perform a test with
> debugging patch, but there seems to be no response so far [1]
For me, as I mentionned, there are 6 keys not working with or without
the patch (home, tv, photo, movies, music, and another key for which I
do not have a description), in addition to the power key repeating for
ever once pressed.
> Adolfo (added to CC), has there been any progress, so that we could
> proceed with merging the patch adding proper support for this HW?
I could also help debugging/testing.
Phil.
next prev parent reply other threads:[~2008-06-17 16:34 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-16 23:31 Philippe Troin
2008-06-17 14:00 ` Jiri Kosina
2008-06-17 16:34 ` Philippe Troin [this message]
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
-- strict thread matches above, loose matches on Subject: below --
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
2008-02-19 13:04 ` 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=87skvckoky.fsf@old-tantale.fifi.org \
--to=phil@fifi.org \
--cc=arbrandes@gmail.com \
--cc=jkosina@suse.cz \
--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).