blob: 0b257ddffbdbd903da48db51746bee3da9ebe4d6 [file] [log] [blame]
Aleksey Babahin43d186f2012-03-08 13:18:43 -08001/*
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -08002 Some of this code is credited to Linux USB open source files that are
3 distributed with Linux.
Aleksey Babahin43d186f2012-03-08 13:18:43 -08004
5 Copyright: 2007 Metrologic Instruments. All rights reserved.
6 Copyright: 2011 Azimut Ltd. <http://azimutrzn.ru/>
Aleksey Babahin43d186f2012-03-08 13:18:43 -08007*/
8
9#include <linux/kernel.h>
10#include <linux/init.h>
11#include <linux/tty.h>
12#include <linux/module.h>
13#include <linux/usb.h>
14#include <linux/errno.h>
15#include <linux/slab.h>
16#include <linux/tty_driver.h>
17#include <linux/tty_flip.h>
18#include <linux/moduleparam.h>
19#include <linux/spinlock.h>
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -080020#include <linux/uaccess.h>
Aleksey Babahin43d186f2012-03-08 13:18:43 -080021#include <linux/usb/serial.h>
22
23/* Version Information */
24#define DRIVER_VERSION "v1.2.0.0"
25#define DRIVER_DESC "Metrologic Instruments Inc. - USB-POS driver"
26
Greg Kroah-Hartman159d4d82012-03-08 13:42:41 -080027/* Product information. */
28#define FOCUS_VENDOR_ID 0x0C2E
Aleksey Babahin810ec782012-03-20 00:46:31 +040029#define FOCUS_PRODUCT_ID_BI 0x0720
30#define FOCUS_PRODUCT_ID_UNI 0x0700
Greg Kroah-Hartman159d4d82012-03-08 13:42:41 -080031
32#define METROUSB_SET_REQUEST_TYPE 0x40
33#define METROUSB_SET_MODEM_CTRL_REQUEST 10
34#define METROUSB_SET_BREAK_REQUEST 0x40
35#define METROUSB_MCR_NONE 0x08 /* Deactivate DTR and RTS. */
36#define METROUSB_MCR_RTS 0x0a /* Activate RTS. */
37#define METROUSB_MCR_DTR 0x09 /* Activate DTR. */
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -080038#define WDR_TIMEOUT 5000 /* default urb timeout. */
Greg Kroah-Hartman159d4d82012-03-08 13:42:41 -080039
40/* Private data structure. */
41struct metrousb_private {
42 spinlock_t lock;
43 int throttled;
44 unsigned long control_state;
45};
46
Aleksey Babahin43d186f2012-03-08 13:18:43 -080047/* Device table list. */
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -080048static struct usb_device_id id_table[] = {
Aleksey Babahin810ec782012-03-20 00:46:31 +040049 { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_BI) },
Aleksey Babahin43d186f2012-03-08 13:18:43 -080050 { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_UNI) },
Aleksey Babahin43d186f2012-03-08 13:18:43 -080051 { }, /* Terminating entry. */
52};
53MODULE_DEVICE_TABLE(usb, id_table);
54
Aleksey Babahin70457782012-03-20 00:46:33 +040055/* UNI-Directional mode commands for device configure */
56#define UNI_CMD_OPEN 0x80
57#define UNI_CMD_CLOSE 0xFF
58
59inline int metrousb_is_unidirectional_mode(struct usb_serial_port *port)
60{
61 __u16 product_id = le16_to_cpu(
62 port->serial->dev->descriptor.idProduct);
63
64 return product_id == FOCUS_PRODUCT_ID_UNI;
65}
66
67static int metrousb_send_unidirectional_cmd(u8 cmd, struct usb_serial_port *port)
68{
69 int ret;
70 int actual_len;
71 u8 *buffer_cmd = NULL;
72
73 if (!metrousb_is_unidirectional_mode(port))
74 return 0;
75
76 buffer_cmd = kzalloc(sizeof(cmd), GFP_KERNEL);
77 if (!buffer_cmd)
78 return -ENOMEM;
79
80 *buffer_cmd = cmd;
81
82 ret = usb_interrupt_msg(port->serial->dev,
83 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
84 buffer_cmd, sizeof(cmd),
85 &actual_len, USB_CTRL_SET_TIMEOUT);
86
87 kfree(buffer_cmd);
88
89 if (ret < 0)
90 return ret;
91 else if (actual_len != sizeof(cmd))
92 return -EIO;
93 return 0;
94}
95
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -080096static void metrousb_read_int_callback(struct urb *urb)
Aleksey Babahin43d186f2012-03-08 13:18:43 -080097{
Greg Kroah-Hartman8111e4e2012-03-08 14:00:11 -080098 struct usb_serial_port *port = urb->context;
Aleksey Babahin43d186f2012-03-08 13:18:43 -080099 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
100 struct tty_struct *tty;
101 unsigned char *data = urb->transfer_buffer;
102 int throttled = 0;
103 int result = 0;
104 unsigned long flags = 0;
105
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800106 dev_dbg(&port->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800107
108 switch (urb->status) {
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800109 case 0:
110 /* Success status, read from the port. */
111 break;
112 case -ECONNRESET:
113 case -ENOENT:
114 case -ESHUTDOWN:
115 /* urb has been terminated. */
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800116 dev_dbg(&port->dev,
117 "%s - urb shutting down, error code=%d\n",
Aleksey Babahinbd2c09b2012-03-20 00:46:35 +0400118 __func__, urb->status);
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800119 return;
120 default:
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800121 dev_dbg(&port->dev,
122 "%s - non-zero urb received, error code=%d\n",
Aleksey Babahinbd2c09b2012-03-20 00:46:35 +0400123 __func__, urb->status);
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800124 goto exit;
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800125 }
126
127
128 /* Set the data read from the usb port into the serial port buffer. */
129 tty = tty_port_tty_get(&port->port);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800130 if (tty && urb->actual_length) {
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800131 /* Loop through the data copying each byte to the tty layer. */
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800132 tty_insert_flip_string(tty, data, urb->actual_length);
133
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800134 /* Force the data to the tty layer. */
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800135 tty_flip_buffer_push(tty);
136 }
Alan Cox6b9563a2012-07-24 10:59:01 +0100137 tty_kref_put(tty);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800138
139 /* Set any port variables. */
140 spin_lock_irqsave(&metro_priv->lock, flags);
141 throttled = metro_priv->throttled;
142 spin_unlock_irqrestore(&metro_priv->lock, flags);
143
144 /* Continue trying to read if set. */
145 if (!throttled) {
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800146 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
147 usb_rcvintpipe(port->serial->dev, port->interrupt_in_endpointAddress),
148 port->interrupt_in_urb->transfer_buffer,
149 port->interrupt_in_urb->transfer_buffer_length,
150 metrousb_read_int_callback, port, 1);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800151
152 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
153
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800154 if (result)
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400155 dev_err(&port->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800156 "%s - failed submitting interrupt in urb, error code=%d\n",
157 __func__, result);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800158 }
159 return;
160
161exit:
162 /* Try to resubmit the urb. */
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800163 result = usb_submit_urb(urb, GFP_ATOMIC);
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800164 if (result)
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400165 dev_err(&port->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800166 "%s - failed submitting interrupt in urb, error code=%d\n",
167 __func__, result);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800168}
169
Aleksey Babahin28a4b6a2012-03-20 00:46:32 +0400170static void metrousb_write_int_callback(struct urb *urb)
171{
172 struct usb_serial_port *port = urb->context;
173
174 dev_warn(&port->dev, "%s not implemented yet.\n",
175 __func__);
176}
177
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800178static void metrousb_cleanup(struct usb_serial_port *port)
179{
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800180 dev_dbg(&port->dev, "%s\n", __func__);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800181
182 if (port->serial->dev) {
183 /* Shutdown any interrupt in urbs. */
184 if (port->interrupt_in_urb) {
185 usb_unlink_urb(port->interrupt_in_urb);
186 usb_kill_urb(port->interrupt_in_urb);
187 }
Aleksey Babahin70457782012-03-20 00:46:33 +0400188
189 /* Send deactivate cmd to device */
190 metrousb_send_unidirectional_cmd(UNI_CMD_CLOSE, port);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800191 }
192}
193
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800194static int metrousb_open(struct tty_struct *tty, struct usb_serial_port *port)
195{
196 struct usb_serial *serial = port->serial;
197 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
198 unsigned long flags = 0;
199 int result = 0;
200
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800201 dev_dbg(&port->dev, "%s\n", __func__);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800202
203 /* Make sure the urb is initialized. */
204 if (!port->interrupt_in_urb) {
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400205 dev_err(&port->dev, "%s - interrupt urb not initialized\n",
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800206 __func__);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800207 return -ENODEV;
208 }
209
210 /* Set the private data information for the port. */
211 spin_lock_irqsave(&metro_priv->lock, flags);
212 metro_priv->control_state = 0;
213 metro_priv->throttled = 0;
214 spin_unlock_irqrestore(&metro_priv->lock, flags);
215
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800216 /* Clear the urb pipe. */
217 usb_clear_halt(serial->dev, port->interrupt_in_urb->pipe);
218
219 /* Start reading from the device */
220 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
221 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
222 port->interrupt_in_urb->transfer_buffer,
223 port->interrupt_in_urb->transfer_buffer_length,
224 metrousb_read_int_callback, port, 1);
225 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
226
227 if (result) {
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400228 dev_err(&port->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800229 "%s - failed submitting interrupt in urb, error code=%d\n",
230 __func__, result);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800231 goto exit;
232 }
233
Aleksey Babahin70457782012-03-20 00:46:33 +0400234 /* Send activate cmd to device */
235 result = metrousb_send_unidirectional_cmd(UNI_CMD_OPEN, port);
236 if (result) {
237 dev_err(&port->dev,
238 "%s - failed to configure device for port number=%d, error code=%d\n",
239 __func__, port->number, result);
240 goto exit;
241 }
242
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800243 dev_dbg(&port->dev, "%s - port open\n", __func__);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800244exit:
245 return result;
246}
247
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800248static int metrousb_set_modem_ctrl(struct usb_serial *serial, unsigned int control_state)
249{
250 int retval = 0;
251 unsigned char mcr = METROUSB_MCR_NONE;
252
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800253 dev_dbg(&serial->dev->dev, "%s - control state = %d\n",
254 __func__, control_state);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800255
256 /* Set the modem control value. */
257 if (control_state & TIOCM_DTR)
258 mcr |= METROUSB_MCR_DTR;
259 if (control_state & TIOCM_RTS)
260 mcr |= METROUSB_MCR_RTS;
261
262 /* Send the command to the usb port. */
263 retval = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
264 METROUSB_SET_REQUEST_TYPE, METROUSB_SET_MODEM_CTRL_REQUEST,
265 control_state, 0, NULL, 0, WDR_TIMEOUT);
266 if (retval < 0)
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400267 dev_err(&serial->dev->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800268 "%s - set modem ctrl=0x%x failed, error code=%d\n",
269 __func__, mcr, retval);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800270
271 return retval;
272}
273
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800274static void metrousb_shutdown(struct usb_serial *serial)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800275{
276 int i = 0;
277
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800278 dev_dbg(&serial->dev->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800279
280 /* Stop reading and writing on all ports. */
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800281 for (i = 0; i < serial->num_ports; ++i) {
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800282 /* Close any open urbs. */
283 metrousb_cleanup(serial->port[i]);
284
285 /* Free memory. */
286 kfree(usb_get_serial_port_data(serial->port[i]));
287 usb_set_serial_port_data(serial->port[i], NULL);
288
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800289 dev_dbg(&serial->dev->dev, "%s - freed port number=%d\n",
290 __func__, serial->port[i]->number);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800291 }
292}
293
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800294static int metrousb_startup(struct usb_serial *serial)
295{
296 struct metrousb_private *metro_priv;
297 struct usb_serial_port *port;
298 int i = 0;
299
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800300 dev_dbg(&serial->dev->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800301
302 /* Loop through the serial ports setting up the private structures.
303 * Currently we only use one port. */
304 for (i = 0; i < serial->num_ports; ++i) {
305 port = serial->port[i];
306
307 /* Declare memory. */
Greg Kroah-Hartman8111e4e2012-03-08 14:00:11 -0800308 metro_priv = kzalloc(sizeof(struct metrousb_private), GFP_KERNEL);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800309 if (!metro_priv)
310 return -ENOMEM;
311
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800312 /* Initialize memory. */
313 spin_lock_init(&metro_priv->lock);
314 usb_set_serial_port_data(port, metro_priv);
315
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800316 dev_dbg(&serial->dev->dev, "%s - port number=%d\n ",
317 __func__, port->number);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800318 }
319
320 return 0;
321}
322
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800323static void metrousb_throttle(struct tty_struct *tty)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800324{
325 struct usb_serial_port *port = tty->driver_data;
326 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
327 unsigned long flags = 0;
328
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800329 dev_dbg(tty->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800330
331 /* Set the private information for the port to stop reading data. */
332 spin_lock_irqsave(&metro_priv->lock, flags);
333 metro_priv->throttled = 1;
334 spin_unlock_irqrestore(&metro_priv->lock, flags);
335}
336
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800337static int metrousb_tiocmget(struct tty_struct *tty)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800338{
339 unsigned long control_state = 0;
340 struct usb_serial_port *port = tty->driver_data;
341 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
342 unsigned long flags = 0;
343
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800344 dev_dbg(tty->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800345
346 spin_lock_irqsave(&metro_priv->lock, flags);
347 control_state = metro_priv->control_state;
348 spin_unlock_irqrestore(&metro_priv->lock, flags);
349
350 return control_state;
351}
352
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800353static int metrousb_tiocmset(struct tty_struct *tty,
354 unsigned int set, unsigned int clear)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800355{
356 struct usb_serial_port *port = tty->driver_data;
357 struct usb_serial *serial = port->serial;
358 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
359 unsigned long flags = 0;
360 unsigned long control_state = 0;
361
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800362 dev_dbg(tty->dev, "%s - set=%d, clear=%d\n", __func__, set, clear);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800363
364 spin_lock_irqsave(&metro_priv->lock, flags);
365 control_state = metro_priv->control_state;
366
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800367 /* Set the RTS and DTR values. */
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800368 if (set & TIOCM_RTS)
369 control_state |= TIOCM_RTS;
370 if (set & TIOCM_DTR)
371 control_state |= TIOCM_DTR;
372 if (clear & TIOCM_RTS)
373 control_state &= ~TIOCM_RTS;
374 if (clear & TIOCM_DTR)
375 control_state &= ~TIOCM_DTR;
376
377 metro_priv->control_state = control_state;
378 spin_unlock_irqrestore(&metro_priv->lock, flags);
379 return metrousb_set_modem_ctrl(serial, control_state);
380}
381
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800382static void metrousb_unthrottle(struct tty_struct *tty)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800383{
384 struct usb_serial_port *port = tty->driver_data;
385 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
386 unsigned long flags = 0;
387 int result = 0;
388
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800389 dev_dbg(tty->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800390
391 /* Set the private information for the port to resume reading data. */
392 spin_lock_irqsave(&metro_priv->lock, flags);
393 metro_priv->throttled = 0;
394 spin_unlock_irqrestore(&metro_priv->lock, flags);
395
396 /* Submit the urb to read from the port. */
397 port->interrupt_in_urb->dev = port->serial->dev;
398 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800399 if (result)
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400400 dev_err(tty->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800401 "failed submitting interrupt in urb error code=%d\n",
402 result);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800403}
404
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800405static struct usb_serial_driver metrousb_device = {
406 .driver = {
407 .owner = THIS_MODULE,
408 .name = "metro-usb",
409 },
Aleksey Babahine2dd3af2012-03-20 00:46:37 +0400410 .description = "Metrologic USB to Serial",
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800411 .id_table = id_table,
412 .num_ports = 1,
413 .open = metrousb_open,
414 .close = metrousb_cleanup,
415 .read_int_callback = metrousb_read_int_callback,
Aleksey Babahin28a4b6a2012-03-20 00:46:32 +0400416 .write_int_callback = metrousb_write_int_callback,
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800417 .attach = metrousb_startup,
418 .release = metrousb_shutdown,
419 .throttle = metrousb_throttle,
420 .unthrottle = metrousb_unthrottle,
421 .tiocmget = metrousb_tiocmget,
422 .tiocmset = metrousb_tiocmset,
423};
424
425static struct usb_serial_driver * const serial_drivers[] = {
426 &metrousb_device,
427 NULL,
428};
429
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700430module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartman1935e352012-03-08 13:39:53 -0800431
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800432MODULE_LICENSE("GPL");
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800433MODULE_AUTHOR("Philip Nicastro");
434MODULE_AUTHOR("Aleksey Babahin <tamerlan311@gmail.com>");
435MODULE_DESCRIPTION(DRIVER_DESC);