blob: 991d8232e3765c39de562ec8e09181d0e8d4c547 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */
54
55/* supported setserial flags */
Oliver Neukum2400a2b2009-04-20 17:28:53 +020056#define TI_SET_SERIAL_FLAGS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/* read urb states */
59#define TI_READ_URB_RUNNING 0
60#define TI_READ_URB_STOPPING 1
61#define TI_READ_URB_STOPPED 2
62
63#define TI_EXTRA_VID_PID_COUNT 5
64
65
66/* Structures */
67
68struct ti_port {
69 int tp_is_open;
70 __u8 tp_msr;
71 __u8 tp_lsr;
72 __u8 tp_shadow_mcr;
73 __u8 tp_uart_mode; /* 232 or 485 modes */
74 unsigned int tp_uart_base_addr;
75 int tp_flags;
76 int tp_closing_wait;/* in .01 secs */
77 struct async_icount tp_icount;
78 wait_queue_head_t tp_msr_wait; /* wait for msr change */
79 wait_queue_head_t tp_write_wait;
80 struct ti_device *tp_tdev;
81 struct usb_serial_port *tp_port;
82 spinlock_t tp_lock;
83 int tp_read_urb_state;
84 int tp_write_urb_in_use;
85 struct circ_buf *tp_write_buf;
86};
87
88struct ti_device {
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080089 struct mutex td_open_close_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int td_open_port_count;
91 struct usb_serial *td_serial;
92 int td_is_3410;
93 int td_urb_error;
94};
95
96
97/* Function Declarations */
98
99static int ti_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400100static void ti_release(struct usb_serial *serial);
Alan Cox95da3102008-07-22 11:09:07 +0100101static int ti_open(struct tty_struct *tty, struct usb_serial_port *port,
Alan Coxa30fa792008-07-22 11:15:17 +0100102 struct file *file);
Alan Cox335f8512009-06-11 12:26:29 +0100103static void ti_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +0100104static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
Alan Coxa30fa792008-07-22 11:15:17 +0100105 const unsigned char *data, int count);
Alan Cox95da3102008-07-22 11:09:07 +0100106static int ti_write_room(struct tty_struct *tty);
107static int ti_chars_in_buffer(struct tty_struct *tty);
108static void ti_throttle(struct tty_struct *tty);
109static void ti_unthrottle(struct tty_struct *tty);
Alan Coxa30fa792008-07-22 11:15:17 +0100110static int ti_ioctl(struct tty_struct *tty, struct file *file,
111 unsigned int cmd, unsigned long arg);
112static void ti_set_termios(struct tty_struct *tty,
113 struct usb_serial_port *port, struct ktermios *old_termios);
Alan Cox95da3102008-07-22 11:09:07 +0100114static int ti_tiocmget(struct tty_struct *tty, struct file *file);
115static int ti_tiocmset(struct tty_struct *tty, struct file *file,
Alan Coxa30fa792008-07-22 11:15:17 +0100116 unsigned int set, unsigned int clear);
Alan Cox95da3102008-07-22 11:09:07 +0100117static void ti_break(struct tty_struct *tty, int break_state);
David Howells7d12e782006-10-05 14:55:46 +0100118static void ti_interrupt_callback(struct urb *urb);
119static void ti_bulk_in_callback(struct urb *urb);
120static void ti_bulk_out_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122static void ti_recv(struct device *dev, struct tty_struct *tty,
123 unsigned char *data, int length);
124static void ti_send(struct ti_port *tport);
125static int ti_set_mcr(struct ti_port *tport, unsigned int mcr);
126static int ti_get_lsr(struct ti_port *tport);
127static int ti_get_serial_info(struct ti_port *tport,
128 struct serial_struct __user *ret_arg);
Alan Cox4a90f092008-10-13 10:39:46 +0100129static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct serial_struct __user *new_arg);
131static void ti_handle_new_msr(struct ti_port *tport, __u8 msr);
132
133static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush);
134
135static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty);
136static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty);
137
138static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
139 __u16 moduleid, __u16 value, __u8 *data, int size);
140static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
141 __u16 moduleid, __u16 value, __u8 *data, int size);
142
143static int ti_write_byte(struct ti_device *tdev, unsigned long addr,
144 __u8 mask, __u8 byte);
145
Chris Adams05a3d902009-01-11 19:48:53 +0000146static int ti_download_firmware(struct ti_device *tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* circular buffer */
149static struct circ_buf *ti_buf_alloc(void);
150static void ti_buf_free(struct circ_buf *cb);
151static void ti_buf_clear(struct circ_buf *cb);
152static int ti_buf_data_avail(struct circ_buf *cb);
153static int ti_buf_space_avail(struct circ_buf *cb);
154static int ti_buf_put(struct circ_buf *cb, const char *buf, int count);
155static int ti_buf_get(struct circ_buf *cb, char *buf, int count);
156
157
158/* Data */
159
160/* module parameters */
161static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static int closing_wait = TI_DEFAULT_CLOSING_WAIT;
163static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100164static unsigned int vendor_3410_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static ushort product_3410[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100166static unsigned int product_3410_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static ushort vendor_5052[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100168static unsigned int vendor_5052_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static ushort product_5052[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100170static unsigned int product_5052_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/* supported devices */
173/* the array dimension is the number of default entries plus */
174/* TI_EXTRA_VID_PID_COUNT user defined entries plus 1 terminating */
175/* null entry */
Oliver Neukum97dcf042009-02-04 16:38:33 +0100176static struct usb_device_id ti_id_table_3410[10+TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000178 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000179 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
180 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
181 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
182 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
183 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100184 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100185 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
186 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187};
188
Oliver Neukum97dcf042009-02-04 16:38:33 +0100189static struct usb_device_id ti_id_table_5052[5+TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
191 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
192 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
193 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100194 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Oliver Neukum97dcf042009-02-04 16:38:33 +0100197static struct usb_device_id ti_id_table_combined[14+2*TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000199 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000200 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
201 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
202 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
203 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
204 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
206 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
207 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
208 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100209 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100210 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
211 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 { }
213};
214
215static struct usb_driver ti_usb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .name = "ti_usb_3410_5052",
217 .probe = usb_serial_probe,
218 .disconnect = usb_serial_disconnect,
219 .id_table = ti_id_table_combined,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800220 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700223static struct usb_serial_driver ti_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700224 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700225 .owner = THIS_MODULE,
226 .name = "ti_usb_3410_5052_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700227 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700228 .description = "TI USB 3410 1 port adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100229 .usb_driver = &ti_usb_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 .id_table = ti_id_table_3410,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 .num_ports = 1,
232 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400233 .release = ti_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 .open = ti_open,
235 .close = ti_close,
236 .write = ti_write,
237 .write_room = ti_write_room,
238 .chars_in_buffer = ti_chars_in_buffer,
239 .throttle = ti_throttle,
240 .unthrottle = ti_unthrottle,
241 .ioctl = ti_ioctl,
242 .set_termios = ti_set_termios,
243 .tiocmget = ti_tiocmget,
244 .tiocmset = ti_tiocmset,
245 .break_ctl = ti_break,
246 .read_int_callback = ti_interrupt_callback,
247 .read_bulk_callback = ti_bulk_in_callback,
248 .write_bulk_callback = ti_bulk_out_callback,
249};
250
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700251static struct usb_serial_driver ti_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700252 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700253 .owner = THIS_MODULE,
254 .name = "ti_usb_3410_5052_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700255 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700256 .description = "TI USB 5052 2 port adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100257 .usb_driver = &ti_usb_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .id_table = ti_id_table_5052,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 .num_ports = 2,
260 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400261 .release = ti_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .open = ti_open,
263 .close = ti_close,
264 .write = ti_write,
265 .write_room = ti_write_room,
266 .chars_in_buffer = ti_chars_in_buffer,
267 .throttle = ti_throttle,
268 .unthrottle = ti_unthrottle,
269 .ioctl = ti_ioctl,
270 .set_termios = ti_set_termios,
271 .tiocmget = ti_tiocmget,
272 .tiocmset = ti_tiocmset,
273 .break_ctl = ti_break,
274 .read_int_callback = ti_interrupt_callback,
275 .read_bulk_callback = ti_bulk_in_callback,
276 .write_bulk_callback = ti_bulk_out_callback,
277};
278
279
280/* Module */
281
282MODULE_AUTHOR(TI_DRIVER_AUTHOR);
283MODULE_DESCRIPTION(TI_DRIVER_DESC);
284MODULE_VERSION(TI_DRIVER_VERSION);
285MODULE_LICENSE("GPL");
286
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300287MODULE_FIRMWARE("ti_3410.fw");
288MODULE_FIRMWARE("ti_5052.fw");
Chris Adams7df52312009-01-11 19:49:11 +0000289MODULE_FIRMWARE("mts_cdma.fw");
290MODULE_FIRMWARE("mts_gsm.fw");
291MODULE_FIRMWARE("mts_edge.fw");
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293module_param(debug, bool, S_IRUGO | S_IWUSR);
294MODULE_PARM_DESC(debug, "Enable debugging, 0=no, 1=yes");
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296module_param(closing_wait, int, S_IRUGO | S_IWUSR);
Alan Coxa30fa792008-07-22 11:15:17 +0100297MODULE_PARM_DESC(closing_wait,
298 "Maximum wait for data to drain in close, in .01 secs, default is 4000");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300module_param_array(vendor_3410, ushort, &vendor_3410_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100301MODULE_PARM_DESC(vendor_3410,
302 "Vendor ids for 3410 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303module_param_array(product_3410, ushort, &product_3410_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100304MODULE_PARM_DESC(product_3410,
305 "Product ids for 3410 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306module_param_array(vendor_5052, ushort, &vendor_5052_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100307MODULE_PARM_DESC(vendor_5052,
308 "Vendor ids for 5052 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309module_param_array(product_5052, ushort, &product_5052_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100310MODULE_PARM_DESC(product_5052,
311 "Product ids for 5052 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313MODULE_DEVICE_TABLE(usb, ti_id_table_combined);
314
315
316/* Functions */
317
318static int __init ti_init(void)
319{
Chris Adams05a3d902009-01-11 19:48:53 +0000320 int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 int ret;
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* insert extra vendor and product ids */
Chris Adams05a3d902009-01-11 19:48:53 +0000324 c = ARRAY_SIZE(ti_id_table_combined) - 2 * TI_EXTRA_VID_PID_COUNT - 1;
Tobias Klauser52950ed2005-12-11 16:20:08 +0100325 j = ARRAY_SIZE(ti_id_table_3410) - TI_EXTRA_VID_PID_COUNT - 1;
Chris Adams05a3d902009-01-11 19:48:53 +0000326 for (i = 0; i < min(vendor_3410_count, product_3410_count); i++, j++, c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 ti_id_table_3410[j].idVendor = vendor_3410[i];
328 ti_id_table_3410[j].idProduct = product_3410[i];
329 ti_id_table_3410[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Chris Adams05a3d902009-01-11 19:48:53 +0000330 ti_id_table_combined[c].idVendor = vendor_3410[i];
331 ti_id_table_combined[c].idProduct = product_3410[i];
332 ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Tobias Klauser52950ed2005-12-11 16:20:08 +0100334 j = ARRAY_SIZE(ti_id_table_5052) - TI_EXTRA_VID_PID_COUNT - 1;
Chris Adams05a3d902009-01-11 19:48:53 +0000335 for (i = 0; i < min(vendor_5052_count, product_5052_count); i++, j++, c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 ti_id_table_5052[j].idVendor = vendor_5052[i];
337 ti_id_table_5052[j].idProduct = product_5052[i];
338 ti_id_table_5052[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Chris Adams05a3d902009-01-11 19:48:53 +0000339 ti_id_table_combined[c].idVendor = vendor_5052[i];
340 ti_id_table_combined[c].idProduct = product_5052[i];
341 ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
344 ret = usb_serial_register(&ti_1port_device);
345 if (ret)
346 goto failed_1port;
347 ret = usb_serial_register(&ti_2port_device);
348 if (ret)
349 goto failed_2port;
350
351 ret = usb_register(&ti_usb_driver);
352 if (ret)
353 goto failed_usb;
354
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700355 printk(KERN_INFO KBUILD_MODNAME ": " TI_DRIVER_VERSION ":"
356 TI_DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 return 0;
359
360failed_usb:
361 usb_serial_deregister(&ti_2port_device);
362failed_2port:
363 usb_serial_deregister(&ti_1port_device);
364failed_1port:
365 return ret;
366}
367
368
369static void __exit ti_exit(void)
370{
371 usb_serial_deregister(&ti_1port_device);
372 usb_serial_deregister(&ti_2port_device);
373 usb_deregister(&ti_usb_driver);
374}
375
376
377module_init(ti_init);
378module_exit(ti_exit);
379
380
381static int ti_startup(struct usb_serial *serial)
382{
383 struct ti_device *tdev;
384 struct ti_port *tport;
385 struct usb_device *dev = serial->dev;
386 int status;
387 int i;
388
389
390 dbg("%s - product 0x%4X, num configurations %d, configuration value %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800391 __func__, le16_to_cpu(dev->descriptor.idProduct),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 dev->descriptor.bNumConfigurations,
393 dev->actconfig->desc.bConfigurationValue);
394
395 /* create device structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100396 tdev = kzalloc(sizeof(struct ti_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (tdev == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800398 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -ENOMEM;
400 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800401 mutex_init(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 tdev->td_serial = serial;
403 usb_set_serial_data(serial, tdev);
404
405 /* determine device type */
406 if (usb_match_id(serial->interface, ti_id_table_3410))
407 tdev->td_is_3410 = 1;
Alan Coxa30fa792008-07-22 11:15:17 +0100408 dbg("%s - device type is %s", __func__,
409 tdev->td_is_3410 ? "3410" : "5052");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* if we have only 1 configuration, download firmware */
412 if (dev->descriptor.bNumConfigurations == 1) {
Chris Adams05a3d902009-01-11 19:48:53 +0000413 if ((status = ti_download_firmware(tdev)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 goto free_tdev;
415
416 /* 3410 must be reset, 5052 resets itself */
417 if (tdev->td_is_3410) {
418 msleep_interruptible(100);
419 usb_reset_device(dev);
420 }
421
422 status = -ENODEV;
423 goto free_tdev;
Alan Coxa30fa792008-07-22 11:15:17 +0100424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100426 /* the second configuration must be set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (dev->actconfig->desc.bConfigurationValue == TI_BOOT_CONFIG) {
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100428 status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG);
429 status = status ? status : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto free_tdev;
431 }
432
433 /* set up port structures */
434 for (i = 0; i < serial->num_ports; ++i) {
Burman Yan7ac9da12006-11-22 20:54:38 +0200435 tport = kzalloc(sizeof(struct ti_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (tport == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800437 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 status = -ENOMEM;
439 goto free_tports;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 spin_lock_init(&tport->tp_lock);
Alan Coxa30fa792008-07-22 11:15:17 +0100442 tport->tp_uart_base_addr = (i == 0 ?
443 TI_UART1_BASE_ADDR : TI_UART2_BASE_ADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 tport->tp_closing_wait = closing_wait;
445 init_waitqueue_head(&tport->tp_msr_wait);
446 init_waitqueue_head(&tport->tp_write_wait);
447 tport->tp_write_buf = ti_buf_alloc();
448 if (tport->tp_write_buf == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800449 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 kfree(tport);
451 status = -ENOMEM;
452 goto free_tports;
453 }
454 tport->tp_port = serial->port[i];
455 tport->tp_tdev = tdev;
456 usb_set_serial_port_data(serial->port[i], tport);
457 tport->tp_uart_mode = 0; /* default is RS232 */
458 }
Alan Coxa30fa792008-07-22 11:15:17 +0100459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
461
462free_tports:
Alan Coxa30fa792008-07-22 11:15:17 +0100463 for (--i; i >= 0; --i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 tport = usb_get_serial_port_data(serial->port[i]);
465 ti_buf_free(tport->tp_write_buf);
466 kfree(tport);
467 usb_set_serial_port_data(serial->port[i], NULL);
468 }
469free_tdev:
470 kfree(tdev);
471 usb_set_serial_data(serial, NULL);
472 return status;
473}
474
475
Alan Sternf9c99bb2009-06-02 11:53:55 -0400476static void ti_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 int i;
479 struct ti_device *tdev = usb_get_serial_data(serial);
480 struct ti_port *tport;
481
Harvey Harrison441b62c2008-03-03 16:08:34 -0800482 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Alan Coxa30fa792008-07-22 11:15:17 +0100484 for (i = 0; i < serial->num_ports; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 tport = usb_get_serial_port_data(serial->port[i]);
486 if (tport) {
487 ti_buf_free(tport->tp_write_buf);
488 kfree(tport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490 }
491
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700492 kfree(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495
Alan Cox95da3102008-07-22 11:09:07 +0100496static int ti_open(struct tty_struct *tty,
497 struct usb_serial_port *port, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 struct ti_port *tport = usb_get_serial_port_data(port);
500 struct ti_device *tdev;
501 struct usb_device *dev;
502 struct urb *urb;
503 int port_number;
504 int status;
Alan Coxa30fa792008-07-22 11:15:17 +0100505 __u16 open_settings = (__u8)(TI_PIPE_MODE_CONTINOUS |
506 TI_PIPE_TIMEOUT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 (TI_TRANSFER_TIMEOUT << 2));
508
Harvey Harrison441b62c2008-03-03 16:08:34 -0800509 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 if (tport == NULL)
512 return -ENODEV;
513
514 dev = port->serial->dev;
515 tdev = tport->tp_tdev;
516
517 /* only one open on any port on a device at a time */
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800518 if (mutex_lock_interruptible(&tdev->td_open_close_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return -ERESTARTSYS;
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 port_number = port->number - port->serial->minor;
522
523 memset(&(tport->tp_icount), 0x00, sizeof(tport->tp_icount));
524
525 tport->tp_msr = 0;
526 tport->tp_shadow_mcr |= (TI_MCR_RTS | TI_MCR_DTR);
527
528 /* start interrupt urb the first time a port is opened on this device */
529 if (tdev->td_open_port_count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800530 dbg("%s - start interrupt in urb", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 urb = tdev->td_serial->port[0]->interrupt_in_urb;
532 if (!urb) {
Alan Coxa30fa792008-07-22 11:15:17 +0100533 dev_err(&port->dev, "%s - no interrupt urb\n",
534 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 status = -EINVAL;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800536 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538 urb->complete = ti_interrupt_callback;
539 urb->context = tdev;
540 urb->dev = dev;
541 status = usb_submit_urb(urb, GFP_KERNEL);
542 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100543 dev_err(&port->dev,
544 "%s - submit interrupt urb failed, %d\n",
545 __func__, status);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800546 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548 }
549
Alan Cox95da3102008-07-22 11:09:07 +0100550 if (tty)
551 ti_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Harvey Harrison441b62c2008-03-03 16:08:34 -0800553 dbg("%s - sending TI_OPEN_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
555 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
556 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100557 dev_err(&port->dev, "%s - cannot send open command, %d\n",
558 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto unlink_int_urb;
560 }
561
Harvey Harrison441b62c2008-03-03 16:08:34 -0800562 dbg("%s - sending TI_START_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 status = ti_command_out_sync(tdev, TI_START_PORT,
564 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
565 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100566 dev_err(&port->dev, "%s - cannot send start command, %d\n",
567 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 goto unlink_int_urb;
569 }
570
Harvey Harrison441b62c2008-03-03 16:08:34 -0800571 dbg("%s - sending TI_PURGE_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
573 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_INPUT, NULL, 0);
574 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100575 dev_err(&port->dev, "%s - cannot clear input buffers, %d\n",
576 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 goto unlink_int_urb;
578 }
579 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
580 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_OUTPUT, NULL, 0);
581 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100582 dev_err(&port->dev, "%s - cannot clear output buffers, %d\n",
583 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 goto unlink_int_urb;
585 }
586
587 /* reset the data toggle on the bulk endpoints to work around bug in
588 * host controllers where things get out of sync some times */
589 usb_clear_halt(dev, port->write_urb->pipe);
590 usb_clear_halt(dev, port->read_urb->pipe);
591
Alan Cox95da3102008-07-22 11:09:07 +0100592 if (tty)
593 ti_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Harvey Harrison441b62c2008-03-03 16:08:34 -0800595 dbg("%s - sending TI_OPEN_PORT (2)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
597 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
598 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100599 dev_err(&port->dev, "%s - cannot send open command (2), %d\n",
600 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 goto unlink_int_urb;
602 }
603
Harvey Harrison441b62c2008-03-03 16:08:34 -0800604 dbg("%s - sending TI_START_PORT (2)", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 status = ti_command_out_sync(tdev, TI_START_PORT,
606 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
607 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100608 dev_err(&port->dev, "%s - cannot send start command (2), %d\n",
609 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 goto unlink_int_urb;
611 }
612
613 /* start read urb */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800614 dbg("%s - start read urb", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 urb = port->read_urb;
616 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800617 dev_err(&port->dev, "%s - no read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 status = -EINVAL;
619 goto unlink_int_urb;
620 }
621 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
622 urb->complete = ti_bulk_in_callback;
623 urb->context = tport;
624 urb->dev = dev;
625 status = usb_submit_urb(urb, GFP_KERNEL);
626 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100627 dev_err(&port->dev, "%s - submit read urb failed, %d\n",
628 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 goto unlink_int_urb;
630 }
631
632 tport->tp_is_open = 1;
633 ++tdev->td_open_port_count;
634
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800635 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637unlink_int_urb:
638 if (tdev->td_open_port_count == 0)
639 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800640release_lock:
641 mutex_unlock(&tdev->td_open_close_lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800642 dbg("%s - exit %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return status;
644}
645
646
Alan Cox335f8512009-06-11 12:26:29 +0100647static void ti_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct ti_device *tdev;
650 struct ti_port *tport;
651 int port_number;
652 int status;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800653 int do_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Harvey Harrison441b62c2008-03-03 16:08:34 -0800655 dbg("%s - port %d", __func__, port->number);
Alan Coxa30fa792008-07-22 11:15:17 +0100656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 tdev = usb_get_serial_data(port->serial);
658 tport = usb_get_serial_port_data(port);
659 if (tdev == NULL || tport == NULL)
660 return;
661
662 tport->tp_is_open = 0;
663
664 ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 1);
665
666 usb_kill_urb(port->read_urb);
667 usb_kill_urb(port->write_urb);
668 tport->tp_write_urb_in_use = 0;
669
670 port_number = port->number - port->serial->minor;
671
Harvey Harrison441b62c2008-03-03 16:08:34 -0800672 dbg("%s - sending TI_CLOSE_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 status = ti_command_out_sync(tdev, TI_CLOSE_PORT,
674 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
675 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100676 dev_err(&port->dev,
677 "%s - cannot send close port command, %d\n"
678 , __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800680 /* if mutex_lock is interrupted, continue anyway */
681 do_unlock = !mutex_lock_interruptible(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 --tport->tp_tdev->td_open_port_count;
683 if (tport->tp_tdev->td_open_port_count <= 0) {
684 /* last port is closed, shut down interrupt urb */
685 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
686 tport->tp_tdev->td_open_port_count = 0;
687 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800688 if (do_unlock)
689 mutex_unlock(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Harvey Harrison441b62c2008-03-03 16:08:34 -0800691 dbg("%s - exit", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694
Alan Cox95da3102008-07-22 11:09:07 +0100695static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
696 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 struct ti_port *tport = usb_get_serial_port_data(port);
699 unsigned long flags;
700
Harvey Harrison441b62c2008-03-03 16:08:34 -0800701 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800704 dbg("%s - write request of 0 bytes", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return 0;
706 }
707
708 if (tport == NULL || !tport->tp_is_open)
709 return -ENODEV;
710
711 spin_lock_irqsave(&tport->tp_lock, flags);
712 count = ti_buf_put(tport->tp_write_buf, data, count);
713 spin_unlock_irqrestore(&tport->tp_lock, flags);
714
715 ti_send(tport);
716
717 return count;
718}
719
720
Alan Cox95da3102008-07-22 11:09:07 +0100721static int ti_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Alan Cox95da3102008-07-22 11:09:07 +0100723 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 struct ti_port *tport = usb_get_serial_port_data(port);
725 int room = 0;
726 unsigned long flags;
727
Harvey Harrison441b62c2008-03-03 16:08:34 -0800728 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 if (tport == NULL)
731 return -ENODEV;
Alan Coxa30fa792008-07-22 11:15:17 +0100732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 spin_lock_irqsave(&tport->tp_lock, flags);
734 room = ti_buf_space_avail(tport->tp_write_buf);
735 spin_unlock_irqrestore(&tport->tp_lock, flags);
736
Harvey Harrison441b62c2008-03-03 16:08:34 -0800737 dbg("%s - returns %d", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return room;
739}
740
741
Alan Cox95da3102008-07-22 11:09:07 +0100742static int ti_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Alan Cox95da3102008-07-22 11:09:07 +0100744 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 struct ti_port *tport = usb_get_serial_port_data(port);
746 int chars = 0;
747 unsigned long flags;
748
Harvey Harrison441b62c2008-03-03 16:08:34 -0800749 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 if (tport == NULL)
752 return -ENODEV;
753
754 spin_lock_irqsave(&tport->tp_lock, flags);
755 chars = ti_buf_data_avail(tport->tp_write_buf);
756 spin_unlock_irqrestore(&tport->tp_lock, flags);
757
Harvey Harrison441b62c2008-03-03 16:08:34 -0800758 dbg("%s - returns %d", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return chars;
760}
761
762
Alan Cox95da3102008-07-22 11:09:07 +0100763static void ti_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Alan Cox95da3102008-07-22 11:09:07 +0100765 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Harvey Harrison441b62c2008-03-03 16:08:34 -0800768 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 if (tport == NULL)
771 return;
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (I_IXOFF(tty) || C_CRTSCTS(tty))
774 ti_stop_read(tport, tty);
775
776}
777
778
Alan Cox95da3102008-07-22 11:09:07 +0100779static void ti_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Alan Cox95da3102008-07-22 11:09:07 +0100781 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 int status;
784
Harvey Harrison441b62c2008-03-03 16:08:34 -0800785 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (tport == NULL)
788 return;
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (I_IXOFF(tty) || C_CRTSCTS(tty)) {
791 status = ti_restart_read(tport, tty);
792 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100793 dev_err(&port->dev, "%s - cannot restart read, %d\n",
794 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796}
797
798
Alan Cox95da3102008-07-22 11:09:07 +0100799static int ti_ioctl(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 unsigned int cmd, unsigned long arg)
801{
Alan Cox95da3102008-07-22 11:09:07 +0100802 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 struct ti_port *tport = usb_get_serial_port_data(port);
804 struct async_icount cnow;
805 struct async_icount cprev;
806
Harvey Harrison441b62c2008-03-03 16:08:34 -0800807 dbg("%s - port %d, cmd = 0x%04X", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 if (tport == NULL)
810 return -ENODEV;
811
812 switch (cmd) {
Alan Coxa30fa792008-07-22 11:15:17 +0100813 case TIOCGSERIAL:
814 dbg("%s - (%d) TIOCGSERIAL", __func__, port->number);
815 return ti_get_serial_info(tport,
816 (struct serial_struct __user *)arg);
817 case TIOCSSERIAL:
818 dbg("%s - (%d) TIOCSSERIAL", __func__, port->number);
Alan Cox4a90f092008-10-13 10:39:46 +0100819 return ti_set_serial_info(tty, tport,
820 (struct serial_struct __user *)arg);
Alan Coxa30fa792008-07-22 11:15:17 +0100821 case TIOCMIWAIT:
822 dbg("%s - (%d) TIOCMIWAIT", __func__, port->number);
823 cprev = tport->tp_icount;
824 while (1) {
825 interruptible_sleep_on(&tport->tp_msr_wait);
826 if (signal_pending(current))
827 return -ERESTARTSYS;
828 cnow = tport->tp_icount;
829 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
830 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
831 return -EIO; /* no change => error */
832 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
833 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
834 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
835 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)))
836 return 0;
837 cprev = cnow;
838 }
839 break;
840 case TIOCGICOUNT:
841 dbg("%s - (%d) TIOCGICOUNT RX=%d, TX=%d",
842 __func__, port->number,
843 tport->tp_icount.rx, tport->tp_icount.tx);
844 if (copy_to_user((void __user *)arg, &tport->tp_icount,
845 sizeof(tport->tp_icount)))
846 return -EFAULT;
847 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return -ENOIOCTLCMD;
850}
851
852
Alan Cox95da3102008-07-22 11:09:07 +0100853static void ti_set_termios(struct tty_struct *tty,
854 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 struct ti_uart_config *config;
Alan Coxa30fa792008-07-22 11:15:17 +0100858 tcflag_t cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 int baud;
860 int status;
861 int port_number = port->number - port->serial->minor;
862 unsigned int mcr;
863
Harvey Harrison441b62c2008-03-03 16:08:34 -0800864 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 cflag = tty->termios->c_cflag;
867 iflag = tty->termios->c_iflag;
868
Harvey Harrison441b62c2008-03-03 16:08:34 -0800869 dbg("%s - cflag %08x, iflag %08x", __func__, cflag, iflag);
Alan Coxa30fa792008-07-22 11:15:17 +0100870 dbg("%s - old clfag %08x, old iflag %08x", __func__,
871 old_termios->c_cflag, old_termios->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 if (tport == NULL)
874 return;
875
876 config = kmalloc(sizeof(*config), GFP_KERNEL);
877 if (!config) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800878 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return;
880 }
881
882 config->wFlags = 0;
883
884 /* these flags must be set */
885 config->wFlags |= TI_UART_ENABLE_MS_INTS;
886 config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA;
887 config->bUartMode = (__u8)(tport->tp_uart_mode);
888
889 switch (cflag & CSIZE) {
Alan Coxa30fa792008-07-22 11:15:17 +0100890 case CS5:
891 config->bDataBits = TI_UART_5_DATA_BITS;
892 break;
893 case CS6:
894 config->bDataBits = TI_UART_6_DATA_BITS;
895 break;
896 case CS7:
897 config->bDataBits = TI_UART_7_DATA_BITS;
898 break;
899 default:
900 case CS8:
901 config->bDataBits = TI_UART_8_DATA_BITS;
902 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904
Alan Cox537699e2008-01-03 17:03:11 +0000905 /* CMSPAR isn't supported by this driver */
906 tty->termios->c_cflag &= ~CMSPAR;
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (cflag & PARENB) {
909 if (cflag & PARODD) {
910 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
911 config->bParity = TI_UART_ODD_PARITY;
912 } else {
913 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
914 config->bParity = TI_UART_EVEN_PARITY;
915 }
916 } else {
917 config->wFlags &= ~TI_UART_ENABLE_PARITY_CHECKING;
Alan Coxa30fa792008-07-22 11:15:17 +0100918 config->bParity = TI_UART_NO_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
920
921 if (cflag & CSTOPB)
922 config->bStopBits = TI_UART_2_STOP_BITS;
923 else
924 config->bStopBits = TI_UART_1_STOP_BITS;
925
926 if (cflag & CRTSCTS) {
927 /* RTS flow control must be off to drop RTS for baud rate B0 */
928 if ((cflag & CBAUD) != B0)
929 config->wFlags |= TI_UART_ENABLE_RTS_IN;
930 config->wFlags |= TI_UART_ENABLE_CTS_OUT;
931 } else {
932 tty->hw_stopped = 0;
933 ti_restart_read(tport, tty);
934 }
935
936 if (I_IXOFF(tty) || I_IXON(tty)) {
937 config->cXon = START_CHAR(tty);
938 config->cXoff = STOP_CHAR(tty);
939
940 if (I_IXOFF(tty))
941 config->wFlags |= TI_UART_ENABLE_X_IN;
942 else
943 ti_restart_read(tport, tty);
944
945 if (I_IXON(tty))
946 config->wFlags |= TI_UART_ENABLE_X_OUT;
947 }
948
949 baud = tty_get_baud_rate(tty);
Alan Cox537699e2008-01-03 17:03:11 +0000950 if (!baud)
951 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (tport->tp_tdev->td_is_3410)
953 config->wBaudRate = (__u16)((923077 + baud/2) / baud);
954 else
955 config->wBaudRate = (__u16)((461538 + baud/2) / baud);
956
Alan Cox537699e2008-01-03 17:03:11 +0000957 /* FIXME: Should calculate resulting baud here and report it back */
958 if ((cflag & CBAUD) != B0)
959 tty_encode_baud_rate(tty, baud, baud);
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 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 -0800962 __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 -0700963
964 cpu_to_be16s(&config->wBaudRate);
965 cpu_to_be16s(&config->wFlags);
966
967 status = ti_command_out_sync(tport->tp_tdev, TI_SET_CONFIG,
968 (__u8)(TI_UART1_PORT + port_number), 0, (__u8 *)config,
969 sizeof(*config));
970 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100971 dev_err(&port->dev, "%s - cannot set config on port %d, %d\n",
972 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 /* SET_CONFIG asserts RTS and DTR, reset them correctly */
975 mcr = tport->tp_shadow_mcr;
976 /* if baud rate is B0, clear RTS and DTR */
977 if ((cflag & CBAUD) == B0)
978 mcr &= ~(TI_MCR_DTR | TI_MCR_RTS);
979 status = ti_set_mcr(tport, mcr);
980 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100981 dev_err(&port->dev,
982 "%s - cannot set modem control on port %d, %d\n",
983 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 kfree(config);
986}
987
988
Alan Cox95da3102008-07-22 11:09:07 +0100989static int ti_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Alan Cox95da3102008-07-22 11:09:07 +0100991 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 struct ti_port *tport = usb_get_serial_port_data(port);
993 unsigned int result;
994 unsigned int msr;
995 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000996 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Harvey Harrison441b62c2008-03-03 16:08:34 -0800998 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (tport == NULL)
1001 return -ENODEV;
1002
Alan Cox04ca89d2008-02-20 21:41:40 +00001003 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 msr = tport->tp_msr;
1005 mcr = tport->tp_shadow_mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001006 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0)
1009 | ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0)
1010 | ((mcr & TI_MCR_LOOP) ? TIOCM_LOOP : 0)
1011 | ((msr & TI_MSR_CTS) ? TIOCM_CTS : 0)
1012 | ((msr & TI_MSR_CD) ? TIOCM_CAR : 0)
1013 | ((msr & TI_MSR_RI) ? TIOCM_RI : 0)
1014 | ((msr & TI_MSR_DSR) ? TIOCM_DSR : 0);
1015
Harvey Harrison441b62c2008-03-03 16:08:34 -08001016 dbg("%s - 0x%04X", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 return result;
1019}
1020
1021
Alan Cox95da3102008-07-22 11:09:07 +01001022static int ti_tiocmset(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 unsigned int set, unsigned int clear)
1024{
Alan Cox95da3102008-07-22 11:09:07 +01001025 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 struct ti_port *tport = usb_get_serial_port_data(port);
1027 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001028 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Harvey Harrison441b62c2008-03-03 16:08:34 -08001030 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 if (tport == NULL)
1033 return -ENODEV;
1034
Alan Cox04ca89d2008-02-20 21:41:40 +00001035 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 mcr = tport->tp_shadow_mcr;
1037
1038 if (set & TIOCM_RTS)
1039 mcr |= TI_MCR_RTS;
1040 if (set & TIOCM_DTR)
1041 mcr |= TI_MCR_DTR;
1042 if (set & TIOCM_LOOP)
1043 mcr |= TI_MCR_LOOP;
1044
1045 if (clear & TIOCM_RTS)
1046 mcr &= ~TI_MCR_RTS;
1047 if (clear & TIOCM_DTR)
1048 mcr &= ~TI_MCR_DTR;
1049 if (clear & TIOCM_LOOP)
1050 mcr &= ~TI_MCR_LOOP;
Alan Cox04ca89d2008-02-20 21:41:40 +00001051 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 return ti_set_mcr(tport, mcr);
1054}
1055
1056
Alan Cox95da3102008-07-22 11:09:07 +01001057static void ti_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Alan Cox95da3102008-07-22 11:09:07 +01001059 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 struct ti_port *tport = usb_get_serial_port_data(port);
1061 int status;
1062
Harvey Harrison441b62c2008-03-03 16:08:34 -08001063 dbg("%s - state = %d", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 if (tport == NULL)
1066 return;
1067
1068 ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 0);
1069
1070 status = ti_write_byte(tport->tp_tdev,
1071 tport->tp_uart_base_addr + TI_UART_OFFSET_LCR,
1072 TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0);
1073
1074 if (status)
Harvey Harrison441b62c2008-03-03 16:08:34 -08001075 dbg("%s - error setting break, %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
1078
David Howells7d12e782006-10-05 14:55:46 +01001079static void ti_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Ming Leicdc97792008-02-24 18:41:47 +08001081 struct ti_device *tdev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 struct usb_serial_port *port;
1083 struct usb_serial *serial = tdev->td_serial;
1084 struct ti_port *tport;
1085 struct device *dev = &urb->dev->dev;
1086 unsigned char *data = urb->transfer_buffer;
1087 int length = urb->actual_length;
1088 int port_number;
1089 int function;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001090 int status = urb->status;
1091 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 __u8 msr;
1093
Harvey Harrison441b62c2008-03-03 16:08:34 -08001094 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001096 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 case 0:
1098 break;
1099 case -ECONNRESET:
1100 case -ENOENT:
1101 case -ESHUTDOWN:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001102 dbg("%s - urb shutting down, %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 tdev->td_urb_error = 1;
1104 return;
1105 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001106 dev_err(dev, "%s - nonzero urb status, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001107 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 tdev->td_urb_error = 1;
1109 goto exit;
1110 }
1111
1112 if (length != 2) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001113 dbg("%s - bad packet size, %d", __func__, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 goto exit;
1115 }
1116
1117 if (data[0] == TI_CODE_HARDWARE_ERROR) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001118 dev_err(dev, "%s - hardware error, %d\n", __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 goto exit;
1120 }
1121
1122 port_number = TI_GET_PORT_FROM_CODE(data[0]);
1123 function = TI_GET_FUNC_FROM_CODE(data[0]);
1124
Alan Coxa30fa792008-07-22 11:15:17 +01001125 dbg("%s - port_number %d, function %d, data 0x%02X",
1126 __func__, port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 if (port_number >= serial->num_ports) {
Alan Coxa30fa792008-07-22 11:15:17 +01001129 dev_err(dev, "%s - bad port number, %d\n",
1130 __func__, port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 goto exit;
1132 }
1133
1134 port = serial->port[port_number];
1135
1136 tport = usb_get_serial_port_data(port);
1137 if (!tport)
1138 goto exit;
1139
1140 switch (function) {
1141 case TI_CODE_DATA_ERROR:
Alan Coxa30fa792008-07-22 11:15:17 +01001142 dev_err(dev, "%s - DATA ERROR, port %d, data 0x%02X\n",
1143 __func__, port_number, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 break;
1145
1146 case TI_CODE_MODEM_STATUS:
1147 msr = data[1];
Harvey Harrison441b62c2008-03-03 16:08:34 -08001148 dbg("%s - port %d, msr 0x%02X", __func__, port_number, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 ti_handle_new_msr(tport, msr);
1150 break;
1151
1152 default:
Alan Coxa30fa792008-07-22 11:15:17 +01001153 dev_err(dev, "%s - unknown interrupt code, 0x%02X\n",
1154 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 break;
1156 }
1157
1158exit:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001159 retval = usb_submit_urb(urb, GFP_ATOMIC);
1160 if (retval)
1161 dev_err(dev, "%s - resubmit interrupt urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001162 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
1165
David Howells7d12e782006-10-05 14:55:46 +01001166static void ti_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Ming Leicdc97792008-02-24 18:41:47 +08001168 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 struct usb_serial_port *port = tport->tp_port;
1170 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001171 int status = urb->status;
1172 int retval = 0;
Alan Cox4a90f092008-10-13 10:39:46 +01001173 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Harvey Harrison441b62c2008-03-03 16:08:34 -08001175 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001177 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 case 0:
1179 break;
1180 case -ECONNRESET:
1181 case -ENOENT:
1182 case -ESHUTDOWN:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001183 dbg("%s - urb shutting down, %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 tport->tp_tdev->td_urb_error = 1;
1185 wake_up_interruptible(&tport->tp_write_wait);
1186 return;
1187 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001188 dev_err(dev, "%s - nonzero urb status, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001189 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 tport->tp_tdev->td_urb_error = 1;
1191 wake_up_interruptible(&tport->tp_write_wait);
1192 }
1193
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001194 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 goto exit;
1196
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001197 if (status) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001198 dev_err(dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return;
1200 }
1201
Alan Cox4a90f092008-10-13 10:39:46 +01001202 tty = tty_port_tty_get(&port->port);
Alan Coxcf545092009-04-14 14:58:11 +01001203 if (tty) {
1204 if (urb->actual_length) {
1205 usb_serial_debug_data(debug, dev, __func__,
1206 urb->actual_length, urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Alan Coxcf545092009-04-14 14:58:11 +01001208 if (!tport->tp_is_open)
1209 dbg("%s - port closed, dropping data",
1210 __func__);
1211 else
1212 ti_recv(&urb->dev->dev, tty,
Alan Coxa30fa792008-07-22 11:15:17 +01001213 urb->transfer_buffer,
1214 urb->actual_length);
Alan Coxcf545092009-04-14 14:58:11 +01001215 spin_lock(&tport->tp_lock);
1216 tport->tp_icount.rx += urb->actual_length;
1217 spin_unlock(&tport->tp_lock);
1218 }
Alan Cox4a90f092008-10-13 10:39:46 +01001219 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221
1222exit:
1223 /* continue to read unless stopping */
1224 spin_lock(&tport->tp_lock);
1225 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING) {
1226 urb->dev = port->serial->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001227 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 } else if (tport->tp_read_urb_state == TI_READ_URB_STOPPING) {
1229 tport->tp_read_urb_state = TI_READ_URB_STOPPED;
1230 }
1231 spin_unlock(&tport->tp_lock);
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001232 if (retval)
1233 dev_err(dev, "%s - resubmit read urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001234 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
1237
David Howells7d12e782006-10-05 14:55:46 +01001238static void ti_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Ming Leicdc97792008-02-24 18:41:47 +08001240 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 struct usb_serial_port *port = tport->tp_port;
1242 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001243 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Harvey Harrison441b62c2008-03-03 16:08:34 -08001245 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 tport->tp_write_urb_in_use = 0;
1248
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001249 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 case 0:
1251 break;
1252 case -ECONNRESET:
1253 case -ENOENT:
1254 case -ESHUTDOWN:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001255 dbg("%s - urb shutting down, %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 tport->tp_tdev->td_urb_error = 1;
1257 wake_up_interruptible(&tport->tp_write_wait);
1258 return;
1259 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001260 dev_err(dev, "%s - nonzero urb status, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001261 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 tport->tp_tdev->td_urb_error = 1;
1263 wake_up_interruptible(&tport->tp_write_wait);
1264 }
1265
1266 /* send any buffered data */
1267 ti_send(tport);
1268}
1269
1270
1271static void ti_recv(struct device *dev, struct tty_struct *tty,
1272 unsigned char *data, int length)
1273{
1274 int cnt;
1275
1276 do {
Alan Cox33f0f882006-01-09 20:54:13 -08001277 cnt = tty_buffer_request_room(tty, length);
1278 if (cnt < length) {
Alan Coxa30fa792008-07-22 11:15:17 +01001279 dev_err(dev, "%s - dropping data, %d bytes lost\n",
1280 __func__, length - cnt);
1281 if (cnt == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08001282 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
Alan Cox33f0f882006-01-09 20:54:13 -08001284 tty_insert_flip_string(tty, data, cnt);
1285 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 data += cnt;
1287 length -= cnt;
1288 } while (length > 0);
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
1292
1293static void ti_send(struct ti_port *tport)
1294{
1295 int count, result;
1296 struct usb_serial_port *port = tport->tp_port;
Alan Cox4a90f092008-10-13 10:39:46 +01001297 struct tty_struct *tty = tty_port_tty_get(&port->port); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 unsigned long flags;
1299
1300
Harvey Harrison441b62c2008-03-03 16:08:34 -08001301 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 spin_lock_irqsave(&tport->tp_lock, flags);
1304
Alan Cox4a90f092008-10-13 10:39:46 +01001305 if (tport->tp_write_urb_in_use)
1306 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 count = ti_buf_get(tport->tp_write_buf,
1309 port->write_urb->transfer_buffer,
1310 port->bulk_out_size);
1311
Alan Cox4a90f092008-10-13 10:39:46 +01001312 if (count == 0)
1313 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 tport->tp_write_urb_in_use = 1;
1316
1317 spin_unlock_irqrestore(&tport->tp_lock, flags);
1318
Alan Coxa30fa792008-07-22 11:15:17 +01001319 usb_serial_debug_data(debug, &port->dev, __func__, count,
1320 port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1323 usb_sndbulkpipe(port->serial->dev,
1324 port->bulk_out_endpointAddress),
1325 port->write_urb->transfer_buffer, count,
1326 ti_bulk_out_callback, tport);
1327
1328 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
1329 if (result) {
Alan Coxa30fa792008-07-22 11:15:17 +01001330 dev_err(&port->dev, "%s - submit write urb failed, %d\n",
1331 __func__, result);
1332 tport->tp_write_urb_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /* TODO: reschedule ti_send */
1334 } else {
1335 spin_lock_irqsave(&tport->tp_lock, flags);
1336 tport->tp_icount.tx += count;
1337 spin_unlock_irqrestore(&tport->tp_lock, flags);
1338 }
1339
1340 /* more room in the buffer for new writes, wakeup */
1341 if (tty)
1342 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +01001343 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 wake_up_interruptible(&tport->tp_write_wait);
Alan Cox4a90f092008-10-13 10:39:46 +01001345 return;
1346unlock:
1347 spin_unlock_irqrestore(&tport->tp_lock, flags);
1348 tty_kref_put(tty);
1349 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352
1353static int ti_set_mcr(struct ti_port *tport, unsigned int mcr)
1354{
Alan Cox04ca89d2008-02-20 21:41:40 +00001355 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 int status;
1357
1358 status = ti_write_byte(tport->tp_tdev,
1359 tport->tp_uart_base_addr + TI_UART_OFFSET_MCR,
1360 TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr);
1361
Alan Cox04ca89d2008-02-20 21:41:40 +00001362 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (!status)
1364 tport->tp_shadow_mcr = mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001365 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 return status;
1368}
1369
1370
1371static int ti_get_lsr(struct ti_port *tport)
1372{
Alan Coxa30fa792008-07-22 11:15:17 +01001373 int size, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 struct ti_device *tdev = tport->tp_tdev;
1375 struct usb_serial_port *port = tport->tp_port;
1376 int port_number = port->number - port->serial->minor;
1377 struct ti_port_status *data;
1378
Harvey Harrison441b62c2008-03-03 16:08:34 -08001379 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 size = sizeof(struct ti_port_status);
1382 data = kmalloc(size, GFP_KERNEL);
1383 if (!data) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001384 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 return -ENOMEM;
1386 }
1387
1388 status = ti_command_in_sync(tdev, TI_GET_PORT_STATUS,
1389 (__u8)(TI_UART1_PORT+port_number), 0, (__u8 *)data, size);
1390 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001391 dev_err(&port->dev,
1392 "%s - get port status command failed, %d\n",
1393 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 goto free_data;
1395 }
1396
Harvey Harrison441b62c2008-03-03 16:08:34 -08001397 dbg("%s - lsr 0x%02X", __func__, data->bLSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 tport->tp_lsr = data->bLSR;
1400
1401free_data:
1402 kfree(data);
1403 return status;
1404}
1405
1406
1407static int ti_get_serial_info(struct ti_port *tport,
1408 struct serial_struct __user *ret_arg)
1409{
1410 struct usb_serial_port *port = tport->tp_port;
1411 struct serial_struct ret_serial;
1412
1413 if (!ret_arg)
1414 return -EFAULT;
1415
1416 memset(&ret_serial, 0, sizeof(ret_serial));
1417
1418 ret_serial.type = PORT_16550A;
1419 ret_serial.line = port->serial->minor;
1420 ret_serial.port = port->number - port->serial->minor;
1421 ret_serial.flags = tport->tp_flags;
1422 ret_serial.xmit_fifo_size = TI_WRITE_BUF_SIZE;
1423 ret_serial.baud_base = tport->tp_tdev->td_is_3410 ? 921600 : 460800;
1424 ret_serial.closing_wait = tport->tp_closing_wait;
1425
1426 if (copy_to_user(ret_arg, &ret_serial, sizeof(*ret_arg)))
1427 return -EFAULT;
1428
1429 return 0;
1430}
1431
1432
Alan Cox4a90f092008-10-13 10:39:46 +01001433static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 struct serial_struct __user *new_arg)
1435{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 struct serial_struct new_serial;
1437
1438 if (copy_from_user(&new_serial, new_arg, sizeof(new_serial)))
1439 return -EFAULT;
1440
1441 tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 tport->tp_closing_wait = new_serial.closing_wait;
1443
1444 return 0;
1445}
1446
1447
1448static void ti_handle_new_msr(struct ti_port *tport, __u8 msr)
1449{
1450 struct async_icount *icount;
1451 struct tty_struct *tty;
1452 unsigned long flags;
1453
Harvey Harrison441b62c2008-03-03 16:08:34 -08001454 dbg("%s - msr 0x%02X", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 if (msr & TI_MSR_DELTA_MASK) {
1457 spin_lock_irqsave(&tport->tp_lock, flags);
1458 icount = &tport->tp_icount;
1459 if (msr & TI_MSR_DELTA_CTS)
1460 icount->cts++;
1461 if (msr & TI_MSR_DELTA_DSR)
1462 icount->dsr++;
1463 if (msr & TI_MSR_DELTA_CD)
1464 icount->dcd++;
1465 if (msr & TI_MSR_DELTA_RI)
1466 icount->rng++;
1467 wake_up_interruptible(&tport->tp_msr_wait);
1468 spin_unlock_irqrestore(&tport->tp_lock, flags);
1469 }
1470
1471 tport->tp_msr = msr & TI_MSR_MASK;
1472
1473 /* handle CTS flow control */
Alan Cox4a90f092008-10-13 10:39:46 +01001474 tty = tty_port_tty_get(&tport->tp_port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (tty && C_CRTSCTS(tty)) {
1476 if (msr & TI_MSR_CTS) {
1477 tty->hw_stopped = 0;
1478 tty_wakeup(tty);
1479 } else {
1480 tty->hw_stopped = 1;
1481 }
1482 }
Alan Cox4a90f092008-10-13 10:39:46 +01001483 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486
1487static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush)
1488{
1489 struct ti_device *tdev = tport->tp_tdev;
1490 struct usb_serial_port *port = tport->tp_port;
1491 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Harvey Harrison441b62c2008-03-03 16:08:34 -08001493 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Oliver Neukum0915f492008-01-23 12:28:45 +01001495 spin_lock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 /* wait for data to drain from the buffer */
1498 tdev->td_urb_error = 0;
1499 init_waitqueue_entry(&wait, current);
1500 add_wait_queue(&tport->tp_write_wait, &wait);
1501 for (;;) {
1502 set_current_state(TASK_INTERRUPTIBLE);
1503 if (ti_buf_data_avail(tport->tp_write_buf) == 0
1504 || timeout == 0 || signal_pending(current)
1505 || tdev->td_urb_error
Oliver Neukum0915f492008-01-23 12:28:45 +01001506 || port->serial->disconnected) /* disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 break;
Oliver Neukum0915f492008-01-23 12:28:45 +01001508 spin_unlock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 timeout = schedule_timeout(timeout);
Oliver Neukum0915f492008-01-23 12:28:45 +01001510 spin_lock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
1512 set_current_state(TASK_RUNNING);
1513 remove_wait_queue(&tport->tp_write_wait, &wait);
1514
1515 /* flush any remaining data in the buffer */
1516 if (flush)
1517 ti_buf_clear(tport->tp_write_buf);
1518
Oliver Neukum0915f492008-01-23 12:28:45 +01001519 spin_unlock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Oliver Neukum0915f492008-01-23 12:28:45 +01001521 mutex_lock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 /* wait for data to drain from the device */
1523 /* wait for empty tx register, plus 20 ms */
1524 timeout += jiffies;
1525 tport->tp_lsr &= ~TI_LSR_TX_EMPTY;
1526 while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
1527 && !(tport->tp_lsr&TI_LSR_TX_EMPTY) && !tdev->td_urb_error
Oliver Neukum0915f492008-01-23 12:28:45 +01001528 && !port->serial->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (ti_get_lsr(tport))
1530 break;
Oliver Neukum0915f492008-01-23 12:28:45 +01001531 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 msleep_interruptible(20);
Oliver Neukum0915f492008-01-23 12:28:45 +01001533 mutex_lock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Oliver Neukum0915f492008-01-23 12:28:45 +01001535 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536}
1537
1538
1539static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty)
1540{
1541 unsigned long flags;
1542
1543 spin_lock_irqsave(&tport->tp_lock, flags);
1544
1545 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
1546 tport->tp_read_urb_state = TI_READ_URB_STOPPING;
1547
1548 spin_unlock_irqrestore(&tport->tp_lock, flags);
1549}
1550
1551
1552static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty)
1553{
1554 struct urb *urb;
1555 int status = 0;
1556 unsigned long flags;
1557
1558 spin_lock_irqsave(&tport->tp_lock, flags);
1559
1560 if (tport->tp_read_urb_state == TI_READ_URB_STOPPED) {
Oliver Neukum944dc182007-05-07 08:33:18 +02001561 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 urb = tport->tp_port->read_urb;
Oliver Neukum944dc182007-05-07 08:33:18 +02001563 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 urb->complete = ti_bulk_in_callback;
1565 urb->context = tport;
1566 urb->dev = tport->tp_port->serial->dev;
1567 status = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukum944dc182007-05-07 08:33:18 +02001568 } else {
1569 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
1570 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 return status;
1574}
1575
1576
1577static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
1578 __u16 moduleid, __u16 value, __u8 *data, int size)
1579{
1580 int status;
1581
1582 status = usb_control_msg(tdev->td_serial->dev,
1583 usb_sndctrlpipe(tdev->td_serial->dev, 0), command,
1584 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
1585 value, moduleid, data, size, 1000);
1586
1587 if (status == size)
1588 status = 0;
1589
1590 if (status > 0)
1591 status = -ECOMM;
1592
1593 return status;
1594}
1595
1596
1597static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
1598 __u16 moduleid, __u16 value, __u8 *data, int size)
1599{
1600 int status;
1601
1602 status = usb_control_msg(tdev->td_serial->dev,
1603 usb_rcvctrlpipe(tdev->td_serial->dev, 0), command,
1604 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
1605 value, moduleid, data, size, 1000);
1606
1607 if (status == size)
1608 status = 0;
1609
1610 if (status > 0)
1611 status = -ECOMM;
1612
1613 return status;
1614}
1615
1616
1617static int ti_write_byte(struct ti_device *tdev, unsigned long addr,
1618 __u8 mask, __u8 byte)
1619{
1620 int status;
1621 unsigned int size;
1622 struct ti_write_data_bytes *data;
1623 struct device *dev = &tdev->td_serial->dev->dev;
1624
Alan Coxa30fa792008-07-22 11:15:17 +01001625 dbg("%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X",
1626 __func__, addr, mask, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 size = sizeof(struct ti_write_data_bytes) + 2;
1629 data = kmalloc(size, GFP_KERNEL);
1630 if (!data) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001631 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return -ENOMEM;
1633 }
1634
1635 data->bAddrType = TI_RW_DATA_ADDR_XDATA;
1636 data->bDataType = TI_RW_DATA_BYTE;
1637 data->bDataCounter = 1;
1638 data->wBaseAddrHi = cpu_to_be16(addr>>16);
1639 data->wBaseAddrLo = cpu_to_be16(addr);
1640 data->bData[0] = mask;
1641 data->bData[1] = byte;
1642
1643 status = ti_command_out_sync(tdev, TI_WRITE_DATA, TI_RAM_PORT, 0,
1644 (__u8 *)data, size);
1645
1646 if (status < 0)
Harvey Harrison441b62c2008-03-03 16:08:34 -08001647 dev_err(dev, "%s - failed, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 kfree(data);
1650
1651 return status;
1652}
1653
Alan Cox95da3102008-07-22 11:09:07 +01001654static int ti_do_download(struct usb_device *dev, int pipe,
1655 u8 *buffer, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 int pos;
Alan Cox95da3102008-07-22 11:09:07 +01001658 u8 cs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 struct ti_firmware_header *header;
Alan Cox95da3102008-07-22 11:09:07 +01001661 int status;
1662 int len;
Alan Coxa30fa792008-07-22 11:15:17 +01001663
1664 for (pos = sizeof(struct ti_firmware_header); pos < size; pos++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 cs = (__u8)(cs + buffer[pos]);
1666
1667 header = (struct ti_firmware_header *)buffer;
Alan Coxa30fa792008-07-22 11:15:17 +01001668 header->wLength = cpu_to_le16((__u16)(size
Alan Cox95da3102008-07-22 11:09:07 +01001669 - sizeof(struct ti_firmware_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 header->bCheckSum = cs;
1671
Harvey Harrison441b62c2008-03-03 16:08:34 -08001672 dbg("%s - downloading firmware", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01001673 for (pos = 0; pos < size; pos += done) {
1674 len = min(size - pos, TI_DOWNLOAD_MAX_PACKET_SIZE);
1675 status = usb_bulk_msg(dev, pipe, buffer + pos, len,
1676 &done, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (status)
1678 break;
1679 }
Alan Cox95da3102008-07-22 11:09:07 +01001680 return status;
1681}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Chris Adams05a3d902009-01-11 19:48:53 +00001683static int ti_download_firmware(struct ti_device *tdev)
Alan Cox95da3102008-07-22 11:09:07 +01001684{
Chris Adams05a3d902009-01-11 19:48:53 +00001685 int status;
Alan Cox95da3102008-07-22 11:09:07 +01001686 int buffer_size;
1687 __u8 *buffer;
1688 struct usb_device *dev = tdev->td_serial->dev;
1689 unsigned int pipe = usb_sndbulkpipe(dev,
1690 tdev->td_serial->port[0]->bulk_out_endpointAddress);
1691 const struct firmware *fw_p;
1692 char buf[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Chris Adams05a3d902009-01-11 19:48:53 +00001694 /* try ID specific firmware first, then try generic firmware */
1695 sprintf(buf, "ti_usb-v%04x-p%04x.fw", dev->descriptor.idVendor,
1696 dev->descriptor.idProduct);
1697 if ((status = request_firmware(&fw_p, buf, &dev->dev)) != 0) {
Chris Adamscb7a7c62009-01-11 19:49:00 +00001698 buf[0] = '\0';
1699 if (dev->descriptor.idVendor == MTS_VENDOR_ID) {
1700 switch (dev->descriptor.idProduct) {
1701 case MTS_CDMA_PRODUCT_ID:
1702 strcpy(buf, "mts_cdma.fw");
1703 break;
1704 case MTS_GSM_PRODUCT_ID:
1705 strcpy(buf, "mts_gsm.fw");
1706 break;
1707 case MTS_EDGE_PRODUCT_ID:
1708 strcpy(buf, "mts_edge.fw");
1709 break;
1710 }
1711 }
1712 if (buf[0] == '\0') {
1713 if (tdev->td_is_3410)
1714 strcpy(buf, "ti_3410.fw");
1715 else
1716 strcpy(buf, "ti_5052.fw");
1717 }
Chris Adams05a3d902009-01-11 19:48:53 +00001718 status = request_firmware(&fw_p, buf, &dev->dev);
1719 }
1720 if (status) {
Alan Cox95da3102008-07-22 11:09:07 +01001721 dev_err(&dev->dev, "%s - firmware not found\n", __func__);
1722 return -ENOENT;
1723 }
1724 if (fw_p->size > TI_FIRMWARE_BUF_SIZE) {
1725 dev_err(&dev->dev, "%s - firmware too large\n", __func__);
1726 return -ENOENT;
1727 }
1728
1729 buffer_size = TI_FIRMWARE_BUF_SIZE + sizeof(struct ti_firmware_header);
1730 buffer = kmalloc(buffer_size, GFP_KERNEL);
1731 if (buffer) {
1732 memcpy(buffer, fw_p->data, fw_p->size);
1733 memset(buffer + fw_p->size, 0xff, buffer_size - fw_p->size);
Chris Adams2bcbe4c2008-09-10 14:11:38 -07001734 status = ti_do_download(dev, pipe, buffer, fw_p->size);
Alan Cox95da3102008-07-22 11:09:07 +01001735 kfree(buffer);
Chris Adams05a3d902009-01-11 19:48:53 +00001736 } else {
1737 status = -ENOMEM;
Alan Cox95da3102008-07-22 11:09:07 +01001738 }
1739 release_firmware(fw_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001741 dev_err(&dev->dev, "%s - error downloading firmware, %d\n",
1742 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return status;
1744 }
1745
Harvey Harrison441b62c2008-03-03 16:08:34 -08001746 dbg("%s - download successful", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 return 0;
1749}
1750
1751
1752/* Circular Buffer Functions */
1753
1754/*
1755 * ti_buf_alloc
1756 *
1757 * Allocate a circular buffer and all associated memory.
1758 */
1759
1760static struct circ_buf *ti_buf_alloc(void)
1761{
1762 struct circ_buf *cb;
1763
Robert P. J. Day5cbded52006-12-13 00:35:56 -08001764 cb = kmalloc(sizeof(struct circ_buf), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (cb == NULL)
1766 return NULL;
1767
1768 cb->buf = kmalloc(TI_WRITE_BUF_SIZE, GFP_KERNEL);
1769 if (cb->buf == NULL) {
1770 kfree(cb);
1771 return NULL;
1772 }
1773
1774 ti_buf_clear(cb);
1775
1776 return cb;
1777}
1778
1779
1780/*
1781 * ti_buf_free
1782 *
1783 * Free the buffer and all associated memory.
1784 */
1785
1786static void ti_buf_free(struct circ_buf *cb)
1787{
1788 kfree(cb->buf);
1789 kfree(cb);
1790}
1791
1792
1793/*
1794 * ti_buf_clear
1795 *
1796 * Clear out all data in the circular buffer.
1797 */
1798
1799static void ti_buf_clear(struct circ_buf *cb)
1800{
1801 cb->head = cb->tail = 0;
1802}
1803
1804
1805/*
1806 * ti_buf_data_avail
1807 *
1808 * Return the number of bytes of data available in the circular
1809 * buffer.
1810 */
1811
1812static int ti_buf_data_avail(struct circ_buf *cb)
1813{
Alan Coxa30fa792008-07-22 11:15:17 +01001814 return CIRC_CNT(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817
1818/*
1819 * ti_buf_space_avail
1820 *
1821 * Return the number of bytes of space available in the circular
1822 * buffer.
1823 */
1824
1825static int ti_buf_space_avail(struct circ_buf *cb)
1826{
Alan Coxa30fa792008-07-22 11:15:17 +01001827 return CIRC_SPACE(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828}
1829
1830
1831/*
1832 * ti_buf_put
1833 *
1834 * Copy data data from a user buffer and put it into the circular buffer.
1835 * Restrict to the amount of space available.
1836 *
1837 * Return the number of bytes copied.
1838 */
1839
1840static int ti_buf_put(struct circ_buf *cb, const char *buf, int count)
1841{
1842 int c, ret = 0;
1843
1844 while (1) {
1845 c = CIRC_SPACE_TO_END(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
1846 if (count < c)
1847 c = count;
1848 if (c <= 0)
1849 break;
1850 memcpy(cb->buf + cb->head, buf, c);
1851 cb->head = (cb->head + c) & (TI_WRITE_BUF_SIZE-1);
1852 buf += c;
1853 count -= c;
1854 ret += c;
1855 }
1856
1857 return ret;
1858}
1859
1860
1861/*
1862 * ti_buf_get
1863 *
1864 * Get data from the circular buffer and copy to the given buffer.
1865 * Restrict to the amount of data available.
1866 *
1867 * Return the number of bytes copied.
1868 */
1869
1870static int ti_buf_get(struct circ_buf *cb, char *buf, int count)
1871{
1872 int c, ret = 0;
1873
1874 while (1) {
1875 c = CIRC_CNT_TO_END(cb->head, cb->tail, TI_WRITE_BUF_SIZE);
1876 if (count < c)
1877 c = count;
1878 if (c <= 0)
1879 break;
1880 memcpy(buf, cb->buf + cb->tail, c);
1881 cb->tail = (cb->tail + c) & (TI_WRITE_BUF_SIZE-1);
1882 buf += c;
1883 count -= c;
1884 ret += c;
1885 }
1886
1887 return ret;
1888}