ipaq.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:15k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * USB Compaq iPAQ driver
  3.  *
  4.  * Copyright (C) 2001 - 2002
  5.  *     Ganesh Varadarajan <ganesh@veritas.com>
  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.  *
  12.  * (26/7/2002) ganesh
  13.  *  Fixed up broken error handling in ipaq_open. Retry the "kickstart"
  14.  *  packet much harder - this drastically reduces connection failures.
  15.  *
  16.  * (30/4/2002) ganesh
  17.  *  Added support for the Casio EM500. Completely untested. Thanks
  18.  *  to info from Nathan <wfilardo@fuse.net>
  19.  *
  20.  * (19/3/2002) ganesh
  21.  *  Don't submit urbs while holding spinlocks. Thanks to Greg for pointing
  22.  *  this out.
  23.  *
  24.  * (8/3/2002) ganesh
  25.  *  The ipaq sometimes emits a '' before the CLIENT string. At this
  26.  *  point of time, the ppp ldisc is not yet attached to the tty, so
  27.  *  n_tty echoes "^ " to the ipaq, which messes up the chat. In 2.5.6-pre2
  28.  *  this causes a panic because echo_char() tries to sleep in interrupt
  29.  *  context.
  30.  *  The fix is to tell the upper layers that this is a raw device so that
  31.  *  echoing is suppressed. Thanks to Lyle Lindholm for a detailed bug
  32.  *  report.
  33.  *
  34.  * (25/2/2002) ganesh
  35.  *  Added support for the HP Jornada 548 and 568. Completely untested.
  36.  *  Thanks to info from Heath Robinson and Arieh Davidoff.
  37.  */
  38. #include <linux/config.h>
  39. #include <linux/kernel.h>
  40. #include <linux/errno.h>
  41. #include <linux/init.h>
  42. #include <linux/slab.h>
  43. #include <linux/tty.h>
  44. #include <linux/tty_driver.h>
  45. #include <linux/tty_flip.h>
  46. #include <linux/module.h>
  47. #include <linux/spinlock.h>
  48. #include <asm/uaccess.h>
  49. #include <linux/usb.h>
  50. #ifdef CONFIG_USB_SERIAL_DEBUG
  51. static int debug = 1;
  52. #else
  53. static int debug = 0;
  54. #endif
  55. #include "usb-serial.h"
  56. #include "ipaq.h"
  57. #define KP_RETRIES 100
  58. /*
  59.  * Version Information
  60.  */
  61. #define DRIVER_VERSION "v0.2"
  62. #define DRIVER_AUTHOR "Ganesh Varadarajan <ganesh@veritas.com>"
  63. #define DRIVER_DESC "USB Compaq iPAQ, HP Jornada, Casio EM500 driver"
  64. /* Function prototypes for an ipaq */
  65. static int  ipaq_open (struct usb_serial_port *port, struct file *filp);
  66. static void ipaq_close (struct usb_serial_port *port, struct file *filp);
  67. static int  ipaq_startup (struct usb_serial *serial);
  68. static void ipaq_shutdown (struct usb_serial *serial);
  69. static int ipaq_write(struct usb_serial_port *port, int from_user, const unsigned char *buf,
  70.        int count);
  71. static int ipaq_write_bulk(struct usb_serial_port *port, int from_user, const unsigned char *buf,
  72.    int count);
  73. static void ipaq_write_gather(struct usb_serial_port *port);
  74. static void ipaq_read_bulk_callback (struct urb *urb);
  75. static void ipaq_write_bulk_callback(struct urb *urb);
  76. static int ipaq_write_room(struct usb_serial_port *port);
  77. static int ipaq_chars_in_buffer(struct usb_serial_port *port);
  78. static void ipaq_destroy_lists(struct usb_serial_port *port);
  79. static struct usb_device_id ipaq_id_table [] = {
  80. { USB_DEVICE(COMPAQ_VENDOR_ID, COMPAQ_IPAQ_ID) },
  81. { USB_DEVICE(HP_VENDOR_ID, HP_JORNADA_548_ID) },
  82. { USB_DEVICE(HP_VENDOR_ID, HP_JORNADA_568_ID) },
  83. { USB_DEVICE(CASIO_VENDOR_ID, CASIO_EM500_ID) },
  84. { } /* Terminating entry */
  85. };
  86. MODULE_DEVICE_TABLE (usb, ipaq_id_table);
  87. /* All of the device info needed for the Compaq iPAQ */
  88. struct usb_serial_device_type ipaq_device = {
  89. .owner = THIS_MODULE,
  90. .name = "Compaq iPAQ",
  91. .id_table = ipaq_id_table,
  92. .num_interrupt_in = NUM_DONT_CARE,
  93. .num_bulk_in = 1,
  94. .num_bulk_out = 1,
  95. .num_ports = 1,
  96. .open = ipaq_open,
  97. .close = ipaq_close,
  98. .startup = ipaq_startup,
  99. .shutdown = ipaq_shutdown,
  100. .write = ipaq_write,
  101. .write_room = ipaq_write_room,
  102. .chars_in_buffer = ipaq_chars_in_buffer,
  103. .read_bulk_callback = ipaq_read_bulk_callback,
  104. .write_bulk_callback = ipaq_write_bulk_callback,
  105. };
  106. static spinlock_t write_list_lock;
  107. static int bytes_in;
  108. static int bytes_out;
  109. static int ipaq_open(struct usb_serial_port *port, struct file *filp)
  110. {
  111. struct usb_serial *serial = port->serial;
  112. struct ipaq_private *priv;
  113. struct ipaq_packet *pkt;
  114. int i, result = 0;
  115. int retries = KP_RETRIES;
  116. if (port_paranoia_check(port, __FUNCTION__)) {
  117. return -ENODEV;
  118. }
  119. dbg("%s - port %d", __FUNCTION__, port->number);
  120. bytes_in = 0;
  121. bytes_out = 0;
  122. priv = (struct ipaq_private *)kmalloc(sizeof(struct ipaq_private), GFP_KERNEL);
  123. if (priv == NULL) {
  124. err("%s - Out of memory", __FUNCTION__);
  125. return -ENOMEM;
  126. }
  127. port->private = (void *)priv;
  128. priv->active = 0;
  129. priv->queue_len = 0;
  130. INIT_LIST_HEAD(&priv->queue);
  131. INIT_LIST_HEAD(&priv->freelist);
  132. for (i = 0; i < URBDATA_QUEUE_MAX / PACKET_SIZE; i++) {
  133. pkt = kmalloc(sizeof(struct ipaq_packet), GFP_KERNEL);
  134. if (pkt == NULL) {
  135. goto enomem;
  136. }
  137. pkt->data = kmalloc(PACKET_SIZE, GFP_KERNEL);
  138. if (pkt->data == NULL) {
  139. kfree(pkt);
  140. goto enomem;
  141. }
  142. pkt->len = 0;
  143. pkt->written = 0;
  144. INIT_LIST_HEAD(&pkt->list);
  145. list_add(&pkt->list, &priv->freelist);
  146. priv->free_len += PACKET_SIZE;
  147. }
  148. /*
  149.  * Force low latency on. This will immediately push data to the line
  150.  * discipline instead of queueing.
  151.  */
  152. port->tty->low_latency = 1;
  153. port->tty->raw = 1;
  154. port->tty->real_raw = 1;
  155. /*
  156.  * Lose the small buffers usbserial provides. Make larger ones.
  157.  */
  158. kfree(port->bulk_in_buffer);
  159. kfree(port->bulk_out_buffer);
  160. port->bulk_in_buffer = kmalloc(URBDATA_SIZE, GFP_KERNEL);
  161. if (port->bulk_in_buffer == NULL) {
  162. goto enomem;
  163. }
  164. port->bulk_out_buffer = kmalloc(URBDATA_SIZE, GFP_KERNEL);
  165. if (port->bulk_out_buffer == NULL) {
  166. kfree(port->bulk_in_buffer);
  167. goto enomem;
  168. }
  169. port->read_urb->transfer_buffer = port->bulk_in_buffer;
  170. port->write_urb->transfer_buffer = port->bulk_out_buffer;
  171. port->read_urb->transfer_buffer_length = URBDATA_SIZE;
  172. port->bulk_out_size = port->write_urb->transfer_buffer_length = URBDATA_SIZE;
  173. /* Start reading from the device */
  174. FILL_BULK_URB(port->read_urb, serial->dev, 
  175.       usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress),
  176.       port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
  177.       ipaq_read_bulk_callback, port);
  178. result = usb_submit_urb(port->read_urb);
  179. if (result) {
  180. err("%s - failed submitting read urb, error %d", __FUNCTION__, result);
  181. goto error;
  182. }
  183. /*
  184.  * Send out control message observed in win98 sniffs. Not sure what
  185.  * it does, but from empirical observations, it seems that the device
  186.  * will start the chat sequence once one of these messages gets
  187.  * through. Since this has a reasonably high failure rate, we retry
  188.  * several times.
  189.  */
  190. while (retries--) {
  191. result = usb_control_msg(serial->dev,
  192. usb_sndctrlpipe(serial->dev, 0), 0x22, 0x21,
  193. 0x1, 0, NULL, 0, HZ / 10 + 1);
  194. if (result == 0) {
  195. return 0;
  196. }
  197. }
  198. err("%s - failed doing control urb, error %d", __FUNCTION__, result);
  199. goto error;
  200. enomem:
  201. result = -ENOMEM;
  202. err("%s - Out of memory", __FUNCTION__);
  203. error:
  204. ipaq_destroy_lists(port);
  205. kfree(priv);
  206. return result;
  207. }
  208. static void ipaq_close(struct usb_serial_port *port, struct file *filp)
  209. {
  210. struct usb_serial *serial;
  211. struct ipaq_private *priv = port->private;
  212. if (port_paranoia_check(port, __FUNCTION__)) {
  213. return; 
  214. }
  215. dbg("%s - port %d", __FUNCTION__, port->number);
  216.  
  217. serial = get_usb_serial(port, __FUNCTION__);
  218. if (!serial)
  219. return;
  220. /*
  221.  * shut down bulk read and write
  222.  */
  223. usb_unlink_urb(port->write_urb);
  224. usb_unlink_urb(port->read_urb);
  225. ipaq_destroy_lists(port);
  226. kfree(priv);
  227. port->private = NULL;
  228. /* Uncomment the following line if you want to see some statistics in your syslog */
  229. /* info ("Bytes In = %d  Bytes Out = %d", bytes_in, bytes_out); */
  230. }
  231. static void ipaq_read_bulk_callback(struct urb *urb)
  232. {
  233. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  234. struct usb_serial *serial = get_usb_serial (port, __FUNCTION__);
  235. struct tty_struct *tty;
  236. unsigned char *data = urb->transfer_buffer;
  237. int i, result;
  238. if (port_paranoia_check(port, __FUNCTION__))
  239. return;
  240. dbg("%s - port %d", __FUNCTION__, port->number);
  241. if (!serial) {
  242. dbg("%s - bad serial pointer, exiting", __FUNCTION__);
  243. return;
  244. }
  245. if (urb->status) {
  246. dbg("%s - nonzero read bulk status received: %d", __FUNCTION__, urb->status);
  247. return;
  248. }
  249. usb_serial_debug_data (__FILE__, __FUNCTION__, urb->actual_length, data);
  250. tty = port->tty;
  251. if (urb->actual_length) {
  252. for (i = 0; i < urb->actual_length ; ++i) {
  253. /* if we insert more than TTY_FLIPBUF_SIZE characters, we drop them. */
  254. if(tty->flip.count >= TTY_FLIPBUF_SIZE) {
  255. tty_flip_buffer_push(tty);
  256. }
  257. /* this doesn't actually push the data through unless tty->low_latency is set */
  258. tty_insert_flip_char(tty, data[i], 0);
  259. }
  260. tty_flip_buffer_push(tty);
  261. bytes_in += urb->actual_length;
  262. }
  263. /* Continue trying to always read  */
  264. FILL_BULK_URB(port->read_urb, serial->dev, 
  265.       usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress),
  266.       port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
  267.       ipaq_read_bulk_callback, port);
  268. result = usb_submit_urb(port->read_urb);
  269. if (result)
  270. err("%s - failed resubmitting read urb, error %d", __FUNCTION__, result);
  271. return;
  272. }
  273. static int ipaq_write(struct usb_serial_port *port, int from_user, const unsigned char *buf,
  274.        int count)
  275. {
  276. const unsigned char *current_position = buf;
  277. int bytes_sent = 0;
  278. int transfer_size;
  279. dbg("%s - port %d", __FUNCTION__, port->number);
  280. usb_serial_debug_data(__FILE__, __FUNCTION__, count, buf);
  281. while (count > 0) {
  282. transfer_size = min(count, PACKET_SIZE);
  283. if (ipaq_write_bulk(port, from_user, current_position, transfer_size)) {
  284. break;
  285. }
  286. current_position += transfer_size;
  287. bytes_sent += transfer_size;
  288. count -= transfer_size;
  289. bytes_out += transfer_size;
  290. }
  291. return bytes_sent;
  292. static int ipaq_write_bulk(struct usb_serial_port *port, int from_user, const unsigned char *buf,
  293.    int count)
  294. {
  295. struct ipaq_private *priv = port->private;
  296. struct ipaq_packet *pkt = NULL;
  297. int result = 0;
  298. unsigned long flags;
  299. if (priv->free_len <= 0) {
  300. dbg("%s - we're stuffed", __FUNCTION__);
  301. return -EAGAIN;
  302. }
  303. spin_lock_irqsave(&write_list_lock, flags);
  304. if (!list_empty(&priv->freelist)) {
  305. pkt = list_entry(priv->freelist.next, struct ipaq_packet, list);
  306. list_del(&pkt->list);
  307. priv->free_len -= PACKET_SIZE;
  308. }
  309. spin_unlock_irqrestore(&write_list_lock, flags);
  310. if (pkt == NULL) {
  311. dbg("%s - we're stuffed", __FUNCTION__);
  312. return -EAGAIN;
  313. }
  314. if (from_user) {
  315. if (copy_from_user(pkt->data, buf, count))
  316. return -EFAULT;
  317. } else {
  318. memcpy(pkt->data, buf, count);
  319. }
  320. usb_serial_debug_data(__FILE__, __FUNCTION__, count, pkt->data);
  321. pkt->len = count;
  322. pkt->written = 0;
  323. spin_lock_irqsave(&write_list_lock, flags);
  324. list_add_tail(&pkt->list, &priv->queue);
  325. priv->queue_len += count;
  326. if (priv->active == 0) {
  327. priv->active = 1;
  328. ipaq_write_gather(port);
  329. spin_unlock_irqrestore(&write_list_lock, flags);
  330. result = usb_submit_urb(port->write_urb);
  331. if (result) {
  332. err("%s - failed submitting write urb, error %d", __FUNCTION__, result);
  333. }
  334. } else {
  335. spin_unlock_irqrestore(&write_list_lock, flags);
  336. }
  337. return result;
  338. }
  339. static void ipaq_write_gather(struct usb_serial_port *port)
  340. {
  341. struct ipaq_private *priv = (struct ipaq_private *)port->private;
  342. struct usb_serial *serial = port->serial;
  343. int count, room;
  344. struct ipaq_packet *pkt;
  345. struct urb *urb = port->write_urb;
  346. struct list_head *tmp;
  347. if (urb->status == -EINPROGRESS) {
  348. /* Should never happen */
  349. err("%s - flushing while urb is active !", __FUNCTION__);
  350. return;
  351. }
  352. room = URBDATA_SIZE;
  353. for (tmp = priv->queue.next; tmp != &priv->queue;) {
  354. pkt = list_entry(tmp, struct ipaq_packet, list);
  355. tmp = tmp->next;
  356. count = min(room, (int)(pkt->len - pkt->written));
  357. memcpy(urb->transfer_buffer + (URBDATA_SIZE - room),
  358.        pkt->data + pkt->written, count);
  359. room -= count;
  360. pkt->written += count;
  361. priv->queue_len -= count;
  362. if (pkt->written == pkt->len) {
  363. list_del(&pkt->list);
  364. list_add(&pkt->list, &priv->freelist);
  365. priv->free_len += PACKET_SIZE;
  366. }
  367. if (room == 0) {
  368. break;
  369. }
  370. }
  371. count = URBDATA_SIZE - room;
  372. FILL_BULK_URB(port->write_urb, serial->dev, 
  373.       usb_sndbulkpipe(serial->dev, port->bulk_out_endpointAddress),
  374.       port->write_urb->transfer_buffer, count, ipaq_write_bulk_callback,
  375.       port);
  376. return;
  377. }
  378. static void ipaq_write_bulk_callback(struct urb *urb)
  379. {
  380. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  381. struct ipaq_private *priv = (struct ipaq_private *)port->private;
  382. unsigned long flags;
  383. int result;
  384. if (port_paranoia_check (port, __FUNCTION__)) {
  385. return;
  386. }
  387. dbg("%s - port %d", __FUNCTION__, port->number);
  388. if (urb->status) {
  389. dbg("%s - nonzero write bulk status received: %d", __FUNCTION__, urb->status);
  390. }
  391. spin_lock_irqsave(&write_list_lock, flags);
  392. if (!list_empty(&priv->queue)) {
  393. ipaq_write_gather(port);
  394. spin_unlock_irqrestore(&write_list_lock, flags);
  395. result = usb_submit_urb(port->write_urb);
  396. if (result) {
  397. err("%s - failed submitting write urb, error %d", __FUNCTION__, result);
  398. }
  399. } else {
  400. priv->active = 0;
  401. spin_unlock_irqrestore(&write_list_lock, flags);
  402. }
  403. queue_task(&port->tqueue, &tq_immediate);
  404. mark_bh(IMMEDIATE_BH);
  405. return;
  406. }
  407. static int ipaq_write_room(struct usb_serial_port *port)
  408. {
  409. struct ipaq_private *priv = (struct ipaq_private *)port->private;
  410. dbg("%s - freelen %d", __FUNCTION__, priv->free_len);
  411. return priv->free_len;
  412. }
  413. static int ipaq_chars_in_buffer(struct usb_serial_port *port)
  414. {
  415. struct ipaq_private *priv = (struct ipaq_private *)port->private;
  416. dbg("%s - queuelen %d", __FUNCTION__, priv->queue_len);
  417. return priv->queue_len;
  418. }
  419. static void ipaq_destroy_lists(struct usb_serial_port *port)
  420. {
  421. struct ipaq_private *priv = (struct ipaq_private *)port->private;
  422. struct list_head *tmp;
  423. struct ipaq_packet *pkt;
  424. for (tmp = priv->queue.next; tmp != &priv->queue;) {
  425. pkt = list_entry(tmp, struct ipaq_packet, list);
  426. tmp = tmp->next;
  427. kfree(pkt->data);
  428. kfree(pkt);
  429. }
  430. for (tmp = priv->freelist.next; tmp != &priv->freelist;) {
  431. pkt = list_entry(tmp, struct ipaq_packet, list);
  432. tmp = tmp->next;
  433. kfree(pkt->data);
  434. kfree(pkt);
  435. }
  436. return;
  437. }
  438. static int ipaq_startup(struct usb_serial *serial)
  439. {
  440. dbg("%s", __FUNCTION__);
  441. usb_set_configuration(serial->dev, 1);
  442. return 0;
  443. }
  444. static void ipaq_shutdown(struct usb_serial *serial)
  445. {
  446. dbg("%s", __FUNCTION__);
  447. }
  448. static int __init ipaq_init(void)
  449. {
  450. usb_serial_register(&ipaq_device);
  451. info(DRIVER_DESC " " DRIVER_VERSION);
  452. return 0;
  453. }
  454. static void __exit ipaq_exit(void)
  455. {
  456. usb_serial_deregister(&ipaq_device);
  457. }
  458. module_init(ipaq_init);
  459. module_exit(ipaq_exit);
  460. MODULE_AUTHOR( DRIVER_AUTHOR );
  461. MODULE_DESCRIPTION( DRIVER_DESC );
  462. MODULE_LICENSE("GPL");
  463. MODULE_PARM(debug, "i");
  464. MODULE_PARM_DESC(debug, "Debug enabled or not");