* [PATCH] HID: magicmouse: report last touch up
@ 2010-07-05 13:57 Chase Douglas
2010-07-05 14:10 ` Michael Poole
0 siblings, 1 reply; 3+ messages in thread
From: Chase Douglas @ 2010-07-05 13:57 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Michael Poole, linux-input
The evdev multitouch protocol requires that a last MT sync event must be
sent after all touches are up. This change adds the last MT sync event
to the hid-magicmouse driver.
Also, don't send events when a touch leaves.
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
---
drivers/hid/hid-magicmouse.c | 22 ++++++++++++++++++++--
1 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c
index 0b89c1c..ee78787 100644
--- a/drivers/hid/hid-magicmouse.c
+++ b/drivers/hid/hid-magicmouse.c
@@ -98,6 +98,7 @@ struct magicmouse_sc {
short scroll_x;
short scroll_y;
u8 size;
+ u8 down;
} touches[16];
int tracking_ids[16];
};
@@ -170,6 +171,7 @@ static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tda
int id = (misc >> 6) & 15;
int x = x_y << 12 >> 20;
int y = -(x_y >> 20);
+ int down = (tdata[7] & TOUCH_STATE_MASK) != TOUCH_STATE_NONE;
/* Store tracking ID and other fields. */
msc->tracking_ids[raw_id] = id;
@@ -221,9 +223,11 @@ static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tda
}
/* Generate the input events for this touch. */
- if (report_touches) {
+ if (report_touches && down) {
int orientation = (misc >> 10) - 32;
+ msc->touches[id].down = 1;
+
input_report_abs(input, ABS_MT_TRACKING_ID, id);
input_report_abs(input, ABS_MT_TOUCH_MAJOR, tdata[3]);
input_report_abs(input, ABS_MT_TOUCH_MINOR, tdata[4]);
@@ -243,7 +247,7 @@ static int magicmouse_raw_event(struct hid_device *hdev,
{
struct magicmouse_sc *msc = hid_get_drvdata(hdev);
struct input_dev *input = msc->input;
- int x, y, ts, ii, clicks;
+ int x, y, ts, ii, clicks, last_up;
switch (data[0]) {
case 0x10:
@@ -263,6 +267,20 @@ static int magicmouse_raw_event(struct hid_device *hdev,
msc->ntouches = (size - 6) / 8;
for (ii = 0; ii < msc->ntouches; ii++)
magicmouse_emit_touch(msc, ii, data + ii * 8 + 6);
+
+ if (report_touches) {
+ last_up = 1;
+ for (ii = 0; ii < ARRAY_SIZE(msc->touches); ii++) {
+ if (msc->touches[ii].down) {
+ last_up = 0;
+ msc->touches[ii].down = 0;
+ }
+ }
+ if (last_up) {
+ input_mt_sync(input);
+ }
+ }
+
/* When emulating three-button mode, it is important
* to have the current touch information before
* generating a click event.
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] HID: magicmouse: report last touch up
2010-07-05 13:57 [PATCH] HID: magicmouse: report last touch up Chase Douglas
@ 2010-07-05 14:10 ` Michael Poole
2010-07-11 21:03 ` Jiri Kosina
0 siblings, 1 reply; 3+ messages in thread
From: Michael Poole @ 2010-07-05 14:10 UTC (permalink / raw)
To: Chase Douglas; +Cc: Jiri Kosina, linux-input
Chase Douglas writes:
> The evdev multitouch protocol requires that a last MT sync event must be
> sent after all touches are up. This change adds the last MT sync event
> to the hid-magicmouse driver.
>
> Also, don't send events when a touch leaves.
>
> Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
Acked-by: Michael Poole <mdpoole@troilus.org>
Thanks for fixing these up!
> ---
> drivers/hid/hid-magicmouse.c | 22 ++++++++++++++++++++--
> 1 files changed, 20 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c
> index 0b89c1c..ee78787 100644
> --- a/drivers/hid/hid-magicmouse.c
> +++ b/drivers/hid/hid-magicmouse.c
> @@ -98,6 +98,7 @@ struct magicmouse_sc {
> short scroll_x;
> short scroll_y;
> u8 size;
> + u8 down;
> } touches[16];
> int tracking_ids[16];
> };
> @@ -170,6 +171,7 @@ static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tda
> int id = (misc >> 6) & 15;
> int x = x_y << 12 >> 20;
> int y = -(x_y >> 20);
> + int down = (tdata[7] & TOUCH_STATE_MASK) != TOUCH_STATE_NONE;
>
> /* Store tracking ID and other fields. */
> msc->tracking_ids[raw_id] = id;
> @@ -221,9 +223,11 @@ static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tda
> }
>
> /* Generate the input events for this touch. */
> - if (report_touches) {
> + if (report_touches && down) {
> int orientation = (misc >> 10) - 32;
>
> + msc->touches[id].down = 1;
> +
> input_report_abs(input, ABS_MT_TRACKING_ID, id);
> input_report_abs(input, ABS_MT_TOUCH_MAJOR, tdata[3]);
> input_report_abs(input, ABS_MT_TOUCH_MINOR, tdata[4]);
> @@ -243,7 +247,7 @@ static int magicmouse_raw_event(struct hid_device *hdev,
> {
> struct magicmouse_sc *msc = hid_get_drvdata(hdev);
> struct input_dev *input = msc->input;
> - int x, y, ts, ii, clicks;
> + int x, y, ts, ii, clicks, last_up;
>
> switch (data[0]) {
> case 0x10:
> @@ -263,6 +267,20 @@ static int magicmouse_raw_event(struct hid_device *hdev,
> msc->ntouches = (size - 6) / 8;
> for (ii = 0; ii < msc->ntouches; ii++)
> magicmouse_emit_touch(msc, ii, data + ii * 8 + 6);
> +
> + if (report_touches) {
> + last_up = 1;
> + for (ii = 0; ii < ARRAY_SIZE(msc->touches); ii++) {
> + if (msc->touches[ii].down) {
> + last_up = 0;
> + msc->touches[ii].down = 0;
> + }
> + }
> + if (last_up) {
> + input_mt_sync(input);
> + }
> + }
> +
> /* When emulating three-button mode, it is important
> * to have the current touch information before
> * generating a click event.
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] HID: magicmouse: report last touch up
2010-07-05 14:10 ` Michael Poole
@ 2010-07-11 21:03 ` Jiri Kosina
0 siblings, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2010-07-11 21:03 UTC (permalink / raw)
To: Michael Poole; +Cc: Chase Douglas, linux-input
On Mon, 5 Jul 2010, Michael Poole wrote:
> Chase Douglas writes:
>
> > The evdev multitouch protocol requires that a last MT sync event must be
> > sent after all touches are up. This change adds the last MT sync event
> > to the hid-magicmouse driver.
> >
> > Also, don't send events when a touch leaves.
> >
> > Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
>
> Acked-by: Michael Poole <mdpoole@troilus.org>
>
> Thanks for fixing these up!
Thanks guys, it's now in the magicmouse branch.
--
Jiri Kosina
SUSE Labs, Novell Inc.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-07-11 21:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-05 13:57 [PATCH] HID: magicmouse: report last touch up Chase Douglas
2010-07-05 14:10 ` Michael Poole
2010-07-11 21:03 ` Jiri Kosina
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.