linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support
@ 2022-09-08 17:39 Nate Yocom
  2022-09-08 17:39 ` [PATCH v6 1/5] Input: joystick: xpad: Add X-Box Adaptive support Nate Yocom
                   ` (6 more replies)
  0 siblings, 7 replies; 11+ messages in thread
From: Nate Yocom @ 2022-09-08 17:39 UTC (permalink / raw)
  To: dmitry.torokhov
  Cc: nate, linux-input, linux-kernel, hadess, benjamin.tissoires

Adds support for the X-Box Adaptive Controller, which is protocol
compatible with the XTYPE_XBOXONE support in the driver with two deltas:

 - The X-Box button sets 0x02 as its activation ID, where others set
   0x01
 - The controller has an additional Profile button with 4 active states,
   which this change maps to an Axis control with 4 possible values

Patch series adds device to the supported table, adds support for the
Profile button, and adds support for the X-Box button as distinct
changes.

Signed-off-by: Nate Yocom <nate@yocom.org>

Nate Yocom (5):
  Input: joystick: xpad: Add X-Box Adaptive support
  Input: joystick: xpad: Add X-Box Adaptive XBox button
  Input: joystick: xpad: Add ABS_PROFILE to uapi
  Input: joystick: xpad: Add ABS_PROFILE to Docs
  Input: joystick: xpad: Add X-Box Adaptive Profile button

 v2: Fix warning Reported-by: kernel test robot <lkp@intel.com>
 v3: Break into multi-part and remove VID/PID check for XBox button
 v4: Rename Layer -> Profile as suggested by Bastien Nocera
 v5: Add new ABS_PROFILE axis to uapi and use it for the profile button
 v6: Add ABS_PROFILE to absolutes array and docs as requested by Dmitry

 Documentation/input/event-codes.rst    |  6 ++++++
 Documentation/input/gamepad.rst        |  6 ++++++
 drivers/hid/hid-debug.c                |  3 ++-
 drivers/input/joystick/xpad.c          | 15 ++++++++++++++-
 include/uapi/linux/input-event-codes.h |  1 +
 5 files changed, 29 insertions(+), 2 deletions(-)


base-commit: 26b1224903b3fb66e8aa564868d0d57648c32b15
-- 
2.30.2


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v6 1/5] Input: joystick: xpad: Add X-Box Adaptive support
  2022-09-08 17:39 [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
@ 2022-09-08 17:39 ` Nate Yocom
  2022-09-28  7:21   ` Mattijs Korpershoek
  2022-09-08 17:39 ` [PATCH v6 2/5] Input: joystick: xpad: Add X-Box Adaptive XBox button Nate Yocom
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 11+ messages in thread
From: Nate Yocom @ 2022-09-08 17:39 UTC (permalink / raw)
  To: dmitry.torokhov
  Cc: nate, linux-input, linux-kernel, hadess, benjamin.tissoires

Adds correct VID/PID for this XTYPE_XBOXONE compatible controller to
xpad_device[] table.

Signed-off-by: Nate Yocom <nate@yocom.org>
Tested-by: Bastien Nocera <hadess@hadess.net>
---
 drivers/input/joystick/xpad.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
index 18190b529bca..c8b38bb73d34 100644
--- a/drivers/input/joystick/xpad.c
+++ b/drivers/input/joystick/xpad.c
@@ -131,6 +131,7 @@ static const struct xpad_device {
 	{ 0x045e, 0x02e3, "Microsoft X-Box One Elite pad", 0, XTYPE_XBOXONE },
 	{ 0x045e, 0x02ea, "Microsoft X-Box One S pad", 0, XTYPE_XBOXONE },
 	{ 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
+	{ 0x045e, 0x0b0a, "Microsoft X-Box Adaptive Controller", 0, XTYPE_XBOXONE },
 	{ 0x045e, 0x0b12, "Microsoft Xbox Series S|X Controller", MAP_SELECT_BUTTON, XTYPE_XBOXONE },
 	{ 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
 	{ 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v6 2/5] Input: joystick: xpad: Add X-Box Adaptive XBox button
  2022-09-08 17:39 [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
  2022-09-08 17:39 ` [PATCH v6 1/5] Input: joystick: xpad: Add X-Box Adaptive support Nate Yocom
@ 2022-09-08 17:39 ` Nate Yocom
  2022-09-28  7:21   ` Mattijs Korpershoek
  2022-09-08 17:39 ` [PATCH v6 3/5] Input: joystick: xpad: Add ABS_PROFILE to uapi Nate Yocom
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 11+ messages in thread
From: Nate Yocom @ 2022-09-08 17:39 UTC (permalink / raw)
  To: dmitry.torokhov
  Cc: nate, linux-input, linux-kernel, hadess, benjamin.tissoires

Adaptive controller sets 0x02 bit for this button, all others set 0x01
so presence of either is used for BTN_MODE.

Signed-off-by: Nate Yocom <nate@yocom.org>
Tested-by: Bastien Nocera <hadess@hadess.net>
---
 drivers/input/joystick/xpad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
index c8b38bb73d34..dff0d099d416 100644
--- a/drivers/input/joystick/xpad.c
+++ b/drivers/input/joystick/xpad.c
@@ -858,7 +858,7 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char
 		if (data[1] == 0x30)
 			xpadone_ack_mode_report(xpad, data[2]);
 
-		input_report_key(dev, BTN_MODE, data[4] & 0x01);
+		input_report_key(dev, BTN_MODE, data[4] & 0x03);
 		input_sync(dev);
 		return;
 	}
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v6 3/5] Input: joystick: xpad: Add ABS_PROFILE to uapi
  2022-09-08 17:39 [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
  2022-09-08 17:39 ` [PATCH v6 1/5] Input: joystick: xpad: Add X-Box Adaptive support Nate Yocom
  2022-09-08 17:39 ` [PATCH v6 2/5] Input: joystick: xpad: Add X-Box Adaptive XBox button Nate Yocom
@ 2022-09-08 17:39 ` Nate Yocom
  2022-09-08 17:39 ` [PATCH v6 4/5] Input: joystick: xpad: Add ABS_PROFILE to Docs Nate Yocom
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Nate Yocom @ 2022-09-08 17:39 UTC (permalink / raw)
  To: dmitry.torokhov
  Cc: nate, linux-input, linux-kernel, hadess, benjamin.tissoires

Add an ABS_PROFILE axis for input devices which need it, e.g. X-Box
Adaptive Controller and X-Box Elite 2.

Signed-off-by: Nate Yocom <nate@yocom.org>
---
 drivers/hid/hid-debug.c                | 3 ++-
 include/uapi/linux/input-event-codes.h | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/hid/hid-debug.c b/drivers/hid/hid-debug.c
index 81e7e404a5fc..2ca6ab600bc9 100644
--- a/drivers/hid/hid-debug.c
+++ b/drivers/hid/hid-debug.c
@@ -1014,7 +1014,8 @@ static const char *absolutes[ABS_CNT] = {
 	[ABS_HAT3Y] = "Hat 3Y",		[ABS_PRESSURE] = "Pressure",
 	[ABS_DISTANCE] = "Distance",	[ABS_TILT_X] = "XTilt",
 	[ABS_TILT_Y] = "YTilt",		[ABS_TOOL_WIDTH] = "ToolWidth",
-	[ABS_VOLUME] = "Volume",	[ABS_MISC] = "Misc",
+	[ABS_VOLUME] = "Volume",	[ABS_PROFILE] = "Profile",
+	[ABS_MISC] = "Misc",
 	[ABS_MT_TOUCH_MAJOR] = "MTMajor",
 	[ABS_MT_TOUCH_MINOR] = "MTMinor",
 	[ABS_MT_WIDTH_MAJOR] = "MTMajorW",
diff --git a/include/uapi/linux/input-event-codes.h b/include/uapi/linux/input-event-codes.h
index dff8e7f17074..7ad931a32970 100644
--- a/include/uapi/linux/input-event-codes.h
+++ b/include/uapi/linux/input-event-codes.h
@@ -862,6 +862,7 @@
 #define ABS_TOOL_WIDTH		0x1c
 
 #define ABS_VOLUME		0x20
+#define ABS_PROFILE		0x21
 
 #define ABS_MISC		0x28
 
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v6 4/5] Input: joystick: xpad: Add ABS_PROFILE to Docs
  2022-09-08 17:39 [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
                   ` (2 preceding siblings ...)
  2022-09-08 17:39 ` [PATCH v6 3/5] Input: joystick: xpad: Add ABS_PROFILE to uapi Nate Yocom
@ 2022-09-08 17:39 ` Nate Yocom
  2022-09-08 17:39 ` [PATCH v6 5/5] Input: joystick: xpad: Add X-Box Adaptive Profile button Nate Yocom
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Nate Yocom @ 2022-09-08 17:39 UTC (permalink / raw)
  To: dmitry.torokhov
  Cc: nate, linux-input, linux-kernel, hadess, benjamin.tissoires

Add ABS_PROFILE description to Documentation/input/

Signed-off-by: Nate Yocom <nate@yocom.org>
---
 Documentation/input/event-codes.rst | 6 ++++++
 Documentation/input/gamepad.rst     | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/Documentation/input/event-codes.rst b/Documentation/input/event-codes.rst
index 8741d390b184..b4557462edd7 100644
--- a/Documentation/input/event-codes.rst
+++ b/Documentation/input/event-codes.rst
@@ -235,6 +235,12 @@ A few EV_ABS codes have special meanings:
     BTN_TOOL_<name> signals the type of tool that is currently detected by the
     hardware and is otherwise independent of ABS_DISTANCE and/or BTN_TOUCH.
 
+* ABS_PROFILE:
+
+  - Used to describe the state of a multi-value profile switch.  An event is
+    emitted only when the selected profile changes, indicating the newly
+    selected profile value.
+
 * ABS_MT_<name>:
 
   - Used to describe multitouch input events. Please see
diff --git a/Documentation/input/gamepad.rst b/Documentation/input/gamepad.rst
index 4d5e7fb80a84..71019de46036 100644
--- a/Documentation/input/gamepad.rst
+++ b/Documentation/input/gamepad.rst
@@ -189,3 +189,9 @@ Gamepads report the following events:
 - Rumble:
 
   Rumble is advertised as FF_RUMBLE.
+
+- Profile:
+
+  Some pads provide a multi-value profile selection switch.  An example is the
+  XBox Adaptive and the XBox Elite 2 controllers.  When the active profile is
+  switched, its newly selected value is emitted as an ABS_PROFILE event.
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v6 5/5] Input: joystick: xpad: Add X-Box Adaptive Profile button
  2022-09-08 17:39 [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
                   ` (3 preceding siblings ...)
  2022-09-08 17:39 ` [PATCH v6 4/5] Input: joystick: xpad: Add ABS_PROFILE to Docs Nate Yocom
@ 2022-09-08 17:39 ` Nate Yocom
  2022-09-13 21:46 ` [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
  2022-09-29  1:34 ` Dmitry Torokhov
  6 siblings, 0 replies; 11+ messages in thread
From: Nate Yocom @ 2022-09-08 17:39 UTC (permalink / raw)
  To: dmitry.torokhov
  Cc: nate, linux-input, linux-kernel, hadess, benjamin.tissoires

Adds a new quirk for controllers that have a Profile button which has 4
states, reflected as an ABS_PROFILE axis with 4 values.

Signed-off-by: Nate Yocom <nate@yocom.org>
Tested-by: Bastien Nocera <hadess@hadess.net>
---
 drivers/input/joystick/xpad.c | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
index dff0d099d416..ece38f00dfff 100644
--- a/drivers/input/joystick/xpad.c
+++ b/drivers/input/joystick/xpad.c
@@ -80,6 +80,7 @@
 #define MAP_TRIGGERS_TO_BUTTONS		(1 << 1)
 #define MAP_STICKS_TO_NULL		(1 << 2)
 #define MAP_SELECT_BUTTON		(1 << 3)
+#define MAP_PROFILE_BUTTON		(1 << 4)
 #define DANCEPAD_MAP_CONFIG	(MAP_DPAD_TO_BUTTONS |			\
 				MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
 
@@ -131,7 +132,7 @@ static const struct xpad_device {
 	{ 0x045e, 0x02e3, "Microsoft X-Box One Elite pad", 0, XTYPE_XBOXONE },
 	{ 0x045e, 0x02ea, "Microsoft X-Box One S pad", 0, XTYPE_XBOXONE },
 	{ 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
-	{ 0x045e, 0x0b0a, "Microsoft X-Box Adaptive Controller", 0, XTYPE_XBOXONE },
+	{ 0x045e, 0x0b0a, "Microsoft X-Box Adaptive Controller", MAP_PROFILE_BUTTON, XTYPE_XBOXONE },
 	{ 0x045e, 0x0b12, "Microsoft Xbox Series S|X Controller", MAP_SELECT_BUTTON, XTYPE_XBOXONE },
 	{ 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
 	{ 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
@@ -927,6 +928,10 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char
 				 (__u16) le16_to_cpup((__le16 *)(data + 8)));
 	}
 
+	/* Profile button has a value of 0-3, so it is reported as an axis */
+	if (xpad->mapping & MAP_PROFILE_BUTTON)
+		input_report_abs(dev, ABS_PROFILE, data[34]);
+
 	input_sync(dev);
 }
 
@@ -1623,6 +1628,9 @@ static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
 	case ABS_HAT0Y:	/* the d-pad (only if dpad is mapped to axes */
 		input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
 		break;
+	case ABS_PROFILE: /* 4 value profile button (such as on XAC) */
+		input_set_abs_params(input_dev, abs, 0, 4, 0, 0);
+		break;
 	default:
 		input_set_abs_params(input_dev, abs, 0, 0, 0, 0);
 		break;
@@ -1715,6 +1723,10 @@ static int xpad_init_input(struct usb_xpad *xpad)
 			xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
 	}
 
+	/* setup profile button as an axis with 4 possible values */
+	if (xpad->mapping & MAP_PROFILE_BUTTON)
+		xpad_set_up_abs(input_dev, ABS_PROFILE);
+
 	error = xpad_init_ff(xpad);
 	if (error)
 		goto err_free_input;
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support
  2022-09-08 17:39 [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
                   ` (4 preceding siblings ...)
  2022-09-08 17:39 ` [PATCH v6 5/5] Input: joystick: xpad: Add X-Box Adaptive Profile button Nate Yocom
@ 2022-09-13 21:46 ` Nate Yocom
  2022-09-28  2:36   ` Nate Yocom
  2022-09-29  1:34 ` Dmitry Torokhov
  6 siblings, 1 reply; 11+ messages in thread
From: Nate Yocom @ 2022-09-13 21:46 UTC (permalink / raw)
  To: dmitry.torokhov; +Cc: linux-input, linux-kernel, hadess, benjamin.tissoires

On Thu, Sep 08, 2022 at 10:39:25AM -0700, Nate Yocom wrote:
> Adds support for the X-Box Adaptive Controller, which is protocol
> compatible with the XTYPE_XBOXONE support in the driver with two deltas:
>
>  - The X-Box button sets 0x02 as its activation ID, where others set
>    0x01
>  - The controller has an additional Profile button with 4 active states,
>    which this change maps to an Axis control with 4 possible values
>
> Patch series adds device to the supported table, adds support for the
> Profile button, and adds support for the X-Box button as distinct
> changes.
>
> Signed-off-by: Nate Yocom <nate@yocom.org>
>
> Nate Yocom (5):
>   Input: joystick: xpad: Add X-Box Adaptive support
>   Input: joystick: xpad: Add X-Box Adaptive XBox button
>   Input: joystick: xpad: Add ABS_PROFILE to uapi
>   Input: joystick: xpad: Add ABS_PROFILE to Docs
>   Input: joystick: xpad: Add X-Box Adaptive Profile button
>
>  v2: Fix warning Reported-by: kernel test robot <lkp@intel.com>
>  v3: Break into multi-part and remove VID/PID check for XBox button
>  v4: Rename Layer -> Profile as suggested by Bastien Nocera
>  v5: Add new ABS_PROFILE axis to uapi and use it for the profile button
>  v6: Add ABS_PROFILE to absolutes array and docs as requested by Dmitry
>
>  Documentation/input/event-codes.rst    |  6 ++++++
>  Documentation/input/gamepad.rst        |  6 ++++++
>  drivers/hid/hid-debug.c                |  3 ++-
>  drivers/input/joystick/xpad.c          | 15 ++++++++++++++-
>  include/uapi/linux/input-event-codes.h |  1 +
>  5 files changed, 29 insertions(+), 2 deletions(-)
>
>
> base-commit: 26b1224903b3fb66e8aa564868d0d57648c32b15
> --
> 2.30.2
>

Dmitry et al, anything else I can do to see this through?  Thanks!

- Nate

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support
  2022-09-13 21:46 ` [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
@ 2022-09-28  2:36   ` Nate Yocom
  0 siblings, 0 replies; 11+ messages in thread
From: Nate Yocom @ 2022-09-28  2:36 UTC (permalink / raw)
  To: dmitry.torokhov; +Cc: linux-input, linux-kernel, hadess, benjamin.tissoires


> On Sep 13, 2022, at 3:46 PM, Nate Yocom <nate@yocom.org> wrote:
> 
> On Thu, Sep 08, 2022 at 10:39:25AM -0700, Nate Yocom wrote:
>> Adds support for the X-Box Adaptive Controller, which is protocol
>> compatible with the XTYPE_XBOXONE support in the driver with two deltas:
>> 
>> - The X-Box button sets 0x02 as its activation ID, where others set
>>   0x01
>> - The controller has an additional Profile button with 4 active states,
>>   which this change maps to an Axis control with 4 possible values
>> 
>> Patch series adds device to the supported table, adds support for the
>> Profile button, and adds support for the X-Box button as distinct
>> changes.
>> 
>> Signed-off-by: Nate Yocom <nate@yocom.org>
>> 
>> Nate Yocom (5):
>>  Input: joystick: xpad: Add X-Box Adaptive support
>>  Input: joystick: xpad: Add X-Box Adaptive XBox button
>>  Input: joystick: xpad: Add ABS_PROFILE to uapi
>>  Input: joystick: xpad: Add ABS_PROFILE to Docs
>>  Input: joystick: xpad: Add X-Box Adaptive Profile button
>> 
>> v2: Fix warning Reported-by: kernel test robot <lkp@intel.com>
>> v3: Break into multi-part and remove VID/PID check for XBox button
>> v4: Rename Layer -> Profile as suggested by Bastien Nocera
>> v5: Add new ABS_PROFILE axis to uapi and use it for the profile button
>> v6: Add ABS_PROFILE to absolutes array and docs as requested by Dmitry
>> 
>> Documentation/input/event-codes.rst    |  6 ++++++
>> Documentation/input/gamepad.rst        |  6 ++++++
>> drivers/hid/hid-debug.c                |  3 ++-
>> drivers/input/joystick/xpad.c          | 15 ++++++++++++++-
>> include/uapi/linux/input-event-codes.h |  1 +
>> 5 files changed, 29 insertions(+), 2 deletions(-)
>> 
>> 
>> base-commit: 26b1224903b3fb66e8aa564868d0d57648c32b15
>> --
>> 2.30.2
>> 
> 
> Dmitry et al, anything else I can do to see this through?  Thanks!

Anything missing here? Any chance of getting this in?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v6 1/5] Input: joystick: xpad: Add X-Box Adaptive support
  2022-09-08 17:39 ` [PATCH v6 1/5] Input: joystick: xpad: Add X-Box Adaptive support Nate Yocom
@ 2022-09-28  7:21   ` Mattijs Korpershoek
  0 siblings, 0 replies; 11+ messages in thread
From: Mattijs Korpershoek @ 2022-09-28  7:21 UTC (permalink / raw)
  To: Nate Yocom, dmitry.torokhov
  Cc: nate, linux-input, linux-kernel, hadess, benjamin.tissoires

On Thu, Sep 08, 2022 at 10:39, Nate Yocom <nate@yocom.org> wrote:

> Adds correct VID/PID for this XTYPE_XBOXONE compatible controller to
> xpad_device[] table.
>
> Signed-off-by: Nate Yocom <nate@yocom.org>
> Tested-by: Bastien Nocera <hadess@hadess.net>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>

> ---
>  drivers/input/joystick/xpad.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
> index 18190b529bca..c8b38bb73d34 100644
> --- a/drivers/input/joystick/xpad.c
> +++ b/drivers/input/joystick/xpad.c
> @@ -131,6 +131,7 @@ static const struct xpad_device {
>  	{ 0x045e, 0x02e3, "Microsoft X-Box One Elite pad", 0, XTYPE_XBOXONE },
>  	{ 0x045e, 0x02ea, "Microsoft X-Box One S pad", 0, XTYPE_XBOXONE },
>  	{ 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
> +	{ 0x045e, 0x0b0a, "Microsoft X-Box Adaptive Controller", 0, XTYPE_XBOXONE },
>  	{ 0x045e, 0x0b12, "Microsoft Xbox Series S|X Controller", MAP_SELECT_BUTTON, XTYPE_XBOXONE },
>  	{ 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
>  	{ 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
> -- 
> 2.30.2

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v6 2/5] Input: joystick: xpad: Add X-Box Adaptive XBox button
  2022-09-08 17:39 ` [PATCH v6 2/5] Input: joystick: xpad: Add X-Box Adaptive XBox button Nate Yocom
@ 2022-09-28  7:21   ` Mattijs Korpershoek
  0 siblings, 0 replies; 11+ messages in thread
From: Mattijs Korpershoek @ 2022-09-28  7:21 UTC (permalink / raw)
  To: Nate Yocom, dmitry.torokhov
  Cc: nate, linux-input, linux-kernel, hadess, benjamin.tissoires

Hi Nate,

On Thu, Sep 08, 2022 at 10:39, Nate Yocom <nate@yocom.org> wrote:

> Adaptive controller sets 0x02 bit for this button, all others set 0x01
> so presence of either is used for BTN_MODE.
>
> Signed-off-by: Nate Yocom <nate@yocom.org>
> Tested-by: Bastien Nocera <hadess@hadess.net>

This does not applies properly anymore on dtor/next [1] because of
90c9978959da ("Input: xpad - refactor using BIT() macro") and
e23c69e33248 ("Input: xpad - add support for XBOX One Elite paddles")

With that, please add:

Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com

> ---
>  drivers/input/joystick/xpad.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
> index c8b38bb73d34..dff0d099d416 100644
> --- a/drivers/input/joystick/xpad.c
> +++ b/drivers/input/joystick/xpad.c
> @@ -858,7 +858,7 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char
>  		if (data[1] == 0x30)
>  			xpadone_ack_mode_report(xpad, data[2]);
>  
> -		input_report_key(dev, BTN_MODE, data[4] & 0x01);
> +		input_report_key(dev, BTN_MODE, data[4] & 0x03);
>  		input_sync(dev);
>  		return;
>  	}
> -- 
> 2.30.2

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support
  2022-09-08 17:39 [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
                   ` (5 preceding siblings ...)
  2022-09-13 21:46 ` [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
@ 2022-09-29  1:34 ` Dmitry Torokhov
  6 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-09-29  1:34 UTC (permalink / raw)
  To: Nate Yocom; +Cc: linux-input, linux-kernel, hadess, benjamin.tissoires

On Thu, Sep 08, 2022 at 10:39:25AM -0700, Nate Yocom wrote:
> Adds support for the X-Box Adaptive Controller, which is protocol
> compatible with the XTYPE_XBOXONE support in the driver with two deltas:
> 
>  - The X-Box button sets 0x02 as its activation ID, where others set
>    0x01
>  - The controller has an additional Profile button with 4 active states,
>    which this change maps to an Axis control with 4 possible values
> 
> Patch series adds device to the supported table, adds support for the
> Profile button, and adds support for the X-Box button as distinct
> changes.
> 
> Signed-off-by: Nate Yocom <nate@yocom.org>
> 
> Nate Yocom (5):
>   Input: joystick: xpad: Add X-Box Adaptive support
>   Input: joystick: xpad: Add X-Box Adaptive XBox button
>   Input: joystick: xpad: Add ABS_PROFILE to uapi
>   Input: joystick: xpad: Add ABS_PROFILE to Docs
>   Input: joystick: xpad: Add X-Box Adaptive Profile button

Combined patches 3 and 4 and applied the lot, thank you.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-09-29  1:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-08 17:39 [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
2022-09-08 17:39 ` [PATCH v6 1/5] Input: joystick: xpad: Add X-Box Adaptive support Nate Yocom
2022-09-28  7:21   ` Mattijs Korpershoek
2022-09-08 17:39 ` [PATCH v6 2/5] Input: joystick: xpad: Add X-Box Adaptive XBox button Nate Yocom
2022-09-28  7:21   ` Mattijs Korpershoek
2022-09-08 17:39 ` [PATCH v6 3/5] Input: joystick: xpad: Add ABS_PROFILE to uapi Nate Yocom
2022-09-08 17:39 ` [PATCH v6 4/5] Input: joystick: xpad: Add ABS_PROFILE to Docs Nate Yocom
2022-09-08 17:39 ` [PATCH v6 5/5] Input: joystick: xpad: Add X-Box Adaptive Profile button Nate Yocom
2022-09-13 21:46 ` [PATCH v6 0/5] Input: joystick: xpad: Add X-Box Adaptive Controller support Nate Yocom
2022-09-28  2:36   ` Nate Yocom
2022-09-29  1:34 ` Dmitry Torokhov

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).