Skip to content

Commit db7220c

Browse files
endriftndreys
authored andcommitted
Input: xpad - fix support for some third-party controllers
Some third-party controllers, such as the HORPIAD FPS for Nintendo Switch and Gamesir-G3w, require a specific packet that the first-party XInput driver sends before it will start sending reports. It's not currently known what this packet does, but since the first-party driver always sends it's unlikely that this could cause issues with existing controllers. Co-authored-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Vicki Pfau <vi@endrift.com> Link: https://lore.kernel.org/r/20230324040446.3487725-3-vi@endrift.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
1 parent 8fb1bcd commit db7220c

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

drivers/input/joystick/xpad.c

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ static const struct xpad_device {
264264
{ 0x0f0d, 0x0067, "HORIPAD ONE", 0, XTYPE_XBOXONE },
265265
{ 0x0f0d, 0x0078, "Hori Real Arcade Pro V Kai Xbox One", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE },
266266
{ 0x0f0d, 0x00c5, "Hori Fighting Commander ONE", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE },
267+
{ 0x0f0d, 0x00dc, "HORIPAD FPS for Nintendo Switch", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
267268
{ 0x0f30, 0x010b, "Philips Recoil", 0, XTYPE_XBOX },
268269
{ 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
269270
{ 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
@@ -2013,6 +2014,28 @@ static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id
20132014
goto err_free_in_urb;
20142015
}
20152016

2017+
if (xpad->xtype == XTYPE_XBOX360) {
2018+
/*
2019+
* Some third-party controllers Xbox 360-style controllers
2020+
* require this message to finish initialization.
2021+
*/
2022+
u8 dummy[20];
2023+
2024+
error = usb_control_msg_recv(udev, 0,
2025+
/* bRequest */ 0x01,
2026+
/* bmRequestType */
2027+
USB_TYPE_VENDOR | USB_DIR_IN |
2028+
USB_RECIP_INTERFACE,
2029+
/* wValue */ 0x100,
2030+
/* wIndex */ 0x00,
2031+
dummy, sizeof(dummy),
2032+
25, GFP_KERNEL);
2033+
if (error)
2034+
dev_warn(&xpad->dev->dev,
2035+
"unable to receive magic message: %d\n",
2036+
error);
2037+
}
2038+
20162039
ep_irq_in = ep_irq_out = NULL;
20172040

20182041
for (i = 0; i < 2; i++) {

0 commit comments

Comments
 (0)