]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/usb/serial/metro-usb.c
tty: fix the metro-usb change I messed up
[mirror_ubuntu-zesty-kernel.git] / drivers / usb / serial / metro-usb.c
CommitLineData
43d186fe 1/*
d4cbd6e9
GKH
2 Some of this code is credited to Linux USB open source files that are
3 distributed with Linux.
43d186fe
AB
4
5 Copyright: 2007 Metrologic Instruments. All rights reserved.
6 Copyright: 2011 Azimut Ltd. <http://azimutrzn.ru/>
43d186fe
AB
7*/
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>
d4cbd6e9 20#include <linux/uaccess.h>
43d186fe
AB
21#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
159d4d8d
GKH
27/* Product information. */
28#define FOCUS_VENDOR_ID 0x0C2E
810ec78e
AB
29#define FOCUS_PRODUCT_ID_BI 0x0720
30#define FOCUS_PRODUCT_ID_UNI 0x0700
159d4d8d
GKH
31
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. */
d4cbd6e9 38#define WDR_TIMEOUT 5000 /* default urb timeout. */
159d4d8d
GKH
39
40/* Private data structure. */
41struct metrousb_private {
42 spinlock_t lock;
43 int throttled;
44 unsigned long control_state;
45};
46
43d186fe 47/* Device table list. */
d4cbd6e9 48static struct usb_device_id id_table[] = {
810ec78e 49 { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_BI) },
43d186fe 50 { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_UNI) },
43d186fe
AB
51 { }, /* Terminating entry. */
52};
53MODULE_DEVICE_TABLE(usb, id_table);
54
55/* Input parameter constants. */
fdac0f64 56static bool debug;
43d186fe 57
70457786
AB
58/* UNI-Directional mode commands for device configure */
59#define UNI_CMD_OPEN 0x80
60#define UNI_CMD_CLOSE 0xFF
61
62inline int metrousb_is_unidirectional_mode(struct usb_serial_port *port)
63{
64 __u16 product_id = le16_to_cpu(
65 port->serial->dev->descriptor.idProduct);
66
67 return product_id == FOCUS_PRODUCT_ID_UNI;
68}
69
70static int metrousb_send_unidirectional_cmd(u8 cmd, struct usb_serial_port *port)
71{
72 int ret;
73 int actual_len;
74 u8 *buffer_cmd = NULL;
75
76 if (!metrousb_is_unidirectional_mode(port))
77 return 0;
78
79 buffer_cmd = kzalloc(sizeof(cmd), GFP_KERNEL);
80 if (!buffer_cmd)
81 return -ENOMEM;
82
83 *buffer_cmd = cmd;
84
85 ret = usb_interrupt_msg(port->serial->dev,
86 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
87 buffer_cmd, sizeof(cmd),
88 &actual_len, USB_CTRL_SET_TIMEOUT);
89
90 kfree(buffer_cmd);
91
92 if (ret < 0)
93 return ret;
94 else if (actual_len != sizeof(cmd))
95 return -EIO;
96 return 0;
97}
98
9fbd1649 99static void metrousb_read_int_callback(struct urb *urb)
43d186fe 100{
8111e4ec 101 struct usb_serial_port *port = urb->context;
9fbd1649
GKH
102 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
103 struct tty_struct *tty;
104 unsigned char *data = urb->transfer_buffer;
105 int throttled = 0;
106 int result = 0;
107 unsigned long flags = 0;
108
5db51b50 109 dev_dbg(&port->dev, "%s\n", __func__);
43d186fe 110
9fbd1649
GKH
111 switch (urb->status) {
112 case 0:
113 /* Success status, read from the port. */
114 break;
115 case -ECONNRESET:
116 case -ENOENT:
117 case -ESHUTDOWN:
118 /* urb has been terminated. */
5db51b50
GKH
119 dev_dbg(&port->dev,
120 "%s - urb shutting down, error code=%d\n",
bd2c09bc 121 __func__, urb->status);
9fbd1649
GKH
122 return;
123 default:
5db51b50
GKH
124 dev_dbg(&port->dev,
125 "%s - non-zero urb received, error code=%d\n",
bd2c09bc 126 __func__, urb->status);
9fbd1649
GKH
127 goto exit;
128 }
129
130
131 /* Set the data read from the usb port into the serial port buffer. */
132 tty = tty_port_tty_get(&port->port);
9fbd1649
GKH
133 if (tty && urb->actual_length) {
134 /* Loop through the data copying each byte to the tty layer. */
135 tty_insert_flip_string(tty, data, urb->actual_length);
136
137 /* Force the data to the tty layer. */
138 tty_flip_buffer_push(tty);
139 }
6b9563a7 140 tty_kref_put(tty);
9fbd1649
GKH
141
142 /* Set any port variables. */
143 spin_lock_irqsave(&metro_priv->lock, flags);
144 throttled = metro_priv->throttled;
145 spin_unlock_irqrestore(&metro_priv->lock, flags);
146
147 /* Continue trying to read if set. */
148 if (!throttled) {
149 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
150 usb_rcvintpipe(port->serial->dev, port->interrupt_in_endpointAddress),
151 port->interrupt_in_urb->transfer_buffer,
152 port->interrupt_in_urb->transfer_buffer_length,
153 metrousb_read_int_callback, port, 1);
154
155 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
156
5db51b50 157 if (result)
91fbecfe 158 dev_err(&port->dev,
5db51b50
GKH
159 "%s - failed submitting interrupt in urb, error code=%d\n",
160 __func__, result);
43d186fe 161 }
9fbd1649
GKH
162 return;
163
164exit:
165 /* Try to resubmit the urb. */
166 result = usb_submit_urb(urb, GFP_ATOMIC);
5db51b50 167 if (result)
91fbecfe 168 dev_err(&port->dev,
5db51b50
GKH
169 "%s - failed submitting interrupt in urb, error code=%d\n",
170 __func__, result);
43d186fe
AB
171}
172
28a4b6a6
AB
173static void metrousb_write_int_callback(struct urb *urb)
174{
175 struct usb_serial_port *port = urb->context;
176
177 dev_warn(&port->dev, "%s not implemented yet.\n",
178 __func__);
179}
180
9fbd1649 181static void metrousb_cleanup(struct usb_serial_port *port)
43d186fe 182{
5db51b50 183 dev_dbg(&port->dev, "%s\n", __func__);
9fbd1649
GKH
184
185 if (port->serial->dev) {
186 /* Shutdown any interrupt in urbs. */
187 if (port->interrupt_in_urb) {
188 usb_unlink_urb(port->interrupt_in_urb);
189 usb_kill_urb(port->interrupt_in_urb);
190 }
70457786
AB
191
192 /* Send deactivate cmd to device */
193 metrousb_send_unidirectional_cmd(UNI_CMD_CLOSE, port);
9fbd1649 194 }
43d186fe
AB
195}
196
d4cbd6e9 197static int metrousb_open(struct tty_struct *tty, struct usb_serial_port *port)
43d186fe
AB
198{
199 struct usb_serial *serial = port->serial;
200 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
201 unsigned long flags = 0;
202 int result = 0;
203
5db51b50 204 dev_dbg(&port->dev, "%s\n", __func__);
43d186fe
AB
205
206 /* Make sure the urb is initialized. */
207 if (!port->interrupt_in_urb) {
91fbecfe 208 dev_err(&port->dev, "%s - interrupt urb not initialized\n",
5db51b50 209 __func__);
43d186fe
AB
210 return -ENODEV;
211 }
212
213 /* Set the private data information for the port. */
214 spin_lock_irqsave(&metro_priv->lock, flags);
215 metro_priv->control_state = 0;
216 metro_priv->throttled = 0;
217 spin_unlock_irqrestore(&metro_priv->lock, flags);
218
43d186fe
AB
219 /* Clear the urb pipe. */
220 usb_clear_halt(serial->dev, port->interrupt_in_urb->pipe);
221
222 /* Start reading from the device */
d4cbd6e9
GKH
223 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
224 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
43d186fe
AB
225 port->interrupt_in_urb->transfer_buffer,
226 port->interrupt_in_urb->transfer_buffer_length,
227 metrousb_read_int_callback, port, 1);
228 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
229
230 if (result) {
91fbecfe 231 dev_err(&port->dev,
5db51b50
GKH
232 "%s - failed submitting interrupt in urb, error code=%d\n",
233 __func__, result);
43d186fe
AB
234 goto exit;
235 }
236
70457786
AB
237 /* Send activate cmd to device */
238 result = metrousb_send_unidirectional_cmd(UNI_CMD_OPEN, port);
239 if (result) {
240 dev_err(&port->dev,
241 "%s - failed to configure device for port number=%d, error code=%d\n",
242 __func__, port->number, result);
243 goto exit;
244 }
245
5db51b50 246 dev_dbg(&port->dev, "%s - port open\n", __func__);
43d186fe
AB
247exit:
248 return result;
249}
250
43d186fe
AB
251static int metrousb_set_modem_ctrl(struct usb_serial *serial, unsigned int control_state)
252{
253 int retval = 0;
254 unsigned char mcr = METROUSB_MCR_NONE;
255
5db51b50
GKH
256 dev_dbg(&serial->dev->dev, "%s - control state = %d\n",
257 __func__, control_state);
43d186fe
AB
258
259 /* Set the modem control value. */
260 if (control_state & TIOCM_DTR)
261 mcr |= METROUSB_MCR_DTR;
262 if (control_state & TIOCM_RTS)
263 mcr |= METROUSB_MCR_RTS;
264
265 /* Send the command to the usb port. */
266 retval = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
267 METROUSB_SET_REQUEST_TYPE, METROUSB_SET_MODEM_CTRL_REQUEST,
268 control_state, 0, NULL, 0, WDR_TIMEOUT);
269 if (retval < 0)
91fbecfe 270 dev_err(&serial->dev->dev,
5db51b50
GKH
271 "%s - set modem ctrl=0x%x failed, error code=%d\n",
272 __func__, mcr, retval);
43d186fe
AB
273
274 return retval;
275}
276
d4cbd6e9 277static void metrousb_shutdown(struct usb_serial *serial)
43d186fe
AB
278{
279 int i = 0;
280
5db51b50 281 dev_dbg(&serial->dev->dev, "%s\n", __func__);
43d186fe
AB
282
283 /* Stop reading and writing on all ports. */
d4cbd6e9 284 for (i = 0; i < serial->num_ports; ++i) {
43d186fe
AB
285 /* Close any open urbs. */
286 metrousb_cleanup(serial->port[i]);
287
288 /* Free memory. */
289 kfree(usb_get_serial_port_data(serial->port[i]));
290 usb_set_serial_port_data(serial->port[i], NULL);
291
5db51b50
GKH
292 dev_dbg(&serial->dev->dev, "%s - freed port number=%d\n",
293 __func__, serial->port[i]->number);
43d186fe
AB
294 }
295}
296
43d186fe
AB
297static int metrousb_startup(struct usb_serial *serial)
298{
299 struct metrousb_private *metro_priv;
300 struct usb_serial_port *port;
301 int i = 0;
302
5db51b50 303 dev_dbg(&serial->dev->dev, "%s\n", __func__);
43d186fe
AB
304
305 /* Loop through the serial ports setting up the private structures.
306 * Currently we only use one port. */
307 for (i = 0; i < serial->num_ports; ++i) {
308 port = serial->port[i];
309
310 /* Declare memory. */
8111e4ec 311 metro_priv = kzalloc(sizeof(struct metrousb_private), GFP_KERNEL);
43d186fe
AB
312 if (!metro_priv)
313 return -ENOMEM;
314
43d186fe
AB
315 /* Initialize memory. */
316 spin_lock_init(&metro_priv->lock);
317 usb_set_serial_port_data(port, metro_priv);
318
5db51b50
GKH
319 dev_dbg(&serial->dev->dev, "%s - port number=%d\n ",
320 __func__, port->number);
43d186fe
AB
321 }
322
323 return 0;
324}
325
d4cbd6e9 326static void metrousb_throttle(struct tty_struct *tty)
43d186fe
AB
327{
328 struct usb_serial_port *port = tty->driver_data;
329 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
330 unsigned long flags = 0;
331
5db51b50 332 dev_dbg(tty->dev, "%s\n", __func__);
43d186fe
AB
333
334 /* Set the private information for the port to stop reading data. */
335 spin_lock_irqsave(&metro_priv->lock, flags);
336 metro_priv->throttled = 1;
337 spin_unlock_irqrestore(&metro_priv->lock, flags);
338}
339
d4cbd6e9 340static int metrousb_tiocmget(struct tty_struct *tty)
43d186fe
AB
341{
342 unsigned long control_state = 0;
343 struct usb_serial_port *port = tty->driver_data;
344 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
345 unsigned long flags = 0;
346
5db51b50 347 dev_dbg(tty->dev, "%s\n", __func__);
43d186fe
AB
348
349 spin_lock_irqsave(&metro_priv->lock, flags);
350 control_state = metro_priv->control_state;
351 spin_unlock_irqrestore(&metro_priv->lock, flags);
352
353 return control_state;
354}
355
d4cbd6e9
GKH
356static int metrousb_tiocmset(struct tty_struct *tty,
357 unsigned int set, unsigned int clear)
43d186fe
AB
358{
359 struct usb_serial_port *port = tty->driver_data;
360 struct usb_serial *serial = port->serial;
361 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
362 unsigned long flags = 0;
363 unsigned long control_state = 0;
364
5db51b50 365 dev_dbg(tty->dev, "%s - set=%d, clear=%d\n", __func__, set, clear);
43d186fe
AB
366
367 spin_lock_irqsave(&metro_priv->lock, flags);
368 control_state = metro_priv->control_state;
369
d4cbd6e9 370 /* Set the RTS and DTR values. */
43d186fe
AB
371 if (set & TIOCM_RTS)
372 control_state |= TIOCM_RTS;
373 if (set & TIOCM_DTR)
374 control_state |= TIOCM_DTR;
375 if (clear & TIOCM_RTS)
376 control_state &= ~TIOCM_RTS;
377 if (clear & TIOCM_DTR)
378 control_state &= ~TIOCM_DTR;
379
380 metro_priv->control_state = control_state;
381 spin_unlock_irqrestore(&metro_priv->lock, flags);
382 return metrousb_set_modem_ctrl(serial, control_state);
383}
384
d4cbd6e9 385static void metrousb_unthrottle(struct tty_struct *tty)
43d186fe
AB
386{
387 struct usb_serial_port *port = tty->driver_data;
388 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
389 unsigned long flags = 0;
390 int result = 0;
391
5db51b50 392 dev_dbg(tty->dev, "%s\n", __func__);
43d186fe
AB
393
394 /* Set the private information for the port to resume reading data. */
395 spin_lock_irqsave(&metro_priv->lock, flags);
396 metro_priv->throttled = 0;
397 spin_unlock_irqrestore(&metro_priv->lock, flags);
398
399 /* Submit the urb to read from the port. */
400 port->interrupt_in_urb->dev = port->serial->dev;
401 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
5db51b50 402 if (result)
91fbecfe 403 dev_err(tty->dev,
5db51b50
GKH
404 "failed submitting interrupt in urb error code=%d\n",
405 result);
43d186fe
AB
406}
407
9fbd1649
GKH
408static struct usb_serial_driver metrousb_device = {
409 .driver = {
410 .owner = THIS_MODULE,
411 .name = "metro-usb",
412 },
e2dd3af4 413 .description = "Metrologic USB to Serial",
9fbd1649
GKH
414 .id_table = id_table,
415 .num_ports = 1,
416 .open = metrousb_open,
417 .close = metrousb_cleanup,
418 .read_int_callback = metrousb_read_int_callback,
28a4b6a6 419 .write_int_callback = metrousb_write_int_callback,
9fbd1649
GKH
420 .attach = metrousb_startup,
421 .release = metrousb_shutdown,
422 .throttle = metrousb_throttle,
423 .unthrottle = metrousb_unthrottle,
424 .tiocmget = metrousb_tiocmget,
425 .tiocmset = metrousb_tiocmset,
426};
427
428static struct usb_serial_driver * const serial_drivers[] = {
429 &metrousb_device,
430 NULL,
431};
432
68e24113 433module_usb_serial_driver(serial_drivers, id_table);
1935e357 434
43d186fe 435MODULE_LICENSE("GPL");
d4cbd6e9
GKH
436MODULE_AUTHOR("Philip Nicastro");
437MODULE_AUTHOR("Aleksey Babahin <tamerlan311@gmail.com>");
438MODULE_DESCRIPTION(DRIVER_DESC);
43d186fe
AB
439
440/* Module input parameters */
441module_param(debug, bool, S_IRUGO | S_IWUSR);
442MODULE_PARM_DESC(debug, "Print debug info (bool 1=on, 0=off)");