blob: 84965cd65c76ca3bddb935af3ac9b77a5a438e21 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB IR Dongle driver
3 *
4 * Copyright (C) 2001-2002 Greg Kroah-Hartman (greg@kroah.com)
5 * Copyright (C) 2002 Gary Brubaker (xavyer@ix.netcom.com)
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +02006 * Copyright (C) 2010 Johan Hovold (jhovold@gmail.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program 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.
12 *
13 * This driver allows a USB IrDA device to be used as a "dumb" serial device.
14 * This can be useful if you do not have access to a full IrDA stack on the
15 * other side of the connection. If you do have an IrDA stack on both devices,
16 * please use the usb-irda driver, as it contains the proper error checking and
17 * other goodness of a full IrDA stack.
18 *
19 * Portions of this driver were taken from drivers/net/irda/irda-usb.c, which
20 * was written by Roman Weissgaerber <weissg@vienna.at>, Dag Brattli
21 * <dag@brattli.net>, and Jean Tourrilhes <jt@hpl.hp.com>
22 *
Felipe Balbie0d795e2008-06-03 14:47:52 +030023 * See Documentation/usb/usb-serial.txt for more information on using this
24 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/errno.h>
29#include <linux/init.h>
30#include <linux/slab.h>
31#include <linux/tty.h>
32#include <linux/tty_driver.h>
33#include <linux/tty_flip.h>
34#include <linux/module.h>
35#include <linux/spinlock.h>
Felipe Balbie0d795e2008-06-03 14:47:52 +030036#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070038#include <linux/usb/serial.h>
Felipe Balbie0d795e2008-06-03 14:47:52 +030039#include <linux/usb/irda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * Version Information
43 */
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +020044#define DRIVER_VERSION "v0.5"
45#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Johan Hovold <jhovold@gmail.com>"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define DRIVER_DESC "USB IR Dongle driver"
47
Rusty Russell90ab5ee2012-01-13 09:32:20 +103048static bool debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/* if overridden by the user, then use their value for the size of the read and
51 * write urbs */
52static int buffer_size;
Felipe Balbie0d795e2008-06-03 14:47:52 +030053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/* if overridden by the user, then use the specified number of XBOFs */
55static int xbof = -1;
56
Alan Cox95da3102008-07-22 11:09:07 +010057static int ir_startup (struct usb_serial *serial);
Alan Coxa509a7e2009-09-19 13:13:26 -070058static int ir_open(struct tty_struct *tty, struct usb_serial_port *port);
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +020059static int ir_prepare_write_buffer(struct usb_serial_port *port,
60 void *dest, size_t size);
61static void ir_process_read_urb(struct urb *urb);
Alan Cox95da3102008-07-22 11:09:07 +010062static void ir_set_termios(struct tty_struct *tty,
63 struct usb_serial_port *port, struct ktermios *old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Alan Coxa6ea4382007-06-22 14:44:54 +010065/* Not that this lot means you can only have one per system */
Felipe Balbie0d795e2008-06-03 14:47:52 +030066static u8 ir_baud;
67static u8 ir_xbof;
68static u8 ir_add_bof;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Németh Márton7d40d7e2010-01-10 15:34:24 +010070static const struct usb_device_id ir_id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 { USB_DEVICE(0x050f, 0x0180) }, /* KC Technology, KC-180 */
72 { USB_DEVICE(0x08e9, 0x0100) }, /* XTNDAccess */
73 { USB_DEVICE(0x09c4, 0x0011) }, /* ACTiSys ACT-IR2000U */
Felipe Balbie0d795e2008-06-03 14:47:52 +030074 { USB_INTERFACE_INFO(USB_CLASS_APP_SPEC, USB_SUBCLASS_IRDA, 0) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 { } /* Terminating entry */
76};
77
Felipe Balbie0d795e2008-06-03 14:47:52 +030078MODULE_DEVICE_TABLE(usb, ir_id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80static struct usb_driver ir_driver = {
Felipe Balbie0d795e2008-06-03 14:47:52 +030081 .name = "ir-usb",
82 .probe = usb_serial_probe,
83 .disconnect = usb_serial_disconnect,
84 .id_table = ir_id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070087static struct usb_serial_driver ir_device = {
Felipe Balbie0d795e2008-06-03 14:47:52 +030088 .driver = {
89 .owner = THIS_MODULE,
90 .name = "ir-usb",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070091 },
Felipe Balbie0d795e2008-06-03 14:47:52 +030092 .description = "IR Dongle",
Felipe Balbie0d795e2008-06-03 14:47:52 +030093 .id_table = ir_id_table,
94 .num_ports = 1,
95 .set_termios = ir_set_termios,
96 .attach = ir_startup,
97 .open = ir_open,
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +020098 .prepare_write_buffer = ir_prepare_write_buffer,
99 .process_read_urb = ir_process_read_urb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
Alan Stern7dbe2462012-02-23 14:56:57 -0500102static struct usb_serial_driver * const serial_drivers[] = {
103 &ir_device, NULL
104};
105
Felipe Balbie0d795e2008-06-03 14:47:52 +0300106static inline void irda_usb_dump_class_desc(struct usb_irda_cs_descriptor *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 dbg("bLength=%x", desc->bLength);
109 dbg("bDescriptorType=%x", desc->bDescriptorType);
Felipe Balbie0d795e2008-06-03 14:47:52 +0300110 dbg("bcdSpecRevision=%x", __le16_to_cpu(desc->bcdSpecRevision));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 dbg("bmDataSize=%x", desc->bmDataSize);
112 dbg("bmWindowSize=%x", desc->bmWindowSize);
113 dbg("bmMinTurnaroundTime=%d", desc->bmMinTurnaroundTime);
Felipe Balbie0d795e2008-06-03 14:47:52 +0300114 dbg("wBaudRate=%x", __le16_to_cpu(desc->wBaudRate));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 dbg("bmAdditionalBOFs=%x", desc->bmAdditionalBOFs);
116 dbg("bIrdaRateSniff=%x", desc->bIrdaRateSniff);
117 dbg("bMaxUnicastList=%x", desc->bMaxUnicastList);
118}
119
120/*------------------------------------------------------------------*/
121/*
122 * Function irda_usb_find_class_desc(dev, ifnum)
123 *
124 * Returns instance of IrDA class descriptor, or NULL if not found
125 *
126 * The class descriptor is some extra info that IrDA USB devices will
127 * offer to us, describing their IrDA characteristics. We will use that in
128 * irda_usb_init_qos()
129 *
130 * Based on the same function in drivers/net/irda/irda-usb.c
131 */
Felipe Balbie0d795e2008-06-03 14:47:52 +0300132static struct usb_irda_cs_descriptor *
133irda_usb_find_class_desc(struct usb_device *dev, unsigned int ifnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Felipe Balbie0d795e2008-06-03 14:47:52 +0300135 struct usb_irda_cs_descriptor *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 int ret;
Felipe Balbie0d795e2008-06-03 14:47:52 +0300137
138 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
139 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return NULL;
Felipe Balbie0d795e2008-06-03 14:47:52 +0300141
142 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
143 USB_REQ_CS_IRDA_GET_CLASS_DESC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
145 0, ifnum, desc, sizeof(*desc), 1000);
Felipe Balbie0d795e2008-06-03 14:47:52 +0300146
Harvey Harrison441b62c2008-03-03 16:08:34 -0800147 dbg("%s - ret=%d", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (ret < sizeof(*desc)) {
149 dbg("%s - class descriptor read %s (%d)",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800150 __func__,
Felipe Balbie0d795e2008-06-03 14:47:52 +0300151 (ret < 0) ? "failed" : "too short",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 ret);
153 goto error;
154 }
Felipe Balbie0d795e2008-06-03 14:47:52 +0300155 if (desc->bDescriptorType != USB_DT_CS_IRDA) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800156 dbg("%s - bad class descriptor type", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 goto error;
158 }
Felipe Balbie0d795e2008-06-03 14:47:52 +0300159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 irda_usb_dump_class_desc(desc);
161 return desc;
Felipe Balbie0d795e2008-06-03 14:47:52 +0300162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163error:
164 kfree(desc);
165 return NULL;
166}
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static u8 ir_xbof_change(u8 xbof)
169{
170 u8 result;
Felipe Balbie0d795e2008-06-03 14:47:52 +0300171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* reference irda-usb.c */
Felipe Balbie0d795e2008-06-03 14:47:52 +0300173 switch (xbof) {
174 case 48:
175 result = 0x10;
176 break;
177 case 28:
178 case 24:
179 result = 0x20;
180 break;
181 default:
182 case 12:
183 result = 0x30;
184 break;
185 case 5:
186 case 6:
187 result = 0x40;
188 break;
189 case 3:
190 result = 0x50;
191 break;
192 case 2:
193 result = 0x60;
194 break;
195 case 1:
196 result = 0x70;
197 break;
198 case 0:
199 result = 0x80;
200 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
Felipe Balbie0d795e2008-06-03 14:47:52 +0300202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return(result);
204}
205
Felipe Balbie0d795e2008-06-03 14:47:52 +0300206static int ir_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Felipe Balbie0d795e2008-06-03 14:47:52 +0300208 struct usb_irda_cs_descriptor *irda_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Felipe Balbie0d795e2008-06-03 14:47:52 +0300210 irda_desc = irda_usb_find_class_desc(serial->dev, 0);
211 if (!irda_desc) {
212 dev_err(&serial->dev->dev,
213 "IRDA class descriptor not found, device not bound\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return -ENODEV;
215 }
216
Felipe Balbie0d795e2008-06-03 14:47:52 +0300217 dbg("%s - Baud rates supported:%s%s%s%s%s%s%s%s%s",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800218 __func__,
Felipe Balbie0d795e2008-06-03 14:47:52 +0300219 (irda_desc->wBaudRate & USB_IRDA_BR_2400) ? " 2400" : "",
220 (irda_desc->wBaudRate & USB_IRDA_BR_9600) ? " 9600" : "",
221 (irda_desc->wBaudRate & USB_IRDA_BR_19200) ? " 19200" : "",
222 (irda_desc->wBaudRate & USB_IRDA_BR_38400) ? " 38400" : "",
223 (irda_desc->wBaudRate & USB_IRDA_BR_57600) ? " 57600" : "",
224 (irda_desc->wBaudRate & USB_IRDA_BR_115200) ? " 115200" : "",
225 (irda_desc->wBaudRate & USB_IRDA_BR_576000) ? " 576000" : "",
226 (irda_desc->wBaudRate & USB_IRDA_BR_1152000) ? " 1152000" : "",
227 (irda_desc->wBaudRate & USB_IRDA_BR_4000000) ? " 4000000" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Felipe Balbie0d795e2008-06-03 14:47:52 +0300229 switch (irda_desc->bmAdditionalBOFs) {
230 case USB_IRDA_AB_48:
231 ir_add_bof = 48;
232 break;
233 case USB_IRDA_AB_24:
234 ir_add_bof = 24;
235 break;
236 case USB_IRDA_AB_12:
237 ir_add_bof = 12;
238 break;
239 case USB_IRDA_AB_6:
240 ir_add_bof = 6;
241 break;
242 case USB_IRDA_AB_3:
243 ir_add_bof = 3;
244 break;
245 case USB_IRDA_AB_2:
246 ir_add_bof = 2;
247 break;
248 case USB_IRDA_AB_1:
249 ir_add_bof = 1;
250 break;
251 case USB_IRDA_AB_0:
252 ir_add_bof = 0;
253 break;
254 default:
255 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257
Felipe Balbie0d795e2008-06-03 14:47:52 +0300258 kfree(irda_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Felipe Balbie0d795e2008-06-03 14:47:52 +0300260 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Alan Coxa509a7e2009-09-19 13:13:26 -0700263static int ir_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200265 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Harvey Harrison441b62c2008-03-03 16:08:34 -0800267 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200269 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i)
270 port->write_urbs[i]->transfer_flags = URB_ZERO_PACKET;
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* Start reading from the device */
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200273 return usb_serial_generic_open(tty, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200276static int ir_prepare_write_buffer(struct usb_serial_port *port,
277 void *dest, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200279 unsigned char *buf = dest;
Johan Hovolde421fe92010-05-19 00:01:34 +0200280 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /*
283 * The first byte of the packet we send to the device contains an
Felipe Balbie0d795e2008-06-03 14:47:52 +0300284 * inbound header which indicates an additional number of BOFs and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * a baud rate change.
286 *
287 * See section 5.4.2.2 of the USB IrDA spec.
288 */
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200289 *buf = ir_xbof | ir_baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Johan Hovolde421fe92010-05-19 00:01:34 +0200291 count = kfifo_out_locked(&port->write_fifo, buf + 1, size - 1,
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200292 &port->lock);
Johan Hovolde421fe92010-05-19 00:01:34 +0200293 return count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200296static void ir_process_read_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Ming Leicdc97792008-02-24 18:41:47 +0800298 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 unsigned char *data = urb->transfer_buffer;
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200300 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200302 if (!urb->actual_length)
303 return;
304 /*
305 * The first byte of the packet we get from the device
306 * contains a busy indicator and baud rate change.
307 * See section 5.4.1.2 of the USB IrDA spec.
308 */
309 if (*data & 0x0f)
310 ir_baud = *data & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200312 if (urb->actual_length == 1)
313 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Johan Hovoldf4a4cbb2010-05-13 21:02:03 +0200315 tty = tty_port_tty_get(&port->port);
316 if (!tty)
317 return;
318 tty_insert_flip_string(tty, data + 1, urb->actual_length - 1);
319 tty_flip_buffer_push(tty);
320 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Johan Hovolddf66e8a2010-05-13 21:02:02 +0200323static void ir_set_termios_callback(struct urb *urb)
324{
325 struct usb_serial_port *port = urb->context;
326 int status = urb->status;
327
328 dbg("%s - port %d", __func__, port->number);
329
330 kfree(urb->transfer_buffer);
331
332 if (status)
333 dbg("%s - non-zero urb status: %d", __func__, status);
334}
335
Alan Cox95da3102008-07-22 11:09:07 +0100336static void ir_set_termios(struct tty_struct *tty,
337 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Johan Hovolddf66e8a2010-05-13 21:02:02 +0200339 struct urb *urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 unsigned char *transfer_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int result;
Alan Coxa6ea4382007-06-22 14:44:54 +0100342 speed_t baud;
343 int ir_baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Harvey Harrison441b62c2008-03-03 16:08:34 -0800345 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Alan Cox95da3102008-07-22 11:09:07 +0100347 baud = tty_get_baud_rate(tty);
Alan Coxa6ea4382007-06-22 14:44:54 +0100348
349 /*
350 * FIXME, we should compare the baud request against the
351 * capability stated in the IR header that we got in the
352 * startup function.
353 */
354
355 switch (baud) {
Felipe Balbie0d795e2008-06-03 14:47:52 +0300356 case 2400:
357 ir_baud = USB_IRDA_BR_2400;
358 break;
359 case 9600:
360 ir_baud = USB_IRDA_BR_9600;
361 break;
362 case 19200:
363 ir_baud = USB_IRDA_BR_19200;
364 break;
365 case 38400:
366 ir_baud = USB_IRDA_BR_38400;
367 break;
368 case 57600:
369 ir_baud = USB_IRDA_BR_57600;
370 break;
371 case 115200:
372 ir_baud = USB_IRDA_BR_115200;
373 break;
374 case 576000:
375 ir_baud = USB_IRDA_BR_576000;
376 break;
377 case 1152000:
378 ir_baud = USB_IRDA_BR_1152000;
379 break;
380 case 4000000:
381 ir_baud = USB_IRDA_BR_4000000;
382 break;
383 default:
384 ir_baud = USB_IRDA_BR_9600;
385 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
Alan Coxa6ea4382007-06-22 14:44:54 +0100388 if (xbof == -1)
389 ir_xbof = ir_xbof_change(ir_add_bof);
390 else
391 ir_xbof = ir_xbof_change(xbof) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Alan Cox560aac22007-10-18 01:24:20 -0700393 /* Only speed changes are supported */
Alan Cox95da3102008-07-22 11:09:07 +0100394 tty_termios_copy_hw(tty->termios, old_termios);
395 tty_encode_baud_rate(tty, baud, baud);
Johan Hovolddf66e8a2010-05-13 21:02:02 +0200396
397 /*
398 * send the baud change out on an "empty" data packet
399 */
400 urb = usb_alloc_urb(0, GFP_KERNEL);
401 if (!urb) {
402 dev_err(&port->dev, "%s - no more urbs\n", __func__);
403 return;
404 }
405 transfer_buffer = kmalloc(1, GFP_KERNEL);
406 if (!transfer_buffer) {
407 dev_err(&port->dev, "%s - out of memory\n", __func__);
408 goto err_buf;
409 }
410
411 *transfer_buffer = ir_xbof | ir_baud;
412
413 usb_fill_bulk_urb(
414 urb,
415 port->serial->dev,
416 usb_sndbulkpipe(port->serial->dev,
417 port->bulk_out_endpointAddress),
418 transfer_buffer,
419 1,
420 ir_set_termios_callback,
421 port);
422
423 urb->transfer_flags = URB_ZERO_PACKET;
424
425 result = usb_submit_urb(urb, GFP_KERNEL);
426 if (result) {
427 dev_err(&port->dev, "%s - failed to submit urb: %d\n",
428 __func__, result);
429 goto err_subm;
430 }
431
432 usb_free_urb(urb);
433
434 return;
435err_subm:
436 kfree(transfer_buffer);
437err_buf:
438 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Felipe Balbie0d795e2008-06-03 14:47:52 +0300441static int __init ir_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 int retval;
Felipe Balbie0d795e2008-06-03 14:47:52 +0300444
Johan Hovold6f6ed692010-05-13 21:02:01 +0200445 if (buffer_size) {
446 ir_device.bulk_in_size = buffer_size;
447 ir_device.bulk_out_size = buffer_size;
448 }
449
Alan Stern7dbe2462012-02-23 14:56:57 -0500450 retval = usb_serial_register_drivers(&ir_driver, serial_drivers);
451 if (retval == 0)
452 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
453 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return retval;
455}
456
Felipe Balbie0d795e2008-06-03 14:47:52 +0300457static void __exit ir_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Alan Stern7dbe2462012-02-23 14:56:57 -0500459 usb_serial_deregister_drivers(&ir_driver, serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462
463module_init(ir_init);
464module_exit(ir_exit);
465
466MODULE_AUTHOR(DRIVER_AUTHOR);
467MODULE_DESCRIPTION(DRIVER_DESC);
468MODULE_LICENSE("GPL");
469
470module_param(debug, bool, S_IRUGO | S_IWUSR);
471MODULE_PARM_DESC(debug, "Debug enabled or not");
472module_param(xbof, int, 0);
473MODULE_PARM_DESC(xbof, "Force specific number of XBOFs");
474module_param(buffer_size, int, 0);
475MODULE_PARM_DESC(buffer_size, "Size of the transfer buffers");
476