phidgetkit.c 18.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * USB PhidgetInterfaceKit driver 1.0
 *
4 5
 * Copyright (C) 2004, 2006 Sean Young <sean@mess.org>
 * Copyright (C) 2005 Daniel Saakes <daniel@saakes.net>
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This is a driver for the USB PhidgetInterfaceKit.
 */

#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/usb.h>

23 24
#include "phidget.h"

L
Linus Torvalds 已提交
25 26 27 28 29
#define DRIVER_AUTHOR "Sean Young <sean@mess.org>"
#define DRIVER_DESC "USB PhidgetInterfaceKit Driver"

#define USB_VENDOR_ID_GLAB		0x06c2
#define USB_DEVICE_ID_INTERFACEKIT004	0x0040
30
#define USB_DEVICE_ID_INTERFACEKIT01616	0x0044
L
Linus Torvalds 已提交
31 32 33 34 35 36 37
#define USB_DEVICE_ID_INTERFACEKIT888	0x0045
#define USB_DEVICE_ID_INTERFACEKIT047	0x0051
#define USB_DEVICE_ID_INTERFACEKIT088	0x0053

#define USB_VENDOR_ID_WISEGROUP		0x0925
#define USB_DEVICE_ID_INTERFACEKIT884	0x8201

38 39 40
#define MAX_INTERFACES			16

#define URB_INT_SIZE			8
L
Linus Torvalds 已提交
41 42 43 44 45 46

struct driver_interfacekit {
	int sensors;
	int inputs;
	int outputs;
	int has_lcd;
47
	int amnesiac;
L
Linus Torvalds 已提交
48
};
49 50 51

#define ifkit(_sensors, _inputs, _outputs, _lcd, _amnesiac)		\
{									\
L
Linus Torvalds 已提交
52 53 54 55
	.sensors	= _sensors,					\
	.inputs		= _inputs,					\
	.outputs	= _outputs,					\
	.has_lcd	= _lcd,						\
56
	.amnesiac	= _amnesiac					\
L
Linus Torvalds 已提交
57
};
58 59 60 61 62 63 64 65

static const struct driver_interfacekit ph_004 = ifkit(0, 0, 4, 0, 0);
static const struct driver_interfacekit ph_888n = ifkit(8, 8, 8, 0, 1);
static const struct driver_interfacekit ph_888o = ifkit(8, 8, 8, 0, 0);
static const struct driver_interfacekit ph_047 = ifkit(0, 4, 7, 1, 0);
static const struct driver_interfacekit ph_884 = ifkit(8, 8, 4, 0, 0);
static const struct driver_interfacekit ph_088 = ifkit(0, 8, 8, 1, 0);
static const struct driver_interfacekit ph_01616 = ifkit(0, 16, 16, 0, 0);
L
Linus Torvalds 已提交
66

67 68
static unsigned long device_no;

69
struct interfacekit {
L
Linus Torvalds 已提交
70 71 72
	struct usb_device *udev;
	struct usb_interface *intf;
	struct driver_interfacekit *ifkit;
73
	struct device *dev;
74
	unsigned long outputs;
75
	int dev_no;
76 77
	u8 inputs[MAX_INTERFACES];
	u16 sensors[MAX_INTERFACES];
L
Linus Torvalds 已提交
78 79 80 81 82
	u8 lcd_files_on;

	struct urb *irq;
	unsigned char *data;
	dma_addr_t data_dma;
83

D
David Howells 已提交
84 85
	struct delayed_work do_notify;
	struct delayed_work do_resubmit;
86 87
	unsigned long input_events;
	unsigned long sensor_events;
L
Linus Torvalds 已提交
88 89 90 91 92
};

static struct usb_device_id id_table[] = {
	{USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT004),
		.driver_info = (kernel_ulong_t)&ph_004},
93 94 95 96
	{USB_DEVICE_VER(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT888, 0, 0x814),
		.driver_info = (kernel_ulong_t)&ph_888o},
	{USB_DEVICE_VER(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT888, 0x0815, 0xffff),
		.driver_info = (kernel_ulong_t)&ph_888n},
L
Linus Torvalds 已提交
97 98 99 100
	{USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT047),
		.driver_info = (kernel_ulong_t)&ph_047},
	{USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT088),
		.driver_info = (kernel_ulong_t)&ph_088},
101 102
	{USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_INTERFACEKIT01616),
		.driver_info = (kernel_ulong_t)&ph_01616},
L
Linus Torvalds 已提交
103 104 105 106 107 108
	{USB_DEVICE(USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_INTERFACEKIT884),
		.driver_info = (kernel_ulong_t)&ph_884},
	{}
};
MODULE_DEVICE_TABLE(usb, id_table);

109
static int set_outputs(struct interfacekit *kit)
L
Linus Torvalds 已提交
110
{
111
	u8 *buffer;
L
Linus Torvalds 已提交
112
	int retval;
113

114
	buffer = kzalloc(4, GFP_KERNEL);
L
Linus Torvalds 已提交
115
	if (!buffer) {
116
		dev_err(&kit->udev->dev, "%s - out of memory\n", __func__);
L
Linus Torvalds 已提交
117 118
		return -ENOMEM;
	}
119 120
	buffer[0] = (u8)kit->outputs;
	buffer[1] = (u8)(kit->outputs >> 8);
L
Linus Torvalds 已提交
121

122
	dev_dbg(&kit->udev->dev, "sending data: 0x%04x\n", (u16)kit->outputs);
L
Linus Torvalds 已提交
123 124 125 126 127 128 129 130 131 132

	retval = usb_control_msg(kit->udev,
			 usb_sndctrlpipe(kit->udev, 0),
			 0x09, 0x21, 0x0200, 0x0000, buffer, 4, 2000);

	if (retval != 4)
		dev_err(&kit->udev->dev, "usb_control_msg returned %d\n", 
				retval);
	kfree(buffer);

133 134 135
	if (kit->ifkit->amnesiac)
		schedule_delayed_work(&kit->do_resubmit, HZ / 2);

L
Linus Torvalds 已提交
136 137 138
	return retval < 0 ? retval : 0;
}

139
static int change_string(struct interfacekit *kit, const char *display, unsigned char row)
L
Linus Torvalds 已提交
140 141
{
	unsigned char *buffer;
142
	unsigned char *form_buffer;
L
Linus Torvalds 已提交
143 144 145 146 147 148
	int retval = -ENOMEM;
	int i,j, len, buf_ptr;
	
	buffer = kmalloc(8, GFP_KERNEL);
	form_buffer = kmalloc(30, GFP_KERNEL);
	if ((!buffer) || (!form_buffer)) {
149
		dev_err(&kit->udev->dev, "%s - out of memory\n", __func__);
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
		goto exit;
	}

	len = strlen(display);
	if (len > 20)
		len = 20;

	dev_dbg(&kit->udev->dev, "Setting LCD line %d to %s\n", row, display);

	form_buffer[0] = row * 0x40 + 0x80;
	form_buffer[1] = 0x02;
	buf_ptr = 2;
	for (i = 0; i<len; i++)
		form_buffer[buf_ptr++] = display[i];

	for (i = 0; i < (20 - len); i++)
		form_buffer[buf_ptr++] = 0x20;
	form_buffer[buf_ptr++] = 0x01;
	form_buffer[buf_ptr++] = row * 0x40 + 0x80 + strlen(display);

	for (i = 0; i < buf_ptr; i += 7) {
		if ((buf_ptr - i) > 7)
			len = 7;
		else
			len = (buf_ptr - i);
		for (j = 0; j < len; j++)
			buffer[j] = form_buffer[i + j];
		buffer[7] = len;

		retval = usb_control_msg(kit->udev,
				 usb_sndctrlpipe(kit->udev, 0),
				 0x09, 0x21, 0x0200, 0x0000, buffer, 8, 2000);
		if (retval < 0)
			goto exit;
	}

	retval = 0;
exit:
	kfree(buffer);
	kfree(form_buffer);

	return retval;
}

#define set_lcd_line(number)	\
195 196 197 198 199 200 201
static ssize_t lcd_line_##number(struct device *dev,			\
					struct device_attribute *attr,	\
					const char *buf, size_t count)	\
{									\
	struct interfacekit *kit = dev_get_drvdata(dev);		\
	change_string(kit, buf, number - 1);				\
	return count;							\
202 203 204 205 206
}

#define lcd_line_attr(number)						\
	__ATTR(lcd_line_##number, S_IWUGO, NULL, lcd_line_##number)

L
Linus Torvalds 已提交
207 208 209
set_lcd_line(1);
set_lcd_line(2);

210
static ssize_t set_backlight(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
211
{
212
	struct interfacekit *kit = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
213 214 215 216
	int enabled;
	unsigned char *buffer;
	int retval = -ENOMEM;
	
217
	buffer = kzalloc(8, GFP_KERNEL);
L
Linus Torvalds 已提交
218
	if (!buffer) {
219
		dev_err(&kit->udev->dev, "%s - out of memory\n", __func__);
L
Linus Torvalds 已提交
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
		goto exit;
	}

	if (sscanf(buf, "%d", &enabled) < 1) {
		retval = -EINVAL;
		goto exit;
	}
	if (enabled)
		buffer[0] = 0x01;
	buffer[7] = 0x11;

	dev_dbg(&kit->udev->dev, "Setting backlight to %s\n", enabled ? "on" : "off");
	
	retval = usb_control_msg(kit->udev,
			 usb_sndctrlpipe(kit->udev, 0),
			 0x09, 0x21, 0x0200, 0x0000, buffer, 8, 2000);
	if (retval < 0)
		goto exit;

	retval = count;
exit:
	kfree(buffer);
	return retval;
}
244 245 246 247 248 249

static struct device_attribute dev_lcd_line_attrs[] = {
	lcd_line_attr(1),
	lcd_line_attr(2),
	__ATTR(backlight, S_IWUGO, NULL, set_backlight)
};
L
Linus Torvalds 已提交
250

251
static void remove_lcd_files(struct interfacekit *kit)
L
Linus Torvalds 已提交
252
{
253 254
	int i;

L
Linus Torvalds 已提交
255 256
	if (kit->lcd_files_on) {
		dev_dbg(&kit->udev->dev, "Removing lcd files\n");
257 258 259

		for (i=0; i<ARRAY_SIZE(dev_lcd_line_attrs); i++)
			device_remove_file(kit->dev, &dev_lcd_line_attrs[i]);
L
Linus Torvalds 已提交
260 261 262
	}
}

263
static ssize_t enable_lcd_files(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
264
{
265
	struct interfacekit *kit = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
266
	int enable;
267
	int i, rc;
L
Linus Torvalds 已提交
268 269 270 271 272 273 274 275 276 277
	
	if (kit->ifkit->has_lcd == 0)
		return -ENODEV;

	if (sscanf(buf, "%d", &enable) < 1)
		return -EINVAL;

	if (enable) {
		if (!kit->lcd_files_on) {
			dev_dbg(&kit->udev->dev, "Adding lcd files\n");
278 279 280 281 282 283
			for (i=0; i<ARRAY_SIZE(dev_lcd_line_attrs); i++) {
				rc = device_create_file(kit->dev,
					&dev_lcd_line_attrs[i]);
				if (rc)
					goto out;
			}
L
Linus Torvalds 已提交
284 285 286 287 288 289 290 291 292 293
			kit->lcd_files_on = 1;
		}
	} else {
		if (kit->lcd_files_on) {
			remove_lcd_files(kit);
			kit->lcd_files_on = 0;
		}
	}
	
	return count;
294 295 296 297 298
out:
	while (i-- > 0)
		device_remove_file(kit->dev, &dev_lcd_line_attrs[i]);

	return rc;
L
Linus Torvalds 已提交
299
}
300

L
Linus Torvalds 已提交
301 302
static DEVICE_ATTR(lcd, S_IWUGO, NULL, enable_lcd_files);

303
static void interfacekit_irq(struct urb *urb)
L
Linus Torvalds 已提交
304
{
305
	struct interfacekit *kit = urb->context;
L
Linus Torvalds 已提交
306
	unsigned char *buffer = kit->data;
307
	int i, level, sensor;
308 309
	int retval;
	int status = urb->status;
L
Linus Torvalds 已提交
310

311
	switch (status) {
L
Linus Torvalds 已提交
312 313 314 315 316 317 318 319 320 321 322
	case 0:			/* success */
		break;
	case -ECONNRESET:	/* unlink */
	case -ENOENT:
	case -ESHUTDOWN:
		return;
	/* -EPIPE:  should clear the halt */
	default:		/* error */
		goto resubmit;
	}

323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
	/* digital inputs */
	if (kit->ifkit->inputs == 16) {
		for (i=0; i < 8; i++) {
			level = (buffer[0] >> i) & 1;
			if (kit->inputs[i] != level) {
				kit->inputs[i] = level;
				set_bit(i, &kit->input_events);
			}
			level = (buffer[1] >> i) & 1;
			if (kit->inputs[8 + i] != level) {
				kit->inputs[8 + i] = level;
				set_bit(8 + i, &kit->input_events);
			}
		}
	}
	else if (kit->ifkit->inputs == 8) {
		for (i=0; i < 8; i++) {
			level = (buffer[1] >> i) & 1;
			if (kit->inputs[i] != level) {
				kit->inputs[i] = level;
				set_bit(i, &kit->input_events);
			}
		}
L
Linus Torvalds 已提交
346 347
	}

348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
	/* analog inputs */
	if (kit->ifkit->sensors) {
		sensor = (buffer[0] & 1) ? 4 : 0;

		level = buffer[2] + (buffer[3] & 0x0f) * 256;
		if (level != kit->sensors[sensor]) {
			kit->sensors[sensor] = level;
			set_bit(sensor, &kit->sensor_events);
		}
		sensor++;
		level = buffer[4] + (buffer[3] & 0xf0) * 16;
		if (level != kit->sensors[sensor]) {
			kit->sensors[sensor] = level;
			set_bit(sensor, &kit->sensor_events);
		}
		sensor++;
		level = buffer[5] + (buffer[6] & 0x0f) * 256;
		if (level != kit->sensors[sensor]) {
			kit->sensors[sensor] = level;
			set_bit(sensor, &kit->sensor_events);
		}
		sensor++;
		level = buffer[7] + (buffer[6] & 0xf0) * 16;
		if (level != kit->sensors[sensor]) {
			kit->sensors[sensor] = level;
			set_bit(sensor, &kit->sensor_events);
		}
L
Linus Torvalds 已提交
375 376
	}

377
	if (kit->input_events || kit->sensor_events)
D
David Howells 已提交
378
		schedule_delayed_work(&kit->do_notify, 0);
379

L
Linus Torvalds 已提交
380
resubmit:
381 382 383
	retval = usb_submit_urb(urb, GFP_ATOMIC);
	if (retval)
		err("can't resubmit intr, %s-%s/interfacekit0, retval %d",
L
Linus Torvalds 已提交
384
			kit->udev->bus->bus_name,
385
			kit->udev->devpath, retval);
L
Linus Torvalds 已提交
386 387
}

D
David Howells 已提交
388
static void do_notify(struct work_struct *work)
389
{
D
David Howells 已提交
390 391
	struct interfacekit *kit =
		container_of(work, struct interfacekit, do_notify.work);
392 393 394 395 396 397
	int i;
	char sysfs_file[8];

	for (i=0; i<kit->ifkit->inputs; i++) {
		if (test_and_clear_bit(i, &kit->input_events)) {
			sprintf(sysfs_file, "input%d", i + 1);
398
			sysfs_notify(&kit->dev->kobj, NULL, sysfs_file);
399 400 401 402 403 404
		}
	}

	for (i=0; i<kit->ifkit->sensors; i++) {
		if (test_and_clear_bit(i, &kit->sensor_events)) {
			sprintf(sysfs_file, "sensor%d", i + 1);
405
			sysfs_notify(&kit->dev->kobj, NULL, sysfs_file);
406 407 408 409
		}
	}
}

D
David Howells 已提交
410
static void do_resubmit(struct work_struct *work)
411
{
D
David Howells 已提交
412 413 414
	struct interfacekit *kit =
		container_of(work, struct interfacekit, do_resubmit.work);
	set_outputs(kit);
415 416
}

L
Linus Torvalds 已提交
417
#define show_set_output(value)		\
418 419 420
static ssize_t set_output##value(struct device *dev,			\
					struct device_attribute *attr,	\
					const char *buf, size_t count)	\
L
Linus Torvalds 已提交
421
{									\
422
	struct interfacekit *kit = dev_get_drvdata(dev);		\
423
	int enable;							\
L
Linus Torvalds 已提交
424 425
	int retval;							\
									\
426
	if (sscanf(buf, "%d", &enable) < 1)				\
L
Linus Torvalds 已提交
427 428
		return -EINVAL;						\
									\
429 430 431 432 433 434
	if (enable)							\
		set_bit(value - 1, &kit->outputs);			\
	else								\
		clear_bit(value - 1, &kit->outputs); 			\
									\
	retval = set_outputs(kit);					\
L
Linus Torvalds 已提交
435 436 437 438
									\
	return retval ? retval : count;					\
}									\
									\
439 440 441
static ssize_t show_output##value(struct device *dev, 			\
					struct device_attribute *attr,	\
					char *buf)			\
L
Linus Torvalds 已提交
442
{									\
443
	struct interfacekit *kit = dev_get_drvdata(dev);		\
L
Linus Torvalds 已提交
444
									\
445
	return sprintf(buf, "%d\n", !!test_bit(value - 1, &kit->outputs));\
446 447 448 449 450 451
}

#define output_attr(value)						\
	__ATTR(output##value, S_IWUGO | S_IRUGO,			\
		show_output##value, set_output##value)

L
Linus Torvalds 已提交
452 453 454 455 456 457 458
show_set_output(1);
show_set_output(2);
show_set_output(3);
show_set_output(4);
show_set_output(5);
show_set_output(6);
show_set_output(7);
459 460 461 462 463 464 465 466 467
show_set_output(8);
show_set_output(9);
show_set_output(10);
show_set_output(11);
show_set_output(12);
show_set_output(13);
show_set_output(14);
show_set_output(15);
show_set_output(16);
L
Linus Torvalds 已提交
468

469 470 471 472 473 474 475
static struct device_attribute dev_output_attrs[] = {
	output_attr(1), output_attr(2), output_attr(3), output_attr(4),
	output_attr(5), output_attr(6), output_attr(7), output_attr(8),
	output_attr(9), output_attr(10), output_attr(11), output_attr(12),
	output_attr(13), output_attr(14), output_attr(15), output_attr(16)
};

L
Linus Torvalds 已提交
476
#define show_input(value)	\
477 478
static ssize_t show_input##value(struct device *dev, 			\
			struct device_attribute *attr, char *buf)	\
L
Linus Torvalds 已提交
479
{									\
480
	struct interfacekit *kit = dev_get_drvdata(dev);		\
L
Linus Torvalds 已提交
481
									\
482
	return sprintf(buf, "%d\n", (int)kit->inputs[value - 1]);	\
483 484 485 486
}

#define input_attr(value)						\
	__ATTR(input##value, S_IRUGO, show_input##value, NULL)
L
Linus Torvalds 已提交
487 488 489 490 491 492 493 494

show_input(1);
show_input(2);
show_input(3);
show_input(4);
show_input(5);
show_input(6);
show_input(7);
495 496 497 498 499 500 501 502 503
show_input(8);
show_input(9);
show_input(10);
show_input(11);
show_input(12);
show_input(13);
show_input(14);
show_input(15);
show_input(16);
L
Linus Torvalds 已提交
504

505 506 507 508 509 510 511
static struct device_attribute dev_input_attrs[] = {
	input_attr(1), input_attr(2), input_attr(3), input_attr(4),
	input_attr(5), input_attr(6), input_attr(7), input_attr(8),
	input_attr(9), input_attr(10), input_attr(11), input_attr(12),
	input_attr(13), input_attr(14), input_attr(15), input_attr(16)
};

L
Linus Torvalds 已提交
512
#define show_sensor(value)	\
513 514 515
static ssize_t show_sensor##value(struct device *dev,			\
					struct device_attribute *attr,	\
					char *buf)			\
L
Linus Torvalds 已提交
516
{									\
517
	struct interfacekit *kit = dev_get_drvdata(dev);		\
L
Linus Torvalds 已提交
518
									\
519
	return sprintf(buf, "%d\n", (int)kit->sensors[value - 1]);	\
520 521 522 523
}

#define sensor_attr(value)						\
	__ATTR(sensor##value, S_IRUGO, show_sensor##value, NULL)
L
Linus Torvalds 已提交
524 525 526 527 528 529 530 531

show_sensor(1);
show_sensor(2);
show_sensor(3);
show_sensor(4);
show_sensor(5);
show_sensor(6);
show_sensor(7);
532
show_sensor(8);
L
Linus Torvalds 已提交
533

534 535 536 537 538
static struct device_attribute dev_sensor_attrs[] = {
	sensor_attr(1), sensor_attr(2), sensor_attr(3), sensor_attr(4),
	sensor_attr(5), sensor_attr(6), sensor_attr(7), sensor_attr(8)
};

L
Linus Torvalds 已提交
539 540 541 542 543
static int interfacekit_probe(struct usb_interface *intf, const struct usb_device_id *id)
{
	struct usb_device *dev = interface_to_usbdev(intf);
	struct usb_host_interface *interface;
	struct usb_endpoint_descriptor *endpoint;
544
	struct interfacekit *kit;
L
Linus Torvalds 已提交
545
	struct driver_interfacekit *ifkit;
546
	int pipe, maxp, rc = -ENOMEM;
547
	int bit, value, i;
L
Linus Torvalds 已提交
548 549 550 551 552 553 554 555 556 557

	ifkit = (struct driver_interfacekit *)id->driver_info;
	if (!ifkit)
		return -ENODEV;

	interface = intf->cur_altsetting;
	if (interface->desc.bNumEndpoints != 1)
		return -ENODEV;

	endpoint = &interface->endpoint[0].desc;
558
	if (!usb_endpoint_dir_in(endpoint))
L
Linus Torvalds 已提交
559 560 561 562 563 564 565
		return -ENODEV;
	/*
	 * bmAttributes
	 */
	pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
	maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
	
566
	kit = kzalloc(sizeof(*kit), GFP_KERNEL);
567 568
	if (!kit)
		goto out;
L
Linus Torvalds 已提交
569

570
	kit->dev_no = -1;
571
	kit->ifkit = ifkit;
572
	kit->data = usb_buffer_alloc(dev, URB_INT_SIZE, GFP_ATOMIC, &kit->data_dma);
573 574
	if (!kit->data)
		goto out;
L
Linus Torvalds 已提交
575 576

	kit->irq = usb_alloc_urb(0, GFP_KERNEL);
577 578
	if (!kit->irq)
		goto out;
L
Linus Torvalds 已提交
579 580 581

	kit->udev = usb_get_dev(dev);
	kit->intf = intf;
D
David Howells 已提交
582 583
	INIT_DELAYED_WORK(&kit->do_notify, do_notify);
	INIT_DELAYED_WORK(&kit->do_resubmit, do_resubmit);
L
Linus Torvalds 已提交
584
	usb_fill_int_urb(kit->irq, kit->udev, pipe, kit->data,
585
			maxp > URB_INT_SIZE ? URB_INT_SIZE : maxp,
L
Linus Torvalds 已提交
586 587 588 589 590 591
			interfacekit_irq, kit, endpoint->bInterval);
	kit->irq->transfer_dma = kit->data_dma;
	kit->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;

	usb_set_intfdata(intf, kit);

592 593 594 595 596 597
        do {
                bit = find_first_zero_bit(&device_no, sizeof(device_no));
                value = test_and_set_bit(bit, &device_no);
        } while(value);
        kit->dev_no = bit;

598 599
	kit->dev = device_create(phidget_class, &kit->udev->dev, MKDEV(0, 0),
				 kit, "interfacekit%d", kit->dev_no);
600 601 602 603 604 605
        if (IS_ERR(kit->dev)) {
                rc = PTR_ERR(kit->dev);
                kit->dev = NULL;
                goto out;
        }

L
Linus Torvalds 已提交
606
	if (usb_submit_urb(kit->irq, GFP_KERNEL)) {
607 608
		rc = -EIO;
		goto out;
L
Linus Torvalds 已提交
609 610
	}

611 612 613 614
	for (i=0; i<ifkit->outputs; i++ ) {
		rc = device_create_file(kit->dev, &dev_output_attrs[i]);
		if (rc)
			goto out2;
615
	}
L
Linus Torvalds 已提交
616

617 618 619 620
	for (i=0; i<ifkit->inputs; i++ ) {
		rc = device_create_file(kit->dev, &dev_input_attrs[i]);
		if (rc)
			goto out3;
621
	}
L
Linus Torvalds 已提交
622

623 624 625 626
	for (i=0; i<ifkit->sensors; i++ ) {
		rc = device_create_file(kit->dev, &dev_sensor_attrs[i]);
		if (rc)
			goto out4;
L
Linus Torvalds 已提交
627 628
	}

629 630 631 632 633 634
	if (ifkit->has_lcd) {
		rc = device_create_file(kit->dev, &dev_attr_lcd);
		if (rc)
			goto out4;

	}
L
Linus Torvalds 已提交
635 636 637 638 639

	dev_info(&intf->dev, "USB PhidgetInterfaceKit %d/%d/%d attached\n",
			ifkit->sensors, ifkit->inputs, ifkit->outputs);

	return 0;
640

641 642 643 644 645 646 647 648 649 650 651 652 653
out4:
	while (i-- > 0)
		device_remove_file(kit->dev, &dev_sensor_attrs[i]);

	i = ifkit->inputs;
out3:
	while (i-- > 0)
		device_remove_file(kit->dev, &dev_input_attrs[i]);

	i = ifkit->outputs;
out2:
	while (i-- > 0)
		device_remove_file(kit->dev, &dev_output_attrs[i]);
654 655
out:
	if (kit) {
656
		usb_free_urb(kit->irq);
657 658
		if (kit->data)
			usb_buffer_free(dev, URB_INT_SIZE, kit->data, kit->data_dma);
659 660 661 662 663
		if (kit->dev)
			device_unregister(kit->dev);
		if (kit->dev_no >= 0)
			clear_bit(kit->dev_no, &device_no);

664 665 666 667
		kfree(kit);
	}

	return rc;
L
Linus Torvalds 已提交
668 669 670 671
}

static void interfacekit_disconnect(struct usb_interface *interface)
{
672
	struct interfacekit *kit;
673
	int i;
L
Linus Torvalds 已提交
674 675 676 677 678 679

	kit = usb_get_intfdata(interface);
	usb_set_intfdata(interface, NULL);
	if (!kit)
		return;

680 681 682 683 684
	usb_kill_urb(kit->irq);
	usb_free_urb(kit->irq);
	usb_buffer_free(kit->udev, URB_INT_SIZE, kit->data, kit->data_dma);

	cancel_delayed_work(&kit->do_notify);
685
	cancel_delayed_work(&kit->do_resubmit);
686

687 688
	for (i=0; i<kit->ifkit->outputs; i++)
		device_remove_file(kit->dev, &dev_output_attrs[i]);
L
Linus Torvalds 已提交
689

690 691
	for (i=0; i<kit->ifkit->inputs; i++)
		device_remove_file(kit->dev, &dev_input_attrs[i]);
L
Linus Torvalds 已提交
692

693 694
	for (i=0; i<kit->ifkit->sensors; i++)
		device_remove_file(kit->dev, &dev_sensor_attrs[i]);
695

696
	if (kit->ifkit->has_lcd) {
697
		device_remove_file(kit->dev, &dev_attr_lcd);
698 699
		remove_lcd_files(kit);
	}
700 701

	device_unregister(kit->dev);
L
Linus Torvalds 已提交
702 703 704 705 706

	dev_info(&interface->dev, "USB PhidgetInterfaceKit %d/%d/%d detached\n",
		kit->ifkit->sensors, kit->ifkit->inputs, kit->ifkit->outputs);

	usb_put_dev(kit->udev);
707 708
	clear_bit(kit->dev_no, &device_no);

L
Linus Torvalds 已提交
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
	kfree(kit);
}

static struct usb_driver interfacekit_driver = {
	.name = "phidgetkit",
	.probe = interfacekit_probe,
	.disconnect = interfacekit_disconnect,
	.id_table = id_table
};

static int __init interfacekit_init(void)
{
	int retval = 0;

	retval = usb_register(&interfacekit_driver);
	if (retval)
		err("usb_register failed. Error number %d", retval);

	return retval;
}

static void __exit interfacekit_exit(void)
{
	usb_deregister(&interfacekit_driver);
}

module_init(interfacekit_init);
module_exit(interfacekit_exit);

MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");