initial commit with v3.6.7
[linux-3.6.7-moxart.git] / drivers / usb / serial / metro-usb.c
blobd284fb847825a52f13b04f4386c2292247859e73
1 /*
2 Some of this code is credited to Linux USB open source files that are
3 distributed with Linux.
5 Copyright: 2007 Metrologic Instruments. All rights reserved.
6 Copyright: 2011 Azimut Ltd. <http://azimutrzn.ru/>
7 */
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>
20 #include <linux/uaccess.h>
21 #include <linux/usb/serial.h>
23 /* Version Information */
24 #define DRIVER_VERSION "v1.2.0.0"
25 #define DRIVER_DESC "Metrologic Instruments Inc. - USB-POS driver"
27 /* Product information. */
28 #define FOCUS_VENDOR_ID 0x0C2E
29 #define FOCUS_PRODUCT_ID_BI 0x0720
30 #define FOCUS_PRODUCT_ID_UNI 0x0700
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. */
38 #define WDR_TIMEOUT 5000 /* default urb timeout. */
40 /* Private data structure. */
41 struct metrousb_private {
42 spinlock_t lock;
43 int throttled;
44 unsigned long control_state;
47 /* Device table list. */
48 static struct usb_device_id id_table[] = {
49 { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_BI) },
50 { USB_DEVICE(FOCUS_VENDOR_ID, FOCUS_PRODUCT_ID_UNI) },
51 { }, /* Terminating entry. */
53 MODULE_DEVICE_TABLE(usb, id_table);
55 /* Input parameter constants. */
56 static bool debug;
58 /* UNI-Directional mode commands for device configure */
59 #define UNI_CMD_OPEN 0x80
60 #define UNI_CMD_CLOSE 0xFF
62 inline int metrousb_is_unidirectional_mode(struct usb_serial_port *port)
64 __u16 product_id = le16_to_cpu(
65 port->serial->dev->descriptor.idProduct);
67 return product_id == FOCUS_PRODUCT_ID_UNI;
70 static int metrousb_send_unidirectional_cmd(u8 cmd, struct usb_serial_port *port)
72 int ret;
73 int actual_len;
74 u8 *buffer_cmd = NULL;
76 if (!metrousb_is_unidirectional_mode(port))
77 return 0;
79 buffer_cmd = kzalloc(sizeof(cmd), GFP_KERNEL);
80 if (!buffer_cmd)
81 return -ENOMEM;
83 *buffer_cmd = cmd;
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);
90 kfree(buffer_cmd);
92 if (ret < 0)
93 return ret;
94 else if (actual_len != sizeof(cmd))
95 return -EIO;
96 return 0;
99 static void metrousb_read_int_callback(struct urb *urb)
101 struct usb_serial_port *port = urb->context;
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;
109 dev_dbg(&port->dev, "%s\n", __func__);
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. */
119 dev_dbg(&port->dev,
120 "%s - urb shutting down, error code=%d\n",
121 __func__, urb->status);
122 return;
123 default:
124 dev_dbg(&port->dev,
125 "%s - non-zero urb received, error code=%d\n",
126 __func__, urb->status);
127 goto exit;
131 /* Set the data read from the usb port into the serial port buffer. */
132 tty = tty_port_tty_get(&port->port);
133 if (!tty) {
134 dev_err(&port->dev, "%s - bad tty pointer - exiting\n",
135 __func__);
136 return;
139 if (tty && urb->actual_length) {
140 /* Loop through the data copying each byte to the tty layer. */
141 tty_insert_flip_string(tty, data, urb->actual_length);
143 /* Force the data to the tty layer. */
144 tty_flip_buffer_push(tty);
146 tty_kref_put(tty);
148 /* Set any port variables. */
149 spin_lock_irqsave(&metro_priv->lock, flags);
150 throttled = metro_priv->throttled;
151 spin_unlock_irqrestore(&metro_priv->lock, flags);
153 /* Continue trying to read if set. */
154 if (!throttled) {
155 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
156 usb_rcvintpipe(port->serial->dev, port->interrupt_in_endpointAddress),
157 port->interrupt_in_urb->transfer_buffer,
158 port->interrupt_in_urb->transfer_buffer_length,
159 metrousb_read_int_callback, port, 1);
161 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
163 if (result)
164 dev_err(&port->dev,
165 "%s - failed submitting interrupt in urb, error code=%d\n",
166 __func__, result);
168 return;
170 exit:
171 /* Try to resubmit the urb. */
172 result = usb_submit_urb(urb, GFP_ATOMIC);
173 if (result)
174 dev_err(&port->dev,
175 "%s - failed submitting interrupt in urb, error code=%d\n",
176 __func__, result);
179 static void metrousb_write_int_callback(struct urb *urb)
181 struct usb_serial_port *port = urb->context;
183 dev_warn(&port->dev, "%s not implemented yet.\n",
184 __func__);
187 static void metrousb_cleanup(struct usb_serial_port *port)
189 dev_dbg(&port->dev, "%s\n", __func__);
191 usb_unlink_urb(port->interrupt_in_urb);
192 usb_kill_urb(port->interrupt_in_urb);
194 mutex_lock(&port->serial->disc_mutex);
195 if (!port->serial->disconnected)
196 metrousb_send_unidirectional_cmd(UNI_CMD_CLOSE, port);
197 mutex_unlock(&port->serial->disc_mutex);
200 static int metrousb_open(struct tty_struct *tty, struct usb_serial_port *port)
202 struct usb_serial *serial = port->serial;
203 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
204 unsigned long flags = 0;
205 int result = 0;
207 dev_dbg(&port->dev, "%s\n", __func__);
209 /* Make sure the urb is initialized. */
210 if (!port->interrupt_in_urb) {
211 dev_err(&port->dev, "%s - interrupt urb not initialized\n",
212 __func__);
213 return -ENODEV;
216 /* Set the private data information for the port. */
217 spin_lock_irqsave(&metro_priv->lock, flags);
218 metro_priv->control_state = 0;
219 metro_priv->throttled = 0;
220 spin_unlock_irqrestore(&metro_priv->lock, flags);
222 /* Clear the urb pipe. */
223 usb_clear_halt(serial->dev, port->interrupt_in_urb->pipe);
225 /* Start reading from the device */
226 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
227 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
228 port->interrupt_in_urb->transfer_buffer,
229 port->interrupt_in_urb->transfer_buffer_length,
230 metrousb_read_int_callback, port, 1);
231 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
233 if (result) {
234 dev_err(&port->dev,
235 "%s - failed submitting interrupt in urb, error code=%d\n",
236 __func__, result);
237 goto exit;
240 /* Send activate cmd to device */
241 result = metrousb_send_unidirectional_cmd(UNI_CMD_OPEN, port);
242 if (result) {
243 dev_err(&port->dev,
244 "%s - failed to configure device for port number=%d, error code=%d\n",
245 __func__, port->number, result);
246 goto exit;
249 dev_dbg(&port->dev, "%s - port open\n", __func__);
250 exit:
251 return result;
254 static int metrousb_set_modem_ctrl(struct usb_serial *serial, unsigned int control_state)
256 int retval = 0;
257 unsigned char mcr = METROUSB_MCR_NONE;
259 dev_dbg(&serial->dev->dev, "%s - control state = %d\n",
260 __func__, control_state);
262 /* Set the modem control value. */
263 if (control_state & TIOCM_DTR)
264 mcr |= METROUSB_MCR_DTR;
265 if (control_state & TIOCM_RTS)
266 mcr |= METROUSB_MCR_RTS;
268 /* Send the command to the usb port. */
269 retval = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
270 METROUSB_SET_REQUEST_TYPE, METROUSB_SET_MODEM_CTRL_REQUEST,
271 control_state, 0, NULL, 0, WDR_TIMEOUT);
272 if (retval < 0)
273 dev_err(&serial->dev->dev,
274 "%s - set modem ctrl=0x%x failed, error code=%d\n",
275 __func__, mcr, retval);
277 return retval;
280 static int metrousb_port_probe(struct usb_serial_port *port)
282 struct metrousb_private *metro_priv;
284 metro_priv = kzalloc(sizeof(*metro_priv), GFP_KERNEL);
285 if (!metro_priv)
286 return -ENOMEM;
288 spin_lock_init(&metro_priv->lock);
290 usb_set_serial_port_data(port, metro_priv);
292 return 0;
295 static int metrousb_port_remove(struct usb_serial_port *port)
297 struct metrousb_private *metro_priv;
299 metro_priv = usb_get_serial_port_data(port);
300 kfree(metro_priv);
302 return 0;
305 static void metrousb_throttle(struct tty_struct *tty)
307 struct usb_serial_port *port = tty->driver_data;
308 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
309 unsigned long flags = 0;
311 dev_dbg(tty->dev, "%s\n", __func__);
313 /* Set the private information for the port to stop reading data. */
314 spin_lock_irqsave(&metro_priv->lock, flags);
315 metro_priv->throttled = 1;
316 spin_unlock_irqrestore(&metro_priv->lock, flags);
319 static int metrousb_tiocmget(struct tty_struct *tty)
321 unsigned long control_state = 0;
322 struct usb_serial_port *port = tty->driver_data;
323 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
324 unsigned long flags = 0;
326 dev_dbg(tty->dev, "%s\n", __func__);
328 spin_lock_irqsave(&metro_priv->lock, flags);
329 control_state = metro_priv->control_state;
330 spin_unlock_irqrestore(&metro_priv->lock, flags);
332 return control_state;
335 static int metrousb_tiocmset(struct tty_struct *tty,
336 unsigned int set, unsigned int clear)
338 struct usb_serial_port *port = tty->driver_data;
339 struct usb_serial *serial = port->serial;
340 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
341 unsigned long flags = 0;
342 unsigned long control_state = 0;
344 dev_dbg(tty->dev, "%s - set=%d, clear=%d\n", __func__, set, clear);
346 spin_lock_irqsave(&metro_priv->lock, flags);
347 control_state = metro_priv->control_state;
349 /* Set the RTS and DTR values. */
350 if (set & TIOCM_RTS)
351 control_state |= TIOCM_RTS;
352 if (set & TIOCM_DTR)
353 control_state |= TIOCM_DTR;
354 if (clear & TIOCM_RTS)
355 control_state &= ~TIOCM_RTS;
356 if (clear & TIOCM_DTR)
357 control_state &= ~TIOCM_DTR;
359 metro_priv->control_state = control_state;
360 spin_unlock_irqrestore(&metro_priv->lock, flags);
361 return metrousb_set_modem_ctrl(serial, control_state);
364 static void metrousb_unthrottle(struct tty_struct *tty)
366 struct usb_serial_port *port = tty->driver_data;
367 struct metrousb_private *metro_priv = usb_get_serial_port_data(port);
368 unsigned long flags = 0;
369 int result = 0;
371 dev_dbg(tty->dev, "%s\n", __func__);
373 /* Set the private information for the port to resume reading data. */
374 spin_lock_irqsave(&metro_priv->lock, flags);
375 metro_priv->throttled = 0;
376 spin_unlock_irqrestore(&metro_priv->lock, flags);
378 /* Submit the urb to read from the port. */
379 port->interrupt_in_urb->dev = port->serial->dev;
380 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
381 if (result)
382 dev_err(tty->dev,
383 "failed submitting interrupt in urb error code=%d\n",
384 result);
387 static struct usb_serial_driver metrousb_device = {
388 .driver = {
389 .owner = THIS_MODULE,
390 .name = "metro-usb",
392 .description = "Metrologic USB to Serial",
393 .id_table = id_table,
394 .num_ports = 1,
395 .open = metrousb_open,
396 .close = metrousb_cleanup,
397 .read_int_callback = metrousb_read_int_callback,
398 .write_int_callback = metrousb_write_int_callback,
399 .port_probe = metrousb_port_probe,
400 .port_remove = metrousb_port_remove,
401 .throttle = metrousb_throttle,
402 .unthrottle = metrousb_unthrottle,
403 .tiocmget = metrousb_tiocmget,
404 .tiocmset = metrousb_tiocmset,
407 static struct usb_serial_driver * const serial_drivers[] = {
408 &metrousb_device,
409 NULL,
412 module_usb_serial_driver(serial_drivers, id_table);
414 MODULE_LICENSE("GPL");
415 MODULE_AUTHOR("Philip Nicastro");
416 MODULE_AUTHOR("Aleksey Babahin <tamerlan311@gmail.com>");
417 MODULE_DESCRIPTION(DRIVER_DESC);
419 /* Module input parameters */
420 module_param(debug, bool, S_IRUGO | S_IWUSR);
421 MODULE_PARM_DESC(debug, "Print debug info (bool 1=on, 0=off)");