linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Preferred way for a multitouch driver?
@ 2010-04-11 16:41 Florian Echtler
  2010-04-11 16:54 ` Michael Poole
  2010-04-11 19:02 ` Rafi Rubin
  0 siblings, 2 replies; 5+ messages in thread
From: Florian Echtler @ 2010-04-11 16:41 UTC (permalink / raw)
  To: linux-input

Hello everyone,

I've just bought a Lenovo S10-3t convertible netbook, and now I'm 
experimenting with the "multitouch" screen (dual-touch, rather). It's 
being recognized as a HID device, and using hid-device-dump, I can nicely 
read the reports of both fingers. There's also some hacks floating around 
which use xf86-input-hidtouch, but AFAICT that doesn't do any kind of 
multitouch.

>From lurking here on the list, I've gathered that the evdev interface by 
now fully supports all kinds of multitouch events, so I guess the 
preferred way would be a hiddev-to-evdev bridge of some kind, right?

Can somebody point me into the right direction, e.g. to some other driver 
which also works that way?

Many thanks,
Florian
-- 
"_Nothing_ brightens up my morning. Coffee simply provides a shade of
grey just above the pitch-black of the infinite depths of the _abyss_."

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

* Re: Preferred way for a multitouch driver?
  2010-04-11 16:41 Preferred way for a multitouch driver? Florian Echtler
@ 2010-04-11 16:54 ` Michael Poole
  2010-04-11 19:02 ` Rafi Rubin
  1 sibling, 0 replies; 5+ messages in thread
From: Michael Poole @ 2010-04-11 16:54 UTC (permalink / raw)
  To: Florian Echtler; +Cc: linux-input

Florian Echtler writes:

> Hello everyone,
>
> I've just bought a Lenovo S10-3t convertible netbook, and now I'm
> experimenting with the "multitouch" screen (dual-touch, rather). It's
> being recognized as a HID device, and using hid-device-dump, I can
> nicely read the reports of both fingers. There's also some hacks
> floating around which use xf86-input-hidtouch, but AFAICT that doesn't
> do any kind of multitouch.
>
> From lurking here on the list, I've gathered that the evdev interface
> by now fully supports all kinds of multitouch events, so I guess the
> preferred way would be a hiddev-to-evdev bridge of some kind, right?

You don't need that -- HID drivers already generate evdev events.

> Can somebody point me into the right direction, e.g. to some other
> driver which also works that way?

You can find them by grepping for ABS_MT_ in the drivers/hid/ directory.
hid-3m-pct, hid-magicmouse, hid-mosart, hid-ntrig, hid-quanta and
hid-stratum all generate multitouch events.  Most of them use standard
HID report descriptors; however, hid-magicmouse has to translate input
reports that don't have published descriptors.  Depending on how the
screen behaves, you'll probably want to look more at the other drivers
than hid-magicmouse.

Michael Poole

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

* Re: Preferred way for a multitouch driver?
  2010-04-11 16:41 Preferred way for a multitouch driver? Florian Echtler
  2010-04-11 16:54 ` Michael Poole
@ 2010-04-11 19:02 ` Rafi Rubin
  2010-04-11 20:09   ` Florian Echtler
  1 sibling, 1 reply; 5+ messages in thread
From: Rafi Rubin @ 2010-04-11 19:02 UTC (permalink / raw)
  To: Florian Echtler; +Cc: linux-input, Michael Poole, Stéphane Chatty

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 04/11/10 12:41, Florian Echtler wrote:
> Hello everyone,
> 
> I've just bought a Lenovo S10-3t convertible netbook, and now I'm
> experimenting with the "multitouch" screen (dual-touch, rather). It's
> being recognized as a HID device, and using hid-device-dump, I can
> nicely read the reports of both fingers. There's also some hacks
> floating around which use xf86-input-hidtouch, but AFAICT that doesn't
> do any kind of multitouch.
> 
> From lurking here on the list, I've gathered that the evdev interface by
> now fully supports all kinds of multitouch events, so I guess the
> preferred way would be a hiddev-to-evdev bridge of some kind, right?
> 
> Can somebody point me into the right direction, e.g. to some other
> driver which also works that way?
> 
> Many thanks,
> Florian

I think Stéphane is working on that one.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkvCHMUACgkQwuRiAT9o609ckACgkDYjvF4SN67jn1A1/+DttvF+
xpkAnA2FFlfc6e6UhP7YkTJda4IaOjRY
=Rr6m
-----END PGP SIGNATURE-----
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: Preferred way for a multitouch driver?
  2010-04-11 19:02 ` Rafi Rubin
@ 2010-04-11 20:09   ` Florian Echtler
  2010-04-11 20:51     ` Stéphane Chatty
  0 siblings, 1 reply; 5+ messages in thread
From: Florian Echtler @ 2010-04-11 20:09 UTC (permalink / raw)
  To: Rafi Rubin; +Cc: linux-input, Michael Poole, Stéphane Chatty

> > I've just bought a Lenovo S10-3t convertible netbook, and now I'm
> > experimenting with the "multitouch" screen (dual-touch, rather).
> > Can somebody point me into the right direction, e.g. to some other
> > driver which also works that way?
> I think Stéphane is working on that one.
Is there an alpha version around? I'd be happy to test.

Florian
-- 
0666 - Filemode of the Beast

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: Preferred way for a multitouch driver?
  2010-04-11 20:09   ` Florian Echtler
@ 2010-04-11 20:51     ` Stéphane Chatty
  0 siblings, 0 replies; 5+ messages in thread
From: Stéphane Chatty @ 2010-04-11 20:51 UTC (permalink / raw)
  To: Florian Echtler; +Cc: Rafi Rubin, linux-input, Michael Poole


Le 11 avr. 10 à 22:09, Florian Echtler a écrit :

>>> I've just bought a Lenovo S10-3t convertible netbook, and now I'm
>>> experimenting with the "multitouch" screen (dual-touch, rather).
>>> Can somebody point me into the right direction, e.g. to some other
>>> driver which also works that way?
>> I think Stéphane is working on that one.
> Is there an alpha version around? I'd be happy to test.

Yes, there is. I was testing it with a guy from MeGoo but he had  
trouble compiling and testing the driver so he decided to send me the  
machine. I haven't received it yet though, so I'll be happy if  
someone else can play with me :-)

Florian, I'll send you files and instructions. I would not want to  
pollute the whole list with our attempts.

St.

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2010-04-11 20:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-11 16:41 Preferred way for a multitouch driver? Florian Echtler
2010-04-11 16:54 ` Michael Poole
2010-04-11 19:02 ` Rafi Rubin
2010-04-11 20:09   ` Florian Echtler
2010-04-11 20:51     ` Stéphane Chatty

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).