blob: 05077e3c7631d644960c411703169e10ec8e45a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* vi: ts=8 sw=8
2 *
3 * TI 3410/5052 USB Serial Driver
4 *
5 * Copyright (C) 2004 Texas Instruments
6 *
7 * This driver is based on the Linux io_ti driver, which is
8 * Copyright (C) 2000-2002 Inside Out Networks
9 * Copyright (C) 2001-2002 Greg Kroah-Hartman
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * For questions or problems with this driver, contact Texas Instruments
17 * technical support, or Al Borchers <alborchers@steinerpoint.com>, or
18 * Peter Berger <pberger@brimson.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/kernel.h>
22#include <linux/errno.h>
Alan Cox95da3102008-07-22 11:09:07 +010023#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/slab.h>
26#include <linux/tty.h>
27#include <linux/tty_driver.h>
28#include <linux/tty_flip.h>
29#include <linux/module.h>
30#include <linux/spinlock.h>
31#include <linux/ioctl.h>
32#include <linux/serial.h>
Johan Hovold074ef652010-05-19 00:01:35 +020033#include <linux/kfifo.h>
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080034#include <linux/mutex.h>
Alan Coxa30fa792008-07-22 11:15:17 +010035#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070037#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "ti_usb_3410_5052.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Defines */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>"
44#define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver"
45
46#define TI_FIRMWARE_BUF_SIZE 16284
47
48#define TI_WRITE_BUF_SIZE 1024
49
50#define TI_TRANSFER_TIMEOUT 2
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */
53
54/* supported setserial flags */
Oliver Neukum2400a2b2009-04-20 17:28:53 +020055#define TI_SET_SERIAL_FLAGS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/* read urb states */
58#define TI_READ_URB_RUNNING 0
59#define TI_READ_URB_STOPPING 1
60#define TI_READ_URB_STOPPED 2
61
62#define TI_EXTRA_VID_PID_COUNT 5
63
64
65/* Structures */
66
67struct ti_port {
68 int tp_is_open;
69 __u8 tp_msr;
70 __u8 tp_lsr;
71 __u8 tp_shadow_mcr;
72 __u8 tp_uart_mode; /* 232 or 485 modes */
73 unsigned int tp_uart_base_addr;
74 int tp_flags;
75 int tp_closing_wait;/* in .01 secs */
76 struct async_icount tp_icount;
77 wait_queue_head_t tp_msr_wait; /* wait for msr change */
78 wait_queue_head_t tp_write_wait;
79 struct ti_device *tp_tdev;
80 struct usb_serial_port *tp_port;
81 spinlock_t tp_lock;
82 int tp_read_urb_state;
83 int tp_write_urb_in_use;
Johan Hovold074ef652010-05-19 00:01:35 +020084 struct kfifo write_fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
87struct ti_device {
Matthias Kaehlcke9da00682007-11-21 15:13:16 -080088 struct mutex td_open_close_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int td_open_port_count;
90 struct usb_serial *td_serial;
91 int td_is_3410;
92 int td_urb_error;
93};
94
95
96/* Function Declarations */
97
98static int ti_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040099static void ti_release(struct usb_serial *serial);
Johan Hovold51ef8472012-10-17 16:31:35 +0200100static int ti_port_probe(struct usb_serial_port *port);
101static int ti_port_remove(struct usb_serial_port *port);
Alan Coxa509a7e2009-09-19 13:13:26 -0700102static int ti_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +0100103static void ti_close(struct usb_serial_port *port);
Alan Cox95da3102008-07-22 11:09:07 +0100104static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
Alan Coxa30fa792008-07-22 11:15:17 +0100105 const unsigned char *data, int count);
Alan Cox95da3102008-07-22 11:09:07 +0100106static int ti_write_room(struct tty_struct *tty);
107static int ti_chars_in_buffer(struct tty_struct *tty);
108static void ti_throttle(struct tty_struct *tty);
109static void ti_unthrottle(struct tty_struct *tty);
Alan Cox00a0d0d2011-02-14 16:27:06 +0000110static int ti_ioctl(struct tty_struct *tty,
Alan Coxa30fa792008-07-22 11:15:17 +0100111 unsigned int cmd, unsigned long arg);
Alan Cox0bca1b92010-09-16 18:21:40 +0100112static int ti_get_icount(struct tty_struct *tty,
113 struct serial_icounter_struct *icount);
Alan Coxa30fa792008-07-22 11:15:17 +0100114static void ti_set_termios(struct tty_struct *tty,
115 struct usb_serial_port *port, struct ktermios *old_termios);
Alan Cox60b33c12011-02-14 16:26:14 +0000116static int ti_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000117static int ti_tiocmset(struct tty_struct *tty,
Alan Coxa30fa792008-07-22 11:15:17 +0100118 unsigned int set, unsigned int clear);
Alan Cox95da3102008-07-22 11:09:07 +0100119static void ti_break(struct tty_struct *tty, int break_state);
David Howells7d12e782006-10-05 14:55:46 +0100120static void ti_interrupt_callback(struct urb *urb);
121static void ti_bulk_in_callback(struct urb *urb);
122static void ti_bulk_out_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100124static void ti_recv(struct usb_serial_port *port, struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 unsigned char *data, int length);
126static void ti_send(struct ti_port *tport);
127static int ti_set_mcr(struct ti_port *tport, unsigned int mcr);
128static int ti_get_lsr(struct ti_port *tport);
129static int ti_get_serial_info(struct ti_port *tport,
130 struct serial_struct __user *ret_arg);
Alan Cox4a90f092008-10-13 10:39:46 +0100131static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct serial_struct __user *new_arg);
133static void ti_handle_new_msr(struct ti_port *tport, __u8 msr);
134
135static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush);
136
137static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty);
138static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty);
139
140static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
141 __u16 moduleid, __u16 value, __u8 *data, int size);
142static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
143 __u16 moduleid, __u16 value, __u8 *data, int size);
144
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700145static int ti_write_byte(struct usb_serial_port *port, struct ti_device *tdev,
146 unsigned long addr, __u8 mask, __u8 byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Chris Adams05a3d902009-01-11 19:48:53 +0000148static int ti_download_firmware(struct ti_device *tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151/* Data */
152
153/* module parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static int closing_wait = TI_DEFAULT_CLOSING_WAIT;
155static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100156static unsigned int vendor_3410_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static ushort product_3410[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100158static unsigned int product_3410_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static ushort vendor_5052[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100160static unsigned int vendor_5052_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static ushort product_5052[TI_EXTRA_VID_PID_COUNT];
Al Viro64a6f952007-10-14 19:35:30 +0100162static unsigned int product_5052_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/* supported devices */
165/* the array dimension is the number of default entries plus */
166/* TI_EXTRA_VID_PID_COUNT user defined entries plus 1 terminating */
167/* null entry */
Darren Hart975dc332012-05-11 13:56:57 -0700168static struct usb_device_id ti_id_table_3410[15+TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000170 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000171 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
172 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
173 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
174 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
175 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700176 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234MU_PRODUCT_ID) },
177 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBA_PRODUCT_ID) },
178 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBAOLD_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100179 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100180 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
181 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Andrew Lunn7fd25702012-02-20 09:31:57 +0100182 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) },
Darren Hart975dc332012-05-11 13:56:57 -0700183 { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Oliver Neukum97dcf042009-02-04 16:38:33 +0100186static struct usb_device_id ti_id_table_5052[5+TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
188 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
189 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
190 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
191};
192
Darren Hart975dc332012-05-11 13:56:57 -0700193static struct usb_device_id ti_id_table_combined[19+2*TI_EXTRA_VID_PID_COUNT+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) },
Oleg Verych1f54a6a2006-11-17 08:21:27 +0000195 { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) },
Chris Adamscb7a7c62009-01-11 19:49:00 +0000196 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) },
197 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) },
198 { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) },
199 { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) },
200 { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) },
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700201 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234MU_PRODUCT_ID) },
202 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBA_PRODUCT_ID) },
203 { USB_DEVICE(MTS_VENDOR_ID, MTS_MT9234ZBAOLD_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) },
205 { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) },
206 { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) },
207 { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) },
Oliver Neukum1a1fab512009-01-12 13:31:16 +0100208 { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) },
Oliver Neukum97dcf042009-02-04 16:38:33 +0100209 { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) },
210 { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) },
Andrew Lunn7fd25702012-02-20 09:31:57 +0100211 { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) },
Darren Hart975dc332012-05-11 13:56:57 -0700212 { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 { }
214};
215
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700216static struct usb_serial_driver ti_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700217 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700218 .owner = THIS_MODULE,
219 .name = "ti_usb_3410_5052_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700220 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700221 .description = "TI USB 3410 1 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .id_table = ti_id_table_3410,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 .num_ports = 1,
224 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400225 .release = ti_release,
Johan Hovold51ef8472012-10-17 16:31:35 +0200226 .port_probe = ti_port_probe,
227 .port_remove = ti_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 .open = ti_open,
229 .close = ti_close,
230 .write = ti_write,
231 .write_room = ti_write_room,
232 .chars_in_buffer = ti_chars_in_buffer,
233 .throttle = ti_throttle,
234 .unthrottle = ti_unthrottle,
235 .ioctl = ti_ioctl,
236 .set_termios = ti_set_termios,
237 .tiocmget = ti_tiocmget,
238 .tiocmset = ti_tiocmset,
Alan Cox0bca1b92010-09-16 18:21:40 +0100239 .get_icount = ti_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 .break_ctl = ti_break,
241 .read_int_callback = ti_interrupt_callback,
242 .read_bulk_callback = ti_bulk_in_callback,
243 .write_bulk_callback = ti_bulk_out_callback,
244};
245
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700246static struct usb_serial_driver ti_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700247 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700248 .owner = THIS_MODULE,
249 .name = "ti_usb_3410_5052_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700250 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700251 .description = "TI USB 5052 2 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 .id_table = ti_id_table_5052,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 .num_ports = 2,
254 .attach = ti_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400255 .release = ti_release,
Johan Hovold51ef8472012-10-17 16:31:35 +0200256 .port_probe = ti_port_probe,
257 .port_remove = ti_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .open = ti_open,
259 .close = ti_close,
260 .write = ti_write,
261 .write_room = ti_write_room,
262 .chars_in_buffer = ti_chars_in_buffer,
263 .throttle = ti_throttle,
264 .unthrottle = ti_unthrottle,
265 .ioctl = ti_ioctl,
266 .set_termios = ti_set_termios,
267 .tiocmget = ti_tiocmget,
268 .tiocmset = ti_tiocmset,
Alan Cox0bca1b92010-09-16 18:21:40 +0100269 .get_icount = ti_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 .break_ctl = ti_break,
271 .read_int_callback = ti_interrupt_callback,
272 .read_bulk_callback = ti_bulk_in_callback,
273 .write_bulk_callback = ti_bulk_out_callback,
274};
275
Alan Stern29618e92012-02-23 14:57:32 -0500276static struct usb_serial_driver * const serial_drivers[] = {
277 &ti_1port_device, &ti_2port_device, NULL
278};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280/* Module */
281
282MODULE_AUTHOR(TI_DRIVER_AUTHOR);
283MODULE_DESCRIPTION(TI_DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284MODULE_LICENSE("GPL");
285
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300286MODULE_FIRMWARE("ti_3410.fw");
287MODULE_FIRMWARE("ti_5052.fw");
Chris Adams7df52312009-01-11 19:49:11 +0000288MODULE_FIRMWARE("mts_cdma.fw");
289MODULE_FIRMWARE("mts_gsm.fw");
290MODULE_FIRMWARE("mts_edge.fw");
Alex Manoussakiscdc04832010-04-22 15:18:20 -0700291MODULE_FIRMWARE("mts_mt9234mu.fw");
292MODULE_FIRMWARE("mts_mt9234zba.fw");
David Woodhouse5f24e2d2008-05-30 18:49:51 +0300293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294module_param(closing_wait, int, S_IRUGO | S_IWUSR);
Alan Coxa30fa792008-07-22 11:15:17 +0100295MODULE_PARM_DESC(closing_wait,
296 "Maximum wait for data to drain in close, in .01 secs, default is 4000");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298module_param_array(vendor_3410, ushort, &vendor_3410_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100299MODULE_PARM_DESC(vendor_3410,
300 "Vendor ids for 3410 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301module_param_array(product_3410, ushort, &product_3410_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100302MODULE_PARM_DESC(product_3410,
303 "Product ids for 3410 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304module_param_array(vendor_5052, ushort, &vendor_5052_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100305MODULE_PARM_DESC(vendor_5052,
306 "Vendor ids for 5052 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307module_param_array(product_5052, ushort, &product_5052_count, S_IRUGO);
Alan Coxa30fa792008-07-22 11:15:17 +0100308MODULE_PARM_DESC(product_5052,
309 "Product ids for 5052 based devices, 1-5 short integers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311MODULE_DEVICE_TABLE(usb, ti_id_table_combined);
312
313
314/* Functions */
315
316static int __init ti_init(void)
317{
Chris Adams05a3d902009-01-11 19:48:53 +0000318 int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* insert extra vendor and product ids */
Chris Adams05a3d902009-01-11 19:48:53 +0000321 c = ARRAY_SIZE(ti_id_table_combined) - 2 * TI_EXTRA_VID_PID_COUNT - 1;
Tobias Klauser52950ed2005-12-11 16:20:08 +0100322 j = ARRAY_SIZE(ti_id_table_3410) - TI_EXTRA_VID_PID_COUNT - 1;
Chris Adams05a3d902009-01-11 19:48:53 +0000323 for (i = 0; i < min(vendor_3410_count, product_3410_count); i++, j++, c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 ti_id_table_3410[j].idVendor = vendor_3410[i];
325 ti_id_table_3410[j].idProduct = product_3410[i];
326 ti_id_table_3410[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Chris Adams05a3d902009-01-11 19:48:53 +0000327 ti_id_table_combined[c].idVendor = vendor_3410[i];
328 ti_id_table_combined[c].idProduct = product_3410[i];
329 ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Tobias Klauser52950ed2005-12-11 16:20:08 +0100331 j = ARRAY_SIZE(ti_id_table_5052) - TI_EXTRA_VID_PID_COUNT - 1;
Chris Adams05a3d902009-01-11 19:48:53 +0000332 for (i = 0; i < min(vendor_5052_count, product_5052_count); i++, j++, c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 ti_id_table_5052[j].idVendor = vendor_5052[i];
334 ti_id_table_5052[j].idProduct = product_5052[i];
335 ti_id_table_5052[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Chris Adams05a3d902009-01-11 19:48:53 +0000336 ti_id_table_combined[c].idVendor = vendor_5052[i];
337 ti_id_table_combined[c].idProduct = product_5052[i];
338 ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340
Greg Kroah-Hartmanf378dfe2012-09-18 17:09:00 +0100341 return usb_serial_register_drivers(serial_drivers, KBUILD_MODNAME, ti_id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344static void __exit ti_exit(void)
345{
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700346 usb_serial_deregister_drivers(serial_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349module_init(ti_init);
350module_exit(ti_exit);
351
352
353static int ti_startup(struct usb_serial *serial)
354{
355 struct ti_device *tdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 struct usb_device *dev = serial->dev;
357 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700359 dev_dbg(&dev->dev,
360 "%s - product 0x%4X, num configurations %d, configuration value %d",
361 __func__, le16_to_cpu(dev->descriptor.idProduct),
362 dev->descriptor.bNumConfigurations,
363 dev->actconfig->desc.bConfigurationValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* create device structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100366 tdev = kzalloc(sizeof(struct ti_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (tdev == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800368 dev_err(&dev->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return -ENOMEM;
370 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800371 mutex_init(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 tdev->td_serial = serial;
373 usb_set_serial_data(serial, tdev);
374
375 /* determine device type */
376 if (usb_match_id(serial->interface, ti_id_table_3410))
377 tdev->td_is_3410 = 1;
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700378 dev_dbg(&dev->dev, "%s - device type is %s\n", __func__,
379 tdev->td_is_3410 ? "3410" : "5052");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /* if we have only 1 configuration, download firmware */
382 if (dev->descriptor.bNumConfigurations == 1) {
Adhir Ramjiawan72b27a02012-04-09 14:01:38 +0200383 status = ti_download_firmware(tdev);
384
385 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 goto free_tdev;
387
388 /* 3410 must be reset, 5052 resets itself */
389 if (tdev->td_is_3410) {
390 msleep_interruptible(100);
391 usb_reset_device(dev);
392 }
393
394 status = -ENODEV;
395 goto free_tdev;
Alan Coxa30fa792008-07-22 11:15:17 +0100396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100398 /* the second configuration must be set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (dev->actconfig->desc.bConfigurationValue == TI_BOOT_CONFIG) {
Oliver Neukum413ba6f2008-12-16 12:25:55 +0100400 status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG);
401 status = status ? status : -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 goto free_tdev;
403 }
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return 0;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407free_tdev:
408 kfree(tdev);
409 usb_set_serial_data(serial, NULL);
410 return status;
411}
412
413
Alan Sternf9c99bb2009-06-02 11:53:55 -0400414static void ti_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct ti_device *tdev = usb_get_serial_data(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700418 kfree(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Johan Hovold51ef8472012-10-17 16:31:35 +0200421static int ti_port_probe(struct usb_serial_port *port)
422{
423 struct ti_port *tport;
424
425 tport = kzalloc(sizeof(*tport), GFP_KERNEL);
426 if (!tport)
427 return -ENOMEM;
428
429 spin_lock_init(&tport->tp_lock);
430 if (port == port->serial->port[0])
431 tport->tp_uart_base_addr = TI_UART1_BASE_ADDR;
432 else
433 tport->tp_uart_base_addr = TI_UART2_BASE_ADDR;
434 tport->tp_closing_wait = closing_wait;
435 init_waitqueue_head(&tport->tp_msr_wait);
436 init_waitqueue_head(&tport->tp_write_wait);
437 if (kfifo_alloc(&tport->write_fifo, TI_WRITE_BUF_SIZE, GFP_KERNEL)) {
438 kfree(tport);
439 return -ENOMEM;
440 }
441 tport->tp_port = port;
442 tport->tp_tdev = usb_get_serial_data(port->serial);
443 tport->tp_uart_mode = 0; /* default is RS232 */
444
445 usb_set_serial_port_data(port, tport);
446
447 return 0;
448}
449
450static int ti_port_remove(struct usb_serial_port *port)
451{
452 struct ti_port *tport;
453
454 tport = usb_get_serial_port_data(port);
455 kfifo_free(&tport->write_fifo);
456 kfree(tport);
457
458 return 0;
459}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Alan Coxa509a7e2009-09-19 13:13:26 -0700461static int ti_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 struct ti_port *tport = usb_get_serial_port_data(port);
464 struct ti_device *tdev;
465 struct usb_device *dev;
466 struct urb *urb;
467 int port_number;
468 int status;
Alan Coxa30fa792008-07-22 11:15:17 +0100469 __u16 open_settings = (__u8)(TI_PIPE_MODE_CONTINOUS |
470 TI_PIPE_TIMEOUT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 (TI_TRANSFER_TIMEOUT << 2));
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (tport == NULL)
474 return -ENODEV;
475
476 dev = port->serial->dev;
477 tdev = tport->tp_tdev;
478
479 /* only one open on any port on a device at a time */
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800480 if (mutex_lock_interruptible(&tdev->td_open_close_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -ERESTARTSYS;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 port_number = port->number - port->serial->minor;
484
485 memset(&(tport->tp_icount), 0x00, sizeof(tport->tp_icount));
486
487 tport->tp_msr = 0;
488 tport->tp_shadow_mcr |= (TI_MCR_RTS | TI_MCR_DTR);
489
490 /* start interrupt urb the first time a port is opened on this device */
491 if (tdev->td_open_port_count == 0) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700492 dev_dbg(&port->dev, "%s - start interrupt in urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 urb = tdev->td_serial->port[0]->interrupt_in_urb;
494 if (!urb) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700495 dev_err(&port->dev, "%s - no interrupt urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 status = -EINVAL;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800497 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 urb->context = tdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 status = usb_submit_urb(urb, GFP_KERNEL);
501 if (status) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700502 dev_err(&port->dev, "%s - submit interrupt urb failed, %d\n", __func__, status);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800503 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 }
506
Alan Cox95da3102008-07-22 11:09:07 +0100507 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100508 ti_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700510 dev_dbg(&port->dev, "%s - sending TI_OPEN_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
512 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
513 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100514 dev_err(&port->dev, "%s - cannot send open command, %d\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700515 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto unlink_int_urb;
517 }
518
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700519 dev_dbg(&port->dev, "%s - sending TI_START_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 status = ti_command_out_sync(tdev, TI_START_PORT,
521 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
522 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100523 dev_err(&port->dev, "%s - cannot send start command, %d\n",
524 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto unlink_int_urb;
526 }
527
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700528 dev_dbg(&port->dev, "%s - sending TI_PURGE_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
530 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_INPUT, NULL, 0);
531 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100532 dev_err(&port->dev, "%s - cannot clear input buffers, %d\n",
533 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 goto unlink_int_urb;
535 }
536 status = ti_command_out_sync(tdev, TI_PURGE_PORT,
537 (__u8)(TI_UART1_PORT + port_number), TI_PURGE_OUTPUT, NULL, 0);
538 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100539 dev_err(&port->dev, "%s - cannot clear output buffers, %d\n",
540 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 goto unlink_int_urb;
542 }
543
544 /* reset the data toggle on the bulk endpoints to work around bug in
545 * host controllers where things get out of sync some times */
546 usb_clear_halt(dev, port->write_urb->pipe);
547 usb_clear_halt(dev, port->read_urb->pipe);
548
Alan Cox95da3102008-07-22 11:09:07 +0100549 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +0100550 ti_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700552 dev_dbg(&port->dev, "%s - sending TI_OPEN_PORT (2)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 status = ti_command_out_sync(tdev, TI_OPEN_PORT,
554 (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0);
555 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100556 dev_err(&port->dev, "%s - cannot send open command (2), %d\n",
557 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 goto unlink_int_urb;
559 }
560
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700561 dev_dbg(&port->dev, "%s - sending TI_START_PORT (2)\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 status = ti_command_out_sync(tdev, TI_START_PORT,
563 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
564 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100565 dev_err(&port->dev, "%s - cannot send start command (2), %d\n",
566 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto unlink_int_urb;
568 }
569
570 /* start read urb */
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700571 dev_dbg(&port->dev, "%s - start read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 urb = port->read_urb;
573 if (!urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800574 dev_err(&port->dev, "%s - no read urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 status = -EINVAL;
576 goto unlink_int_urb;
577 }
578 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 urb->context = tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 status = usb_submit_urb(urb, GFP_KERNEL);
581 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +0100582 dev_err(&port->dev, "%s - submit read urb failed, %d\n",
583 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 goto unlink_int_urb;
585 }
586
587 tport->tp_is_open = 1;
588 ++tdev->td_open_port_count;
589
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800590 goto release_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592unlink_int_urb:
593 if (tdev->td_open_port_count == 0)
594 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800595release_lock:
596 mutex_unlock(&tdev->td_open_close_lock);
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700597 dev_dbg(&port->dev, "%s - exit %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return status;
599}
600
601
Alan Cox335f8512009-06-11 12:26:29 +0100602static void ti_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct ti_device *tdev;
605 struct ti_port *tport;
606 int port_number;
607 int status;
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800608 int do_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 tdev = usb_get_serial_data(port->serial);
611 tport = usb_get_serial_port_data(port);
612 if (tdev == NULL || tport == NULL)
613 return;
614
615 tport->tp_is_open = 0;
616
617 ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 1);
618
619 usb_kill_urb(port->read_urb);
620 usb_kill_urb(port->write_urb);
621 tport->tp_write_urb_in_use = 0;
622
623 port_number = port->number - port->serial->minor;
624
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700625 dev_dbg(&port->dev, "%s - sending TI_CLOSE_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 status = ti_command_out_sync(tdev, TI_CLOSE_PORT,
627 (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0);
628 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100629 dev_err(&port->dev,
630 "%s - cannot send close port command, %d\n"
631 , __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800633 /* if mutex_lock is interrupted, continue anyway */
634 do_unlock = !mutex_lock_interruptible(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 --tport->tp_tdev->td_open_port_count;
636 if (tport->tp_tdev->td_open_port_count <= 0) {
637 /* last port is closed, shut down interrupt urb */
638 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
639 tport->tp_tdev->td_open_port_count = 0;
640 }
Matthias Kaehlcke9da00682007-11-21 15:13:16 -0800641 if (do_unlock)
642 mutex_unlock(&tdev->td_open_close_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645
Alan Cox95da3102008-07-22 11:09:07 +0100646static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
647 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (count == 0) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700652 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return 0;
654 }
655
656 if (tport == NULL || !tport->tp_is_open)
657 return -ENODEV;
658
Johan Hovold074ef652010-05-19 00:01:35 +0200659 count = kfifo_in_locked(&tport->write_fifo, data, count,
660 &tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 ti_send(tport);
662
663 return count;
664}
665
666
Alan Cox95da3102008-07-22 11:09:07 +0100667static int ti_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Alan Cox95da3102008-07-22 11:09:07 +0100669 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct ti_port *tport = usb_get_serial_port_data(port);
671 int room = 0;
672 unsigned long flags;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (tport == NULL)
Alan Cox23198fd2009-07-20 16:05:27 +0100675 return 0;
Alan Coxa30fa792008-07-22 11:15:17 +0100676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovold074ef652010-05-19 00:01:35 +0200678 room = kfifo_avail(&tport->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 spin_unlock_irqrestore(&tport->tp_lock, flags);
680
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700681 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return room;
683}
684
685
Alan Cox95da3102008-07-22 11:09:07 +0100686static int ti_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Alan Cox95da3102008-07-22 11:09:07 +0100688 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 struct ti_port *tport = usb_get_serial_port_data(port);
690 int chars = 0;
691 unsigned long flags;
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (tport == NULL)
Alan Cox23198fd2009-07-20 16:05:27 +0100694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 spin_lock_irqsave(&tport->tp_lock, flags);
Johan Hovold074ef652010-05-19 00:01:35 +0200697 chars = kfifo_len(&tport->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 spin_unlock_irqrestore(&tport->tp_lock, flags);
699
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700700 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return chars;
702}
703
704
Alan Cox95da3102008-07-22 11:09:07 +0100705static void ti_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Alan Cox95da3102008-07-22 11:09:07 +0100707 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (tport == NULL)
711 return;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (I_IXOFF(tty) || C_CRTSCTS(tty))
714 ti_stop_read(tport, tty);
715
716}
717
718
Alan Cox95da3102008-07-22 11:09:07 +0100719static void ti_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Alan Cox95da3102008-07-22 11:09:07 +0100721 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int status;
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (tport == NULL)
726 return;
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (I_IXOFF(tty) || C_CRTSCTS(tty)) {
729 status = ti_restart_read(tport, tty);
730 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100731 dev_err(&port->dev, "%s - cannot restart read, %d\n",
732 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734}
735
Alan Cox0bca1b92010-09-16 18:21:40 +0100736static int ti_get_icount(struct tty_struct *tty,
737 struct serial_icounter_struct *icount)
738{
739 struct usb_serial_port *port = tty->driver_data;
740 struct ti_port *tport = usb_get_serial_port_data(port);
741 struct async_icount cnow = tport->tp_icount;
742
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700743 dev_dbg(&port->dev, "%s - TIOCGICOUNT RX=%d, TX=%d\n", __func__,
Alan Cox0bca1b92010-09-16 18:21:40 +0100744 cnow.rx, cnow.tx);
745
746 icount->cts = cnow.cts;
747 icount->dsr = cnow.dsr;
748 icount->rng = cnow.rng;
749 icount->dcd = cnow.dcd;
750 icount->rx = cnow.rx;
751 icount->tx = cnow.tx;
752 icount->frame = cnow.frame;
753 icount->overrun = cnow.overrun;
754 icount->parity = cnow.parity;
755 icount->brk = cnow.brk;
756 icount->buf_overrun = cnow.buf_overrun;
757
758 return 0;
759}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Alan Cox00a0d0d2011-02-14 16:27:06 +0000761static int ti_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 unsigned int cmd, unsigned long arg)
763{
Alan Cox95da3102008-07-22 11:09:07 +0100764 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct ti_port *tport = usb_get_serial_port_data(port);
766 struct async_icount cnow;
767 struct async_icount cprev;
768
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700769 dev_dbg(&port->dev, "%s - cmd = 0x%04X\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 if (tport == NULL)
772 return -ENODEV;
773
774 switch (cmd) {
Alan Coxa30fa792008-07-22 11:15:17 +0100775 case TIOCGSERIAL:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700776 dev_dbg(&port->dev, "%s - TIOCGSERIAL\n", __func__);
Alan Coxa30fa792008-07-22 11:15:17 +0100777 return ti_get_serial_info(tport,
778 (struct serial_struct __user *)arg);
779 case TIOCSSERIAL:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700780 dev_dbg(&port->dev, "%s - TIOCSSERIAL\n", __func__);
Alan Cox4a90f092008-10-13 10:39:46 +0100781 return ti_set_serial_info(tty, tport,
782 (struct serial_struct __user *)arg);
Alan Coxa30fa792008-07-22 11:15:17 +0100783 case TIOCMIWAIT:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700784 dev_dbg(&port->dev, "%s - TIOCMIWAIT\n", __func__);
Alan Coxa30fa792008-07-22 11:15:17 +0100785 cprev = tport->tp_icount;
786 while (1) {
787 interruptible_sleep_on(&tport->tp_msr_wait);
788 if (signal_pending(current))
789 return -ERESTARTSYS;
790 cnow = tport->tp_icount;
791 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
792 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
793 return -EIO; /* no change => error */
794 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
795 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
796 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
797 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)))
798 return 0;
799 cprev = cnow;
800 }
801 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -ENOIOCTLCMD;
804}
805
806
Alan Cox95da3102008-07-22 11:09:07 +0100807static void ti_set_termios(struct tty_struct *tty,
808 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct ti_port *tport = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 struct ti_uart_config *config;
Alan Coxa30fa792008-07-22 11:15:17 +0100812 tcflag_t cflag, iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 int baud;
814 int status;
815 int port_number = port->number - port->serial->minor;
816 unsigned int mcr;
817
Alan Coxadc8d742012-07-14 15:31:47 +0100818 cflag = tty->termios.c_cflag;
819 iflag = tty->termios.c_iflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700821 dev_dbg(&port->dev, "%s - cflag %08x, iflag %08x\n", __func__, cflag, iflag);
822 dev_dbg(&port->dev, "%s - old clfag %08x, old iflag %08x\n", __func__,
823 old_termios->c_cflag, old_termios->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (tport == NULL)
826 return;
827
828 config = kmalloc(sizeof(*config), GFP_KERNEL);
829 if (!config) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800830 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return;
832 }
833
834 config->wFlags = 0;
835
836 /* these flags must be set */
837 config->wFlags |= TI_UART_ENABLE_MS_INTS;
838 config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA;
839 config->bUartMode = (__u8)(tport->tp_uart_mode);
840
841 switch (cflag & CSIZE) {
Alan Coxa30fa792008-07-22 11:15:17 +0100842 case CS5:
843 config->bDataBits = TI_UART_5_DATA_BITS;
844 break;
845 case CS6:
846 config->bDataBits = TI_UART_6_DATA_BITS;
847 break;
848 case CS7:
849 config->bDataBits = TI_UART_7_DATA_BITS;
850 break;
851 default:
852 case CS8:
853 config->bDataBits = TI_UART_8_DATA_BITS;
854 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
Alan Cox537699e2008-01-03 17:03:11 +0000857 /* CMSPAR isn't supported by this driver */
Alan Coxadc8d742012-07-14 15:31:47 +0100858 tty->termios.c_cflag &= ~CMSPAR;
Alan Cox537699e2008-01-03 17:03:11 +0000859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (cflag & PARENB) {
861 if (cflag & PARODD) {
862 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
863 config->bParity = TI_UART_ODD_PARITY;
864 } else {
865 config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING;
866 config->bParity = TI_UART_EVEN_PARITY;
867 }
868 } else {
869 config->wFlags &= ~TI_UART_ENABLE_PARITY_CHECKING;
Alan Coxa30fa792008-07-22 11:15:17 +0100870 config->bParity = TI_UART_NO_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
873 if (cflag & CSTOPB)
874 config->bStopBits = TI_UART_2_STOP_BITS;
875 else
876 config->bStopBits = TI_UART_1_STOP_BITS;
877
878 if (cflag & CRTSCTS) {
879 /* RTS flow control must be off to drop RTS for baud rate B0 */
880 if ((cflag & CBAUD) != B0)
881 config->wFlags |= TI_UART_ENABLE_RTS_IN;
882 config->wFlags |= TI_UART_ENABLE_CTS_OUT;
883 } else {
884 tty->hw_stopped = 0;
885 ti_restart_read(tport, tty);
886 }
887
888 if (I_IXOFF(tty) || I_IXON(tty)) {
889 config->cXon = START_CHAR(tty);
890 config->cXoff = STOP_CHAR(tty);
891
892 if (I_IXOFF(tty))
893 config->wFlags |= TI_UART_ENABLE_X_IN;
894 else
895 ti_restart_read(tport, tty);
896
897 if (I_IXON(tty))
898 config->wFlags |= TI_UART_ENABLE_X_OUT;
899 }
900
901 baud = tty_get_baud_rate(tty);
Alan Cox537699e2008-01-03 17:03:11 +0000902 if (!baud)
903 baud = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (tport->tp_tdev->td_is_3410)
905 config->wBaudRate = (__u16)((923077 + baud/2) / baud);
906 else
907 config->wBaudRate = (__u16)((461538 + baud/2) / baud);
908
Alan Cox537699e2008-01-03 17:03:11 +0000909 /* FIXME: Should calculate resulting baud here and report it back */
910 if ((cflag & CBAUD) != B0)
911 tty_encode_baud_rate(tty, baud, baud);
912
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700913 dev_dbg(&port->dev,
914 "%s - BaudRate=%d, wBaudRate=%d, wFlags=0x%04X, bDataBits=%d, bParity=%d, bStopBits=%d, cXon=%d, cXoff=%d, bUartMode=%d",
915 __func__, baud, config->wBaudRate, config->wFlags,
916 config->bDataBits, config->bParity, config->bStopBits,
917 config->cXon, config->cXoff, config->bUartMode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 cpu_to_be16s(&config->wBaudRate);
920 cpu_to_be16s(&config->wFlags);
921
922 status = ti_command_out_sync(tport->tp_tdev, TI_SET_CONFIG,
923 (__u8)(TI_UART1_PORT + port_number), 0, (__u8 *)config,
924 sizeof(*config));
925 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100926 dev_err(&port->dev, "%s - cannot set config on port %d, %d\n",
927 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /* SET_CONFIG asserts RTS and DTR, reset them correctly */
930 mcr = tport->tp_shadow_mcr;
931 /* if baud rate is B0, clear RTS and DTR */
932 if ((cflag & CBAUD) == B0)
933 mcr &= ~(TI_MCR_DTR | TI_MCR_RTS);
934 status = ti_set_mcr(tport, mcr);
935 if (status)
Alan Coxa30fa792008-07-22 11:15:17 +0100936 dev_err(&port->dev,
937 "%s - cannot set modem control on port %d, %d\n",
938 __func__, port_number, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 kfree(config);
941}
942
943
Alan Cox60b33c12011-02-14 16:26:14 +0000944static int ti_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Alan Cox95da3102008-07-22 11:09:07 +0100946 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 struct ti_port *tport = usb_get_serial_port_data(port);
948 unsigned int result;
949 unsigned int msr;
950 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000951 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (tport == NULL)
954 return -ENODEV;
955
Alan Cox04ca89d2008-02-20 21:41:40 +0000956 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 msr = tport->tp_msr;
958 mcr = tport->tp_shadow_mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000959 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0)
962 | ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0)
963 | ((mcr & TI_MCR_LOOP) ? TIOCM_LOOP : 0)
964 | ((msr & TI_MSR_CTS) ? TIOCM_CTS : 0)
965 | ((msr & TI_MSR_CD) ? TIOCM_CAR : 0)
966 | ((msr & TI_MSR_RI) ? TIOCM_RI : 0)
967 | ((msr & TI_MSR_DSR) ? TIOCM_DSR : 0);
968
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -0700969 dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 return result;
972}
973
974
Alan Cox20b9d172011-02-14 16:26:50 +0000975static int ti_tiocmset(struct tty_struct *tty,
976 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Alan Cox95da3102008-07-22 11:09:07 +0100978 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 struct ti_port *tport = usb_get_serial_port_data(port);
980 unsigned int mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +0000981 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (tport == NULL)
984 return -ENODEV;
985
Alan Cox04ca89d2008-02-20 21:41:40 +0000986 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 mcr = tport->tp_shadow_mcr;
988
989 if (set & TIOCM_RTS)
990 mcr |= TI_MCR_RTS;
991 if (set & TIOCM_DTR)
992 mcr |= TI_MCR_DTR;
993 if (set & TIOCM_LOOP)
994 mcr |= TI_MCR_LOOP;
995
996 if (clear & TIOCM_RTS)
997 mcr &= ~TI_MCR_RTS;
998 if (clear & TIOCM_DTR)
999 mcr &= ~TI_MCR_DTR;
1000 if (clear & TIOCM_LOOP)
1001 mcr &= ~TI_MCR_LOOP;
Alan Cox04ca89d2008-02-20 21:41:40 +00001002 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 return ti_set_mcr(tport, mcr);
1005}
1006
1007
Alan Cox95da3102008-07-22 11:09:07 +01001008static void ti_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
Alan Cox95da3102008-07-22 11:09:07 +01001010 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 struct ti_port *tport = usb_get_serial_port_data(port);
1012 int status;
1013
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001014 dev_dbg(&port->dev, "%s - state = %d\n", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 if (tport == NULL)
1017 return;
1018
1019 ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 0);
1020
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001021 status = ti_write_byte(port, tport->tp_tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 tport->tp_uart_base_addr + TI_UART_OFFSET_LCR,
1023 TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0);
1024
1025 if (status)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001026 dev_dbg(&port->dev, "%s - error setting break, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
1029
David Howells7d12e782006-10-05 14:55:46 +01001030static void ti_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Ming Leicdc97792008-02-24 18:41:47 +08001032 struct ti_device *tdev = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct usb_serial_port *port;
1034 struct usb_serial *serial = tdev->td_serial;
1035 struct ti_port *tport;
1036 struct device *dev = &urb->dev->dev;
1037 unsigned char *data = urb->transfer_buffer;
1038 int length = urb->actual_length;
1039 int port_number;
1040 int function;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001041 int status = urb->status;
1042 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 __u8 msr;
1044
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001045 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 case 0:
1047 break;
1048 case -ECONNRESET:
1049 case -ENOENT:
1050 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001051 dev_dbg(dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 tdev->td_urb_error = 1;
1053 return;
1054 default:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001055 dev_err(dev, "%s - nonzero urb status, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 tdev->td_urb_error = 1;
1057 goto exit;
1058 }
1059
1060 if (length != 2) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001061 dev_dbg(dev, "%s - bad packet size, %d\n", __func__, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 goto exit;
1063 }
1064
1065 if (data[0] == TI_CODE_HARDWARE_ERROR) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001066 dev_err(dev, "%s - hardware error, %d\n", __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 goto exit;
1068 }
1069
1070 port_number = TI_GET_PORT_FROM_CODE(data[0]);
1071 function = TI_GET_FUNC_FROM_CODE(data[0]);
1072
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001073 dev_dbg(dev, "%s - port_number %d, function %d, data 0x%02X\n",
1074 __func__, port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (port_number >= serial->num_ports) {
Alan Coxa30fa792008-07-22 11:15:17 +01001077 dev_err(dev, "%s - bad port number, %d\n",
1078 __func__, port_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 goto exit;
1080 }
1081
1082 port = serial->port[port_number];
1083
1084 tport = usb_get_serial_port_data(port);
1085 if (!tport)
1086 goto exit;
1087
1088 switch (function) {
1089 case TI_CODE_DATA_ERROR:
Alan Coxa30fa792008-07-22 11:15:17 +01001090 dev_err(dev, "%s - DATA ERROR, port %d, data 0x%02X\n",
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001091 __func__, port_number, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 break;
1093
1094 case TI_CODE_MODEM_STATUS:
1095 msr = data[1];
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001096 dev_dbg(dev, "%s - port %d, msr 0x%02X\n", __func__, port_number, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 ti_handle_new_msr(tport, msr);
1098 break;
1099
1100 default:
Alan Coxa30fa792008-07-22 11:15:17 +01001101 dev_err(dev, "%s - unknown interrupt code, 0x%02X\n",
1102 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 break;
1104 }
1105
1106exit:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001107 retval = usb_submit_urb(urb, GFP_ATOMIC);
1108 if (retval)
1109 dev_err(dev, "%s - resubmit interrupt urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001110 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
1113
David Howells7d12e782006-10-05 14:55:46 +01001114static void ti_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Ming Leicdc97792008-02-24 18:41:47 +08001116 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 struct usb_serial_port *port = tport->tp_port;
1118 struct device *dev = &urb->dev->dev;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001119 int status = urb->status;
1120 int retval = 0;
Alan Cox4a90f092008-10-13 10:39:46 +01001121 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001123 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 case 0:
1125 break;
1126 case -ECONNRESET:
1127 case -ENOENT:
1128 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001129 dev_dbg(dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 tport->tp_tdev->td_urb_error = 1;
1131 wake_up_interruptible(&tport->tp_write_wait);
1132 return;
1133 default:
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001134 dev_err(dev, "%s - nonzero urb status, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001135 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 tport->tp_tdev->td_urb_error = 1;
1137 wake_up_interruptible(&tport->tp_write_wait);
1138 }
1139
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001140 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 goto exit;
1142
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001143 if (status) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001144 dev_err(dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return;
1146 }
1147
Alan Cox4a90f092008-10-13 10:39:46 +01001148 tty = tty_port_tty_get(&port->port);
Alan Coxcf545092009-04-14 14:58:11 +01001149 if (tty) {
1150 if (urb->actual_length) {
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001151 usb_serial_debug_data(dev, __func__, urb->actual_length,
1152 urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Alan Coxcf545092009-04-14 14:58:11 +01001154 if (!tport->tp_is_open)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001155 dev_dbg(dev, "%s - port closed, dropping data\n",
Alan Coxcf545092009-04-14 14:58:11 +01001156 __func__);
1157 else
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001158 ti_recv(port, tty, urb->transfer_buffer,
Alan Coxa30fa792008-07-22 11:15:17 +01001159 urb->actual_length);
Alan Coxcf545092009-04-14 14:58:11 +01001160 spin_lock(&tport->tp_lock);
1161 tport->tp_icount.rx += urb->actual_length;
1162 spin_unlock(&tport->tp_lock);
1163 }
Alan Cox4a90f092008-10-13 10:39:46 +01001164 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166
1167exit:
1168 /* continue to read unless stopping */
1169 spin_lock(&tport->tp_lock);
Johan Hovold58330412011-11-06 19:06:28 +01001170 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001171 retval = usb_submit_urb(urb, GFP_ATOMIC);
Johan Hovold58330412011-11-06 19:06:28 +01001172 else if (tport->tp_read_urb_state == TI_READ_URB_STOPPING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 tport->tp_read_urb_state = TI_READ_URB_STOPPED;
Johan Hovold58330412011-11-06 19:06:28 +01001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 spin_unlock(&tport->tp_lock);
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001176 if (retval)
1177 dev_err(dev, "%s - resubmit read urb failed, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001178 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181
David Howells7d12e782006-10-05 14:55:46 +01001182static void ti_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Ming Leicdc97792008-02-24 18:41:47 +08001184 struct ti_port *tport = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 struct usb_serial_port *port = tport->tp_port;
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001186 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 tport->tp_write_urb_in_use = 0;
1189
Greg Kroah-Hartman52171b42007-06-15 15:44:13 -07001190 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 case 0:
1192 break;
1193 case -ECONNRESET:
1194 case -ENOENT:
1195 case -ESHUTDOWN:
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001196 dev_dbg(&port->dev, "%s - urb shutting down, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 tport->tp_tdev->td_urb_error = 1;
1198 wake_up_interruptible(&tport->tp_write_wait);
1199 return;
1200 default:
Johan Hovold22a416c2012-02-10 13:20:51 +01001201 dev_err_console(port, "%s - nonzero urb status, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001202 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 tport->tp_tdev->td_urb_error = 1;
1204 wake_up_interruptible(&tport->tp_write_wait);
1205 }
1206
1207 /* send any buffered data */
1208 ti_send(tport);
1209}
1210
1211
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001212static void ti_recv(struct usb_serial_port *port, struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 unsigned char *data, int length)
1214{
1215 int cnt;
1216
1217 do {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001218 cnt = tty_insert_flip_string(&port->port, data, length);
Alan Cox33f0f882006-01-09 20:54:13 -08001219 if (cnt < length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001220 dev_err(&port->dev, "%s - dropping data, %d bytes lost\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001221 __func__, length - cnt);
1222 if (cnt == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08001223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
Alan Cox33f0f882006-01-09 20:54:13 -08001225 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 data += cnt;
1227 length -= cnt;
1228 } while (length > 0);
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
1232
1233static void ti_send(struct ti_port *tport)
1234{
1235 int count, result;
1236 struct usb_serial_port *port = tport->tp_port;
Alan Cox4a90f092008-10-13 10:39:46 +01001237 struct tty_struct *tty = tty_port_tty_get(&port->port); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 unsigned long flags;
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 spin_lock_irqsave(&tport->tp_lock, flags);
1241
Alan Cox4a90f092008-10-13 10:39:46 +01001242 if (tport->tp_write_urb_in_use)
1243 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Johan Hovold074ef652010-05-19 00:01:35 +02001245 count = kfifo_out(&tport->write_fifo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 port->write_urb->transfer_buffer,
1247 port->bulk_out_size);
1248
Alan Cox4a90f092008-10-13 10:39:46 +01001249 if (count == 0)
1250 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 tport->tp_write_urb_in_use = 1;
1253
1254 spin_unlock_irqrestore(&tport->tp_lock, flags);
1255
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001256 usb_serial_debug_data(&port->dev, __func__, count,
1257 port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1260 usb_sndbulkpipe(port->serial->dev,
1261 port->bulk_out_endpointAddress),
1262 port->write_urb->transfer_buffer, count,
1263 ti_bulk_out_callback, tport);
1264
1265 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
1266 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001267 dev_err_console(port, "%s - submit write urb failed, %d\n",
Alan Coxa30fa792008-07-22 11:15:17 +01001268 __func__, result);
1269 tport->tp_write_urb_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 /* TODO: reschedule ti_send */
1271 } else {
1272 spin_lock_irqsave(&tport->tp_lock, flags);
1273 tport->tp_icount.tx += count;
1274 spin_unlock_irqrestore(&tport->tp_lock, flags);
1275 }
1276
1277 /* more room in the buffer for new writes, wakeup */
1278 if (tty)
1279 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +01001280 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 wake_up_interruptible(&tport->tp_write_wait);
Alan Cox4a90f092008-10-13 10:39:46 +01001282 return;
1283unlock:
1284 spin_unlock_irqrestore(&tport->tp_lock, flags);
1285 tty_kref_put(tty);
1286 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
1289
1290static int ti_set_mcr(struct ti_port *tport, unsigned int mcr)
1291{
Alan Cox04ca89d2008-02-20 21:41:40 +00001292 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 int status;
1294
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001295 status = ti_write_byte(tport->tp_port, tport->tp_tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 tport->tp_uart_base_addr + TI_UART_OFFSET_MCR,
1297 TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr);
1298
Alan Cox04ca89d2008-02-20 21:41:40 +00001299 spin_lock_irqsave(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (!status)
1301 tport->tp_shadow_mcr = mcr;
Alan Cox04ca89d2008-02-20 21:41:40 +00001302 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 return status;
1305}
1306
1307
1308static int ti_get_lsr(struct ti_port *tport)
1309{
Alan Coxa30fa792008-07-22 11:15:17 +01001310 int size, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct ti_device *tdev = tport->tp_tdev;
1312 struct usb_serial_port *port = tport->tp_port;
1313 int port_number = port->number - port->serial->minor;
1314 struct ti_port_status *data;
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 size = sizeof(struct ti_port_status);
1317 data = kmalloc(size, GFP_KERNEL);
1318 if (!data) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001319 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return -ENOMEM;
1321 }
1322
1323 status = ti_command_in_sync(tdev, TI_GET_PORT_STATUS,
1324 (__u8)(TI_UART1_PORT+port_number), 0, (__u8 *)data, size);
1325 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001326 dev_err(&port->dev,
1327 "%s - get port status command failed, %d\n",
1328 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 goto free_data;
1330 }
1331
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001332 dev_dbg(&port->dev, "%s - lsr 0x%02X\n", __func__, data->bLSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 tport->tp_lsr = data->bLSR;
1335
1336free_data:
1337 kfree(data);
1338 return status;
1339}
1340
1341
1342static int ti_get_serial_info(struct ti_port *tport,
1343 struct serial_struct __user *ret_arg)
1344{
1345 struct usb_serial_port *port = tport->tp_port;
1346 struct serial_struct ret_serial;
1347
1348 if (!ret_arg)
1349 return -EFAULT;
1350
1351 memset(&ret_serial, 0, sizeof(ret_serial));
1352
1353 ret_serial.type = PORT_16550A;
1354 ret_serial.line = port->serial->minor;
1355 ret_serial.port = port->number - port->serial->minor;
1356 ret_serial.flags = tport->tp_flags;
1357 ret_serial.xmit_fifo_size = TI_WRITE_BUF_SIZE;
1358 ret_serial.baud_base = tport->tp_tdev->td_is_3410 ? 921600 : 460800;
1359 ret_serial.closing_wait = tport->tp_closing_wait;
1360
1361 if (copy_to_user(ret_arg, &ret_serial, sizeof(*ret_arg)))
1362 return -EFAULT;
1363
1364 return 0;
1365}
1366
1367
Alan Cox4a90f092008-10-13 10:39:46 +01001368static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 struct serial_struct __user *new_arg)
1370{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 struct serial_struct new_serial;
1372
1373 if (copy_from_user(&new_serial, new_arg, sizeof(new_serial)))
1374 return -EFAULT;
1375
1376 tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 tport->tp_closing_wait = new_serial.closing_wait;
1378
1379 return 0;
1380}
1381
1382
1383static void ti_handle_new_msr(struct ti_port *tport, __u8 msr)
1384{
1385 struct async_icount *icount;
1386 struct tty_struct *tty;
1387 unsigned long flags;
1388
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001389 dev_dbg(&tport->tp_port->dev, "%s - msr 0x%02X\n", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 if (msr & TI_MSR_DELTA_MASK) {
1392 spin_lock_irqsave(&tport->tp_lock, flags);
1393 icount = &tport->tp_icount;
1394 if (msr & TI_MSR_DELTA_CTS)
1395 icount->cts++;
1396 if (msr & TI_MSR_DELTA_DSR)
1397 icount->dsr++;
1398 if (msr & TI_MSR_DELTA_CD)
1399 icount->dcd++;
1400 if (msr & TI_MSR_DELTA_RI)
1401 icount->rng++;
1402 wake_up_interruptible(&tport->tp_msr_wait);
1403 spin_unlock_irqrestore(&tport->tp_lock, flags);
1404 }
1405
1406 tport->tp_msr = msr & TI_MSR_MASK;
1407
1408 /* handle CTS flow control */
Alan Cox4a90f092008-10-13 10:39:46 +01001409 tty = tty_port_tty_get(&tport->tp_port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 if (tty && C_CRTSCTS(tty)) {
1411 if (msr & TI_MSR_CTS) {
1412 tty->hw_stopped = 0;
1413 tty_wakeup(tty);
1414 } else {
1415 tty->hw_stopped = 1;
1416 }
1417 }
Alan Cox4a90f092008-10-13 10:39:46 +01001418 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
1421
1422static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush)
1423{
1424 struct ti_device *tdev = tport->tp_tdev;
1425 struct usb_serial_port *port = tport->tp_port;
1426 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Oliver Neukum0915f492008-01-23 12:28:45 +01001428 spin_lock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 /* wait for data to drain from the buffer */
1431 tdev->td_urb_error = 0;
1432 init_waitqueue_entry(&wait, current);
1433 add_wait_queue(&tport->tp_write_wait, &wait);
1434 for (;;) {
1435 set_current_state(TASK_INTERRUPTIBLE);
Johan Hovold074ef652010-05-19 00:01:35 +02001436 if (kfifo_len(&tport->write_fifo) == 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 || timeout == 0 || signal_pending(current)
1438 || tdev->td_urb_error
Oliver Neukum0915f492008-01-23 12:28:45 +01001439 || port->serial->disconnected) /* disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 break;
Oliver Neukum0915f492008-01-23 12:28:45 +01001441 spin_unlock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 timeout = schedule_timeout(timeout);
Oliver Neukum0915f492008-01-23 12:28:45 +01001443 spin_lock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
1445 set_current_state(TASK_RUNNING);
1446 remove_wait_queue(&tport->tp_write_wait, &wait);
1447
1448 /* flush any remaining data in the buffer */
1449 if (flush)
Johan Hovold074ef652010-05-19 00:01:35 +02001450 kfifo_reset_out(&tport->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Oliver Neukum0915f492008-01-23 12:28:45 +01001452 spin_unlock_irq(&tport->tp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Oliver Neukum0915f492008-01-23 12:28:45 +01001454 mutex_lock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /* wait for data to drain from the device */
1456 /* wait for empty tx register, plus 20 ms */
1457 timeout += jiffies;
1458 tport->tp_lsr &= ~TI_LSR_TX_EMPTY;
1459 while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
1460 && !(tport->tp_lsr&TI_LSR_TX_EMPTY) && !tdev->td_urb_error
Oliver Neukum0915f492008-01-23 12:28:45 +01001461 && !port->serial->disconnected) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 if (ti_get_lsr(tport))
1463 break;
Oliver Neukum0915f492008-01-23 12:28:45 +01001464 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 msleep_interruptible(20);
Oliver Neukum0915f492008-01-23 12:28:45 +01001466 mutex_lock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
Oliver Neukum0915f492008-01-23 12:28:45 +01001468 mutex_unlock(&port->serial->disc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469}
1470
1471
1472static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty)
1473{
1474 unsigned long flags;
1475
1476 spin_lock_irqsave(&tport->tp_lock, flags);
1477
1478 if (tport->tp_read_urb_state == TI_READ_URB_RUNNING)
1479 tport->tp_read_urb_state = TI_READ_URB_STOPPING;
1480
1481 spin_unlock_irqrestore(&tport->tp_lock, flags);
1482}
1483
1484
1485static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty)
1486{
1487 struct urb *urb;
1488 int status = 0;
1489 unsigned long flags;
1490
1491 spin_lock_irqsave(&tport->tp_lock, flags);
1492
1493 if (tport->tp_read_urb_state == TI_READ_URB_STOPPED) {
Oliver Neukum944dc182007-05-07 08:33:18 +02001494 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 urb = tport->tp_port->read_urb;
Oliver Neukum944dc182007-05-07 08:33:18 +02001496 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 urb->context = tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 status = usb_submit_urb(urb, GFP_KERNEL);
Oliver Neukum944dc182007-05-07 08:33:18 +02001499 } else {
1500 tport->tp_read_urb_state = TI_READ_URB_RUNNING;
1501 spin_unlock_irqrestore(&tport->tp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 return status;
1505}
1506
1507
1508static int ti_command_out_sync(struct ti_device *tdev, __u8 command,
1509 __u16 moduleid, __u16 value, __u8 *data, int size)
1510{
1511 int status;
1512
1513 status = usb_control_msg(tdev->td_serial->dev,
1514 usb_sndctrlpipe(tdev->td_serial->dev, 0), command,
1515 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
1516 value, moduleid, data, size, 1000);
1517
1518 if (status == size)
1519 status = 0;
1520
1521 if (status > 0)
1522 status = -ECOMM;
1523
1524 return status;
1525}
1526
1527
1528static int ti_command_in_sync(struct ti_device *tdev, __u8 command,
1529 __u16 moduleid, __u16 value, __u8 *data, int size)
1530{
1531 int status;
1532
1533 status = usb_control_msg(tdev->td_serial->dev,
1534 usb_rcvctrlpipe(tdev->td_serial->dev, 0), command,
1535 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
1536 value, moduleid, data, size, 1000);
1537
1538 if (status == size)
1539 status = 0;
1540
1541 if (status > 0)
1542 status = -ECOMM;
1543
1544 return status;
1545}
1546
1547
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001548static int ti_write_byte(struct usb_serial_port *port,
1549 struct ti_device *tdev, unsigned long addr,
1550 __u8 mask, __u8 byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
1552 int status;
1553 unsigned int size;
1554 struct ti_write_data_bytes *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001556 dev_dbg(&port->dev, "%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X\n", __func__,
1557 addr, mask, byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 size = sizeof(struct ti_write_data_bytes) + 2;
1560 data = kmalloc(size, GFP_KERNEL);
1561 if (!data) {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001562 dev_err(&port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return -ENOMEM;
1564 }
1565
1566 data->bAddrType = TI_RW_DATA_ADDR_XDATA;
1567 data->bDataType = TI_RW_DATA_BYTE;
1568 data->bDataCounter = 1;
1569 data->wBaseAddrHi = cpu_to_be16(addr>>16);
1570 data->wBaseAddrLo = cpu_to_be16(addr);
1571 data->bData[0] = mask;
1572 data->bData[1] = byte;
1573
1574 status = ti_command_out_sync(tdev, TI_WRITE_DATA, TI_RAM_PORT, 0,
1575 (__u8 *)data, size);
1576
1577 if (status < 0)
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001578 dev_err(&port->dev, "%s - failed, %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 kfree(data);
1581
1582 return status;
1583}
1584
Alan Cox95da3102008-07-22 11:09:07 +01001585static int ti_do_download(struct usb_device *dev, int pipe,
1586 u8 *buffer, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 int pos;
Alan Cox95da3102008-07-22 11:09:07 +01001589 u8 cs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 struct ti_firmware_header *header;
Oliver Neukum87ea8c82009-06-30 09:44:24 +02001592 int status = 0;
Alan Cox95da3102008-07-22 11:09:07 +01001593 int len;
Alan Coxa30fa792008-07-22 11:15:17 +01001594
1595 for (pos = sizeof(struct ti_firmware_header); pos < size; pos++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 cs = (__u8)(cs + buffer[pos]);
1597
1598 header = (struct ti_firmware_header *)buffer;
Alan Coxa30fa792008-07-22 11:15:17 +01001599 header->wLength = cpu_to_le16((__u16)(size
Alan Cox95da3102008-07-22 11:09:07 +01001600 - sizeof(struct ti_firmware_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 header->bCheckSum = cs;
1602
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001603 dev_dbg(&dev->dev, "%s - downloading firmware\n", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01001604 for (pos = 0; pos < size; pos += done) {
1605 len = min(size - pos, TI_DOWNLOAD_MAX_PACKET_SIZE);
1606 status = usb_bulk_msg(dev, pipe, buffer + pos, len,
1607 &done, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (status)
1609 break;
1610 }
Alan Cox95da3102008-07-22 11:09:07 +01001611 return status;
1612}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Chris Adams05a3d902009-01-11 19:48:53 +00001614static int ti_download_firmware(struct ti_device *tdev)
Alan Cox95da3102008-07-22 11:09:07 +01001615{
Chris Adams05a3d902009-01-11 19:48:53 +00001616 int status;
Alan Cox95da3102008-07-22 11:09:07 +01001617 int buffer_size;
1618 __u8 *buffer;
1619 struct usb_device *dev = tdev->td_serial->dev;
1620 unsigned int pipe = usb_sndbulkpipe(dev,
1621 tdev->td_serial->port[0]->bulk_out_endpointAddress);
1622 const struct firmware *fw_p;
1623 char buf[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Chris Adams05a3d902009-01-11 19:48:53 +00001625 /* try ID specific firmware first, then try generic firmware */
1626 sprintf(buf, "ti_usb-v%04x-p%04x.fw", dev->descriptor.idVendor,
1627 dev->descriptor.idProduct);
Adhir Ramjiawan72b27a02012-04-09 14:01:38 +02001628 status = request_firmware(&fw_p, buf, &dev->dev);
1629
1630 if (status != 0) {
Chris Adamscb7a7c62009-01-11 19:49:00 +00001631 buf[0] = '\0';
1632 if (dev->descriptor.idVendor == MTS_VENDOR_ID) {
1633 switch (dev->descriptor.idProduct) {
1634 case MTS_CDMA_PRODUCT_ID:
1635 strcpy(buf, "mts_cdma.fw");
1636 break;
1637 case MTS_GSM_PRODUCT_ID:
1638 strcpy(buf, "mts_gsm.fw");
1639 break;
1640 case MTS_EDGE_PRODUCT_ID:
1641 strcpy(buf, "mts_edge.fw");
1642 break;
Alex Manoussakiscdc04832010-04-22 15:18:20 -07001643 case MTS_MT9234MU_PRODUCT_ID:
1644 strcpy(buf, "mts_mt9234mu.fw");
1645 break;
1646 case MTS_MT9234ZBA_PRODUCT_ID:
1647 strcpy(buf, "mts_mt9234zba.fw");
1648 break;
1649 case MTS_MT9234ZBAOLD_PRODUCT_ID:
1650 strcpy(buf, "mts_mt9234zba.fw");
1651 break; }
Chris Adamscb7a7c62009-01-11 19:49:00 +00001652 }
1653 if (buf[0] == '\0') {
1654 if (tdev->td_is_3410)
1655 strcpy(buf, "ti_3410.fw");
1656 else
1657 strcpy(buf, "ti_5052.fw");
1658 }
Chris Adams05a3d902009-01-11 19:48:53 +00001659 status = request_firmware(&fw_p, buf, &dev->dev);
1660 }
1661 if (status) {
Alan Cox95da3102008-07-22 11:09:07 +01001662 dev_err(&dev->dev, "%s - firmware not found\n", __func__);
1663 return -ENOENT;
1664 }
1665 if (fw_p->size > TI_FIRMWARE_BUF_SIZE) {
Randy Dunlap75181f32010-04-15 11:38:56 -07001666 dev_err(&dev->dev, "%s - firmware too large %zu\n", __func__, fw_p->size);
Jesper Juhl357f45d2011-06-13 22:50:41 +02001667 release_firmware(fw_p);
Alan Cox95da3102008-07-22 11:09:07 +01001668 return -ENOENT;
1669 }
1670
1671 buffer_size = TI_FIRMWARE_BUF_SIZE + sizeof(struct ti_firmware_header);
1672 buffer = kmalloc(buffer_size, GFP_KERNEL);
1673 if (buffer) {
1674 memcpy(buffer, fw_p->data, fw_p->size);
1675 memset(buffer + fw_p->size, 0xff, buffer_size - fw_p->size);
Chris Adams2bcbe4c12008-09-10 14:11:38 -07001676 status = ti_do_download(dev, pipe, buffer, fw_p->size);
Alan Cox95da3102008-07-22 11:09:07 +01001677 kfree(buffer);
Chris Adams05a3d902009-01-11 19:48:53 +00001678 } else {
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001679 dev_dbg(&dev->dev, "%s ENOMEM\n", __func__);
Chris Adams05a3d902009-01-11 19:48:53 +00001680 status = -ENOMEM;
Alan Cox95da3102008-07-22 11:09:07 +01001681 }
1682 release_firmware(fw_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (status) {
Alan Coxa30fa792008-07-22 11:15:17 +01001684 dev_err(&dev->dev, "%s - error downloading firmware, %d\n",
1685 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 return status;
1687 }
1688
Greg Kroah-Hartmand53839c2012-09-14 15:08:36 -07001689 dev_dbg(&dev->dev, "%s - download successful\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 return 0;
1692}