* Touchpad on Dell Latitude XT (alps 73 00 14)
@ 2009-01-09 23:51 Rafi Rubin
2009-01-12 7:58 ` Dmitry Torokhov
0 siblings, 1 reply; 4+ messages in thread
From: Rafi Rubin @ 2009-01-09 23:51 UTC (permalink / raw)
To: linux-input
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
My touchpad has the id 73,00,14 which I added to alps.c as
{ { 0x73, 0x00, 0x14 }, 0xf8, 0xf8, 0 }
How can I determine what values to use for those last three fields?
Rafi
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAkln4xcACgkQwuRiAT9o608/vQCfeBCfi72Q++3SfTABCOROxvCN
ZHEAoKslCUY5ti7+rz9zQXqzP0Id+Jik
=stuZ
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Touchpad on Dell Latitude XT (alps 73 00 14)
2009-01-09 23:51 Touchpad on Dell Latitude XT (alps 73 00 14) Rafi Rubin
@ 2009-01-12 7:58 ` Dmitry Torokhov
2009-01-12 8:43 ` Rafi Rubin
2009-03-03 21:09 ` Rafi Rubin
0 siblings, 2 replies; 4+ messages in thread
From: Dmitry Torokhov @ 2009-01-12 7:58 UTC (permalink / raw)
To: Rafi Rubin; +Cc: linux-input
Hi Rafi,
On Fri, Jan 09, 2009 at 06:51:51PM -0500, Rafi Rubin wrote:
>
> My touchpad has the id 73,00,14 which I added to alps.c as
> { { 0x73, 0x00, 0x14 }, 0xf8, 0xf8, 0 }
>
> How can I determine what values to use for those last three fields?
>
f your touchpad works (you don't see any messages from psmouse in dmesg
and every button works fine) then these are correct values.
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Touchpad on Dell Latitude XT (alps 73 00 14)
2009-01-12 7:58 ` Dmitry Torokhov
@ 2009-01-12 8:43 ` Rafi Rubin
2009-03-03 21:09 ` Rafi Rubin
1 sibling, 0 replies; 4+ messages in thread
From: Rafi Rubin @ 2009-01-12 8:43 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Dmitry Torokhov wrote:
> Hi Rafi,
>
> On Fri, Jan 09, 2009 at 06:51:51PM -0500, Rafi Rubin wrote:
>> My touchpad has the id 73,00,14 which I added to alps.c as
>> { { 0x73, 0x00, 0x14 }, 0xf8, 0xf8, 0 }
>>
>> How can I determine what values to use for those last three fields?
>>
>
> f your touchpad works (you don't see any messages from psmouse in dmesg
> and every button works fine) then these are correct values.
>
Its not working quite right. When I add the device and give it the "ALPS_DUALPOINT" flag (or 0), I get all the touchpad events working properly (through the synaptics driver in X). But the stick is
sending weird coordinates through the mouse driver and extraneous clicks through the synaptics driver.
The ALPS_PASS flag just seems to send all the touchpad events to the mouse, and looses all stick events.
I'm not getting psmouse messages from the kernel when its in use. But then again, I'm not really using it all that much. The load time tests report:
alps.c: E6 report: 00 00 64
alps.c: E7 report: 73 00 14
alps.c: Status: 73 00 14
On a side note, seems to me the E6 test should print in decimal, or the comment saying the third value should be 10 or 100 should be changed to hex values.
Rafi
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAklrAqAACgkQwuRiAT9o6097XwCfa1nuSUXpIgdEsok7odNo+mp3
Z34An3cYWehx9KV0wx4WdYjanZQEgmoq
=ia7Z
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Touchpad on Dell Latitude XT (alps 73 00 14)
2009-01-12 7:58 ` Dmitry Torokhov
2009-01-12 8:43 ` Rafi Rubin
@ 2009-03-03 21:09 ` Rafi Rubin
1 sibling, 0 replies; 4+ messages in thread
From: Rafi Rubin @ 2009-03-03 21:09 UTC (permalink / raw)
To: linux-input
>> { { 0x73, 0x00, 0x14 }, 0xf8, 0xf8, 0 }
>>
>> How can I determine what values to use for those last three fields?
>>
>
> f your touchpad works (you don't see any messages from psmouse in dmesg
> and every button works fine) then these are correct values.
I took another look at it and would appreciate a little more advice.
First off, it seems that regardless of which flags I use (except for
ALPS_PASS), the first byte is 0xff for all packets. So those masks
don't seem to do anything useful for my device.
The touchpad does work fine. And with ALPS_DUALPOINT, packet[5] always
comes out as 127. However those 4 bytes in the middle act a little
weird. It looks to me like they are just rotating as if the packet size
is incorrect.
[ 1325.709029] alps packet: ff 02 00 00 08 7f
[ 1325.722834] alps packet: ff 00 08 02 02 7f
[ 1325.737028] alps packet: ff 08 02 00 00 7f
[ 1325.760152] alps packet: ff 01 00 00 08 7f
[ 1325.773963] alps packet: ff 00 08 01 00 7f
[ 1325.824228] alps packet: ff 00 01 00 08 7f
[ 1325.838144] alps packet: ff 01 08 00 00 7f
Where do the first and last bytes come from? Are they being sent by the
device, or added by a driver?
Any thoughts?
Rafi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-03-03 21:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-09 23:51 Touchpad on Dell Latitude XT (alps 73 00 14) Rafi Rubin
2009-01-12 7:58 ` Dmitry Torokhov
2009-01-12 8:43 ` Rafi Rubin
2009-03-03 21:09 ` Rafi Rubin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).