blob: e0388dc0a55eb24ae7b1e19b93678cee76f049c8 [file] [log] [blame]
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +09001/*
2 * Driver for Meywa-Denki & KAYAC YUREX
3 *
4 * Copyright (C) 2010 Tomoki Sekiyama (tomoki.sekiyama@gmail.com)
5 *
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.
9 *
10 */
11
12#include <linux/kernel.h>
13#include <linux/errno.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/module.h>
17#include <linux/kref.h>
18#include <linux/mutex.h>
19#include <linux/uaccess.h>
20#include <linux/usb.h>
21#include <linux/hid.h>
22
23#define DRIVER_AUTHOR "Tomoki Sekiyama"
24#define DRIVER_DESC "Driver for Meywa-Denki & KAYAC YUREX"
25
26#define YUREX_VENDOR_ID 0x0c45
27#define YUREX_PRODUCT_ID 0x1010
28
29#define CMD_ACK '!'
30#define CMD_ANIMATE 'A'
31#define CMD_COUNT 'C'
32#define CMD_LED 'L'
33#define CMD_READ 'R'
34#define CMD_SET 'S'
35#define CMD_VERSION 'V'
36#define CMD_EOF 0x0d
37#define CMD_PADDING 0xff
38
39#define YUREX_BUF_SIZE 8
Tomoki Sekiyamae06ea972010-10-03 06:59:06 +090040#define YUREX_WRITE_TIMEOUT (HZ*2)
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +090041
42/* table of devices that work with this driver */
43static struct usb_device_id yurex_table[] = {
44 { USB_DEVICE(YUREX_VENDOR_ID, YUREX_PRODUCT_ID) },
45 { } /* Terminating entry */
46};
47MODULE_DEVICE_TABLE(usb, yurex_table);
48
49#ifdef CONFIG_USB_DYNAMIC_MINORS
Greg Kroah-Hartman1b62d252010-09-30 05:01:22 -070050#define YUREX_MINOR_BASE 0
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +090051#else
Greg Kroah-Hartman1b62d252010-09-30 05:01:22 -070052#define YUREX_MINOR_BASE 192
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +090053#endif
54
55/* Structure to hold all of our device specific stuff */
56struct usb_yurex {
57 struct usb_device *udev;
58 struct usb_interface *interface;
59 __u8 int_in_endpointAddr;
60 struct urb *urb; /* URB for interrupt in */
61 unsigned char *int_buffer; /* buffer for intterupt in */
62 struct urb *cntl_urb; /* URB for control msg */
63 struct usb_ctrlrequest *cntl_req; /* req for control msg */
64 unsigned char *cntl_buffer; /* buffer for control msg */
65
66 struct kref kref;
67 struct mutex io_mutex;
68 struct fasync_struct *async_queue;
69 wait_queue_head_t waitq;
70
71 spinlock_t lock;
72 __s64 bbu; /* BBU from device */
73};
74#define to_yurex_dev(d) container_of(d, struct usb_yurex, kref)
75
76static struct usb_driver yurex_driver;
77static const struct file_operations yurex_fops;
78
79
80static void yurex_control_callback(struct urb *urb)
81{
82 struct usb_yurex *dev = urb->context;
83 int status = urb->status;
84
85 if (status) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -070086 dev_err(&urb->dev->dev, "%s - control failed: %d\n",
87 __func__, status);
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +090088 wake_up_interruptible(&dev->waitq);
89 return;
90 }
91 /* on success, sender woken up by CMD_ACK int in, or timeout */
92}
93
94static void yurex_delete(struct kref *kref)
95{
96 struct usb_yurex *dev = to_yurex_dev(kref);
97
98 dbg("yurex_delete");
99
100 usb_put_dev(dev->udev);
Tomoki Sekiyamae06ea972010-10-03 06:59:06 +0900101 if (dev->cntl_urb) {
102 usb_kill_urb(dev->cntl_urb);
103 if (dev->cntl_req)
104 usb_free_coherent(dev->udev, YUREX_BUF_SIZE,
105 dev->cntl_req, dev->cntl_urb->setup_dma);
106 if (dev->cntl_buffer)
107 usb_free_coherent(dev->udev, YUREX_BUF_SIZE,
108 dev->cntl_buffer, dev->cntl_urb->transfer_dma);
109 usb_free_urb(dev->cntl_urb);
110 }
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900111 if (dev->urb) {
112 usb_kill_urb(dev->urb);
113 if (dev->int_buffer)
114 usb_free_coherent(dev->udev, YUREX_BUF_SIZE,
115 dev->int_buffer, dev->urb->transfer_dma);
116 usb_free_urb(dev->urb);
117 }
118 kfree(dev);
119}
120
121/*
122 * usb class driver info in order to get a minor number from the usb core,
123 * and to have the device registered with the driver core
124 */
125static struct usb_class_driver yurex_class = {
126 .name = "yurex%d",
127 .fops = &yurex_fops,
128 .minor_base = YUREX_MINOR_BASE,
129};
130
131static void yurex_interrupt(struct urb *urb)
132{
133 struct usb_yurex *dev = urb->context;
134 unsigned char *buf = dev->int_buffer;
135 int status = urb->status;
136 unsigned long flags;
137 int retval, i;
138
139 switch (status) {
140 case 0: /*success*/
141 break;
142 case -EOVERFLOW:
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700143 dev_err(&dev->interface->dev,
144 "%s - overflow with length %d, actual length is %d\n",
145 __func__, YUREX_BUF_SIZE, dev->urb->actual_length);
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900146 case -ECONNRESET:
147 case -ENOENT:
148 case -ESHUTDOWN:
149 case -EILSEQ:
150 /* The device is terminated, clean up */
151 return;
152 default:
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700153 dev_err(&dev->interface->dev,
154 "%s - unknown status received: %d\n", __func__, status);
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900155 goto exit;
156 }
157
158 /* handle received message */
159 switch (buf[0]) {
160 case CMD_COUNT:
161 case CMD_READ:
162 if (buf[6] == CMD_EOF) {
163 spin_lock_irqsave(&dev->lock, flags);
164 dev->bbu = 0;
165 for (i = 1; i < 6; i++) {
166 dev->bbu += buf[i];
167 if (i != 5)
168 dev->bbu <<= 8;
169 }
170 dbg("%s count: %lld", __func__, dev->bbu);
171 spin_unlock_irqrestore(&dev->lock, flags);
172
173 kill_fasync(&dev->async_queue, SIGIO, POLL_IN);
174 }
175 else
176 dbg("data format error - no EOF");
177 break;
178 case CMD_ACK:
179 dbg("%s ack: %c", __func__, buf[1]);
180 wake_up_interruptible(&dev->waitq);
181 break;
182 }
183
184exit:
185 retval = usb_submit_urb(dev->urb, GFP_ATOMIC);
186 if (retval) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700187 dev_err(&dev->interface->dev, "%s - usb_submit_urb failed: %d\n",
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900188 __func__, retval);
189 }
190}
191
192static int yurex_probe(struct usb_interface *interface, const struct usb_device_id *id)
193{
194 struct usb_yurex *dev;
195 struct usb_host_interface *iface_desc;
196 struct usb_endpoint_descriptor *endpoint;
197 int retval = -ENOMEM;
198 int i;
199 DEFINE_WAIT(wait);
200
201 /* allocate memory for our device state and initialize it */
202 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
203 if (!dev) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700204 dev_err(&interface->dev, "Out of memory\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900205 goto error;
206 }
207 kref_init(&dev->kref);
208 mutex_init(&dev->io_mutex);
209 spin_lock_init(&dev->lock);
210 init_waitqueue_head(&dev->waitq);
211
212 dev->udev = usb_get_dev(interface_to_usbdev(interface));
213 dev->interface = interface;
214
215 /* set up the endpoint information */
216 iface_desc = interface->cur_altsetting;
217 for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) {
218 endpoint = &iface_desc->endpoint[i].desc;
219
220 if (usb_endpoint_is_int_in(endpoint)) {
221 dev->int_in_endpointAddr = endpoint->bEndpointAddress;
222 break;
223 }
224 }
225 if (!dev->int_in_endpointAddr) {
226 retval = -ENODEV;
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700227 dev_err(&interface->dev, "Could not find endpoints\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900228 goto error;
229 }
230
231
232 /* allocate control URB */
233 dev->cntl_urb = usb_alloc_urb(0, GFP_KERNEL);
234 if (!dev->cntl_urb) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700235 dev_err(&interface->dev, "Could not allocate control URB\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900236 goto error;
237 }
238
239 /* allocate buffer for control req */
240 dev->cntl_req = usb_alloc_coherent(dev->udev, YUREX_BUF_SIZE,
241 GFP_KERNEL,
242 &dev->cntl_urb->setup_dma);
243 if (!dev->cntl_req) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700244 dev_err(&interface->dev, "Could not allocate cntl_req\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900245 goto error;
246 }
247
248 /* allocate buffer for control msg */
249 dev->cntl_buffer = usb_alloc_coherent(dev->udev, YUREX_BUF_SIZE,
250 GFP_KERNEL,
251 &dev->cntl_urb->transfer_dma);
252 if (!dev->cntl_buffer) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700253 dev_err(&interface->dev, "Could not allocate cntl_buffer\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900254 goto error;
255 }
256
257 /* configure control URB */
258 dev->cntl_req->bRequestType = USB_DIR_OUT | USB_TYPE_CLASS |
259 USB_RECIP_INTERFACE;
260 dev->cntl_req->bRequest = HID_REQ_SET_REPORT;
261 dev->cntl_req->wValue = cpu_to_le16((HID_OUTPUT_REPORT + 1) << 8);
262 dev->cntl_req->wIndex = cpu_to_le16(iface_desc->desc.bInterfaceNumber);
263 dev->cntl_req->wLength = cpu_to_le16(YUREX_BUF_SIZE);
264
265 usb_fill_control_urb(dev->cntl_urb, dev->udev,
266 usb_sndctrlpipe(dev->udev, 0),
267 (void *)dev->cntl_req, dev->cntl_buffer,
268 YUREX_BUF_SIZE, yurex_control_callback, dev);
Tomoki Sekiyamae06ea972010-10-03 06:59:06 +0900269 dev->cntl_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900270
271
272 /* allocate interrupt URB */
273 dev->urb = usb_alloc_urb(0, GFP_KERNEL);
274 if (!dev->urb) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700275 dev_err(&interface->dev, "Could not allocate URB\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900276 goto error;
277 }
278
279 /* allocate buffer for interrupt in */
280 dev->int_buffer = usb_alloc_coherent(dev->udev, YUREX_BUF_SIZE,
281 GFP_KERNEL, &dev->urb->transfer_dma);
282 if (!dev->int_buffer) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700283 dev_err(&interface->dev, "Could not allocate int_buffer\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900284 goto error;
285 }
286
287 /* configure interrupt URB */
288 usb_fill_int_urb(dev->urb, dev->udev,
289 usb_rcvintpipe(dev->udev, dev->int_in_endpointAddr),
290 dev->int_buffer, YUREX_BUF_SIZE, yurex_interrupt,
291 dev, 1);
Tomoki Sekiyamae06ea972010-10-03 06:59:06 +0900292 dev->cntl_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900293 if (usb_submit_urb(dev->urb, GFP_KERNEL)) {
294 retval = -EIO;
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700295 dev_err(&interface->dev, "Could not submitting URB\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900296 goto error;
297 }
298
299 /* save our data pointer in this interface device */
300 usb_set_intfdata(interface, dev);
301
302 /* we can register the device now, as it is ready */
303 retval = usb_register_dev(interface, &yurex_class);
304 if (retval) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700305 dev_err(&interface->dev,
306 "Not able to get a minor for this device.\n");
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900307 usb_set_intfdata(interface, NULL);
308 goto error;
309 }
310
311 dev->bbu = -1;
312
313 dev_info(&interface->dev,
Tomoki Sekiyamae06ea972010-10-03 06:59:06 +0900314 "USB YUREX device now attached to Yurex #%d\n",
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900315 interface->minor);
316
317 return 0;
318
319error:
320 if (dev)
321 /* this frees allocated memory */
322 kref_put(&dev->kref, yurex_delete);
323 return retval;
324}
325
326static void yurex_disconnect(struct usb_interface *interface)
327{
328 struct usb_yurex *dev;
329 int minor = interface->minor;
330
331 dev = usb_get_intfdata(interface);
332 usb_set_intfdata(interface, NULL);
333
334 /* give back our minor */
335 usb_deregister_dev(interface, &yurex_class);
336
337 /* prevent more I/O from starting */
338 mutex_lock(&dev->io_mutex);
339 dev->interface = NULL;
340 mutex_unlock(&dev->io_mutex);
341
342 /* wakeup waiters */
343 kill_fasync(&dev->async_queue, SIGIO, POLL_IN);
344 wake_up_interruptible(&dev->waitq);
345
346 /* decrement our usage count */
347 kref_put(&dev->kref, yurex_delete);
348
Tomoki Sekiyamae06ea972010-10-03 06:59:06 +0900349 dev_info(&interface->dev, "USB YUREX #%d now disconnected\n", minor);
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900350}
351
352static struct usb_driver yurex_driver = {
353 .name = "yurex",
354 .probe = yurex_probe,
355 .disconnect = yurex_disconnect,
356 .id_table = yurex_table,
357};
358
359
360static int yurex_fasync(int fd, struct file *file, int on)
361{
362 struct usb_yurex *dev;
363
364 dev = (struct usb_yurex *)file->private_data;
365 return fasync_helper(fd, file, on, &dev->async_queue);
366}
367
368static int yurex_open(struct inode *inode, struct file *file)
369{
370 struct usb_yurex *dev;
371 struct usb_interface *interface;
372 int subminor;
373 int retval = 0;
374
375 subminor = iminor(inode);
376
377 interface = usb_find_interface(&yurex_driver, subminor);
378 if (!interface) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700379 printk(KERN_ERR "%s - error, can't find device for minor %d",
380 __func__, subminor);
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900381 retval = -ENODEV;
382 goto exit;
383 }
384
385 dev = usb_get_intfdata(interface);
386 if (!dev) {
387 retval = -ENODEV;
388 goto exit;
389 }
390
391 /* increment our usage count for the device */
392 kref_get(&dev->kref);
393
394 /* save our object in the file's private structure */
395 mutex_lock(&dev->io_mutex);
396 file->private_data = dev;
397 mutex_unlock(&dev->io_mutex);
398
399exit:
400 return retval;
401}
402
403static int yurex_release(struct inode *inode, struct file *file)
404{
405 struct usb_yurex *dev;
406
407 dev = (struct usb_yurex *)file->private_data;
408 if (dev == NULL)
409 return -ENODEV;
410
411 yurex_fasync(-1, file, 0);
412
413 /* decrement the count on our device */
414 kref_put(&dev->kref, yurex_delete);
415 return 0;
416}
417
418static ssize_t yurex_read(struct file *file, char *buffer, size_t count, loff_t *ppos)
419{
420 struct usb_yurex *dev;
421 int retval = 0;
422 int bytes_read = 0;
423 char in_buffer[20];
424 unsigned long flags;
425
426 dev = (struct usb_yurex *)file->private_data;
427
428 mutex_lock(&dev->io_mutex);
429 if (!dev->interface) { /* already disconnected */
430 retval = -ENODEV;
431 goto exit;
432 }
433
434 spin_lock_irqsave(&dev->lock, flags);
Tomoki Sekiyamae06ea972010-10-03 06:59:06 +0900435 bytes_read = snprintf(in_buffer, 20, "%lld\n", dev->bbu);
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900436 spin_unlock_irqrestore(&dev->lock, flags);
437
438 if (*ppos < bytes_read) {
439 if (copy_to_user(buffer, in_buffer + *ppos, bytes_read - *ppos))
440 retval = -EFAULT;
441 else {
442 retval = bytes_read - *ppos;
443 *ppos += bytes_read;
444 }
445 }
446
447exit:
448 mutex_unlock(&dev->io_mutex);
449 return retval;
450}
451
452static ssize_t yurex_write(struct file *file, const char *user_buffer, size_t count, loff_t *ppos)
453{
454 struct usb_yurex *dev;
455 int i, set = 0, retval = 0;
456 char buffer[16];
457 char *data = buffer;
458 unsigned long long c, c2 = 0;
459 signed long timeout = 0;
460 DEFINE_WAIT(wait);
461
462 count = min(sizeof(buffer), count);
463 dev = (struct usb_yurex *)file->private_data;
464
465 /* verify that we actually have some data to write */
466 if (count == 0)
467 goto error;
468
469 mutex_lock(&dev->io_mutex);
470 if (!dev->interface) { /* alreaday disconnected */
471 mutex_unlock(&dev->io_mutex);
472 retval = -ENODEV;
473 goto error;
474 }
475
476 if (copy_from_user(buffer, user_buffer, count)) {
477 mutex_unlock(&dev->io_mutex);
478 retval = -EFAULT;
479 goto error;
480 }
481 memset(dev->cntl_buffer, CMD_PADDING, YUREX_BUF_SIZE);
482
483 switch (buffer[0]) {
484 case CMD_ANIMATE:
485 case CMD_LED:
486 dev->cntl_buffer[0] = buffer[0];
487 dev->cntl_buffer[1] = buffer[1];
488 dev->cntl_buffer[2] = CMD_EOF;
489 break;
490 case CMD_READ:
491 case CMD_VERSION:
492 dev->cntl_buffer[0] = buffer[0];
493 dev->cntl_buffer[1] = 0x00;
494 dev->cntl_buffer[2] = CMD_EOF;
495 break;
496 case CMD_SET:
497 data++;
498 /* FALL THROUGH */
499 case '0' ... '9':
500 set = 1;
501 c = c2 = simple_strtoull(data, NULL, 0);
502 dev->cntl_buffer[0] = CMD_SET;
503 for (i = 1; i < 6; i++) {
504 dev->cntl_buffer[i] = (c>>32) & 0xff;
505 c <<= 8;
506 }
507 buffer[6] = CMD_EOF;
508 break;
509 default:
510 mutex_unlock(&dev->io_mutex);
511 return -EINVAL;
512 }
513
514 /* send the data as the control msg */
515 prepare_to_wait(&dev->waitq, &wait, TASK_INTERRUPTIBLE);
516 dbg("%s - submit %c", __func__, dev->cntl_buffer[0]);
517 retval = usb_submit_urb(dev->cntl_urb, GFP_KERNEL);
518 if (retval >= 0)
519 timeout = schedule_timeout(YUREX_WRITE_TIMEOUT);
520 finish_wait(&dev->waitq, &wait);
521
522 mutex_unlock(&dev->io_mutex);
523
524 if (retval < 0) {
Greg Kroah-Hartman45714102012-04-20 16:53:56 -0700525 dev_err(&dev->interface->dev,
526 "%s - failed to send bulk msg, error %d\n",
527 __func__, retval);
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900528 goto error;
529 }
530 if (set && timeout)
531 dev->bbu = c2;
532 return timeout ? count : -EIO;
533
534error:
535 return retval;
536}
537
538static const struct file_operations yurex_fops = {
539 .owner = THIS_MODULE,
540 .read = yurex_read,
541 .write = yurex_write,
542 .open = yurex_open,
543 .release = yurex_release,
544 .fasync = yurex_fasync,
Tomoki Sekiyama27f485b2010-11-22 19:29:23 +0900545 .llseek = default_llseek,
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900546};
547
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800548module_usb_driver(yurex_driver);
Tomoki Sekiyama6bc235a2010-09-29 12:16:50 +0900549
550MODULE_LICENSE("GPL");