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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.     bttv - Bt848 frame grabber driver
  3.     bttv's *private* header file  --  nobody else than bttv itself
  4.     should ever include this file.
  5.     Copyright (C) 1996,97 Ralph Metzler (rjkm@thp.uni-koeln.de)
  6.     (c) 1999,2000 Gerd Knorr <kraxel@goldbach.in-berlin.de>
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation; either version 2 of the License, or
  10.     (at your option) any later version.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #ifndef _BTTVP_H_
  20. #define _BTTVP_H_
  21. #define BTTV_VERSION_CODE KERNEL_VERSION(0,7,96)
  22. #include <linux/types.h>
  23. #include <linux/wait.h>
  24. #include <linux/i2c.h>
  25. #include <linux/i2c-algo-bit.h>
  26. #include "bt848.h"
  27. #include "bttv.h"
  28. #include "audiochip.h"
  29. #ifdef __KERNEL__
  30. /* ---------------------------------------------------------- */
  31. /* bttv-driver.c                                              */
  32. /* insmod options / kernel args */
  33. extern int no_overlay;
  34. extern unsigned int bttv_verbose;
  35. extern unsigned int bttv_debug;
  36. extern unsigned int bttv_gpio;
  37. extern void bttv_gpio_tracking(struct bttv *btv, char *comment);
  38. extern int init_bttv_i2c(struct bttv *btv);
  39. extern int pvr_boot(struct bttv *btv);
  40. #define dprintk if (bttv_debug) printk
  41. /* Anybody who uses more than four? */
  42. #define BTTV_MAX 4
  43. extern int bttv_num; /* number of Bt848s in use */
  44. extern struct bttv bttvs[BTTV_MAX];
  45. #ifndef O_NONCAP  
  46. #define O_NONCAP O_TRUNC
  47. #endif
  48. #ifdef VIDEODAT_HACK
  49. # define VBI_MAXLINES   19
  50. #else
  51. # define VBI_MAXLINES   16
  52. #endif
  53. #define VBIBUF_SIZE     (2048*VBI_MAXLINES*2)
  54. #define MAX_GBUFFERS 64
  55. #define RISCMEM_LEN (32744*2)
  56. #define BTTV_MAX_FBUF 0x208000
  57. struct bttv_window 
  58. {
  59. int x, y;
  60. ushort width, height;
  61. ushort bpp, bpl;
  62. ushort swidth, sheight;
  63. unsigned long vidadr;
  64. ushort freq;
  65. int norm;
  66. int interlace;
  67. int color_fmt;
  68. ushort depth;
  69. };
  70. struct bttv_pll_info {
  71. unsigned int pll_ifreq;    /* PLL input frequency   */
  72. unsigned int pll_ofreq;    /* PLL output frequency       */
  73. unsigned int pll_crystal;  /* Crystal used for input     */
  74. unsigned int pll_current;  /* Currently programmed ofreq */
  75. };
  76. struct bttv_gbuf {
  77. int stat;
  78. #define GBUFFER_UNUSED       0
  79. #define GBUFFER_GRABBING     1
  80. #define GBUFFER_DONE         2
  81. #define GBUFFER_ERROR        3
  82. struct timeval tv;
  83. u16 width;
  84. u16 height;
  85. u16 fmt;
  86. u32 *risc;
  87. unsigned long ro;
  88. unsigned long re;
  89. };
  90. struct bttv {
  91. struct video_device video_dev;
  92. struct video_device radio_dev;
  93. struct video_device vbi_dev;
  94. struct video_picture picture; /* Current picture params */
  95. struct video_audio audio_dev; /* Current audio params */
  96. spinlock_t s_lock;
  97.         struct semaphore lock;
  98. int user;
  99. int capuser;
  100. /* i2c */
  101. struct i2c_adapter         i2c_adap;
  102. struct i2c_algo_bit_data   i2c_algo;
  103. struct i2c_client          i2c_client;
  104. int                        i2c_state, i2c_rc;
  105. struct i2c_client         *i2c_clients[I2C_CLIENTS_MAX];
  106.         int tuner_type;
  107.         int channel;
  108.         
  109.         unsigned int nr;
  110. unsigned short id;
  111. struct pci_dev *dev;
  112. unsigned char revision;
  113. unsigned long bt848_adr;      /* bus address of IO mem returned by PCI BIOS */
  114. unsigned char *bt848_mem;   /* pointer to mapped IO memory */
  115. unsigned long busriscmem; 
  116. u32 *riscmem;
  117.   
  118. unsigned char *vbibuf;
  119. struct bttv_window win;
  120. int fb_color_ctl;
  121. int type;            /* card type  */
  122. int cardid;
  123. int audio;           /* audio mode */
  124. int audio_chip;      /* set to one of the chips supported by bttv.c */
  125. int radio;
  126. int has_radio;
  127. /* miro/pinnacle + Aimslab VHX
  128.    philips matchbox (tea5757 radio tuner) support */
  129. int has_matchbox;
  130. int mbox_we;
  131. int mbox_data;
  132. int mbox_clk;
  133. int mbox_most;
  134. int mbox_mask;
  135. u32 *risc_jmp;
  136. u32 *vbi_odd;
  137. u32 *vbi_even;
  138. u32 bus_vbi_even;
  139. u32 bus_vbi_odd;
  140.         wait_queue_head_t vbiq;
  141. wait_queue_head_t capq;
  142. int vbip;
  143. u32 *risc_scr_odd;
  144. u32 *risc_scr_even;
  145. u32 risc_cap_odd;
  146. u32 risc_cap_even;
  147. int scr_on;
  148. int vbi_on;
  149. struct video_clip *cliprecs;
  150. struct bttv_gbuf *gbuf;
  151. int gqueue[MAX_GBUFFERS];
  152. int gq_in,gq_out,gq_grab,gq_start;
  153.         char *fbuffer;
  154. struct bttv_pll_info pll;
  155. unsigned int Fsc;
  156. unsigned int field;
  157. unsigned int last_field; /* number of last grabbed field */
  158. int i2c_command;
  159. int triton1;
  160. int errors;
  161. int needs_restart;
  162. wait_queue_head_t gpioq;
  163. int shutdown;
  164.         void (*audio_hook)(struct bttv *btv, struct video_audio *v, int set);
  165. };
  166. #endif
  167. #define btwrite(dat,adr)    writel((dat), (char *) (btv->bt848_mem+(adr)))
  168. #define btread(adr)         readl(btv->bt848_mem+(adr))
  169. #define btand(dat,adr)      btwrite((dat) & btread(adr), adr)
  170. #define btor(dat,adr)       btwrite((dat) | btread(adr), adr)
  171. #define btaor(dat,mask,adr) btwrite((dat) | ((mask) & btread(adr)), adr)
  172. /* bttv ioctls */
  173. #define BTTV_READEE _IOW('v',  BASE_VIDIOCPRIVATE+0, char [256])
  174. #define BTTV_WRITEE _IOR('v',  BASE_VIDIOCPRIVATE+1, char [256])
  175. #define BTTV_FIELDNR _IOR('v' , BASE_VIDIOCPRIVATE+2, unsigned int)
  176. #define BTTV_PLLSET _IOW('v' , BASE_VIDIOCPRIVATE+3, struct bttv_pll_info)
  177. #define BTTV_BURST_ON       _IOR('v' , BASE_VIDIOCPRIVATE+4, int)
  178. #define BTTV_BURST_OFF      _IOR('v' , BASE_VIDIOCPRIVATE+5, int)
  179. #define BTTV_VERSION           _IOR('v' , BASE_VIDIOCPRIVATE+6, int)
  180. #define BTTV_PICNR _IOR('v' , BASE_VIDIOCPRIVATE+7, int)
  181. #define BTTV_VBISIZE            _IOR('v' , BASE_VIDIOCPRIVATE+8, int)
  182. #define TDA9850            0x01
  183. #define TDA9840            0x02
  184. #define TDA8425            0x03
  185. #define TEA6300            0x04
  186. #endif /* _BTTVP_H_ */
  187. /*
  188.  * Local variables:
  189.  * c-basic-offset: 8
  190.  * End:
  191.  */