digi_acceleport.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:60k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. *  Digi AccelePort USB-4 and USB-2 Serial Converters
  3. *
  4. *  Copyright 2000 by Digi International
  5. *
  6. *  This program is free software; you can redistribute it and/or modify
  7. *  it under the terms of the GNU General Public License as published by
  8. *  the Free Software Foundation; either version 2 of the License, or
  9. *  (at your option) any later version.
  10. *
  11. *  Shamelessly based on Brian Warner's keyspan_pda.c and Greg Kroah-Hartman's
  12. *  usb-serial driver.
  13. *
  14. *  Peter Berger (pberger@brimson.com)
  15. *  Al Borchers (borchers@steinerpoint.com)
  16. * (04/08/2001) gb
  17. * Identify version on module load.
  18. *
  19. * (11/01/2000) Adam J. Richter
  20. * usb_device_id table support
  21. * (11/01/2000) pberger and borchers
  22. *    -- Turned off the USB_DISABLE_SPD flag for write bulk urbs--it caused
  23. *       USB 4 ports to hang on startup.
  24. *    -- Serialized access to write urbs by adding the dp_write_urb_in_use
  25. *       flag; otherwise, the driver caused SMP system hangs.  Watching the
  26. *       urb status is not sufficient.
  27. *
  28. * (10/05/2000) gkh
  29. *    -- Fixed bug with urb->dev not being set properly, now that the usb
  30. * core needs it.
  31. *  (8/8/2000) pberger and borchers
  32. *    -- Fixed close so that 
  33. *       - it can timeout while waiting for transmit idle, if needed;
  34. *       - it ignores interrupts when flushing the port, turning
  35. *         of modem signalling, and so on;
  36. *       - it waits for the flush to really complete before returning.
  37. *    -- Read_bulk_callback and write_bulk_callback check for a closed
  38. *       port before using the tty struct or writing to the port.
  39. *    -- The two changes above fix the oops caused by interrupted closes.
  40. *    -- Added interruptible args to write_oob_command and set_modem_signals
  41. *       and added a timeout arg to transmit_idle; needed for fixes to
  42. *       close.
  43. *    -- Added code for rx_throttle and rx_unthrottle so that input flow
  44. *       control works.
  45. *    -- Added code to set overrun, parity, framing, and break errors
  46. *       (untested).
  47. *    -- Set USB_DISABLE_SPD flag for write bulk urbs, so no 0 length
  48. *       bulk writes are done.  These hung the Digi USB device.  The
  49. *       0 length bulk writes were a new feature of usb-uhci added in
  50. *       the 2.4.0-test6 kernels.
  51. *    -- Fixed mod inc race in open; do mod inc before sleeping to wait
  52. *       for a close to finish.
  53. *
  54. *  (7/31/2000) pberger
  55. *    -- Fixed bugs with hardware handshaking:
  56. *       - Added code to set/clear tty->hw_stopped in digi_read_oob_callback()
  57. *         and digi_set_termios()
  58. *    -- Added code in digi_set_termios() to
  59. *       - add conditional in code handling transition from B0 to only
  60. *         set RTS if RTS/CTS flow control is either not in use or if
  61. *         the port is not currently throttled.
  62. *       - handle turning off CRTSCTS.
  63. *
  64. *  (7/30/2000) borchers
  65. *    -- Added support for more than one Digi USB device by moving
  66. *       globals to a private structure in the pointed to from the
  67. *       usb_serial structure.
  68. *    -- Moved the modem change and transmit idle wait queues into
  69. *       the port private structure, so each port has its own queue
  70. *       rather than sharing global queues.
  71. *    -- Added support for break signals.
  72. *
  73. *  (7/25/2000) pberger
  74. *    -- Added USB-2 support.  Note: the USB-2 supports 3 devices: two
  75. *       serial and a parallel port.  The parallel port is implemented
  76. *       as a serial-to-parallel converter.  That is, the driver actually
  77. *       presents all three USB-2 interfaces as serial ports, but the third
  78. *       one physically connects to a parallel device.  Thus, for example,
  79. *       one could plug a parallel printer into the USB-2's third port,
  80. *       but from the kernel's (and userland's) point of view what's
  81. *       actually out there is a serial device.
  82. *
  83. *  (7/15/2000) borchers
  84. *    -- Fixed race in open when a close is in progress.
  85. *    -- Keep count of opens and dec the module use count for each
  86. *       outstanding open when shutdown is called (on disconnect).
  87. *    -- Fixed sanity checks in read_bulk_callback and write_bulk_callback
  88. *       so pointers are checked before use.
  89. *    -- Split read bulk callback into in band and out of band
  90. *       callbacks, and no longer restart read chains if there is
  91. *       a status error or a sanity error.  This fixed the seg
  92. *       faults and other errors we used to get on disconnect.
  93. *    -- Port->active is once again a flag as usb-serial intended it
  94. *       to be, not a count.  Since it was only a char it would
  95. *       have been limited to 256 simultaneous opens.  Now the open
  96. *       count is kept in the port private structure in dp_open_count.
  97. *    -- Added code for modularization of the digi_acceleport driver.
  98. *
  99. *  (6/27/2000) pberger and borchers
  100. *    -- Zeroed out sync field in the wakeup_task before first use;
  101. *       otherwise the uninitialized value might prevent the task from
  102. *       being scheduled.
  103. *    -- Initialized ret value to 0 in write_bulk_callback, otherwise
  104. *       the uninitialized value could cause a spurious debugging message.
  105. *
  106. *  (6/22/2000) pberger and borchers
  107. *    -- Made cond_wait_... inline--apparently on SPARC the flags arg
  108. *       to spin_lock_irqsave cannot be passed to another function
  109. *       to call spin_unlock_irqrestore.  Thanks to Pauline Middelink.
  110. *    -- In digi_set_modem_signals the inner nested spin locks use just
  111. *       spin_lock() rather than spin_lock_irqsave().  The old code
  112. *       mistakenly left interrupts off.  Thanks to Pauline Middelink.
  113. *    -- copy_from_user (which can sleep) is no longer called while a
  114. *       spinlock is held.  We copy to a local buffer before getting
  115. *       the spinlock--don't like the extra copy but the code is simpler.
  116. *    -- Printk and dbg are no longer called while a spin lock is held.
  117. *
  118. *  (6/4/2000) pberger and borchers
  119. *    -- Replaced separate calls to spin_unlock_irqrestore and
  120. *       interruptible_sleep_on_timeout with a new function
  121. *       cond_wait_interruptible_timeout_irqrestore.  This eliminates
  122. *       the race condition where the wake up could happen after
  123. *       the unlock and before the sleep.
  124. *    -- Close now waits for output to drain.
  125. *    -- Open waits until any close in progress is finished.
  126. *    -- All out of band responses are now processed, not just the
  127. *       first in a USB packet.
  128. *    -- Fixed a bug that prevented the driver from working when the
  129. *       first Digi port was not the first USB serial port--the driver
  130. *       was mistakenly using the external USB serial port number to
  131. *       try to index into its internal ports.
  132. *    -- Fixed an SMP bug -- write_bulk_callback is called directly from
  133. *       an interrupt, so spin_lock_irqsave/spin_unlock_irqrestore are
  134. *       needed for locks outside write_bulk_callback that are also
  135. *       acquired by write_bulk_callback to prevent deadlocks.
  136. *    -- Fixed support for select() by making digi_chars_in_buffer()
  137. *       return 256 when -EINPROGRESS is set, as the line discipline
  138. *       code in n_tty.c expects.
  139. *    -- Fixed an include file ordering problem that prevented debugging
  140. *       messages from working.
  141. *    -- Fixed an intermittent timeout problem that caused writes to
  142. *       sometimes get stuck on some machines on some kernels.  It turns
  143. *       out in these circumstances write_chan() (in n_tty.c) was
  144. *       asleep waiting for our wakeup call.  Even though we call
  145. *       wake_up_interruptible() in digi_write_bulk_callback(), there is
  146. *       a race condition that could cause the wakeup to fail: if our
  147. *       wake_up_interruptible() call occurs between the time that our
  148. *       driver write routine finishes and write_chan() sets current->state
  149. *       to TASK_INTERRUPTIBLE, the effect of our wakeup setting the state
  150. *       to TASK_RUNNING will be lost and write_chan's subsequent call to
  151. *       schedule() will never return (unless it catches a signal).
  152. *       This race condition occurs because write_bulk_callback() (and thus
  153. *       the wakeup) are called asynchonously from an interrupt, rather than
  154. *       from the scheduler.  We can avoid the race by calling the wakeup
  155. *       from the scheduler queue and that's our fix:  Now, at the end of
  156. *       write_bulk_callback() we queue up a wakeup call on the scheduler
  157. *       task queue.  We still also invoke the wakeup directly since that
  158. *       squeezes a bit more performance out of the driver, and any lost
  159. *       race conditions will get cleaned up at the next scheduler run.
  160. *
  161. *       NOTE:  The problem also goes away if you comment out
  162. *       the two code lines in write_chan() where current->state
  163. *       is set to TASK_RUNNING just before calling driver.write() and to
  164. *       TASK_INTERRUPTIBLE immediately afterwards.  This is why the
  165. *       problem did not show up with the 2.2 kernels -- they do not
  166. *       include that code.
  167. *
  168. *  (5/16/2000) pberger and borchers
  169. *    -- Added timeouts to sleeps, to defend against lost wake ups.
  170. *    -- Handle transition to/from B0 baud rate in digi_set_termios.
  171. *
  172. *  (5/13/2000) pberger and borchers
  173. *    -- All commands now sent on out of band port, using
  174. *       digi_write_oob_command.
  175. *    -- Get modem control signals whenever they change, support TIOCMGET/
  176. *       SET/BIS/BIC ioctls.
  177. *    -- digi_set_termios now supports parity, word size, stop bits, and
  178. *       receive enable.
  179. *    -- Cleaned up open and close, use digi_set_termios and
  180. *       digi_write_oob_command to set port parameters.
  181. *    -- Added digi_startup_device to start read chains on all ports.
  182. *    -- Write buffer is only used when count==1, to be sure put_char can
  183. *       write a char (unless the buffer is full).
  184. *
  185. *  (5/10/2000) pberger and borchers
  186. *    -- Added MOD_INC_USE_COUNT/MOD_DEC_USE_COUNT calls on open/close.
  187. *    -- Fixed problem where the first incoming character is lost on
  188. *       port opens after the first close on that port.  Now we keep
  189. *       the read_urb chain open until shutdown.
  190. *    -- Added more port conditioning calls in digi_open and digi_close.
  191. *    -- Convert port->active to a use count so that we can deal with multiple
  192. *       opens and closes properly.
  193. *    -- Fixed some problems with the locking code.
  194. *
  195. *  (5/3/2000) pberger and borchers
  196. *    -- First alpha version of the driver--many known limitations and bugs.
  197. *
  198. *
  199. *  Locking and SMP
  200. *
  201. *  - Each port, including the out-of-band port, has a lock used to
  202. *    serialize all access to the port's private structure.
  203. *  - The port lock is also used to serialize all writes and access to
  204. *    the port's URB.
  205. *  - The port lock is also used for the port write_wait condition
  206. *    variable.  Holding the port lock will prevent a wake up on the
  207. *    port's write_wait; this can be used with cond_wait_... to be sure
  208. *    the wake up is not lost in a race when dropping the lock and
  209. *    sleeping waiting for the wakeup.
  210. *  - digi_write() does not sleep, since it is sometimes called on
  211. *    interrupt time.
  212. *  - digi_write_bulk_callback() and digi_read_bulk_callback() are
  213. *    called directly from interrupts.  Hence spin_lock_irqsave()
  214. *    and spin_lock_irqrestore() are used in the rest of the code
  215. *    for any locks they acquire.
  216. *  - digi_write_bulk_callback() gets the port lock before waking up
  217. *    processes sleeping on the port write_wait.  It also schedules
  218. *    wake ups so they happen from the scheduler, because the tty
  219. *    system can miss wake ups from interrupts.
  220. *  - All sleeps use a timeout of DIGI_RETRY_TIMEOUT before looping to
  221. *    recheck the condition they are sleeping on.  This is defensive,
  222. *    in case a wake up is lost.
  223. *  - Following Documentation/DocBook/kernel-locking.pdf no spin locks
  224. *    are held when calling copy_to/from_user or printk.
  225. *    
  226. *  $Id: digi_acceleport.c,v 1.80.1.2 2000/11/02 05:45:08 root Exp $
  227. */
  228. #include <linux/config.h>
  229. #include <linux/kernel.h>
  230. #include <linux/sched.h>
  231. #include <linux/signal.h>
  232. #include <linux/errno.h>
  233. #include <linux/poll.h>
  234. #include <linux/init.h>
  235. #include <linux/slab.h>
  236. #include <linux/fcntl.h>
  237. #include <linux/tty.h>
  238. #include <linux/tty_driver.h>
  239. #include <linux/tty_flip.h>
  240. #include <linux/module.h>
  241. #include <linux/spinlock.h>
  242. #include <linux/tqueue.h>
  243. #include <linux/usb.h>
  244. #ifdef CONFIG_USB_SERIAL_DEBUG
  245. static int debug = 1;
  246. #else
  247. static int debug;
  248. #endif
  249. #include "usb-serial.h"
  250. /* Defines */
  251. /*
  252.  * Version Information
  253.  */
  254. #define DRIVER_VERSION "v1.80.1.2"
  255. #define DRIVER_AUTHOR "Peter Berger <pberger@brimson.com>, Al Borchers <borchers@steinerpoint.com>"
  256. #define DRIVER_DESC "Digi AccelePort USB-2/USB-4 Serial Converter driver"
  257. /* port output buffer length -- must be <= transfer buffer length - 2 */
  258. /* so we can be sure to send the full buffer in one urb */
  259. #define DIGI_OUT_BUF_SIZE 8
  260. /* port input buffer length -- must be >= transfer buffer length - 3 */
  261. /* so we can be sure to hold at least one full buffer from one urb */
  262. #define DIGI_IN_BUF_SIZE 64
  263. /* retry timeout while sleeping */
  264. #define DIGI_RETRY_TIMEOUT (HZ/10)
  265. /* timeout while waiting for tty output to drain in close */
  266. /* this delay is used twice in close, so the total delay could */
  267. /* be twice this value */
  268. #define DIGI_CLOSE_TIMEOUT (5*HZ)
  269. /* AccelePort USB Defines */
  270. /* ids */
  271. #define DIGI_VENDOR_ID 0x05c5
  272. #define DIGI_2_ID 0x0002 /* USB-2 */
  273. #define DIGI_4_ID 0x0004 /* USB-4 */
  274. /* commands
  275.  * "INB": can be used on the in-band endpoint
  276.  * "OOB": can be used on the out-of-band endpoint
  277.  */
  278. #define DIGI_CMD_SET_BAUD_RATE 0 /* INB, OOB */
  279. #define DIGI_CMD_SET_WORD_SIZE 1 /* INB, OOB */
  280. #define DIGI_CMD_SET_PARITY 2 /* INB, OOB */
  281. #define DIGI_CMD_SET_STOP_BITS 3 /* INB, OOB */
  282. #define DIGI_CMD_SET_INPUT_FLOW_CONTROL 4 /* INB, OOB */
  283. #define DIGI_CMD_SET_OUTPUT_FLOW_CONTROL 5 /* INB, OOB */
  284. #define DIGI_CMD_SET_DTR_SIGNAL 6 /* INB, OOB */
  285. #define DIGI_CMD_SET_RTS_SIGNAL 7 /* INB, OOB */
  286. #define DIGI_CMD_READ_INPUT_SIGNALS 8 /*      OOB */
  287. #define DIGI_CMD_IFLUSH_FIFO 9 /*      OOB */
  288. #define DIGI_CMD_RECEIVE_ENABLE 10 /* INB, OOB */
  289. #define DIGI_CMD_BREAK_CONTROL 11 /* INB, OOB */
  290. #define DIGI_CMD_LOCAL_LOOPBACK 12 /* INB, OOB */
  291. #define DIGI_CMD_TRANSMIT_IDLE 13 /* INB, OOB */
  292. #define DIGI_CMD_READ_UART_REGISTER 14 /*      OOB */
  293. #define DIGI_CMD_WRITE_UART_REGISTER 15 /* INB, OOB */
  294. #define DIGI_CMD_AND_UART_REGISTER 16 /* INB, OOB */
  295. #define DIGI_CMD_OR_UART_REGISTER 17 /* INB, OOB */
  296. #define DIGI_CMD_SEND_DATA 18 /* INB      */
  297. #define DIGI_CMD_RECEIVE_DATA 19 /* INB      */
  298. #define DIGI_CMD_RECEIVE_DISABLE 20 /* INB      */
  299. #define DIGI_CMD_GET_PORT_TYPE 21 /*      OOB */
  300. /* baud rates */
  301. #define DIGI_BAUD_50 0
  302. #define DIGI_BAUD_75 1
  303. #define DIGI_BAUD_110 2
  304. #define DIGI_BAUD_150 3
  305. #define DIGI_BAUD_200 4
  306. #define DIGI_BAUD_300 5
  307. #define DIGI_BAUD_600 6
  308. #define DIGI_BAUD_1200 7
  309. #define DIGI_BAUD_1800 8
  310. #define DIGI_BAUD_2400 9
  311. #define DIGI_BAUD_4800 10
  312. #define DIGI_BAUD_7200 11
  313. #define DIGI_BAUD_9600 12
  314. #define DIGI_BAUD_14400 13
  315. #define DIGI_BAUD_19200 14
  316. #define DIGI_BAUD_28800 15
  317. #define DIGI_BAUD_38400 16
  318. #define DIGI_BAUD_57600 17
  319. #define DIGI_BAUD_76800 18
  320. #define DIGI_BAUD_115200 19
  321. #define DIGI_BAUD_153600 20
  322. #define DIGI_BAUD_230400 21
  323. #define DIGI_BAUD_460800 22
  324. /* arguments */
  325. #define DIGI_WORD_SIZE_5 0
  326. #define DIGI_WORD_SIZE_6 1
  327. #define DIGI_WORD_SIZE_7 2
  328. #define DIGI_WORD_SIZE_8 3
  329. #define DIGI_PARITY_NONE 0
  330. #define DIGI_PARITY_ODD 1
  331. #define DIGI_PARITY_EVEN 2
  332. #define DIGI_PARITY_MARK 3
  333. #define DIGI_PARITY_SPACE 4
  334. #define DIGI_STOP_BITS_1 0
  335. #define DIGI_STOP_BITS_2 1
  336. #define DIGI_INPUT_FLOW_CONTROL_XON_XOFF 1
  337. #define DIGI_INPUT_FLOW_CONTROL_RTS 2
  338. #define DIGI_INPUT_FLOW_CONTROL_DTR 4
  339. #define DIGI_OUTPUT_FLOW_CONTROL_XON_XOFF 1
  340. #define DIGI_OUTPUT_FLOW_CONTROL_CTS 2
  341. #define DIGI_OUTPUT_FLOW_CONTROL_DSR 4
  342. #define DIGI_DTR_INACTIVE 0
  343. #define DIGI_DTR_ACTIVE 1
  344. #define DIGI_DTR_INPUT_FLOW_CONTROL 2
  345. #define DIGI_RTS_INACTIVE 0
  346. #define DIGI_RTS_ACTIVE 1
  347. #define DIGI_RTS_INPUT_FLOW_CONTROL 2
  348. #define DIGI_RTS_TOGGLE 3
  349. #define DIGI_FLUSH_TX 1
  350. #define DIGI_FLUSH_RX 2
  351. #define DIGI_RESUME_TX 4 /* clears xoff condition */
  352. #define DIGI_TRANSMIT_NOT_IDLE 0
  353. #define DIGI_TRANSMIT_IDLE 1
  354. #define DIGI_DISABLE 0
  355. #define DIGI_ENABLE 1
  356. #define DIGI_DEASSERT 0
  357. #define DIGI_ASSERT 1
  358. /* in band status codes */
  359. #define DIGI_OVERRUN_ERROR 4
  360. #define DIGI_PARITY_ERROR 8
  361. #define DIGI_FRAMING_ERROR 16
  362. #define DIGI_BREAK_ERROR 32
  363. /* out of band status */
  364. #define DIGI_NO_ERROR 0
  365. #define DIGI_BAD_FIRST_PARAMETER 1
  366. #define DIGI_BAD_SECOND_PARAMETER 2
  367. #define DIGI_INVALID_LINE 3
  368. #define DIGI_INVALID_OPCODE 4
  369. /* input signals */
  370. #define DIGI_READ_INPUT_SIGNALS_SLOT 1
  371. #define DIGI_READ_INPUT_SIGNALS_ERR 2
  372. #define DIGI_READ_INPUT_SIGNALS_BUSY 4
  373. #define DIGI_READ_INPUT_SIGNALS_PE 8
  374. #define DIGI_READ_INPUT_SIGNALS_CTS 16
  375. #define DIGI_READ_INPUT_SIGNALS_DSR 32
  376. #define DIGI_READ_INPUT_SIGNALS_RI 64
  377. #define DIGI_READ_INPUT_SIGNALS_DCD 128
  378. /* Structures */
  379. typedef struct digi_serial {
  380. spinlock_t ds_serial_lock;
  381. struct usb_serial_port *ds_oob_port; /* out-of-band port */
  382. int ds_oob_port_num; /* index of out-of-band port */
  383. int ds_device_started;
  384. } digi_serial_t;
  385. typedef struct digi_port {
  386. spinlock_t dp_port_lock;
  387. int dp_port_num;
  388. int dp_out_buf_len;
  389. unsigned char dp_out_buf[DIGI_OUT_BUF_SIZE];
  390. int dp_in_buf_len;
  391. unsigned char dp_in_buf[DIGI_IN_BUF_SIZE];
  392. unsigned char dp_in_flag_buf[DIGI_IN_BUF_SIZE];
  393. int dp_write_urb_in_use;
  394. unsigned int dp_modem_signals;
  395. wait_queue_head_t dp_modem_change_wait;
  396. int dp_open_count; /* inc on open, dec on close */
  397. int dp_transmit_idle;
  398. wait_queue_head_t dp_transmit_idle_wait;
  399. int dp_throttled;
  400. int dp_throttle_restart;
  401. wait_queue_head_t dp_flush_wait;
  402. int dp_in_close; /* close in progress */
  403. wait_queue_head_t dp_close_wait; /* wait queue for close */
  404. struct tq_struct dp_wakeup_task;
  405. } digi_port_t;
  406. /* Local Function Declarations */
  407. static void digi_wakeup_write( struct usb_serial_port *port );
  408. static void digi_wakeup_write_lock( struct usb_serial_port *port );
  409. static int digi_write_oob_command( struct usb_serial_port *port,
  410. unsigned char *buf, int count, int interruptible );
  411. static int digi_write_inb_command( struct usb_serial_port *port,
  412. unsigned char *buf, int count, unsigned long timeout );
  413. static int digi_set_modem_signals( struct usb_serial_port *port,
  414. unsigned int modem_signals, int interruptible );
  415. static int digi_transmit_idle( struct usb_serial_port *port,
  416. unsigned long timeout );
  417. static void digi_rx_throttle (struct usb_serial_port *port);
  418. static void digi_rx_unthrottle (struct usb_serial_port *port);
  419. static void digi_set_termios( struct usb_serial_port *port, 
  420. struct termios *old_termios );
  421. static void digi_break_ctl( struct usb_serial_port *port, int break_state );
  422. static int digi_ioctl( struct usb_serial_port *port, struct file *file,
  423. unsigned int cmd, unsigned long arg );
  424. static int digi_write( struct usb_serial_port *port, int from_user,
  425. const unsigned char *buf, int count );
  426. static void digi_write_bulk_callback( struct urb *urb );
  427. static int digi_write_room( struct usb_serial_port *port );
  428. static int digi_chars_in_buffer( struct usb_serial_port *port );
  429. static int digi_open( struct usb_serial_port *port, struct file *filp );
  430. static void digi_close( struct usb_serial_port *port, struct file *filp );
  431. static int digi_startup_device( struct usb_serial *serial );
  432. static int digi_startup( struct usb_serial *serial );
  433. static void digi_shutdown( struct usb_serial *serial );
  434. static void digi_read_bulk_callback( struct urb *urb );
  435. static int digi_read_inb_callback( struct urb *urb );
  436. static int digi_read_oob_callback( struct urb *urb );
  437. /* Statics */
  438. static __devinitdata struct usb_device_id id_table_combined [] = {
  439. { USB_DEVICE(DIGI_VENDOR_ID, DIGI_2_ID) },
  440. { USB_DEVICE(DIGI_VENDOR_ID, DIGI_4_ID) },
  441. { } /* Terminating entry */
  442. };
  443. static __devinitdata struct usb_device_id id_table_2 [] = {
  444. { USB_DEVICE(DIGI_VENDOR_ID, DIGI_2_ID) },
  445. { } /* Terminating entry */
  446. };
  447. static __devinitdata struct usb_device_id id_table_4 [] = {
  448. { USB_DEVICE(DIGI_VENDOR_ID, DIGI_4_ID) },
  449. { } /* Terminating entry */
  450. };
  451. MODULE_DEVICE_TABLE (usb, id_table_combined);
  452. /* device info needed for the Digi serial converter */
  453. static struct usb_serial_device_type digi_acceleport_2_device = {
  454. name: "Digi USB",
  455. id_table: id_table_2,
  456. needs_interrupt_in: DONT_CARE,
  457. needs_bulk_in: MUST_HAVE,
  458. needs_bulk_out: MUST_HAVE,
  459. num_interrupt_in: 0,
  460. num_bulk_in: 4,
  461. num_bulk_out: 4,
  462. num_ports: 3,
  463. open: digi_open,
  464. close: digi_close,
  465. write: digi_write,
  466. write_room: digi_write_room,
  467. write_bulk_callback:  digi_write_bulk_callback,
  468. read_bulk_callback: digi_read_bulk_callback,
  469. chars_in_buffer: digi_chars_in_buffer,
  470. throttle: digi_rx_throttle,
  471. unthrottle: digi_rx_unthrottle,
  472. ioctl: digi_ioctl,
  473. set_termios: digi_set_termios,
  474. break_ctl: digi_break_ctl,
  475. startup: digi_startup,
  476. shutdown: digi_shutdown,
  477. };
  478. static struct usb_serial_device_type digi_acceleport_4_device = {
  479. name: "Digi USB",
  480. id_table: id_table_4,
  481. needs_interrupt_in: DONT_CARE,
  482. needs_bulk_in: MUST_HAVE,
  483. needs_bulk_out: MUST_HAVE,
  484. num_interrupt_in: 0,
  485. num_bulk_in: 5,
  486. num_bulk_out: 5,
  487. num_ports: 4,
  488. open: digi_open,
  489. close: digi_close,
  490. write: digi_write,
  491. write_room: digi_write_room,
  492. write_bulk_callback:  digi_write_bulk_callback,
  493. read_bulk_callback: digi_read_bulk_callback,
  494. chars_in_buffer: digi_chars_in_buffer,
  495. throttle: digi_rx_throttle,
  496. unthrottle: digi_rx_unthrottle,
  497. ioctl: digi_ioctl,
  498. set_termios: digi_set_termios,
  499. break_ctl: digi_break_ctl,
  500. startup: digi_startup,
  501. shutdown: digi_shutdown,
  502. };
  503. /* Functions */
  504. /*
  505. *  Cond Wait Interruptible Timeout Irqrestore
  506. *
  507. *  Do spin_unlock_irqrestore and interruptible_sleep_on_timeout
  508. *  so that wake ups are not lost if they occur between the unlock
  509. *  and the sleep.  In other words, spin_lock_irqrestore and
  510. *  interruptible_sleep_on_timeout are "atomic" with respect to
  511. *  wake ups.  This is used to implement condition variables.
  512. */
  513. static inline long cond_wait_interruptible_timeout_irqrestore(
  514. wait_queue_head_t *q, long timeout,
  515. spinlock_t *lock, unsigned long flags )
  516. {
  517. wait_queue_t wait;
  518. init_waitqueue_entry( &wait, current );
  519. set_current_state( TASK_INTERRUPTIBLE );
  520. add_wait_queue( q, &wait );
  521. spin_unlock_irqrestore( lock, flags );
  522. timeout = schedule_timeout(timeout);
  523. set_current_state( TASK_RUNNING );
  524. remove_wait_queue( q, &wait );
  525. return( timeout );
  526. }
  527. /*
  528. *  Digi Wakeup Write
  529. *
  530. *  Wake up port, line discipline, and tty processes sleeping
  531. *  on writes.
  532. */
  533. static void digi_wakeup_write_lock( struct usb_serial_port *port )
  534. {
  535. unsigned long flags;
  536. digi_port_t *priv = (digi_port_t *)(port->private);
  537. spin_lock_irqsave( &priv->dp_port_lock, flags );
  538. digi_wakeup_write( port );
  539. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  540. MOD_DEC_USE_COUNT;
  541. }
  542. static void digi_wakeup_write( struct usb_serial_port *port )
  543. {
  544. struct tty_struct *tty = port->tty;
  545. /* wake up port processes */
  546. wake_up_interruptible( &port->write_wait );
  547. /* wake up line discipline */
  548. if( (tty->flags & (1 << TTY_DO_WRITE_WAKEUP))
  549. && tty->ldisc.write_wakeup )
  550. (tty->ldisc.write_wakeup)(tty);
  551. /* wake up other tty processes */
  552. wake_up_interruptible( &tty->write_wait );
  553. /* For 2.2.16 backport -- wake_up_interruptible( &tty->poll_wait ); */
  554. }
  555. /*
  556. *  Digi Write OOB Command
  557. *
  558. *  Write commands on the out of band port.  Commands are 4
  559. *  bytes each, multiple commands can be sent at once, and
  560. *  no command will be split across USB packets.  Returns 0
  561. *  if successful, -EINTR if interrupted while sleeping and
  562. *  the interruptible flag is true, or a negative error
  563. *  returned by usb_submit_urb.
  564. */
  565. static int digi_write_oob_command( struct usb_serial_port *port,
  566. unsigned char *buf, int count, int interruptible )
  567. {
  568. int ret = 0;
  569. int len;
  570. struct usb_serial_port *oob_port = (struct usb_serial_port *)((digi_serial_t *)port->serial->private)->ds_oob_port;
  571. digi_port_t *oob_priv = (digi_port_t *)oob_port->private;
  572. unsigned long flags = 0;
  573. dbg( "digi_write_oob_command: TOP: port=%d, count=%d", oob_priv->dp_port_num, count );
  574. spin_lock_irqsave( &oob_priv->dp_port_lock, flags );
  575. while( count > 0 ) {
  576. while( oob_port->write_urb->status == -EINPROGRESS
  577. || oob_priv->dp_write_urb_in_use ) {
  578. cond_wait_interruptible_timeout_irqrestore(
  579. &oob_port->write_wait, DIGI_RETRY_TIMEOUT,
  580. &oob_priv->dp_port_lock, flags );
  581. if( interruptible && signal_pending(current) ) {
  582. return( -EINTR );
  583. }
  584. spin_lock_irqsave( &oob_priv->dp_port_lock, flags );
  585. }
  586. /* len must be a multiple of 4, so commands are not split */
  587. len = min(count, oob_port->bulk_out_size );
  588. if( len > 4 )
  589. len &= ~3;
  590. memcpy( oob_port->write_urb->transfer_buffer, buf, len );
  591. oob_port->write_urb->transfer_buffer_length = len;
  592. oob_port->write_urb->dev = port->serial->dev;
  593. if( (ret=usb_submit_urb(oob_port->write_urb)) == 0 ) {
  594. oob_priv->dp_write_urb_in_use = 1;
  595. count -= len;
  596. buf += len;
  597. }
  598. }
  599. spin_unlock_irqrestore( &oob_priv->dp_port_lock, flags );
  600. if( ret ) {
  601. err( __FUNCTION__ ": usb_submit_urb failed, ret=%d",
  602. ret );
  603. }
  604. return( ret );
  605. }
  606. /*
  607. *  Digi Write In Band Command
  608. *
  609. *  Write commands on the given port.  Commands are 4
  610. *  bytes each, multiple commands can be sent at once, and
  611. *  no command will be split across USB packets.  If timeout
  612. *  is non-zero, write in band command will return after
  613. *  waiting unsuccessfully for the URB status to clear for
  614. *  timeout ticks.  Returns 0 if successful, or a negative
  615. *  error returned by digi_write.
  616. */
  617. static int digi_write_inb_command( struct usb_serial_port *port,
  618. unsigned char *buf, int count, unsigned long timeout )
  619. {
  620. int ret = 0;
  621. int len;
  622. digi_port_t *priv = (digi_port_t *)(port->private);
  623. unsigned char *data = port->write_urb->transfer_buffer;
  624. unsigned long flags = 0;
  625. dbg( "digi_write_inb_command: TOP: port=%d, count=%d", priv->dp_port_num,
  626. count );
  627. if( timeout )
  628. timeout += jiffies;
  629. else
  630. timeout = ULONG_MAX;
  631. spin_lock_irqsave( &priv->dp_port_lock, flags );
  632. while( count > 0 && ret == 0 ) {
  633. while( (port->write_urb->status == -EINPROGRESS
  634. || priv->dp_write_urb_in_use) && jiffies < timeout ) {
  635. cond_wait_interruptible_timeout_irqrestore(
  636. &port->write_wait, DIGI_RETRY_TIMEOUT,
  637. &priv->dp_port_lock, flags );
  638. if( signal_pending(current) ) {
  639. return( -EINTR );
  640. }
  641. spin_lock_irqsave( &priv->dp_port_lock, flags );
  642. }
  643. /* len must be a multiple of 4 and small enough to */
  644. /* guarantee the write will send buffered data first, */
  645. /* so commands are in order with data and not split */
  646. len = min(count, port->bulk_out_size-2-priv->dp_out_buf_len );
  647. if( len > 4 )
  648. len &= ~3;
  649. /* write any buffered data first */
  650. if( priv->dp_out_buf_len > 0 ) {
  651. data[0] = DIGI_CMD_SEND_DATA;
  652. data[1] = priv->dp_out_buf_len;
  653. memcpy( data+2, priv->dp_out_buf,
  654. priv->dp_out_buf_len );
  655. memcpy( data+2+priv->dp_out_buf_len, buf, len );
  656. port->write_urb->transfer_buffer_length
  657. = priv->dp_out_buf_len+2+len;
  658. } else {
  659. memcpy( data, buf, len );
  660. port->write_urb->transfer_buffer_length = len;
  661. }
  662. port->write_urb->dev = port->serial->dev;
  663. if( (ret=usb_submit_urb(port->write_urb)) == 0 ) {
  664. priv->dp_write_urb_in_use = 1;
  665. priv->dp_out_buf_len = 0;
  666. count -= len;
  667. buf += len;
  668. }
  669. }
  670. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  671. if( ret ) {
  672. err( __FUNCTION__ ": usb_submit_urb failed, ret=%d, port=%d",
  673. ret, priv->dp_port_num );
  674. }
  675. return( ret );
  676. }
  677. /*
  678. *  Digi Set Modem Signals
  679. *
  680. *  Sets or clears DTR and RTS on the port, according to the
  681. *  modem_signals argument.  Use TIOCM_DTR and TIOCM_RTS flags
  682. *  for the modem_signals argument.  Returns 0 if successful,
  683. *  -EINTR if interrupted while sleeping, or a non-zero error
  684. *  returned by usb_submit_urb.
  685. */
  686. static int digi_set_modem_signals( struct usb_serial_port *port,
  687. unsigned int modem_signals, int interruptible )
  688. {
  689. int ret;
  690. digi_port_t *port_priv = (digi_port_t *)port->private;
  691. struct usb_serial_port *oob_port = (struct usb_serial_port *)((digi_serial_t *)port->serial->private)->ds_oob_port;
  692. digi_port_t *oob_priv = (digi_port_t *)oob_port->private;
  693. unsigned char *data = oob_port->write_urb->transfer_buffer;
  694. unsigned long flags = 0;
  695. dbg( "digi_set_modem_signals: TOP: port=%d, modem_signals=0x%x",
  696. port_priv->dp_port_num, modem_signals );
  697. spin_lock_irqsave( &oob_priv->dp_port_lock, flags );
  698. spin_lock( &port_priv->dp_port_lock );
  699. while( oob_port->write_urb->status == -EINPROGRESS
  700. || oob_priv->dp_write_urb_in_use ) {
  701. spin_unlock( &port_priv->dp_port_lock );
  702. cond_wait_interruptible_timeout_irqrestore(
  703. &oob_port->write_wait, DIGI_RETRY_TIMEOUT,
  704. &oob_priv->dp_port_lock, flags );
  705. if( interruptible && signal_pending(current) ) {
  706. return( -EINTR );
  707. }
  708. spin_lock_irqsave( &oob_priv->dp_port_lock, flags );
  709. spin_lock( &port_priv->dp_port_lock );
  710. }
  711. data[0] = DIGI_CMD_SET_DTR_SIGNAL;
  712. data[1] = port_priv->dp_port_num;
  713. data[2] = (modem_signals&TIOCM_DTR) ?
  714. DIGI_DTR_ACTIVE : DIGI_DTR_INACTIVE;
  715. data[3] = 0;
  716. data[4] = DIGI_CMD_SET_RTS_SIGNAL;
  717. data[5] = port_priv->dp_port_num;
  718. data[6] = (modem_signals&TIOCM_RTS) ?
  719. DIGI_RTS_ACTIVE : DIGI_RTS_INACTIVE;
  720. data[7] = 0;
  721. oob_port->write_urb->transfer_buffer_length = 8;
  722. oob_port->write_urb->dev = port->serial->dev;
  723. if( (ret=usb_submit_urb(oob_port->write_urb)) == 0 ) {
  724. oob_priv->dp_write_urb_in_use = 1;
  725. port_priv->dp_modem_signals =
  726. (port_priv->dp_modem_signals&~(TIOCM_DTR|TIOCM_RTS))
  727. | (modem_signals&(TIOCM_DTR|TIOCM_RTS));
  728. }
  729. spin_unlock( &port_priv->dp_port_lock );
  730. spin_unlock_irqrestore( &oob_priv->dp_port_lock, flags );
  731. if( ret ) {
  732. err( __FUNCTION__ ": usb_submit_urb failed, ret=%d",
  733. ret );
  734. }
  735. return( ret );
  736. }
  737. /*
  738. *  Digi Transmit Idle
  739. *
  740. *  Digi transmit idle waits, up to timeout ticks, for the transmitter
  741. *  to go idle.  It returns 0 if successful or a negative error.
  742. *
  743. *  There are race conditions here if more than one process is calling
  744. *  digi_transmit_idle on the same port at the same time.  However, this
  745. *  is only called from close, and only one process can be in close on a
  746. *  port at a time, so its ok.
  747. */
  748. static int digi_transmit_idle( struct usb_serial_port *port,
  749. unsigned long timeout )
  750. {
  751. int ret;
  752. unsigned char buf[2];
  753. digi_port_t *priv = (digi_port_t *)(port->private);
  754. unsigned long flags = 0;
  755. spin_lock_irqsave( &priv->dp_port_lock, flags );
  756. priv->dp_transmit_idle = 0;
  757. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  758. buf[0] = DIGI_CMD_TRANSMIT_IDLE;
  759. buf[1] = 0;
  760. timeout += jiffies;
  761. if( (ret=digi_write_inb_command( port, buf, 2, timeout-jiffies )) != 0 )
  762. return( ret );
  763. spin_lock_irqsave( &priv->dp_port_lock, flags );
  764. while( jiffies < timeout && !priv->dp_transmit_idle ) {
  765. cond_wait_interruptible_timeout_irqrestore(
  766. &priv->dp_transmit_idle_wait, DIGI_RETRY_TIMEOUT,
  767. &priv->dp_port_lock, flags );
  768. if( signal_pending(current) ) {
  769. return( -EINTR );
  770. }
  771. spin_lock_irqsave( &priv->dp_port_lock, flags );
  772. }
  773. priv->dp_transmit_idle = 0;
  774. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  775. return( 0 );
  776. }
  777. static void digi_rx_throttle( struct usb_serial_port *port )
  778. {
  779. unsigned long flags;
  780. digi_port_t *priv = (digi_port_t *)(port->private);
  781. dbg( "digi_rx_throttle: TOP: port=%d", priv->dp_port_num );
  782. /* stop receiving characters by not resubmitting the read urb */
  783. spin_lock_irqsave( &priv->dp_port_lock, flags );
  784. priv->dp_throttled = 1;
  785. priv->dp_throttle_restart = 0;
  786. priv->dp_in_buf_len = 0;
  787. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  788. }
  789. static void digi_rx_unthrottle( struct usb_serial_port *port )
  790. {
  791. int ret = 0;
  792. int len;
  793. unsigned long flags;
  794. digi_port_t *priv = (digi_port_t *)(port->private);
  795. struct tty_struct *tty = port->tty;
  796. dbg( "digi_rx_unthrottle: TOP: port=%d", priv->dp_port_num );
  797. spin_lock_irqsave( &priv->dp_port_lock, flags );
  798. /* send any buffered chars from throttle time on to tty subsystem */
  799. len = min(priv->dp_in_buf_len, TTY_FLIPBUF_SIZE - tty->flip.count );
  800. if( len > 0 ) {
  801. memcpy( tty->flip.char_buf_ptr, priv->dp_in_buf, len );
  802. memcpy( tty->flip.flag_buf_ptr, priv->dp_in_flag_buf, len );
  803. tty->flip.char_buf_ptr += len;
  804. tty->flip.flag_buf_ptr += len;
  805. tty->flip.count += len;
  806. tty_flip_buffer_push( tty );
  807. }
  808. /* restart read chain */
  809. if( priv->dp_throttle_restart ) {
  810. port->read_urb->dev = port->serial->dev;
  811. ret = usb_submit_urb( port->read_urb );
  812. }
  813. /* turn throttle off */
  814. priv->dp_throttled = 0;
  815. priv->dp_in_buf_len = 0;
  816. priv->dp_throttle_restart = 0;
  817. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  818. if( ret ) {
  819. err( __FUNCTION__ ": usb_submit_urb failed, ret=%d, port=%d",
  820. ret, priv->dp_port_num );
  821. }
  822. }
  823. static void digi_set_termios( struct usb_serial_port *port, 
  824. struct termios *old_termios )
  825. {
  826. digi_port_t *priv = (digi_port_t *)(port->private);
  827. unsigned int iflag = port->tty->termios->c_iflag;
  828. unsigned int cflag = port->tty->termios->c_cflag;
  829. unsigned int old_iflag = old_termios->c_iflag;
  830. unsigned int old_cflag = old_termios->c_cflag;
  831. unsigned char buf[32];
  832. unsigned int modem_signals;
  833. int arg,ret;
  834. int i = 0;
  835. dbg( "digi_set_termios: TOP: port=%d, iflag=0x%x, old_iflag=0x%x, cflag=0x%x, old_cflag=0x%x", priv->dp_port_num, iflag, old_iflag, cflag, old_cflag );
  836. /* set baud rate */
  837. if( (cflag&CBAUD) != (old_cflag&CBAUD) ) {
  838. arg = -1;
  839. /* reassert DTR and (maybe) RTS on transition from B0 */
  840. if( (old_cflag&CBAUD) == B0 ) {
  841. /* don't set RTS if using hardware flow control */
  842. /* and throttling input */
  843. modem_signals = TIOCM_DTR;
  844. if( !(port->tty->termios->c_cflag & CRTSCTS) ||
  845. !test_bit(TTY_THROTTLED, &port->tty->flags) ) {
  846. modem_signals |= TIOCM_RTS;
  847. }
  848. digi_set_modem_signals( port, modem_signals, 1 );
  849. }
  850. switch( (cflag&CBAUD) ) {
  851. /* drop DTR and RTS on transition to B0 */
  852. case B0: digi_set_modem_signals( port, 0, 1 ); break;
  853. case B50: arg = DIGI_BAUD_50; break;
  854. case B75: arg = DIGI_BAUD_75; break;
  855. case B110: arg = DIGI_BAUD_110; break;
  856. case B150: arg = DIGI_BAUD_150; break;
  857. case B200: arg = DIGI_BAUD_200; break;
  858. case B300: arg = DIGI_BAUD_300; break;
  859. case B600: arg = DIGI_BAUD_600; break;
  860. case B1200: arg = DIGI_BAUD_1200; break;
  861. case B1800: arg = DIGI_BAUD_1800; break;
  862. case B2400: arg = DIGI_BAUD_2400; break;
  863. case B4800: arg = DIGI_BAUD_4800; break;
  864. case B9600: arg = DIGI_BAUD_9600; break;
  865. case B19200: arg = DIGI_BAUD_19200; break;
  866. case B38400: arg = DIGI_BAUD_38400; break;
  867. case B57600: arg = DIGI_BAUD_57600; break;
  868. case B115200: arg = DIGI_BAUD_115200; break;
  869. case B230400: arg = DIGI_BAUD_230400; break;
  870. case B460800: arg = DIGI_BAUD_460800; break;
  871. default:
  872. dbg( "digi_set_termios: can't handle baud rate 0x%x",
  873. (cflag&CBAUD) );
  874. break;
  875. }
  876. if( arg != -1 ) {
  877. buf[i++] = DIGI_CMD_SET_BAUD_RATE;
  878. buf[i++] = priv->dp_port_num;
  879. buf[i++] = arg;
  880. buf[i++] = 0;
  881. }
  882. }
  883. /* set parity */
  884. if( (cflag&(PARENB|PARODD)) != (old_cflag&(PARENB|PARODD)) ) {
  885. if( (cflag&PARENB) ) {
  886. if( (cflag&PARODD) )
  887. arg = DIGI_PARITY_ODD;
  888. else
  889. arg = DIGI_PARITY_EVEN;
  890. } else {
  891. arg = DIGI_PARITY_NONE;
  892. }
  893. buf[i++] = DIGI_CMD_SET_PARITY;
  894. buf[i++] = priv->dp_port_num;
  895. buf[i++] = arg;
  896. buf[i++] = 0;
  897. }
  898. /* set word size */
  899. if( (cflag&CSIZE) != (old_cflag&CSIZE) ) {
  900. arg = -1;
  901. switch( (cflag&CSIZE) ) {
  902. case CS5: arg = DIGI_WORD_SIZE_5; break;
  903. case CS6: arg = DIGI_WORD_SIZE_6; break;
  904. case CS7: arg = DIGI_WORD_SIZE_7; break;
  905. case CS8: arg = DIGI_WORD_SIZE_8; break;
  906. default:
  907. dbg( "digi_set_termios: can't handle word size %d",
  908. (cflag&CSIZE) );
  909. break;
  910. }
  911. if( arg != -1 ) {
  912. buf[i++] = DIGI_CMD_SET_WORD_SIZE;
  913. buf[i++] = priv->dp_port_num;
  914. buf[i++] = arg;
  915. buf[i++] = 0;
  916. }
  917. }
  918. /* set stop bits */
  919. if( (cflag&CSTOPB) != (old_cflag&CSTOPB) ) {
  920. if( (cflag&CSTOPB) )
  921. arg = DIGI_STOP_BITS_2;
  922. else
  923. arg = DIGI_STOP_BITS_1;
  924. buf[i++] = DIGI_CMD_SET_STOP_BITS;
  925. buf[i++] = priv->dp_port_num;
  926. buf[i++] = arg;
  927. buf[i++] = 0;
  928. }
  929. /* set input flow control */
  930. if( (iflag&IXOFF) != (old_iflag&IXOFF)
  931. || (cflag&CRTSCTS) != (old_cflag&CRTSCTS) ) {
  932. arg = 0;
  933. if( (iflag&IXOFF) )
  934. arg |= DIGI_INPUT_FLOW_CONTROL_XON_XOFF;
  935. else
  936. arg &= ~DIGI_INPUT_FLOW_CONTROL_XON_XOFF;
  937. if( (cflag&CRTSCTS) ) {
  938. arg |= DIGI_INPUT_FLOW_CONTROL_RTS;
  939. /* On USB-4 it is necessary to assert RTS prior */
  940. /* to selecting RTS input flow control.  */
  941. buf[i++] = DIGI_CMD_SET_RTS_SIGNAL;
  942. buf[i++] = priv->dp_port_num;
  943. buf[i++] = DIGI_RTS_ACTIVE;
  944. buf[i++] = 0;
  945. } else {
  946. arg &= ~DIGI_INPUT_FLOW_CONTROL_RTS;
  947. }
  948. buf[i++] = DIGI_CMD_SET_INPUT_FLOW_CONTROL;
  949. buf[i++] = priv->dp_port_num;
  950. buf[i++] = arg;
  951. buf[i++] = 0;
  952. }
  953. /* set output flow control */
  954. if( (iflag&IXON) != (old_iflag&IXON)
  955. || (cflag&CRTSCTS) != (old_cflag&CRTSCTS) ) {
  956. arg = 0;
  957. if( (iflag&IXON) )
  958. arg |= DIGI_OUTPUT_FLOW_CONTROL_XON_XOFF;
  959. else
  960. arg &= ~DIGI_OUTPUT_FLOW_CONTROL_XON_XOFF;
  961. if( (cflag&CRTSCTS) ) {
  962. arg |= DIGI_OUTPUT_FLOW_CONTROL_CTS;
  963. } else {
  964. arg &= ~DIGI_OUTPUT_FLOW_CONTROL_CTS;
  965. port->tty->hw_stopped = 0;
  966. }
  967. buf[i++] = DIGI_CMD_SET_OUTPUT_FLOW_CONTROL;
  968. buf[i++] = priv->dp_port_num;
  969. buf[i++] = arg;
  970. buf[i++] = 0;
  971. }
  972. /* set receive enable/disable */
  973. if( (cflag&CREAD) != (old_cflag&CREAD) ) {
  974. if( (cflag&CREAD) )
  975. arg = DIGI_ENABLE;
  976. else
  977. arg = DIGI_DISABLE;
  978. buf[i++] = DIGI_CMD_RECEIVE_ENABLE;
  979. buf[i++] = priv->dp_port_num;
  980. buf[i++] = arg;
  981. buf[i++] = 0;
  982. }
  983. if( (ret=digi_write_oob_command( port, buf, i, 1 )) != 0 )
  984. dbg( "digi_set_termios: write oob failed, ret=%d", ret );
  985. }
  986. static void digi_break_ctl( struct usb_serial_port *port, int break_state )
  987. {
  988. unsigned char buf[4];
  989. buf[0] = DIGI_CMD_BREAK_CONTROL;
  990. buf[1] = 2; /* length */
  991. buf[2] = break_state ? 1 : 0;
  992. buf[3] = 0; /* pad */
  993. digi_write_inb_command( port, buf, 4, 0 );
  994. }
  995. static int digi_ioctl( struct usb_serial_port *port, struct file *file,
  996. unsigned int cmd, unsigned long arg )
  997. {
  998. digi_port_t *priv = (digi_port_t *)(port->private);
  999. unsigned int val;
  1000. unsigned long flags = 0;
  1001. dbg( "digi_ioctl: TOP: port=%d, cmd=0x%x", priv->dp_port_num, cmd );
  1002. switch (cmd) {
  1003. case TIOCMGET:
  1004. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1005. val = priv->dp_modem_signals;
  1006. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1007. if( copy_to_user((unsigned int *)arg, &val, sizeof(int)) )
  1008. return( -EFAULT );
  1009. return( 0 );
  1010. case TIOCMSET:
  1011. case TIOCMBIS:
  1012. case TIOCMBIC:
  1013. if( copy_from_user(&val, (unsigned int *)arg, sizeof(int)) )
  1014. return( -EFAULT );
  1015. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1016. if( cmd == TIOCMBIS )
  1017. val = priv->dp_modem_signals | val;
  1018. else if( cmd == TIOCMBIC )
  1019. val = priv->dp_modem_signals & ~val;
  1020. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1021. return( digi_set_modem_signals( port, val, 1 ) );
  1022. case TIOCMIWAIT:
  1023. /* wait for any of the 4 modem inputs (DCD,RI,DSR,CTS)*/
  1024. /* TODO */
  1025. return( 0 );
  1026. case TIOCGICOUNT:
  1027. /* return count of modemline transitions */
  1028. /* TODO */
  1029. return 0;
  1030. }
  1031. return( -ENOIOCTLCMD );
  1032. }
  1033. static int digi_write( struct usb_serial_port *port, int from_user,
  1034. const unsigned char *buf, int count )
  1035. {
  1036. int ret,data_len,new_len;
  1037. digi_port_t *priv = (digi_port_t *)(port->private);
  1038. unsigned char *data = port->write_urb->transfer_buffer;
  1039. unsigned char user_buf[64]; /* 64 bytes is max USB bulk packet */
  1040. unsigned long flags = 0;
  1041. dbg( "digi_write: TOP: port=%d, count=%d, from_user=%d, in_interrupt=%d",
  1042. priv->dp_port_num, count, from_user, in_interrupt() );
  1043. /* copy user data (which can sleep) before getting spin lock */
  1044. count = min( count, port->bulk_out_size-2 );
  1045. count = min( 64, count);
  1046. if( from_user && copy_from_user( user_buf, buf, count ) ) {
  1047. return( -EFAULT );
  1048. }
  1049. /* be sure only one write proceeds at a time */
  1050. /* there are races on the port private buffer */
  1051. /* and races to check write_urb->status */
  1052. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1053. /* wait for urb status clear to submit another urb */
  1054. if( port->write_urb->status == -EINPROGRESS
  1055. || priv->dp_write_urb_in_use ) {
  1056. /* buffer data if count is 1 (probably put_char) if possible */
  1057. if( count == 1 && priv->dp_out_buf_len < DIGI_OUT_BUF_SIZE ) {
  1058. priv->dp_out_buf[priv->dp_out_buf_len++]
  1059. = *(from_user ? user_buf : buf);
  1060. new_len = 1;
  1061. } else {
  1062. new_len = 0;
  1063. }
  1064. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1065. return( new_len );
  1066. }
  1067. /* allow space for any buffered data and for new data, up to */
  1068. /* transfer buffer size - 2 (for command and length bytes) */
  1069. new_len = min(count, port->bulk_out_size-2-priv->dp_out_buf_len);
  1070. data_len = new_len + priv->dp_out_buf_len;
  1071. if( data_len == 0 ) {
  1072. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1073. return( 0 );
  1074. }
  1075. port->write_urb->transfer_buffer_length = data_len+2;
  1076. port->write_urb->dev = port->serial->dev;
  1077. *data++ = DIGI_CMD_SEND_DATA;
  1078. *data++ = data_len;
  1079. /* copy in buffered data first */
  1080. memcpy( data, priv->dp_out_buf, priv->dp_out_buf_len );
  1081. data += priv->dp_out_buf_len;
  1082. /* copy in new data */
  1083. memcpy( data, from_user ? user_buf : buf, new_len );
  1084. if( (ret=usb_submit_urb(port->write_urb)) == 0 ) {
  1085. priv->dp_write_urb_in_use = 1;
  1086. ret = new_len;
  1087. priv->dp_out_buf_len = 0;
  1088. }
  1089. /* return length of new data written, or error */
  1090. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1091. if( ret < 0 ) {
  1092. err( __FUNCTION__ ": usb_submit_urb failed, ret=%d, port=%d",
  1093. ret, priv->dp_port_num );
  1094. }
  1095. dbg( "digi_write: returning %d", ret );
  1096. return( ret );
  1097. static void digi_write_bulk_callback( struct urb *urb )
  1098. {
  1099. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  1100. struct usb_serial *serial;
  1101. digi_port_t *priv;
  1102. int ret = 0;
  1103. dbg( "digi_write_bulk_callback: TOP, urb->status=%d", urb->status );
  1104. /* port and serial sanity check */
  1105. if( port == NULL || (priv=(digi_port_t *)(port->private)) == NULL ) {
  1106. err( __FUNCTION__ ": port or port->private is NULL, status=%d",
  1107. urb->status );
  1108. return;
  1109. }
  1110. serial = port->serial;
  1111. if( serial == NULL || serial->private == NULL ) {
  1112. err( __FUNCTION__ ": serial or serial->private is NULL, status=%d", urb->status );
  1113. return;
  1114. }
  1115. /* handle oob callback */
  1116. if( priv->dp_port_num
  1117. == ((digi_serial_t *)(serial->private))->ds_oob_port_num ) {
  1118. dbg( "digi_write_bulk_callback: oob callback" );
  1119. spin_lock( &priv->dp_port_lock );
  1120. priv->dp_write_urb_in_use = 0;
  1121. wake_up_interruptible( &port->write_wait );
  1122. spin_unlock( &priv->dp_port_lock );
  1123. return;
  1124. }
  1125. /* further sanity checks */
  1126. if( port_paranoia_check( port, __FUNCTION__ )
  1127. || serial_paranoia_check( serial, __FUNCTION__ ) )
  1128. return;
  1129. /* try to send any buffered data on this port, if it is open */
  1130. spin_lock( &priv->dp_port_lock );
  1131. priv->dp_write_urb_in_use = 0;
  1132. if( priv->dp_open_count && port->write_urb->status != -EINPROGRESS
  1133. && priv->dp_out_buf_len > 0 ) {
  1134. *((unsigned char *)(port->write_urb->transfer_buffer))
  1135. = (unsigned char)DIGI_CMD_SEND_DATA;
  1136. *((unsigned char *)(port->write_urb->transfer_buffer)+1)
  1137. = (unsigned char)priv->dp_out_buf_len;
  1138. port->write_urb->transfer_buffer_length
  1139. = priv->dp_out_buf_len+2;
  1140. port->write_urb->dev = serial->dev;
  1141. memcpy( port->write_urb->transfer_buffer+2, priv->dp_out_buf,
  1142. priv->dp_out_buf_len );
  1143. if( (ret=usb_submit_urb(port->write_urb)) == 0 ) {
  1144. priv->dp_write_urb_in_use = 1;
  1145. priv->dp_out_buf_len = 0;
  1146. }
  1147. }
  1148. /* wake up processes sleeping on writes immediately */
  1149. digi_wakeup_write( port );
  1150. /* also queue up a wakeup at scheduler time, in case we */
  1151. /* lost the race in write_chan(). */
  1152. MOD_INC_USE_COUNT;
  1153. if (schedule_task(&priv->dp_wakeup_task) == 0)
  1154. MOD_DEC_USE_COUNT;
  1155. spin_unlock( &priv->dp_port_lock );
  1156. if( ret ) {
  1157. err( __FUNCTION__ ": usb_submit_urb failed, ret=%d, port=%d",
  1158. ret, priv->dp_port_num );
  1159. }
  1160. }
  1161. static int digi_write_room( struct usb_serial_port *port )
  1162. {
  1163. int room;
  1164. digi_port_t *priv = (digi_port_t *)(port->private);
  1165. unsigned long flags = 0;
  1166. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1167. if( port->write_urb->status == -EINPROGRESS
  1168. || priv->dp_write_urb_in_use )
  1169. room = 0;
  1170. else
  1171. room = port->bulk_out_size - 2 - priv->dp_out_buf_len;
  1172. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1173. dbg( "digi_write_room: port=%d, room=%d", priv->dp_port_num, room );
  1174. return( room );
  1175. }
  1176. static int digi_chars_in_buffer( struct usb_serial_port *port )
  1177. {
  1178. digi_port_t *priv = (digi_port_t *)(port->private);
  1179. if( port->write_urb->status == -EINPROGRESS
  1180. || priv->dp_write_urb_in_use ) {
  1181. dbg( "digi_chars_in_buffer: port=%d, chars=%d", priv->dp_port_num, port->bulk_out_size - 2 );
  1182. /* return( port->bulk_out_size - 2 ); */
  1183. return( 256 );
  1184. } else {
  1185. dbg( "digi_chars_in_buffer: port=%d, chars=%d", priv->dp_port_num, priv->dp_out_buf_len );
  1186. return( priv->dp_out_buf_len );
  1187. }
  1188. }
  1189. static int digi_open( struct usb_serial_port *port, struct file *filp )
  1190. {
  1191. int ret;
  1192. unsigned char buf[32];
  1193. digi_port_t *priv = (digi_port_t *)(port->private);
  1194. struct termios not_termios;
  1195. unsigned long flags = 0;
  1196. dbg( "digi_open: TOP: port=%d, active=%d, open_count=%d", priv->dp_port_num, port->active, priv->dp_open_count );
  1197. /* be sure the device is started up */
  1198. if( digi_startup_device( port->serial ) != 0 )
  1199. return( -ENXIO );
  1200. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1201. /* don't wait on a close in progress for non-blocking opens */
  1202. if( priv->dp_in_close && (filp->f_flags&(O_NDELAY|O_NONBLOCK)) == 0 ) {
  1203. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1204. return( -EAGAIN );
  1205. }
  1206. /* inc module use count before sleeping to wait for closes */
  1207. ++priv->dp_open_count;
  1208. MOD_INC_USE_COUNT;
  1209. /* wait for a close in progress to finish */
  1210. while( priv->dp_in_close ) {
  1211. cond_wait_interruptible_timeout_irqrestore(
  1212. &priv->dp_close_wait, DIGI_RETRY_TIMEOUT,
  1213. &priv->dp_port_lock, flags );
  1214. if( signal_pending(current) ) {
  1215. --priv->dp_open_count;
  1216. MOD_DEC_USE_COUNT;
  1217. return( -EINTR );
  1218. }
  1219. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1220. }
  1221. /* if port is already open, just return */
  1222. /* be sure exactly one open proceeds */
  1223. if( port->active ) {
  1224. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1225. return( 0 );
  1226. }
  1227. /* first open, mark port as active */
  1228. port->active = 1;
  1229. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1230.  
  1231. /* read modem signals automatically whenever they change */
  1232. buf[0] = DIGI_CMD_READ_INPUT_SIGNALS;
  1233. buf[1] = priv->dp_port_num;
  1234. buf[2] = DIGI_ENABLE;
  1235. buf[3] = 0;
  1236. /* flush fifos */
  1237. buf[4] = DIGI_CMD_IFLUSH_FIFO;
  1238. buf[5] = priv->dp_port_num;
  1239. buf[6] = DIGI_FLUSH_TX | DIGI_FLUSH_RX;
  1240. buf[7] = 0;
  1241. if( (ret=digi_write_oob_command( port, buf, 8, 1 )) != 0 )
  1242. dbg( "digi_open: write oob failed, ret=%d", ret );
  1243. /* set termios settings */
  1244. not_termios.c_cflag = ~port->tty->termios->c_cflag;
  1245. not_termios.c_iflag = ~port->tty->termios->c_iflag;
  1246. digi_set_termios( port, &not_termios );
  1247. /* set DTR and RTS */
  1248. digi_set_modem_signals( port, TIOCM_DTR|TIOCM_RTS, 1 );
  1249. return( 0 );
  1250. }
  1251. static void digi_close( struct usb_serial_port *port, struct file *filp )
  1252. {
  1253. int ret;
  1254. unsigned char buf[32];
  1255. struct tty_struct *tty = port->tty;
  1256. digi_port_t *priv = (digi_port_t *)port->private;
  1257. unsigned long flags = 0;
  1258. dbg( "digi_close: TOP: port=%d, active=%d, open_count=%d", priv->dp_port_num, port->active, priv->dp_open_count );
  1259. /* do cleanup only after final close on this port */
  1260. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1261. if( priv->dp_open_count > 1 ) {
  1262. --priv->dp_open_count;
  1263. MOD_DEC_USE_COUNT;
  1264. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1265. return;
  1266. } else if( priv->dp_open_count <= 0 ) {
  1267. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1268. return;
  1269. }
  1270. priv->dp_in_close = 1;
  1271. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1272. /* tell line discipline to process only XON/XOFF */
  1273.         tty->closing = 1;
  1274. /* wait for output to drain */
  1275. if( (filp->f_flags&(O_NDELAY|O_NONBLOCK)) == 0 ) {
  1276. tty_wait_until_sent( tty, DIGI_CLOSE_TIMEOUT );
  1277. }
  1278. /* flush driver and line discipline buffers */
  1279. if( tty->driver.flush_buffer )
  1280. tty->driver.flush_buffer( tty );
  1281. if( tty->ldisc.flush_buffer )
  1282. tty->ldisc.flush_buffer( tty );
  1283. if (port->serial->dev) {
  1284. /* wait for transmit idle */
  1285. if( (filp->f_flags&(O_NDELAY|O_NONBLOCK)) == 0 ) {
  1286. digi_transmit_idle( port, DIGI_CLOSE_TIMEOUT );
  1287. }
  1288. /* drop DTR and RTS */
  1289. digi_set_modem_signals( port, 0, 0 );
  1290. /* disable input flow control */
  1291. buf[0] = DIGI_CMD_SET_INPUT_FLOW_CONTROL;
  1292. buf[1] = priv->dp_port_num;
  1293. buf[2] = DIGI_DISABLE;
  1294. buf[3] = 0;
  1295. /* disable output flow control */
  1296. buf[4] = DIGI_CMD_SET_OUTPUT_FLOW_CONTROL;
  1297. buf[5] = priv->dp_port_num;
  1298. buf[6] = DIGI_DISABLE;
  1299. buf[7] = 0;
  1300. /* disable reading modem signals automatically */
  1301. buf[8] = DIGI_CMD_READ_INPUT_SIGNALS;
  1302. buf[9] = priv->dp_port_num;
  1303. buf[10] = DIGI_DISABLE;
  1304. buf[11] = 0;
  1305. /* disable receive */
  1306. buf[12] = DIGI_CMD_RECEIVE_ENABLE;
  1307. buf[13] = priv->dp_port_num;
  1308. buf[14] = DIGI_DISABLE;
  1309. buf[15] = 0;
  1310. /* flush fifos */
  1311. buf[16] = DIGI_CMD_IFLUSH_FIFO;
  1312. buf[17] = priv->dp_port_num;
  1313. buf[18] = DIGI_FLUSH_TX | DIGI_FLUSH_RX;
  1314. buf[19] = 0;
  1315. if( (ret=digi_write_oob_command( port, buf, 20, 0 )) != 0 )
  1316. dbg( "digi_close: write oob failed, ret=%d", ret );
  1317. /* wait for final commands on oob port to complete */
  1318. interruptible_sleep_on_timeout( &priv->dp_flush_wait,
  1319. DIGI_CLOSE_TIMEOUT );
  1320. /* shutdown any outstanding bulk writes */
  1321. usb_unlink_urb (port->write_urb);
  1322. }
  1323. tty->closing = 0;
  1324. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1325. port->active = 0;
  1326. priv->dp_write_urb_in_use = 0;
  1327. priv->dp_in_close = 0;
  1328. --priv->dp_open_count;
  1329. MOD_DEC_USE_COUNT;
  1330. wake_up_interruptible( &priv->dp_close_wait );
  1331. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1332. dbg( "digi_close: done" );
  1333. }
  1334. /*
  1335. *  Digi Startup Device
  1336. *
  1337. *  Starts reads on all ports.  Must be called AFTER startup, with
  1338. *  urbs initialized.  Returns 0 if successful, non-zero error otherwise.
  1339. */
  1340. static int digi_startup_device( struct usb_serial *serial )
  1341. {
  1342. int i,ret = 0;
  1343. digi_serial_t *serial_priv = (digi_serial_t *)serial->private;
  1344. struct usb_serial_port *port;
  1345. /* be sure this happens exactly once */
  1346. spin_lock( &serial_priv->ds_serial_lock );
  1347. if( serial_priv->ds_device_started ) {
  1348. spin_unlock( &serial_priv->ds_serial_lock );
  1349. return( 0 );
  1350. }
  1351. serial_priv->ds_device_started = 1;
  1352. spin_unlock( &serial_priv->ds_serial_lock );
  1353. /* start reading from each bulk in endpoint for the device */
  1354. /* set USB_DISABLE_SPD flag for write bulk urbs */
  1355. for( i=0; i<serial->type->num_ports+1; i++ ) {
  1356. port = &serial->port[i];
  1357. port->write_urb->dev = port->serial->dev;
  1358. if( (ret=usb_submit_urb(port->read_urb)) != 0 ) {
  1359. err(
  1360. __FUNCTION__ ": usb_submit_urb failed, ret=%d, port=%d",
  1361. ret, i );
  1362. break;
  1363. }
  1364. }
  1365. return( ret );
  1366. }
  1367. static int digi_startup( struct usb_serial *serial )
  1368. {
  1369. int i;
  1370. digi_port_t *priv;
  1371. digi_serial_t *serial_priv;
  1372. dbg( "digi_startup: TOP" );
  1373. /* allocate the private data structures for all ports */
  1374. /* number of regular ports + 1 for the out-of-band port */
  1375. for( i=0; i<serial->type->num_ports+1; i++ ) {
  1376. serial->port[i].active = 0;
  1377. /* allocate port private structure */
  1378. priv = serial->port[i].private =
  1379. (digi_port_t *)kmalloc( sizeof(digi_port_t),
  1380. GFP_KERNEL );
  1381. if( priv == (digi_port_t *)0 ) {
  1382. while( --i >= 0 )
  1383. kfree( serial->port[i].private );
  1384. return( 1 ); /* error */
  1385. }
  1386. /* initialize port private structure */
  1387. spin_lock_init( &priv->dp_port_lock );
  1388. priv->dp_port_num = i;
  1389. priv->dp_out_buf_len = 0;
  1390. priv->dp_in_buf_len = 0;
  1391. priv->dp_write_urb_in_use = 0;
  1392. priv->dp_modem_signals = 0;
  1393. init_waitqueue_head( &priv->dp_modem_change_wait );
  1394. priv->dp_open_count = 0;
  1395. priv->dp_transmit_idle = 0;
  1396. init_waitqueue_head( &priv->dp_transmit_idle_wait );
  1397. priv->dp_throttled = 0;
  1398. priv->dp_throttle_restart = 0;
  1399. init_waitqueue_head( &priv->dp_flush_wait );
  1400. priv->dp_in_close = 0;
  1401. init_waitqueue_head( &priv->dp_close_wait );
  1402. INIT_LIST_HEAD(&priv->dp_wakeup_task.list);
  1403. priv->dp_wakeup_task.sync = 0;
  1404. priv->dp_wakeup_task.routine = (void *)digi_wakeup_write_lock;
  1405. priv->dp_wakeup_task.data = (void *)(&serial->port[i]);
  1406. /* initialize write wait queue for this port */
  1407. init_waitqueue_head( &serial->port[i].write_wait );
  1408. }
  1409. /* allocate serial private structure */
  1410. serial_priv = serial->private =
  1411. (digi_serial_t *)kmalloc( sizeof(digi_serial_t),
  1412. GFP_KERNEL );
  1413. if( serial_priv == (digi_serial_t *)0 ) {
  1414. for( i=0; i<serial->type->num_ports+1; i++ )
  1415. kfree( serial->port[i].private );
  1416. return( 1 ); /* error */
  1417. }
  1418. /* initialize serial private structure */
  1419. spin_lock_init( &serial_priv->ds_serial_lock );
  1420. serial_priv->ds_oob_port_num = serial->type->num_ports;
  1421. serial_priv->ds_oob_port = &serial->port[serial_priv->ds_oob_port_num];
  1422. serial_priv->ds_device_started = 0;
  1423. return( 0 );
  1424. }
  1425. static void digi_shutdown( struct usb_serial *serial )
  1426. {
  1427. int i;
  1428. digi_port_t *priv;
  1429. unsigned long flags;
  1430. dbg( "digi_shutdown: TOP, in_interrupt()=%d", in_interrupt() );
  1431. /* stop reads and writes on all ports */
  1432. for( i=0; i<serial->type->num_ports+1; i++ ) {
  1433. usb_unlink_urb( serial->port[i].read_urb );
  1434. usb_unlink_urb( serial->port[i].write_urb );
  1435. }
  1436. /* dec module use count */
  1437. for( i=0; i<serial->type->num_ports; i++ ) {
  1438. priv = serial->port[i].private;
  1439. spin_lock_irqsave( &priv->dp_port_lock, flags );
  1440. while( priv->dp_open_count > 0 ) {
  1441. MOD_DEC_USE_COUNT;
  1442. --priv->dp_open_count;
  1443. }
  1444. spin_unlock_irqrestore( &priv->dp_port_lock, flags );
  1445. }
  1446. /* free the private data structures for all ports */
  1447. /* number of regular ports + 1 for the out-of-band port */
  1448. for( i=0; i<serial->type->num_ports+1; i++ )
  1449. kfree( serial->port[i].private );
  1450. kfree( serial->private );
  1451. }
  1452. static void digi_read_bulk_callback( struct urb *urb )
  1453. {
  1454. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  1455. digi_port_t *priv;
  1456. int ret;
  1457. dbg( "digi_read_bulk_callback: TOP" );
  1458. /* port sanity check, do not resubmit if port is not valid */
  1459. if( port == NULL || (priv=(digi_port_t *)(port->private)) == NULL ) {
  1460. err( __FUNCTION__ ": port or port->private is NULL, status=%d",
  1461. urb->status );
  1462. return;
  1463. }
  1464. if( port->serial == NULL
  1465. || serial_paranoia_check( port->serial, __FUNCTION__ )
  1466. || port->serial->private == NULL ) {
  1467. err( __FUNCTION__ ": serial is bad or serial->private is NULL, status=%d", urb->status );
  1468. return;
  1469. }
  1470. /* do not resubmit urb if it has any status error */
  1471. if( urb->status ) {
  1472. err( __FUNCTION__ ": nonzero read bulk status: status=%d, port=%d", urb->status, priv->dp_port_num );
  1473. return;
  1474. }
  1475. /* handle oob or inb callback, do not resubmit if error */
  1476. if( priv->dp_port_num
  1477. == ((digi_serial_t *)(port->serial->private))->ds_oob_port_num ) {
  1478. if( digi_read_oob_callback( urb ) != 0 )
  1479. return;
  1480. } else {
  1481. if( digi_read_inb_callback( urb ) != 0 )
  1482. return;
  1483. }
  1484. /* continue read */
  1485. urb->dev = port->serial->dev;
  1486. if( (ret=usb_submit_urb(urb)) != 0 ) {
  1487. err( __FUNCTION__ ": failed resubmitting urb, ret=%d, port=%d",
  1488. ret, priv->dp_port_num );
  1489. }
  1490. }
  1491. /* 
  1492. *  Digi Read INB Callback
  1493. *
  1494. *  Digi Read INB Callback handles reads on the in band ports, sending
  1495. *  the data on to the tty subsystem.  When called we know port and
  1496. *  port->private are not NULL and port->serial has been validated.
  1497. *  It returns 0 if successful, 1 if successful but the port is
  1498. *  throttled, and -1 if the sanity checks failed.
  1499. */
  1500. static int digi_read_inb_callback( struct urb *urb )
  1501. {
  1502. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  1503. struct tty_struct *tty = port->tty;
  1504. digi_port_t *priv = (digi_port_t *)(port->private);
  1505. int opcode = ((unsigned char *)urb->transfer_buffer)[0];
  1506. int len = ((unsigned char *)urb->transfer_buffer)[1];
  1507. int status = ((unsigned char *)urb->transfer_buffer)[2];
  1508. unsigned char *data = ((unsigned char *)urb->transfer_buffer)+3;
  1509. int flag,throttled;
  1510. /* sanity check */
  1511. if( port_paranoia_check( port, __FUNCTION__ ) )
  1512. return( -1 );
  1513. /* do not process callbacks on closed ports */
  1514. /* but do continue the read chain */
  1515. if( priv->dp_open_count == 0 )
  1516. return( 0 );
  1517. /* short/multiple packet check */
  1518. if( urb->actual_length != len + 2 ) {
  1519.       err( __FUNCTION__ ": INCOMPLETE OR MULTIPLE PACKET, urb->status=%d, port=%d, opcode=%d, len=%d, actual_length=%d, status=%d", urb->status, priv->dp_port_num, opcode, len, urb->actual_length, status );
  1520. return( -1 );
  1521. }
  1522. spin_lock( &priv->dp_port_lock );
  1523. /* check for throttle; if set, do not resubmit read urb */
  1524. /* indicate the read chain needs to be restarted on unthrottle */
  1525. throttled = priv->dp_throttled;
  1526. if( throttled )
  1527. priv->dp_throttle_restart = 1;
  1528. /* receive data */
  1529. if( opcode == DIGI_CMD_RECEIVE_DATA ) {
  1530. /* get flag from status */
  1531. flag = 0;
  1532. /* overrun is special, not associated with a char */
  1533. if( status & DIGI_OVERRUN_ERROR ) {
  1534. tty_insert_flip_char( tty, 0, TTY_OVERRUN );
  1535. }
  1536. /* break takes precedence over parity, */
  1537. /* which takes precedence over framing errors */
  1538. if( status & DIGI_BREAK_ERROR ) {
  1539. flag = TTY_BREAK;
  1540. } else if( status & DIGI_PARITY_ERROR ) {
  1541. flag = TTY_PARITY;
  1542. } else if( status & DIGI_FRAMING_ERROR ) {
  1543. flag = TTY_FRAME;
  1544. }
  1545. /* data length is len-1 (one byte of len is status) */
  1546. --len;
  1547. if( throttled ) {
  1548. len = min( len,
  1549. DIGI_IN_BUF_SIZE - priv->dp_in_buf_len );
  1550. if( len > 0 ) {
  1551. memcpy( priv->dp_in_buf + priv->dp_in_buf_len,
  1552. data, len );
  1553. memset( priv->dp_in_flag_buf
  1554. + priv->dp_in_buf_len, flag, len );
  1555. priv->dp_in_buf_len += len;
  1556. }
  1557. } else {
  1558. len = min( len, TTY_FLIPBUF_SIZE - tty->flip.count );
  1559. if( len > 0 ) {
  1560. memcpy( tty->flip.char_buf_ptr, data, len );
  1561. memset( tty->flip.flag_buf_ptr, flag, len );
  1562. tty->flip.char_buf_ptr += len;
  1563. tty->flip.flag_buf_ptr += len;
  1564. tty->flip.count += len;
  1565. tty_flip_buffer_push( tty );
  1566. }
  1567. }
  1568. }
  1569. spin_unlock( &priv->dp_port_lock );
  1570. if( opcode == DIGI_CMD_RECEIVE_DISABLE ) {
  1571. dbg( __FUNCTION__ ": got RECEIVE_DISABLE" );
  1572. } else if( opcode != DIGI_CMD_RECEIVE_DATA ) {
  1573. dbg( __FUNCTION__ ": unknown opcode: %d", opcode );
  1574. }
  1575. return( throttled ? 1 : 0 );
  1576. }
  1577. /* 
  1578. *  Digi Read OOB Callback
  1579. *
  1580. *  Digi Read OOB Callback handles reads on the out of band port.
  1581. *  When called we know port and port->private are not NULL and
  1582. *  the port->serial is valid.  It returns 0 if successful, and
  1583. *  -1 if the sanity checks failed.
  1584. */
  1585. static int digi_read_oob_callback( struct urb *urb )
  1586. {
  1587. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  1588. struct usb_serial *serial = port->serial;
  1589. digi_port_t *priv = (digi_port_t *)(port->private);
  1590. int opcode, line, status, val;
  1591. int i;
  1592. dbg( "digi_read_oob_callback: port=%d, len=%d", priv->dp_port_num,
  1593. urb->actual_length );
  1594. /* handle each oob command */
  1595. for( i=0; i<urb->actual_length-3; ) {
  1596. opcode = ((unsigned char *)urb->transfer_buffer)[i++];
  1597. line = ((unsigned char *)urb->transfer_buffer)[i++];
  1598. status = ((unsigned char *)urb->transfer_buffer)[i++];
  1599. val = ((unsigned char *)urb->transfer_buffer)[i++];
  1600. dbg( "digi_read_oob_callback: opcode=%d, line=%d, status=%d, val=%d",
  1601. opcode, line, status, val );
  1602. if( status != 0 || line >= serial->type->num_ports )
  1603. continue;
  1604. port = &serial->port[line];
  1605. if( port_paranoia_check( port, __FUNCTION__ )
  1606. || (priv=port->private) == NULL )
  1607. return( -1 );
  1608. if( opcode == DIGI_CMD_READ_INPUT_SIGNALS ) {
  1609. spin_lock( &priv->dp_port_lock );
  1610. /* convert from digi flags to termiox flags */
  1611. if( val & DIGI_READ_INPUT_SIGNALS_CTS ) {
  1612. priv->dp_modem_signals |= TIOCM_CTS;
  1613. /* port must be open to use tty struct */
  1614. if( priv->dp_open_count
  1615. && port->tty->termios->c_cflag & CRTSCTS ) {
  1616. port->tty->hw_stopped = 0;
  1617. digi_wakeup_write( port );
  1618. }
  1619. } else {
  1620. priv->dp_modem_signals &= ~TIOCM_CTS;
  1621. /* port must be open to use tty struct */
  1622. if( priv->dp_open_count
  1623. && port->tty->termios->c_cflag & CRTSCTS ) {
  1624. port->tty->hw_stopped = 1;
  1625. }
  1626. }
  1627. if( val & DIGI_READ_INPUT_SIGNALS_DSR )
  1628. priv->dp_modem_signals |= TIOCM_DSR;
  1629. else
  1630. priv->dp_modem_signals &= ~TIOCM_DSR;
  1631. if( val & DIGI_READ_INPUT_SIGNALS_RI )
  1632. priv->dp_modem_signals |= TIOCM_RI;
  1633. else
  1634. priv->dp_modem_signals &= ~TIOCM_RI;
  1635. if( val & DIGI_READ_INPUT_SIGNALS_DCD )
  1636. priv->dp_modem_signals |= TIOCM_CD;
  1637. else
  1638. priv->dp_modem_signals &= ~TIOCM_CD;
  1639. wake_up_interruptible( &priv->dp_modem_change_wait );
  1640. spin_unlock( &priv->dp_port_lock );
  1641. } else if( opcode == DIGI_CMD_TRANSMIT_IDLE ) {
  1642. spin_lock( &priv->dp_port_lock );
  1643. priv->dp_transmit_idle = 1;
  1644. wake_up_interruptible( &priv->dp_transmit_idle_wait );
  1645. spin_unlock( &priv->dp_port_lock );
  1646. } else if( opcode == DIGI_CMD_IFLUSH_FIFO ) {
  1647. wake_up_interruptible( &priv->dp_flush_wait );
  1648. }
  1649. }
  1650. return( 0 );
  1651. }
  1652. static int __init digi_init (void)
  1653. {
  1654. usb_serial_register (&digi_acceleport_2_device);
  1655. usb_serial_register (&digi_acceleport_4_device);
  1656. info(DRIVER_VERSION ":" DRIVER_DESC);
  1657. return 0;
  1658. }
  1659. static void __exit digi_exit (void)
  1660. {
  1661. usb_serial_deregister (&digi_acceleport_2_device);
  1662. usb_serial_deregister (&digi_acceleport_4_device);
  1663. }
  1664. module_init(digi_init);
  1665. module_exit(digi_exit);
  1666. MODULE_AUTHOR( DRIVER_AUTHOR );
  1667. MODULE_DESCRIPTION( DRIVER_DESC );
  1668. MODULE_LICENSE("GPL");
  1669. MODULE_PARM(debug, "i");
  1670. MODULE_PARM_DESC(debug, "Debug enabled or not");