All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Poole <mdpoole@troilus.org>
To: Rantanplan <rantanplanlechien@free.fr>
Cc: linux-input@vger.kernel.org, Jiri Kosina <jkosina@suse.cz>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Stephane Chatty <chatty@enac.fr>
Subject: Re: [PATCH 2/3] HID: suppress the second input for the Apple Magic Mouse.
Date: Tue, 09 Mar 2010 08:06:59 -0500	[thread overview]
Message-ID: <87bpex1w5o.fsf@troilus.org> (raw)
In-Reply-To: <4B963892.9020103@free.fr> (Rantanplan's message of "Tue, 09 Mar 2010 13:01:22 +0100")

Rantanplan <rantanplanlechien@free.fr> writes:

[snip]
> Then I also saw that contrary to the driver I saw before (hid-stantum
> and hid-ntrig) the hid-magicmouse uses raw event instead of higher
> level events. I thought it was not very clear (at least for me as I do
> not speak very well bit fields) and I started to write a work-around.

That was mostly a code compactness issue: It was not clear to me how to
generate an appropriate set of field descriptors for the multi-touch
records, but it looked like it would not be easy.  It is still not clear
to me -- from hid-ntrig, hid-stantum, hid-core and your patch -- how a
variable-length report from the device gets translated to multiple
events for the touch fields.  (The key words there are "to me": I am
probably overlooking something.)

The other notable part of using raw events is that the middle-button
emulation requires watching button state in both the standard mouse
report and the multi-touch report.  Matching button-down and -up events
may be sent in different report types.

> The last point that was worrying me was the line (after the call of
> hid_register_report):
> 'report->size = 6;'
> The driver registered a new report, tells it has an arbitrary size (or
> maybe not?) whereas it has no field initialized.

Six bytes is the minimum length of the touch report -- although now that
I look at it, report->size was meant to count bits.  (I am not sure why
the mouse sometimes decides to send a report with zero touches rather
than the standard mouse report, but it does.)

> So I wrote first a big patch to avoid all the 'problems' listed above.
> I did not send it immediately and I was a little bit overload at work.
> However, when I saw that the driver had been included in the next
> branch of the kernel, I took time to work on the patch again. But, I
> only tried to tackle the problem of the second input device.
>
> To sum up, the advantages of my patch are, I think, the following
> (though I do not want to seem to be competing with Micheal):
> - It's documenting the data the magic mouse sends as the mouse does
> not send the descriptor.
> - It will allow another patch to avoid the use of the raw events
> instead of high level events (don't know if it is really a benefit)
>
> As Micheal said there are huge pitfalls:
> - It heavy regards to its aim
> - I insert fields into the descriptor that I use them later with a
> slightly change in the meaning (some keywords are not well choose and
> the whole meaning is split between the registering of the fields and
> the mapping)
> - coding style (not really a problem though)
> - raw events have the benefits of giving the number of touches into
> the data size, something we don't have with high level events only.
>
>
> Maybe a solution would just be to add a comment documenting the bit
> fields in the data? (as now, most of the problems had been solved by
> the last patch of Michael)

To what end?  User space should see the same data from either approach.
In the kernel, the decoding of the multi-touch reports is in five lines
near the top of magicmouse_emit_touch() and five to seven lines in
magicmouse_raw_event()'s case TOUCH_REPORT_ID.  There are ten known
fields (X, Y, buttons, and six touch fields) in the data, so it seems
hard to do better than ten (sane) lines.  Using some other description
may be easier to find, but I'm not sure it will be much clearer.

Michael

  reply	other threads:[~2010-03-09 13:07 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-08 21:29 [PATCH 2/3] HID: suppress the second input for the Apple Magic Mouse Benjamin Tissoires
2010-03-09  0:33 ` Michael Poole
2010-03-09 12:01   ` Rantanplan
2010-03-09 13:06     ` Michael Poole [this message]
2010-03-15 18:47       ` Benjamin Tissoires

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=87bpex1w5o.fsf@troilus.org \
    --to=mdpoole@troilus.org \
    --cc=chatty@enac.fr \
    --cc=dmitry.torokhov@gmail.com \
    --cc=jkosina@suse.cz \
    --cc=linux-input@vger.kernel.org \
    --cc=rantanplanlechien@free.fr \
    /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.