1 // SPDX-License-Identifier: GPL-2.0
9 #include <linux/kernel.h>
10 #include <linux/errno.h>
11 #include <linux/slab.h>
12 #include <linux/module.h>
13 #include <linux/string.h>
14 #include <linux/usb.h>
18 #define DRIVER_DESC "USB 7 Segment Driver"
20 #define VENDOR_ID 0x0fc5
21 #define PRODUCT_ID 0x1227
24 /* table of devices that work with this driver */
25 static const struct usb_device_id id_table[] = {
26 { USB_DEVICE(VENDOR_ID, PRODUCT_ID) },
29 MODULE_DEVICE_TABLE(usb, id_table);
31 /* the different text display modes the device is capable of */
32 static const char *display_textmodes[] = {"raw", "hex", "ascii"};
34 struct usb_sevsegdev {
35 struct usb_device *udev;
36 struct usb_interface *intf;
46 u8 shadow_power; /* for PM */
50 /* sysfs_streq can't replace this completely
51 * If the device was in hex mode, and the user wanted a 0,
52 * if str commands are used, we would assume the end of string
53 * so mem commands are used.
55 static inline size_t my_memlen(const char *buf, size_t count)
57 if (count > 0 && buf[count-1] == '\n')
63 static void update_display_powered(struct usb_sevsegdev *mydev)
67 if (mydev->powered && !mydev->has_interface_pm) {
68 rc = usb_autopm_get_interface(mydev->intf);
71 mydev->has_interface_pm = 1;
74 if (mydev->shadow_power != 1)
77 rc = usb_control_msg_send(mydev->udev, 0, 0x12, 0x48,
78 (80 * 0x100) + 10, /* (power mode) */
79 (0x00 * 0x100) + (mydev->powered ? 1 : 0),
80 NULL, 0, 2000, GFP_KERNEL);
82 dev_dbg(&mydev->udev->dev, "power retval = %d\n", rc);
84 if (!mydev->powered && mydev->has_interface_pm) {
85 usb_autopm_put_interface(mydev->intf);
86 mydev->has_interface_pm = 0;
90 static void update_display_mode(struct usb_sevsegdev *mydev)
94 if(mydev->shadow_power != 1)
97 rc = usb_control_msg_send(mydev->udev, 0, 0x12, 0x48,
98 (82 * 0x100) + 10, /* (set mode) */
99 (mydev->mode_msb * 0x100) + mydev->mode_lsb,
100 NULL, 0, 2000, GFP_NOIO);
103 dev_dbg(&mydev->udev->dev, "mode retval = %d\n", rc);
106 static void update_display_visual(struct usb_sevsegdev *mydev, gfp_t mf)
110 unsigned char buffer[MAXLEN] = {0};
113 if(mydev->shadow_power != 1)
116 /* The device is right to left, where as you write left to right */
117 for (i = 0; i < mydev->textlength; i++)
118 buffer[i] = mydev->text[mydev->textlength-1-i];
120 rc = usb_control_msg_send(mydev->udev, 0, 0x12, 0x48,
121 (85 * 0x100) + 10, /* (write text) */
122 (0 * 0x100) + mydev->textmode, /* mode */
123 &buffer, mydev->textlength, 2000, mf);
126 dev_dbg(&mydev->udev->dev, "write retval = %d\n", rc);
128 /* The device is right to left, where as you write left to right */
129 for (i = 0; i < sizeof(mydev->decimals); i++)
130 decimals |= mydev->decimals[i] << i;
132 rc = usb_control_msg_send(mydev->udev, 0, 0x12, 0x48,
133 (86 * 0x100) + 10, /* (set decimal) */
134 (0 * 0x100) + decimals, /* decimals */
138 dev_dbg(&mydev->udev->dev, "decimal retval = %d\n", rc);
141 #define MYDEV_ATTR_SIMPLE_UNSIGNED(name, update_fcn) \
142 static ssize_t name##_show(struct device *dev, \
143 struct device_attribute *attr, char *buf) \
145 struct usb_interface *intf = to_usb_interface(dev); \
146 struct usb_sevsegdev *mydev = usb_get_intfdata(intf); \
148 return sprintf(buf, "%u\n", mydev->name); \
151 static ssize_t name##_store(struct device *dev, \
152 struct device_attribute *attr, const char *buf, size_t count) \
154 struct usb_interface *intf = to_usb_interface(dev); \
155 struct usb_sevsegdev *mydev = usb_get_intfdata(intf); \
157 mydev->name = simple_strtoul(buf, NULL, 10); \
162 static DEVICE_ATTR_RW(name);
164 static ssize_t text_show(struct device *dev,
165 struct device_attribute *attr, char *buf)
167 struct usb_interface *intf = to_usb_interface(dev);
168 struct usb_sevsegdev *mydev = usb_get_intfdata(intf);
170 return snprintf(buf, mydev->textlength, "%s\n", mydev->text);
173 static ssize_t text_store(struct device *dev,
174 struct device_attribute *attr, const char *buf, size_t count)
176 struct usb_interface *intf = to_usb_interface(dev);
177 struct usb_sevsegdev *mydev = usb_get_intfdata(intf);
178 size_t end = my_memlen(buf, count);
180 if (end > sizeof(mydev->text))
183 memset(mydev->text, 0, sizeof(mydev->text));
184 mydev->textlength = end;
187 memcpy(mydev->text, buf, end);
189 update_display_visual(mydev, GFP_KERNEL);
193 static DEVICE_ATTR_RW(text);
195 static ssize_t decimals_show(struct device *dev,
196 struct device_attribute *attr, char *buf)
198 struct usb_interface *intf = to_usb_interface(dev);
199 struct usb_sevsegdev *mydev = usb_get_intfdata(intf);
203 for (i = 0; i < sizeof(mydev->decimals); i++) {
204 pos = sizeof(mydev->decimals) - 1 - i;
205 if (mydev->decimals[i] == 0)
207 else if (mydev->decimals[i] == 1)
213 buf[sizeof(mydev->decimals)] = '\n';
214 return sizeof(mydev->decimals) + 1;
217 static ssize_t decimals_store(struct device *dev,
218 struct device_attribute *attr, const char *buf, size_t count)
220 struct usb_interface *intf = to_usb_interface(dev);
221 struct usb_sevsegdev *mydev = usb_get_intfdata(intf);
222 size_t end = my_memlen(buf, count);
225 if (end > sizeof(mydev->decimals))
228 for (i = 0; i < end; i++)
229 if (buf[i] != '0' && buf[i] != '1')
232 memset(mydev->decimals, 0, sizeof(mydev->decimals));
233 for (i = 0; i < end; i++)
235 mydev->decimals[end-1-i] = 1;
237 update_display_visual(mydev, GFP_KERNEL);
242 static DEVICE_ATTR_RW(decimals);
244 static ssize_t textmode_show(struct device *dev,
245 struct device_attribute *attr, char *buf)
247 struct usb_interface *intf = to_usb_interface(dev);
248 struct usb_sevsegdev *mydev = usb_get_intfdata(intf);
253 for (i = 0; i < ARRAY_SIZE(display_textmodes); i++) {
254 if (mydev->textmode == i) {
256 strcat(buf, display_textmodes[i]);
260 strcat(buf, display_textmodes[i]);
270 static ssize_t textmode_store(struct device *dev,
271 struct device_attribute *attr, const char *buf, size_t count)
273 struct usb_interface *intf = to_usb_interface(dev);
274 struct usb_sevsegdev *mydev = usb_get_intfdata(intf);
277 i = sysfs_match_string(display_textmodes, buf);
282 update_display_visual(mydev, GFP_KERNEL);
286 static DEVICE_ATTR_RW(textmode);
289 MYDEV_ATTR_SIMPLE_UNSIGNED(powered, update_display_powered);
290 MYDEV_ATTR_SIMPLE_UNSIGNED(mode_msb, update_display_mode);
291 MYDEV_ATTR_SIMPLE_UNSIGNED(mode_lsb, update_display_mode);
293 static struct attribute *sevseg_attrs[] = {
294 &dev_attr_powered.attr,
296 &dev_attr_textmode.attr,
297 &dev_attr_decimals.attr,
298 &dev_attr_mode_msb.attr,
299 &dev_attr_mode_lsb.attr,
302 ATTRIBUTE_GROUPS(sevseg);
304 static int sevseg_probe(struct usb_interface *interface,
305 const struct usb_device_id *id)
307 struct usb_device *udev = interface_to_usbdev(interface);
308 struct usb_sevsegdev *mydev = NULL;
311 mydev = kzalloc(sizeof(struct usb_sevsegdev), GFP_KERNEL);
315 mydev->udev = usb_get_dev(udev);
316 mydev->intf = interface;
317 usb_set_intfdata(interface, mydev);
320 mydev->shadow_power = 1; /* currently active */
321 mydev->has_interface_pm = 0; /* have not issued autopm_get */
324 mydev->textmode = 0x02; /* ascii mode */
325 mydev->mode_msb = 0x06; /* 6 characters */
326 mydev->mode_lsb = 0x3f; /* scanmode for 6 chars */
328 dev_info(&interface->dev, "USB 7 Segment device now attached\n");
335 static void sevseg_disconnect(struct usb_interface *interface)
337 struct usb_sevsegdev *mydev;
339 mydev = usb_get_intfdata(interface);
340 usb_set_intfdata(interface, NULL);
341 usb_put_dev(mydev->udev);
343 dev_info(&interface->dev, "USB 7 Segment now disconnected\n");
346 static int sevseg_suspend(struct usb_interface *intf, pm_message_t message)
348 struct usb_sevsegdev *mydev;
350 mydev = usb_get_intfdata(intf);
351 mydev->shadow_power = 0;
356 static int sevseg_resume(struct usb_interface *intf)
358 struct usb_sevsegdev *mydev;
360 mydev = usb_get_intfdata(intf);
361 mydev->shadow_power = 1;
362 update_display_mode(mydev);
363 update_display_visual(mydev, GFP_NOIO);
368 static int sevseg_reset_resume(struct usb_interface *intf)
370 struct usb_sevsegdev *mydev;
372 mydev = usb_get_intfdata(intf);
373 mydev->shadow_power = 1;
374 update_display_mode(mydev);
375 update_display_visual(mydev, GFP_NOIO);
380 static struct usb_driver sevseg_driver = {
382 .probe = sevseg_probe,
383 .disconnect = sevseg_disconnect,
384 .suspend = sevseg_suspend,
385 .resume = sevseg_resume,
386 .reset_resume = sevseg_reset_resume,
387 .id_table = id_table,
388 .dev_groups = sevseg_groups,
389 .supports_autosuspend = 1,
392 module_usb_driver(sevseg_driver);
394 MODULE_AUTHOR(DRIVER_AUTHOR);
395 MODULE_DESCRIPTION(DRIVER_DESC);
396 MODULE_LICENSE("GPL");