blob: 39cb9b807c3cf998842c39267e9d217b82460e59 [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>
Johan Hovold074ef652010-05-19 00:01:35 +020033#include <linux/kfifo.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
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>"
44#define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver"
45
46#define TI_FIRMWARE_BUF_SIZE 16284
47
48#define TI_WRITE_BUF_SIZE 1024
49
50#define TI_TRANSFER_TIMEOUT 2
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */
53
54/* supported setserial flags */
Oliver Neukum2400a2b2009-04-20 17:28:53 +020055#define TI_SET_SERIAL_FLAGS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/* read urb states */
58#define TI_READ_URB_RUNNING 0
59#define TI_READ_URB_STOPPING 1
60#define TI_READ_URB_STOPPED 2
61
62#define TI_EXTRA_VID_PID_COUNT 5
63
64
65/* Structures */
66
67struct ti_port {
68 int tp_is_open;
69 __u8 tp_msr;
70 __u8 tp_lsr;
71 __u8 tp_shadow_mcr;
72 __u8 tp_uart_mode; /* 232 or 485 modes */
73 unsigned int tp_uart_base_addr;
74 int tp_flags;
75 int tp_closing_wait;/* in .01 secs */
76 struct async_icount tp_icount;
77 wait_queue_head_t tp_msr_wait; /* wait for msr change */
78 wait_queue_head_t tp_write_wait;
79 struct ti_device *tp_tdev;
80 struct usb_serial_port *tp_port;
81 spinlock_t tp_lock;
82 int tp_read_urb_state;
83 int tp_write_urb_in_use;
Johan Hovold074ef652010-05-19 00:01:35 +020084 struct kfifo write_fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
87struct ti_device {
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080088 struct mutex td_open_close_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int td_open_port_count;
90 struct usb_serial *td_serial;
91 int td_is_3410;
92 int td_urb_error;
93};
94
95
96/* Function Declarations */
97
98static int ti_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040099static void ti_release(struct usb_serial *serial);
Johan Hovold51ef8472012-10-17 16:31:35 +0200100static int ti_port_probe(struct usb_serial_port *port);
101static int ti_port_remove(struct usb_serial_port *port);
Alan Coxa509a7e2009-09-19 13:13:26 -0700102static int ti_open(struct tty_struct *tty, struct usb_serial_port *port);
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 Cox00a0d0d2011-02-14 16:27:06 +0000110static int ti_ioctl(struct tty_struct *tty,
Alan Coxa30fa792008-07-22 11:15:17 +0100111 unsigned int cmd, unsigned long arg);
Alan Cox0bca1b92010-09-16 18:21:40 +0100112static int ti_get_icount(struct tty_struct *tty,
113 struct serial_icounter_struct *icount);
Alan Coxa30fa792008-07-22 11:15:17 +0100114static void ti_set_termios(struct tty_struct *tty,
115 struct usb_serial_port *port, struct ktermios *old_termios);
Alan Cox60b33c12011-02-14 16:26:14 +0000116static int ti_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000117static int ti_tiocmset(struct tty_struct *tty,
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
Jiri Slaby2e124b42013-01-03 15:53:06 +0100124static void ti_recv(struct usb_serial_port *port, unsigned char *data,
125 int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static 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
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700145static int ti_write_byte(struct usb_serial_port *port, struct ti_device *tdev,
146 unsigned long addr, __u8 mask, __u8 byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Chris Adams05a3d902009-01-11 19:48:53 +0000148static int ti_download_firmware(struct ti_device *tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151/* Data */
152
153/* module parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static int closing_wait = TI_DEFAULT_CLOSING_WAIT;
155static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100156static unsigned int vendor_3410_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static ushort product_3410[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100158static unsigned int product_3410_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static ushort vendor_5052[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100160static unsigned int vendor_5052_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static ushort product_5052[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100162static unsigned int product_5052_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/* supported devices */
165/* the array dimension is the number of default entries plus */
166/* TI_EXTRA_VID_PID_COUNT user defined entries plus 1 terminating */
167/* null entry */
Darren Hart975dc332012-05-11 13:56:57 -0700168static struct usb_device_id ti_id_table_3410[15+TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000170 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000171 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
172 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
173 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
174 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
175 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700176 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234MU_PRODUCT_ID) },
177 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBA_PRODUCT_ID) },
178 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBAOLD_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100179 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100180 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
181 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Andrew Lunn7fd25702012-02-20 09:31:57 +0100182 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) },
Darren Hart975dc332012-05-11 13:56:57 -0700183 { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Oliver Neukum97dcf042009-02-04 16:38:33 +0100186static struct usb_device_id ti_id_table_5052[5+TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
188 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
189 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
190 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
191};
192
Darren Hart975dc332012-05-11 13:56:57 -0700193static struct usb_device_id ti_id_table_combined[19+2*TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000195 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000196 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
197 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
198 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
199 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
200 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700201 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234MU_PRODUCT_ID) },
202 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBA_PRODUCT_ID) },
203 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBAOLD_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
205 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
206 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
207 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100208 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100209 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
210 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Andrew Lunn7fd25702012-02-20 09:31:57 +0100211 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) },
Darren Hart975dc332012-05-11 13:56:57 -0700212 { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 { }
214};
215
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700216static struct usb_serial_driver ti_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700217 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700218 .owner = THIS_MODULE,
219 .name = "ti_usb_3410_5052_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700220 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700221 .description = "TI USB 3410 1 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .id_table = ti_id_table_3410,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 .num_ports = 1,
224 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400225 .release = ti_release,
Johan Hovold51ef8472012-10-17 16:31:35 +0200226 .port_probe = ti_port_probe,
227 .port_remove = ti_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 .open = ti_open,
229 .close = ti_close,
230 .write = ti_write,
231 .write_room = ti_write_room,
232 .chars_in_buffer = ti_chars_in_buffer,
233 .throttle = ti_throttle,
234 .unthrottle = ti_unthrottle,
235 .ioctl = ti_ioctl,
236 .set_termios = ti_set_termios,
237 .tiocmget = ti_tiocmget,
238 .tiocmset = ti_tiocmset,
Alan Cox0bca1b92010-09-16 18:21:40 +0100239 .get_icount = ti_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 .break_ctl = ti_break,
241 .read_int_callback = ti_interrupt_callback,
242 .read_bulk_callback = ti_bulk_in_callback,
243 .write_bulk_callback = ti_bulk_out_callback,
244};
245
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700246static struct usb_serial_driver ti_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700247 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700248 .owner = THIS_MODULE,
249 .name = "ti_usb_3410_5052_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700250 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700251 .description = "TI USB 5052 2 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 .id_table = ti_id_table_5052,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 .num_ports = 2,
254 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400255 .release = ti_release,
Johan Hovold51ef8472012-10-17 16:31:35 +0200256 .port_probe = ti_port_probe,
257 .port_remove = ti_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .open = ti_open,
259 .close = ti_close,
260 .write = ti_write,
261 .write_room = ti_write_room,
262 .chars_in_buffer = ti_chars_in_buffer,
263 .throttle = ti_throttle,
264 .unthrottle = ti_unthrottle,
265 .ioctl = ti_ioctl,
266 .set_termios = ti_set_termios,
267 .tiocmget = ti_tiocmget,
268 .tiocmset = ti_tiocmset,
Alan Cox0bca1b92010-09-16 18:21:40 +0100269 .get_icount = ti_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 .break_ctl = ti_break,
271 .read_int_callback = ti_interrupt_callback,
272 .read_bulk_callback = ti_bulk_in_callback,
273 .write_bulk_callback = ti_bulk_out_callback,
274};
275
Alan Stern29618e92012-02-23 14:57:32 -0500276static struct usb_serial_driver * const serial_drivers[] = {
277 &ti_1port_device, &ti_2port_device, NULL
278};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280/* Module */
281
282MODULE_AUTHOR(TI_DRIVER_AUTHOR);
283MODULE_DESCRIPTION(TI_DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284MODULE_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");
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700291MODULE_FIRMWARE("mts_mt9234mu.fw");
292MODULE_FIRMWARE("mts_mt9234zba.fw");
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294module_param(closing_wait, int, S_IRUGO | S_IWUSR);
Alan Coxa30fa792008-07-22 11:15:17 +0100295MODULE_PARM_DESC(closing_wait,
296 "Maximum wait for data to drain in close, in .01 secs, default is 4000");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298module_param_array(vendor_3410, ushort, &vendor_3410_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100299MODULE_PARM_DESC(vendor_3410,
300 "Vendor ids for 3410 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301module_param_array(product_3410, ushort, &product_3410_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100302MODULE_PARM_DESC(product_3410,
303 "Product ids for 3410 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304module_param_array(vendor_5052, ushort, &vendor_5052_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100305MODULE_PARM_DESC(vendor_5052,
306 "Vendor ids for 5052 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307module_param_array(product_5052, ushort, &product_5052_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100308MODULE_PARM_DESC(product_5052,
309 "Product ids for 5052 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311MODULE_DEVICE_TABLE(usb, ti_id_table_combined);
312
313
314/* Functions */
315
316static int __init ti_init(void)
317{
Chris Adams05a3d902009-01-11 19:48:53 +0000318 int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* insert extra vendor and product ids */
Chris Adams05a3d902009-01-11 19:48:53 +0000321 c = ARRAY_SIZE(ti_id_table_combined) - 2 * TI_EXTRA_VID_PID_COUNT - 1;
Tobias Klauser52950ed2005-12-11 16:20:08 +0100322 j = ARRAY_SIZE(ti_id_table_3410) - TI_EXTRA_VID_PID_COUNT - 1;
Chris Adams05a3d902009-01-11 19:48:53 +0000323 for (i = 0; i < min(vendor_3410_count, product_3410_count); i++, j++, c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 ti_id_table_3410[j].idVendor = vendor_3410[i];
325 ti_id_table_3410[j].idProduct = product_3410[i];
326 ti_id_table_3410[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Chris Adams05a3d902009-01-11 19:48:53 +0000327 ti_id_table_combined[c].idVendor = vendor_3410[i];
328 ti_id_table_combined[c].idProduct = product_3410[i];
329 ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Tobias Klauser52950ed2005-12-11 16:20:08 +0100331 j = ARRAY_SIZE(ti_id_table_5052) - TI_EXTRA_VID_PID_COUNT - 1;
Chris Adams05a3d902009-01-11 19:48:53 +0000332 for (i = 0; i < min(vendor_5052_count, product_5052_count); i++, j++, c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 ti_id_table_5052[j].idVendor = vendor_5052[i];
334 ti_id_table_5052[j].idProduct = product_5052[i];
335 ti_id_table_5052[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Chris Adams05a3d902009-01-11 19:48:53 +0000336 ti_id_table_combined[c].idVendor = vendor_5052[i];
337 ti_id_table_combined[c].idProduct = product_5052[i];
338 ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340
Greg Kroah-Hartmanf378dfe2012-09-18 17:09:00 +0100341 return usb_serial_register_drivers(serial_drivers, KBUILD_MODNAME, ti_id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344static void __exit ti_exit(void)
345{
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700346 usb_serial_deregister_drivers(serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349module_init(ti_init);
350module_exit(ti_exit);
351
352
353static int ti_startup(struct usb_serial *serial)
354{
355 struct ti_device *tdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 struct usb_device *dev = serial->dev;
357 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700359 dev_dbg(&dev->dev,
360 "%s - product 0x%4X, num configurations %d, configuration value %d",
361 __func__, le16_to_cpu(dev->descriptor.idProduct),
362 dev->descriptor.bNumConfigurations,
363 dev->actconfig->desc.bConfigurationValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* create device structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100366 tdev = kzalloc(sizeof(struct ti_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (tdev == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800368 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return -ENOMEM;
370 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800371 mutex_init(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 tdev->td_serial = serial;
373 usb_set_serial_data(serial, tdev);
374
375 /* determine device type */
376 if (usb_match_id(serial->interface, ti_id_table_3410))
377 tdev->td_is_3410 = 1;
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700378 dev_dbg(&dev->dev, "%s - device type is %s\n", __func__,
379 tdev->td_is_3410 ? "3410" : "5052");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /* if we have only 1 configuration, download firmware */
382 if (dev->descriptor.bNumConfigurations == 1) {
Adhir Ramjiawan72b27a02012-04-09 14:01:38 +0200383 status = ti_download_firmware(tdev);
384
385 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 goto free_tdev;
387
388 /* 3410 must be reset, 5052 resets itself */
389 if (tdev->td_is_3410) {
390 msleep_interruptible(100);
391 usb_reset_device(dev);
392 }
393
394 status = -ENODEV;
395 goto free_tdev;
Alan Coxa30fa792008-07-22 11:15:17 +0100396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100398 /* the second configuration must be set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (dev->actconfig->desc.bConfigurationValue == TI_BOOT_CONFIG) {
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100400 status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG);
401 status = status ? status : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 goto free_tdev;
403 }
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return 0;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407free_tdev:
408 kfree(tdev);
409 usb_set_serial_data(serial, NULL);
410 return status;
411}
412
413
Alan Sternf9c99bb2009-06-02 11:53:55 -0400414static void ti_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct ti_device *tdev = usb_get_serial_data(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700418 kfree(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Johan Hovold51ef8472012-10-17 16:31:35 +0200421static int ti_port_probe(struct usb_serial_port *port)
422{
423 struct ti_port *tport;
424
425 tport = kzalloc(sizeof(*tport), GFP_KERNEL);
426 if (!tport)
427 return -ENOMEM;
428
429 spin_lock_init(&tport->tp_lock);
430 if (port == port->serial->port[0])
431 tport->tp_uart_base_addr = TI_UART1_BASE_ADDR;
432 else
433 tport->tp_uart_base_addr = TI_UART2_BASE_ADDR;
434 tport->tp_closing_wait = closing_wait;
435 init_waitqueue_head(&tport->tp_msr_wait);
436 init_waitqueue_head(&tport->tp_write_wait);
437 if (kfifo_alloc(&tport->write_fifo, TI_WRITE_BUF_SIZE, GFP_KERNEL)) {
438 kfree(tport);
439 return -ENOMEM;
440 }
441 tport->tp_port = port;
442 tport->tp_tdev = usb_get_serial_data(port->serial);
443 tport->tp_uart_mode = 0; /* default is RS232 */
444
445 usb_set_serial_port_data(port, tport);
446
447 return 0;
448}
449
450static int ti_port_remove(struct usb_serial_port *port)
451{
452 struct ti_port *tport;
453
454 tport = usb_get_serial_port_data(port);
455 kfifo_free(&tport->write_fifo);
456 kfree(tport);
457
458 return 0;
459}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Alan Coxa509a7e2009-09-19 13:13:26 -0700461static int ti_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 struct ti_port *tport = usb_get_serial_port_data(port);
464 struct ti_device *tdev;
465 struct usb_device *dev;
466 struct urb *urb;
467 int port_number;
468 int status;
Alan Coxa30fa792008-07-22 11:15:17 +0100469 __u16 open_settings = (__u8)(TI_PIPE_MODE_CONTINOUS |
470 TI_PIPE_TIMEOUT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 (TI_TRANSFER_TIMEOUT << 2));
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (tport == NULL)
474 return -ENODEV;
475
476 dev = port->serial->dev;
477 tdev = tport->tp_tdev;
478
479 /* only one open on any port on a device at a time */
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800480 if (mutex_lock_interruptible(&tdev->td_open_close_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -ERESTARTSYS;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 port_number = port->number - port->serial->minor;
484
485 memset(&(tport->tp_icount), 0x00, sizeof(tport->tp_icount));
486
487 tport->tp_msr = 0;
488 tport->tp_shadow_mcr |= (TI_MCR_RTS | TI_MCR_DTR);
489
490 /* start interrupt urb the first time a port is opened on this device */
491 if (tdev->td_open_port_count == 0) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700492 dev_dbg(&port->dev, "%s - start interrupt in urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 urb = tdev->td_serial->port[0]->interrupt_in_urb;
494 if (!urb) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700495 dev_err(&port->dev, "%s - no interrupt urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 status = -EINVAL;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800497 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 urb->context = tdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 status = usb_submit_urb(urb, GFP_KERNEL);
501 if (status) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700502 dev_err(&port->dev, "%s - submit interrupt urb failed, %d\n", __func__, status);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800503 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 }
506
Alan Cox95da3102008-07-22 11:09:07 +0100507 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100508 ti_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700510 dev_dbg(&port->dev, "%s - sending TI_OPEN_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
512 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
513 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100514 dev_err(&port->dev, "%s - cannot send open command, %d\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700515 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto unlink_int_urb;
517 }
518
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700519 dev_dbg(&port->dev, "%s - sending TI_START_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 status = ti_command_out_sync(tdev, TI_START_PORT,
521 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
522 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100523 dev_err(&port->dev, "%s - cannot send start command, %d\n",
524 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto unlink_int_urb;
526 }
527
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700528 dev_dbg(&port->dev, "%s - sending TI_PURGE_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
530 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_INPUT, NULL, 0);
531 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100532 dev_err(&port->dev, "%s - cannot clear input buffers, %d\n",
533 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 goto unlink_int_urb;
535 }
536 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
537 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_OUTPUT, NULL, 0);
538 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100539 dev_err(&port->dev, "%s - cannot clear output buffers, %d\n",
540 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 goto unlink_int_urb;
542 }
543
544 /* reset the data toggle on the bulk endpoints to work around bug in
545 * host controllers where things get out of sync some times */
546 usb_clear_halt(dev, port->write_urb->pipe);
547 usb_clear_halt(dev, port->read_urb->pipe);
548
Alan Cox95da3102008-07-22 11:09:07 +0100549 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100550 ti_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700552 dev_dbg(&port->dev, "%s - sending TI_OPEN_PORT (2)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
554 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
555 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100556 dev_err(&port->dev, "%s - cannot send open command (2), %d\n",
557 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 goto unlink_int_urb;
559 }
560
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700561 dev_dbg(&port->dev, "%s - sending TI_START_PORT (2)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 status = ti_command_out_sync(tdev, TI_START_PORT,
563 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
564 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100565 dev_err(&port->dev, "%s - cannot send start command (2), %d\n",
566 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto unlink_int_urb;
568 }
569
570 /* start read urb */
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700571 dev_dbg(&port->dev, "%s - start read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 urb = port->read_urb;
573 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800574 dev_err(&port->dev, "%s - no read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 status = -EINVAL;
576 goto unlink_int_urb;
577 }
578 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 urb->context = tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 status = usb_submit_urb(urb, GFP_KERNEL);
581 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100582 dev_err(&port->dev, "%s - submit read urb failed, %d\n",
583 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 goto unlink_int_urb;
585 }
586
587 tport->tp_is_open = 1;
588 ++tdev->td_open_port_count;
589
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800590 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592unlink_int_urb:
593 if (tdev->td_open_port_count == 0)
594 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800595release_lock:
596 mutex_unlock(&tdev->td_open_close_lock);
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700597 dev_dbg(&port->dev, "%s - exit %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return status;
599}
600
601
Alan Cox335f8512009-06-11 12:26:29 +0100602static void ti_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct ti_device *tdev;
605 struct ti_port *tport;
606 int port_number;
607 int status;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800608 int do_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 tdev = usb_get_serial_data(port->serial);
611 tport = usb_get_serial_port_data(port);
612 if (tdev == NULL || tport == NULL)
613 return;
614
615 tport->tp_is_open = 0;
616
617 ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 1);
618
619 usb_kill_urb(port->read_urb);
620 usb_kill_urb(port->write_urb);
621 tport->tp_write_urb_in_use = 0;
622
623 port_number = port->number - port->serial->minor;
624
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700625 dev_dbg(&port->dev, "%s - sending TI_CLOSE_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 status = ti_command_out_sync(tdev, TI_CLOSE_PORT,
627 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
628 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100629 dev_err(&port->dev,
630 "%s - cannot send close port command, %d\n"
631 , __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800633 /* if mutex_lock is interrupted, continue anyway */
634 do_unlock = !mutex_lock_interruptible(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 --tport->tp_tdev->td_open_port_count;
636 if (tport->tp_tdev->td_open_port_count <= 0) {
637 /* last port is closed, shut down interrupt urb */
638 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
639 tport->tp_tdev->td_open_port_count = 0;
640 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800641 if (do_unlock)
642 mutex_unlock(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645
Alan Cox95da3102008-07-22 11:09:07 +0100646static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
647 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (count == 0) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700652 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return 0;
654 }
655
656 if (tport == NULL || !tport->tp_is_open)
657 return -ENODEV;
658
Johan Hovold074ef652010-05-19 00:01:35 +0200659 count = kfifo_in_locked(&tport->write_fifo, data, count,
660 &tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 ti_send(tport);
662
663 return count;
664}
665
666
Alan Cox95da3102008-07-22 11:09:07 +0100667static int ti_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Alan Cox95da3102008-07-22 11:09:07 +0100669 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct ti_port *tport = usb_get_serial_port_data(port);
671 int room = 0;
672 unsigned long flags;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (tport == NULL)
Alan Cox23198fd2009-07-20 16:05:27 +0100675 return 0;
Alan Coxa30fa792008-07-22 11:15:17 +0100676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovold074ef652010-05-19 00:01:35 +0200678 room = kfifo_avail(&tport->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 spin_unlock_irqrestore(&tport->tp_lock, flags);
680
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700681 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return room;
683}
684
685
Alan Cox95da3102008-07-22 11:09:07 +0100686static int ti_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Alan Cox95da3102008-07-22 11:09:07 +0100688 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 struct ti_port *tport = usb_get_serial_port_data(port);
690 int chars = 0;
691 unsigned long flags;
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (tport == NULL)
Alan Cox23198fd2009-07-20 16:05:27 +0100694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovold074ef652010-05-19 00:01:35 +0200697 chars = kfifo_len(&tport->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 spin_unlock_irqrestore(&tport->tp_lock, flags);
699
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700700 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return chars;
702}
703
704
Alan Cox95da3102008-07-22 11:09:07 +0100705static void ti_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Alan Cox95da3102008-07-22 11:09:07 +0100707 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (tport == NULL)
711 return;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (I_IXOFF(tty) || C_CRTSCTS(tty))
714 ti_stop_read(tport, tty);
715
716}
717
718
Alan Cox95da3102008-07-22 11:09:07 +0100719static void ti_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Alan Cox95da3102008-07-22 11:09:07 +0100721 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int status;
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (tport == NULL)
726 return;
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (I_IXOFF(tty) || C_CRTSCTS(tty)) {
729 status = ti_restart_read(tport, tty);
730 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100731 dev_err(&port->dev, "%s - cannot restart read, %d\n",
732 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734}
735
Alan Cox0bca1b92010-09-16 18:21:40 +0100736static int ti_get_icount(struct tty_struct *tty,
737 struct serial_icounter_struct *icount)
738{
739 struct usb_serial_port *port = tty->driver_data;
740 struct ti_port *tport = usb_get_serial_port_data(port);
741 struct async_icount cnow = tport->tp_icount;
742
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700743 dev_dbg(&port->dev, "%s - TIOCGICOUNT RX=%d, TX=%d\n", __func__,
Alan Cox0bca1b92010-09-16 18:21:40 +0100744 cnow.rx, cnow.tx);
745
746 icount->cts = cnow.cts;
747 icount->dsr = cnow.dsr;
748 icount->rng = cnow.rng;
749 icount->dcd = cnow.dcd;
750 icount->rx = cnow.rx;
751 icount->tx = cnow.tx;
752 icount->frame = cnow.frame;
753 icount->overrun = cnow.overrun;
754 icount->parity = cnow.parity;
755 icount->brk = cnow.brk;
756 icount->buf_overrun = cnow.buf_overrun;
757
758 return 0;
759}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Alan Cox00a0d0d2011-02-14 16:27:06 +0000761static int ti_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 unsigned int cmd, unsigned long arg)
763{
Alan Cox95da3102008-07-22 11:09:07 +0100764 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct ti_port *tport = usb_get_serial_port_data(port);
766 struct async_icount cnow;
767 struct async_icount cprev;
768
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700769 dev_dbg(&port->dev, "%s - cmd = 0x%04X\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 if (tport == NULL)
772 return -ENODEV;
773
774 switch (cmd) {
Alan Coxa30fa792008-07-22 11:15:17 +0100775 case TIOCGSERIAL:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700776 dev_dbg(&port->dev, "%s - TIOCGSERIAL\n", __func__);
Alan Coxa30fa792008-07-22 11:15:17 +0100777 return ti_get_serial_info(tport,
778 (struct serial_struct __user *)arg);
779 case TIOCSSERIAL:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700780 dev_dbg(&port->dev, "%s - TIOCSSERIAL\n", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +0100781 return ti_set_serial_info(tty, tport,
782 (struct serial_struct __user *)arg);
Alan Coxa30fa792008-07-22 11:15:17 +0100783 case TIOCMIWAIT:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700784 dev_dbg(&port->dev, "%s - TIOCMIWAIT\n", __func__);
Alan Coxa30fa792008-07-22 11:15:17 +0100785 cprev = tport->tp_icount;
786 while (1) {
787 interruptible_sleep_on(&tport->tp_msr_wait);
788 if (signal_pending(current))
789 return -ERESTARTSYS;
790 cnow = tport->tp_icount;
791 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
792 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
793 return -EIO; /* no change => error */
794 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
795 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
796 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
797 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)))
798 return 0;
799 cprev = cnow;
800 }
801 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -ENOIOCTLCMD;
804}
805
806
Alan Cox95da3102008-07-22 11:09:07 +0100807static void ti_set_termios(struct tty_struct *tty,
808 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 struct ti_uart_config *config;
Alan Coxa30fa792008-07-22 11:15:17 +0100812 tcflag_t cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 int baud;
814 int status;
815 int port_number = port->number - port->serial->minor;
816 unsigned int mcr;
817
Alan Coxadc8d742012-07-14 15:31:47 +0100818 cflag = tty->termios.c_cflag;
819 iflag = tty->termios.c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700821 dev_dbg(&port->dev, "%s - cflag %08x, iflag %08x\n", __func__, cflag, iflag);
822 dev_dbg(&port->dev, "%s - old clfag %08x, old iflag %08x\n", __func__,
823 old_termios->c_cflag, old_termios->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (tport == NULL)
826 return;
827
828 config = kmalloc(sizeof(*config), GFP_KERNEL);
829 if (!config) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800830 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return;
832 }
833
834 config->wFlags = 0;
835
836 /* these flags must be set */
837 config->wFlags |= TI_UART_ENABLE_MS_INTS;
838 config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA;
839 config->bUartMode = (__u8)(tport->tp_uart_mode);
840
841 switch (cflag & CSIZE) {
Alan Coxa30fa792008-07-22 11:15:17 +0100842 case CS5:
843 config->bDataBits = TI_UART_5_DATA_BITS;
844 break;
845 case CS6:
846 config->bDataBits = TI_UART_6_DATA_BITS;
847 break;
848 case CS7:
849 config->bDataBits = TI_UART_7_DATA_BITS;
850 break;
851 default:
852 case CS8:
853 config->bDataBits = TI_UART_8_DATA_BITS;
854 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
Alan Cox537699e2008-01-03 17:03:11 +0000857 /* CMSPAR isn't supported by this driver */
Alan Coxadc8d742012-07-14 15:31:47 +0100858 tty->termios.c_cflag &= ~CMSPAR;
Alan Cox537699e2008-01-03 17:03:11 +0000859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (cflag & PARENB) {
861 if (cflag & PARODD) {
862 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
863 config->bParity = TI_UART_ODD_PARITY;
864 } else {
865 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
866 config->bParity = TI_UART_EVEN_PARITY;
867 }
868 } else {
869 config->wFlags &= ~TI_UART_ENABLE_PARITY_CHECKING;
Alan Coxa30fa792008-07-22 11:15:17 +0100870 config->bParity = TI_UART_NO_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
873 if (cflag & CSTOPB)
874 config->bStopBits = TI_UART_2_STOP_BITS;
875 else
876 config->bStopBits = TI_UART_1_STOP_BITS;
877
878 if (cflag & CRTSCTS) {
879 /* RTS flow control must be off to drop RTS for baud rate B0 */
880 if ((cflag & CBAUD) != B0)
881 config->wFlags |= TI_UART_ENABLE_RTS_IN;
882 config->wFlags |= TI_UART_ENABLE_CTS_OUT;
883 } else {
884 tty->hw_stopped = 0;
885 ti_restart_read(tport, tty);
886 }
887
888 if (I_IXOFF(tty) || I_IXON(tty)) {
889 config->cXon = START_CHAR(tty);
890 config->cXoff = STOP_CHAR(tty);
891
892 if (I_IXOFF(tty))
893 config->wFlags |= TI_UART_ENABLE_X_IN;
894 else
895 ti_restart_read(tport, tty);
896
897 if (I_IXON(tty))
898 config->wFlags |= TI_UART_ENABLE_X_OUT;
899 }
900
901 baud = tty_get_baud_rate(tty);
Alan Cox537699e2008-01-03 17:03:11 +0000902 if (!baud)
903 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (tport->tp_tdev->td_is_3410)
905 config->wBaudRate = (__u16)((923077 + baud/2) / baud);
906 else
907 config->wBaudRate = (__u16)((461538 + baud/2) / baud);
908
Alan Cox537699e2008-01-03 17:03:11 +0000909 /* FIXME: Should calculate resulting baud here and report it back */
910 if ((cflag & CBAUD) != B0)
911 tty_encode_baud_rate(tty, baud, baud);
912
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700913 dev_dbg(&port->dev,
914 "%s - BaudRate=%d, wBaudRate=%d, wFlags=0x%04X, bDataBits=%d, bParity=%d, bStopBits=%d, cXon=%d, cXoff=%d, bUartMode=%d",
915 __func__, baud, config->wBaudRate, config->wFlags,
916 config->bDataBits, config->bParity, config->bStopBits,
917 config->cXon, config->cXoff, config->bUartMode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 cpu_to_be16s(&config->wBaudRate);
920 cpu_to_be16s(&config->wFlags);
921
922 status = ti_command_out_sync(tport->tp_tdev, TI_SET_CONFIG,
923 (__u8)(TI_UART1_PORT + port_number), 0, (__u8 *)config,
924 sizeof(*config));
925 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100926 dev_err(&port->dev, "%s - cannot set config on port %d, %d\n",
927 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /* SET_CONFIG asserts RTS and DTR, reset them correctly */
930 mcr = tport->tp_shadow_mcr;
931 /* if baud rate is B0, clear RTS and DTR */
932 if ((cflag & CBAUD) == B0)
933 mcr &= ~(TI_MCR_DTR | TI_MCR_RTS);
934 status = ti_set_mcr(tport, mcr);
935 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100936 dev_err(&port->dev,
937 "%s - cannot set modem control on port %d, %d\n",
938 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 kfree(config);
941}
942
943
Alan Cox60b33c12011-02-14 16:26:14 +0000944static int ti_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Alan Cox95da3102008-07-22 11:09:07 +0100946 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 struct ti_port *tport = usb_get_serial_port_data(port);
948 unsigned int result;
949 unsigned int msr;
950 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000951 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (tport == NULL)
954 return -ENODEV;
955
Alan Cox04ca89d2008-02-20 21:41:40 +0000956 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 msr = tport->tp_msr;
958 mcr = tport->tp_shadow_mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000959 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0)
962 | ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0)
963 | ((mcr & TI_MCR_LOOP) ? TIOCM_LOOP : 0)
964 | ((msr & TI_MSR_CTS) ? TIOCM_CTS : 0)
965 | ((msr & TI_MSR_CD) ? TIOCM_CAR : 0)
966 | ((msr & TI_MSR_RI) ? TIOCM_RI : 0)
967 | ((msr & TI_MSR_DSR) ? TIOCM_DSR : 0);
968
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700969 dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 return result;
972}
973
974
Alan Cox20b9d172011-02-14 16:26:50 +0000975static int ti_tiocmset(struct tty_struct *tty,
976 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Alan Cox95da3102008-07-22 11:09:07 +0100978 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 struct ti_port *tport = usb_get_serial_port_data(port);
980 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000981 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (tport == NULL)
984 return -ENODEV;
985
Alan Cox04ca89d2008-02-20 21:41:40 +0000986 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 mcr = tport->tp_shadow_mcr;
988
989 if (set & TIOCM_RTS)
990 mcr |= TI_MCR_RTS;
991 if (set & TIOCM_DTR)
992 mcr |= TI_MCR_DTR;
993 if (set & TIOCM_LOOP)
994 mcr |= TI_MCR_LOOP;
995
996 if (clear & TIOCM_RTS)
997 mcr &= ~TI_MCR_RTS;
998 if (clear & TIOCM_DTR)
999 mcr &= ~TI_MCR_DTR;
1000 if (clear & TIOCM_LOOP)
1001 mcr &= ~TI_MCR_LOOP;
Alan Cox04ca89d2008-02-20 21:41:40 +00001002 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 return ti_set_mcr(tport, mcr);
1005}
1006
1007
Alan Cox95da3102008-07-22 11:09:07 +01001008static void ti_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
Alan Cox95da3102008-07-22 11:09:07 +01001010 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 struct ti_port *tport = usb_get_serial_port_data(port);
1012 int status;
1013
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001014 dev_dbg(&port->dev, "%s - state = %d\n", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 if (tport == NULL)
1017 return;
1018
1019 ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 0);
1020
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001021 status = ti_write_byte(port, tport->tp_tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 tport->tp_uart_base_addr + TI_UART_OFFSET_LCR,
1023 TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0);
1024
1025 if (status)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001026 dev_dbg(&port->dev, "%s - error setting break, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
1029
David Howells7d12e782006-10-05 14:55:46 +01001030static void ti_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Ming Leicdc97792008-02-24 18:41:47 +08001032 struct ti_device *tdev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct usb_serial_port *port;
1034 struct usb_serial *serial = tdev->td_serial;
1035 struct ti_port *tport;
1036 struct device *dev = &urb->dev->dev;
1037 unsigned char *data = urb->transfer_buffer;
1038 int length = urb->actual_length;
1039 int port_number;
1040 int function;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001041 int status = urb->status;
1042 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 __u8 msr;
1044
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001045 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 case 0:
1047 break;
1048 case -ECONNRESET:
1049 case -ENOENT:
1050 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001051 dev_dbg(dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 tdev->td_urb_error = 1;
1053 return;
1054 default:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001055 dev_err(dev, "%s - nonzero urb status, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 tdev->td_urb_error = 1;
1057 goto exit;
1058 }
1059
1060 if (length != 2) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001061 dev_dbg(dev, "%s - bad packet size, %d\n", __func__, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 goto exit;
1063 }
1064
1065 if (data[0] == TI_CODE_HARDWARE_ERROR) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001066 dev_err(dev, "%s - hardware error, %d\n", __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 goto exit;
1068 }
1069
1070 port_number = TI_GET_PORT_FROM_CODE(data[0]);
1071 function = TI_GET_FUNC_FROM_CODE(data[0]);
1072
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001073 dev_dbg(dev, "%s - port_number %d, function %d, data 0x%02X\n",
1074 __func__, port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (port_number >= serial->num_ports) {
Alan Coxa30fa792008-07-22 11:15:17 +01001077 dev_err(dev, "%s - bad port number, %d\n",
1078 __func__, port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 goto exit;
1080 }
1081
1082 port = serial->port[port_number];
1083
1084 tport = usb_get_serial_port_data(port);
1085 if (!tport)
1086 goto exit;
1087
1088 switch (function) {
1089 case TI_CODE_DATA_ERROR:
Alan Coxa30fa792008-07-22 11:15:17 +01001090 dev_err(dev, "%s - DATA ERROR, port %d, data 0x%02X\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001091 __func__, port_number, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 break;
1093
1094 case TI_CODE_MODEM_STATUS:
1095 msr = data[1];
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001096 dev_dbg(dev, "%s - port %d, msr 0x%02X\n", __func__, port_number, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 ti_handle_new_msr(tport, msr);
1098 break;
1099
1100 default:
Alan Coxa30fa792008-07-22 11:15:17 +01001101 dev_err(dev, "%s - unknown interrupt code, 0x%02X\n",
1102 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 break;
1104 }
1105
1106exit:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001107 retval = usb_submit_urb(urb, GFP_ATOMIC);
1108 if (retval)
1109 dev_err(dev, "%s - resubmit interrupt urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001110 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
1113
David Howells7d12e782006-10-05 14:55:46 +01001114static void ti_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Ming Leicdc97792008-02-24 18:41:47 +08001116 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 struct usb_serial_port *port = tport->tp_port;
1118 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001119 int status = urb->status;
1120 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001122 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 case 0:
1124 break;
1125 case -ECONNRESET:
1126 case -ENOENT:
1127 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001128 dev_dbg(dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 tport->tp_tdev->td_urb_error = 1;
1130 wake_up_interruptible(&tport->tp_write_wait);
1131 return;
1132 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001133 dev_err(dev, "%s - nonzero urb status, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001134 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 tport->tp_tdev->td_urb_error = 1;
1136 wake_up_interruptible(&tport->tp_write_wait);
1137 }
1138
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001139 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 goto exit;
1141
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001142 if (status) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001143 dev_err(dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return;
1145 }
1146
Jiri Slaby2e124b42013-01-03 15:53:06 +01001147 if (urb->actual_length) {
1148 usb_serial_debug_data(dev, __func__, urb->actual_length,
1149 urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Jiri Slaby2e124b42013-01-03 15:53:06 +01001151 if (!tport->tp_is_open)
1152 dev_dbg(dev, "%s - port closed, dropping data\n",
1153 __func__);
1154 else
1155 ti_recv(port, urb->transfer_buffer, urb->actual_length);
1156 spin_lock(&tport->tp_lock);
1157 tport->tp_icount.rx += urb->actual_length;
1158 spin_unlock(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160
1161exit:
1162 /* continue to read unless stopping */
1163 spin_lock(&tport->tp_lock);
Johan Hovold58330412011-11-06 19:06:28 +01001164 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001165 retval = usb_submit_urb(urb, GFP_ATOMIC);
Johan Hovold58330412011-11-06 19:06:28 +01001166 else if (tport->tp_read_urb_state == TI_READ_URB_STOPPING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 tport->tp_read_urb_state = TI_READ_URB_STOPPED;
Johan Hovold58330412011-11-06 19:06:28 +01001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 spin_unlock(&tport->tp_lock);
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001170 if (retval)
1171 dev_err(dev, "%s - resubmit read urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001172 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
1175
David Howells7d12e782006-10-05 14:55:46 +01001176static void ti_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Ming Leicdc97792008-02-24 18:41:47 +08001178 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 struct usb_serial_port *port = tport->tp_port;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001180 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 tport->tp_write_urb_in_use = 0;
1183
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001184 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 case 0:
1186 break;
1187 case -ECONNRESET:
1188 case -ENOENT:
1189 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001190 dev_dbg(&port->dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 tport->tp_tdev->td_urb_error = 1;
1192 wake_up_interruptible(&tport->tp_write_wait);
1193 return;
1194 default:
Johan Hovold22a416c2012-02-10 13:20:51 +01001195 dev_err_console(port, "%s - nonzero urb status, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001196 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 tport->tp_tdev->td_urb_error = 1;
1198 wake_up_interruptible(&tport->tp_write_wait);
1199 }
1200
1201 /* send any buffered data */
1202 ti_send(tport);
1203}
1204
1205
Jiri Slaby2e124b42013-01-03 15:53:06 +01001206static void ti_recv(struct usb_serial_port *port, unsigned char *data,
1207 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 int cnt;
1210
1211 do {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001212 cnt = tty_insert_flip_string(&port->port, data, length);
Alan Cox33f0f882006-01-09 20:54:13 -08001213 if (cnt < length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001214 dev_err(&port->dev, "%s - dropping data, %d bytes lost\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001215 __func__, length - cnt);
1216 if (cnt == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08001217 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
Jiri Slaby2e124b42013-01-03 15:53:06 +01001219 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 data += cnt;
1221 length -= cnt;
1222 } while (length > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
1225
1226static void ti_send(struct ti_port *tport)
1227{
1228 int count, result;
1229 struct usb_serial_port *port = tport->tp_port;
Alan Cox4a90f092008-10-13 10:39:46 +01001230 struct tty_struct *tty = tty_port_tty_get(&port->port); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 unsigned long flags;
1232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 spin_lock_irqsave(&tport->tp_lock, flags);
1234
Alan Cox4a90f092008-10-13 10:39:46 +01001235 if (tport->tp_write_urb_in_use)
1236 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Johan Hovold074ef652010-05-19 00:01:35 +02001238 count = kfifo_out(&tport->write_fifo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 port->write_urb->transfer_buffer,
1240 port->bulk_out_size);
1241
Alan Cox4a90f092008-10-13 10:39:46 +01001242 if (count == 0)
1243 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 tport->tp_write_urb_in_use = 1;
1246
1247 spin_unlock_irqrestore(&tport->tp_lock, flags);
1248
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001249 usb_serial_debug_data(&port->dev, __func__, count,
1250 port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1253 usb_sndbulkpipe(port->serial->dev,
1254 port->bulk_out_endpointAddress),
1255 port->write_urb->transfer_buffer, count,
1256 ti_bulk_out_callback, tport);
1257
1258 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
1259 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001260 dev_err_console(port, "%s - submit write urb failed, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001261 __func__, result);
1262 tport->tp_write_urb_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 /* TODO: reschedule ti_send */
1264 } else {
1265 spin_lock_irqsave(&tport->tp_lock, flags);
1266 tport->tp_icount.tx += count;
1267 spin_unlock_irqrestore(&tport->tp_lock, flags);
1268 }
1269
1270 /* more room in the buffer for new writes, wakeup */
1271 if (tty)
1272 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +01001273 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 wake_up_interruptible(&tport->tp_write_wait);
Alan Cox4a90f092008-10-13 10:39:46 +01001275 return;
1276unlock:
1277 spin_unlock_irqrestore(&tport->tp_lock, flags);
1278 tty_kref_put(tty);
1279 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282
1283static int ti_set_mcr(struct ti_port *tport, unsigned int mcr)
1284{
Alan Cox04ca89d2008-02-20 21:41:40 +00001285 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 int status;
1287
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001288 status = ti_write_byte(tport->tp_port, tport->tp_tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 tport->tp_uart_base_addr + TI_UART_OFFSET_MCR,
1290 TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr);
1291
Alan Cox04ca89d2008-02-20 21:41:40 +00001292 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (!status)
1294 tport->tp_shadow_mcr = mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001295 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 return status;
1298}
1299
1300
1301static int ti_get_lsr(struct ti_port *tport)
1302{
Alan Coxa30fa792008-07-22 11:15:17 +01001303 int size, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 struct ti_device *tdev = tport->tp_tdev;
1305 struct usb_serial_port *port = tport->tp_port;
1306 int port_number = port->number - port->serial->minor;
1307 struct ti_port_status *data;
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 size = sizeof(struct ti_port_status);
1310 data = kmalloc(size, GFP_KERNEL);
1311 if (!data) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001312 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return -ENOMEM;
1314 }
1315
1316 status = ti_command_in_sync(tdev, TI_GET_PORT_STATUS,
1317 (__u8)(TI_UART1_PORT+port_number), 0, (__u8 *)data, size);
1318 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001319 dev_err(&port->dev,
1320 "%s - get port status command failed, %d\n",
1321 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 goto free_data;
1323 }
1324
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001325 dev_dbg(&port->dev, "%s - lsr 0x%02X\n", __func__, data->bLSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 tport->tp_lsr = data->bLSR;
1328
1329free_data:
1330 kfree(data);
1331 return status;
1332}
1333
1334
1335static int ti_get_serial_info(struct ti_port *tport,
1336 struct serial_struct __user *ret_arg)
1337{
1338 struct usb_serial_port *port = tport->tp_port;
1339 struct serial_struct ret_serial;
1340
1341 if (!ret_arg)
1342 return -EFAULT;
1343
1344 memset(&ret_serial, 0, sizeof(ret_serial));
1345
1346 ret_serial.type = PORT_16550A;
1347 ret_serial.line = port->serial->minor;
1348 ret_serial.port = port->number - port->serial->minor;
1349 ret_serial.flags = tport->tp_flags;
1350 ret_serial.xmit_fifo_size = TI_WRITE_BUF_SIZE;
1351 ret_serial.baud_base = tport->tp_tdev->td_is_3410 ? 921600 : 460800;
1352 ret_serial.closing_wait = tport->tp_closing_wait;
1353
1354 if (copy_to_user(ret_arg, &ret_serial, sizeof(*ret_arg)))
1355 return -EFAULT;
1356
1357 return 0;
1358}
1359
1360
Alan Cox4a90f092008-10-13 10:39:46 +01001361static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 struct serial_struct __user *new_arg)
1363{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 struct serial_struct new_serial;
1365
1366 if (copy_from_user(&new_serial, new_arg, sizeof(new_serial)))
1367 return -EFAULT;
1368
1369 tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 tport->tp_closing_wait = new_serial.closing_wait;
1371
1372 return 0;
1373}
1374
1375
1376static void ti_handle_new_msr(struct ti_port *tport, __u8 msr)
1377{
1378 struct async_icount *icount;
1379 struct tty_struct *tty;
1380 unsigned long flags;
1381
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001382 dev_dbg(&tport->tp_port->dev, "%s - msr 0x%02X\n", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 if (msr & TI_MSR_DELTA_MASK) {
1385 spin_lock_irqsave(&tport->tp_lock, flags);
1386 icount = &tport->tp_icount;
1387 if (msr & TI_MSR_DELTA_CTS)
1388 icount->cts++;
1389 if (msr & TI_MSR_DELTA_DSR)
1390 icount->dsr++;
1391 if (msr & TI_MSR_DELTA_CD)
1392 icount->dcd++;
1393 if (msr & TI_MSR_DELTA_RI)
1394 icount->rng++;
1395 wake_up_interruptible(&tport->tp_msr_wait);
1396 spin_unlock_irqrestore(&tport->tp_lock, flags);
1397 }
1398
1399 tport->tp_msr = msr & TI_MSR_MASK;
1400
1401 /* handle CTS flow control */
Alan Cox4a90f092008-10-13 10:39:46 +01001402 tty = tty_port_tty_get(&tport->tp_port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (tty && C_CRTSCTS(tty)) {
1404 if (msr & TI_MSR_CTS) {
1405 tty->hw_stopped = 0;
1406 tty_wakeup(tty);
1407 } else {
1408 tty->hw_stopped = 1;
1409 }
1410 }
Alan Cox4a90f092008-10-13 10:39:46 +01001411 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
1414
1415static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush)
1416{
1417 struct ti_device *tdev = tport->tp_tdev;
1418 struct usb_serial_port *port = tport->tp_port;
1419 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Oliver Neukum0915f492008-01-23 12:28:45 +01001421 spin_lock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 /* wait for data to drain from the buffer */
1424 tdev->td_urb_error = 0;
1425 init_waitqueue_entry(&wait, current);
1426 add_wait_queue(&tport->tp_write_wait, &wait);
1427 for (;;) {
1428 set_current_state(TASK_INTERRUPTIBLE);
Johan Hovold074ef652010-05-19 00:01:35 +02001429 if (kfifo_len(&tport->write_fifo) == 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 || timeout == 0 || signal_pending(current)
1431 || tdev->td_urb_error
Oliver Neukum0915f492008-01-23 12:28:45 +01001432 || port->serial->disconnected) /* disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 break;
Oliver Neukum0915f492008-01-23 12:28:45 +01001434 spin_unlock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 timeout = schedule_timeout(timeout);
Oliver Neukum0915f492008-01-23 12:28:45 +01001436 spin_lock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438 set_current_state(TASK_RUNNING);
1439 remove_wait_queue(&tport->tp_write_wait, &wait);
1440
1441 /* flush any remaining data in the buffer */
1442 if (flush)
Johan Hovold074ef652010-05-19 00:01:35 +02001443 kfifo_reset_out(&tport->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Oliver Neukum0915f492008-01-23 12:28:45 +01001445 spin_unlock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Oliver Neukum0915f492008-01-23 12:28:45 +01001447 mutex_lock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 /* wait for data to drain from the device */
1449 /* wait for empty tx register, plus 20 ms */
1450 timeout += jiffies;
1451 tport->tp_lsr &= ~TI_LSR_TX_EMPTY;
1452 while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
1453 && !(tport->tp_lsr&TI_LSR_TX_EMPTY) && !tdev->td_urb_error
Oliver Neukum0915f492008-01-23 12:28:45 +01001454 && !port->serial->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (ti_get_lsr(tport))
1456 break;
Oliver Neukum0915f492008-01-23 12:28:45 +01001457 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 msleep_interruptible(20);
Oliver Neukum0915f492008-01-23 12:28:45 +01001459 mutex_lock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
Oliver Neukum0915f492008-01-23 12:28:45 +01001461 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
1464
1465static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty)
1466{
1467 unsigned long flags;
1468
1469 spin_lock_irqsave(&tport->tp_lock, flags);
1470
1471 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
1472 tport->tp_read_urb_state = TI_READ_URB_STOPPING;
1473
1474 spin_unlock_irqrestore(&tport->tp_lock, flags);
1475}
1476
1477
1478static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty)
1479{
1480 struct urb *urb;
1481 int status = 0;
1482 unsigned long flags;
1483
1484 spin_lock_irqsave(&tport->tp_lock, flags);
1485
1486 if (tport->tp_read_urb_state == TI_READ_URB_STOPPED) {
Oliver Neukum944dc182007-05-07 08:33:18 +02001487 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 urb = tport->tp_port->read_urb;
Oliver Neukum944dc182007-05-07 08:33:18 +02001489 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 urb->context = tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 status = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukum944dc182007-05-07 08:33:18 +02001492 } else {
1493 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
1494 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 return status;
1498}
1499
1500
1501static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
1502 __u16 moduleid, __u16 value, __u8 *data, int size)
1503{
1504 int status;
1505
1506 status = usb_control_msg(tdev->td_serial->dev,
1507 usb_sndctrlpipe(tdev->td_serial->dev, 0), command,
1508 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
1509 value, moduleid, data, size, 1000);
1510
1511 if (status == size)
1512 status = 0;
1513
1514 if (status > 0)
1515 status = -ECOMM;
1516
1517 return status;
1518}
1519
1520
1521static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
1522 __u16 moduleid, __u16 value, __u8 *data, int size)
1523{
1524 int status;
1525
1526 status = usb_control_msg(tdev->td_serial->dev,
1527 usb_rcvctrlpipe(tdev->td_serial->dev, 0), command,
1528 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
1529 value, moduleid, data, size, 1000);
1530
1531 if (status == size)
1532 status = 0;
1533
1534 if (status > 0)
1535 status = -ECOMM;
1536
1537 return status;
1538}
1539
1540
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001541static int ti_write_byte(struct usb_serial_port *port,
1542 struct ti_device *tdev, unsigned long addr,
1543 __u8 mask, __u8 byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
1545 int status;
1546 unsigned int size;
1547 struct ti_write_data_bytes *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001549 dev_dbg(&port->dev, "%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X\n", __func__,
1550 addr, mask, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 size = sizeof(struct ti_write_data_bytes) + 2;
1553 data = kmalloc(size, GFP_KERNEL);
1554 if (!data) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001555 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return -ENOMEM;
1557 }
1558
1559 data->bAddrType = TI_RW_DATA_ADDR_XDATA;
1560 data->bDataType = TI_RW_DATA_BYTE;
1561 data->bDataCounter = 1;
1562 data->wBaseAddrHi = cpu_to_be16(addr>>16);
1563 data->wBaseAddrLo = cpu_to_be16(addr);
1564 data->bData[0] = mask;
1565 data->bData[1] = byte;
1566
1567 status = ti_command_out_sync(tdev, TI_WRITE_DATA, TI_RAM_PORT, 0,
1568 (__u8 *)data, size);
1569
1570 if (status < 0)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001571 dev_err(&port->dev, "%s - failed, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 kfree(data);
1574
1575 return status;
1576}
1577
Alan Cox95da3102008-07-22 11:09:07 +01001578static int ti_do_download(struct usb_device *dev, int pipe,
1579 u8 *buffer, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 int pos;
Alan Cox95da3102008-07-22 11:09:07 +01001582 u8 cs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 struct ti_firmware_header *header;
Oliver Neukum87ea8c82009-06-30 09:44:24 +02001585 int status = 0;
Alan Cox95da3102008-07-22 11:09:07 +01001586 int len;
Alan Coxa30fa792008-07-22 11:15:17 +01001587
1588 for (pos = sizeof(struct ti_firmware_header); pos < size; pos++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 cs = (__u8)(cs + buffer[pos]);
1590
1591 header = (struct ti_firmware_header *)buffer;
Alan Coxa30fa792008-07-22 11:15:17 +01001592 header->wLength = cpu_to_le16((__u16)(size
Alan Cox95da3102008-07-22 11:09:07 +01001593 - sizeof(struct ti_firmware_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 header->bCheckSum = cs;
1595
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001596 dev_dbg(&dev->dev, "%s - downloading firmware\n", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01001597 for (pos = 0; pos < size; pos += done) {
1598 len = min(size - pos, TI_DOWNLOAD_MAX_PACKET_SIZE);
1599 status = usb_bulk_msg(dev, pipe, buffer + pos, len,
1600 &done, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (status)
1602 break;
1603 }
Alan Cox95da3102008-07-22 11:09:07 +01001604 return status;
1605}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Chris Adams05a3d902009-01-11 19:48:53 +00001607static int ti_download_firmware(struct ti_device *tdev)
Alan Cox95da3102008-07-22 11:09:07 +01001608{
Chris Adams05a3d902009-01-11 19:48:53 +00001609 int status;
Alan Cox95da3102008-07-22 11:09:07 +01001610 int buffer_size;
1611 __u8 *buffer;
1612 struct usb_device *dev = tdev->td_serial->dev;
1613 unsigned int pipe = usb_sndbulkpipe(dev,
1614 tdev->td_serial->port[0]->bulk_out_endpointAddress);
1615 const struct firmware *fw_p;
1616 char buf[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Chris Adams05a3d902009-01-11 19:48:53 +00001618 /* try ID specific firmware first, then try generic firmware */
1619 sprintf(buf, "ti_usb-v%04x-p%04x.fw", dev->descriptor.idVendor,
1620 dev->descriptor.idProduct);
Adhir Ramjiawan72b27a02012-04-09 14:01:38 +02001621 status = request_firmware(&fw_p, buf, &dev->dev);
1622
1623 if (status != 0) {
Chris Adamscb7a7c62009-01-11 19:49:00 +00001624 buf[0] = '\0';
1625 if (dev->descriptor.idVendor == MTS_VENDOR_ID) {
1626 switch (dev->descriptor.idProduct) {
1627 case MTS_CDMA_PRODUCT_ID:
1628 strcpy(buf, "mts_cdma.fw");
1629 break;
1630 case MTS_GSM_PRODUCT_ID:
1631 strcpy(buf, "mts_gsm.fw");
1632 break;
1633 case MTS_EDGE_PRODUCT_ID:
1634 strcpy(buf, "mts_edge.fw");
1635 break;
Alex Manoussakiscdc04832010-04-22 15:18:20 -07001636 case MTS_MT9234MU_PRODUCT_ID:
1637 strcpy(buf, "mts_mt9234mu.fw");
1638 break;
1639 case MTS_MT9234ZBA_PRODUCT_ID:
1640 strcpy(buf, "mts_mt9234zba.fw");
1641 break;
1642 case MTS_MT9234ZBAOLD_PRODUCT_ID:
1643 strcpy(buf, "mts_mt9234zba.fw");
1644 break; }
Chris Adamscb7a7c62009-01-11 19:49:00 +00001645 }
1646 if (buf[0] == '\0') {
1647 if (tdev->td_is_3410)
1648 strcpy(buf, "ti_3410.fw");
1649 else
1650 strcpy(buf, "ti_5052.fw");
1651 }
Chris Adams05a3d902009-01-11 19:48:53 +00001652 status = request_firmware(&fw_p, buf, &dev->dev);
1653 }
1654 if (status) {
Alan Cox95da3102008-07-22 11:09:07 +01001655 dev_err(&dev->dev, "%s - firmware not found\n", __func__);
1656 return -ENOENT;
1657 }
1658 if (fw_p->size > TI_FIRMWARE_BUF_SIZE) {
Randy Dunlap75181f32010-04-15 11:38:56 -07001659 dev_err(&dev->dev, "%s - firmware too large %zu\n", __func__, fw_p->size);
Jesper Juhl357f45d2011-06-13 22:50:41 +02001660 release_firmware(fw_p);
Alan Cox95da3102008-07-22 11:09:07 +01001661 return -ENOENT;
1662 }
1663
1664 buffer_size = TI_FIRMWARE_BUF_SIZE + sizeof(struct ti_firmware_header);
1665 buffer = kmalloc(buffer_size, GFP_KERNEL);
1666 if (buffer) {
1667 memcpy(buffer, fw_p->data, fw_p->size);
1668 memset(buffer + fw_p->size, 0xff, buffer_size - fw_p->size);
Chris Adams2bcbe4c12008-09-10 14:11:38 -07001669 status = ti_do_download(dev, pipe, buffer, fw_p->size);
Alan Cox95da3102008-07-22 11:09:07 +01001670 kfree(buffer);
Chris Adams05a3d902009-01-11 19:48:53 +00001671 } else {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001672 dev_dbg(&dev->dev, "%s ENOMEM\n", __func__);
Chris Adams05a3d902009-01-11 19:48:53 +00001673 status = -ENOMEM;
Alan Cox95da3102008-07-22 11:09:07 +01001674 }
1675 release_firmware(fw_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001677 dev_err(&dev->dev, "%s - error downloading firmware, %d\n",
1678 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 return status;
1680 }
1681
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001682 dev_dbg(&dev->dev, "%s - download successful\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 return 0;
1685}