From: Andries Brouwer <aebr@win.tue.nl>
To: Pau Aliagas <linuxnow@newtral.org>
Cc: lkml <linux-kernel@vger.kernel.org>
Subject: Re: multimedia keys not working in 2.6.0-test6
Date: Tue, 30 Sep 2003 16:56:21 +0200 [thread overview]
Message-ID: <20030930145621.GA1297@win.tue.nl> (raw)
In-Reply-To: <Pine.LNX.4.44.0309301351220.2486-100000@pau.intranet.ct>
On Tue, Sep 30, 2003 at 01:54:59PM +0200, Pau Aliagas wrote:
> These are the messages I get when pressing P1 and P2 in my laptop.
>
> kernel: atkbd.c: Unknown key pressed (translated set 2, code 0x153, data 0x74, on isa0060/serio0).
> kernel: atkbd.c: Unknown key released (translated set 2, code 0x153, data 0xf4, on isa0060/serio0).
>
> Email and browser keys report a correct code and I can bind thm to any app
> using xbindkeys, but with thes two there's no way.
These keys produce scancode e0 74. Untranslated e0 53.
Entry 0x153 of atkbd_set2_keycode[] is 0, that is why
the key is called unknown.
The normal way of assigning a keycode is by using setkeycodes.
This uses the KDSETKEYCODE ioctl, but it is broken at present.
The reason is that it is written to use 0-127 for scancode xx
and 128-255 for scancode pair e0 xx. (Translated set2, of course.)
However, the current kernel untranslates what the keyboard sends
and then uses a scancode-to-keycode mapping for untranslated set 2.
That breaks this ioctl.
Moreover, it uses a shift of 256 instead of 128 for e0.
That also breaks this ioctl.
So, today the easiest way of getting these keys to work is to
edit kernel source: linux/drivers/input/keyboard/atkbd.c
and adapt atkbd_set2_keycode[0x153]. This is the line
226, 0, 0, 0, 0, 0,153,140, 0,255, 96, 0, 0, 0,143, 0,
if I am not mistaken, of which you want to change the fourth
number, the third zero, to the desired keycode.
In the meantime we can worry about the best way to fix this ioctl.
Andries
By the way - what keyboard do you have?
e0 74 is not a very common code.
Could you collect the scancodes and keycaps for the multimedia
or other unusual keys using "showkey -s" and mail to aeb@cwi.nl ?
I would like to add your data to the database at
http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html
next prev parent reply other threads:[~2003-09-30 14:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-09-30 11:54 multimedia keys not working in 2.6.0-test6 Pau Aliagas
2003-09-30 14:56 ` Andries Brouwer [this message]
2003-09-30 15:46 ` Vojtech Pavlik
2003-09-30 15:52 ` Pau Aliagas
2003-09-30 16:00 ` Vojtech Pavlik
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=20030930145621.GA1297@win.tue.nl \
--to=aebr@win.tue.nl \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxnow@newtral.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox