4 * Copyright (C) 2008 Harrison Metzger <harrisonmetz@gmail.com>
5 * Based on usbled.c by Greg Kroah-Hartman (greg@kroah.com)
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation, version 2.
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/slab.h>
16 #include <linux/module.h>
17 #include <linux/string.h>
18 #include <linux/usb.h>
21 #define DRIVER_AUTHOR "Harrison Metzger <harrisonmetz@gmail.com>"
22 #define DRIVER_DESC "USB 7 Segment Driver"
24 #define VENDOR_ID 0x0fc5
25 #define PRODUCT_ID 0x1227
28 /* table of devices that work with this driver */
29 static const struct usb_device_id id_table
[] = {
30 { USB_DEVICE(VENDOR_ID
, PRODUCT_ID
) },
33 MODULE_DEVICE_TABLE(usb
, id_table
);
35 /* the different text display modes the device is capable of */
36 static char *display_textmodes
[] = {"raw", "hex", "ascii", NULL
};
38 struct usb_sevsegdev
{
39 struct usb_device
*udev
;
40 struct usb_interface
*intf
;
50 u8 shadow_power
; /* for PM */
54 /* sysfs_streq can't replace this completely
55 * If the device was in hex mode, and the user wanted a 0,
56 * if str commands are used, we would assume the end of string
57 * so mem commands are used.
59 static inline size_t my_memlen(const char *buf
, size_t count
)
61 if (count
> 0 && buf
[count
-1] == '\n')
67 static void update_display_powered(struct usb_sevsegdev
*mydev
)
71 if (mydev
->powered
&& !mydev
->has_interface_pm
) {
72 rc
= usb_autopm_get_interface(mydev
->intf
);
75 mydev
->has_interface_pm
= 1;
78 if (mydev
->shadow_power
!= 1)
81 rc
= usb_control_msg(mydev
->udev
,
82 usb_sndctrlpipe(mydev
->udev
, 0),
85 (80 * 0x100) + 10, /* (power mode) */
86 (0x00 * 0x100) + (mydev
->powered
? 1 : 0),
91 dev_dbg(&mydev
->udev
->dev
, "power retval = %d\n", rc
);
93 if (!mydev
->powered
&& mydev
->has_interface_pm
) {
94 usb_autopm_put_interface(mydev
->intf
);
95 mydev
->has_interface_pm
= 0;
99 static void update_display_mode(struct usb_sevsegdev
*mydev
)
103 if(mydev
->shadow_power
!= 1)
106 rc
= usb_control_msg(mydev
->udev
,
107 usb_sndctrlpipe(mydev
->udev
, 0),
110 (82 * 0x100) + 10, /* (set mode) */
111 (mydev
->mode_msb
* 0x100) + mydev
->mode_lsb
,
117 dev_dbg(&mydev
->udev
->dev
, "mode retval = %d\n", rc
);
120 static void update_display_visual(struct usb_sevsegdev
*mydev
, gfp_t mf
)
124 unsigned char *buffer
;
127 if(mydev
->shadow_power
!= 1)
130 buffer
= kzalloc(MAXLEN
, mf
);
132 dev_err(&mydev
->udev
->dev
, "out of memory\n");
136 /* The device is right to left, where as you write left to right */
137 for (i
= 0; i
< mydev
->textlength
; i
++)
138 buffer
[i
] = mydev
->text
[mydev
->textlength
-1-i
];
140 rc
= usb_control_msg(mydev
->udev
,
141 usb_sndctrlpipe(mydev
->udev
, 0),
144 (85 * 0x100) + 10, /* (write text) */
145 (0 * 0x100) + mydev
->textmode
, /* mode */
151 dev_dbg(&mydev
->udev
->dev
, "write retval = %d\n", rc
);
155 /* The device is right to left, where as you write left to right */
156 for (i
= 0; i
< sizeof(mydev
->decimals
); i
++)
157 decimals
|= mydev
->decimals
[i
] << i
;
159 rc
= usb_control_msg(mydev
->udev
,
160 usb_sndctrlpipe(mydev
->udev
, 0),
163 (86 * 0x100) + 10, /* (set decimal) */
164 (0 * 0x100) + decimals
, /* decimals */
170 dev_dbg(&mydev
->udev
->dev
, "decimal retval = %d\n", rc
);
173 #define MYDEV_ATTR_SIMPLE_UNSIGNED(name, update_fcn) \
174 static ssize_t show_attr_##name(struct device *dev, \
175 struct device_attribute *attr, char *buf) \
177 struct usb_interface *intf = to_usb_interface(dev); \
178 struct usb_sevsegdev *mydev = usb_get_intfdata(intf); \
180 return sprintf(buf, "%u\n", mydev->name); \
183 static ssize_t set_attr_##name(struct device *dev, \
184 struct device_attribute *attr, const char *buf, size_t count) \
186 struct usb_interface *intf = to_usb_interface(dev); \
187 struct usb_sevsegdev *mydev = usb_get_intfdata(intf); \
189 mydev->name = simple_strtoul(buf, NULL, 10); \
194 static DEVICE_ATTR(name, S_IRUGO | S_IWUSR, show_attr_##name, set_attr_##name);
196 static ssize_t
show_attr_text(struct device
*dev
,
197 struct device_attribute
*attr
, char *buf
)
199 struct usb_interface
*intf
= to_usb_interface(dev
);
200 struct usb_sevsegdev
*mydev
= usb_get_intfdata(intf
);
202 return snprintf(buf
, mydev
->textlength
, "%s\n", mydev
->text
);
205 static ssize_t
set_attr_text(struct device
*dev
,
206 struct device_attribute
*attr
, const char *buf
, size_t count
)
208 struct usb_interface
*intf
= to_usb_interface(dev
);
209 struct usb_sevsegdev
*mydev
= usb_get_intfdata(intf
);
210 size_t end
= my_memlen(buf
, count
);
212 if (end
> sizeof(mydev
->text
))
215 memset(mydev
->text
, 0, sizeof(mydev
->text
));
216 mydev
->textlength
= end
;
219 memcpy(mydev
->text
, buf
, end
);
221 update_display_visual(mydev
, GFP_KERNEL
);
225 static DEVICE_ATTR(text
, S_IRUGO
| S_IWUSR
, show_attr_text
, set_attr_text
);
227 static ssize_t
show_attr_decimals(struct device
*dev
,
228 struct device_attribute
*attr
, char *buf
)
230 struct usb_interface
*intf
= to_usb_interface(dev
);
231 struct usb_sevsegdev
*mydev
= usb_get_intfdata(intf
);
235 for (i
= 0; i
< sizeof(mydev
->decimals
); i
++) {
236 pos
= sizeof(mydev
->decimals
) - 1 - i
;
237 if (mydev
->decimals
[i
] == 0)
239 else if (mydev
->decimals
[i
] == 1)
245 buf
[sizeof(mydev
->decimals
)] = '\n';
246 return sizeof(mydev
->decimals
) + 1;
249 static ssize_t
set_attr_decimals(struct device
*dev
,
250 struct device_attribute
*attr
, const char *buf
, size_t count
)
252 struct usb_interface
*intf
= to_usb_interface(dev
);
253 struct usb_sevsegdev
*mydev
= usb_get_intfdata(intf
);
254 size_t end
= my_memlen(buf
, count
);
257 if (end
> sizeof(mydev
->decimals
))
260 for (i
= 0; i
< end
; i
++)
261 if (buf
[i
] != '0' && buf
[i
] != '1')
264 memset(mydev
->decimals
, 0, sizeof(mydev
->decimals
));
265 for (i
= 0; i
< end
; i
++)
267 mydev
->decimals
[end
-1-i
] = 1;
269 update_display_visual(mydev
, GFP_KERNEL
);
274 static DEVICE_ATTR(decimals
, S_IRUGO
| S_IWUSR
, show_attr_decimals
, set_attr_decimals
);
276 static ssize_t
show_attr_textmode(struct device
*dev
,
277 struct device_attribute
*attr
, char *buf
)
279 struct usb_interface
*intf
= to_usb_interface(dev
);
280 struct usb_sevsegdev
*mydev
= usb_get_intfdata(intf
);
285 for (i
= 0; display_textmodes
[i
]; i
++) {
286 if (mydev
->textmode
== i
) {
288 strcat(buf
, display_textmodes
[i
]);
292 strcat(buf
, display_textmodes
[i
]);
302 static ssize_t
set_attr_textmode(struct device
*dev
,
303 struct device_attribute
*attr
, const char *buf
, size_t count
)
305 struct usb_interface
*intf
= to_usb_interface(dev
);
306 struct usb_sevsegdev
*mydev
= usb_get_intfdata(intf
);
309 for (i
= 0; display_textmodes
[i
]; i
++) {
310 if (sysfs_streq(display_textmodes
[i
], buf
)) {
312 update_display_visual(mydev
, GFP_KERNEL
);
320 static DEVICE_ATTR(textmode
, S_IRUGO
| S_IWUSR
, show_attr_textmode
, set_attr_textmode
);
323 MYDEV_ATTR_SIMPLE_UNSIGNED(powered
, update_display_powered
);
324 MYDEV_ATTR_SIMPLE_UNSIGNED(mode_msb
, update_display_mode
);
325 MYDEV_ATTR_SIMPLE_UNSIGNED(mode_lsb
, update_display_mode
);
327 static struct attribute
*dev_attrs
[] = {
328 &dev_attr_powered
.attr
,
330 &dev_attr_textmode
.attr
,
331 &dev_attr_decimals
.attr
,
332 &dev_attr_mode_msb
.attr
,
333 &dev_attr_mode_lsb
.attr
,
337 static struct attribute_group dev_attr_grp
= {
341 static int sevseg_probe(struct usb_interface
*interface
,
342 const struct usb_device_id
*id
)
344 struct usb_device
*udev
= interface_to_usbdev(interface
);
345 struct usb_sevsegdev
*mydev
= NULL
;
348 mydev
= kzalloc(sizeof(struct usb_sevsegdev
), GFP_KERNEL
);
350 dev_err(&interface
->dev
, "Out of memory\n");
354 mydev
->udev
= usb_get_dev(udev
);
355 mydev
->intf
= interface
;
356 usb_set_intfdata(interface
, mydev
);
359 mydev
->shadow_power
= 1; /* currently active */
360 mydev
->has_interface_pm
= 0; /* have not issued autopm_get */
363 mydev
->textmode
= 0x02; /* ascii mode */
364 mydev
->mode_msb
= 0x06; /* 6 characters */
365 mydev
->mode_lsb
= 0x3f; /* scanmode for 6 chars */
367 rc
= sysfs_create_group(&interface
->dev
.kobj
, &dev_attr_grp
);
371 dev_info(&interface
->dev
, "USB 7 Segment device now attached\n");
375 usb_set_intfdata(interface
, NULL
);
376 usb_put_dev(mydev
->udev
);
382 static void sevseg_disconnect(struct usb_interface
*interface
)
384 struct usb_sevsegdev
*mydev
;
386 mydev
= usb_get_intfdata(interface
);
387 sysfs_remove_group(&interface
->dev
.kobj
, &dev_attr_grp
);
388 usb_set_intfdata(interface
, NULL
);
389 usb_put_dev(mydev
->udev
);
391 dev_info(&interface
->dev
, "USB 7 Segment now disconnected\n");
394 static int sevseg_suspend(struct usb_interface
*intf
, pm_message_t message
)
396 struct usb_sevsegdev
*mydev
;
398 mydev
= usb_get_intfdata(intf
);
399 mydev
->shadow_power
= 0;
404 static int sevseg_resume(struct usb_interface
*intf
)
406 struct usb_sevsegdev
*mydev
;
408 mydev
= usb_get_intfdata(intf
);
409 mydev
->shadow_power
= 1;
410 update_display_mode(mydev
);
411 update_display_visual(mydev
, GFP_NOIO
);
416 static int sevseg_reset_resume(struct usb_interface
*intf
)
418 struct usb_sevsegdev
*mydev
;
420 mydev
= usb_get_intfdata(intf
);
421 mydev
->shadow_power
= 1;
422 update_display_mode(mydev
);
423 update_display_visual(mydev
, GFP_NOIO
);
428 static struct usb_driver sevseg_driver
= {
430 .probe
= sevseg_probe
,
431 .disconnect
= sevseg_disconnect
,
432 .suspend
= sevseg_suspend
,
433 .resume
= sevseg_resume
,
434 .reset_resume
= sevseg_reset_resume
,
435 .id_table
= id_table
,
436 .supports_autosuspend
= 1,
439 module_usb_driver(sevseg_driver
);
441 MODULE_AUTHOR(DRIVER_AUTHOR
);
442 MODULE_DESCRIPTION(DRIVER_DESC
);
443 MODULE_LICENSE("GPL");