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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.   Keyspan USB to Serial Converter driver
  3.  
  4.   (C) Copyright (C) 2000-2001
  5.       Hugh Blemings <hugh@misc.nu>
  6.    
  7.   This program is free software; you can redistribute it and/or modify
  8.   it under the terms of the GNU General Public License as published by
  9.   the Free Software Foundation; either version 2 of the License, or
  10.   (at your option) any later version.
  11.   See http://misc.nu/hugh/keyspan.html for more information.
  12.   
  13.   Code in this driver inspired by and in a number of places taken
  14.   from Brian Warner's original Keyspan-PDA driver.
  15.   This driver has been put together with the support of Innosys, Inc.
  16.   and Keyspan, Inc the manufacturers of the Keyspan USB-serial products.
  17.   Thanks Guys :)
  18.   
  19.   Thanks to Paulus for miscellaneous tidy ups, some largish chunks
  20.   of much nicer and/or completely new code and (perhaps most uniquely)
  21.   having the patience to sit down and explain why and where he'd changed
  22.   stuff. 
  23.   
  24.   Tip 'o the hat to IBM (and previously Linuxcare :) for supporting 
  25.   staff in their work on open source projects.
  26.   Change History
  27.     Mon Oct  8 14:29:00 EST 2001 hugh
  28.       Fixed bug that prevented mulitport devices operating correctly
  29.       if they weren't the first unit attached.
  30.     Sat Oct  6 12:31:21 EST 2001 hugh
  31.       Added support for USA-28XA and -28XB, misc cleanups, break support
  32.       for usa26 based models thanks to David Gibson.
  33.     Thu May 31 11:56:42 PDT 2001 gkh
  34.       switched from using spinlock to a semaphore
  35.    
  36.     (04/08/2001) gb
  37. Identify version on module load.
  38.    
  39.     (11/01/2000) Adam J. Richter
  40. usb_device_id table support.
  41.    
  42.     Tue Oct 10 23:15:33 EST 2000 Hugh
  43.       Merged Paul's changes with my USA-49W mods.  Work in progress
  44.       still...
  45.   
  46.     Wed Jul 19 14:00:42 EST 2000 gkh
  47.       Added module_init and module_exit functions to handle the fact that
  48.       this driver is a loadable module now.
  49.  
  50.     Tue Jul 18 16:14:52 EST 2000 Hugh
  51.       Basic character input/output for USA-19 now mostly works,
  52.       fixed at 9600 baud for the moment.
  53.     Sat Jul  8 11:11:48 EST 2000 Hugh
  54.       First public release - nothing works except the firmware upload.
  55.       Tested on PPC and x86 architectures, seems to behave...
  56. */
  57. #include <linux/config.h>
  58. #include <linux/kernel.h>
  59. #include <linux/sched.h>
  60. #include <linux/signal.h>
  61. #include <linux/errno.h>
  62. #include <linux/poll.h>
  63. #include <linux/init.h>
  64. #include <linux/slab.h>
  65. #include <linux/fcntl.h>
  66. #include <linux/tty.h>
  67. #include <linux/tty_driver.h>
  68. #include <linux/tty_flip.h>
  69. #include <linux/module.h>
  70. #include <linux/spinlock.h>
  71. #include <linux/usb.h>
  72. #ifdef CONFIG_USB_SERIAL_DEBUG
  73. static int debug = 1;
  74. #define DEBUG
  75. #else
  76. static int debug;
  77. #undef DEBUG
  78. #endif
  79. #include <linux/usb.h>
  80. #include "usb-serial.h"
  81. #include "keyspan.h"
  82. /*
  83.  * Version Information
  84.  */
  85. #define DRIVER_VERSION "v1.1.1"
  86. #define DRIVER_AUTHOR "Hugh Blemings <hugh@misc.nu"
  87. #define DRIVER_DESC "Keyspan USB to Serial Converter Driver"
  88. #define INSTAT_BUFLEN 32
  89. #define GLOCONT_BUFLEN 64
  90. /* Per device and per port private data */
  91. struct keyspan_serial_private {
  92. /* number of active ports */
  93. atomic_t active_count;
  94. const keyspan_device_details *device_details;
  95. urb_t *instat_urb;
  96. char instat_buf[INSTAT_BUFLEN];
  97. /* XXX this one probably will need a lock */
  98. urb_t *glocont_urb;
  99. char glocont_buf[GLOCONT_BUFLEN];
  100. };
  101. struct keyspan_port_private {
  102. /* Keep track of which input & output endpoints to use */
  103. int in_flip;
  104. int out_flip;
  105. /* Keep duplicate of device details in each port
  106.    structure as well - simplifies some of the
  107.    callback functions etc. */
  108. const keyspan_device_details *device_details;
  109. /* Input endpoints and buffer for this port */
  110. urb_t *in_urbs[2];
  111. char in_buffer[2][64];
  112. /* Output endpoints and buffer for this port */
  113. urb_t *out_urbs[2];
  114. char out_buffer[2][64];
  115. /* Input ack endpoint */
  116. urb_t *inack_urb;
  117. char inack_buffer[1];
  118. /* Output control endpoint */
  119. urb_t *outcont_urb;
  120. char outcont_buffer[64];
  121. /* Settings for the port */
  122. int baud;
  123. int old_baud;
  124. unsigned int cflag;
  125. enum {flow_none, flow_cts, flow_xon} flow_control;
  126. int rts_state; /* Handshaking pins (outputs) */
  127. int dtr_state;
  128. int cts_state; /* Handshaking pins (inputs) */
  129. int dsr_state;
  130. int dcd_state;
  131. int ri_state;
  132. int break_on;
  133. unsigned long tx_start_time[2];
  134. int resend_cont; /* need to resend control packet */
  135. };
  136. /* Include Keyspan message headers.  All current Keyspan Adapters
  137.    make use of one of three message formats which are referred
  138.    to as USA-26, USA-28 and USA-49 by Keyspan and within this driver. */
  139. #include "keyspan_usa26msg.h"
  140. #include "keyspan_usa28msg.h"
  141. #include "keyspan_usa49msg.h"
  142. /* If you don't get debugging output, uncomment the following
  143.    two lines to enable cheat. */
  144. #if 0
  145.   #undef  dbg 
  146.   #define dbg printk 
  147. #endif
  148. /* Functions used by new usb-serial code. */
  149. static int __init keyspan_init (void)
  150. {
  151. usb_serial_register (&keyspan_usa18x_pre_device);
  152. usb_serial_register (&keyspan_usa19_pre_device);
  153. usb_serial_register (&keyspan_usa19w_pre_device);
  154. usb_serial_register (&keyspan_usa28_pre_device);
  155. usb_serial_register (&keyspan_usa28x_pre_device);
  156. usb_serial_register (&keyspan_usa28xa_pre_device);
  157. usb_serial_register (&keyspan_usa28xb_pre_device);
  158. usb_serial_register (&keyspan_usa49w_pre_device);
  159. usb_serial_register (&keyspan_usa18x_device);
  160. usb_serial_register (&keyspan_usa19_device);
  161. usb_serial_register (&keyspan_usa19w_device);
  162. usb_serial_register (&keyspan_usa28_device);
  163. usb_serial_register (&keyspan_usa28x_device);
  164. usb_serial_register (&keyspan_usa28xa_device);
  165. /* We don't need a separate entry for the usa28xb as it appears as a 28x anyway */
  166. usb_serial_register (&keyspan_usa49w_device);
  167. info(DRIVER_VERSION ":" DRIVER_DESC);
  168. return 0;
  169. }
  170. static void __exit keyspan_exit (void)
  171. {
  172. usb_serial_deregister (&keyspan_usa18x_pre_device);
  173. usb_serial_deregister (&keyspan_usa19_pre_device);
  174. usb_serial_deregister (&keyspan_usa19w_pre_device);
  175. usb_serial_deregister (&keyspan_usa28_pre_device);
  176. usb_serial_deregister (&keyspan_usa28x_pre_device);
  177. usb_serial_deregister (&keyspan_usa28xa_pre_device);
  178. usb_serial_deregister (&keyspan_usa28xb_pre_device);
  179. usb_serial_deregister (&keyspan_usa49w_pre_device);
  180. usb_serial_deregister (&keyspan_usa18x_device);
  181. usb_serial_deregister (&keyspan_usa19_device);
  182. usb_serial_deregister (&keyspan_usa19w_device);
  183. usb_serial_deregister (&keyspan_usa28_device);
  184. usb_serial_deregister (&keyspan_usa28x_device);
  185. usb_serial_deregister (&keyspan_usa28xa_device);
  186. /* We don't need a separate entry for the usa28xb as it appears as a 28x anyway */
  187. usb_serial_deregister (&keyspan_usa49w_device);
  188. }
  189. module_init(keyspan_init);
  190. module_exit(keyspan_exit);
  191. static void keyspan_rx_throttle (struct usb_serial_port *port)
  192. {
  193. dbg("keyspan_rx_throttle port %dn", port->number);
  194. }
  195. static void keyspan_rx_unthrottle (struct usb_serial_port *port)
  196. {
  197. dbg("keyspan_rx_unthrottle port %dn", port->number);
  198. }
  199. static void keyspan_break_ctl (struct usb_serial_port *port, int break_state)
  200. {
  201. struct keyspan_port_private  *p_priv;
  202.   dbg("keyspan_break_ctln");
  203. p_priv = (struct keyspan_port_private *)port->private;
  204. if (break_state == -1)
  205. p_priv->break_on = 1;
  206. else
  207. p_priv->break_on = 0;
  208. keyspan_send_setup(port, 0);
  209. }
  210. static void keyspan_set_termios (struct usb_serial_port *port, 
  211.      struct termios *old_termios)
  212. {
  213. int baud_rate;
  214. struct keyspan_port_private  *p_priv;
  215. const keyspan_device_details *d_details;
  216. unsigned int  cflag;
  217. dbg(__FUNCTION__ ".n"); 
  218. p_priv = (struct keyspan_port_private *)(port->private);
  219. d_details = p_priv->device_details;
  220. cflag = port->tty->termios->c_cflag;
  221. /* Baud rate calculation takes baud rate as an integer
  222.    so other rates can be generated if desired. */
  223. baud_rate = tty_get_baud_rate(port->tty);
  224. /* If no match or invalid, don't change */
  225. if (baud_rate >= 0
  226.     && d_details->calculate_baud_rate(baud_rate, d_details->baudclk,
  227. NULL, NULL, NULL) == KEYSPAN_BAUD_RATE_OK) {
  228. /* FIXME - more to do here to ensure rate changes cleanly */
  229. p_priv->baud = baud_rate;
  230. }
  231. /* set CTS/RTS handshake etc. */
  232. p_priv->cflag = cflag;
  233. p_priv->flow_control = (cflag & CRTSCTS)? flow_cts: flow_none;
  234. keyspan_send_setup(port, 0);
  235. }
  236. static int keyspan_ioctl(struct usb_serial_port *port, struct file *file,
  237.      unsigned int cmd, unsigned long arg)
  238. {
  239. unsigned int value, set;
  240. struct keyspan_port_private  *p_priv;
  241. p_priv = (struct keyspan_port_private *)(port->private);
  242. switch (cmd) {
  243. case TIOCMGET:
  244. value = ((p_priv->rts_state) ? TIOCM_RTS : 0) |
  245. ((p_priv->dtr_state) ? TIOCM_DTR : 0) |
  246. ((p_priv->cts_state) ? TIOCM_CTS : 0) |
  247. ((p_priv->dsr_state) ? TIOCM_DSR : 0) |
  248. ((p_priv->dcd_state) ? TIOCM_CAR : 0) |
  249. ((p_priv->ri_state) ? TIOCM_RNG : 0); 
  250. if (put_user(value, (unsigned int *) arg))
  251. return -EFAULT;
  252. return 0;
  253. case TIOCMSET:
  254. if (get_user(value, (unsigned int *) arg))
  255. return -EFAULT;
  256. p_priv->rts_state = ((value & TIOCM_RTS) ? 1 : 0);
  257. p_priv->dtr_state = ((value & TIOCM_DTR) ? 1 : 0);
  258. keyspan_send_setup(port, 0);
  259. return 0;
  260. case TIOCMBIS:
  261. case TIOCMBIC:
  262. if (get_user(value, (unsigned int *) arg))
  263. return -EFAULT;
  264. set = (cmd == TIOCMBIS);
  265. if (value & TIOCM_RTS)
  266. p_priv->rts_state = set;
  267. if (value & TIOCM_DTR)
  268. p_priv->dtr_state = set;
  269. keyspan_send_setup(port, 0);
  270. return 0;
  271. }
  272. return -ENOIOCTLCMD;
  273. }
  274. /* Write function is generic for the three protocols used
  275.    with only a minor change for usa49 required */
  276. static int keyspan_write(struct usb_serial_port *port, int from_user, 
  277.  const unsigned char *buf, int count)
  278. {
  279. struct keyspan_port_private  *p_priv;
  280. const keyspan_device_details *d_details;
  281. int flip;
  282. int  left, todo;
  283. urb_t  *this_urb;
  284. int  err;
  285. p_priv = (struct keyspan_port_private *)(port->private);
  286. d_details = p_priv->device_details;
  287. #if 0
  288. dbg(__FUNCTION__ " for port %d (%d chars [%x]), flip=%dn",
  289.     port->number, count, buf[0], p_priv->out_flip);
  290. #endif
  291. for (left = count; left > 0; left -= todo) {
  292. todo = left;
  293. if (todo > 63)
  294. todo = 63;
  295. flip = p_priv->out_flip;
  296. /* Check we have a valid urb/endpoint before we use it... */
  297. if ((this_urb = p_priv->out_urbs[flip]) == 0) {
  298. /* no bulk out, so return 0 bytes written */
  299. dbg(__FUNCTION__ " no output urb :(n");
  300. return count;
  301. }
  302. dbg(__FUNCTION__ " endpoint %dn", usb_pipeendpoint(this_urb->pipe));
  303. if (this_urb->status == -EINPROGRESS) {
  304. if (this_urb->transfer_flags & USB_ASYNC_UNLINK)
  305. break;
  306. if (jiffies - p_priv->tx_start_time[flip] < 10 * HZ)
  307. break;
  308. this_urb->transfer_flags |= USB_ASYNC_UNLINK;
  309. usb_unlink_urb(this_urb);
  310. break;
  311. }
  312. /* First byte in buffer is "last flag" - unused so
  313.    for now so set to zero */
  314. ((char *)this_urb->transfer_buffer)[0] = 0;
  315. if (from_user) {
  316. if (copy_from_user(this_urb->transfer_buffer + 1, buf, todo))
  317. return -EFAULT;
  318. } else {
  319. memcpy (this_urb->transfer_buffer + 1, buf, todo);
  320. }
  321. buf += todo;
  322. /* send the data out the bulk port */
  323. this_urb->transfer_buffer_length = todo + 1;
  324. this_urb->transfer_flags &= ~USB_ASYNC_UNLINK;
  325. this_urb->dev = port->serial->dev;
  326. if ((err = usb_submit_urb(this_urb)) != 0) {
  327. dbg("usb_submit_urb(write bulk) failed (%d)n", err);
  328. }
  329. p_priv->tx_start_time[flip] = jiffies;
  330. /* Flip for next time if usa26 or usa28 interface
  331.    (not used on usa49) */
  332. p_priv->out_flip = (flip + 1) & d_details->outdat_endp_flip;
  333. }
  334. return count - left;
  335. }
  336. static void usa26_indat_callback(struct urb *urb)
  337. {
  338. int i, err;
  339. int endpoint;
  340. struct usb_serial_port *port;
  341. struct tty_struct *tty;
  342. unsigned char  *data = urb->transfer_buffer;
  343. dbg ("%sn", __FUNCTION__); 
  344. endpoint = usb_pipeendpoint(urb->pipe);
  345. if (urb->status) {
  346. dbg(__FUNCTION__ "nonzero status: %x on endpoint %d.n",
  347.        urb->status, endpoint);
  348. return;
  349. }
  350. port = (struct usb_serial_port *) urb->context;
  351. tty = port->tty;
  352. if (urb->actual_length) {
  353. if (data[0] == 0) {
  354. /* no error on any byte */
  355. for (i = 1; i < urb->actual_length ; ++i) {
  356. tty_insert_flip_char(tty, data[i], 0);
  357. }
  358. } else {
  359. /* some bytes had errors, every byte has status */
  360. for (i = 0; i + 1 < urb->actual_length; i += 2) {
  361. int stat = data[i], flag = 0;
  362. if (stat & RXERROR_OVERRUN)
  363. flag |= TTY_OVERRUN;
  364. if (stat & RXERROR_FRAMING)
  365. flag |= TTY_FRAME;
  366. if (stat & RXERROR_PARITY)
  367. flag |= TTY_PARITY;
  368. /* XXX should handle break (0x10) */
  369. tty_insert_flip_char(tty, data[i+1], flag);
  370. }
  371. }
  372. tty_flip_buffer_push(tty);
  373. }
  374. /* Resubmit urb so we continue receiving */
  375. urb->dev = port->serial->dev;
  376. if ((err = usb_submit_urb(urb)) != 0) {
  377. dbg(__FUNCTION__ "resubmit read urb failed. (%d)n", err);
  378. }
  379. return;
  380. }
  381. /* Outdat handling is common for usa26, usa28 and usa49 messages */
  382. static void usa2x_outdat_callback(struct urb *urb)
  383. {
  384. struct usb_serial_port *port;
  385. struct keyspan_port_private *p_priv;
  386. port = (struct usb_serial_port *) urb->context;
  387. p_priv = (struct keyspan_port_private *)(port->private);
  388. dbg (__FUNCTION__ " urb %dn", urb == p_priv->out_urbs[1]); 
  389. if (port->active) {
  390. queue_task(&port->tqueue, &tq_immediate);
  391. mark_bh(IMMEDIATE_BH);
  392. }
  393. }
  394. static void usa26_inack_callback(struct urb *urb)
  395. {
  396. dbg ("%sn", __FUNCTION__); 
  397. }
  398. static void usa26_outcont_callback(struct urb *urb)
  399. {
  400. struct usb_serial_port *port;
  401. struct keyspan_port_private *p_priv;
  402. port = (struct usb_serial_port *) urb->context;
  403. p_priv = (struct keyspan_port_private *)(port->private);
  404. if (p_priv->resend_cont) {
  405. dbg (__FUNCTION__ " sending setupn"); 
  406. keyspan_usa26_send_setup(port->serial, port, 0);
  407. }
  408. }
  409. static void usa26_instat_callback(struct urb *urb)
  410. {
  411. unsigned char  *data = urb->transfer_buffer;
  412. keyspan_usa26_portStatusMessage *msg;
  413. struct usb_serial *serial;
  414. struct usb_serial_port *port;
  415. struct keyspan_port_private   *p_priv;
  416. int old_dcd_state, err;
  417. serial = (struct usb_serial *) urb->context;
  418. if (urb->status) {
  419. dbg(__FUNCTION__ " nonzero status: %xn", urb->status);
  420. return;
  421. }
  422. if (urb->actual_length != 9) {
  423. dbg(__FUNCTION__ " %d byte report??n", urb->actual_length);
  424. goto exit;
  425. }
  426. msg = (keyspan_usa26_portStatusMessage *)data;
  427. #if 0
  428. dbg(__FUNCTION__ " port status: port %d cts %d dcd %d dsr %d ri %d toff %d txoff %d rxen %d cr %dn",
  429.     msg->port, msg->hskia_cts, msg->gpia_dcd, msg->dsr, msg->ri, msg->_txOff,
  430.     msg->_txXoff, msg->rxEnabled, msg->controlResponse);
  431. #endif
  432. /* Now do something useful with the data */
  433. /* Check port number from message and retrieve private data */
  434. if (msg->port >= serial->num_ports) {
  435. dbg ("Unexpected port number %dn", msg->port);
  436. goto exit;
  437. }
  438. port = &serial->port[msg->port];
  439. p_priv = (struct keyspan_port_private *)(port->private);
  440. /* Update handshaking pin state information */
  441. old_dcd_state = p_priv->dcd_state;
  442. p_priv->cts_state = ((msg->hskia_cts) ? 1 : 0);
  443. p_priv->dsr_state = ((msg->dsr) ? 1 : 0);
  444. p_priv->dcd_state = ((msg->gpia_dcd) ? 1 : 0);
  445. p_priv->ri_state = ((msg->ri) ? 1 : 0);
  446. if (port->tty && !C_CLOCAL(port->tty)
  447.     && old_dcd_state != p_priv->dcd_state) {
  448. if (old_dcd_state)
  449. tty_hangup(port->tty);
  450. /*  else */
  451. /* wake_up_interruptible(&p_priv->open_wait); */
  452. }
  453. exit:
  454. /* Resubmit urb so we continue receiving */
  455. urb->dev = serial->dev;
  456. if ((err = usb_submit_urb(urb)) != 0) {
  457. dbg(__FUNCTION__ "resubmit read urb failed. (%d)n", err);
  458. }
  459. }
  460. static void usa26_glocont_callback(struct urb *urb)
  461. {
  462. dbg ("%sn", __FUNCTION__);
  463. }
  464. static void     usa28_indat_callback(struct urb *urb)
  465. {
  466. int                     i, err;
  467. struct usb_serial_port  *port;
  468. struct tty_struct       *tty;
  469. unsigned char           *data;
  470. struct keyspan_port_private             *p_priv;
  471. dbg ("%sn", __FUNCTION__);
  472. port = (struct usb_serial_port *) urb->context;
  473. p_priv = (struct keyspan_port_private *)(port->private);
  474. data = urb->transfer_buffer;
  475. if (urb != p_priv->in_urbs[p_priv->in_flip])
  476. return;
  477. do {
  478. if (urb->status) {
  479. dbg(__FUNCTION__ "nonzero status: %x on endpoint
  480. %d.n",
  481.     urb->status, usb_pipeendpoint(urb->pipe));
  482. return;
  483. }
  484. port = (struct usb_serial_port *) urb->context;
  485. p_priv = (struct keyspan_port_private *)(port->private);
  486. data = urb->transfer_buffer;
  487. tty = port->tty;
  488. if (urb->actual_length) {
  489. for (i = 0; i < urb->actual_length ; ++i) {
  490. tty_insert_flip_char(tty, data[i], 0);
  491. }
  492. tty_flip_buffer_push(tty);
  493. }
  494. /* Resubmit urb so we continue receiving */
  495. urb->dev = port->serial->dev;
  496. if ((err = usb_submit_urb(urb)) != 0) {
  497. dbg(__FUNCTION__ "resubmit read urb failed. (%d)n",
  498. err);
  499. }
  500. p_priv->in_flip ^= 1;
  501. urb = p_priv->in_urbs[p_priv->in_flip];
  502. } while (urb->status != -EINPROGRESS);
  503. }
  504. static void usa28_inack_callback(struct urb *urb)
  505. {
  506. dbg ("%sn", __FUNCTION__);
  507. }
  508. static void usa28_outcont_callback(struct urb *urb)
  509. {
  510. struct usb_serial_port *port;
  511. struct keyspan_port_private *p_priv;
  512. port = (struct usb_serial_port *) urb->context;
  513. p_priv = (struct keyspan_port_private *)(port->private);
  514. if (p_priv->resend_cont) {
  515. dbg (__FUNCTION__ " sending setupn");
  516. keyspan_usa28_send_setup(port->serial, port, 0);
  517. }
  518. }
  519. static void usa28_instat_callback(struct urb *urb)
  520. {
  521. int err;
  522. unsigned char  *data = urb->transfer_buffer;
  523. keyspan_usa28_portStatusMessage *msg;
  524. struct usb_serial *serial;
  525. struct usb_serial_port *port;
  526. struct keyspan_port_private   *p_priv;
  527. int old_dcd_state;
  528. serial = (struct usb_serial *) urb->context;
  529. if (urb->status) {
  530. dbg(__FUNCTION__ " nonzero status: %xn", urb->status);
  531. return;
  532. }
  533. if (urb->actual_length != sizeof(struct keyspan_usa28_portStatusMessage)) {
  534. dbg(__FUNCTION__ " bad length %dn", urb->actual_length);
  535. goto exit;
  536. }
  537. /*dbg(__FUNCTION__ " %x %x %x %x %x %x %x %x %x %x %x %xn",
  538.     data[0], data[1], data[2], data[3], data[4], data[5],
  539.     data[6], data[7], data[8], data[9], data[10], data[11]);*/
  540. /* Now do something useful with the data */
  541. msg = (keyspan_usa28_portStatusMessage *)data;
  542. /* Check port number from message and retrieve private data */
  543. if (msg->port >= serial->num_ports) {
  544. dbg ("Unexpected port number %dn", msg->port);
  545. goto exit;
  546. }
  547. port = &serial->port[msg->port];
  548. p_priv = (struct keyspan_port_private *)(port->private);
  549. /* Update handshaking pin state information */
  550. old_dcd_state = p_priv->dcd_state;
  551. p_priv->cts_state = ((msg->cts) ? 1 : 0);
  552. p_priv->dsr_state = ((msg->dsr) ? 1 : 0);
  553. p_priv->dcd_state = ((msg->dcd) ? 1 : 0);
  554. p_priv->ri_state = ((msg->ri) ? 1 : 0);
  555. if (port->tty && !C_CLOCAL(port->tty)
  556.     && old_dcd_state != p_priv->dcd_state) {
  557. if (old_dcd_state)
  558. tty_hangup(port->tty);
  559. /*  else */
  560. /* wake_up_interruptible(&p_priv->open_wait); */
  561. }
  562. exit:
  563. /* Resubmit urb so we continue receiving */
  564. urb->dev = serial->dev;
  565. if ((err = usb_submit_urb(urb)) != 0) {
  566. dbg(__FUNCTION__ "resubmit read urb failed. (%d)n", err);
  567. }
  568. }
  569. static void usa28_glocont_callback(struct urb *urb)
  570. {
  571. dbg ("%sn", __FUNCTION__);
  572. }
  573. static void usa49_glocont_callback(struct urb *urb)
  574. {
  575. struct usb_serial *serial;
  576. struct usb_serial_port *port;
  577. struct keyspan_port_private *p_priv;
  578. int i;
  579. dbg ("%sn", __FUNCTION__);
  580. serial = (struct usb_serial *) urb->context;
  581. for (i = 0; i < serial->num_ports; ++i) {
  582. port = &serial->port[i];
  583. p_priv = (struct keyspan_port_private *)(port->private);
  584. if (p_priv->resend_cont) {
  585. dbg (__FUNCTION__ " sending setupn"); 
  586. keyspan_usa49_send_setup(serial, port, 0);
  587. break;
  588. }
  589. }
  590. }
  591. /* This is actually called glostat in the Keyspan
  592.    doco */
  593. static void usa49_instat_callback(struct urb *urb)
  594. {
  595. int err;
  596. unsigned char  *data = urb->transfer_buffer;
  597. keyspan_usa49_portStatusMessage *msg;
  598. struct usb_serial *serial;
  599. struct usb_serial_port *port;
  600. struct keyspan_port_private   *p_priv;
  601. int old_dcd_state;
  602. dbg ("%sn", __FUNCTION__);
  603. serial = (struct usb_serial *) urb->context;
  604. if (urb->status) {
  605. dbg(__FUNCTION__ " nonzero status: %xn", urb->status);
  606. return;
  607. }
  608. if (urb->actual_length != sizeof(struct keyspan_usa49_portStatusMessage)) {
  609. dbg(__FUNCTION__ " bad length %dn", urb->actual_length);
  610. goto exit;
  611. }
  612. /*dbg(__FUNCTION__ " %x %x %x %x %x %x %x %x %x %x %xn",
  613.     data[0], data[1], data[2], data[3], data[4], data[5],
  614.     data[6], data[7], data[8], data[9], data[10]);*/
  615. /* Now do something useful with the data */
  616. msg = (keyspan_usa49_portStatusMessage *)data;
  617. /* Check port number from message and retrieve private data */
  618. if (msg->portNumber >= serial->num_ports) {
  619. dbg ("Unexpected port number %dn", msg->portNumber);
  620. goto exit;
  621. }
  622. port = &serial->port[msg->portNumber];
  623. p_priv = (struct keyspan_port_private *)(port->private);
  624. /* Update handshaking pin state information */
  625. old_dcd_state = p_priv->dcd_state;
  626. p_priv->cts_state = ((msg->cts) ? 1 : 0);
  627. p_priv->dsr_state = ((msg->dsr) ? 1 : 0);
  628. p_priv->dcd_state = ((msg->dcd) ? 1 : 0);
  629. p_priv->ri_state = ((msg->ri) ? 1 : 0);
  630. if (port->tty && !C_CLOCAL(port->tty)
  631.     && old_dcd_state != p_priv->dcd_state) {
  632. if (old_dcd_state)
  633. tty_hangup(port->tty);
  634. /*  else */
  635. /* wake_up_interruptible(&p_priv->open_wait); */
  636. }
  637. exit:
  638. /* Resubmit urb so we continue receiving */
  639. urb->dev = serial->dev;
  640. if ((err = usb_submit_urb(urb)) != 0) {
  641. dbg(__FUNCTION__ "resubmit read urb failed. (%d)n", err);
  642. }
  643. }
  644. static void usa49_inack_callback(struct urb *urb)
  645. {
  646. dbg ("%sn", __FUNCTION__);
  647. }
  648. static void usa49_indat_callback(struct urb *urb)
  649. {
  650. int i, err;
  651. int endpoint;
  652. struct usb_serial_port *port;
  653. struct tty_struct *tty;
  654. unsigned char  *data = urb->transfer_buffer;
  655. dbg ("%sn", __FUNCTION__);
  656. endpoint = usb_pipeendpoint(urb->pipe);
  657. if (urb->status) {
  658. dbg(__FUNCTION__ "nonzero status: %x on endpoint %d.n",
  659.        urb->status, endpoint);
  660. return;
  661. }
  662. port = (struct usb_serial_port *) urb->context;
  663. tty = port->tty;
  664. if (urb->actual_length) {
  665. if (data[0] == 0) {
  666. /* no error on any byte */
  667. for (i = 1; i < urb->actual_length ; ++i) {
  668. tty_insert_flip_char(tty, data[i], 0);
  669. }
  670. } else {
  671. /* some bytes had errors, every byte has status */
  672. for (i = 0; i + 1 < urb->actual_length; i += 2) {
  673. int stat = data[i], flag = 0;
  674. if (stat & RXERROR_OVERRUN)
  675. flag |= TTY_OVERRUN;
  676. if (stat & RXERROR_FRAMING)
  677. flag |= TTY_FRAME;
  678. if (stat & RXERROR_PARITY)
  679. flag |= TTY_PARITY;
  680. /* XXX should handle break (0x10) */
  681. tty_insert_flip_char(tty, data[i+1], flag);
  682. }
  683. }
  684. tty_flip_buffer_push(tty);
  685. }
  686. /* Resubmit urb so we continue receiving */
  687. urb->dev = port->serial->dev;
  688. if ((err = usb_submit_urb(urb)) != 0) {
  689. dbg(__FUNCTION__ "resubmit read urb failed. (%d)n", err);
  690. }
  691. }
  692. /* not used, usa-49 doesn't have per-port control endpoints */
  693. static void usa49_outcont_callback(struct urb *urb)
  694. {
  695. dbg ("%sn", __FUNCTION__);
  696. }
  697. static int keyspan_write_room (struct usb_serial_port *port)
  698. {
  699. dbg("keyspan_write_room calledn");
  700. return (32);
  701. }
  702. static int keyspan_chars_in_buffer (struct usb_serial_port *port)
  703. {
  704. return (0);
  705. }
  706. static int keyspan_open (struct usb_serial_port *port, struct file *filp)
  707. {
  708. struct keyspan_port_private  *p_priv;
  709. struct keyspan_serial_private  *s_priv;
  710. struct usb_serial  *serial = port->serial;
  711. const keyspan_device_details *d_details;
  712. int i, already_active, err;
  713. urb_t *urb;
  714. s_priv = (struct keyspan_serial_private *)(serial->private);
  715. p_priv = (struct keyspan_port_private *)(port->private);
  716. d_details = s_priv->device_details;
  717. dbg("keyspan_open called for port%d.n", port->number); 
  718. MOD_INC_USE_COUNT;
  719. down (&port->sem);
  720. ++port->open_count;
  721. already_active = port->active;
  722. port->active = 1;
  723. up (&port->sem);
  724. if (already_active)
  725. return 0;
  726. p_priv = (struct keyspan_port_private *)(port->private);
  727. /* Set some sane defaults */
  728. p_priv->rts_state = 1;
  729. p_priv->dtr_state = 1;
  730. /* Start reading from endpoints */
  731. for (i = 0; i < 2; i++) {
  732. if ((urb = p_priv->in_urbs[i]) == NULL)
  733. continue;
  734. urb->dev = serial->dev;
  735. if ((err = usb_submit_urb(urb)) != 0) {
  736. dbg(__FUNCTION__ " submit urb %d failed (%d)n", i, err);
  737. }
  738. }
  739. keyspan_set_termios(port, NULL);
  740. return (0);
  741. }
  742. static inline void stop_urb(urb_t *urb)
  743. {
  744. if (urb && urb->status == -EINPROGRESS) {
  745. urb->transfer_flags &= ~USB_ASYNC_UNLINK;
  746. usb_unlink_urb(urb);
  747. }
  748. }
  749. static void keyspan_close(struct usb_serial_port *port, struct file *filp)
  750. {
  751. int i;
  752. struct usb_serial *serial;
  753. struct keyspan_serial_private  *s_priv;
  754. struct keyspan_port_private  *p_priv;
  755. serial = get_usb_serial (port, __FUNCTION__);
  756. if (!serial)
  757. return;
  758. dbg("keyspan_close calledn");
  759. s_priv = (struct keyspan_serial_private *)(serial->private);
  760. p_priv = (struct keyspan_port_private *)(port->private);
  761. p_priv->rts_state = 0;
  762. p_priv->dtr_state = 0;
  763. if (serial->dev)
  764. keyspan_send_setup(port, 1);
  765. /*while (p_priv->outcont_urb->status == -EINPROGRESS) {
  766. dbg("close - urb in progressn");
  767. }*/
  768. p_priv->out_flip = 0;
  769. p_priv->in_flip = 0;
  770. down (&port->sem);
  771. if (--port->open_count <= 0) {
  772. if (port->active) {
  773. if (serial->dev) {
  774. /* Stop reading/writing urbs */
  775. stop_urb(p_priv->inack_urb);
  776. stop_urb(p_priv->outcont_urb);
  777. for (i = 0; i < 2; i++) {
  778. stop_urb(p_priv->in_urbs[i]);
  779. stop_urb(p_priv->out_urbs[i]);
  780. }
  781. }
  782. }
  783. port->active = 0;
  784. port->open_count = 0;
  785. port->tty = 0;
  786. }
  787. up (&port->sem);
  788. MOD_DEC_USE_COUNT;
  789. }
  790. /* download the firmware to a pre-renumeration device */
  791. static int keyspan_fake_startup (struct usb_serial *serial)
  792. {
  793. int  response;
  794. const struct ezusb_hex_record  *record;
  795. char *fw_name;
  796. dbg("Keyspan startup version %04x product %04xn",
  797.     serial->dev->descriptor.bcdDevice,
  798.     serial->dev->descriptor.idProduct); 
  799. if ((serial->dev->descriptor.bcdDevice & 0x8000) != 0x8000) {
  800. dbg("Firmware already loaded.  Quitting.n");
  801. return(1);
  802. }
  803. /* Select firmware image on the basis of idProduct */
  804. switch (serial->dev->descriptor.idProduct) {
  805. case keyspan_usa28_pre_product_id:
  806. record = &keyspan_usa28_firmware[0];
  807. fw_name = "USA28";
  808. break;
  809. case keyspan_usa28x_pre_product_id:
  810. record = &keyspan_usa28x_firmware[0];
  811. fw_name = "USA28X";
  812. break;
  813. case keyspan_usa28xa_pre_product_id:
  814. record = &keyspan_usa28xa_firmware[0];
  815. fw_name = "USA28XA";
  816. break;
  817. case keyspan_usa28xb_pre_product_id:
  818. record = &keyspan_usa28xb_firmware[0];
  819. fw_name = "USA28XB";
  820. break;
  821. case keyspan_usa19_pre_product_id:
  822. record = &keyspan_usa19_firmware[0];
  823. fw_name = "USA19";
  824. break;
  825.      
  826. case keyspan_usa18x_pre_product_id:
  827. record = &keyspan_usa18x_firmware[0];
  828. fw_name = "USA18X";
  829. break;
  830.      
  831. case keyspan_usa19w_pre_product_id:
  832. record = &keyspan_usa19w_firmware[0];
  833. fw_name = "USA19W";
  834. break;
  835. case keyspan_usa49w_pre_product_id:
  836. record = &keyspan_usa49w_firmware[0];
  837. fw_name = "USA49W";
  838. break;
  839. default:
  840. record = NULL;
  841. fw_name = "Unknown";
  842. break;
  843. }
  844. if (record == NULL) {
  845. err("Required keyspan firmware image (%s) unavailable.", fw_name);
  846. return(1);
  847. }
  848. dbg("Uploading Keyspan %s firmware.n", fw_name);
  849. /* download the firmware image */
  850. response = ezusb_set_reset(serial, 1);
  851. while(record->address != 0xffff) {
  852. response = ezusb_writememory(serial, record->address,
  853.      (unsigned char *)record->data,
  854.      record->data_size, 0xa0);
  855. if (response < 0) {
  856. err("ezusb_writememory failed for Keyspan"
  857.     "firmware (%d %04X %p %d)",
  858.     response, 
  859.     record->address, record->data, record->data_size);
  860. break;
  861. }
  862. record++;
  863. }
  864. /* bring device out of reset. Renumeration will occur in a
  865.    moment and the new device will bind to the real driver */
  866. response = ezusb_set_reset(serial, 0);
  867. /* we don't want this device to have a driver assigned to it. */
  868. return (1);
  869. }
  870. /* Helper functions used by keyspan_setup_urbs */
  871. static urb_t *keyspan_setup_urb(struct usb_serial *serial, int endpoint,
  872. int dir, void *ctx, char *buf, int len,
  873. void (*callback)(urb_t *))
  874. {
  875. urb_t *urb;
  876. if (endpoint == -1)
  877. return NULL; /* endpoint not needed */
  878. dbg (__FUNCTION__ " alloc for endpoint %d.n", endpoint);
  879. urb = usb_alloc_urb(0); /* No ISO */
  880. if (urb == NULL) {
  881. dbg (__FUNCTION__ " alloc for endpoint %d failed.n", endpoint);
  882. return NULL;
  883. }
  884. /* Fill URB using supplied data. */
  885. FILL_BULK_URB(urb, serial->dev,
  886.       usb_sndbulkpipe(serial->dev, endpoint) | dir,
  887.       buf, len, callback, ctx);
  888. return urb;
  889. }
  890. static struct callbacks {
  891. void (*instat_callback)(urb_t *);
  892. void (*glocont_callback)(urb_t *);
  893. void (*indat_callback)(urb_t *);
  894. void (*outdat_callback)(urb_t *);
  895. void (*inack_callback)(urb_t *);
  896. void (*outcont_callback)(urb_t *);
  897. } keyspan_callbacks[] = {
  898. {
  899. /* msg_usa26 callbacks */
  900. instat_callback: usa26_instat_callback,
  901. glocont_callback: usa26_glocont_callback,
  902. indat_callback: usa26_indat_callback,
  903. outdat_callback: usa2x_outdat_callback,
  904. inack_callback: usa26_inack_callback,
  905. outcont_callback: usa26_outcont_callback,
  906. }, {
  907. /* msg_usa28 callbacks */
  908. instat_callback: usa28_instat_callback,
  909. glocont_callback: usa28_glocont_callback,
  910. indat_callback: usa28_indat_callback,
  911. outdat_callback: usa2x_outdat_callback,
  912. inack_callback: usa28_inack_callback,
  913. outcont_callback: usa28_outcont_callback,
  914. }, {
  915. /* msg_usa49 callbacks */
  916. instat_callback: usa49_instat_callback,
  917. glocont_callback: usa49_glocont_callback,
  918. indat_callback: usa49_indat_callback,
  919. outdat_callback: usa2x_outdat_callback,
  920. inack_callback: usa49_inack_callback,
  921. outcont_callback: usa49_outcont_callback,
  922. }
  923. };
  924. /* Generic setup urbs function that uses
  925.    data in device_details */
  926. static void keyspan_setup_urbs(struct usb_serial *serial)
  927. {
  928. int i, j;
  929. struct keyspan_serial_private  *s_priv;
  930. const keyspan_device_details *d_details;
  931. struct usb_serial_port *port;
  932. struct keyspan_port_private *p_priv;
  933. struct callbacks *cback;
  934. int endp;
  935. dbg ("%sn", __FUNCTION__);
  936. s_priv = (struct keyspan_serial_private *)(serial->private);
  937. d_details = s_priv->device_details;
  938. /* Setup values for the various callback routines */
  939. cback = &keyspan_callbacks[d_details->msg_format];
  940. /* Allocate and set up urbs for each one that is in use, 
  941.    starting with instat endpoints */
  942. s_priv->instat_urb = keyspan_setup_urb
  943. (serial, d_details->instat_endpoint, USB_DIR_IN,
  944.  serial, s_priv->instat_buf, INSTAT_BUFLEN,
  945.  cback->instat_callback);
  946. s_priv->glocont_urb = keyspan_setup_urb
  947. (serial, d_details->glocont_endpoint, USB_DIR_OUT,
  948.  serial, s_priv->glocont_buf, GLOCONT_BUFLEN,
  949.  cback->glocont_callback);
  950. /* Setup endpoints for each port specific thing */
  951. for (i = 0; i < d_details->num_ports; i ++) {
  952. port = &serial->port[i];
  953. p_priv = (struct keyspan_port_private *)(port->private);
  954. /* Do indat endpoints first, once for each flip */
  955. endp = d_details->indat_endpoints[i];
  956. for (j = 0; j <= d_details->indat_endp_flip; ++j, ++endp) {
  957. p_priv->in_urbs[j] = keyspan_setup_urb
  958. (serial, endp, USB_DIR_IN, port,
  959.  p_priv->in_buffer[j], 64,
  960.  cback->indat_callback);
  961. }
  962. for (; j < 2; ++j)
  963. p_priv->in_urbs[j] = NULL;
  964. /* outdat endpoints also have flip */
  965. endp = d_details->outdat_endpoints[i];
  966. for (j = 0; j <= d_details->outdat_endp_flip; ++j, ++endp) {
  967. p_priv->out_urbs[j] = keyspan_setup_urb
  968. (serial, endp, USB_DIR_OUT, port,
  969.  p_priv->out_buffer[j], 64,
  970.  cback->outdat_callback);
  971. }
  972. for (; j < 2; ++j)
  973. p_priv->out_urbs[j] = NULL;
  974. /* inack endpoint */
  975. p_priv->inack_urb = keyspan_setup_urb
  976. (serial, d_details->inack_endpoints[i], USB_DIR_IN,
  977.  port, p_priv->inack_buffer, 1, cback->inack_callback);
  978. /* outcont endpoint */
  979. p_priv->outcont_urb = keyspan_setup_urb
  980. (serial, d_details->outcont_endpoints[i], USB_DIR_OUT,
  981.  port, p_priv->outcont_buffer, 64,
  982.  cback->outcont_callback);
  983. }
  984. }
  985. /* usa19 function doesn't require prescaler */
  986. static int keyspan_usa19_calc_baud(u32 baud_rate, u32 baudclk,
  987.    u8 *rate_hi, u8 *rate_low, u8 *prescaler)
  988. {
  989. u32  b16, /* baud rate times 16 (actual rate used internally) */
  990. div, /* divisor */
  991. cnt; /* inverse of divisor (programmed into 8051) */
  992. /* prevent divide by zero...  */
  993. if( (b16 = (baud_rate * 16L)) == 0) {
  994. return (KEYSPAN_INVALID_BAUD_RATE);
  995. }
  996. /* Any "standard" rate over 57k6 is marginal on the USA-19
  997.    as we run out of divisor resolution. */
  998. if (baud_rate > 57600) {
  999. return (KEYSPAN_INVALID_BAUD_RATE);
  1000. }
  1001. /* calculate the divisor and the counter (its inverse) */
  1002. if( (div = (baudclk / b16)) == 0) {
  1003. return (KEYSPAN_INVALID_BAUD_RATE);
  1004. }
  1005. else {
  1006. cnt = 0 - div;
  1007. }
  1008. if(div > 0xffff) {
  1009. return (KEYSPAN_INVALID_BAUD_RATE);
  1010. }
  1011. /* return the counter values if non-null */
  1012. if (rate_low) {
  1013. *rate_low = (u8) (cnt & 0xff);
  1014. }
  1015. if (rate_hi) {
  1016. *rate_hi = (u8) ((cnt >> 8) & 0xff);
  1017. }
  1018. if (rate_low && rate_hi) {
  1019. dbg (__FUNCTION__ " %d %02x %02x.", baud_rate, *rate_hi, *rate_low);
  1020. }
  1021. return (KEYSPAN_BAUD_RATE_OK);
  1022. }
  1023. static int keyspan_usa19w_calc_baud(u32 baud_rate, u32 baudclk,
  1024.     u8 *rate_hi, u8 *rate_low, u8 *prescaler)
  1025. {
  1026. u32  b16, /* baud rate times 16 (actual rate used internally) */
  1027. clk, /* clock with 13/8 prescaler */
  1028. div, /* divisor using 13/8 prescaler */
  1029. res, /* resulting baud rate using 13/8 prescaler */
  1030. diff, /* error using 13/8 prescaler */
  1031. smallest_diff;
  1032. u8 best_prescaler;
  1033. int i;
  1034. dbg (__FUNCTION__ " %d.n", baud_rate);
  1035. /* prevent divide by zero */
  1036. if( (b16 = baud_rate * 16L) == 0) {
  1037. return (KEYSPAN_INVALID_BAUD_RATE);
  1038. }
  1039. /* Calculate prescaler by trying them all and looking
  1040.    for best fit */
  1041. /* start with largest possible difference */
  1042. smallest_diff = 0xffffffff;
  1043. /* 0 is an invalid prescaler, used as a flag */
  1044. best_prescaler = 0;
  1045. for(i = 8; i <= 0xff; ++i)
  1046. {
  1047. clk = (baudclk * 8) / (u32) i;
  1048. if( (div = clk / b16) == 0) {
  1049. continue;
  1050. }
  1051. res = clk / div;
  1052. diff= (res > b16) ? (res-b16) : (b16-res);
  1053. if(diff < smallest_diff)
  1054. {
  1055. best_prescaler = i;
  1056. smallest_diff = diff;
  1057. }
  1058. }
  1059. if(best_prescaler == 0) {
  1060. return (KEYSPAN_INVALID_BAUD_RATE);
  1061. }
  1062. clk = (baudclk * 8) / (u32) best_prescaler;
  1063. div = clk / b16;
  1064. /* return the divisor and prescaler if non-null */
  1065. if (rate_low) {
  1066. *rate_low = (u8) (div & 0xff);
  1067. }
  1068. if (rate_hi) {
  1069. *rate_hi = (u8) ((div >> 8) & 0xff);
  1070. }
  1071. if (prescaler) {
  1072. *prescaler = best_prescaler;
  1073. /*  dbg(__FUNCTION__ " %d %d", *prescaler, div); */
  1074. }
  1075. return (KEYSPAN_BAUD_RATE_OK);
  1076. }
  1077. static int keyspan_usa26_send_setup(struct usb_serial *serial,
  1078.     struct usb_serial_port *port,
  1079.     int reset_port)
  1080. {
  1081. struct keyspan_usa26_portControlMessage msg;
  1082. struct keyspan_serial_private  *s_priv;
  1083. struct keyspan_port_private  *p_priv;
  1084. const  keyspan_device_details *d_details;
  1085. int  outcont_urb;
  1086. urb_t *this_urb;
  1087. int err;
  1088. dbg ("%s reset=%dn", __FUNCTION__, reset_port); 
  1089. s_priv = (struct keyspan_serial_private *)(serial->private);
  1090. p_priv = (struct keyspan_port_private *)(port->private);
  1091. d_details = s_priv->device_details;
  1092. outcont_urb = d_details->outcont_endpoints[port->number];
  1093. this_urb = p_priv->outcont_urb;
  1094. dbg(__FUNCTION__ " endpoint %dn", usb_pipeendpoint(this_urb->pipe));
  1095. /* Make sure we have an urb then send the message */
  1096. if (this_urb == NULL) {
  1097. dbg(__FUNCTION__ " oops no urb.n");
  1098. return -1;
  1099. }
  1100. p_priv->resend_cont = 1;
  1101. if (this_urb->status == -EINPROGRESS) {
  1102. /*  dbg (__FUNCTION__ " already writing"); */
  1103. return(-1);
  1104. }
  1105. memset(&msg, 0, sizeof (struct keyspan_usa26_portControlMessage));
  1106. /* Only set baud rate if it's changed */
  1107. if (p_priv->old_baud != p_priv->baud) {
  1108. p_priv->old_baud = p_priv->baud;
  1109. msg.setClocking = 0xff;
  1110. if (d_details->calculate_baud_rate
  1111.     (p_priv->baud, d_details->baudclk, &msg.baudHi,
  1112.      &msg.baudLo, &msg.prescaler) == KEYSPAN_INVALID_BAUD_RATE ) {
  1113. dbg(__FUNCTION__ "Invalid baud rate %d requested, using 9600.n",
  1114.     p_priv->baud);
  1115. msg.baudLo = 0;
  1116. msg.baudHi = 125; /* Values for 9600 baud */
  1117. msg.prescaler = 10;
  1118. }
  1119. msg.setPrescaler = 0xff;
  1120. }
  1121. msg.lcr = (p_priv->cflag & CSTOPB)? STOPBITS_678_2: STOPBITS_5678_1;
  1122. switch (p_priv->cflag & CSIZE) {
  1123. case CS5:
  1124. msg.lcr |= USA_DATABITS_5;
  1125. break;
  1126. case CS6:
  1127. msg.lcr |= USA_DATABITS_6;
  1128. break;
  1129. case CS7:
  1130. msg.lcr |= USA_DATABITS_7;
  1131. break;
  1132. case CS8:
  1133. msg.lcr |= USA_DATABITS_8;
  1134. break;
  1135. }
  1136. if (p_priv->cflag & PARENB) {
  1137. /* note USA_PARITY_NONE == 0 */
  1138. msg.lcr |= (p_priv->cflag & PARODD)?
  1139. USA_PARITY_ODD: USA_PARITY_EVEN;
  1140. }
  1141. msg.setLcr = 0xff;
  1142. msg.ctsFlowControl = (p_priv->flow_control == flow_cts);
  1143. msg.xonFlowControl = 0;
  1144. msg.setFlowControl = 0xff;
  1145. msg.forwardingLength = 1;
  1146. msg.xonChar = 17;
  1147. msg.xoffChar = 19;
  1148. if (reset_port) {
  1149. msg._txOn = 0;
  1150. msg._txOff = 1;
  1151. msg.txFlush = 0;
  1152. msg.txBreak = 0;
  1153. msg.rxOn = 0;
  1154. msg.rxOff = 1;
  1155. msg.rxFlush = 1;
  1156. msg.rxForward = 0;
  1157. msg.returnStatus = 0;
  1158. msg.resetDataToggle = 0xff;
  1159. }
  1160. else {
  1161. msg._txOn = (! p_priv->break_on);
  1162. msg._txOff = 0;
  1163. msg.txFlush = 0;
  1164. msg.txBreak = (p_priv->break_on);
  1165. msg.rxOn = 1;
  1166. msg.rxOff = 0;
  1167. msg.rxFlush = 0;
  1168. msg.rxForward = 0;
  1169. msg.returnStatus = 0;
  1170. msg.resetDataToggle = 0x0;
  1171. }
  1172. /* Do handshaking outputs */
  1173. msg.setTxTriState_setRts = 0xff;
  1174. msg.txTriState_rts = p_priv->rts_state;
  1175. msg.setHskoa_setDtr = 0xff;
  1176. msg.hskoa_dtr = p_priv->dtr_state;
  1177. p_priv->resend_cont = 0;
  1178. memcpy (this_urb->transfer_buffer, &msg, sizeof(msg));
  1179. /* send the data out the device on control endpoint */
  1180. this_urb->transfer_buffer_length = sizeof(msg);
  1181. this_urb->dev = serial->dev;
  1182. if ((err = usb_submit_urb(this_urb)) != 0) {
  1183. dbg(__FUNCTION__ " usb_submit_urb(setup) failed (%d)n", err);
  1184. }
  1185. #if 0
  1186. else {
  1187. dbg(__FUNCTION__ " usb_submit_urb(%d) OK %d bytes (end %d)",
  1188.     outcont_urb, this_urb->transfer_buffer_length,
  1189.     usb_pipeendpoint(this_urb->pipe));
  1190. }
  1191. #endif
  1192. return (0);
  1193. }
  1194. static int keyspan_usa28_send_setup(struct usb_serial *serial,
  1195.     struct usb_serial_port *port,
  1196.     int reset_port)
  1197. {
  1198. struct keyspan_usa28_portControlMessage msg;
  1199. struct keyspan_serial_private   *s_priv;
  1200. struct keyspan_port_private  *p_priv;
  1201. const  keyspan_device_details *d_details;
  1202. urb_t *this_urb;
  1203. int err;
  1204. s_priv = (struct keyspan_serial_private *)(serial->private);
  1205. p_priv = (struct keyspan_port_private *)(port->private);
  1206. d_details = s_priv->device_details;
  1207. /* only do something if we have a bulk out endpoint */
  1208. if ((this_urb = p_priv->outcont_urb) == NULL) {
  1209. dbg(__FUNCTION__ " oops no urb.n");
  1210. return -1;
  1211. }
  1212. p_priv->resend_cont = 1;
  1213. if (this_urb->status == -EINPROGRESS) {
  1214. dbg (__FUNCTION__ " already writingn");
  1215. return(-1);
  1216. }
  1217. memset(&msg, 0, sizeof (struct keyspan_usa28_portControlMessage));
  1218. msg.setBaudRate = 1;
  1219. if (keyspan_usa19_calc_baud(p_priv->baud, d_details->baudclk,
  1220. &msg.baudHi, &msg.baudLo, NULL) == KEYSPAN_INVALID_BAUD_RATE ) {
  1221. dbg(__FUNCTION__ "Invalid baud rate requested %d.", p_priv->baud);
  1222. msg.baudLo = 0xff;
  1223. msg.baudHi = 0xb2; /* Values for 9600 baud */
  1224. }
  1225. /* If parity is enabled, we must calculate it ourselves. */
  1226. msg.parity = 0; /* XXX for now */
  1227. msg.ctsFlowControl = (p_priv->flow_control == flow_cts);
  1228. msg.xonFlowControl = 0;
  1229. /* Do handshaking outputs, DTR is inverted relative to RTS */
  1230. msg.rts = p_priv->rts_state;
  1231. msg.dtr = p_priv->dtr_state;
  1232. msg.forwardingLength = 1;
  1233. msg.forwardMs = 10;
  1234. msg.breakThreshold = 45;
  1235. msg.xonChar = 17;
  1236. msg.xoffChar = 19;
  1237. msg._txOn = 1;
  1238. msg._txOff = 0;
  1239. msg.txFlush = 0;
  1240. msg.txForceXoff = 0;
  1241. msg.txBreak = 0;
  1242. msg.rxOn = 1;
  1243. msg.rxOff = 0;
  1244. msg.rxFlush = 0;
  1245. msg.rxForward = 0;
  1246. /*msg.returnStatus = 1;
  1247. msg.resetDataToggle = 0xff;*/
  1248. p_priv->resend_cont = 0;
  1249. memcpy (this_urb->transfer_buffer, &msg, sizeof(msg));
  1250. /* send the data out the device on control endpoint */
  1251. this_urb->transfer_buffer_length = sizeof(msg);
  1252. this_urb->dev = serial->dev;
  1253. if ((err = usb_submit_urb(this_urb)) != 0) {
  1254. dbg(__FUNCTION__ " usb_submit_urb(setup) failedn");
  1255. }
  1256. #if 0
  1257. else {
  1258. dbg(__FUNCTION__ " usb_submit_urb(setup) OK %d bytes",
  1259.     this_urb->transfer_buffer_length);
  1260. }
  1261. #endif
  1262. return (0);
  1263. }
  1264. static int keyspan_usa49_send_setup(struct usb_serial *serial,
  1265.     struct usb_serial_port *port,
  1266.     int reset_port)
  1267. {
  1268. struct keyspan_usa49_portControlMessage msg;
  1269. struct keyspan_serial_private  *s_priv;
  1270. struct keyspan_port_private  *p_priv;
  1271. const  keyspan_device_details *d_details;
  1272. int  glocont_urb;
  1273. urb_t  *this_urb;
  1274. int  err;
  1275. int device_port;
  1276. dbg ("%sn", __FUNCTION__);
  1277. s_priv = (struct keyspan_serial_private *)(serial->private);
  1278. p_priv = (struct keyspan_port_private *)(port->private);
  1279. d_details = s_priv->device_details;
  1280. glocont_urb = d_details->glocont_endpoint;
  1281. this_urb = s_priv->glocont_urb;
  1282. /* Work out which port within the device is being setup */
  1283. device_port = port->number - port->serial->minor;
  1284. dbg(__FUNCTION__ " endpoint %d port %d (%d)n", usb_pipeendpoint(this_urb->pipe), port->number, device_port);
  1285. /* Make sure we have an urb then send the message */
  1286. if (this_urb == NULL) {
  1287. dbg(__FUNCTION__ " oops no urb for port %d.n", port->number);
  1288. return -1;
  1289. }
  1290. p_priv->resend_cont = 1;
  1291. if (this_urb->status == -EINPROGRESS) {
  1292. /*  dbg (__FUNCTION__ " already writing"); */
  1293. return(-1);
  1294. }
  1295. memset(&msg, 0, sizeof (struct keyspan_usa49_portControlMessage));
  1296. /*msg.portNumber = port->number;*/
  1297. msg.portNumber = device_port;
  1298. /* Only set baud rate if it's changed */
  1299. if (p_priv->old_baud != p_priv->baud) {
  1300. p_priv->old_baud = p_priv->baud;
  1301. msg.setClocking = 0xff;
  1302. if (d_details->calculate_baud_rate
  1303.     (p_priv->baud, d_details->baudclk, &msg.baudHi,
  1304.      &msg.baudLo, &msg.prescaler) == KEYSPAN_INVALID_BAUD_RATE ) {
  1305. dbg(__FUNCTION__ "Invalid baud rate %d requested, using 9600.n",
  1306.     p_priv->baud);
  1307. msg.baudLo = 0;
  1308. msg.baudHi = 125; /* Values for 9600 baud */
  1309. msg.prescaler = 10;
  1310. }
  1311. //msg.setPrescaler = 0xff;
  1312. }
  1313. msg.lcr = (p_priv->cflag & CSTOPB)? STOPBITS_678_2: STOPBITS_5678_1;
  1314. switch (p_priv->cflag & CSIZE) {
  1315. case CS5:
  1316. msg.lcr |= USA_DATABITS_5;
  1317. break;
  1318. case CS6:
  1319. msg.lcr |= USA_DATABITS_6;
  1320. break;
  1321. case CS7:
  1322. msg.lcr |= USA_DATABITS_7;
  1323. break;
  1324. case CS8:
  1325. msg.lcr |= USA_DATABITS_8;
  1326. break;
  1327. }
  1328. if (p_priv->cflag & PARENB) {
  1329. /* note USA_PARITY_NONE == 0 */
  1330. msg.lcr |= (p_priv->cflag & PARODD)?
  1331. USA_PARITY_ODD: USA_PARITY_EVEN;
  1332. }
  1333. msg.setLcr = 0xff;
  1334. msg.ctsFlowControl = (p_priv->flow_control == flow_cts);
  1335. msg.xonFlowControl = 0;
  1336. msg.setFlowControl = 0xff;
  1337. msg.forwardingLength = 1;
  1338. msg.xonChar = 17;
  1339. msg.xoffChar = 19;
  1340. msg._txOn = 1;
  1341. msg._txOff = 0;
  1342. msg.txFlush = 0;
  1343. msg.txBreak = 0;
  1344. msg.rxOn = 1;
  1345. msg.rxOff = 0;
  1346. msg.rxFlush = 0;
  1347. msg.rxForward = 0;
  1348. msg.enablePort = 0xff;
  1349. msg.disablePort = 0;
  1350. /* Do handshaking outputs */
  1351. msg.setRts = 0xff;
  1352. msg.rts = p_priv->rts_state;
  1353. msg.setDtr = 0xff;
  1354. msg.dtr = p_priv->dtr_state;
  1355. p_priv->resend_cont = 0;
  1356. memcpy (this_urb->transfer_buffer, &msg, sizeof(msg));
  1357. /* send the data out the device on control endpoint */
  1358. this_urb->transfer_buffer_length = sizeof(msg);
  1359. this_urb->dev = serial->dev;
  1360. if ((err = usb_submit_urb(this_urb)) != 0) {
  1361. dbg(__FUNCTION__ " usb_submit_urb(setup) failed (%d)n", err);
  1362. }
  1363. #if 0
  1364. else {
  1365. dbg(__FUNCTION__ " usb_submit_urb(%d) OK %d bytes (end %d)",
  1366.     outcont_urb, this_urb->transfer_buffer_length,
  1367.     usb_pipeendpoint(this_urb->pipe));
  1368. }
  1369. #endif
  1370. return (0);
  1371. }
  1372. static void keyspan_send_setup(struct usb_serial_port *port, int reset_port)
  1373. {
  1374. struct usb_serial *serial = port->serial;
  1375. struct keyspan_serial_private  *s_priv;
  1376. const keyspan_device_details *d_details;
  1377. s_priv = (struct keyspan_serial_private *)(serial->private);
  1378. d_details = s_priv->device_details;
  1379. switch (d_details->msg_format) {
  1380. case msg_usa26:
  1381. keyspan_usa26_send_setup(serial, port, reset_port);
  1382. break;
  1383. case msg_usa28:
  1384. keyspan_usa28_send_setup(serial, port, reset_port);
  1385. break;
  1386. case msg_usa49:
  1387. keyspan_usa49_send_setup(serial, port, reset_port);
  1388. break;
  1389. }
  1390. }
  1391. /* Gets called by the "real" driver (ie once firmware is loaded
  1392.    and renumeration has taken place. */
  1393. static int keyspan_startup (struct usb_serial *serial)
  1394. {
  1395. int i, err;
  1396. struct usb_serial_port *port;
  1397. struct keyspan_serial_private  *s_priv;
  1398. struct keyspan_port_private *p_priv;
  1399. const keyspan_device_details *d_details;
  1400. dbg("keyspan_startup called.n");
  1401. for (i = 0; (d_details = keyspan_devices[i]) != NULL; ++i)
  1402. if (d_details->product_id == serial->dev->descriptor.idProduct)
  1403. break;
  1404. if (d_details == NULL) {
  1405. printk(KERN_ERR __FUNCTION__ ": unknown product id %xn",
  1406.        serial->dev->descriptor.idProduct);
  1407. return 1;
  1408. }
  1409. /* Setup private data for serial driver */
  1410. serial->private = kmalloc(sizeof(struct keyspan_serial_private),
  1411.   GFP_KERNEL);
  1412. if (!serial->private) {
  1413. dbg(__FUNCTION__ "kmalloc for keyspan_serial_private failed.n");
  1414. return (1);
  1415. }
  1416. memset(serial->private, 0, sizeof(struct keyspan_serial_private));
  1417. s_priv = (struct keyspan_serial_private *)(serial->private);
  1418. s_priv->device_details = d_details;
  1419. /* Now setup per port private data */
  1420. for (i = 0; i < serial->num_ports; i++) {
  1421. port = &serial->port[i];
  1422. port->private = kmalloc(sizeof(struct keyspan_port_private),
  1423. GFP_KERNEL);
  1424. if (!port->private) {
  1425. dbg(__FUNCTION__ "kmalloc for keyspan_port_private (%d) failed!.n", i);
  1426. return (1);
  1427. }
  1428. memset(port->private, 0, sizeof(struct keyspan_port_private));
  1429. p_priv = (struct keyspan_port_private *)(port->private);
  1430. p_priv->device_details = d_details;
  1431. }
  1432. keyspan_setup_urbs(serial);
  1433. s_priv->instat_urb->dev = serial->dev;
  1434. if ((err = usb_submit_urb(s_priv->instat_urb)) != 0) {
  1435. dbg(__FUNCTION__ " submit instat urb failed %dn", err);
  1436. }
  1437. return (0);
  1438. }
  1439. static void keyspan_shutdown (struct usb_serial *serial)
  1440. {
  1441. int i, j;
  1442. struct usb_serial_port *port;
  1443. struct keyspan_serial_private  *s_priv;
  1444. struct keyspan_port_private *p_priv;
  1445. dbg("keyspan_shutdown calledn");
  1446. s_priv = (struct keyspan_serial_private *)(serial->private);
  1447. /* Stop reading/writing urbs */
  1448. stop_urb(s_priv->instat_urb);
  1449. stop_urb(s_priv->glocont_urb);
  1450. for (i = 0; i < serial->num_ports; ++i) {
  1451. port = &serial->port[i];
  1452. p_priv = (struct keyspan_port_private *)(port->private);
  1453. stop_urb(p_priv->inack_urb);
  1454. stop_urb(p_priv->outcont_urb);
  1455. for (j = 0; j < 2; j++) {
  1456. stop_urb(p_priv->in_urbs[j]);
  1457. stop_urb(p_priv->out_urbs[j]);
  1458. }
  1459. }
  1460. /* Now free them */
  1461. if (s_priv->instat_urb)
  1462. usb_free_urb(s_priv->instat_urb);
  1463. if (s_priv->glocont_urb)
  1464. usb_free_urb(s_priv->glocont_urb);
  1465. for (i = 0; i < serial->num_ports; ++i) {
  1466. port = &serial->port[i];
  1467. p_priv = (struct keyspan_port_private *)(port->private);
  1468. if (p_priv->inack_urb)
  1469. usb_free_urb(p_priv->inack_urb);
  1470. if (p_priv->outcont_urb)
  1471. usb_free_urb(p_priv->outcont_urb);
  1472. for (j = 0; j < 2; j++) {
  1473. if (p_priv->in_urbs[j])
  1474. usb_free_urb(p_priv->in_urbs[j]);
  1475. if (p_priv->out_urbs[j])
  1476. usb_free_urb(p_priv->out_urbs[j]);
  1477. }
  1478. }
  1479. /*  dbg("Freeing serial->private."); */
  1480. kfree(serial->private);
  1481. /*  dbg("Freeing port->private."); */
  1482. /* Now free per port private data */
  1483. for (i = 0; i < serial->num_ports; i++) {
  1484. port = &serial->port[i];
  1485. while (port->open_count > 0) {
  1486. --port->open_count;
  1487. MOD_DEC_USE_COUNT;
  1488. }
  1489. kfree(port->private);
  1490. }
  1491. }
  1492. MODULE_AUTHOR( DRIVER_AUTHOR );
  1493. MODULE_DESCRIPTION( DRIVER_DESC );
  1494. MODULE_LICENSE("GPL");
  1495. MODULE_PARM(debug, "i");
  1496. MODULE_PARM_DESC(debug, "Debug enabled or not");