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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef cpia_h
  2. #define cpia_h
  3. /*
  4.  * CPiA Parallel Port Video4Linux driver
  5.  *
  6.  * Supports CPiA based parallel port Video Camera's.
  7.  *
  8.  * (C) Copyright 1999 Bas Huisman,
  9.  *                    Peter Pregler,
  10.  *                    Scott J. Bertin,
  11.  *                    VLSI Vision Ltd.
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  */
  27. #define CPIA_MAJ_VER 0
  28. #define CPIA_MIN_VER    8
  29. #define CPIA_PATCH_VER 1
  30. #define CPIA_PP_MAJ_VER       0
  31. #define CPIA_PP_MIN_VER       8
  32. #define CPIA_PP_PATCH_VER     1
  33. #define CPIA_MAX_FRAME_SIZE_UNALIGNED (352 * 288 * 4)   /* CIF at RGB32 */
  34. #define CPIA_MAX_FRAME_SIZE ((CPIA_MAX_FRAME_SIZE_UNALIGNED + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1)) /* align above to PAGE_SIZE */
  35. #ifdef __KERNEL__
  36. #include <asm/uaccess.h>
  37. #include <linux/videodev.h>
  38. #include <linux/smp_lock.h>
  39. struct cpia_camera_ops
  40. {
  41. /* open sets privdata to point to structure for this camera.
  42.          * Returns negative value on error, otherwise 0.
  43.  */
  44. int (*open)(void *privdata);
  45. /* Registers callback function cb to be called with cbdata
  46.  * when an image is ready.  If cb is NULL, only single image grabs
  47.  * should be used.  cb should immediately call streamRead to read
  48.  * the data or data may be lost. Returns negative value on error,
  49.  * otherwise 0.
  50.  */
  51. int (*registerCallback)(void *privdata, void (*cb)(void *cbdata),
  52.                         void *cbdata);
  53. /* transferCmd sends commands to the camera.  command MUST point to
  54.  * an  8 byte buffer in kernel space. data can be NULL if no extra
  55.  * data is needed.  The size of the data is given by the last 2
  56.  * bytes of command.  data must also point to memory in kernel space.
  57.  * Returns negative value on error, otherwise 0.
  58.  */
  59. int (*transferCmd)(void *privdata, u8 *command, u8 *data);
  60. /* streamStart initiates stream capture mode.
  61.  * Returns negative value on error, otherwise 0.
  62.  */
  63. int (*streamStart)(void *privdata);
  64. /* streamStop terminates stream capture mode.
  65.  * Returns negative value on error, otherwise 0.
  66.  */
  67. int (*streamStop)(void *privdata);
  68.         
  69. /* streamRead reads a frame from the camera.  buffer points to a
  70.          * buffer large enough to hold a complete frame in kernel space.
  71.          * noblock indicates if this should be a non blocking read.
  72.  * Returns the number of bytes read, or negative value on error.
  73.          */
  74. int (*streamRead)(void *privdata, u8 *buffer, int noblock);
  75. /* close disables the device until open() is called again.
  76.  * Returns negative value on error, otherwise 0.
  77.  */
  78. int (*close)(void *privdata);
  79. /* If wait_for_stream_ready is non-zero, wait until the streamState
  80.  * is STREAM_READY before calling streamRead.
  81.  */
  82. int wait_for_stream_ready;
  83. };
  84. struct cpia_frame {
  85. u8 *data;
  86. int count;
  87. int width;
  88. int height;
  89. volatile int state;
  90. };
  91. struct cam_params {
  92. struct {
  93. u8 firmwareVersion;
  94. u8 firmwareRevision;
  95. u8 vcVersion;
  96. u8 vcRevision;
  97. } version;
  98. struct {
  99. u16 vendor;
  100. u16 product;
  101. u16 deviceRevision;
  102. } pnpID;
  103. struct {
  104. u8 vpVersion;
  105. u8 vpRevision;
  106. u16 cameraHeadID;
  107. } vpVersion;
  108. struct {
  109. u8 systemState;
  110. u8 grabState;
  111. u8 streamState;
  112. u8 fatalError;
  113. u8 cmdError;
  114. u8 debugFlags;
  115. u8 vpStatus;
  116. u8 errorCode;
  117. } status;
  118. struct {
  119. u8 brightness;
  120. u8 contrast;
  121. u8 saturation;
  122. } colourParams;
  123. struct {
  124. u8 gainMode;
  125. u8 expMode;
  126. u8 compMode;
  127. u8 centreWeight;
  128. u8 gain;
  129. u8 fineExp;
  130. u8 coarseExpLo;
  131. u8 coarseExpHi;
  132. u8 redComp;
  133. u8 green1Comp;
  134. u8 green2Comp;
  135. u8 blueComp;
  136. } exposure;
  137. struct {
  138. u8 balanceModeIsAuto;
  139. u8 redGain;
  140. u8 greenGain;
  141. u8 blueGain;
  142. } colourBalance;
  143. struct {
  144. u8 divisor;
  145. u8 baserate;
  146. } sensorFps;
  147. struct {
  148. u8 gain1;
  149. u8 gain2;
  150. u8 gain4;
  151. u8 gain8;
  152. } apcor;
  153. struct {
  154. u8 flickerMode;
  155. u8 coarseJump;
  156. u8 allowableOverExposure;
  157. } flickerControl;
  158. struct {
  159. u8 gain1;
  160. u8 gain2;
  161. u8 gain4;
  162. u8 gain8;
  163. } vlOffset;
  164. struct {
  165. u8 mode;
  166. u8 decimation;
  167. } compression;
  168. struct {
  169. u8 frTargeting;
  170. u8 targetFR;
  171. u8 targetQ;
  172. } compressionTarget;
  173. struct {
  174. u8 yThreshold;
  175. u8 uvThreshold;
  176. } yuvThreshold;
  177. struct {
  178. u8 hysteresis;
  179. u8 threshMax;
  180. u8 smallStep;
  181. u8 largeStep;
  182. u8 decimationHysteresis;
  183. u8 frDiffStepThresh;
  184. u8 qDiffStepThresh;
  185. u8 decimationThreshMod;
  186. } compressionParams;
  187. struct {
  188. u8 videoSize; /* CIF/QCIF */
  189. u8 subSample;
  190. u8 yuvOrder;
  191. } format;
  192.         struct {                        /* Intel QX3 specific data */
  193.                 u8 qx3_detected;        /* a QX3 is present */
  194.                 u8 toplight;            /* top light lit , R/W */
  195.                 u8 bottomlight;         /* bottom light lit, R/W */
  196.                 u8 button;              /* snapshot button pressed (R/O) */
  197.                 u8 cradled;             /* microscope is in cradle (R/O) */
  198.         } qx3;
  199. struct {
  200. u8 colStart; /* skip first 8*colStart pixels */
  201. u8 colEnd; /* finish at 8*colEnd pixels */
  202. u8 rowStart; /* skip first 4*rowStart lines */
  203. u8 rowEnd; /* finish at 4*rowEnd lines */
  204. } roi;
  205. u8 ecpTiming;
  206. u8 streamStartLine;
  207. };
  208. enum v4l_camstates {
  209. CPIA_V4L_IDLE = 0,
  210. CPIA_V4L_ERROR,
  211. CPIA_V4L_COMMAND,
  212. CPIA_V4L_GRABBING,
  213. CPIA_V4L_STREAMING,
  214. CPIA_V4L_STREAMING_PAUSED,
  215. };
  216. #define FRAME_NUM 2 /* double buffering for now */
  217. struct cam_data {
  218. struct cam_data **previous;
  219. struct cam_data *next;
  220.         struct semaphore busy_lock;     /* guard against SMP multithreading */
  221. struct cpia_camera_ops *ops; /* lowlevel driver operations */
  222. void *lowlevel_data; /* private data for lowlevel driver */
  223. u8 *raw_image; /* buffer for raw image data */
  224. struct cpia_frame decompressed_frame;
  225.                                         /* buffer to hold decompressed frame */
  226. int image_size;         /* sizeof last decompressed image */
  227. int open_count; /* # of process that have camera open */
  228. /* camera status */
  229. int fps; /* actual fps reported by the camera */
  230. int transfer_rate; /* transfer rate from camera in kB/s */
  231. u8 mainsFreq; /* for flicker control */
  232. /* proc interface */
  233. struct semaphore param_lock; /* params lock for this camera */
  234. struct cam_params params; /* camera settings */
  235. struct proc_dir_entry *proc_entry; /* /proc/cpia/videoX */
  236. /* v4l */
  237. int video_size; /* VIDEO_SIZE_ */
  238. volatile enum v4l_camstates camstate; /* v4l layer status */
  239. struct video_device vdev; /* v4l videodev */
  240. struct video_picture vp; /* v4l camera settings */
  241. struct video_window vw; /* v4l capture area */
  242. /* mmap interface */
  243. int curframe; /* the current frame to grab into */
  244. u8 *frame_buf; /* frame buffer data */
  245.         struct cpia_frame frame[FRAME_NUM];
  246. /* FRAME_NUM-buffering, so we need a array */
  247. int first_frame;
  248. int mmap_kludge; /* 'wrong' byte order for mmap */
  249. volatile u32 cmd_queue; /* queued commands */
  250. };
  251. /* cpia_register_camera is called by low level driver for each camera.
  252.  * A unique camera number is returned, or a negative value on error */
  253. struct cam_data *cpia_register_camera(struct cpia_camera_ops *ops, void *lowlevel);
  254. /* cpia_unregister_camera is called by low level driver when a camera
  255.  * is removed.  This must not fail. */
  256. void cpia_unregister_camera(struct cam_data *cam);
  257. /* raw CIF + 64 byte header + (2 bytes line_length + EOL) per line + 4*EOI +
  258.  * one byte 16bit DMA alignment
  259.  */
  260. #define CPIA_MAX_IMAGE_SIZE ((352*288*2)+64+(288*3)+5)
  261. /* constant value's */
  262. #define MAGIC_0 0x19
  263. #define MAGIC_1 0x68
  264. #define DATA_IN 0xC0
  265. #define DATA_OUT 0x40
  266. #define VIDEOSIZE_QCIF 0 /* 176x144 */
  267. #define VIDEOSIZE_CIF 1 /* 352x288 */
  268. #define VIDEOSIZE_SIF 2 /* 320x240 */
  269. #define VIDEOSIZE_QSIF 3 /* 160x120 */
  270. #define VIDEOSIZE_48_48 4 /* where no one has gone before, iconsize! */
  271. #define VIDEOSIZE_64_48 5
  272. #define VIDEOSIZE_128_96 6
  273. #define VIDEOSIZE_160_120 VIDEOSIZE_QSIF
  274. #define VIDEOSIZE_176_144 VIDEOSIZE_QCIF
  275. #define VIDEOSIZE_192_144 7
  276. #define VIDEOSIZE_224_168 8
  277. #define VIDEOSIZE_256_192 9
  278. #define VIDEOSIZE_288_216 10
  279. #define VIDEOSIZE_320_240 VIDEOSIZE_SIF
  280. #define VIDEOSIZE_352_288 VIDEOSIZE_CIF
  281. #define VIDEOSIZE_88_72 11 /* quarter CIF */
  282. #define SUBSAMPLE_420 0
  283. #define SUBSAMPLE_422 1
  284. #define YUVORDER_YUYV 0
  285. #define YUVORDER_UYVY 1
  286. #define NOT_COMPRESSED 0
  287. #define COMPRESSED 1
  288. #define NO_DECIMATION 0
  289. #define DECIMATION_ENAB 1
  290. #define EOI 0xff /* End Of Image */
  291. #define EOL 0xfd /* End Of Line */
  292. #define FRAME_HEADER_SIZE 64
  293. /* Image grab modes */
  294. #define CPIA_GRAB_SINGLE 0
  295. #define CPIA_GRAB_CONTINUOUS 1
  296. /* Compression parameters */
  297. #define CPIA_COMPRESSION_NONE 0
  298. #define CPIA_COMPRESSION_AUTO 1
  299. #define CPIA_COMPRESSION_MANUAL 2
  300. #define CPIA_COMPRESSION_TARGET_QUALITY         0
  301. #define CPIA_COMPRESSION_TARGET_FRAMERATE       1
  302. /* Return offsets for GetCameraState */
  303. #define SYSTEMSTATE 0
  304. #define GRABSTATE 1
  305. #define STREAMSTATE 2
  306. #define FATALERROR 3
  307. #define CMDERROR 4
  308. #define DEBUGFLAGS 5
  309. #define VPSTATUS 6
  310. #define ERRORCODE 7
  311. /* SystemState */
  312. #define UNINITIALISED_STATE 0
  313. #define PASS_THROUGH_STATE 1
  314. #define LO_POWER_STATE 2
  315. #define HI_POWER_STATE 3
  316. #define WARM_BOOT_STATE 4
  317. /* GrabState */
  318. #define GRAB_IDLE 0
  319. #define GRAB_ACTIVE 1
  320. #define GRAB_DONE 2
  321. /* StreamState */
  322. #define STREAM_NOT_READY 0
  323. #define STREAM_READY 1
  324. #define STREAM_OPEN 2
  325. #define STREAM_PAUSED 3
  326. #define STREAM_FINISHED 4
  327. /* Fatal Error, CmdError, and DebugFlags */
  328. #define CPIA_FLAG   1
  329. #define SYSTEM_FLAG   2
  330. #define INT_CTRL_FLAG   4
  331. #define PROCESS_FLAG   8
  332. #define COM_FLAG  16
  333. #define VP_CTRL_FLAG  32
  334. #define CAPTURE_FLAG  64
  335. #define DEBUG_FLAG 128
  336. /* VPStatus */
  337. #define VP_STATE_OK 0x00
  338. #define VP_STATE_FAILED_VIDEOINIT 0x01
  339. #define VP_STATE_FAILED_AECACBINIT 0x02
  340. #define VP_STATE_AEC_MAX 0x04
  341. #define VP_STATE_ACB_BMAX 0x08
  342. #define VP_STATE_ACB_RMIN 0x10
  343. #define VP_STATE_ACB_GMIN 0x20
  344. #define VP_STATE_ACB_RMAX 0x40
  345. #define VP_STATE_ACB_GMAX 0x80
  346. /* ErrorCode */
  347. #define ERROR_FLICKER_BELOW_MIN_EXP     0x01 /*flicker exposure got below minimum exposure */
  348. #define ALOG(lineno,fmt,args...) printk(fmt,lineno,##args)
  349. #define LOG(fmt,args...) ALOG((__LINE__),KERN_INFO __FILE__":"__FUNCTION__"(%d):"fmt,##args)
  350. #ifdef _CPIA_DEBUG_
  351. #define ADBG(lineno,fmt,args...) printk(fmt, jiffies, lineno, ##args)
  352. #define DBG(fmt,args...) ADBG((__LINE__),KERN_DEBUG __FILE__"(%ld):"__FUNCTION__"(%d):"fmt,##args)
  353. #else
  354. #define DBG(fmn,args...) do {} while(0)
  355. #endif
  356. #define DEB_BYTE(p)
  357.   DBG("%1d %1d %1d %1d %1d %1d %1d %1d n",
  358.       (p)&0x80?1:0, (p)&0x40?1:0, (p)&0x20?1:0, (p)&0x10?1:0,
  359.         (p)&0x08?1:0, (p)&0x04?1:0, (p)&0x02?1:0, (p)&0x01?1:0);
  360. static inline void cpia_add_to_list(struct cam_data* l, struct cam_data* drv)
  361. {
  362. drv->next = l;
  363. drv->previous = &l;
  364. l = drv;
  365. }
  366. static inline void cpia_remove_from_list(struct cam_data* drv)
  367. {
  368. if (drv->previous != NULL) {
  369. if (drv->next != NULL)
  370. drv->next->previous = drv->previous;
  371. *(drv->previous) = drv->next;
  372. drv->previous = NULL;
  373. drv->next = NULL;
  374. }
  375. }
  376. #endif /* __KERNEL__ */
  377. #endif /* cpia_h */