6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/slab.h>
15 #include <linux/module.h>
16 #include <linux/usb.h>
20 #define DRIVER_DESC "USB LED Driver"
23 DELCOM_VISUAL_SIGNAL_INDICATOR,
24 DREAM_CHEEKY_WEBMAIL_NOTIFIER,
27 /* table of devices that work with this driver */
28 static const struct usb_device_id id_table[] = {
29 { USB_DEVICE(0x0fc5, 0x1223),
30 .driver_info = DELCOM_VISUAL_SIGNAL_INDICATOR },
31 { USB_DEVICE(0x1d34, 0x0004),
32 .driver_info = DREAM_CHEEKY_WEBMAIL_NOTIFIER },
33 { USB_DEVICE(0x1d34, 0x000a),
34 .driver_info = DREAM_CHEEKY_WEBMAIL_NOTIFIER },
37 MODULE_DEVICE_TABLE(usb, id_table);
40 struct usb_device *udev;
47 static void change_color(struct usb_led *led)
50 unsigned char *buffer;
52 buffer = kmalloc(8, GFP_KERNEL);
54 dev_err(&led->udev->dev, "out of memory\n");
59 case DELCOM_VISUAL_SIGNAL_INDICATOR: {
60 unsigned char color = 0x07;
68 dev_dbg(&led->udev->dev,
69 "blue = %d, red = %d, green = %d, color = %.2x\n",
70 led->blue, led->red, led->green, color);
72 retval = usb_control_msg(led->udev,
73 usb_sndctrlpipe(led->udev, 0),
76 (0x02 * 0x100) + 0x0a,
77 (0x00 * 0x100) + color,
84 case DREAM_CHEEKY_WEBMAIL_NOTIFIER:
85 dev_dbg(&led->udev->dev,
86 "red = %d, green = %d, blue = %d\n",
87 led->red, led->green, led->blue);
90 buffer[1] = led->green;
91 buffer[2] = led->blue;
92 buffer[3] = buffer[4] = buffer[5] = 0;
96 retval = usb_control_msg(led->udev,
97 usb_sndctrlpipe(led->udev, 0),
108 dev_err(&led->udev->dev, "unknown device type %d\n", led->type);
112 dev_dbg(&led->udev->dev, "retval = %d\n", retval);
116 #define show_set(value) \
117 static ssize_t show_##value(struct device *dev, struct device_attribute *attr,\
120 struct usb_interface *intf = to_usb_interface(dev); \
121 struct usb_led *led = usb_get_intfdata(intf); \
123 return sprintf(buf, "%d\n", led->value); \
125 static ssize_t set_##value(struct device *dev, struct device_attribute *attr,\
126 const char *buf, size_t count) \
128 struct usb_interface *intf = to_usb_interface(dev); \
129 struct usb_led *led = usb_get_intfdata(intf); \
130 int temp = simple_strtoul(buf, NULL, 10); \
136 static DEVICE_ATTR(value, S_IRUGO | S_IWUSR, show_##value, set_##value);
141 static int led_probe(struct usb_interface *interface,
142 const struct usb_device_id *id)
144 struct usb_device *udev = interface_to_usbdev(interface);
145 struct usb_led *dev = NULL;
146 int retval = -ENOMEM;
148 dev = kzalloc(sizeof(struct usb_led), GFP_KERNEL);
150 dev_err(&interface->dev, "out of memory\n");
154 dev->udev = usb_get_dev(udev);
155 dev->type = id->driver_info;
157 usb_set_intfdata(interface, dev);
159 retval = device_create_file(&interface->dev, &dev_attr_blue);
162 retval = device_create_file(&interface->dev, &dev_attr_red);
165 retval = device_create_file(&interface->dev, &dev_attr_green);
169 if (dev->type == DREAM_CHEEKY_WEBMAIL_NOTIFIER) {
170 unsigned char *enable;
172 enable = kmemdup("\x1f\x02\0\x5f\0\0\x1a\x03", 8, GFP_KERNEL);
174 dev_err(&interface->dev, "out of memory\n");
179 retval = usb_control_msg(udev,
180 usb_sndctrlpipe(udev, 0),
194 dev_info(&interface->dev, "USB LED device now attached\n");
198 device_remove_file(&interface->dev, &dev_attr_blue);
199 device_remove_file(&interface->dev, &dev_attr_red);
200 device_remove_file(&interface->dev, &dev_attr_green);
201 usb_set_intfdata(interface, NULL);
202 usb_put_dev(dev->udev);
208 static void led_disconnect(struct usb_interface *interface)
212 dev = usb_get_intfdata(interface);
214 device_remove_file(&interface->dev, &dev_attr_blue);
215 device_remove_file(&interface->dev, &dev_attr_red);
216 device_remove_file(&interface->dev, &dev_attr_green);
218 /* first remove the files, then set the pointer to NULL */
219 usb_set_intfdata(interface, NULL);
221 usb_put_dev(dev->udev);
225 dev_info(&interface->dev, "USB LED now disconnected\n");
228 static struct usb_driver led_driver = {
231 .disconnect = led_disconnect,
232 .id_table = id_table,
235 module_usb_driver(led_driver);
237 MODULE_AUTHOR(DRIVER_AUTHOR);
238 MODULE_DESCRIPTION(DRIVER_DESC);
239 MODULE_LICENSE("GPL");