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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Video4Linux bw-qcam driver
  3.  *
  4.  * Derived from code..
  5.  */
  6. /******************************************************************
  7. Copyright (C) 1996 by Scott Laird
  8. Permission is hereby granted, free of charge, to any person obtaining
  9. a copy of this software and associated documentation files (the
  10. "Software"), to deal in the Software without restriction, including
  11. without limitation the rights to use, copy, modify, merge, publish,
  12. distribute, sublicense, and/or sell copies of the Software, and to
  13. permit persons to whom the Software is furnished to do so, subject to
  14. the following conditions:
  15. The above copyright notice and this permission notice shall be
  16. included in all copies or substantial portions of the Software.
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  20. IN NO EVENT SHALL SCOTT LAIRD BE LIABLE FOR ANY CLAIM, DAMAGES OR
  21. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  22. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  23. OTHER DEALINGS IN THE SOFTWARE.
  24. ******************************************************************/
  25. /* One from column A... */
  26. #define QC_NOTSET 0
  27. #define QC_UNIDIR 1
  28. #define QC_BIDIR  2
  29. #define QC_SERIAL 3
  30. /* ... and one from column B */
  31. #define QC_ANY          0x00
  32. #define QC_FORCE_UNIDIR 0x10
  33. #define QC_FORCE_BIDIR  0x20
  34. #define QC_FORCE_SERIAL 0x30
  35. /* in the port_mode member */
  36. #define QC_MODE_MASK    0x07
  37. #define QC_FORCE_MASK   0x70
  38. #define MAX_HEIGHT 243
  39. #define MAX_WIDTH 336
  40. /* Bit fields for status flags */
  41. #define QC_PARAM_CHANGE 0x01 /* Camera status change has occurred */
  42. struct qcam_device {
  43. struct video_device vdev;
  44. struct pardevice *pdev;
  45. struct parport *pport;
  46. struct semaphore lock;
  47. int width, height;
  48. int bpp;
  49. int mode;
  50. int contrast, brightness, whitebal;
  51. int port_mode;
  52. int transfer_scale;
  53. int top, left;
  54. int status;
  55. unsigned int saved_bits;
  56. };