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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.     zr36120.h - Zoran 36120/36125 based framegrabbers
  3.     Copyright (C) 1998-1999 Pauline Middelink (middelin@polyware.nl)
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2 of the License, or
  7.     (at your option) any later version.
  8.     This program is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.     GNU General Public License for more details.
  12.     You should have received a copy of the GNU General Public License
  13.     along with this program; if not, write to the Free Software
  14.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. #ifndef _ZR36120_H
  17. #define _ZR36120_H
  18. #ifdef __KERNEL__
  19. #include <linux/types.h>
  20. #include <linux/wait.h>
  21. #include <linux/i2c-old.h>
  22. #include <linux/videodev.h>
  23. #include <asm/io.h>
  24. /*
  25.  * Debug macro's, place an x behind the ) for actual debug-compilation
  26.  * E.g. #define DEBUG(x...) x
  27.  */
  28. #define DEBUG(x...) /* Debug driver */
  29. #define IDEBUG(x...) /* Debug interrupt handler */
  30. #define PDEBUG 0 /* Debug PCI writes */
  31. /* defined in zr36120_i2c */
  32. extern struct i2c_bus zoran_i2c_bus_template;
  33. #define ZORAN_MAX_FBUFFERS 2
  34. #define ZORAN_MAX_FBUFFER (768*576*2)
  35. #define ZORAN_MAX_FBUFSIZE (ZORAN_MAX_FBUFFERS*ZORAN_MAX_FBUFFER)
  36. #define ZORAN_VBI_BUFFERS 2
  37. #define ZORAN_VBI_BUFSIZE (22*1024*2)
  38. struct tvcard {
  39. char* name; /* name of the cardtype */
  40. int video_inputs; /* number of channels defined in video_mux */
  41. int audio_inputs; /* number of channels defined in audio_mux */
  42. __u32 swapi2c:1, /* need to swap i2c wires SDA/SCL? */
  43. usegirq1:1, /* VSYNC at GIRQ1 instead of GIRQ0? */
  44. vsync_pos:1, /* positive VSYNC signal? */
  45. hsync_pos:1, /* positive HSYNC signal? */
  46. gpdir:8, /* General Purpose Direction register */
  47. gpval:8; /* General Purpose Value register */
  48. int video_mux[6]; /* mapping channel number to physical input */
  49. #define IS_TUNER 0x80
  50. #define IS_SVHS 0x40
  51. #define CHANNEL_MASK 0x3F
  52. int audio_mux[6]; /* mapping channel number to physical input */
  53. };
  54. #define TUNER(x) ((x)|IS_TUNER)
  55. #define SVHS(x) ((x)|IS_SVHS)
  56. struct vidinfo {
  57. struct vidinfo* next; /* next active buffer */
  58. uint kindof;
  59. #define FBUFFER_OVERLAY 0
  60. #define FBUFFER_GRAB 1
  61. #define FBUFFER_VBI 2
  62. uint status;
  63. #define FBUFFER_FREE 0
  64. #define FBUFFER_BUSY 1
  65. #define FBUFFER_DONE 2
  66. ulong fieldnr; /* # of field, not framer! */
  67. uint x,y;
  68. int w,h; /* w,h can be negative! */
  69. uint format; /* index in palette2fmt[] */
  70. uint bpp; /* lookup from palette2fmt[] */
  71. uint bpl; /* calc: width * bpp */
  72. ulong busadr; /* bus addr for DMA engine */
  73. char* memadr; /* kernel addr for making copies */
  74. ulong* overlay; /* kernel addr of overlay mask */
  75. };
  76. struct zoran 
  77. {
  78. struct video_device video_dev;
  79. #define CARD_DEBUG KERN_DEBUG "%s(%lu): "
  80. #define CARD_INFO KERN_INFO "%s(%lu): "
  81. #define CARD_ERR KERN_ERR "%s(%lu): "
  82. #define CARD ztv->video_dev.name,ztv->fieldnr
  83. /* zoran chip specific details */
  84. struct i2c_bus i2c; /* i2c registration data */
  85. struct pci_dev* dev; /* ptr to PCI device */
  86. ulong zoran_adr; /* bus address of IO memory */
  87. char* zoran_mem; /* kernel address of IO memory */
  88. struct tvcard* card; /* the cardtype */
  89. uint norm; /* 0=PAL, 1=NTSC, 2=SECAM */
  90. uint tuner_freq; /* Current freq in kHz */
  91. struct video_picture picture; /* Current picture params */
  92.   
  93. /* videocard details */
  94. uint swidth; /* screen width */
  95. uint sheight; /* screen height */
  96. uint depth; /* depth in bits */
  97. /* State details */
  98. char* fbuffer; /* framebuffers for mmap */
  99. struct vidinfo overinfo; /* overlay data */
  100. struct vidinfo grabinfo[ZORAN_MAX_FBUFFERS]; /* grabbing data*/
  101. wait_queue_head_t grabq; /* grabbers queue */
  102. /* VBI details */
  103. struct video_device vbi_dev;
  104. struct vidinfo readinfo[2]; /* VBI data - flip buffers */
  105. wait_queue_head_t vbiq; /* vbi queue */
  106. /* maintenance data */
  107. int have_decoder; /* did we detect a mux? */
  108. int have_tuner; /* did we detect a tuner? */
  109. int users; /* howmany video/vbi open? */
  110. int tuner_type; /* tuner type, when found */
  111. int running; /* are we rolling? */
  112. rwlock_t lock;
  113. long state; /* what is requested of us? */
  114. #define STATE_OVERLAY 0
  115. #define STATE_VBI 1
  116. struct vidinfo* workqueue; /* buffers to grab, head is active */
  117. ulong fieldnr; /* #field, ticked every VSYNC */
  118. ulong lastfieldnr; /* #field, ticked every GRAB */
  119. int vidInterlace; /* calculated */
  120. int vidXshift; /* calculated */
  121. uint vidWidth; /* calculated */
  122. uint vidHeight; /* calculated */
  123. };
  124. #define zrwrite(dat,adr)    writel((dat),(char *) (ztv->zoran_mem+(adr)))
  125. #define zrread(adr)         readl(ztv->zoran_mem+(adr))
  126. #if PDEBUG == 0
  127. #define zrand(dat,adr)      zrwrite((dat) & zrread(adr), adr)
  128. #define zror(dat,adr)       zrwrite((dat) | zrread(adr), adr)
  129. #define zraor(dat,mask,adr) zrwrite( ((dat)&~(mask)) | ((mask)&zrread(adr)), adr)
  130. #else
  131. #define zrand(dat, adr) 
  132. do { 
  133. ulong data = (dat) & zrread((adr)); 
  134. zrwrite(data, (adr)); 
  135. if (0 != (~(dat) & zrread((adr)))) 
  136. printk(KERN_DEBUG "zoran: zrand at %d(%d) detected set bits(%x)n", __LINE__, (adr), (dat)); 
  137. } while(0)
  138. #define zror(dat, adr) 
  139. do { 
  140. ulong data = (dat) | zrread((adr)); 
  141. zrwrite(data, (adr)); 
  142. if ((dat) != ((dat) & zrread(adr))) 
  143. printk(KERN_DEBUG "zoran: zror at %d(%d) detected unset bits(%x)n", __LINE__, (adr), (dat)); 
  144. } while(0)
  145. #define zraor(dat, mask, adr) 
  146. do { 
  147. ulong data; 
  148. if ((dat) & (mask)) 
  149. printk(KERN_DEBUG "zoran: zraor at %d(%d) detected bits(%x:%x)n", __LINE__, (adr), (dat), (mask)); 
  150. data = ((dat)&~(mask)) | ((mask) & zrread((adr))); 
  151. zrwrite(data,(adr)); 
  152. if ( (dat) != (~(mask) & zrread((adr))) ) 
  153. printk(KERN_DEBUG "zoran: zraor at %d(%d) could not set all bits(%x:%x)n", __LINE__, (adr), (dat), (mask)); 
  154. } while(0)
  155. #endif
  156. #endif
  157. /* zoran PCI address space */
  158. #define ZORAN_VFEH 0x000 /* Video Front End Horizontal Conf. */
  159. #define ZORAN_VFEH_HSPOL (1<<30)
  160. #define ZORAN_VFEH_HSTART (0x3FF<<10)
  161. #define ZORAN_VFEH_HEND (0x3FF<<0)
  162. #define ZORAN_VFEV 0x004 /* Video Front End Vertical Conf. */
  163. #define ZORAN_VFEV_VSPOL (1<<30)
  164. #define ZORAN_VFEV_VSTART (0x3FF<<10)
  165. #define ZORAN_VFEV_VEND (0x3FF<<0)
  166. #define ZORAN_VFEC 0x008 /* Video Front End Scaler and Pixel */
  167. #define ZORAN_VFEC_EXTFL (1<<26)
  168. #define ZORAN_VFEC_TOPFIELD (1<<25)
  169. #define ZORAN_VFEC_VCLKPOL (1<<24)
  170. #define ZORAN_VFEC_HFILTER (7<<21)
  171. #define ZORAN_VFEC_HFILTER_1 (0<<21) /* no lumi,    3-tap chromo */
  172. #define ZORAN_VFEC_HFILTER_2 (1<<21) /* 3-tap lumi, 3-tap chromo */
  173. #define ZORAN_VFEC_HFILTER_3 (2<<21) /* 4-tap lumi, 4-tap chromo */
  174. #define ZORAN_VFEC_HFILTER_4 (3<<21) /* 5-tap lumi, 4-tap chromo */
  175. #define ZORAN_VFEC_HFILTER_5 (4<<21) /* 4-tap lumi, 4-tap chromo */
  176. #define ZORAN_VFEC_DUPFLD (1<<20)
  177. #define ZORAN_VFEC_HORDCM (63<<14)
  178. #define ZORAN_VFEC_VERDCM (63<<8)
  179. #define ZORAN_VFEC_DISPMOD (1<<6)
  180. #define ZORAN_VFEC_RGB (3<<3)
  181. #define ZORAN_VFEC_RGB_YUV422 (0<<3)
  182. #define ZORAN_VFEC_RGB_RGB888 (1<<3)
  183. #define ZORAN_VFEC_RGB_RGB565 (2<<3)
  184. #define ZORAN_VFEC_RGB_RGB555 (3<<3)
  185. #define ZORAN_VFEC_ERRDIF (1<<2)
  186. #define ZORAN_VFEC_PACK24 (1<<1)
  187. #define ZORAN_VFEC_LE (1<<0)
  188. #define ZORAN_VTOP 0x00C /* Video Display "Top" */
  189. #define ZORAN_VBOT 0x010 /* Video Display "Bottom" */
  190. #define ZORAN_VSTR 0x014 /* Video Display Stride */
  191. #define ZORAN_VSTR_DISPSTRIDE (0xFFFF<<16)
  192. #define ZORAN_VSTR_VIDOVF (1<<8)
  193. #define ZORAN_VSTR_SNAPSHOT (1<<1)
  194. #define ZORAN_VSTR_GRAB (1<<0)
  195. #define ZORAN_VDC 0x018 /* Video Display Conf. */
  196. #define ZORAN_VDC_VIDEN (1<<31)
  197. #define ZORAN_VDC_MINPIX (0x1F<<25)
  198. #define ZORAN_VDC_TRICOM (1<<24)
  199. #define ZORAN_VDC_VIDWINHT (0x3FF<<12)
  200. #define ZORAN_VDC_VIDWINWID (0x3FF<<0)
  201. #define ZORAN_MTOP 0x01C /* Masking Map "Top" */
  202. #define ZORAN_MBOT 0x020 /* Masking Map "Bottom" */
  203. #define ZORAN_OCR 0x024 /* Overlay Control */
  204. #define ZORAN_OCR_OVLEN (1<<15)
  205. #define ZORAN_OCR_MASKSTRIDE (0xFF<<0)
  206. #define ZORAN_PCI 0x028 /* System, PCI and GPP Control */
  207. #define ZORAN_PCI_SOFTRESET (1<<24)
  208. #define ZORAN_PCI_WAITSTATE (3<<16)
  209. #define ZORAN_PCI_GENPURDIR (0xFF<<0)
  210. #define ZORAN_GUEST 0x02C /* GuestBus Control */
  211. #define ZORAN_CSOURCE 0x030 /* Code Source Address */
  212. #define ZORAN_CTRANS 0x034 /* Code Transfer Control */
  213. #define ZORAN_CMEM 0x038 /* Code Memory Pointer */
  214. #define ZORAN_ISR 0x03C /* Interrupt Status Register */
  215. #define ZORAN_ISR_CODE (1<<28)
  216. #define ZORAN_ISR_GIRQ0 (1<<29)
  217. #define ZORAN_ISR_GIRQ1 (1<<30)
  218. #define ZORAN_ICR 0x040 /* Interrupt Control Register */
  219. #define ZORAN_ICR_EN (1<<24)
  220. #define ZORAN_ICR_CODE (1<<28)
  221. #define ZORAN_ICR_GIRQ0 (1<<29)
  222. #define ZORAN_ICR_GIRQ1 (1<<30)
  223. #define ZORAN_I2C 0x044 /* I2C-Bus */
  224. #define ZORAN_I2C_SCL (1<<1)
  225. #define ZORAN_I2C_SDA (1<<0)
  226. #define ZORAN_POST 0x48 /* PostOffice */
  227. #define ZORAN_POST_PEN (1<<25)
  228. #define ZORAN_POST_TIME (1<<24)
  229. #define ZORAN_POST_DIR (1<<23)
  230. #define ZORAN_POST_GUESTID (3<<20)
  231. #define ZORAN_POST_GUEST (7<<16)
  232. #define ZORAN_POST_DATA (0xFF<<0)
  233. #endif