From: James S. <jsi...@tr...> - 2001-07-08 15:50:39
|
Does the i8042 drivers we have support this device? ---------- Forwarded message ---------- Date: Sun, 8 Jul 2001 22:49:30 +1000 From: CaT <ca...@zi...> To: lin...@vg... Subject: synaptics touchpad not working with 2.4.x I;ve had this with 2.4.0 but have just tried with 2.4.6ac2 and still have it. Under 2.2.x the touchpad works like a dream. Under 2.4.x it stutters, freezes and so on. Did something about /dec/psaux change between 2.2.x and 2.4.x? Will I need to recompile glibc and/or gpm? if I cat /dev/psaux I get data flowing through but gpm stays frozen. :/ Hope someone can help as, now that ext3 is being well and truly ported to 2.4.x, this is the last stumbling block for me having 2.4.x on my laptop. gpm options: /usr/sbin/gpm -m /dev/psaux -t synps2 -Rmsc -2 glibc: 2.1.3 compiled for 2.2.x -- CaT (ca...@zi...) *** Jenna has joined the channel. <cat> speaking of mental giants.. <Jenna> me, a giant, bullshit <Jenna> And i'm not mental - An IRC session, 20/12/2000 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to maj...@vg... More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |
From: Vojtech P. <vo...@su...> - 2001-07-09 20:45:04
|
On Sun, Jul 08, 2001 at 08:50:37AM -0700, James Simmons wrote: > Does the i8042 drivers we have support this device? We don't have a specific driver for this. It should emulate a normal PS/2 mouse, though. The current 2.4 code chokes on the 0xaa character this device likes to send and resets it quite often. The ruby code is protected against this while still capable to detect mouse reconnects (the reason 0xaa handling is in 2.4). 2.4 can't be fixed, because of its psaux byte-stream oriented architecture. 2.2 doesn't handle mouse reconnects. Ruby understand the psmouse protocol and thus handles everything gracefully. > ---------- Forwarded message ---------- > Date: Sun, 8 Jul 2001 22:49:30 +1000 > From: CaT <ca...@zi...> > To: lin...@vg... > Subject: synaptics touchpad not working with 2.4.x > > I;ve had this with 2.4.0 but have just tried with 2.4.6ac2 and still > have it. > > Under 2.2.x the touchpad works like a dream. Under 2.4.x it stutters, > freezes and so on. Did something about /dec/psaux change between 2.2.x > and 2.4.x? Will I need to recompile glibc and/or gpm? > > if I cat /dev/psaux I get data flowing through but gpm stays frozen. :/ > > Hope someone can help as, now that ext3 is being well and truly ported > to 2.4.x, this is the last stumbling block for me having 2.4.x on > my laptop. > > gpm options: /usr/sbin/gpm -m /dev/psaux -t synps2 -Rmsc -2 > glibc: 2.1.3 compiled for 2.2.x > > -- > CaT (ca...@zi...) *** Jenna has joined the channel. > <cat> speaking of mental giants.. > <Jenna> me, a giant, bullshit > <Jenna> And i'm not mental > - An IRC session, 20/12/2000 > > - > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to maj...@vg... > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > > > _______________________________________________ > Linuxconsole-dev mailing list > Lin...@li... > http://lists.sourceforge.net/lists/listinfo/linuxconsole-dev -- Vojtech Pavlik SuSE Labs |
From: Arndt S. <ab...@sr...> - 2001-07-10 08:40:58
|
Hi Vojtech, while you are at it, talking about ruby's psaux driver: On Mon, Jul 09, 2001 at 10:44:30PM +0200, Vojtech Pavlik wrote: > On Sun, Jul 08, 2001 at 08:50:37AM -0700, James Simmons wrote: > > > Does the i8042 drivers we have support this device? > > We don't have a specific driver for this. It should emulate a normal > PS/2 mouse, though. > > The current 2.4 code chokes on the 0xaa character this device likes to > send and resets it quite often. The ruby code is protected against this > while still capable to detect mouse reconnects (the reason 0xaa handling > is in 2.4). > > 2.4 can't be fixed, because of its psaux byte-stream oriented > architecture. 2.2 doesn't handle mouse reconnects. Ruby understand the > psmouse protocol and thus handles everything gracefully. Does ruby allow to send data down to a psaux device? I will need this functionality to improve the Linux support for the Twiddler2 (to allow reprogramming of the chord-to-scancode mapping table which is kept inside the device itself). Thank you, Arndt |
From: Vojtech P. <vo...@su...> - 2001-07-10 08:46:41
|
On Tue, Jul 10, 2001 at 10:40:50AM +0200, Arndt Schoenewald wrote: > Hi Vojtech, > > while you are at it, talking about ruby's psaux driver: > > On Mon, Jul 09, 2001 at 10:44:30PM +0200, Vojtech Pavlik wrote: > > On Sun, Jul 08, 2001 at 08:50:37AM -0700, James Simmons wrote: > > > > > Does the i8042 drivers we have support this device? > > > > We don't have a specific driver for this. It should emulate a normal > > PS/2 mouse, though. > > > > The current 2.4 code chokes on the 0xaa character this device likes to > > send and resets it quite often. The ruby code is protected against this > > while still capable to detect mouse reconnects (the reason 0xaa handling > > is in 2.4). > > > > 2.4 can't be fixed, because of its psaux byte-stream oriented > > architecture. 2.2 doesn't handle mouse reconnects. Ruby understand the > > psmouse protocol and thus handles everything gracefully. > > Does ruby allow to send data down to a psaux device? I will need this > functionality to improve the Linux support for the Twiddler2 (to allow > reprogramming of the chord-to-scancode mapping table which is kept > inside the device itself). Not from userspace yet. But you can do it from a driver that'll plug between the i8042 driver and the atkbd/psmouse drivers. -- Vojtech Pavlik SuSE Labs |
From: Arndt S. <ab...@sr...> - 2001-07-10 09:43:07
|
On Tue, Jul 10, 2001 at 10:46:21AM +0200, Vojtech Pavlik wrote: > > Does ruby allow to send data down to a psaux device? I will need this > > functionality to improve the Linux support for the Twiddler2 (to allow > > reprogramming of the chord-to-scancode mapping table which is kept > > inside the device itself). > > Not from userspace yet. But you can do it from a driver that'll plug > between the i8042 driver and the atkbd/psmouse drivers. That's fine for me! This driver could then have a /proc interface to which user space code can write the desired mapping tables. Thanks, Arndt |