diff options
Diffstat (limited to 'drivers/usb/misc/phidgetservo.c')
-rw-r--r-- | drivers/usb/misc/phidgetservo.c | 117 |
1 files changed, 78 insertions, 39 deletions
diff --git a/drivers/usb/misc/phidgetservo.c b/drivers/usb/misc/phidgetservo.c index c0df79c96538..7163f05c5b27 100644 --- a/drivers/usb/misc/phidgetservo.c +++ b/drivers/usb/misc/phidgetservo.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * USB PhidgetServo driver 1.0 | 2 | * USB PhidgetServo driver 1.0 |
3 | * | 3 | * |
4 | * Copyright (C) 2004 Sean Young <sean@mess.org> | 4 | * Copyright (C) 2004, 2006 Sean Young <sean@mess.org> |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 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 | 7 | * it under the terms of the GNU General Public License as published by |
@@ -15,14 +15,6 @@ | |||
15 | * | 15 | * |
16 | * CAUTION: Generally you should use 0 < degrees < 180 as anything else | 16 | * CAUTION: Generally you should use 0 < degrees < 180 as anything else |
17 | * is probably beyond the range of your servo and may damage it. | 17 | * is probably beyond the range of your servo and may damage it. |
18 | * | ||
19 | * Jun 16, 2004: Sean Young <sean@mess.org> | ||
20 | * - cleanups | ||
21 | * - was using memory after kfree() | ||
22 | * Aug 8, 2004: Sean Young <sean@mess.org> | ||
23 | * - set the highest angle as high as the hardware allows, there are | ||
24 | * some odd servos out there | ||
25 | * | ||
26 | */ | 18 | */ |
27 | 19 | ||
28 | #include <linux/kernel.h> | 20 | #include <linux/kernel.h> |
@@ -32,6 +24,8 @@ | |||
32 | #include <linux/module.h> | 24 | #include <linux/module.h> |
33 | #include <linux/usb.h> | 25 | #include <linux/usb.h> |
34 | 26 | ||
27 | #include "phidget.h" | ||
28 | |||
35 | #define DRIVER_AUTHOR "Sean Young <sean@mess.org>" | 29 | #define DRIVER_AUTHOR "Sean Young <sean@mess.org>" |
36 | #define DRIVER_DESC "USB PhidgetServo Driver" | 30 | #define DRIVER_DESC "USB PhidgetServo Driver" |
37 | 31 | ||
@@ -70,8 +64,12 @@ static struct usb_device_id id_table[] = { | |||
70 | 64 | ||
71 | MODULE_DEVICE_TABLE(usb, id_table); | 65 | MODULE_DEVICE_TABLE(usb, id_table); |
72 | 66 | ||
67 | static int unsigned long device_no; | ||
68 | |||
73 | struct phidget_servo { | 69 | struct phidget_servo { |
74 | struct usb_device *udev; | 70 | struct usb_device *udev; |
71 | struct device *dev; | ||
72 | int dev_no; | ||
75 | ulong type; | 73 | ulong type; |
76 | int pulse[4]; | 74 | int pulse[4]; |
77 | int degrees[4]; | 75 | int degrees[4]; |
@@ -203,16 +201,16 @@ change_position_v20(struct phidget_servo *servo, int servo_no, int degrees, | |||
203 | } | 201 | } |
204 | 202 | ||
205 | #define show_set(value) \ | 203 | #define show_set(value) \ |
206 | static ssize_t set_servo##value (struct device *dev, struct device_attribute *attr, \ | 204 | static ssize_t set_servo##value (struct device *dev, \ |
205 | struct device_attribute *attr, \ | ||
207 | const char *buf, size_t count) \ | 206 | const char *buf, size_t count) \ |
208 | { \ | 207 | { \ |
209 | int degrees, minutes, retval; \ | 208 | int degrees, minutes, retval; \ |
210 | struct usb_interface *intf = to_usb_interface (dev); \ | 209 | struct phidget_servo *servo = dev_get_drvdata(dev); \ |
211 | struct phidget_servo *servo = usb_get_intfdata (intf); \ | ||
212 | \ | 210 | \ |
213 | minutes = 0; \ | 211 | minutes = 0; \ |
214 | /* must at least convert degrees */ \ | 212 | /* must at least convert degrees */ \ |
215 | if (sscanf (buf, "%d.%d", °rees, &minutes) < 1) { \ | 213 | if (sscanf(buf, "%d.%d", °rees, &minutes) < 1) { \ |
216 | return -EINVAL; \ | 214 | return -EINVAL; \ |
217 | } \ | 215 | } \ |
218 | \ | 216 | \ |
@@ -220,86 +218,127 @@ static ssize_t set_servo##value (struct device *dev, struct device_attribute *at | |||
220 | return -EINVAL; \ | 218 | return -EINVAL; \ |
221 | \ | 219 | \ |
222 | if (servo->type & SERVO_VERSION_30) \ | 220 | if (servo->type & SERVO_VERSION_30) \ |
223 | retval = change_position_v30 (servo, value, degrees, \ | 221 | retval = change_position_v30(servo, value, degrees, \ |
224 | minutes); \ | 222 | minutes); \ |
225 | else \ | 223 | else \ |
226 | retval = change_position_v20 (servo, value, degrees, \ | 224 | retval = change_position_v20(servo, value, degrees, \ |
227 | minutes); \ | 225 | minutes); \ |
228 | \ | 226 | \ |
229 | return retval < 0 ? retval : count; \ | 227 | return retval < 0 ? retval : count; \ |
230 | } \ | 228 | } \ |
231 | \ | 229 | \ |
232 | static ssize_t show_servo##value (struct device *dev, struct device_attribute *attr, char *buf) \ | 230 | static ssize_t show_servo##value (struct device *dev, \ |
231 | struct device_attribute *attr, \ | ||
232 | char *buf) \ | ||
233 | { \ | 233 | { \ |
234 | struct usb_interface *intf = to_usb_interface (dev); \ | 234 | struct phidget_servo *servo = dev_get_drvdata(dev); \ |
235 | struct phidget_servo *servo = usb_get_intfdata (intf); \ | ||
236 | \ | 235 | \ |
237 | return sprintf (buf, "%d.%02d\n", servo->degrees[value], \ | 236 | return sprintf(buf, "%d.%02d\n", servo->degrees[value], \ |
238 | servo->minutes[value]); \ | 237 | servo->minutes[value]); \ |
239 | } \ | 238 | } |
240 | static DEVICE_ATTR(servo##value, S_IWUGO | S_IRUGO, \ | ||
241 | show_servo##value, set_servo##value); | ||
242 | 239 | ||
240 | #define servo_attr(value) \ | ||
241 | __ATTR(servo##value, S_IWUGO | S_IRUGO, \ | ||
242 | show_servo##value, set_servo##value) | ||
243 | show_set(0); | 243 | show_set(0); |
244 | show_set(1); | 244 | show_set(1); |
245 | show_set(2); | 245 | show_set(2); |
246 | show_set(3); | 246 | show_set(3); |
247 | 247 | ||
248 | static struct device_attribute dev_attrs[] = { | ||
249 | servo_attr(0), servo_attr(1), servo_attr(2), servo_attr(3) | ||
250 | }; | ||
251 | |||
248 | static int | 252 | static int |
249 | servo_probe(struct usb_interface *interface, const struct usb_device_id *id) | 253 | servo_probe(struct usb_interface *interface, const struct usb_device_id *id) |
250 | { | 254 | { |
251 | struct usb_device *udev = interface_to_usbdev(interface); | 255 | struct usb_device *udev = interface_to_usbdev(interface); |
252 | struct phidget_servo *dev; | 256 | struct phidget_servo *dev; |
257 | int bit, value, rc; | ||
258 | int servo_count, i; | ||
253 | 259 | ||
254 | dev = kzalloc(sizeof (struct phidget_servo), GFP_KERNEL); | 260 | dev = kzalloc(sizeof (struct phidget_servo), GFP_KERNEL); |
255 | if (dev == NULL) { | 261 | if (dev == NULL) { |
256 | dev_err(&interface->dev, "%s - out of memory\n", __FUNCTION__); | 262 | dev_err(&interface->dev, "%s - out of memory\n", __FUNCTION__); |
257 | return -ENOMEM; | 263 | rc = -ENOMEM; |
264 | goto out; | ||
258 | } | 265 | } |
259 | 266 | ||
260 | dev->udev = usb_get_dev(udev); | 267 | dev->udev = usb_get_dev(udev); |
261 | dev->type = id->driver_info; | 268 | dev->type = id->driver_info; |
269 | dev->dev_no = -1; | ||
262 | usb_set_intfdata(interface, dev); | 270 | usb_set_intfdata(interface, dev); |
263 | 271 | ||
264 | device_create_file(&interface->dev, &dev_attr_servo0); | 272 | do { |
265 | if (dev->type & SERVO_COUNT_QUAD) { | 273 | bit = find_first_zero_bit(&device_no, sizeof(device_no)); |
266 | device_create_file(&interface->dev, &dev_attr_servo1); | 274 | value = test_and_set_bit(bit, &device_no); |
267 | device_create_file(&interface->dev, &dev_attr_servo2); | 275 | } while (value); |
268 | device_create_file(&interface->dev, &dev_attr_servo3); | 276 | dev->dev_no = bit; |
277 | |||
278 | dev->dev = device_create(phidget_class, &dev->udev->dev, 0, | ||
279 | "servo%d", dev->dev_no); | ||
280 | if (IS_ERR(dev->dev)) { | ||
281 | rc = PTR_ERR(dev->dev); | ||
282 | dev->dev = NULL; | ||
283 | goto out; | ||
284 | } | ||
285 | |||
286 | servo_count = dev->type & SERVO_COUNT_QUAD ? 4 : 1; | ||
287 | |||
288 | for (i=0; i<servo_count; i++) { | ||
289 | rc = device_create_file(dev->dev, &dev_attrs[i]); | ||
290 | if (rc) | ||
291 | goto out2; | ||
269 | } | 292 | } |
270 | 293 | ||
271 | dev_info(&interface->dev, "USB %d-Motor PhidgetServo v%d.0 attached\n", | 294 | dev_info(&interface->dev, "USB %d-Motor PhidgetServo v%d.0 attached\n", |
272 | dev->type & SERVO_COUNT_QUAD ? 4 : 1, | 295 | servo_count, dev->type & SERVO_VERSION_30 ? 3 : 2); |
273 | dev->type & SERVO_VERSION_30 ? 3 : 2); | ||
274 | 296 | ||
275 | if(!(dev->type & SERVO_VERSION_30)) | 297 | if (!(dev->type & SERVO_VERSION_30)) |
276 | dev_info(&interface->dev, | 298 | dev_info(&interface->dev, |
277 | "WARNING: v2.0 not tested! Please report if it works.\n"); | 299 | "WARNING: v2.0 not tested! Please report if it works.\n"); |
278 | 300 | ||
279 | return 0; | 301 | return 0; |
302 | out2: | ||
303 | while (i-- > 0) | ||
304 | device_remove_file(dev->dev, &dev_attrs[i]); | ||
305 | out: | ||
306 | if (dev) { | ||
307 | if (dev->dev) | ||
308 | device_unregister(dev->dev); | ||
309 | if (dev->dev_no >= 0) | ||
310 | clear_bit(dev->dev_no, &device_no); | ||
311 | |||
312 | kfree(dev); | ||
313 | } | ||
314 | |||
315 | return rc; | ||
280 | } | 316 | } |
281 | 317 | ||
282 | static void | 318 | static void |
283 | servo_disconnect(struct usb_interface *interface) | 319 | servo_disconnect(struct usb_interface *interface) |
284 | { | 320 | { |
285 | struct phidget_servo *dev; | 321 | struct phidget_servo *dev; |
322 | int servo_count, i; | ||
286 | 323 | ||
287 | dev = usb_get_intfdata(interface); | 324 | dev = usb_get_intfdata(interface); |
288 | usb_set_intfdata(interface, NULL); | 325 | usb_set_intfdata(interface, NULL); |
289 | 326 | ||
290 | device_remove_file(&interface->dev, &dev_attr_servo0); | 327 | if (!dev) |
291 | if (dev->type & SERVO_COUNT_QUAD) { | 328 | return; |
292 | device_remove_file(&interface->dev, &dev_attr_servo1); | 329 | |
293 | device_remove_file(&interface->dev, &dev_attr_servo2); | 330 | servo_count = dev->type & SERVO_COUNT_QUAD ? 4 : 1; |
294 | device_remove_file(&interface->dev, &dev_attr_servo3); | 331 | |
295 | } | 332 | for (i=0; i<servo_count; i++) |
333 | device_remove_file(dev->dev, &dev_attrs[i]); | ||
296 | 334 | ||
335 | device_unregister(dev->dev); | ||
297 | usb_put_dev(dev->udev); | 336 | usb_put_dev(dev->udev); |
298 | 337 | ||
299 | dev_info(&interface->dev, "USB %d-Motor PhidgetServo v%d.0 detached\n", | 338 | dev_info(&interface->dev, "USB %d-Motor PhidgetServo v%d.0 detached\n", |
300 | dev->type & SERVO_COUNT_QUAD ? 4 : 1, | 339 | servo_count, dev->type & SERVO_VERSION_30 ? 3 : 2); |
301 | dev->type & SERVO_VERSION_30 ? 3 : 2); | ||
302 | 340 | ||
341 | clear_bit(dev->dev_no, &device_no); | ||
303 | kfree(dev); | 342 | kfree(dev); |
304 | } | 343 | } |
305 | 344 | ||