blob: baf591137b806134357daeb9e1f8fb383c5eb9c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* vi: ts=8 sw=8
2 *
3 * TI 3410/5052 USB Serial Driver
4 *
5 * Copyright (C) 2004 Texas Instruments
6 *
7 * This driver is based on the Linux io_ti driver, which is
8 * Copyright (C) 2000-2002 Inside Out Networks
9 * Copyright (C) 2001-2002 Greg Kroah-Hartman
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * For questions or problems with this driver, contact Texas Instruments
17 * technical support, or Al Borchers <alborchers@steinerpoint.com>, or
18 * Peter Berger <pberger@brimson.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/kernel.h>
22#include <linux/errno.h>
Alan Cox95da3102008-07-22 11:09:07 +010023#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/slab.h>
26#include <linux/tty.h>
27#include <linux/tty_driver.h>
28#include <linux/tty_flip.h>
29#include <linux/module.h>
30#include <linux/spinlock.h>
31#include <linux/ioctl.h>
32#include <linux/serial.h>
33#include <linux/circ_buf.h>
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080034#include <linux/mutex.h>
Alan Coxa30fa792008-07-22 11:15:17 +010035#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070037#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "ti_usb_3410_5052.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Defines */
42
43#define TI_DRIVER_VERSION "v0.9"
44#define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>"
45#define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver"
46
47#define TI_FIRMWARE_BUF_SIZE 16284
48
49#define TI_WRITE_BUF_SIZE 1024
50
51#define TI_TRANSFER_TIMEOUT 2
52
53#define TI_DEFAULT_LOW_LATENCY 0
54#define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */
55
56/* supported setserial flags */
57#define TI_SET_SERIAL_FLAGS (ASYNC_LOW_LATENCY)
58
59/* read urb states */
60#define TI_READ_URB_RUNNING 0
61#define TI_READ_URB_STOPPING 1
62#define TI_READ_URB_STOPPED 2
63
64#define TI_EXTRA_VID_PID_COUNT 5
65
66
67/* Structures */
68
69struct ti_port {
70 int tp_is_open;
71 __u8 tp_msr;
72 __u8 tp_lsr;
73 __u8 tp_shadow_mcr;
74 __u8 tp_uart_mode; /* 232 or 485 modes */
75 unsigned int tp_uart_base_addr;
76 int tp_flags;
77 int tp_closing_wait;/* in .01 secs */
78 struct async_icount tp_icount;
79 wait_queue_head_t tp_msr_wait; /* wait for msr change */
80 wait_queue_head_t tp_write_wait;
81 struct ti_device *tp_tdev;
82 struct usb_serial_port *tp_port;
83 spinlock_t tp_lock;
84 int tp_read_urb_state;
85 int tp_write_urb_in_use;
86 struct circ_buf *tp_write_buf;
87};
88
89struct ti_device {
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080090 struct mutex td_open_close_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int td_open_port_count;
92 struct usb_serial *td_serial;
93 int td_is_3410;
94 int td_urb_error;
95};
96
97
98/* Function Declarations */
99
100static int ti_startup(struct usb_serial *serial);
101static void ti_shutdown(struct usb_serial *serial);
Alan Cox95da3102008-07-22 11:09:07 +0100102static int ti_open(struct tty_struct *tty, struct usb_serial_port *port,
Alan Coxa30fa792008-07-22 11:15:17 +0100103 struct file *file);
Alan Cox95da3102008-07-22 11:09:07 +0100104static void ti_close(struct tty_struct *tty, struct usb_serial_port *port,
Alan Coxa30fa792008-07-22 11:15:17 +0100105 struct file *file);
Alan Cox95da3102008-07-22 11:09:07 +0100106static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
Alan Coxa30fa792008-07-22 11:15:17 +0100107 const unsigned char *data, int count);
Alan Cox95da3102008-07-22 11:09:07 +0100108static int ti_write_room(struct tty_struct *tty);
109static int ti_chars_in_buffer(struct tty_struct *tty);
110static void ti_throttle(struct tty_struct *tty);
111static void ti_unthrottle(struct tty_struct *tty);
Alan Coxa30fa792008-07-22 11:15:17 +0100112static int ti_ioctl(struct tty_struct *tty, struct file *file,
113 unsigned int cmd, unsigned long arg);
114static void ti_set_termios(struct tty_struct *tty,
115 struct usb_serial_port *port, struct ktermios *old_termios);
Alan Cox95da3102008-07-22 11:09:07 +0100116static int ti_tiocmget(struct tty_struct *tty, struct file *file);
117static int ti_tiocmset(struct tty_struct *tty, struct file *file,
Alan Coxa30fa792008-07-22 11:15:17 +0100118 unsigned int set, unsigned int clear);
Alan Cox95da3102008-07-22 11:09:07 +0100119static void ti_break(struct tty_struct *tty, int break_state);
David Howells7d12e782006-10-05 14:55:46 +0100120static void ti_interrupt_callback(struct urb *urb);
121static void ti_bulk_in_callback(struct urb *urb);
122static void ti_bulk_out_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124static void ti_recv(struct device *dev, struct tty_struct *tty,
125 unsigned char *data, int length);
126static void ti_send(struct ti_port *tport);
127static int ti_set_mcr(struct ti_port *tport, unsigned int mcr);
128static int ti_get_lsr(struct ti_port *tport);
129static int ti_get_serial_info(struct ti_port *tport,
130 struct serial_struct __user *ret_arg);
Alan Cox4a90f092008-10-13 10:39:46 +0100131static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct serial_struct __user *new_arg);
133static void ti_handle_new_msr(struct ti_port *tport, __u8 msr);
134
135static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush);
136
137static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty);
138static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty);
139
140static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
141 __u16 moduleid, __u16 value, __u8 *data, int size);
142static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
143 __u16 moduleid, __u16 value, __u8 *data, int size);
144
145static int ti_write_byte(struct ti_device *tdev, unsigned long addr,
146 __u8 mask, __u8 byte);
147
Chris Adams05a3d902009-01-11 19:48:53 +0000148static int ti_download_firmware(struct ti_device *tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150/* circular buffer */
151static struct circ_buf *ti_buf_alloc(void);
152static void ti_buf_free(struct circ_buf *cb);
153static void ti_buf_clear(struct circ_buf *cb);
154static int ti_buf_data_avail(struct circ_buf *cb);
155static int ti_buf_space_avail(struct circ_buf *cb);
156static int ti_buf_put(struct circ_buf *cb, const char *buf, int count);
157static int ti_buf_get(struct circ_buf *cb, char *buf, int count);
158
159
160/* Data */
161
162/* module parameters */
163static int debug;
164static int low_latency = TI_DEFAULT_LOW_LATENCY;
165static int closing_wait = TI_DEFAULT_CLOSING_WAIT;
166static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100167static unsigned int vendor_3410_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static ushort product_3410[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100169static unsigned int product_3410_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170static ushort vendor_5052[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100171static unsigned int vendor_5052_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static ushort product_5052[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100173static unsigned int product_5052_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/* supported devices */
176/* the array dimension is the number of default entries plus */
177/* TI_EXTRA_VID_PID_COUNT user defined entries plus 1 terminating */
178/* null entry */
Chris Adamscb7a7c62009-01-11 19:49:00 +0000179static struct usb_device_id ti_id_table_3410[7+TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000181 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000182 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
183 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
184 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
185 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
186 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100187 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
190static struct usb_device_id ti_id_table_5052[4+TI_EXTRA_VID_PID_COUNT+1] = {
191 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
192 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
193 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
194 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100195 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
Chris Adams05a3d902009-01-11 19:48:53 +0000198static struct usb_device_id ti_id_table_combined[6+2*TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000200 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000201 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
202 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
203 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
204 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
205 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
207 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
208 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
209 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100210 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 { }
212};
213
214static struct usb_driver ti_usb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .name = "ti_usb_3410_5052",
216 .probe = usb_serial_probe,
217 .disconnect = usb_serial_disconnect,
218 .id_table = ti_id_table_combined,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800219 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700222static struct usb_serial_driver ti_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700223 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700224 .owner = THIS_MODULE,
225 .name = "ti_usb_3410_5052_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700226 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700227 .description = "TI USB 3410 1 port adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100228 .usb_driver = &ti_usb_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 .id_table = ti_id_table_3410,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 .num_ports = 1,
231 .attach = ti_startup,
232 .shutdown = ti_shutdown,
233 .open = ti_open,
234 .close = ti_close,
235 .write = ti_write,
236 .write_room = ti_write_room,
237 .chars_in_buffer = ti_chars_in_buffer,
238 .throttle = ti_throttle,
239 .unthrottle = ti_unthrottle,
240 .ioctl = ti_ioctl,
241 .set_termios = ti_set_termios,
242 .tiocmget = ti_tiocmget,
243 .tiocmset = ti_tiocmset,
244 .break_ctl = ti_break,
245 .read_int_callback = ti_interrupt_callback,
246 .read_bulk_callback = ti_bulk_in_callback,
247 .write_bulk_callback = ti_bulk_out_callback,
248};
249
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700250static struct usb_serial_driver ti_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700251 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700252 .owner = THIS_MODULE,
253 .name = "ti_usb_3410_5052_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700254 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700255 .description = "TI USB 5052 2 port adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100256 .usb_driver = &ti_usb_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 .id_table = ti_id_table_5052,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .num_ports = 2,
259 .attach = ti_startup,
260 .shutdown = ti_shutdown,
261 .open = ti_open,
262 .close = ti_close,
263 .write = ti_write,
264 .write_room = ti_write_room,
265 .chars_in_buffer = ti_chars_in_buffer,
266 .throttle = ti_throttle,
267 .unthrottle = ti_unthrottle,
268 .ioctl = ti_ioctl,
269 .set_termios = ti_set_termios,
270 .tiocmget = ti_tiocmget,
271 .tiocmset = ti_tiocmset,
272 .break_ctl = ti_break,
273 .read_int_callback = ti_interrupt_callback,
274 .read_bulk_callback = ti_bulk_in_callback,
275 .write_bulk_callback = ti_bulk_out_callback,
276};
277
278
279/* Module */
280
281MODULE_AUTHOR(TI_DRIVER_AUTHOR);
282MODULE_DESCRIPTION(TI_DRIVER_DESC);
283MODULE_VERSION(TI_DRIVER_VERSION);
284MODULE_LICENSE("GPL");
285
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300286MODULE_FIRMWARE("ti_3410.fw");
287MODULE_FIRMWARE("ti_5052.fw");
Chris Adams7df52312009-01-11 19:49:11 +0000288MODULE_FIRMWARE("mts_cdma.fw");
289MODULE_FIRMWARE("mts_gsm.fw");
290MODULE_FIRMWARE("mts_edge.fw");
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292module_param(debug, bool, S_IRUGO | S_IWUSR);
293MODULE_PARM_DESC(debug, "Enable debugging, 0=no, 1=yes");
294
295module_param(low_latency, bool, S_IRUGO | S_IWUSR);
Alan Coxa30fa792008-07-22 11:15:17 +0100296MODULE_PARM_DESC(low_latency,
297 "TTY low_latency flag, 0=off, 1=on, default is off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299module_param(closing_wait, int, S_IRUGO | S_IWUSR);
Alan Coxa30fa792008-07-22 11:15:17 +0100300MODULE_PARM_DESC(closing_wait,
301 "Maximum wait for data to drain in close, in .01 secs, default is 4000");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303module_param_array(vendor_3410, ushort, &vendor_3410_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100304MODULE_PARM_DESC(vendor_3410,
305 "Vendor ids for 3410 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306module_param_array(product_3410, ushort, &product_3410_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100307MODULE_PARM_DESC(product_3410,
308 "Product ids for 3410 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309module_param_array(vendor_5052, ushort, &vendor_5052_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100310MODULE_PARM_DESC(vendor_5052,
311 "Vendor ids for 5052 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312module_param_array(product_5052, ushort, &product_5052_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100313MODULE_PARM_DESC(product_5052,
314 "Product ids for 5052 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316MODULE_DEVICE_TABLE(usb, ti_id_table_combined);
317
318
319/* Functions */
320
321static int __init ti_init(void)
322{
Chris Adams05a3d902009-01-11 19:48:53 +0000323 int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 int ret;
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /* insert extra vendor and product ids */
Chris Adams05a3d902009-01-11 19:48:53 +0000327 c = ARRAY_SIZE(ti_id_table_combined) - 2 * TI_EXTRA_VID_PID_COUNT - 1;
Tobias Klauser52950ed2005-12-11 16:20:08 +0100328 j = ARRAY_SIZE(ti_id_table_3410) - TI_EXTRA_VID_PID_COUNT - 1;
Chris Adams05a3d902009-01-11 19:48:53 +0000329 for (i = 0; i < min(vendor_3410_count, product_3410_count); i++, j++, c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 ti_id_table_3410[j].idVendor = vendor_3410[i];
331 ti_id_table_3410[j].idProduct = product_3410[i];
332 ti_id_table_3410[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Chris Adams05a3d902009-01-11 19:48:53 +0000333 ti_id_table_combined[c].idVendor = vendor_3410[i];
334 ti_id_table_combined[c].idProduct = product_3410[i];
335 ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Tobias Klauser52950ed2005-12-11 16:20:08 +0100337 j = ARRAY_SIZE(ti_id_table_5052) - TI_EXTRA_VID_PID_COUNT - 1;
Chris Adams05a3d902009-01-11 19:48:53 +0000338 for (i = 0; i < min(vendor_5052_count, product_5052_count); i++, j++, c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 ti_id_table_5052[j].idVendor = vendor_5052[i];
340 ti_id_table_5052[j].idProduct = product_5052[i];
341 ti_id_table_5052[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Chris Adams05a3d902009-01-11 19:48:53 +0000342 ti_id_table_combined[c].idVendor = vendor_5052[i];
343 ti_id_table_combined[c].idProduct = product_5052[i];
344 ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
347 ret = usb_serial_register(&ti_1port_device);
348 if (ret)
349 goto failed_1port;
350 ret = usb_serial_register(&ti_2port_device);
351 if (ret)
352 goto failed_2port;
353
354 ret = usb_register(&ti_usb_driver);
355 if (ret)
356 goto failed_usb;
357
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700358 printk(KERN_INFO KBUILD_MODNAME ": " TI_DRIVER_VERSION ":"
359 TI_DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 return 0;
362
363failed_usb:
364 usb_serial_deregister(&ti_2port_device);
365failed_2port:
366 usb_serial_deregister(&ti_1port_device);
367failed_1port:
368 return ret;
369}
370
371
372static void __exit ti_exit(void)
373{
374 usb_serial_deregister(&ti_1port_device);
375 usb_serial_deregister(&ti_2port_device);
376 usb_deregister(&ti_usb_driver);
377}
378
379
380module_init(ti_init);
381module_exit(ti_exit);
382
383
384static int ti_startup(struct usb_serial *serial)
385{
386 struct ti_device *tdev;
387 struct ti_port *tport;
388 struct usb_device *dev = serial->dev;
389 int status;
390 int i;
391
392
393 dbg("%s - product 0x%4X, num configurations %d, configuration value %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800394 __func__, le16_to_cpu(dev->descriptor.idProduct),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 dev->descriptor.bNumConfigurations,
396 dev->actconfig->desc.bConfigurationValue);
397
398 /* create device structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100399 tdev = kzalloc(sizeof(struct ti_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (tdev == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800401 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return -ENOMEM;
403 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800404 mutex_init(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 tdev->td_serial = serial;
406 usb_set_serial_data(serial, tdev);
407
408 /* determine device type */
409 if (usb_match_id(serial->interface, ti_id_table_3410))
410 tdev->td_is_3410 = 1;
Alan Coxa30fa792008-07-22 11:15:17 +0100411 dbg("%s - device type is %s", __func__,
412 tdev->td_is_3410 ? "3410" : "5052");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /* if we have only 1 configuration, download firmware */
415 if (dev->descriptor.bNumConfigurations == 1) {
Chris Adams05a3d902009-01-11 19:48:53 +0000416 if ((status = ti_download_firmware(tdev)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 goto free_tdev;
418
419 /* 3410 must be reset, 5052 resets itself */
420 if (tdev->td_is_3410) {
421 msleep_interruptible(100);
422 usb_reset_device(dev);
423 }
424
425 status = -ENODEV;
426 goto free_tdev;
Alan Coxa30fa792008-07-22 11:15:17 +0100427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100429 /* the second configuration must be set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (dev->actconfig->desc.bConfigurationValue == TI_BOOT_CONFIG) {
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100431 status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG);
432 status = status ? status : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 goto free_tdev;
434 }
435
436 /* set up port structures */
437 for (i = 0; i < serial->num_ports; ++i) {
Burman Yan7ac9da12006-11-22 20:54:38 +0200438 tport = kzalloc(sizeof(struct ti_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (tport == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800440 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 status = -ENOMEM;
442 goto free_tports;
443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 spin_lock_init(&tport->tp_lock);
Alan Coxa30fa792008-07-22 11:15:17 +0100445 tport->tp_uart_base_addr = (i == 0 ?
446 TI_UART1_BASE_ADDR : TI_UART2_BASE_ADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 tport->tp_flags = low_latency ? ASYNC_LOW_LATENCY : 0;
448 tport->tp_closing_wait = closing_wait;
449 init_waitqueue_head(&tport->tp_msr_wait);
450 init_waitqueue_head(&tport->tp_write_wait);
451 tport->tp_write_buf = ti_buf_alloc();
452 if (tport->tp_write_buf == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800453 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 kfree(tport);
455 status = -ENOMEM;
456 goto free_tports;
457 }
458 tport->tp_port = serial->port[i];
459 tport->tp_tdev = tdev;
460 usb_set_serial_port_data(serial->port[i], tport);
461 tport->tp_uart_mode = 0; /* default is RS232 */
462 }
Alan Coxa30fa792008-07-22 11:15:17 +0100463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return 0;
465
466free_tports:
Alan Coxa30fa792008-07-22 11:15:17 +0100467 for (--i; i >= 0; --i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 tport = usb_get_serial_port_data(serial->port[i]);
469 ti_buf_free(tport->tp_write_buf);
470 kfree(tport);
471 usb_set_serial_port_data(serial->port[i], NULL);
472 }
473free_tdev:
474 kfree(tdev);
475 usb_set_serial_data(serial, NULL);
476 return status;
477}
478
479
480static void ti_shutdown(struct usb_serial *serial)
481{
482 int i;
483 struct ti_device *tdev = usb_get_serial_data(serial);
484 struct ti_port *tport;
485
Harvey Harrison441b62c2008-03-03 16:08:34 -0800486 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Alan Coxa30fa792008-07-22 11:15:17 +0100488 for (i = 0; i < serial->num_ports; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 tport = usb_get_serial_port_data(serial->port[i]);
490 if (tport) {
491 ti_buf_free(tport->tp_write_buf);
492 kfree(tport);
493 usb_set_serial_port_data(serial->port[i], NULL);
494 }
495 }
496
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700497 kfree(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 usb_set_serial_data(serial, NULL);
499}
500
501
Alan Cox95da3102008-07-22 11:09:07 +0100502static int ti_open(struct tty_struct *tty,
503 struct usb_serial_port *port, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 struct ti_port *tport = usb_get_serial_port_data(port);
506 struct ti_device *tdev;
507 struct usb_device *dev;
508 struct urb *urb;
509 int port_number;
510 int status;
Alan Coxa30fa792008-07-22 11:15:17 +0100511 __u16 open_settings = (__u8)(TI_PIPE_MODE_CONTINOUS |
512 TI_PIPE_TIMEOUT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 (TI_TRANSFER_TIMEOUT << 2));
514
Harvey Harrison441b62c2008-03-03 16:08:34 -0800515 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if (tport == NULL)
518 return -ENODEV;
519
520 dev = port->serial->dev;
521 tdev = tport->tp_tdev;
522
523 /* only one open on any port on a device at a time */
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800524 if (mutex_lock_interruptible(&tdev->td_open_close_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return -ERESTARTSYS;
526
Alan Cox95da3102008-07-22 11:09:07 +0100527 if (tty)
528 tty->low_latency =
529 (tport->tp_flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 port_number = port->number - port->serial->minor;
532
533 memset(&(tport->tp_icount), 0x00, sizeof(tport->tp_icount));
534
535 tport->tp_msr = 0;
536 tport->tp_shadow_mcr |= (TI_MCR_RTS | TI_MCR_DTR);
537
538 /* start interrupt urb the first time a port is opened on this device */
539 if (tdev->td_open_port_count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800540 dbg("%s - start interrupt in urb", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 urb = tdev->td_serial->port[0]->interrupt_in_urb;
542 if (!urb) {
Alan Coxa30fa792008-07-22 11:15:17 +0100543 dev_err(&port->dev, "%s - no interrupt urb\n",
544 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 status = -EINVAL;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800546 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548 urb->complete = ti_interrupt_callback;
549 urb->context = tdev;
550 urb->dev = dev;
551 status = usb_submit_urb(urb, GFP_KERNEL);
552 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100553 dev_err(&port->dev,
554 "%s - submit interrupt urb failed, %d\n",
555 __func__, status);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800556 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 }
559
Alan Cox95da3102008-07-22 11:09:07 +0100560 if (tty)
561 ti_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Harvey Harrison441b62c2008-03-03 16:08:34 -0800563 dbg("%s - sending TI_OPEN_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
565 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
566 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100567 dev_err(&port->dev, "%s - cannot send open command, %d\n",
568 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 goto unlink_int_urb;
570 }
571
Harvey Harrison441b62c2008-03-03 16:08:34 -0800572 dbg("%s - sending TI_START_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 status = ti_command_out_sync(tdev, TI_START_PORT,
574 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
575 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100576 dev_err(&port->dev, "%s - cannot send start command, %d\n",
577 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 goto unlink_int_urb;
579 }
580
Harvey Harrison441b62c2008-03-03 16:08:34 -0800581 dbg("%s - sending TI_PURGE_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
583 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_INPUT, NULL, 0);
584 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100585 dev_err(&port->dev, "%s - cannot clear input buffers, %d\n",
586 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 goto unlink_int_urb;
588 }
589 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
590 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_OUTPUT, NULL, 0);
591 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100592 dev_err(&port->dev, "%s - cannot clear output buffers, %d\n",
593 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 goto unlink_int_urb;
595 }
596
597 /* reset the data toggle on the bulk endpoints to work around bug in
598 * host controllers where things get out of sync some times */
599 usb_clear_halt(dev, port->write_urb->pipe);
600 usb_clear_halt(dev, port->read_urb->pipe);
601
Alan Cox95da3102008-07-22 11:09:07 +0100602 if (tty)
603 ti_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Harvey Harrison441b62c2008-03-03 16:08:34 -0800605 dbg("%s - sending TI_OPEN_PORT (2)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
607 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
608 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100609 dev_err(&port->dev, "%s - cannot send open command (2), %d\n",
610 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 goto unlink_int_urb;
612 }
613
Harvey Harrison441b62c2008-03-03 16:08:34 -0800614 dbg("%s - sending TI_START_PORT (2)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 status = ti_command_out_sync(tdev, TI_START_PORT,
616 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
617 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100618 dev_err(&port->dev, "%s - cannot send start command (2), %d\n",
619 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 goto unlink_int_urb;
621 }
622
623 /* start read urb */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800624 dbg("%s - start read urb", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 urb = port->read_urb;
626 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800627 dev_err(&port->dev, "%s - no read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 status = -EINVAL;
629 goto unlink_int_urb;
630 }
631 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
632 urb->complete = ti_bulk_in_callback;
633 urb->context = tport;
634 urb->dev = dev;
635 status = usb_submit_urb(urb, GFP_KERNEL);
636 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100637 dev_err(&port->dev, "%s - submit read urb failed, %d\n",
638 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 goto unlink_int_urb;
640 }
641
642 tport->tp_is_open = 1;
643 ++tdev->td_open_port_count;
644
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800645 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647unlink_int_urb:
648 if (tdev->td_open_port_count == 0)
649 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800650release_lock:
651 mutex_unlock(&tdev->td_open_close_lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800652 dbg("%s - exit %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return status;
654}
655
656
Alan Cox95da3102008-07-22 11:09:07 +0100657static void ti_close(struct tty_struct *tty, struct usb_serial_port *port,
658 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 struct ti_device *tdev;
661 struct ti_port *tport;
662 int port_number;
663 int status;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800664 int do_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Harvey Harrison441b62c2008-03-03 16:08:34 -0800666 dbg("%s - port %d", __func__, port->number);
Alan Coxa30fa792008-07-22 11:15:17 +0100667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 tdev = usb_get_serial_data(port->serial);
669 tport = usb_get_serial_port_data(port);
670 if (tdev == NULL || tport == NULL)
671 return;
672
673 tport->tp_is_open = 0;
674
675 ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 1);
676
677 usb_kill_urb(port->read_urb);
678 usb_kill_urb(port->write_urb);
679 tport->tp_write_urb_in_use = 0;
680
681 port_number = port->number - port->serial->minor;
682
Harvey Harrison441b62c2008-03-03 16:08:34 -0800683 dbg("%s - sending TI_CLOSE_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 status = ti_command_out_sync(tdev, TI_CLOSE_PORT,
685 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
686 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100687 dev_err(&port->dev,
688 "%s - cannot send close port command, %d\n"
689 , __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800691 /* if mutex_lock is interrupted, continue anyway */
692 do_unlock = !mutex_lock_interruptible(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 --tport->tp_tdev->td_open_port_count;
694 if (tport->tp_tdev->td_open_port_count <= 0) {
695 /* last port is closed, shut down interrupt urb */
696 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
697 tport->tp_tdev->td_open_port_count = 0;
698 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800699 if (do_unlock)
700 mutex_unlock(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Harvey Harrison441b62c2008-03-03 16:08:34 -0800702 dbg("%s - exit", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
705
Alan Cox95da3102008-07-22 11:09:07 +0100706static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
707 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
709 struct ti_port *tport = usb_get_serial_port_data(port);
710 unsigned long flags;
711
Harvey Harrison441b62c2008-03-03 16:08:34 -0800712 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800715 dbg("%s - write request of 0 bytes", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return 0;
717 }
718
719 if (tport == NULL || !tport->tp_is_open)
720 return -ENODEV;
721
722 spin_lock_irqsave(&tport->tp_lock, flags);
723 count = ti_buf_put(tport->tp_write_buf, data, count);
724 spin_unlock_irqrestore(&tport->tp_lock, flags);
725
726 ti_send(tport);
727
728 return count;
729}
730
731
Alan Cox95da3102008-07-22 11:09:07 +0100732static int ti_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Alan Cox95da3102008-07-22 11:09:07 +0100734 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct ti_port *tport = usb_get_serial_port_data(port);
736 int room = 0;
737 unsigned long flags;
738
Harvey Harrison441b62c2008-03-03 16:08:34 -0800739 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 if (tport == NULL)
742 return -ENODEV;
Alan Coxa30fa792008-07-22 11:15:17 +0100743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 spin_lock_irqsave(&tport->tp_lock, flags);
745 room = ti_buf_space_avail(tport->tp_write_buf);
746 spin_unlock_irqrestore(&tport->tp_lock, flags);
747
Harvey Harrison441b62c2008-03-03 16:08:34 -0800748 dbg("%s - returns %d", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return room;
750}
751
752
Alan Cox95da3102008-07-22 11:09:07 +0100753static int ti_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Alan Cox95da3102008-07-22 11:09:07 +0100755 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 struct ti_port *tport = usb_get_serial_port_data(port);
757 int chars = 0;
758 unsigned long flags;
759
Harvey Harrison441b62c2008-03-03 16:08:34 -0800760 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (tport == NULL)
763 return -ENODEV;
764
765 spin_lock_irqsave(&tport->tp_lock, flags);
766 chars = ti_buf_data_avail(tport->tp_write_buf);
767 spin_unlock_irqrestore(&tport->tp_lock, flags);
768
Harvey Harrison441b62c2008-03-03 16:08:34 -0800769 dbg("%s - returns %d", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return chars;
771}
772
773
Alan Cox95da3102008-07-22 11:09:07 +0100774static void ti_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Alan Cox95da3102008-07-22 11:09:07 +0100776 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Harvey Harrison441b62c2008-03-03 16:08:34 -0800779 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 if (tport == NULL)
782 return;
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (I_IXOFF(tty) || C_CRTSCTS(tty))
785 ti_stop_read(tport, tty);
786
787}
788
789
Alan Cox95da3102008-07-22 11:09:07 +0100790static void ti_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Alan Cox95da3102008-07-22 11:09:07 +0100792 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int status;
795
Harvey Harrison441b62c2008-03-03 16:08:34 -0800796 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 if (tport == NULL)
799 return;
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (I_IXOFF(tty) || C_CRTSCTS(tty)) {
802 status = ti_restart_read(tport, tty);
803 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100804 dev_err(&port->dev, "%s - cannot restart read, %d\n",
805 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807}
808
809
Alan Cox95da3102008-07-22 11:09:07 +0100810static int ti_ioctl(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 unsigned int cmd, unsigned long arg)
812{
Alan Cox95da3102008-07-22 11:09:07 +0100813 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 struct ti_port *tport = usb_get_serial_port_data(port);
815 struct async_icount cnow;
816 struct async_icount cprev;
817
Harvey Harrison441b62c2008-03-03 16:08:34 -0800818 dbg("%s - port %d, cmd = 0x%04X", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 if (tport == NULL)
821 return -ENODEV;
822
823 switch (cmd) {
Alan Coxa30fa792008-07-22 11:15:17 +0100824 case TIOCGSERIAL:
825 dbg("%s - (%d) TIOCGSERIAL", __func__, port->number);
826 return ti_get_serial_info(tport,
827 (struct serial_struct __user *)arg);
828 case TIOCSSERIAL:
829 dbg("%s - (%d) TIOCSSERIAL", __func__, port->number);
Alan Cox4a90f092008-10-13 10:39:46 +0100830 return ti_set_serial_info(tty, tport,
831 (struct serial_struct __user *)arg);
Alan Coxa30fa792008-07-22 11:15:17 +0100832 case TIOCMIWAIT:
833 dbg("%s - (%d) TIOCMIWAIT", __func__, port->number);
834 cprev = tport->tp_icount;
835 while (1) {
836 interruptible_sleep_on(&tport->tp_msr_wait);
837 if (signal_pending(current))
838 return -ERESTARTSYS;
839 cnow = tport->tp_icount;
840 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
841 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
842 return -EIO; /* no change => error */
843 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
844 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
845 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
846 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)))
847 return 0;
848 cprev = cnow;
849 }
850 break;
851 case TIOCGICOUNT:
852 dbg("%s - (%d) TIOCGICOUNT RX=%d, TX=%d",
853 __func__, port->number,
854 tport->tp_icount.rx, tport->tp_icount.tx);
855 if (copy_to_user((void __user *)arg, &tport->tp_icount,
856 sizeof(tport->tp_icount)))
857 return -EFAULT;
858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return -ENOIOCTLCMD;
861}
862
863
Alan Cox95da3102008-07-22 11:09:07 +0100864static void ti_set_termios(struct tty_struct *tty,
865 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct ti_uart_config *config;
Alan Coxa30fa792008-07-22 11:15:17 +0100869 tcflag_t cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 int baud;
871 int status;
872 int port_number = port->number - port->serial->minor;
873 unsigned int mcr;
874
Harvey Harrison441b62c2008-03-03 16:08:34 -0800875 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 cflag = tty->termios->c_cflag;
878 iflag = tty->termios->c_iflag;
879
Harvey Harrison441b62c2008-03-03 16:08:34 -0800880 dbg("%s - cflag %08x, iflag %08x", __func__, cflag, iflag);
Alan Coxa30fa792008-07-22 11:15:17 +0100881 dbg("%s - old clfag %08x, old iflag %08x", __func__,
882 old_termios->c_cflag, old_termios->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 if (tport == NULL)
885 return;
886
887 config = kmalloc(sizeof(*config), GFP_KERNEL);
888 if (!config) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800889 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return;
891 }
892
893 config->wFlags = 0;
894
895 /* these flags must be set */
896 config->wFlags |= TI_UART_ENABLE_MS_INTS;
897 config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA;
898 config->bUartMode = (__u8)(tport->tp_uart_mode);
899
900 switch (cflag & CSIZE) {
Alan Coxa30fa792008-07-22 11:15:17 +0100901 case CS5:
902 config->bDataBits = TI_UART_5_DATA_BITS;
903 break;
904 case CS6:
905 config->bDataBits = TI_UART_6_DATA_BITS;
906 break;
907 case CS7:
908 config->bDataBits = TI_UART_7_DATA_BITS;
909 break;
910 default:
911 case CS8:
912 config->bDataBits = TI_UART_8_DATA_BITS;
913 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915
Alan Cox537699e2008-01-03 17:03:11 +0000916 /* CMSPAR isn't supported by this driver */
917 tty->termios->c_cflag &= ~CMSPAR;
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (cflag & PARENB) {
920 if (cflag & PARODD) {
921 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
922 config->bParity = TI_UART_ODD_PARITY;
923 } else {
924 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
925 config->bParity = TI_UART_EVEN_PARITY;
926 }
927 } else {
928 config->wFlags &= ~TI_UART_ENABLE_PARITY_CHECKING;
Alan Coxa30fa792008-07-22 11:15:17 +0100929 config->bParity = TI_UART_NO_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
932 if (cflag & CSTOPB)
933 config->bStopBits = TI_UART_2_STOP_BITS;
934 else
935 config->bStopBits = TI_UART_1_STOP_BITS;
936
937 if (cflag & CRTSCTS) {
938 /* RTS flow control must be off to drop RTS for baud rate B0 */
939 if ((cflag & CBAUD) != B0)
940 config->wFlags |= TI_UART_ENABLE_RTS_IN;
941 config->wFlags |= TI_UART_ENABLE_CTS_OUT;
942 } else {
943 tty->hw_stopped = 0;
944 ti_restart_read(tport, tty);
945 }
946
947 if (I_IXOFF(tty) || I_IXON(tty)) {
948 config->cXon = START_CHAR(tty);
949 config->cXoff = STOP_CHAR(tty);
950
951 if (I_IXOFF(tty))
952 config->wFlags |= TI_UART_ENABLE_X_IN;
953 else
954 ti_restart_read(tport, tty);
955
956 if (I_IXON(tty))
957 config->wFlags |= TI_UART_ENABLE_X_OUT;
958 }
959
960 baud = tty_get_baud_rate(tty);
Alan Cox537699e2008-01-03 17:03:11 +0000961 if (!baud)
962 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (tport->tp_tdev->td_is_3410)
964 config->wBaudRate = (__u16)((923077 + baud/2) / baud);
965 else
966 config->wBaudRate = (__u16)((461538 + baud/2) / baud);
967
Alan Cox537699e2008-01-03 17:03:11 +0000968 /* FIXME: Should calculate resulting baud here and report it back */
969 if ((cflag & CBAUD) != B0)
970 tty_encode_baud_rate(tty, baud, baud);
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 dbg("%s - BaudRate=%d, wBaudRate=%d, wFlags=0x%04X, bDataBits=%d, bParity=%d, bStopBits=%d, cXon=%d, cXoff=%d, bUartMode=%d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800973 __func__, baud, config->wBaudRate, config->wFlags, config->bDataBits, config->bParity, config->bStopBits, config->cXon, config->cXoff, config->bUartMode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 cpu_to_be16s(&config->wBaudRate);
976 cpu_to_be16s(&config->wFlags);
977
978 status = ti_command_out_sync(tport->tp_tdev, TI_SET_CONFIG,
979 (__u8)(TI_UART1_PORT + port_number), 0, (__u8 *)config,
980 sizeof(*config));
981 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100982 dev_err(&port->dev, "%s - cannot set config on port %d, %d\n",
983 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 /* SET_CONFIG asserts RTS and DTR, reset them correctly */
986 mcr = tport->tp_shadow_mcr;
987 /* if baud rate is B0, clear RTS and DTR */
988 if ((cflag & CBAUD) == B0)
989 mcr &= ~(TI_MCR_DTR | TI_MCR_RTS);
990 status = ti_set_mcr(tport, mcr);
991 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100992 dev_err(&port->dev,
993 "%s - cannot set modem control on port %d, %d\n",
994 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 kfree(config);
997}
998
999
Alan Cox95da3102008-07-22 11:09:07 +01001000static int ti_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Alan Cox95da3102008-07-22 11:09:07 +01001002 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 struct ti_port *tport = usb_get_serial_port_data(port);
1004 unsigned int result;
1005 unsigned int msr;
1006 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001007 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Harvey Harrison441b62c2008-03-03 16:08:34 -08001009 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 if (tport == NULL)
1012 return -ENODEV;
1013
Alan Cox04ca89d2008-02-20 21:41:40 +00001014 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 msr = tport->tp_msr;
1016 mcr = tport->tp_shadow_mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001017 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0)
1020 | ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0)
1021 | ((mcr & TI_MCR_LOOP) ? TIOCM_LOOP : 0)
1022 | ((msr & TI_MSR_CTS) ? TIOCM_CTS : 0)
1023 | ((msr & TI_MSR_CD) ? TIOCM_CAR : 0)
1024 | ((msr & TI_MSR_RI) ? TIOCM_RI : 0)
1025 | ((msr & TI_MSR_DSR) ? TIOCM_DSR : 0);
1026
Harvey Harrison441b62c2008-03-03 16:08:34 -08001027 dbg("%s - 0x%04X", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 return result;
1030}
1031
1032
Alan Cox95da3102008-07-22 11:09:07 +01001033static int ti_tiocmset(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 unsigned int set, unsigned int clear)
1035{
Alan Cox95da3102008-07-22 11:09:07 +01001036 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 struct ti_port *tport = usb_get_serial_port_data(port);
1038 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001039 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Harvey Harrison441b62c2008-03-03 16:08:34 -08001041 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 if (tport == NULL)
1044 return -ENODEV;
1045
Alan Cox04ca89d2008-02-20 21:41:40 +00001046 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 mcr = tport->tp_shadow_mcr;
1048
1049 if (set & TIOCM_RTS)
1050 mcr |= TI_MCR_RTS;
1051 if (set & TIOCM_DTR)
1052 mcr |= TI_MCR_DTR;
1053 if (set & TIOCM_LOOP)
1054 mcr |= TI_MCR_LOOP;
1055
1056 if (clear & TIOCM_RTS)
1057 mcr &= ~TI_MCR_RTS;
1058 if (clear & TIOCM_DTR)
1059 mcr &= ~TI_MCR_DTR;
1060 if (clear & TIOCM_LOOP)
1061 mcr &= ~TI_MCR_LOOP;
Alan Cox04ca89d2008-02-20 21:41:40 +00001062 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 return ti_set_mcr(tport, mcr);
1065}
1066
1067
Alan Cox95da3102008-07-22 11:09:07 +01001068static void ti_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Alan Cox95da3102008-07-22 11:09:07 +01001070 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 struct ti_port *tport = usb_get_serial_port_data(port);
1072 int status;
1073
Harvey Harrison441b62c2008-03-03 16:08:34 -08001074 dbg("%s - state = %d", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (tport == NULL)
1077 return;
1078
1079 ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 0);
1080
1081 status = ti_write_byte(tport->tp_tdev,
1082 tport->tp_uart_base_addr + TI_UART_OFFSET_LCR,
1083 TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0);
1084
1085 if (status)
Harvey Harrison441b62c2008-03-03 16:08:34 -08001086 dbg("%s - error setting break, %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
1089
David Howells7d12e782006-10-05 14:55:46 +01001090static void ti_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Ming Leicdc97792008-02-24 18:41:47 +08001092 struct ti_device *tdev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct usb_serial_port *port;
1094 struct usb_serial *serial = tdev->td_serial;
1095 struct ti_port *tport;
1096 struct device *dev = &urb->dev->dev;
1097 unsigned char *data = urb->transfer_buffer;
1098 int length = urb->actual_length;
1099 int port_number;
1100 int function;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001101 int status = urb->status;
1102 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 __u8 msr;
1104
Harvey Harrison441b62c2008-03-03 16:08:34 -08001105 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001107 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 case 0:
1109 break;
1110 case -ECONNRESET:
1111 case -ENOENT:
1112 case -ESHUTDOWN:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001113 dbg("%s - urb shutting down, %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 tdev->td_urb_error = 1;
1115 return;
1116 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001117 dev_err(dev, "%s - nonzero urb status, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001118 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 tdev->td_urb_error = 1;
1120 goto exit;
1121 }
1122
1123 if (length != 2) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001124 dbg("%s - bad packet size, %d", __func__, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 goto exit;
1126 }
1127
1128 if (data[0] == TI_CODE_HARDWARE_ERROR) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001129 dev_err(dev, "%s - hardware error, %d\n", __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 goto exit;
1131 }
1132
1133 port_number = TI_GET_PORT_FROM_CODE(data[0]);
1134 function = TI_GET_FUNC_FROM_CODE(data[0]);
1135
Alan Coxa30fa792008-07-22 11:15:17 +01001136 dbg("%s - port_number %d, function %d, data 0x%02X",
1137 __func__, port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 if (port_number >= serial->num_ports) {
Alan Coxa30fa792008-07-22 11:15:17 +01001140 dev_err(dev, "%s - bad port number, %d\n",
1141 __func__, port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 goto exit;
1143 }
1144
1145 port = serial->port[port_number];
1146
1147 tport = usb_get_serial_port_data(port);
1148 if (!tport)
1149 goto exit;
1150
1151 switch (function) {
1152 case TI_CODE_DATA_ERROR:
Alan Coxa30fa792008-07-22 11:15:17 +01001153 dev_err(dev, "%s - DATA ERROR, port %d, data 0x%02X\n",
1154 __func__, port_number, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 break;
1156
1157 case TI_CODE_MODEM_STATUS:
1158 msr = data[1];
Harvey Harrison441b62c2008-03-03 16:08:34 -08001159 dbg("%s - port %d, msr 0x%02X", __func__, port_number, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 ti_handle_new_msr(tport, msr);
1161 break;
1162
1163 default:
Alan Coxa30fa792008-07-22 11:15:17 +01001164 dev_err(dev, "%s - unknown interrupt code, 0x%02X\n",
1165 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 break;
1167 }
1168
1169exit:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001170 retval = usb_submit_urb(urb, GFP_ATOMIC);
1171 if (retval)
1172 dev_err(dev, "%s - resubmit interrupt urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001173 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
1176
David Howells7d12e782006-10-05 14:55:46 +01001177static void ti_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Ming Leicdc97792008-02-24 18:41:47 +08001179 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 struct usb_serial_port *port = tport->tp_port;
1181 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001182 int status = urb->status;
1183 int retval = 0;
Alan Cox4a90f092008-10-13 10:39:46 +01001184 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Harvey Harrison441b62c2008-03-03 16:08:34 -08001186 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001188 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 case 0:
1190 break;
1191 case -ECONNRESET:
1192 case -ENOENT:
1193 case -ESHUTDOWN:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001194 dbg("%s - urb shutting down, %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 tport->tp_tdev->td_urb_error = 1;
1196 wake_up_interruptible(&tport->tp_write_wait);
1197 return;
1198 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001199 dev_err(dev, "%s - nonzero urb status, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001200 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 tport->tp_tdev->td_urb_error = 1;
1202 wake_up_interruptible(&tport->tp_write_wait);
1203 }
1204
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001205 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 goto exit;
1207
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001208 if (status) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001209 dev_err(dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return;
1211 }
1212
Alan Cox4a90f092008-10-13 10:39:46 +01001213 tty = tty_port_tty_get(&port->port);
1214 if (tty && urb->actual_length) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001215 usb_serial_debug_data(debug, dev, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 urb->actual_length, urb->transfer_buffer);
1217
1218 if (!tport->tp_is_open)
Harvey Harrison441b62c2008-03-03 16:08:34 -08001219 dbg("%s - port closed, dropping data", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 else
Alan Cox4a90f092008-10-13 10:39:46 +01001221 ti_recv(&urb->dev->dev, tty,
Alan Coxa30fa792008-07-22 11:15:17 +01001222 urb->transfer_buffer,
1223 urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 spin_lock(&tport->tp_lock);
1226 tport->tp_icount.rx += urb->actual_length;
1227 spin_unlock(&tport->tp_lock);
Alan Cox4a90f092008-10-13 10:39:46 +01001228 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
1231exit:
1232 /* continue to read unless stopping */
1233 spin_lock(&tport->tp_lock);
1234 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING) {
1235 urb->dev = port->serial->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001236 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 } else if (tport->tp_read_urb_state == TI_READ_URB_STOPPING) {
1238 tport->tp_read_urb_state = TI_READ_URB_STOPPED;
1239 }
1240 spin_unlock(&tport->tp_lock);
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001241 if (retval)
1242 dev_err(dev, "%s - resubmit read urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001243 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
1246
David Howells7d12e782006-10-05 14:55:46 +01001247static void ti_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Ming Leicdc97792008-02-24 18:41:47 +08001249 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 struct usb_serial_port *port = tport->tp_port;
1251 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001252 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Harvey Harrison441b62c2008-03-03 16:08:34 -08001254 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 tport->tp_write_urb_in_use = 0;
1257
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001258 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 case 0:
1260 break;
1261 case -ECONNRESET:
1262 case -ENOENT:
1263 case -ESHUTDOWN:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001264 dbg("%s - urb shutting down, %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 tport->tp_tdev->td_urb_error = 1;
1266 wake_up_interruptible(&tport->tp_write_wait);
1267 return;
1268 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001269 dev_err(dev, "%s - nonzero urb status, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001270 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 tport->tp_tdev->td_urb_error = 1;
1272 wake_up_interruptible(&tport->tp_write_wait);
1273 }
1274
1275 /* send any buffered data */
1276 ti_send(tport);
1277}
1278
1279
1280static void ti_recv(struct device *dev, struct tty_struct *tty,
1281 unsigned char *data, int length)
1282{
1283 int cnt;
1284
1285 do {
Alan Cox33f0f882006-01-09 20:54:13 -08001286 cnt = tty_buffer_request_room(tty, length);
1287 if (cnt < length) {
Alan Coxa30fa792008-07-22 11:15:17 +01001288 dev_err(dev, "%s - dropping data, %d bytes lost\n",
1289 __func__, length - cnt);
1290 if (cnt == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08001291 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
Alan Cox33f0f882006-01-09 20:54:13 -08001293 tty_insert_flip_string(tty, data, cnt);
1294 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 data += cnt;
1296 length -= cnt;
1297 } while (length > 0);
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301
1302static void ti_send(struct ti_port *tport)
1303{
1304 int count, result;
1305 struct usb_serial_port *port = tport->tp_port;
Alan Cox4a90f092008-10-13 10:39:46 +01001306 struct tty_struct *tty = tty_port_tty_get(&port->port); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 unsigned long flags;
1308
1309
Harvey Harrison441b62c2008-03-03 16:08:34 -08001310 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 spin_lock_irqsave(&tport->tp_lock, flags);
1313
Alan Cox4a90f092008-10-13 10:39:46 +01001314 if (tport->tp_write_urb_in_use)
1315 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 count = ti_buf_get(tport->tp_write_buf,
1318 port->write_urb->transfer_buffer,
1319 port->bulk_out_size);
1320
Alan Cox4a90f092008-10-13 10:39:46 +01001321 if (count == 0)
1322 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 tport->tp_write_urb_in_use = 1;
1325
1326 spin_unlock_irqrestore(&tport->tp_lock, flags);
1327
Alan Coxa30fa792008-07-22 11:15:17 +01001328 usb_serial_debug_data(debug, &port->dev, __func__, count,
1329 port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1332 usb_sndbulkpipe(port->serial->dev,
1333 port->bulk_out_endpointAddress),
1334 port->write_urb->transfer_buffer, count,
1335 ti_bulk_out_callback, tport);
1336
1337 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
1338 if (result) {
Alan Coxa30fa792008-07-22 11:15:17 +01001339 dev_err(&port->dev, "%s - submit write urb failed, %d\n",
1340 __func__, result);
1341 tport->tp_write_urb_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /* TODO: reschedule ti_send */
1343 } else {
1344 spin_lock_irqsave(&tport->tp_lock, flags);
1345 tport->tp_icount.tx += count;
1346 spin_unlock_irqrestore(&tport->tp_lock, flags);
1347 }
1348
1349 /* more room in the buffer for new writes, wakeup */
1350 if (tty)
1351 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +01001352 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 wake_up_interruptible(&tport->tp_write_wait);
Alan Cox4a90f092008-10-13 10:39:46 +01001354 return;
1355unlock:
1356 spin_unlock_irqrestore(&tport->tp_lock, flags);
1357 tty_kref_put(tty);
1358 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
1361
1362static int ti_set_mcr(struct ti_port *tport, unsigned int mcr)
1363{
Alan Cox04ca89d2008-02-20 21:41:40 +00001364 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 int status;
1366
1367 status = ti_write_byte(tport->tp_tdev,
1368 tport->tp_uart_base_addr + TI_UART_OFFSET_MCR,
1369 TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr);
1370
Alan Cox04ca89d2008-02-20 21:41:40 +00001371 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (!status)
1373 tport->tp_shadow_mcr = mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001374 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 return status;
1377}
1378
1379
1380static int ti_get_lsr(struct ti_port *tport)
1381{
Alan Coxa30fa792008-07-22 11:15:17 +01001382 int size, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 struct ti_device *tdev = tport->tp_tdev;
1384 struct usb_serial_port *port = tport->tp_port;
1385 int port_number = port->number - port->serial->minor;
1386 struct ti_port_status *data;
1387
Harvey Harrison441b62c2008-03-03 16:08:34 -08001388 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 size = sizeof(struct ti_port_status);
1391 data = kmalloc(size, GFP_KERNEL);
1392 if (!data) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001393 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 return -ENOMEM;
1395 }
1396
1397 status = ti_command_in_sync(tdev, TI_GET_PORT_STATUS,
1398 (__u8)(TI_UART1_PORT+port_number), 0, (__u8 *)data, size);
1399 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001400 dev_err(&port->dev,
1401 "%s - get port status command failed, %d\n",
1402 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 goto free_data;
1404 }
1405
Harvey Harrison441b62c2008-03-03 16:08:34 -08001406 dbg("%s - lsr 0x%02X", __func__, data->bLSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 tport->tp_lsr = data->bLSR;
1409
1410free_data:
1411 kfree(data);
1412 return status;
1413}
1414
1415
1416static int ti_get_serial_info(struct ti_port *tport,
1417 struct serial_struct __user *ret_arg)
1418{
1419 struct usb_serial_port *port = tport->tp_port;
1420 struct serial_struct ret_serial;
1421
1422 if (!ret_arg)
1423 return -EFAULT;
1424
1425 memset(&ret_serial, 0, sizeof(ret_serial));
1426
1427 ret_serial.type = PORT_16550A;
1428 ret_serial.line = port->serial->minor;
1429 ret_serial.port = port->number - port->serial->minor;
1430 ret_serial.flags = tport->tp_flags;
1431 ret_serial.xmit_fifo_size = TI_WRITE_BUF_SIZE;
1432 ret_serial.baud_base = tport->tp_tdev->td_is_3410 ? 921600 : 460800;
1433 ret_serial.closing_wait = tport->tp_closing_wait;
1434
1435 if (copy_to_user(ret_arg, &ret_serial, sizeof(*ret_arg)))
1436 return -EFAULT;
1437
1438 return 0;
1439}
1440
1441
Alan Cox4a90f092008-10-13 10:39:46 +01001442static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 struct serial_struct __user *new_arg)
1444{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 struct serial_struct new_serial;
1446
1447 if (copy_from_user(&new_serial, new_arg, sizeof(new_serial)))
1448 return -EFAULT;
1449
1450 tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS;
Alan Cox4a90f092008-10-13 10:39:46 +01001451 tty->low_latency = (tport->tp_flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 tport->tp_closing_wait = new_serial.closing_wait;
1453
1454 return 0;
1455}
1456
1457
1458static void ti_handle_new_msr(struct ti_port *tport, __u8 msr)
1459{
1460 struct async_icount *icount;
1461 struct tty_struct *tty;
1462 unsigned long flags;
1463
Harvey Harrison441b62c2008-03-03 16:08:34 -08001464 dbg("%s - msr 0x%02X", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 if (msr & TI_MSR_DELTA_MASK) {
1467 spin_lock_irqsave(&tport->tp_lock, flags);
1468 icount = &tport->tp_icount;
1469 if (msr & TI_MSR_DELTA_CTS)
1470 icount->cts++;
1471 if (msr & TI_MSR_DELTA_DSR)
1472 icount->dsr++;
1473 if (msr & TI_MSR_DELTA_CD)
1474 icount->dcd++;
1475 if (msr & TI_MSR_DELTA_RI)
1476 icount->rng++;
1477 wake_up_interruptible(&tport->tp_msr_wait);
1478 spin_unlock_irqrestore(&tport->tp_lock, flags);
1479 }
1480
1481 tport->tp_msr = msr & TI_MSR_MASK;
1482
1483 /* handle CTS flow control */
Alan Cox4a90f092008-10-13 10:39:46 +01001484 tty = tty_port_tty_get(&tport->tp_port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (tty && C_CRTSCTS(tty)) {
1486 if (msr & TI_MSR_CTS) {
1487 tty->hw_stopped = 0;
1488 tty_wakeup(tty);
1489 } else {
1490 tty->hw_stopped = 1;
1491 }
1492 }
Alan Cox4a90f092008-10-13 10:39:46 +01001493 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
1496
1497static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush)
1498{
1499 struct ti_device *tdev = tport->tp_tdev;
1500 struct usb_serial_port *port = tport->tp_port;
1501 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Harvey Harrison441b62c2008-03-03 16:08:34 -08001503 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Oliver Neukum0915f492008-01-23 12:28:45 +01001505 spin_lock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 /* wait for data to drain from the buffer */
1508 tdev->td_urb_error = 0;
1509 init_waitqueue_entry(&wait, current);
1510 add_wait_queue(&tport->tp_write_wait, &wait);
1511 for (;;) {
1512 set_current_state(TASK_INTERRUPTIBLE);
1513 if (ti_buf_data_avail(tport->tp_write_buf) == 0
1514 || timeout == 0 || signal_pending(current)
1515 || tdev->td_urb_error
Oliver Neukum0915f492008-01-23 12:28:45 +01001516 || port->serial->disconnected) /* disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 break;
Oliver Neukum0915f492008-01-23 12:28:45 +01001518 spin_unlock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 timeout = schedule_timeout(timeout);
Oliver Neukum0915f492008-01-23 12:28:45 +01001520 spin_lock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522 set_current_state(TASK_RUNNING);
1523 remove_wait_queue(&tport->tp_write_wait, &wait);
1524
1525 /* flush any remaining data in the buffer */
1526 if (flush)
1527 ti_buf_clear(tport->tp_write_buf);
1528
Oliver Neukum0915f492008-01-23 12:28:45 +01001529 spin_unlock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Oliver Neukum0915f492008-01-23 12:28:45 +01001531 mutex_lock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 /* wait for data to drain from the device */
1533 /* wait for empty tx register, plus 20 ms */
1534 timeout += jiffies;
1535 tport->tp_lsr &= ~TI_LSR_TX_EMPTY;
1536 while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
1537 && !(tport->tp_lsr&TI_LSR_TX_EMPTY) && !tdev->td_urb_error
Oliver Neukum0915f492008-01-23 12:28:45 +01001538 && !port->serial->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (ti_get_lsr(tport))
1540 break;
Oliver Neukum0915f492008-01-23 12:28:45 +01001541 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 msleep_interruptible(20);
Oliver Neukum0915f492008-01-23 12:28:45 +01001543 mutex_lock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
Oliver Neukum0915f492008-01-23 12:28:45 +01001545 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
1548
1549static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty)
1550{
1551 unsigned long flags;
1552
1553 spin_lock_irqsave(&tport->tp_lock, flags);
1554
1555 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
1556 tport->tp_read_urb_state = TI_READ_URB_STOPPING;
1557
1558 spin_unlock_irqrestore(&tport->tp_lock, flags);
1559}
1560
1561
1562static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty)
1563{
1564 struct urb *urb;
1565 int status = 0;
1566 unsigned long flags;
1567
1568 spin_lock_irqsave(&tport->tp_lock, flags);
1569
1570 if (tport->tp_read_urb_state == TI_READ_URB_STOPPED) {
Oliver Neukum944dc182007-05-07 08:33:18 +02001571 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 urb = tport->tp_port->read_urb;
Oliver Neukum944dc182007-05-07 08:33:18 +02001573 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 urb->complete = ti_bulk_in_callback;
1575 urb->context = tport;
1576 urb->dev = tport->tp_port->serial->dev;
1577 status = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukum944dc182007-05-07 08:33:18 +02001578 } else {
1579 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
1580 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 return status;
1584}
1585
1586
1587static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
1588 __u16 moduleid, __u16 value, __u8 *data, int size)
1589{
1590 int status;
1591
1592 status = usb_control_msg(tdev->td_serial->dev,
1593 usb_sndctrlpipe(tdev->td_serial->dev, 0), command,
1594 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
1595 value, moduleid, data, size, 1000);
1596
1597 if (status == size)
1598 status = 0;
1599
1600 if (status > 0)
1601 status = -ECOMM;
1602
1603 return status;
1604}
1605
1606
1607static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
1608 __u16 moduleid, __u16 value, __u8 *data, int size)
1609{
1610 int status;
1611
1612 status = usb_control_msg(tdev->td_serial->dev,
1613 usb_rcvctrlpipe(tdev->td_serial->dev, 0), command,
1614 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
1615 value, moduleid, data, size, 1000);
1616
1617 if (status == size)
1618 status = 0;
1619
1620 if (status > 0)
1621 status = -ECOMM;
1622
1623 return status;
1624}
1625
1626
1627static int ti_write_byte(struct ti_device *tdev, unsigned long addr,
1628 __u8 mask, __u8 byte)
1629{
1630 int status;
1631 unsigned int size;
1632 struct ti_write_data_bytes *data;
1633 struct device *dev = &tdev->td_serial->dev->dev;
1634
Alan Coxa30fa792008-07-22 11:15:17 +01001635 dbg("%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X",
1636 __func__, addr, mask, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 size = sizeof(struct ti_write_data_bytes) + 2;
1639 data = kmalloc(size, GFP_KERNEL);
1640 if (!data) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001641 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 return -ENOMEM;
1643 }
1644
1645 data->bAddrType = TI_RW_DATA_ADDR_XDATA;
1646 data->bDataType = TI_RW_DATA_BYTE;
1647 data->bDataCounter = 1;
1648 data->wBaseAddrHi = cpu_to_be16(addr>>16);
1649 data->wBaseAddrLo = cpu_to_be16(addr);
1650 data->bData[0] = mask;
1651 data->bData[1] = byte;
1652
1653 status = ti_command_out_sync(tdev, TI_WRITE_DATA, TI_RAM_PORT, 0,
1654 (__u8 *)data, size);
1655
1656 if (status < 0)
Harvey Harrison441b62c2008-03-03 16:08:34 -08001657 dev_err(dev, "%s - failed, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 kfree(data);
1660
1661 return status;
1662}
1663
Alan Cox95da3102008-07-22 11:09:07 +01001664static int ti_do_download(struct usb_device *dev, int pipe,
1665 u8 *buffer, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 int pos;
Alan Cox95da3102008-07-22 11:09:07 +01001668 u8 cs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 struct ti_firmware_header *header;
Alan Cox95da3102008-07-22 11:09:07 +01001671 int status;
1672 int len;
Alan Coxa30fa792008-07-22 11:15:17 +01001673
1674 for (pos = sizeof(struct ti_firmware_header); pos < size; pos++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 cs = (__u8)(cs + buffer[pos]);
1676
1677 header = (struct ti_firmware_header *)buffer;
Alan Coxa30fa792008-07-22 11:15:17 +01001678 header->wLength = cpu_to_le16((__u16)(size
Alan Cox95da3102008-07-22 11:09:07 +01001679 - sizeof(struct ti_firmware_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 header->bCheckSum = cs;
1681
Harvey Harrison441b62c2008-03-03 16:08:34 -08001682 dbg("%s - downloading firmware", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01001683 for (pos = 0; pos < size; pos += done) {
1684 len = min(size - pos, TI_DOWNLOAD_MAX_PACKET_SIZE);
1685 status = usb_bulk_msg(dev, pipe, buffer + pos, len,
1686 &done, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (status)
1688 break;
1689 }
Alan Cox95da3102008-07-22 11:09:07 +01001690 return status;
1691}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Chris Adams05a3d902009-01-11 19:48:53 +00001693static int ti_download_firmware(struct ti_device *tdev)
Alan Cox95da3102008-07-22 11:09:07 +01001694{
Chris Adams05a3d902009-01-11 19:48:53 +00001695 int status;
Alan Cox95da3102008-07-22 11:09:07 +01001696 int buffer_size;
1697 __u8 *buffer;
1698 struct usb_device *dev = tdev->td_serial->dev;
1699 unsigned int pipe = usb_sndbulkpipe(dev,
1700 tdev->td_serial->port[0]->bulk_out_endpointAddress);
1701 const struct firmware *fw_p;
1702 char buf[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Chris Adams05a3d902009-01-11 19:48:53 +00001704 /* try ID specific firmware first, then try generic firmware */
1705 sprintf(buf, "ti_usb-v%04x-p%04x.fw", dev->descriptor.idVendor,
1706 dev->descriptor.idProduct);
1707 if ((status = request_firmware(&fw_p, buf, &dev->dev)) != 0) {
Chris Adamscb7a7c62009-01-11 19:49:00 +00001708 buf[0] = '\0';
1709 if (dev->descriptor.idVendor == MTS_VENDOR_ID) {
1710 switch (dev->descriptor.idProduct) {
1711 case MTS_CDMA_PRODUCT_ID:
1712 strcpy(buf, "mts_cdma.fw");
1713 break;
1714 case MTS_GSM_PRODUCT_ID:
1715 strcpy(buf, "mts_gsm.fw");
1716 break;
1717 case MTS_EDGE_PRODUCT_ID:
1718 strcpy(buf, "mts_edge.fw");
1719 break;
1720 }
1721 }
1722 if (buf[0] == '\0') {
1723 if (tdev->td_is_3410)
1724 strcpy(buf, "ti_3410.fw");
1725 else
1726 strcpy(buf, "ti_5052.fw");
1727 }
Chris Adams05a3d902009-01-11 19:48:53 +00001728 status = request_firmware(&fw_p, buf, &dev->dev);
1729 }
1730 if (status) {
Alan Cox95da3102008-07-22 11:09:07 +01001731 dev_err(&dev->dev, "%s - firmware not found\n", __func__);
1732 return -ENOENT;
1733 }
1734 if (fw_p->size > TI_FIRMWARE_BUF_SIZE) {
1735 dev_err(&dev->dev, "%s - firmware too large\n", __func__);
1736 return -ENOENT;
1737 }
1738
1739 buffer_size = TI_FIRMWARE_BUF_SIZE + sizeof(struct ti_firmware_header);
1740 buffer = kmalloc(buffer_size, GFP_KERNEL);
1741 if (buffer) {
1742 memcpy(buffer, fw_p->data, fw_p->size);
1743 memset(buffer + fw_p->size, 0xff, buffer_size - fw_p->size);
Chris Adams2bcbe4c12008-09-10 14:11:38 -07001744 status = ti_do_download(dev, pipe, buffer, fw_p->size);
Alan Cox95da3102008-07-22 11:09:07 +01001745 kfree(buffer);
Chris Adams05a3d902009-01-11 19:48:53 +00001746 } else {
1747 status = -ENOMEM;
Alan Cox95da3102008-07-22 11:09:07 +01001748 }
1749 release_firmware(fw_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001751 dev_err(&dev->dev, "%s - error downloading firmware, %d\n",
1752 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return status;
1754 }
1755
Harvey Harrison441b62c2008-03-03 16:08:34 -08001756 dbg("%s - download successful", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 return 0;
1759}
1760
1761
1762/* Circular Buffer Functions */
1763
1764/*
1765 * ti_buf_alloc
1766 *
1767 * Allocate a circular buffer and all associated memory.
1768 */
1769
1770static struct circ_buf *ti_buf_alloc(void)
1771{
1772 struct circ_buf *cb;
1773
Robert P. J. Day5cbded52006-12-13 00:35:56 -08001774 cb = kmalloc(sizeof(struct circ_buf), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (cb == NULL)
1776 return NULL;
1777
1778 cb->buf = kmalloc(TI_WRITE_BUF_SIZE, GFP_KERNEL);
1779 if (cb->buf == NULL) {
1780 kfree(cb);
1781 return NULL;
1782 }
1783
1784 ti_buf_clear(cb);
1785
1786 return cb;
1787}
1788
1789
1790/*
1791 * ti_buf_free
1792 *
1793 * Free the buffer and all associated memory.
1794 */
1795
1796static void ti_buf_free(struct circ_buf *cb)
1797{
1798 kfree(cb->buf);
1799 kfree(cb);
1800}
1801
1802
1803/*
1804 * ti_buf_clear
1805 *
1806 * Clear out all data in the circular buffer.
1807 */
1808
1809static void ti_buf_clear(struct circ_buf *cb)
1810{
1811 cb->head = cb->tail = 0;
1812}
1813
1814
1815/*
1816 * ti_buf_data_avail
1817 *
1818 * Return the number of bytes of data available in the circular
1819 * buffer.
1820 */
1821
1822static int ti_buf_data_avail(struct circ_buf *cb)
1823{
Alan Coxa30fa792008-07-22 11:15:17 +01001824 return CIRC_CNT(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
1827
1828/*
1829 * ti_buf_space_avail
1830 *
1831 * Return the number of bytes of space available in the circular
1832 * buffer.
1833 */
1834
1835static int ti_buf_space_avail(struct circ_buf *cb)
1836{
Alan Coxa30fa792008-07-22 11:15:17 +01001837 return CIRC_SPACE(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}
1839
1840
1841/*
1842 * ti_buf_put
1843 *
1844 * Copy data data from a user buffer and put it into the circular buffer.
1845 * Restrict to the amount of space available.
1846 *
1847 * Return the number of bytes copied.
1848 */
1849
1850static int ti_buf_put(struct circ_buf *cb, const char *buf, int count)
1851{
1852 int c, ret = 0;
1853
1854 while (1) {
1855 c = CIRC_SPACE_TO_END(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
1856 if (count < c)
1857 c = count;
1858 if (c <= 0)
1859 break;
1860 memcpy(cb->buf + cb->head, buf, c);
1861 cb->head = (cb->head + c) & (TI_WRITE_BUF_SIZE-1);
1862 buf += c;
1863 count -= c;
1864 ret += c;
1865 }
1866
1867 return ret;
1868}
1869
1870
1871/*
1872 * ti_buf_get
1873 *
1874 * Get data from the circular buffer and copy to the given buffer.
1875 * Restrict to the amount of data available.
1876 *
1877 * Return the number of bytes copied.
1878 */
1879
1880static int ti_buf_get(struct circ_buf *cb, char *buf, int count)
1881{
1882 int c, ret = 0;
1883
1884 while (1) {
1885 c = CIRC_CNT_TO_END(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
1886 if (count < c)
1887 c = count;
1888 if (c <= 0)
1889 break;
1890 memcpy(buf, cb->buf + cb->tail, c);
1891 cb->tail = (cb->tail + c) & (TI_WRITE_BUF_SIZE-1);
1892 buf += c;
1893 count -= c;
1894 ret += c;
1895 }
1896
1897 return ret;
1898}