All of lore.kernel.org
 help / color / mirror / Atom feed
From: Antonio Ospite <ospite@studenti.unina.it>
To: simon@mungewell.org
Cc: linux-input@vger.kernel.org
Subject: Re: HID joystick - Axis 11 non operational.
Date: Tue, 7 Jun 2011 12:39:31 +0200	[thread overview]
Message-ID: <20110607123931.2267a703.ospite@studenti.unina.it> (raw)
In-Reply-To: <20110604224546.7ebb8939.ospite@studenti.unina.it>

[-- Attachment #1: Type: text/plain, Size: 2648 bytes --]

On Sat, 4 Jun 2011 22:45:46 +0200
Antonio Ospite <ospite@studenti.unina.it> wrote:

> On Fri, 3 Jun 2011 16:15:11 +0200
> Antonio Ospite <ospite@studenti.unina.it> wrote:
> 
> > I confirm that the axis for Dpad-left (usage->code == 0x2f IINM) of the
> > Sixaxis looks like it is not working. I too can see the data on hidraw
> > device but not on the joystick or even the event device, so it may be
> > below the joystick layer.
> >
> 
> OK found something: 0x2f is ABS_MT_SLOT,
> http://lxr.linux.no/linux+*/include/linux/input.h#L773
> 
> And in input.c::input_handle_abs_event() this case is handled in a
> special way:
> http://lxr.linux.no/#linux+v2.6.39/drivers/input/input.c#L172
> 
> This little change improves things a little bit, but the pressure event is
> now reported twice, once with the actual value and once with 0, you can test
> with:
> 
>  $ evtest /dev/input/eventX | \
>    egrep -v 'code (0|1|2|5|48|49|50|51|52|53|54|55|56|57|58|58|59)|Report Sync'
> 

The second ABS_MT_SLOT event is fired up here:
http://lxr.linux.no/#linux+v2.6.39/drivers/input/input.c#L210

when I get code == 0x30 (ABS_MT_TOUCH_MAJOR, I am still not sure
where from), with the following hack I can make axis 11 work again but I
have no idea if I am broking MultiTouch devices, anyone?

Index: linux-2.6/drivers/input/input.c
===================================================================
--- linux-2.6.orig/drivers/input/input.c
+++ linux-2.6/drivers/input/input.c
@@ -169,7 +169,7 @@
        bool is_mt_event;
        int *pold;
 
-       if (code == ABS_MT_SLOT) {
+       if (code == ABS_MT_SLOT && dev->mtsize > 0) {
                /*
                 * "Stage" the event; we'll flush it later, when we
                 * get actual touch data.
@@ -205,7 +205,8 @@
        }
 
        /* Flush pending "slot" event */
-       if (is_mt_event && dev->slot != input_abs_get_val(dev, ABS_MT_SLOT)) {
+       if (is_mt_event && dev->slot != input_abs_get_val(dev, ABS_MT_SLOT) &&
+           dev->mtsize > 0 ) {
                input_abs_set_val(dev, ABS_MT_SLOT, dev->slot);
                input_pass_event(dev, EV_ABS, ABS_MT_SLOT, dev->slot);
        }


Simon, if that works for you too, I can send an RFC patch out, but how should
we motivate it? The Sixaxis is sending out MT events even if it is not a MT
device...

Regards,
   Antonio

-- 
Antonio Ospite
http://ao2.it

PGP public key ID: 0x4553B001

A: Because it messes up the order in which people normally read text.
   See http://en.wikipedia.org/wiki/Posting_style
Q: Why is top-posting such a bad thing?

[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

  reply	other threads:[~2011-06-07 10:39 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-01 19:25 HID joystick - Axis 11 non operational simon
2011-06-03 14:15 ` Antonio Ospite
2011-06-03 14:50   ` simon
2011-06-04 20:45   ` Antonio Ospite
2011-06-07 10:39     ` Antonio Ospite [this message]
2011-06-07 16:35       ` simon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110607123931.2267a703.ospite@studenti.unina.it \
    --to=ospite@studenti.unina.it \
    --cc=linux-input@vger.kernel.org \
    --cc=simon@mungewell.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.