]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/hid/hid-zpff.c
Merge branch 'kvm-arm64/fixes-3.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.git] / drivers / hid / hid-zpff.c
CommitLineData
bb3caf7f
AH
1/*
2 * Force feedback support for Zeroplus based devices
3 *
4 * Copyright (c) 2005, 2006 Anssi Hannula <anssi.hannula@gmail.com>
5 */
6
7/*
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23
987fbc1f 24#include <linux/hid.h>
bb3caf7f 25#include <linux/input.h>
5a0e3ad6 26#include <linux/slab.h>
8f86a2c3 27#include <linux/module.h>
987fbc1f
JS
28
29#include "hid-ids.h"
30
0f6f4319 31#ifdef CONFIG_ZEROPLUS_FF
bb3caf7f
AH
32
33struct zpff_device {
34 struct hid_report *report;
35};
36
987fbc1f 37static int zpff_play(struct input_dev *dev, void *data,
bb3caf7f
AH
38 struct ff_effect *effect)
39{
e0712985 40 struct hid_device *hid = input_get_drvdata(dev);
bb3caf7f
AH
41 struct zpff_device *zpff = data;
42 int left, right;
43
44 /*
45 * The following is specified the other way around in the Zeroplus
46 * datasheet but the order below is correct for the XFX Executioner;
47 * however it is possible that the XFX Executioner is an exception
48 */
49
50 left = effect->u.rumble.strong_magnitude;
51 right = effect->u.rumble.weak_magnitude;
58037eb9 52 dbg_hid("called with 0x%04x 0x%04x\n", left, right);
bb3caf7f
AH
53
54 left = left * 0x7f / 0xffff;
55 right = right * 0x7f / 0xffff;
56
57 zpff->report->field[2]->value[0] = left;
58 zpff->report->field[3]->value[0] = right;
58037eb9 59 dbg_hid("running with 0x%02x 0x%02x\n", left, right);
d8814272 60 hid_hw_request(hid, zpff->report, HID_REQ_SET_REPORT);
bb3caf7f
AH
61
62 return 0;
63}
64
987fbc1f 65static int zpff_init(struct hid_device *hid)
bb3caf7f
AH
66{
67 struct zpff_device *zpff;
68 struct hid_report *report;
69 struct hid_input *hidinput = list_entry(hid->inputs.next,
70 struct hid_input, list);
71 struct list_head *report_list =
72 &hid->report_enum[HID_OUTPUT_REPORT].report_list;
73 struct input_dev *dev = hidinput->input;
74 int error;
75
76 if (list_empty(report_list)) {
4291ee30 77 hid_err(hid, "no output report found\n");
bb3caf7f
AH
78 return -ENODEV;
79 }
80
81 report = list_entry(report_list->next, struct hid_report, list);
82
83 if (report->maxfield < 4) {
4291ee30 84 hid_err(hid, "not enough fields in report\n");
bb3caf7f
AH
85 return -ENODEV;
86 }
87
88 zpff = kzalloc(sizeof(struct zpff_device), GFP_KERNEL);
89 if (!zpff)
90 return -ENOMEM;
91
92 set_bit(FF_RUMBLE, dev->ffbit);
93
987fbc1f 94 error = input_ff_create_memless(dev, zpff, zpff_play);
bb3caf7f
AH
95 if (error) {
96 kfree(zpff);
97 return error;
98 }
99
100 zpff->report = report;
101 zpff->report->field[0]->value[0] = 0x00;
102 zpff->report->field[1]->value[0] = 0x02;
103 zpff->report->field[2]->value[0] = 0x00;
104 zpff->report->field[3]->value[0] = 0x00;
d8814272 105 hid_hw_request(hid, zpff->report, HID_REQ_SET_REPORT);
bb3caf7f 106
4291ee30 107 hid_info(hid, "force feedback for Zeroplus based devices by Anssi Hannula <anssi.hannula@gmail.com>\n");
bb3caf7f
AH
108
109 return 0;
110}
0f6f4319
JK
111#else
112static inline int zpff_init(struct hid_device *hid)
113{
114 return 0;
115}
116#endif
987fbc1f
JS
117
118static int zp_probe(struct hid_device *hdev, const struct hid_device_id *id)
119{
120 int ret;
121
122 ret = hid_parse(hdev);
123 if (ret) {
4291ee30 124 hid_err(hdev, "parse failed\n");
987fbc1f
JS
125 goto err;
126 }
127
128 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
129 if (ret) {
4291ee30 130 hid_err(hdev, "hw start failed\n");
987fbc1f
JS
131 goto err;
132 }
133
134 zpff_init(hdev);
135
136 return 0;
137err:
138 return ret;
139}
140
141static const struct hid_device_id zp_devices[] = {
142 { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) },
143 { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) },
144 { }
145};
146MODULE_DEVICE_TABLE(hid, zp_devices);
147
148static struct hid_driver zp_driver = {
149 .name = "zeroplus",
150 .id_table = zp_devices,
151 .probe = zp_probe,
152};
f425458e 153module_hid_driver(zp_driver);
987fbc1f 154
987fbc1f 155MODULE_LICENSE("GPL");