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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_VFC_H_
  2. #define _LINUX_VFC_H_
  3. #include <linux/devfs_fs_kernel.h>
  4. /*
  5.  * The control register for the vfc is at offset 0x4000
  6.  * The first field ram bank is located at offset 0x5000
  7.  * The second field ram bank is at offset 0x7000
  8.  * i2c_reg address the Phillips PCF8584(see notes in vfc_i2c.c) 
  9.  *    data and transmit register.
  10.  * i2c_s1 controls register s1 of the PCF8584
  11.  * i2c_write seems to be similar to i2c_write but I am not 
  12.  *    quite sure why sun uses it
  13.  * 
  14.  * I am also not sure whether or not you can read the fram bank as a
  15.  * whole or whether you must read each word individually from offset
  16.  * 0x5000 as soon as I figure it out I will update this file */
  17. struct vfc_regs {
  18. char pad1[0x4000];
  19. unsigned int control;  /* Offset 0x4000 */
  20. char pad2[0xffb];      /* from offset 0x4004 to 0x5000 */
  21. unsigned int fram_bank1; /* Offset 0x5000 */
  22. char pad3[0xffb];        /* from offset 0x5004 to 0x6000 */
  23. unsigned int i2c_reg; /* Offset 0x6000 */
  24. unsigned int i2c_magic2; /* Offset 0x6004 */
  25. unsigned int i2c_s1;  /* Offset 0x6008 */
  26. unsigned int i2c_write; /* Offset 0x600c */
  27. char pad4[0xff0];     /* from offset 0x6010 to 0x7000 */
  28. unsigned int fram_bank2; /* Offset 0x7000 */
  29. char pad5[0x1000];
  30. };
  31. #define VFC_SAA9051_NR (13)
  32. #define VFC_SAA9051_ADDR (0x8a)
  33. /* The saa9051 returns the following for its status 
  34.  * bit 0 - 0
  35.  * bit 1 - SECAM color detected (1=found,0=not found)
  36.  * bit 2 - COLOR detected (1=found,0=not found)
  37.  * bit 3 - 0
  38.  * bit 4 - Field frequency bit (1=60Hz (NTSC), 0=50Hz (PAL))
  39.  * bit 5 - 1
  40.  * bit 6 - horizontal frequency lock (1=transmitter found,
  41.  *                                    0=no transmitter)
  42.  * bit 7 - Power on reset bit (1=reset,0=at least one successful 
  43.  *                                       read of the status byte)
  44.  */
  45. #define VFC_SAA9051_PONRES (0x80)
  46. #define VFC_SAA9051_HLOCK (0x40)
  47. #define VFC_SAA9051_FD (0x10)
  48. #define VFC_SAA9051_CD (0x04)
  49. #define VFC_SAA9051_CS (0x02)
  50. /* The various saa9051 sub addresses */
  51. #define VFC_SAA9051_IDEL (0) 
  52. #define VFC_SAA9051_HSY_START (1)
  53. #define VFC_SAA9051_HSY_STOP (2)
  54. #define VFC_SAA9051_HC_START (3)
  55. #define VFC_SAA9051_HC_STOP (4)
  56. #define VFC_SAA9051_HS_START (5)
  57. #define VFC_SAA9051_HORIZ_PEAK (6)
  58. #define VFC_SAA9051_HUE (7)
  59. #define VFC_SAA9051_C1 (8)
  60. #define VFC_SAA9051_C2 (9)
  61. #define VFC_SAA9051_C3 (0xa)
  62. #define VFC_SAA9051_SECAM_DELAY (0xb)
  63. /* Bit settings for saa9051 sub address 0x06 */
  64. #define VFC_SAA9051_AP1 (0x01)
  65. #define VFC_SAA9051_AP2 (0x02)
  66. #define VFC_SAA9051_COR1 (0x04)
  67. #define VFC_SAA9051_COR2 (0x08)
  68. #define VFC_SAA9051_BP1 (0x10)
  69. #define VFC_SAA9051_BP2 (0x20)
  70. #define VFC_SAA9051_PF (0x40)
  71. #define VFC_SAA9051_BY (0x80)
  72. /* Bit settings for saa9051 sub address 0x08 */
  73. #define VFC_SAA9051_CCFR0 (0x01)
  74. #define VFC_SAA9051_CCFR1 (0x02)
  75. #define VFC_SAA9051_YPN (0x04)
  76. #define VFC_SAA9051_ALT (0x08)
  77. #define VFC_SAA9051_CO (0x10)
  78. #define VFC_SAA9051_VTR (0x20)
  79. #define VFC_SAA9051_FS (0x40)
  80. #define VFC_SAA9051_HPLL (0x80)
  81. /* Bit settings for saa9051 sub address 9 */
  82. #define VFC_SAA9051_SS0 (0x01)
  83. #define VFC_SAA9051_SS1 (0x02)
  84. #define VFC_SAA9051_AFCC (0x04)
  85. #define VFC_SAA9051_CI (0x08)
  86. #define VFC_SAA9051_SA9D4 (0x10) /* Don't care bit */
  87. #define VFC_SAA9051_OEC (0x20)
  88. #define VFC_SAA9051_OEY (0x40)
  89. #define VFC_SAA9051_VNL (0x80)
  90. /* Bit settings for saa9051 sub address 0x0A */
  91. #define VFC_SAA9051_YDL0 (0x01)
  92. #define VFC_SAA9051_YDL1 (0x02)
  93. #define VFC_SAA9051_YDL2 (0x04)
  94. #define VFC_SAA9051_SS2 (0x08)
  95. #define VFC_SAA9051_SS3 (0x10)
  96. #define VFC_SAA9051_YC (0x20)
  97. #define VFC_SAA9051_CT (0x40)
  98. #define VFC_SAA9051_SYC (0x80)
  99. #define VFC_SAA9051_SA(a,b) ((a)->saa9051_state_array[(b)+1])
  100. #define vfc_update_saa9051(a) (vfc_i2c_sendbuf((a),VFC_SAA9051_ADDR,
  101.     (a)->saa9051_state_array,
  102.     VFC_SAA9051_NR))
  103. struct vfc_dev {
  104. volatile struct vfc_regs *regs;
  105. struct vfc_regs *phys_regs;
  106. unsigned int control_reg;
  107. devfs_handle_t de;
  108. struct semaphore device_lock_sem;
  109. struct timer_list poll_timer;
  110. wait_queue_head_t poll_wait;
  111. int instance;
  112. int busy;
  113. unsigned long which_io;
  114. unsigned char saa9051_state_array[VFC_SAA9051_NR];
  115. };
  116. extern struct vfc_dev **vfc_dev_lst;
  117. void captstat_reset(struct vfc_dev *);
  118. void memptr_reset(struct vfc_dev *);
  119. int vfc_pcf8584_init(struct vfc_dev *);
  120. void vfc_i2c_delay_no_busy(struct vfc_dev *, unsigned long);
  121. void vfc_i2c_delay(struct vfc_dev *);
  122. int vfc_i2c_sendbuf(struct vfc_dev *, unsigned char, char *, int) ;
  123. int vfc_i2c_recvbuf(struct vfc_dev *, unsigned char, char *, int) ;
  124. int vfc_i2c_reset_bus(struct vfc_dev *);
  125. int vfc_init_i2c_bus(struct vfc_dev *);
  126. void vfc_lock_device(struct vfc_dev *);
  127. void vfc_unlock_device(struct vfc_dev *);
  128. #define VFC_CONTROL_DIAGMODE  0x10000000
  129. #define VFC_CONTROL_MEMPTR    0x20000000
  130. #define VFC_CONTROL_CAPTURE   0x02000000
  131. #define VFC_CONTROL_CAPTRESET 0x04000000
  132. #define VFC_STATUS_CAPTURE    0x08000000
  133. #ifdef VFC_IOCTL_DEBUG
  134. #define VFC_IOCTL_DEBUG_PRINTK(a) printk a
  135. #else
  136. #define VFC_IOCTL_DEBUG_PRINTK(a)
  137. #endif
  138. #ifdef VFC_I2C_DEBUG
  139. #define VFC_I2C_DEBUG_PRINTK(a) printk a
  140. #else
  141. #define VFC_I2C_DEBUG_PRINTK(a)
  142. #endif
  143. #endif /* _LINUX_VFC_H_ */