blob: cc8e0a926f9991749be2cc48cce5a17a8bea9d79 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB PhidgetInterfaceKit driver 1.0
3 *
Sean Young69165c22006-05-02 11:44:43 +00004 * Copyright (C) 2004, 2006 Sean Young <sean@mess.org>
5 * Copyright (C) 2005 Daniel Saakes <daniel@saakes.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
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 is a driver for the USB PhidgetInterfaceKit.
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
17#include <linux/errno.h>
18#include <linux/init.h>
19#include <linux/slab.h>
20#include <linux/module.h>
21#include <linux/usb.h>
22
Sean Young912b24c2006-07-10 09:56:25 +000023#include "phidget.h"
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define DRIVER_AUTHOR "Sean Young <sean@mess.org>"
26#define DRIVER_DESC "USB PhidgetInterfaceKit Driver"
27
28#define USB_VENDOR_ID_GLAB 0x06c2
29#define USB_DEVICE_ID_INTERFACEKIT004 0x0040
Sean Young69165c22006-05-02 11:44:43 +000030#define USB_DEVICE_ID_INTERFACEKIT01616 0x0044
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define USB_DEVICE_ID_INTERFACEKIT888 0x0045
32#define USB_DEVICE_ID_INTERFACEKIT047 0x0051
33#define USB_DEVICE_ID_INTERFACEKIT088 0x0053
34
35#define USB_VENDOR_ID_WISEGROUP 0x0925
36#define USB_DEVICE_ID_INTERFACEKIT884 0x8201
37
Sean Young69165c22006-05-02 11:44:43 +000038#define MAX_INTERFACES 16
39
40#define URB_INT_SIZE 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42struct driver_interfacekit {
43 int sensors;
44 int inputs;
45 int outputs;
46 int has_lcd;
Sean Young238d0e72006-09-24 19:26:57 +000047 int amnesiac;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
Sean Young238d0e72006-09-24 19:26:57 +000049
50#define ifkit(_sensors, _inputs, _outputs, _lcd, _amnesiac) \
51{ \
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 .sensors = _sensors, \
53 .inputs = _inputs, \
54 .outputs = _outputs, \
55 .has_lcd = _lcd, \
Sean Young238d0e72006-09-24 19:26:57 +000056 .amnesiac = _amnesiac \
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
Sean Young238d0e72006-09-24 19:26:57 +000058
59static const struct driver_interfacekit ph_004 = ifkit(0, 0, 4, 0, 0);
60static const struct driver_interfacekit ph_888n = ifkit(8, 8, 8, 0, 1);
61static const struct driver_interfacekit ph_888o = ifkit(8, 8, 8, 0, 0);
62static const struct driver_interfacekit ph_047 = ifkit(0, 4, 7, 1, 0);
63static const struct driver_interfacekit ph_884 = ifkit(8, 8, 4, 0, 0);
64static const struct driver_interfacekit ph_088 = ifkit(0, 8, 8, 1, 0);
65static const struct driver_interfacekit ph_01616 = ifkit(0, 16, 16, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Sean Young912b24c2006-07-10 09:56:25 +000067static unsigned long device_no;
68
Sean Young69165c22006-05-02 11:44:43 +000069struct interfacekit {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct usb_device *udev;
71 struct usb_interface *intf;
72 struct driver_interfacekit *ifkit;
Sean Young912b24c2006-07-10 09:56:25 +000073 struct device *dev;
Sean Young69165c22006-05-02 11:44:43 +000074 unsigned long outputs;
Sean Young912b24c2006-07-10 09:56:25 +000075 int dev_no;
Sean Young69165c22006-05-02 11:44:43 +000076 u8 inputs[MAX_INTERFACES];
77 u16 sensors[MAX_INTERFACES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 u8 lcd_files_on;
79
80 struct urb *irq;
81 unsigned char *data;
82 dma_addr_t data_dma;
Sean Young69165c22006-05-02 11:44:43 +000083
David Howellsc4028952006-11-22 14:57:56 +000084 struct delayed_work do_notify;
85 struct delayed_work do_resubmit;
Sean Young69165c22006-05-02 11:44:43 +000086 unsigned long input_events;
87 unsigned long sensor_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
90static struct usb_device_id id_table[] = {
91 {USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT004),
92 .driver_info = (kernel_ulong_t)&ph_004},
Sean Young238d0e72006-09-24 19:26:57 +000093 {USB_DEVICE_VER(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT888, 0, 0x814),
94 .driver_info = (kernel_ulong_t)&ph_888o},
95 {USB_DEVICE_VER(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT888, 0x0815, 0xffff),
96 .driver_info = (kernel_ulong_t)&ph_888n},
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 {USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT047),
98 .driver_info = (kernel_ulong_t)&ph_047},
99 {USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT088),
100 .driver_info = (kernel_ulong_t)&ph_088},
Sean Young69165c22006-05-02 11:44:43 +0000101 {USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT01616),
102 .driver_info = (kernel_ulong_t)&ph_01616},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 {USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_INTERFACEKIT884),
104 .driver_info = (kernel_ulong_t)&ph_884},
105 {}
106};
107MODULE_DEVICE_TABLE(usb, id_table);
108
Sean Young238d0e72006-09-24 19:26:57 +0000109static int set_outputs(struct interfacekit *kit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Sean Young69165c22006-05-02 11:44:43 +0000111 u8 *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 int retval;
Sean Young69165c22006-05-02 11:44:43 +0000113
Oliver Neukum17590842006-01-06 22:41:51 +0100114 buffer = kzalloc(4, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (!buffer) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800116 dev_err(&kit->udev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return -ENOMEM;
118 }
Sean Young69165c22006-05-02 11:44:43 +0000119 buffer[0] = (u8)kit->outputs;
120 buffer[1] = (u8)(kit->outputs >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Sean Young69165c22006-05-02 11:44:43 +0000122 dev_dbg(&kit->udev->dev, "sending data: 0x%04x\n", (u16)kit->outputs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 retval = usb_control_msg(kit->udev,
125 usb_sndctrlpipe(kit->udev, 0),
126 0x09, 0x21, 0x0200, 0x0000, buffer, 4, 2000);
127
128 if (retval != 4)
129 dev_err(&kit->udev->dev, "usb_control_msg returned %d\n",
130 retval);
131 kfree(buffer);
132
Sean Young238d0e72006-09-24 19:26:57 +0000133 if (kit->ifkit->amnesiac)
134 schedule_delayed_work(&kit->do_resubmit, HZ / 2);
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return retval < 0 ? retval : 0;
137}
138
Sean Young69165c22006-05-02 11:44:43 +0000139static int change_string(struct interfacekit *kit, const char *display, unsigned char row)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 unsigned char *buffer;
Sean Young69165c22006-05-02 11:44:43 +0000142 unsigned char *form_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int retval = -ENOMEM;
144 int i,j, len, buf_ptr;
145
146 buffer = kmalloc(8, GFP_KERNEL);
147 form_buffer = kmalloc(30, GFP_KERNEL);
148 if ((!buffer) || (!form_buffer)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800149 dev_err(&kit->udev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 goto exit;
151 }
152
153 len = strlen(display);
154 if (len > 20)
155 len = 20;
156
157 dev_dbg(&kit->udev->dev, "Setting LCD line %d to %s\n", row, display);
158
159 form_buffer[0] = row * 0x40 + 0x80;
160 form_buffer[1] = 0x02;
161 buf_ptr = 2;
162 for (i = 0; i<len; i++)
163 form_buffer[buf_ptr++] = display[i];
164
165 for (i = 0; i < (20 - len); i++)
166 form_buffer[buf_ptr++] = 0x20;
167 form_buffer[buf_ptr++] = 0x01;
168 form_buffer[buf_ptr++] = row * 0x40 + 0x80 + strlen(display);
169
170 for (i = 0; i < buf_ptr; i += 7) {
171 if ((buf_ptr - i) > 7)
172 len = 7;
173 else
174 len = (buf_ptr - i);
175 for (j = 0; j < len; j++)
176 buffer[j] = form_buffer[i + j];
177 buffer[7] = len;
178
179 retval = usb_control_msg(kit->udev,
180 usb_sndctrlpipe(kit->udev, 0),
181 0x09, 0x21, 0x0200, 0x0000, buffer, 8, 2000);
182 if (retval < 0)
183 goto exit;
184 }
185
186 retval = 0;
187exit:
188 kfree(buffer);
189 kfree(form_buffer);
190
191 return retval;
192}
193
194#define set_lcd_line(number) \
Sean Young912b24c2006-07-10 09:56:25 +0000195static ssize_t lcd_line_##number(struct device *dev, \
196 struct device_attribute *attr, \
197 const char *buf, size_t count) \
198{ \
199 struct interfacekit *kit = dev_get_drvdata(dev); \
200 change_string(kit, buf, number - 1); \
201 return count; \
Sean Youngda308e82006-08-11 09:28:28 +0000202}
203
204#define lcd_line_attr(number) \
205 __ATTR(lcd_line_##number, S_IWUGO, NULL, lcd_line_##number)
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207set_lcd_line(1);
208set_lcd_line(2);
209
Yani Ioannou060b8842005-05-17 06:44:04 -0400210static ssize_t set_backlight(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Sean Young912b24c2006-07-10 09:56:25 +0000212 struct interfacekit *kit = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int enabled;
214 unsigned char *buffer;
215 int retval = -ENOMEM;
216
Oliver Neukum17590842006-01-06 22:41:51 +0100217 buffer = kzalloc(8, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (!buffer) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800219 dev_err(&kit->udev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 goto exit;
221 }
222
223 if (sscanf(buf, "%d", &enabled) < 1) {
224 retval = -EINVAL;
225 goto exit;
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (enabled)
228 buffer[0] = 0x01;
229 buffer[7] = 0x11;
230
231 dev_dbg(&kit->udev->dev, "Setting backlight to %s\n", enabled ? "on" : "off");
232
233 retval = usb_control_msg(kit->udev,
234 usb_sndctrlpipe(kit->udev, 0),
235 0x09, 0x21, 0x0200, 0x0000, buffer, 8, 2000);
236 if (retval < 0)
237 goto exit;
238
239 retval = count;
240exit:
241 kfree(buffer);
242 return retval;
243}
Sean Youngda308e82006-08-11 09:28:28 +0000244
245static struct device_attribute dev_lcd_line_attrs[] = {
246 lcd_line_attr(1),
247 lcd_line_attr(2),
248 __ATTR(backlight, S_IWUGO, NULL, set_backlight)
249};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Sean Young69165c22006-05-02 11:44:43 +0000251static void remove_lcd_files(struct interfacekit *kit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Sean Youngda308e82006-08-11 09:28:28 +0000253 int i;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (kit->lcd_files_on) {
256 dev_dbg(&kit->udev->dev, "Removing lcd files\n");
Sean Youngda308e82006-08-11 09:28:28 +0000257
258 for (i=0; i<ARRAY_SIZE(dev_lcd_line_attrs); i++)
259 device_remove_file(kit->dev, &dev_lcd_line_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261}
262
Yani Ioannou060b8842005-05-17 06:44:04 -0400263static ssize_t enable_lcd_files(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Sean Young912b24c2006-07-10 09:56:25 +0000265 struct interfacekit *kit = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int enable;
Sean Youngda308e82006-08-11 09:28:28 +0000267 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 if (kit->ifkit->has_lcd == 0)
270 return -ENODEV;
271
272 if (sscanf(buf, "%d", &enable) < 1)
273 return -EINVAL;
274
275 if (enable) {
276 if (!kit->lcd_files_on) {
277 dev_dbg(&kit->udev->dev, "Adding lcd files\n");
Sean Youngda308e82006-08-11 09:28:28 +0000278 for (i=0; i<ARRAY_SIZE(dev_lcd_line_attrs); i++) {
279 rc = device_create_file(kit->dev,
280 &dev_lcd_line_attrs[i]);
281 if (rc)
282 goto out;
283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 kit->lcd_files_on = 1;
285 }
286 } else {
287 if (kit->lcd_files_on) {
288 remove_lcd_files(kit);
289 kit->lcd_files_on = 0;
290 }
291 }
292
293 return count;
Sean Youngda308e82006-08-11 09:28:28 +0000294out:
295 while (i-- > 0)
296 device_remove_file(kit->dev, &dev_lcd_line_attrs[i]);
297
298 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
Sean Youngda308e82006-08-11 09:28:28 +0000300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301static DEVICE_ATTR(lcd, S_IWUGO, NULL, enable_lcd_files);
302
David Howells7d12e782006-10-05 14:55:46 +0100303static void interfacekit_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Sean Young69165c22006-05-02 11:44:43 +0000305 struct interfacekit *kit = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 unsigned char *buffer = kit->data;
Sean Young69165c22006-05-02 11:44:43 +0000307 int i, level, sensor;
Greg Kroah-Hartman2fe8c3f2007-07-18 10:58:02 -0700308 int retval;
309 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Greg Kroah-Hartman2fe8c3f2007-07-18 10:58:02 -0700311 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 case 0: /* success */
313 break;
314 case -ECONNRESET: /* unlink */
315 case -ENOENT:
316 case -ESHUTDOWN:
317 return;
318 /* -EPIPE: should clear the halt */
319 default: /* error */
320 goto resubmit;
321 }
322
Sean Young69165c22006-05-02 11:44:43 +0000323 /* digital inputs */
324 if (kit->ifkit->inputs == 16) {
325 for (i=0; i < 8; i++) {
326 level = (buffer[0] >> i) & 1;
327 if (kit->inputs[i] != level) {
328 kit->inputs[i] = level;
329 set_bit(i, &kit->input_events);
330 }
331 level = (buffer[1] >> i) & 1;
332 if (kit->inputs[8 + i] != level) {
333 kit->inputs[8 + i] = level;
334 set_bit(8 + i, &kit->input_events);
335 }
336 }
337 }
338 else if (kit->ifkit->inputs == 8) {
339 for (i=0; i < 8; i++) {
340 level = (buffer[1] >> i) & 1;
341 if (kit->inputs[i] != level) {
342 kit->inputs[i] = level;
343 set_bit(i, &kit->input_events);
344 }
345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347
Sean Young69165c22006-05-02 11:44:43 +0000348 /* analog inputs */
349 if (kit->ifkit->sensors) {
350 sensor = (buffer[0] & 1) ? 4 : 0;
351
352 level = buffer[2] + (buffer[3] & 0x0f) * 256;
353 if (level != kit->sensors[sensor]) {
354 kit->sensors[sensor] = level;
355 set_bit(sensor, &kit->sensor_events);
356 }
357 sensor++;
358 level = buffer[4] + (buffer[3] & 0xf0) * 16;
359 if (level != kit->sensors[sensor]) {
360 kit->sensors[sensor] = level;
361 set_bit(sensor, &kit->sensor_events);
362 }
363 sensor++;
364 level = buffer[5] + (buffer[6] & 0x0f) * 256;
365 if (level != kit->sensors[sensor]) {
366 kit->sensors[sensor] = level;
367 set_bit(sensor, &kit->sensor_events);
368 }
369 sensor++;
370 level = buffer[7] + (buffer[6] & 0xf0) * 16;
371 if (level != kit->sensors[sensor]) {
372 kit->sensors[sensor] = level;
373 set_bit(sensor, &kit->sensor_events);
374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
Sean Young69165c22006-05-02 11:44:43 +0000377 if (kit->input_events || kit->sensor_events)
David Howellsc4028952006-11-22 14:57:56 +0000378 schedule_delayed_work(&kit->do_notify, 0);
Sean Young69165c22006-05-02 11:44:43 +0000379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380resubmit:
Greg Kroah-Hartman2fe8c3f2007-07-18 10:58:02 -0700381 retval = usb_submit_urb(urb, GFP_ATOMIC);
382 if (retval)
383 err("can't resubmit intr, %s-%s/interfacekit0, retval %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 kit->udev->bus->bus_name,
Greg Kroah-Hartman2fe8c3f2007-07-18 10:58:02 -0700385 kit->udev->devpath, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
David Howellsc4028952006-11-22 14:57:56 +0000388static void do_notify(struct work_struct *work)
Sean Young69165c22006-05-02 11:44:43 +0000389{
David Howellsc4028952006-11-22 14:57:56 +0000390 struct interfacekit *kit =
391 container_of(work, struct interfacekit, do_notify.work);
Sean Young69165c22006-05-02 11:44:43 +0000392 int i;
393 char sysfs_file[8];
394
395 for (i=0; i<kit->ifkit->inputs; i++) {
396 if (test_and_clear_bit(i, &kit->input_events)) {
397 sprintf(sysfs_file, "input%d", i + 1);
Sean Young912b24c2006-07-10 09:56:25 +0000398 sysfs_notify(&kit->dev->kobj, NULL, sysfs_file);
Sean Young69165c22006-05-02 11:44:43 +0000399 }
400 }
401
402 for (i=0; i<kit->ifkit->sensors; i++) {
403 if (test_and_clear_bit(i, &kit->sensor_events)) {
404 sprintf(sysfs_file, "sensor%d", i + 1);
Sean Young912b24c2006-07-10 09:56:25 +0000405 sysfs_notify(&kit->dev->kobj, NULL, sysfs_file);
Sean Young69165c22006-05-02 11:44:43 +0000406 }
407 }
408}
409
David Howellsc4028952006-11-22 14:57:56 +0000410static void do_resubmit(struct work_struct *work)
Sean Young238d0e72006-09-24 19:26:57 +0000411{
David Howellsc4028952006-11-22 14:57:56 +0000412 struct interfacekit *kit =
413 container_of(work, struct interfacekit, do_resubmit.work);
414 set_outputs(kit);
Sean Young238d0e72006-09-24 19:26:57 +0000415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#define show_set_output(value) \
Sean Young912b24c2006-07-10 09:56:25 +0000418static ssize_t set_output##value(struct device *dev, \
419 struct device_attribute *attr, \
420 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{ \
Sean Young912b24c2006-07-10 09:56:25 +0000422 struct interfacekit *kit = dev_get_drvdata(dev); \
Sean Young238d0e72006-09-24 19:26:57 +0000423 int enable; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 int retval; \
425 \
Sean Young238d0e72006-09-24 19:26:57 +0000426 if (sscanf(buf, "%d", &enable) < 1) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -EINVAL; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 \
Sean Young238d0e72006-09-24 19:26:57 +0000429 if (enable) \
430 set_bit(value - 1, &kit->outputs); \
431 else \
432 clear_bit(value - 1, &kit->outputs); \
433 \
434 retval = set_outputs(kit); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 \
436 return retval ? retval : count; \
437} \
438 \
Sean Young912b24c2006-07-10 09:56:25 +0000439static ssize_t show_output##value(struct device *dev, \
440 struct device_attribute *attr, \
441 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{ \
Sean Young912b24c2006-07-10 09:56:25 +0000443 struct interfacekit *kit = dev_get_drvdata(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 \
Sean Young69165c22006-05-02 11:44:43 +0000445 return sprintf(buf, "%d\n", !!test_bit(value - 1, &kit->outputs));\
Sean Youngda308e82006-08-11 09:28:28 +0000446}
447
448#define output_attr(value) \
449 __ATTR(output##value, S_IWUGO | S_IRUGO, \
450 show_output##value, set_output##value)
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452show_set_output(1);
453show_set_output(2);
454show_set_output(3);
455show_set_output(4);
456show_set_output(5);
457show_set_output(6);
458show_set_output(7);
Sean Young69165c22006-05-02 11:44:43 +0000459show_set_output(8);
460show_set_output(9);
461show_set_output(10);
462show_set_output(11);
463show_set_output(12);
464show_set_output(13);
465show_set_output(14);
466show_set_output(15);
467show_set_output(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Sean Youngda308e82006-08-11 09:28:28 +0000469static struct device_attribute dev_output_attrs[] = {
470 output_attr(1), output_attr(2), output_attr(3), output_attr(4),
471 output_attr(5), output_attr(6), output_attr(7), output_attr(8),
472 output_attr(9), output_attr(10), output_attr(11), output_attr(12),
473 output_attr(13), output_attr(14), output_attr(15), output_attr(16)
474};
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476#define show_input(value) \
Sean Youngda308e82006-08-11 09:28:28 +0000477static ssize_t show_input##value(struct device *dev, \
478 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{ \
Sean Young912b24c2006-07-10 09:56:25 +0000480 struct interfacekit *kit = dev_get_drvdata(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 \
Sean Young69165c22006-05-02 11:44:43 +0000482 return sprintf(buf, "%d\n", (int)kit->inputs[value - 1]); \
Sean Youngda308e82006-08-11 09:28:28 +0000483}
484
485#define input_attr(value) \
486 __ATTR(input##value, S_IRUGO, show_input##value, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488show_input(1);
489show_input(2);
490show_input(3);
491show_input(4);
492show_input(5);
493show_input(6);
494show_input(7);
Sean Young69165c22006-05-02 11:44:43 +0000495show_input(8);
496show_input(9);
497show_input(10);
498show_input(11);
499show_input(12);
500show_input(13);
501show_input(14);
502show_input(15);
503show_input(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Sean Youngda308e82006-08-11 09:28:28 +0000505static struct device_attribute dev_input_attrs[] = {
506 input_attr(1), input_attr(2), input_attr(3), input_attr(4),
507 input_attr(5), input_attr(6), input_attr(7), input_attr(8),
508 input_attr(9), input_attr(10), input_attr(11), input_attr(12),
509 input_attr(13), input_attr(14), input_attr(15), input_attr(16)
510};
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512#define show_sensor(value) \
Sean Young912b24c2006-07-10 09:56:25 +0000513static ssize_t show_sensor##value(struct device *dev, \
514 struct device_attribute *attr, \
515 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{ \
Sean Young912b24c2006-07-10 09:56:25 +0000517 struct interfacekit *kit = dev_get_drvdata(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 \
Sean Young69165c22006-05-02 11:44:43 +0000519 return sprintf(buf, "%d\n", (int)kit->sensors[value - 1]); \
Sean Youngda308e82006-08-11 09:28:28 +0000520}
521
522#define sensor_attr(value) \
523 __ATTR(sensor##value, S_IRUGO, show_sensor##value, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525show_sensor(1);
526show_sensor(2);
527show_sensor(3);
528show_sensor(4);
529show_sensor(5);
530show_sensor(6);
531show_sensor(7);
Sean Young69165c22006-05-02 11:44:43 +0000532show_sensor(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Sean Youngda308e82006-08-11 09:28:28 +0000534static struct device_attribute dev_sensor_attrs[] = {
535 sensor_attr(1), sensor_attr(2), sensor_attr(3), sensor_attr(4),
536 sensor_attr(5), sensor_attr(6), sensor_attr(7), sensor_attr(8)
537};
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539static int interfacekit_probe(struct usb_interface *intf, const struct usb_device_id *id)
540{
541 struct usb_device *dev = interface_to_usbdev(intf);
542 struct usb_host_interface *interface;
543 struct usb_endpoint_descriptor *endpoint;
Sean Young69165c22006-05-02 11:44:43 +0000544 struct interfacekit *kit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct driver_interfacekit *ifkit;
Sean Young69165c22006-05-02 11:44:43 +0000546 int pipe, maxp, rc = -ENOMEM;
Sean Youngda308e82006-08-11 09:28:28 +0000547 int bit, value, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 ifkit = (struct driver_interfacekit *)id->driver_info;
550 if (!ifkit)
551 return -ENODEV;
552
553 interface = intf->cur_altsetting;
554 if (interface->desc.bNumEndpoints != 1)
555 return -ENODEV;
556
557 endpoint = &interface->endpoint[0].desc;
Luiz Fernando N. Capitulino84194042006-10-26 13:02:56 -0300558 if (!usb_endpoint_dir_in(endpoint))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return -ENODEV;
560 /*
561 * bmAttributes
562 */
563 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
564 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
565
Oliver Neukum17590842006-01-06 22:41:51 +0100566 kit = kzalloc(sizeof(*kit), GFP_KERNEL);
Sean Young69165c22006-05-02 11:44:43 +0000567 if (!kit)
568 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Sean Young912b24c2006-07-10 09:56:25 +0000570 kit->dev_no = -1;
Sean Young69165c22006-05-02 11:44:43 +0000571 kit->ifkit = ifkit;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800572 kit->data = usb_buffer_alloc(dev, URB_INT_SIZE, GFP_ATOMIC, &kit->data_dma);
Sean Young69165c22006-05-02 11:44:43 +0000573 if (!kit->data)
574 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 kit->irq = usb_alloc_urb(0, GFP_KERNEL);
Sean Young69165c22006-05-02 11:44:43 +0000577 if (!kit->irq)
578 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 kit->udev = usb_get_dev(dev);
581 kit->intf = intf;
David Howellsc4028952006-11-22 14:57:56 +0000582 INIT_DELAYED_WORK(&kit->do_notify, do_notify);
583 INIT_DELAYED_WORK(&kit->do_resubmit, do_resubmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 usb_fill_int_urb(kit->irq, kit->udev, pipe, kit->data,
Sean Young69165c22006-05-02 11:44:43 +0000585 maxp > URB_INT_SIZE ? URB_INT_SIZE : maxp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 interfacekit_irq, kit, endpoint->bInterval);
587 kit->irq->transfer_dma = kit->data_dma;
588 kit->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
589
590 usb_set_intfdata(intf, kit);
591
Sean Young912b24c2006-07-10 09:56:25 +0000592 do {
593 bit = find_first_zero_bit(&device_no, sizeof(device_no));
594 value = test_and_set_bit(bit, &device_no);
595 } while(value);
596 kit->dev_no = bit;
597
Greg Kroah-Hartmanb0b090e2008-07-21 20:03:34 -0700598 kit->dev = device_create(phidget_class, &kit->udev->dev, MKDEV(0, 0),
599 kit, "interfacekit%d", kit->dev_no);
Sean Young912b24c2006-07-10 09:56:25 +0000600 if (IS_ERR(kit->dev)) {
601 rc = PTR_ERR(kit->dev);
602 kit->dev = NULL;
603 goto out;
604 }
Sean Young912b24c2006-07-10 09:56:25 +0000605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (usb_submit_urb(kit->irq, GFP_KERNEL)) {
Sean Young69165c22006-05-02 11:44:43 +0000607 rc = -EIO;
608 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
Sean Youngda308e82006-08-11 09:28:28 +0000611 for (i=0; i<ifkit->outputs; i++ ) {
612 rc = device_create_file(kit->dev, &dev_output_attrs[i]);
613 if (rc)
614 goto out2;
Sean Young69165c22006-05-02 11:44:43 +0000615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Sean Youngda308e82006-08-11 09:28:28 +0000617 for (i=0; i<ifkit->inputs; i++ ) {
618 rc = device_create_file(kit->dev, &dev_input_attrs[i]);
619 if (rc)
620 goto out3;
Sean Young69165c22006-05-02 11:44:43 +0000621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Sean Youngda308e82006-08-11 09:28:28 +0000623 for (i=0; i<ifkit->sensors; i++ ) {
624 rc = device_create_file(kit->dev, &dev_sensor_attrs[i]);
625 if (rc)
626 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Sean Youngda308e82006-08-11 09:28:28 +0000629 if (ifkit->has_lcd) {
630 rc = device_create_file(kit->dev, &dev_attr_lcd);
631 if (rc)
632 goto out4;
633
634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 dev_info(&intf->dev, "USB PhidgetInterfaceKit %d/%d/%d attached\n",
637 ifkit->sensors, ifkit->inputs, ifkit->outputs);
638
639 return 0;
Sean Young69165c22006-05-02 11:44:43 +0000640
Sean Youngda308e82006-08-11 09:28:28 +0000641out4:
642 while (i-- > 0)
643 device_remove_file(kit->dev, &dev_sensor_attrs[i]);
644
645 i = ifkit->inputs;
646out3:
647 while (i-- > 0)
648 device_remove_file(kit->dev, &dev_input_attrs[i]);
649
650 i = ifkit->outputs;
651out2:
652 while (i-- > 0)
653 device_remove_file(kit->dev, &dev_output_attrs[i]);
Sean Young69165c22006-05-02 11:44:43 +0000654out:
655 if (kit) {
Mariusz Kozlowskidf431212006-11-08 15:36:07 +0100656 usb_free_urb(kit->irq);
Sean Young69165c22006-05-02 11:44:43 +0000657 if (kit->data)
658 usb_buffer_free(dev, URB_INT_SIZE, kit->data, kit->data_dma);
Sean Young912b24c2006-07-10 09:56:25 +0000659 if (kit->dev)
660 device_unregister(kit->dev);
661 if (kit->dev_no >= 0)
662 clear_bit(kit->dev_no, &device_no);
663
Sean Young69165c22006-05-02 11:44:43 +0000664 kfree(kit);
665 }
666
667 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670static void interfacekit_disconnect(struct usb_interface *interface)
671{
Sean Young69165c22006-05-02 11:44:43 +0000672 struct interfacekit *kit;
Sean Youngda308e82006-08-11 09:28:28 +0000673 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 kit = usb_get_intfdata(interface);
676 usb_set_intfdata(interface, NULL);
677 if (!kit)
678 return;
679
Sean Young69165c22006-05-02 11:44:43 +0000680 usb_kill_urb(kit->irq);
681 usb_free_urb(kit->irq);
682 usb_buffer_free(kit->udev, URB_INT_SIZE, kit->data, kit->data_dma);
683
684 cancel_delayed_work(&kit->do_notify);
Sean Young238d0e72006-09-24 19:26:57 +0000685 cancel_delayed_work(&kit->do_resubmit);
Sean Young69165c22006-05-02 11:44:43 +0000686
Sean Youngda308e82006-08-11 09:28:28 +0000687 for (i=0; i<kit->ifkit->outputs; i++)
688 device_remove_file(kit->dev, &dev_output_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Sean Youngda308e82006-08-11 09:28:28 +0000690 for (i=0; i<kit->ifkit->inputs; i++)
691 device_remove_file(kit->dev, &dev_input_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Sean Youngda308e82006-08-11 09:28:28 +0000693 for (i=0; i<kit->ifkit->sensors; i++)
694 device_remove_file(kit->dev, &dev_sensor_attrs[i]);
Sean Young69165c22006-05-02 11:44:43 +0000695
Sean Youngda308e82006-08-11 09:28:28 +0000696 if (kit->ifkit->has_lcd) {
Sean Young912b24c2006-07-10 09:56:25 +0000697 device_remove_file(kit->dev, &dev_attr_lcd);
Sean Youngda308e82006-08-11 09:28:28 +0000698 remove_lcd_files(kit);
699 }
Sean Young912b24c2006-07-10 09:56:25 +0000700
701 device_unregister(kit->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 dev_info(&interface->dev, "USB PhidgetInterfaceKit %d/%d/%d detached\n",
704 kit->ifkit->sensors, kit->ifkit->inputs, kit->ifkit->outputs);
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 usb_put_dev(kit->udev);
Sean Young912b24c2006-07-10 09:56:25 +0000707 clear_bit(kit->dev_no, &device_no);
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 kfree(kit);
710}
711
712static struct usb_driver interfacekit_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 .name = "phidgetkit",
714 .probe = interfacekit_probe,
715 .disconnect = interfacekit_disconnect,
716 .id_table = id_table
717};
718
719static int __init interfacekit_init(void)
720{
721 int retval = 0;
722
723 retval = usb_register(&interfacekit_driver);
724 if (retval)
725 err("usb_register failed. Error number %d", retval);
726
727 return retval;
728}
729
730static void __exit interfacekit_exit(void)
731{
732 usb_deregister(&interfacekit_driver);
733}
734
735module_init(interfacekit_init);
736module_exit(interfacekit_exit);
737
738MODULE_AUTHOR(DRIVER_AUTHOR);
739MODULE_DESCRIPTION(DRIVER_DESC);
740MODULE_LICENSE("GPL");