1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for Meywa-Denki & KAYAC YUREX
8 #include <linux/kernel.h>
9 #include <linux/errno.h>
10 #include <linux/slab.h>
11 #include <linux/module.h>
12 #include <linux/kref.h>
13 #include <linux/mutex.h>
14 #include <linux/uaccess.h>
15 #include <linux/usb.h>
16 #include <linux/hid.h>
18 #define DRIVER_AUTHOR "Tomoki Sekiyama"
19 #define DRIVER_DESC "Driver for Meywa-Denki & KAYAC YUREX"
21 #define YUREX_VENDOR_ID 0x0c45
22 #define YUREX_PRODUCT_ID 0x1010
25 #define CMD_ANIMATE 'A'
30 #define CMD_VERSION 'V'
32 #define CMD_PADDING 0xff
34 #define YUREX_BUF_SIZE 8
35 #define YUREX_WRITE_TIMEOUT (HZ*2)
37 #define MAX_S64_STRLEN 20 /* {-}922337203685477580{7,8} */
39 /* table of devices that work with this driver */
40 static struct usb_device_id yurex_table[] = {
41 { USB_DEVICE(YUREX_VENDOR_ID, YUREX_PRODUCT_ID) },
42 { } /* Terminating entry */
44 MODULE_DEVICE_TABLE(usb, yurex_table);
46 #ifdef CONFIG_USB_DYNAMIC_MINORS
47 #define YUREX_MINOR_BASE 0
49 #define YUREX_MINOR_BASE 192
52 /* Structure to hold all of our device specific stuff */
54 struct usb_device *udev;
55 struct usb_interface *interface;
56 __u8 int_in_endpointAddr;
57 struct urb *urb; /* URB for interrupt in */
58 unsigned char *int_buffer; /* buffer for intterupt in */
59 struct urb *cntl_urb; /* URB for control msg */
60 struct usb_ctrlrequest *cntl_req; /* req for control msg */
61 unsigned char *cntl_buffer; /* buffer for control msg */
64 struct mutex io_mutex;
65 unsigned long disconnected:1;
66 struct fasync_struct *async_queue;
67 wait_queue_head_t waitq;
70 __s64 bbu; /* BBU from device */
72 #define to_yurex_dev(d) container_of(d, struct usb_yurex, kref)
74 static struct usb_driver yurex_driver;
75 static const struct file_operations yurex_fops;
78 static void yurex_control_callback(struct urb *urb)
80 struct usb_yurex *dev = urb->context;
81 int status = urb->status;
84 dev_err(&urb->dev->dev, "%s - control failed: %d\n",
86 wake_up_interruptible(&dev->waitq);
89 /* on success, sender woken up by CMD_ACK int in, or timeout */
92 static void yurex_delete(struct kref *kref)
94 struct usb_yurex *dev = to_yurex_dev(kref);
96 dev_dbg(&dev->interface->dev, "%s\n", __func__);
99 usb_kill_urb(dev->cntl_urb);
100 kfree(dev->cntl_req);
101 usb_free_coherent(dev->udev, YUREX_BUF_SIZE,
102 dev->cntl_buffer, dev->cntl_urb->transfer_dma);
103 usb_free_urb(dev->cntl_urb);
106 usb_kill_urb(dev->urb);
107 usb_free_coherent(dev->udev, YUREX_BUF_SIZE,
108 dev->int_buffer, dev->urb->transfer_dma);
109 usb_free_urb(dev->urb);
111 usb_put_intf(dev->interface);
112 usb_put_dev(dev->udev);
117 * usb class driver info in order to get a minor number from the usb core,
118 * and to have the device registered with the driver core
120 static struct usb_class_driver yurex_class = {
123 .minor_base = YUREX_MINOR_BASE,
126 static void yurex_interrupt(struct urb *urb)
128 struct usb_yurex *dev = urb->context;
129 unsigned char *buf = dev->int_buffer;
130 int status = urb->status;
137 /* The device is terminated or messed up, give up */
139 dev_err(&dev->interface->dev,
140 "%s - overflow with length %d, actual length is %d\n",
141 __func__, YUREX_BUF_SIZE, dev->urb->actual_length);
151 dev_err(&dev->interface->dev,
152 "%s - unknown status received: %d\n", __func__, status);
156 /* handle received message */
160 if (buf[6] == CMD_EOF) {
161 spin_lock_irqsave(&dev->lock, flags);
163 for (i = 1; i < 6; i++) {
168 dev_dbg(&dev->interface->dev, "%s count: %lld\n",
170 spin_unlock_irqrestore(&dev->lock, flags);
172 kill_fasync(&dev->async_queue, SIGIO, POLL_IN);
175 dev_dbg(&dev->interface->dev,
176 "data format error - no EOF\n");
179 dev_dbg(&dev->interface->dev, "%s ack: %c\n",
181 wake_up_interruptible(&dev->waitq);
185 retval = usb_submit_urb(dev->urb, GFP_ATOMIC);
187 dev_err(&dev->interface->dev, "%s - usb_submit_urb failed: %d\n",
192 static int yurex_probe(struct usb_interface *interface, const struct usb_device_id *id)
194 struct usb_yurex *dev;
195 struct usb_host_interface *iface_desc;
196 struct usb_endpoint_descriptor *endpoint;
197 int retval = -ENOMEM;
201 /* allocate memory for our device state and initialize it */
202 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
205 kref_init(&dev->kref);
206 mutex_init(&dev->io_mutex);
207 spin_lock_init(&dev->lock);
208 init_waitqueue_head(&dev->waitq);
210 dev->udev = usb_get_dev(interface_to_usbdev(interface));
211 dev->interface = usb_get_intf(interface);
213 /* set up the endpoint information */
214 iface_desc = interface->cur_altsetting;
215 res = usb_find_int_in_endpoint(iface_desc, &endpoint);
217 dev_err(&interface->dev, "Could not find endpoints\n");
222 dev->int_in_endpointAddr = endpoint->bEndpointAddress;
224 /* allocate control URB */
225 dev->cntl_urb = usb_alloc_urb(0, GFP_KERNEL);
229 /* allocate buffer for control req */
230 dev->cntl_req = kmalloc(YUREX_BUF_SIZE, GFP_KERNEL);
234 /* allocate buffer for control msg */
235 dev->cntl_buffer = usb_alloc_coherent(dev->udev, YUREX_BUF_SIZE,
237 &dev->cntl_urb->transfer_dma);
238 if (!dev->cntl_buffer) {
239 dev_err(&interface->dev, "Could not allocate cntl_buffer\n");
243 /* configure control URB */
244 dev->cntl_req->bRequestType = USB_DIR_OUT | USB_TYPE_CLASS |
246 dev->cntl_req->bRequest = HID_REQ_SET_REPORT;
247 dev->cntl_req->wValue = cpu_to_le16((HID_OUTPUT_REPORT + 1) << 8);
248 dev->cntl_req->wIndex = cpu_to_le16(iface_desc->desc.bInterfaceNumber);
249 dev->cntl_req->wLength = cpu_to_le16(YUREX_BUF_SIZE);
251 usb_fill_control_urb(dev->cntl_urb, dev->udev,
252 usb_sndctrlpipe(dev->udev, 0),
253 (void *)dev->cntl_req, dev->cntl_buffer,
254 YUREX_BUF_SIZE, yurex_control_callback, dev);
255 dev->cntl_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
258 /* allocate interrupt URB */
259 dev->urb = usb_alloc_urb(0, GFP_KERNEL);
263 /* allocate buffer for interrupt in */
264 dev->int_buffer = usb_alloc_coherent(dev->udev, YUREX_BUF_SIZE,
265 GFP_KERNEL, &dev->urb->transfer_dma);
266 if (!dev->int_buffer) {
267 dev_err(&interface->dev, "Could not allocate int_buffer\n");
271 /* configure interrupt URB */
272 usb_fill_int_urb(dev->urb, dev->udev,
273 usb_rcvintpipe(dev->udev, dev->int_in_endpointAddr),
274 dev->int_buffer, YUREX_BUF_SIZE, yurex_interrupt,
276 dev->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
277 if (usb_submit_urb(dev->urb, GFP_KERNEL)) {
279 dev_err(&interface->dev, "Could not submitting URB\n");
283 /* save our data pointer in this interface device */
284 usb_set_intfdata(interface, dev);
287 /* we can register the device now, as it is ready */
288 retval = usb_register_dev(interface, &yurex_class);
290 dev_err(&interface->dev,
291 "Not able to get a minor for this device.\n");
292 usb_set_intfdata(interface, NULL);
296 dev_info(&interface->dev,
297 "USB YUREX device now attached to Yurex #%d\n",
304 /* this frees allocated memory */
305 kref_put(&dev->kref, yurex_delete);
309 static void yurex_disconnect(struct usb_interface *interface)
311 struct usb_yurex *dev;
312 int minor = interface->minor;
314 dev = usb_get_intfdata(interface);
315 usb_set_intfdata(interface, NULL);
317 /* give back our minor */
318 usb_deregister_dev(interface, &yurex_class);
320 /* prevent more I/O from starting */
321 usb_poison_urb(dev->urb);
322 usb_poison_urb(dev->cntl_urb);
323 mutex_lock(&dev->io_mutex);
324 dev->disconnected = 1;
325 mutex_unlock(&dev->io_mutex);
328 kill_fasync(&dev->async_queue, SIGIO, POLL_IN);
329 wake_up_interruptible(&dev->waitq);
331 /* decrement our usage count */
332 kref_put(&dev->kref, yurex_delete);
334 dev_info(&interface->dev, "USB YUREX #%d now disconnected\n", minor);
337 static struct usb_driver yurex_driver = {
339 .probe = yurex_probe,
340 .disconnect = yurex_disconnect,
341 .id_table = yurex_table,
345 static int yurex_fasync(int fd, struct file *file, int on)
347 struct usb_yurex *dev;
349 dev = file->private_data;
350 return fasync_helper(fd, file, on, &dev->async_queue);
353 static int yurex_open(struct inode *inode, struct file *file)
355 struct usb_yurex *dev;
356 struct usb_interface *interface;
360 subminor = iminor(inode);
362 interface = usb_find_interface(&yurex_driver, subminor);
364 printk(KERN_ERR "%s - error, can't find device for minor %d",
370 dev = usb_get_intfdata(interface);
376 /* increment our usage count for the device */
377 kref_get(&dev->kref);
379 /* save our object in the file's private structure */
380 mutex_lock(&dev->io_mutex);
381 file->private_data = dev;
382 mutex_unlock(&dev->io_mutex);
388 static int yurex_release(struct inode *inode, struct file *file)
390 struct usb_yurex *dev;
392 dev = file->private_data;
396 /* decrement the count on our device */
397 kref_put(&dev->kref, yurex_delete);
401 static ssize_t yurex_read(struct file *file, char __user *buffer, size_t count,
404 struct usb_yurex *dev;
406 char in_buffer[MAX_S64_STRLEN];
408 dev = file->private_data;
410 mutex_lock(&dev->io_mutex);
411 if (dev->disconnected) { /* already disconnected */
412 mutex_unlock(&dev->io_mutex);
416 if (WARN_ON_ONCE(dev->bbu > S64_MAX || dev->bbu < S64_MIN)) {
417 mutex_unlock(&dev->io_mutex);
421 spin_lock_irq(&dev->lock);
422 scnprintf(in_buffer, MAX_S64_STRLEN, "%lld\n", dev->bbu);
423 spin_unlock_irq(&dev->lock);
424 mutex_unlock(&dev->io_mutex);
426 return simple_read_from_buffer(buffer, count, ppos, in_buffer, len);
429 static ssize_t yurex_write(struct file *file, const char __user *user_buffer,
430 size_t count, loff_t *ppos)
432 struct usb_yurex *dev;
433 int i, set = 0, retval = 0;
436 unsigned long long c, c2 = 0;
437 signed long timeout = 0;
440 count = min(sizeof(buffer) - 1, count);
441 dev = file->private_data;
443 /* verify that we actually have some data to write */
447 mutex_lock(&dev->io_mutex);
448 if (dev->disconnected) { /* already disconnected */
449 mutex_unlock(&dev->io_mutex);
454 if (copy_from_user(buffer, user_buffer, count)) {
455 mutex_unlock(&dev->io_mutex);
460 memset(dev->cntl_buffer, CMD_PADDING, YUREX_BUF_SIZE);
465 dev->cntl_buffer[0] = buffer[0];
466 dev->cntl_buffer[1] = buffer[1];
467 dev->cntl_buffer[2] = CMD_EOF;
471 dev->cntl_buffer[0] = buffer[0];
472 dev->cntl_buffer[1] = 0x00;
473 dev->cntl_buffer[2] = CMD_EOF;
480 c = c2 = simple_strtoull(data, NULL, 0);
481 dev->cntl_buffer[0] = CMD_SET;
482 for (i = 1; i < 6; i++) {
483 dev->cntl_buffer[i] = (c>>32) & 0xff;
489 mutex_unlock(&dev->io_mutex);
493 /* send the data as the control msg */
494 prepare_to_wait(&dev->waitq, &wait, TASK_INTERRUPTIBLE);
495 dev_dbg(&dev->interface->dev, "%s - submit %c\n", __func__,
496 dev->cntl_buffer[0]);
497 retval = usb_submit_urb(dev->cntl_urb, GFP_ATOMIC);
499 timeout = schedule_timeout(YUREX_WRITE_TIMEOUT);
500 finish_wait(&dev->waitq, &wait);
502 /* make sure URB is idle after timeout or (spurious) CMD_ACK */
503 usb_kill_urb(dev->cntl_urb);
505 mutex_unlock(&dev->io_mutex);
508 dev_err(&dev->interface->dev,
509 "%s - failed to send bulk msg, error %d\n",
513 if (set && timeout) {
514 spin_lock_irq(&dev->lock);
516 spin_unlock_irq(&dev->lock);
518 return timeout ? count : -EIO;
524 static const struct file_operations yurex_fops = {
525 .owner = THIS_MODULE,
527 .write = yurex_write,
529 .release = yurex_release,
530 .fasync = yurex_fasync,
531 .llseek = default_llseek,
534 module_usb_driver(yurex_driver);
536 MODULE_DESCRIPTION("USB YUREX driver support");
537 MODULE_LICENSE("GPL");