3 * TI 3410/5052 USB Serial Driver
5 * Copyright (C) 2004 Texas Instruments
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
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.
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>.
21 #include <linux/kernel.h>
22 #include <linux/errno.h>
23 #include <linux/firmware.h>
24 #include <linux/slab.h>
25 #include <linux/tty.h>
26 #include <linux/tty_driver.h>
27 #include <linux/tty_flip.h>
28 #include <linux/module.h>
29 #include <linux/spinlock.h>
30 #include <linux/ioctl.h>
31 #include <linux/serial.h>
32 #include <linux/kfifo.h>
33 #include <linux/mutex.h>
34 #include <linux/uaccess.h>
35 #include <linux/usb.h>
36 #include <linux/usb/serial.h>
38 #include "ti_usb_3410_5052.h"
42 #define TI_DRIVER_AUTHOR "Al Borchers <alborchers@steinerpoint.com>"
43 #define TI_DRIVER_DESC "TI USB 3410/5052 Serial Driver"
45 #define TI_FIRMWARE_BUF_SIZE 16284
47 #define TI_TRANSFER_TIMEOUT 2
49 #define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */
51 /* supported setserial flags */
52 #define TI_SET_SERIAL_FLAGS 0
55 #define TI_READ_URB_RUNNING 0
56 #define TI_READ_URB_STOPPING 1
57 #define TI_READ_URB_STOPPED 2
59 #define TI_EXTRA_VID_PID_COUNT 5
68 __u8 tp_uart_mode
; /* 232 or 485 modes */
69 unsigned int tp_uart_base_addr
;
71 struct ti_device
*tp_tdev
;
72 struct usb_serial_port
*tp_port
;
74 int tp_read_urb_state
;
75 int tp_write_urb_in_use
;
79 struct mutex td_open_close_lock
;
80 int td_open_port_count
;
81 struct usb_serial
*td_serial
;
87 /* Function Declarations */
89 static int ti_startup(struct usb_serial
*serial
);
90 static void ti_release(struct usb_serial
*serial
);
91 static int ti_port_probe(struct usb_serial_port
*port
);
92 static int ti_port_remove(struct usb_serial_port
*port
);
93 static int ti_open(struct tty_struct
*tty
, struct usb_serial_port
*port
);
94 static void ti_close(struct usb_serial_port
*port
);
95 static int ti_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
96 const unsigned char *data
, int count
);
97 static int ti_write_room(struct tty_struct
*tty
);
98 static int ti_chars_in_buffer(struct tty_struct
*tty
);
99 static bool ti_tx_empty(struct usb_serial_port
*port
);
100 static void ti_throttle(struct tty_struct
*tty
);
101 static void ti_unthrottle(struct tty_struct
*tty
);
102 static int ti_ioctl(struct tty_struct
*tty
,
103 unsigned int cmd
, unsigned long arg
);
104 static void ti_set_termios(struct tty_struct
*tty
,
105 struct usb_serial_port
*port
, struct ktermios
*old_termios
);
106 static int ti_tiocmget(struct tty_struct
*tty
);
107 static int ti_tiocmset(struct tty_struct
*tty
,
108 unsigned int set
, unsigned int clear
);
109 static void ti_break(struct tty_struct
*tty
, int break_state
);
110 static void ti_interrupt_callback(struct urb
*urb
);
111 static void ti_bulk_in_callback(struct urb
*urb
);
112 static void ti_bulk_out_callback(struct urb
*urb
);
114 static void ti_recv(struct usb_serial_port
*port
, unsigned char *data
,
116 static void ti_send(struct ti_port
*tport
);
117 static int ti_set_mcr(struct ti_port
*tport
, unsigned int mcr
);
118 static int ti_get_lsr(struct ti_port
*tport
, u8
*lsr
);
119 static int ti_get_serial_info(struct ti_port
*tport
,
120 struct serial_struct __user
*ret_arg
);
121 static int ti_set_serial_info(struct tty_struct
*tty
, struct ti_port
*tport
,
122 struct serial_struct __user
*new_arg
);
123 static void ti_handle_new_msr(struct ti_port
*tport
, __u8 msr
);
125 static void ti_stop_read(struct ti_port
*tport
, struct tty_struct
*tty
);
126 static int ti_restart_read(struct ti_port
*tport
, struct tty_struct
*tty
);
128 static int ti_command_out_sync(struct ti_device
*tdev
, __u8 command
,
129 __u16 moduleid
, __u16 value
, __u8
*data
, int size
);
130 static int ti_command_in_sync(struct ti_device
*tdev
, __u8 command
,
131 __u16 moduleid
, __u16 value
, __u8
*data
, int size
);
133 static int ti_write_byte(struct usb_serial_port
*port
, struct ti_device
*tdev
,
134 unsigned long addr
, __u8 mask
, __u8 byte
);
136 static int ti_download_firmware(struct ti_device
*tdev
);
141 /* module parameters */
142 static int closing_wait
= TI_DEFAULT_CLOSING_WAIT
;
144 /* supported devices */
145 static const struct usb_device_id ti_id_table_3410
[] = {
146 { USB_DEVICE(TI_VENDOR_ID
, TI_3410_PRODUCT_ID
) },
147 { USB_DEVICE(TI_VENDOR_ID
, TI_3410_EZ430_ID
) },
148 { USB_DEVICE(MTS_VENDOR_ID
, MTS_GSM_NO_FW_PRODUCT_ID
) },
149 { USB_DEVICE(MTS_VENDOR_ID
, MTS_CDMA_NO_FW_PRODUCT_ID
) },
150 { USB_DEVICE(MTS_VENDOR_ID
, MTS_CDMA_PRODUCT_ID
) },
151 { USB_DEVICE(MTS_VENDOR_ID
, MTS_GSM_PRODUCT_ID
) },
152 { USB_DEVICE(MTS_VENDOR_ID
, MTS_EDGE_PRODUCT_ID
) },
153 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234MU_PRODUCT_ID
) },
154 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234ZBA_PRODUCT_ID
) },
155 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234ZBAOLD_PRODUCT_ID
) },
156 { USB_DEVICE(IBM_VENDOR_ID
, IBM_4543_PRODUCT_ID
) },
157 { USB_DEVICE(IBM_VENDOR_ID
, IBM_454B_PRODUCT_ID
) },
158 { USB_DEVICE(IBM_VENDOR_ID
, IBM_454C_PRODUCT_ID
) },
159 { USB_DEVICE(ABBOTT_VENDOR_ID
, ABBOTT_STEREO_PLUG_ID
) },
160 { USB_DEVICE(ABBOTT_VENDOR_ID
, ABBOTT_STRIP_PORT_ID
) },
161 { USB_DEVICE(TI_VENDOR_ID
, FRI2_PRODUCT_ID
) },
162 { USB_DEVICE(HONEYWELL_VENDOR_ID
, HONEYWELL_HGI80_PRODUCT_ID
) },
166 static const struct usb_device_id ti_id_table_5052
[] = {
167 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_BOOT_PRODUCT_ID
) },
168 { USB_DEVICE(TI_VENDOR_ID
, TI_5152_BOOT_PRODUCT_ID
) },
169 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_EEPROM_PRODUCT_ID
) },
170 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_FIRMWARE_PRODUCT_ID
) },
174 static const struct usb_device_id ti_id_table_combined
[] = {
175 { USB_DEVICE(TI_VENDOR_ID
, TI_3410_PRODUCT_ID
) },
176 { USB_DEVICE(TI_VENDOR_ID
, TI_3410_EZ430_ID
) },
177 { USB_DEVICE(MTS_VENDOR_ID
, MTS_GSM_NO_FW_PRODUCT_ID
) },
178 { USB_DEVICE(MTS_VENDOR_ID
, MTS_CDMA_NO_FW_PRODUCT_ID
) },
179 { USB_DEVICE(MTS_VENDOR_ID
, MTS_CDMA_PRODUCT_ID
) },
180 { USB_DEVICE(MTS_VENDOR_ID
, MTS_GSM_PRODUCT_ID
) },
181 { USB_DEVICE(MTS_VENDOR_ID
, MTS_EDGE_PRODUCT_ID
) },
182 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234MU_PRODUCT_ID
) },
183 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234ZBA_PRODUCT_ID
) },
184 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234ZBAOLD_PRODUCT_ID
) },
185 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_BOOT_PRODUCT_ID
) },
186 { USB_DEVICE(TI_VENDOR_ID
, TI_5152_BOOT_PRODUCT_ID
) },
187 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_EEPROM_PRODUCT_ID
) },
188 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_FIRMWARE_PRODUCT_ID
) },
189 { USB_DEVICE(IBM_VENDOR_ID
, IBM_4543_PRODUCT_ID
) },
190 { USB_DEVICE(IBM_VENDOR_ID
, IBM_454B_PRODUCT_ID
) },
191 { USB_DEVICE(IBM_VENDOR_ID
, IBM_454C_PRODUCT_ID
) },
192 { USB_DEVICE(ABBOTT_VENDOR_ID
, ABBOTT_PRODUCT_ID
) },
193 { USB_DEVICE(ABBOTT_VENDOR_ID
, ABBOTT_STRIP_PORT_ID
) },
194 { USB_DEVICE(TI_VENDOR_ID
, FRI2_PRODUCT_ID
) },
195 { USB_DEVICE(HONEYWELL_VENDOR_ID
, HONEYWELL_HGI80_PRODUCT_ID
) },
199 static struct usb_serial_driver ti_1port_device
= {
201 .owner
= THIS_MODULE
,
202 .name
= "ti_usb_3410_5052_1",
204 .description
= "TI USB 3410 1 port adapter",
205 .id_table
= ti_id_table_3410
,
207 .attach
= ti_startup
,
208 .release
= ti_release
,
209 .port_probe
= ti_port_probe
,
210 .port_remove
= ti_port_remove
,
214 .write_room
= ti_write_room
,
215 .chars_in_buffer
= ti_chars_in_buffer
,
216 .tx_empty
= ti_tx_empty
,
217 .throttle
= ti_throttle
,
218 .unthrottle
= ti_unthrottle
,
220 .set_termios
= ti_set_termios
,
221 .tiocmget
= ti_tiocmget
,
222 .tiocmset
= ti_tiocmset
,
223 .tiocmiwait
= usb_serial_generic_tiocmiwait
,
224 .get_icount
= usb_serial_generic_get_icount
,
225 .break_ctl
= ti_break
,
226 .read_int_callback
= ti_interrupt_callback
,
227 .read_bulk_callback
= ti_bulk_in_callback
,
228 .write_bulk_callback
= ti_bulk_out_callback
,
231 static struct usb_serial_driver ti_2port_device
= {
233 .owner
= THIS_MODULE
,
234 .name
= "ti_usb_3410_5052_2",
236 .description
= "TI USB 5052 2 port adapter",
237 .id_table
= ti_id_table_5052
,
239 .attach
= ti_startup
,
240 .release
= ti_release
,
241 .port_probe
= ti_port_probe
,
242 .port_remove
= ti_port_remove
,
246 .write_room
= ti_write_room
,
247 .chars_in_buffer
= ti_chars_in_buffer
,
248 .tx_empty
= ti_tx_empty
,
249 .throttle
= ti_throttle
,
250 .unthrottle
= ti_unthrottle
,
252 .set_termios
= ti_set_termios
,
253 .tiocmget
= ti_tiocmget
,
254 .tiocmset
= ti_tiocmset
,
255 .tiocmiwait
= usb_serial_generic_tiocmiwait
,
256 .get_icount
= usb_serial_generic_get_icount
,
257 .break_ctl
= ti_break
,
258 .read_int_callback
= ti_interrupt_callback
,
259 .read_bulk_callback
= ti_bulk_in_callback
,
260 .write_bulk_callback
= ti_bulk_out_callback
,
263 static struct usb_serial_driver
* const serial_drivers
[] = {
264 &ti_1port_device
, &ti_2port_device
, NULL
269 MODULE_AUTHOR(TI_DRIVER_AUTHOR
);
270 MODULE_DESCRIPTION(TI_DRIVER_DESC
);
271 MODULE_LICENSE("GPL");
273 MODULE_FIRMWARE("ti_3410.fw");
274 MODULE_FIRMWARE("ti_5052.fw");
275 MODULE_FIRMWARE("mts_cdma.fw");
276 MODULE_FIRMWARE("mts_gsm.fw");
277 MODULE_FIRMWARE("mts_edge.fw");
278 MODULE_FIRMWARE("mts_mt9234mu.fw");
279 MODULE_FIRMWARE("mts_mt9234zba.fw");
281 module_param(closing_wait
, int, S_IRUGO
| S_IWUSR
);
282 MODULE_PARM_DESC(closing_wait
,
283 "Maximum wait for data to drain in close, in .01 secs, default is 4000");
285 MODULE_DEVICE_TABLE(usb
, ti_id_table_combined
);
287 module_usb_serial_driver(serial_drivers
, ti_id_table_combined
);
291 static int ti_startup(struct usb_serial
*serial
)
293 struct ti_device
*tdev
;
294 struct usb_device
*dev
= serial
->dev
;
298 "%s - product 0x%4X, num configurations %d, configuration value %d\n",
299 __func__
, le16_to_cpu(dev
->descriptor
.idProduct
),
300 dev
->descriptor
.bNumConfigurations
,
301 dev
->actconfig
->desc
.bConfigurationValue
);
303 /* create device structure */
304 tdev
= kzalloc(sizeof(struct ti_device
), GFP_KERNEL
);
308 mutex_init(&tdev
->td_open_close_lock
);
309 tdev
->td_serial
= serial
;
310 usb_set_serial_data(serial
, tdev
);
312 /* determine device type */
313 if (serial
->type
== &ti_1port_device
)
314 tdev
->td_is_3410
= 1;
315 dev_dbg(&dev
->dev
, "%s - device type is %s\n", __func__
,
316 tdev
->td_is_3410
? "3410" : "5052");
318 /* if we have only 1 configuration, download firmware */
319 if (dev
->descriptor
.bNumConfigurations
== 1) {
320 status
= ti_download_firmware(tdev
);
325 /* 3410 must be reset, 5052 resets itself */
326 if (tdev
->td_is_3410
) {
327 msleep_interruptible(100);
328 usb_reset_device(dev
);
335 /* the second configuration must be set */
336 if (dev
->actconfig
->desc
.bConfigurationValue
== TI_BOOT_CONFIG
) {
337 status
= usb_driver_set_configuration(dev
, TI_ACTIVE_CONFIG
);
338 status
= status
? status
: -ENODEV
;
342 if (serial
->num_bulk_in
< serial
->num_ports
||
343 serial
->num_bulk_out
< serial
->num_ports
) {
344 dev_err(&serial
->interface
->dev
, "missing endpoints\n");
353 usb_set_serial_data(serial
, NULL
);
358 static void ti_release(struct usb_serial
*serial
)
360 struct ti_device
*tdev
= usb_get_serial_data(serial
);
365 static int ti_port_probe(struct usb_serial_port
*port
)
367 struct ti_port
*tport
;
369 tport
= kzalloc(sizeof(*tport
), GFP_KERNEL
);
373 spin_lock_init(&tport
->tp_lock
);
374 if (port
== port
->serial
->port
[0])
375 tport
->tp_uart_base_addr
= TI_UART1_BASE_ADDR
;
377 tport
->tp_uart_base_addr
= TI_UART2_BASE_ADDR
;
378 port
->port
.closing_wait
= msecs_to_jiffies(10 * closing_wait
);
379 tport
->tp_port
= port
;
380 tport
->tp_tdev
= usb_get_serial_data(port
->serial
);
381 tport
->tp_uart_mode
= 0; /* default is RS232 */
383 usb_set_serial_port_data(port
, tport
);
385 port
->port
.drain_delay
= 3;
390 static int ti_port_remove(struct usb_serial_port
*port
)
392 struct ti_port
*tport
;
394 tport
= usb_get_serial_port_data(port
);
400 static int ti_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
402 struct ti_port
*tport
= usb_get_serial_port_data(port
);
403 struct ti_device
*tdev
;
404 struct usb_device
*dev
;
408 __u16 open_settings
= (__u8
)(TI_PIPE_MODE_CONTINOUS
|
409 TI_PIPE_TIMEOUT_ENABLE
|
410 (TI_TRANSFER_TIMEOUT
<< 2));
415 dev
= port
->serial
->dev
;
416 tdev
= tport
->tp_tdev
;
418 /* only one open on any port on a device at a time */
419 if (mutex_lock_interruptible(&tdev
->td_open_close_lock
))
422 port_number
= port
->port_number
;
425 tport
->tp_shadow_mcr
|= (TI_MCR_RTS
| TI_MCR_DTR
);
427 /* start interrupt urb the first time a port is opened on this device */
428 if (tdev
->td_open_port_count
== 0) {
429 dev_dbg(&port
->dev
, "%s - start interrupt in urb\n", __func__
);
430 urb
= tdev
->td_serial
->port
[0]->interrupt_in_urb
;
432 dev_err(&port
->dev
, "%s - no interrupt urb\n", __func__
);
437 status
= usb_submit_urb(urb
, GFP_KERNEL
);
439 dev_err(&port
->dev
, "%s - submit interrupt urb failed, %d\n", __func__
, status
);
445 ti_set_termios(tty
, port
, &tty
->termios
);
447 dev_dbg(&port
->dev
, "%s - sending TI_OPEN_PORT\n", __func__
);
448 status
= ti_command_out_sync(tdev
, TI_OPEN_PORT
,
449 (__u8
)(TI_UART1_PORT
+ port_number
), open_settings
, NULL
, 0);
451 dev_err(&port
->dev
, "%s - cannot send open command, %d\n",
456 dev_dbg(&port
->dev
, "%s - sending TI_START_PORT\n", __func__
);
457 status
= ti_command_out_sync(tdev
, TI_START_PORT
,
458 (__u8
)(TI_UART1_PORT
+ port_number
), 0, NULL
, 0);
460 dev_err(&port
->dev
, "%s - cannot send start command, %d\n",
465 dev_dbg(&port
->dev
, "%s - sending TI_PURGE_PORT\n", __func__
);
466 status
= ti_command_out_sync(tdev
, TI_PURGE_PORT
,
467 (__u8
)(TI_UART1_PORT
+ port_number
), TI_PURGE_INPUT
, NULL
, 0);
469 dev_err(&port
->dev
, "%s - cannot clear input buffers, %d\n",
473 status
= ti_command_out_sync(tdev
, TI_PURGE_PORT
,
474 (__u8
)(TI_UART1_PORT
+ port_number
), TI_PURGE_OUTPUT
, NULL
, 0);
476 dev_err(&port
->dev
, "%s - cannot clear output buffers, %d\n",
481 /* reset the data toggle on the bulk endpoints to work around bug in
482 * host controllers where things get out of sync some times */
483 usb_clear_halt(dev
, port
->write_urb
->pipe
);
484 usb_clear_halt(dev
, port
->read_urb
->pipe
);
487 ti_set_termios(tty
, port
, &tty
->termios
);
489 dev_dbg(&port
->dev
, "%s - sending TI_OPEN_PORT (2)\n", __func__
);
490 status
= ti_command_out_sync(tdev
, TI_OPEN_PORT
,
491 (__u8
)(TI_UART1_PORT
+ port_number
), open_settings
, NULL
, 0);
493 dev_err(&port
->dev
, "%s - cannot send open command (2), %d\n",
498 dev_dbg(&port
->dev
, "%s - sending TI_START_PORT (2)\n", __func__
);
499 status
= ti_command_out_sync(tdev
, TI_START_PORT
,
500 (__u8
)(TI_UART1_PORT
+ port_number
), 0, NULL
, 0);
502 dev_err(&port
->dev
, "%s - cannot send start command (2), %d\n",
508 dev_dbg(&port
->dev
, "%s - start read urb\n", __func__
);
509 urb
= port
->read_urb
;
511 dev_err(&port
->dev
, "%s - no read urb\n", __func__
);
515 tport
->tp_read_urb_state
= TI_READ_URB_RUNNING
;
516 urb
->context
= tport
;
517 status
= usb_submit_urb(urb
, GFP_KERNEL
);
519 dev_err(&port
->dev
, "%s - submit read urb failed, %d\n",
524 tport
->tp_is_open
= 1;
525 ++tdev
->td_open_port_count
;
530 if (tdev
->td_open_port_count
== 0)
531 usb_kill_urb(port
->serial
->port
[0]->interrupt_in_urb
);
533 mutex_unlock(&tdev
->td_open_close_lock
);
534 dev_dbg(&port
->dev
, "%s - exit %d\n", __func__
, status
);
539 static void ti_close(struct usb_serial_port
*port
)
541 struct ti_device
*tdev
;
542 struct ti_port
*tport
;
548 tdev
= usb_get_serial_data(port
->serial
);
549 tport
= usb_get_serial_port_data(port
);
550 if (tdev
== NULL
|| tport
== NULL
)
553 tport
->tp_is_open
= 0;
555 usb_kill_urb(port
->read_urb
);
556 usb_kill_urb(port
->write_urb
);
557 tport
->tp_write_urb_in_use
= 0;
558 spin_lock_irqsave(&tport
->tp_lock
, flags
);
559 kfifo_reset_out(&port
->write_fifo
);
560 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
562 port_number
= port
->port_number
;
564 dev_dbg(&port
->dev
, "%s - sending TI_CLOSE_PORT\n", __func__
);
565 status
= ti_command_out_sync(tdev
, TI_CLOSE_PORT
,
566 (__u8
)(TI_UART1_PORT
+ port_number
), 0, NULL
, 0);
569 "%s - cannot send close port command, %d\n"
572 /* if mutex_lock is interrupted, continue anyway */
573 do_unlock
= !mutex_lock_interruptible(&tdev
->td_open_close_lock
);
574 --tport
->tp_tdev
->td_open_port_count
;
575 if (tport
->tp_tdev
->td_open_port_count
<= 0) {
576 /* last port is closed, shut down interrupt urb */
577 usb_kill_urb(port
->serial
->port
[0]->interrupt_in_urb
);
578 tport
->tp_tdev
->td_open_port_count
= 0;
581 mutex_unlock(&tdev
->td_open_close_lock
);
585 static int ti_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
586 const unsigned char *data
, int count
)
588 struct ti_port
*tport
= usb_get_serial_port_data(port
);
591 dev_dbg(&port
->dev
, "%s - write request of 0 bytes\n", __func__
);
595 if (tport
== NULL
|| !tport
->tp_is_open
)
598 count
= kfifo_in_locked(&port
->write_fifo
, data
, count
,
606 static int ti_write_room(struct tty_struct
*tty
)
608 struct usb_serial_port
*port
= tty
->driver_data
;
609 struct ti_port
*tport
= usb_get_serial_port_data(port
);
616 spin_lock_irqsave(&tport
->tp_lock
, flags
);
617 room
= kfifo_avail(&port
->write_fifo
);
618 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
620 dev_dbg(&port
->dev
, "%s - returns %d\n", __func__
, room
);
625 static int ti_chars_in_buffer(struct tty_struct
*tty
)
627 struct usb_serial_port
*port
= tty
->driver_data
;
628 struct ti_port
*tport
= usb_get_serial_port_data(port
);
635 spin_lock_irqsave(&tport
->tp_lock
, flags
);
636 chars
= kfifo_len(&port
->write_fifo
);
637 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
639 dev_dbg(&port
->dev
, "%s - returns %d\n", __func__
, chars
);
643 static bool ti_tx_empty(struct usb_serial_port
*port
)
645 struct ti_port
*tport
= usb_get_serial_port_data(port
);
649 ret
= ti_get_lsr(tport
, &lsr
);
650 if (!ret
&& !(lsr
& TI_LSR_TX_EMPTY
))
656 static void ti_throttle(struct tty_struct
*tty
)
658 struct usb_serial_port
*port
= tty
->driver_data
;
659 struct ti_port
*tport
= usb_get_serial_port_data(port
);
664 if (I_IXOFF(tty
) || C_CRTSCTS(tty
))
665 ti_stop_read(tport
, tty
);
670 static void ti_unthrottle(struct tty_struct
*tty
)
672 struct usb_serial_port
*port
= tty
->driver_data
;
673 struct ti_port
*tport
= usb_get_serial_port_data(port
);
679 if (I_IXOFF(tty
) || C_CRTSCTS(tty
)) {
680 status
= ti_restart_read(tport
, tty
);
682 dev_err(&port
->dev
, "%s - cannot restart read, %d\n",
687 static int ti_ioctl(struct tty_struct
*tty
,
688 unsigned int cmd
, unsigned long arg
)
690 struct usb_serial_port
*port
= tty
->driver_data
;
691 struct ti_port
*tport
= usb_get_serial_port_data(port
);
698 dev_dbg(&port
->dev
, "%s - TIOCGSERIAL\n", __func__
);
699 return ti_get_serial_info(tport
,
700 (struct serial_struct __user
*)arg
);
702 dev_dbg(&port
->dev
, "%s - TIOCSSERIAL\n", __func__
);
703 return ti_set_serial_info(tty
, tport
,
704 (struct serial_struct __user
*)arg
);
710 static void ti_set_termios(struct tty_struct
*tty
,
711 struct usb_serial_port
*port
, struct ktermios
*old_termios
)
713 struct ti_port
*tport
= usb_get_serial_port_data(port
);
714 struct ti_uart_config
*config
;
715 tcflag_t cflag
, iflag
;
718 int port_number
= port
->port_number
;
721 cflag
= tty
->termios
.c_cflag
;
722 iflag
= tty
->termios
.c_iflag
;
724 dev_dbg(&port
->dev
, "%s - cflag %08x, iflag %08x\n", __func__
, cflag
, iflag
);
725 dev_dbg(&port
->dev
, "%s - old clfag %08x, old iflag %08x\n", __func__
,
726 old_termios
->c_cflag
, old_termios
->c_iflag
);
731 config
= kmalloc(sizeof(*config
), GFP_KERNEL
);
737 /* these flags must be set */
738 config
->wFlags
|= TI_UART_ENABLE_MS_INTS
;
739 config
->wFlags
|= TI_UART_ENABLE_AUTO_START_DMA
;
740 config
->bUartMode
= (__u8
)(tport
->tp_uart_mode
);
742 switch (cflag
& CSIZE
) {
744 config
->bDataBits
= TI_UART_5_DATA_BITS
;
747 config
->bDataBits
= TI_UART_6_DATA_BITS
;
750 config
->bDataBits
= TI_UART_7_DATA_BITS
;
754 config
->bDataBits
= TI_UART_8_DATA_BITS
;
758 /* CMSPAR isn't supported by this driver */
759 tty
->termios
.c_cflag
&= ~CMSPAR
;
761 if (cflag
& PARENB
) {
762 if (cflag
& PARODD
) {
763 config
->wFlags
|= TI_UART_ENABLE_PARITY_CHECKING
;
764 config
->bParity
= TI_UART_ODD_PARITY
;
766 config
->wFlags
|= TI_UART_ENABLE_PARITY_CHECKING
;
767 config
->bParity
= TI_UART_EVEN_PARITY
;
770 config
->wFlags
&= ~TI_UART_ENABLE_PARITY_CHECKING
;
771 config
->bParity
= TI_UART_NO_PARITY
;
775 config
->bStopBits
= TI_UART_2_STOP_BITS
;
777 config
->bStopBits
= TI_UART_1_STOP_BITS
;
779 if (cflag
& CRTSCTS
) {
780 /* RTS flow control must be off to drop RTS for baud rate B0 */
781 if ((cflag
& CBAUD
) != B0
)
782 config
->wFlags
|= TI_UART_ENABLE_RTS_IN
;
783 config
->wFlags
|= TI_UART_ENABLE_CTS_OUT
;
785 ti_restart_read(tport
, tty
);
788 if (I_IXOFF(tty
) || I_IXON(tty
)) {
789 config
->cXon
= START_CHAR(tty
);
790 config
->cXoff
= STOP_CHAR(tty
);
793 config
->wFlags
|= TI_UART_ENABLE_X_IN
;
795 ti_restart_read(tport
, tty
);
798 config
->wFlags
|= TI_UART_ENABLE_X_OUT
;
801 baud
= tty_get_baud_rate(tty
);
804 if (tport
->tp_tdev
->td_is_3410
)
805 config
->wBaudRate
= (__u16
)((923077 + baud
/2) / baud
);
807 config
->wBaudRate
= (__u16
)((461538 + baud
/2) / baud
);
809 /* FIXME: Should calculate resulting baud here and report it back */
810 if ((cflag
& CBAUD
) != B0
)
811 tty_encode_baud_rate(tty
, baud
, baud
);
814 "%s - BaudRate=%d, wBaudRate=%d, wFlags=0x%04X, bDataBits=%d, bParity=%d, bStopBits=%d, cXon=%d, cXoff=%d, bUartMode=%d\n",
815 __func__
, baud
, config
->wBaudRate
, config
->wFlags
,
816 config
->bDataBits
, config
->bParity
, config
->bStopBits
,
817 config
->cXon
, config
->cXoff
, config
->bUartMode
);
819 cpu_to_be16s(&config
->wBaudRate
);
820 cpu_to_be16s(&config
->wFlags
);
822 status
= ti_command_out_sync(tport
->tp_tdev
, TI_SET_CONFIG
,
823 (__u8
)(TI_UART1_PORT
+ port_number
), 0, (__u8
*)config
,
826 dev_err(&port
->dev
, "%s - cannot set config on port %d, %d\n",
827 __func__
, port_number
, status
);
829 /* SET_CONFIG asserts RTS and DTR, reset them correctly */
830 mcr
= tport
->tp_shadow_mcr
;
831 /* if baud rate is B0, clear RTS and DTR */
832 if ((cflag
& CBAUD
) == B0
)
833 mcr
&= ~(TI_MCR_DTR
| TI_MCR_RTS
);
834 status
= ti_set_mcr(tport
, mcr
);
837 "%s - cannot set modem control on port %d, %d\n",
838 __func__
, port_number
, status
);
844 static int ti_tiocmget(struct tty_struct
*tty
)
846 struct usb_serial_port
*port
= tty
->driver_data
;
847 struct ti_port
*tport
= usb_get_serial_port_data(port
);
856 spin_lock_irqsave(&tport
->tp_lock
, flags
);
858 mcr
= tport
->tp_shadow_mcr
;
859 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
861 result
= ((mcr
& TI_MCR_DTR
) ? TIOCM_DTR
: 0)
862 | ((mcr
& TI_MCR_RTS
) ? TIOCM_RTS
: 0)
863 | ((mcr
& TI_MCR_LOOP
) ? TIOCM_LOOP
: 0)
864 | ((msr
& TI_MSR_CTS
) ? TIOCM_CTS
: 0)
865 | ((msr
& TI_MSR_CD
) ? TIOCM_CAR
: 0)
866 | ((msr
& TI_MSR_RI
) ? TIOCM_RI
: 0)
867 | ((msr
& TI_MSR_DSR
) ? TIOCM_DSR
: 0);
869 dev_dbg(&port
->dev
, "%s - 0x%04X\n", __func__
, result
);
875 static int ti_tiocmset(struct tty_struct
*tty
,
876 unsigned int set
, unsigned int clear
)
878 struct usb_serial_port
*port
= tty
->driver_data
;
879 struct ti_port
*tport
= usb_get_serial_port_data(port
);
886 spin_lock_irqsave(&tport
->tp_lock
, flags
);
887 mcr
= tport
->tp_shadow_mcr
;
893 if (set
& TIOCM_LOOP
)
896 if (clear
& TIOCM_RTS
)
898 if (clear
& TIOCM_DTR
)
900 if (clear
& TIOCM_LOOP
)
902 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
904 return ti_set_mcr(tport
, mcr
);
908 static void ti_break(struct tty_struct
*tty
, int break_state
)
910 struct usb_serial_port
*port
= tty
->driver_data
;
911 struct ti_port
*tport
= usb_get_serial_port_data(port
);
914 dev_dbg(&port
->dev
, "%s - state = %d\n", __func__
, break_state
);
919 status
= ti_write_byte(port
, tport
->tp_tdev
,
920 tport
->tp_uart_base_addr
+ TI_UART_OFFSET_LCR
,
921 TI_LCR_BREAK
, break_state
== -1 ? TI_LCR_BREAK
: 0);
924 dev_dbg(&port
->dev
, "%s - error setting break, %d\n", __func__
, status
);
928 static void ti_interrupt_callback(struct urb
*urb
)
930 struct ti_device
*tdev
= urb
->context
;
931 struct usb_serial_port
*port
;
932 struct usb_serial
*serial
= tdev
->td_serial
;
933 struct ti_port
*tport
;
934 struct device
*dev
= &urb
->dev
->dev
;
935 unsigned char *data
= urb
->transfer_buffer
;
936 int length
= urb
->actual_length
;
939 int status
= urb
->status
;
949 dev_dbg(dev
, "%s - urb shutting down, %d\n", __func__
, status
);
950 tdev
->td_urb_error
= 1;
953 dev_err(dev
, "%s - nonzero urb status, %d\n", __func__
, status
);
954 tdev
->td_urb_error
= 1;
959 dev_dbg(dev
, "%s - bad packet size, %d\n", __func__
, length
);
963 if (data
[0] == TI_CODE_HARDWARE_ERROR
) {
964 dev_err(dev
, "%s - hardware error, %d\n", __func__
, data
[1]);
968 port_number
= TI_GET_PORT_FROM_CODE(data
[0]);
969 function
= TI_GET_FUNC_FROM_CODE(data
[0]);
971 dev_dbg(dev
, "%s - port_number %d, function %d, data 0x%02X\n",
972 __func__
, port_number
, function
, data
[1]);
974 if (port_number
>= serial
->num_ports
) {
975 dev_err(dev
, "%s - bad port number, %d\n",
976 __func__
, port_number
);
980 port
= serial
->port
[port_number
];
982 tport
= usb_get_serial_port_data(port
);
987 case TI_CODE_DATA_ERROR
:
988 dev_err(dev
, "%s - DATA ERROR, port %d, data 0x%02X\n",
989 __func__
, port_number
, data
[1]);
992 case TI_CODE_MODEM_STATUS
:
994 dev_dbg(dev
, "%s - port %d, msr 0x%02X\n", __func__
, port_number
, msr
);
995 ti_handle_new_msr(tport
, msr
);
999 dev_err(dev
, "%s - unknown interrupt code, 0x%02X\n",
1005 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
1007 dev_err(dev
, "%s - resubmit interrupt urb failed, %d\n",
1012 static void ti_bulk_in_callback(struct urb
*urb
)
1014 struct ti_port
*tport
= urb
->context
;
1015 struct usb_serial_port
*port
= tport
->tp_port
;
1016 struct device
*dev
= &urb
->dev
->dev
;
1017 int status
= urb
->status
;
1026 dev_dbg(dev
, "%s - urb shutting down, %d\n", __func__
, status
);
1027 tport
->tp_tdev
->td_urb_error
= 1;
1030 dev_err(dev
, "%s - nonzero urb status, %d\n",
1032 tport
->tp_tdev
->td_urb_error
= 1;
1035 if (status
== -EPIPE
)
1039 dev_err(dev
, "%s - stopping read!\n", __func__
);
1043 if (urb
->actual_length
) {
1044 usb_serial_debug_data(dev
, __func__
, urb
->actual_length
,
1045 urb
->transfer_buffer
);
1047 if (!tport
->tp_is_open
)
1048 dev_dbg(dev
, "%s - port closed, dropping data\n",
1051 ti_recv(port
, urb
->transfer_buffer
, urb
->actual_length
);
1052 spin_lock(&tport
->tp_lock
);
1053 port
->icount
.rx
+= urb
->actual_length
;
1054 spin_unlock(&tport
->tp_lock
);
1058 /* continue to read unless stopping */
1059 spin_lock(&tport
->tp_lock
);
1060 if (tport
->tp_read_urb_state
== TI_READ_URB_RUNNING
)
1061 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
1062 else if (tport
->tp_read_urb_state
== TI_READ_URB_STOPPING
)
1063 tport
->tp_read_urb_state
= TI_READ_URB_STOPPED
;
1065 spin_unlock(&tport
->tp_lock
);
1067 dev_err(dev
, "%s - resubmit read urb failed, %d\n",
1072 static void ti_bulk_out_callback(struct urb
*urb
)
1074 struct ti_port
*tport
= urb
->context
;
1075 struct usb_serial_port
*port
= tport
->tp_port
;
1076 int status
= urb
->status
;
1078 tport
->tp_write_urb_in_use
= 0;
1086 dev_dbg(&port
->dev
, "%s - urb shutting down, %d\n", __func__
, status
);
1087 tport
->tp_tdev
->td_urb_error
= 1;
1090 dev_err_console(port
, "%s - nonzero urb status, %d\n",
1092 tport
->tp_tdev
->td_urb_error
= 1;
1095 /* send any buffered data */
1100 static void ti_recv(struct usb_serial_port
*port
, unsigned char *data
,
1106 cnt
= tty_insert_flip_string(&port
->port
, data
, length
);
1108 dev_err(&port
->dev
, "%s - dropping data, %d bytes lost\n",
1109 __func__
, length
- cnt
);
1113 tty_flip_buffer_push(&port
->port
);
1116 } while (length
> 0);
1120 static void ti_send(struct ti_port
*tport
)
1123 struct usb_serial_port
*port
= tport
->tp_port
;
1124 unsigned long flags
;
1126 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1128 if (tport
->tp_write_urb_in_use
)
1131 count
= kfifo_out(&port
->write_fifo
,
1132 port
->write_urb
->transfer_buffer
,
1133 port
->bulk_out_size
);
1138 tport
->tp_write_urb_in_use
= 1;
1140 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1142 usb_serial_debug_data(&port
->dev
, __func__
, count
,
1143 port
->write_urb
->transfer_buffer
);
1145 usb_fill_bulk_urb(port
->write_urb
, port
->serial
->dev
,
1146 usb_sndbulkpipe(port
->serial
->dev
,
1147 port
->bulk_out_endpointAddress
),
1148 port
->write_urb
->transfer_buffer
, count
,
1149 ti_bulk_out_callback
, tport
);
1151 result
= usb_submit_urb(port
->write_urb
, GFP_ATOMIC
);
1153 dev_err_console(port
, "%s - submit write urb failed, %d\n",
1155 tport
->tp_write_urb_in_use
= 0;
1156 /* TODO: reschedule ti_send */
1158 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1159 port
->icount
.tx
+= count
;
1160 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1163 /* more room in the buffer for new writes, wakeup */
1164 tty_port_tty_wakeup(&port
->port
);
1168 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1173 static int ti_set_mcr(struct ti_port
*tport
, unsigned int mcr
)
1175 unsigned long flags
;
1178 status
= ti_write_byte(tport
->tp_port
, tport
->tp_tdev
,
1179 tport
->tp_uart_base_addr
+ TI_UART_OFFSET_MCR
,
1180 TI_MCR_RTS
| TI_MCR_DTR
| TI_MCR_LOOP
, mcr
);
1182 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1184 tport
->tp_shadow_mcr
= mcr
;
1185 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1191 static int ti_get_lsr(struct ti_port
*tport
, u8
*lsr
)
1194 struct ti_device
*tdev
= tport
->tp_tdev
;
1195 struct usb_serial_port
*port
= tport
->tp_port
;
1196 int port_number
= port
->port_number
;
1197 struct ti_port_status
*data
;
1199 size
= sizeof(struct ti_port_status
);
1200 data
= kmalloc(size
, GFP_KERNEL
);
1204 status
= ti_command_in_sync(tdev
, TI_GET_PORT_STATUS
,
1205 (__u8
)(TI_UART1_PORT
+port_number
), 0, (__u8
*)data
, size
);
1208 "%s - get port status command failed, %d\n",
1213 dev_dbg(&port
->dev
, "%s - lsr 0x%02X\n", __func__
, data
->bLSR
);
1223 static int ti_get_serial_info(struct ti_port
*tport
,
1224 struct serial_struct __user
*ret_arg
)
1226 struct usb_serial_port
*port
= tport
->tp_port
;
1227 struct serial_struct ret_serial
;
1233 cwait
= port
->port
.closing_wait
;
1234 if (cwait
!= ASYNC_CLOSING_WAIT_NONE
)
1235 cwait
= jiffies_to_msecs(cwait
) / 10;
1237 memset(&ret_serial
, 0, sizeof(ret_serial
));
1239 ret_serial
.type
= PORT_16550A
;
1240 ret_serial
.line
= port
->minor
;
1241 ret_serial
.port
= port
->port_number
;
1242 ret_serial
.flags
= tport
->tp_flags
;
1243 ret_serial
.xmit_fifo_size
= kfifo_size(&port
->write_fifo
);
1244 ret_serial
.baud_base
= tport
->tp_tdev
->td_is_3410
? 921600 : 460800;
1245 ret_serial
.closing_wait
= cwait
;
1247 if (copy_to_user(ret_arg
, &ret_serial
, sizeof(*ret_arg
)))
1254 static int ti_set_serial_info(struct tty_struct
*tty
, struct ti_port
*tport
,
1255 struct serial_struct __user
*new_arg
)
1257 struct serial_struct new_serial
;
1260 if (copy_from_user(&new_serial
, new_arg
, sizeof(new_serial
)))
1263 cwait
= new_serial
.closing_wait
;
1264 if (cwait
!= ASYNC_CLOSING_WAIT_NONE
)
1265 cwait
= msecs_to_jiffies(10 * new_serial
.closing_wait
);
1267 tport
->tp_flags
= new_serial
.flags
& TI_SET_SERIAL_FLAGS
;
1268 tport
->tp_port
->port
.closing_wait
= cwait
;
1274 static void ti_handle_new_msr(struct ti_port
*tport
, __u8 msr
)
1276 struct async_icount
*icount
;
1277 struct tty_struct
*tty
;
1278 unsigned long flags
;
1280 dev_dbg(&tport
->tp_port
->dev
, "%s - msr 0x%02X\n", __func__
, msr
);
1282 if (msr
& TI_MSR_DELTA_MASK
) {
1283 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1284 icount
= &tport
->tp_port
->icount
;
1285 if (msr
& TI_MSR_DELTA_CTS
)
1287 if (msr
& TI_MSR_DELTA_DSR
)
1289 if (msr
& TI_MSR_DELTA_CD
)
1291 if (msr
& TI_MSR_DELTA_RI
)
1293 wake_up_interruptible(&tport
->tp_port
->port
.delta_msr_wait
);
1294 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1297 tport
->tp_msr
= msr
& TI_MSR_MASK
;
1299 /* handle CTS flow control */
1300 tty
= tty_port_tty_get(&tport
->tp_port
->port
);
1301 if (tty
&& C_CRTSCTS(tty
)) {
1302 if (msr
& TI_MSR_CTS
)
1309 static void ti_stop_read(struct ti_port
*tport
, struct tty_struct
*tty
)
1311 unsigned long flags
;
1313 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1315 if (tport
->tp_read_urb_state
== TI_READ_URB_RUNNING
)
1316 tport
->tp_read_urb_state
= TI_READ_URB_STOPPING
;
1318 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1322 static int ti_restart_read(struct ti_port
*tport
, struct tty_struct
*tty
)
1326 unsigned long flags
;
1328 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1330 if (tport
->tp_read_urb_state
== TI_READ_URB_STOPPED
) {
1331 tport
->tp_read_urb_state
= TI_READ_URB_RUNNING
;
1332 urb
= tport
->tp_port
->read_urb
;
1333 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1334 urb
->context
= tport
;
1335 status
= usb_submit_urb(urb
, GFP_KERNEL
);
1337 tport
->tp_read_urb_state
= TI_READ_URB_RUNNING
;
1338 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1345 static int ti_command_out_sync(struct ti_device
*tdev
, __u8 command
,
1346 __u16 moduleid
, __u16 value
, __u8
*data
, int size
)
1350 status
= usb_control_msg(tdev
->td_serial
->dev
,
1351 usb_sndctrlpipe(tdev
->td_serial
->dev
, 0), command
,
1352 (USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
),
1353 value
, moduleid
, data
, size
, 1000);
1362 static int ti_command_in_sync(struct ti_device
*tdev
, __u8 command
,
1363 __u16 moduleid
, __u16 value
, __u8
*data
, int size
)
1367 status
= usb_control_msg(tdev
->td_serial
->dev
,
1368 usb_rcvctrlpipe(tdev
->td_serial
->dev
, 0), command
,
1369 (USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_IN
),
1370 value
, moduleid
, data
, size
, 1000);
1374 else if (status
>= 0)
1381 static int ti_write_byte(struct usb_serial_port
*port
,
1382 struct ti_device
*tdev
, unsigned long addr
,
1383 __u8 mask
, __u8 byte
)
1387 struct ti_write_data_bytes
*data
;
1389 dev_dbg(&port
->dev
, "%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X\n", __func__
,
1392 size
= sizeof(struct ti_write_data_bytes
) + 2;
1393 data
= kmalloc(size
, GFP_KERNEL
);
1397 data
->bAddrType
= TI_RW_DATA_ADDR_XDATA
;
1398 data
->bDataType
= TI_RW_DATA_BYTE
;
1399 data
->bDataCounter
= 1;
1400 data
->wBaseAddrHi
= cpu_to_be16(addr
>>16);
1401 data
->wBaseAddrLo
= cpu_to_be16(addr
);
1402 data
->bData
[0] = mask
;
1403 data
->bData
[1] = byte
;
1405 status
= ti_command_out_sync(tdev
, TI_WRITE_DATA
, TI_RAM_PORT
, 0,
1406 (__u8
*)data
, size
);
1409 dev_err(&port
->dev
, "%s - failed, %d\n", __func__
, status
);
1416 static int ti_do_download(struct usb_device
*dev
, int pipe
,
1417 u8
*buffer
, int size
)
1422 struct ti_firmware_header
*header
;
1426 for (pos
= sizeof(struct ti_firmware_header
); pos
< size
; pos
++)
1427 cs
= (__u8
)(cs
+ buffer
[pos
]);
1429 header
= (struct ti_firmware_header
*)buffer
;
1430 header
->wLength
= cpu_to_le16((__u16
)(size
1431 - sizeof(struct ti_firmware_header
)));
1432 header
->bCheckSum
= cs
;
1434 dev_dbg(&dev
->dev
, "%s - downloading firmware\n", __func__
);
1435 for (pos
= 0; pos
< size
; pos
+= done
) {
1436 len
= min(size
- pos
, TI_DOWNLOAD_MAX_PACKET_SIZE
);
1437 status
= usb_bulk_msg(dev
, pipe
, buffer
+ pos
, len
,
1445 static int ti_download_firmware(struct ti_device
*tdev
)
1450 struct usb_device
*dev
= tdev
->td_serial
->dev
;
1451 unsigned int pipe
= usb_sndbulkpipe(dev
,
1452 tdev
->td_serial
->port
[0]->bulk_out_endpointAddress
);
1453 const struct firmware
*fw_p
;
1456 /* try ID specific firmware first, then try generic firmware */
1457 sprintf(buf
, "ti_usb-v%04x-p%04x.fw",
1458 le16_to_cpu(dev
->descriptor
.idVendor
),
1459 le16_to_cpu(dev
->descriptor
.idProduct
));
1460 status
= request_firmware(&fw_p
, buf
, &dev
->dev
);
1464 if (le16_to_cpu(dev
->descriptor
.idVendor
) == MTS_VENDOR_ID
) {
1465 switch (le16_to_cpu(dev
->descriptor
.idProduct
)) {
1466 case MTS_CDMA_PRODUCT_ID
:
1467 strcpy(buf
, "mts_cdma.fw");
1469 case MTS_GSM_PRODUCT_ID
:
1470 strcpy(buf
, "mts_gsm.fw");
1472 case MTS_EDGE_PRODUCT_ID
:
1473 strcpy(buf
, "mts_edge.fw");
1475 case MTS_MT9234MU_PRODUCT_ID
:
1476 strcpy(buf
, "mts_mt9234mu.fw");
1478 case MTS_MT9234ZBA_PRODUCT_ID
:
1479 strcpy(buf
, "mts_mt9234zba.fw");
1481 case MTS_MT9234ZBAOLD_PRODUCT_ID
:
1482 strcpy(buf
, "mts_mt9234zba.fw");
1485 if (buf
[0] == '\0') {
1486 if (tdev
->td_is_3410
)
1487 strcpy(buf
, "ti_3410.fw");
1489 strcpy(buf
, "ti_5052.fw");
1491 status
= request_firmware(&fw_p
, buf
, &dev
->dev
);
1494 dev_err(&dev
->dev
, "%s - firmware not found\n", __func__
);
1497 if (fw_p
->size
> TI_FIRMWARE_BUF_SIZE
) {
1498 dev_err(&dev
->dev
, "%s - firmware too large %zu\n", __func__
, fw_p
->size
);
1499 release_firmware(fw_p
);
1503 buffer_size
= TI_FIRMWARE_BUF_SIZE
+ sizeof(struct ti_firmware_header
);
1504 buffer
= kmalloc(buffer_size
, GFP_KERNEL
);
1506 memcpy(buffer
, fw_p
->data
, fw_p
->size
);
1507 memset(buffer
+ fw_p
->size
, 0xff, buffer_size
- fw_p
->size
);
1508 status
= ti_do_download(dev
, pipe
, buffer
, fw_p
->size
);
1513 release_firmware(fw_p
);
1515 dev_err(&dev
->dev
, "%s - error downloading firmware, %d\n",
1520 dev_dbg(&dev
->dev
, "%s - download successful\n", __func__
);