All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Pat Campbell <plc@novell.com>
Cc: xen-devel@lists.xensource.com
Subject: Re: PVFB wheel events (z-axis)
Date: Mon, 25 Feb 2008 14:33:44 +0100	[thread overview]
Message-ID: <87bq656tzb.fsf@pike.pond.sub.org> (raw)
In-Reply-To: <47C0287F.5070901@novell.com> (Pat Campbell's message of "Sat\, 23 Feb 2008 07\:06\:55 -0700")

Pat Campbell <plc@novell.com> writes:

> Markus Armbruster wrote:
>> I got questions on this changeset:
>>
>>     changeset:   354:c3ff0b26f664
>>     date:        Mon Dec 10 13:52:47 2007 +0000
>>
>>     Decode mouse event packet dz value and passes it as a wheel event into
>>     the input stream.
>>
>>     Signed-off-by: Pat Campbell <plc@novell.com>
>>
>>     diff -r 7232a025140f -r c3ff0b26f664 drivers/xen/fbfront/xenkbd.c
>>     --- a/drivers/xen/fbfront/xenkbd.c	Mon Dec 10 13:51:57 2007 +0000
>>     +++ b/drivers/xen/fbfront/xenkbd.c	Mon Dec 10 13:52:47 2007 +0000
>>     @@ -64,8 +64,13 @@ static irqreturn_t input_handler(int rq,
>>                     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 == 1 || event->motion.rel_z == -1 ) {
>>     +				input_report_rel(dev, REL_WHEEL, 0 - event->motion.rel_z);
>>     +			}           
>>     +			else {
>>     +				input_report_rel(dev, REL_X, event->motion.rel_x);
>>     +				input_report_rel(dev, REL_Y, event->motion.rel_y);
>>     +			}
>>
>> I don't understand the conditional.  Why is rel_z to be used *only*
>> when it's 1 or -1, and why are rel_x and rel_y to be used *only* when
>> rel_z isn't?  That sure is a weird protocol, and it isn't documented
>> anywhere...
>>   
> In my testing I never saw a case where the rel_x and rel_y were not zero
> or the abs_x and abs_y changed when a  z event came thru.   A small
> attempt to not flood the input stream with redundant data. 

Assuming conditions you observed in your tests will hold elsehwere in
space or time is calling for trouble :)

> Probably for clarity should have been:  (same for the abs case)
>    if (event->motion.rel_z != 0)
>        input_report_rel(dev, REL_WHEEL, 0 - event->motion.rel_z);
>    input_report_rel(dev, REL_X, event->motion.rel_x);
>    input_report_rel(dev, REL_Y, event->motion.rel_y);

Why use REL_WHEEL and not REL_Z?

Why suppress zero Z-axis motion, but not X/Y-axis?

>>                             break;
>>                     case XENKBD_TYPE_KEY:
>>                             dev = NULL;
>>     @@ -81,8 +86,13 @@ static irqreturn_t input_handler(int rq,
>>                                            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.abs_z == 1 || event->pos.abs_z == -1 ) {
>>     +				input_report_rel(dev, REL_WHEEL, 0 - event->pos.abs_z);
>>     +			}
>>     +			else {
>>     +				input_report_abs(dev, ABS_X, event->pos.abs_x);
>>     +				input_report_abs(dev, ABS_Y, event->pos.abs_y);
>>     +			}
>>
>> And why isn't this using REL_ABS?
>>   
> I assume you meant to ask why not ABS_WHEEL.  Xorg 6.9 evdev driver does

Yes.

> not decode ABS_WHEEL.  Xorg 7.3 decodes  both REL and ABS WHEEL but
> ABS_WHEEL requires extra xorg.conf input options.   We get greater
> coverage by using REL_WHEEL and reduce the need to edit  xorg.conf.

Okay, that's fair.

[...]

  reply	other threads:[~2008-02-25 13:33 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-22  8:55 PVFB wheel events (z-axis) Markus Armbruster
2008-02-23 14:06 ` Pat Campbell
2008-02-25 13:33   ` Markus Armbruster [this message]
2008-02-25 17:43     ` Pat Campbell
2008-02-27 16:01       ` Markus Armbruster
2008-02-28  9:02         ` Markus Armbruster
2008-02-28 10:35           ` Keir Fraser
2008-02-28 12:59           ` Markus Armbruster
2008-02-28 13:59             ` [PATCH] stubdom [Re: PVFB wheel events (z-axis)] Samuel Thibault

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=87bq656tzb.fsf@pike.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=plc@novell.com \
    --cc=xen-devel@lists.xensource.com \
    /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.