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

嵌入式Linux

开发平台:

Unix_Linux

  1. /****************************************************************************
  2.  *
  3.  *  Filename: stv680.h
  4.  *
  5.  *  Description:
  6.  *     This is a USB driver for STV0680 based usb video cameras.
  7.  *
  8.  *  This program is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2 of the License, or
  11.  *  (at your option) any later version.
  12.  * 
  13.  *  This program is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  * 
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with this program; if not, write to the Free Software
  20.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  ****************************************************************************/
  23. /* size of usb transfers */
  24. #define STV680_PACKETSIZE 4096
  25. /* number of queued bulk transfers to use, may have problems if > 1 */
  26. #define STV680_NUMSBUF 1
  27. /* number of frames supported by the v4l part */
  28. #define STV680_NUMFRAMES 2
  29. /* scratch buffers for passing data to the decoders: 2 or 4 are good */
  30. #define STV680_NUMSCRATCH 2
  31. /* number of nul sized packets to receive before kicking the camera */
  32. #define STV680_MAX_NULLPACKETS 200
  33. /* number of decoding errors before kicking the camera */
  34. #define STV680_MAX_ERRORS 100
  35. #define USB_PENCAM_VENDOR_ID 0x0553
  36. #define USB_PENCAM_PRODUCT_ID 0x0202
  37. #define PENCAM_TIMEOUT          1000
  38. /* fmt 4 */
  39. #define STV_VIDEO_PALETTE       VIDEO_PALETTE_RGB24
  40. static __devinitdata struct usb_device_id device_table[] = {
  41. {USB_DEVICE (USB_PENCAM_VENDOR_ID, USB_PENCAM_PRODUCT_ID)},
  42. {}
  43. };
  44. MODULE_DEVICE_TABLE (usb, device_table);
  45. struct stv680_sbuf {
  46. unsigned char *data;
  47. };
  48. enum {
  49. FRAME_UNUSED, /* Unused (no MCAPTURE) */
  50. FRAME_READY, /* Ready to start grabbing */
  51. FRAME_GRABBING, /* In the process of being grabbed into */
  52. FRAME_DONE, /* Finished grabbing, but not been synced yet */
  53. FRAME_ERROR, /* Something bad happened while processing */
  54. };
  55. enum {
  56. BUFFER_UNUSED,
  57. BUFFER_READY,
  58. BUFFER_BUSY,
  59. BUFFER_DONE,
  60. };
  61. /* raw camera data <- sbuf (urb transfer buf) */
  62. struct stv680_scratch {
  63. unsigned char *data;
  64. volatile int state;
  65. int offset;
  66. int length;
  67. };
  68. /* processed data for display ends up here, after bayer */
  69. struct stv680_frame {
  70. unsigned char *data; /* Frame buffer */
  71. volatile int grabstate; /* State of grabbing */
  72. unsigned char *curline;
  73. int curlinepix;
  74. int curpix;
  75. };
  76. /* this is almost the video structure uvd_t, with extra parameters for stv */
  77. struct usb_stv {
  78. struct video_device vdev;
  79. struct usb_device *udev;
  80. unsigned char bulk_in_endpointAddr; /* __u8  the address of the bulk in endpoint */
  81. char *camera_name;
  82. unsigned int VideoMode; /* 0x0100 = VGA, 0x0000 = CIF, 0x0300 = QVGA */
  83. int SupportedModes;
  84. int CIF;
  85. int VGA;
  86. int QVGA;
  87. int cwidth; /* camera width */
  88. int cheight; /* camera height */
  89. int maxwidth; /* max video width */
  90. int maxheight; /* max video height */
  91. int vwidth; /* current width for video window */
  92. int vheight; /* current height for video window */
  93. unsigned long int rawbufsize;
  94. unsigned long int maxframesize; /* rawbufsize * 3 for RGB */
  95. int origGain;
  96. int origMode; /* original camera mode */
  97. struct semaphore lock; /* to lock the structure */
  98. int user; /* user count for exclusive use */
  99. int removed; /* device disconnected */
  100. int streaming; /* Are we streaming video? */
  101. char *fbuf; /* Videodev buffer area */
  102. urb_t *urb[STV680_NUMSBUF]; /* # of queued bulk transfers */
  103. int curframe; /* Current receiving frame */
  104. struct stv680_frame frame[STV680_NUMFRAMES]; /* # frames supported by v4l part */
  105. int readcount;
  106. int framecount;
  107. int error;
  108. int dropped;
  109. int scratch_next;
  110. int scratch_use;
  111. int scratch_overflow;
  112. struct stv680_scratch scratch[STV680_NUMSCRATCH]; /* for decoders */
  113. struct stv680_sbuf sbuf[STV680_NUMSBUF];
  114. unsigned int brightness;
  115. unsigned int chgbright;
  116. unsigned int whiteness;
  117. unsigned int colour;
  118. unsigned int contrast;
  119. unsigned int hue;
  120. unsigned int palette;
  121. unsigned int depth; /* rgb24 in bits */
  122. wait_queue_head_t wq; /* Processes waiting */
  123. struct proc_dir_entry *proc_entry; /* /proc/stv680/videoX */
  124. int nullpackets;
  125. };
  126. unsigned char red[256] = { 
  127. 0, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 
  128. 18, 18, 18, 18, 18, 18, 18, 25, 30, 35, 38, 42, 
  129. 44, 47, 50, 53, 54, 57, 59, 61, 63, 65, 67, 69, 
  130. 71, 71, 73, 75, 77, 78, 80, 81, 82, 84, 85, 87, 
  131. 88, 89, 90, 91, 93, 94, 95, 97, 98, 98, 99, 101, 
  132. 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 
  133. 114, 115, 116, 116, 117, 118, 119, 120, 121, 122, 123, 124, 
  134. 125, 125, 126, 127, 128, 129, 129, 130, 131, 132, 133, 134, 
  135. 134, 135, 135, 136, 137, 138, 139, 140, 140, 141, 142, 143, 
  136. 143, 143, 144, 145, 146, 147, 147, 148, 149, 150, 150, 151, 
  137. 152, 152, 152, 153, 154, 154, 155, 156, 157, 157, 158, 159, 
  138. 159, 160, 161, 161, 161, 162, 163, 163, 164, 165, 165, 166, 
  139. 167, 167, 168, 168, 169, 170, 170, 170, 171, 171, 172, 173, 
  140. 173, 174, 174, 175, 176, 176, 177, 178, 178, 179, 179, 179, 
  141. 180, 180, 181, 181, 182, 183, 183, 184, 184, 185, 185, 186, 
  142. 187, 187, 188, 188, 188, 188, 189, 190, 190, 191, 191, 192, 
  143. 192, 193, 193, 194, 195, 195, 196, 196, 197, 197, 197, 197, 
  144. 198, 198, 199, 199, 200, 201, 201, 202, 202, 203, 203, 204, 
  145. 204, 205, 205, 206, 206, 206, 206, 207, 207, 208, 208, 209, 
  146. 209, 210, 210, 211, 211, 212, 212, 213, 213, 214, 214, 215, 
  147. 215, 215, 215, 216, 216, 217, 217, 218, 218, 218, 219, 219, 
  148. 220, 220, 221, 221 
  149. }; 
  150. unsigned char green[256] = {
  151. 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 
  152. 21, 21, 21, 21, 21, 21, 21, 28, 34, 39, 43, 47, 
  153. 50, 53, 56, 59, 61, 64, 66, 68, 71, 73, 75, 77, 
  154. 79, 80, 82, 84, 86, 87, 89, 91, 92, 94, 95, 97, 
  155. 98, 100, 101, 102, 104, 105, 106, 108, 109, 110, 111, 113, 
  156. 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 
  157. 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 
  158. 139, 140, 141, 142, 143, 144, 144, 145, 146, 147, 148, 149, 
  159. 150, 151, 151, 152, 153, 154, 155, 156, 156, 157, 158, 159, 
  160. 160, 160, 161, 162, 163, 164, 164, 165, 166, 167, 167, 168, 
  161. 169, 170, 170, 171, 172, 172, 173, 174, 175, 175, 176, 177, 
  162. 177, 178, 179, 179, 180, 181, 182, 182, 183, 184, 184, 185, 
  163. 186, 186, 187, 187, 188, 189, 189, 190, 191, 191, 192, 193, 
  164. 193, 194, 194, 195, 196, 196, 197, 198, 198, 199, 199, 200, 
  165. 201, 201, 202, 202, 203, 204, 204, 205, 205, 206, 206, 207, 
  166. 208, 208, 209, 209, 210, 210, 211, 212, 212, 213, 213, 214, 
  167. 214, 215, 215, 216, 217, 217, 218, 218, 219, 219, 220, 220, 
  168. 221, 221, 222, 222, 223, 224, 224, 225, 225, 226, 226, 227, 
  169. 227, 228, 228, 229, 229, 230, 230, 231, 231, 232, 232, 233, 
  170. 233, 234, 234, 235, 235, 236, 236, 237, 237, 238, 238, 239, 
  171. 239, 240, 240, 241, 241, 242, 242, 243, 243, 243, 244, 244, 
  172. 245, 245, 246, 246 
  173. }; 
  174. unsigned char blue[256] = {
  175. 0, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 
  176. 23, 23, 23, 23, 23, 23, 23, 30, 37, 42, 47, 51, 
  177. 55, 58, 61, 64, 67, 70, 72, 74, 78, 80, 82, 84, 
  178. 86, 88, 90, 92, 94, 95, 97, 100, 101, 103, 104, 106, 
  179. 107, 110, 111, 112, 114, 115, 116, 118, 119, 121, 122, 124, 
  180. 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 
  181. 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 
  182. 152, 154, 155, 156, 157, 158, 158, 159, 160, 161, 162, 163, 
  183. 165, 166, 166, 167, 168, 169, 170, 171, 171, 172, 173, 174, 
  184. 176, 176, 177, 178, 179, 180, 180, 181, 182, 183, 183, 184, 
  185. 185, 187, 187, 188, 189, 189, 190, 191, 192, 192, 193, 194, 
  186. 194, 195, 196, 196, 198, 199, 200, 200, 201, 202, 202, 203, 
  187. 204, 204, 205, 205, 206, 207, 207, 209, 210, 210, 211, 212, 
  188. 212, 213, 213, 214, 215, 215, 216, 217, 217, 218, 218, 220, 
  189. 221, 221, 222, 222, 223, 224, 224, 225, 225, 226, 226, 227, 
  190. 228, 228, 229, 229, 231, 231, 232, 233, 233, 234, 234, 235, 
  191. 235, 236, 236, 237, 238, 238, 239, 239, 240, 240, 242, 242, 
  192. 243, 243, 244, 244, 245, 246, 246, 247, 247, 248, 248, 249, 
  193. 249, 250, 250, 251, 251, 253, 253, 254, 254, 255, 255, 255, 
  194. 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 
  195. 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 
  196. 255, 255, 255, 255 
  197. };