All of lore.kernel.org
 help / color / mirror / Atom feed
* Synaptics probe problem on Acer Travelmate 3004WTMi
@ 2005-07-13 17:23 Thomas Sailer
  2005-07-13 17:32 ` Dmitry Torokhov
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Sailer @ 2005-07-13 17:23 UTC (permalink / raw)
  To: linux-input, vojtech, linux-kernel

Hi Vojtech,

I've got a problem with my Acer Travelmate 3004WTMi Laptop: vanilla 2.6
does not detect the synaptics touchpad.

The problem lies within psmouse_probe: after the PSMOUSE_CMD_GETID
command, param[0] contains 0xfa, and not one of the expected values. If
I just ignore this and continue, the synaptics pad is detected and
everything works ok.

Tom


static int psmouse_probe(struct psmouse *psmouse)
 642 {
 643         struct ps2dev *ps2dev = &psmouse->ps2dev;
 644         unsigned char param[2];
 645 
 646 /*
 647  * First, we check if it's a mouse. It should send 0x00 or 0x03
 648  * in case of an IntelliMouse in 4-byte mode or 0x04 for IM
Explorer.
 649  * Sunrex K8561 IR Keyboard/Mouse reports 0xff on second and
subsequent
 650  * ID queries, probably due to a firmware bug.
 651  */
 652 
 653         param[0] = 0xa5;
 654         if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETID))
 655                 return -1;
 656 
 657         if (param[0] != 0x00 && param[0] != 0x03 &&
 658             param[0] != 0x04 && param[0] != 0xff)
 659                 return -1;
 660 


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-07-18  7:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-13 17:23 Synaptics probe problem on Acer Travelmate 3004WTMi Thomas Sailer
2005-07-13 17:32 ` Dmitry Torokhov
2005-07-13 18:38   ` Vojtech Pavlik
2005-07-18  5:54     ` Thomas Sailer
2005-07-18  7:14       ` Andrey Panin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.