linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Alexander Levitskiy <sanek@google.com>
Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-doc@vger.kernel.org, "Rob Landley" <rob@landley.net>,
	"Henrik Rydberg" <rydberg@euromail.se>,
	"Arve Hjønnevåg" <arve@android.com>,
	"Stephen Boyd" <sboyd@codeaurora.org>
Subject: Re: [PATCH 001/001] [Input:] Propagate hardware generated event timestamp to evdev.
Date: Fri, 12 Jul 2013 23:44:30 -0700	[thread overview]
Message-ID: <20130713064430.GA20979@core.coreip.homeip.net> (raw)
In-Reply-To: <CAJVTVr=rbkYHD93N4H9ANy1Hsivdd_XFLONXxOBp+TR9LfAyaQ@mail.gmail.com>

Hi Sasha,

On Wed, Jul 10, 2013 at 01:38:00PM -0700, Alexander Levitskiy wrote:
> From: Sasha Levitskiy <sanek@google.com>
> 
> Input: Propagate hardware event timestamp to evdev.
> 
> Convey hardware generated timestamp associated with the current event packet.
> The use of these event codes by hardware drivers is optional.
> Used to reduce jitter and improve velocity tracking in ABS_MT and other timing
> sensitive devices.
> 
> kernel v. 3.4
> 
> Signed-off-by: Sasha Levitskiy <sanek@google.com>
> ---
> diff --git a/Documentation/input/event-codes.txt
> b/Documentation/input/event-codes.txt
> index 53305bd..f0f0e07 100644
> --- a/Documentation/input/event-codes.txt
> +++ b/Documentation/input/event-codes.txt
> @@ -91,6 +91,15 @@ sent in the evdev event stream.
>      event and query the device (using EVIOCG* ioctls) to obtain its
>      current state.
> 
> +* SYN_TIME_SEC, SYN_TIME_NSEC:
> +  - Used to convey hardware timestamp associated with the current
> +    event packet. The use of these event codes by hardware drivers
> +    is optional. If used, the hardware driver should send the timestamp
> +    ahead of any other events associated with this packet. The timestamp
> +    should be adjusted to CLOCK_MONOTONIC base.
> +    This becomes useful for drivers of hardware that handle batching
> +    without involving the main CPU.

We already have MSC_TIMESTAMP (which is in usec), do you really need
nsec resolution?

> +
>  EV_KEY:
>  ----------
>  EV_KEY events take the form KEY_<name> or BTN_<name>. For example,
> KEY_A is used
> diff --git a/Documentation/input/multi-touch-protocol.txt
> b/Documentation/input/multi-touch-protocol.txt
> index 543101c..71af317 100644
> --- a/Documentation/input/multi-touch-protocol.txt
> +++ b/Documentation/input/multi-touch-protocol.txt
> @@ -80,6 +80,10 @@ Userspace can detect that a driver can report more
> total contacts than slots
>  by noting that the largest supported BTN_TOOL_*TAP event is larger than the
>  total number of type B slots reported in the absinfo for the ABS_MT_SLOT axis.
> 
> +Velocity tracking and temporal precision can be improved if device provides
> +exact timestamp for touches reported through SYN_TIME_SEC and SYN_TIME_NSEC.
> +The timestamp should be reported ahead of everything else in the packet.
> +
>  Protocol Example A
>  ------------------
> 
> diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c
> index 41f79be..48baf6f 100644
> --- a/drivers/input/evdev.c
> +++ b/drivers/input/evdev.c
> @@ -37,6 +37,8 @@ struct evdev {
>   struct mutex mutex;
>   struct device dev;
>   bool exist;
> + int hw_ts_sec;
> + int hw_ts_nsec;
>  };
> 
>  struct evdev_client {
> @@ -109,7 +111,20 @@ static void evdev_event(struct input_handle *handle,
>   struct input_event event;
>   ktime_t time_mono, time_real;
> 
> - time_mono = ktime_get();
> + if (type == EV_SYN && code == SYN_TIME_SEC) {
> + evdev->hw_ts_sec = value;
> + return;

Why do you need this special handling? Can you simply have MSC_TIMESTAMP
to be delivered as part of the event packet and use it instead of the
event timestamp if userspace chooses to do so?

Thanks.

-- 
Dmitry

  reply	other threads:[~2013-07-13  6:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-10 20:38 [PATCH 001/001] [Input:] Propagate hardware generated event timestamp to evdev Alexander Levitskiy
2013-07-13  6:44 ` Dmitry Torokhov [this message]
     [not found]   ` <CALDEARgU_qD88ExdufXkTFjaenVEwLC=q3t-RNwRrm4A-mMVZw@mail.gmail.com>
2013-07-16 23:22     ` Michael Wright
2013-07-17 20:31   ` Alexander Levitskiy

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=20130713064430.GA20979@core.coreip.homeip.net \
    --to=dmitry.torokhov@gmail.com \
    --cc=arve@android.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rob@landley.net \
    --cc=rydberg@euromail.se \
    --cc=sanek@google.com \
    --cc=sboyd@codeaurora.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).