GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / lirc / lirc_imon.c
blob66493253042e8ccedfa7be8e21c317f8845c7093
1 /*
2 * lirc_imon.c: LIRC/VFD/LCD driver for SoundGraph iMON IR/VFD/LCD
3 * including the iMON PAD model
5 * Copyright(C) 2004 Venky Raju(dev@venky.ws)
6 * Copyright(C) 2009 Jarod Wilson <jarod@wilsonet.com>
8 * lirc_imon is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/errno.h>
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/slab.h>
28 #include <linux/uaccess.h>
29 #include <linux/usb.h>
31 #include <media/lirc.h>
32 #include <media/lirc_dev.h>
35 #define MOD_AUTHOR "Venky Raju <dev@venky.ws>"
36 #define MOD_DESC "Driver for SoundGraph iMON MultiMedia IR/Display"
37 #define MOD_NAME "lirc_imon"
38 #define MOD_VERSION "0.8"
40 #define DISPLAY_MINOR_BASE 144
41 #define DEVICE_NAME "lcd%d"
43 #define BUF_CHUNK_SIZE 4
44 #define BUF_SIZE 128
46 #define BIT_DURATION 250 /* each bit received is 250us */
48 /*** P R O T O T Y P E S ***/
50 /* USB Callback prototypes */
51 static int imon_probe(struct usb_interface *interface,
52 const struct usb_device_id *id);
53 static void imon_disconnect(struct usb_interface *interface);
54 static void usb_rx_callback(struct urb *urb);
55 static void usb_tx_callback(struct urb *urb);
57 /* suspend/resume support */
58 static int imon_resume(struct usb_interface *intf);
59 static int imon_suspend(struct usb_interface *intf, pm_message_t message);
61 /* Display file_operations function prototypes */
62 static int display_open(struct inode *inode, struct file *file);
63 static int display_close(struct inode *inode, struct file *file);
65 /* VFD write operation */
66 static ssize_t vfd_write(struct file *file, const char *buf,
67 size_t n_bytes, loff_t *pos);
69 /* LIRC driver function prototypes */
70 static int ir_open(void *data);
71 static void ir_close(void *data);
73 /* Driver init/exit prototypes */
74 static int __init imon_init(void);
75 static void __exit imon_exit(void);
77 /*** G L O B A L S ***/
78 #define IMON_DATA_BUF_SZ 35
80 struct imon_context {
81 struct usb_device *usbdev;
82 /* Newer devices have two interfaces */
83 int display; /* not all controllers do */
84 int display_isopen; /* display port has been opened */
85 int ir_isopen; /* IR port open */
86 int dev_present; /* USB device presence */
87 struct mutex ctx_lock; /* to lock this object */
88 wait_queue_head_t remove_ok; /* For unexpected USB disconnects */
90 int vfd_proto_6p; /* some VFD require a 6th packet */
92 struct lirc_driver *driver;
93 struct usb_endpoint_descriptor *rx_endpoint;
94 struct usb_endpoint_descriptor *tx_endpoint;
95 struct urb *rx_urb;
96 struct urb *tx_urb;
97 unsigned char usb_rx_buf[8];
98 unsigned char usb_tx_buf[8];
100 struct rx_data {
101 int count; /* length of 0 or 1 sequence */
102 int prev_bit; /* logic level of sequence */
103 int initial_space; /* initial space flag */
104 } rx;
106 struct tx_t {
107 unsigned char data_buf[IMON_DATA_BUF_SZ]; /* user data buffer */
108 struct completion finished; /* wait for write to finish */
109 atomic_t busy; /* write in progress */
110 int status; /* status of tx completion */
111 } tx;
114 static const struct file_operations display_fops = {
115 .owner = THIS_MODULE,
116 .open = &display_open,
117 .write = &vfd_write,
118 .release = &display_close
122 * USB Device ID for iMON USB Control Boards
124 * The Windows drivers contain 6 different inf files, more or less one for
125 * each new device until the 0x0034-0x0046 devices, which all use the same
126 * driver. Some of the devices in the 34-46 range haven't been definitively
127 * identified yet. Early devices have either a TriGem Computer, Inc. or a
128 * Samsung vendor ID (0x0aa8 and 0x04e8 respectively), while all later
129 * devices use the SoundGraph vendor ID (0x15c2).
131 static struct usb_device_id imon_usb_id_table[] = {
132 /* TriGem iMON (IR only) -- TG_iMON.inf */
133 { USB_DEVICE(0x0aa8, 0x8001) },
135 /* SoundGraph iMON (IR only) -- sg_imon.inf */
136 { USB_DEVICE(0x04e8, 0xff30) },
138 /* SoundGraph iMON VFD (IR & VFD) -- iMON_VFD.inf */
139 { USB_DEVICE(0x0aa8, 0xffda) },
141 /* SoundGraph iMON SS (IR & VFD) -- iMON_SS.inf */
142 { USB_DEVICE(0x15c2, 0xffda) },
147 /* Some iMON VFD models requires a 6th packet for VFD writes */
148 static struct usb_device_id vfd_proto_6p_list[] = {
149 { USB_DEVICE(0x15c2, 0xffda) },
153 /* Some iMON devices have no lcd/vfd, don't set one up */
154 static struct usb_device_id ir_only_list[] = {
155 { USB_DEVICE(0x0aa8, 0x8001) },
156 { USB_DEVICE(0x04e8, 0xff30) },
160 /* USB Device data */
161 static struct usb_driver imon_driver = {
162 .name = MOD_NAME,
163 .probe = imon_probe,
164 .disconnect = imon_disconnect,
165 .suspend = imon_suspend,
166 .resume = imon_resume,
167 .id_table = imon_usb_id_table,
170 static struct usb_class_driver imon_class = {
171 .name = DEVICE_NAME,
172 .fops = &display_fops,
173 .minor_base = DISPLAY_MINOR_BASE,
176 /* to prevent races between open() and disconnect(), probing, etc */
177 static DEFINE_MUTEX(driver_lock);
179 static int debug;
181 /*** M O D U L E C O D E ***/
183 MODULE_AUTHOR(MOD_AUTHOR);
184 MODULE_DESCRIPTION(MOD_DESC);
185 MODULE_VERSION(MOD_VERSION);
186 MODULE_LICENSE("GPL");
187 MODULE_DEVICE_TABLE(usb, imon_usb_id_table);
188 module_param(debug, int, S_IRUGO | S_IWUSR);
189 MODULE_PARM_DESC(debug, "Debug messages: 0=no, 1=yes(default: no)");
191 static void free_imon_context(struct imon_context *context)
193 struct device *dev = context->driver->dev;
194 usb_free_urb(context->tx_urb);
195 usb_free_urb(context->rx_urb);
196 lirc_buffer_free(context->driver->rbuf);
197 kfree(context->driver->rbuf);
198 kfree(context->driver);
199 kfree(context);
201 dev_dbg(dev, "%s: iMON context freed\n", __func__);
204 static void deregister_from_lirc(struct imon_context *context)
206 int retval;
207 int minor = context->driver->minor;
209 retval = lirc_unregister_driver(minor);
210 if (retval)
211 err("%s: unable to deregister from lirc(%d)",
212 __func__, retval);
213 else
214 printk(KERN_INFO MOD_NAME ": Deregistered iMON driver "
215 "(minor:%d)\n", minor);
220 * Called when the Display device (e.g. /dev/lcd0)
221 * is opened by the application.
223 static int display_open(struct inode *inode, struct file *file)
225 struct usb_interface *interface;
226 struct imon_context *context = NULL;
227 int subminor;
228 int retval = 0;
230 /* prevent races with disconnect */
231 mutex_lock(&driver_lock);
233 subminor = iminor(inode);
234 interface = usb_find_interface(&imon_driver, subminor);
235 if (!interface) {
236 err("%s: could not find interface for minor %d",
237 __func__, subminor);
238 retval = -ENODEV;
239 goto exit;
241 context = usb_get_intfdata(interface);
243 if (!context) {
244 err("%s: no context found for minor %d",
245 __func__, subminor);
246 retval = -ENODEV;
247 goto exit;
250 mutex_lock(&context->ctx_lock);
252 if (!context->display) {
253 err("%s: display not supported by device", __func__);
254 retval = -ENODEV;
255 } else if (context->display_isopen) {
256 err("%s: display port is already open", __func__);
257 retval = -EBUSY;
258 } else {
259 context->display_isopen = 1;
260 file->private_data = context;
261 dev_info(context->driver->dev, "display port opened\n");
264 mutex_unlock(&context->ctx_lock);
266 exit:
267 mutex_unlock(&driver_lock);
268 return retval;
272 * Called when the display device (e.g. /dev/lcd0)
273 * is closed by the application.
275 static int display_close(struct inode *inode, struct file *file)
277 struct imon_context *context = NULL;
278 int retval = 0;
280 context = (struct imon_context *)file->private_data;
282 if (!context) {
283 err("%s: no context for device", __func__);
284 return -ENODEV;
287 mutex_lock(&context->ctx_lock);
289 if (!context->display) {
290 err("%s: display not supported by device", __func__);
291 retval = -ENODEV;
292 } else if (!context->display_isopen) {
293 err("%s: display is not open", __func__);
294 retval = -EIO;
295 } else {
296 context->display_isopen = 0;
297 dev_info(context->driver->dev, "display port closed\n");
298 if (!context->dev_present && !context->ir_isopen) {
300 * Device disconnected before close and IR port is not
301 * open. If IR port is open, context will be deleted by
302 * ir_close.
304 mutex_unlock(&context->ctx_lock);
305 free_imon_context(context);
306 return retval;
310 mutex_unlock(&context->ctx_lock);
311 return retval;
315 * Sends a packet to the device -- this function must be called
316 * with context->ctx_lock held.
318 static int send_packet(struct imon_context *context)
320 unsigned int pipe;
321 int interval = 0;
322 int retval = 0;
323 struct usb_ctrlrequest *control_req = NULL;
325 /* Check if we need to use control or interrupt urb */
326 pipe = usb_sndintpipe(context->usbdev,
327 context->tx_endpoint->bEndpointAddress);
328 interval = context->tx_endpoint->bInterval;
330 usb_fill_int_urb(context->tx_urb, context->usbdev, pipe,
331 context->usb_tx_buf,
332 sizeof(context->usb_tx_buf),
333 usb_tx_callback, context, interval);
335 context->tx_urb->actual_length = 0;
337 init_completion(&context->tx.finished);
338 atomic_set(&(context->tx.busy), 1);
340 retval = usb_submit_urb(context->tx_urb, GFP_KERNEL);
341 if (retval) {
342 atomic_set(&(context->tx.busy), 0);
343 err("%s: error submitting urb(%d)", __func__, retval);
344 } else {
345 /* Wait for transmission to complete (or abort) */
346 mutex_unlock(&context->ctx_lock);
347 retval = wait_for_completion_interruptible(
348 &context->tx.finished);
349 if (retval)
350 err("%s: task interrupted", __func__);
351 mutex_lock(&context->ctx_lock);
353 retval = context->tx.status;
354 if (retval)
355 err("%s: packet tx failed (%d)", __func__, retval);
358 kfree(control_req);
360 return retval;
364 * Writes data to the VFD. The iMON VFD is 2x16 characters
365 * and requires data in 5 consecutive USB interrupt packets,
366 * each packet but the last carrying 7 bytes.
368 * I don't know if the VFD board supports features such as
369 * scrolling, clearing rows, blanking, etc. so at
370 * the caller must provide a full screen of data. If fewer
371 * than 32 bytes are provided spaces will be appended to
372 * generate a full screen.
374 static ssize_t vfd_write(struct file *file, const char *buf,
375 size_t n_bytes, loff_t *pos)
377 int i;
378 int offset;
379 int seq;
380 int retval = 0;
381 struct imon_context *context;
382 const unsigned char vfd_packet6[] = {
383 0x01, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF };
384 int *data_buf;
386 context = (struct imon_context *)file->private_data;
387 if (!context) {
388 err("%s: no context for device", __func__);
389 return -ENODEV;
392 mutex_lock(&context->ctx_lock);
394 if (!context->dev_present) {
395 err("%s: no iMON device present", __func__);
396 retval = -ENODEV;
397 goto exit;
400 if (n_bytes <= 0 || n_bytes > IMON_DATA_BUF_SZ - 3) {
401 err("%s: invalid payload size", __func__);
402 retval = -EINVAL;
403 goto exit;
406 data_buf = memdup_user(buf, n_bytes);
407 if (IS_ERR(data_buf)) {
408 retval = PTR_ERR(data_buf);
409 goto exit;
412 memcpy(context->tx.data_buf, data_buf, n_bytes);
414 /* Pad with spaces */
415 for (i = n_bytes; i < IMON_DATA_BUF_SZ - 3; ++i)
416 context->tx.data_buf[i] = ' ';
418 for (i = IMON_DATA_BUF_SZ - 3; i < IMON_DATA_BUF_SZ; ++i)
419 context->tx.data_buf[i] = 0xFF;
421 offset = 0;
422 seq = 0;
424 do {
425 memcpy(context->usb_tx_buf, context->tx.data_buf + offset, 7);
426 context->usb_tx_buf[7] = (unsigned char) seq;
428 retval = send_packet(context);
429 if (retval) {
430 err("%s: send packet failed for packet #%d",
431 __func__, seq/2);
432 goto exit;
433 } else {
434 seq += 2;
435 offset += 7;
438 } while (offset < IMON_DATA_BUF_SZ);
440 if (context->vfd_proto_6p) {
441 /* Send packet #6 */
442 memcpy(context->usb_tx_buf, &vfd_packet6, sizeof(vfd_packet6));
443 context->usb_tx_buf[7] = (unsigned char) seq;
444 retval = send_packet(context);
445 if (retval)
446 err("%s: send packet failed for packet #%d",
447 __func__, seq/2);
450 exit:
451 mutex_unlock(&context->ctx_lock);
453 return (!retval) ? n_bytes : retval;
457 * Callback function for USB core API: transmit data
459 static void usb_tx_callback(struct urb *urb)
461 struct imon_context *context;
463 if (!urb)
464 return;
465 context = (struct imon_context *)urb->context;
466 if (!context)
467 return;
469 context->tx.status = urb->status;
471 /* notify waiters that write has finished */
472 atomic_set(&context->tx.busy, 0);
473 complete(&context->tx.finished);
475 return;
479 * Called by lirc_dev when the application opens /dev/lirc
481 static int ir_open(void *data)
483 int retval = 0;
484 struct imon_context *context;
486 /* prevent races with disconnect */
487 mutex_lock(&driver_lock);
489 context = (struct imon_context *)data;
491 /* initial IR protocol decode variables */
492 context->rx.count = 0;
493 context->rx.initial_space = 1;
494 context->rx.prev_bit = 0;
496 context->ir_isopen = 1;
497 dev_info(context->driver->dev, "IR port opened\n");
499 mutex_unlock(&driver_lock);
500 return retval;
504 * Called by lirc_dev when the application closes /dev/lirc
506 static void ir_close(void *data)
508 struct imon_context *context;
510 context = (struct imon_context *)data;
511 if (!context) {
512 err("%s: no context for device", __func__);
513 return;
516 mutex_lock(&context->ctx_lock);
518 context->ir_isopen = 0;
519 dev_info(context->driver->dev, "IR port closed\n");
521 if (!context->dev_present) {
523 * Device disconnected while IR port was still open. Driver
524 * was not deregistered at disconnect time, so do it now.
526 deregister_from_lirc(context);
528 if (!context->display_isopen) {
529 mutex_unlock(&context->ctx_lock);
530 free_imon_context(context);
531 return;
534 * If display port is open, context will be deleted by
535 * display_close
539 mutex_unlock(&context->ctx_lock);
540 return;
544 * Convert bit count to time duration (in us) and submit
545 * the value to lirc_dev.
547 static void submit_data(struct imon_context *context)
549 unsigned char buf[4];
550 int value = context->rx.count;
551 int i;
553 dev_dbg(context->driver->dev, "submitting data to LIRC\n");
555 value *= BIT_DURATION;
556 value &= PULSE_MASK;
557 if (context->rx.prev_bit)
558 value |= PULSE_BIT;
560 for (i = 0; i < 4; ++i)
561 buf[i] = value>>(i*8);
563 lirc_buffer_write(context->driver->rbuf, buf);
564 wake_up(&context->driver->rbuf->wait_poll);
565 return;
568 static inline int tv2int(const struct timeval *a, const struct timeval *b)
570 int usecs = 0;
571 int sec = 0;
573 if (b->tv_usec > a->tv_usec) {
574 usecs = 1000000;
575 sec--;
578 usecs += a->tv_usec - b->tv_usec;
580 sec += a->tv_sec - b->tv_sec;
581 sec *= 1000;
582 usecs /= 1000;
583 sec += usecs;
585 if (sec < 0)
586 sec = 1000;
588 return sec;
592 * Process the incoming packet
594 static void imon_incoming_packet(struct imon_context *context,
595 struct urb *urb, int intf)
597 int len = urb->actual_length;
598 unsigned char *buf = urb->transfer_buffer;
599 struct device *dev = context->driver->dev;
600 int octet, bit;
601 unsigned char mask;
602 int i, chunk_num;
605 * just bail out if no listening IR client
607 if (!context->ir_isopen)
608 return;
610 if (len != 8) {
611 dev_warn(dev, "imon %s: invalid incoming packet "
612 "size (len = %d, intf%d)\n", __func__, len, intf);
613 return;
616 if (debug) {
617 printk(KERN_INFO "raw packet: ");
618 for (i = 0; i < len; ++i)
619 printk("%02x ", buf[i]);
620 printk("\n");
624 * Translate received data to pulse and space lengths.
625 * Received data is active low, i.e. pulses are 0 and
626 * spaces are 1.
628 * My original algorithm was essentially similar to
629 * Changwoo Ryu's with the exception that he switched
630 * the incoming bits to active high and also fed an
631 * initial space to LIRC at the start of a new sequence
632 * if the previous bit was a pulse.
634 * I've decided to adopt his algorithm.
637 if (buf[7] == 1 && context->rx.initial_space) {
638 /* LIRC requires a leading space */
639 context->rx.prev_bit = 0;
640 context->rx.count = 4;
641 submit_data(context);
642 context->rx.count = 0;
645 for (octet = 0; octet < 5; ++octet) {
646 mask = 0x80;
647 for (bit = 0; bit < 8; ++bit) {
648 int curr_bit = !(buf[octet] & mask);
649 if (curr_bit != context->rx.prev_bit) {
650 if (context->rx.count) {
651 submit_data(context);
652 context->rx.count = 0;
654 context->rx.prev_bit = curr_bit;
656 ++context->rx.count;
657 mask >>= 1;
661 if (chunk_num == 10) {
662 if (context->rx.count) {
663 submit_data(context);
664 context->rx.count = 0;
666 context->rx.initial_space = context->rx.prev_bit;
671 * Callback function for USB core API: receive data
673 static void usb_rx_callback(struct urb *urb)
675 struct imon_context *context;
676 unsigned char *buf;
677 int len;
678 int intfnum = 0;
680 if (!urb)
681 return;
683 context = (struct imon_context *)urb->context;
684 if (!context)
685 return;
687 buf = urb->transfer_buffer;
688 len = urb->actual_length;
690 switch (urb->status) {
691 case -ENOENT: /* usbcore unlink successful! */
692 return;
694 case 0:
695 imon_incoming_packet(context, urb, intfnum);
696 break;
698 default:
699 dev_warn(context->driver->dev, "imon %s: status(%d): ignored\n",
700 __func__, urb->status);
701 break;
704 usb_submit_urb(context->rx_urb, GFP_ATOMIC);
706 return;
710 * Callback function for USB core API: Probe
712 static int imon_probe(struct usb_interface *interface,
713 const struct usb_device_id *id)
715 struct usb_device *usbdev = NULL;
716 struct usb_host_interface *iface_desc = NULL;
717 struct usb_endpoint_descriptor *rx_endpoint = NULL;
718 struct usb_endpoint_descriptor *tx_endpoint = NULL;
719 struct urb *rx_urb = NULL;
720 struct urb *tx_urb = NULL;
721 struct lirc_driver *driver = NULL;
722 struct lirc_buffer *rbuf = NULL;
723 struct device *dev = &interface->dev;
724 int ifnum;
725 int lirc_minor = 0;
726 int num_endpts;
727 int retval = 0;
728 int display_ep_found = 0;
729 int ir_ep_found = 0;
730 int alloc_status = 0;
731 int vfd_proto_6p = 0;
732 int code_length;
733 struct imon_context *context = NULL;
734 int i;
735 u16 vendor, product;
737 context = kzalloc(sizeof(struct imon_context), GFP_KERNEL);
738 if (!context) {
739 err("%s: kzalloc failed for context", __func__);
740 alloc_status = 1;
741 goto alloc_status_switch;
745 * Try to auto-detect the type of display if the user hasn't set
746 * it by hand via the display_type modparam. Default is VFD.
748 if (usb_match_id(interface, ir_only_list))
749 context->display = 0;
750 else
751 context->display = 1;
753 code_length = BUF_CHUNK_SIZE * 8;
755 usbdev = usb_get_dev(interface_to_usbdev(interface));
756 iface_desc = interface->cur_altsetting;
757 num_endpts = iface_desc->desc.bNumEndpoints;
758 ifnum = iface_desc->desc.bInterfaceNumber;
759 vendor = le16_to_cpu(usbdev->descriptor.idVendor);
760 product = le16_to_cpu(usbdev->descriptor.idProduct);
762 dev_dbg(dev, "%s: found iMON device (%04x:%04x, intf%d)\n",
763 __func__, vendor, product, ifnum);
765 /* prevent races probing devices w/multiple interfaces */
766 mutex_lock(&driver_lock);
769 * Scan the endpoint list and set:
770 * first input endpoint = IR endpoint
771 * first output endpoint = display endpoint
773 for (i = 0; i < num_endpts && !(ir_ep_found && display_ep_found); ++i) {
774 struct usb_endpoint_descriptor *ep;
775 int ep_dir;
776 int ep_type;
777 ep = &iface_desc->endpoint[i].desc;
778 ep_dir = ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK;
779 ep_type = ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
781 if (!ir_ep_found &&
782 ep_dir == USB_DIR_IN &&
783 ep_type == USB_ENDPOINT_XFER_INT) {
785 rx_endpoint = ep;
786 ir_ep_found = 1;
787 dev_dbg(dev, "%s: found IR endpoint\n", __func__);
789 } else if (!display_ep_found && ep_dir == USB_DIR_OUT &&
790 ep_type == USB_ENDPOINT_XFER_INT) {
791 tx_endpoint = ep;
792 display_ep_found = 1;
793 dev_dbg(dev, "%s: found display endpoint\n", __func__);
798 * Some iMON receivers have no display. Unfortunately, it seems
799 * that SoundGraph recycles device IDs between devices both with
800 * and without... :\
802 if (context->display == 0) {
803 display_ep_found = 0;
804 dev_dbg(dev, "%s: device has no display\n", __func__);
807 /* Input endpoint is mandatory */
808 if (!ir_ep_found) {
809 err("%s: no valid input (IR) endpoint found.", __func__);
810 retval = -ENODEV;
811 alloc_status = 2;
812 goto alloc_status_switch;
815 /* Determine if display requires 6 packets */
816 if (display_ep_found) {
817 if (usb_match_id(interface, vfd_proto_6p_list))
818 vfd_proto_6p = 1;
820 dev_dbg(dev, "%s: vfd_proto_6p: %d\n",
821 __func__, vfd_proto_6p);
824 driver = kzalloc(sizeof(struct lirc_driver), GFP_KERNEL);
825 if (!driver) {
826 err("%s: kzalloc failed for lirc_driver", __func__);
827 alloc_status = 2;
828 goto alloc_status_switch;
830 rbuf = kmalloc(sizeof(struct lirc_buffer), GFP_KERNEL);
831 if (!rbuf) {
832 err("%s: kmalloc failed for lirc_buffer", __func__);
833 alloc_status = 3;
834 goto alloc_status_switch;
836 if (lirc_buffer_init(rbuf, BUF_CHUNK_SIZE, BUF_SIZE)) {
837 err("%s: lirc_buffer_init failed", __func__);
838 alloc_status = 4;
839 goto alloc_status_switch;
841 rx_urb = usb_alloc_urb(0, GFP_KERNEL);
842 if (!rx_urb) {
843 err("%s: usb_alloc_urb failed for IR urb", __func__);
844 alloc_status = 5;
845 goto alloc_status_switch;
847 tx_urb = usb_alloc_urb(0, GFP_KERNEL);
848 if (!tx_urb) {
849 err("%s: usb_alloc_urb failed for display urb",
850 __func__);
851 alloc_status = 6;
852 goto alloc_status_switch;
855 mutex_init(&context->ctx_lock);
856 context->vfd_proto_6p = vfd_proto_6p;
858 strcpy(driver->name, MOD_NAME);
859 driver->minor = -1;
860 driver->code_length = sizeof(int) * 8;
861 driver->sample_rate = 0;
862 driver->features = LIRC_CAN_REC_MODE2;
863 driver->data = context;
864 driver->rbuf = rbuf;
865 driver->set_use_inc = ir_open;
866 driver->set_use_dec = ir_close;
867 driver->dev = &interface->dev;
868 driver->owner = THIS_MODULE;
870 mutex_lock(&context->ctx_lock);
872 context->driver = driver;
873 /* start out in keyboard mode */
875 lirc_minor = lirc_register_driver(driver);
876 if (lirc_minor < 0) {
877 err("%s: lirc_register_driver failed", __func__);
878 alloc_status = 7;
879 goto alloc_status_switch;
880 } else
881 dev_info(dev, "Registered iMON driver "
882 "(lirc minor: %d)\n", lirc_minor);
884 /* Needed while unregistering! */
885 driver->minor = lirc_minor;
887 context->usbdev = usbdev;
888 context->dev_present = 1;
889 context->rx_endpoint = rx_endpoint;
890 context->rx_urb = rx_urb;
893 * tx is used to send characters to lcd/vfd, associate RF
894 * remotes, set IR protocol, and maybe more...
896 context->tx_endpoint = tx_endpoint;
897 context->tx_urb = tx_urb;
899 if (display_ep_found)
900 context->display = 1;
902 usb_fill_int_urb(context->rx_urb, context->usbdev,
903 usb_rcvintpipe(context->usbdev,
904 context->rx_endpoint->bEndpointAddress),
905 context->usb_rx_buf, sizeof(context->usb_rx_buf),
906 usb_rx_callback, context,
907 context->rx_endpoint->bInterval);
909 retval = usb_submit_urb(context->rx_urb, GFP_KERNEL);
911 if (retval) {
912 err("%s: usb_submit_urb failed for intf0 (%d)",
913 __func__, retval);
914 mutex_unlock(&context->ctx_lock);
915 goto exit;
918 usb_set_intfdata(interface, context);
920 if (context->display && ifnum == 0) {
921 dev_dbg(dev, "%s: Registering iMON display with sysfs\n",
922 __func__);
924 if (usb_register_dev(interface, &imon_class)) {
925 /* Not a fatal error, so ignore */
926 dev_info(dev, "%s: could not get a minor number for "
927 "display\n", __func__);
931 dev_info(dev, "iMON device (%04x:%04x, intf%d) on "
932 "usb<%d:%d> initialized\n", vendor, product, ifnum,
933 usbdev->bus->busnum, usbdev->devnum);
935 alloc_status_switch:
936 mutex_unlock(&context->ctx_lock);
938 switch (alloc_status) {
939 case 7:
940 usb_free_urb(tx_urb);
941 case 6:
942 usb_free_urb(rx_urb);
943 case 5:
944 if (rbuf)
945 lirc_buffer_free(rbuf);
946 case 4:
947 kfree(rbuf);
948 case 3:
949 kfree(driver);
950 case 2:
951 kfree(context);
952 context = NULL;
953 case 1:
954 if (retval != -ENODEV)
955 retval = -ENOMEM;
956 break;
957 case 0:
958 retval = 0;
961 exit:
962 mutex_unlock(&driver_lock);
964 return retval;
968 * Callback function for USB core API: disconnect
970 static void imon_disconnect(struct usb_interface *interface)
972 struct imon_context *context;
973 int ifnum;
975 /* prevent races with ir_open()/display_open() */
976 mutex_lock(&driver_lock);
978 context = usb_get_intfdata(interface);
979 ifnum = interface->cur_altsetting->desc.bInterfaceNumber;
981 mutex_lock(&context->ctx_lock);
983 usb_set_intfdata(interface, NULL);
985 /* Abort ongoing write */
986 if (atomic_read(&context->tx.busy)) {
987 usb_kill_urb(context->tx_urb);
988 complete_all(&context->tx.finished);
991 context->dev_present = 0;
992 usb_kill_urb(context->rx_urb);
993 if (context->display)
994 usb_deregister_dev(interface, &imon_class);
996 if (!context->ir_isopen && !context->dev_present) {
997 deregister_from_lirc(context);
998 mutex_unlock(&context->ctx_lock);
999 if (!context->display_isopen)
1000 free_imon_context(context);
1001 } else
1002 mutex_unlock(&context->ctx_lock);
1004 mutex_unlock(&driver_lock);
1006 printk(KERN_INFO "%s: iMON device (intf%d) disconnected\n",
1007 __func__, ifnum);
1010 static int imon_suspend(struct usb_interface *intf, pm_message_t message)
1012 struct imon_context *context = usb_get_intfdata(intf);
1014 usb_kill_urb(context->rx_urb);
1016 return 0;
1019 static int imon_resume(struct usb_interface *intf)
1021 int rc = 0;
1022 struct imon_context *context = usb_get_intfdata(intf);
1024 usb_fill_int_urb(context->rx_urb, context->usbdev,
1025 usb_rcvintpipe(context->usbdev,
1026 context->rx_endpoint->bEndpointAddress),
1027 context->usb_rx_buf, sizeof(context->usb_rx_buf),
1028 usb_rx_callback, context,
1029 context->rx_endpoint->bInterval);
1031 rc = usb_submit_urb(context->rx_urb, GFP_ATOMIC);
1033 return rc;
1036 static int __init imon_init(void)
1038 int rc;
1040 printk(KERN_INFO MOD_NAME ": " MOD_DESC ", v" MOD_VERSION "\n");
1042 rc = usb_register(&imon_driver);
1043 if (rc) {
1044 err("%s: usb register failed(%d)", __func__, rc);
1045 return -ENODEV;
1048 return 0;
1051 static void __exit imon_exit(void)
1053 usb_deregister(&imon_driver);
1054 printk(KERN_INFO MOD_NAME ": module removed. Goodbye!\n");
1057 module_init(imon_init);
1058 module_exit(imon_exit);