From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Oleksandr Andrushchenko <andr2000@gmail.com>
Cc: xen-devel@lists.xenproject.org, linux-kernel@vger.kernel.org,
joculator@gmail.com, al1img@gmail.com, vlad.babchuk@gmail.com,
andrii.anisov@gmail.com, olekstysh@gmail.com,
Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
Subject: Re: [PATCH v1] xen/input: add multi-touch support
Date: Thu, 29 Jun 2017 01:17:19 -0700 [thread overview]
Message-ID: <20170629081719.GA21557@dtor-ws> (raw)
In-Reply-To: <1498198195-12293-1-git-send-email-andr2000@gmail.com>
Hi Oleksandr,
On Fri, Jun 23, 2017 at 09:09:55AM +0300, Oleksandr Andrushchenko wrote:
> + switch (event->mtouch.event_type) {
> + case XENKBD_MT_EV_DOWN:
> + input_mt_report_slot_state(dev, MT_TOOL_FINGER,
> + true);
> + input_event(dev, EV_ABS, ABS_MT_POSITION_X,
> + event->mtouch.u.pos.abs_x);
> + input_event(dev, EV_ABS, ABS_MT_POSITION_Y,
> + event->mtouch.u.pos.abs_y);
> + input_event(dev, EV_ABS, ABS_X,
> + event->mtouch.u.pos.abs_x);
> + input_event(dev, EV_ABS, ABS_Y,
> + event->mtouch.u.pos.abs_y);
I was looking at this and realized that this breaks the single touch
emulation for MT interface: for ST you are supposed to report the oldest
contact, here you report data for all of them. Luckily
input_mt_report_pointer_emulation() that is called as part of
input_mt_sync_frame() reports the correct ABS_X/ABS_Y data and fixes
that for you.
We should simply remove reporting ABS_X/ABS_Y here and in
XENKBD_MT_EV_MOTION as well.
> +
> + input_set_capability(mtouch, EV_KEY, BTN_TOUCH);
> + input_set_abs_params(mtouch, ABS_X,
> + 0, width, 0, 0);
> + input_set_abs_params(mtouch, ABS_Y,
> + 0, height, 0, 0);
> + input_set_abs_params(mtouch, ABS_PRESSURE,
> + 0, 255, 0, 0);
This is done automatically by input_mt_init_slots() when called with
INPUT_MT_DIRECT (as in your case) or INPUT_MT_POINTER, so this can be
removed as well.
Does the patch below (on top of yours) work for you?
Thanks.
--
Dmitry
Input: xen-kbdfront - MT support fixups
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
drivers/input/misc/xen-kbdfront.c | 210 +++++++++++++++++++------------------
1 file changed, 109 insertions(+), 101 deletions(-)
diff --git a/drivers/input/misc/xen-kbdfront.c b/drivers/input/misc/xen-kbdfront.c
index 9fa005038773..fa130e7b734c 100644
--- a/drivers/input/misc/xen-kbdfront.c
+++ b/drivers/input/misc/xen-kbdfront.c
@@ -60,6 +60,112 @@ static void xenkbd_disconnect_backend(struct xenkbd_info *);
* to do that.
*/
+static void xenkbd_handle_motion_event(struct xenkbd_info *info,
+ struct xenkbd_motion *motion)
+{
+ input_report_rel(info->ptr, REL_X, motion->rel_x);
+ input_report_rel(info->ptr, REL_Y, motion->rel_y);
+ if (motion->rel_z)
+ input_report_rel(info->ptr, REL_WHEEL, -motion->rel_z);
+ input_sync(info->ptr);
+}
+
+static void xenkbd_handle_position_event(struct xenkbd_info *info,
+ struct xenkbd_position *pos)
+{
+ input_report_abs(info->ptr, ABS_X, pos->abs_x);
+ input_report_abs(info->ptr, ABS_Y, pos->abs_y);
+ if (pos->rel_z)
+ input_report_rel(info->ptr, REL_WHEEL, -pos->rel_z);
+ input_sync(info->ptr);
+}
+
+static void xenkbd_handle_key_event(struct xenkbd_info *info,
+ struct xenkbd_key *key)
+{
+ struct input_dev *dev;
+
+ if (test_bit(key->keycode, info->ptr->keybit)) {
+ dev = info->ptr;
+ } else if (test_bit(key->keycode, info->kbd->keybit)) {
+ dev = info->kbd;
+ } else {
+ pr_warn("unhandled keycode 0x%x\n", key->keycode);
+ return;
+ }
+
+ input_report_key(dev, key->keycode, key->pressed);
+ input_sync(dev);
+}
+
+static void xenkbd_handle_mt_event(struct xenkbd_info *info,
+ struct xenkbd_mtouch *mtouch)
+{
+ if (unlikely(!info->mtouch))
+ return;
+
+ if (mtouch->contact_id != info->mtouch_cur_contact_id) {
+ info->mtouch_cur_contact_id = mtouch->contact_id;
+ input_mt_slot(info->mtouch, mtouch->contact_id);
+ }
+
+ switch (mtouch->event_type) {
+ case XENKBD_MT_EV_DOWN:
+ input_mt_report_slot_state(info->mtouch, MT_TOOL_FINGER, true);
+ /* fall through */
+
+ case XENKBD_MT_EV_MOTION:
+ input_report_abs(info->mtouch, ABS_MT_POSITION_X,
+ mtouch->u.pos.abs_x);
+ input_report_abs(info->mtouch, ABS_MT_POSITION_Y,
+ mtouch->u.pos.abs_y);
+ break;
+
+ case XENKBD_MT_EV_SHAPE:
+ input_report_abs(info->mtouch, ABS_MT_TOUCH_MAJOR,
+ mtouch->u.shape.major);
+ input_report_abs(info->mtouch, ABS_MT_TOUCH_MINOR,
+ mtouch->u.shape.minor);
+ break;
+
+ case XENKBD_MT_EV_ORIENT:
+ input_report_abs(info->mtouch, ABS_MT_ORIENTATION,
+ mtouch->u.orientation);
+ break;
+
+ case XENKBD_MT_EV_UP:
+ input_mt_report_slot_state(info->mtouch, MT_TOOL_FINGER, false);
+ break;
+
+ case XENKBD_MT_EV_SYN:
+ input_mt_sync_frame(info->mtouch);
+ input_sync(info->mtouch);
+ break;
+ }
+}
+
+static void xenkbd_handle_event(struct xenkbd_info *info,
+ union xenkbd_in_event *event)
+{
+ switch (event->type) {
+ case XENKBD_TYPE_MOTION:
+ xenkbd_handle_motion_event(info, &event->motion);
+ break;
+
+ case XENKBD_TYPE_KEY:
+ xenkbd_handle_key_event(info, &event->key);
+ break;
+
+ case XENKBD_TYPE_POS:
+ xenkbd_handle_position_event(info, &event->pos);
+ break;
+
+ case XENKBD_TYPE_MTOUCH:
+ xenkbd_handle_mt_event(info, &event->mtouch);
+ break;
+ }
+}
+
static irqreturn_t input_handler(int rq, void *dev_id)
{
struct xenkbd_info *info = dev_id;
@@ -70,98 +176,8 @@ static irqreturn_t input_handler(int rq, void *dev_id)
if (prod == page->in_cons)
return IRQ_HANDLED;
rmb(); /* ensure we see ring contents up to prod */
- for (cons = page->in_cons; cons != prod; cons++) {
- union xenkbd_in_event *event;
- struct input_dev *dev;
- event = &XENKBD_IN_RING_REF(page, cons);
-
- dev = info->ptr;
- switch (event->type) {
- case XENKBD_TYPE_MOTION:
- input_report_rel(dev, REL_X, event->motion.rel_x);
- input_report_rel(dev, REL_Y, event->motion.rel_y);
- if (event->motion.rel_z)
- input_report_rel(dev, REL_WHEEL,
- -event->motion.rel_z);
- break;
- case XENKBD_TYPE_KEY:
- dev = NULL;
- if (test_bit(event->key.keycode, info->kbd->keybit))
- dev = info->kbd;
- if (test_bit(event->key.keycode, info->ptr->keybit))
- dev = info->ptr;
- if (dev)
- input_report_key(dev, event->key.keycode,
- event->key.pressed);
- else
- pr_warn("unhandled keycode 0x%x\n",
- event->key.keycode);
- break;
- case XENKBD_TYPE_POS:
- input_report_abs(dev, ABS_X, event->pos.abs_x);
- input_report_abs(dev, ABS_Y, event->pos.abs_y);
- if (event->pos.rel_z)
- input_report_rel(dev, REL_WHEEL,
- -event->pos.rel_z);
- break;
- case XENKBD_TYPE_MTOUCH:
- dev = info->mtouch;
- if (unlikely(!dev))
- break;
- if (event->mtouch.contact_id !=
- info->mtouch_cur_contact_id) {
- info->mtouch_cur_contact_id =
- event->mtouch.contact_id;
- input_mt_slot(dev, event->mtouch.contact_id);
- }
- switch (event->mtouch.event_type) {
- case XENKBD_MT_EV_DOWN:
- input_mt_report_slot_state(dev, MT_TOOL_FINGER,
- true);
- input_event(dev, EV_ABS, ABS_MT_POSITION_X,
- event->mtouch.u.pos.abs_x);
- input_event(dev, EV_ABS, ABS_MT_POSITION_Y,
- event->mtouch.u.pos.abs_y);
- input_event(dev, EV_ABS, ABS_X,
- event->mtouch.u.pos.abs_x);
- input_event(dev, EV_ABS, ABS_Y,
- event->mtouch.u.pos.abs_y);
- break;
- case XENKBD_MT_EV_UP:
- input_mt_report_slot_state(dev, MT_TOOL_FINGER,
- false);
- break;
- case XENKBD_MT_EV_MOTION:
- input_event(dev, EV_ABS, ABS_MT_POSITION_X,
- event->mtouch.u.pos.abs_x);
- input_event(dev, EV_ABS, ABS_MT_POSITION_Y,
- event->mtouch.u.pos.abs_y);
- input_event(dev, EV_ABS, ABS_X,
- event->mtouch.u.pos.abs_x);
- input_event(dev, EV_ABS, ABS_Y,
- event->mtouch.u.pos.abs_y);
- break;
- case XENKBD_MT_EV_SYN:
- input_mt_sync_frame(dev);
- break;
- case XENKBD_MT_EV_SHAPE:
- input_event(dev, EV_ABS, ABS_MT_TOUCH_MAJOR,
- event->mtouch.u.shape.major);
- input_event(dev, EV_ABS, ABS_MT_TOUCH_MINOR,
- event->mtouch.u.shape.minor);
- break;
- case XENKBD_MT_EV_ORIENT:
- input_event(dev, EV_ABS, ABS_MT_ORIENTATION,
- event->mtouch.u.orientation);
- break;
- }
- /* only report syn when requested */
- if (event->mtouch.event_type != XENKBD_MT_EV_SYN)
- dev = NULL;
- }
- if (dev)
- input_sync(dev);
- }
+ for (cons = page->in_cons; cons != prod; cons++)
+ xenkbd_handle_event(info, &XENKBD_IN_RING_REF(page, cons));
mb(); /* ensure we got ring contents */
page->in_cons = cons;
notify_remote_via_irq(info->irq);
@@ -216,7 +232,7 @@ static int xenkbd_probe(struct xenbus_device *dev,
ret = xenbus_write(XBT_NIL, dev->nodename,
XENKBD_FIELD_REQ_MTOUCH, "1");
if (ret) {
- pr_warning("xenkbd: can't request multi-touch");
+ pr_warn("xenkbd: can't request multi-touch");
touch = 0;
}
}
@@ -301,14 +317,6 @@ static int xenkbd_probe(struct xenbus_device *dev,
mtouch->id.vendor = 0x5853;
mtouch->id.product = 0xfffd;
- input_set_capability(mtouch, EV_KEY, BTN_TOUCH);
- input_set_abs_params(mtouch, ABS_X,
- 0, width, 0, 0);
- input_set_abs_params(mtouch, ABS_Y,
- 0, height, 0, 0);
- input_set_abs_params(mtouch, ABS_PRESSURE,
- 0, 255, 0, 0);
-
input_set_abs_params(mtouch, ABS_MT_TOUCH_MAJOR,
0, 255, 0, 0);
input_set_abs_params(mtouch, ABS_MT_POSITION_X,
next prev parent reply other threads:[~2017-06-29 8:17 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-23 6:09 [PATCH v1] xen/input: add multi-touch support Oleksandr Andrushchenko
2017-06-29 5:52 ` Oleksandr Andrushchenko
2017-06-29 5:52 ` Oleksandr Andrushchenko
2017-06-29 8:17 ` Dmitry Torokhov [this message]
2017-06-29 18:40 ` Oleksandr Andrushchenko
2017-06-29 18:40 ` Oleksandr Andrushchenko
2017-06-29 19:24 ` Dmitry Torokhov
2017-06-30 7:41 ` Oleksandr Andrushchenko
2017-06-30 7:41 ` Oleksandr Andrushchenko
2017-06-29 19:24 ` Dmitry Torokhov
2017-06-29 8:17 ` Dmitry Torokhov
-- strict thread matches above, loose matches on Subject: below --
2017-06-23 6:09 Oleksandr Andrushchenko
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=20170629081719.GA21557@dtor-ws \
--to=dmitry.torokhov@gmail.com \
--cc=al1img@gmail.com \
--cc=andr2000@gmail.com \
--cc=andrii.anisov@gmail.com \
--cc=joculator@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=oleksandr_andrushchenko@epam.com \
--cc=olekstysh@gmail.com \
--cc=vlad.babchuk@gmail.com \
--cc=xen-devel@lists.xenproject.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.