2 * Copyright (c) 2001-2005 Edouard TISSERANT <edouard.tisserant@wanadoo.fr>
3 * Copyright (c) 2004-2005 Stephane VOLTZ <svoltz@numericable.fr>
5 * USB Acecad "Acecad Flair" tablet support
8 * v3.2 - Added sysfs support
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include <linux/kernel.h>
29 #include <linux/slab.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/usb/input.h>
37 #define DRIVER_VERSION "v3.2"
38 #define DRIVER_DESC "USB Acecad Flair tablet driver"
39 #define DRIVER_LICENSE "GPL"
40 #define DRIVER_AUTHOR "Edouard TISSERANT <edouard.tisserant@wanadoo.fr>"
42 MODULE_AUTHOR(DRIVER_AUTHOR
);
43 MODULE_DESCRIPTION(DRIVER_DESC
);
44 MODULE_LICENSE(DRIVER_LICENSE
);
46 #define USB_VENDOR_ID_ACECAD 0x0460
47 #define USB_DEVICE_ID_FLAIR 0x0004
48 #define USB_DEVICE_ID_302 0x0008
53 struct usb_device
*usbdev
;
54 struct usb_interface
*intf
;
55 struct input_dev
*input
;
62 static void usb_acecad_irq(struct urb
*urb
)
64 struct usb_acecad
*acecad
= urb
->context
;
65 unsigned char *data
= acecad
->data
;
66 struct input_dev
*dev
= acecad
->input
;
67 struct usb_interface
*intf
= acecad
->intf
;
70 switch (urb
->status
) {
77 /* this urb is terminated, clean up */
78 dev_dbg(&intf
->dev
, "%s - urb shutting down with status: %d\n",
79 __func__
, urb
->status
);
82 dev_dbg(&intf
->dev
, "%s - nonzero urb status received: %d\n",
83 __func__
, urb
->status
);
87 prox
= (data
[0] & 0x04) >> 2;
88 input_report_key(dev
, BTN_TOOL_PEN
, prox
);
91 int x
= data
[1] | (data
[2] << 8);
92 int y
= data
[3] | (data
[4] << 8);
93 /* Pressure should compute the same way for flair and 302 */
94 int pressure
= data
[5] | (data
[6] << 8);
95 int touch
= data
[0] & 0x01;
96 int stylus
= (data
[0] & 0x10) >> 4;
97 int stylus2
= (data
[0] & 0x20) >> 5;
98 input_report_abs(dev
, ABS_X
, x
);
99 input_report_abs(dev
, ABS_Y
, y
);
100 input_report_abs(dev
, ABS_PRESSURE
, pressure
);
101 input_report_key(dev
, BTN_TOUCH
, touch
);
102 input_report_key(dev
, BTN_STYLUS
, stylus
);
103 input_report_key(dev
, BTN_STYLUS2
, stylus2
);
106 /* event termination */
110 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
113 "can't resubmit intr, %s-%s/input0, status %d\n",
114 acecad
->usbdev
->bus
->bus_name
,
115 acecad
->usbdev
->devpath
, status
);
118 static int usb_acecad_open(struct input_dev
*dev
)
120 struct usb_acecad
*acecad
= input_get_drvdata(dev
);
122 acecad
->irq
->dev
= acecad
->usbdev
;
123 if (usb_submit_urb(acecad
->irq
, GFP_KERNEL
))
129 static void usb_acecad_close(struct input_dev
*dev
)
131 struct usb_acecad
*acecad
= input_get_drvdata(dev
);
133 usb_kill_urb(acecad
->irq
);
136 static int usb_acecad_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
138 struct usb_device
*dev
= interface_to_usbdev(intf
);
139 struct usb_host_interface
*interface
= intf
->cur_altsetting
;
140 struct usb_endpoint_descriptor
*endpoint
;
141 struct usb_acecad
*acecad
;
142 struct input_dev
*input_dev
;
146 if (interface
->desc
.bNumEndpoints
!= 1)
149 endpoint
= &interface
->endpoint
[0].desc
;
151 if (!usb_endpoint_is_int_in(endpoint
))
154 pipe
= usb_rcvintpipe(dev
, endpoint
->bEndpointAddress
);
155 maxp
= usb_maxpacket(dev
, pipe
, usb_pipeout(pipe
));
157 acecad
= kzalloc(sizeof(struct usb_acecad
), GFP_KERNEL
);
158 input_dev
= input_allocate_device();
159 if (!acecad
|| !input_dev
) {
164 acecad
->data
= usb_alloc_coherent(dev
, 8, GFP_KERNEL
, &acecad
->data_dma
);
170 acecad
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
176 acecad
->usbdev
= dev
;
178 acecad
->input
= input_dev
;
180 if (dev
->manufacturer
)
181 strlcpy(acecad
->name
, dev
->manufacturer
, sizeof(acecad
->name
));
184 if (dev
->manufacturer
)
185 strlcat(acecad
->name
, " ", sizeof(acecad
->name
));
186 strlcat(acecad
->name
, dev
->product
, sizeof(acecad
->name
));
189 usb_make_path(dev
, acecad
->phys
, sizeof(acecad
->phys
));
190 strlcat(acecad
->phys
, "/input0", sizeof(acecad
->phys
));
192 input_dev
->name
= acecad
->name
;
193 input_dev
->phys
= acecad
->phys
;
194 usb_to_input_id(dev
, &input_dev
->id
);
195 input_dev
->dev
.parent
= &intf
->dev
;
197 input_set_drvdata(input_dev
, acecad
);
199 input_dev
->open
= usb_acecad_open
;
200 input_dev
->close
= usb_acecad_close
;
202 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
203 input_dev
->keybit
[BIT_WORD(BTN_DIGI
)] = BIT_MASK(BTN_TOOL_PEN
) |
204 BIT_MASK(BTN_TOUCH
) | BIT_MASK(BTN_STYLUS
) |
205 BIT_MASK(BTN_STYLUS2
);
207 switch (id
->driver_info
) {
209 input_set_abs_params(input_dev
, ABS_X
, 0, 5000, 4, 0);
210 input_set_abs_params(input_dev
, ABS_Y
, 0, 3750, 4, 0);
211 input_set_abs_params(input_dev
, ABS_PRESSURE
, 0, 512, 0, 0);
212 if (!strlen(acecad
->name
))
213 snprintf(acecad
->name
, sizeof(acecad
->name
),
214 "USB Acecad Flair Tablet %04x:%04x",
215 le16_to_cpu(dev
->descriptor
.idVendor
),
216 le16_to_cpu(dev
->descriptor
.idProduct
));
220 input_set_abs_params(input_dev
, ABS_X
, 0, 53000, 4, 0);
221 input_set_abs_params(input_dev
, ABS_Y
, 0, 2250, 4, 0);
222 input_set_abs_params(input_dev
, ABS_PRESSURE
, 0, 1024, 0, 0);
223 if (!strlen(acecad
->name
))
224 snprintf(acecad
->name
, sizeof(acecad
->name
),
225 "USB Acecad 302 Tablet %04x:%04x",
226 le16_to_cpu(dev
->descriptor
.idVendor
),
227 le16_to_cpu(dev
->descriptor
.idProduct
));
231 usb_fill_int_urb(acecad
->irq
, dev
, pipe
,
232 acecad
->data
, maxp
> 8 ? 8 : maxp
,
233 usb_acecad_irq
, acecad
, endpoint
->bInterval
);
234 acecad
->irq
->transfer_dma
= acecad
->data_dma
;
235 acecad
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
237 err
= input_register_device(acecad
->input
);
241 usb_set_intfdata(intf
, acecad
);
245 fail3
: usb_free_urb(acecad
->irq
);
246 fail2
: usb_free_coherent(dev
, 8, acecad
->data
, acecad
->data_dma
);
247 fail1
: input_free_device(input_dev
);
252 static void usb_acecad_disconnect(struct usb_interface
*intf
)
254 struct usb_acecad
*acecad
= usb_get_intfdata(intf
);
256 usb_set_intfdata(intf
, NULL
);
258 input_unregister_device(acecad
->input
);
259 usb_free_urb(acecad
->irq
);
260 usb_free_coherent(acecad
->usbdev
, 8, acecad
->data
, acecad
->data_dma
);
264 static struct usb_device_id usb_acecad_id_table
[] = {
265 { USB_DEVICE(USB_VENDOR_ID_ACECAD
, USB_DEVICE_ID_FLAIR
), .driver_info
= 0 },
266 { USB_DEVICE(USB_VENDOR_ID_ACECAD
, USB_DEVICE_ID_302
), .driver_info
= 1 },
270 MODULE_DEVICE_TABLE(usb
, usb_acecad_id_table
);
272 static struct usb_driver usb_acecad_driver
= {
273 .name
= "usb_acecad",
274 .probe
= usb_acecad_probe
,
275 .disconnect
= usb_acecad_disconnect
,
276 .id_table
= usb_acecad_id_table
,
279 module_usb_driver(usb_acecad_driver
);