All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Paul Cercueil <paul@crapouillou.net>
Cc: Laxman Dewangan <ldewangan@nvidia.com>,
	linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
	Maarten ter Huurne <maarten@treewalker.org>
Subject: Re: [PATCH 2/2] Input: gpio_keys - Set ABS params when using axes
Date: Thu, 3 Nov 2016 09:24:01 -0700	[thread overview]
Message-ID: <20161103162401.GC15366@dtor-ws> (raw)
In-Reply-To: <20161101102504.3783-3-paul@crapouillou.net>

On Tue, Nov 01, 2016 at 11:25:04AM +0100, Paul Cercueil wrote:
> The gpio-keys supports the EV_ABS event type, but does not actually
> configure the input device to work with that mode.
> 
> This patch configures the axis corresponding to button->code as being
> in the range [-1,+1]. This makes it possible to use gpio-keys to
> implement a hat (using the ABS_HAT0X /ABS_HAT0Y axes, with two GPIOs
> each with values -1/+1).

What if I am emitting values of 10?

Also, reporting limits on axis is not a requirement, it is simply a
hint. If your userspace refuses axis with unrefined (aka 0) min and max
you need to fix it.

> 
> Signed-off-by: Paul Cercueil <paul@crapouillou.net>
> ---
>  drivers/input/keyboard/gpio_keys.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c
> index 7018c49..1f2850a 100644
> --- a/drivers/input/keyboard/gpio_keys.c
> +++ b/drivers/input/keyboard/gpio_keys.c
> @@ -540,6 +540,9 @@ static int gpio_keys_setup_key(struct platform_device *pdev,
>  
>  	input_set_capability(input, button->type ?: EV_KEY, button->code);
>  
> +	if (button->type == EV_ABS)
> +		input_set_abs_params(input, button->code, -1, 1, 0, 0);
> +
>  	/*
>  	 * Install custom action to cancel release timer and
>  	 * workqueue item.
> -- 
> 2.9.3
> 

Thanks.

-- 
Dmitry

      reply	other threads:[~2016-11-03 16:24 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-01 10:25 [PATCH 0/2] Make gpio-keys usable as a hat Paul Cercueil
2016-11-01 10:25 ` [PATCH 1/2] Input: gpio_keys - Also send release events for ABS codes Paul Cercueil
2016-11-03 16:21   ` Dmitry Torokhov
2016-11-05 11:58     ` Paul Cercueil
2016-11-09  0:09       ` Dmitry Torokhov
2016-11-01 10:25 ` [PATCH 2/2] Input: gpio_keys - Set ABS params when using axes Paul Cercueil
2016-11-03 16:24   ` Dmitry Torokhov [this message]

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=20161103162401.GC15366@dtor-ws \
    --to=dmitry.torokhov@gmail.com \
    --cc=ldewangan@nvidia.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten@treewalker.org \
    --cc=paul@crapouillou.net \
    /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.