<div dir="ltr">andreas,<div><br></div><div><span style="font-family:arial,sans-serif;font-size:13px"><span style="background-color:rgb(255,255,0)">Driver "evdev" </span>maps somehow to the  <span style="background-color:rgb(255,255,0)">Atmel touchpad (kernel driver)</span></span></div><div>Do you have atmel touchpad driver sources. is it available in any repo/github?</div><div><font face="arial, sans-serif">Did you add any specific .conf in /usr/share/X11/xorg.conf.d/ for atmel touchpad</font></div><div><font face="arial, sans-serif"><br></font><div class="gmail_extra"><div><div class="gmail_signature"><div dir="ltr">Regards,<div>vinay simha</div></div></div></div>
<br><div class="gmail_quote">On Thu, Nov 13, 2014 at 5:00 PM, Andreas Färber <span dir="ltr"><<a href="mailto:afaerber@suse.de" target="_blank">afaerber@suse.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Vinay,<br>
<br>
The touchpad is in fact I2C-connected on HP Chromebook 11 - that's an<br>
Exynos5 based ARM netbook, not a regular notebook.<br>
<br>
I noticed that openSUSE 13.2 ships the following default configuration:<br>
<br>
Section "InputClass"<br>
        Identifier "evdev pointer catchall"<br>
        MatchIsPointer "on"<br>
        MatchDevicePath "/dev/input/event*"<br>
        Driver "evdev"<br>
EndSection<br>
<br>
Section "InputClass"<br>
        Identifier "evdev keyboard catchall"<br>
        MatchIsKeyboard "on"<br>
        MatchDevicePath "/dev/input/event*"<br>
        Driver "evdev"<br>
EndSection<br>
<br>
Section "InputClass"<br>
        Identifier "evdev touchpad catchall"<br>
        MatchIsTouchpad "on"<br>
        MatchDevicePath "/dev/input/event*"<br>
        Driver "evdev"<br>
EndSection<br>
<br>
Section "InputClass"<br>
        Identifier "evdev tablet catchall"<br>
        MatchIsTablet "on"<br>
        MatchDevicePath "/dev/input/event*"<br>
        Driver "evdev"<br>
EndSection<br>
<br>
Section "InputClass"<br>
        Identifier "evdev touchscreen catchall"<br>
        MatchIsTouchscreen "on"<br>
        MatchDevicePath "/dev/input/event*"<br>
        Driver "evdev"<br>
EndSection<br>
<br>
Cheers,<br>
Andreas<br>
<br>
Am 13.11.2014 um 12:00 schrieb vinay simha:<br>
<span class="">> Andreas,<br>
><br>
> In hp chromebook the way touchscreen is added would be different, it<br>
> will be either USB(hid) based touchscreen. In general laptops will have<br>
> usb(hid) touchscreens. Default linux drivers and x11 supports that.<br>
><br>
> For mobiles it will be having mipi dsi(for display) interfaces and uses<br>
> i2c/spi interface for touchscreen. Android have it's own framework to<br>
> handle the touchscreens.<br>
><br>
> Regards,<br>
> vinay simha<br>
><br>
> On Wed, Nov 12, 2014 at 9:18 PM, vinay simha<br>
> <<a href="mailto:vinaysimha@inforcecomputing.com">vinaysimha@inforcecomputing.com</a><br>
</span><div><div class="h5">> <mailto:<a href="mailto:vinaysimha@inforcecomputing.com">vinaysimha@inforcecomputing.com</a>>> wrote:<br>
><br>
>     added the respective driver of himax controller(based on i2c), to<br>
>     link this with x11 added the 69-himaxtouch.conf<br>
><br>
>     root@linaro-gnome:~# more /usr/share/X11/xorg.conf.d/69-himaxtouch.conf<br>
>     Section "InputClass"<br>
>               Identifier  "himax-touchscreen"<br>
>               Driver      "evdev"<br>
>               #Driver      "himax8526a"<br>
>               Option      "Type" "finger"<br>
>               Option      "Device" "/dev/input/event1"<br>
>               Option      "ScreenNo" "0"<br>
>               Option      "MinimumXPosition" "0"<br>
>               Option      "MaximumXPosition" "480"<br>
>               Option      "MinimumYPosition" "0"<br>
>               Option      "MaximumYPosition" "864"<br>
>               Option      "Calibration" "0 480 0 864"<br>
>     EndSection<br>
><br>
>     When i touch the screen(cursor doesnt move accordigly) dmesg logs<br>
>     pmic8xxx_pwrkey: Attempted to start touch without x/y (driver bug)<br>
><br>
>     i do get responses to "cat /dev/input/event1"<br>
>     cat /proc/bus/input/devices<br>
><br>
>     I: Bus=0000 Vendor=0000 Product=0000 Version=0000<br>
>     N: Name="himax-touchscreen"<br>
>     P: Phys=<br>
>     S: Sysfs=/devices/virtual/input/input1<br>
>     U: Uniq=<br>
>     H: Handlers=event1 cpufreq<br>
>     B: PROP=2<br>
>     B: EV=b<br>
>     B: KEY=400 0 0 0 0 0 0 0 0 0 0<br>
>     B: ABS=2650000 10000000<br>
><br>
><br>
>     Regards,<br>
>     vinay simha<br>
><br>
>     On Wed, Nov 12, 2014 at 8:41 PM, Rob Clark <<a href="mailto:robdclark@gmail.com">robdclark@gmail.com</a><br>
</div></div><span class="">>     <mailto:<a href="mailto:robdclark@gmail.com">robdclark@gmail.com</a>>> wrote:<br>
><br>
>         I don't really remember myself, but maybe someone else does.<br>
>         But IIRC<br>
>         the touchpad had some goofy userspace driver.<br>
><br>
>         I'm not an input expert, but I think if the touchscreen driver used<br>
>         normal kernel evdev stuff, x11 should automatically detect it.  At<br>
>         least on desktop/x86 that stuff should be plug-and-play.<br>
><br>
>         BR,<br>
>         -R<br>
><br>
>         On Wed, Nov 12, 2014 at 4:32 AM, vinay simha<br>
>         <<a href="mailto:vinaysimha@inforcecomputing.com">vinaysimha@inforcecomputing.com</a><br>
</span><span class="">>         <mailto:<a href="mailto:vinaysimha@inforcecomputing.com">vinaysimha@inforcecomputing.com</a>>> wrote:<br>
>         > HI,<br>
>         ><br>
>         > What is the .conf used for touchscreen driver  for hp-touchpad ,<br>
>         > usr/share/X11/xorg.conf.d/<br>
>         ><br>
>         > Is there any separate .conf used in /etc/X11/xorg.conf.d/ for<br>
>         hp-touchpad<br>
>         ><br>
>         > Regards,<br>
>         > vinay simha<br>
>         ><br>
>         > _______________________________________________<br>
>         > Freedreno mailing list<br>
>         > <a href="mailto:Freedreno@lists.freedesktop.org">Freedreno@lists.freedesktop.org</a><br>
</span>>         <mailto:<a href="mailto:Freedreno@lists.freedesktop.org">Freedreno@lists.freedesktop.org</a>><br>
>         > <a href="http://lists.freedesktop.org/mailman/listinfo/freedreno" target="_blank">http://lists.freedesktop.org/mailman/listinfo/freedreno</a><br>
<div class=""><div class="h5">>         ><br>
><br>
><br>
><br>
<br>
<br>
--<br>
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany<br>
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 21284 AG Nürnberg<br>
</div></div></blockquote></div><br></div></div></div>