blob: 0f95c96b70f810114f770d129dd3dd66a12185c6 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01002/*
3 * Force feedback support for GreenAsia (Product ID 0x12) based devices
4 *
5 * The devices are distributed under various names and the same USB device ID
6 * can be used in many game controllers.
7 *
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01008 * 0e8f:0012 "GreenAsia Inc. USB Joystick "
9 * - tested with MANTA Warior MM816 and SpeedLink Strike2 SL-6635.
10 *
11 * Copyright (c) 2008 Lukasz Lubojanski <lukasz@lubojanski.info>
12 */
13
14/*
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010015 */
16
17#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010019#include <linux/hid.h>
Paul Gortmaker8f86a2c2011-07-03 13:39:48 -040020#include <linux/module.h>
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010021#include "hid-ids.h"
Jiri Kosina0f6f4312009-05-15 15:46:44 +020022
23#ifdef CONFIG_GREENASIA_FF
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010024
25struct gaff_device {
26 struct hid_report *report;
27};
28
29static int hid_gaff_play(struct input_dev *dev, void *data,
30 struct ff_effect *effect)
31{
32 struct hid_device *hid = input_get_drvdata(dev);
33 struct gaff_device *gaff = data;
34 int left, right;
35
36 left = effect->u.rumble.strong_magnitude;
37 right = effect->u.rumble.weak_magnitude;
38
39 dbg_hid("called with 0x%04x 0x%04x", left, right);
40
41 left = left * 0xfe / 0xffff;
42 right = right * 0xfe / 0xffff;
43
44 gaff->report->field[0]->value[0] = 0x51;
45 gaff->report->field[0]->value[1] = 0x0;
46 gaff->report->field[0]->value[2] = right;
47 gaff->report->field[0]->value[3] = 0;
48 gaff->report->field[0]->value[4] = left;
49 gaff->report->field[0]->value[5] = 0;
50 dbg_hid("running with 0x%02x 0x%02x", left, right);
Benjamin Tissoiresd88142722013-02-25 11:31:46 +010051 hid_hw_request(hid, gaff->report, HID_REQ_SET_REPORT);
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010052
53 gaff->report->field[0]->value[0] = 0xfa;
54 gaff->report->field[0]->value[1] = 0xfe;
55 gaff->report->field[0]->value[2] = 0x0;
56 gaff->report->field[0]->value[4] = 0x0;
57
Benjamin Tissoiresd88142722013-02-25 11:31:46 +010058 hid_hw_request(hid, gaff->report, HID_REQ_SET_REPORT);
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010059
60 return 0;
61}
62
63static int gaff_init(struct hid_device *hid)
64{
65 struct gaff_device *gaff;
66 struct hid_report *report;
67 struct hid_input *hidinput = list_entry(hid->inputs.next,
68 struct hid_input, list);
69 struct list_head *report_list =
70 &hid->report_enum[HID_OUTPUT_REPORT].report_list;
71 struct list_head *report_ptr = report_list;
72 struct input_dev *dev = hidinput->input;
73 int error;
74
75 if (list_empty(report_list)) {
Joe Perches4291ee32010-12-09 19:29:03 -080076 hid_err(hid, "no output reports found\n");
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010077 return -ENODEV;
78 }
79
80 report_ptr = report_ptr->next;
81
82 report = list_entry(report_ptr, struct hid_report, list);
83 if (report->maxfield < 1) {
Joe Perches4291ee32010-12-09 19:29:03 -080084 hid_err(hid, "no fields in the report\n");
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010085 return -ENODEV;
86 }
87
88 if (report->field[0]->report_count < 6) {
Joe Perches4291ee32010-12-09 19:29:03 -080089 hid_err(hid, "not enough values in the field\n");
Lukasz Lubojanski42859e02008-12-11 22:07:59 +010090 return -ENODEV;
91 }
92
93 gaff = kzalloc(sizeof(struct gaff_device), GFP_KERNEL);
94 if (!gaff)
95 return -ENOMEM;
96
97 set_bit(FF_RUMBLE, dev->ffbit);
98
99 error = input_ff_create_memless(dev, gaff, hid_gaff_play);
100 if (error) {
101 kfree(gaff);
102 return error;
103 }
104
105 gaff->report = report;
106 gaff->report->field[0]->value[0] = 0x51;
107 gaff->report->field[0]->value[1] = 0x00;
108 gaff->report->field[0]->value[2] = 0x00;
109 gaff->report->field[0]->value[3] = 0x00;
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100110 hid_hw_request(hid, gaff->report, HID_REQ_SET_REPORT);
Lukasz Lubojanski42859e02008-12-11 22:07:59 +0100111
112 gaff->report->field[0]->value[0] = 0xfa;
113 gaff->report->field[0]->value[1] = 0xfe;
114
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100115 hid_hw_request(hid, gaff->report, HID_REQ_SET_REPORT);
Lukasz Lubojanski42859e02008-12-11 22:07:59 +0100116
Joe Perches4291ee32010-12-09 19:29:03 -0800117 hid_info(hid, "Force Feedback for GreenAsia 0x12 devices by Lukasz Lubojanski <lukasz@lubojanski.info>\n");
Lukasz Lubojanski42859e02008-12-11 22:07:59 +0100118
119 return 0;
120}
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200121#else
122static inline int gaff_init(struct hid_device *hdev)
123{
124 return 0;
125}
126#endif
Lukasz Lubojanski42859e02008-12-11 22:07:59 +0100127
128static int ga_probe(struct hid_device *hdev, const struct hid_device_id *id)
129{
130 int ret;
131
132 dev_dbg(&hdev->dev, "Greenasia HID hardware probe...");
133
134 ret = hid_parse(hdev);
135 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800136 hid_err(hdev, "parse failed\n");
Lukasz Lubojanski42859e02008-12-11 22:07:59 +0100137 goto err;
138 }
139
140 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
141 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800142 hid_err(hdev, "hw start failed\n");
Lukasz Lubojanski42859e02008-12-11 22:07:59 +0100143 goto err;
144 }
145
146 gaff_init(hdev);
147
148 return 0;
149err:
150 return ret;
151}
152
153static const struct hid_device_id ga_devices[] = {
154 { HID_USB_DEVICE(USB_VENDOR_ID_GREENASIA, 0x0012), },
155 { }
156};
157MODULE_DEVICE_TABLE(hid, ga_devices);
158
159static struct hid_driver ga_driver = {
160 .name = "greenasia",
161 .id_table = ga_devices,
162 .probe = ga_probe,
163};
H Hartley Sweetenf4254582012-12-17 15:28:26 -0700164module_hid_driver(ga_driver);
Lukasz Lubojanski42859e02008-12-11 22:07:59 +0100165
Lukasz Lubojanski42859e02008-12-11 22:07:59 +0100166MODULE_LICENSE("GPL");