diff mbox series

[V4] Input: adc-joystick: Handle inverted axes

Message ID 20240124204754.43982-1-macroalpha82@gmail.com (mailing list archive)
State New
Headers show
Series [V4] Input: adc-joystick: Handle inverted axes | expand

Commit Message

Chris Morgan Jan. 24, 2024, 8:47 p.m. UTC
From: Chris Morgan <macromorgan@hotmail.com>

When one or more axes are inverted, (where min > max), normalize the
data so that min < max and invert the values reported to the input
stack.

This ensures we can continue defining the device correctly in the
device tree while not breaking downstream assumptions that min is
always less than max.

Signed-off-by: Chris Morgan <macromorgan@hotmail.com>
---
Changes since V3:
 - Add include for minmax.h.
 - Use swap() instead of min_array()/max_array().
 - Dropped Ack due to change.
Changes since V2:
 - Explicitly set bool value to "true" instead of "1".
 - Split adc_joystick_invert() function definition to 2 lines.
 - Corrected changes message location.
Changes since V1:
 - Moved proposed helper for inversion from input stack to adc-joystick
   driver.

 drivers/input/joystick/adc-joystick.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

Comments

Artur Rojek Jan. 24, 2024, 9:33 p.m. UTC | #1
On 2024-01-24 21:47, Chris Morgan wrote:
> From: Chris Morgan <macromorgan@hotmail.com>
> 
> When one or more axes are inverted, (where min > max), normalize the
> data so that min < max and invert the values reported to the input
> stack.
> 
> This ensures we can continue defining the device correctly in the
> device tree while not breaking downstream assumptions that min is
> always less than max.
> 
> Signed-off-by: Chris Morgan <macromorgan@hotmail.com>

Acked-by: Artur Rojek <contact@artur-rojek.eu>

Cheers,
Artur

> ---
> Changes since V3:
>  - Add include for minmax.h.
>  - Use swap() instead of min_array()/max_array().
>  - Dropped Ack due to change.
> Changes since V2:
>  - Explicitly set bool value to "true" instead of "1".
>  - Split adc_joystick_invert() function definition to 2 lines.
>  - Corrected changes message location.
> Changes since V1:
>  - Moved proposed helper for inversion from input stack to adc-joystick
>    driver.
> 
>  drivers/input/joystick/adc-joystick.c | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
> 
> diff --git a/drivers/input/joystick/adc-joystick.c
> b/drivers/input/joystick/adc-joystick.c
> index c0deff5d4282..3b05b2e413d0 100644
> --- a/drivers/input/joystick/adc-joystick.c
> +++ b/drivers/input/joystick/adc-joystick.c
> @@ -7,6 +7,7 @@
>  #include <linux/input.h>
>  #include <linux/iio/iio.h>
>  #include <linux/iio/consumer.h>
> +#include <linux/minmax.h>
>  #include <linux/module.h>
>  #include <linux/platform_device.h>
>  #include <linux/property.h>
> @@ -18,6 +19,7 @@ struct adc_joystick_axis {
>  	s32 range[2];
>  	s32 fuzz;
>  	s32 flat;
> +	bool inverted;
>  };
> 
>  struct adc_joystick {
> @@ -29,6 +31,15 @@ struct adc_joystick {
>  	bool polled;
>  };
> 
> +static int adc_joystick_invert(struct input_dev *dev,
> +			       unsigned int axis, int val)
> +{
> +	int min = dev->absinfo[axis].minimum;
> +	int max = dev->absinfo[axis].maximum;
> +
> +	return (max + min) - val;
> +}
> +
>  static void adc_joystick_poll(struct input_dev *input)
>  {
>  	struct adc_joystick *joy = input_get_drvdata(input);
> @@ -38,6 +49,8 @@ static void adc_joystick_poll(struct input_dev 
> *input)
>  		ret = iio_read_channel_raw(&joy->chans[i], &val);
>  		if (ret < 0)
>  			return;
> +		if (joy->axes[i].inverted)
> +			val = adc_joystick_invert(input, i, val);
>  		input_report_abs(input, joy->axes[i].code, val);
>  	}
>  	input_sync(input);
> @@ -86,6 +99,8 @@ static int adc_joystick_handle(const void *data,
> void *private)
>  			val = sign_extend32(val, msb);
>  		else
>  			val &= GENMASK(msb, 0);
> +		if (joy->axes[i].inverted)
> +			val = adc_joystick_invert(joy->input, i, val);
>  		input_report_abs(joy->input, joy->axes[i].code, val);
>  	}
> 
> @@ -168,6 +183,12 @@ static int adc_joystick_set_axes(struct device
> *dev, struct adc_joystick *joy)
>  			goto err_fwnode_put;
>  		}
> 
> +		if (axes[i].range[0] > axes[i].range[1]) {
> +			dev_dbg(dev, "abs-axis %d inverted\n", i);
> +			axes[i].inverted = true;
> +			swap(axes[i].range[0], axes[i].range[1]);
> +		}
> +
>  		fwnode_property_read_u32(child, "abs-fuzz", &axes[i].fuzz);
>  		fwnode_property_read_u32(child, "abs-flat", &axes[i].flat);
diff mbox series

Patch

diff --git a/drivers/input/joystick/adc-joystick.c b/drivers/input/joystick/adc-joystick.c
index c0deff5d4282..3b05b2e413d0 100644
--- a/drivers/input/joystick/adc-joystick.c
+++ b/drivers/input/joystick/adc-joystick.c
@@ -7,6 +7,7 @@ 
 #include <linux/input.h>
 #include <linux/iio/iio.h>
 #include <linux/iio/consumer.h>
+#include <linux/minmax.h>
 #include <linux/module.h>
 #include <linux/platform_device.h>
 #include <linux/property.h>
@@ -18,6 +19,7 @@  struct adc_joystick_axis {
 	s32 range[2];
 	s32 fuzz;
 	s32 flat;
+	bool inverted;
 };
 
 struct adc_joystick {
@@ -29,6 +31,15 @@  struct adc_joystick {
 	bool polled;
 };
 
+static int adc_joystick_invert(struct input_dev *dev,
+			       unsigned int axis, int val)
+{
+	int min = dev->absinfo[axis].minimum;
+	int max = dev->absinfo[axis].maximum;
+
+	return (max + min) - val;
+}
+
 static void adc_joystick_poll(struct input_dev *input)
 {
 	struct adc_joystick *joy = input_get_drvdata(input);
@@ -38,6 +49,8 @@  static void adc_joystick_poll(struct input_dev *input)
 		ret = iio_read_channel_raw(&joy->chans[i], &val);
 		if (ret < 0)
 			return;
+		if (joy->axes[i].inverted)
+			val = adc_joystick_invert(input, i, val);
 		input_report_abs(input, joy->axes[i].code, val);
 	}
 	input_sync(input);
@@ -86,6 +99,8 @@  static int adc_joystick_handle(const void *data, void *private)
 			val = sign_extend32(val, msb);
 		else
 			val &= GENMASK(msb, 0);
+		if (joy->axes[i].inverted)
+			val = adc_joystick_invert(joy->input, i, val);
 		input_report_abs(joy->input, joy->axes[i].code, val);
 	}
 
@@ -168,6 +183,12 @@  static int adc_joystick_set_axes(struct device *dev, struct adc_joystick *joy)
 			goto err_fwnode_put;
 		}
 
+		if (axes[i].range[0] > axes[i].range[1]) {
+			dev_dbg(dev, "abs-axis %d inverted\n", i);
+			axes[i].inverted = true;
+			swap(axes[i].range[0], axes[i].range[1]);
+		}
+
 		fwnode_property_read_u32(child, "abs-fuzz", &axes[i].fuzz);
 		fwnode_property_read_u32(child, "abs-flat", &axes[i].flat);