max2165: trival fix for some -Wuninitialized warning
[pandora-kernel.git] / drivers / hid / hid-zpff.c
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
24 #include <linux/hid.h>
25 #include <linux/input.h>
26 #include <linux/slab.h>
27 #include <linux/usb.h>
28 #include <linux/module.h>
29
30 #include "hid-ids.h"
31
32 #ifdef CONFIG_ZEROPLUS_FF
33 #include "usbhid/usbhid.h"
34
35 struct zpff_device {
36         struct hid_report *report;
37 };
38
39 static int zpff_play(struct input_dev *dev, void *data,
40                          struct ff_effect *effect)
41 {
42         struct hid_device *hid = input_get_drvdata(dev);
43         struct zpff_device *zpff = data;
44         int left, right;
45
46         /*
47          * The following is specified the other way around in the Zeroplus
48          * datasheet but the order below is correct for the XFX Executioner;
49          * however it is possible that the XFX Executioner is an exception
50          */
51
52         left = effect->u.rumble.strong_magnitude;
53         right = effect->u.rumble.weak_magnitude;
54         dbg_hid("called with 0x%04x 0x%04x\n", left, right);
55
56         left = left * 0x7f / 0xffff;
57         right = right * 0x7f / 0xffff;
58
59         zpff->report->field[2]->value[0] = left;
60         zpff->report->field[3]->value[0] = right;
61         dbg_hid("running with 0x%02x 0x%02x\n", left, right);
62         usbhid_submit_report(hid, zpff->report, USB_DIR_OUT);
63
64         return 0;
65 }
66
67 static int zpff_init(struct hid_device *hid)
68 {
69         struct zpff_device *zpff;
70         struct hid_report *report;
71         struct hid_input *hidinput = list_entry(hid->inputs.next,
72                                                 struct hid_input, list);
73         struct input_dev *dev = hidinput->input;
74         int i, error;
75
76         for (i = 0; i < 4; i++) {
77                 report = hid_validate_values(hid, HID_OUTPUT_REPORT, 0, i, 1);
78                 if (!report)
79                         return -ENODEV;
80         }
81
82         zpff = kzalloc(sizeof(struct zpff_device), GFP_KERNEL);
83         if (!zpff)
84                 return -ENOMEM;
85
86         set_bit(FF_RUMBLE, dev->ffbit);
87
88         error = input_ff_create_memless(dev, zpff, zpff_play);
89         if (error) {
90                 kfree(zpff);
91                 return error;
92         }
93
94         zpff->report = report;
95         zpff->report->field[0]->value[0] = 0x00;
96         zpff->report->field[1]->value[0] = 0x02;
97         zpff->report->field[2]->value[0] = 0x00;
98         zpff->report->field[3]->value[0] = 0x00;
99         usbhid_submit_report(hid, zpff->report, USB_DIR_OUT);
100
101         hid_info(hid, "force feedback for Zeroplus based devices by Anssi Hannula <anssi.hannula@gmail.com>\n");
102
103         return 0;
104 }
105 #else
106 static inline int zpff_init(struct hid_device *hid)
107 {
108         return 0;
109 }
110 #endif
111
112 static int zp_probe(struct hid_device *hdev, const struct hid_device_id *id)
113 {
114         int ret;
115
116         ret = hid_parse(hdev);
117         if (ret) {
118                 hid_err(hdev, "parse failed\n");
119                 goto err;
120         }
121
122         ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
123         if (ret) {
124                 hid_err(hdev, "hw start failed\n");
125                 goto err;
126         }
127
128         zpff_init(hdev);
129
130         return 0;
131 err:
132         return ret;
133 }
134
135 static const struct hid_device_id zp_devices[] = {
136         { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) },
137         { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) },
138         { }
139 };
140 MODULE_DEVICE_TABLE(hid, zp_devices);
141
142 static struct hid_driver zp_driver = {
143         .name = "zeroplus",
144         .id_table = zp_devices,
145         .probe = zp_probe,
146 };
147
148 static int __init zp_init(void)
149 {
150         return hid_register_driver(&zp_driver);
151 }
152
153 static void __exit zp_exit(void)
154 {
155         hid_unregister_driver(&zp_driver);
156 }
157
158 module_init(zp_init);
159 module_exit(zp_exit);
160 MODULE_LICENSE("GPL");