The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* New way of setting keycodes to scancodes
@ 2006-06-09 19:49 Marvin Raaijmakers
  0 siblings, 0 replies; only message in thread
From: Marvin Raaijmakers @ 2006-06-09 19:49 UTC (permalink / raw)
  To: linux-kernel

Hello,

Currently it isn't possible to assign keycodes to keys of USB keyboards
by usign a userspace application. This is because USB keyboards do not
send scancodes, but HID usage codes. I have modified the hid-input
driver so that keycodes can be set to HID usage codes in exactly the
same way as keycodes are set to scancodes.
To make this possible I had to modify the input_dev structure (in
<linux/input.h>) by adding a "setkeycodes" member to it. This member is
a pointer to a function that sets the keycodes to scancodes (and HID
usage codes). Each driver has its own "setkeycodes" function and if a
driver does not provide the functionality to set keycodes, the pointer
will be NULL. The evdev_ioctl function will call the "setkeycode"
function if its cmd parameter is equal to EVIOCSKEYCODE.
All keyboard drivers now have a setkeycode function, including the
hid-input driver. Note that hid-usage codes are handled the same way as
scancodes.
The keycodemax, keycodesize and keycode member are not removed from the
input_dev structure so that the old way of setting a keycode (by using
the setkeycodes program) can still be used.
The files I modified can be downloaded from:
http://marvin.linux-box.nl/files/kernel_mod.tar.gz (note that I used the
source files from kernel 2.6.15)

Below you can see a simple application for setting keycodes:
----------------
#include <linux/input.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>

int
main (int argc, char **argv)
{
	int fd;
	struct input_keycode2scancode scan2key;
	
	if (argc < 4)
	{
		printf ("Usage: %s /dev/input/eventX scancode keycode\n", argv[0]);
		printf ("Where X = input device number\n");
		return 1;
	}
	
	if ((fd = open(argv[1], O_RDONLY)) < 0)
	{
		perror (argv[0]);
		return 1;
	}
	
	scan2key.scancode = (unsigned) strtol(argv[2], NULL, 0);
	scan2key.keycode = (unsigned) strtol(argv[3], NULL, 0);
	ioctl (fd, EVIOCSKEYCODE, &scan2key);
	
	return 0;
}
----------------

I hope my code will be implemented in the kernel, because with the
current code a lot of extra function keys on USB keyboards do not work
because they do not have a keycode. My code makes it possible to set a
keycode to such key, so that it will work.

Regards,
Marvin Raaijmakers


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-06-09 19:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-09 19:49 New way of setting keycodes to scancodes Marvin Raaijmakers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox