[<prev] [next>] [day] [month] [year] [list]
Message-ID: <e7bd23c30712280022k342d200fm2cd4ec92ac67c972@mail.gmail.com>
Date: Fri, 28 Dec 2007 00:22:19 -0800
From: "Corbin Simpson" <mostawesomedude@...il.com>
To: dmitry.torokhov@...il.com
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] joystick: add Guitar Hero 2 controllers
From: Corbin Simpson <MostAwesomeDude@...il.com>
Add USB IDs for the drumkit from Rock Band and the guitar from Guitar
Hero 2 to the
joystick driver for Xbox 360 controllers (drivers/input/joystick/xpad.c).
Signed-off-by: Corbin Simpson <MostAwesomeDude@...il.com>
---
These are both wired USB devices for the Xbox 360. Both work
adequately as joysticks, although the Rock Band
kit is somewhat slow; maybe it could be sped up? Should apply cleanly
to 2.6.23. This is my first patch; am I doin'
it right?
~ C.
--- drivers/input/joystick/xpad.c.old 2007-12-25 10:38:08.000000000 -0800
+++ drivers/input/joystick/xpad.c 2007-12-28 00:03:00.000000000 -0800
@@ -9,6 +9,7 @@
* 2005 Dominic Cerquetti <binary1230@...oo.com>
* 2006 Adam Buchbinder <adam.buchbinder@...il.com>
* 2007 Jan Kratochvil <honza@...os.cz>
+ * 2007 Corbin Simpson <MostAwesomeDude@...il.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -134,8 +135,10 @@ static const struct xpad_device {
{ 0x0f30, 0x8888, "BigBen XBMiniPad Controller", MAP_DPAD_TO_AXES,
XTYPE_XBOX },
{ 0x102c, 0xff0c, "Joytech Wireless Advanced Controller",
MAP_DPAD_TO_AXES, XTYPE_XBOX },
{ 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
+ { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer",
MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
{ 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)",
MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
{ 0x045e, 0x028e, "Microsoft X-Box 360 pad", MAP_DPAD_TO_AXES,
XTYPE_XBOX360 },
+ { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS,
XTYPE_XBOX360 },
{ 0xffff, 0xffff, "Chinese-made Xbox Controller", MAP_DPAD_TO_AXES,
XTYPE_XBOX },
{ 0x0000, 0x0000, "Generic X-Box pad", MAP_DPAD_UNKNOWN, XTYPE_XBOX }
};
@@ -178,6 +181,8 @@ static const signed short xpad_abs_pad[]
static struct usb_device_id xpad_table [] = {
{ USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
{ USB_DEVICE_INTERFACE_PROTOCOL(0x045e, 0x028e, 1) }, /* X-Box 360
controller */
+ { USB_DEVICE_INTERFACE_PROTOCOL(0x1430, 0x4748, 1) }, /* Guitar Hero
X-plorer */
+ { USB_DEVICE_INTERFACE_PROTOCOL(0x1bad, 0x0003, 1) }, /* Rock Band Drums */
{ }
};
--
Only fools are easily impressed by what is only
barely beyond their reach. ~ Unknown
Corbin Simpson
<MostAwesomeDude@...il.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists