1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Force feedback support for ACRUX game controllers
5 * From what I have gathered, these devices are mass produced in China
6 * by several vendors. They often share the same design as the original
9 * 1a34:0802 "ACRUX USB GAMEPAD 8116"
10 * - tested with an EXEQ EQ-PCU-02090 game controller.
12 * Copyright (c) 2010 Sergei Kolzun <x0r@dv-life.ru>
18 #include <linux/input.h>
19 #include <linux/slab.h>
20 #include <linux/hid.h>
21 #include <linux/module.h>
25 #ifdef CONFIG_HID_ACRUX_FF
28 struct hid_report
*report
;
31 static int axff_play(struct input_dev
*dev
, void *data
, struct ff_effect
*effect
)
33 struct hid_device
*hid
= input_get_drvdata(dev
);
34 struct axff_device
*axff
= data
;
35 struct hid_report
*report
= axff
->report
;
40 left
= effect
->u
.rumble
.strong_magnitude
;
41 right
= effect
->u
.rumble
.weak_magnitude
;
43 dbg_hid("called with 0x%04x 0x%04x", left
, right
);
45 left
= left
* 0xff / 0xffff;
46 right
= right
* 0xff / 0xffff;
48 for (i
= 0; i
< report
->maxfield
; i
++) {
49 for (j
= 0; j
< report
->field
[i
]->report_count
; j
++) {
50 report
->field
[i
]->value
[j
] =
51 field_count
% 2 ? right
: left
;
56 dbg_hid("running with 0x%02x 0x%02x", left
, right
);
57 hid_hw_request(hid
, axff
->report
, HID_REQ_SET_REPORT
);
62 static int axff_init(struct hid_device
*hid
)
64 struct axff_device
*axff
;
65 struct hid_report
*report
;
66 struct hid_input
*hidinput
;
67 struct list_head
*report_list
=&hid
->report_enum
[HID_OUTPUT_REPORT
].report_list
;
68 struct input_dev
*dev
;
73 if (list_empty(&hid
->inputs
)) {
74 hid_err(hid
, "no inputs found\n");
77 hidinput
= list_first_entry(&hid
->inputs
, struct hid_input
, list
);
78 dev
= hidinput
->input
;
80 if (list_empty(report_list
)) {
81 hid_err(hid
, "no output reports found\n");
85 report
= list_first_entry(report_list
, struct hid_report
, list
);
86 for (i
= 0; i
< report
->maxfield
; i
++) {
87 for (j
= 0; j
< report
->field
[i
]->report_count
; j
++) {
88 report
->field
[i
]->value
[j
] = 0x00;
93 if (field_count
< 4 && hid
->product
!= 0xf705) {
94 hid_err(hid
, "not enough fields in the report: %d\n",
99 axff
= kzalloc(sizeof(struct axff_device
), GFP_KERNEL
);
103 set_bit(FF_RUMBLE
, dev
->ffbit
);
105 error
= input_ff_create_memless(dev
, axff
, axff_play
);
109 axff
->report
= report
;
110 hid_hw_request(hid
, axff
->report
, HID_REQ_SET_REPORT
);
112 hid_info(hid
, "Force Feedback for ACRUX game controllers by Sergei Kolzun <x0r@dv-life.ru>\n");
121 static inline int axff_init(struct hid_device
*hid
)
127 static int ax_probe(struct hid_device
*hdev
, const struct hid_device_id
*id
)
131 dev_dbg(&hdev
->dev
, "ACRUX HID hardware probe...\n");
133 error
= hid_parse(hdev
);
135 hid_err(hdev
, "parse failed\n");
139 error
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
& ~HID_CONNECT_FF
);
141 hid_err(hdev
, "hw start failed\n");
145 error
= axff_init(hdev
);
148 * Do not fail device initialization completely as device
149 * may still be partially operable, just warn.
152 "Failed to enable force feedback support, error: %d\n",
157 * We need to start polling device right away, otherwise
158 * it will go into a coma.
160 error
= hid_hw_open(hdev
);
162 dev_err(&hdev
->dev
, "hw open failed\n");
170 static void ax_remove(struct hid_device
*hdev
)
176 static const struct hid_device_id ax_devices
[] = {
177 { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX
, 0x0802), },
178 { HID_USB_DEVICE(USB_VENDOR_ID_ACRUX
, 0xf705), },
181 MODULE_DEVICE_TABLE(hid
, ax_devices
);
183 static struct hid_driver ax_driver
= {
185 .id_table
= ax_devices
,
189 module_hid_driver(ax_driver
);
191 MODULE_AUTHOR("Sergei Kolzun");
192 MODULE_DESCRIPTION("Force feedback support for ACRUX game controllers");
193 MODULE_LICENSE("GPL");