Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Force feedback support for hid devices. |
| 3 | * Not all hid devices use the same protocol. For example, some use PID, |
| 4 | * other use their own proprietary procotol. |
| 5 | * |
| 6 | * Copyright (c) 2002-2004 Johann Deneux |
| 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | * |
| 24 | * Should you need to contact me, the author, you can do so by |
| 25 | * e-mail - mail your message to <johann.deneux@it.uu.se> |
| 26 | */ |
| 27 | |
| 28 | #include <linux/input.h> |
| 29 | |
| 30 | #undef DEBUG |
| 31 | #include <linux/usb.h> |
| 32 | |
Jiri Kosina | dde5845 | 2006-12-08 18:40:44 +0100 | [diff] [blame] | 33 | #include <linux/hid.h> |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 34 | #include "usbhid.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* |
| 37 | * This table contains pointers to initializers. To add support for new |
| 38 | * devices, you need to add the USB vendor and product ids here. |
| 39 | */ |
| 40 | struct hid_ff_initializer { |
| 41 | u16 idVendor; |
| 42 | u16 idProduct; |
| 43 | int (*init)(struct hid_device*); |
| 44 | }; |
| 45 | |
Anssi Hannula | 224ee88 | 2006-07-19 01:40:47 -0400 | [diff] [blame] | 46 | /* |
| 47 | * We try pidff when no other driver is found because PID is the |
| 48 | * standards compliant way of implementing force feedback in HID. |
| 49 | * pidff_init() will quickly abort if the device doesn't appear to |
| 50 | * be a PID device |
| 51 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | static struct hid_ff_initializer inits[] = { |
| 53 | #ifdef CONFIG_LOGITECH_FF |
Anssi Hannula | 224ee88 | 2006-07-19 01:40:47 -0400 | [diff] [blame] | 54 | { 0x46d, 0xc211, hid_lgff_init }, /* Logitech Cordless rumble pad */ |
Anssi Hannula | 224ee88 | 2006-07-19 01:40:47 -0400 | [diff] [blame] | 55 | { 0x46d, 0xc219, hid_lgff_init }, /* Logitech Cordless rumble pad 2 */ |
Valentin Zagura | 130b1ab | 2007-02-18 01:41:27 -0500 | [diff] [blame] | 56 | { 0x46d, 0xc283, hid_lgff_init }, /* Logitech Wingman Force 3d */ |
Jiri Kosina | 320c015 | 2007-04-10 16:08:34 +0200 | [diff] [blame] | 57 | { 0x46d, 0xc286, hid_lgff_init }, /* Logitech Force 3D Pro Joystick */ |
Valentin Zagura | 130b1ab | 2007-02-18 01:41:27 -0500 | [diff] [blame] | 58 | { 0x46d, 0xc294, hid_lgff_init }, /* Logitech Formula Force EX */ |
| 59 | { 0x46d, 0xc295, hid_lgff_init }, /* Logitech MOMO force wheel */ |
Jiri Slaby | 285b0b6 | 2007-01-18 00:43:41 -0500 | [diff] [blame] | 60 | { 0x46d, 0xca03, hid_lgff_init }, /* Logitech MOMO force wheel */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #endif |
Anssi Hannula | c17f9c9 | 2008-04-01 01:51:11 +0200 | [diff] [blame] | 62 | #ifdef CONFIG_LOGIRUMBLEPAD2_FF |
| 63 | { 0x46d, 0xc218, hid_lg2ff_init }, /* Logitech Rumblepad 2 */ |
| 64 | #endif |
Anssi Hannula | 20eb127 | 2007-01-11 16:51:18 +0200 | [diff] [blame] | 65 | #ifdef CONFIG_PANTHERLORD_FF |
Anssi Hannula | 5edc41ee | 2007-09-19 16:13:20 +0200 | [diff] [blame] | 66 | { 0x810, 0x0001, hid_plff_init }, /* "Twin USB Joystick" */ |
| 67 | { 0xe8f, 0x0003, hid_plff_init }, /* "GreenAsia Inc. USB Joystick " */ |
Anssi Hannula | 20eb127 | 2007-01-11 16:51:18 +0200 | [diff] [blame] | 68 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #ifdef CONFIG_THRUSTMASTER_FF |
Ronny Peine | 38d4b89 | 2007-03-27 14:37:44 +0200 | [diff] [blame] | 70 | { 0x44f, 0xb300, hid_tmff_init }, |
Anssi Hannula | 224ee88 | 2006-07-19 01:40:47 -0400 | [diff] [blame] | 71 | { 0x44f, 0xb304, hid_tmff_init }, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 72 | { 0x44f, 0xb651, hid_tmff_init }, /* FGT Rumble Force Wheel */ |
| 73 | { 0x44f, 0xb654, hid_tmff_init }, /* FGT Force Feedback Wheel */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | #endif |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 75 | #ifdef CONFIG_ZEROPLUS_FF |
| 76 | { 0xc12, 0x0005, hid_zpff_init }, |
| 77 | { 0xc12, 0x0030, hid_zpff_init }, |
| 78 | #endif |
Anssi Hannula | 224ee88 | 2006-07-19 01:40:47 -0400 | [diff] [blame] | 79 | { 0, 0, hid_pidff_init} /* Matches anything */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | }; |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | int hid_ff_init(struct hid_device* hid) |
| 83 | { |
| 84 | struct hid_ff_initializer *init; |
Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 85 | int vendor = le16_to_cpu(hid_to_usb_dev(hid)->descriptor.idVendor); |
| 86 | int product = le16_to_cpu(hid_to_usb_dev(hid)->descriptor.idProduct); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Anssi Hannula | 224ee88 | 2006-07-19 01:40:47 -0400 | [diff] [blame] | 88 | for (init = inits; init->idVendor; init++) |
| 89 | if (init->idVendor == vendor && init->idProduct == product) |
| 90 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | return init->init(hid); |
| 93 | } |
Jiri Kosina | 229695e | 2006-12-08 18:40:53 +0100 | [diff] [blame] | 94 | EXPORT_SYMBOL_GPL(hid_ff_init); |
| 95 | |