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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* (C) 1999-2001 Nemosoft Unv. (webcam@smcc.demon.nl)
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  13. */
  14. #ifndef PWC_H
  15. #define PWC_H
  16. #include <linux/config.h>
  17. #include <linux/module.h>
  18. #include <linux/usb.h>
  19. #include <linux/spinlock.h>
  20. #include <linux/videodev.h>
  21. #include <linux/wait.h>
  22. #include <linux/smp_lock.h>
  23. #include <asm/semaphore.h>
  24. #include <asm/errno.h>
  25. /* Defines and structures for the Philips webcam */
  26. /* Used for checking memory corruption/pointer validation */
  27. #define PWC_MAGIC 0x89DC10ABUL
  28. #undef PWC_MAGIC
  29. /* Turn some debugging options on/off */
  30. #define PWC_DEBUG 0
  31. /* Trace certain actions in the driver */
  32. #define TRACE_MODULE 0x0001
  33. #define TRACE_PROBE 0x0002
  34. #define TRACE_OPEN 0x0004
  35. #define TRACE_READ 0x0008
  36. #define TRACE_MEMORY 0x0010
  37. #define TRACE_FLOW 0x0020
  38. #define TRACE_SIZE 0x0040
  39. #define TRACE_PWCX 0x0080
  40. #define TRACE_SEQUENCE 0x1000
  41. #define Trace(R, A...) if (pwc_trace & R) printk(KERN_DEBUG PWC_NAME " " A)
  42. #define Debug(A...) printk(KERN_DEBUG PWC_NAME " " A)
  43. #define Info(A...)  printk(KERN_INFO  PWC_NAME " " A)
  44. #define Err(A...)   printk(KERN_ERR   PWC_NAME " " A)
  45. /* Defines for ToUCam cameras */
  46. #define TOUCAM_HEADER_SIZE 8
  47. #define TOUCAM_TRAILER_SIZE 4
  48. /* Version block */
  49. #define PWC_MAJOR 8
  50. #define PWC_MINOR 5
  51. #define PWC_VERSION  "8.5"
  52. #define PWC_NAME  "pwc"
  53. /* Turn certain features on/off */
  54. #define PWC_INT_PIPE 0
  55. /* Ignore errors in the first N frames, to allow for startup delays */
  56. #define FRAME_LOWMARK 5
  57. /* Size and number of buffers for the ISO pipe. */
  58. #define MAX_ISO_BUFS 2
  59. #define ISO_FRAMES_PER_DESC 10
  60. #define ISO_MAX_FRAME_SIZE 960
  61. #define ISO_BUFFER_SIZE  (ISO_FRAMES_PER_DESC * ISO_MAX_FRAME_SIZE)
  62. /* Frame buffers: contains compressed or uncompressed video data. */
  63. #define MAX_FRAMES 5
  64. /* Maximum size after decompression is 640x480 YUV data, 1.5 * 640 * 480 */
  65. #define PWC_FRAME_SIZE  (460800 + TOUCAM_HEADER_SIZE + TOUCAM_TRAILER_SIZE)
  66. /* Absolute maximum number of buffers available for mmap() */
  67. #define MAX_IMAGES  4
  68. struct pwc_coord
  69. {
  70. int x, y; /* guess what */
  71. int size; /* size, or offset */
  72. };
  73. /* The following structures were based on cpia.h. Why reinvent the wheel? :-) */
  74. struct pwc_iso_buf
  75. {
  76. void *data;
  77. int  length;
  78. int  read;
  79. purb_t urb;
  80. };
  81. /* intermediate buffers with raw data from the USB cam */
  82. struct pwc_frame_buf
  83. {
  84.    void *data;
  85.    volatile int filled; /* number of bytes filled */
  86.    struct pwc_frame_buf *next; /* list */
  87. #if PWC_DEBUG
  88.    int sequence; /* Sequence number */
  89. #endif
  90. };
  91. struct pwc_device
  92. {
  93. #ifdef PWC_MAGIC
  94.    int magic;
  95. #endif
  96.    /* Pointer to our usb_device */
  97.    struct usb_device *udev;
  98.    
  99.    int type;                    /* type of cam (645, 646, 675, 680, 690) */
  100.    int release; /* release number */
  101.    int unplugged; /* set when the plug is pulled */
  102.    int usb_init; /* set when the cam has been initialized over USB */
  103.    /*** Video data ***/
  104.    int vopen; /* flag */
  105.    struct video_device *vdev;
  106.    int vendpoint; /* video isoc endpoint */
  107.    int vcinterface; /* video control interface */
  108.    int valternate; /* alternate interface needed */
  109.    int vframes, vsize; /* frames-per-second & size (see PSZ_*) */
  110.    int vpalette; /* YUV, RGB24, RGB32, etc */
  111.    int vframe_count; /* received frames */
  112.    int vframes_dumped;  /* counter for dumped frames */
  113.    int vframes_error; /* frames received in error */
  114.    int vmax_packet_size; /* USB maxpacket size */
  115.    int vlast_packet_size; /* for frame synchronisation */
  116.    int vcompression; /* desired compression factor */
  117.    int vbandlength; /* compressed band length; 0 is uncompressed */
  118.    char vsnapshot; /* snapshot mode */
  119.    char vsync; /* used by isoc handler */
  120.    
  121.    /* The image acquisition requires 3 to 4 steps:
  122.       1. data is gathered in short packets from the USB controller
  123.       2. data is synchronized and packed into a frame buffer
  124.       3a. in case data is compressed, decompress it directly into image buffer
  125.       3b. in case data is uncompressed, copy into image buffer with viewport
  126.       4. data is transfered to the user process
  127.       Note that MAX_ISO_BUFS != MAX_FRAMES != MAX_IMAGES.... 
  128.       We have in effect a back-to-back-double-buffer system.
  129.     */
  130.    /* 1: isoc */
  131.    struct pwc_iso_buf sbuf[MAX_ISO_BUFS];
  132.    char iso_init;
  133.    
  134.    /* 2: frame */
  135.    struct pwc_frame_buf *fbuf; /* all frames */
  136.    struct pwc_frame_buf *empty_frames, *empty_frames_tail; /* all empty frames */
  137.    struct pwc_frame_buf *full_frames, *full_frames_tail; /* all filled frames */
  138.    struct pwc_frame_buf *fill_frame; /* frame currently being filled */
  139.    struct pwc_frame_buf *read_frame; /* frame currently read by user process */
  140.    int frame_size;
  141.    int frame_header_size, frame_trailer_size;
  142.    int drop_frames;
  143. #if PWC_DEBUG
  144.    int sequence; /* Debugging aid */
  145. #endif
  146.    
  147.    /* 3: decompression */
  148.    struct pwc_decompressor *decompressor; /* function block with decompression routines */
  149.    void *decompress_data; /* private data for decompression engine */
  150.    /* 4: image */
  151.    /* We have an 'image' and a 'view', where 'image' is the fixed-size image
  152.       as delivered by the camera, and 'view' is the size requested by the
  153.       program. The camera image is centered in this viewport, laced with 
  154.       a gray or black border. view_min <= image <= view <= view_max;
  155.     */
  156.    int image_mask; /* bitmask of supported sizes */
  157.    struct pwc_coord view_min, view_max; /* minimum and maximum sizes */
  158.    struct pwc_coord image, view; /* image and viewport size */
  159.    struct pwc_coord offset; /* offset within the viewport */
  160.    void *image_data; /* total buffer, which is subdivided into ... */
  161.    void *image_ptr[MAX_IMAGES]; /* ...several images... */
  162.    int fill_image; /* ...which are rotated. */
  163.    int len_per_image; /* length per image */
  164.    int image_read_pos; /* In case we read data in pieces, keep track of were we are in the imagebuffer */
  165.    int image_used[MAX_IMAGES]; /* For MCAPTURE and SYNC */
  166.    struct semaphore modlock; /* to prevent races in video_open(), etc */
  167.    spinlock_t ptrlock; /* for manipulating the buffer pointers */
  168.    /*** Misc. data ***/
  169.    wait_queue_head_t frameq; /* When waiting for a frame to finish... */
  170.    wait_queue_head_t remove_ok; /* When we got hot unplugged, we have to avoid a few race conditions */
  171. #if PWC_INT_PIPE
  172.    void *usb_int_handler; /* for the interrupt endpoint */
  173. #endif   
  174. };
  175. /* Enumeration of image sizes */
  176. #define PSZ_SQCIF 0x00
  177. #define PSZ_QSIF 0x01
  178. #define PSZ_QCIF 0x02
  179. #define PSZ_SIF 0x03
  180. #define PSZ_CIF 0x04
  181. #define PSZ_VGA 0x05
  182. #define PSZ_MAX 6
  183. #ifdef __cplusplus
  184. extern "C" {
  185. #endif
  186. /* Global variables */
  187. extern int pwc_trace;
  188. extern int pwc_preferred_compression;
  189. /** functions in pwc-if.c */
  190. int pwc_try_video_mode(struct pwc_device *pdev, int width, int height, int new_fps, int new_compression, int new_snapshot);
  191. /** Functions in pwc-misc.c */
  192. /* sizes in pixels */
  193. extern struct pwc_coord pwc_image_sizes[PSZ_MAX];
  194. int pwc_decode_size(struct pwc_device *pdev, int width, int height);
  195. void pwc_construct(struct pwc_device *pdev);
  196. /** Functions in pwc-ctrl.c */
  197. /* Request a certain video mode. Returns < 0 if not possible */
  198. extern int pwc_set_video_mode(struct pwc_device *pdev, int width, int height, int frames, int compression, int snapshot);
  199. /* Calculate the number of bytes per image (not frame) */
  200. extern void pwc_set_image_buffer_size(struct pwc_device *pdev);
  201. /* Various controls; should be obvious. Value 0..65535, or < 0 on error */
  202. extern int pwc_get_brightness(struct pwc_device *pdev);
  203. extern int pwc_set_brightness(struct pwc_device *pdev, int value);
  204. extern int pwc_get_contrast(struct pwc_device *pdev);
  205. extern int pwc_set_contrast(struct pwc_device *pdev, int value);
  206. extern int pwc_get_gamma(struct pwc_device *pdev);
  207. extern int pwc_set_gamma(struct pwc_device *pdev, int value);
  208. extern int pwc_get_saturation(struct pwc_device *pdev);
  209. extern int pwc_set_saturation(struct pwc_device *pdev, int value);
  210. extern int pwc_set_leds(struct pwc_device *pdev, int on_value, int off_value);
  211. extern int pwc_get_leds(struct pwc_device *pdev, int *on_value, int *off_value);
  212. /* Power down or up the camera; not supported by all models */
  213. extern int pwc_camera_power(struct pwc_device *pdev, int power);
  214. /* Private ioctl()s; see pwc-ioctl.h */
  215. extern int pwc_ioctl(struct pwc_device *pdev, unsigned int cmd, void *arg);
  216. /** pwc-uncompress.c */
  217. /* Expand frame to image, possibly including decompression. Uses read_frame and fill_image */
  218. extern int pwc_decompress(struct pwc_device *pdev);
  219. #ifdef __cplusplus
  220. }
  221. #endif
  222. #endif