]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/usb/input/wacom_sys.c
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
[net-next-2.6.git] / drivers / usb / input / wacom_sys.c
CommitLineData
3bea733a
PC
1/*
2 * drivers/usb/input/wacom_sys.c
3 *
4 * USB Wacom Graphire and Wacom Intuos tablet support - system specific code
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
14#include "wacom.h"
15#include "wacom_wac.h"
16
17#define USB_REQ_GET_REPORT 0x01
18#define USB_REQ_SET_REPORT 0x09
19
20static int usb_get_report(struct usb_interface *intf, unsigned char type,
21 unsigned char id, void *buf, int size)
22{
23 return usb_control_msg(interface_to_usbdev(intf),
24 usb_rcvctrlpipe(interface_to_usbdev(intf), 0),
25 USB_REQ_GET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
26 (type << 8) + id, intf->altsetting[0].desc.bInterfaceNumber,
27 buf, size, 100);
28}
29
30static int usb_set_report(struct usb_interface *intf, unsigned char type,
31 unsigned char id, void *buf, int size)
32{
33 return usb_control_msg(interface_to_usbdev(intf),
34 usb_sndctrlpipe(interface_to_usbdev(intf), 0),
35 USB_REQ_SET_REPORT, USB_TYPE_CLASS | USB_RECIP_INTERFACE,
36 (type << 8) + id, intf->altsetting[0].desc.bInterfaceNumber,
37 buf, size, 1000);
38}
39
40static struct input_dev * get_input_dev(struct wacom_combo *wcombo)
41{
42 return wcombo->wacom->dev;
43}
44
7d12e780 45void wacom_sys_irq(struct urb *urb)
3bea733a
PC
46{
47 struct wacom *wacom = urb->context;
48 struct wacom_combo wcombo;
49 int retval;
50
51 switch (urb->status) {
52 case 0:
53 /* success */
54 break;
55 case -ECONNRESET:
56 case -ENOENT:
57 case -ESHUTDOWN:
58 /* this urb is terminated, clean up */
59 dbg("%s - urb shutting down with status: %d", __FUNCTION__, urb->status);
60 return;
61 default:
62 dbg("%s - nonzero urb status received: %d", __FUNCTION__, urb->status);
63 goto exit;
64 }
65
66 wcombo.wacom = wacom;
67 wcombo.urb = urb;
3bea733a
PC
68
69 if (wacom_wac_irq(wacom->wacom_wac, (void *)&wcombo))
70 input_sync(get_input_dev(&wcombo));
71
72 exit:
73 retval = usb_submit_urb (urb, GFP_ATOMIC);
74 if (retval)
75 err ("%s - usb_submit_urb failed with result %d",
76 __FUNCTION__, retval);
77}
78
79void wacom_report_key(void *wcombo, unsigned int key_type, int key_data)
80{
81 input_report_key(get_input_dev((struct wacom_combo *)wcombo), key_type, key_data);
82 return;
83}
84
85void wacom_report_abs(void *wcombo, unsigned int abs_type, int abs_data)
86{
87 input_report_abs(get_input_dev((struct wacom_combo *)wcombo), abs_type, abs_data);
88 return;
89}
90
91void wacom_report_rel(void *wcombo, unsigned int rel_type, int rel_data)
92{
93 input_report_rel(get_input_dev((struct wacom_combo *)wcombo), rel_type, rel_data);
94 return;
95}
96
97void wacom_input_event(void *wcombo, unsigned int type, unsigned int code, int value)
98{
99 input_event(get_input_dev((struct wacom_combo *)wcombo), type, code, value);
100 return;
101}
102
103__u16 wacom_be16_to_cpu(unsigned char *data)
104{
105 __u16 value;
106 value = be16_to_cpu(*(__be16 *) data);
107 return value;
108}
109
110__u16 wacom_le16_to_cpu(unsigned char *data)
111{
112 __u16 value;
113 value = be16_to_cpu(*(__be16 *) data);
114 return value;
115}
116
3bea733a
PC
117void wacom_input_sync(void *wcombo)
118{
119 input_sync(get_input_dev((struct wacom_combo *)wcombo));
120 return;
121}
122
123static int wacom_open(struct input_dev *dev)
124{
125 struct wacom *wacom = dev->private;
126
127 wacom->irq->dev = wacom->usbdev;
128 if (usb_submit_urb(wacom->irq, GFP_KERNEL))
129 return -EIO;
130
131 return 0;
132}
133
134static void wacom_close(struct input_dev *dev)
135{
136 struct wacom *wacom = dev->private;
137
138 usb_kill_urb(wacom->irq);
139}
140
141void input_dev_g4(struct input_dev *input_dev, struct wacom_wac *wacom_wac)
142{
143 input_dev->evbit[0] |= BIT(EV_MSC);
144 input_dev->mscbit[0] |= BIT(MSC_SERIAL);
145 input_dev->keybit[LONG(BTN_DIGI)] |= BIT(BTN_TOOL_FINGER);
146 input_dev->keybit[LONG(BTN_LEFT)] |= BIT(BTN_0) | BIT(BTN_1) | BIT(BTN_2) | BIT(BTN_3) | BIT(BTN_4) | BIT(BTN_5) | BIT(BTN_6) | BIT(BTN_7);
147}
148
149void input_dev_g(struct input_dev *input_dev, struct wacom_wac *wacom_wac)
150{
151 input_dev->evbit[0] |= BIT(EV_REL);
152 input_dev->relbit[0] |= BIT(REL_WHEEL);
153 input_dev->keybit[LONG(BTN_LEFT)] |= BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE);
154 input_dev->keybit[LONG(BTN_DIGI)] |= BIT(BTN_TOOL_RUBBER) | BIT(BTN_TOOL_MOUSE) | BIT(BTN_STYLUS2);
155 input_set_abs_params(input_dev, ABS_DISTANCE, 0, wacom_wac->features->distance_max, 0, 0);
156}
157
158void input_dev_i3(struct input_dev *input_dev, struct wacom_wac *wacom_wac)
159{
160 input_dev->keybit[LONG(BTN_DIGI)] |= BIT(BTN_TOOL_FINGER);
161 input_dev->keybit[LONG(BTN_LEFT)] |= BIT(BTN_0) | BIT(BTN_1) | BIT(BTN_2) | BIT(BTN_3) | BIT(BTN_4) | BIT(BTN_5) | BIT(BTN_6) | BIT(BTN_7);
162 input_set_abs_params(input_dev, ABS_RX, 0, 4097, 0, 0);
163 input_set_abs_params(input_dev, ABS_RY, 0, 4097, 0, 0);
164}
165
166void input_dev_i(struct input_dev *input_dev, struct wacom_wac *wacom_wac)
167{
168 input_dev->evbit[0] |= BIT(EV_MSC) | BIT(EV_REL);
169 input_dev->mscbit[0] |= BIT(MSC_SERIAL);
170 input_dev->relbit[0] |= BIT(REL_WHEEL);
171 input_dev->keybit[LONG(BTN_LEFT)] |= BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE) | BIT(BTN_SIDE) | BIT(BTN_EXTRA);
172 input_dev->keybit[LONG(BTN_DIGI)] |= BIT(BTN_TOOL_RUBBER) | BIT(BTN_TOOL_MOUSE) | BIT(BTN_TOOL_BRUSH)
173 | BIT(BTN_TOOL_PENCIL) | BIT(BTN_TOOL_AIRBRUSH) | BIT(BTN_TOOL_LENS) | BIT(BTN_STYLUS2);
174 input_set_abs_params(input_dev, ABS_DISTANCE, 0, wacom_wac->features->distance_max, 0, 0);
175 input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0);
176 input_set_abs_params(input_dev, ABS_TILT_X, 0, 127, 0, 0);
177 input_set_abs_params(input_dev, ABS_TILT_Y, 0, 127, 0, 0);
178 input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0);
179 input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0);
180}
181
182void input_dev_pl(struct input_dev *input_dev, struct wacom_wac *wacom_wac)
183{
184 input_dev->keybit[LONG(BTN_DIGI)] |= BIT(BTN_STYLUS2) | BIT(BTN_TOOL_RUBBER);
185}
186
187void input_dev_pt(struct input_dev *input_dev, struct wacom_wac *wacom_wac)
188{
189 input_dev->keybit[LONG(BTN_DIGI)] |= BIT(BTN_TOOL_RUBBER);
190}
191
192static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *id)
193{
194 struct usb_device *dev = interface_to_usbdev(intf);
195 struct usb_endpoint_descriptor *endpoint;
196 struct wacom *wacom;
197 struct wacom_wac *wacom_wac;
198 struct input_dev *input_dev;
199 char rep_data[2], limit = 0;
200
201 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
202 wacom_wac = kzalloc(sizeof(struct wacom_wac), GFP_KERNEL);
203 input_dev = input_allocate_device();
204 if (!wacom || !input_dev || !wacom_wac)
205 goto fail1;
206
207 wacom_wac->data = usb_buffer_alloc(dev, 10, GFP_KERNEL, &wacom->data_dma);
208 if (!wacom_wac->data)
209 goto fail1;
210
211 wacom->irq = usb_alloc_urb(0, GFP_KERNEL);
212 if (!wacom->irq)
213 goto fail2;
214
215 wacom->usbdev = dev;
216 wacom->dev = input_dev;
217 usb_make_path(dev, wacom->phys, sizeof(wacom->phys));
218 strlcat(wacom->phys, "/input0", sizeof(wacom->phys));
219
220 wacom_wac->features = get_wacom_feature(id);
221 if (wacom_wac->features->pktlen > 10)
222 BUG();
223
224 input_dev->name = wacom_wac->features->name;
225 wacom->wacom_wac = wacom_wac;
226 usb_to_input_id(dev, &input_dev->id);
227
228 input_dev->cdev.dev = &intf->dev;
229 input_dev->private = wacom;
230 input_dev->open = wacom_open;
231 input_dev->close = wacom_close;
232
233 input_dev->evbit[0] |= BIT(EV_KEY) | BIT(EV_ABS);
234 input_dev->keybit[LONG(BTN_DIGI)] |= BIT(BTN_TOOL_PEN) | BIT(BTN_TOUCH) | BIT(BTN_STYLUS);
235 input_set_abs_params(input_dev, ABS_X, 0, wacom_wac->features->x_max, 4, 0);
236 input_set_abs_params(input_dev, ABS_Y, 0, wacom_wac->features->y_max, 4, 0);
237 input_set_abs_params(input_dev, ABS_PRESSURE, 0, wacom_wac->features->pressure_max, 0, 0);
238 input_dev->absbit[LONG(ABS_MISC)] |= BIT(ABS_MISC);
239
240 wacom_init_input_dev(input_dev, wacom_wac);
241
242 endpoint = &intf->cur_altsetting->endpoint[0].desc;
243
244 usb_fill_int_urb(wacom->irq, dev,
245 usb_rcvintpipe(dev, endpoint->bEndpointAddress),
246 wacom_wac->data, wacom_wac->features->pktlen,
247 wacom_wac->features->irq, wacom, endpoint->bInterval);
248 wacom->irq->transfer_dma = wacom->data_dma;
249 wacom->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
250
251 input_register_device(wacom->dev);
252
253 /* Ask the tablet to report tablet data. Repeat until it succeeds */
254 do {
255 rep_data[0] = 2;
256 rep_data[1] = 2;
257 usb_set_report(intf, 3, 2, rep_data, 2);
258 usb_get_report(intf, 3, 2, rep_data, 2);
259 } while (rep_data[1] != 2 && limit++ < 5);
260
261 usb_set_intfdata(intf, wacom);
262 return 0;
263
264fail2: usb_buffer_free(dev, 10, wacom_wac->data, wacom->data_dma);
265fail1: input_free_device(input_dev);
266 kfree(wacom);
267 kfree(wacom_wac);
268 return -ENOMEM;
269}
270
271static void wacom_disconnect(struct usb_interface *intf)
272{
273 struct wacom *wacom = usb_get_intfdata (intf);
274
275 usb_set_intfdata(intf, NULL);
276 if (wacom) {
277 usb_kill_urb(wacom->irq);
278 input_unregister_device(wacom->dev);
279 usb_free_urb(wacom->irq);
280 usb_buffer_free(interface_to_usbdev(intf), 10, wacom->wacom_wac->data, wacom->data_dma);
281 kfree(wacom);
282 kfree(wacom->wacom_wac);
283 }
284}
285
286static struct usb_driver wacom_driver = {
287 .name = "wacom",
288 .probe = wacom_probe,
289 .disconnect = wacom_disconnect,
290};
291
292static int __init wacom_init(void)
293{
294 int result;
295 wacom_driver.id_table = get_device_table();
296 result = usb_register(&wacom_driver);
297 if (result == 0)
298 info(DRIVER_VERSION ":" DRIVER_DESC);
299 return result;
300}
301
302static void __exit wacom_exit(void)
303{
304 usb_deregister(&wacom_driver);
305}
306
307module_init(wacom_init);
308module_exit(wacom_exit);