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
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
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
;
97 unsigned char usb_rx_buf
[8];
98 unsigned char usb_tx_buf
[8];
101 int count
; /* length of 0 or 1 sequence */
102 int prev_bit
; /* logic level of sequence */
103 int initial_space
; /* initial space flag */
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 */
114 static const struct file_operations display_fops
= {
115 .owner
= THIS_MODULE
,
116 .open
= &display_open
,
118 .release
= &display_close
,
119 .llseek
= noop_llseek
,
123 * USB Device ID for iMON USB Control Boards
125 * The Windows drivers contain 6 different inf files, more or less one for
126 * each new device until the 0x0034-0x0046 devices, which all use the same
127 * driver. Some of the devices in the 34-46 range haven't been definitively
128 * identified yet. Early devices have either a TriGem Computer, Inc. or a
129 * Samsung vendor ID (0x0aa8 and 0x04e8 respectively), while all later
130 * devices use the SoundGraph vendor ID (0x15c2).
132 static struct usb_device_id imon_usb_id_table
[] = {
133 /* TriGem iMON (IR only) -- TG_iMON.inf */
134 { USB_DEVICE(0x0aa8, 0x8001) },
136 /* SoundGraph iMON (IR only) -- sg_imon.inf */
137 { USB_DEVICE(0x04e8, 0xff30) },
139 /* SoundGraph iMON VFD (IR & VFD) -- iMON_VFD.inf */
140 { USB_DEVICE(0x0aa8, 0xffda) },
142 /* SoundGraph iMON SS (IR & VFD) -- iMON_SS.inf */
143 { USB_DEVICE(0x15c2, 0xffda) },
148 /* Some iMON VFD models requires a 6th packet for VFD writes */
149 static struct usb_device_id vfd_proto_6p_list
[] = {
150 { USB_DEVICE(0x15c2, 0xffda) },
154 /* Some iMON devices have no lcd/vfd, don't set one up */
155 static struct usb_device_id ir_only_list
[] = {
156 { USB_DEVICE(0x0aa8, 0x8001) },
157 { USB_DEVICE(0x04e8, 0xff30) },
161 /* USB Device data */
162 static struct usb_driver imon_driver
= {
165 .disconnect
= imon_disconnect
,
166 .suspend
= imon_suspend
,
167 .resume
= imon_resume
,
168 .id_table
= imon_usb_id_table
,
171 static struct usb_class_driver imon_class
= {
173 .fops
= &display_fops
,
174 .minor_base
= DISPLAY_MINOR_BASE
,
177 /* to prevent races between open() and disconnect(), probing, etc */
178 static DEFINE_MUTEX(driver_lock
);
182 /*** M O D U L E C O D E ***/
184 MODULE_AUTHOR(MOD_AUTHOR
);
185 MODULE_DESCRIPTION(MOD_DESC
);
186 MODULE_VERSION(MOD_VERSION
);
187 MODULE_LICENSE("GPL");
188 MODULE_DEVICE_TABLE(usb
, imon_usb_id_table
);
189 module_param(debug
, int, S_IRUGO
| S_IWUSR
);
190 MODULE_PARM_DESC(debug
, "Debug messages: 0=no, 1=yes(default: no)");
192 static void free_imon_context(struct imon_context
*context
)
194 struct device
*dev
= context
->driver
->dev
;
195 usb_free_urb(context
->tx_urb
);
196 usb_free_urb(context
->rx_urb
);
197 lirc_buffer_free(context
->driver
->rbuf
);
198 kfree(context
->driver
->rbuf
);
199 kfree(context
->driver
);
202 dev_dbg(dev
, "%s: iMON context freed\n", __func__
);
205 static void deregister_from_lirc(struct imon_context
*context
)
208 int minor
= context
->driver
->minor
;
210 retval
= lirc_unregister_driver(minor
);
212 err("%s: unable to deregister from lirc(%d)",
215 printk(KERN_INFO MOD_NAME
": Deregistered iMON driver "
216 "(minor:%d)\n", minor
);
221 * Called when the Display device (e.g. /dev/lcd0)
222 * is opened by the application.
224 static int display_open(struct inode
*inode
, struct file
*file
)
226 struct usb_interface
*interface
;
227 struct imon_context
*context
= NULL
;
231 /* prevent races with disconnect */
232 mutex_lock(&driver_lock
);
234 subminor
= iminor(inode
);
235 interface
= usb_find_interface(&imon_driver
, subminor
);
237 err("%s: could not find interface for minor %d",
242 context
= usb_get_intfdata(interface
);
245 err("%s: no context found for minor %d",
251 mutex_lock(&context
->ctx_lock
);
253 if (!context
->display
) {
254 err("%s: display not supported by device", __func__
);
256 } else if (context
->display_isopen
) {
257 err("%s: display port is already open", __func__
);
260 context
->display_isopen
= 1;
261 file
->private_data
= context
;
262 dev_info(context
->driver
->dev
, "display port opened\n");
265 mutex_unlock(&context
->ctx_lock
);
268 mutex_unlock(&driver_lock
);
273 * Called when the display device (e.g. /dev/lcd0)
274 * is closed by the application.
276 static int display_close(struct inode
*inode
, struct file
*file
)
278 struct imon_context
*context
= NULL
;
281 context
= file
->private_data
;
284 err("%s: no context for device", __func__
);
288 mutex_lock(&context
->ctx_lock
);
290 if (!context
->display
) {
291 err("%s: display not supported by device", __func__
);
293 } else if (!context
->display_isopen
) {
294 err("%s: display is not open", __func__
);
297 context
->display_isopen
= 0;
298 dev_info(context
->driver
->dev
, "display port closed\n");
299 if (!context
->dev_present
&& !context
->ir_isopen
) {
301 * Device disconnected before close and IR port is not
302 * open. If IR port is open, context will be deleted by
305 mutex_unlock(&context
->ctx_lock
);
306 free_imon_context(context
);
311 mutex_unlock(&context
->ctx_lock
);
316 * Sends a packet to the device -- this function must be called
317 * with context->ctx_lock held.
319 static int send_packet(struct imon_context
*context
)
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
,
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
);
342 atomic_set(&(context
->tx
.busy
), 0);
343 err("%s: error submitting urb(%d)", __func__
, retval
);
345 /* Wait for transmission to complete (or abort) */
346 mutex_unlock(&context
->ctx_lock
);
347 retval
= wait_for_completion_interruptible(
348 &context
->tx
.finished
);
350 err("%s: task interrupted", __func__
);
351 mutex_lock(&context
->ctx_lock
);
353 retval
= context
->tx
.status
;
355 err("%s: packet tx failed (%d)", __func__
, retval
);
362 * Writes data to the VFD. The iMON VFD is 2x16 characters
363 * and requires data in 5 consecutive USB interrupt packets,
364 * each packet but the last carrying 7 bytes.
366 * I don't know if the VFD board supports features such as
367 * scrolling, clearing rows, blanking, etc. so at
368 * the caller must provide a full screen of data. If fewer
369 * than 32 bytes are provided spaces will be appended to
370 * generate a full screen.
372 static ssize_t
vfd_write(struct file
*file
, const char *buf
,
373 size_t n_bytes
, loff_t
*pos
)
379 struct imon_context
*context
;
380 const unsigned char vfd_packet6
[] = {
381 0x01, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF };
382 int *data_buf
= NULL
;
384 context
= file
->private_data
;
386 err("%s: no context for device", __func__
);
390 mutex_lock(&context
->ctx_lock
);
392 if (!context
->dev_present
) {
393 err("%s: no iMON device present", __func__
);
398 if (n_bytes
<= 0 || n_bytes
> IMON_DATA_BUF_SZ
- 3) {
399 err("%s: invalid payload size", __func__
);
404 data_buf
= memdup_user(buf
, n_bytes
);
405 if (IS_ERR(data_buf
)) {
406 retval
= PTR_ERR(data_buf
);
410 memcpy(context
->tx
.data_buf
, data_buf
, n_bytes
);
412 /* Pad with spaces */
413 for (i
= n_bytes
; i
< IMON_DATA_BUF_SZ
- 3; ++i
)
414 context
->tx
.data_buf
[i
] = ' ';
416 for (i
= IMON_DATA_BUF_SZ
- 3; i
< IMON_DATA_BUF_SZ
; ++i
)
417 context
->tx
.data_buf
[i
] = 0xFF;
423 memcpy(context
->usb_tx_buf
, context
->tx
.data_buf
+ offset
, 7);
424 context
->usb_tx_buf
[7] = (unsigned char) seq
;
426 retval
= send_packet(context
);
428 err("%s: send packet failed for packet #%d",
436 } while (offset
< IMON_DATA_BUF_SZ
);
438 if (context
->vfd_proto_6p
) {
440 memcpy(context
->usb_tx_buf
, &vfd_packet6
, sizeof(vfd_packet6
));
441 context
->usb_tx_buf
[7] = (unsigned char) seq
;
442 retval
= send_packet(context
);
444 err("%s: send packet failed for packet #%d",
449 mutex_unlock(&context
->ctx_lock
);
452 return (!retval
) ? n_bytes
: retval
;
456 * Callback function for USB core API: transmit data
458 static void usb_tx_callback(struct urb
*urb
)
460 struct imon_context
*context
;
464 context
= (struct imon_context
*)urb
->context
;
468 context
->tx
.status
= urb
->status
;
470 /* notify waiters that write has finished */
471 atomic_set(&context
->tx
.busy
, 0);
472 complete(&context
->tx
.finished
);
478 * Called by lirc_dev when the application opens /dev/lirc
480 static int ir_open(void *data
)
483 struct imon_context
*context
;
485 /* prevent races with disconnect */
486 mutex_lock(&driver_lock
);
488 context
= (struct imon_context
*)data
;
490 /* initial IR protocol decode variables */
491 context
->rx
.count
= 0;
492 context
->rx
.initial_space
= 1;
493 context
->rx
.prev_bit
= 0;
495 context
->ir_isopen
= 1;
496 dev_info(context
->driver
->dev
, "IR port opened\n");
498 mutex_unlock(&driver_lock
);
503 * Called by lirc_dev when the application closes /dev/lirc
505 static void ir_close(void *data
)
507 struct imon_context
*context
;
509 context
= (struct imon_context
*)data
;
511 err("%s: no context for device", __func__
);
515 mutex_lock(&context
->ctx_lock
);
517 context
->ir_isopen
= 0;
518 dev_info(context
->driver
->dev
, "IR port closed\n");
520 if (!context
->dev_present
) {
522 * Device disconnected while IR port was still open. Driver
523 * was not deregistered at disconnect time, so do it now.
525 deregister_from_lirc(context
);
527 if (!context
->display_isopen
) {
528 mutex_unlock(&context
->ctx_lock
);
529 free_imon_context(context
);
533 * If display port is open, context will be deleted by
538 mutex_unlock(&context
->ctx_lock
);
543 * Convert bit count to time duration (in us) and submit
544 * the value to lirc_dev.
546 static void submit_data(struct imon_context
*context
)
548 unsigned char buf
[4];
549 int value
= context
->rx
.count
;
552 dev_dbg(context
->driver
->dev
, "submitting data to LIRC\n");
554 value
*= BIT_DURATION
;
556 if (context
->rx
.prev_bit
)
559 for (i
= 0; i
< 4; ++i
)
560 buf
[i
] = value
>>(i
*8);
562 lirc_buffer_write(context
->driver
->rbuf
, buf
);
563 wake_up(&context
->driver
->rbuf
->wait_poll
);
567 static inline int tv2int(const struct timeval
*a
, const struct timeval
*b
)
572 if (b
->tv_usec
> a
->tv_usec
) {
577 usecs
+= a
->tv_usec
- b
->tv_usec
;
579 sec
+= a
->tv_sec
- b
->tv_sec
;
591 * Process the incoming packet
593 static void imon_incoming_packet(struct imon_context
*context
,
594 struct urb
*urb
, int intf
)
596 int len
= urb
->actual_length
;
597 unsigned char *buf
= urb
->transfer_buffer
;
598 struct device
*dev
= context
->driver
->dev
;
604 * just bail out if no listening IR client
606 if (!context
->ir_isopen
)
610 dev_warn(dev
, "imon %s: invalid incoming packet "
611 "size (len = %d, intf%d)\n", __func__
, len
, intf
);
616 printk(KERN_INFO
"raw packet: ");
617 for (i
= 0; i
< len
; ++i
)
618 printk("%02x ", buf
[i
]);
623 * Translate received data to pulse and space lengths.
624 * Received data is active low, i.e. pulses are 0 and
627 * My original algorithm was essentially similar to
628 * Changwoo Ryu's with the exception that he switched
629 * the incoming bits to active high and also fed an
630 * initial space to LIRC at the start of a new sequence
631 * if the previous bit was a pulse.
633 * I've decided to adopt his algorithm.
636 if (buf
[7] == 1 && context
->rx
.initial_space
) {
637 /* LIRC requires a leading space */
638 context
->rx
.prev_bit
= 0;
639 context
->rx
.count
= 4;
640 submit_data(context
);
641 context
->rx
.count
= 0;
644 for (octet
= 0; octet
< 5; ++octet
) {
646 for (bit
= 0; bit
< 8; ++bit
) {
647 int curr_bit
= !(buf
[octet
] & mask
);
648 if (curr_bit
!= context
->rx
.prev_bit
) {
649 if (context
->rx
.count
) {
650 submit_data(context
);
651 context
->rx
.count
= 0;
653 context
->rx
.prev_bit
= curr_bit
;
661 if (context
->rx
.count
) {
662 submit_data(context
);
663 context
->rx
.count
= 0;
665 context
->rx
.initial_space
= context
->rx
.prev_bit
;
670 * Callback function for USB core API: receive data
672 static void usb_rx_callback(struct urb
*urb
)
674 struct imon_context
*context
;
680 context
= (struct imon_context
*)urb
->context
;
684 switch (urb
->status
) {
685 case -ENOENT
: /* usbcore unlink successful! */
689 imon_incoming_packet(context
, urb
, intfnum
);
693 dev_warn(context
->driver
->dev
, "imon %s: status(%d): ignored\n",
694 __func__
, urb
->status
);
698 usb_submit_urb(context
->rx_urb
, GFP_ATOMIC
);
704 * Callback function for USB core API: Probe
706 static int imon_probe(struct usb_interface
*interface
,
707 const struct usb_device_id
*id
)
709 struct usb_device
*usbdev
= NULL
;
710 struct usb_host_interface
*iface_desc
= NULL
;
711 struct usb_endpoint_descriptor
*rx_endpoint
= NULL
;
712 struct usb_endpoint_descriptor
*tx_endpoint
= NULL
;
713 struct urb
*rx_urb
= NULL
;
714 struct urb
*tx_urb
= NULL
;
715 struct lirc_driver
*driver
= NULL
;
716 struct lirc_buffer
*rbuf
= NULL
;
717 struct device
*dev
= &interface
->dev
;
722 int display_ep_found
= 0;
724 int alloc_status
= 0;
725 int vfd_proto_6p
= 0;
726 struct imon_context
*context
= NULL
;
730 context
= kzalloc(sizeof(struct imon_context
), GFP_KERNEL
);
732 err("%s: kzalloc failed for context", __func__
);
734 goto alloc_status_switch
;
738 * Try to auto-detect the type of display if the user hasn't set
739 * it by hand via the display_type modparam. Default is VFD.
741 if (usb_match_id(interface
, ir_only_list
))
742 context
->display
= 0;
744 context
->display
= 1;
746 usbdev
= usb_get_dev(interface_to_usbdev(interface
));
747 iface_desc
= interface
->cur_altsetting
;
748 num_endpts
= iface_desc
->desc
.bNumEndpoints
;
749 ifnum
= iface_desc
->desc
.bInterfaceNumber
;
750 vendor
= le16_to_cpu(usbdev
->descriptor
.idVendor
);
751 product
= le16_to_cpu(usbdev
->descriptor
.idProduct
);
753 dev_dbg(dev
, "%s: found iMON device (%04x:%04x, intf%d)\n",
754 __func__
, vendor
, product
, ifnum
);
756 /* prevent races probing devices w/multiple interfaces */
757 mutex_lock(&driver_lock
);
760 * Scan the endpoint list and set:
761 * first input endpoint = IR endpoint
762 * first output endpoint = display endpoint
764 for (i
= 0; i
< num_endpts
&& !(ir_ep_found
&& display_ep_found
); ++i
) {
765 struct usb_endpoint_descriptor
*ep
;
768 ep
= &iface_desc
->endpoint
[i
].desc
;
769 ep_dir
= ep
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
;
770 ep_type
= ep
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
;
773 ep_dir
== USB_DIR_IN
&&
774 ep_type
== USB_ENDPOINT_XFER_INT
) {
778 dev_dbg(dev
, "%s: found IR endpoint\n", __func__
);
780 } else if (!display_ep_found
&& ep_dir
== USB_DIR_OUT
&&
781 ep_type
== USB_ENDPOINT_XFER_INT
) {
783 display_ep_found
= 1;
784 dev_dbg(dev
, "%s: found display endpoint\n", __func__
);
789 * Some iMON receivers have no display. Unfortunately, it seems
790 * that SoundGraph recycles device IDs between devices both with
793 if (context
->display
== 0) {
794 display_ep_found
= 0;
795 dev_dbg(dev
, "%s: device has no display\n", __func__
);
798 /* Input endpoint is mandatory */
800 err("%s: no valid input (IR) endpoint found.", __func__
);
803 goto alloc_status_switch
;
806 /* Determine if display requires 6 packets */
807 if (display_ep_found
) {
808 if (usb_match_id(interface
, vfd_proto_6p_list
))
811 dev_dbg(dev
, "%s: vfd_proto_6p: %d\n",
812 __func__
, vfd_proto_6p
);
815 driver
= kzalloc(sizeof(struct lirc_driver
), GFP_KERNEL
);
817 err("%s: kzalloc failed for lirc_driver", __func__
);
819 goto alloc_status_switch
;
821 rbuf
= kmalloc(sizeof(struct lirc_buffer
), GFP_KERNEL
);
823 err("%s: kmalloc failed for lirc_buffer", __func__
);
825 goto alloc_status_switch
;
827 if (lirc_buffer_init(rbuf
, BUF_CHUNK_SIZE
, BUF_SIZE
)) {
828 err("%s: lirc_buffer_init failed", __func__
);
830 goto alloc_status_switch
;
832 rx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
834 err("%s: usb_alloc_urb failed for IR urb", __func__
);
836 goto alloc_status_switch
;
838 tx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
840 err("%s: usb_alloc_urb failed for display urb",
843 goto alloc_status_switch
;
846 mutex_init(&context
->ctx_lock
);
847 context
->vfd_proto_6p
= vfd_proto_6p
;
849 strcpy(driver
->name
, MOD_NAME
);
851 driver
->code_length
= BUF_CHUNK_SIZE
* 8;
852 driver
->sample_rate
= 0;
853 driver
->features
= LIRC_CAN_REC_MODE2
;
854 driver
->data
= context
;
856 driver
->set_use_inc
= ir_open
;
857 driver
->set_use_dec
= ir_close
;
858 driver
->dev
= &interface
->dev
;
859 driver
->owner
= THIS_MODULE
;
861 mutex_lock(&context
->ctx_lock
);
863 context
->driver
= driver
;
864 /* start out in keyboard mode */
866 lirc_minor
= lirc_register_driver(driver
);
867 if (lirc_minor
< 0) {
868 err("%s: lirc_register_driver failed", __func__
);
872 dev_info(dev
, "Registered iMON driver "
873 "(lirc minor: %d)\n", lirc_minor
);
875 /* Needed while unregistering! */
876 driver
->minor
= lirc_minor
;
878 context
->usbdev
= usbdev
;
879 context
->dev_present
= 1;
880 context
->rx_endpoint
= rx_endpoint
;
881 context
->rx_urb
= rx_urb
;
884 * tx is used to send characters to lcd/vfd, associate RF
885 * remotes, set IR protocol, and maybe more...
887 context
->tx_endpoint
= tx_endpoint
;
888 context
->tx_urb
= tx_urb
;
890 if (display_ep_found
)
891 context
->display
= 1;
893 usb_fill_int_urb(context
->rx_urb
, context
->usbdev
,
894 usb_rcvintpipe(context
->usbdev
,
895 context
->rx_endpoint
->bEndpointAddress
),
896 context
->usb_rx_buf
, sizeof(context
->usb_rx_buf
),
897 usb_rx_callback
, context
,
898 context
->rx_endpoint
->bInterval
);
900 retval
= usb_submit_urb(context
->rx_urb
, GFP_KERNEL
);
903 err("%s: usb_submit_urb failed for intf0 (%d)",
905 mutex_unlock(&context
->ctx_lock
);
909 usb_set_intfdata(interface
, context
);
911 if (context
->display
&& ifnum
== 0) {
912 dev_dbg(dev
, "%s: Registering iMON display with sysfs\n",
915 if (usb_register_dev(interface
, &imon_class
)) {
916 /* Not a fatal error, so ignore */
917 dev_info(dev
, "%s: could not get a minor number for "
918 "display\n", __func__
);
922 dev_info(dev
, "iMON device (%04x:%04x, intf%d) on "
923 "usb<%d:%d> initialized\n", vendor
, product
, ifnum
,
924 usbdev
->bus
->busnum
, usbdev
->devnum
);
927 mutex_unlock(&context
->ctx_lock
);
930 switch (alloc_status
) {
932 usb_free_urb(tx_urb
);
934 usb_free_urb(rx_urb
);
937 lirc_buffer_free(rbuf
);
946 if (retval
!= -ENODEV
)
954 mutex_unlock(&driver_lock
);
960 * Callback function for USB core API: disconnect
962 static void imon_disconnect(struct usb_interface
*interface
)
964 struct imon_context
*context
;
967 /* prevent races with ir_open()/display_open() */
968 mutex_lock(&driver_lock
);
970 context
= usb_get_intfdata(interface
);
971 ifnum
= interface
->cur_altsetting
->desc
.bInterfaceNumber
;
973 mutex_lock(&context
->ctx_lock
);
975 usb_set_intfdata(interface
, NULL
);
977 /* Abort ongoing write */
978 if (atomic_read(&context
->tx
.busy
)) {
979 usb_kill_urb(context
->tx_urb
);
980 complete_all(&context
->tx
.finished
);
983 context
->dev_present
= 0;
984 usb_kill_urb(context
->rx_urb
);
985 if (context
->display
)
986 usb_deregister_dev(interface
, &imon_class
);
988 if (!context
->ir_isopen
&& !context
->dev_present
) {
989 deregister_from_lirc(context
);
990 mutex_unlock(&context
->ctx_lock
);
991 if (!context
->display_isopen
)
992 free_imon_context(context
);
994 mutex_unlock(&context
->ctx_lock
);
996 mutex_unlock(&driver_lock
);
998 printk(KERN_INFO
"%s: iMON device (intf%d) disconnected\n",
1002 static int imon_suspend(struct usb_interface
*intf
, pm_message_t message
)
1004 struct imon_context
*context
= usb_get_intfdata(intf
);
1006 usb_kill_urb(context
->rx_urb
);
1011 static int imon_resume(struct usb_interface
*intf
)
1014 struct imon_context
*context
= usb_get_intfdata(intf
);
1016 usb_fill_int_urb(context
->rx_urb
, context
->usbdev
,
1017 usb_rcvintpipe(context
->usbdev
,
1018 context
->rx_endpoint
->bEndpointAddress
),
1019 context
->usb_rx_buf
, sizeof(context
->usb_rx_buf
),
1020 usb_rx_callback
, context
,
1021 context
->rx_endpoint
->bInterval
);
1023 rc
= usb_submit_urb(context
->rx_urb
, GFP_ATOMIC
);
1028 static int __init
imon_init(void)
1032 printk(KERN_INFO MOD_NAME
": " MOD_DESC
", v" MOD_VERSION
"\n");
1034 rc
= usb_register(&imon_driver
);
1036 err("%s: usb register failed(%d)", __func__
, rc
);
1043 static void __exit
imon_exit(void)
1045 usb_deregister(&imon_driver
);
1046 printk(KERN_INFO MOD_NAME
": module removed. Goodbye!\n");
1049 module_init(imon_init
);
1050 module_exit(imon_exit
);