2 * USB ConnectTech WhiteHEAT driver
7 * Copyright (C) 1999 - 2001
8 * Greg Kroah-Hartman (greg@kroah.com)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * See Documentation/usb/usb-serial.txt for more information on using this
18 * (10/09/2002) Stuart MacDonald (stuartm@connecttech.com)
19 * Upgrade to full working driver
22 * switched from using spinlock to a semaphore, which fixes lots of
26 * Identify version on module load.
29 * Fixed MOD_INC and MOD_DEC logic, the ability to open a port more
30 * than once, and the got the proper usb_device_id table entries so
31 * the driver works again.
33 * (11/01/2000) Adam J. Richter
34 * usb_device_id table support
37 * Fixed bug with urb->dev not being set properly, now that the usb
41 * firmware is improved to guard against crap sent to device
42 * firmware now replies CMD_FAILURE on bad things
43 * read_callback fix you provided for private info struct
44 * command_finished now indicates success or fail
45 * setup_port struct now packed to avoid gcc padding
46 * firmware uses 1 based port numbering, driver now handles that
49 * Removed DEBUG #ifdefs with call to usb_serial_debug_data
52 * Added module_init and module_exit functions to handle the fact that this
53 * driver is a loadable module now.
54 * Fixed bug with port->minor that was found by Al Borchers
57 * Added support for port settings. Baud rate can now be changed. Line
58 * signals are not transferred to and from the tty layer yet, but things
59 * seem to be working well now.
62 * First cut at open and close commands. Data can flow through the ports at
66 * Split driver up into device specific pieces.
70 #include <linux/kernel.h>
71 #include <linux/errno.h>
72 #include <linux/init.h>
73 #include <linux/slab.h>
74 #include <linux/tty.h>
75 #include <linux/tty_driver.h>
76 #include <linux/tty_flip.h>
77 #include <linux/module.h>
78 #include <linux/spinlock.h>
79 #include <linux/mutex.h>
80 #include <linux/uaccess.h>
81 #include <asm/termbits.h>
82 #include <linux/usb.h>
83 #include <linux/serial_reg.h>
84 #include <linux/serial.h>
85 #include <linux/usb/serial.h>
86 #include <linux/firmware.h>
87 #include <linux/ihex.h>
88 #include "whiteheat.h" /* WhiteHEAT specific commands */
99 #define DRIVER_VERSION "v2.0"
100 #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Stuart MacDonald <stuartm@connecttech.com>"
101 #define DRIVER_DESC "USB ConnectTech WhiteHEAT driver"
103 #define CONNECT_TECH_VENDOR_ID 0x0710
104 #define CONNECT_TECH_FAKE_WHITE_HEAT_ID 0x0001
105 #define CONNECT_TECH_WHITE_HEAT_ID 0x8001
108 ID tables for whiteheat are unusual, because we want to different
109 things for different versions of the device. Eventually, this
110 will be doable from a single table. But, for now, we define two
111 separate ID tables, and then a third table that combines them
112 just for the purpose of exporting the autoloading information.
114 static struct usb_device_id id_table_std
[] = {
115 { USB_DEVICE(CONNECT_TECH_VENDOR_ID
, CONNECT_TECH_WHITE_HEAT_ID
) },
116 { } /* Terminating entry */
119 static struct usb_device_id id_table_prerenumeration
[] = {
120 { USB_DEVICE(CONNECT_TECH_VENDOR_ID
, CONNECT_TECH_FAKE_WHITE_HEAT_ID
) },
121 { } /* Terminating entry */
124 static struct usb_device_id id_table_combined
[] = {
125 { USB_DEVICE(CONNECT_TECH_VENDOR_ID
, CONNECT_TECH_WHITE_HEAT_ID
) },
126 { USB_DEVICE(CONNECT_TECH_VENDOR_ID
, CONNECT_TECH_FAKE_WHITE_HEAT_ID
) },
127 { } /* Terminating entry */
130 MODULE_DEVICE_TABLE(usb
, id_table_combined
);
132 static struct usb_driver whiteheat_driver
= {
134 .probe
= usb_serial_probe
,
135 .disconnect
= usb_serial_disconnect
,
136 .id_table
= id_table_combined
,
140 /* function prototypes for the Connect Tech WhiteHEAT prerenumeration device */
141 static int whiteheat_firmware_download(struct usb_serial
*serial
,
142 const struct usb_device_id
*id
);
143 static int whiteheat_firmware_attach(struct usb_serial
*serial
);
145 /* function prototypes for the Connect Tech WhiteHEAT serial converter */
146 static int whiteheat_attach(struct usb_serial
*serial
);
147 static void whiteheat_release(struct usb_serial
*serial
);
148 static int whiteheat_open(struct tty_struct
*tty
,
149 struct usb_serial_port
*port
);
150 static void whiteheat_close(struct usb_serial_port
*port
);
151 static int whiteheat_write(struct tty_struct
*tty
,
152 struct usb_serial_port
*port
,
153 const unsigned char *buf
, int count
);
154 static int whiteheat_write_room(struct tty_struct
*tty
);
155 static int whiteheat_ioctl(struct tty_struct
*tty
, struct file
*file
,
156 unsigned int cmd
, unsigned long arg
);
157 static void whiteheat_set_termios(struct tty_struct
*tty
,
158 struct usb_serial_port
*port
, struct ktermios
*old
);
159 static int whiteheat_tiocmget(struct tty_struct
*tty
, struct file
*file
);
160 static int whiteheat_tiocmset(struct tty_struct
*tty
, struct file
*file
,
161 unsigned int set
, unsigned int clear
);
162 static void whiteheat_break_ctl(struct tty_struct
*tty
, int break_state
);
163 static int whiteheat_chars_in_buffer(struct tty_struct
*tty
);
164 static void whiteheat_throttle(struct tty_struct
*tty
);
165 static void whiteheat_unthrottle(struct tty_struct
*tty
);
166 static void whiteheat_read_callback(struct urb
*urb
);
167 static void whiteheat_write_callback(struct urb
*urb
);
169 static struct usb_serial_driver whiteheat_fake_device
= {
171 .owner
= THIS_MODULE
,
172 .name
= "whiteheatnofirm",
174 .description
= "Connect Tech - WhiteHEAT - (prerenumeration)",
175 .usb_driver
= &whiteheat_driver
,
176 .id_table
= id_table_prerenumeration
,
178 .probe
= whiteheat_firmware_download
,
179 .attach
= whiteheat_firmware_attach
,
182 static struct usb_serial_driver whiteheat_device
= {
184 .owner
= THIS_MODULE
,
187 .description
= "Connect Tech - WhiteHEAT",
188 .usb_driver
= &whiteheat_driver
,
189 .id_table
= id_table_std
,
191 .attach
= whiteheat_attach
,
192 .release
= whiteheat_release
,
193 .open
= whiteheat_open
,
194 .close
= whiteheat_close
,
195 .write
= whiteheat_write
,
196 .write_room
= whiteheat_write_room
,
197 .ioctl
= whiteheat_ioctl
,
198 .set_termios
= whiteheat_set_termios
,
199 .break_ctl
= whiteheat_break_ctl
,
200 .tiocmget
= whiteheat_tiocmget
,
201 .tiocmset
= whiteheat_tiocmset
,
202 .chars_in_buffer
= whiteheat_chars_in_buffer
,
203 .throttle
= whiteheat_throttle
,
204 .unthrottle
= whiteheat_unthrottle
,
205 .read_bulk_callback
= whiteheat_read_callback
,
206 .write_bulk_callback
= whiteheat_write_callback
,
210 struct whiteheat_command_private
{
213 __u8 command_finished
;
214 wait_queue_head_t wait_command
; /* for handling sleeping whilst
215 waiting for a command to
217 __u8 result_buffer
[64];
221 #define THROTTLED 0x01
222 #define ACTUALLY_THROTTLED 0x02
224 static int urb_pool_size
= 8;
226 struct whiteheat_urb_wrap
{
227 struct list_head list
;
231 struct whiteheat_private
{
234 __u8 mcr
; /* FIXME: no locking on mcr */
235 struct list_head rx_urbs_free
;
236 struct list_head rx_urbs_submitted
;
237 struct list_head rx_urb_q
;
238 struct work_struct rx_work
;
239 struct usb_serial_port
*port
;
240 struct list_head tx_urbs_free
;
241 struct list_head tx_urbs_submitted
;
242 struct mutex deathwarrant
;
246 /* local function prototypes */
247 static int start_command_port(struct usb_serial
*serial
);
248 static void stop_command_port(struct usb_serial
*serial
);
249 static void command_port_write_callback(struct urb
*urb
);
250 static void command_port_read_callback(struct urb
*urb
);
252 static int start_port_read(struct usb_serial_port
*port
);
253 static struct whiteheat_urb_wrap
*urb_to_wrap(struct urb
*urb
,
254 struct list_head
*head
);
255 static struct list_head
*list_first(struct list_head
*head
);
256 static void rx_data_softint(struct work_struct
*work
);
258 static int firm_send_command(struct usb_serial_port
*port
, __u8 command
,
259 __u8
*data
, __u8 datasize
);
260 static int firm_open(struct usb_serial_port
*port
);
261 static int firm_close(struct usb_serial_port
*port
);
262 static void firm_setup_port(struct tty_struct
*tty
);
263 static int firm_set_rts(struct usb_serial_port
*port
, __u8 onoff
);
264 static int firm_set_dtr(struct usb_serial_port
*port
, __u8 onoff
);
265 static int firm_set_break(struct usb_serial_port
*port
, __u8 onoff
);
266 static int firm_purge(struct usb_serial_port
*port
, __u8 rxtx
);
267 static int firm_get_dtr_rts(struct usb_serial_port
*port
);
268 static int firm_report_tx_done(struct usb_serial_port
*port
);
271 #define COMMAND_PORT 4
272 #define COMMAND_TIMEOUT (2*HZ) /* 2 second timeout for a command */
273 #define COMMAND_TIMEOUT_MS 2000
274 #define CLOSING_DELAY (30 * HZ)
277 /*****************************************************************************
278 * Connect Tech's White Heat prerenumeration driver functions
279 *****************************************************************************/
281 /* steps to download the firmware to the WhiteHEAT device:
282 - hold the reset (by writing to the reset bit of the CPUCS register)
283 - download the VEND_AX.HEX file to the chip using VENDOR_REQUEST-ANCHOR_LOAD
284 - release the reset (by writing to the CPUCS register)
285 - download the WH.HEX file for all addresses greater than 0x1b3f using
286 VENDOR_REQUEST-ANCHOR_EXTERNAL_RAM_LOAD
288 - download the WH.HEX file for all addresses less than 0x1b40 using
289 VENDOR_REQUEST_ANCHOR_LOAD
291 - device renumerated itself and comes up as new device id with all
292 firmware download completed.
294 static int whiteheat_firmware_download(struct usb_serial
*serial
,
295 const struct usb_device_id
*id
)
297 int response
, ret
= -ENOENT
;
298 const struct firmware
*loader_fw
= NULL
, *firmware_fw
= NULL
;
299 const struct ihex_binrec
*record
;
303 if (request_ihex_firmware(&firmware_fw
, "whiteheat.fw",
304 &serial
->dev
->dev
)) {
305 dev_err(&serial
->dev
->dev
,
306 "%s - request \"whiteheat.fw\" failed\n", __func__
);
309 if (request_ihex_firmware(&loader_fw
, "whiteheat_loader.fw",
310 &serial
->dev
->dev
)) {
311 dev_err(&serial
->dev
->dev
,
312 "%s - request \"whiteheat_loader.fw\" failed\n",
317 response
= ezusb_set_reset (serial
, 1);
319 record
= (const struct ihex_binrec
*)loader_fw
->data
;
321 response
= ezusb_writememory (serial
, be32_to_cpu(record
->addr
),
322 (unsigned char *)record
->data
,
323 be16_to_cpu(record
->len
), 0xa0);
325 dev_err(&serial
->dev
->dev
, "%s - ezusb_writememory "
326 "failed for loader (%d %04X %p %d)\n",
327 __func__
, response
, be32_to_cpu(record
->addr
),
328 record
->data
, be16_to_cpu(record
->len
));
331 record
= ihex_next_binrec(record
);
334 response
= ezusb_set_reset(serial
, 0);
336 record
= (const struct ihex_binrec
*)firmware_fw
->data
;
337 while (record
&& be32_to_cpu(record
->addr
) < 0x1b40)
338 record
= ihex_next_binrec(record
);
340 response
= ezusb_writememory (serial
, be32_to_cpu(record
->addr
),
341 (unsigned char *)record
->data
,
342 be16_to_cpu(record
->len
), 0xa3);
344 dev_err(&serial
->dev
->dev
, "%s - ezusb_writememory "
345 "failed for first firmware step "
346 "(%d %04X %p %d)\n", __func__
, response
,
347 be32_to_cpu(record
->addr
), record
->data
,
348 be16_to_cpu(record
->len
));
354 response
= ezusb_set_reset(serial
, 1);
356 record
= (const struct ihex_binrec
*)firmware_fw
->data
;
357 while (record
&& be32_to_cpu(record
->addr
) < 0x1b40) {
358 response
= ezusb_writememory (serial
, be32_to_cpu(record
->addr
),
359 (unsigned char *)record
->data
,
360 be16_to_cpu(record
->len
), 0xa0);
362 dev_err(&serial
->dev
->dev
, "%s - ezusb_writememory "
363 "failed for second firmware step "
364 "(%d %04X %p %d)\n", __func__
, response
,
365 be32_to_cpu(record
->addr
), record
->data
,
366 be16_to_cpu(record
->len
));
372 response
= ezusb_set_reset (serial
, 0);
374 release_firmware(loader_fw
);
375 release_firmware(firmware_fw
);
380 static int whiteheat_firmware_attach(struct usb_serial
*serial
)
382 /* We want this device to fail to have a driver assigned to it */
387 /*****************************************************************************
388 * Connect Tech's White Heat serial driver functions
389 *****************************************************************************/
390 static int whiteheat_attach(struct usb_serial
*serial
)
392 struct usb_serial_port
*command_port
;
393 struct whiteheat_command_private
*command_info
;
394 struct usb_serial_port
*port
;
395 struct whiteheat_private
*info
;
396 struct whiteheat_hw_info
*hw_info
;
406 struct whiteheat_urb_wrap
*wrap
;
407 struct list_head
*tmp
;
409 command_port
= serial
->port
[COMMAND_PORT
];
411 pipe
= usb_sndbulkpipe(serial
->dev
,
412 command_port
->bulk_out_endpointAddress
);
413 command
= kmalloc(2, GFP_KERNEL
);
415 goto no_command_buffer
;
416 command
[0] = WHITEHEAT_GET_HW_INFO
;
419 result
= kmalloc(sizeof(*hw_info
) + 1, GFP_KERNEL
);
421 goto no_result_buffer
;
423 * When the module is reloaded the firmware is still there and
424 * the endpoints are still in the usb core unchanged. This is the
425 * unlinking bug in disguise. Same for the call below.
427 usb_clear_halt(serial
->dev
, pipe
);
428 ret
= usb_bulk_msg(serial
->dev
, pipe
, command
, 2,
429 &alen
, COMMAND_TIMEOUT_MS
);
431 dev_err(&serial
->dev
->dev
, "%s: Couldn't send command [%d]\n",
432 serial
->type
->description
, ret
);
434 } else if (alen
!= 2) {
435 dev_err(&serial
->dev
->dev
, "%s: Send command incomplete [%d]\n",
436 serial
->type
->description
, alen
);
440 pipe
= usb_rcvbulkpipe(serial
->dev
,
441 command_port
->bulk_in_endpointAddress
);
442 /* See the comment on the usb_clear_halt() above */
443 usb_clear_halt(serial
->dev
, pipe
);
444 ret
= usb_bulk_msg(serial
->dev
, pipe
, result
,
445 sizeof(*hw_info
) + 1, &alen
, COMMAND_TIMEOUT_MS
);
447 dev_err(&serial
->dev
->dev
, "%s: Couldn't get results [%d]\n",
448 serial
->type
->description
, ret
);
450 } else if (alen
!= sizeof(*hw_info
) + 1) {
451 dev_err(&serial
->dev
->dev
, "%s: Get results incomplete [%d]\n",
452 serial
->type
->description
, alen
);
454 } else if (result
[0] != command
[0]) {
455 dev_err(&serial
->dev
->dev
, "%s: Command failed [%d]\n",
456 serial
->type
->description
, result
[0]);
460 hw_info
= (struct whiteheat_hw_info
*)&result
[1];
462 dev_info(&serial
->dev
->dev
, "%s: Driver %s: Firmware v%d.%02d\n",
463 serial
->type
->description
, DRIVER_VERSION
,
464 hw_info
->sw_major_rev
, hw_info
->sw_minor_rev
);
466 for (i
= 0; i
< serial
->num_ports
; i
++) {
467 port
= serial
->port
[i
];
469 info
= kmalloc(sizeof(struct whiteheat_private
), GFP_KERNEL
);
472 "%s: Out of memory for port structures\n",
473 serial
->type
->description
);
477 spin_lock_init(&info
->lock
);
478 mutex_init(&info
->deathwarrant
);
481 INIT_WORK(&info
->rx_work
, rx_data_softint
);
484 INIT_LIST_HEAD(&info
->rx_urbs_free
);
485 INIT_LIST_HEAD(&info
->rx_urbs_submitted
);
486 INIT_LIST_HEAD(&info
->rx_urb_q
);
487 INIT_LIST_HEAD(&info
->tx_urbs_free
);
488 INIT_LIST_HEAD(&info
->tx_urbs_submitted
);
490 for (j
= 0; j
< urb_pool_size
; j
++) {
491 urb
= usb_alloc_urb(0, GFP_KERNEL
);
493 dev_err(&port
->dev
, "No free urbs available\n");
496 buf_size
= port
->read_urb
->transfer_buffer_length
;
497 urb
->transfer_buffer
= kmalloc(buf_size
, GFP_KERNEL
);
498 if (!urb
->transfer_buffer
) {
500 "Couldn't allocate urb buffer\n");
503 wrap
= kmalloc(sizeof(*wrap
), GFP_KERNEL
);
506 "Couldn't allocate urb wrapper\n");
509 usb_fill_bulk_urb(urb
, serial
->dev
,
510 usb_rcvbulkpipe(serial
->dev
,
511 port
->bulk_in_endpointAddress
),
512 urb
->transfer_buffer
, buf_size
,
513 whiteheat_read_callback
, port
);
515 list_add(&wrap
->list
, &info
->rx_urbs_free
);
517 urb
= usb_alloc_urb(0, GFP_KERNEL
);
519 dev_err(&port
->dev
, "No free urbs available\n");
522 buf_size
= port
->write_urb
->transfer_buffer_length
;
523 urb
->transfer_buffer
= kmalloc(buf_size
, GFP_KERNEL
);
524 if (!urb
->transfer_buffer
) {
526 "Couldn't allocate urb buffer\n");
529 wrap
= kmalloc(sizeof(*wrap
), GFP_KERNEL
);
532 "Couldn't allocate urb wrapper\n");
535 usb_fill_bulk_urb(urb
, serial
->dev
,
536 usb_sndbulkpipe(serial
->dev
,
537 port
->bulk_out_endpointAddress
),
538 urb
->transfer_buffer
, buf_size
,
539 whiteheat_write_callback
, port
);
541 list_add(&wrap
->list
, &info
->tx_urbs_free
);
544 usb_set_serial_port_data(port
, info
);
547 command_info
= kmalloc(sizeof(struct whiteheat_command_private
),
549 if (command_info
== NULL
) {
550 dev_err(&serial
->dev
->dev
,
551 "%s: Out of memory for port structures\n",
552 serial
->type
->description
);
553 goto no_command_private
;
556 mutex_init(&command_info
->mutex
);
557 command_info
->port_running
= 0;
558 init_waitqueue_head(&command_info
->wait_command
);
559 usb_set_serial_port_data(command_port
, command_info
);
560 command_port
->write_urb
->complete
= command_port_write_callback
;
561 command_port
->read_urb
->complete
= command_port_read_callback
;
568 /* Firmware likely not running */
569 dev_err(&serial
->dev
->dev
,
570 "%s: Unable to retrieve firmware version, try replugging\n",
571 serial
->type
->description
);
572 dev_err(&serial
->dev
->dev
,
573 "%s: If the firmware is not running (status led not blinking)\n",
574 serial
->type
->description
);
575 dev_err(&serial
->dev
->dev
,
576 "%s: please contact support@connecttech.com\n",
577 serial
->type
->description
);
582 for (i
= serial
->num_ports
- 1; i
>= 0; i
--) {
583 port
= serial
->port
[i
];
584 info
= usb_get_serial_port_data(port
);
585 for (j
= urb_pool_size
- 1; j
>= 0; j
--) {
586 tmp
= list_first(&info
->tx_urbs_free
);
588 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
592 kfree(urb
->transfer_buffer
);
596 tmp
= list_first(&info
->rx_urbs_free
);
598 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
602 kfree(urb
->transfer_buffer
);
620 static void whiteheat_release(struct usb_serial
*serial
)
622 struct usb_serial_port
*command_port
;
623 struct usb_serial_port
*port
;
624 struct whiteheat_private
*info
;
625 struct whiteheat_urb_wrap
*wrap
;
627 struct list_head
*tmp
;
628 struct list_head
*tmp2
;
633 /* free up our private data for our command port */
634 command_port
= serial
->port
[COMMAND_PORT
];
635 kfree(usb_get_serial_port_data(command_port
));
637 for (i
= 0; i
< serial
->num_ports
; i
++) {
638 port
= serial
->port
[i
];
639 info
= usb_get_serial_port_data(port
);
640 list_for_each_safe(tmp
, tmp2
, &info
->rx_urbs_free
) {
642 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
645 kfree(urb
->transfer_buffer
);
648 list_for_each_safe(tmp
, tmp2
, &info
->tx_urbs_free
) {
650 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
653 kfree(urb
->transfer_buffer
);
662 static int whiteheat_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
666 dbg("%s - port %d", __func__
, port
->number
);
668 retval
= start_command_port(port
->serial
);
673 tty
->low_latency
= 1;
675 /* send an open port command */
676 retval
= firm_open(port
);
678 stop_command_port(port
->serial
);
682 retval
= firm_purge(port
, WHITEHEAT_PURGE_RX
| WHITEHEAT_PURGE_TX
);
685 stop_command_port(port
->serial
);
690 firm_setup_port(tty
);
692 /* Work around HCD bugs */
693 usb_clear_halt(port
->serial
->dev
, port
->read_urb
->pipe
);
694 usb_clear_halt(port
->serial
->dev
, port
->write_urb
->pipe
);
696 /* Start reading from the device */
697 retval
= start_port_read(port
);
700 "%s - failed submitting read urb, error %d\n",
703 stop_command_port(port
->serial
);
708 dbg("%s - exit, retval = %d", __func__
, retval
);
713 static void whiteheat_close(struct usb_serial_port
*port
)
715 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
716 struct whiteheat_urb_wrap
*wrap
;
718 struct list_head
*tmp
;
719 struct list_head
*tmp2
;
721 dbg("%s - port %d", __func__
, port
->number
);
723 firm_report_tx_done(port
);
726 /* shutdown our bulk reads and writes */
727 mutex_lock(&info
->deathwarrant
);
728 spin_lock_irq(&info
->lock
);
729 list_for_each_safe(tmp
, tmp2
, &info
->rx_urbs_submitted
) {
730 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
733 spin_unlock_irq(&info
->lock
);
735 spin_lock_irq(&info
->lock
);
736 list_add(tmp
, &info
->rx_urbs_free
);
738 list_for_each_safe(tmp
, tmp2
, &info
->rx_urb_q
)
739 list_move(tmp
, &info
->rx_urbs_free
);
740 list_for_each_safe(tmp
, tmp2
, &info
->tx_urbs_submitted
) {
741 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
744 spin_unlock_irq(&info
->lock
);
746 spin_lock_irq(&info
->lock
);
747 list_add(tmp
, &info
->tx_urbs_free
);
749 spin_unlock_irq(&info
->lock
);
750 mutex_unlock(&info
->deathwarrant
);
751 stop_command_port(port
->serial
);
755 static int whiteheat_write(struct tty_struct
*tty
,
756 struct usb_serial_port
*port
, const unsigned char *buf
, int count
)
758 struct usb_serial
*serial
= port
->serial
;
759 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
760 struct whiteheat_urb_wrap
*wrap
;
766 struct list_head
*tmp
;
768 dbg("%s - port %d", __func__
, port
->number
);
771 dbg("%s - write request of 0 bytes", __func__
);
776 spin_lock_irqsave(&info
->lock
, flags
);
777 if (list_empty(&info
->tx_urbs_free
)) {
778 spin_unlock_irqrestore(&info
->lock
, flags
);
781 tmp
= list_first(&info
->tx_urbs_free
);
783 spin_unlock_irqrestore(&info
->lock
, flags
);
785 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
787 bytes
= (count
> port
->bulk_out_size
) ?
788 port
->bulk_out_size
: count
;
789 memcpy(urb
->transfer_buffer
, buf
+ sent
, bytes
);
791 usb_serial_debug_data(debug
, &port
->dev
,
792 __func__
, bytes
, urb
->transfer_buffer
);
794 urb
->dev
= serial
->dev
;
795 urb
->transfer_buffer_length
= bytes
;
796 result
= usb_submit_urb(urb
, GFP_ATOMIC
);
799 "%s - failed submitting write urb, error %d\n",
802 spin_lock_irqsave(&info
->lock
, flags
);
803 list_add(tmp
, &info
->tx_urbs_free
);
804 spin_unlock_irqrestore(&info
->lock
, flags
);
809 spin_lock_irqsave(&info
->lock
, flags
);
810 list_add(tmp
, &info
->tx_urbs_submitted
);
811 spin_unlock_irqrestore(&info
->lock
, flags
);
818 static int whiteheat_write_room(struct tty_struct
*tty
)
820 struct usb_serial_port
*port
= tty
->driver_data
;
821 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
822 struct list_head
*tmp
;
826 dbg("%s - port %d", __func__
, port
->number
);
828 spin_lock_irqsave(&info
->lock
, flags
);
829 list_for_each(tmp
, &info
->tx_urbs_free
)
831 spin_unlock_irqrestore(&info
->lock
, flags
);
832 room
*= port
->bulk_out_size
;
834 dbg("%s - returns %d", __func__
, room
);
838 static int whiteheat_tiocmget(struct tty_struct
*tty
, struct file
*file
)
840 struct usb_serial_port
*port
= tty
->driver_data
;
841 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
842 unsigned int modem_signals
= 0;
844 dbg("%s - port %d", __func__
, port
->number
);
846 firm_get_dtr_rts(port
);
847 if (info
->mcr
& UART_MCR_DTR
)
848 modem_signals
|= TIOCM_DTR
;
849 if (info
->mcr
& UART_MCR_RTS
)
850 modem_signals
|= TIOCM_RTS
;
852 return modem_signals
;
855 static int whiteheat_tiocmset(struct tty_struct
*tty
, struct file
*file
,
856 unsigned int set
, unsigned int clear
)
858 struct usb_serial_port
*port
= tty
->driver_data
;
859 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
861 dbg("%s - port %d", __func__
, port
->number
);
864 info
->mcr
|= UART_MCR_RTS
;
866 info
->mcr
|= UART_MCR_DTR
;
868 if (clear
& TIOCM_RTS
)
869 info
->mcr
&= ~UART_MCR_RTS
;
870 if (clear
& TIOCM_DTR
)
871 info
->mcr
&= ~UART_MCR_DTR
;
873 firm_set_dtr(port
, info
->mcr
& UART_MCR_DTR
);
874 firm_set_rts(port
, info
->mcr
& UART_MCR_RTS
);
879 static int whiteheat_ioctl(struct tty_struct
*tty
, struct file
*file
,
880 unsigned int cmd
, unsigned long arg
)
882 struct usb_serial_port
*port
= tty
->driver_data
;
883 struct serial_struct serstruct
;
884 void __user
*user_arg
= (void __user
*)arg
;
886 dbg("%s - port %d, cmd 0x%.4x", __func__
, port
->number
, cmd
);
890 memset(&serstruct
, 0, sizeof(serstruct
));
891 serstruct
.type
= PORT_16654
;
892 serstruct
.line
= port
->serial
->minor
;
893 serstruct
.port
= port
->number
;
894 serstruct
.flags
= ASYNC_SKIP_TEST
| ASYNC_AUTO_IRQ
;
895 serstruct
.xmit_fifo_size
= port
->bulk_out_size
;
896 serstruct
.custom_divisor
= 0;
897 serstruct
.baud_base
= 460800;
898 serstruct
.close_delay
= CLOSING_DELAY
;
899 serstruct
.closing_wait
= CLOSING_DELAY
;
901 if (copy_to_user(user_arg
, &serstruct
, sizeof(serstruct
)))
912 static void whiteheat_set_termios(struct tty_struct
*tty
,
913 struct usb_serial_port
*port
, struct ktermios
*old_termios
)
915 firm_setup_port(tty
);
918 static void whiteheat_break_ctl(struct tty_struct
*tty
, int break_state
)
920 struct usb_serial_port
*port
= tty
->driver_data
;
921 firm_set_break(port
, break_state
);
925 static int whiteheat_chars_in_buffer(struct tty_struct
*tty
)
927 struct usb_serial_port
*port
= tty
->driver_data
;
928 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
929 struct list_head
*tmp
;
930 struct whiteheat_urb_wrap
*wrap
;
934 dbg("%s - port %d", __func__
, port
->number
);
936 spin_lock_irqsave(&info
->lock
, flags
);
937 list_for_each(tmp
, &info
->tx_urbs_submitted
) {
938 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
939 chars
+= wrap
->urb
->transfer_buffer_length
;
941 spin_unlock_irqrestore(&info
->lock
, flags
);
943 dbg("%s - returns %d", __func__
, chars
);
948 static void whiteheat_throttle(struct tty_struct
*tty
)
950 struct usb_serial_port
*port
= tty
->driver_data
;
951 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
953 dbg("%s - port %d", __func__
, port
->number
);
955 spin_lock_irq(&info
->lock
);
956 info
->flags
|= THROTTLED
;
957 spin_unlock_irq(&info
->lock
);
963 static void whiteheat_unthrottle(struct tty_struct
*tty
)
965 struct usb_serial_port
*port
= tty
->driver_data
;
966 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
967 int actually_throttled
;
969 dbg("%s - port %d", __func__
, port
->number
);
971 spin_lock_irq(&info
->lock
);
972 actually_throttled
= info
->flags
& ACTUALLY_THROTTLED
;
973 info
->flags
&= ~(THROTTLED
| ACTUALLY_THROTTLED
);
974 spin_unlock_irq(&info
->lock
);
976 if (actually_throttled
)
977 rx_data_softint(&info
->rx_work
);
983 /*****************************************************************************
984 * Connect Tech's White Heat callback routines
985 *****************************************************************************/
986 static void command_port_write_callback(struct urb
*urb
)
988 int status
= urb
->status
;
993 dbg("nonzero urb status: %d", status
);
999 static void command_port_read_callback(struct urb
*urb
)
1001 struct usb_serial_port
*command_port
= urb
->context
;
1002 struct whiteheat_command_private
*command_info
;
1003 int status
= urb
->status
;
1004 unsigned char *data
= urb
->transfer_buffer
;
1007 dbg("%s", __func__
);
1009 command_info
= usb_get_serial_port_data(command_port
);
1010 if (!command_info
) {
1011 dbg("%s - command_info is NULL, exiting.", __func__
);
1015 dbg("%s - nonzero urb status: %d", __func__
, status
);
1016 if (status
!= -ENOENT
)
1017 command_info
->command_finished
= WHITEHEAT_CMD_FAILURE
;
1018 wake_up(&command_info
->wait_command
);
1022 usb_serial_debug_data(debug
, &command_port
->dev
,
1023 __func__
, urb
->actual_length
, data
);
1025 if (data
[0] == WHITEHEAT_CMD_COMPLETE
) {
1026 command_info
->command_finished
= WHITEHEAT_CMD_COMPLETE
;
1027 wake_up(&command_info
->wait_command
);
1028 } else if (data
[0] == WHITEHEAT_CMD_FAILURE
) {
1029 command_info
->command_finished
= WHITEHEAT_CMD_FAILURE
;
1030 wake_up(&command_info
->wait_command
);
1031 } else if (data
[0] == WHITEHEAT_EVENT
) {
1032 /* These are unsolicited reports from the firmware, hence no
1033 waiting command to wakeup */
1034 dbg("%s - event received", __func__
);
1035 } else if (data
[0] == WHITEHEAT_GET_DTR_RTS
) {
1036 memcpy(command_info
->result_buffer
, &data
[1],
1037 urb
->actual_length
- 1);
1038 command_info
->command_finished
= WHITEHEAT_CMD_COMPLETE
;
1039 wake_up(&command_info
->wait_command
);
1041 dbg("%s - bad reply from firmware", __func__
);
1043 /* Continue trying to always read */
1044 command_port
->read_urb
->dev
= command_port
->serial
->dev
;
1045 result
= usb_submit_urb(command_port
->read_urb
, GFP_ATOMIC
);
1047 dbg("%s - failed resubmitting read urb, error %d",
1052 static void whiteheat_read_callback(struct urb
*urb
)
1054 struct usb_serial_port
*port
= urb
->context
;
1055 struct whiteheat_urb_wrap
*wrap
;
1056 unsigned char *data
= urb
->transfer_buffer
;
1057 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
1058 int status
= urb
->status
;
1060 dbg("%s - port %d", __func__
, port
->number
);
1062 spin_lock(&info
->lock
);
1063 wrap
= urb_to_wrap(urb
, &info
->rx_urbs_submitted
);
1065 spin_unlock(&info
->lock
);
1066 dev_err(&port
->dev
, "%s - Not my urb!\n", __func__
);
1069 list_del(&wrap
->list
);
1070 spin_unlock(&info
->lock
);
1073 dbg("%s - nonzero read bulk status received: %d",
1075 spin_lock(&info
->lock
);
1076 list_add(&wrap
->list
, &info
->rx_urbs_free
);
1077 spin_unlock(&info
->lock
);
1081 usb_serial_debug_data(debug
, &port
->dev
,
1082 __func__
, urb
->actual_length
, data
);
1084 spin_lock(&info
->lock
);
1085 list_add_tail(&wrap
->list
, &info
->rx_urb_q
);
1086 if (info
->flags
& THROTTLED
) {
1087 info
->flags
|= ACTUALLY_THROTTLED
;
1088 spin_unlock(&info
->lock
);
1091 spin_unlock(&info
->lock
);
1093 schedule_work(&info
->rx_work
);
1097 static void whiteheat_write_callback(struct urb
*urb
)
1099 struct usb_serial_port
*port
= urb
->context
;
1100 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
1101 struct whiteheat_urb_wrap
*wrap
;
1102 int status
= urb
->status
;
1104 dbg("%s - port %d", __func__
, port
->number
);
1106 spin_lock(&info
->lock
);
1107 wrap
= urb_to_wrap(urb
, &info
->tx_urbs_submitted
);
1109 spin_unlock(&info
->lock
);
1110 dev_err(&port
->dev
, "%s - Not my urb!\n", __func__
);
1113 list_move(&wrap
->list
, &info
->tx_urbs_free
);
1114 spin_unlock(&info
->lock
);
1117 dbg("%s - nonzero write bulk status received: %d",
1122 usb_serial_port_softint(port
);
1126 /*****************************************************************************
1127 * Connect Tech's White Heat firmware interface
1128 *****************************************************************************/
1129 static int firm_send_command(struct usb_serial_port
*port
, __u8 command
,
1130 __u8
*data
, __u8 datasize
)
1132 struct usb_serial_port
*command_port
;
1133 struct whiteheat_command_private
*command_info
;
1134 struct whiteheat_private
*info
;
1135 __u8
*transfer_buffer
;
1139 dbg("%s - command %d", __func__
, command
);
1141 command_port
= port
->serial
->port
[COMMAND_PORT
];
1142 command_info
= usb_get_serial_port_data(command_port
);
1143 mutex_lock(&command_info
->mutex
);
1144 command_info
->command_finished
= false;
1146 transfer_buffer
= (__u8
*)command_port
->write_urb
->transfer_buffer
;
1147 transfer_buffer
[0] = command
;
1148 memcpy(&transfer_buffer
[1], data
, datasize
);
1149 command_port
->write_urb
->transfer_buffer_length
= datasize
+ 1;
1150 command_port
->write_urb
->dev
= port
->serial
->dev
;
1151 retval
= usb_submit_urb(command_port
->write_urb
, GFP_NOIO
);
1153 dbg("%s - submit urb failed", __func__
);
1157 /* wait for the command to complete */
1158 t
= wait_event_timeout(command_info
->wait_command
,
1159 (bool)command_info
->command_finished
, COMMAND_TIMEOUT
);
1161 usb_kill_urb(command_port
->write_urb
);
1163 if (command_info
->command_finished
== false) {
1164 dbg("%s - command timed out.", __func__
);
1165 retval
= -ETIMEDOUT
;
1169 if (command_info
->command_finished
== WHITEHEAT_CMD_FAILURE
) {
1170 dbg("%s - command failed.", __func__
);
1175 if (command_info
->command_finished
== WHITEHEAT_CMD_COMPLETE
) {
1176 dbg("%s - command completed.", __func__
);
1178 case WHITEHEAT_GET_DTR_RTS
:
1179 info
= usb_get_serial_port_data(port
);
1180 memcpy(&info
->mcr
, command_info
->result_buffer
,
1181 sizeof(struct whiteheat_dr_info
));
1186 mutex_unlock(&command_info
->mutex
);
1191 static int firm_open(struct usb_serial_port
*port
)
1193 struct whiteheat_simple open_command
;
1195 open_command
.port
= port
->number
- port
->serial
->minor
+ 1;
1196 return firm_send_command(port
, WHITEHEAT_OPEN
,
1197 (__u8
*)&open_command
, sizeof(open_command
));
1201 static int firm_close(struct usb_serial_port
*port
)
1203 struct whiteheat_simple close_command
;
1205 close_command
.port
= port
->number
- port
->serial
->minor
+ 1;
1206 return firm_send_command(port
, WHITEHEAT_CLOSE
,
1207 (__u8
*)&close_command
, sizeof(close_command
));
1211 static void firm_setup_port(struct tty_struct
*tty
)
1213 struct usb_serial_port
*port
= tty
->driver_data
;
1214 struct whiteheat_port_settings port_settings
;
1215 unsigned int cflag
= tty
->termios
->c_cflag
;
1217 port_settings
.port
= port
->number
+ 1;
1219 /* get the byte size */
1220 switch (cflag
& CSIZE
) {
1221 case CS5
: port_settings
.bits
= 5; break;
1222 case CS6
: port_settings
.bits
= 6; break;
1223 case CS7
: port_settings
.bits
= 7; break;
1225 case CS8
: port_settings
.bits
= 8; break;
1227 dbg("%s - data bits = %d", __func__
, port_settings
.bits
);
1229 /* determine the parity */
1233 port_settings
.parity
= WHITEHEAT_PAR_MARK
;
1235 port_settings
.parity
= WHITEHEAT_PAR_SPACE
;
1238 port_settings
.parity
= WHITEHEAT_PAR_ODD
;
1240 port_settings
.parity
= WHITEHEAT_PAR_EVEN
;
1242 port_settings
.parity
= WHITEHEAT_PAR_NONE
;
1243 dbg("%s - parity = %c", __func__
, port_settings
.parity
);
1245 /* figure out the stop bits requested */
1247 port_settings
.stop
= 2;
1249 port_settings
.stop
= 1;
1250 dbg("%s - stop bits = %d", __func__
, port_settings
.stop
);
1252 /* figure out the flow control settings */
1253 if (cflag
& CRTSCTS
)
1254 port_settings
.hflow
= (WHITEHEAT_HFLOW_CTS
|
1255 WHITEHEAT_HFLOW_RTS
);
1257 port_settings
.hflow
= WHITEHEAT_HFLOW_NONE
;
1258 dbg("%s - hardware flow control = %s %s %s %s", __func__
,
1259 (port_settings
.hflow
& WHITEHEAT_HFLOW_CTS
) ? "CTS" : "",
1260 (port_settings
.hflow
& WHITEHEAT_HFLOW_RTS
) ? "RTS" : "",
1261 (port_settings
.hflow
& WHITEHEAT_HFLOW_DSR
) ? "DSR" : "",
1262 (port_settings
.hflow
& WHITEHEAT_HFLOW_DTR
) ? "DTR" : "");
1264 /* determine software flow control */
1266 port_settings
.sflow
= WHITEHEAT_SFLOW_RXTX
;
1268 port_settings
.sflow
= WHITEHEAT_SFLOW_NONE
;
1269 dbg("%s - software flow control = %c", __func__
, port_settings
.sflow
);
1271 port_settings
.xon
= START_CHAR(tty
);
1272 port_settings
.xoff
= STOP_CHAR(tty
);
1273 dbg("%s - XON = %2x, XOFF = %2x",
1274 __func__
, port_settings
.xon
, port_settings
.xoff
);
1276 /* get the baud rate wanted */
1277 port_settings
.baud
= tty_get_baud_rate(tty
);
1278 dbg("%s - baud rate = %d", __func__
, port_settings
.baud
);
1280 /* fixme: should set validated settings */
1281 tty_encode_baud_rate(tty
, port_settings
.baud
, port_settings
.baud
);
1282 /* handle any settings that aren't specified in the tty structure */
1283 port_settings
.lloop
= 0;
1285 /* now send the message to the device */
1286 firm_send_command(port
, WHITEHEAT_SETUP_PORT
,
1287 (__u8
*)&port_settings
, sizeof(port_settings
));
1291 static int firm_set_rts(struct usb_serial_port
*port
, __u8 onoff
)
1293 struct whiteheat_set_rdb rts_command
;
1295 rts_command
.port
= port
->number
- port
->serial
->minor
+ 1;
1296 rts_command
.state
= onoff
;
1297 return firm_send_command(port
, WHITEHEAT_SET_RTS
,
1298 (__u8
*)&rts_command
, sizeof(rts_command
));
1302 static int firm_set_dtr(struct usb_serial_port
*port
, __u8 onoff
)
1304 struct whiteheat_set_rdb dtr_command
;
1306 dtr_command
.port
= port
->number
- port
->serial
->minor
+ 1;
1307 dtr_command
.state
= onoff
;
1308 return firm_send_command(port
, WHITEHEAT_SET_DTR
,
1309 (__u8
*)&dtr_command
, sizeof(dtr_command
));
1313 static int firm_set_break(struct usb_serial_port
*port
, __u8 onoff
)
1315 struct whiteheat_set_rdb break_command
;
1317 break_command
.port
= port
->number
- port
->serial
->minor
+ 1;
1318 break_command
.state
= onoff
;
1319 return firm_send_command(port
, WHITEHEAT_SET_BREAK
,
1320 (__u8
*)&break_command
, sizeof(break_command
));
1324 static int firm_purge(struct usb_serial_port
*port
, __u8 rxtx
)
1326 struct whiteheat_purge purge_command
;
1328 purge_command
.port
= port
->number
- port
->serial
->minor
+ 1;
1329 purge_command
.what
= rxtx
;
1330 return firm_send_command(port
, WHITEHEAT_PURGE
,
1331 (__u8
*)&purge_command
, sizeof(purge_command
));
1335 static int firm_get_dtr_rts(struct usb_serial_port
*port
)
1337 struct whiteheat_simple get_dr_command
;
1339 get_dr_command
.port
= port
->number
- port
->serial
->minor
+ 1;
1340 return firm_send_command(port
, WHITEHEAT_GET_DTR_RTS
,
1341 (__u8
*)&get_dr_command
, sizeof(get_dr_command
));
1345 static int firm_report_tx_done(struct usb_serial_port
*port
)
1347 struct whiteheat_simple close_command
;
1349 close_command
.port
= port
->number
- port
->serial
->minor
+ 1;
1350 return firm_send_command(port
, WHITEHEAT_REPORT_TX_DONE
,
1351 (__u8
*)&close_command
, sizeof(close_command
));
1355 /*****************************************************************************
1356 * Connect Tech's White Heat utility functions
1357 *****************************************************************************/
1358 static int start_command_port(struct usb_serial
*serial
)
1360 struct usb_serial_port
*command_port
;
1361 struct whiteheat_command_private
*command_info
;
1364 command_port
= serial
->port
[COMMAND_PORT
];
1365 command_info
= usb_get_serial_port_data(command_port
);
1366 mutex_lock(&command_info
->mutex
);
1367 if (!command_info
->port_running
) {
1368 /* Work around HCD bugs */
1369 usb_clear_halt(serial
->dev
, command_port
->read_urb
->pipe
);
1371 command_port
->read_urb
->dev
= serial
->dev
;
1372 retval
= usb_submit_urb(command_port
->read_urb
, GFP_KERNEL
);
1374 dev_err(&serial
->dev
->dev
,
1375 "%s - failed submitting read urb, error %d\n",
1380 command_info
->port_running
++;
1383 mutex_unlock(&command_info
->mutex
);
1388 static void stop_command_port(struct usb_serial
*serial
)
1390 struct usb_serial_port
*command_port
;
1391 struct whiteheat_command_private
*command_info
;
1393 command_port
= serial
->port
[COMMAND_PORT
];
1394 command_info
= usb_get_serial_port_data(command_port
);
1395 mutex_lock(&command_info
->mutex
);
1396 command_info
->port_running
--;
1397 if (!command_info
->port_running
)
1398 usb_kill_urb(command_port
->read_urb
);
1399 mutex_unlock(&command_info
->mutex
);
1403 static int start_port_read(struct usb_serial_port
*port
)
1405 struct whiteheat_private
*info
= usb_get_serial_port_data(port
);
1406 struct whiteheat_urb_wrap
*wrap
;
1409 unsigned long flags
;
1410 struct list_head
*tmp
;
1411 struct list_head
*tmp2
;
1413 spin_lock_irqsave(&info
->lock
, flags
);
1415 list_for_each_safe(tmp
, tmp2
, &info
->rx_urbs_free
) {
1417 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
1419 urb
->dev
= port
->serial
->dev
;
1420 spin_unlock_irqrestore(&info
->lock
, flags
);
1421 retval
= usb_submit_urb(urb
, GFP_KERNEL
);
1423 spin_lock_irqsave(&info
->lock
, flags
);
1424 list_add(tmp
, &info
->rx_urbs_free
);
1425 list_for_each_safe(tmp
, tmp2
, &info
->rx_urbs_submitted
) {
1426 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
1429 spin_unlock_irqrestore(&info
->lock
, flags
);
1431 spin_lock_irqsave(&info
->lock
, flags
);
1432 list_add(tmp
, &info
->rx_urbs_free
);
1436 spin_lock_irqsave(&info
->lock
, flags
);
1437 list_add(tmp
, &info
->rx_urbs_submitted
);
1440 spin_unlock_irqrestore(&info
->lock
, flags
);
1446 static struct whiteheat_urb_wrap
*urb_to_wrap(struct urb
*urb
,
1447 struct list_head
*head
)
1449 struct whiteheat_urb_wrap
*wrap
;
1450 struct list_head
*tmp
;
1452 list_for_each(tmp
, head
) {
1453 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
1454 if (wrap
->urb
== urb
)
1462 static struct list_head
*list_first(struct list_head
*head
)
1468 static void rx_data_softint(struct work_struct
*work
)
1470 struct whiteheat_private
*info
=
1471 container_of(work
, struct whiteheat_private
, rx_work
);
1472 struct usb_serial_port
*port
= info
->port
;
1473 struct tty_struct
*tty
= tty_port_tty_get(&port
->port
);
1474 struct whiteheat_urb_wrap
*wrap
;
1476 unsigned long flags
;
1477 struct list_head
*tmp
;
1478 struct list_head
*tmp2
;
1482 spin_lock_irqsave(&info
->lock
, flags
);
1483 if (info
->flags
& THROTTLED
) {
1484 spin_unlock_irqrestore(&info
->lock
, flags
);
1488 list_for_each_safe(tmp
, tmp2
, &info
->rx_urb_q
) {
1490 spin_unlock_irqrestore(&info
->lock
, flags
);
1492 wrap
= list_entry(tmp
, struct whiteheat_urb_wrap
, list
);
1495 if (tty
&& urb
->actual_length
) {
1496 int len
= tty_buffer_request_room(tty
,
1497 urb
->actual_length
);
1498 /* This stuff can go away now I suspect */
1499 if (unlikely(len
< urb
->actual_length
)) {
1500 spin_lock_irqsave(&info
->lock
, flags
);
1501 list_add(tmp
, &info
->rx_urb_q
);
1502 spin_unlock_irqrestore(&info
->lock
, flags
);
1503 tty_flip_buffer_push(tty
);
1504 schedule_work(&info
->rx_work
);
1507 tty_insert_flip_string(tty
, urb
->transfer_buffer
, len
);
1511 urb
->dev
= port
->serial
->dev
;
1512 result
= usb_submit_urb(urb
, GFP_ATOMIC
);
1515 "%s - failed resubmitting read urb, error %d\n",
1517 spin_lock_irqsave(&info
->lock
, flags
);
1518 list_add(tmp
, &info
->rx_urbs_free
);
1522 spin_lock_irqsave(&info
->lock
, flags
);
1523 list_add(tmp
, &info
->rx_urbs_submitted
);
1525 spin_unlock_irqrestore(&info
->lock
, flags
);
1528 tty_flip_buffer_push(tty
);
1534 /*****************************************************************************
1535 * Connect Tech's White Heat module functions
1536 *****************************************************************************/
1537 static int __init
whiteheat_init(void)
1540 retval
= usb_serial_register(&whiteheat_fake_device
);
1542 goto failed_fake_register
;
1543 retval
= usb_serial_register(&whiteheat_device
);
1545 goto failed_device_register
;
1546 retval
= usb_register(&whiteheat_driver
);
1548 goto failed_usb_register
;
1549 printk(KERN_INFO KBUILD_MODNAME
": " DRIVER_VERSION
":"
1552 failed_usb_register
:
1553 usb_serial_deregister(&whiteheat_device
);
1554 failed_device_register
:
1555 usb_serial_deregister(&whiteheat_fake_device
);
1556 failed_fake_register
:
1561 static void __exit
whiteheat_exit(void)
1563 usb_deregister(&whiteheat_driver
);
1564 usb_serial_deregister(&whiteheat_fake_device
);
1565 usb_serial_deregister(&whiteheat_device
);
1569 module_init(whiteheat_init
);
1570 module_exit(whiteheat_exit
);
1572 MODULE_AUTHOR(DRIVER_AUTHOR
);
1573 MODULE_DESCRIPTION(DRIVER_DESC
);
1574 MODULE_LICENSE("GPL");
1576 MODULE_FIRMWARE("whiteheat.fw");
1577 MODULE_FIRMWARE("whiteheat_loader.fw");
1579 module_param(urb_pool_size
, int, 0);
1580 MODULE_PARM_DESC(urb_pool_size
, "Number of urbs to use for buffering");
1582 module_param(debug
, bool, S_IRUGO
| S_IWUSR
);
1583 MODULE_PARM_DESC(debug
, "Debug enabled or not");