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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Belkin USB Serial Adapter Driver
  3.  *
  4.  *  Copyright (C) 2000
  5.  *      William Greathouse (wgreathouse@smva.com)
  6.  *
  7.  *  This program is largely derived from work by the linux-usb group
  8.  *  and associated source files.  Please see the usb/serial files for
  9.  *  individual credits and copyrights.
  10.  *  
  11.  *  This program is free software; you can redistribute it and/or modify
  12.  *  it under the terms of the GNU General Public License as published by
  13.  *  the Free Software Foundation; either version 2 of the License, or
  14.  *  (at your option) any later version.
  15.  *
  16.  * See Documentation/usb/usb-serial.txt for more information on using this driver
  17.  *
  18.  * TODO:
  19.  * -- Add true modem contol line query capability.  Currently we track the
  20.  *    states reported by the interrupt and the states we request.
  21.  * -- Add error reporting back to application for UART error conditions.
  22.  *    Just point me at how to implement this and I'll do it. I've put the
  23.  *    framework in, but haven't analyzed the "tty_flip" interface yet.
  24.  * -- Add support for flush commands
  25.  * -- Add everything that is missing :)
  26.  *
  27.  * 30-May-2001 gkh
  28.  * switched from using spinlock to a semaphore, which fixes lots of problems.
  29.  *
  30.  * 08-Apr-2001 gb
  31.  * - Identify version on module load.
  32.  *
  33.  * 12-Mar-2001 gkh
  34.  * - Added support for the GoHubs GO-COM232 device which is the same as the
  35.  *   Peracom device.
  36.  *
  37.  * 06-Nov-2000 gkh
  38.  * - Added support for the old Belkin and Peracom devices.
  39.  * - Made the port able to be opened multiple times.
  40.  * - Added some defaults incase the line settings are things these devices
  41.  *   can't support. 
  42.  *
  43.  * 18-Oct-2000 William Greathouse
  44.  *    Released into the wild (linux-usb-devel)
  45.  *
  46.  * 17-Oct-2000 William Greathouse
  47.  *    Add code to recognize firmware version and set hardware flow control
  48.  *    appropriately.  Belkin states that firmware prior to 3.05 does not
  49.  *    operate correctly in hardware handshake mode.  I have verified this
  50.  *    on firmware 2.05 -- for both RTS and DTR input flow control, the control
  51.  *    line is not reset.  The test performed by the Belkin Win* driver is
  52.  *    to enable hardware flow control for firmware 2.06 or greater and
  53.  *    for 1.00 or prior.  I am only enabling for 2.06 or greater.
  54.  *
  55.  * 12-Oct-2000 William Greathouse
  56.  *    First cut at supporting Belkin USB Serial Adapter F5U103
  57.  *    I did not have a copy of the original work to support this
  58.  *    adapter, so pardon any stupid mistakes.  All of the information
  59.  *    I am using to write this driver was acquired by using a modified
  60.  *    UsbSnoop on Windows2000 and from examining the other USB drivers.
  61.  */
  62. #include <linux/config.h>
  63. #include <linux/kernel.h>
  64. #include <linux/sched.h>
  65. #include <linux/signal.h>
  66. #include <linux/errno.h>
  67. #include <linux/poll.h>
  68. #include <linux/init.h>
  69. #include <linux/slab.h>
  70. #include <linux/fcntl.h>
  71. #include <linux/tty.h>
  72. #include <linux/tty_driver.h>
  73. #include <linux/tty_flip.h>
  74. #include <linux/module.h>
  75. #include <linux/spinlock.h>
  76. #include <linux/usb.h>
  77. #ifdef CONFIG_USB_SERIAL_DEBUG
  78.   static int debug = 1;
  79. #else
  80.   static int debug;
  81. #endif
  82. #include "usb-serial.h"
  83. #include "belkin_sa.h"
  84. /*
  85.  * Version Information
  86.  */
  87. #define DRIVER_VERSION "v1.1"
  88. #define DRIVER_AUTHOR "William Greathouse <wgreathouse@smva.com>"
  89. #define DRIVER_DESC "USB Belkin Serial converter driver"
  90. /* function prototypes for a Belkin USB Serial Adapter F5U103 */
  91. static int  belkin_sa_startup (struct usb_serial *serial);
  92. static void belkin_sa_shutdown (struct usb_serial *serial);
  93. static int  belkin_sa_open (struct usb_serial_port *port, struct file *filp);
  94. static void belkin_sa_close (struct usb_serial_port *port, struct file *filp);
  95. static void belkin_sa_read_int_callback (struct urb *urb);
  96. static void belkin_sa_set_termios (struct usb_serial_port *port, struct termios * old);
  97. static int  belkin_sa_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
  98. static void belkin_sa_break_ctl (struct usb_serial_port *port, int break_state );
  99. static __devinitdata struct usb_device_id id_table_combined [] = {
  100. { USB_DEVICE(BELKIN_SA_VID, BELKIN_SA_PID) },
  101. { USB_DEVICE(BELKIN_OLD_VID, BELKIN_OLD_PID) },
  102. { USB_DEVICE(PERACOM_VID, PERACOM_PID) },
  103. { USB_DEVICE(GOHUBS_VID, GOHUBS_PID) },
  104. { USB_DEVICE(BELKIN_DOCKSTATION_VID, BELKIN_DOCKSTATION_PID) },
  105. { } /* Terminating entry */
  106. };
  107. static __devinitdata struct usb_device_id belkin_dockstation_table [] = {
  108. { USB_DEVICE(BELKIN_DOCKSTATION_VID, BELKIN_DOCKSTATION_PID) },
  109. { } /* Terminating entry */
  110. };
  111. static __devinitdata struct usb_device_id belkin_sa_table [] = {
  112. { USB_DEVICE(BELKIN_SA_VID, BELKIN_SA_PID) },
  113. { } /* Terminating entry */
  114. };
  115. static __devinitdata struct usb_device_id belkin_old_table [] = {
  116. { USB_DEVICE(BELKIN_OLD_VID, BELKIN_OLD_PID) },
  117. { } /* Terminating entry */
  118. };
  119. static __devinitdata struct usb_device_id peracom_table [] = {
  120. { USB_DEVICE(PERACOM_VID, PERACOM_PID) },
  121. { } /* Terminating entry */
  122. };
  123. static __devinitdata struct usb_device_id gocom232_table [] = {
  124. { USB_DEVICE(GOHUBS_VID, GOHUBS_PID) },
  125. { } /* Terminating entry */
  126. };
  127. MODULE_DEVICE_TABLE (usb, id_table_combined);
  128. /* All of the device info needed for the Belkin dockstation serial converter */
  129. static struct usb_serial_device_type belkin_dockstation_device = {
  130. name: "Belkin F5U120-PC USB Serial Adapter",
  131. id_table: belkin_dockstation_table, /* the Belkin F5U103 device */
  132. needs_interrupt_in: MUST_HAVE, /* this device must have an interrupt in endpoint */
  133. needs_bulk_in: MUST_HAVE, /* this device must have a bulk in endpoint */
  134. needs_bulk_out: MUST_HAVE, /* this device must have a bulk out endpoint */
  135. num_interrupt_in: 1,
  136. num_bulk_in: 1,
  137. num_bulk_out: 1,
  138. num_ports: 1,
  139. open: belkin_sa_open,
  140. close: belkin_sa_close,
  141. read_int_callback: belkin_sa_read_int_callback, /* How we get the status info */
  142. ioctl: belkin_sa_ioctl,
  143. set_termios: belkin_sa_set_termios,
  144. break_ctl: belkin_sa_break_ctl,
  145. startup: belkin_sa_startup,
  146. shutdown: belkin_sa_shutdown,
  147. };
  148. /* All of the device info needed for the Belkin serial converter */
  149. static struct usb_serial_device_type belkin_sa_device = {
  150. name: "Belkin F5U103 USB Serial Adapter",
  151. id_table: belkin_sa_table, /* the Belkin F5U103 device */
  152. needs_interrupt_in: MUST_HAVE, /* this device must have an interrupt in endpoint */
  153. needs_bulk_in: MUST_HAVE, /* this device must have a bulk in endpoint */
  154. needs_bulk_out: MUST_HAVE, /* this device must have a bulk out endpoint */
  155. num_interrupt_in: 1,
  156. num_bulk_in: 1,
  157. num_bulk_out: 1,
  158. num_ports: 1,
  159. open: belkin_sa_open,
  160. close: belkin_sa_close,
  161. read_int_callback: belkin_sa_read_int_callback, /* How we get the status info */
  162. ioctl: belkin_sa_ioctl,
  163. set_termios: belkin_sa_set_termios,
  164. break_ctl: belkin_sa_break_ctl,
  165. startup: belkin_sa_startup,
  166. shutdown: belkin_sa_shutdown,
  167. };
  168. /* This driver also supports the "old" school Belkin single port adaptor */
  169. static struct usb_serial_device_type belkin_old_device = {
  170. name: "Belkin USB Serial Adapter",
  171. id_table: belkin_old_table, /* the old Belkin device */
  172. needs_interrupt_in: MUST_HAVE, /* this device must have an interrupt in endpoint */
  173. needs_bulk_in: MUST_HAVE, /* this device must have a bulk in endpoint */
  174. needs_bulk_out: MUST_HAVE, /* this device must have a bulk out endpoint */
  175. num_interrupt_in: 1,
  176. num_bulk_in: 1,
  177. num_bulk_out: 1,
  178. num_ports: 1,
  179. open: belkin_sa_open,
  180. close: belkin_sa_close,
  181. read_int_callback: belkin_sa_read_int_callback, /* How we get the status info */
  182. ioctl: belkin_sa_ioctl,
  183. set_termios: belkin_sa_set_termios,
  184. break_ctl: belkin_sa_break_ctl,
  185. startup: belkin_sa_startup,
  186. shutdown: belkin_sa_shutdown,
  187. };
  188. /* this driver also works for the Peracom single port adapter */
  189. static struct usb_serial_device_type peracom_device = {
  190. name: "Peracom single port USB Serial Adapter",
  191. id_table: peracom_table, /* the Peracom device */
  192. needs_interrupt_in: MUST_HAVE, /* this device must have an interrupt in endpoint */
  193. needs_bulk_in: MUST_HAVE, /* this device must have a bulk in endpoint */
  194. needs_bulk_out: MUST_HAVE, /* this device must have a bulk out endpoint */
  195. num_interrupt_in: 1,
  196. num_bulk_in: 1,
  197. num_bulk_out: 1,
  198. num_ports: 1,
  199. open: belkin_sa_open,
  200. close: belkin_sa_close,
  201. read_int_callback: belkin_sa_read_int_callback, /* How we get the status info */
  202. ioctl: belkin_sa_ioctl,
  203. set_termios: belkin_sa_set_termios,
  204. break_ctl: belkin_sa_break_ctl,
  205. startup: belkin_sa_startup,
  206. shutdown: belkin_sa_shutdown,
  207. };
  208. /* the GoHubs Go-COM232 device is the same as the Peracom single port adapter */
  209. static struct usb_serial_device_type gocom232_device = {
  210. name: "GO-COM232 USB Serial Converter",
  211. id_table: gocom232_table, /* the GO-COM232 device */
  212. needs_interrupt_in: MUST_HAVE, /* this device must have an interrupt in endpoint */
  213. needs_bulk_in: MUST_HAVE, /* this device must have a bulk in endpoint */
  214. needs_bulk_out: MUST_HAVE, /* this device must have a bulk out endpoint */
  215. num_interrupt_in: 1,
  216. num_bulk_in: 1,
  217. num_bulk_out: 1,
  218. num_ports: 1,
  219. open: belkin_sa_open,
  220. close: belkin_sa_close,
  221. read_int_callback: belkin_sa_read_int_callback, /* How we get the status info */
  222. ioctl: belkin_sa_ioctl,
  223. set_termios: belkin_sa_set_termios,
  224. break_ctl: belkin_sa_break_ctl,
  225. startup: belkin_sa_startup,
  226. shutdown: belkin_sa_shutdown,
  227. };
  228. struct belkin_sa_private {
  229. unsigned long control_state;
  230. unsigned char last_lsr;
  231. unsigned char last_msr;
  232. int bad_flow_control;
  233. };
  234. /*
  235.  * ***************************************************************************
  236.  * Belkin USB Serial Adapter F5U103 specific driver functions
  237.  * ***************************************************************************
  238.  */
  239. #define WDR_TIMEOUT (HZ * 5 ) /* default urb timeout */
  240. /* assumes that struct usb_serial *serial is available */
  241. #define BSA_USB_CMD(c,v) usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 
  242.     (c), BELKIN_SA_SET_REQUEST_TYPE, 
  243.     (v), 0, NULL, 0, WDR_TIMEOUT)
  244. /* do some startup allocations not currently performed by usb_serial_probe() */
  245. static int belkin_sa_startup (struct usb_serial *serial)
  246. {
  247. struct usb_device *dev = serial->dev;
  248. struct belkin_sa_private *priv;
  249. /* allocate the private data structure */
  250. serial->port->private = kmalloc(sizeof(struct belkin_sa_private), GFP_KERNEL);
  251. if (!serial->port->private)
  252. return (-1); /* error */
  253. priv = (struct belkin_sa_private *)serial->port->private;
  254. /* set initial values for control structures */
  255. priv->control_state = 0;
  256. priv->last_lsr = 0;
  257. priv->last_msr = 0;
  258. /* see comments at top of file */
  259. priv->bad_flow_control = (dev->descriptor.bcdDevice <= 0x0206) ? 1 : 0;
  260. info("bcdDevice: %04x, bfc: %d", dev->descriptor.bcdDevice, priv->bad_flow_control);
  261. init_waitqueue_head(&serial->port->write_wait);
  262. return (0);
  263. }
  264. static void belkin_sa_shutdown (struct usb_serial *serial)
  265. {
  266. int i;
  267. dbg (__FUNCTION__);
  268. /* stop reads and writes on all ports */
  269. for (i=0; i < serial->num_ports; ++i) {
  270. while (serial->port[i].open_count > 0) {
  271. belkin_sa_close (&serial->port[i], NULL);
  272. }
  273. /* My special items, the standard routines free my urbs */
  274. if (serial->port[i].private)
  275. kfree(serial->port[i].private);
  276. }
  277. }
  278. static int  belkin_sa_open (struct usb_serial_port *port, struct file *filp)
  279. {
  280. int retval = 0;
  281. dbg(__FUNCTION__" port %d", port->number);
  282. down (&port->sem);
  283. ++port->open_count;
  284. MOD_INC_USE_COUNT;
  285. if (!port->active) {
  286. port->active = 1;
  287. /*Start reading from the device*/
  288. /* TODO: Look at possibility of submitting mulitple URBs to device to
  289.  *       enhance buffering.  Win trace shows 16 initial read URBs.
  290.  */
  291. port->read_urb->dev = port->serial->dev;
  292. retval = usb_submit_urb(port->read_urb);
  293. if (retval) {
  294. err("usb_submit_urb(read bulk) failed");
  295. goto exit;
  296. }
  297. port->interrupt_in_urb->dev = port->serial->dev;
  298. retval = usb_submit_urb(port->interrupt_in_urb);
  299. if (retval)
  300. err(" usb_submit_urb(read int) failed");
  301. }
  302. exit:
  303. up (&port->sem);
  304. return retval;
  305. } /* belkin_sa_open */
  306. static void belkin_sa_close (struct usb_serial_port *port, struct file *filp)
  307. {
  308. struct usb_serial *serial;
  309. if (port_paranoia_check (port, __FUNCTION__))
  310. return;
  311. serial = get_usb_serial (port, __FUNCTION__);
  312. if (!serial)
  313. return;
  314. dbg(__FUNCTION__" port %d", port->number);
  315. down (&port->sem);
  316. --port->open_count;
  317. if (port->open_count <= 0) {
  318. if (serial->dev) {
  319. /* shutdown our bulk reads and writes */
  320. usb_unlink_urb (port->write_urb);
  321. usb_unlink_urb (port->read_urb);
  322. usb_unlink_urb (port->interrupt_in_urb);
  323. }
  324. port->active = 0;
  325. }
  326. up (&port->sem);
  327. MOD_DEC_USE_COUNT;
  328. } /* belkin_sa_close */
  329. static void belkin_sa_read_int_callback (struct urb *urb)
  330. {
  331. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  332. struct belkin_sa_private *priv;
  333. struct usb_serial *serial;
  334. unsigned char *data = urb->transfer_buffer;
  335. /* the urb might have been killed. */
  336. if (urb->status)
  337. return;
  338. if (port_paranoia_check (port, __FUNCTION__)) return;
  339. serial = port->serial;
  340. if (serial_paranoia_check (serial, __FUNCTION__)) return;
  341. usb_serial_debug_data (__FILE__, __FUNCTION__, urb->actual_length, data);
  342. /* Handle known interrupt data */
  343. /* ignore data[0] and data[1] */
  344. priv = (struct belkin_sa_private *)port->private;
  345. priv->last_msr = data[BELKIN_SA_MSR_INDEX];
  346. /* Record Control Line states */
  347. if (priv->last_msr & BELKIN_SA_MSR_DSR)
  348. priv->control_state |= TIOCM_DSR;
  349. else
  350. priv->control_state &= ~TIOCM_DSR;
  351. if (priv->last_msr & BELKIN_SA_MSR_CTS)
  352. priv->control_state |= TIOCM_CTS;
  353. else
  354. priv->control_state &= ~TIOCM_CTS;
  355. if (priv->last_msr & BELKIN_SA_MSR_RI)
  356. priv->control_state |= TIOCM_RI;
  357. else
  358. priv->control_state &= ~TIOCM_RI;
  359. if (priv->last_msr & BELKIN_SA_MSR_CD)
  360. priv->control_state |= TIOCM_CD;
  361. else
  362. priv->control_state &= ~TIOCM_CD;
  363. /* Now to report any errors */
  364. priv->last_lsr = data[BELKIN_SA_LSR_INDEX];
  365. #if 0
  366. /*
  367.  * fill in the flip buffer here, but I do not know the relation
  368.  * to the current/next receive buffer or characters.  I need
  369.  * to look in to this before committing any code.
  370.  */
  371. if (priv->last_lsr & BELKIN_SA_LSR_ERR) {
  372. tty = port->tty;
  373. /* Overrun Error */
  374. if (priv->last_lsr & BELKIN_SA_LSR_OE) {
  375. }
  376. /* Parity Error */
  377. if (priv->last_lsr & BELKIN_SA_LSR_PE) {
  378. }
  379. /* Framing Error */
  380. if (priv->last_lsr & BELKIN_SA_LSR_FE) {
  381. }
  382. /* Break Indicator */
  383. if (priv->last_lsr & BELKIN_SA_LSR_BI) {
  384. }
  385. }
  386. #endif
  387. /* INT urbs are automatically re-submitted */
  388. }
  389. static void belkin_sa_set_termios (struct usb_serial_port *port, struct termios *old_termios)
  390. {
  391. struct usb_serial *serial = port->serial;
  392. struct belkin_sa_private *priv = (struct belkin_sa_private *)port->private;
  393. unsigned int iflag = port->tty->termios->c_iflag;
  394. unsigned int cflag = port->tty->termios->c_cflag;
  395. unsigned int old_iflag = old_termios->c_iflag;
  396. unsigned int old_cflag = old_termios->c_cflag;
  397. __u16 urb_value = 0; /* Will hold the new flags */
  398. /* Set the baud rate */
  399. if( (cflag&CBAUD) != (old_cflag&CBAUD) ) {
  400. /* reassert DTR and (maybe) RTS on transition from B0 */
  401. if( (old_cflag&CBAUD) == B0 ) {
  402. priv->control_state |= (TIOCM_DTR|TIOCM_RTS);
  403. if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 1) < 0)
  404. err("Set DTR error");
  405. /* don't set RTS if using hardware flow control */
  406. if (!(old_cflag&CRTSCTS) )
  407. if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 1) < 0)
  408. err("Set RTS error");
  409. }
  410. switch(cflag & CBAUD) {
  411. case B0: /* handled below */ break;
  412. case B300: urb_value = BELKIN_SA_BAUD(300); break;
  413. case B600: urb_value = BELKIN_SA_BAUD(600); break;
  414. case B1200: urb_value = BELKIN_SA_BAUD(1200); break;
  415. case B2400: urb_value = BELKIN_SA_BAUD(2400); break;
  416. case B4800: urb_value = BELKIN_SA_BAUD(4800); break;
  417. case B9600: urb_value = BELKIN_SA_BAUD(9600); break;
  418. case B19200: urb_value = BELKIN_SA_BAUD(19200); break;
  419. case B38400: urb_value = BELKIN_SA_BAUD(38400); break;
  420. case B57600: urb_value = BELKIN_SA_BAUD(57600); break;
  421. case B115200: urb_value = BELKIN_SA_BAUD(115200); break;
  422. case B230400: urb_value = BELKIN_SA_BAUD(230400); break;
  423. default: err("BELKIN USB Serial Adapter: unsupported baudrate request, using default of 9600");
  424. urb_value = BELKIN_SA_BAUD(9600); break;
  425. }
  426. if ((cflag & CBAUD) != B0 ) {
  427. if (BSA_USB_CMD(BELKIN_SA_SET_BAUDRATE_REQUEST, urb_value) < 0)
  428. err("Set baudrate error");
  429. } else {
  430. /* Disable flow control */
  431. if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, BELKIN_SA_FLOW_NONE) < 0)
  432. err("Disable flowcontrol error");
  433. /* Drop RTS and DTR */
  434. priv->control_state &= ~(TIOCM_DTR | TIOCM_RTS);
  435. if (BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, 0) < 0)
  436. err("DTR LOW error");
  437. if (BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, 0) < 0)
  438. err("RTS LOW error");
  439. }
  440. }
  441. /* set the parity */
  442. if( (cflag&(PARENB|PARODD)) != (old_cflag&(PARENB|PARODD)) ) {
  443. if (cflag & PARENB)
  444. urb_value = (cflag & PARODD) ?  BELKIN_SA_PARITY_ODD : BELKIN_SA_PARITY_EVEN;
  445. else
  446. urb_value = BELKIN_SA_PARITY_NONE;
  447. if (BSA_USB_CMD(BELKIN_SA_SET_PARITY_REQUEST, urb_value) < 0)
  448. err("Set parity error");
  449. }
  450. /* set the number of data bits */
  451. if( (cflag&CSIZE) != (old_cflag&CSIZE) ) {
  452. switch (cflag & CSIZE) {
  453. case CS5: urb_value = BELKIN_SA_DATA_BITS(5); break;
  454. case CS6: urb_value = BELKIN_SA_DATA_BITS(6); break;
  455. case CS7: urb_value = BELKIN_SA_DATA_BITS(7); break;
  456. case CS8: urb_value = BELKIN_SA_DATA_BITS(8); break;
  457. default: err("CSIZE was not CS5-CS8, using default of 8");
  458. urb_value = BELKIN_SA_DATA_BITS(8);
  459. break;
  460. }
  461. if (BSA_USB_CMD(BELKIN_SA_SET_DATA_BITS_REQUEST, urb_value) < 0)
  462. err("Set data bits error");
  463. }
  464. /* set the number of stop bits */
  465. if( (cflag&CSTOPB) != (old_cflag&CSTOPB) ) {
  466. urb_value = (cflag & CSTOPB) ? BELKIN_SA_STOP_BITS(2) : BELKIN_SA_STOP_BITS(1);
  467. if (BSA_USB_CMD(BELKIN_SA_SET_STOP_BITS_REQUEST, urb_value) < 0)
  468. err("Set stop bits error");
  469. }
  470. /* Set flow control */
  471. if( (iflag&IXOFF)   != (old_iflag&IXOFF)
  472. || (iflag&IXON)    != (old_iflag&IXON)
  473. ||  (cflag&CRTSCTS) != (old_cflag&CRTSCTS) ) {
  474. urb_value = 0;
  475. if ((iflag & IXOFF) || (iflag & IXON))
  476. urb_value |= (BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
  477. else
  478. urb_value &= ~(BELKIN_SA_FLOW_OXON | BELKIN_SA_FLOW_IXON);
  479. if (cflag & CRTSCTS)
  480. urb_value |=  (BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
  481. else
  482. urb_value &= ~(BELKIN_SA_FLOW_OCTS | BELKIN_SA_FLOW_IRTS);
  483. if (priv->bad_flow_control)
  484. urb_value &= ~(BELKIN_SA_FLOW_IRTS);
  485. if (BSA_USB_CMD(BELKIN_SA_SET_FLOW_CTRL_REQUEST, urb_value) < 0)
  486. err("Set flow control error");
  487. }
  488. } /* belkin_sa_set_termios */
  489. static void belkin_sa_break_ctl( struct usb_serial_port *port, int break_state )
  490. {
  491. struct usb_serial *serial = port->serial;
  492. if (BSA_USB_CMD(BELKIN_SA_SET_BREAK_REQUEST, break_state ? 1 : 0) < 0)
  493. err("Set break_ctl %d", break_state);
  494. }
  495. static int belkin_sa_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
  496. {
  497. struct usb_serial *serial = port->serial;
  498. __u16 urb_value; /* Will hold the new flags */
  499. struct belkin_sa_private *priv = (struct belkin_sa_private *)port->private;
  500. int  ret, mask;
  501. /* Based on code from acm.c and others */
  502. switch (cmd) {
  503. case TIOCMGET:
  504. return put_user(priv->control_state, (unsigned long *) arg);
  505. break;
  506. case TIOCMSET: /* Turns on and off the lines as specified by the mask */
  507. case TIOCMBIS: /* turns on (Sets) the lines as specified by the mask */
  508. case TIOCMBIC: /* turns off (Clears) the lines as specified by the mask */
  509. if (get_user(mask, (unsigned long *) arg))
  510. return -EFAULT;
  511. if ((cmd == TIOCMSET) || (mask & TIOCM_RTS)) {
  512. /* RTS needs set */
  513. urb_value = ((cmd == TIOCMSET) && (mask & TIOCM_RTS)) || (cmd == TIOCMBIS) ? 1 : 0;
  514. if (urb_value)
  515. priv->control_state |= TIOCM_RTS;
  516. else
  517. priv->control_state &= ~TIOCM_RTS;
  518. if ((ret = BSA_USB_CMD(BELKIN_SA_SET_RTS_REQUEST, urb_value)) < 0) {
  519. err("Set RTS error %d", ret);
  520. return(ret);
  521. }
  522. }
  523. if ((cmd == TIOCMSET) || (mask & TIOCM_DTR)) {
  524. /* DTR needs set */
  525. urb_value = ((cmd == TIOCMSET) && (mask & TIOCM_DTR)) || (cmd == TIOCMBIS) ? 1 : 0;
  526. if (urb_value)
  527. priv->control_state |= TIOCM_DTR;
  528. else
  529. priv->control_state &= ~TIOCM_DTR;
  530. if ((ret = BSA_USB_CMD(BELKIN_SA_SET_DTR_REQUEST, urb_value)) < 0) {
  531. err("Set DTR error %d", ret);
  532. return(ret);
  533. }
  534. }
  535. break;
  536. case TIOCMIWAIT:
  537. /* wait for any of the 4 modem inputs (DCD,RI,DSR,CTS)*/
  538. /* TODO */
  539. return( 0 );
  540. case TIOCGICOUNT:
  541. /* return count of modemline transitions */
  542. /* TODO */
  543. return 0;
  544. default:
  545. dbg("belkin_sa_ioctl arg not supported - 0x%04x",cmd);
  546. return(-ENOIOCTLCMD);
  547. break;
  548. }
  549. return 0;
  550. } /* belkin_sa_ioctl */
  551. static int __init belkin_sa_init (void)
  552. {
  553. usb_serial_register (&belkin_dockstation_device);
  554. usb_serial_register (&belkin_sa_device);
  555. usb_serial_register (&belkin_old_device);
  556. usb_serial_register (&peracom_device);
  557. usb_serial_register (&gocom232_device);
  558. info(DRIVER_DESC " " DRIVER_VERSION);
  559. return 0;
  560. }
  561. static void __exit belkin_sa_exit (void)
  562. {
  563. usb_serial_deregister (&belkin_dockstation_device);
  564. usb_serial_deregister (&belkin_sa_device);
  565. usb_serial_deregister (&belkin_old_device);
  566. usb_serial_deregister (&peracom_device);
  567. usb_serial_deregister (&gocom232_device);
  568. }
  569. module_init (belkin_sa_init);
  570. module_exit (belkin_sa_exit);
  571. MODULE_AUTHOR( DRIVER_AUTHOR );
  572. MODULE_DESCRIPTION( DRIVER_DESC );
  573. MODULE_LICENSE("GPL");
  574. MODULE_PARM(debug, "i");
  575. MODULE_PARM_DESC(debug, "Debug enabled or not");