2002-08-22 15:55:17

by Alan Stern

[permalink] [raw]
Subject: Patch for PC keyboard driver's autorepeat-rate handling

This patch fixes several mistakes in the PC keyboard driver's
autorepeat-rate handling. It applies as-is to both the current 2.4.x
and 2.5.x Linux kernels.

I don't know why nobody has addressed this problem earlier. Hasn't
anyone noticed that Rik Faith's kbdrate program no longer works
properly? The error is not in the program; it's in the kernel's
handling of the KDKBDREP ioctl. This patch fixes the following three
mistakes:

The .rate member of struct kbd_repeat is actually a repeat
_period_ measured in msec; the driver interprets it as a
repeat _rate_ in characters per second.

The driver returns the _prior_ values of the rate and delay
settings rather than the _current_ values.

The driver looks for an exact match for the rate and delay
values rather than using the closest match.

Note that the first two issues above are mentioned explicitly in
include/linux/kd.h, in the region defining the KDKBDREP ioctl.

Not all the repeat rates supported by the PC hardware are recognized
by the driver. I decided not to change that, since many of the rates
are only imperceptibly different. If anybody thinks that implementing
the full set would be worthwhile, it will be easy enough to do so.

Incidentally, does anybody know why drivers/char/pc_keyb.c hasn't been
moved to the arch/i386 part of the directory tree?

Alan Stern


--- drivers/char/pc_keyb.c.orig Wed Aug 21 15:36:13 2002
+++ drivers/char/pc_keyb.c Thu Aug 22 11:12:05 2002
@@ -13,6 +13,9 @@
* Code fixes to handle mouse ACKs properly.
* C. Scott Ananian <[email protected]> 1999-01-29.
*
+ * Fix the keyboard autorepeat rate handling.
+ * Alan Stern <[email protected]> 2002-08-21.
+ *
*/

#include <linux/config.h>
@@ -578,7 +581,7 @@
}

#define DEFAULT_KEYB_REP_DELAY 250
-#define DEFAULT_KEYB_REP_RATE 30 /* cps */
+#define DEFAULT_KEYB_REP_RATE 33 /* msec: = 30 cps */

static struct kbd_repeat kbdrate={
DEFAULT_KEYB_REP_DELAY,
@@ -587,48 +590,48 @@

static unsigned char parse_kbd_rate(struct kbd_repeat *r)
{
- static struct r2v{
- int rate;
- unsigned char val;
- } kbd_rates[]={ {5,0x14},
- {7,0x10},
- {10,0x0c},
- {15,0x08},
- {20,0x04},
- {25,0x02},
- {30,0x00}
- };
- static struct d2v{
- int delay;
- unsigned char val;
- } kbd_delays[]={{250,0},
- {500,1},
- {750,2},
- {1000,3}
+#if 0 /* Here is the complete list of repeat periods in msec. */
+ { 33, 38, 42, 46, 50, 54, 58, 63,
+ 67, 75, 83, 92, 100, 108, 117, 125,
+ 133, 150, 167, 183, 200, 217, 234, 250,
+ 267, 300, 334, 367, 400, 434, 467, 500};
+#endif
+ static struct r2v {
+ int period;
+ int val;
+ } kbd_rates[] = { {33,0}, /* 30 cps */
+ {42,2}, /* 24 */
+ {50,4}, /* 20 */
+ {67,8}, /* 15 */
+ {100,12}, /* 10 */
+ {133,16}, /* 7.5 */
+ {200,20}, /* 5 */
+ {500,31}, /* 2 */
};
- int rate=0,delay=0;
+ static int kbd_delays[4] = {250, 500, 750, 1000};
+ int rval=0, dval=0, i;
+
if (r != NULL){
- int i,new_rate=30,new_delay=250;
if (r->rate <= 0)
r->rate=kbdrate.rate;
if (r->delay <= 0)
r->delay=kbdrate.delay;
- for (i=0; i < sizeof(kbd_rates)/sizeof(struct r2v); i++)
- if (kbd_rates[i].rate == r->rate){
- new_rate=kbd_rates[i].rate;
- rate=kbd_rates[i].val;
+
+ /* Find the closest matches */
+
+ for (i = 0; i < sizeof(kbd_rates)/sizeof(struct r2v)-1; i++) {
+ if ((kbd_rates[i].period+kbd_rates[i+1].period)/2 >= r->rate)
break;
- }
- for (i=0; i < sizeof(kbd_delays)/sizeof(struct d2v); i++)
- if (kbd_delays[i].delay == r->delay){
- new_delay=kbd_delays[i].delay;
- delay=kbd_delays[i].val;
+ }
+ r->rate = kbd_rates[i].period;
+ rval = kbd_rates[i].val;
+ for (dval=0; dval < sizeof(kbd_delays)/sizeof(int)-1; dval++) {
+ if ((kbd_delays[dval]+kbd_delays[dval+1])/2 >= r->delay)
break;
- }
- r->rate=new_rate;
- r->delay=new_delay;
+ }
+ r->delay = kbd_delays[dval];
}
- return (delay << 5) | rate;
+ return (dval << 5) | rval;
}

static int write_kbd_rate(unsigned char r)
@@ -644,13 +647,13 @@
{
if (rep == NULL)
return -EINVAL;
- else{
+ if (rep->rate < 0 && rep->delay < 0) {
+ *rep = kbdrate;
+ return 0;
+ } else {
unsigned char r=parse_kbd_rate(rep);
- struct kbd_repeat old_rep;
- memcpy(&old_rep,&kbdrate,sizeof(struct kbd_repeat));
- if (write_kbd_rate(r)){
- memcpy(&kbdrate,rep,sizeof(struct kbd_repeat));
- memcpy(rep,&old_rep,sizeof(struct kbd_repeat));
+ if (write_kbd_rate(r)) {
+ kbdrate = *rep;
return 0;
}
}



2002-08-22 17:28:37

by Alan

[permalink] [raw]
Subject: Re: Patch for PC keyboard driver's autorepeat-rate handling

On Thu, 2002-08-22 at 16:59, Alan Stern wrote:
> properly? The error is not in the program; it's in the kernel's
> handling of the KDKBDREP ioctl. This patch fixes the following three
> mistakes:
>
> The .rate member of struct kbd_repeat is actually a repeat
> _period_ measured in msec; the driver interprets it as a
> repeat _rate_ in characters per second.
>
> The driver returns the _prior_ values of the rate and delay
> settings rather than the _current_ values.
>
> The driver looks for an exact match for the rate and delay
> values rather than using the closest match.

Since its done what it does now since about 1991, it would be better to
fix the documentation if in fact there is an error.

> Incidentally, does anybody know why drivers/char/pc_keyb.c hasn't been
> moved to the arch/i386 part of the directory tree?

"PC" keyboard and PS/2 mouse hardware can appear on almost any system,
even on plug in PCI cards.

2002-08-22 19:35:42

by Andries Brouwer

[permalink] [raw]
Subject: Re: Patch for PC keyboard driver's autorepeat-rate handling

On Thu, Aug 22, 2002 at 06:31:02PM +0100, Alan Cox wrote:
> On Thu, 2002-08-22 at 16:59, Alan Stern wrote:
> > properly? The error is not in the program; it's in the kernel's
> > handling of the KDKBDREP ioctl. This patch fixes the following three
> > mistakes:
> >
> > The .rate member of struct kbd_repeat is actually a repeat
> > _period_ measured in msec; the driver interprets it as a
> > repeat _rate_ in characters per second.
> >
> > The driver returns the _prior_ values of the rate and delay
> > settings rather than the _current_ values.
> >
> > The driver looks for an exact match for the rate and delay
> > values rather than using the closest match.
>
> Since its done what it does now since about 1991, it would be better to
> fix the documentation if in fact there is an error.

I am not so sure. The KDKBDREP is a very recent (2.4test/prerelease-to-final)
addition to the stock kernel. The kbdrate program is much older, and of course
used /dev/port - we had this discussion not too long ago.

Today kbdrate tries (i) KDKBDREP, (ii) KIOCSRATE, (iii) /dev/port.

What it does for KDKBDREP is conform the text of kd.h, and I think
conform what m68k has done for years (but I've never seen the m68k patch).
Alan Stern is entirely right that the current 2.4 kernels and the
current kbdrate program have different ideas about what KDKBDREP does.

One of the two has to be fixed. Preferably in such a way that ancient
m68k behaviour does not change. Does anyone have this old m68k patch?

Andries

2002-08-22 20:12:48

by Alan

[permalink] [raw]
Subject: Re: Patch for PC keyboard driver's autorepeat-rate handling

On Thu, 2002-08-22 at 20:37, Andries Brouwer wrote:
> What it does for KDKBDREP is conform the text of kd.h, and I think
> conform what m68k has done for years (but I've never seen the m68k patch).
> Alan Stern is entirely right that the current 2.4 kernels and the
> current kbdrate program have different ideas about what KDKBDREP does.

XFree86 assumes the existing m68k behaviour from the base m68k tree

2002-08-22 20:36:55

by Andries Brouwer

[permalink] [raw]
Subject: Re: Patch for PC keyboard driver's autorepeat-rate handling

On Thu, Aug 22, 2002 at 09:16:14PM +0100, Alan Cox wrote:
> On Thu, 2002-08-22 at 20:37, Andries Brouwer wrote:
> > What it does for KDKBDREP is conform the text of kd.h, and I think
> > conform what m68k has done for years (but I've never seen the m68k patch).
> > Alan Stern is entirely right that the current 2.4 kernels and the
> > current kbdrate program have different ideas about what KDKBDREP does.
>
> XFree86 assumes the existing m68k behaviour from the base m68k tree

A good pointer. And indeed,

xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_io.c

has code virtually identical to the kbdrate code (indeed, most likely
taken from kbdrate). So, it seems the kernel has to change, and
(although I have not checked it) Alan Stern's patch may be the right thing.

Andries


2002-08-22 20:53:19

by Alan Stern

[permalink] [raw]
Subject: Re: Patch for PC keyboard driver's autorepeat-rate handling

I checked the source tree for the stock m68k port. The only systems that
implement the KDKBDRATE ioctl are the amiga and atari ports, and they both
do it in accordance with the documentation and the kbdrate program (and
the patch I submitted earlier).

The relevant routines are drivers/char/amikeyb.c:amiga_kbdrate() and
arch/m68k/atari/atakeyb.c:atari_kbdrate().

Alan Stern