blob: b0199d27787b69a328d09488e5802f6e51b781a2 [file] [log] [blame]
Anssi Hannula20eb1272007-01-11 16:51:18 +02001/*
Anssi Hannula5edc41ee2007-09-19 16:13:20 +02002 * Force feedback support for PantherLord/GreenAsia based devices
3 *
4 * The devices are distributed under various names and the same USB device ID
5 * can be used in both adapters and actual game controllers.
6 *
7 * 0810:0001 "Twin USB Joystick"
8 * - tested with PantherLord USB/PS2 2in1 Adapter
9 * - contains two reports, one for each port (HID_QUIRK_MULTI_INPUT)
10 *
11 * 0e8f:0003 "GreenAsia Inc. USB Joystick "
Al Virod36b6912011-12-29 17:09:01 -050012 * - tested with König Gaming gamepad
Anssi Hannula20eb1272007-01-11 16:51:18 +020013 *
Anssi Hannula27a9c172009-02-27 23:47:00 +020014 * 0e8f:0003 "GASIA USB Gamepad"
Al Virod36b6912011-12-29 17:09:01 -050015 * - another version of the König gamepad
Anssi Hannula27a9c172009-02-27 23:47:00 +020016 *
Michael Karcheraaca9cc2013-01-17 11:06:09 +010017 * 0f30:0111 "Saitek Color Rumble Pad"
18 *
Anssi Hannula27a9c172009-02-27 23:47:00 +020019 * Copyright (c) 2007, 2009 Anssi Hannula <anssi.hannula@gmail.com>
Anssi Hannula20eb1272007-01-11 16:51:18 +020020 */
21
22/*
23 * This program is free software; you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation; either version 2 of the License, or
26 * (at your option) any later version.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
32 *
33 * You should have received a copy of the GNU General Public License
34 * along with this program; if not, write to the Free Software
35 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
36 */
37
38
39/* #define DEBUG */
40
41#define debug(format, arg...) pr_debug("hid-plff: " format "\n" , ## arg)
42
43#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Paul Gortmaker8f86a2c2011-07-03 13:39:48 -040045#include <linux/module.h>
Anssi Hannula20eb1272007-01-11 16:51:18 +020046#include <linux/usb.h>
47#include <linux/hid.h>
Jiri Slaby5f022292008-09-18 19:43:32 +020048
49#include "hid-ids.h"
50
51#ifdef CONFIG_PANTHERLORD_FF
52#include "usbhid/usbhid.h"
Anssi Hannula20eb1272007-01-11 16:51:18 +020053
54struct plff_device {
55 struct hid_report *report;
Michael Karcheraaca9cc2013-01-17 11:06:09 +010056 s32 maxval;
Anssi Hannula27a9c172009-02-27 23:47:00 +020057 s32 *strong;
58 s32 *weak;
Anssi Hannula20eb1272007-01-11 16:51:18 +020059};
60
61static int hid_plff_play(struct input_dev *dev, void *data,
62 struct ff_effect *effect)
63{
Dmitry Torokhove0712982007-05-09 10:17:31 +020064 struct hid_device *hid = input_get_drvdata(dev);
Anssi Hannula20eb1272007-01-11 16:51:18 +020065 struct plff_device *plff = data;
66 int left, right;
67
68 left = effect->u.rumble.strong_magnitude;
69 right = effect->u.rumble.weak_magnitude;
70 debug("called with 0x%04x 0x%04x", left, right);
71
Michael Karcheraaca9cc2013-01-17 11:06:09 +010072 left = left * plff->maxval / 0xffff;
73 right = right * plff->maxval / 0xffff;
Anssi Hannula20eb1272007-01-11 16:51:18 +020074
Anssi Hannula27a9c172009-02-27 23:47:00 +020075 *plff->strong = left;
76 *plff->weak = right;
Anssi Hannula20eb1272007-01-11 16:51:18 +020077 debug("running with 0x%02x 0x%02x", left, right);
78 usbhid_submit_report(hid, plff->report, USB_DIR_OUT);
79
80 return 0;
81}
82
Jiri Slaby5f022292008-09-18 19:43:32 +020083static int plff_init(struct hid_device *hid)
Anssi Hannula20eb1272007-01-11 16:51:18 +020084{
85 struct plff_device *plff;
86 struct hid_report *report;
87 struct hid_input *hidinput;
88 struct list_head *report_list =
89 &hid->report_enum[HID_OUTPUT_REPORT].report_list;
90 struct list_head *report_ptr = report_list;
91 struct input_dev *dev;
92 int error;
Michael Karcheraaca9cc2013-01-17 11:06:09 +010093 s32 maxval;
Anssi Hannula27a9c172009-02-27 23:47:00 +020094 s32 *strong;
95 s32 *weak;
Anssi Hannula20eb1272007-01-11 16:51:18 +020096
Anssi Hannula5edc41ee2007-09-19 16:13:20 +020097 /* The device contains one output report per physical device, all
98 containing 1 field, which contains 4 ff00.0002 usages and 4 16bit
99 absolute values.
Anssi Hannula20eb1272007-01-11 16:51:18 +0200100
Anssi Hannula5edc41ee2007-09-19 16:13:20 +0200101 The input reports also contain a field which contains
Anssi Hannula20eb1272007-01-11 16:51:18 +0200102 8 ff00.0001 usages and 8 boolean values. Their meaning is
Anssi Hannula27a9c172009-02-27 23:47:00 +0200103 currently unknown.
104
105 A version of the 0e8f:0003 exists that has all the values in
106 separate fields and misses the extra input field, thus resembling
107 Zeroplus (hid-zpff) devices.
108 */
Anssi Hannula20eb1272007-01-11 16:51:18 +0200109
110 if (list_empty(report_list)) {
Joe Perches4291ee32010-12-09 19:29:03 -0800111 hid_err(hid, "no output reports found\n");
Anssi Hannula20eb1272007-01-11 16:51:18 +0200112 return -ENODEV;
113 }
114
115 list_for_each_entry(hidinput, &hid->inputs, list) {
116
117 report_ptr = report_ptr->next;
118
119 if (report_ptr == report_list) {
Joe Perches4291ee32010-12-09 19:29:03 -0800120 hid_err(hid, "required output report is missing\n");
Anssi Hannula20eb1272007-01-11 16:51:18 +0200121 return -ENODEV;
122 }
123
124 report = list_entry(report_ptr, struct hid_report, list);
125 if (report->maxfield < 1) {
Joe Perches4291ee32010-12-09 19:29:03 -0800126 hid_err(hid, "no fields in the report\n");
Anssi Hannula20eb1272007-01-11 16:51:18 +0200127 return -ENODEV;
128 }
129
Michael Karcheraaca9cc2013-01-17 11:06:09 +0100130 maxval = 0x7f;
Anssi Hannula27a9c172009-02-27 23:47:00 +0200131 if (report->field[0]->report_count >= 4) {
132 report->field[0]->value[0] = 0x00;
133 report->field[0]->value[1] = 0x00;
134 strong = &report->field[0]->value[2];
135 weak = &report->field[0]->value[3];
136 debug("detected single-field device");
137 } else if (report->maxfield >= 4 && report->field[0]->maxusage == 1 &&
138 report->field[0]->usage[0].hid == (HID_UP_LED | 0x43)) {
139 report->field[0]->value[0] = 0x00;
140 report->field[1]->value[0] = 0x00;
141 strong = &report->field[2]->value[0];
142 weak = &report->field[3]->value[0];
Michael Karcheraaca9cc2013-01-17 11:06:09 +0100143 if (hid->vendor == USB_VENDOR_ID_JESS2)
144 maxval = 0xff;
Anssi Hannula27a9c172009-02-27 23:47:00 +0200145 debug("detected 4-field device");
146 } else {
Joe Perches4291ee32010-12-09 19:29:03 -0800147 hid_err(hid, "not enough fields or values\n");
Anssi Hannula20eb1272007-01-11 16:51:18 +0200148 return -ENODEV;
149 }
150
151 plff = kzalloc(sizeof(struct plff_device), GFP_KERNEL);
152 if (!plff)
153 return -ENOMEM;
154
155 dev = hidinput->input;
156
157 set_bit(FF_RUMBLE, dev->ffbit);
158
159 error = input_ff_create_memless(dev, plff, hid_plff_play);
160 if (error) {
161 kfree(plff);
162 return error;
163 }
164
165 plff->report = report;
Anssi Hannula27a9c172009-02-27 23:47:00 +0200166 plff->strong = strong;
167 plff->weak = weak;
Michael Karcheraaca9cc2013-01-17 11:06:09 +0100168 plff->maxval = maxval;
Anssi Hannula27a9c172009-02-27 23:47:00 +0200169
170 *strong = 0x00;
171 *weak = 0x00;
Anssi Hannula20eb1272007-01-11 16:51:18 +0200172 usbhid_submit_report(hid, plff->report, USB_DIR_OUT);
173 }
174
Joe Perches4291ee32010-12-09 19:29:03 -0800175 hid_info(hid, "Force feedback for PantherLord/GreenAsia devices by Anssi Hannula <anssi.hannula@gmail.com>\n");
Anssi Hannula20eb1272007-01-11 16:51:18 +0200176
177 return 0;
178}
Jiri Slaby5f022292008-09-18 19:43:32 +0200179#else
180static inline int plff_init(struct hid_device *hid)
181{
182 return 0;
183}
184#endif
185
186static int pl_probe(struct hid_device *hdev, const struct hid_device_id *id)
187{
188 int ret;
189
190 if (id->driver_data)
191 hdev->quirks |= HID_QUIRK_MULTI_INPUT;
192
193 ret = hid_parse(hdev);
194 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800195 hid_err(hdev, "parse failed\n");
Jiri Slaby5f022292008-09-18 19:43:32 +0200196 goto err;
197 }
198
199 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
200 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800201 hid_err(hdev, "hw start failed\n");
Jiri Slaby5f022292008-09-18 19:43:32 +0200202 goto err;
203 }
204
205 plff_init(hdev);
206
207 return 0;
208err:
209 return ret;
210}
211
212static const struct hid_device_id pl_devices[] = {
213 { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PSX_ADAPTOR),
214 .driver_data = 1 }, /* Twin USB Joystick */
Jiri Kosina578f3a32008-11-20 15:55:38 +0100215 { HID_USB_DEVICE(USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PCS_ADAPTOR),
216 .driver_data = 1 }, /* Twin USB Joystick */
Anssi Hannula27a9c172009-02-27 23:47:00 +0200217 { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0003), },
Michael Karcheraaca9cc2013-01-17 11:06:09 +0100218 { HID_USB_DEVICE(USB_VENDOR_ID_JESS2, USB_DEVICE_ID_JESS2_COLOR_RUMBLE_PAD), },
Jiri Slaby5f022292008-09-18 19:43:32 +0200219 { }
220};
221MODULE_DEVICE_TABLE(hid, pl_devices);
222
223static struct hid_driver pl_driver = {
224 .name = "pantherlord",
225 .id_table = pl_devices,
226 .probe = pl_probe,
227};
H Hartley Sweetenf4254582012-12-17 15:28:26 -0700228module_hid_driver(pl_driver);
Jiri Slaby5f022292008-09-18 19:43:32 +0200229
Jiri Slaby5f022292008-09-18 19:43:32 +0200230MODULE_LICENSE("GPL");