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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * USB Compaq iPAQ driver
  3.  *
  4.  * Copyright (C) 2001
  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.  * 
  13.  */
  14. #ifndef __LINUX_USB_SERIAL_IPAQ_H
  15. #define __LINUX_USB_SERIAL_IPAQ_H
  16. #define IPAQ_VENDOR_ID 0x049f
  17. #define IPAQ_PRODUCT_ID 0x0003
  18. /*
  19.  * Since we can't queue our bulk write urbs (don't know why - it just
  20.  * doesn't work), we can send down only one write urb at a time. The simplistic
  21.  * approach taken by the generic usbserial driver will work, but it's not good
  22.  * for performance. Therefore, we buffer upto URBDATA_QUEUE_MAX bytes of write
  23.  * requests coming from the line discipline. This is done by chaining them
  24.  * in lists of struct ipaq_packet, each packet holding a maximum of
  25.  * PACKET_SIZE bytes.
  26.  *
  27.  * ipaq_write() can be called from bottom half context; hence we can't
  28.  * allocate memory for packets there. So we initialize a pool of packets at
  29.  * the first open and maintain a freelist.
  30.  *
  31.  * The value of PACKET_SIZE was empirically determined by
  32.  * checking the maximum write sizes sent down by the ppp ldisc.
  33.  * URBDATA_QUEUE_MAX is set to 64K, which is the maximum TCP window size
  34.  * supported by the iPAQ.
  35.  */
  36. struct ipaq_packet {
  37. char *data;
  38. size_t len;
  39. size_t written;
  40. struct list_head list;
  41. };
  42. struct ipaq_private {
  43. int active;
  44. int queue_len;
  45. int free_len;
  46. struct list_head queue;
  47. struct list_head freelist;
  48. };
  49. #define URBDATA_SIZE 4096
  50. #define URBDATA_QUEUE_MAX (64 * 1024)
  51. #define PACKET_SIZE 256
  52. #endif