Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | */ |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/kernel.h> |
| 22 | #include <linux/errno.h> |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 23 | #include <linux/firmware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/init.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/tty.h> |
| 27 | #include <linux/tty_driver.h> |
| 28 | #include <linux/tty_flip.h> |
| 29 | #include <linux/module.h> |
| 30 | #include <linux/spinlock.h> |
| 31 | #include <linux/ioctl.h> |
| 32 | #include <linux/serial.h> |
| 33 | #include <linux/circ_buf.h> |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 34 | #include <linux/mutex.h> |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 35 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 37 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include "ti_usb_3410_5052.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | /* Defines */ |
| 42 | |
| 43 | #define TI_DRIVER_VERSION "v0.9" |
| 44 | #define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>" |
| 45 | #define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver" |
| 46 | |
| 47 | #define TI_FIRMWARE_BUF_SIZE 16284 |
| 48 | |
| 49 | #define TI_WRITE_BUF_SIZE 1024 |
| 50 | |
| 51 | #define TI_TRANSFER_TIMEOUT 2 |
| 52 | |
| 53 | #define TI_DEFAULT_LOW_LATENCY 0 |
| 54 | #define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */ |
| 55 | |
| 56 | /* supported setserial flags */ |
| 57 | #define TI_SET_SERIAL_FLAGS (ASYNC_LOW_LATENCY) |
| 58 | |
| 59 | /* read urb states */ |
| 60 | #define TI_READ_URB_RUNNING 0 |
| 61 | #define TI_READ_URB_STOPPING 1 |
| 62 | #define TI_READ_URB_STOPPED 2 |
| 63 | |
| 64 | #define TI_EXTRA_VID_PID_COUNT 5 |
| 65 | |
| 66 | |
| 67 | /* Structures */ |
| 68 | |
| 69 | struct ti_port { |
| 70 | int tp_is_open; |
| 71 | __u8 tp_msr; |
| 72 | __u8 tp_lsr; |
| 73 | __u8 tp_shadow_mcr; |
| 74 | __u8 tp_uart_mode; /* 232 or 485 modes */ |
| 75 | unsigned int tp_uart_base_addr; |
| 76 | int tp_flags; |
| 77 | int tp_closing_wait;/* in .01 secs */ |
| 78 | struct async_icount tp_icount; |
| 79 | wait_queue_head_t tp_msr_wait; /* wait for msr change */ |
| 80 | wait_queue_head_t tp_write_wait; |
| 81 | struct ti_device *tp_tdev; |
| 82 | struct usb_serial_port *tp_port; |
| 83 | spinlock_t tp_lock; |
| 84 | int tp_read_urb_state; |
| 85 | int tp_write_urb_in_use; |
| 86 | struct circ_buf *tp_write_buf; |
| 87 | }; |
| 88 | |
| 89 | struct ti_device { |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 90 | struct mutex td_open_close_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | int td_open_port_count; |
| 92 | struct usb_serial *td_serial; |
| 93 | int td_is_3410; |
| 94 | int td_urb_error; |
| 95 | }; |
| 96 | |
| 97 | |
| 98 | /* Function Declarations */ |
| 99 | |
| 100 | static int ti_startup(struct usb_serial *serial); |
| 101 | static void ti_shutdown(struct usb_serial *serial); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 102 | static int ti_open(struct tty_struct *tty, struct usb_serial_port *port, |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 103 | struct file *file); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 104 | static void ti_close(struct tty_struct *tty, struct usb_serial_port *port, |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 105 | struct file *file); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 106 | static int ti_write(struct tty_struct *tty, struct usb_serial_port *port, |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 107 | const unsigned char *data, int count); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 108 | static int ti_write_room(struct tty_struct *tty); |
| 109 | static int ti_chars_in_buffer(struct tty_struct *tty); |
| 110 | static void ti_throttle(struct tty_struct *tty); |
| 111 | static void ti_unthrottle(struct tty_struct *tty); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 112 | static int ti_ioctl(struct tty_struct *tty, struct file *file, |
| 113 | unsigned int cmd, unsigned long arg); |
| 114 | static void ti_set_termios(struct tty_struct *tty, |
| 115 | struct usb_serial_port *port, struct ktermios *old_termios); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 116 | static int ti_tiocmget(struct tty_struct *tty, struct file *file); |
| 117 | static int ti_tiocmset(struct tty_struct *tty, struct file *file, |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 118 | unsigned int set, unsigned int clear); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 119 | static void ti_break(struct tty_struct *tty, int break_state); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 120 | static void ti_interrupt_callback(struct urb *urb); |
| 121 | static void ti_bulk_in_callback(struct urb *urb); |
| 122 | static void ti_bulk_out_callback(struct urb *urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | static void ti_recv(struct device *dev, struct tty_struct *tty, |
| 125 | unsigned char *data, int length); |
| 126 | static void ti_send(struct ti_port *tport); |
| 127 | static int ti_set_mcr(struct ti_port *tport, unsigned int mcr); |
| 128 | static int ti_get_lsr(struct ti_port *tport); |
| 129 | static int ti_get_serial_info(struct ti_port *tport, |
| 130 | struct serial_struct __user *ret_arg); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 131 | static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | struct serial_struct __user *new_arg); |
| 133 | static void ti_handle_new_msr(struct ti_port *tport, __u8 msr); |
| 134 | |
| 135 | static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush); |
| 136 | |
| 137 | static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty); |
| 138 | static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty); |
| 139 | |
| 140 | static int ti_command_out_sync(struct ti_device *tdev, __u8 command, |
| 141 | __u16 moduleid, __u16 value, __u8 *data, int size); |
| 142 | static int ti_command_in_sync(struct ti_device *tdev, __u8 command, |
| 143 | __u16 moduleid, __u16 value, __u8 *data, int size); |
| 144 | |
| 145 | static int ti_write_byte(struct ti_device *tdev, unsigned long addr, |
| 146 | __u8 mask, __u8 byte); |
| 147 | |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 148 | static int ti_download_firmware(struct ti_device *tdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | /* circular buffer */ |
| 151 | static struct circ_buf *ti_buf_alloc(void); |
| 152 | static void ti_buf_free(struct circ_buf *cb); |
| 153 | static void ti_buf_clear(struct circ_buf *cb); |
| 154 | static int ti_buf_data_avail(struct circ_buf *cb); |
| 155 | static int ti_buf_space_avail(struct circ_buf *cb); |
| 156 | static int ti_buf_put(struct circ_buf *cb, const char *buf, int count); |
| 157 | static int ti_buf_get(struct circ_buf *cb, char *buf, int count); |
| 158 | |
| 159 | |
| 160 | /* Data */ |
| 161 | |
| 162 | /* module parameters */ |
| 163 | static int debug; |
| 164 | static int low_latency = TI_DEFAULT_LOW_LATENCY; |
| 165 | static int closing_wait = TI_DEFAULT_CLOSING_WAIT; |
| 166 | static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 167 | static unsigned int vendor_3410_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | static ushort product_3410[TI_EXTRA_VID_PID_COUNT]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 169 | static unsigned int product_3410_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | static ushort vendor_5052[TI_EXTRA_VID_PID_COUNT]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 171 | static unsigned int vendor_5052_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | static ushort product_5052[TI_EXTRA_VID_PID_COUNT]; |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 173 | static unsigned int product_5052_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | /* supported devices */ |
| 176 | /* the array dimension is the number of default entries plus */ |
| 177 | /* TI_EXTRA_VID_PID_COUNT user defined entries plus 1 terminating */ |
| 178 | /* null entry */ |
Chris Adams | cb7a7c6 | 2009-01-11 19:49:00 +0000 | [diff] [blame] | 179 | static struct usb_device_id ti_id_table_3410[7+TI_EXTRA_VID_PID_COUNT+1] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) }, |
Oleg Verych | 1f54a6a | 2006-11-17 08:21:27 +0000 | [diff] [blame] | 181 | { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) }, |
Chris Adams | cb7a7c6 | 2009-01-11 19:49:00 +0000 | [diff] [blame] | 182 | { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) }, |
| 183 | { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) }, |
| 184 | { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) }, |
| 185 | { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) }, |
| 186 | { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) }, |
Oliver Neukum | 1a1fab51 | 2009-01-12 13:31:16 +0100 | [diff] [blame^] | 187 | { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | static struct usb_device_id ti_id_table_5052[4+TI_EXTRA_VID_PID_COUNT+1] = { |
| 191 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) }, |
| 192 | { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) }, |
| 193 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) }, |
| 194 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) }, |
Oliver Neukum | 1a1fab51 | 2009-01-12 13:31:16 +0100 | [diff] [blame^] | 195 | { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | }; |
| 197 | |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 198 | static struct usb_device_id ti_id_table_combined[6+2*TI_EXTRA_VID_PID_COUNT+1] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) }, |
Oleg Verych | 1f54a6a | 2006-11-17 08:21:27 +0000 | [diff] [blame] | 200 | { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) }, |
Chris Adams | cb7a7c6 | 2009-01-11 19:49:00 +0000 | [diff] [blame] | 201 | { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) }, |
| 202 | { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_NO_FW_PRODUCT_ID) }, |
| 203 | { USB_DEVICE(MTS_VENDOR_ID, MTS_CDMA_PRODUCT_ID) }, |
| 204 | { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_PRODUCT_ID) }, |
| 205 | { USB_DEVICE(MTS_VENDOR_ID, MTS_EDGE_PRODUCT_ID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_BOOT_PRODUCT_ID) }, |
| 207 | { USB_DEVICE(TI_VENDOR_ID, TI_5152_BOOT_PRODUCT_ID) }, |
| 208 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_EEPROM_PRODUCT_ID) }, |
| 209 | { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) }, |
Oliver Neukum | 1a1fab51 | 2009-01-12 13:31:16 +0100 | [diff] [blame^] | 210 | { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | { } |
| 212 | }; |
| 213 | |
| 214 | static struct usb_driver ti_usb_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | .name = "ti_usb_3410_5052", |
| 216 | .probe = usb_serial_probe, |
| 217 | .disconnect = usb_serial_disconnect, |
| 218 | .id_table = ti_id_table_combined, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 219 | .no_dynamic_id = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | }; |
| 221 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 222 | static struct usb_serial_driver ti_1port_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 223 | .driver = { |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 224 | .owner = THIS_MODULE, |
| 225 | .name = "ti_usb_3410_5052_1", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 226 | }, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 227 | .description = "TI USB 3410 1 port adapter", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 228 | .usb_driver = &ti_usb_driver, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | .id_table = ti_id_table_3410, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | .num_ports = 1, |
| 231 | .attach = ti_startup, |
| 232 | .shutdown = ti_shutdown, |
| 233 | .open = ti_open, |
| 234 | .close = ti_close, |
| 235 | .write = ti_write, |
| 236 | .write_room = ti_write_room, |
| 237 | .chars_in_buffer = ti_chars_in_buffer, |
| 238 | .throttle = ti_throttle, |
| 239 | .unthrottle = ti_unthrottle, |
| 240 | .ioctl = ti_ioctl, |
| 241 | .set_termios = ti_set_termios, |
| 242 | .tiocmget = ti_tiocmget, |
| 243 | .tiocmset = ti_tiocmset, |
| 244 | .break_ctl = ti_break, |
| 245 | .read_int_callback = ti_interrupt_callback, |
| 246 | .read_bulk_callback = ti_bulk_in_callback, |
| 247 | .write_bulk_callback = ti_bulk_out_callback, |
| 248 | }; |
| 249 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 250 | static struct usb_serial_driver ti_2port_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 251 | .driver = { |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 252 | .owner = THIS_MODULE, |
| 253 | .name = "ti_usb_3410_5052_2", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 254 | }, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 255 | .description = "TI USB 5052 2 port adapter", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 256 | .usb_driver = &ti_usb_driver, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | .id_table = ti_id_table_5052, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | .num_ports = 2, |
| 259 | .attach = ti_startup, |
| 260 | .shutdown = ti_shutdown, |
| 261 | .open = ti_open, |
| 262 | .close = ti_close, |
| 263 | .write = ti_write, |
| 264 | .write_room = ti_write_room, |
| 265 | .chars_in_buffer = ti_chars_in_buffer, |
| 266 | .throttle = ti_throttle, |
| 267 | .unthrottle = ti_unthrottle, |
| 268 | .ioctl = ti_ioctl, |
| 269 | .set_termios = ti_set_termios, |
| 270 | .tiocmget = ti_tiocmget, |
| 271 | .tiocmset = ti_tiocmset, |
| 272 | .break_ctl = ti_break, |
| 273 | .read_int_callback = ti_interrupt_callback, |
| 274 | .read_bulk_callback = ti_bulk_in_callback, |
| 275 | .write_bulk_callback = ti_bulk_out_callback, |
| 276 | }; |
| 277 | |
| 278 | |
| 279 | /* Module */ |
| 280 | |
| 281 | MODULE_AUTHOR(TI_DRIVER_AUTHOR); |
| 282 | MODULE_DESCRIPTION(TI_DRIVER_DESC); |
| 283 | MODULE_VERSION(TI_DRIVER_VERSION); |
| 284 | MODULE_LICENSE("GPL"); |
| 285 | |
David Woodhouse | 5f24e2d | 2008-05-30 18:49:51 +0300 | [diff] [blame] | 286 | MODULE_FIRMWARE("ti_3410.fw"); |
| 287 | MODULE_FIRMWARE("ti_5052.fw"); |
Chris Adams | 7df5231 | 2009-01-11 19:49:11 +0000 | [diff] [blame] | 288 | MODULE_FIRMWARE("mts_cdma.fw"); |
| 289 | MODULE_FIRMWARE("mts_gsm.fw"); |
| 290 | MODULE_FIRMWARE("mts_edge.fw"); |
David Woodhouse | 5f24e2d | 2008-05-30 18:49:51 +0300 | [diff] [blame] | 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 293 | MODULE_PARM_DESC(debug, "Enable debugging, 0=no, 1=yes"); |
| 294 | |
| 295 | module_param(low_latency, bool, S_IRUGO | S_IWUSR); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 296 | MODULE_PARM_DESC(low_latency, |
| 297 | "TTY low_latency flag, 0=off, 1=on, default is off"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | module_param(closing_wait, int, S_IRUGO | S_IWUSR); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 300 | MODULE_PARM_DESC(closing_wait, |
| 301 | "Maximum wait for data to drain in close, in .01 secs, default is 4000"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
| 303 | module_param_array(vendor_3410, ushort, &vendor_3410_count, S_IRUGO); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 304 | MODULE_PARM_DESC(vendor_3410, |
| 305 | "Vendor ids for 3410 based devices, 1-5 short integers"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | module_param_array(product_3410, ushort, &product_3410_count, S_IRUGO); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 307 | MODULE_PARM_DESC(product_3410, |
| 308 | "Product ids for 3410 based devices, 1-5 short integers"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | module_param_array(vendor_5052, ushort, &vendor_5052_count, S_IRUGO); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 310 | MODULE_PARM_DESC(vendor_5052, |
| 311 | "Vendor ids for 5052 based devices, 1-5 short integers"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | module_param_array(product_5052, ushort, &product_5052_count, S_IRUGO); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 313 | MODULE_PARM_DESC(product_5052, |
| 314 | "Product ids for 5052 based devices, 1-5 short integers"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
| 316 | MODULE_DEVICE_TABLE(usb, ti_id_table_combined); |
| 317 | |
| 318 | |
| 319 | /* Functions */ |
| 320 | |
| 321 | static int __init ti_init(void) |
| 322 | { |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 323 | int i, j, c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | int ret; |
| 325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | /* insert extra vendor and product ids */ |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 327 | c = ARRAY_SIZE(ti_id_table_combined) - 2 * TI_EXTRA_VID_PID_COUNT - 1; |
Tobias Klauser | 52950ed | 2005-12-11 16:20:08 +0100 | [diff] [blame] | 328 | j = ARRAY_SIZE(ti_id_table_3410) - TI_EXTRA_VID_PID_COUNT - 1; |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 329 | for (i = 0; i < min(vendor_3410_count, product_3410_count); i++, j++, c++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | ti_id_table_3410[j].idVendor = vendor_3410[i]; |
| 331 | ti_id_table_3410[j].idProduct = product_3410[i]; |
| 332 | ti_id_table_3410[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE; |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 333 | ti_id_table_combined[c].idVendor = vendor_3410[i]; |
| 334 | ti_id_table_combined[c].idProduct = product_3410[i]; |
| 335 | ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
Tobias Klauser | 52950ed | 2005-12-11 16:20:08 +0100 | [diff] [blame] | 337 | j = ARRAY_SIZE(ti_id_table_5052) - TI_EXTRA_VID_PID_COUNT - 1; |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 338 | for (i = 0; i < min(vendor_5052_count, product_5052_count); i++, j++, c++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | ti_id_table_5052[j].idVendor = vendor_5052[i]; |
| 340 | ti_id_table_5052[j].idProduct = product_5052[i]; |
| 341 | ti_id_table_5052[j].match_flags = USB_DEVICE_ID_MATCH_DEVICE; |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 342 | ti_id_table_combined[c].idVendor = vendor_5052[i]; |
| 343 | ti_id_table_combined[c].idProduct = product_5052[i]; |
| 344 | ti_id_table_combined[c].match_flags = USB_DEVICE_ID_MATCH_DEVICE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | ret = usb_serial_register(&ti_1port_device); |
| 348 | if (ret) |
| 349 | goto failed_1port; |
| 350 | ret = usb_serial_register(&ti_2port_device); |
| 351 | if (ret) |
| 352 | goto failed_2port; |
| 353 | |
| 354 | ret = usb_register(&ti_usb_driver); |
| 355 | if (ret) |
| 356 | goto failed_usb; |
| 357 | |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 358 | printk(KERN_INFO KBUILD_MODNAME ": " TI_DRIVER_VERSION ":" |
| 359 | TI_DRIVER_DESC "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | return 0; |
| 362 | |
| 363 | failed_usb: |
| 364 | usb_serial_deregister(&ti_2port_device); |
| 365 | failed_2port: |
| 366 | usb_serial_deregister(&ti_1port_device); |
| 367 | failed_1port: |
| 368 | return ret; |
| 369 | } |
| 370 | |
| 371 | |
| 372 | static void __exit ti_exit(void) |
| 373 | { |
| 374 | usb_serial_deregister(&ti_1port_device); |
| 375 | usb_serial_deregister(&ti_2port_device); |
| 376 | usb_deregister(&ti_usb_driver); |
| 377 | } |
| 378 | |
| 379 | |
| 380 | module_init(ti_init); |
| 381 | module_exit(ti_exit); |
| 382 | |
| 383 | |
| 384 | static int ti_startup(struct usb_serial *serial) |
| 385 | { |
| 386 | struct ti_device *tdev; |
| 387 | struct ti_port *tport; |
| 388 | struct usb_device *dev = serial->dev; |
| 389 | int status; |
| 390 | int i; |
| 391 | |
| 392 | |
| 393 | dbg("%s - product 0x%4X, num configurations %d, configuration value %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 394 | __func__, le16_to_cpu(dev->descriptor.idProduct), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | dev->descriptor.bNumConfigurations, |
| 396 | dev->actconfig->desc.bConfigurationValue); |
| 397 | |
| 398 | /* create device structure */ |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 399 | tdev = kzalloc(sizeof(struct ti_device), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | if (tdev == NULL) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 401 | dev_err(&dev->dev, "%s - out of memory\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | return -ENOMEM; |
| 403 | } |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 404 | mutex_init(&tdev->td_open_close_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | tdev->td_serial = serial; |
| 406 | usb_set_serial_data(serial, tdev); |
| 407 | |
| 408 | /* determine device type */ |
| 409 | if (usb_match_id(serial->interface, ti_id_table_3410)) |
| 410 | tdev->td_is_3410 = 1; |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 411 | dbg("%s - device type is %s", __func__, |
| 412 | tdev->td_is_3410 ? "3410" : "5052"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
| 414 | /* if we have only 1 configuration, download firmware */ |
| 415 | if (dev->descriptor.bNumConfigurations == 1) { |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 416 | if ((status = ti_download_firmware(tdev)) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | goto free_tdev; |
| 418 | |
| 419 | /* 3410 must be reset, 5052 resets itself */ |
| 420 | if (tdev->td_is_3410) { |
| 421 | msleep_interruptible(100); |
| 422 | usb_reset_device(dev); |
| 423 | } |
| 424 | |
| 425 | status = -ENODEV; |
| 426 | goto free_tdev; |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 427 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Oliver Neukum | 413ba6f | 2008-12-16 12:25:55 +0100 | [diff] [blame] | 429 | /* the second configuration must be set */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | if (dev->actconfig->desc.bConfigurationValue == TI_BOOT_CONFIG) { |
Oliver Neukum | 413ba6f | 2008-12-16 12:25:55 +0100 | [diff] [blame] | 431 | status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG); |
| 432 | status = status ? status : -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | goto free_tdev; |
| 434 | } |
| 435 | |
| 436 | /* set up port structures */ |
| 437 | for (i = 0; i < serial->num_ports; ++i) { |
Burman Yan | 7ac9da1 | 2006-11-22 20:54:38 +0200 | [diff] [blame] | 438 | tport = kzalloc(sizeof(struct ti_port), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | if (tport == NULL) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 440 | dev_err(&dev->dev, "%s - out of memory\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | status = -ENOMEM; |
| 442 | goto free_tports; |
| 443 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | spin_lock_init(&tport->tp_lock); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 445 | tport->tp_uart_base_addr = (i == 0 ? |
| 446 | TI_UART1_BASE_ADDR : TI_UART2_BASE_ADDR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | tport->tp_flags = low_latency ? ASYNC_LOW_LATENCY : 0; |
| 448 | tport->tp_closing_wait = closing_wait; |
| 449 | init_waitqueue_head(&tport->tp_msr_wait); |
| 450 | init_waitqueue_head(&tport->tp_write_wait); |
| 451 | tport->tp_write_buf = ti_buf_alloc(); |
| 452 | if (tport->tp_write_buf == NULL) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 453 | dev_err(&dev->dev, "%s - out of memory\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | kfree(tport); |
| 455 | status = -ENOMEM; |
| 456 | goto free_tports; |
| 457 | } |
| 458 | tport->tp_port = serial->port[i]; |
| 459 | tport->tp_tdev = tdev; |
| 460 | usb_set_serial_port_data(serial->port[i], tport); |
| 461 | tport->tp_uart_mode = 0; /* default is RS232 */ |
| 462 | } |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | return 0; |
| 465 | |
| 466 | free_tports: |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 467 | for (--i; i >= 0; --i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | tport = usb_get_serial_port_data(serial->port[i]); |
| 469 | ti_buf_free(tport->tp_write_buf); |
| 470 | kfree(tport); |
| 471 | usb_set_serial_port_data(serial->port[i], NULL); |
| 472 | } |
| 473 | free_tdev: |
| 474 | kfree(tdev); |
| 475 | usb_set_serial_data(serial, NULL); |
| 476 | return status; |
| 477 | } |
| 478 | |
| 479 | |
| 480 | static void ti_shutdown(struct usb_serial *serial) |
| 481 | { |
| 482 | int i; |
| 483 | struct ti_device *tdev = usb_get_serial_data(serial); |
| 484 | struct ti_port *tport; |
| 485 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 486 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 488 | for (i = 0; i < serial->num_ports; ++i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | tport = usb_get_serial_port_data(serial->port[i]); |
| 490 | if (tport) { |
| 491 | ti_buf_free(tport->tp_write_buf); |
| 492 | kfree(tport); |
| 493 | usb_set_serial_port_data(serial->port[i], NULL); |
| 494 | } |
| 495 | } |
| 496 | |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 497 | kfree(tdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | usb_set_serial_data(serial, NULL); |
| 499 | } |
| 500 | |
| 501 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 502 | static int ti_open(struct tty_struct *tty, |
| 503 | struct usb_serial_port *port, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | { |
| 505 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 506 | struct ti_device *tdev; |
| 507 | struct usb_device *dev; |
| 508 | struct urb *urb; |
| 509 | int port_number; |
| 510 | int status; |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 511 | __u16 open_settings = (__u8)(TI_PIPE_MODE_CONTINOUS | |
| 512 | TI_PIPE_TIMEOUT_ENABLE | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | (TI_TRANSFER_TIMEOUT << 2)); |
| 514 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 515 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
| 517 | if (tport == NULL) |
| 518 | return -ENODEV; |
| 519 | |
| 520 | dev = port->serial->dev; |
| 521 | tdev = tport->tp_tdev; |
| 522 | |
| 523 | /* only one open on any port on a device at a time */ |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 524 | if (mutex_lock_interruptible(&tdev->td_open_close_lock)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | return -ERESTARTSYS; |
| 526 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 527 | if (tty) |
| 528 | tty->low_latency = |
| 529 | (tport->tp_flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
| 531 | port_number = port->number - port->serial->minor; |
| 532 | |
| 533 | memset(&(tport->tp_icount), 0x00, sizeof(tport->tp_icount)); |
| 534 | |
| 535 | tport->tp_msr = 0; |
| 536 | tport->tp_shadow_mcr |= (TI_MCR_RTS | TI_MCR_DTR); |
| 537 | |
| 538 | /* start interrupt urb the first time a port is opened on this device */ |
| 539 | if (tdev->td_open_port_count == 0) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 540 | dbg("%s - start interrupt in urb", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | urb = tdev->td_serial->port[0]->interrupt_in_urb; |
| 542 | if (!urb) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 543 | dev_err(&port->dev, "%s - no interrupt urb\n", |
| 544 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | status = -EINVAL; |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 546 | goto release_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
| 548 | urb->complete = ti_interrupt_callback; |
| 549 | urb->context = tdev; |
| 550 | urb->dev = dev; |
| 551 | status = usb_submit_urb(urb, GFP_KERNEL); |
| 552 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 553 | dev_err(&port->dev, |
| 554 | "%s - submit interrupt urb failed, %d\n", |
| 555 | __func__, status); |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 556 | goto release_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
| 558 | } |
| 559 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 560 | if (tty) |
| 561 | ti_set_termios(tty, port, tty->termios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 563 | dbg("%s - sending TI_OPEN_PORT", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | status = ti_command_out_sync(tdev, TI_OPEN_PORT, |
| 565 | (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0); |
| 566 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 567 | dev_err(&port->dev, "%s - cannot send open command, %d\n", |
| 568 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | goto unlink_int_urb; |
| 570 | } |
| 571 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 572 | dbg("%s - sending TI_START_PORT", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | status = ti_command_out_sync(tdev, TI_START_PORT, |
| 574 | (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0); |
| 575 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 576 | dev_err(&port->dev, "%s - cannot send start command, %d\n", |
| 577 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | goto unlink_int_urb; |
| 579 | } |
| 580 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 581 | dbg("%s - sending TI_PURGE_PORT", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | status = ti_command_out_sync(tdev, TI_PURGE_PORT, |
| 583 | (__u8)(TI_UART1_PORT + port_number), TI_PURGE_INPUT, NULL, 0); |
| 584 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 585 | dev_err(&port->dev, "%s - cannot clear input buffers, %d\n", |
| 586 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | goto unlink_int_urb; |
| 588 | } |
| 589 | status = ti_command_out_sync(tdev, TI_PURGE_PORT, |
| 590 | (__u8)(TI_UART1_PORT + port_number), TI_PURGE_OUTPUT, NULL, 0); |
| 591 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 592 | dev_err(&port->dev, "%s - cannot clear output buffers, %d\n", |
| 593 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | goto unlink_int_urb; |
| 595 | } |
| 596 | |
| 597 | /* reset the data toggle on the bulk endpoints to work around bug in |
| 598 | * host controllers where things get out of sync some times */ |
| 599 | usb_clear_halt(dev, port->write_urb->pipe); |
| 600 | usb_clear_halt(dev, port->read_urb->pipe); |
| 601 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 602 | if (tty) |
| 603 | ti_set_termios(tty, port, tty->termios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 605 | dbg("%s - sending TI_OPEN_PORT (2)", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | status = ti_command_out_sync(tdev, TI_OPEN_PORT, |
| 607 | (__u8)(TI_UART1_PORT + port_number), open_settings, NULL, 0); |
| 608 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 609 | dev_err(&port->dev, "%s - cannot send open command (2), %d\n", |
| 610 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | goto unlink_int_urb; |
| 612 | } |
| 613 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 614 | dbg("%s - sending TI_START_PORT (2)", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | status = ti_command_out_sync(tdev, TI_START_PORT, |
| 616 | (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0); |
| 617 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 618 | dev_err(&port->dev, "%s - cannot send start command (2), %d\n", |
| 619 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | goto unlink_int_urb; |
| 621 | } |
| 622 | |
| 623 | /* start read urb */ |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 624 | dbg("%s - start read urb", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | urb = port->read_urb; |
| 626 | if (!urb) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 627 | dev_err(&port->dev, "%s - no read urb\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | status = -EINVAL; |
| 629 | goto unlink_int_urb; |
| 630 | } |
| 631 | tport->tp_read_urb_state = TI_READ_URB_RUNNING; |
| 632 | urb->complete = ti_bulk_in_callback; |
| 633 | urb->context = tport; |
| 634 | urb->dev = dev; |
| 635 | status = usb_submit_urb(urb, GFP_KERNEL); |
| 636 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 637 | dev_err(&port->dev, "%s - submit read urb failed, %d\n", |
| 638 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | goto unlink_int_urb; |
| 640 | } |
| 641 | |
| 642 | tport->tp_is_open = 1; |
| 643 | ++tdev->td_open_port_count; |
| 644 | |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 645 | goto release_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
| 647 | unlink_int_urb: |
| 648 | if (tdev->td_open_port_count == 0) |
| 649 | usb_kill_urb(port->serial->port[0]->interrupt_in_urb); |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 650 | release_lock: |
| 651 | mutex_unlock(&tdev->td_open_close_lock); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 652 | dbg("%s - exit %d", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | return status; |
| 654 | } |
| 655 | |
| 656 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 657 | static void ti_close(struct tty_struct *tty, struct usb_serial_port *port, |
| 658 | struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | { |
| 660 | struct ti_device *tdev; |
| 661 | struct ti_port *tport; |
| 662 | int port_number; |
| 663 | int status; |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 664 | int do_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 666 | dbg("%s - port %d", __func__, port->number); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | tdev = usb_get_serial_data(port->serial); |
| 669 | tport = usb_get_serial_port_data(port); |
| 670 | if (tdev == NULL || tport == NULL) |
| 671 | return; |
| 672 | |
| 673 | tport->tp_is_open = 0; |
| 674 | |
| 675 | ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 1); |
| 676 | |
| 677 | usb_kill_urb(port->read_urb); |
| 678 | usb_kill_urb(port->write_urb); |
| 679 | tport->tp_write_urb_in_use = 0; |
| 680 | |
| 681 | port_number = port->number - port->serial->minor; |
| 682 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 683 | dbg("%s - sending TI_CLOSE_PORT", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | status = ti_command_out_sync(tdev, TI_CLOSE_PORT, |
| 685 | (__u8)(TI_UART1_PORT + port_number), 0, NULL, 0); |
| 686 | if (status) |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 687 | dev_err(&port->dev, |
| 688 | "%s - cannot send close port command, %d\n" |
| 689 | , __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 691 | /* if mutex_lock is interrupted, continue anyway */ |
| 692 | do_unlock = !mutex_lock_interruptible(&tdev->td_open_close_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | --tport->tp_tdev->td_open_port_count; |
| 694 | if (tport->tp_tdev->td_open_port_count <= 0) { |
| 695 | /* last port is closed, shut down interrupt urb */ |
| 696 | usb_kill_urb(port->serial->port[0]->interrupt_in_urb); |
| 697 | tport->tp_tdev->td_open_port_count = 0; |
| 698 | } |
Matthias Kaehlcke | 9da0068 | 2007-11-21 15:13:16 -0800 | [diff] [blame] | 699 | if (do_unlock) |
| 700 | mutex_unlock(&tdev->td_open_close_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 702 | dbg("%s - exit", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 706 | static int ti_write(struct tty_struct *tty, struct usb_serial_port *port, |
| 707 | const unsigned char *data, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | { |
| 709 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 710 | unsigned long flags; |
| 711 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 712 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
| 714 | if (count == 0) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 715 | dbg("%s - write request of 0 bytes", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | return 0; |
| 717 | } |
| 718 | |
| 719 | if (tport == NULL || !tport->tp_is_open) |
| 720 | return -ENODEV; |
| 721 | |
| 722 | spin_lock_irqsave(&tport->tp_lock, flags); |
| 723 | count = ti_buf_put(tport->tp_write_buf, data, count); |
| 724 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 725 | |
| 726 | ti_send(tport); |
| 727 | |
| 728 | return count; |
| 729 | } |
| 730 | |
| 731 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 732 | static int ti_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 734 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 736 | int room = 0; |
| 737 | unsigned long flags; |
| 738 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 739 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | |
| 741 | if (tport == NULL) |
| 742 | return -ENODEV; |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | spin_lock_irqsave(&tport->tp_lock, flags); |
| 745 | room = ti_buf_space_avail(tport->tp_write_buf); |
| 746 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 747 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 748 | dbg("%s - returns %d", __func__, room); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | return room; |
| 750 | } |
| 751 | |
| 752 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 753 | static int ti_chars_in_buffer(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 755 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 757 | int chars = 0; |
| 758 | unsigned long flags; |
| 759 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 760 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
| 762 | if (tport == NULL) |
| 763 | return -ENODEV; |
| 764 | |
| 765 | spin_lock_irqsave(&tport->tp_lock, flags); |
| 766 | chars = ti_buf_data_avail(tport->tp_write_buf); |
| 767 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 768 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 769 | dbg("%s - returns %d", __func__, chars); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | return chars; |
| 771 | } |
| 772 | |
| 773 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 774 | static void ti_throttle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 776 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | struct ti_port *tport = usb_get_serial_port_data(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 779 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
| 781 | if (tport == NULL) |
| 782 | return; |
| 783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | if (I_IXOFF(tty) || C_CRTSCTS(tty)) |
| 785 | ti_stop_read(tport, tty); |
| 786 | |
| 787 | } |
| 788 | |
| 789 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 790 | static void ti_unthrottle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 792 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | struct ti_port *tport = usb_get_serial_port_data(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | int status; |
| 795 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 796 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
| 798 | if (tport == NULL) |
| 799 | return; |
| 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | if (I_IXOFF(tty) || C_CRTSCTS(tty)) { |
| 802 | status = ti_restart_read(tport, tty); |
| 803 | if (status) |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 804 | dev_err(&port->dev, "%s - cannot restart read, %d\n", |
| 805 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | } |
| 807 | } |
| 808 | |
| 809 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 810 | static int ti_ioctl(struct tty_struct *tty, struct file *file, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | unsigned int cmd, unsigned long arg) |
| 812 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 813 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 815 | struct async_icount cnow; |
| 816 | struct async_icount cprev; |
| 817 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 818 | dbg("%s - port %d, cmd = 0x%04X", __func__, port->number, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
| 820 | if (tport == NULL) |
| 821 | return -ENODEV; |
| 822 | |
| 823 | switch (cmd) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 824 | case TIOCGSERIAL: |
| 825 | dbg("%s - (%d) TIOCGSERIAL", __func__, port->number); |
| 826 | return ti_get_serial_info(tport, |
| 827 | (struct serial_struct __user *)arg); |
| 828 | case TIOCSSERIAL: |
| 829 | dbg("%s - (%d) TIOCSSERIAL", __func__, port->number); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 830 | return ti_set_serial_info(tty, tport, |
| 831 | (struct serial_struct __user *)arg); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 832 | case TIOCMIWAIT: |
| 833 | dbg("%s - (%d) TIOCMIWAIT", __func__, port->number); |
| 834 | cprev = tport->tp_icount; |
| 835 | while (1) { |
| 836 | interruptible_sleep_on(&tport->tp_msr_wait); |
| 837 | if (signal_pending(current)) |
| 838 | return -ERESTARTSYS; |
| 839 | cnow = tport->tp_icount; |
| 840 | if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && |
| 841 | cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) |
| 842 | return -EIO; /* no change => error */ |
| 843 | if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || |
| 844 | ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || |
| 845 | ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) || |
| 846 | ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) |
| 847 | return 0; |
| 848 | cprev = cnow; |
| 849 | } |
| 850 | break; |
| 851 | case TIOCGICOUNT: |
| 852 | dbg("%s - (%d) TIOCGICOUNT RX=%d, TX=%d", |
| 853 | __func__, port->number, |
| 854 | tport->tp_icount.rx, tport->tp_icount.tx); |
| 855 | if (copy_to_user((void __user *)arg, &tport->tp_icount, |
| 856 | sizeof(tport->tp_icount))) |
| 857 | return -EFAULT; |
| 858 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | return -ENOIOCTLCMD; |
| 861 | } |
| 862 | |
| 863 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 864 | static void ti_set_termios(struct tty_struct *tty, |
| 865 | struct usb_serial_port *port, struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { |
| 867 | struct ti_port *tport = usb_get_serial_port_data(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | struct ti_uart_config *config; |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 869 | tcflag_t cflag, iflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | int baud; |
| 871 | int status; |
| 872 | int port_number = port->number - port->serial->minor; |
| 873 | unsigned int mcr; |
| 874 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 875 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | cflag = tty->termios->c_cflag; |
| 878 | iflag = tty->termios->c_iflag; |
| 879 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 880 | dbg("%s - cflag %08x, iflag %08x", __func__, cflag, iflag); |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 881 | dbg("%s - old clfag %08x, old iflag %08x", __func__, |
| 882 | old_termios->c_cflag, old_termios->c_iflag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | |
| 884 | if (tport == NULL) |
| 885 | return; |
| 886 | |
| 887 | config = kmalloc(sizeof(*config), GFP_KERNEL); |
| 888 | if (!config) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 889 | dev_err(&port->dev, "%s - out of memory\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | return; |
| 891 | } |
| 892 | |
| 893 | config->wFlags = 0; |
| 894 | |
| 895 | /* these flags must be set */ |
| 896 | config->wFlags |= TI_UART_ENABLE_MS_INTS; |
| 897 | config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA; |
| 898 | config->bUartMode = (__u8)(tport->tp_uart_mode); |
| 899 | |
| 900 | switch (cflag & CSIZE) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 901 | case CS5: |
| 902 | config->bDataBits = TI_UART_5_DATA_BITS; |
| 903 | break; |
| 904 | case CS6: |
| 905 | config->bDataBits = TI_UART_6_DATA_BITS; |
| 906 | break; |
| 907 | case CS7: |
| 908 | config->bDataBits = TI_UART_7_DATA_BITS; |
| 909 | break; |
| 910 | default: |
| 911 | case CS8: |
| 912 | config->bDataBits = TI_UART_8_DATA_BITS; |
| 913 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | } |
| 915 | |
Alan Cox | 537699e | 2008-01-03 17:03:11 +0000 | [diff] [blame] | 916 | /* CMSPAR isn't supported by this driver */ |
| 917 | tty->termios->c_cflag &= ~CMSPAR; |
| 918 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | if (cflag & PARENB) { |
| 920 | if (cflag & PARODD) { |
| 921 | config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING; |
| 922 | config->bParity = TI_UART_ODD_PARITY; |
| 923 | } else { |
| 924 | config->wFlags |= TI_UART_ENABLE_PARITY_CHECKING; |
| 925 | config->bParity = TI_UART_EVEN_PARITY; |
| 926 | } |
| 927 | } else { |
| 928 | config->wFlags &= ~TI_UART_ENABLE_PARITY_CHECKING; |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 929 | config->bParity = TI_UART_NO_PARITY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | } |
| 931 | |
| 932 | if (cflag & CSTOPB) |
| 933 | config->bStopBits = TI_UART_2_STOP_BITS; |
| 934 | else |
| 935 | config->bStopBits = TI_UART_1_STOP_BITS; |
| 936 | |
| 937 | if (cflag & CRTSCTS) { |
| 938 | /* RTS flow control must be off to drop RTS for baud rate B0 */ |
| 939 | if ((cflag & CBAUD) != B0) |
| 940 | config->wFlags |= TI_UART_ENABLE_RTS_IN; |
| 941 | config->wFlags |= TI_UART_ENABLE_CTS_OUT; |
| 942 | } else { |
| 943 | tty->hw_stopped = 0; |
| 944 | ti_restart_read(tport, tty); |
| 945 | } |
| 946 | |
| 947 | if (I_IXOFF(tty) || I_IXON(tty)) { |
| 948 | config->cXon = START_CHAR(tty); |
| 949 | config->cXoff = STOP_CHAR(tty); |
| 950 | |
| 951 | if (I_IXOFF(tty)) |
| 952 | config->wFlags |= TI_UART_ENABLE_X_IN; |
| 953 | else |
| 954 | ti_restart_read(tport, tty); |
| 955 | |
| 956 | if (I_IXON(tty)) |
| 957 | config->wFlags |= TI_UART_ENABLE_X_OUT; |
| 958 | } |
| 959 | |
| 960 | baud = tty_get_baud_rate(tty); |
Alan Cox | 537699e | 2008-01-03 17:03:11 +0000 | [diff] [blame] | 961 | if (!baud) |
| 962 | baud = 9600; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | if (tport->tp_tdev->td_is_3410) |
| 964 | config->wBaudRate = (__u16)((923077 + baud/2) / baud); |
| 965 | else |
| 966 | config->wBaudRate = (__u16)((461538 + baud/2) / baud); |
| 967 | |
Alan Cox | 537699e | 2008-01-03 17:03:11 +0000 | [diff] [blame] | 968 | /* FIXME: Should calculate resulting baud here and report it back */ |
| 969 | if ((cflag & CBAUD) != B0) |
| 970 | tty_encode_baud_rate(tty, baud, baud); |
| 971 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | dbg("%s - BaudRate=%d, wBaudRate=%d, wFlags=0x%04X, bDataBits=%d, bParity=%d, bStopBits=%d, cXon=%d, cXoff=%d, bUartMode=%d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 973 | __func__, baud, config->wBaudRate, config->wFlags, config->bDataBits, config->bParity, config->bStopBits, config->cXon, config->cXoff, config->bUartMode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | |
| 975 | cpu_to_be16s(&config->wBaudRate); |
| 976 | cpu_to_be16s(&config->wFlags); |
| 977 | |
| 978 | status = ti_command_out_sync(tport->tp_tdev, TI_SET_CONFIG, |
| 979 | (__u8)(TI_UART1_PORT + port_number), 0, (__u8 *)config, |
| 980 | sizeof(*config)); |
| 981 | if (status) |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 982 | dev_err(&port->dev, "%s - cannot set config on port %d, %d\n", |
| 983 | __func__, port_number, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | |
| 985 | /* SET_CONFIG asserts RTS and DTR, reset them correctly */ |
| 986 | mcr = tport->tp_shadow_mcr; |
| 987 | /* if baud rate is B0, clear RTS and DTR */ |
| 988 | if ((cflag & CBAUD) == B0) |
| 989 | mcr &= ~(TI_MCR_DTR | TI_MCR_RTS); |
| 990 | status = ti_set_mcr(tport, mcr); |
| 991 | if (status) |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 992 | dev_err(&port->dev, |
| 993 | "%s - cannot set modem control on port %d, %d\n", |
| 994 | __func__, port_number, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | |
| 996 | kfree(config); |
| 997 | } |
| 998 | |
| 999 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1000 | static int ti_tiocmget(struct tty_struct *tty, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1002 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 1004 | unsigned int result; |
| 1005 | unsigned int msr; |
| 1006 | unsigned int mcr; |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1007 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1009 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
| 1011 | if (tport == NULL) |
| 1012 | return -ENODEV; |
| 1013 | |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1014 | spin_lock_irqsave(&tport->tp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | msr = tport->tp_msr; |
| 1016 | mcr = tport->tp_shadow_mcr; |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1017 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | |
| 1019 | result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0) |
| 1020 | | ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0) |
| 1021 | | ((mcr & TI_MCR_LOOP) ? TIOCM_LOOP : 0) |
| 1022 | | ((msr & TI_MSR_CTS) ? TIOCM_CTS : 0) |
| 1023 | | ((msr & TI_MSR_CD) ? TIOCM_CAR : 0) |
| 1024 | | ((msr & TI_MSR_RI) ? TIOCM_RI : 0) |
| 1025 | | ((msr & TI_MSR_DSR) ? TIOCM_DSR : 0); |
| 1026 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1027 | dbg("%s - 0x%04X", __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
| 1029 | return result; |
| 1030 | } |
| 1031 | |
| 1032 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1033 | static int ti_tiocmset(struct tty_struct *tty, struct file *file, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | unsigned int set, unsigned int clear) |
| 1035 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1036 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 1038 | unsigned int mcr; |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1039 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1041 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | |
| 1043 | if (tport == NULL) |
| 1044 | return -ENODEV; |
| 1045 | |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1046 | spin_lock_irqsave(&tport->tp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | mcr = tport->tp_shadow_mcr; |
| 1048 | |
| 1049 | if (set & TIOCM_RTS) |
| 1050 | mcr |= TI_MCR_RTS; |
| 1051 | if (set & TIOCM_DTR) |
| 1052 | mcr |= TI_MCR_DTR; |
| 1053 | if (set & TIOCM_LOOP) |
| 1054 | mcr |= TI_MCR_LOOP; |
| 1055 | |
| 1056 | if (clear & TIOCM_RTS) |
| 1057 | mcr &= ~TI_MCR_RTS; |
| 1058 | if (clear & TIOCM_DTR) |
| 1059 | mcr &= ~TI_MCR_DTR; |
| 1060 | if (clear & TIOCM_LOOP) |
| 1061 | mcr &= ~TI_MCR_LOOP; |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1062 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
| 1064 | return ti_set_mcr(tport, mcr); |
| 1065 | } |
| 1066 | |
| 1067 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1068 | static void ti_break(struct tty_struct *tty, int break_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1070 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 1072 | int status; |
| 1073 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1074 | dbg("%s - state = %d", __func__, break_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | |
| 1076 | if (tport == NULL) |
| 1077 | return; |
| 1078 | |
| 1079 | ti_drain(tport, (tport->tp_closing_wait*HZ)/100, 0); |
| 1080 | |
| 1081 | status = ti_write_byte(tport->tp_tdev, |
| 1082 | tport->tp_uart_base_addr + TI_UART_OFFSET_LCR, |
| 1083 | TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0); |
| 1084 | |
| 1085 | if (status) |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1086 | dbg("%s - error setting break, %d", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
| 1089 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1090 | static void ti_interrupt_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 1092 | struct ti_device *tdev = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | struct usb_serial_port *port; |
| 1094 | struct usb_serial *serial = tdev->td_serial; |
| 1095 | struct ti_port *tport; |
| 1096 | struct device *dev = &urb->dev->dev; |
| 1097 | unsigned char *data = urb->transfer_buffer; |
| 1098 | int length = urb->actual_length; |
| 1099 | int port_number; |
| 1100 | int function; |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1101 | int status = urb->status; |
| 1102 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | __u8 msr; |
| 1104 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1105 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1107 | switch (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | case 0: |
| 1109 | break; |
| 1110 | case -ECONNRESET: |
| 1111 | case -ENOENT: |
| 1112 | case -ESHUTDOWN: |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1113 | dbg("%s - urb shutting down, %d", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | tdev->td_urb_error = 1; |
| 1115 | return; |
| 1116 | default: |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1117 | dev_err(dev, "%s - nonzero urb status, %d\n", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1118 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | tdev->td_urb_error = 1; |
| 1120 | goto exit; |
| 1121 | } |
| 1122 | |
| 1123 | if (length != 2) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1124 | dbg("%s - bad packet size, %d", __func__, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | goto exit; |
| 1126 | } |
| 1127 | |
| 1128 | if (data[0] == TI_CODE_HARDWARE_ERROR) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1129 | dev_err(dev, "%s - hardware error, %d\n", __func__, data[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | goto exit; |
| 1131 | } |
| 1132 | |
| 1133 | port_number = TI_GET_PORT_FROM_CODE(data[0]); |
| 1134 | function = TI_GET_FUNC_FROM_CODE(data[0]); |
| 1135 | |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1136 | dbg("%s - port_number %d, function %d, data 0x%02X", |
| 1137 | __func__, port_number, function, data[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | |
| 1139 | if (port_number >= serial->num_ports) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1140 | dev_err(dev, "%s - bad port number, %d\n", |
| 1141 | __func__, port_number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | goto exit; |
| 1143 | } |
| 1144 | |
| 1145 | port = serial->port[port_number]; |
| 1146 | |
| 1147 | tport = usb_get_serial_port_data(port); |
| 1148 | if (!tport) |
| 1149 | goto exit; |
| 1150 | |
| 1151 | switch (function) { |
| 1152 | case TI_CODE_DATA_ERROR: |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1153 | dev_err(dev, "%s - DATA ERROR, port %d, data 0x%02X\n", |
| 1154 | __func__, port_number, data[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | break; |
| 1156 | |
| 1157 | case TI_CODE_MODEM_STATUS: |
| 1158 | msr = data[1]; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1159 | dbg("%s - port %d, msr 0x%02X", __func__, port_number, msr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | ti_handle_new_msr(tport, msr); |
| 1161 | break; |
| 1162 | |
| 1163 | default: |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1164 | dev_err(dev, "%s - unknown interrupt code, 0x%02X\n", |
| 1165 | __func__, data[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | break; |
| 1167 | } |
| 1168 | |
| 1169 | exit: |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1170 | retval = usb_submit_urb(urb, GFP_ATOMIC); |
| 1171 | if (retval) |
| 1172 | dev_err(dev, "%s - resubmit interrupt urb failed, %d\n", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1173 | __func__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | } |
| 1175 | |
| 1176 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1177 | static void ti_bulk_in_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 1179 | struct ti_port *tport = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | struct usb_serial_port *port = tport->tp_port; |
| 1181 | struct device *dev = &urb->dev->dev; |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1182 | int status = urb->status; |
| 1183 | int retval = 0; |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1184 | struct tty_struct *tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1186 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1188 | switch (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | case 0: |
| 1190 | break; |
| 1191 | case -ECONNRESET: |
| 1192 | case -ENOENT: |
| 1193 | case -ESHUTDOWN: |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1194 | dbg("%s - urb shutting down, %d", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | tport->tp_tdev->td_urb_error = 1; |
| 1196 | wake_up_interruptible(&tport->tp_write_wait); |
| 1197 | return; |
| 1198 | default: |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1199 | dev_err(dev, "%s - nonzero urb status, %d\n", |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1200 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | tport->tp_tdev->td_urb_error = 1; |
| 1202 | wake_up_interruptible(&tport->tp_write_wait); |
| 1203 | } |
| 1204 | |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1205 | if (status == -EPIPE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | goto exit; |
| 1207 | |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1208 | if (status) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1209 | dev_err(dev, "%s - stopping read!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | return; |
| 1211 | } |
| 1212 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1213 | tty = tty_port_tty_get(&port->port); |
| 1214 | if (tty && urb->actual_length) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1215 | usb_serial_debug_data(debug, dev, __func__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | urb->actual_length, urb->transfer_buffer); |
| 1217 | |
| 1218 | if (!tport->tp_is_open) |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1219 | dbg("%s - port closed, dropping data", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | else |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1221 | ti_recv(&urb->dev->dev, tty, |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1222 | urb->transfer_buffer, |
| 1223 | urb->actual_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | |
| 1225 | spin_lock(&tport->tp_lock); |
| 1226 | tport->tp_icount.rx += urb->actual_length; |
| 1227 | spin_unlock(&tport->tp_lock); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1228 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | } |
| 1230 | |
| 1231 | exit: |
| 1232 | /* continue to read unless stopping */ |
| 1233 | spin_lock(&tport->tp_lock); |
| 1234 | if (tport->tp_read_urb_state == TI_READ_URB_RUNNING) { |
| 1235 | urb->dev = port->serial->dev; |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1236 | retval = usb_submit_urb(urb, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | } else if (tport->tp_read_urb_state == TI_READ_URB_STOPPING) { |
| 1238 | tport->tp_read_urb_state = TI_READ_URB_STOPPED; |
| 1239 | } |
| 1240 | spin_unlock(&tport->tp_lock); |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1241 | if (retval) |
| 1242 | dev_err(dev, "%s - resubmit read urb failed, %d\n", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1243 | __func__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1247 | static void ti_bulk_out_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 1249 | struct ti_port *tport = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | struct usb_serial_port *port = tport->tp_port; |
| 1251 | struct device *dev = &urb->dev->dev; |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1252 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1254 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | |
| 1256 | tport->tp_write_urb_in_use = 0; |
| 1257 | |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1258 | switch (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | case 0: |
| 1260 | break; |
| 1261 | case -ECONNRESET: |
| 1262 | case -ENOENT: |
| 1263 | case -ESHUTDOWN: |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1264 | dbg("%s - urb shutting down, %d", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | tport->tp_tdev->td_urb_error = 1; |
| 1266 | wake_up_interruptible(&tport->tp_write_wait); |
| 1267 | return; |
| 1268 | default: |
Greg Kroah-Hartman | 52171b4 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 1269 | dev_err(dev, "%s - nonzero urb status, %d\n", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1270 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | tport->tp_tdev->td_urb_error = 1; |
| 1272 | wake_up_interruptible(&tport->tp_write_wait); |
| 1273 | } |
| 1274 | |
| 1275 | /* send any buffered data */ |
| 1276 | ti_send(tport); |
| 1277 | } |
| 1278 | |
| 1279 | |
| 1280 | static void ti_recv(struct device *dev, struct tty_struct *tty, |
| 1281 | unsigned char *data, int length) |
| 1282 | { |
| 1283 | int cnt; |
| 1284 | |
| 1285 | do { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1286 | cnt = tty_buffer_request_room(tty, length); |
| 1287 | if (cnt < length) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1288 | dev_err(dev, "%s - dropping data, %d bytes lost\n", |
| 1289 | __func__, length - cnt); |
| 1290 | if (cnt == 0) |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1291 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | } |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 1293 | tty_insert_flip_string(tty, data, cnt); |
| 1294 | tty_flip_buffer_push(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | data += cnt; |
| 1296 | length -= cnt; |
| 1297 | } while (length > 0); |
| 1298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | } |
| 1300 | |
| 1301 | |
| 1302 | static void ti_send(struct ti_port *tport) |
| 1303 | { |
| 1304 | int count, result; |
| 1305 | struct usb_serial_port *port = tport->tp_port; |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1306 | struct tty_struct *tty = tty_port_tty_get(&port->port); /* FIXME */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | unsigned long flags; |
| 1308 | |
| 1309 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1310 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | |
| 1312 | spin_lock_irqsave(&tport->tp_lock, flags); |
| 1313 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1314 | if (tport->tp_write_urb_in_use) |
| 1315 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | |
| 1317 | count = ti_buf_get(tport->tp_write_buf, |
| 1318 | port->write_urb->transfer_buffer, |
| 1319 | port->bulk_out_size); |
| 1320 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1321 | if (count == 0) |
| 1322 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | |
| 1324 | tport->tp_write_urb_in_use = 1; |
| 1325 | |
| 1326 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 1327 | |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1328 | usb_serial_debug_data(debug, &port->dev, __func__, count, |
| 1329 | port->write_urb->transfer_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | |
| 1331 | usb_fill_bulk_urb(port->write_urb, port->serial->dev, |
| 1332 | usb_sndbulkpipe(port->serial->dev, |
| 1333 | port->bulk_out_endpointAddress), |
| 1334 | port->write_urb->transfer_buffer, count, |
| 1335 | ti_bulk_out_callback, tport); |
| 1336 | |
| 1337 | result = usb_submit_urb(port->write_urb, GFP_ATOMIC); |
| 1338 | if (result) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1339 | dev_err(&port->dev, "%s - submit write urb failed, %d\n", |
| 1340 | __func__, result); |
| 1341 | tport->tp_write_urb_in_use = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | /* TODO: reschedule ti_send */ |
| 1343 | } else { |
| 1344 | spin_lock_irqsave(&tport->tp_lock, flags); |
| 1345 | tport->tp_icount.tx += count; |
| 1346 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 1347 | } |
| 1348 | |
| 1349 | /* more room in the buffer for new writes, wakeup */ |
| 1350 | if (tty) |
| 1351 | tty_wakeup(tty); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1352 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | wake_up_interruptible(&tport->tp_write_wait); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1354 | return; |
| 1355 | unlock: |
| 1356 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 1357 | tty_kref_put(tty); |
| 1358 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | } |
| 1360 | |
| 1361 | |
| 1362 | static int ti_set_mcr(struct ti_port *tport, unsigned int mcr) |
| 1363 | { |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1364 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | int status; |
| 1366 | |
| 1367 | status = ti_write_byte(tport->tp_tdev, |
| 1368 | tport->tp_uart_base_addr + TI_UART_OFFSET_MCR, |
| 1369 | TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr); |
| 1370 | |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1371 | spin_lock_irqsave(&tport->tp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | if (!status) |
| 1373 | tport->tp_shadow_mcr = mcr; |
Alan Cox | 04ca89d | 2008-02-20 21:41:40 +0000 | [diff] [blame] | 1374 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | |
| 1376 | return status; |
| 1377 | } |
| 1378 | |
| 1379 | |
| 1380 | static int ti_get_lsr(struct ti_port *tport) |
| 1381 | { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1382 | int size, status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | struct ti_device *tdev = tport->tp_tdev; |
| 1384 | struct usb_serial_port *port = tport->tp_port; |
| 1385 | int port_number = port->number - port->serial->minor; |
| 1386 | struct ti_port_status *data; |
| 1387 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1388 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | |
| 1390 | size = sizeof(struct ti_port_status); |
| 1391 | data = kmalloc(size, GFP_KERNEL); |
| 1392 | if (!data) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1393 | dev_err(&port->dev, "%s - out of memory\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | return -ENOMEM; |
| 1395 | } |
| 1396 | |
| 1397 | status = ti_command_in_sync(tdev, TI_GET_PORT_STATUS, |
| 1398 | (__u8)(TI_UART1_PORT+port_number), 0, (__u8 *)data, size); |
| 1399 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1400 | dev_err(&port->dev, |
| 1401 | "%s - get port status command failed, %d\n", |
| 1402 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | goto free_data; |
| 1404 | } |
| 1405 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1406 | dbg("%s - lsr 0x%02X", __func__, data->bLSR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | |
| 1408 | tport->tp_lsr = data->bLSR; |
| 1409 | |
| 1410 | free_data: |
| 1411 | kfree(data); |
| 1412 | return status; |
| 1413 | } |
| 1414 | |
| 1415 | |
| 1416 | static int ti_get_serial_info(struct ti_port *tport, |
| 1417 | struct serial_struct __user *ret_arg) |
| 1418 | { |
| 1419 | struct usb_serial_port *port = tport->tp_port; |
| 1420 | struct serial_struct ret_serial; |
| 1421 | |
| 1422 | if (!ret_arg) |
| 1423 | return -EFAULT; |
| 1424 | |
| 1425 | memset(&ret_serial, 0, sizeof(ret_serial)); |
| 1426 | |
| 1427 | ret_serial.type = PORT_16550A; |
| 1428 | ret_serial.line = port->serial->minor; |
| 1429 | ret_serial.port = port->number - port->serial->minor; |
| 1430 | ret_serial.flags = tport->tp_flags; |
| 1431 | ret_serial.xmit_fifo_size = TI_WRITE_BUF_SIZE; |
| 1432 | ret_serial.baud_base = tport->tp_tdev->td_is_3410 ? 921600 : 460800; |
| 1433 | ret_serial.closing_wait = tport->tp_closing_wait; |
| 1434 | |
| 1435 | if (copy_to_user(ret_arg, &ret_serial, sizeof(*ret_arg))) |
| 1436 | return -EFAULT; |
| 1437 | |
| 1438 | return 0; |
| 1439 | } |
| 1440 | |
| 1441 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1442 | static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | struct serial_struct __user *new_arg) |
| 1444 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | struct serial_struct new_serial; |
| 1446 | |
| 1447 | if (copy_from_user(&new_serial, new_arg, sizeof(new_serial))) |
| 1448 | return -EFAULT; |
| 1449 | |
| 1450 | tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS; |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1451 | tty->low_latency = (tport->tp_flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | tport->tp_closing_wait = new_serial.closing_wait; |
| 1453 | |
| 1454 | return 0; |
| 1455 | } |
| 1456 | |
| 1457 | |
| 1458 | static void ti_handle_new_msr(struct ti_port *tport, __u8 msr) |
| 1459 | { |
| 1460 | struct async_icount *icount; |
| 1461 | struct tty_struct *tty; |
| 1462 | unsigned long flags; |
| 1463 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1464 | dbg("%s - msr 0x%02X", __func__, msr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | |
| 1466 | if (msr & TI_MSR_DELTA_MASK) { |
| 1467 | spin_lock_irqsave(&tport->tp_lock, flags); |
| 1468 | icount = &tport->tp_icount; |
| 1469 | if (msr & TI_MSR_DELTA_CTS) |
| 1470 | icount->cts++; |
| 1471 | if (msr & TI_MSR_DELTA_DSR) |
| 1472 | icount->dsr++; |
| 1473 | if (msr & TI_MSR_DELTA_CD) |
| 1474 | icount->dcd++; |
| 1475 | if (msr & TI_MSR_DELTA_RI) |
| 1476 | icount->rng++; |
| 1477 | wake_up_interruptible(&tport->tp_msr_wait); |
| 1478 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 1479 | } |
| 1480 | |
| 1481 | tport->tp_msr = msr & TI_MSR_MASK; |
| 1482 | |
| 1483 | /* handle CTS flow control */ |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1484 | tty = tty_port_tty_get(&tport->tp_port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | if (tty && C_CRTSCTS(tty)) { |
| 1486 | if (msr & TI_MSR_CTS) { |
| 1487 | tty->hw_stopped = 0; |
| 1488 | tty_wakeup(tty); |
| 1489 | } else { |
| 1490 | tty->hw_stopped = 1; |
| 1491 | } |
| 1492 | } |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 1493 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | } |
| 1495 | |
| 1496 | |
| 1497 | static void ti_drain(struct ti_port *tport, unsigned long timeout, int flush) |
| 1498 | { |
| 1499 | struct ti_device *tdev = tport->tp_tdev; |
| 1500 | struct usb_serial_port *port = tport->tp_port; |
| 1501 | wait_queue_t wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1503 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1505 | spin_lock_irq(&tport->tp_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | |
| 1507 | /* wait for data to drain from the buffer */ |
| 1508 | tdev->td_urb_error = 0; |
| 1509 | init_waitqueue_entry(&wait, current); |
| 1510 | add_wait_queue(&tport->tp_write_wait, &wait); |
| 1511 | for (;;) { |
| 1512 | set_current_state(TASK_INTERRUPTIBLE); |
| 1513 | if (ti_buf_data_avail(tport->tp_write_buf) == 0 |
| 1514 | || timeout == 0 || signal_pending(current) |
| 1515 | || tdev->td_urb_error |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1516 | || port->serial->disconnected) /* disconnect */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | break; |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1518 | spin_unlock_irq(&tport->tp_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | timeout = schedule_timeout(timeout); |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1520 | spin_lock_irq(&tport->tp_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | } |
| 1522 | set_current_state(TASK_RUNNING); |
| 1523 | remove_wait_queue(&tport->tp_write_wait, &wait); |
| 1524 | |
| 1525 | /* flush any remaining data in the buffer */ |
| 1526 | if (flush) |
| 1527 | ti_buf_clear(tport->tp_write_buf); |
| 1528 | |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1529 | spin_unlock_irq(&tport->tp_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1531 | mutex_lock(&port->serial->disc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | /* wait for data to drain from the device */ |
| 1533 | /* wait for empty tx register, plus 20 ms */ |
| 1534 | timeout += jiffies; |
| 1535 | tport->tp_lsr &= ~TI_LSR_TX_EMPTY; |
| 1536 | while ((long)(jiffies - timeout) < 0 && !signal_pending(current) |
| 1537 | && !(tport->tp_lsr&TI_LSR_TX_EMPTY) && !tdev->td_urb_error |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1538 | && !port->serial->disconnected) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | if (ti_get_lsr(tport)) |
| 1540 | break; |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1541 | mutex_unlock(&port->serial->disc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | msleep_interruptible(20); |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1543 | mutex_lock(&port->serial->disc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | } |
Oliver Neukum | 0915f49 | 2008-01-23 12:28:45 +0100 | [diff] [blame] | 1545 | mutex_unlock(&port->serial->disc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | } |
| 1547 | |
| 1548 | |
| 1549 | static void ti_stop_read(struct ti_port *tport, struct tty_struct *tty) |
| 1550 | { |
| 1551 | unsigned long flags; |
| 1552 | |
| 1553 | spin_lock_irqsave(&tport->tp_lock, flags); |
| 1554 | |
| 1555 | if (tport->tp_read_urb_state == TI_READ_URB_RUNNING) |
| 1556 | tport->tp_read_urb_state = TI_READ_URB_STOPPING; |
| 1557 | |
| 1558 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 1559 | } |
| 1560 | |
| 1561 | |
| 1562 | static int ti_restart_read(struct ti_port *tport, struct tty_struct *tty) |
| 1563 | { |
| 1564 | struct urb *urb; |
| 1565 | int status = 0; |
| 1566 | unsigned long flags; |
| 1567 | |
| 1568 | spin_lock_irqsave(&tport->tp_lock, flags); |
| 1569 | |
| 1570 | if (tport->tp_read_urb_state == TI_READ_URB_STOPPED) { |
Oliver Neukum | 944dc18 | 2007-05-07 08:33:18 +0200 | [diff] [blame] | 1571 | tport->tp_read_urb_state = TI_READ_URB_RUNNING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | urb = tport->tp_port->read_urb; |
Oliver Neukum | 944dc18 | 2007-05-07 08:33:18 +0200 | [diff] [blame] | 1573 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | urb->complete = ti_bulk_in_callback; |
| 1575 | urb->context = tport; |
| 1576 | urb->dev = tport->tp_port->serial->dev; |
| 1577 | status = usb_submit_urb(urb, GFP_KERNEL); |
Oliver Neukum | 944dc18 | 2007-05-07 08:33:18 +0200 | [diff] [blame] | 1578 | } else { |
| 1579 | tport->tp_read_urb_state = TI_READ_URB_RUNNING; |
| 1580 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | |
| 1583 | return status; |
| 1584 | } |
| 1585 | |
| 1586 | |
| 1587 | static int ti_command_out_sync(struct ti_device *tdev, __u8 command, |
| 1588 | __u16 moduleid, __u16 value, __u8 *data, int size) |
| 1589 | { |
| 1590 | int status; |
| 1591 | |
| 1592 | status = usb_control_msg(tdev->td_serial->dev, |
| 1593 | usb_sndctrlpipe(tdev->td_serial->dev, 0), command, |
| 1594 | (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT), |
| 1595 | value, moduleid, data, size, 1000); |
| 1596 | |
| 1597 | if (status == size) |
| 1598 | status = 0; |
| 1599 | |
| 1600 | if (status > 0) |
| 1601 | status = -ECOMM; |
| 1602 | |
| 1603 | return status; |
| 1604 | } |
| 1605 | |
| 1606 | |
| 1607 | static int ti_command_in_sync(struct ti_device *tdev, __u8 command, |
| 1608 | __u16 moduleid, __u16 value, __u8 *data, int size) |
| 1609 | { |
| 1610 | int status; |
| 1611 | |
| 1612 | status = usb_control_msg(tdev->td_serial->dev, |
| 1613 | usb_rcvctrlpipe(tdev->td_serial->dev, 0), command, |
| 1614 | (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN), |
| 1615 | value, moduleid, data, size, 1000); |
| 1616 | |
| 1617 | if (status == size) |
| 1618 | status = 0; |
| 1619 | |
| 1620 | if (status > 0) |
| 1621 | status = -ECOMM; |
| 1622 | |
| 1623 | return status; |
| 1624 | } |
| 1625 | |
| 1626 | |
| 1627 | static int ti_write_byte(struct ti_device *tdev, unsigned long addr, |
| 1628 | __u8 mask, __u8 byte) |
| 1629 | { |
| 1630 | int status; |
| 1631 | unsigned int size; |
| 1632 | struct ti_write_data_bytes *data; |
| 1633 | struct device *dev = &tdev->td_serial->dev->dev; |
| 1634 | |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1635 | dbg("%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X", |
| 1636 | __func__, addr, mask, byte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | |
| 1638 | size = sizeof(struct ti_write_data_bytes) + 2; |
| 1639 | data = kmalloc(size, GFP_KERNEL); |
| 1640 | if (!data) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1641 | dev_err(dev, "%s - out of memory\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | return -ENOMEM; |
| 1643 | } |
| 1644 | |
| 1645 | data->bAddrType = TI_RW_DATA_ADDR_XDATA; |
| 1646 | data->bDataType = TI_RW_DATA_BYTE; |
| 1647 | data->bDataCounter = 1; |
| 1648 | data->wBaseAddrHi = cpu_to_be16(addr>>16); |
| 1649 | data->wBaseAddrLo = cpu_to_be16(addr); |
| 1650 | data->bData[0] = mask; |
| 1651 | data->bData[1] = byte; |
| 1652 | |
| 1653 | status = ti_command_out_sync(tdev, TI_WRITE_DATA, TI_RAM_PORT, 0, |
| 1654 | (__u8 *)data, size); |
| 1655 | |
| 1656 | if (status < 0) |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1657 | dev_err(dev, "%s - failed, %d\n", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | |
| 1659 | kfree(data); |
| 1660 | |
| 1661 | return status; |
| 1662 | } |
| 1663 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1664 | static int ti_do_download(struct usb_device *dev, int pipe, |
| 1665 | u8 *buffer, int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | int pos; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1668 | u8 cs = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | int done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | struct ti_firmware_header *header; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1671 | int status; |
| 1672 | int len; |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1673 | |
| 1674 | for (pos = sizeof(struct ti_firmware_header); pos < size; pos++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | cs = (__u8)(cs + buffer[pos]); |
| 1676 | |
| 1677 | header = (struct ti_firmware_header *)buffer; |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1678 | header->wLength = cpu_to_le16((__u16)(size |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1679 | - sizeof(struct ti_firmware_header))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | header->bCheckSum = cs; |
| 1681 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1682 | dbg("%s - downloading firmware", __func__); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1683 | for (pos = 0; pos < size; pos += done) { |
| 1684 | len = min(size - pos, TI_DOWNLOAD_MAX_PACKET_SIZE); |
| 1685 | status = usb_bulk_msg(dev, pipe, buffer + pos, len, |
| 1686 | &done, 1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | if (status) |
| 1688 | break; |
| 1689 | } |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1690 | return status; |
| 1691 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 1693 | static int ti_download_firmware(struct ti_device *tdev) |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1694 | { |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 1695 | int status; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1696 | int buffer_size; |
| 1697 | __u8 *buffer; |
| 1698 | struct usb_device *dev = tdev->td_serial->dev; |
| 1699 | unsigned int pipe = usb_sndbulkpipe(dev, |
| 1700 | tdev->td_serial->port[0]->bulk_out_endpointAddress); |
| 1701 | const struct firmware *fw_p; |
| 1702 | char buf[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 1704 | /* try ID specific firmware first, then try generic firmware */ |
| 1705 | sprintf(buf, "ti_usb-v%04x-p%04x.fw", dev->descriptor.idVendor, |
| 1706 | dev->descriptor.idProduct); |
| 1707 | if ((status = request_firmware(&fw_p, buf, &dev->dev)) != 0) { |
Chris Adams | cb7a7c6 | 2009-01-11 19:49:00 +0000 | [diff] [blame] | 1708 | buf[0] = '\0'; |
| 1709 | if (dev->descriptor.idVendor == MTS_VENDOR_ID) { |
| 1710 | switch (dev->descriptor.idProduct) { |
| 1711 | case MTS_CDMA_PRODUCT_ID: |
| 1712 | strcpy(buf, "mts_cdma.fw"); |
| 1713 | break; |
| 1714 | case MTS_GSM_PRODUCT_ID: |
| 1715 | strcpy(buf, "mts_gsm.fw"); |
| 1716 | break; |
| 1717 | case MTS_EDGE_PRODUCT_ID: |
| 1718 | strcpy(buf, "mts_edge.fw"); |
| 1719 | break; |
| 1720 | } |
| 1721 | } |
| 1722 | if (buf[0] == '\0') { |
| 1723 | if (tdev->td_is_3410) |
| 1724 | strcpy(buf, "ti_3410.fw"); |
| 1725 | else |
| 1726 | strcpy(buf, "ti_5052.fw"); |
| 1727 | } |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 1728 | status = request_firmware(&fw_p, buf, &dev->dev); |
| 1729 | } |
| 1730 | if (status) { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1731 | dev_err(&dev->dev, "%s - firmware not found\n", __func__); |
| 1732 | return -ENOENT; |
| 1733 | } |
| 1734 | if (fw_p->size > TI_FIRMWARE_BUF_SIZE) { |
| 1735 | dev_err(&dev->dev, "%s - firmware too large\n", __func__); |
| 1736 | return -ENOENT; |
| 1737 | } |
| 1738 | |
| 1739 | buffer_size = TI_FIRMWARE_BUF_SIZE + sizeof(struct ti_firmware_header); |
| 1740 | buffer = kmalloc(buffer_size, GFP_KERNEL); |
| 1741 | if (buffer) { |
| 1742 | memcpy(buffer, fw_p->data, fw_p->size); |
| 1743 | memset(buffer + fw_p->size, 0xff, buffer_size - fw_p->size); |
Chris Adams | 2bcbe4c1 | 2008-09-10 14:11:38 -0700 | [diff] [blame] | 1744 | status = ti_do_download(dev, pipe, buffer, fw_p->size); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1745 | kfree(buffer); |
Chris Adams | 05a3d90 | 2009-01-11 19:48:53 +0000 | [diff] [blame] | 1746 | } else { |
| 1747 | status = -ENOMEM; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 1748 | } |
| 1749 | release_firmware(fw_p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | if (status) { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1751 | dev_err(&dev->dev, "%s - error downloading firmware, %d\n", |
| 1752 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | return status; |
| 1754 | } |
| 1755 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1756 | dbg("%s - download successful", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | |
| 1758 | return 0; |
| 1759 | } |
| 1760 | |
| 1761 | |
| 1762 | /* Circular Buffer Functions */ |
| 1763 | |
| 1764 | /* |
| 1765 | * ti_buf_alloc |
| 1766 | * |
| 1767 | * Allocate a circular buffer and all associated memory. |
| 1768 | */ |
| 1769 | |
| 1770 | static struct circ_buf *ti_buf_alloc(void) |
| 1771 | { |
| 1772 | struct circ_buf *cb; |
| 1773 | |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 1774 | cb = kmalloc(sizeof(struct circ_buf), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | if (cb == NULL) |
| 1776 | return NULL; |
| 1777 | |
| 1778 | cb->buf = kmalloc(TI_WRITE_BUF_SIZE, GFP_KERNEL); |
| 1779 | if (cb->buf == NULL) { |
| 1780 | kfree(cb); |
| 1781 | return NULL; |
| 1782 | } |
| 1783 | |
| 1784 | ti_buf_clear(cb); |
| 1785 | |
| 1786 | return cb; |
| 1787 | } |
| 1788 | |
| 1789 | |
| 1790 | /* |
| 1791 | * ti_buf_free |
| 1792 | * |
| 1793 | * Free the buffer and all associated memory. |
| 1794 | */ |
| 1795 | |
| 1796 | static void ti_buf_free(struct circ_buf *cb) |
| 1797 | { |
| 1798 | kfree(cb->buf); |
| 1799 | kfree(cb); |
| 1800 | } |
| 1801 | |
| 1802 | |
| 1803 | /* |
| 1804 | * ti_buf_clear |
| 1805 | * |
| 1806 | * Clear out all data in the circular buffer. |
| 1807 | */ |
| 1808 | |
| 1809 | static void ti_buf_clear(struct circ_buf *cb) |
| 1810 | { |
| 1811 | cb->head = cb->tail = 0; |
| 1812 | } |
| 1813 | |
| 1814 | |
| 1815 | /* |
| 1816 | * ti_buf_data_avail |
| 1817 | * |
| 1818 | * Return the number of bytes of data available in the circular |
| 1819 | * buffer. |
| 1820 | */ |
| 1821 | |
| 1822 | static int ti_buf_data_avail(struct circ_buf *cb) |
| 1823 | { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1824 | return CIRC_CNT(cb->head, cb->tail, TI_WRITE_BUF_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | } |
| 1826 | |
| 1827 | |
| 1828 | /* |
| 1829 | * ti_buf_space_avail |
| 1830 | * |
| 1831 | * Return the number of bytes of space available in the circular |
| 1832 | * buffer. |
| 1833 | */ |
| 1834 | |
| 1835 | static int ti_buf_space_avail(struct circ_buf *cb) |
| 1836 | { |
Alan Cox | a30fa79 | 2008-07-22 11:15:17 +0100 | [diff] [blame] | 1837 | return CIRC_SPACE(cb->head, cb->tail, TI_WRITE_BUF_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | } |
| 1839 | |
| 1840 | |
| 1841 | /* |
| 1842 | * ti_buf_put |
| 1843 | * |
| 1844 | * Copy data data from a user buffer and put it into the circular buffer. |
| 1845 | * Restrict to the amount of space available. |
| 1846 | * |
| 1847 | * Return the number of bytes copied. |
| 1848 | */ |
| 1849 | |
| 1850 | static int ti_buf_put(struct circ_buf *cb, const char *buf, int count) |
| 1851 | { |
| 1852 | int c, ret = 0; |
| 1853 | |
| 1854 | while (1) { |
| 1855 | c = CIRC_SPACE_TO_END(cb->head, cb->tail, TI_WRITE_BUF_SIZE); |
| 1856 | if (count < c) |
| 1857 | c = count; |
| 1858 | if (c <= 0) |
| 1859 | break; |
| 1860 | memcpy(cb->buf + cb->head, buf, c); |
| 1861 | cb->head = (cb->head + c) & (TI_WRITE_BUF_SIZE-1); |
| 1862 | buf += c; |
| 1863 | count -= c; |
| 1864 | ret += c; |
| 1865 | } |
| 1866 | |
| 1867 | return ret; |
| 1868 | } |
| 1869 | |
| 1870 | |
| 1871 | /* |
| 1872 | * ti_buf_get |
| 1873 | * |
| 1874 | * Get data from the circular buffer and copy to the given buffer. |
| 1875 | * Restrict to the amount of data available. |
| 1876 | * |
| 1877 | * Return the number of bytes copied. |
| 1878 | */ |
| 1879 | |
| 1880 | static int ti_buf_get(struct circ_buf *cb, char *buf, int count) |
| 1881 | { |
| 1882 | int c, ret = 0; |
| 1883 | |
| 1884 | while (1) { |
| 1885 | c = CIRC_CNT_TO_END(cb->head, cb->tail, TI_WRITE_BUF_SIZE); |
| 1886 | if (count < c) |
| 1887 | c = count; |
| 1888 | if (c <= 0) |
| 1889 | break; |
| 1890 | memcpy(buf, cb->buf + cb->tail, c); |
| 1891 | cb->tail = (cb->tail + c) & (TI_WRITE_BUF_SIZE-1); |
| 1892 | buf += c; |
| 1893 | count -= c; |
| 1894 | ret += c; |
| 1895 | } |
| 1896 | |
| 1897 | return ret; |
| 1898 | } |