2022-03-13 11:01:46

by Daniel Bomar

[permalink] [raw]
Subject: [PATCH] HID: microsoft: Report Xbox Guide and Back buttons on Xbox One S controller

Signed-off-by: Daniel Bomar <[email protected]>
---
drivers/hid/hid-microsoft.c | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/drivers/hid/hid-microsoft.c b/drivers/hid/hid-microsoft.c
index 071fd093a5f4..19dc0a4eb38a 100644
--- a/drivers/hid/hid-microsoft.c
+++ b/drivers/hid/hid-microsoft.c
@@ -27,6 +27,7 @@
#define MS_DUPLICATE_USAGES BIT(5)
#define MS_SURFACE_DIAL BIT(6)
#define MS_QUIRK_FF BIT(7)
+#define MS_XBOX BIT(8)

struct ms_data {
unsigned long quirks;
@@ -275,6 +276,16 @@ static int ms_event(struct hid_device *hdev, struct hid_field *field,
return 1;
}

+ if (quirks & MS_XBOX) {
+ if (usage->hid == 0xc0223) {
+ input_report_key(input, BTN_MODE, value);
+ return 1;
+ } else if (usage->hid == 0xc0224) {
+ input_report_key(input, BTN_SELECT, value);
+ return 1;
+ }
+ }
+
return 0;
}

@@ -447,7 +458,7 @@ static const struct hid_device_id ms_devices[] = {
{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_MICROSOFT, 0x091B),
.driver_data = MS_SURFACE_DIAL },
{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_XBOX_ONE_S_CONTROLLER),
- .driver_data = MS_QUIRK_FF },
+ .driver_data = MS_QUIRK_FF | MS_XBOX },
{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_8BITDO_SN30_PRO_PLUS),
.driver_data = MS_QUIRK_FF },
{ }
--
2.35.1


2022-04-12 23:16:02

by Jiri Kosina

[permalink] [raw]
Subject: Re: [PATCH] HID: microsoft: Report Xbox Guide and Back buttons on Xbox One S controller

On Sat, 12 Mar 2022, Daniel Bomar wrote:

> Signed-off-by: Daniel Bomar <[email protected]>

Daniel, thanks for the patch. We however generally don't take patches with
absolutely empty changelog -- if you could please describe in a few words
the change, what it does, what user-visible behavior it fixes, etc. it'd
be appreciated.

Thanks,

--
Jiri Kosina
SUSE Labs