blob: 39e683096e94cf3b174d276441fd1d848805ed9b [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>
Aleksey Babahin43d186f2012-03-08 13:18:43 -080010#include <linux/tty.h>
11#include <linux/module.h>
12#include <linux/usb.h>
13#include <linux/errno.h>
14#include <linux/slab.h>
15#include <linux/tty_driver.h>
16#include <linux/tty_flip.h>
17#include <linux/moduleparam.h>
18#include <linux/spinlock.h>
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -080019#include <linux/uaccess.h>
Aleksey Babahin43d186f2012-03-08 13:18:43 -080020#include <linux/usb/serial.h>
21
Aleksey Babahin43d186f2012-03-08 13:18:43 -080022#define DRIVER_DESC "Metrologic Instruments Inc. - USB-POS driver"
23
Greg Kroah-Hartman159d4d82012-03-08 13:42:41 -080024/* Product information. */
25#define FOCUS_VENDOR_ID 0x0C2E
Aleksey Babahin810ec782012-03-20 00:46:31 +040026#define FOCUS_PRODUCT_ID_BI 0x0720
27#define FOCUS_PRODUCT_ID_UNI 0x0700
Greg Kroah-Hartman159d4d82012-03-08 13:42:41 -080028
29#define METROUSB_SET_REQUEST_TYPE 0x40
30#define METROUSB_SET_MODEM_CTRL_REQUEST 10
31#define METROUSB_SET_BREAK_REQUEST 0x40
32#define METROUSB_MCR_NONE 0x08 /* Deactivate DTR and RTS. */
33#define METROUSB_MCR_RTS 0x0a /* Activate RTS. */
34#define METROUSB_MCR_DTR 0x09 /* Activate DTR. */
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -080035#define WDR_TIMEOUT 5000 /* default urb timeout. */
Greg Kroah-Hartman159d4d82012-03-08 13:42:41 -080036
37/* Private data structure. */
38struct metrousb_private {
39 spinlock_t lock;
40 int throttled;
41 unsigned long control_state;
42};
43
Aleksey Babahin43d186f2012-03-08 13:18:43 -080044/* Device table list. */
Johan Hovold5c6b98d2013-12-29 19:22:54 +010045static const struct usb_device_id id_table[] = {
Aleksey Babahin810ec782012-03-20 00:46:31 +040046 { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_BI) },
Aleksey Babahin43d186f2012-03-08 13:18:43 -080047 { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_UNI) },
Aleksey Babahin43d186f2012-03-08 13:18:43 -080048 { }, /* Terminating entry. */
49};
50MODULE_DEVICE_TABLE(usb, id_table);
51
Aleksey Babahin70457782012-03-20 00:46:33 +040052/* UNI-Directional mode commands for device configure */
53#define UNI_CMD_OPEN 0x80
54#define UNI_CMD_CLOSE 0xFF
55
Rashika Kheria8f24c492013-12-19 15:43:17 +053056static inline int metrousb_is_unidirectional_mode(struct usb_serial_port *port)
Aleksey Babahin70457782012-03-20 00:46:33 +040057{
58 __u16 product_id = le16_to_cpu(
59 port->serial->dev->descriptor.idProduct);
60
61 return product_id == FOCUS_PRODUCT_ID_UNI;
62}
63
64static int metrousb_send_unidirectional_cmd(u8 cmd, struct usb_serial_port *port)
65{
66 int ret;
67 int actual_len;
68 u8 *buffer_cmd = NULL;
69
70 if (!metrousb_is_unidirectional_mode(port))
71 return 0;
72
73 buffer_cmd = kzalloc(sizeof(cmd), GFP_KERNEL);
74 if (!buffer_cmd)
75 return -ENOMEM;
76
77 *buffer_cmd = cmd;
78
79 ret = usb_interrupt_msg(port->serial->dev,
80 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
81 buffer_cmd, sizeof(cmd),
82 &actual_len, USB_CTRL_SET_TIMEOUT);
83
84 kfree(buffer_cmd);
85
86 if (ret < 0)
87 return ret;
88 else if (actual_len != sizeof(cmd))
89 return -EIO;
90 return 0;
91}
92
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -080093static void metrousb_read_int_callback(struct urb *urb)
Aleksey Babahin43d186f2012-03-08 13:18:43 -080094{
Greg Kroah-Hartman8111e4e2012-03-08 14:00:11 -080095 struct usb_serial_port *port = urb->context;
Aleksey Babahin43d186f2012-03-08 13:18:43 -080096 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
Aleksey Babahin43d186f2012-03-08 13:18:43 -080097 unsigned char *data = urb->transfer_buffer;
98 int throttled = 0;
99 int result = 0;
100 unsigned long flags = 0;
101
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800102 dev_dbg(&port->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800103
104 switch (urb->status) {
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800105 case 0:
106 /* Success status, read from the port. */
107 break;
108 case -ECONNRESET:
109 case -ENOENT:
110 case -ESHUTDOWN:
111 /* urb has been terminated. */
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800112 dev_dbg(&port->dev,
113 "%s - urb shutting down, error code=%d\n",
Aleksey Babahinbd2c09b2012-03-20 00:46:35 +0400114 __func__, urb->status);
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800115 return;
116 default:
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800117 dev_dbg(&port->dev,
118 "%s - non-zero urb received, error code=%d\n",
Aleksey Babahinbd2c09b2012-03-20 00:46:35 +0400119 __func__, urb->status);
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800120 goto exit;
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800121 }
122
123
124 /* Set the data read from the usb port into the serial port buffer. */
Jiri Slaby2e124b42013-01-03 15:53:06 +0100125 if (urb->actual_length) {
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800126 /* Loop through the data copying each byte to the tty layer. */
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100127 tty_insert_flip_string(&port->port, data, urb->actual_length);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800128
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800129 /* Force the data to the tty layer. */
Jiri Slaby2e124b42013-01-03 15:53:06 +0100130 tty_flip_buffer_push(&port->port);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800131 }
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800132
133 /* Set any port variables. */
134 spin_lock_irqsave(&metro_priv->lock, flags);
135 throttled = metro_priv->throttled;
136 spin_unlock_irqrestore(&metro_priv->lock, flags);
137
138 /* Continue trying to read if set. */
139 if (!throttled) {
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800140 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
141 usb_rcvintpipe(port->serial->dev, port->interrupt_in_endpointAddress),
142 port->interrupt_in_urb->transfer_buffer,
143 port->interrupt_in_urb->transfer_buffer_length,
144 metrousb_read_int_callback, port, 1);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800145
146 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
147
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800148 if (result)
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400149 dev_err(&port->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800150 "%s - failed submitting interrupt in urb, error code=%d\n",
151 __func__, result);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800152 }
153 return;
154
155exit:
156 /* Try to resubmit the urb. */
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800157 result = usb_submit_urb(urb, GFP_ATOMIC);
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800158 if (result)
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400159 dev_err(&port->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800160 "%s - failed submitting interrupt in urb, error code=%d\n",
161 __func__, result);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800162}
163
Aleksey Babahin28a4b6a2012-03-20 00:46:32 +0400164static void metrousb_write_int_callback(struct urb *urb)
165{
166 struct usb_serial_port *port = urb->context;
167
168 dev_warn(&port->dev, "%s not implemented yet.\n",
169 __func__);
170}
171
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800172static void metrousb_cleanup(struct usb_serial_port *port)
173{
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800174 dev_dbg(&port->dev, "%s\n", __func__);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800175
Johan Hovold2ee44fb2012-10-25 10:29:00 +0200176 usb_unlink_urb(port->interrupt_in_urb);
177 usb_kill_urb(port->interrupt_in_urb);
Aleksey Babahin70457782012-03-20 00:46:33 +0400178
Johan Hovold5813f282013-03-21 12:37:40 +0100179 metrousb_send_unidirectional_cmd(UNI_CMD_CLOSE, port);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800180}
181
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800182static int metrousb_open(struct tty_struct *tty, struct usb_serial_port *port)
183{
184 struct usb_serial *serial = port->serial;
185 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
186 unsigned long flags = 0;
187 int result = 0;
188
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800189 dev_dbg(&port->dev, "%s\n", __func__);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800190
191 /* Make sure the urb is initialized. */
192 if (!port->interrupt_in_urb) {
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400193 dev_err(&port->dev, "%s - interrupt urb not initialized\n",
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800194 __func__);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800195 return -ENODEV;
196 }
197
198 /* Set the private data information for the port. */
199 spin_lock_irqsave(&metro_priv->lock, flags);
200 metro_priv->control_state = 0;
201 metro_priv->throttled = 0;
202 spin_unlock_irqrestore(&metro_priv->lock, flags);
203
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800204 /* Clear the urb pipe. */
205 usb_clear_halt(serial->dev, port->interrupt_in_urb->pipe);
206
207 /* Start reading from the device */
208 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
209 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
210 port->interrupt_in_urb->transfer_buffer,
211 port->interrupt_in_urb->transfer_buffer_length,
212 metrousb_read_int_callback, port, 1);
213 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
214
215 if (result) {
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400216 dev_err(&port->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800217 "%s - failed submitting interrupt in urb, error code=%d\n",
218 __func__, result);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800219 goto exit;
220 }
221
Aleksey Babahin70457782012-03-20 00:46:33 +0400222 /* Send activate cmd to device */
223 result = metrousb_send_unidirectional_cmd(UNI_CMD_OPEN, port);
224 if (result) {
225 dev_err(&port->dev,
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700226 "%s - failed to configure device, error code=%d\n",
227 __func__, result);
Aleksey Babahin70457782012-03-20 00:46:33 +0400228 goto exit;
229 }
230
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800231 dev_dbg(&port->dev, "%s - port open\n", __func__);
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800232exit:
233 return result;
234}
235
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800236static int metrousb_set_modem_ctrl(struct usb_serial *serial, unsigned int control_state)
237{
238 int retval = 0;
239 unsigned char mcr = METROUSB_MCR_NONE;
240
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800241 dev_dbg(&serial->dev->dev, "%s - control state = %d\n",
242 __func__, control_state);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800243
244 /* Set the modem control value. */
245 if (control_state & TIOCM_DTR)
246 mcr |= METROUSB_MCR_DTR;
247 if (control_state & TIOCM_RTS)
248 mcr |= METROUSB_MCR_RTS;
249
250 /* Send the command to the usb port. */
251 retval = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
252 METROUSB_SET_REQUEST_TYPE, METROUSB_SET_MODEM_CTRL_REQUEST,
253 control_state, 0, NULL, 0, WDR_TIMEOUT);
254 if (retval < 0)
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400255 dev_err(&serial->dev->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800256 "%s - set modem ctrl=0x%x failed, error code=%d\n",
257 __func__, mcr, retval);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800258
259 return retval;
260}
261
Johan Hovold50dde862012-10-25 10:28:59 +0200262static int metrousb_port_probe(struct usb_serial_port *port)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800263{
264 struct metrousb_private *metro_priv;
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800265
Johan Hovold50dde862012-10-25 10:28:59 +0200266 metro_priv = kzalloc(sizeof(*metro_priv), GFP_KERNEL);
267 if (!metro_priv)
268 return -ENOMEM;
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800269
Johan Hovold50dde862012-10-25 10:28:59 +0200270 spin_lock_init(&metro_priv->lock);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800271
Johan Hovold50dde862012-10-25 10:28:59 +0200272 usb_set_serial_port_data(port, metro_priv);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800273
Johan Hovold50dde862012-10-25 10:28:59 +0200274 return 0;
275}
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800276
Johan Hovold50dde862012-10-25 10:28:59 +0200277static int metrousb_port_remove(struct usb_serial_port *port)
278{
279 struct metrousb_private *metro_priv;
280
281 metro_priv = usb_get_serial_port_data(port);
282 kfree(metro_priv);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800283
284 return 0;
285}
286
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800287static void metrousb_throttle(struct tty_struct *tty)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800288{
289 struct usb_serial_port *port = tty->driver_data;
290 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
291 unsigned long flags = 0;
292
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800293 dev_dbg(tty->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800294
295 /* Set the private information for the port to stop reading data. */
296 spin_lock_irqsave(&metro_priv->lock, flags);
297 metro_priv->throttled = 1;
298 spin_unlock_irqrestore(&metro_priv->lock, flags);
299}
300
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800301static int metrousb_tiocmget(struct tty_struct *tty)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800302{
303 unsigned long control_state = 0;
304 struct usb_serial_port *port = tty->driver_data;
305 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
306 unsigned long flags = 0;
307
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800308 dev_dbg(tty->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800309
310 spin_lock_irqsave(&metro_priv->lock, flags);
311 control_state = metro_priv->control_state;
312 spin_unlock_irqrestore(&metro_priv->lock, flags);
313
314 return control_state;
315}
316
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800317static int metrousb_tiocmset(struct tty_struct *tty,
318 unsigned int set, unsigned int clear)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800319{
320 struct usb_serial_port *port = tty->driver_data;
321 struct usb_serial *serial = port->serial;
322 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
323 unsigned long flags = 0;
324 unsigned long control_state = 0;
325
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800326 dev_dbg(tty->dev, "%s - set=%d, clear=%d\n", __func__, set, clear);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800327
328 spin_lock_irqsave(&metro_priv->lock, flags);
329 control_state = metro_priv->control_state;
330
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800331 /* Set the RTS and DTR values. */
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800332 if (set & TIOCM_RTS)
333 control_state |= TIOCM_RTS;
334 if (set & TIOCM_DTR)
335 control_state |= TIOCM_DTR;
336 if (clear & TIOCM_RTS)
337 control_state &= ~TIOCM_RTS;
338 if (clear & TIOCM_DTR)
339 control_state &= ~TIOCM_DTR;
340
341 metro_priv->control_state = control_state;
342 spin_unlock_irqrestore(&metro_priv->lock, flags);
343 return metrousb_set_modem_ctrl(serial, control_state);
344}
345
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800346static void metrousb_unthrottle(struct tty_struct *tty)
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800347{
348 struct usb_serial_port *port = tty->driver_data;
349 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
350 unsigned long flags = 0;
351 int result = 0;
352
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800353 dev_dbg(tty->dev, "%s\n", __func__);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800354
355 /* Set the private information for the port to resume reading data. */
356 spin_lock_irqsave(&metro_priv->lock, flags);
357 metro_priv->throttled = 0;
358 spin_unlock_irqrestore(&metro_priv->lock, flags);
359
360 /* Submit the urb to read from the port. */
361 port->interrupt_in_urb->dev = port->serial->dev;
362 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800363 if (result)
Aleksey Babahin91fbecf2012-03-20 00:46:34 +0400364 dev_err(tty->dev,
Greg Kroah-Hartman5db51b52012-03-08 14:16:12 -0800365 "failed submitting interrupt in urb error code=%d\n",
366 result);
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800367}
368
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800369static struct usb_serial_driver metrousb_device = {
370 .driver = {
371 .owner = THIS_MODULE,
372 .name = "metro-usb",
373 },
Aleksey Babahine2dd3af2012-03-20 00:46:37 +0400374 .description = "Metrologic USB to Serial",
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800375 .id_table = id_table,
376 .num_ports = 1,
377 .open = metrousb_open,
378 .close = metrousb_cleanup,
379 .read_int_callback = metrousb_read_int_callback,
Aleksey Babahin28a4b6a2012-03-20 00:46:32 +0400380 .write_int_callback = metrousb_write_int_callback,
Johan Hovold50dde862012-10-25 10:28:59 +0200381 .port_probe = metrousb_port_probe,
382 .port_remove = metrousb_port_remove,
Greg Kroah-Hartman9fbd1642012-03-08 13:55:41 -0800383 .throttle = metrousb_throttle,
384 .unthrottle = metrousb_unthrottle,
385 .tiocmget = metrousb_tiocmget,
386 .tiocmset = metrousb_tiocmset,
387};
388
389static struct usb_serial_driver * const serial_drivers[] = {
390 &metrousb_device,
391 NULL,
392};
393
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700394module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartman1935e352012-03-08 13:39:53 -0800395
Aleksey Babahin43d186f2012-03-08 13:18:43 -0800396MODULE_LICENSE("GPL");
Greg Kroah-Hartmand4cbd6e2012-03-08 13:50:54 -0800397MODULE_AUTHOR("Philip Nicastro");
398MODULE_AUTHOR("Aleksey Babahin <tamerlan311@gmail.com>");
399MODULE_DESCRIPTION(DRIVER_DESC);