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
;
88 /* Function Declarations */
90 static int ti_startup(struct usb_serial
*serial
);
91 static void ti_release(struct usb_serial
*serial
);
92 static int ti_port_probe(struct usb_serial_port
*port
);
93 static int ti_port_remove(struct usb_serial_port
*port
);
94 static int ti_open(struct tty_struct
*tty
, struct usb_serial_port
*port
);
95 static void ti_close(struct usb_serial_port
*port
);
96 static int ti_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
97 const unsigned char *data
, int count
);
98 static int ti_write_room(struct tty_struct
*tty
);
99 static int ti_chars_in_buffer(struct tty_struct
*tty
);
100 static bool ti_tx_empty(struct usb_serial_port
*port
);
101 static void ti_throttle(struct tty_struct
*tty
);
102 static void ti_unthrottle(struct tty_struct
*tty
);
103 static int ti_ioctl(struct tty_struct
*tty
,
104 unsigned int cmd
, unsigned long arg
);
105 static void ti_set_termios(struct tty_struct
*tty
,
106 struct usb_serial_port
*port
, struct ktermios
*old_termios
);
107 static int ti_tiocmget(struct tty_struct
*tty
);
108 static int ti_tiocmset(struct tty_struct
*tty
,
109 unsigned int set
, unsigned int clear
);
110 static void ti_break(struct tty_struct
*tty
, int break_state
);
111 static void ti_interrupt_callback(struct urb
*urb
);
112 static void ti_bulk_in_callback(struct urb
*urb
);
113 static void ti_bulk_out_callback(struct urb
*urb
);
115 static void ti_recv(struct usb_serial_port
*port
, unsigned char *data
,
117 static void ti_send(struct ti_port
*tport
);
118 static int ti_set_mcr(struct ti_port
*tport
, unsigned int mcr
);
119 static int ti_get_lsr(struct ti_port
*tport
, u8
*lsr
);
120 static int ti_get_serial_info(struct ti_port
*tport
,
121 struct serial_struct __user
*ret_arg
);
122 static int ti_set_serial_info(struct tty_struct
*tty
, struct ti_port
*tport
,
123 struct serial_struct __user
*new_arg
);
124 static void ti_handle_new_msr(struct ti_port
*tport
, __u8 msr
);
126 static void ti_stop_read(struct ti_port
*tport
, struct tty_struct
*tty
);
127 static int ti_restart_read(struct ti_port
*tport
, struct tty_struct
*tty
);
129 static int ti_command_out_sync(struct ti_device
*tdev
, __u8 command
,
130 __u16 moduleid
, __u16 value
, __u8
*data
, int size
);
131 static int ti_command_in_sync(struct ti_device
*tdev
, __u8 command
,
132 __u16 moduleid
, __u16 value
, __u8
*data
, int size
);
134 static int ti_write_byte(struct usb_serial_port
*port
, struct ti_device
*tdev
,
135 unsigned long addr
, __u8 mask
, __u8 byte
);
137 static int ti_download_firmware(struct ti_device
*tdev
);
142 /* module parameters */
143 static int closing_wait
= TI_DEFAULT_CLOSING_WAIT
;
145 /* supported devices */
146 static const struct usb_device_id ti_id_table_3410
[] = {
147 { USB_DEVICE(TI_VENDOR_ID
, TI_3410_PRODUCT_ID
) },
148 { USB_DEVICE(TI_VENDOR_ID
, TI_3410_EZ430_ID
) },
149 { USB_DEVICE(MTS_VENDOR_ID
, MTS_GSM_NO_FW_PRODUCT_ID
) },
150 { USB_DEVICE(MTS_VENDOR_ID
, MTS_CDMA_NO_FW_PRODUCT_ID
) },
151 { USB_DEVICE(MTS_VENDOR_ID
, MTS_CDMA_PRODUCT_ID
) },
152 { USB_DEVICE(MTS_VENDOR_ID
, MTS_GSM_PRODUCT_ID
) },
153 { USB_DEVICE(MTS_VENDOR_ID
, MTS_EDGE_PRODUCT_ID
) },
154 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234MU_PRODUCT_ID
) },
155 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234ZBA_PRODUCT_ID
) },
156 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234ZBAOLD_PRODUCT_ID
) },
157 { USB_DEVICE(IBM_VENDOR_ID
, IBM_4543_PRODUCT_ID
) },
158 { USB_DEVICE(IBM_VENDOR_ID
, IBM_454B_PRODUCT_ID
) },
159 { USB_DEVICE(IBM_VENDOR_ID
, IBM_454C_PRODUCT_ID
) },
160 { USB_DEVICE(ABBOTT_VENDOR_ID
, ABBOTT_STEREO_PLUG_ID
) },
161 { USB_DEVICE(ABBOTT_VENDOR_ID
, ABBOTT_STRIP_PORT_ID
) },
162 { USB_DEVICE(TI_VENDOR_ID
, FRI2_PRODUCT_ID
) },
163 { USB_DEVICE(HONEYWELL_VENDOR_ID
, HONEYWELL_HGI80_PRODUCT_ID
) },
164 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1110_PRODUCT_ID
) },
165 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1130_PRODUCT_ID
) },
166 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1131_PRODUCT_ID
) },
167 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1150_PRODUCT_ID
) },
168 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1151_PRODUCT_ID
) },
172 static const struct usb_device_id ti_id_table_5052
[] = {
173 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_BOOT_PRODUCT_ID
) },
174 { USB_DEVICE(TI_VENDOR_ID
, TI_5152_BOOT_PRODUCT_ID
) },
175 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_EEPROM_PRODUCT_ID
) },
176 { USB_DEVICE(TI_VENDOR_ID
, TI_5052_FIRMWARE_PRODUCT_ID
) },
180 static const struct usb_device_id ti_id_table_combined
[] = {
181 { USB_DEVICE(TI_VENDOR_ID
, TI_3410_PRODUCT_ID
) },
182 { USB_DEVICE(TI_VENDOR_ID
, TI_3410_EZ430_ID
) },
183 { USB_DEVICE(MTS_VENDOR_ID
, MTS_GSM_NO_FW_PRODUCT_ID
) },
184 { USB_DEVICE(MTS_VENDOR_ID
, MTS_CDMA_NO_FW_PRODUCT_ID
) },
185 { USB_DEVICE(MTS_VENDOR_ID
, MTS_CDMA_PRODUCT_ID
) },
186 { USB_DEVICE(MTS_VENDOR_ID
, MTS_GSM_PRODUCT_ID
) },
187 { USB_DEVICE(MTS_VENDOR_ID
, MTS_EDGE_PRODUCT_ID
) },
188 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234MU_PRODUCT_ID
) },
189 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234ZBA_PRODUCT_ID
) },
190 { USB_DEVICE(MTS_VENDOR_ID
, MTS_MT9234ZBAOLD_PRODUCT_ID
) },
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
) },
195 { USB_DEVICE(IBM_VENDOR_ID
, IBM_4543_PRODUCT_ID
) },
196 { USB_DEVICE(IBM_VENDOR_ID
, IBM_454B_PRODUCT_ID
) },
197 { USB_DEVICE(IBM_VENDOR_ID
, IBM_454C_PRODUCT_ID
) },
198 { USB_DEVICE(ABBOTT_VENDOR_ID
, ABBOTT_PRODUCT_ID
) },
199 { USB_DEVICE(ABBOTT_VENDOR_ID
, ABBOTT_STRIP_PORT_ID
) },
200 { USB_DEVICE(TI_VENDOR_ID
, FRI2_PRODUCT_ID
) },
201 { USB_DEVICE(HONEYWELL_VENDOR_ID
, HONEYWELL_HGI80_PRODUCT_ID
) },
202 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1110_PRODUCT_ID
) },
203 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1130_PRODUCT_ID
) },
204 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1131_PRODUCT_ID
) },
205 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1150_PRODUCT_ID
) },
206 { USB_DEVICE(MXU1_VENDOR_ID
, MXU1_1151_PRODUCT_ID
) },
210 static struct usb_serial_driver ti_1port_device
= {
212 .owner
= THIS_MODULE
,
213 .name
= "ti_usb_3410_5052_1",
215 .description
= "TI USB 3410 1 port adapter",
216 .id_table
= ti_id_table_3410
,
218 .attach
= ti_startup
,
219 .release
= ti_release
,
220 .port_probe
= ti_port_probe
,
221 .port_remove
= ti_port_remove
,
225 .write_room
= ti_write_room
,
226 .chars_in_buffer
= ti_chars_in_buffer
,
227 .tx_empty
= ti_tx_empty
,
228 .throttle
= ti_throttle
,
229 .unthrottle
= ti_unthrottle
,
231 .set_termios
= ti_set_termios
,
232 .tiocmget
= ti_tiocmget
,
233 .tiocmset
= ti_tiocmset
,
234 .tiocmiwait
= usb_serial_generic_tiocmiwait
,
235 .get_icount
= usb_serial_generic_get_icount
,
236 .break_ctl
= ti_break
,
237 .read_int_callback
= ti_interrupt_callback
,
238 .read_bulk_callback
= ti_bulk_in_callback
,
239 .write_bulk_callback
= ti_bulk_out_callback
,
242 static struct usb_serial_driver ti_2port_device
= {
244 .owner
= THIS_MODULE
,
245 .name
= "ti_usb_3410_5052_2",
247 .description
= "TI USB 5052 2 port adapter",
248 .id_table
= ti_id_table_5052
,
250 .attach
= ti_startup
,
251 .release
= ti_release
,
252 .port_probe
= ti_port_probe
,
253 .port_remove
= ti_port_remove
,
257 .write_room
= ti_write_room
,
258 .chars_in_buffer
= ti_chars_in_buffer
,
259 .tx_empty
= ti_tx_empty
,
260 .throttle
= ti_throttle
,
261 .unthrottle
= ti_unthrottle
,
263 .set_termios
= ti_set_termios
,
264 .tiocmget
= ti_tiocmget
,
265 .tiocmset
= ti_tiocmset
,
266 .tiocmiwait
= usb_serial_generic_tiocmiwait
,
267 .get_icount
= usb_serial_generic_get_icount
,
268 .break_ctl
= ti_break
,
269 .read_int_callback
= ti_interrupt_callback
,
270 .read_bulk_callback
= ti_bulk_in_callback
,
271 .write_bulk_callback
= ti_bulk_out_callback
,
274 static struct usb_serial_driver
* const serial_drivers
[] = {
275 &ti_1port_device
, &ti_2port_device
, NULL
280 MODULE_AUTHOR(TI_DRIVER_AUTHOR
);
281 MODULE_DESCRIPTION(TI_DRIVER_DESC
);
282 MODULE_LICENSE("GPL");
284 MODULE_FIRMWARE("ti_3410.fw");
285 MODULE_FIRMWARE("ti_5052.fw");
286 MODULE_FIRMWARE("mts_cdma.fw");
287 MODULE_FIRMWARE("mts_gsm.fw");
288 MODULE_FIRMWARE("mts_edge.fw");
289 MODULE_FIRMWARE("mts_mt9234mu.fw");
290 MODULE_FIRMWARE("mts_mt9234zba.fw");
291 MODULE_FIRMWARE("moxa/moxa-1110.fw");
292 MODULE_FIRMWARE("moxa/moxa-1130.fw");
293 MODULE_FIRMWARE("moxa/moxa-1131.fw");
294 MODULE_FIRMWARE("moxa/moxa-1150.fw");
295 MODULE_FIRMWARE("moxa/moxa-1151.fw");
297 module_param(closing_wait
, int, S_IRUGO
| S_IWUSR
);
298 MODULE_PARM_DESC(closing_wait
,
299 "Maximum wait for data to drain in close, in .01 secs, default is 4000");
301 MODULE_DEVICE_TABLE(usb
, ti_id_table_combined
);
303 module_usb_serial_driver(serial_drivers
, ti_id_table_combined
);
307 static int ti_startup(struct usb_serial
*serial
)
309 struct ti_device
*tdev
;
310 struct usb_device
*dev
= serial
->dev
;
311 struct usb_host_interface
*cur_altsetting
;
317 "%s - product 0x%4X, num configurations %d, configuration value %d\n",
318 __func__
, le16_to_cpu(dev
->descriptor
.idProduct
),
319 dev
->descriptor
.bNumConfigurations
,
320 dev
->actconfig
->desc
.bConfigurationValue
);
322 /* create device structure */
323 tdev
= kzalloc(sizeof(struct ti_device
), GFP_KERNEL
);
327 mutex_init(&tdev
->td_open_close_lock
);
328 tdev
->td_serial
= serial
;
329 usb_set_serial_data(serial
, tdev
);
331 /* determine device type */
332 if (serial
->type
== &ti_1port_device
)
333 tdev
->td_is_3410
= 1;
334 dev_dbg(&dev
->dev
, "%s - device type is %s\n", __func__
,
335 tdev
->td_is_3410
? "3410" : "5052");
337 vid
= le16_to_cpu(dev
->descriptor
.idVendor
);
338 pid
= le16_to_cpu(dev
->descriptor
.idProduct
);
339 if (vid
== MXU1_VENDOR_ID
) {
341 case MXU1_1130_PRODUCT_ID
:
342 case MXU1_1131_PRODUCT_ID
:
343 tdev
->td_rs485_only
= true;
348 cur_altsetting
= serial
->interface
->cur_altsetting
;
349 num_endpoints
= cur_altsetting
->desc
.bNumEndpoints
;
351 /* if we have only 1 configuration and 1 endpoint, download firmware */
352 if (dev
->descriptor
.bNumConfigurations
== 1 && num_endpoints
== 1) {
353 status
= ti_download_firmware(tdev
);
358 /* 3410 must be reset, 5052 resets itself */
359 if (tdev
->td_is_3410
) {
360 msleep_interruptible(100);
361 usb_reset_device(dev
);
368 /* the second configuration must be set */
369 if (dev
->actconfig
->desc
.bConfigurationValue
== TI_BOOT_CONFIG
) {
370 status
= usb_driver_set_configuration(dev
, TI_ACTIVE_CONFIG
);
371 status
= status
? status
: -ENODEV
;
379 usb_set_serial_data(serial
, NULL
);
384 static void ti_release(struct usb_serial
*serial
)
386 struct ti_device
*tdev
= usb_get_serial_data(serial
);
391 static int ti_port_probe(struct usb_serial_port
*port
)
393 struct ti_port
*tport
;
395 tport
= kzalloc(sizeof(*tport
), GFP_KERNEL
);
399 spin_lock_init(&tport
->tp_lock
);
400 if (port
== port
->serial
->port
[0])
401 tport
->tp_uart_base_addr
= TI_UART1_BASE_ADDR
;
403 tport
->tp_uart_base_addr
= TI_UART2_BASE_ADDR
;
404 port
->port
.closing_wait
= msecs_to_jiffies(10 * closing_wait
);
405 tport
->tp_port
= port
;
406 tport
->tp_tdev
= usb_get_serial_data(port
->serial
);
408 if (tport
->tp_tdev
->td_rs485_only
)
409 tport
->tp_uart_mode
= TI_UART_485_RECEIVER_DISABLED
;
411 tport
->tp_uart_mode
= TI_UART_232
;
413 usb_set_serial_port_data(port
, tport
);
415 port
->port
.drain_delay
= 3;
420 static int ti_port_remove(struct usb_serial_port
*port
)
422 struct ti_port
*tport
;
424 tport
= usb_get_serial_port_data(port
);
430 static int ti_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
432 struct ti_port
*tport
= usb_get_serial_port_data(port
);
433 struct ti_device
*tdev
;
434 struct usb_device
*dev
;
438 __u16 open_settings
= (__u8
)(TI_PIPE_MODE_CONTINOUS
|
439 TI_PIPE_TIMEOUT_ENABLE
|
440 (TI_TRANSFER_TIMEOUT
<< 2));
445 dev
= port
->serial
->dev
;
446 tdev
= tport
->tp_tdev
;
448 /* only one open on any port on a device at a time */
449 if (mutex_lock_interruptible(&tdev
->td_open_close_lock
))
452 port_number
= port
->port_number
;
455 tport
->tp_shadow_mcr
|= (TI_MCR_RTS
| TI_MCR_DTR
);
457 /* start interrupt urb the first time a port is opened on this device */
458 if (tdev
->td_open_port_count
== 0) {
459 dev_dbg(&port
->dev
, "%s - start interrupt in urb\n", __func__
);
460 urb
= tdev
->td_serial
->port
[0]->interrupt_in_urb
;
462 dev_err(&port
->dev
, "%s - no interrupt urb\n", __func__
);
467 status
= usb_submit_urb(urb
, GFP_KERNEL
);
469 dev_err(&port
->dev
, "%s - submit interrupt urb failed, %d\n", __func__
, status
);
475 ti_set_termios(tty
, port
, &tty
->termios
);
477 dev_dbg(&port
->dev
, "%s - sending TI_OPEN_PORT\n", __func__
);
478 status
= ti_command_out_sync(tdev
, TI_OPEN_PORT
,
479 (__u8
)(TI_UART1_PORT
+ port_number
), open_settings
, NULL
, 0);
481 dev_err(&port
->dev
, "%s - cannot send open command, %d\n",
486 dev_dbg(&port
->dev
, "%s - sending TI_START_PORT\n", __func__
);
487 status
= ti_command_out_sync(tdev
, TI_START_PORT
,
488 (__u8
)(TI_UART1_PORT
+ port_number
), 0, NULL
, 0);
490 dev_err(&port
->dev
, "%s - cannot send start command, %d\n",
495 dev_dbg(&port
->dev
, "%s - sending TI_PURGE_PORT\n", __func__
);
496 status
= ti_command_out_sync(tdev
, TI_PURGE_PORT
,
497 (__u8
)(TI_UART1_PORT
+ port_number
), TI_PURGE_INPUT
, NULL
, 0);
499 dev_err(&port
->dev
, "%s - cannot clear input buffers, %d\n",
503 status
= ti_command_out_sync(tdev
, TI_PURGE_PORT
,
504 (__u8
)(TI_UART1_PORT
+ port_number
), TI_PURGE_OUTPUT
, NULL
, 0);
506 dev_err(&port
->dev
, "%s - cannot clear output buffers, %d\n",
511 /* reset the data toggle on the bulk endpoints to work around bug in
512 * host controllers where things get out of sync some times */
513 usb_clear_halt(dev
, port
->write_urb
->pipe
);
514 usb_clear_halt(dev
, port
->read_urb
->pipe
);
517 ti_set_termios(tty
, port
, &tty
->termios
);
519 dev_dbg(&port
->dev
, "%s - sending TI_OPEN_PORT (2)\n", __func__
);
520 status
= ti_command_out_sync(tdev
, TI_OPEN_PORT
,
521 (__u8
)(TI_UART1_PORT
+ port_number
), open_settings
, NULL
, 0);
523 dev_err(&port
->dev
, "%s - cannot send open command (2), %d\n",
528 dev_dbg(&port
->dev
, "%s - sending TI_START_PORT (2)\n", __func__
);
529 status
= ti_command_out_sync(tdev
, TI_START_PORT
,
530 (__u8
)(TI_UART1_PORT
+ port_number
), 0, NULL
, 0);
532 dev_err(&port
->dev
, "%s - cannot send start command (2), %d\n",
538 dev_dbg(&port
->dev
, "%s - start read urb\n", __func__
);
539 urb
= port
->read_urb
;
541 dev_err(&port
->dev
, "%s - no read urb\n", __func__
);
545 tport
->tp_read_urb_state
= TI_READ_URB_RUNNING
;
546 urb
->context
= tport
;
547 status
= usb_submit_urb(urb
, GFP_KERNEL
);
549 dev_err(&port
->dev
, "%s - submit read urb failed, %d\n",
554 tport
->tp_is_open
= 1;
555 ++tdev
->td_open_port_count
;
560 if (tdev
->td_open_port_count
== 0)
561 usb_kill_urb(port
->serial
->port
[0]->interrupt_in_urb
);
563 mutex_unlock(&tdev
->td_open_close_lock
);
564 dev_dbg(&port
->dev
, "%s - exit %d\n", __func__
, status
);
569 static void ti_close(struct usb_serial_port
*port
)
571 struct ti_device
*tdev
;
572 struct ti_port
*tport
;
578 tdev
= usb_get_serial_data(port
->serial
);
579 tport
= usb_get_serial_port_data(port
);
580 if (tdev
== NULL
|| tport
== NULL
)
583 tport
->tp_is_open
= 0;
585 usb_kill_urb(port
->read_urb
);
586 usb_kill_urb(port
->write_urb
);
587 tport
->tp_write_urb_in_use
= 0;
588 spin_lock_irqsave(&tport
->tp_lock
, flags
);
589 kfifo_reset_out(&port
->write_fifo
);
590 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
592 port_number
= port
->port_number
;
594 dev_dbg(&port
->dev
, "%s - sending TI_CLOSE_PORT\n", __func__
);
595 status
= ti_command_out_sync(tdev
, TI_CLOSE_PORT
,
596 (__u8
)(TI_UART1_PORT
+ port_number
), 0, NULL
, 0);
599 "%s - cannot send close port command, %d\n"
602 /* if mutex_lock is interrupted, continue anyway */
603 do_unlock
= !mutex_lock_interruptible(&tdev
->td_open_close_lock
);
604 --tport
->tp_tdev
->td_open_port_count
;
605 if (tport
->tp_tdev
->td_open_port_count
<= 0) {
606 /* last port is closed, shut down interrupt urb */
607 usb_kill_urb(port
->serial
->port
[0]->interrupt_in_urb
);
608 tport
->tp_tdev
->td_open_port_count
= 0;
611 mutex_unlock(&tdev
->td_open_close_lock
);
615 static int ti_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
616 const unsigned char *data
, int count
)
618 struct ti_port
*tport
= usb_get_serial_port_data(port
);
621 dev_dbg(&port
->dev
, "%s - write request of 0 bytes\n", __func__
);
625 if (tport
== NULL
|| !tport
->tp_is_open
)
628 count
= kfifo_in_locked(&port
->write_fifo
, data
, count
,
636 static int ti_write_room(struct tty_struct
*tty
)
638 struct usb_serial_port
*port
= tty
->driver_data
;
639 struct ti_port
*tport
= usb_get_serial_port_data(port
);
646 spin_lock_irqsave(&tport
->tp_lock
, flags
);
647 room
= kfifo_avail(&port
->write_fifo
);
648 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
650 dev_dbg(&port
->dev
, "%s - returns %d\n", __func__
, room
);
655 static int ti_chars_in_buffer(struct tty_struct
*tty
)
657 struct usb_serial_port
*port
= tty
->driver_data
;
658 struct ti_port
*tport
= usb_get_serial_port_data(port
);
665 spin_lock_irqsave(&tport
->tp_lock
, flags
);
666 chars
= kfifo_len(&port
->write_fifo
);
667 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
669 dev_dbg(&port
->dev
, "%s - returns %d\n", __func__
, chars
);
673 static bool ti_tx_empty(struct usb_serial_port
*port
)
675 struct ti_port
*tport
= usb_get_serial_port_data(port
);
679 ret
= ti_get_lsr(tport
, &lsr
);
680 if (!ret
&& !(lsr
& TI_LSR_TX_EMPTY
))
686 static void ti_throttle(struct tty_struct
*tty
)
688 struct usb_serial_port
*port
= tty
->driver_data
;
689 struct ti_port
*tport
= usb_get_serial_port_data(port
);
694 if (I_IXOFF(tty
) || C_CRTSCTS(tty
))
695 ti_stop_read(tport
, tty
);
700 static void ti_unthrottle(struct tty_struct
*tty
)
702 struct usb_serial_port
*port
= tty
->driver_data
;
703 struct ti_port
*tport
= usb_get_serial_port_data(port
);
709 if (I_IXOFF(tty
) || C_CRTSCTS(tty
)) {
710 status
= ti_restart_read(tport
, tty
);
712 dev_err(&port
->dev
, "%s - cannot restart read, %d\n",
717 static int ti_ioctl(struct tty_struct
*tty
,
718 unsigned int cmd
, unsigned long arg
)
720 struct usb_serial_port
*port
= tty
->driver_data
;
721 struct ti_port
*tport
= usb_get_serial_port_data(port
);
728 dev_dbg(&port
->dev
, "%s - TIOCGSERIAL\n", __func__
);
729 return ti_get_serial_info(tport
,
730 (struct serial_struct __user
*)arg
);
732 dev_dbg(&port
->dev
, "%s - TIOCSSERIAL\n", __func__
);
733 return ti_set_serial_info(tty
, tport
,
734 (struct serial_struct __user
*)arg
);
740 static void ti_set_termios(struct tty_struct
*tty
,
741 struct usb_serial_port
*port
, struct ktermios
*old_termios
)
743 struct ti_port
*tport
= usb_get_serial_port_data(port
);
744 struct ti_uart_config
*config
;
745 tcflag_t cflag
, iflag
;
748 int port_number
= port
->port_number
;
751 cflag
= tty
->termios
.c_cflag
;
752 iflag
= tty
->termios
.c_iflag
;
754 dev_dbg(&port
->dev
, "%s - cflag %08x, iflag %08x\n", __func__
, cflag
, iflag
);
755 dev_dbg(&port
->dev
, "%s - old clfag %08x, old iflag %08x\n", __func__
,
756 old_termios
->c_cflag
, old_termios
->c_iflag
);
761 config
= kmalloc(sizeof(*config
), GFP_KERNEL
);
767 /* these flags must be set */
768 config
->wFlags
|= TI_UART_ENABLE_MS_INTS
;
769 config
->wFlags
|= TI_UART_ENABLE_AUTO_START_DMA
;
770 config
->bUartMode
= (__u8
)(tport
->tp_uart_mode
);
772 switch (cflag
& CSIZE
) {
774 config
->bDataBits
= TI_UART_5_DATA_BITS
;
777 config
->bDataBits
= TI_UART_6_DATA_BITS
;
780 config
->bDataBits
= TI_UART_7_DATA_BITS
;
784 config
->bDataBits
= TI_UART_8_DATA_BITS
;
788 /* CMSPAR isn't supported by this driver */
789 tty
->termios
.c_cflag
&= ~CMSPAR
;
791 if (cflag
& PARENB
) {
792 if (cflag
& PARODD
) {
793 config
->wFlags
|= TI_UART_ENABLE_PARITY_CHECKING
;
794 config
->bParity
= TI_UART_ODD_PARITY
;
796 config
->wFlags
|= TI_UART_ENABLE_PARITY_CHECKING
;
797 config
->bParity
= TI_UART_EVEN_PARITY
;
800 config
->wFlags
&= ~TI_UART_ENABLE_PARITY_CHECKING
;
801 config
->bParity
= TI_UART_NO_PARITY
;
805 config
->bStopBits
= TI_UART_2_STOP_BITS
;
807 config
->bStopBits
= TI_UART_1_STOP_BITS
;
809 if (cflag
& CRTSCTS
) {
810 /* RTS flow control must be off to drop RTS for baud rate B0 */
811 if ((cflag
& CBAUD
) != B0
)
812 config
->wFlags
|= TI_UART_ENABLE_RTS_IN
;
813 config
->wFlags
|= TI_UART_ENABLE_CTS_OUT
;
815 ti_restart_read(tport
, tty
);
818 if (I_IXOFF(tty
) || I_IXON(tty
)) {
819 config
->cXon
= START_CHAR(tty
);
820 config
->cXoff
= STOP_CHAR(tty
);
823 config
->wFlags
|= TI_UART_ENABLE_X_IN
;
825 ti_restart_read(tport
, tty
);
828 config
->wFlags
|= TI_UART_ENABLE_X_OUT
;
831 baud
= tty_get_baud_rate(tty
);
834 if (tport
->tp_tdev
->td_is_3410
)
835 config
->wBaudRate
= (__u16
)((923077 + baud
/2) / baud
);
837 config
->wBaudRate
= (__u16
)((461538 + baud
/2) / baud
);
839 /* FIXME: Should calculate resulting baud here and report it back */
840 if ((cflag
& CBAUD
) != B0
)
841 tty_encode_baud_rate(tty
, baud
, baud
);
844 "%s - BaudRate=%d, wBaudRate=%d, wFlags=0x%04X, bDataBits=%d, bParity=%d, bStopBits=%d, cXon=%d, cXoff=%d, bUartMode=%d\n",
845 __func__
, baud
, config
->wBaudRate
, config
->wFlags
,
846 config
->bDataBits
, config
->bParity
, config
->bStopBits
,
847 config
->cXon
, config
->cXoff
, config
->bUartMode
);
849 cpu_to_be16s(&config
->wBaudRate
);
850 cpu_to_be16s(&config
->wFlags
);
852 status
= ti_command_out_sync(tport
->tp_tdev
, TI_SET_CONFIG
,
853 (__u8
)(TI_UART1_PORT
+ port_number
), 0, (__u8
*)config
,
856 dev_err(&port
->dev
, "%s - cannot set config on port %d, %d\n",
857 __func__
, port_number
, status
);
859 /* SET_CONFIG asserts RTS and DTR, reset them correctly */
860 mcr
= tport
->tp_shadow_mcr
;
861 /* if baud rate is B0, clear RTS and DTR */
862 if ((cflag
& CBAUD
) == B0
)
863 mcr
&= ~(TI_MCR_DTR
| TI_MCR_RTS
);
864 status
= ti_set_mcr(tport
, mcr
);
867 "%s - cannot set modem control on port %d, %d\n",
868 __func__
, port_number
, status
);
874 static int ti_tiocmget(struct tty_struct
*tty
)
876 struct usb_serial_port
*port
= tty
->driver_data
;
877 struct ti_port
*tport
= usb_get_serial_port_data(port
);
886 spin_lock_irqsave(&tport
->tp_lock
, flags
);
888 mcr
= tport
->tp_shadow_mcr
;
889 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
891 result
= ((mcr
& TI_MCR_DTR
) ? TIOCM_DTR
: 0)
892 | ((mcr
& TI_MCR_RTS
) ? TIOCM_RTS
: 0)
893 | ((mcr
& TI_MCR_LOOP
) ? TIOCM_LOOP
: 0)
894 | ((msr
& TI_MSR_CTS
) ? TIOCM_CTS
: 0)
895 | ((msr
& TI_MSR_CD
) ? TIOCM_CAR
: 0)
896 | ((msr
& TI_MSR_RI
) ? TIOCM_RI
: 0)
897 | ((msr
& TI_MSR_DSR
) ? TIOCM_DSR
: 0);
899 dev_dbg(&port
->dev
, "%s - 0x%04X\n", __func__
, result
);
905 static int ti_tiocmset(struct tty_struct
*tty
,
906 unsigned int set
, unsigned int clear
)
908 struct usb_serial_port
*port
= tty
->driver_data
;
909 struct ti_port
*tport
= usb_get_serial_port_data(port
);
916 spin_lock_irqsave(&tport
->tp_lock
, flags
);
917 mcr
= tport
->tp_shadow_mcr
;
923 if (set
& TIOCM_LOOP
)
926 if (clear
& TIOCM_RTS
)
928 if (clear
& TIOCM_DTR
)
930 if (clear
& TIOCM_LOOP
)
932 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
934 return ti_set_mcr(tport
, mcr
);
938 static void ti_break(struct tty_struct
*tty
, int break_state
)
940 struct usb_serial_port
*port
= tty
->driver_data
;
941 struct ti_port
*tport
= usb_get_serial_port_data(port
);
944 dev_dbg(&port
->dev
, "%s - state = %d\n", __func__
, break_state
);
949 status
= ti_write_byte(port
, tport
->tp_tdev
,
950 tport
->tp_uart_base_addr
+ TI_UART_OFFSET_LCR
,
951 TI_LCR_BREAK
, break_state
== -1 ? TI_LCR_BREAK
: 0);
954 dev_dbg(&port
->dev
, "%s - error setting break, %d\n", __func__
, status
);
958 static void ti_interrupt_callback(struct urb
*urb
)
960 struct ti_device
*tdev
= urb
->context
;
961 struct usb_serial_port
*port
;
962 struct usb_serial
*serial
= tdev
->td_serial
;
963 struct ti_port
*tport
;
964 struct device
*dev
= &urb
->dev
->dev
;
965 unsigned char *data
= urb
->transfer_buffer
;
966 int length
= urb
->actual_length
;
969 int status
= urb
->status
;
979 dev_dbg(dev
, "%s - urb shutting down, %d\n", __func__
, status
);
980 tdev
->td_urb_error
= 1;
983 dev_err(dev
, "%s - nonzero urb status, %d\n", __func__
, status
);
984 tdev
->td_urb_error
= 1;
989 dev_dbg(dev
, "%s - bad packet size, %d\n", __func__
, length
);
993 if (data
[0] == TI_CODE_HARDWARE_ERROR
) {
994 dev_err(dev
, "%s - hardware error, %d\n", __func__
, data
[1]);
998 port_number
= TI_GET_PORT_FROM_CODE(data
[0]);
999 function
= TI_GET_FUNC_FROM_CODE(data
[0]);
1001 dev_dbg(dev
, "%s - port_number %d, function %d, data 0x%02X\n",
1002 __func__
, port_number
, function
, data
[1]);
1004 if (port_number
>= serial
->num_ports
) {
1005 dev_err(dev
, "%s - bad port number, %d\n",
1006 __func__
, port_number
);
1010 port
= serial
->port
[port_number
];
1012 tport
= usb_get_serial_port_data(port
);
1017 case TI_CODE_DATA_ERROR
:
1018 dev_err(dev
, "%s - DATA ERROR, port %d, data 0x%02X\n",
1019 __func__
, port_number
, data
[1]);
1022 case TI_CODE_MODEM_STATUS
:
1024 dev_dbg(dev
, "%s - port %d, msr 0x%02X\n", __func__
, port_number
, msr
);
1025 ti_handle_new_msr(tport
, msr
);
1029 dev_err(dev
, "%s - unknown interrupt code, 0x%02X\n",
1035 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
1037 dev_err(dev
, "%s - resubmit interrupt urb failed, %d\n",
1042 static void ti_bulk_in_callback(struct urb
*urb
)
1044 struct ti_port
*tport
= urb
->context
;
1045 struct usb_serial_port
*port
= tport
->tp_port
;
1046 struct device
*dev
= &urb
->dev
->dev
;
1047 int status
= urb
->status
;
1056 dev_dbg(dev
, "%s - urb shutting down, %d\n", __func__
, status
);
1057 tport
->tp_tdev
->td_urb_error
= 1;
1060 dev_err(dev
, "%s - nonzero urb status, %d\n",
1062 tport
->tp_tdev
->td_urb_error
= 1;
1065 if (status
== -EPIPE
)
1069 dev_err(dev
, "%s - stopping read!\n", __func__
);
1073 if (urb
->actual_length
) {
1074 usb_serial_debug_data(dev
, __func__
, urb
->actual_length
,
1075 urb
->transfer_buffer
);
1077 if (!tport
->tp_is_open
)
1078 dev_dbg(dev
, "%s - port closed, dropping data\n",
1081 ti_recv(port
, urb
->transfer_buffer
, urb
->actual_length
);
1082 spin_lock(&tport
->tp_lock
);
1083 port
->icount
.rx
+= urb
->actual_length
;
1084 spin_unlock(&tport
->tp_lock
);
1088 /* continue to read unless stopping */
1089 spin_lock(&tport
->tp_lock
);
1090 if (tport
->tp_read_urb_state
== TI_READ_URB_RUNNING
)
1091 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
1092 else if (tport
->tp_read_urb_state
== TI_READ_URB_STOPPING
)
1093 tport
->tp_read_urb_state
= TI_READ_URB_STOPPED
;
1095 spin_unlock(&tport
->tp_lock
);
1097 dev_err(dev
, "%s - resubmit read urb failed, %d\n",
1102 static void ti_bulk_out_callback(struct urb
*urb
)
1104 struct ti_port
*tport
= urb
->context
;
1105 struct usb_serial_port
*port
= tport
->tp_port
;
1106 int status
= urb
->status
;
1108 tport
->tp_write_urb_in_use
= 0;
1116 dev_dbg(&port
->dev
, "%s - urb shutting down, %d\n", __func__
, status
);
1117 tport
->tp_tdev
->td_urb_error
= 1;
1120 dev_err_console(port
, "%s - nonzero urb status, %d\n",
1122 tport
->tp_tdev
->td_urb_error
= 1;
1125 /* send any buffered data */
1130 static void ti_recv(struct usb_serial_port
*port
, unsigned char *data
,
1136 cnt
= tty_insert_flip_string(&port
->port
, data
, length
);
1138 dev_err(&port
->dev
, "%s - dropping data, %d bytes lost\n",
1139 __func__
, length
- cnt
);
1143 tty_flip_buffer_push(&port
->port
);
1146 } while (length
> 0);
1150 static void ti_send(struct ti_port
*tport
)
1153 struct usb_serial_port
*port
= tport
->tp_port
;
1154 unsigned long flags
;
1156 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1158 if (tport
->tp_write_urb_in_use
)
1161 count
= kfifo_out(&port
->write_fifo
,
1162 port
->write_urb
->transfer_buffer
,
1163 port
->bulk_out_size
);
1168 tport
->tp_write_urb_in_use
= 1;
1170 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1172 usb_serial_debug_data(&port
->dev
, __func__
, count
,
1173 port
->write_urb
->transfer_buffer
);
1175 usb_fill_bulk_urb(port
->write_urb
, port
->serial
->dev
,
1176 usb_sndbulkpipe(port
->serial
->dev
,
1177 port
->bulk_out_endpointAddress
),
1178 port
->write_urb
->transfer_buffer
, count
,
1179 ti_bulk_out_callback
, tport
);
1181 result
= usb_submit_urb(port
->write_urb
, GFP_ATOMIC
);
1183 dev_err_console(port
, "%s - submit write urb failed, %d\n",
1185 tport
->tp_write_urb_in_use
= 0;
1186 /* TODO: reschedule ti_send */
1188 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1189 port
->icount
.tx
+= count
;
1190 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1193 /* more room in the buffer for new writes, wakeup */
1194 tty_port_tty_wakeup(&port
->port
);
1198 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1203 static int ti_set_mcr(struct ti_port
*tport
, unsigned int mcr
)
1205 unsigned long flags
;
1208 status
= ti_write_byte(tport
->tp_port
, tport
->tp_tdev
,
1209 tport
->tp_uart_base_addr
+ TI_UART_OFFSET_MCR
,
1210 TI_MCR_RTS
| TI_MCR_DTR
| TI_MCR_LOOP
, mcr
);
1212 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1214 tport
->tp_shadow_mcr
= mcr
;
1215 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1221 static int ti_get_lsr(struct ti_port
*tport
, u8
*lsr
)
1224 struct ti_device
*tdev
= tport
->tp_tdev
;
1225 struct usb_serial_port
*port
= tport
->tp_port
;
1226 int port_number
= port
->port_number
;
1227 struct ti_port_status
*data
;
1229 size
= sizeof(struct ti_port_status
);
1230 data
= kmalloc(size
, GFP_KERNEL
);
1234 status
= ti_command_in_sync(tdev
, TI_GET_PORT_STATUS
,
1235 (__u8
)(TI_UART1_PORT
+port_number
), 0, (__u8
*)data
, size
);
1238 "%s - get port status command failed, %d\n",
1243 dev_dbg(&port
->dev
, "%s - lsr 0x%02X\n", __func__
, data
->bLSR
);
1253 static int ti_get_serial_info(struct ti_port
*tport
,
1254 struct serial_struct __user
*ret_arg
)
1256 struct usb_serial_port
*port
= tport
->tp_port
;
1257 struct serial_struct ret_serial
;
1263 cwait
= port
->port
.closing_wait
;
1264 if (cwait
!= ASYNC_CLOSING_WAIT_NONE
)
1265 cwait
= jiffies_to_msecs(cwait
) / 10;
1267 memset(&ret_serial
, 0, sizeof(ret_serial
));
1269 ret_serial
.type
= PORT_16550A
;
1270 ret_serial
.line
= port
->minor
;
1271 ret_serial
.port
= port
->port_number
;
1272 ret_serial
.flags
= tport
->tp_flags
;
1273 ret_serial
.xmit_fifo_size
= kfifo_size(&port
->write_fifo
);
1274 ret_serial
.baud_base
= tport
->tp_tdev
->td_is_3410
? 921600 : 460800;
1275 ret_serial
.closing_wait
= cwait
;
1277 if (copy_to_user(ret_arg
, &ret_serial
, sizeof(*ret_arg
)))
1284 static int ti_set_serial_info(struct tty_struct
*tty
, struct ti_port
*tport
,
1285 struct serial_struct __user
*new_arg
)
1287 struct serial_struct new_serial
;
1290 if (copy_from_user(&new_serial
, new_arg
, sizeof(new_serial
)))
1293 cwait
= new_serial
.closing_wait
;
1294 if (cwait
!= ASYNC_CLOSING_WAIT_NONE
)
1295 cwait
= msecs_to_jiffies(10 * new_serial
.closing_wait
);
1297 tport
->tp_flags
= new_serial
.flags
& TI_SET_SERIAL_FLAGS
;
1298 tport
->tp_port
->port
.closing_wait
= cwait
;
1304 static void ti_handle_new_msr(struct ti_port
*tport
, __u8 msr
)
1306 struct async_icount
*icount
;
1307 struct tty_struct
*tty
;
1308 unsigned long flags
;
1310 dev_dbg(&tport
->tp_port
->dev
, "%s - msr 0x%02X\n", __func__
, msr
);
1312 if (msr
& TI_MSR_DELTA_MASK
) {
1313 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1314 icount
= &tport
->tp_port
->icount
;
1315 if (msr
& TI_MSR_DELTA_CTS
)
1317 if (msr
& TI_MSR_DELTA_DSR
)
1319 if (msr
& TI_MSR_DELTA_CD
)
1321 if (msr
& TI_MSR_DELTA_RI
)
1323 wake_up_interruptible(&tport
->tp_port
->port
.delta_msr_wait
);
1324 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1327 tport
->tp_msr
= msr
& TI_MSR_MASK
;
1329 /* handle CTS flow control */
1330 tty
= tty_port_tty_get(&tport
->tp_port
->port
);
1331 if (tty
&& C_CRTSCTS(tty
)) {
1332 if (msr
& TI_MSR_CTS
)
1339 static void ti_stop_read(struct ti_port
*tport
, struct tty_struct
*tty
)
1341 unsigned long flags
;
1343 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1345 if (tport
->tp_read_urb_state
== TI_READ_URB_RUNNING
)
1346 tport
->tp_read_urb_state
= TI_READ_URB_STOPPING
;
1348 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1352 static int ti_restart_read(struct ti_port
*tport
, struct tty_struct
*tty
)
1356 unsigned long flags
;
1358 spin_lock_irqsave(&tport
->tp_lock
, flags
);
1360 if (tport
->tp_read_urb_state
== TI_READ_URB_STOPPED
) {
1361 tport
->tp_read_urb_state
= TI_READ_URB_RUNNING
;
1362 urb
= tport
->tp_port
->read_urb
;
1363 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1364 urb
->context
= tport
;
1365 status
= usb_submit_urb(urb
, GFP_KERNEL
);
1367 tport
->tp_read_urb_state
= TI_READ_URB_RUNNING
;
1368 spin_unlock_irqrestore(&tport
->tp_lock
, flags
);
1375 static int ti_command_out_sync(struct ti_device
*tdev
, __u8 command
,
1376 __u16 moduleid
, __u16 value
, __u8
*data
, int size
)
1380 status
= usb_control_msg(tdev
->td_serial
->dev
,
1381 usb_sndctrlpipe(tdev
->td_serial
->dev
, 0), command
,
1382 (USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_OUT
),
1383 value
, moduleid
, data
, size
, 1000);
1395 static int ti_command_in_sync(struct ti_device
*tdev
, __u8 command
,
1396 __u16 moduleid
, __u16 value
, __u8
*data
, int size
)
1400 status
= usb_control_msg(tdev
->td_serial
->dev
,
1401 usb_rcvctrlpipe(tdev
->td_serial
->dev
, 0), command
,
1402 (USB_TYPE_VENDOR
| USB_RECIP_DEVICE
| USB_DIR_IN
),
1403 value
, moduleid
, data
, size
, 1000);
1415 static int ti_write_byte(struct usb_serial_port
*port
,
1416 struct ti_device
*tdev
, unsigned long addr
,
1417 __u8 mask
, __u8 byte
)
1421 struct ti_write_data_bytes
*data
;
1423 dev_dbg(&port
->dev
, "%s - addr 0x%08lX, mask 0x%02X, byte 0x%02X\n", __func__
,
1426 size
= sizeof(struct ti_write_data_bytes
) + 2;
1427 data
= kmalloc(size
, GFP_KERNEL
);
1431 data
->bAddrType
= TI_RW_DATA_ADDR_XDATA
;
1432 data
->bDataType
= TI_RW_DATA_BYTE
;
1433 data
->bDataCounter
= 1;
1434 data
->wBaseAddrHi
= cpu_to_be16(addr
>>16);
1435 data
->wBaseAddrLo
= cpu_to_be16(addr
);
1436 data
->bData
[0] = mask
;
1437 data
->bData
[1] = byte
;
1439 status
= ti_command_out_sync(tdev
, TI_WRITE_DATA
, TI_RAM_PORT
, 0,
1440 (__u8
*)data
, size
);
1443 dev_err(&port
->dev
, "%s - failed, %d\n", __func__
, status
);
1450 static int ti_do_download(struct usb_device
*dev
, int pipe
,
1451 u8
*buffer
, int size
)
1456 struct ti_firmware_header
*header
;
1460 for (pos
= sizeof(struct ti_firmware_header
); pos
< size
; pos
++)
1461 cs
= (__u8
)(cs
+ buffer
[pos
]);
1463 header
= (struct ti_firmware_header
*)buffer
;
1464 header
->wLength
= cpu_to_le16((__u16
)(size
1465 - sizeof(struct ti_firmware_header
)));
1466 header
->bCheckSum
= cs
;
1468 dev_dbg(&dev
->dev
, "%s - downloading firmware\n", __func__
);
1469 for (pos
= 0; pos
< size
; pos
+= done
) {
1470 len
= min(size
- pos
, TI_DOWNLOAD_MAX_PACKET_SIZE
);
1471 status
= usb_bulk_msg(dev
, pipe
, buffer
+ pos
, len
,
1479 static int ti_download_firmware(struct ti_device
*tdev
)
1484 struct usb_device
*dev
= tdev
->td_serial
->dev
;
1485 unsigned int pipe
= usb_sndbulkpipe(dev
,
1486 tdev
->td_serial
->port
[0]->bulk_out_endpointAddress
);
1487 const struct firmware
*fw_p
;
1490 if (le16_to_cpu(dev
->descriptor
.idVendor
) == MXU1_VENDOR_ID
) {
1493 "moxa/moxa-%04x.fw",
1494 le16_to_cpu(dev
->descriptor
.idProduct
));
1496 status
= request_firmware(&fw_p
, buf
, &dev
->dev
);
1497 goto check_firmware
;
1500 /* try ID specific firmware first, then try generic firmware */
1501 sprintf(buf
, "ti_usb-v%04x-p%04x.fw",
1502 le16_to_cpu(dev
->descriptor
.idVendor
),
1503 le16_to_cpu(dev
->descriptor
.idProduct
));
1504 status
= request_firmware(&fw_p
, buf
, &dev
->dev
);
1508 if (le16_to_cpu(dev
->descriptor
.idVendor
) == MTS_VENDOR_ID
) {
1509 switch (le16_to_cpu(dev
->descriptor
.idProduct
)) {
1510 case MTS_CDMA_PRODUCT_ID
:
1511 strcpy(buf
, "mts_cdma.fw");
1513 case MTS_GSM_PRODUCT_ID
:
1514 strcpy(buf
, "mts_gsm.fw");
1516 case MTS_EDGE_PRODUCT_ID
:
1517 strcpy(buf
, "mts_edge.fw");
1519 case MTS_MT9234MU_PRODUCT_ID
:
1520 strcpy(buf
, "mts_mt9234mu.fw");
1522 case MTS_MT9234ZBA_PRODUCT_ID
:
1523 strcpy(buf
, "mts_mt9234zba.fw");
1525 case MTS_MT9234ZBAOLD_PRODUCT_ID
:
1526 strcpy(buf
, "mts_mt9234zba.fw");
1529 if (buf
[0] == '\0') {
1530 if (tdev
->td_is_3410
)
1531 strcpy(buf
, "ti_3410.fw");
1533 strcpy(buf
, "ti_5052.fw");
1535 status
= request_firmware(&fw_p
, buf
, &dev
->dev
);
1540 dev_err(&dev
->dev
, "%s - firmware not found\n", __func__
);
1543 if (fw_p
->size
> TI_FIRMWARE_BUF_SIZE
) {
1544 dev_err(&dev
->dev
, "%s - firmware too large %zu\n", __func__
, fw_p
->size
);
1545 release_firmware(fw_p
);
1549 buffer_size
= TI_FIRMWARE_BUF_SIZE
+ sizeof(struct ti_firmware_header
);
1550 buffer
= kmalloc(buffer_size
, GFP_KERNEL
);
1552 memcpy(buffer
, fw_p
->data
, fw_p
->size
);
1553 memset(buffer
+ fw_p
->size
, 0xff, buffer_size
- fw_p
->size
);
1554 status
= ti_do_download(dev
, pipe
, buffer
, fw_p
->size
);
1559 release_firmware(fw_p
);
1561 dev_err(&dev
->dev
, "%s - error downloading firmware, %d\n",
1566 dev_dbg(&dev
->dev
, "%s - download successful\n", __func__
);