blob: 843aed4dec80a8378f42f24d71f56ed0c604e0b5 [file] [log] [blame]
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +02001/*
2 * Force feedback support for ACRUX game controllers
3 *
4 * From what I have gathered, these devices are mass produced in China
5 * by several vendors. They often share the same design as the original
6 * Xbox 360 controller.
7 *
8 * 1a34:0802 "ACRUX USB GAMEPAD 8116"
Sergei Kolzunb55ebc22011-08-04 00:25:57 -07009 * - tested with an EXEQ EQ-PCU-02090 game controller.
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020010 *
11 * Copyright (c) 2010 Sergei Kolzun <x0r@dv-life.ru>
12 */
13
14/*
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 */
29
30#include <linux/input.h>
31#include <linux/slab.h>
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020032#include <linux/hid.h>
Paul Gortmaker8f86a2c2011-07-03 13:39:48 -040033#include <linux/module.h>
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020034
35#include "hid-ids.h"
Dmitry Torokhov0ae43812011-03-11 00:27:34 -080036
37#ifdef CONFIG_HID_ACRUX_FF
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020038
39struct axff_device {
40 struct hid_report *report;
41};
42
43static int axff_play(struct input_dev *dev, void *data, struct ff_effect *effect)
44{
45 struct hid_device *hid = input_get_drvdata(dev);
46 struct axff_device *axff = data;
Sergei Kolzunb55ebc22011-08-04 00:25:57 -070047 struct hid_report *report = axff->report;
48 int field_count = 0;
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020049 int left, right;
Sergei Kolzunb55ebc22011-08-04 00:25:57 -070050 int i, j;
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020051
52 left = effect->u.rumble.strong_magnitude;
53 right = effect->u.rumble.weak_magnitude;
54
55 dbg_hid("called with 0x%04x 0x%04x", left, right);
56
57 left = left * 0xff / 0xffff;
58 right = right * 0xff / 0xffff;
59
Sergei Kolzunb55ebc22011-08-04 00:25:57 -070060 for (i = 0; i < report->maxfield; i++) {
61 for (j = 0; j < report->field[i]->report_count; j++) {
62 report->field[i]->value[j] =
63 field_count % 2 ? right : left;
64 field_count++;
65 }
66 }
67
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020068 dbg_hid("running with 0x%02x 0x%02x", left, right);
Benjamin Tissoiresd88142722013-02-25 11:31:46 +010069 hid_hw_request(hid, axff->report, HID_REQ_SET_REPORT);
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020070
71 return 0;
72}
73
74static int axff_init(struct hid_device *hid)
75{
76 struct axff_device *axff;
77 struct hid_report *report;
Alan Stern7b5e3ad2019-10-03 14:53:59 -040078 struct hid_input *hidinput;
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020079 struct list_head *report_list =&hid->report_enum[HID_OUTPUT_REPORT].report_list;
Alan Stern7b5e3ad2019-10-03 14:53:59 -040080 struct input_dev *dev;
Sergei Kolzunb55ebc22011-08-04 00:25:57 -070081 int field_count = 0;
82 int i, j;
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020083 int error;
84
Alan Stern7b5e3ad2019-10-03 14:53:59 -040085 if (list_empty(&hid->inputs)) {
86 hid_err(hid, "no inputs found\n");
87 return -ENODEV;
88 }
89 hidinput = list_first_entry(&hid->inputs, struct hid_input, list);
90 dev = hidinput->input;
91
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020092 if (list_empty(report_list)) {
Joe Perches4291ee32010-12-09 19:29:03 -080093 hid_err(hid, "no output reports found\n");
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +020094 return -ENODEV;
95 }
96
97 report = list_first_entry(report_list, struct hid_report, list);
Sergei Kolzunb55ebc22011-08-04 00:25:57 -070098 for (i = 0; i < report->maxfield; i++) {
99 for (j = 0; j < report->field[i]->report_count; j++) {
100 report->field[i]->value[j] = 0x00;
101 field_count++;
102 }
103 }
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200104
Tristan Ricee17f5d762013-11-12 19:06:23 +0100105 if (field_count < 4 && hid->product != 0xf705) {
Sergei Kolzunb55ebc22011-08-04 00:25:57 -0700106 hid_err(hid, "not enough fields in the report: %d\n",
107 field_count);
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200108 return -ENODEV;
109 }
110
111 axff = kzalloc(sizeof(struct axff_device), GFP_KERNEL);
112 if (!axff)
113 return -ENOMEM;
114
115 set_bit(FF_RUMBLE, dev->ffbit);
116
117 error = input_ff_create_memless(dev, axff, axff_play);
118 if (error)
119 goto err_free_mem;
120
121 axff->report = report;
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100122 hid_hw_request(hid, axff->report, HID_REQ_SET_REPORT);
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200123
Sergei Kolzunb55ebc22011-08-04 00:25:57 -0700124 hid_info(hid, "Force Feedback for ACRUX game controllers by Sergei Kolzun <x0r@dv-life.ru>\n");
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200125
126 return 0;
127
128err_free_mem:
129 kfree(axff);
130 return error;
131}
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800132#else
133static inline int axff_init(struct hid_device *hid)
134{
135 return 0;
136}
137#endif
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200138
139static int ax_probe(struct hid_device *hdev, const struct hid_device_id *id)
140{
141 int error;
142
Joe Perches4291ee32010-12-09 19:29:03 -0800143 dev_dbg(&hdev->dev, "ACRUX HID hardware probe...\n");
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200144
145 error = hid_parse(hdev);
146 if (error) {
Joe Perches4291ee32010-12-09 19:29:03 -0800147 hid_err(hdev, "parse failed\n");
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200148 return error;
149 }
150
151 error = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
152 if (error) {
Joe Perches4291ee32010-12-09 19:29:03 -0800153 hid_err(hdev, "hw start failed\n");
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200154 return error;
155 }
156
157 error = axff_init(hdev);
158 if (error) {
159 /*
160 * Do not fail device initialization completely as device
161 * may still be partially operable, just warn.
162 */
Joe Perches4291ee32010-12-09 19:29:03 -0800163 hid_warn(hdev,
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200164 "Failed to enable force feedback support, error: %d\n",
165 error);
166 }
167
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800168 /*
169 * We need to start polling device right away, otherwise
170 * it will go into a coma.
171 */
172 error = hid_hw_open(hdev);
173 if (error) {
174 dev_err(&hdev->dev, "hw open failed\n");
Axel Linb30d89d2011-07-14 13:07:51 +0800175 hid_hw_stop(hdev);
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800176 return error;
177 }
178
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200179 return 0;
180}
181
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800182static void ax_remove(struct hid_device *hdev)
183{
184 hid_hw_close(hdev);
185 hid_hw_stop(hdev);
186}
187
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200188static const struct hid_device_id ax_devices[] = {
189 { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802), },
Tristan Ricee17f5d762013-11-12 19:06:23 +0100190 { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705), },
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200191 { }
192};
193MODULE_DEVICE_TABLE(hid, ax_devices);
194
195static struct hid_driver ax_driver = {
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800196 .name = "acrux",
197 .id_table = ax_devices,
198 .probe = ax_probe,
199 .remove = ax_remove,
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200200};
H Hartley Sweetenf4254582012-12-17 15:28:26 -0700201module_hid_driver(ax_driver);
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200202
203MODULE_AUTHOR("Sergei Kolzun");
204MODULE_DESCRIPTION("Force feedback support for ACRUX game controllers");
205MODULE_LICENSE("GPL");