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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Header file for USB IBM C-It Video Camera driver.
  3.  *
  4.  * Supports IBM C-It Video Camera.
  5.  *
  6.  * This driver is based on earlier work of:
  7.  *
  8.  * (C) Copyright 1999 Johannes Erdfelt
  9.  * (C) Copyright 1999 Randy Dunlap
  10.  */
  11. #ifndef __LINUX_IBMCAM_H
  12. #define __LINUX_IBMCAM_H
  13. #include <linux/list.h>
  14. #define USES_IBMCAM_PUTPIXEL    0       /* 0=Fast/oops 1=Slow/secure */
  15. /* Video Size 384 x 288 x 3 bytes for RGB */
  16. /* 384 because xawtv tries to grab 384 even though we tell it 352 is our max */
  17. #define V4L_FRAME_WIDTH         384
  18. #define V4L_FRAME_WIDTH_USED 352
  19. #define V4L_FRAME_HEIGHT        288
  20. #define V4L_BYTES_PER_PIXEL     3
  21. #define MAX_FRAME_SIZE          (V4L_FRAME_WIDTH * V4L_FRAME_HEIGHT * V4L_BYTES_PER_PIXEL)
  22. /* Camera capabilities (maximum) */
  23. #define CAMERA_IMAGE_WIDTH      352
  24. #define CAMERA_IMAGE_HEIGHT     288
  25. #define CAMERA_IMAGE_LINE_SZ    ((CAMERA_IMAGE_WIDTH * 3) / 2) /* Bytes */
  26. #define CAMERA_URB_FRAMES       32
  27. #define CAMERA_MAX_ISO_PACKET   1023 /* 1022 actually sent by camera */
  28. #define IBMCAM_NUMFRAMES 2
  29. #define IBMCAM_NUMSBUF 2
  30. #define FRAMES_PER_DESC (CAMERA_URB_FRAMES)
  31. #define FRAME_SIZE_PER_DESC (CAMERA_MAX_ISO_PACKET)
  32. /* This macro restricts an int variable to an inclusive range */
  33. #define RESTRICT_TO_RANGE(v,mi,ma) { if ((v) < (mi)) (v) = (mi); else if ((v) > (ma)) (v) = (ma); }
  34. /*
  35.  * This macro performs bounds checking - use it when working with
  36.  * new formats, or else you may get oopses all over the place.
  37.  * If pixel falls out of bounds then it gets shoved back (as close
  38.  * to place of offence as possible) and is painted bright red.
  39.  */
  40. #define IBMCAM_PUTPIXEL(fr, ix, iy, vr, vg, vb) { 
  41. register unsigned char *pf; 
  42. int limiter = 0, mx, my; 
  43. mx = ix; 
  44. my = iy; 
  45. if (mx < 0) { 
  46. mx=0; 
  47. limiter++; 
  48. } else if (mx >= 352) { 
  49. mx=351; 
  50. limiter++; 
  51. if (my < 0) { 
  52. my = 0; 
  53. limiter++; 
  54. } else if (my >= V4L_FRAME_HEIGHT) { 
  55. my = V4L_FRAME_HEIGHT - 1; 
  56. limiter++; 
  57. pf = (fr)->data + V4L_BYTES_PER_PIXEL*((iy)*352 + (ix)); 
  58. if (limiter) { 
  59. *pf++ = 0; 
  60. *pf++ = 0; 
  61. *pf++ = 0xFF; 
  62. } else { 
  63. *pf++ = (vb); 
  64. *pf++ = (vg); 
  65. *pf++ = (vr); 
  66. }
  67. /*
  68.  * We use macros to do YUV -> RGB conversion because this is
  69.  * very important for speed and totally unimportant for size.
  70.  *
  71.  * YUV -> RGB Conversion
  72.  * ---------------------
  73.  *
  74.  * B = 1.164*(Y-16)     + 2.018*(V-128)
  75.  * G = 1.164*(Y-16) - 0.813*(U-128) - 0.391*(V-128)
  76.  * R = 1.164*(Y-16) + 1.596*(U-128)
  77.  *
  78.  * If you fancy integer arithmetics (as you should), hear this:
  79.  *
  80.  * 65536*B = 76284*(Y-16)   + 132252*(V-128)
  81.  * 65536*G = 76284*(Y-16) -  53281*(U-128) -  25625*(V-128)
  82.  * 65536*R = 76284*(Y-16) + 104595*(U-128)
  83.  *
  84.  * Make sure the output values are within [0..255] range.
  85.  */
  86. #define LIMIT_RGB(x) (((x) < 0) ? 0 : (((x) > 255) ? 255 : (x)))
  87. #define YUV_TO_RGB_BY_THE_BOOK(my,mu,mv,mr,mg,mb) { 
  88.     int mm_y, mm_yc, mm_u, mm_v, mm_r, mm_g, mm_b; 
  89.     mm_y = (my) - 16;  
  90.     mm_u = (mu) - 128; 
  91.     mm_v = (mv) - 128; 
  92.     mm_yc= mm_y * 76284; 
  93.     mm_b = (mm_yc + 132252*mm_v ) >> 16; 
  94.     mm_g = (mm_yc -  53281*mm_u -  25625*mm_v ) >> 16; 
  95.     mm_r = (mm_yc + 104595*mm_u ) >> 16; 
  96.     mb = LIMIT_RGB(mm_b); 
  97.     mg = LIMIT_RGB(mm_g); 
  98.     mr = LIMIT_RGB(mm_r); 
  99. }
  100. /* Debugging aid */
  101. #define IBMCAM_SAY_AND_WAIT(what) { 
  102. wait_queue_head_t wq; 
  103. init_waitqueue_head(&wq); 
  104. printk(KERN_INFO "Say: %sn", what); 
  105. interruptible_sleep_on_timeout (&wq, HZ*3); 
  106. }
  107. /*
  108.  * This macro checks if ibmcam is still operational. The 'ibmcam'
  109.  * pointer must be valid, ibmcam->dev must be valid, we are not
  110.  * removing the device and the device has not erred on us.
  111.  */
  112. #define IBMCAM_IS_OPERATIONAL(ibm_cam) (
  113. (ibm_cam != NULL) && 
  114. ((ibm_cam)->dev != NULL) && 
  115. ((ibm_cam)->last_error == 0) && 
  116. (!(ibm_cam)->remove_pending))
  117. enum {
  118. STATE_SCANNING, /* Scanning for header */
  119. STATE_LINES, /* Parsing lines */
  120. };
  121. enum {
  122. FRAME_UNUSED, /* Unused (no MCAPTURE) */
  123. FRAME_READY, /* Ready to start grabbing */
  124. FRAME_GRABBING, /* In the process of being grabbed into */
  125. FRAME_DONE, /* Finished grabbing, but not been synced yet */
  126. FRAME_ERROR, /* Something bad happened while processing */
  127. };
  128. struct usb_device;
  129. struct ibmcam_sbuf {
  130. char *data;
  131. urb_t *urb;
  132. };
  133. struct ibmcam_frame {
  134. char *data; /* Frame buffer */
  135. int order_uv; /* True=UV False=VU */
  136. int order_yc; /* True=Yc False=cY ('c'=either U or V) */
  137. unsigned char hdr_sig; /* "00 FF 00 ??" where 'hdr_sig' is '??' */
  138. int width; /* Width application is expecting */
  139. int height; /* Height */
  140. int frmwidth; /* Width the frame actually is */
  141. int frmheight; /* Height */
  142. volatile int grabstate; /* State of grabbing */
  143. int scanstate; /* State of scanning */
  144. int curline; /* Line of frame we're working on */
  145. long scanlength; /* uncompressed, raw data length of frame */
  146. long bytes_read; /* amount of scanlength that has been read from *data */
  147. wait_queue_head_t wq; /* Processes waiting */
  148. };
  149. #define IBMCAM_MODEL_1 1 /* XVP-501, 3 interfaces, rev. 0.02 */
  150. #define IBMCAM_MODEL_2 2 /* KSX-X9903, 2 interfaces, rev. 3.0a */
  151. struct usb_ibmcam {
  152. struct video_device vdev;
  153. /* Device structure */
  154. struct usb_device *dev;
  155. unsigned char iface;                            /* Video interface number */
  156. unsigned char ifaceAltActive, ifaceAltInactive; /* Alt settings */
  157. struct semaphore lock;
  158. int user; /* user count for exclusive use */
  159. int ibmcam_used;        /* Is this structure in use? */
  160. int initialized; /* Had we already sent init sequence? */
  161. int camera_model; /* What type of IBM camera we got? */
  162. int streaming; /* Are we streaming Isochronous? */
  163. int grabbing; /* Are we grabbing? */
  164. int last_error; /* What calamity struck us? */
  165. int compress; /* Should the next frame be compressed? */
  166. char *fbuf; /* Videodev buffer area */
  167. int fbuf_size; /* Videodev buffer size */
  168. int curframe;
  169. struct ibmcam_frame frame[IBMCAM_NUMFRAMES]; /* Double buffering */
  170. int cursbuf; /* Current receiving sbuf */
  171. struct ibmcam_sbuf sbuf[IBMCAM_NUMSBUF]; /* Double buffering */
  172. volatile int remove_pending; /* If set then about to exit */
  173.         /*
  174.  * Scratch space from the Isochronous pipe.
  175.  * Scratch buffer should contain at least one pair of lines
  176.  * (CAMERA_IMAGE_LINE_SZ). We set it to two pairs here.
  177.  * This will be approximately 2 KB. HOWEVER in reality this
  178.  * buffer must be as large as hundred of KB because otherwise
  179.  * you'll get lots of overflows because V4L client may request
  180.  * frames not as uniformly as USB sources them.
  181.  */
  182. unsigned char *scratch;
  183. int scratchlen;
  184. struct video_picture vpic, vpic_old; /* Picture settings */
  185. struct video_capability vcap; /* Video capabilities */
  186. struct video_channel vchan; /* May be used for tuner support */
  187. unsigned char video_endp; /* 0x82 for IBM camera */
  188.         int has_hdr;
  189.         int frame_num;
  190. int iso_packet_len; /* Videomode-dependent, saves bus bandwidth */
  191. /* Statistics that can be overlayed on screen */
  192.         unsigned long urb_count;        /* How many URBs we received so far */
  193.         unsigned long urb_length;       /* Length of last URB */
  194.         unsigned long data_count;       /* How many bytes we received */
  195.         unsigned long header_count;     /* How many frame headers we found */
  196. unsigned long scratch_ovf_count;/* How many times we overflowed scratch */
  197. unsigned long iso_skip_count; /* How many empty ISO packets received */
  198. unsigned long iso_err_count; /* How many bad ISO packets received */
  199. };
  200. #endif /* __LINUX_IBMCAM_H */