linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: Alistair Francis <alistair@alistair23.me>,
	dmitry.torokhov@gmail.com, linux-input@vger.kernel.org,
	linux-imx@nxp.com, kernel@pengutronix.de, pinglinux@gmail.com,
	tatsunosuke.tobita@wacom.com, junkpainting@gmail.com,
	ping.cheng@wacom.com
Cc: alistair23@gmail.com, robh+dt@kernel.org,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH v9 05/11] Input: wacom_i2c - Add support for distance and tilt x/y
Date: Mon, 23 Aug 2021 09:06:59 +0200	[thread overview]
Message-ID: <e3d7b9be-cf0e-7074-3e49-45dbff27ce8d@pengutronix.de> (raw)
In-Reply-To: <20210818154935.1154-6-alistair@alistair23.me>

On 18.08.21 17:49, Alistair Francis wrote:
> Add support for the distance and tilt x/y.
> 
> This is based on the out of tree rM2 driver.
> 
> Signed-off-by: Alistair Francis <alistair@alistair23.me>
> ---
>  drivers/input/touchscreen/wacom_i2c.c | 35 +++++++++++++++++++++++++--
>  1 file changed, 33 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/input/touchscreen/wacom_i2c.c b/drivers/input/touchscreen/wacom_i2c.c
> index 28255c77d426..4d0c19fbada4 100644
> --- a/drivers/input/touchscreen/wacom_i2c.c
> +++ b/drivers/input/touchscreen/wacom_i2c.c

> +	/* Signed */
> +	tilt_x = le16_to_cpup((__le16 *)&data[11]);
> +	tilt_y = le16_to_cpup((__le16 *)&data[13]);
> +
> +	distance = le16_to_cpup((__le16 *)&data[15]);

Use get_unaligned_u16 for all three. The existing code doesn't need to do this,
because with the current struct layout, the array is suitable aligned
for 2 byte accesses. You are accessing data at odd indices though, so you
need to use an unaligned accessor.

Cheers,
Ahmad

> +
>  	if (!wac_i2c->prox)
>  		wac_i2c->tool = (data[3] & 0x0c) ?
>  			BTN_TOOL_RUBBER : BTN_TOOL_PEN;
> @@ -127,6 +151,9 @@ static irqreturn_t wacom_i2c_irq(int irq, void *dev_id)
>  	input_report_abs(input, ABS_X, x);
>  	input_report_abs(input, ABS_Y, y);
>  	input_report_abs(input, ABS_PRESSURE, pressure);
> +	input_report_abs(input, ABS_DISTANCE, distance);
> +	input_report_abs(input, ABS_TILT_X, tilt_x);
> +	input_report_abs(input, ABS_TILT_Y, tilt_y);
>  	input_sync(input);
>  
>  out:
> @@ -202,7 +229,11 @@ static int wacom_i2c_probe(struct i2c_client *client,
>  	input_set_abs_params(input, ABS_Y, 0, features->y_max, 0, 0);
>  	input_set_abs_params(input, ABS_PRESSURE,
>  			     0, features->pressure_max, 0, 0);
> -
> +	input_set_abs_params(input, ABS_DISTANCE, 0, features->distance_max, 0, 0);
> +	input_set_abs_params(input, ABS_TILT_X, -features->tilt_x_max,
> +			     features->tilt_x_max, 0, 0);
> +	input_set_abs_params(input, ABS_TILT_Y, -features->tilt_y_max,
> +			     features->tilt_y_max, 0, 0);
>  	input_set_drvdata(input, wac_i2c);
>  
>  	error = devm_request_threaded_irq(dev, client->irq, NULL, wacom_i2c_irq,
> 


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

  reply	other threads:[~2021-08-23  7:07 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-18 15:49 [PATCH v9 00/11] Add Wacom I2C support to rM2 Alistair Francis
2021-08-18 15:49 ` [PATCH v9 01/11] dt-bindings: Add Wacom to vendor bindings Alistair Francis
2021-08-18 15:49 ` [PATCH v9 02/11] dt-bindings: touchscreen: Initial commit of wacom,i2c Alistair Francis
2021-08-18 15:49 ` [PATCH v9 03/11] Input: wacom_i2c - Add device tree support to wacom_i2c Alistair Francis
2021-08-18 15:49 ` [PATCH v9 04/11] Input: wacom_i2c - Add touchscren properties Alistair Francis
2021-08-18 15:49 ` [PATCH v9 05/11] Input: wacom_i2c - Add support for distance and tilt x/y Alistair Francis
2021-08-23  7:06   ` Ahmad Fatoum [this message]
2021-08-18 15:49 ` [PATCH v9 06/11] Input: wacom_i2c - Clean up the query device fields Alistair Francis
2021-08-18 15:49 ` [PATCH v9 07/11] Input: wacom_i2c - Add support for vdd regulator Alistair Francis
2021-08-18 15:49 ` [PATCH v9 08/11] Input: wacom_i2c - Use macros for the bit masks Alistair Francis
2021-08-18 15:49 ` [PATCH v9 09/11] Input: wacom_i2c - Allow flipping the values from the DT Alistair Francis
2021-08-23 18:15   ` Rob Herring
2021-08-18 15:49 ` [PATCH v9 10/11] ARM: imx_v6_v7_defconfig: Enable Wacom I2C Alistair Francis
2021-08-18 15:49 ` [PATCH v9 11/11] ARM: dts: imx7d: remarkable2: add wacom digitizer device Alistair Francis

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=e3d7b9be-cf0e-7074-3e49-45dbff27ce8d@pengutronix.de \
    --to=a.fatoum@pengutronix.de \
    --cc=alistair23@gmail.com \
    --cc=alistair@alistair23.me \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=junkpainting@gmail.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-imx@nxp.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ping.cheng@wacom.com \
    --cc=pinglinux@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=tatsunosuke.tobita@wacom.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 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).