2 * USB Phidget MotorControl driver
4 * Copyright (C) 2006 Sean Young <sean@mess.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/usb.h>
20 #define DRIVER_AUTHOR "Sean Young <sean@mess.org>"
21 #define DRIVER_DESC "USB PhidgetMotorControl Driver"
23 #define USB_VENDOR_ID_GLAB 0x06c2
24 #define USB_DEVICE_ID_MOTORCONTROL 0x0058
26 #define URB_INT_SIZE 8
28 static unsigned long device_no;
31 struct usb_device *udev;
32 struct usb_interface *intf;
44 struct work_struct do_notify;
45 unsigned long input_events;
46 unsigned long speed_events;
47 unsigned long exceed_events;
50 static struct usb_device_id id_table[] = {
51 { USB_DEVICE(USB_VENDOR_ID_GLAB, USB_DEVICE_ID_MOTORCONTROL) },
54 MODULE_DEVICE_TABLE(usb, id_table);
56 static int set_motor(struct motorcontrol *mc, int motor)
59 int speed, speed2, acceleration;
62 buffer = kzalloc(8, GFP_KERNEL);
64 dev_err(&mc->intf->dev, "%s - out of memory\n", __FUNCTION__);
68 acceleration = mc->acceleration[motor] * 10;
69 /* -127 <= speed <= 127 */
70 speed = (mc->desired_speed[motor] * 127) / 100;
71 /* -0x7300 <= speed2 <= 0x7300 */
72 speed2 = (mc->desired_speed[motor] * 230 * 128) / 100;
76 buffer[2] = acceleration >> 8;
77 buffer[3] = acceleration;
78 buffer[4] = speed2 >> 8;
81 retval = usb_control_msg(mc->udev,
82 usb_sndctrlpipe(mc->udev, 0),
83 0x09, 0x21, 0x0200, 0x0000, buffer, 8, 2000);
86 dev_err(&mc->intf->dev, "usb_control_msg returned %d\n",
90 return retval < 0 ? retval : 0;
93 static void motorcontrol_irq(struct urb *urb)
95 struct motorcontrol *mc = urb->context;
96 unsigned char *buffer = mc->data;
100 switch (urb->status) {
101 case 0: /* success */
103 case -ECONNRESET: /* unlink */
107 /* -EPIPE: should clear the halt */
113 for (i=0; i<4; i++) {
114 level = (buffer[0] >> i) & 1;
115 if (mc->inputs[i] != level) {
116 mc->inputs[i] = level;
117 set_bit(i, &mc->input_events);
122 if (buffer[2] == 0) {
123 for (i=0; i<2; i++) {
124 level = ((s8)buffer[4+i]) * 100 / 127;
125 if (mc->speed[i] != level) {
126 mc->speed[i] = level;
127 set_bit(i, &mc->speed_events);
131 int index = buffer[3] & 1;
133 level = ((s8)buffer[4] << 8) | buffer[5];
134 level = level * 100 / 29440;
135 if (mc->speed[index] != level) {
136 mc->speed[index] = level;
137 set_bit(index, &mc->speed_events);
140 level = ((s8)buffer[6] << 8) | buffer[7];
141 mc->_current[index] = level * 100 / 1572;
145 set_bit(0, &mc->exceed_events);
148 set_bit(1, &mc->exceed_events);
150 if (mc->input_events || mc->exceed_events || mc->speed_events)
151 schedule_work(&mc->do_notify);
154 status = usb_submit_urb(urb, SLAB_ATOMIC);
156 dev_err(&mc->intf->dev,
157 "can't resubmit intr, %s-%s/motorcontrol0, status %d",
158 mc->udev->bus->bus_name,
159 mc->udev->devpath, status);
162 static void do_notify(void *data)
164 struct motorcontrol *mc = data;
168 for (i=0; i<4; i++) {
169 if (test_and_clear_bit(i, &mc->input_events)) {
170 sprintf(sysfs_file, "input%d", i);
171 sysfs_notify(&mc->dev->kobj, NULL, sysfs_file);
175 for (i=0; i<2; i++) {
176 if (test_and_clear_bit(i, &mc->speed_events)) {
177 sprintf(sysfs_file, "speed%d", i);
178 sysfs_notify(&mc->dev->kobj, NULL, sysfs_file);
182 for (i=0; i<2; i++) {
183 if (test_and_clear_bit(i, &mc->exceed_events))
184 dev_warn(&mc->intf->dev,
185 "motor #%d exceeds 1.5 Amp current limit\n", i);
189 #define show_set_speed(value) \
190 static ssize_t set_speed##value(struct device *dev, \
191 struct device_attribute *attr, \
192 const char *buf, size_t count) \
194 struct motorcontrol *mc = dev_get_drvdata(dev); \
198 if (sscanf(buf, "%d", &speed) < 1) \
201 if (speed < -100 || speed > 100) \
204 mc->desired_speed[value] = speed; \
206 retval = set_motor(mc, value); \
208 return retval ? retval : count; \
211 static ssize_t show_speed##value(struct device *dev, \
212 struct device_attribute *attr, \
215 struct motorcontrol *mc = dev_get_drvdata(dev); \
217 return sprintf(buf, "%d\n", mc->speed[value]); \
220 #define speed_attr(value) \
221 __ATTR(speed##value, S_IWUGO | S_IRUGO, \
222 show_speed##value, set_speed##value)
227 #define show_set_acceleration(value) \
228 static ssize_t set_acceleration##value(struct device *dev, \
229 struct device_attribute *attr, \
230 const char *buf, size_t count) \
232 struct motorcontrol *mc = dev_get_drvdata(dev); \
236 if (sscanf(buf, "%d", &acceleration) < 1) \
239 if (acceleration < 0 || acceleration > 100) \
242 mc->acceleration[value] = acceleration; \
244 retval = set_motor(mc, value); \
246 return retval ? retval : count; \
249 static ssize_t show_acceleration##value(struct device *dev, \
250 struct device_attribute *attr, \
253 struct motorcontrol *mc = dev_get_drvdata(dev); \
255 return sprintf(buf, "%d\n", mc->acceleration[value]); \
258 #define acceleration_attr(value) \
259 __ATTR(acceleration##value, S_IWUGO | S_IRUGO, \
260 show_acceleration##value, set_acceleration##value)
262 show_set_acceleration(0);
263 show_set_acceleration(1);
265 #define show_current(value) \
266 static ssize_t show_current##value(struct device *dev, \
267 struct device_attribute *attr, \
270 struct motorcontrol *mc = dev_get_drvdata(dev); \
272 return sprintf(buf, "%dmA\n", (int)mc->_current[value]); \
275 #define current_attr(value) \
276 __ATTR(current##value, S_IRUGO, show_current##value, NULL)
281 #define show_input(value) \
282 static ssize_t show_input##value(struct device *dev, \
283 struct device_attribute *attr, \
286 struct motorcontrol *mc = dev_get_drvdata(dev); \
288 return sprintf(buf, "%d\n", (int)mc->inputs[value]); \
291 #define input_attr(value) \
292 __ATTR(input##value, S_IRUGO, show_input##value, NULL)
299 static struct device_attribute dev_attrs[] = {
306 acceleration_attr(0),
307 acceleration_attr(1),
312 static int motorcontrol_probe(struct usb_interface *intf, const struct usb_device_id *id)
314 struct usb_device *dev = interface_to_usbdev(intf);
315 struct usb_host_interface *interface;
316 struct usb_endpoint_descriptor *endpoint;
317 struct motorcontrol *mc;
318 int pipe, maxp, rc = -ENOMEM;
321 interface = intf->cur_altsetting;
322 if (interface->desc.bNumEndpoints != 1)
325 endpoint = &interface->endpoint[0].desc;
326 if (!usb_endpoint_dir_in(endpoint))
332 pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
333 maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
335 mc = kzalloc(sizeof(*mc), GFP_KERNEL);
340 mc->data = usb_buffer_alloc(dev, URB_INT_SIZE, SLAB_ATOMIC, &mc->data_dma);
344 mc->irq = usb_alloc_urb(0, GFP_KERNEL);
348 mc->udev = usb_get_dev(dev);
350 mc->acceleration[0] = mc->acceleration[1] = 10;
351 INIT_WORK(&mc->do_notify, do_notify, mc);
352 usb_fill_int_urb(mc->irq, mc->udev, pipe, mc->data,
353 maxp > URB_INT_SIZE ? URB_INT_SIZE : maxp,
354 motorcontrol_irq, mc, endpoint->bInterval);
355 mc->irq->transfer_dma = mc->data_dma;
356 mc->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
358 usb_set_intfdata(intf, mc);
361 bit = find_first_zero_bit(&device_no, sizeof(device_no));
362 value = test_and_set_bit(bit, &device_no);
366 mc->dev = device_create(phidget_class, &mc->udev->dev, 0,
367 "motorcontrol%d", mc->dev_no);
368 if (IS_ERR(mc->dev)) {
369 rc = PTR_ERR(mc->dev);
374 dev_set_drvdata(mc->dev, mc);
376 if (usb_submit_urb(mc->irq, GFP_KERNEL)) {
381 for (i=0; i<ARRAY_SIZE(dev_attrs); i++) {
382 rc = device_create_file(mc->dev, &dev_attrs[i]);
387 dev_info(&intf->dev, "USB PhidgetMotorControl attached\n");
392 device_remove_file(mc->dev, &dev_attrs[i]);
395 usb_free_urb(mc->irq);
397 usb_buffer_free(dev, URB_INT_SIZE, mc->data, mc->data_dma);
399 device_unregister(mc->dev);
401 clear_bit(mc->dev_no, &device_no);
409 static void motorcontrol_disconnect(struct usb_interface *interface)
411 struct motorcontrol *mc;
414 mc = usb_get_intfdata(interface);
415 usb_set_intfdata(interface, NULL);
419 usb_kill_urb(mc->irq);
420 usb_free_urb(mc->irq);
421 usb_buffer_free(mc->udev, URB_INT_SIZE, mc->data, mc->data_dma);
423 cancel_delayed_work(&mc->do_notify);
425 for (i=0; i<ARRAY_SIZE(dev_attrs); i++)
426 device_remove_file(mc->dev, &dev_attrs[i]);
428 device_unregister(mc->dev);
430 usb_put_dev(mc->udev);
431 clear_bit(mc->dev_no, &device_no);
434 dev_info(&interface->dev, "USB PhidgetMotorControl detached\n");
437 static struct usb_driver motorcontrol_driver = {
438 .name = "phidgetmotorcontrol",
439 .probe = motorcontrol_probe,
440 .disconnect = motorcontrol_disconnect,
444 static int __init motorcontrol_init(void)
448 retval = usb_register(&motorcontrol_driver);
450 err("usb_register failed. Error number %d", retval);
455 static void __exit motorcontrol_exit(void)
457 usb_deregister(&motorcontrol_driver);
460 module_init(motorcontrol_init);
461 module_exit(motorcontrol_exit);
463 MODULE_AUTHOR(DRIVER_AUTHOR);
464 MODULE_DESCRIPTION(DRIVER_DESC);
465 MODULE_LICENSE("GPL");