blob: 07b4bf01061d86a6aafcdbb9d7ee7b6d331b9a05 [file] [log] [blame]
Mathieu OTHACEHE8bf344d2016-05-12 10:48:33 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * TI 3410/5052 USB Serial Driver
3 *
4 * Copyright (C) 2004 Texas Instruments
5 *
6 * This driver is based on the Linux io_ti driver, which is
7 * Copyright (C) 2000-2002 Inside Out Networks
8 * Copyright (C) 2001-2002 Greg Kroah-Hartman
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * For questions or problems with this driver, contact Texas Instruments
16 * technical support, or Al Borchers <alborchers@steinerpoint.com>, or
17 * Peter Berger <pberger@brimson.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kernel.h>
21#include <linux/errno.h>
Alan Cox95da3102008-07-22 11:09:07 +010022#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/slab.h>
24#include <linux/tty.h>
25#include <linux/tty_driver.h>
26#include <linux/tty_flip.h>
27#include <linux/module.h>
28#include <linux/spinlock.h>
29#include <linux/ioctl.h>
30#include <linux/serial.h>
Johan Hovold074ef652010-05-19 00:01:35 +020031#include <linux/kfifo.h>
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080032#include <linux/mutex.h>
Alan Coxa30fa792008-07-22 11:15:17 +010033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070035#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Mathieu OTHACEHE4ab0e0d2016-05-12 10:48:35 +020037/* Configuration ids */
38#define TI_BOOT_CONFIG 1
39#define TI_ACTIVE_CONFIG 2
40
41/* Vendor and product ids */
42#define TI_VENDOR_ID 0x0451
43#define IBM_VENDOR_ID 0x04b3
44#define TI_3410_PRODUCT_ID 0x3410
45#define IBM_4543_PRODUCT_ID 0x4543
46#define IBM_454B_PRODUCT_ID 0x454b
47#define IBM_454C_PRODUCT_ID 0x454c
48#define TI_3410_EZ430_ID 0xF430 /* TI ez430 development tool */
49#define TI_5052_BOOT_PRODUCT_ID 0x5052 /* no EEPROM, no firmware */
50#define TI_5152_BOOT_PRODUCT_ID 0x5152 /* no EEPROM, no firmware */
51#define TI_5052_EEPROM_PRODUCT_ID 0x505A /* EEPROM, no firmware */
52#define TI_5052_FIRMWARE_PRODUCT_ID 0x505F /* firmware is running */
53#define FRI2_PRODUCT_ID 0x5053 /* Fish River Island II */
54
55/* Multi-Tech vendor and product ids */
56#define MTS_VENDOR_ID 0x06E0
57#define MTS_GSM_NO_FW_PRODUCT_ID 0xF108
58#define MTS_CDMA_NO_FW_PRODUCT_ID 0xF109
59#define MTS_CDMA_PRODUCT_ID 0xF110
60#define MTS_GSM_PRODUCT_ID 0xF111
61#define MTS_EDGE_PRODUCT_ID 0xF112
62#define MTS_MT9234MU_PRODUCT_ID 0xF114
63#define MTS_MT9234ZBA_PRODUCT_ID 0xF115
64#define MTS_MT9234ZBAOLD_PRODUCT_ID 0x0319
65
66/* Abbott Diabetics vendor and product ids */
67#define ABBOTT_VENDOR_ID 0x1a61
68#define ABBOTT_STEREO_PLUG_ID 0x3410
69#define ABBOTT_PRODUCT_ID ABBOTT_STEREO_PLUG_ID
70#define ABBOTT_STRIP_PORT_ID 0x3420
71
72/* Honeywell vendor and product IDs */
73#define HONEYWELL_VENDOR_ID 0x10ac
74#define HONEYWELL_HGI80_PRODUCT_ID 0x0102 /* Honeywell HGI80 */
75
76/* Moxa UPORT 11x0 vendor and product IDs */
77#define MXU1_VENDOR_ID 0x110a
78#define MXU1_1110_PRODUCT_ID 0x1110
79#define MXU1_1130_PRODUCT_ID 0x1130
80#define MXU1_1150_PRODUCT_ID 0x1150
81#define MXU1_1151_PRODUCT_ID 0x1151
82#define MXU1_1131_PRODUCT_ID 0x1131
83
84/* Commands */
85#define TI_GET_VERSION 0x01
86#define TI_GET_PORT_STATUS 0x02
87#define TI_GET_PORT_DEV_INFO 0x03
88#define TI_GET_CONFIG 0x04
89#define TI_SET_CONFIG 0x05
90#define TI_OPEN_PORT 0x06
91#define TI_CLOSE_PORT 0x07
92#define TI_START_PORT 0x08
93#define TI_STOP_PORT 0x09
94#define TI_TEST_PORT 0x0A
95#define TI_PURGE_PORT 0x0B
96#define TI_RESET_EXT_DEVICE 0x0C
97#define TI_WRITE_DATA 0x80
98#define TI_READ_DATA 0x81
99#define TI_REQ_TYPE_CLASS 0x82
100
101/* Module identifiers */
102#define TI_I2C_PORT 0x01
103#define TI_IEEE1284_PORT 0x02
104#define TI_UART1_PORT 0x03
105#define TI_UART2_PORT 0x04
106#define TI_RAM_PORT 0x05
107
108/* Modem status */
109#define TI_MSR_DELTA_CTS 0x01
110#define TI_MSR_DELTA_DSR 0x02
111#define TI_MSR_DELTA_RI 0x04
112#define TI_MSR_DELTA_CD 0x08
113#define TI_MSR_CTS 0x10
114#define TI_MSR_DSR 0x20
115#define TI_MSR_RI 0x40
116#define TI_MSR_CD 0x80
117#define TI_MSR_DELTA_MASK 0x0F
118#define TI_MSR_MASK 0xF0
119
120/* Line status */
121#define TI_LSR_OVERRUN_ERROR 0x01
122#define TI_LSR_PARITY_ERROR 0x02
123#define TI_LSR_FRAMING_ERROR 0x04
124#define TI_LSR_BREAK 0x08
125#define TI_LSR_ERROR 0x0F
126#define TI_LSR_RX_FULL 0x10
127#define TI_LSR_TX_EMPTY 0x20
128
129/* Line control */
130#define TI_LCR_BREAK 0x40
131
132/* Modem control */
133#define TI_MCR_LOOP 0x04
134#define TI_MCR_DTR 0x10
135#define TI_MCR_RTS 0x20
136
137/* Mask settings */
138#define TI_UART_ENABLE_RTS_IN 0x0001
139#define TI_UART_DISABLE_RTS 0x0002
140#define TI_UART_ENABLE_PARITY_CHECKING 0x0008
141#define TI_UART_ENABLE_DSR_OUT 0x0010
142#define TI_UART_ENABLE_CTS_OUT 0x0020
143#define TI_UART_ENABLE_X_OUT 0x0040
144#define TI_UART_ENABLE_XA_OUT 0x0080
145#define TI_UART_ENABLE_X_IN 0x0100
146#define TI_UART_ENABLE_DTR_IN 0x0800
147#define TI_UART_DISABLE_DTR 0x1000
148#define TI_UART_ENABLE_MS_INTS 0x2000
149#define TI_UART_ENABLE_AUTO_START_DMA 0x4000
150
151/* Parity */
152#define TI_UART_NO_PARITY 0x00
153#define TI_UART_ODD_PARITY 0x01
154#define TI_UART_EVEN_PARITY 0x02
155#define TI_UART_MARK_PARITY 0x03
156#define TI_UART_SPACE_PARITY 0x04
157
158/* Stop bits */
159#define TI_UART_1_STOP_BITS 0x00
160#define TI_UART_1_5_STOP_BITS 0x01
161#define TI_UART_2_STOP_BITS 0x02
162
163/* Bits per character */
164#define TI_UART_5_DATA_BITS 0x00
165#define TI_UART_6_DATA_BITS 0x01
166#define TI_UART_7_DATA_BITS 0x02
167#define TI_UART_8_DATA_BITS 0x03
168
169/* 232/485 modes */
170#define TI_UART_232 0x00
171#define TI_UART_485_RECEIVER_DISABLED 0x01
172#define TI_UART_485_RECEIVER_ENABLED 0x02
173
174/* Pipe transfer mode and timeout */
175#define TI_PIPE_MODE_CONTINUOUS 0x01
176#define TI_PIPE_MODE_MASK 0x03
177#define TI_PIPE_TIMEOUT_MASK 0x7C
178#define TI_PIPE_TIMEOUT_ENABLE 0x80
179
180/* Config struct */
181struct ti_uart_config {
182 __u16 wBaudRate;
183 __u16 wFlags;
184 __u8 bDataBits;
185 __u8 bParity;
186 __u8 bStopBits;
187 char cXon;
188 char cXoff;
189 __u8 bUartMode;
190} __packed;
191
192/* Get port status */
193struct ti_port_status {
194 __u8 bCmdCode;
195 __u8 bModuleId;
196 __u8 bErrorCode;
197 __u8 bMSR;
198 __u8 bLSR;
199} __packed;
200
201/* Purge modes */
202#define TI_PURGE_OUTPUT 0x00
203#define TI_PURGE_INPUT 0x80
204
205/* Read/Write data */
206#define TI_RW_DATA_ADDR_SFR 0x10
207#define TI_RW_DATA_ADDR_IDATA 0x20
208#define TI_RW_DATA_ADDR_XDATA 0x30
209#define TI_RW_DATA_ADDR_CODE 0x40
210#define TI_RW_DATA_ADDR_GPIO 0x50
211#define TI_RW_DATA_ADDR_I2C 0x60
212#define TI_RW_DATA_ADDR_FLASH 0x70
213#define TI_RW_DATA_ADDR_DSP 0x80
214
215#define TI_RW_DATA_UNSPECIFIED 0x00
216#define TI_RW_DATA_BYTE 0x01
217#define TI_RW_DATA_WORD 0x02
218#define TI_RW_DATA_DOUBLE_WORD 0x04
219
220struct ti_write_data_bytes {
221 __u8 bAddrType;
222 __u8 bDataType;
223 __u8 bDataCounter;
224 __be16 wBaseAddrHi;
225 __be16 wBaseAddrLo;
226 __u8 bData[0];
227} __packed;
228
229struct ti_read_data_request {
230 __u8 bAddrType;
231 __u8 bDataType;
232 __u8 bDataCounter;
233 __be16 wBaseAddrHi;
234 __be16 wBaseAddrLo;
235} __packed;
236
237struct ti_read_data_bytes {
238 __u8 bCmdCode;
239 __u8 bModuleId;
240 __u8 bErrorCode;
241 __u8 bData[0];
242} __packed;
243
244/* Interrupt struct */
245struct ti_interrupt {
246 __u8 bICode;
247 __u8 bIInfo;
248} __packed;
249
250/* Interrupt codes */
Mathieu OTHACEHE4ab0e0d2016-05-12 10:48:35 +0200251#define TI_CODE_HARDWARE_ERROR 0xFF
252#define TI_CODE_DATA_ERROR 0x03
253#define TI_CODE_MODEM_STATUS 0x04
254
255/* Download firmware max packet size */
256#define TI_DOWNLOAD_MAX_PACKET_SIZE 64
257
258/* Firmware image header */
259struct ti_firmware_header {
260 __le16 wLength;
261 __u8 bCheckSum;
262} __packed;
263
264/* UART addresses */
265#define TI_UART1_BASE_ADDR 0xFFA0 /* UART 1 base address */
266#define TI_UART2_BASE_ADDR 0xFFB0 /* UART 2 base address */
267#define TI_UART_OFFSET_LCR 0x0002 /* UART MCR register offset */
268#define TI_UART_OFFSET_MCR 0x0004 /* UART MCR register offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270#define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>"
271#define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver"
272
273#define TI_FIRMWARE_BUF_SIZE 16284
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#define TI_TRANSFER_TIMEOUT 2
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */
278
279/* supported setserial flags */
Oliver Neukum2400a2b2009-04-20 17:28:53 +0200280#define TI_SET_SERIAL_FLAGS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282/* read urb states */
283#define TI_READ_URB_RUNNING 0
284#define TI_READ_URB_STOPPING 1
285#define TI_READ_URB_STOPPED 2
286
287#define TI_EXTRA_VID_PID_COUNT 5
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289struct ti_port {
290 int tp_is_open;
291 __u8 tp_msr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 __u8 tp_shadow_mcr;
293 __u8 tp_uart_mode; /* 232 or 485 modes */
294 unsigned int tp_uart_base_addr;
295 int tp_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 struct ti_device *tp_tdev;
297 struct usb_serial_port *tp_port;
298 spinlock_t tp_lock;
299 int tp_read_urb_state;
300 int tp_write_urb_in_use;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
303struct ti_device {
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800304 struct mutex td_open_close_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 int td_open_port_count;
306 struct usb_serial *td_serial;
307 int td_is_3410;
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200308 bool td_rs485_only;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 int td_urb_error;
310};
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static int ti_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400313static void ti_release(struct usb_serial *serial);
Johan Hovold51ef8472012-10-17 16:31:35 +0200314static int ti_port_probe(struct usb_serial_port *port);
315static int ti_port_remove(struct usb_serial_port *port);
Alan Coxa509a7e2009-09-19 13:13:26 -0700316static int ti_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +0100317static void ti_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +0100318static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
Alan Coxa30fa792008-07-22 11:15:17 +0100319 const unsigned char *data, int count);
Alan Cox95da3102008-07-22 11:09:07 +0100320static int ti_write_room(struct tty_struct *tty);
321static int ti_chars_in_buffer(struct tty_struct *tty);
Johan Hovoldff93b192013-05-05 20:32:32 +0200322static bool ti_tx_empty(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +0100323static void ti_throttle(struct tty_struct *tty);
324static void ti_unthrottle(struct tty_struct *tty);
Alan Cox00a0d0d2011-02-14 16:27:06 +0000325static int ti_ioctl(struct tty_struct *tty,
Alan Coxa30fa792008-07-22 11:15:17 +0100326 unsigned int cmd, unsigned long arg);
327static void ti_set_termios(struct tty_struct *tty,
328 struct usb_serial_port *port, struct ktermios *old_termios);
Alan Cox60b33c12011-02-14 16:26:14 +0000329static int ti_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000330static int ti_tiocmset(struct tty_struct *tty,
Alan Coxa30fa792008-07-22 11:15:17 +0100331 unsigned int set, unsigned int clear);
Alan Cox95da3102008-07-22 11:09:07 +0100332static void ti_break(struct tty_struct *tty, int break_state);
David Howells7d12e782006-10-05 14:55:46 +0100333static void ti_interrupt_callback(struct urb *urb);
334static void ti_bulk_in_callback(struct urb *urb);
335static void ti_bulk_out_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Jiri Slaby2e124b42013-01-03 15:53:06 +0100337static void ti_recv(struct usb_serial_port *port, unsigned char *data,
338 int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static void ti_send(struct ti_port *tport);
340static int ti_set_mcr(struct ti_port *tport, unsigned int mcr);
Johan Hovoldb5784f72013-04-18 17:33:20 +0200341static int ti_get_lsr(struct ti_port *tport, u8 *lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342static int ti_get_serial_info(struct ti_port *tport,
343 struct serial_struct __user *ret_arg);
Alan Cox4a90f092008-10-13 10:39:46 +0100344static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct serial_struct __user *new_arg);
346static void ti_handle_new_msr(struct ti_port *tport, __u8 msr);
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty);
349static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty);
350
351static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
352 __u16 moduleid, __u16 value, __u8 *data, int size);
353static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
354 __u16 moduleid, __u16 value, __u8 *data, int size);
355
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700356static int ti_write_byte(struct usb_serial_port *port, struct ti_device *tdev,
357 unsigned long addr, __u8 mask, __u8 byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Chris Adams05a3d902009-01-11 19:48:53 +0000359static int ti_download_firmware(struct ti_device *tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361static int closing_wait = TI_DEFAULT_CLOSING_WAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Johan Hovold5c6b98d2013-12-29 19:22:54 +0100363static const struct usb_device_id ti_id_table_3410[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000365 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000366 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
367 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
368 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
369 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
370 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700371 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234MU_PRODUCT_ID) },
372 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBA_PRODUCT_ID) },
373 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBAOLD_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100374 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100375 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
376 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Anders Hammarquist35a2fbc2013-06-19 01:45:48 +0200377 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_STEREO_PLUG_ID) },
378 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_STRIP_PORT_ID) },
Darren Hart975dc332012-05-11 13:56:57 -0700379 { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
David Woodhouse1bcb49e2015-11-14 16:49:30 +0000380 { USB_DEVICE(HONEYWELL_VENDOR_ID, HONEYWELL_HGI80_PRODUCT_ID) },
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200381 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1110_PRODUCT_ID) },
382 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1130_PRODUCT_ID) },
383 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1131_PRODUCT_ID) },
384 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1150_PRODUCT_ID) },
385 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1151_PRODUCT_ID) },
Johan Hovoldd7ece652013-06-26 16:47:43 +0200386 { } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387};
388
Johan Hovold5c6b98d2013-12-29 19:22:54 +0100389static const struct usb_device_id ti_id_table_5052[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
391 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
392 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
393 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Mathieu OTHACEHE8bf344d2016-05-12 10:48:33 +0200394 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
Johan Hovold5c6b98d2013-12-29 19:22:54 +0100397static const struct usb_device_id ti_id_table_combined[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000399 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000400 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
401 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
402 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
403 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
404 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700405 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234MU_PRODUCT_ID) },
406 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBA_PRODUCT_ID) },
407 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBAOLD_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
409 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
410 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
411 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100412 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100413 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
414 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Andrew Lunn7fd25702012-02-20 09:31:57 +0100415 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) },
Diego Elio Pettenòc9d09dc2013-10-08 20:03:37 +0100416 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_STRIP_PORT_ID) },
Darren Hart975dc332012-05-11 13:56:57 -0700417 { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
David Woodhouse1bcb49e2015-11-14 16:49:30 +0000418 { USB_DEVICE(HONEYWELL_VENDOR_ID, HONEYWELL_HGI80_PRODUCT_ID) },
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200419 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1110_PRODUCT_ID) },
420 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1130_PRODUCT_ID) },
421 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1131_PRODUCT_ID) },
422 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1150_PRODUCT_ID) },
423 { USB_DEVICE(MXU1_VENDOR_ID, MXU1_1151_PRODUCT_ID) },
Johan Hovoldd7ece652013-06-26 16:47:43 +0200424 { } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425};
426
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700427static struct usb_serial_driver ti_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700428 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700429 .owner = THIS_MODULE,
430 .name = "ti_usb_3410_5052_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700431 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700432 .description = "TI USB 3410 1 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 .id_table = ti_id_table_3410,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 .num_ports = 1,
435 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400436 .release = ti_release,
Johan Hovold51ef8472012-10-17 16:31:35 +0200437 .port_probe = ti_port_probe,
438 .port_remove = ti_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 .open = ti_open,
440 .close = ti_close,
441 .write = ti_write,
442 .write_room = ti_write_room,
443 .chars_in_buffer = ti_chars_in_buffer,
Johan Hovoldff93b192013-05-05 20:32:32 +0200444 .tx_empty = ti_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 .throttle = ti_throttle,
446 .unthrottle = ti_unthrottle,
447 .ioctl = ti_ioctl,
448 .set_termios = ti_set_termios,
449 .tiocmget = ti_tiocmget,
450 .tiocmset = ti_tiocmset,
Johan Hovold6c75e262013-03-21 12:37:34 +0100451 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold783ca352013-03-21 12:37:33 +0100452 .get_icount = usb_serial_generic_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 .break_ctl = ti_break,
454 .read_int_callback = ti_interrupt_callback,
455 .read_bulk_callback = ti_bulk_in_callback,
456 .write_bulk_callback = ti_bulk_out_callback,
457};
458
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700459static struct usb_serial_driver ti_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700460 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700461 .owner = THIS_MODULE,
462 .name = "ti_usb_3410_5052_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700463 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700464 .description = "TI USB 5052 2 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 .id_table = ti_id_table_5052,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 .num_ports = 2,
467 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400468 .release = ti_release,
Johan Hovold51ef8472012-10-17 16:31:35 +0200469 .port_probe = ti_port_probe,
470 .port_remove = ti_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .open = ti_open,
472 .close = ti_close,
473 .write = ti_write,
474 .write_room = ti_write_room,
475 .chars_in_buffer = ti_chars_in_buffer,
Johan Hovoldff93b192013-05-05 20:32:32 +0200476 .tx_empty = ti_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 .throttle = ti_throttle,
478 .unthrottle = ti_unthrottle,
479 .ioctl = ti_ioctl,
480 .set_termios = ti_set_termios,
481 .tiocmget = ti_tiocmget,
482 .tiocmset = ti_tiocmset,
Johan Hovold6c75e262013-03-21 12:37:34 +0100483 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold783ca352013-03-21 12:37:33 +0100484 .get_icount = usb_serial_generic_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 .break_ctl = ti_break,
486 .read_int_callback = ti_interrupt_callback,
487 .read_bulk_callback = ti_bulk_in_callback,
488 .write_bulk_callback = ti_bulk_out_callback,
489};
490
Alan Stern29618e92012-02-23 14:57:32 -0500491static struct usb_serial_driver * const serial_drivers[] = {
492 &ti_1port_device, &ti_2port_device, NULL
493};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495MODULE_AUTHOR(TI_DRIVER_AUTHOR);
496MODULE_DESCRIPTION(TI_DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497MODULE_LICENSE("GPL");
498
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300499MODULE_FIRMWARE("ti_3410.fw");
500MODULE_FIRMWARE("ti_5052.fw");
Chris Adams7df52312009-01-11 19:49:11 +0000501MODULE_FIRMWARE("mts_cdma.fw");
502MODULE_FIRMWARE("mts_gsm.fw");
503MODULE_FIRMWARE("mts_edge.fw");
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700504MODULE_FIRMWARE("mts_mt9234mu.fw");
505MODULE_FIRMWARE("mts_mt9234zba.fw");
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200506MODULE_FIRMWARE("moxa/moxa-1110.fw");
507MODULE_FIRMWARE("moxa/moxa-1130.fw");
508MODULE_FIRMWARE("moxa/moxa-1131.fw");
509MODULE_FIRMWARE("moxa/moxa-1150.fw");
510MODULE_FIRMWARE("moxa/moxa-1151.fw");
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512module_param(closing_wait, int, S_IRUGO | S_IWUSR);
Alan Coxa30fa792008-07-22 11:15:17 +0100513MODULE_PARM_DESC(closing_wait,
514 "Maximum wait for data to drain in close, in .01 secs, default is 4000");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516MODULE_DEVICE_TABLE(usb, ti_id_table_combined);
517
Johan Hovoldd7ece652013-06-26 16:47:43 +0200518module_usb_serial_driver(serial_drivers, ti_id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static int ti_startup(struct usb_serial *serial)
521{
522 struct ti_device *tdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 struct usb_device *dev = serial->dev;
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200524 struct usb_host_interface *cur_altsetting;
525 int num_endpoints;
526 u16 vid, pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700529 dev_dbg(&dev->dev,
Johan Hovoldd9a38a82014-03-12 19:09:42 +0100530 "%s - product 0x%4X, num configurations %d, configuration value %d\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700531 __func__, le16_to_cpu(dev->descriptor.idProduct),
532 dev->descriptor.bNumConfigurations,
533 dev->actconfig->desc.bConfigurationValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100535 tdev = kzalloc(sizeof(struct ti_device), GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +0100536 if (!tdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return -ENOMEM;
Johan Hovold10c642d2013-12-29 19:22:56 +0100538
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800539 mutex_init(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 tdev->td_serial = serial;
541 usb_set_serial_data(serial, tdev);
542
543 /* determine device type */
Johan Hovold1fad5642013-06-28 12:24:26 +0200544 if (serial->type == &ti_1port_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 tdev->td_is_3410 = 1;
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700546 dev_dbg(&dev->dev, "%s - device type is %s\n", __func__,
547 tdev->td_is_3410 ? "3410" : "5052");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200549 vid = le16_to_cpu(dev->descriptor.idVendor);
550 pid = le16_to_cpu(dev->descriptor.idProduct);
551 if (vid == MXU1_VENDOR_ID) {
552 switch (pid) {
553 case MXU1_1130_PRODUCT_ID:
554 case MXU1_1131_PRODUCT_ID:
555 tdev->td_rs485_only = true;
556 break;
557 }
558 }
559
560 cur_altsetting = serial->interface->cur_altsetting;
561 num_endpoints = cur_altsetting->desc.bNumEndpoints;
562
563 /* if we have only 1 configuration and 1 endpoint, download firmware */
564 if (dev->descriptor.bNumConfigurations == 1 && num_endpoints == 1) {
Adhir Ramjiawan72b27a02012-04-09 14:01:38 +0200565 status = ti_download_firmware(tdev);
566
567 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 goto free_tdev;
569
570 /* 3410 must be reset, 5052 resets itself */
571 if (tdev->td_is_3410) {
572 msleep_interruptible(100);
573 usb_reset_device(dev);
574 }
575
576 status = -ENODEV;
577 goto free_tdev;
Alan Coxa30fa792008-07-22 11:15:17 +0100578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100580 /* the second configuration must be set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (dev->actconfig->desc.bConfigurationValue == TI_BOOT_CONFIG) {
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100582 status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG);
583 status = status ? status : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 goto free_tdev;
585 }
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return 0;
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589free_tdev:
590 kfree(tdev);
591 usb_set_serial_data(serial, NULL);
592 return status;
593}
594
595
Alan Sternf9c99bb2009-06-02 11:53:55 -0400596static void ti_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 struct ti_device *tdev = usb_get_serial_data(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700600 kfree(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Johan Hovold51ef8472012-10-17 16:31:35 +0200603static int ti_port_probe(struct usb_serial_port *port)
604{
605 struct ti_port *tport;
606
607 tport = kzalloc(sizeof(*tport), GFP_KERNEL);
608 if (!tport)
609 return -ENOMEM;
610
611 spin_lock_init(&tport->tp_lock);
612 if (port == port->serial->port[0])
613 tport->tp_uart_base_addr = TI_UART1_BASE_ADDR;
614 else
615 tport->tp_uart_base_addr = TI_UART2_BASE_ADDR;
Johan Hovoldf1175da2013-04-18 17:33:23 +0200616 port->port.closing_wait = msecs_to_jiffies(10 * closing_wait);
Johan Hovold51ef8472012-10-17 16:31:35 +0200617 tport->tp_port = port;
618 tport->tp_tdev = usb_get_serial_data(port->serial);
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +0200619
620 if (tport->tp_tdev->td_rs485_only)
621 tport->tp_uart_mode = TI_UART_485_RECEIVER_DISABLED;
622 else
623 tport->tp_uart_mode = TI_UART_232;
Johan Hovold51ef8472012-10-17 16:31:35 +0200624
625 usb_set_serial_port_data(port, tport);
626
Johan Hovoldd7be6222013-06-26 16:47:23 +0200627 port->port.drain_delay = 3;
628
Johan Hovold51ef8472012-10-17 16:31:35 +0200629 return 0;
630}
631
632static int ti_port_remove(struct usb_serial_port *port)
633{
634 struct ti_port *tport;
635
636 tport = usb_get_serial_port_data(port);
Johan Hovold51ef8472012-10-17 16:31:35 +0200637 kfree(tport);
638
639 return 0;
640}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Alan Coxa509a7e2009-09-19 13:13:26 -0700642static int ti_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
644 struct ti_port *tport = usb_get_serial_port_data(port);
645 struct ti_device *tdev;
646 struct usb_device *dev;
647 struct urb *urb;
648 int port_number;
649 int status;
Mathieu OTHACEHE4ab0e0d2016-05-12 10:48:35 +0200650 __u16 open_settings = (__u8)(TI_PIPE_MODE_CONTINUOUS |
Alan Coxa30fa792008-07-22 11:15:17 +0100651 TI_PIPE_TIMEOUT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 (TI_TRANSFER_TIMEOUT << 2));
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (tport == NULL)
655 return -ENODEV;
656
657 dev = port->serial->dev;
658 tdev = tport->tp_tdev;
659
660 /* only one open on any port on a device at a time */
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800661 if (mutex_lock_interruptible(&tdev->td_open_close_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return -ERESTARTSYS;
663
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700664 port_number = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 tport->tp_msr = 0;
667 tport->tp_shadow_mcr |= (TI_MCR_RTS | TI_MCR_DTR);
668
669 /* start interrupt urb the first time a port is opened on this device */
670 if (tdev->td_open_port_count == 0) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700671 dev_dbg(&port->dev, "%s - start interrupt in urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 urb = tdev->td_serial->port[0]->interrupt_in_urb;
673 if (!urb) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700674 dev_err(&port->dev, "%s - no interrupt urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 status = -EINVAL;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800676 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 urb->context = tdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 status = usb_submit_urb(urb, GFP_KERNEL);
680 if (status) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700681 dev_err(&port->dev, "%s - submit interrupt urb failed, %d\n", __func__, status);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800682 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684 }
685
Alan Cox95da3102008-07-22 11:09:07 +0100686 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100687 ti_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700689 dev_dbg(&port->dev, "%s - sending TI_OPEN_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
691 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
692 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100693 dev_err(&port->dev, "%s - cannot send open command, %d\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700694 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 goto unlink_int_urb;
696 }
697
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700698 dev_dbg(&port->dev, "%s - sending TI_START_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 status = ti_command_out_sync(tdev, TI_START_PORT,
700 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
701 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100702 dev_err(&port->dev, "%s - cannot send start command, %d\n",
703 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 goto unlink_int_urb;
705 }
706
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700707 dev_dbg(&port->dev, "%s - sending TI_PURGE_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
709 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_INPUT, NULL, 0);
710 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100711 dev_err(&port->dev, "%s - cannot clear input buffers, %d\n",
712 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 goto unlink_int_urb;
714 }
715 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
716 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_OUTPUT, NULL, 0);
717 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100718 dev_err(&port->dev, "%s - cannot clear output buffers, %d\n",
719 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 goto unlink_int_urb;
721 }
722
723 /* reset the data toggle on the bulk endpoints to work around bug in
724 * host controllers where things get out of sync some times */
725 usb_clear_halt(dev, port->write_urb->pipe);
726 usb_clear_halt(dev, port->read_urb->pipe);
727
Alan Cox95da3102008-07-22 11:09:07 +0100728 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100729 ti_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700731 dev_dbg(&port->dev, "%s - sending TI_OPEN_PORT (2)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
733 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
734 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100735 dev_err(&port->dev, "%s - cannot send open command (2), %d\n",
736 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 goto unlink_int_urb;
738 }
739
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700740 dev_dbg(&port->dev, "%s - sending TI_START_PORT (2)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 status = ti_command_out_sync(tdev, TI_START_PORT,
742 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
743 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100744 dev_err(&port->dev, "%s - cannot send start command (2), %d\n",
745 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 goto unlink_int_urb;
747 }
748
749 /* start read urb */
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700750 dev_dbg(&port->dev, "%s - start read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 urb = port->read_urb;
752 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800753 dev_err(&port->dev, "%s - no read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 status = -EINVAL;
755 goto unlink_int_urb;
756 }
757 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 urb->context = tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 status = usb_submit_urb(urb, GFP_KERNEL);
760 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100761 dev_err(&port->dev, "%s - submit read urb failed, %d\n",
762 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 goto unlink_int_urb;
764 }
765
766 tport->tp_is_open = 1;
767 ++tdev->td_open_port_count;
768
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800769 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771unlink_int_urb:
772 if (tdev->td_open_port_count == 0)
773 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800774release_lock:
775 mutex_unlock(&tdev->td_open_close_lock);
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700776 dev_dbg(&port->dev, "%s - exit %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return status;
778}
779
780
Alan Cox335f8512009-06-11 12:26:29 +0100781static void ti_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
783 struct ti_device *tdev;
784 struct ti_port *tport;
785 int port_number;
786 int status;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800787 int do_unlock;
Johan Hovold113ec312013-04-18 17:33:19 +0200788 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 tdev = usb_get_serial_data(port->serial);
791 tport = usb_get_serial_port_data(port);
792 if (tdev == NULL || tport == NULL)
793 return;
794
795 tport->tp_is_open = 0;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 usb_kill_urb(port->read_urb);
798 usb_kill_urb(port->write_urb);
799 tport->tp_write_urb_in_use = 0;
Johan Hovold113ec312013-04-18 17:33:19 +0200800 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovoldcd1e0982013-06-26 16:47:41 +0200801 kfifo_reset_out(&port->write_fifo);
Johan Hovold113ec312013-04-18 17:33:19 +0200802 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700804 port_number = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700806 dev_dbg(&port->dev, "%s - sending TI_CLOSE_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 status = ti_command_out_sync(tdev, TI_CLOSE_PORT,
808 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
809 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100810 dev_err(&port->dev,
811 "%s - cannot send close port command, %d\n"
812 , __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800814 /* if mutex_lock is interrupted, continue anyway */
815 do_unlock = !mutex_lock_interruptible(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 --tport->tp_tdev->td_open_port_count;
817 if (tport->tp_tdev->td_open_port_count <= 0) {
818 /* last port is closed, shut down interrupt urb */
819 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
820 tport->tp_tdev->td_open_port_count = 0;
821 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800822 if (do_unlock)
823 mutex_unlock(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826
Alan Cox95da3102008-07-22 11:09:07 +0100827static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
828 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (count == 0) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700833 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return 0;
835 }
836
837 if (tport == NULL || !tport->tp_is_open)
838 return -ENODEV;
839
Johan Hovoldcd1e0982013-06-26 16:47:41 +0200840 count = kfifo_in_locked(&port->write_fifo, data, count,
Johan Hovold074ef652010-05-19 00:01:35 +0200841 &tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 ti_send(tport);
843
844 return count;
845}
846
847
Alan Cox95da3102008-07-22 11:09:07 +0100848static int ti_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Alan Cox95da3102008-07-22 11:09:07 +0100850 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 struct ti_port *tport = usb_get_serial_port_data(port);
852 int room = 0;
853 unsigned long flags;
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (tport == NULL)
Alan Cox23198fd2009-07-20 16:05:27 +0100856 return 0;
Alan Coxa30fa792008-07-22 11:15:17 +0100857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovoldcd1e0982013-06-26 16:47:41 +0200859 room = kfifo_avail(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 spin_unlock_irqrestore(&tport->tp_lock, flags);
861
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700862 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return room;
864}
865
866
Alan Cox95da3102008-07-22 11:09:07 +0100867static int ti_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Alan Cox95da3102008-07-22 11:09:07 +0100869 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 struct ti_port *tport = usb_get_serial_port_data(port);
871 int chars = 0;
872 unsigned long flags;
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (tport == NULL)
Alan Cox23198fd2009-07-20 16:05:27 +0100875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovoldcd1e0982013-06-26 16:47:41 +0200878 chars = kfifo_len(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 spin_unlock_irqrestore(&tport->tp_lock, flags);
880
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700881 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return chars;
883}
884
Johan Hovoldff93b192013-05-05 20:32:32 +0200885static bool ti_tx_empty(struct usb_serial_port *port)
886{
887 struct ti_port *tport = usb_get_serial_port_data(port);
888 int ret;
889 u8 lsr;
890
891 ret = ti_get_lsr(tport, &lsr);
892 if (!ret && !(lsr & TI_LSR_TX_EMPTY))
893 return false;
894
895 return true;
896}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Alan Cox95da3102008-07-22 11:09:07 +0100898static void ti_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Alan Cox95da3102008-07-22 11:09:07 +0100900 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (tport == NULL)
904 return;
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (I_IXOFF(tty) || C_CRTSCTS(tty))
907 ti_stop_read(tport, tty);
908
909}
910
911
Alan Cox95da3102008-07-22 11:09:07 +0100912static void ti_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Alan Cox95da3102008-07-22 11:09:07 +0100914 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 int status;
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (tport == NULL)
919 return;
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (I_IXOFF(tty) || C_CRTSCTS(tty)) {
922 status = ti_restart_read(tport, tty);
923 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100924 dev_err(&port->dev, "%s - cannot restart read, %d\n",
925 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927}
928
Alan Cox00a0d0d2011-02-14 16:27:06 +0000929static int ti_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 unsigned int cmd, unsigned long arg)
931{
Alan Cox95da3102008-07-22 11:09:07 +0100932 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (tport == NULL)
936 return -ENODEV;
937
938 switch (cmd) {
Alan Coxa30fa792008-07-22 11:15:17 +0100939 case TIOCGSERIAL:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700940 dev_dbg(&port->dev, "%s - TIOCGSERIAL\n", __func__);
Alan Coxa30fa792008-07-22 11:15:17 +0100941 return ti_get_serial_info(tport,
942 (struct serial_struct __user *)arg);
943 case TIOCSSERIAL:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700944 dev_dbg(&port->dev, "%s - TIOCSSERIAL\n", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +0100945 return ti_set_serial_info(tty, tport,
946 (struct serial_struct __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return -ENOIOCTLCMD;
949}
950
951
Alan Cox95da3102008-07-22 11:09:07 +0100952static void ti_set_termios(struct tty_struct *tty,
953 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 struct ti_uart_config *config;
Alan Coxa30fa792008-07-22 11:15:17 +0100957 tcflag_t cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 int baud;
959 int status;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700960 int port_number = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 unsigned int mcr;
962
Alan Coxadc8d742012-07-14 15:31:47 +0100963 cflag = tty->termios.c_cflag;
964 iflag = tty->termios.c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700966 dev_dbg(&port->dev, "%s - cflag %08x, iflag %08x\n", __func__, cflag, iflag);
967 dev_dbg(&port->dev, "%s - old clfag %08x, old iflag %08x\n", __func__,
968 old_termios->c_cflag, old_termios->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (tport == NULL)
971 return;
972
973 config = kmalloc(sizeof(*config), GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +0100974 if (!config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 config->wFlags = 0;
978
979 /* these flags must be set */
980 config->wFlags |= TI_UART_ENABLE_MS_INTS;
981 config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA;
982 config->bUartMode = (__u8)(tport->tp_uart_mode);
983
984 switch (cflag & CSIZE) {
Alan Coxa30fa792008-07-22 11:15:17 +0100985 case CS5:
986 config->bDataBits = TI_UART_5_DATA_BITS;
987 break;
988 case CS6:
989 config->bDataBits = TI_UART_6_DATA_BITS;
990 break;
991 case CS7:
992 config->bDataBits = TI_UART_7_DATA_BITS;
993 break;
994 default:
995 case CS8:
996 config->bDataBits = TI_UART_8_DATA_BITS;
997 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
Alan Cox537699e2008-01-03 17:03:11 +00001000 /* CMSPAR isn't supported by this driver */
Alan Coxadc8d742012-07-14 15:31:47 +01001001 tty->termios.c_cflag &= ~CMSPAR;
Alan Cox537699e2008-01-03 17:03:11 +00001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (cflag & PARENB) {
1004 if (cflag & PARODD) {
1005 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
1006 config->bParity = TI_UART_ODD_PARITY;
1007 } else {
1008 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
1009 config->bParity = TI_UART_EVEN_PARITY;
1010 }
1011 } else {
1012 config->wFlags &= ~TI_UART_ENABLE_PARITY_CHECKING;
Alan Coxa30fa792008-07-22 11:15:17 +01001013 config->bParity = TI_UART_NO_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015
1016 if (cflag & CSTOPB)
1017 config->bStopBits = TI_UART_2_STOP_BITS;
1018 else
1019 config->bStopBits = TI_UART_1_STOP_BITS;
1020
1021 if (cflag & CRTSCTS) {
1022 /* RTS flow control must be off to drop RTS for baud rate B0 */
1023 if ((cflag & CBAUD) != B0)
1024 config->wFlags |= TI_UART_ENABLE_RTS_IN;
1025 config->wFlags |= TI_UART_ENABLE_CTS_OUT;
1026 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 ti_restart_read(tport, tty);
1028 }
1029
1030 if (I_IXOFF(tty) || I_IXON(tty)) {
1031 config->cXon = START_CHAR(tty);
1032 config->cXoff = STOP_CHAR(tty);
1033
1034 if (I_IXOFF(tty))
1035 config->wFlags |= TI_UART_ENABLE_X_IN;
1036 else
1037 ti_restart_read(tport, tty);
1038
1039 if (I_IXON(tty))
1040 config->wFlags |= TI_UART_ENABLE_X_OUT;
1041 }
1042
1043 baud = tty_get_baud_rate(tty);
Alan Cox537699e2008-01-03 17:03:11 +00001044 if (!baud)
1045 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (tport->tp_tdev->td_is_3410)
1047 config->wBaudRate = (__u16)((923077 + baud/2) / baud);
1048 else
1049 config->wBaudRate = (__u16)((461538 + baud/2) / baud);
1050
Alan Cox537699e2008-01-03 17:03:11 +00001051 /* FIXME: Should calculate resulting baud here and report it back */
1052 if ((cflag & CBAUD) != B0)
1053 tty_encode_baud_rate(tty, baud, baud);
1054
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001055 dev_dbg(&port->dev,
Johan Hovoldd9a38a82014-03-12 19:09:42 +01001056 "%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 -07001057 __func__, baud, config->wBaudRate, config->wFlags,
1058 config->bDataBits, config->bParity, config->bStopBits,
1059 config->cXon, config->cXoff, config->bUartMode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 cpu_to_be16s(&config->wBaudRate);
1062 cpu_to_be16s(&config->wFlags);
1063
1064 status = ti_command_out_sync(tport->tp_tdev, TI_SET_CONFIG,
1065 (__u8)(TI_UART1_PORT + port_number), 0, (__u8 *)config,
1066 sizeof(*config));
1067 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +01001068 dev_err(&port->dev, "%s - cannot set config on port %d, %d\n",
1069 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /* SET_CONFIG asserts RTS and DTR, reset them correctly */
1072 mcr = tport->tp_shadow_mcr;
1073 /* if baud rate is B0, clear RTS and DTR */
1074 if ((cflag & CBAUD) == B0)
1075 mcr &= ~(TI_MCR_DTR | TI_MCR_RTS);
1076 status = ti_set_mcr(tport, mcr);
1077 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +01001078 dev_err(&port->dev,
1079 "%s - cannot set modem control on port %d, %d\n",
1080 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 kfree(config);
1083}
1084
1085
Alan Cox60b33c12011-02-14 16:26:14 +00001086static int ti_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Alan Cox95da3102008-07-22 11:09:07 +01001088 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 struct ti_port *tport = usb_get_serial_port_data(port);
1090 unsigned int result;
1091 unsigned int msr;
1092 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001093 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (tport == NULL)
1096 return -ENODEV;
1097
Alan Cox04ca89d2008-02-20 21:41:40 +00001098 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 msr = tport->tp_msr;
1100 mcr = tport->tp_shadow_mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001101 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0)
1104 | ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0)
1105 | ((mcr & TI_MCR_LOOP) ? TIOCM_LOOP : 0)
1106 | ((msr & TI_MSR_CTS) ? TIOCM_CTS : 0)
1107 | ((msr & TI_MSR_CD) ? TIOCM_CAR : 0)
1108 | ((msr & TI_MSR_RI) ? TIOCM_RI : 0)
1109 | ((msr & TI_MSR_DSR) ? TIOCM_DSR : 0);
1110
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001111 dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 return result;
1114}
1115
1116
Alan Cox20b9d172011-02-14 16:26:50 +00001117static int ti_tiocmset(struct tty_struct *tty,
1118 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Alan Cox95da3102008-07-22 11:09:07 +01001120 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct ti_port *tport = usb_get_serial_port_data(port);
1122 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001123 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (tport == NULL)
1126 return -ENODEV;
1127
Alan Cox04ca89d2008-02-20 21:41:40 +00001128 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 mcr = tport->tp_shadow_mcr;
1130
1131 if (set & TIOCM_RTS)
1132 mcr |= TI_MCR_RTS;
1133 if (set & TIOCM_DTR)
1134 mcr |= TI_MCR_DTR;
1135 if (set & TIOCM_LOOP)
1136 mcr |= TI_MCR_LOOP;
1137
1138 if (clear & TIOCM_RTS)
1139 mcr &= ~TI_MCR_RTS;
1140 if (clear & TIOCM_DTR)
1141 mcr &= ~TI_MCR_DTR;
1142 if (clear & TIOCM_LOOP)
1143 mcr &= ~TI_MCR_LOOP;
Alan Cox04ca89d2008-02-20 21:41:40 +00001144 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 return ti_set_mcr(tport, mcr);
1147}
1148
1149
Alan Cox95da3102008-07-22 11:09:07 +01001150static void ti_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Alan Cox95da3102008-07-22 11:09:07 +01001152 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 struct ti_port *tport = usb_get_serial_port_data(port);
1154 int status;
1155
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001156 dev_dbg(&port->dev, "%s - state = %d\n", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 if (tport == NULL)
1159 return;
1160
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001161 status = ti_write_byte(port, tport->tp_tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 tport->tp_uart_base_addr + TI_UART_OFFSET_LCR,
1163 TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0);
1164
1165 if (status)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001166 dev_dbg(&port->dev, "%s - error setting break, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Mathieu OTHACEHEd8d841e2016-05-12 10:48:36 +02001169static int ti_get_port_from_code(unsigned char code)
1170{
1171 return (code >> 4) - 3;
1172}
1173
1174static int ti_get_func_from_code(unsigned char code)
1175{
1176 return code & 0x0f;
1177}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
David Howells7d12e782006-10-05 14:55:46 +01001179static void ti_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Ming Leicdc97792008-02-24 18:41:47 +08001181 struct ti_device *tdev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 struct usb_serial_port *port;
1183 struct usb_serial *serial = tdev->td_serial;
1184 struct ti_port *tport;
1185 struct device *dev = &urb->dev->dev;
1186 unsigned char *data = urb->transfer_buffer;
1187 int length = urb->actual_length;
1188 int port_number;
1189 int function;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001190 int status = urb->status;
1191 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 __u8 msr;
1193
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001194 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 case 0:
1196 break;
1197 case -ECONNRESET:
1198 case -ENOENT:
1199 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001200 dev_dbg(dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 tdev->td_urb_error = 1;
1202 return;
1203 default:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001204 dev_err(dev, "%s - nonzero urb status, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 tdev->td_urb_error = 1;
1206 goto exit;
1207 }
1208
1209 if (length != 2) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001210 dev_dbg(dev, "%s - bad packet size, %d\n", __func__, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 goto exit;
1212 }
1213
1214 if (data[0] == TI_CODE_HARDWARE_ERROR) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001215 dev_err(dev, "%s - hardware error, %d\n", __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 goto exit;
1217 }
1218
Mathieu OTHACEHEd8d841e2016-05-12 10:48:36 +02001219 port_number = ti_get_port_from_code(data[0]);
1220 function = ti_get_func_from_code(data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001222 dev_dbg(dev, "%s - port_number %d, function %d, data 0x%02X\n",
1223 __func__, port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 if (port_number >= serial->num_ports) {
Alan Coxa30fa792008-07-22 11:15:17 +01001226 dev_err(dev, "%s - bad port number, %d\n",
1227 __func__, port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 goto exit;
1229 }
1230
1231 port = serial->port[port_number];
1232
1233 tport = usb_get_serial_port_data(port);
1234 if (!tport)
1235 goto exit;
1236
1237 switch (function) {
1238 case TI_CODE_DATA_ERROR:
Alan Coxa30fa792008-07-22 11:15:17 +01001239 dev_err(dev, "%s - DATA ERROR, port %d, data 0x%02X\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001240 __func__, port_number, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 break;
1242
1243 case TI_CODE_MODEM_STATUS:
1244 msr = data[1];
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001245 dev_dbg(dev, "%s - port %d, msr 0x%02X\n", __func__, port_number, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 ti_handle_new_msr(tport, msr);
1247 break;
1248
1249 default:
Alan Coxa30fa792008-07-22 11:15:17 +01001250 dev_err(dev, "%s - unknown interrupt code, 0x%02X\n",
1251 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 break;
1253 }
1254
1255exit:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001256 retval = usb_submit_urb(urb, GFP_ATOMIC);
1257 if (retval)
1258 dev_err(dev, "%s - resubmit interrupt urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001259 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
1262
David Howells7d12e782006-10-05 14:55:46 +01001263static void ti_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Ming Leicdc97792008-02-24 18:41:47 +08001265 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 struct usb_serial_port *port = tport->tp_port;
1267 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001268 int status = urb->status;
1269 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001271 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 case 0:
1273 break;
1274 case -ECONNRESET:
1275 case -ENOENT:
1276 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001277 dev_dbg(dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 tport->tp_tdev->td_urb_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return;
1280 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001281 dev_err(dev, "%s - nonzero urb status, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001282 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 tport->tp_tdev->td_urb_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001286 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 goto exit;
1288
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001289 if (status) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001290 dev_err(dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return;
1292 }
1293
Jiri Slaby2e124b42013-01-03 15:53:06 +01001294 if (urb->actual_length) {
1295 usb_serial_debug_data(dev, __func__, urb->actual_length,
1296 urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Jiri Slaby2e124b42013-01-03 15:53:06 +01001298 if (!tport->tp_is_open)
1299 dev_dbg(dev, "%s - port closed, dropping data\n",
1300 __func__);
1301 else
1302 ti_recv(port, urb->transfer_buffer, urb->actual_length);
1303 spin_lock(&tport->tp_lock);
Johan Hovold783ca352013-03-21 12:37:33 +01001304 port->icount.rx += urb->actual_length;
Jiri Slaby2e124b42013-01-03 15:53:06 +01001305 spin_unlock(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
1307
1308exit:
1309 /* continue to read unless stopping */
1310 spin_lock(&tport->tp_lock);
Johan Hovold58330412011-11-06 19:06:28 +01001311 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001312 retval = usb_submit_urb(urb, GFP_ATOMIC);
Johan Hovold58330412011-11-06 19:06:28 +01001313 else if (tport->tp_read_urb_state == TI_READ_URB_STOPPING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 tport->tp_read_urb_state = TI_READ_URB_STOPPED;
Johan Hovold58330412011-11-06 19:06:28 +01001315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 spin_unlock(&tport->tp_lock);
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001317 if (retval)
1318 dev_err(dev, "%s - resubmit read urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001319 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
1322
David Howells7d12e782006-10-05 14:55:46 +01001323static void ti_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Ming Leicdc97792008-02-24 18:41:47 +08001325 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 struct usb_serial_port *port = tport->tp_port;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001327 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 tport->tp_write_urb_in_use = 0;
1330
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001331 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 case 0:
1333 break;
1334 case -ECONNRESET:
1335 case -ENOENT:
1336 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001337 dev_dbg(&port->dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 tport->tp_tdev->td_urb_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return;
1340 default:
Johan Hovold22a416c2012-02-10 13:20:51 +01001341 dev_err_console(port, "%s - nonzero urb status, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001342 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 tport->tp_tdev->td_urb_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345
1346 /* send any buffered data */
1347 ti_send(tport);
1348}
1349
1350
Jiri Slaby2e124b42013-01-03 15:53:06 +01001351static void ti_recv(struct usb_serial_port *port, unsigned char *data,
1352 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
1354 int cnt;
1355
1356 do {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001357 cnt = tty_insert_flip_string(&port->port, data, length);
Alan Cox33f0f882006-01-09 20:54:13 -08001358 if (cnt < length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001359 dev_err(&port->dev, "%s - dropping data, %d bytes lost\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001360 __func__, length - cnt);
1361 if (cnt == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08001362 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
Jiri Slaby2e124b42013-01-03 15:53:06 +01001364 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 data += cnt;
1366 length -= cnt;
1367 } while (length > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
1370
1371static void ti_send(struct ti_port *tport)
1372{
1373 int count, result;
1374 struct usb_serial_port *port = tport->tp_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 unsigned long flags;
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 spin_lock_irqsave(&tport->tp_lock, flags);
1378
Alan Cox4a90f092008-10-13 10:39:46 +01001379 if (tport->tp_write_urb_in_use)
1380 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Johan Hovoldcd1e0982013-06-26 16:47:41 +02001382 count = kfifo_out(&port->write_fifo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 port->write_urb->transfer_buffer,
1384 port->bulk_out_size);
1385
Alan Cox4a90f092008-10-13 10:39:46 +01001386 if (count == 0)
1387 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 tport->tp_write_urb_in_use = 1;
1390
1391 spin_unlock_irqrestore(&tport->tp_lock, flags);
1392
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001393 usb_serial_debug_data(&port->dev, __func__, count,
1394 port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1397 usb_sndbulkpipe(port->serial->dev,
1398 port->bulk_out_endpointAddress),
1399 port->write_urb->transfer_buffer, count,
1400 ti_bulk_out_callback, tport);
1401
1402 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
1403 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001404 dev_err_console(port, "%s - submit write urb failed, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001405 __func__, result);
1406 tport->tp_write_urb_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /* TODO: reschedule ti_send */
1408 } else {
1409 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovold783ca352013-03-21 12:37:33 +01001410 port->icount.tx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 spin_unlock_irqrestore(&tport->tp_lock, flags);
1412 }
1413
1414 /* more room in the buffer for new writes, wakeup */
Jiri Slaby6aad04f2013-03-07 13:12:29 +01001415 tty_port_tty_wakeup(&port->port);
1416
Alan Cox4a90f092008-10-13 10:39:46 +01001417 return;
1418unlock:
1419 spin_unlock_irqrestore(&tport->tp_lock, flags);
Alan Cox4a90f092008-10-13 10:39:46 +01001420 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423
1424static int ti_set_mcr(struct ti_port *tport, unsigned int mcr)
1425{
Alan Cox04ca89d2008-02-20 21:41:40 +00001426 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 int status;
1428
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001429 status = ti_write_byte(tport->tp_port, tport->tp_tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 tport->tp_uart_base_addr + TI_UART_OFFSET_MCR,
1431 TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr);
1432
Alan Cox04ca89d2008-02-20 21:41:40 +00001433 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 if (!status)
1435 tport->tp_shadow_mcr = mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001436 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 return status;
1439}
1440
1441
Johan Hovoldb5784f72013-04-18 17:33:20 +02001442static int ti_get_lsr(struct ti_port *tport, u8 *lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Alan Coxa30fa792008-07-22 11:15:17 +01001444 int size, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 struct ti_device *tdev = tport->tp_tdev;
1446 struct usb_serial_port *port = tport->tp_port;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001447 int port_number = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 struct ti_port_status *data;
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 size = sizeof(struct ti_port_status);
1451 data = kmalloc(size, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01001452 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 status = ti_command_in_sync(tdev, TI_GET_PORT_STATUS,
1456 (__u8)(TI_UART1_PORT+port_number), 0, (__u8 *)data, size);
1457 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001458 dev_err(&port->dev,
1459 "%s - get port status command failed, %d\n",
1460 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 goto free_data;
1462 }
1463
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001464 dev_dbg(&port->dev, "%s - lsr 0x%02X\n", __func__, data->bLSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Johan Hovoldb5784f72013-04-18 17:33:20 +02001466 *lsr = data->bLSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468free_data:
1469 kfree(data);
1470 return status;
1471}
1472
1473
1474static int ti_get_serial_info(struct ti_port *tport,
1475 struct serial_struct __user *ret_arg)
1476{
1477 struct usb_serial_port *port = tport->tp_port;
1478 struct serial_struct ret_serial;
Johan Hovoldf1175da2013-04-18 17:33:23 +02001479 unsigned cwait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 if (!ret_arg)
1482 return -EFAULT;
1483
Johan Hovoldf1175da2013-04-18 17:33:23 +02001484 cwait = port->port.closing_wait;
1485 if (cwait != ASYNC_CLOSING_WAIT_NONE)
1486 cwait = jiffies_to_msecs(cwait) / 10;
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 memset(&ret_serial, 0, sizeof(ret_serial));
1489
1490 ret_serial.type = PORT_16550A;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07001491 ret_serial.line = port->minor;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001492 ret_serial.port = port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 ret_serial.flags = tport->tp_flags;
Johan Hovoldcd1e0982013-06-26 16:47:41 +02001494 ret_serial.xmit_fifo_size = kfifo_size(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 ret_serial.baud_base = tport->tp_tdev->td_is_3410 ? 921600 : 460800;
Johan Hovoldf1175da2013-04-18 17:33:23 +02001496 ret_serial.closing_wait = cwait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 if (copy_to_user(ret_arg, &ret_serial, sizeof(*ret_arg)))
1499 return -EFAULT;
1500
1501 return 0;
1502}
1503
1504
Alan Cox4a90f092008-10-13 10:39:46 +01001505static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct serial_struct __user *new_arg)
1507{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 struct serial_struct new_serial;
Johan Hovoldf1175da2013-04-18 17:33:23 +02001509 unsigned cwait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 if (copy_from_user(&new_serial, new_arg, sizeof(new_serial)))
1512 return -EFAULT;
1513
Johan Hovoldf1175da2013-04-18 17:33:23 +02001514 cwait = new_serial.closing_wait;
1515 if (cwait != ASYNC_CLOSING_WAIT_NONE)
1516 cwait = msecs_to_jiffies(10 * new_serial.closing_wait);
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS;
Johan Hovoldf1175da2013-04-18 17:33:23 +02001519 tport->tp_port->port.closing_wait = cwait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 return 0;
1522}
1523
1524
1525static void ti_handle_new_msr(struct ti_port *tport, __u8 msr)
1526{
1527 struct async_icount *icount;
1528 struct tty_struct *tty;
1529 unsigned long flags;
1530
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001531 dev_dbg(&tport->tp_port->dev, "%s - msr 0x%02X\n", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533 if (msr & TI_MSR_DELTA_MASK) {
1534 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovold783ca352013-03-21 12:37:33 +01001535 icount = &tport->tp_port->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if (msr & TI_MSR_DELTA_CTS)
1537 icount->cts++;
1538 if (msr & TI_MSR_DELTA_DSR)
1539 icount->dsr++;
1540 if (msr & TI_MSR_DELTA_CD)
1541 icount->dcd++;
1542 if (msr & TI_MSR_DELTA_RI)
1543 icount->rng++;
Johan Hovold6c75e262013-03-21 12:37:34 +01001544 wake_up_interruptible(&tport->tp_port->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 spin_unlock_irqrestore(&tport->tp_lock, flags);
1546 }
1547
1548 tport->tp_msr = msr & TI_MSR_MASK;
1549
1550 /* handle CTS flow control */
Alan Cox4a90f092008-10-13 10:39:46 +01001551 tty = tty_port_tty_get(&tport->tp_port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 if (tty && C_CRTSCTS(tty)) {
Peter Hurleyd95e3ca2014-09-10 15:06:27 -04001553 if (msr & TI_MSR_CTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
Alan Cox4a90f092008-10-13 10:39:46 +01001556 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty)
1561{
1562 unsigned long flags;
1563
1564 spin_lock_irqsave(&tport->tp_lock, flags);
1565
1566 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
1567 tport->tp_read_urb_state = TI_READ_URB_STOPPING;
1568
1569 spin_unlock_irqrestore(&tport->tp_lock, flags);
1570}
1571
1572
1573static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty)
1574{
1575 struct urb *urb;
1576 int status = 0;
1577 unsigned long flags;
1578
1579 spin_lock_irqsave(&tport->tp_lock, flags);
1580
1581 if (tport->tp_read_urb_state == TI_READ_URB_STOPPED) {
Oliver Neukum944dc182007-05-07 08:33:18 +02001582 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 urb = tport->tp_port->read_urb;
Oliver Neukum944dc182007-05-07 08:33:18 +02001584 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 urb->context = tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 status = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukum944dc182007-05-07 08:33:18 +02001587 } else {
1588 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
1589 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 return status;
1593}
1594
1595
1596static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
1597 __u16 moduleid, __u16 value, __u8 *data, int size)
1598{
1599 int status;
1600
1601 status = usb_control_msg(tdev->td_serial->dev,
1602 usb_sndctrlpipe(tdev->td_serial->dev, 0), command,
1603 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
1604 value, moduleid, data, size, 1000);
1605
1606 if (status == size)
1607 status = 0;
1608
1609 if (status > 0)
1610 status = -ECOMM;
1611
1612 return status;
1613}
1614
1615
1616static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
1617 __u16 moduleid, __u16 value, __u8 *data, int size)
1618{
1619 int status;
1620
1621 status = usb_control_msg(tdev->td_serial->dev,
1622 usb_rcvctrlpipe(tdev->td_serial->dev, 0), command,
1623 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
1624 value, moduleid, data, size, 1000);
1625
1626 if (status == size)
1627 status = 0;
1628
1629 if (status > 0)
1630 status = -ECOMM;
1631
1632 return status;
1633}
1634
1635
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001636static int ti_write_byte(struct usb_serial_port *port,
1637 struct ti_device *tdev, unsigned long addr,
1638 __u8 mask, __u8 byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
1640 int status;
1641 unsigned int size;
1642 struct ti_write_data_bytes *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001644 dev_dbg(&port->dev, "%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X\n", __func__,
1645 addr, mask, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 size = sizeof(struct ti_write_data_bytes) + 2;
1648 data = kmalloc(size, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01001649 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 data->bAddrType = TI_RW_DATA_ADDR_XDATA;
1653 data->bDataType = TI_RW_DATA_BYTE;
1654 data->bDataCounter = 1;
1655 data->wBaseAddrHi = cpu_to_be16(addr>>16);
1656 data->wBaseAddrLo = cpu_to_be16(addr);
1657 data->bData[0] = mask;
1658 data->bData[1] = byte;
1659
1660 status = ti_command_out_sync(tdev, TI_WRITE_DATA, TI_RAM_PORT, 0,
1661 (__u8 *)data, size);
1662
1663 if (status < 0)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001664 dev_err(&port->dev, "%s - failed, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666 kfree(data);
1667
1668 return status;
1669}
1670
Alan Cox95da3102008-07-22 11:09:07 +01001671static int ti_do_download(struct usb_device *dev, int pipe,
1672 u8 *buffer, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 int pos;
Alan Cox95da3102008-07-22 11:09:07 +01001675 u8 cs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 struct ti_firmware_header *header;
Oliver Neukum87ea8c82009-06-30 09:44:24 +02001678 int status = 0;
Alan Cox95da3102008-07-22 11:09:07 +01001679 int len;
Alan Coxa30fa792008-07-22 11:15:17 +01001680
1681 for (pos = sizeof(struct ti_firmware_header); pos < size; pos++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 cs = (__u8)(cs + buffer[pos]);
1683
1684 header = (struct ti_firmware_header *)buffer;
Alan Coxa30fa792008-07-22 11:15:17 +01001685 header->wLength = cpu_to_le16((__u16)(size
Alan Cox95da3102008-07-22 11:09:07 +01001686 - sizeof(struct ti_firmware_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 header->bCheckSum = cs;
1688
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001689 dev_dbg(&dev->dev, "%s - downloading firmware\n", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01001690 for (pos = 0; pos < size; pos += done) {
1691 len = min(size - pos, TI_DOWNLOAD_MAX_PACKET_SIZE);
1692 status = usb_bulk_msg(dev, pipe, buffer + pos, len,
1693 &done, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (status)
1695 break;
1696 }
Alan Cox95da3102008-07-22 11:09:07 +01001697 return status;
1698}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Chris Adams05a3d902009-01-11 19:48:53 +00001700static int ti_download_firmware(struct ti_device *tdev)
Alan Cox95da3102008-07-22 11:09:07 +01001701{
Chris Adams05a3d902009-01-11 19:48:53 +00001702 int status;
Alan Cox95da3102008-07-22 11:09:07 +01001703 int buffer_size;
1704 __u8 *buffer;
1705 struct usb_device *dev = tdev->td_serial->dev;
1706 unsigned int pipe = usb_sndbulkpipe(dev,
1707 tdev->td_serial->port[0]->bulk_out_endpointAddress);
1708 const struct firmware *fw_p;
1709 char buf[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +02001711 if (le16_to_cpu(dev->descriptor.idVendor) == MXU1_VENDOR_ID) {
1712 snprintf(buf,
1713 sizeof(buf),
1714 "moxa/moxa-%04x.fw",
1715 le16_to_cpu(dev->descriptor.idProduct));
1716
1717 status = request_firmware(&fw_p, buf, &dev->dev);
1718 goto check_firmware;
1719 }
1720
Chris Adams05a3d902009-01-11 19:48:53 +00001721 /* try ID specific firmware first, then try generic firmware */
Johan Hovolde877dd22013-08-11 16:49:23 +02001722 sprintf(buf, "ti_usb-v%04x-p%04x.fw",
1723 le16_to_cpu(dev->descriptor.idVendor),
1724 le16_to_cpu(dev->descriptor.idProduct));
Adhir Ramjiawan72b27a02012-04-09 14:01:38 +02001725 status = request_firmware(&fw_p, buf, &dev->dev);
1726
1727 if (status != 0) {
Chris Adamscb7a7c62009-01-11 19:49:00 +00001728 buf[0] = '\0';
Johan Hovolde877dd22013-08-11 16:49:23 +02001729 if (le16_to_cpu(dev->descriptor.idVendor) == MTS_VENDOR_ID) {
1730 switch (le16_to_cpu(dev->descriptor.idProduct)) {
Chris Adamscb7a7c62009-01-11 19:49:00 +00001731 case MTS_CDMA_PRODUCT_ID:
1732 strcpy(buf, "mts_cdma.fw");
1733 break;
1734 case MTS_GSM_PRODUCT_ID:
1735 strcpy(buf, "mts_gsm.fw");
1736 break;
1737 case MTS_EDGE_PRODUCT_ID:
1738 strcpy(buf, "mts_edge.fw");
1739 break;
Alex Manoussakiscdc04832010-04-22 15:18:20 -07001740 case MTS_MT9234MU_PRODUCT_ID:
1741 strcpy(buf, "mts_mt9234mu.fw");
1742 break;
1743 case MTS_MT9234ZBA_PRODUCT_ID:
1744 strcpy(buf, "mts_mt9234zba.fw");
1745 break;
1746 case MTS_MT9234ZBAOLD_PRODUCT_ID:
1747 strcpy(buf, "mts_mt9234zba.fw");
1748 break; }
Chris Adamscb7a7c62009-01-11 19:49:00 +00001749 }
1750 if (buf[0] == '\0') {
1751 if (tdev->td_is_3410)
1752 strcpy(buf, "ti_3410.fw");
1753 else
1754 strcpy(buf, "ti_5052.fw");
1755 }
Chris Adams05a3d902009-01-11 19:48:53 +00001756 status = request_firmware(&fw_p, buf, &dev->dev);
1757 }
Mathieu OTHACEHEb923c6c2016-05-10 09:08:48 +02001758
1759check_firmware:
Chris Adams05a3d902009-01-11 19:48:53 +00001760 if (status) {
Alan Cox95da3102008-07-22 11:09:07 +01001761 dev_err(&dev->dev, "%s - firmware not found\n", __func__);
1762 return -ENOENT;
1763 }
1764 if (fw_p->size > TI_FIRMWARE_BUF_SIZE) {
Randy Dunlap75181f32010-04-15 11:38:56 -07001765 dev_err(&dev->dev, "%s - firmware too large %zu\n", __func__, fw_p->size);
Jesper Juhl357f45d2011-06-13 22:50:41 +02001766 release_firmware(fw_p);
Alan Cox95da3102008-07-22 11:09:07 +01001767 return -ENOENT;
1768 }
1769
1770 buffer_size = TI_FIRMWARE_BUF_SIZE + sizeof(struct ti_firmware_header);
1771 buffer = kmalloc(buffer_size, GFP_KERNEL);
1772 if (buffer) {
1773 memcpy(buffer, fw_p->data, fw_p->size);
1774 memset(buffer + fw_p->size, 0xff, buffer_size - fw_p->size);
Chris Adams2bcbe4c12008-09-10 14:11:38 -07001775 status = ti_do_download(dev, pipe, buffer, fw_p->size);
Alan Cox95da3102008-07-22 11:09:07 +01001776 kfree(buffer);
Chris Adams05a3d902009-01-11 19:48:53 +00001777 } else {
1778 status = -ENOMEM;
Alan Cox95da3102008-07-22 11:09:07 +01001779 }
1780 release_firmware(fw_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001782 dev_err(&dev->dev, "%s - error downloading firmware, %d\n",
1783 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return status;
1785 }
1786
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001787 dev_dbg(&dev->dev, "%s - download successful\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 return 0;
1790}