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