blob: e7dbbef2af2a57cf3560af2b76e6b94e3d2d0144 [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/slab.h>
25#include <linux/tty.h>
26#include <linux/tty_driver.h>
27#include <linux/tty_flip.h>
28#include <linux/module.h>
29#include <linux/spinlock.h>
30#include <linux/ioctl.h>
31#include <linux/serial.h>
Johan Hovold074ef652010-05-19 00:01:35 +020032#include <linux/kfifo.h>
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080033#include <linux/mutex.h>
Alan Coxa30fa792008-07-22 11:15:17 +010034#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070036#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "ti_usb_3410_5052.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/* Defines */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>"
43#define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver"
44
45#define TI_FIRMWARE_BUF_SIZE 16284
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define TI_TRANSFER_TIMEOUT 2
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */
50
51/* supported setserial flags */
Oliver Neukum2400a2b2009-04-20 17:28:53 +020052#define TI_SET_SERIAL_FLAGS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* read urb states */
55#define TI_READ_URB_RUNNING 0
56#define TI_READ_URB_STOPPING 1
57#define TI_READ_URB_STOPPED 2
58
59#define TI_EXTRA_VID_PID_COUNT 5
60
61
62/* Structures */
63
64struct ti_port {
65 int tp_is_open;
66 __u8 tp_msr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 __u8 tp_shadow_mcr;
68 __u8 tp_uart_mode; /* 232 or 485 modes */
69 unsigned int tp_uart_base_addr;
70 int tp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 struct ti_device *tp_tdev;
72 struct usb_serial_port *tp_port;
73 spinlock_t tp_lock;
74 int tp_read_urb_state;
75 int tp_write_urb_in_use;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78struct ti_device {
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080079 struct mutex td_open_close_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 int td_open_port_count;
81 struct usb_serial *td_serial;
82 int td_is_3410;
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +020083 bool td_rs485_only;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 int td_urb_error;
85};
86
87
88/* Function Declarations */
89
90static int ti_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040091static void ti_release(struct usb_serial *serial);
Johan Hovold51ef8472012-10-17 16:31:35 +020092static int ti_port_probe(struct usb_serial_port *port);
93static int ti_port_remove(struct usb_serial_port *port);
Alan Coxa509a7e2009-09-19 13:13:26 -070094static int ti_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010095static void ti_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +010096static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
Alan Coxa30fa792008-07-22 11:15:17 +010097 const unsigned char *data, int count);
Alan Cox95da3102008-07-22 11:09:07 +010098static int ti_write_room(struct tty_struct *tty);
99static int ti_chars_in_buffer(struct tty_struct *tty);
Johan Hovoldff93b192013-05-05 20:32:32 +0200100static bool ti_tx_empty(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +0100101static void ti_throttle(struct tty_struct *tty);
102static void ti_unthrottle(struct tty_struct *tty);
Alan Cox00a0d0d2011-02-14 16:27:06 +0000103static int ti_ioctl(struct tty_struct *tty,
Alan Coxa30fa792008-07-22 11:15:17 +0100104 unsigned int cmd, unsigned long arg);
105static void ti_set_termios(struct tty_struct *tty,
106 struct usb_serial_port *port, struct ktermios *old_termios);
Alan Cox60b33c12011-02-14 16:26:14 +0000107static int ti_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000108static int ti_tiocmset(struct tty_struct *tty,
Alan Coxa30fa792008-07-22 11:15:17 +0100109 unsigned int set, unsigned int clear);
Alan Cox95da3102008-07-22 11:09:07 +0100110static void ti_break(struct tty_struct *tty, int break_state);
David Howells7d12e782006-10-05 14:55:46 +0100111static void ti_interrupt_callback(struct urb *urb);
112static void ti_bulk_in_callback(struct urb *urb);
113static void ti_bulk_out_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Jiri Slaby2e124b42013-01-03 15:53:06 +0100115static void ti_recv(struct usb_serial_port *port, unsigned char *data,
116 int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static void ti_send(struct ti_port *tport);
118static int ti_set_mcr(struct ti_port *tport, unsigned int mcr);
Johan Hovoldb5784f72013-04-18 17:33:20 +0200119static int ti_get_lsr(struct ti_port *tport, u8 *lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static int ti_get_serial_info(struct ti_port *tport,
121 struct serial_struct __user *ret_arg);
Alan Cox4a90f092008-10-13 10:39:46 +0100122static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 struct serial_struct __user *new_arg);
124static void ti_handle_new_msr(struct ti_port *tport, __u8 msr);
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty);
127static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty);
128
129static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
130 __u16 moduleid, __u16 value, __u8 *data, int size);
131static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
132 __u16 moduleid, __u16 value, __u8 *data, int size);
133
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700134static int ti_write_byte(struct usb_serial_port *port, struct ti_device *tdev,
135 unsigned long addr, __u8 mask, __u8 byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Chris Adams05a3d902009-01-11 19:48:53 +0000137static int ti_download_firmware(struct ti_device *tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/* Data */
141
142/* module parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static int closing_wait = TI_DEFAULT_CLOSING_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/* supported devices */
Johan Hovold5c6b98d2013-12-29 19:22:54 +0100146static const struct usb_device_id ti_id_table_3410[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000148 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000149 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
150 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
151 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
152 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
153 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700154 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234MU_PRODUCT_ID) },
155 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBA_PRODUCT_ID) },
156 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBAOLD_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100157 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100158 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
159 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Anders Hammarquist35a2fbc2013-06-19 01:45:48 +0200160 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_STEREO_PLUG_ID) },
161 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_STRIP_PORT_ID) },
Darren Hart975dc332012-05-11 13:56:57 -0700162 { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
David Woodhouse1bcb49e2015-11-14 16:49:30 +0000163 { USB_DEVICE(HONEYWELL_VENDOR_ID, HONEYWELL_HGI80_PRODUCT_ID) },
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200164 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1110_PRODUCT_ID) },
165 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1130_PRODUCT_ID) },
166 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1131_PRODUCT_ID) },
167 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1150_PRODUCT_ID) },
168 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1151_PRODUCT_ID) },
Johan Hovoldd7ece652013-06-26 16:47:43 +0200169 { } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171
Johan Hovold5c6b98d2013-12-29 19:22:54 +0100172static const struct usb_device_id ti_id_table_5052[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
174 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
175 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
176 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Johan Hovoldd7ece652013-06-26 16:47:43 +0200177 { } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
Johan Hovold5c6b98d2013-12-29 19:22:54 +0100180static const struct usb_device_id ti_id_table_combined[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000182 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000183 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
184 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
185 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
186 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
187 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700188 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234MU_PRODUCT_ID) },
189 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBA_PRODUCT_ID) },
190 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBAOLD_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
192 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
193 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
194 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100195 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100196 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
197 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Andrew Lunn7fd25702012-02-20 09:31:57 +0100198 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) },
Diego Elio Pettenòc9d09dc2013-10-08 20:03:37 +0100199 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_STRIP_PORT_ID) },
Darren Hart975dc332012-05-11 13:56:57 -0700200 { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
David Woodhouse1bcb49e2015-11-14 16:49:30 +0000201 { USB_DEVICE(HONEYWELL_VENDOR_ID, HONEYWELL_HGI80_PRODUCT_ID) },
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200202 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1110_PRODUCT_ID) },
203 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1130_PRODUCT_ID) },
204 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1131_PRODUCT_ID) },
205 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1150_PRODUCT_ID) },
206 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1151_PRODUCT_ID) },
Johan Hovoldd7ece652013-06-26 16:47:43 +0200207 { } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700210static struct usb_serial_driver ti_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700211 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700212 .owner = THIS_MODULE,
213 .name = "ti_usb_3410_5052_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700214 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700215 .description = "TI USB 3410 1 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .id_table = ti_id_table_3410,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 .num_ports = 1,
218 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400219 .release = ti_release,
Johan Hovold51ef8472012-10-17 16:31:35 +0200220 .port_probe = ti_port_probe,
221 .port_remove = ti_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .open = ti_open,
223 .close = ti_close,
224 .write = ti_write,
225 .write_room = ti_write_room,
226 .chars_in_buffer = ti_chars_in_buffer,
Johan Hovoldff93b192013-05-05 20:32:32 +0200227 .tx_empty = ti_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 .throttle = ti_throttle,
229 .unthrottle = ti_unthrottle,
230 .ioctl = ti_ioctl,
231 .set_termios = ti_set_termios,
232 .tiocmget = ti_tiocmget,
233 .tiocmset = ti_tiocmset,
Johan Hovold6c75e262013-03-21 12:37:34 +0100234 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold783ca352013-03-21 12:37:33 +0100235 .get_icount = usb_serial_generic_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 .break_ctl = ti_break,
237 .read_int_callback = ti_interrupt_callback,
238 .read_bulk_callback = ti_bulk_in_callback,
239 .write_bulk_callback = ti_bulk_out_callback,
240};
241
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700242static struct usb_serial_driver ti_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700243 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700244 .owner = THIS_MODULE,
245 .name = "ti_usb_3410_5052_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700246 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700247 .description = "TI USB 5052 2 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .id_table = ti_id_table_5052,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 .num_ports = 2,
250 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400251 .release = ti_release,
Johan Hovold51ef8472012-10-17 16:31:35 +0200252 .port_probe = ti_port_probe,
253 .port_remove = ti_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 .open = ti_open,
255 .close = ti_close,
256 .write = ti_write,
257 .write_room = ti_write_room,
258 .chars_in_buffer = ti_chars_in_buffer,
Johan Hovoldff93b192013-05-05 20:32:32 +0200259 .tx_empty = ti_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 .throttle = ti_throttle,
261 .unthrottle = ti_unthrottle,
262 .ioctl = ti_ioctl,
263 .set_termios = ti_set_termios,
264 .tiocmget = ti_tiocmget,
265 .tiocmset = ti_tiocmset,
Johan Hovold6c75e262013-03-21 12:37:34 +0100266 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold783ca352013-03-21 12:37:33 +0100267 .get_icount = usb_serial_generic_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 .break_ctl = ti_break,
269 .read_int_callback = ti_interrupt_callback,
270 .read_bulk_callback = ti_bulk_in_callback,
271 .write_bulk_callback = ti_bulk_out_callback,
272};
273
Alan Stern29618e92012-02-23 14:57:32 -0500274static struct usb_serial_driver * const serial_drivers[] = {
275 &ti_1port_device, &ti_2port_device, NULL
276};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278/* Module */
279
280MODULE_AUTHOR(TI_DRIVER_AUTHOR);
281MODULE_DESCRIPTION(TI_DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282MODULE_LICENSE("GPL");
283
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300284MODULE_FIRMWARE("ti_3410.fw");
285MODULE_FIRMWARE("ti_5052.fw");
Chris Adams7df52312009-01-11 19:49:11 +0000286MODULE_FIRMWARE("mts_cdma.fw");
287MODULE_FIRMWARE("mts_gsm.fw");
288MODULE_FIRMWARE("mts_edge.fw");
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700289MODULE_FIRMWARE("mts_mt9234mu.fw");
290MODULE_FIRMWARE("mts_mt9234zba.fw");
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200291MODULE_FIRMWARE("moxa/moxa-1110.fw");
292MODULE_FIRMWARE("moxa/moxa-1130.fw");
293MODULE_FIRMWARE("moxa/moxa-1131.fw");
294MODULE_FIRMWARE("moxa/moxa-1150.fw");
295MODULE_FIRMWARE("moxa/moxa-1151.fw");
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297module_param(closing_wait, int, S_IRUGO | S_IWUSR);
Alan Coxa30fa792008-07-22 11:15:17 +0100298MODULE_PARM_DESC(closing_wait,
299 "Maximum wait for data to drain in close, in .01 secs, default is 4000");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301MODULE_DEVICE_TABLE(usb, ti_id_table_combined);
302
Johan Hovoldd7ece652013-06-26 16:47:43 +0200303module_usb_serial_driver(serial_drivers, ti_id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305/* Functions */
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307static int ti_startup(struct usb_serial *serial)
308{
309 struct ti_device *tdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct usb_device *dev = serial->dev;
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200311 struct usb_host_interface *cur_altsetting;
312 int num_endpoints;
313 u16 vid, pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700316 dev_dbg(&dev->dev,
Johan Hovoldd9a38a82014-03-12 19:09:42 +0100317 "%s - product 0x%4X, num configurations %d, configuration value %d\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700318 __func__, le16_to_cpu(dev->descriptor.idProduct),
319 dev->descriptor.bNumConfigurations,
320 dev->actconfig->desc.bConfigurationValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* create device structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100323 tdev = kzalloc(sizeof(struct ti_device), GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +0100324 if (!tdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return -ENOMEM;
Johan Hovold10c642d2013-12-29 19:22:56 +0100326
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800327 mutex_init(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 tdev->td_serial = serial;
329 usb_set_serial_data(serial, tdev);
330
331 /* determine device type */
Johan Hovold1fad5642013-06-28 12:24:26 +0200332 if (serial->type == &ti_1port_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 tdev->td_is_3410 = 1;
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700334 dev_dbg(&dev->dev, "%s - device type is %s\n", __func__,
335 tdev->td_is_3410 ? "3410" : "5052");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200337 vid = le16_to_cpu(dev->descriptor.idVendor);
338 pid = le16_to_cpu(dev->descriptor.idProduct);
339 if (vid == MXU1_VENDOR_ID) {
340 switch (pid) {
341 case MXU1_1130_PRODUCT_ID:
342 case MXU1_1131_PRODUCT_ID:
343 tdev->td_rs485_only = true;
344 break;
345 }
346 }
347
348 cur_altsetting = serial->interface->cur_altsetting;
349 num_endpoints = cur_altsetting->desc.bNumEndpoints;
350
351 /* if we have only 1 configuration and 1 endpoint, download firmware */
352 if (dev->descriptor.bNumConfigurations == 1 && num_endpoints == 1) {
Adhir Ramjiawan72b27a02012-04-09 14:01:38 +0200353 status = ti_download_firmware(tdev);
354
355 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 goto free_tdev;
357
358 /* 3410 must be reset, 5052 resets itself */
359 if (tdev->td_is_3410) {
360 msleep_interruptible(100);
361 usb_reset_device(dev);
362 }
363
364 status = -ENODEV;
365 goto free_tdev;
Alan Coxa30fa792008-07-22 11:15:17 +0100366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100368 /* the second configuration must be set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (dev->actconfig->desc.bConfigurationValue == TI_BOOT_CONFIG) {
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100370 status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG);
371 status = status ? status : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 goto free_tdev;
373 }
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return 0;
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377free_tdev:
378 kfree(tdev);
379 usb_set_serial_data(serial, NULL);
380 return status;
381}
382
383
Alan Sternf9c99bb2009-06-02 11:53:55 -0400384static void ti_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 struct ti_device *tdev = usb_get_serial_data(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700388 kfree(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Johan Hovold51ef8472012-10-17 16:31:35 +0200391static int ti_port_probe(struct usb_serial_port *port)
392{
393 struct ti_port *tport;
394
395 tport = kzalloc(sizeof(*tport), GFP_KERNEL);
396 if (!tport)
397 return -ENOMEM;
398
399 spin_lock_init(&tport->tp_lock);
400 if (port == port->serial->port[0])
401 tport->tp_uart_base_addr = TI_UART1_BASE_ADDR;
402 else
403 tport->tp_uart_base_addr = TI_UART2_BASE_ADDR;
Johan Hovoldf1175da2013-04-18 17:33:23 +0200404 port->port.closing_wait = msecs_to_jiffies(10 * closing_wait);
Johan Hovold51ef8472012-10-17 16:31:35 +0200405 tport->tp_port = port;
406 tport->tp_tdev = usb_get_serial_data(port->serial);
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200407
408 if (tport->tp_tdev->td_rs485_only)
409 tport->tp_uart_mode = TI_UART_485_RECEIVER_DISABLED;
410 else
411 tport->tp_uart_mode = TI_UART_232;
Johan Hovold51ef8472012-10-17 16:31:35 +0200412
413 usb_set_serial_port_data(port, tport);
414
Johan Hovoldd7be6222013-06-26 16:47:23 +0200415 port->port.drain_delay = 3;
416
Johan Hovold51ef8472012-10-17 16:31:35 +0200417 return 0;
418}
419
420static int ti_port_remove(struct usb_serial_port *port)
421{
422 struct ti_port *tport;
423
424 tport = usb_get_serial_port_data(port);
Johan Hovold51ef8472012-10-17 16:31:35 +0200425 kfree(tport);
426
427 return 0;
428}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Alan Coxa509a7e2009-09-19 13:13:26 -0700430static int ti_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
432 struct ti_port *tport = usb_get_serial_port_data(port);
433 struct ti_device *tdev;
434 struct usb_device *dev;
435 struct urb *urb;
436 int port_number;
437 int status;
Alan Coxa30fa792008-07-22 11:15:17 +0100438 __u16 open_settings = (__u8)(TI_PIPE_MODE_CONTINOUS |
439 TI_PIPE_TIMEOUT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 (TI_TRANSFER_TIMEOUT << 2));
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (tport == NULL)
443 return -ENODEV;
444
445 dev = port->serial->dev;
446 tdev = tport->tp_tdev;
447
448 /* only one open on any port on a device at a time */
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800449 if (mutex_lock_interruptible(&tdev->td_open_close_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return -ERESTARTSYS;
451
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700452 port_number = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 tport->tp_msr = 0;
455 tport->tp_shadow_mcr |= (TI_MCR_RTS | TI_MCR_DTR);
456
457 /* start interrupt urb the first time a port is opened on this device */
458 if (tdev->td_open_port_count == 0) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700459 dev_dbg(&port->dev, "%s - start interrupt in urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 urb = tdev->td_serial->port[0]->interrupt_in_urb;
461 if (!urb) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700462 dev_err(&port->dev, "%s - no interrupt urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 status = -EINVAL;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800464 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 urb->context = tdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 status = usb_submit_urb(urb, GFP_KERNEL);
468 if (status) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700469 dev_err(&port->dev, "%s - submit interrupt urb failed, %d\n", __func__, status);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800470 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472 }
473
Alan Cox95da3102008-07-22 11:09:07 +0100474 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100475 ti_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700477 dev_dbg(&port->dev, "%s - sending TI_OPEN_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
479 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
480 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100481 dev_err(&port->dev, "%s - cannot send open command, %d\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700482 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 goto unlink_int_urb;
484 }
485
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700486 dev_dbg(&port->dev, "%s - sending TI_START_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 status = ti_command_out_sync(tdev, TI_START_PORT,
488 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
489 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100490 dev_err(&port->dev, "%s - cannot send start command, %d\n",
491 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 goto unlink_int_urb;
493 }
494
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700495 dev_dbg(&port->dev, "%s - sending TI_PURGE_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
497 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_INPUT, NULL, 0);
498 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100499 dev_err(&port->dev, "%s - cannot clear input buffers, %d\n",
500 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 goto unlink_int_urb;
502 }
503 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
504 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_OUTPUT, NULL, 0);
505 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100506 dev_err(&port->dev, "%s - cannot clear output buffers, %d\n",
507 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 goto unlink_int_urb;
509 }
510
511 /* reset the data toggle on the bulk endpoints to work around bug in
512 * host controllers where things get out of sync some times */
513 usb_clear_halt(dev, port->write_urb->pipe);
514 usb_clear_halt(dev, port->read_urb->pipe);
515
Alan Cox95da3102008-07-22 11:09:07 +0100516 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100517 ti_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700519 dev_dbg(&port->dev, "%s - sending TI_OPEN_PORT (2)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
521 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
522 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100523 dev_err(&port->dev, "%s - cannot send open command (2), %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_START_PORT (2)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 status = ti_command_out_sync(tdev, TI_START_PORT,
530 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
531 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100532 dev_err(&port->dev, "%s - cannot send start command (2), %d\n",
533 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 goto unlink_int_urb;
535 }
536
537 /* start read urb */
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700538 dev_dbg(&port->dev, "%s - start read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 urb = port->read_urb;
540 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800541 dev_err(&port->dev, "%s - no read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 status = -EINVAL;
543 goto unlink_int_urb;
544 }
545 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 urb->context = tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 status = usb_submit_urb(urb, GFP_KERNEL);
548 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100549 dev_err(&port->dev, "%s - submit read urb failed, %d\n",
550 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 goto unlink_int_urb;
552 }
553
554 tport->tp_is_open = 1;
555 ++tdev->td_open_port_count;
556
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800557 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559unlink_int_urb:
560 if (tdev->td_open_port_count == 0)
561 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800562release_lock:
563 mutex_unlock(&tdev->td_open_close_lock);
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700564 dev_dbg(&port->dev, "%s - exit %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return status;
566}
567
568
Alan Cox335f8512009-06-11 12:26:29 +0100569static void ti_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 struct ti_device *tdev;
572 struct ti_port *tport;
573 int port_number;
574 int status;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800575 int do_unlock;
Johan Hovold113ec312013-04-18 17:33:19 +0200576 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 tdev = usb_get_serial_data(port->serial);
579 tport = usb_get_serial_port_data(port);
580 if (tdev == NULL || tport == NULL)
581 return;
582
583 tport->tp_is_open = 0;
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 usb_kill_urb(port->read_urb);
586 usb_kill_urb(port->write_urb);
587 tport->tp_write_urb_in_use = 0;
Johan Hovold113ec312013-04-18 17:33:19 +0200588 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovoldcd1e0982013-06-26 16:47:41 +0200589 kfifo_reset_out(&port->write_fifo);
Johan Hovold113ec312013-04-18 17:33:19 +0200590 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700592 port_number = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700594 dev_dbg(&port->dev, "%s - sending TI_CLOSE_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 status = ti_command_out_sync(tdev, TI_CLOSE_PORT,
596 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
597 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100598 dev_err(&port->dev,
599 "%s - cannot send close port command, %d\n"
600 , __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800602 /* if mutex_lock is interrupted, continue anyway */
603 do_unlock = !mutex_lock_interruptible(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 --tport->tp_tdev->td_open_port_count;
605 if (tport->tp_tdev->td_open_port_count <= 0) {
606 /* last port is closed, shut down interrupt urb */
607 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
608 tport->tp_tdev->td_open_port_count = 0;
609 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800610 if (do_unlock)
611 mutex_unlock(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
614
Alan Cox95da3102008-07-22 11:09:07 +0100615static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
616 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (count == 0) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700621 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return 0;
623 }
624
625 if (tport == NULL || !tport->tp_is_open)
626 return -ENODEV;
627
Johan Hovoldcd1e0982013-06-26 16:47:41 +0200628 count = kfifo_in_locked(&port->write_fifo, data, count,
Johan Hovold074ef652010-05-19 00:01:35 +0200629 &tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 ti_send(tport);
631
632 return count;
633}
634
635
Alan Cox95da3102008-07-22 11:09:07 +0100636static int ti_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Alan Cox95da3102008-07-22 11:09:07 +0100638 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 struct ti_port *tport = usb_get_serial_port_data(port);
640 int room = 0;
641 unsigned long flags;
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (tport == NULL)
Alan Cox23198fd2009-07-20 16:05:27 +0100644 return 0;
Alan Coxa30fa792008-07-22 11:15:17 +0100645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovoldcd1e0982013-06-26 16:47:41 +0200647 room = kfifo_avail(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 spin_unlock_irqrestore(&tport->tp_lock, flags);
649
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700650 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return room;
652}
653
654
Alan Cox95da3102008-07-22 11:09:07 +0100655static int ti_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Alan Cox95da3102008-07-22 11:09:07 +0100657 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 struct ti_port *tport = usb_get_serial_port_data(port);
659 int chars = 0;
660 unsigned long flags;
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (tport == NULL)
Alan Cox23198fd2009-07-20 16:05:27 +0100663 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovoldcd1e0982013-06-26 16:47:41 +0200666 chars = kfifo_len(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 spin_unlock_irqrestore(&tport->tp_lock, flags);
668
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700669 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return chars;
671}
672
Johan Hovoldff93b192013-05-05 20:32:32 +0200673static bool ti_tx_empty(struct usb_serial_port *port)
674{
675 struct ti_port *tport = usb_get_serial_port_data(port);
676 int ret;
677 u8 lsr;
678
679 ret = ti_get_lsr(tport, &lsr);
680 if (!ret && !(lsr & TI_LSR_TX_EMPTY))
681 return false;
682
683 return true;
684}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Alan Cox95da3102008-07-22 11:09:07 +0100686static void ti_throttle(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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (tport == NULL)
692 return;
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (I_IXOFF(tty) || C_CRTSCTS(tty))
695 ti_stop_read(tport, tty);
696
697}
698
699
Alan Cox95da3102008-07-22 11:09:07 +0100700static void ti_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Alan Cox95da3102008-07-22 11:09:07 +0100702 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 int status;
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (tport == NULL)
707 return;
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (I_IXOFF(tty) || C_CRTSCTS(tty)) {
710 status = ti_restart_read(tport, tty);
711 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100712 dev_err(&port->dev, "%s - cannot restart read, %d\n",
713 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715}
716
Alan Cox00a0d0d2011-02-14 16:27:06 +0000717static int ti_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 unsigned int cmd, unsigned long arg)
719{
Alan Cox95da3102008-07-22 11:09:07 +0100720 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (tport == NULL)
724 return -ENODEV;
725
726 switch (cmd) {
Alan Coxa30fa792008-07-22 11:15:17 +0100727 case TIOCGSERIAL:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700728 dev_dbg(&port->dev, "%s - TIOCGSERIAL\n", __func__);
Alan Coxa30fa792008-07-22 11:15:17 +0100729 return ti_get_serial_info(tport,
730 (struct serial_struct __user *)arg);
731 case TIOCSSERIAL:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700732 dev_dbg(&port->dev, "%s - TIOCSSERIAL\n", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +0100733 return ti_set_serial_info(tty, tport,
734 (struct serial_struct __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return -ENOIOCTLCMD;
737}
738
739
Alan Cox95da3102008-07-22 11:09:07 +0100740static void ti_set_termios(struct tty_struct *tty,
741 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 struct ti_uart_config *config;
Alan Coxa30fa792008-07-22 11:15:17 +0100745 tcflag_t cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 int baud;
747 int status;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700748 int port_number = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 unsigned int mcr;
750
Alan Coxadc8d742012-07-14 15:31:47 +0100751 cflag = tty->termios.c_cflag;
752 iflag = tty->termios.c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700754 dev_dbg(&port->dev, "%s - cflag %08x, iflag %08x\n", __func__, cflag, iflag);
755 dev_dbg(&port->dev, "%s - old clfag %08x, old iflag %08x\n", __func__,
756 old_termios->c_cflag, old_termios->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 if (tport == NULL)
759 return;
760
761 config = kmalloc(sizeof(*config), GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +0100762 if (!config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 config->wFlags = 0;
766
767 /* these flags must be set */
768 config->wFlags |= TI_UART_ENABLE_MS_INTS;
769 config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA;
770 config->bUartMode = (__u8)(tport->tp_uart_mode);
771
772 switch (cflag & CSIZE) {
Alan Coxa30fa792008-07-22 11:15:17 +0100773 case CS5:
774 config->bDataBits = TI_UART_5_DATA_BITS;
775 break;
776 case CS6:
777 config->bDataBits = TI_UART_6_DATA_BITS;
778 break;
779 case CS7:
780 config->bDataBits = TI_UART_7_DATA_BITS;
781 break;
782 default:
783 case CS8:
784 config->bDataBits = TI_UART_8_DATA_BITS;
785 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
Alan Cox537699e2008-01-03 17:03:11 +0000788 /* CMSPAR isn't supported by this driver */
Alan Coxadc8d742012-07-14 15:31:47 +0100789 tty->termios.c_cflag &= ~CMSPAR;
Alan Cox537699e2008-01-03 17:03:11 +0000790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (cflag & PARENB) {
792 if (cflag & PARODD) {
793 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
794 config->bParity = TI_UART_ODD_PARITY;
795 } else {
796 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
797 config->bParity = TI_UART_EVEN_PARITY;
798 }
799 } else {
800 config->wFlags &= ~TI_UART_ENABLE_PARITY_CHECKING;
Alan Coxa30fa792008-07-22 11:15:17 +0100801 config->bParity = TI_UART_NO_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
804 if (cflag & CSTOPB)
805 config->bStopBits = TI_UART_2_STOP_BITS;
806 else
807 config->bStopBits = TI_UART_1_STOP_BITS;
808
809 if (cflag & CRTSCTS) {
810 /* RTS flow control must be off to drop RTS for baud rate B0 */
811 if ((cflag & CBAUD) != B0)
812 config->wFlags |= TI_UART_ENABLE_RTS_IN;
813 config->wFlags |= TI_UART_ENABLE_CTS_OUT;
814 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 ti_restart_read(tport, tty);
816 }
817
818 if (I_IXOFF(tty) || I_IXON(tty)) {
819 config->cXon = START_CHAR(tty);
820 config->cXoff = STOP_CHAR(tty);
821
822 if (I_IXOFF(tty))
823 config->wFlags |= TI_UART_ENABLE_X_IN;
824 else
825 ti_restart_read(tport, tty);
826
827 if (I_IXON(tty))
828 config->wFlags |= TI_UART_ENABLE_X_OUT;
829 }
830
831 baud = tty_get_baud_rate(tty);
Alan Cox537699e2008-01-03 17:03:11 +0000832 if (!baud)
833 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (tport->tp_tdev->td_is_3410)
835 config->wBaudRate = (__u16)((923077 + baud/2) / baud);
836 else
837 config->wBaudRate = (__u16)((461538 + baud/2) / baud);
838
Alan Cox537699e2008-01-03 17:03:11 +0000839 /* FIXME: Should calculate resulting baud here and report it back */
840 if ((cflag & CBAUD) != B0)
841 tty_encode_baud_rate(tty, baud, baud);
842
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700843 dev_dbg(&port->dev,
Johan Hovoldd9a38a82014-03-12 19:09:42 +0100844 "%s - BaudRate=%d, wBaudRate=%d, wFlags=0x%04X, bDataBits=%d, bParity=%d, bStopBits=%d, cXon=%d, cXoff=%d, bUartMode=%d\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700845 __func__, baud, config->wBaudRate, config->wFlags,
846 config->bDataBits, config->bParity, config->bStopBits,
847 config->cXon, config->cXoff, config->bUartMode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 cpu_to_be16s(&config->wBaudRate);
850 cpu_to_be16s(&config->wFlags);
851
852 status = ti_command_out_sync(tport->tp_tdev, TI_SET_CONFIG,
853 (__u8)(TI_UART1_PORT + port_number), 0, (__u8 *)config,
854 sizeof(*config));
855 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100856 dev_err(&port->dev, "%s - cannot set config on port %d, %d\n",
857 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 /* SET_CONFIG asserts RTS and DTR, reset them correctly */
860 mcr = tport->tp_shadow_mcr;
861 /* if baud rate is B0, clear RTS and DTR */
862 if ((cflag & CBAUD) == B0)
863 mcr &= ~(TI_MCR_DTR | TI_MCR_RTS);
864 status = ti_set_mcr(tport, mcr);
865 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100866 dev_err(&port->dev,
867 "%s - cannot set modem control on port %d, %d\n",
868 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 kfree(config);
871}
872
873
Alan Cox60b33c12011-02-14 16:26:14 +0000874static int ti_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Alan Cox95da3102008-07-22 11:09:07 +0100876 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 struct ti_port *tport = usb_get_serial_port_data(port);
878 unsigned int result;
879 unsigned int msr;
880 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000881 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (tport == NULL)
884 return -ENODEV;
885
Alan Cox04ca89d2008-02-20 21:41:40 +0000886 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 msr = tport->tp_msr;
888 mcr = tport->tp_shadow_mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000889 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0)
892 | ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0)
893 | ((mcr & TI_MCR_LOOP) ? TIOCM_LOOP : 0)
894 | ((msr & TI_MSR_CTS) ? TIOCM_CTS : 0)
895 | ((msr & TI_MSR_CD) ? TIOCM_CAR : 0)
896 | ((msr & TI_MSR_RI) ? TIOCM_RI : 0)
897 | ((msr & TI_MSR_DSR) ? TIOCM_DSR : 0);
898
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700899 dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 return result;
902}
903
904
Alan Cox20b9d172011-02-14 16:26:50 +0000905static int ti_tiocmset(struct tty_struct *tty,
906 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Alan Cox95da3102008-07-22 11:09:07 +0100908 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct ti_port *tport = usb_get_serial_port_data(port);
910 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000911 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (tport == NULL)
914 return -ENODEV;
915
Alan Cox04ca89d2008-02-20 21:41:40 +0000916 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 mcr = tport->tp_shadow_mcr;
918
919 if (set & TIOCM_RTS)
920 mcr |= TI_MCR_RTS;
921 if (set & TIOCM_DTR)
922 mcr |= TI_MCR_DTR;
923 if (set & TIOCM_LOOP)
924 mcr |= TI_MCR_LOOP;
925
926 if (clear & TIOCM_RTS)
927 mcr &= ~TI_MCR_RTS;
928 if (clear & TIOCM_DTR)
929 mcr &= ~TI_MCR_DTR;
930 if (clear & TIOCM_LOOP)
931 mcr &= ~TI_MCR_LOOP;
Alan Cox04ca89d2008-02-20 21:41:40 +0000932 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 return ti_set_mcr(tport, mcr);
935}
936
937
Alan Cox95da3102008-07-22 11:09:07 +0100938static void ti_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Alan Cox95da3102008-07-22 11:09:07 +0100940 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 struct ti_port *tport = usb_get_serial_port_data(port);
942 int status;
943
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700944 dev_dbg(&port->dev, "%s - state = %d\n", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 if (tport == NULL)
947 return;
948
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700949 status = ti_write_byte(port, tport->tp_tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 tport->tp_uart_base_addr + TI_UART_OFFSET_LCR,
951 TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0);
952
953 if (status)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700954 dev_dbg(&port->dev, "%s - error setting break, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957
David Howells7d12e782006-10-05 14:55:46 +0100958static void ti_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Ming Leicdc97792008-02-24 18:41:47 +0800960 struct ti_device *tdev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 struct usb_serial_port *port;
962 struct usb_serial *serial = tdev->td_serial;
963 struct ti_port *tport;
964 struct device *dev = &urb->dev->dev;
965 unsigned char *data = urb->transfer_buffer;
966 int length = urb->actual_length;
967 int port_number;
968 int function;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -0700969 int status = urb->status;
970 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 __u8 msr;
972
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -0700973 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 case 0:
975 break;
976 case -ECONNRESET:
977 case -ENOENT:
978 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700979 dev_dbg(dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 tdev->td_urb_error = 1;
981 return;
982 default:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700983 dev_err(dev, "%s - nonzero urb status, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 tdev->td_urb_error = 1;
985 goto exit;
986 }
987
988 if (length != 2) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700989 dev_dbg(dev, "%s - bad packet size, %d\n", __func__, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 goto exit;
991 }
992
993 if (data[0] == TI_CODE_HARDWARE_ERROR) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800994 dev_err(dev, "%s - hardware error, %d\n", __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 goto exit;
996 }
997
998 port_number = TI_GET_PORT_FROM_CODE(data[0]);
999 function = TI_GET_FUNC_FROM_CODE(data[0]);
1000
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001001 dev_dbg(dev, "%s - port_number %d, function %d, data 0x%02X\n",
1002 __func__, port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 if (port_number >= serial->num_ports) {
Alan Coxa30fa792008-07-22 11:15:17 +01001005 dev_err(dev, "%s - bad port number, %d\n",
1006 __func__, port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 goto exit;
1008 }
1009
1010 port = serial->port[port_number];
1011
1012 tport = usb_get_serial_port_data(port);
1013 if (!tport)
1014 goto exit;
1015
1016 switch (function) {
1017 case TI_CODE_DATA_ERROR:
Alan Coxa30fa792008-07-22 11:15:17 +01001018 dev_err(dev, "%s - DATA ERROR, port %d, data 0x%02X\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001019 __func__, port_number, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 break;
1021
1022 case TI_CODE_MODEM_STATUS:
1023 msr = data[1];
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001024 dev_dbg(dev, "%s - port %d, msr 0x%02X\n", __func__, port_number, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 ti_handle_new_msr(tport, msr);
1026 break;
1027
1028 default:
Alan Coxa30fa792008-07-22 11:15:17 +01001029 dev_err(dev, "%s - unknown interrupt code, 0x%02X\n",
1030 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 break;
1032 }
1033
1034exit:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001035 retval = usb_submit_urb(urb, GFP_ATOMIC);
1036 if (retval)
1037 dev_err(dev, "%s - resubmit interrupt urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001038 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
1041
David Howells7d12e782006-10-05 14:55:46 +01001042static void ti_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Ming Leicdc97792008-02-24 18:41:47 +08001044 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 struct usb_serial_port *port = tport->tp_port;
1046 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001047 int status = urb->status;
1048 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001050 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 case 0:
1052 break;
1053 case -ECONNRESET:
1054 case -ENOENT:
1055 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001056 dev_dbg(dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 tport->tp_tdev->td_urb_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return;
1059 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001060 dev_err(dev, "%s - nonzero urb status, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001061 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 tport->tp_tdev->td_urb_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 }
1064
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001065 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 goto exit;
1067
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001068 if (status) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001069 dev_err(dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return;
1071 }
1072
Jiri Slaby2e124b42013-01-03 15:53:06 +01001073 if (urb->actual_length) {
1074 usb_serial_debug_data(dev, __func__, urb->actual_length,
1075 urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Jiri Slaby2e124b42013-01-03 15:53:06 +01001077 if (!tport->tp_is_open)
1078 dev_dbg(dev, "%s - port closed, dropping data\n",
1079 __func__);
1080 else
1081 ti_recv(port, urb->transfer_buffer, urb->actual_length);
1082 spin_lock(&tport->tp_lock);
Johan Hovold783ca352013-03-21 12:37:33 +01001083 port->icount.rx += urb->actual_length;
Jiri Slaby2e124b42013-01-03 15:53:06 +01001084 spin_unlock(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086
1087exit:
1088 /* continue to read unless stopping */
1089 spin_lock(&tport->tp_lock);
Johan Hovold58330412011-11-06 19:06:28 +01001090 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001091 retval = usb_submit_urb(urb, GFP_ATOMIC);
Johan Hovold58330412011-11-06 19:06:28 +01001092 else if (tport->tp_read_urb_state == TI_READ_URB_STOPPING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 tport->tp_read_urb_state = TI_READ_URB_STOPPED;
Johan Hovold58330412011-11-06 19:06:28 +01001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 spin_unlock(&tport->tp_lock);
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001096 if (retval)
1097 dev_err(dev, "%s - resubmit read urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001098 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
1101
David Howells7d12e782006-10-05 14:55:46 +01001102static void ti_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Ming Leicdc97792008-02-24 18:41:47 +08001104 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 struct usb_serial_port *port = tport->tp_port;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001106 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 tport->tp_write_urb_in_use = 0;
1109
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001110 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 case 0:
1112 break;
1113 case -ECONNRESET:
1114 case -ENOENT:
1115 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001116 dev_dbg(&port->dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 tport->tp_tdev->td_urb_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return;
1119 default:
Johan Hovold22a416c2012-02-10 13:20:51 +01001120 dev_err_console(port, "%s - nonzero urb status, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001121 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 tport->tp_tdev->td_urb_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124
1125 /* send any buffered data */
1126 ti_send(tport);
1127}
1128
1129
Jiri Slaby2e124b42013-01-03 15:53:06 +01001130static void ti_recv(struct usb_serial_port *port, unsigned char *data,
1131 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
1133 int cnt;
1134
1135 do {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001136 cnt = tty_insert_flip_string(&port->port, data, length);
Alan Cox33f0f882006-01-09 20:54:13 -08001137 if (cnt < length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001138 dev_err(&port->dev, "%s - dropping data, %d bytes lost\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001139 __func__, length - cnt);
1140 if (cnt == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08001141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Jiri Slaby2e124b42013-01-03 15:53:06 +01001143 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 data += cnt;
1145 length -= cnt;
1146 } while (length > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147}
1148
1149
1150static void ti_send(struct ti_port *tport)
1151{
1152 int count, result;
1153 struct usb_serial_port *port = tport->tp_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 unsigned long flags;
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 spin_lock_irqsave(&tport->tp_lock, flags);
1157
Alan Cox4a90f092008-10-13 10:39:46 +01001158 if (tport->tp_write_urb_in_use)
1159 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Johan Hovoldcd1e0982013-06-26 16:47:41 +02001161 count = kfifo_out(&port->write_fifo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 port->write_urb->transfer_buffer,
1163 port->bulk_out_size);
1164
Alan Cox4a90f092008-10-13 10:39:46 +01001165 if (count == 0)
1166 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 tport->tp_write_urb_in_use = 1;
1169
1170 spin_unlock_irqrestore(&tport->tp_lock, flags);
1171
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001172 usb_serial_debug_data(&port->dev, __func__, count,
1173 port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1176 usb_sndbulkpipe(port->serial->dev,
1177 port->bulk_out_endpointAddress),
1178 port->write_urb->transfer_buffer, count,
1179 ti_bulk_out_callback, tport);
1180
1181 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
1182 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001183 dev_err_console(port, "%s - submit write urb failed, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001184 __func__, result);
1185 tport->tp_write_urb_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* TODO: reschedule ti_send */
1187 } else {
1188 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovold783ca352013-03-21 12:37:33 +01001189 port->icount.tx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 spin_unlock_irqrestore(&tport->tp_lock, flags);
1191 }
1192
1193 /* more room in the buffer for new writes, wakeup */
Jiri Slaby6aad04f2013-03-07 13:12:29 +01001194 tty_port_tty_wakeup(&port->port);
1195
Alan Cox4a90f092008-10-13 10:39:46 +01001196 return;
1197unlock:
1198 spin_unlock_irqrestore(&tport->tp_lock, flags);
Alan Cox4a90f092008-10-13 10:39:46 +01001199 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202
1203static int ti_set_mcr(struct ti_port *tport, unsigned int mcr)
1204{
Alan Cox04ca89d2008-02-20 21:41:40 +00001205 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 int status;
1207
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001208 status = ti_write_byte(tport->tp_port, tport->tp_tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 tport->tp_uart_base_addr + TI_UART_OFFSET_MCR,
1210 TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr);
1211
Alan Cox04ca89d2008-02-20 21:41:40 +00001212 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (!status)
1214 tport->tp_shadow_mcr = mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001215 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 return status;
1218}
1219
1220
Johan Hovoldb5784f72013-04-18 17:33:20 +02001221static int ti_get_lsr(struct ti_port *tport, u8 *lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Alan Coxa30fa792008-07-22 11:15:17 +01001223 int size, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 struct ti_device *tdev = tport->tp_tdev;
1225 struct usb_serial_port *port = tport->tp_port;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001226 int port_number = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 struct ti_port_status *data;
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 size = sizeof(struct ti_port_status);
1230 data = kmalloc(size, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01001231 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 status = ti_command_in_sync(tdev, TI_GET_PORT_STATUS,
1235 (__u8)(TI_UART1_PORT+port_number), 0, (__u8 *)data, size);
1236 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001237 dev_err(&port->dev,
1238 "%s - get port status command failed, %d\n",
1239 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 goto free_data;
1241 }
1242
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001243 dev_dbg(&port->dev, "%s - lsr 0x%02X\n", __func__, data->bLSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Johan Hovoldb5784f72013-04-18 17:33:20 +02001245 *lsr = data->bLSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247free_data:
1248 kfree(data);
1249 return status;
1250}
1251
1252
1253static int ti_get_serial_info(struct ti_port *tport,
1254 struct serial_struct __user *ret_arg)
1255{
1256 struct usb_serial_port *port = tport->tp_port;
1257 struct serial_struct ret_serial;
Johan Hovoldf1175da2013-04-18 17:33:23 +02001258 unsigned cwait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 if (!ret_arg)
1261 return -EFAULT;
1262
Johan Hovoldf1175da2013-04-18 17:33:23 +02001263 cwait = port->port.closing_wait;
1264 if (cwait != ASYNC_CLOSING_WAIT_NONE)
1265 cwait = jiffies_to_msecs(cwait) / 10;
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 memset(&ret_serial, 0, sizeof(ret_serial));
1268
1269 ret_serial.type = PORT_16550A;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07001270 ret_serial.line = port->minor;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001271 ret_serial.port = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 ret_serial.flags = tport->tp_flags;
Johan Hovoldcd1e0982013-06-26 16:47:41 +02001273 ret_serial.xmit_fifo_size = kfifo_size(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 ret_serial.baud_base = tport->tp_tdev->td_is_3410 ? 921600 : 460800;
Johan Hovoldf1175da2013-04-18 17:33:23 +02001275 ret_serial.closing_wait = cwait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 if (copy_to_user(ret_arg, &ret_serial, sizeof(*ret_arg)))
1278 return -EFAULT;
1279
1280 return 0;
1281}
1282
1283
Alan Cox4a90f092008-10-13 10:39:46 +01001284static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 struct serial_struct __user *new_arg)
1286{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 struct serial_struct new_serial;
Johan Hovoldf1175da2013-04-18 17:33:23 +02001288 unsigned cwait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 if (copy_from_user(&new_serial, new_arg, sizeof(new_serial)))
1291 return -EFAULT;
1292
Johan Hovoldf1175da2013-04-18 17:33:23 +02001293 cwait = new_serial.closing_wait;
1294 if (cwait != ASYNC_CLOSING_WAIT_NONE)
1295 cwait = msecs_to_jiffies(10 * new_serial.closing_wait);
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS;
Johan Hovoldf1175da2013-04-18 17:33:23 +02001298 tport->tp_port->port.closing_wait = cwait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 return 0;
1301}
1302
1303
1304static void ti_handle_new_msr(struct ti_port *tport, __u8 msr)
1305{
1306 struct async_icount *icount;
1307 struct tty_struct *tty;
1308 unsigned long flags;
1309
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001310 dev_dbg(&tport->tp_port->dev, "%s - msr 0x%02X\n", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 if (msr & TI_MSR_DELTA_MASK) {
1313 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovold783ca352013-03-21 12:37:33 +01001314 icount = &tport->tp_port->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (msr & TI_MSR_DELTA_CTS)
1316 icount->cts++;
1317 if (msr & TI_MSR_DELTA_DSR)
1318 icount->dsr++;
1319 if (msr & TI_MSR_DELTA_CD)
1320 icount->dcd++;
1321 if (msr & TI_MSR_DELTA_RI)
1322 icount->rng++;
Johan Hovold6c75e262013-03-21 12:37:34 +01001323 wake_up_interruptible(&tport->tp_port->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 spin_unlock_irqrestore(&tport->tp_lock, flags);
1325 }
1326
1327 tport->tp_msr = msr & TI_MSR_MASK;
1328
1329 /* handle CTS flow control */
Alan Cox4a90f092008-10-13 10:39:46 +01001330 tty = tty_port_tty_get(&tport->tp_port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (tty && C_CRTSCTS(tty)) {
Peter Hurleyd95e3ca2014-09-10 15:06:27 -04001332 if (msr & TI_MSR_CTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
Alan Cox4a90f092008-10-13 10:39:46 +01001335 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty)
1340{
1341 unsigned long flags;
1342
1343 spin_lock_irqsave(&tport->tp_lock, flags);
1344
1345 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
1346 tport->tp_read_urb_state = TI_READ_URB_STOPPING;
1347
1348 spin_unlock_irqrestore(&tport->tp_lock, flags);
1349}
1350
1351
1352static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty)
1353{
1354 struct urb *urb;
1355 int status = 0;
1356 unsigned long flags;
1357
1358 spin_lock_irqsave(&tport->tp_lock, flags);
1359
1360 if (tport->tp_read_urb_state == TI_READ_URB_STOPPED) {
Oliver Neukum944dc182007-05-07 08:33:18 +02001361 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 urb = tport->tp_port->read_urb;
Oliver Neukum944dc182007-05-07 08:33:18 +02001363 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 urb->context = tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 status = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukum944dc182007-05-07 08:33:18 +02001366 } else {
1367 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
1368 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 return status;
1372}
1373
1374
1375static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
1376 __u16 moduleid, __u16 value, __u8 *data, int size)
1377{
1378 int status;
1379
1380 status = usb_control_msg(tdev->td_serial->dev,
1381 usb_sndctrlpipe(tdev->td_serial->dev, 0), command,
1382 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
1383 value, moduleid, data, size, 1000);
1384
1385 if (status == size)
1386 status = 0;
1387
1388 if (status > 0)
1389 status = -ECOMM;
1390
1391 return status;
1392}
1393
1394
1395static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
1396 __u16 moduleid, __u16 value, __u8 *data, int size)
1397{
1398 int status;
1399
1400 status = usb_control_msg(tdev->td_serial->dev,
1401 usb_rcvctrlpipe(tdev->td_serial->dev, 0), command,
1402 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
1403 value, moduleid, data, size, 1000);
1404
1405 if (status == size)
1406 status = 0;
1407
1408 if (status > 0)
1409 status = -ECOMM;
1410
1411 return status;
1412}
1413
1414
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001415static int ti_write_byte(struct usb_serial_port *port,
1416 struct ti_device *tdev, unsigned long addr,
1417 __u8 mask, __u8 byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419 int status;
1420 unsigned int size;
1421 struct ti_write_data_bytes *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001423 dev_dbg(&port->dev, "%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X\n", __func__,
1424 addr, mask, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 size = sizeof(struct ti_write_data_bytes) + 2;
1427 data = kmalloc(size, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01001428 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 data->bAddrType = TI_RW_DATA_ADDR_XDATA;
1432 data->bDataType = TI_RW_DATA_BYTE;
1433 data->bDataCounter = 1;
1434 data->wBaseAddrHi = cpu_to_be16(addr>>16);
1435 data->wBaseAddrLo = cpu_to_be16(addr);
1436 data->bData[0] = mask;
1437 data->bData[1] = byte;
1438
1439 status = ti_command_out_sync(tdev, TI_WRITE_DATA, TI_RAM_PORT, 0,
1440 (__u8 *)data, size);
1441
1442 if (status < 0)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001443 dev_err(&port->dev, "%s - failed, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 kfree(data);
1446
1447 return status;
1448}
1449
Alan Cox95da3102008-07-22 11:09:07 +01001450static int ti_do_download(struct usb_device *dev, int pipe,
1451 u8 *buffer, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int pos;
Alan Cox95da3102008-07-22 11:09:07 +01001454 u8 cs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 struct ti_firmware_header *header;
Oliver Neukum87ea8c82009-06-30 09:44:24 +02001457 int status = 0;
Alan Cox95da3102008-07-22 11:09:07 +01001458 int len;
Alan Coxa30fa792008-07-22 11:15:17 +01001459
1460 for (pos = sizeof(struct ti_firmware_header); pos < size; pos++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 cs = (__u8)(cs + buffer[pos]);
1462
1463 header = (struct ti_firmware_header *)buffer;
Alan Coxa30fa792008-07-22 11:15:17 +01001464 header->wLength = cpu_to_le16((__u16)(size
Alan Cox95da3102008-07-22 11:09:07 +01001465 - sizeof(struct ti_firmware_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 header->bCheckSum = cs;
1467
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001468 dev_dbg(&dev->dev, "%s - downloading firmware\n", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01001469 for (pos = 0; pos < size; pos += done) {
1470 len = min(size - pos, TI_DOWNLOAD_MAX_PACKET_SIZE);
1471 status = usb_bulk_msg(dev, pipe, buffer + pos, len,
1472 &done, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (status)
1474 break;
1475 }
Alan Cox95da3102008-07-22 11:09:07 +01001476 return status;
1477}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Chris Adams05a3d902009-01-11 19:48:53 +00001479static int ti_download_firmware(struct ti_device *tdev)
Alan Cox95da3102008-07-22 11:09:07 +01001480{
Chris Adams05a3d902009-01-11 19:48:53 +00001481 int status;
Alan Cox95da3102008-07-22 11:09:07 +01001482 int buffer_size;
1483 __u8 *buffer;
1484 struct usb_device *dev = tdev->td_serial->dev;
1485 unsigned int pipe = usb_sndbulkpipe(dev,
1486 tdev->td_serial->port[0]->bulk_out_endpointAddress);
1487 const struct firmware *fw_p;
1488 char buf[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +02001490 if (le16_to_cpu(dev->descriptor.idVendor) == MXU1_VENDOR_ID) {
1491 snprintf(buf,
1492 sizeof(buf),
1493 "moxa/moxa-%04x.fw",
1494 le16_to_cpu(dev->descriptor.idProduct));
1495
1496 status = request_firmware(&fw_p, buf, &dev->dev);
1497 goto check_firmware;
1498 }
1499
Chris Adams05a3d902009-01-11 19:48:53 +00001500 /* try ID specific firmware first, then try generic firmware */
Johan Hovolde877dd22013-08-11 16:49:23 +02001501 sprintf(buf, "ti_usb-v%04x-p%04x.fw",
1502 le16_to_cpu(dev->descriptor.idVendor),
1503 le16_to_cpu(dev->descriptor.idProduct));
Adhir Ramjiawan72b27a02012-04-09 14:01:38 +02001504 status = request_firmware(&fw_p, buf, &dev->dev);
1505
1506 if (status != 0) {
Chris Adamscb7a7c62009-01-11 19:49:00 +00001507 buf[0] = '\0';
Johan Hovolde877dd22013-08-11 16:49:23 +02001508 if (le16_to_cpu(dev->descriptor.idVendor) == MTS_VENDOR_ID) {
1509 switch (le16_to_cpu(dev->descriptor.idProduct)) {
Chris Adamscb7a7c62009-01-11 19:49:00 +00001510 case MTS_CDMA_PRODUCT_ID:
1511 strcpy(buf, "mts_cdma.fw");
1512 break;
1513 case MTS_GSM_PRODUCT_ID:
1514 strcpy(buf, "mts_gsm.fw");
1515 break;
1516 case MTS_EDGE_PRODUCT_ID:
1517 strcpy(buf, "mts_edge.fw");
1518 break;
Alex Manoussakiscdc04832010-04-22 15:18:20 -07001519 case MTS_MT9234MU_PRODUCT_ID:
1520 strcpy(buf, "mts_mt9234mu.fw");
1521 break;
1522 case MTS_MT9234ZBA_PRODUCT_ID:
1523 strcpy(buf, "mts_mt9234zba.fw");
1524 break;
1525 case MTS_MT9234ZBAOLD_PRODUCT_ID:
1526 strcpy(buf, "mts_mt9234zba.fw");
1527 break; }
Chris Adamscb7a7c62009-01-11 19:49:00 +00001528 }
1529 if (buf[0] == '\0') {
1530 if (tdev->td_is_3410)
1531 strcpy(buf, "ti_3410.fw");
1532 else
1533 strcpy(buf, "ti_5052.fw");
1534 }
Chris Adams05a3d902009-01-11 19:48:53 +00001535 status = request_firmware(&fw_p, buf, &dev->dev);
1536 }
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +02001537
1538check_firmware:
Chris Adams05a3d902009-01-11 19:48:53 +00001539 if (status) {
Alan Cox95da3102008-07-22 11:09:07 +01001540 dev_err(&dev->dev, "%s - firmware not found\n", __func__);
1541 return -ENOENT;
1542 }
1543 if (fw_p->size > TI_FIRMWARE_BUF_SIZE) {
Randy Dunlap75181f32010-04-15 11:38:56 -07001544 dev_err(&dev->dev, "%s - firmware too large %zu\n", __func__, fw_p->size);
Jesper Juhl357f45d2011-06-13 22:50:41 +02001545 release_firmware(fw_p);
Alan Cox95da3102008-07-22 11:09:07 +01001546 return -ENOENT;
1547 }
1548
1549 buffer_size = TI_FIRMWARE_BUF_SIZE + sizeof(struct ti_firmware_header);
1550 buffer = kmalloc(buffer_size, GFP_KERNEL);
1551 if (buffer) {
1552 memcpy(buffer, fw_p->data, fw_p->size);
1553 memset(buffer + fw_p->size, 0xff, buffer_size - fw_p->size);
Chris Adams2bcbe4c12008-09-10 14:11:38 -07001554 status = ti_do_download(dev, pipe, buffer, fw_p->size);
Alan Cox95da3102008-07-22 11:09:07 +01001555 kfree(buffer);
Chris Adams05a3d902009-01-11 19:48:53 +00001556 } else {
1557 status = -ENOMEM;
Alan Cox95da3102008-07-22 11:09:07 +01001558 }
1559 release_firmware(fw_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001561 dev_err(&dev->dev, "%s - error downloading firmware, %d\n",
1562 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return status;
1564 }
1565
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001566 dev_dbg(&dev->dev, "%s - download successful\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 return 0;
1569}