2 * Driver for Meywa-Denki & KAYAC YUREX
4 * Copyright (C) 2010 Tomoki Sekiyama (tomoki.sekiyama@gmail.com)
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/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>
23 #define DRIVER_AUTHOR "Tomoki Sekiyama"
24 #define DRIVER_DESC "Driver for Meywa-Denki & KAYAC YUREX"
26 #define YUREX_VENDOR_ID 0x0c45
27 #define YUREX_PRODUCT_ID 0x1010
30 #define CMD_ANIMATE 'A'
35 #define CMD_VERSION 'V'
37 #define CMD_PADDING 0xff
39 #define YUREX_BUF_SIZE 8
40 #define YUREX_WRITE_TIMEOUT (HZ*2)
42 /* table of devices that work with this driver */
43 static struct usb_device_id yurex_table
[] = {
44 { USB_DEVICE(YUREX_VENDOR_ID
, YUREX_PRODUCT_ID
) },
45 { } /* Terminating entry */
47 MODULE_DEVICE_TABLE(usb
, yurex_table
);
49 #ifdef CONFIG_USB_DYNAMIC_MINORS
50 #define YUREX_MINOR_BASE 0
52 #define YUREX_MINOR_BASE 192
55 /* Structure to hold all of our device specific stuff */
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 */
67 struct mutex io_mutex
;
68 struct fasync_struct
*async_queue
;
69 wait_queue_head_t waitq
;
72 __s64 bbu
; /* BBU from device */
74 #define to_yurex_dev(d) container_of(d, struct usb_yurex, kref)
76 static struct usb_driver yurex_driver
;
77 static const struct file_operations yurex_fops
;
80 static void yurex_control_callback(struct urb
*urb
)
82 struct usb_yurex
*dev
= urb
->context
;
83 int status
= urb
->status
;
86 err("%s - control failed: %d\n", __func__
, status
);
87 wake_up_interruptible(&dev
->waitq
);
90 /* on success, sender woken up by CMD_ACK int in, or timeout */
93 static void yurex_delete(struct kref
*kref
)
95 struct usb_yurex
*dev
= to_yurex_dev(kref
);
99 usb_put_dev(dev
->udev
);
101 usb_kill_urb(dev
->cntl_urb
);
103 usb_free_coherent(dev
->udev
, YUREX_BUF_SIZE
,
104 dev
->cntl_req
, dev
->cntl_urb
->setup_dma
);
105 if (dev
->cntl_buffer
)
106 usb_free_coherent(dev
->udev
, YUREX_BUF_SIZE
,
107 dev
->cntl_buffer
, dev
->cntl_urb
->transfer_dma
);
108 usb_free_urb(dev
->cntl_urb
);
111 usb_kill_urb(dev
->urb
);
113 usb_free_coherent(dev
->udev
, YUREX_BUF_SIZE
,
114 dev
->int_buffer
, dev
->urb
->transfer_dma
);
115 usb_free_urb(dev
->urb
);
121 * usb class driver info in order to get a minor number from the usb core,
122 * and to have the device registered with the driver core
124 static struct usb_class_driver yurex_class
= {
127 .minor_base
= YUREX_MINOR_BASE
,
130 static void yurex_interrupt(struct urb
*urb
)
132 struct usb_yurex
*dev
= urb
->context
;
133 unsigned char *buf
= dev
->int_buffer
;
134 int status
= urb
->status
;
142 err("%s - overflow with length %d, actual length is %d",
143 __func__
, YUREX_BUF_SIZE
, dev
->urb
->actual_length
);
148 /* The device is terminated, clean up */
151 err("%s - unknown status received: %d", __func__
, status
);
155 /* handle received message */
159 if (buf
[6] == CMD_EOF
) {
160 spin_lock_irqsave(&dev
->lock
, flags
);
162 for (i
= 1; i
< 6; i
++) {
167 dbg("%s count: %lld", __func__
, dev
->bbu
);
168 spin_unlock_irqrestore(&dev
->lock
, flags
);
170 kill_fasync(&dev
->async_queue
, SIGIO
, POLL_IN
);
173 dbg("data format error - no EOF");
176 dbg("%s ack: %c", __func__
, buf
[1]);
177 wake_up_interruptible(&dev
->waitq
);
182 retval
= usb_submit_urb(dev
->urb
, GFP_ATOMIC
);
184 err("%s - usb_submit_urb failed: %d",
189 static int yurex_probe(struct usb_interface
*interface
, const struct usb_device_id
*id
)
191 struct usb_yurex
*dev
;
192 struct usb_host_interface
*iface_desc
;
193 struct usb_endpoint_descriptor
*endpoint
;
194 int retval
= -ENOMEM
;
198 /* allocate memory for our device state and initialize it */
199 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
201 err("Out of memory");
204 kref_init(&dev
->kref
);
205 mutex_init(&dev
->io_mutex
);
206 spin_lock_init(&dev
->lock
);
207 init_waitqueue_head(&dev
->waitq
);
209 dev
->udev
= usb_get_dev(interface_to_usbdev(interface
));
210 dev
->interface
= interface
;
212 /* set up the endpoint information */
213 iface_desc
= interface
->cur_altsetting
;
214 for (i
= 0; i
< iface_desc
->desc
.bNumEndpoints
; i
++) {
215 endpoint
= &iface_desc
->endpoint
[i
].desc
;
217 if (usb_endpoint_is_int_in(endpoint
)) {
218 dev
->int_in_endpointAddr
= endpoint
->bEndpointAddress
;
222 if (!dev
->int_in_endpointAddr
) {
224 err("Could not find endpoints");
229 /* allocate control URB */
230 dev
->cntl_urb
= usb_alloc_urb(0, GFP_KERNEL
);
231 if (!dev
->cntl_urb
) {
232 err("Could not allocate control URB");
236 /* allocate buffer for control req */
237 dev
->cntl_req
= usb_alloc_coherent(dev
->udev
, YUREX_BUF_SIZE
,
239 &dev
->cntl_urb
->setup_dma
);
240 if (!dev
->cntl_req
) {
241 err("Could not allocate cntl_req");
245 /* allocate buffer for control msg */
246 dev
->cntl_buffer
= usb_alloc_coherent(dev
->udev
, YUREX_BUF_SIZE
,
248 &dev
->cntl_urb
->transfer_dma
);
249 if (!dev
->cntl_buffer
) {
250 err("Could not allocate cntl_buffer");
254 /* configure control URB */
255 dev
->cntl_req
->bRequestType
= USB_DIR_OUT
| USB_TYPE_CLASS
|
257 dev
->cntl_req
->bRequest
= HID_REQ_SET_REPORT
;
258 dev
->cntl_req
->wValue
= cpu_to_le16((HID_OUTPUT_REPORT
+ 1) << 8);
259 dev
->cntl_req
->wIndex
= cpu_to_le16(iface_desc
->desc
.bInterfaceNumber
);
260 dev
->cntl_req
->wLength
= cpu_to_le16(YUREX_BUF_SIZE
);
262 usb_fill_control_urb(dev
->cntl_urb
, dev
->udev
,
263 usb_sndctrlpipe(dev
->udev
, 0),
264 (void *)dev
->cntl_req
, dev
->cntl_buffer
,
265 YUREX_BUF_SIZE
, yurex_control_callback
, dev
);
266 dev
->cntl_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
269 /* allocate interrupt URB */
270 dev
->urb
= usb_alloc_urb(0, GFP_KERNEL
);
272 err("Could not allocate URB");
276 /* allocate buffer for interrupt in */
277 dev
->int_buffer
= usb_alloc_coherent(dev
->udev
, YUREX_BUF_SIZE
,
278 GFP_KERNEL
, &dev
->urb
->transfer_dma
);
279 if (!dev
->int_buffer
) {
280 err("Could not allocate int_buffer");
284 /* configure interrupt URB */
285 usb_fill_int_urb(dev
->urb
, dev
->udev
,
286 usb_rcvintpipe(dev
->udev
, dev
->int_in_endpointAddr
),
287 dev
->int_buffer
, YUREX_BUF_SIZE
, yurex_interrupt
,
289 dev
->cntl_urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
290 if (usb_submit_urb(dev
->urb
, GFP_KERNEL
)) {
292 err("Could not submitting URB");
296 /* save our data pointer in this interface device */
297 usb_set_intfdata(interface
, dev
);
299 /* we can register the device now, as it is ready */
300 retval
= usb_register_dev(interface
, &yurex_class
);
302 err("Not able to get a minor for this device.");
303 usb_set_intfdata(interface
, NULL
);
309 dev_info(&interface
->dev
,
310 "USB YUREX device now attached to Yurex #%d\n",
317 /* this frees allocated memory */
318 kref_put(&dev
->kref
, yurex_delete
);
322 static void yurex_disconnect(struct usb_interface
*interface
)
324 struct usb_yurex
*dev
;
325 int minor
= interface
->minor
;
327 dev
= usb_get_intfdata(interface
);
328 usb_set_intfdata(interface
, NULL
);
330 /* give back our minor */
331 usb_deregister_dev(interface
, &yurex_class
);
333 /* prevent more I/O from starting */
334 mutex_lock(&dev
->io_mutex
);
335 dev
->interface
= NULL
;
336 mutex_unlock(&dev
->io_mutex
);
339 kill_fasync(&dev
->async_queue
, SIGIO
, POLL_IN
);
340 wake_up_interruptible(&dev
->waitq
);
342 /* decrement our usage count */
343 kref_put(&dev
->kref
, yurex_delete
);
345 dev_info(&interface
->dev
, "USB YUREX #%d now disconnected\n", minor
);
348 static struct usb_driver yurex_driver
= {
350 .probe
= yurex_probe
,
351 .disconnect
= yurex_disconnect
,
352 .id_table
= yurex_table
,
356 static int yurex_fasync(int fd
, struct file
*file
, int on
)
358 struct usb_yurex
*dev
;
360 dev
= (struct usb_yurex
*)file
->private_data
;
361 return fasync_helper(fd
, file
, on
, &dev
->async_queue
);
364 static int yurex_open(struct inode
*inode
, struct file
*file
)
366 struct usb_yurex
*dev
;
367 struct usb_interface
*interface
;
371 subminor
= iminor(inode
);
373 interface
= usb_find_interface(&yurex_driver
, subminor
);
375 err("%s - error, can't find device for minor %d",
381 dev
= usb_get_intfdata(interface
);
387 /* increment our usage count for the device */
388 kref_get(&dev
->kref
);
390 /* save our object in the file's private structure */
391 mutex_lock(&dev
->io_mutex
);
392 file
->private_data
= dev
;
393 mutex_unlock(&dev
->io_mutex
);
399 static int yurex_release(struct inode
*inode
, struct file
*file
)
401 struct usb_yurex
*dev
;
403 dev
= (struct usb_yurex
*)file
->private_data
;
407 yurex_fasync(-1, file
, 0);
409 /* decrement the count on our device */
410 kref_put(&dev
->kref
, yurex_delete
);
414 static ssize_t
yurex_read(struct file
*file
, char *buffer
, size_t count
, loff_t
*ppos
)
416 struct usb_yurex
*dev
;
422 dev
= (struct usb_yurex
*)file
->private_data
;
424 mutex_lock(&dev
->io_mutex
);
425 if (!dev
->interface
) { /* already disconnected */
430 spin_lock_irqsave(&dev
->lock
, flags
);
431 bytes_read
= snprintf(in_buffer
, 20, "%lld\n", dev
->bbu
);
432 spin_unlock_irqrestore(&dev
->lock
, flags
);
434 if (*ppos
< bytes_read
) {
435 if (copy_to_user(buffer
, in_buffer
+ *ppos
, bytes_read
- *ppos
))
438 retval
= bytes_read
- *ppos
;
444 mutex_unlock(&dev
->io_mutex
);
448 static ssize_t
yurex_write(struct file
*file
, const char *user_buffer
, size_t count
, loff_t
*ppos
)
450 struct usb_yurex
*dev
;
451 int i
, set
= 0, retval
= 0;
454 unsigned long long c
, c2
= 0;
455 signed long timeout
= 0;
458 count
= min(sizeof(buffer
), count
);
459 dev
= (struct usb_yurex
*)file
->private_data
;
461 /* verify that we actually have some data to write */
465 mutex_lock(&dev
->io_mutex
);
466 if (!dev
->interface
) { /* alreaday disconnected */
467 mutex_unlock(&dev
->io_mutex
);
472 if (copy_from_user(buffer
, user_buffer
, count
)) {
473 mutex_unlock(&dev
->io_mutex
);
477 memset(dev
->cntl_buffer
, CMD_PADDING
, YUREX_BUF_SIZE
);
482 dev
->cntl_buffer
[0] = buffer
[0];
483 dev
->cntl_buffer
[1] = buffer
[1];
484 dev
->cntl_buffer
[2] = CMD_EOF
;
488 dev
->cntl_buffer
[0] = buffer
[0];
489 dev
->cntl_buffer
[1] = 0x00;
490 dev
->cntl_buffer
[2] = CMD_EOF
;
497 c
= c2
= simple_strtoull(data
, NULL
, 0);
498 dev
->cntl_buffer
[0] = CMD_SET
;
499 for (i
= 1; i
< 6; i
++) {
500 dev
->cntl_buffer
[i
] = (c
>>32) & 0xff;
506 mutex_unlock(&dev
->io_mutex
);
510 /* send the data as the control msg */
511 prepare_to_wait(&dev
->waitq
, &wait
, TASK_INTERRUPTIBLE
);
512 dbg("%s - submit %c", __func__
, dev
->cntl_buffer
[0]);
513 retval
= usb_submit_urb(dev
->cntl_urb
, GFP_KERNEL
);
515 timeout
= schedule_timeout(YUREX_WRITE_TIMEOUT
);
516 finish_wait(&dev
->waitq
, &wait
);
518 mutex_unlock(&dev
->io_mutex
);
521 err("%s - failed to send bulk msg, error %d", __func__
, retval
);
526 return timeout
? count
: -EIO
;
532 static const struct file_operations yurex_fops
= {
533 .owner
= THIS_MODULE
,
535 .write
= yurex_write
,
537 .release
= yurex_release
,
538 .fasync
= yurex_fasync
,
539 .llseek
= default_llseek
,
543 static int __init
usb_yurex_init(void)
547 /* register this driver with the USB subsystem */
548 result
= usb_register(&yurex_driver
);
550 err("usb_register failed. Error number %d", result
);
555 static void __exit
usb_yurex_exit(void)
557 /* deregister this driver with the USB subsystem */
558 usb_deregister(&yurex_driver
);
561 module_init(usb_yurex_init
);
562 module_exit(usb_yurex_exit
);
564 MODULE_LICENSE("GPL");