Home | History | Annotate | Line # | Download | only in bktr
bktr_reg.h revision 1.1.1.4
      1      1.1  wiz /*	$NetBSD: bktr_reg.h,v 1.1.1.4 2000/12/30 16:44:15 wiz Exp $	*/
      2      1.1  wiz 
      3      1.1  wiz /*
      4  1.1.1.4  wiz  * FreeBSD: src/sys/dev/bktr/bktr_reg.h,v 1.42 2000/10/31 13:09:56 roger Exp
      5      1.1  wiz  *
      6      1.1  wiz  * Copyright (c) 1999 Roger Hardiman
      7      1.1  wiz  * Copyright (c) 1998 Amancio Hasty
      8      1.1  wiz  * Copyright (c) 1995 Mark Tinguely and Jim Lowe
      9      1.1  wiz  * All rights reserved.
     10      1.1  wiz  *
     11      1.1  wiz  * Redistribution and use in source and binary forms, with or without
     12      1.1  wiz  * modification, are permitted provided that the following conditions
     13      1.1  wiz  * are met:
     14      1.1  wiz  * 1. Redistributions of source code must retain the above copyright
     15      1.1  wiz  *    notice, this list of conditions and the following disclaimer.
     16      1.1  wiz  * 2. Redistributions in binary form must reproduce the above copyright
     17      1.1  wiz  *    notice, this list of conditions and the following disclaimer in the
     18      1.1  wiz  *    documentation and/or other materials provided with the distribution.
     19      1.1  wiz  * 3. All advertising materials mentioning features or use of this software
     20      1.1  wiz  *    must display the following acknowledgement:
     21      1.1  wiz  *	This product includes software developed by Mark Tinguely and Jim Lowe
     22      1.1  wiz  * 4. The name of the author may not be used to endorse or promote products
     23      1.1  wiz  *    derived from this software without specific prior written permission.
     24      1.1  wiz  *
     25      1.1  wiz  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     26      1.1  wiz  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     27      1.1  wiz  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     28      1.1  wiz  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     29      1.1  wiz  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     30      1.1  wiz  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     31      1.1  wiz  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     32      1.1  wiz  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     33      1.1  wiz  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     34      1.1  wiz  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35      1.1  wiz  * POSSIBILITY OF SUCH DAMAGE.
     36      1.1  wiz  *
     37      1.1  wiz  */
     38      1.1  wiz 
     39      1.1  wiz #ifdef __FreeBSD__
     40      1.1  wiz #  if (__FreeBSD_version >= 310000)
     41      1.1  wiz #    include "smbus.h"
     42      1.1  wiz #  else
     43      1.1  wiz #    define NSMBUS 0		/* FreeBSD before 3.1 does not have SMBUS */
     44      1.1  wiz #  endif
     45  1.1.1.3  wiz #  if (NSMBUS > 0)
     46  1.1.1.3  wiz #    define BKTR_USE_FREEBSD_SMBUS
     47  1.1.1.3  wiz #  endif
     48      1.1  wiz #endif
     49      1.1  wiz 
     50      1.1  wiz #ifdef __NetBSD__
     51      1.1  wiz #include <machine/bus.h>		/* struct device */
     52      1.1  wiz #include <sys/device.h>
     53      1.1  wiz #include <sys/select.h>			/* struct selinfo */
     54  1.1.1.2  wiz # ifdef DEBUG
     55  1.1.1.2  wiz #  define	bootverbose 1
     56  1.1.1.2  wiz # else
     57  1.1.1.2  wiz #  define	bootverbose 0
     58  1.1.1.2  wiz # endif
     59      1.1  wiz #endif
     60      1.1  wiz 
     61  1.1.1.2  wiz /*
     62  1.1.1.2  wiz  * The kernel options for the driver now all begin with BKTR.
     63  1.1.1.2  wiz  * Support the older kernel options on FreeBSD and OpenBSD.
     64  1.1.1.2  wiz  *
     65  1.1.1.2  wiz  */
     66  1.1.1.2  wiz #if defined(__FreeBSD__) || defined(__OpenBSD__)
     67  1.1.1.3  wiz #if defined(BROOKTREE_ALLOC_PAGES)
     68  1.1.1.3  wiz #define BKTR_ALLOC_PAGES BROOKTREE_ALLOC_PAGES
     69  1.1.1.3  wiz #endif
     70  1.1.1.3  wiz 
     71  1.1.1.2  wiz #if defined(BROOKTREE_SYSTEM_DEFAULT)
     72  1.1.1.2  wiz #define BKTR_SYSTEM_DEFAULT BROOKTREE_SYSTEM_DEFAULT
     73  1.1.1.2  wiz #endif
     74  1.1.1.2  wiz 
     75  1.1.1.2  wiz #if defined(OVERRIDE_CARD)
     76  1.1.1.2  wiz #define BKTR_OVERRIDE_CARD OVERRIDE_CARD
     77  1.1.1.2  wiz #endif
     78  1.1.1.2  wiz 
     79  1.1.1.2  wiz #if defined(OVERRIDE_TUNER)
     80  1.1.1.2  wiz #define BKTR_OVERRIDE_TUNER OVERRIDE_TUNER
     81  1.1.1.2  wiz #endif
     82  1.1.1.2  wiz 
     83  1.1.1.2  wiz #if defined(OVERRIDE_DBX)
     84  1.1.1.2  wiz #define BKTR_OVERRIDE_DBX OVERRIDE_DBX
     85  1.1.1.2  wiz #endif
     86  1.1.1.2  wiz 
     87  1.1.1.2  wiz #if defined(OVERRIDE_MSP)
     88  1.1.1.2  wiz #define BKTR_OVERRIDE_MSP OVERRIDE_MSP
     89  1.1.1.2  wiz #endif
     90  1.1.1.2  wiz 
     91  1.1.1.2  wiz #endif
     92  1.1.1.2  wiz 
     93  1.1.1.2  wiz 
     94      1.1  wiz #ifndef PCI_LATENCY_TIMER
     95      1.1  wiz #define	PCI_LATENCY_TIMER		0x0c	/* pci timer register */
     96      1.1  wiz #endif
     97      1.1  wiz 
     98      1.1  wiz /*
     99      1.1  wiz  * Definitions for the Brooktree 848/878 video capture to pci interface.
    100      1.1  wiz  */
    101  1.1.1.3  wiz #ifndef __NetBSD__
    102  1.1.1.3  wiz #define PCI_VENDOR_SHIFT                        0
    103  1.1.1.3  wiz #define PCI_VENDOR_MASK                         0xffff
    104  1.1.1.3  wiz #define PCI_VENDOR(id) \
    105  1.1.1.3  wiz             (((id) >> PCI_VENDOR_SHIFT) & PCI_VENDOR_MASK)
    106  1.1.1.3  wiz 
    107  1.1.1.3  wiz #define PCI_PRODUCT_SHIFT                       16
    108  1.1.1.3  wiz #define PCI_PRODUCT_MASK                        0xffff
    109  1.1.1.3  wiz #define PCI_PRODUCT(id) \
    110  1.1.1.3  wiz             (((id) >> PCI_PRODUCT_SHIFT) & PCI_PRODUCT_MASK)
    111  1.1.1.3  wiz 
    112  1.1.1.3  wiz /* PCI vendor ID */
    113  1.1.1.3  wiz #define PCI_VENDOR_BROOKTREE    0x109e                /* Brooktree */
    114  1.1.1.3  wiz /* Brooktree products */
    115  1.1.1.3  wiz #define PCI_PRODUCT_BROOKTREE_BT848     0x0350        /* Bt848 Video Capture */
    116  1.1.1.3  wiz #define PCI_PRODUCT_BROOKTREE_BT849     0x0351        /* Bt849 Video Capture */
    117  1.1.1.3  wiz #define PCI_PRODUCT_BROOKTREE_BT878     0x036e        /* Bt878 Video Capture */
    118  1.1.1.3  wiz #define PCI_PRODUCT_BROOKTREE_BT879     0x036f        /* Bt879 Video Capture */
    119  1.1.1.3  wiz #endif
    120      1.1  wiz 
    121      1.1  wiz #define BROOKTREE_848                   1
    122      1.1  wiz #define BROOKTREE_848A                  2
    123      1.1  wiz #define BROOKTREE_849A                  3
    124      1.1  wiz #define BROOKTREE_878                   4
    125      1.1  wiz #define BROOKTREE_879                   5
    126      1.1  wiz 
    127      1.1  wiz typedef volatile u_int 	bregister_t;
    128      1.1  wiz /*
    129      1.1  wiz  * if other persuasion endian, then compiler will probably require that
    130      1.1  wiz  * these next
    131      1.1  wiz  * macros be reversed
    132      1.1  wiz  */
    133      1.1  wiz #define	BTBYTE(what)	bregister_t  what:8; int :24
    134      1.1  wiz #define	BTWORD(what)	bregister_t  what:16; int: 16
    135      1.1  wiz #define BTLONG(what)	bregister_t  what:32
    136      1.1  wiz 
    137      1.1  wiz struct bt848_registers {
    138      1.1  wiz     BTBYTE (dstatus);		/* 0, 1,2,3 */
    139      1.1  wiz #define BT848_DSTATUS_PRES		(1<<7)
    140      1.1  wiz #define BT848_DSTATUS_HLOC		(1<<6)
    141      1.1  wiz #define BT848_DSTATUS_FIELD		(1<<5)
    142      1.1  wiz #define BT848_DSTATUS_NUML		(1<<4)
    143      1.1  wiz #define BT848_DSTATUS_CSEL		(1<<3)
    144      1.1  wiz #define BT848_DSTATUS_PLOCK		(1<<2)
    145      1.1  wiz #define BT848_DSTATUS_LOF		(1<<1)
    146      1.1  wiz #define BT848_DSTATUS_COF		(1<<0)
    147      1.1  wiz     BTBYTE (iform);		/* 4, 5,6,7 */
    148      1.1  wiz #define BT848_IFORM_MUXSEL		(0x3<<5)
    149      1.1  wiz # define BT848_IFORM_M_MUX1		(0x03<<5)
    150      1.1  wiz # define BT848_IFORM_M_MUX0		(0x02<<5)
    151      1.1  wiz # define BT848_IFORM_M_MUX2		(0x01<<5)
    152      1.1  wiz # define BT848_IFORM_M_MUX3		(0x0)
    153      1.1  wiz # define BT848_IFORM_M_RSVD		(0x00<<5)
    154      1.1  wiz #define BT848_IFORM_XTSEL		(0x3<<3)
    155      1.1  wiz # define BT848_IFORM_X_AUTO		(0x03<<3)
    156      1.1  wiz # define BT848_IFORM_X_XT1		(0x02<<3)
    157      1.1  wiz # define BT848_IFORM_X_XT0		(0x01<<3)
    158      1.1  wiz # define BT848_IFORM_X_RSVD		(0x00<<3)
    159      1.1  wiz     BTBYTE (tdec);		/* 8, 9,a,b */
    160      1.1  wiz     BTBYTE (e_crop);		/* c, d,e,f */
    161      1.1  wiz     BTBYTE (e_vdelay_lo);	/* 10, 11,12,13 */
    162      1.1  wiz     BTBYTE (e_vactive_lo);	/* 14, 15,16,17 */
    163      1.1  wiz     BTBYTE (e_delay_lo);	/* 18, 19,1a,1b */
    164      1.1  wiz     BTBYTE (e_hactive_lo);	/* 1c, 1d,1e,1f */
    165      1.1  wiz     BTBYTE (e_hscale_hi);	/* 20, 21,22,23 */
    166      1.1  wiz     BTBYTE (e_hscale_lo);	/* 24, 25,26,27 */
    167      1.1  wiz     BTBYTE (bright);		/* 28, 29,2a,2b */
    168      1.1  wiz     BTBYTE (e_control);		/* 2c, 2d,2e,2f */
    169      1.1  wiz #define BT848_E_CONTROL_LNOTCH		(1<<7)
    170      1.1  wiz #define BT848_E_CONTROL_COMP		(1<<6)
    171      1.1  wiz #define BT848_E_CONTROL_LDEC		(1<<5)
    172      1.1  wiz #define BT848_E_CONTROL_CBSENSE		(1<<4)
    173      1.1  wiz #define BT848_E_CONTROL_RSVD		(1<<3)
    174      1.1  wiz #define BT848_E_CONTROL_CON_MSB		(1<<2)
    175      1.1  wiz #define BT848_E_CONTROL_SAT_U_MSB	(1<<1)
    176      1.1  wiz #define BT848_E_CONTROL_SAT_V_MSB	(1<<0)
    177      1.1  wiz     BTBYTE (contrast_lo);	/* 30, 31,32,33 */
    178      1.1  wiz     BTBYTE (sat_u_lo);		/* 34, 35,36,37 */
    179      1.1  wiz     BTBYTE (sat_v_lo);		/* 38, 39,3a,3b */
    180      1.1  wiz     BTBYTE (hue);		/* 3c, 3d,3e,3f */
    181      1.1  wiz     BTBYTE (e_scloop);		/* 40, 41,42,43 */
    182      1.1  wiz #define BT848_E_SCLOOP_RSVD1		(1<<7)
    183      1.1  wiz #define BT848_E_SCLOOP_CAGC		(1<<6)
    184      1.1  wiz #define BT848_E_SCLOOP_CKILL		(1<<5)
    185      1.1  wiz #define BT848_E_SCLOOP_HFILT		(0x3<<3)
    186      1.1  wiz # define BT848_E_SCLOOP_HFILT_ICON	(0x3<<3)
    187      1.1  wiz # define BT848_E_SCLOOP_HFILT_QCIF	(0x2<<3)
    188      1.1  wiz # define BT848_E_SCLOOP_HFILT_CIF	(0x1<<3)
    189      1.1  wiz # define BT848_E_SCLOOP_HFILT_AUTO	(0x0<<3)
    190      1.1  wiz #define BT848_E_SCLOOP_RSVD0		(0x7<<0)
    191      1.1  wiz     int		:32;		/* 44, 45,46,47 */
    192      1.1  wiz     BTBYTE (oform);		/* 48, 49,4a,4b */
    193      1.1  wiz     BTBYTE (e_vscale_hi);	/* 4c, 4d,4e,4f */
    194      1.1  wiz     BTBYTE (e_vscale_lo);	/* 50, 51,52,53 */
    195      1.1  wiz     BTBYTE (test);		/* 54, 55,56,57 */
    196      1.1  wiz     int		:32;		/* 58, 59,5a,5b */
    197      1.1  wiz     int		:32;		/* 5c, 5d,5e,5f */
    198      1.1  wiz     BTLONG (adelay);		/* 60, 61,62,63 */
    199      1.1  wiz     BTBYTE (bdelay);		/* 64, 65,66,67 */
    200      1.1  wiz     BTBYTE (adc);		/* 68, 69,6a,6b */
    201      1.1  wiz #define BT848_ADC_RESERVED		(0x80)	/* required pattern */
    202      1.1  wiz #define BT848_ADC_SYNC_T		(1<<5)
    203      1.1  wiz #define BT848_ADC_AGC_EN		(1<<4)
    204      1.1  wiz #define BT848_ADC_CLK_SLEEP		(1<<3)
    205      1.1  wiz #define BT848_ADC_Y_SLEEP		(1<<2)
    206      1.1  wiz #define BT848_ADC_C_SLEEP		(1<<1)
    207      1.1  wiz #define BT848_ADC_CRUSH			(1<<0)
    208      1.1  wiz     BTBYTE (e_vtc);		/* 6c, 6d,6e,6f */
    209      1.1  wiz     int		:32;		/* 70, 71,72,73 */
    210      1.1  wiz     int 	:32;		/* 74, 75,76,77 */
    211      1.1  wiz     int		:32;		/* 78, 79,7a,7b */
    212      1.1  wiz     BTLONG (sreset);		/* 7c, 7d,7e,7f */
    213      1.1  wiz     u_char 	filler1[0x84-0x80];
    214      1.1  wiz     BTBYTE (tgctrl);		/* 84, 85,86,87 */
    215      1.1  wiz #define BT848_TGCTRL_TGCKI		(3<<3)
    216      1.1  wiz #define BT848_TGCTRL_TGCKI_XTAL		(0<<3)
    217      1.1  wiz #define BT848_TGCTRL_TGCKI_PLL		(1<<3)
    218      1.1  wiz #define BT848_TGCTRL_TGCKI_GPCLK	(2<<3)
    219      1.1  wiz #define BT848_TGCTRL_TGCKI_GPCLK_I	(3<<3)
    220      1.1  wiz     u_char 	filler[0x8c-0x88];
    221      1.1  wiz     BTBYTE (o_crop);		/* 8c, 8d,8e,8f */
    222      1.1  wiz     BTBYTE (o_vdelay_lo);	/* 90, 91,92,93 */
    223      1.1  wiz     BTBYTE (o_vactive_lo);	/* 94, 95,96,97 */
    224      1.1  wiz     BTBYTE (o_delay_lo);	/* 98, 99,9a,9b */
    225      1.1  wiz     BTBYTE (o_hactive_lo);	/* 9c, 9d,9e,9f */
    226      1.1  wiz     BTBYTE (o_hscale_hi);	/* a0, a1,a2,a3 */
    227      1.1  wiz     BTBYTE (o_hscale_lo);	/* a4, a5,a6,a7 */
    228      1.1  wiz     int		:32;		/* a8, a9,aa,ab */
    229      1.1  wiz     BTBYTE (o_control);		/* ac, ad,ae,af */
    230      1.1  wiz #define BT848_O_CONTROL_LNOTCH		(1<<7)
    231      1.1  wiz #define BT848_O_CONTROL_COMP		(1<<6)
    232      1.1  wiz #define BT848_O_CONTROL_LDEC		(1<<5)
    233      1.1  wiz #define BT848_O_CONTROL_CBSENSE		(1<<4)
    234      1.1  wiz #define BT848_O_CONTROL_RSVD		(1<<3)
    235      1.1  wiz #define BT848_O_CONTROL_CON_MSB		(1<<2)
    236      1.1  wiz #define BT848_O_CONTROL_SAT_U_MSB	(1<<1)
    237      1.1  wiz #define BT848_O_CONTROL_SAT_V_MSB	(1<<0)
    238      1.1  wiz     u_char	fillter4[16];
    239      1.1  wiz     BTBYTE (o_scloop);		/* c0, c1,c2,c3 */
    240      1.1  wiz #define BT848_O_SCLOOP_RSVD1		(1<<7)
    241      1.1  wiz #define BT848_O_SCLOOP_CAGC		(1<<6)
    242      1.1  wiz #define BT848_O_SCLOOP_CKILL		(1<<5)
    243      1.1  wiz #define BT848_O_SCLOOP_HFILT		(0x3<<3)
    244      1.1  wiz #define BT848_O_SCLOOP_HFILT_ICON	(0x3<<3)
    245      1.1  wiz #define BT848_O_SCLOOP_HFILT_QCIF	(0x2<<3)
    246      1.1  wiz #define BT848_O_SCLOOP_HFILT_CIF	(0x1<<3)
    247      1.1  wiz #define BT848_O_SCLOOP_HFILT_AUTO	(0x0<<3)
    248      1.1  wiz #define BT848_O_SCLOOP_RSVD0		(0x7<<0)
    249      1.1  wiz     int		:32;		/* c4, c5,c6,c7 */
    250      1.1  wiz     int		:32;		/* c8, c9,ca,cb */
    251      1.1  wiz     BTBYTE (o_vscale_hi);	/* cc, cd,ce,cf */
    252      1.1  wiz     BTBYTE (o_vscale_lo);	/* d0, d1,d2,d3 */
    253      1.1  wiz     BTBYTE (color_fmt);		/* d4, d5,d6,d7 */
    254      1.1  wiz     bregister_t color_ctl_swap		:4; /* d8 */
    255      1.1  wiz #define BT848_COLOR_CTL_WSWAP_ODD	(1<<3)
    256      1.1  wiz #define BT848_COLOR_CTL_WSWAP_EVEN	(1<<2)
    257      1.1  wiz #define BT848_COLOR_CTL_BSWAP_ODD	(1<<1)
    258      1.1  wiz #define BT848_COLOR_CTL_BSWAP_EVEN	(1<<0)
    259      1.1  wiz     bregister_t color_ctl_gamma		:1;
    260      1.1  wiz     bregister_t color_ctl_rgb_ded	:1;
    261      1.1  wiz     bregister_t color_ctl_color_bars	:1;
    262      1.1  wiz     bregister_t color_ctl_ext_frmrate	:1;
    263      1.1  wiz #define BT848_COLOR_CTL_GAMMA		(1<<4)
    264      1.1  wiz #define BT848_COLOR_CTL_RGB_DED		(1<<5)
    265      1.1  wiz #define BT848_COLOR_CTL_COLOR_BARS	(1<<6)
    266      1.1  wiz #define BT848_COLOR_CTL_EXT_FRMRATE     (1<<7)
    267      1.1  wiz     int		:24;		/* d9,da,db */
    268      1.1  wiz     BTBYTE (cap_ctl);		/* dc, dd,de,df */
    269      1.1  wiz #define BT848_CAP_CTL_DITH_FRAME	(1<<4)
    270      1.1  wiz #define BT848_CAP_CTL_VBI_ODD		(1<<3)
    271      1.1  wiz #define BT848_CAP_CTL_VBI_EVEN		(1<<2)
    272      1.1  wiz #define BT848_CAP_CTL_ODD		(1<<1)
    273      1.1  wiz #define BT848_CAP_CTL_EVEN		(1<<0)
    274      1.1  wiz     BTBYTE (vbi_pack_size);	/* e0, e1,e2,e3 */
    275      1.1  wiz     BTBYTE (vbi_pack_del);	/* e4, e5,e6,e7 */
    276      1.1  wiz     int		:32;		/* e8, e9,ea,eb */
    277      1.1  wiz     BTBYTE (o_vtc);		/* ec, ed,ee,ef */
    278      1.1  wiz     BTBYTE (pll_f_lo);		/* f0, f1,f2,f3 */
    279      1.1  wiz     BTBYTE (pll_f_hi);		/* f4, f5,f6,f7 */
    280      1.1  wiz     BTBYTE (pll_f_xci);		/* f8, f9,fa,fb */
    281      1.1  wiz #define BT848_PLL_F_C			(1<<6)
    282      1.1  wiz #define BT848_PLL_F_X			(1<<7)
    283      1.1  wiz     u_char	filler2[0x100-0xfc];
    284      1.1  wiz     BTLONG (int_stat);		/* 100, 101,102,103 */
    285      1.1  wiz     BTLONG (int_mask);		/* 104, 105,106,107 */
    286      1.1  wiz #define BT848_INT_RISCS			(0xf<<28)
    287      1.1  wiz #define BT848_INT_RISC_EN		(1<<27)
    288      1.1  wiz #define BT848_INT_RACK			(1<<25)
    289      1.1  wiz #define BT848_INT_FIELD			(1<<24)
    290      1.1  wiz #define BT848_INT_MYSTERYBIT		(1<<23)
    291      1.1  wiz #define BT848_INT_SCERR			(1<<19)
    292      1.1  wiz #define BT848_INT_OCERR			(1<<18)
    293      1.1  wiz #define BT848_INT_PABORT		(1<<17)
    294      1.1  wiz #define BT848_INT_RIPERR		(1<<16)
    295      1.1  wiz #define BT848_INT_PPERR			(1<<15)
    296      1.1  wiz #define BT848_INT_FDSR			(1<<14)
    297      1.1  wiz #define BT848_INT_FTRGT			(1<<13)
    298      1.1  wiz #define BT848_INT_FBUS			(1<<12)
    299      1.1  wiz #define BT848_INT_RISCI			(1<<11)
    300      1.1  wiz #define BT848_INT_GPINT			(1<<9)
    301      1.1  wiz #define BT848_INT_I2CDONE		(1<<8)
    302      1.1  wiz #define BT848_INT_RSV1			(1<<7)
    303      1.1  wiz #define BT848_INT_RSV0			(1<<6)
    304      1.1  wiz #define BT848_INT_VPRES			(1<<5)
    305      1.1  wiz #define BT848_INT_HLOCK			(1<<4)
    306      1.1  wiz #define BT848_INT_OFLOW			(1<<3)
    307      1.1  wiz #define BT848_INT_HSYNC			(1<<2)
    308      1.1  wiz #define BT848_INT_VSYNC			(1<<1)
    309      1.1  wiz #define BT848_INT_FMTCHG		(1<<0)
    310      1.1  wiz     int		:32;		/* 108, 109,10a,10b */
    311      1.1  wiz     BTWORD (gpio_dma_ctl);	/* 10c, 10d,10e,10f */
    312      1.1  wiz #define BT848_DMA_CTL_PL23TP4		(0<<6)	/* planar1 trigger 4 */
    313      1.1  wiz #define BT848_DMA_CTL_PL23TP8		(1<<6)	/* planar1 trigger 8 */
    314      1.1  wiz #define BT848_DMA_CTL_PL23TP16		(2<<6)	/* planar1 trigger 16 */
    315      1.1  wiz #define BT848_DMA_CTL_PL23TP32		(3<<6)	/* planar1 trigger 32 */
    316      1.1  wiz #define BT848_DMA_CTL_PL1TP4		(0<<4)	/* planar1 trigger 4 */
    317      1.1  wiz #define BT848_DMA_CTL_PL1TP8		(1<<4)	/* planar1 trigger 8 */
    318      1.1  wiz #define BT848_DMA_CTL_PL1TP16		(2<<4)	/* planar1 trigger 16 */
    319      1.1  wiz #define BT848_DMA_CTL_PL1TP32		(3<<4)	/* planar1 trigger 32 */
    320      1.1  wiz #define BT848_DMA_CTL_PKTP4		(0<<2)	/* packed trigger 4 */
    321      1.1  wiz #define BT848_DMA_CTL_PKTP8		(1<<2)	/* packed trigger 8 */
    322      1.1  wiz #define BT848_DMA_CTL_PKTP16		(2<<2)	/* packed trigger 16 */
    323      1.1  wiz #define BT848_DMA_CTL_PKTP32		(3<<2)	/* packed trigger 32 */
    324      1.1  wiz #define BT848_DMA_CTL_RISC_EN		(1<<1)
    325      1.1  wiz #define BT848_DMA_CTL_FIFO_EN		(1<<0)
    326      1.1  wiz     BTLONG (i2c_data_ctl);	/* 110, 111,112,113 */
    327      1.1  wiz #define BT848_DATA_CTL_I2CDIV		(0xf<<4)
    328      1.1  wiz #define BT848_DATA_CTL_I2CSYNC		(1<<3)
    329      1.1  wiz #define BT848_DATA_CTL_I2CW3B		(1<<2)
    330      1.1  wiz #define BT848_DATA_CTL_I2CSCL		(1<<1)
    331      1.1  wiz #define BT848_DATA_CTL_I2CSDA		(1<<0)
    332      1.1  wiz     BTLONG (risc_strt_add);	/* 114, 115,116,117 */
    333      1.1  wiz     BTLONG (gpio_out_en);	/* 118, 119,11a,11b */	/* really 24 bits */
    334      1.1  wiz     BTLONG (gpio_reg_inp);	/* 11c, 11d,11e,11f */	/* really 24 bits */
    335      1.1  wiz     BTLONG (risc_count);	/* 120, 121,122,123 */
    336      1.1  wiz     u_char	filler3[0x200-0x124];
    337      1.1  wiz     BTLONG (gpio_data);		/* 200, 201,202,203 */	/* really 24 bits */
    338      1.1  wiz };
    339      1.1  wiz 
    340      1.1  wiz 
    341      1.1  wiz #define BKTR_DSTATUS			0x000
    342      1.1  wiz #define BKTR_IFORM			0x004
    343      1.1  wiz #define BKTR_TDEC			0x008
    344      1.1  wiz #define BKTR_E_CROP			0x00C
    345      1.1  wiz #define BKTR_O_CROP			0x08C
    346      1.1  wiz #define BKTR_E_VDELAY_LO		0x010
    347      1.1  wiz #define BKTR_O_VDELAY_LO		0x090
    348      1.1  wiz #define BKTR_E_VACTIVE_LO		0x014
    349      1.1  wiz #define BKTR_O_VACTIVE_LO		0x094
    350      1.1  wiz #define BKTR_E_DELAY_LO			0x018
    351      1.1  wiz #define BKTR_O_DELAY_LO			0x098
    352      1.1  wiz #define BKTR_E_HACTIVE_LO		0x01C
    353      1.1  wiz #define BKTR_O_HACTIVE_LO		0x09C
    354      1.1  wiz #define BKTR_E_HSCALE_HI		0x020
    355      1.1  wiz #define BKTR_O_HSCALE_HI		0x0A0
    356      1.1  wiz #define BKTR_E_HSCALE_LO		0x024
    357      1.1  wiz #define BKTR_O_HSCALE_LO		0x0A4
    358      1.1  wiz #define BKTR_BRIGHT			0x028
    359      1.1  wiz #define BKTR_E_CONTROL			0x02C
    360      1.1  wiz #define BKTR_O_CONTROL			0x0AC
    361      1.1  wiz #define BKTR_CONTRAST_LO		0x030
    362      1.1  wiz #define BKTR_SAT_U_LO			0x034
    363      1.1  wiz #define BKTR_SAT_V_LO			0x038
    364      1.1  wiz #define BKTR_HUE			0x03C
    365      1.1  wiz #define BKTR_E_SCLOOP			0x040
    366      1.1  wiz #define BKTR_O_SCLOOP			0x0C0
    367      1.1  wiz #define BKTR_OFORM			0x048
    368      1.1  wiz #define BKTR_E_VSCALE_HI		0x04C
    369      1.1  wiz #define BKTR_O_VSCALE_HI		0x0CC
    370      1.1  wiz #define BKTR_E_VSCALE_LO		0x050
    371      1.1  wiz #define BKTR_O_VSCALE_LO		0x0D0
    372      1.1  wiz #define BKTR_TEST			0x054
    373      1.1  wiz #define BKTR_ADELAY			0x060
    374      1.1  wiz #define BKTR_BDELAY			0x064
    375      1.1  wiz #define BKTR_ADC			0x068
    376      1.1  wiz #define BKTR_E_VTC			0x06C
    377      1.1  wiz #define BKTR_O_VTC			0x0EC
    378      1.1  wiz #define BKTR_SRESET			0x07C
    379      1.1  wiz #define BKTR_COLOR_FMT			0x0D4
    380      1.1  wiz #define BKTR_COLOR_CTL			0x0D8
    381      1.1  wiz #define BKTR_CAP_CTL			0x0DC
    382      1.1  wiz #define BKTR_VBI_PACK_SIZE		0x0E0
    383      1.1  wiz #define BKTR_VBI_PACK_DEL		0x0E4
    384      1.1  wiz #define BKTR_INT_STAT			0x100
    385      1.1  wiz #define BKTR_INT_MASK			0x104
    386      1.1  wiz #define BKTR_RISC_COUNT			0x120
    387      1.1  wiz #define BKTR_RISC_STRT_ADD		0x114
    388      1.1  wiz #define BKTR_GPIO_DMA_CTL		0x10C
    389      1.1  wiz #define BKTR_GPIO_OUT_EN		0x118
    390      1.1  wiz #define BKTR_GPIO_REG_INP		0x11C
    391      1.1  wiz #define BKTR_GPIO_DATA			0x200
    392      1.1  wiz #define BKTR_I2C_DATA_CTL		0x110
    393      1.1  wiz #define BKTR_TGCTRL			0x084
    394      1.1  wiz #define BKTR_PLL_F_LO			0x0F0
    395      1.1  wiz #define BKTR_PLL_F_HI			0x0F4
    396      1.1  wiz #define BKTR_PLL_F_XCI			0x0F8
    397      1.1  wiz 
    398      1.1  wiz /*
    399      1.1  wiz  * device support for onboard tv tuners
    400      1.1  wiz  */
    401      1.1  wiz 
    402      1.1  wiz /* description of the LOGICAL tuner */
    403      1.1  wiz struct TVTUNER {
    404      1.1  wiz 	int		frequency;
    405      1.1  wiz 	u_char		chnlset;
    406      1.1  wiz 	u_char		channel;
    407      1.1  wiz 	u_char		band;
    408      1.1  wiz 	u_char		afc;
    409      1.1  wiz  	u_char		radio_mode;	/* current mode of the radio mode */
    410      1.1  wiz };
    411      1.1  wiz 
    412      1.1  wiz /* description of the PHYSICAL tuner */
    413      1.1  wiz struct TUNER {
    414      1.1  wiz 	char*		name;
    415      1.1  wiz 	u_char		type;
    416      1.1  wiz 	u_char		pllControl[4];
    417      1.1  wiz 	u_char		bandLimits[ 2 ];
    418      1.1  wiz 	u_char		bandAddrs[ 4 ];        /* 3 first for the 3 TV
    419      1.1  wiz 					       ** bands. Last for radio
    420      1.1  wiz 					       ** band (0x00=NoRadio).
    421      1.1  wiz 					       */
    422      1.1  wiz 
    423      1.1  wiz };
    424      1.1  wiz 
    425      1.1  wiz /* description of the card */
    426      1.1  wiz #define EEPROMBLOCKSIZE		32
    427      1.1  wiz struct CARDTYPE {
    428      1.1  wiz 	unsigned int		card_id;	/* card id (from #define's) */
    429      1.1  wiz 	char*			name;
    430      1.1  wiz 	const struct TUNER*	tuner;		/* Tuner details */
    431      1.1  wiz 	u_char			tuner_pllAddr;	/* Tuner i2c address */
    432      1.1  wiz 	u_char			dbx;		/* Has DBX chip? */
    433      1.1  wiz 	u_char			msp3400c;	/* Has msp3400c chip? */
    434      1.1  wiz 	u_char			dpl3518a;	/* Has dpl3518a chip? */
    435      1.1  wiz 	u_char			eepromAddr;
    436      1.1  wiz 	u_char			eepromSize;	/* bytes / EEPROMBLOCKSIZE */
    437      1.1  wiz 	u_int			audiomuxs[ 5 ];	/* tuner, ext (line-in) */
    438      1.1  wiz 						/* int/unused (radio) */
    439      1.1  wiz 						/* mute, present */
    440      1.1  wiz 	u_int			gpio_mux_bits;	/* GPIO mask for audio mux */
    441      1.1  wiz };
    442      1.1  wiz 
    443      1.1  wiz struct format_params {
    444      1.1  wiz   /* Total lines, lines before image, image lines */
    445      1.1  wiz   int vtotal, vdelay, vactive;
    446      1.1  wiz   /* Total unscaled horizontal pixels, pixels before image, image pixels */
    447      1.1  wiz   int htotal, hdelay, hactive;
    448      1.1  wiz   /* Scaled horizontal image pixels, Total Scaled horizontal pixels */
    449      1.1  wiz   int  scaled_hactive, scaled_htotal;
    450      1.1  wiz   /* frame rate . for ntsc is 30 frames per second */
    451      1.1  wiz   int frame_rate;
    452      1.1  wiz   /* A-delay and B-delay */
    453      1.1  wiz   u_char adelay, bdelay;
    454      1.1  wiz   /* Iform XTSEL value */
    455      1.1  wiz   int iform_xtsel;
    456      1.1  wiz   /* VBI number of lines per field, and number of samples per line */
    457      1.1  wiz   int vbi_num_lines, vbi_num_samples;
    458      1.1  wiz };
    459      1.1  wiz 
    460  1.1.1.3  wiz #if defined(BKTR_USE_FREEBSD_SMBUS)
    461      1.1  wiz struct bktr_i2c_softc {
    462      1.1  wiz 	device_t iicbus;
    463      1.1  wiz 	device_t smbus;
    464      1.1  wiz };
    465      1.1  wiz #endif
    466      1.1  wiz 
    467      1.1  wiz 
    468      1.1  wiz /* Bt848/878 register access
    469      1.1  wiz  * The registers can either be access via a memory mapped structure
    470      1.1  wiz  * or accessed via bus_space.
    471      1.1  wiz  * bus_0pace access allows cross platform support, where as the
    472      1.1  wiz  * memory mapped structure method only works on 32 bit processors
    473      1.1  wiz  * with the right type of endianness.
    474      1.1  wiz  */
    475      1.1  wiz #if defined(__NetBSD__) || ( defined(__FreeBSD__) && (__FreeBSD_version >=300000) )
    476      1.1  wiz #define INB(bktr,offset)	bus_space_read_1((bktr)->memt,(bktr)->memh,(offset))
    477      1.1  wiz #define INW(bktr,offset)	bus_space_read_2((bktr)->memt,(bktr)->memh,(offset))
    478      1.1  wiz #define INL(bktr,offset)	bus_space_read_4((bktr)->memt,(bktr)->memh,(offset))
    479      1.1  wiz #define OUTB(bktr,offset,value) bus_space_write_1((bktr)->memt,(bktr)->memh,(offset),(value))
    480      1.1  wiz #define OUTW(bktr,offset,value) bus_space_write_2((bktr)->memt,(bktr)->memh,(offset),(value))
    481      1.1  wiz #define OUTL(bktr,offset,value) bus_space_write_4((bktr)->memt,(bktr)->memh,(offset),(value))
    482      1.1  wiz #else
    483      1.1  wiz #define INB(bktr,offset)	*(volatile unsigned char*) ((int)((bktr)->memh)+(offset))
    484      1.1  wiz #define INW(bktr,offset)	*(volatile unsigned short*)((int)((bktr)->memh)+(offset))
    485      1.1  wiz #define INL(bktr,offset)	*(volatile unsigned int*)  ((int)((bktr)->memh)+(offset))
    486      1.1  wiz #define OUTB(bktr,offset,value)	*(volatile unsigned char*) ((int)((bktr)->memh)+(offset)) = (value)
    487      1.1  wiz #define OUTW(bktr,offset,value)	*(volatile unsigned short*)((int)((bktr)->memh)+(offset)) = (value)
    488      1.1  wiz #define OUTL(bktr,offset,value)	*(volatile unsigned int*)  ((int)((bktr)->memh)+(offset)) = (value)
    489      1.1  wiz #endif
    490      1.1  wiz 
    491      1.1  wiz 
    492      1.1  wiz typedef struct bktr_clip bktr_clip_t;
    493      1.1  wiz 
    494      1.1  wiz /*
    495      1.1  wiz  * BrookTree 848  info structure, one per bt848 card installed.
    496      1.1  wiz  */
    497      1.1  wiz struct bktr_softc {
    498      1.1  wiz 
    499      1.1  wiz #if defined (__bsdi__)
    500      1.1  wiz     struct device bktr_dev;	/* base device */
    501      1.1  wiz     struct isadev bktr_id;	/* ISA device */
    502      1.1  wiz     struct intrhand bktr_ih;	/* interrupt vectoring */
    503      1.1  wiz     #define pcici_t pci_devaddr_t
    504      1.1  wiz #endif
    505      1.1  wiz 
    506      1.1  wiz #if defined(__NetBSD__)
    507      1.1  wiz     struct device bktr_dev;     /* base device */
    508      1.1  wiz     bus_dma_tag_t	dmat;   /* DMA tag */
    509      1.1  wiz     bus_space_tag_t	memt;
    510      1.1  wiz     bus_space_handle_t	memh;
    511      1.1  wiz     bus_size_t		obmemsz;        /* size of en card (bytes) */
    512      1.1  wiz     void		*ih;
    513      1.1  wiz     bus_dmamap_t	dm_prog;
    514      1.1  wiz     bus_dmamap_t	dm_oprog;
    515      1.1  wiz     bus_dmamap_t	dm_mem;
    516      1.1  wiz     bus_dmamap_t	dm_vbidata;
    517      1.1  wiz     bus_dmamap_t	dm_vbibuffer;
    518      1.1  wiz #endif
    519      1.1  wiz 
    520      1.1  wiz #if defined(__OpenBSD__)
    521      1.1  wiz     struct device bktr_dev;     /* base device */
    522      1.1  wiz     bus_dma_tag_t	dmat;   /* DMA tag */
    523      1.1  wiz     bus_space_tag_t	memt;
    524      1.1  wiz     bus_space_handle_t	memh;
    525      1.1  wiz     bus_size_t		obmemsz;        /* size of en card (bytes) */
    526      1.1  wiz     void		*ih;
    527      1.1  wiz     bus_dmamap_t	dm_prog;
    528      1.1  wiz     bus_dmamap_t	dm_oprog;
    529      1.1  wiz     bus_dmamap_t	dm_mem;
    530      1.1  wiz     bus_dmamap_t	dm_vbidata;
    531      1.1  wiz     bus_dmamap_t	dm_vbibuffer;
    532      1.1  wiz     size_t		dm_mapsize;
    533      1.1  wiz     pci_chipset_tag_t	pc;	/* Opaque PCI chipset tag */
    534      1.1  wiz     pcitag_t		tag;	/* PCI tag, for doing PCI commands */
    535      1.1  wiz     vm_offset_t		phys_base;	/* Bt848 register physical address */
    536      1.1  wiz #endif
    537      1.1  wiz 
    538      1.1  wiz #if defined (__FreeBSD__)
    539      1.1  wiz     #if (__FreeBSD_version < 400000)
    540      1.1  wiz     vm_offset_t     phys_base;	/* 2.x Bt848 register physical address */
    541      1.1  wiz     pcici_t         tag;	/* 2.x PCI tag, for doing PCI commands */
    542      1.1  wiz     #endif
    543      1.1  wiz     #if (__FreeBSD_version >= 400000)
    544  1.1.1.3  wiz     int             mem_rid;	/* 4.x resource id */
    545      1.1  wiz     struct resource *res_mem;	/* 4.x resource descriptor for registers */
    546  1.1.1.3  wiz     int             irq_rid;	/* 4.x resource id */
    547      1.1  wiz     struct resource *res_irq;	/* 4.x resource descriptor for interrupt */
    548      1.1  wiz     void            *res_ih;	/* 4.x newbus interrupt handler cookie */
    549  1.1.1.3  wiz     dev_t           bktrdev;	/* 4.x device entry for /dev/bktrN */
    550  1.1.1.3  wiz     dev_t           tunerdev;	/* 4.x device entry for /dev/tunerN */
    551  1.1.1.3  wiz     dev_t           vbidev;	/* 4.x device entry for /dev/vbiN */
    552  1.1.1.3  wiz     dev_t           bktrdev_alias;	/* alias /dev/bktr to /dev/bktr0 */
    553  1.1.1.3  wiz     dev_t           tunerdev_alias;	/* alias /dev/tuner to /dev/tuner0 */
    554  1.1.1.3  wiz     dev_t           vbidev_alias;	/* alias /dev/vbi to /dev/vbi0 */
    555      1.1  wiz     #endif
    556      1.1  wiz     #if (__FreeBSD_version >= 310000)
    557      1.1  wiz     bus_space_tag_t	memt;	/* Bus space register access functions */
    558      1.1  wiz     bus_space_handle_t	memh;	/* Bus space register access functions */
    559      1.1  wiz     bus_size_t		obmemsz;/* Size of card (bytes) */
    560      1.1  wiz     #endif
    561      1.1  wiz     #if (NSMBUS > 0)
    562      1.1  wiz       struct bktr_i2c_softc i2c_sc;	/* bt848_i2c device */
    563      1.1  wiz     #endif
    564  1.1.1.2  wiz     char	bktr_xname[7];	/* device name and unit number */
    565      1.1  wiz #endif
    566      1.1  wiz 
    567  1.1.1.3  wiz 
    568  1.1.1.3  wiz     /* The following definitions are for the contiguous memory */
    569  1.1.1.3  wiz #ifdef __NetBSD__
    570  1.1.1.3  wiz     vaddr_t bigbuf;          /* buffer that holds the captured image */
    571  1.1.1.3  wiz     vaddr_t vbidata;         /* RISC program puts VBI data from the current frame here */
    572  1.1.1.3  wiz     vaddr_t vbibuffer;       /* Circular buffer holding VBI data for the user */
    573  1.1.1.3  wiz     vaddr_t dma_prog;        /* RISC prog for single and/or even field capture*/
    574  1.1.1.3  wiz     vaddr_t odd_dma_prog;    /* RISC program for Odd field capture */
    575  1.1.1.3  wiz #else
    576  1.1.1.3  wiz     vm_offset_t bigbuf;	     /* buffer that holds the captured image */
    577  1.1.1.3  wiz     vm_offset_t vbidata;     /* RISC program puts VBI data from the current frame here */
    578  1.1.1.3  wiz     vm_offset_t vbibuffer;   /* Circular buffer holding VBI data for the user */
    579  1.1.1.3  wiz     vm_offset_t dma_prog;    /* RISC prog for single and/or even field capture*/
    580  1.1.1.3  wiz     vm_offset_t odd_dma_prog;/* RISC program for Odd field capture */
    581  1.1.1.3  wiz #endif
    582  1.1.1.3  wiz 
    583  1.1.1.3  wiz 
    584      1.1  wiz     /* the following definitions are common over all platforms */
    585      1.1  wiz     int		alloc_pages;	/* number of pages in bigbuf */
    586      1.1  wiz     int         vbiinsert;      /* Position for next write into circular buffer */
    587      1.1  wiz     int         vbistart;       /* Position of last read from circular buffer */
    588      1.1  wiz     int         vbisize;        /* Number of bytes in the circular buffer */
    589      1.1  wiz     u_long	vbi_sequence_number;	/* sequence number for VBI */
    590      1.1  wiz     int		vbi_read_blocked;	/* user process blocked on read() from /dev/vbi */
    591      1.1  wiz     struct selinfo vbi_select;	/* Data used by select() on /dev/vbi */
    592      1.1  wiz 
    593      1.1  wiz 
    594      1.1  wiz     struct proc	*proc;		/* process to receive raised signal */
    595      1.1  wiz     int		signal;		/* signal to send to process */
    596      1.1  wiz     int		clr_on_start;	/* clear cap buf on capture start? */
    597      1.1  wiz #define	METEOR_SIG_MODE_MASK	0xffff0000
    598      1.1  wiz #define	METEOR_SIG_FIELD_MODE	0x00010000
    599      1.1  wiz #define	METEOR_SIG_FRAME_MODE	0x00000000
    600      1.1  wiz     char         dma_prog_loaded;
    601      1.1  wiz     struct meteor_mem *mem;	/* used to control sync. multi-frame output */
    602      1.1  wiz     u_long	synch_wait;	/* wait for free buffer before continuing */
    603      1.1  wiz     short	current;	/* frame number in buffer (1-frames) */
    604      1.1  wiz     short	rows;		/* number of rows in a frame */
    605      1.1  wiz     short	cols;		/* number of columns in a frame */
    606      1.1  wiz     int		capture_area_x_offset; /* Usually the full 640x480(NTSC) image is */
    607      1.1  wiz     int		capture_area_y_offset; /* captured. The capture area allows for */
    608      1.1  wiz     int		capture_area_x_size;   /* example 320x200 pixels from the centre */
    609      1.1  wiz     int		capture_area_y_size;   /* of the video image to be captured. */
    610      1.1  wiz     char	capture_area_enabled;  /* When TRUE use user's capture area. */
    611      1.1  wiz     int		pixfmt;         /* active pixel format (idx into fmt tbl) */
    612      1.1  wiz     int		pixfmt_compat;  /* Y/N - in meteor pix fmt compat mode */
    613      1.1  wiz     u_long	format;		/* frame format rgb, yuv, etc.. */
    614      1.1  wiz     short	frames;		/* number of frames allocated */
    615      1.1  wiz     int		frame_size;	/* number of bytes in a frame */
    616      1.1  wiz     u_long	fifo_errors;	/* number of fifo capture errors since open */
    617      1.1  wiz     u_long	dma_errors;	/* number of DMA capture errors since open */
    618      1.1  wiz     u_long	frames_captured;/* number of frames captured since open */
    619      1.1  wiz     u_long	even_fields_captured; /* number of even fields captured */
    620      1.1  wiz     u_long	odd_fields_captured; /* number of odd fields captured */
    621      1.1  wiz     u_long	range_enable;	/* enable range checking ?? */
    622      1.1  wiz     u_short     capcontrol;     /* reg 0xdc capture control */
    623      1.1  wiz     u_short     bktr_cap_ctl;
    624      1.1  wiz     volatile u_int	flags;
    625      1.1  wiz #define	METEOR_INITALIZED	0x00000001
    626      1.1  wiz #define	METEOR_OPEN		0x00000002
    627      1.1  wiz #define	METEOR_MMAP		0x00000004
    628      1.1  wiz #define	METEOR_INTR		0x00000008
    629      1.1  wiz #define	METEOR_READ		0x00000010	/* XXX never gets referenced */
    630      1.1  wiz #define	METEOR_SINGLE		0x00000020	/* get single frame */
    631      1.1  wiz #define	METEOR_CONTIN		0x00000040	/* continuously get frames */
    632      1.1  wiz #define	METEOR_SYNCAP		0x00000080	/* synchronously get frames */
    633      1.1  wiz #define	METEOR_CAP_MASK		0x000000f0
    634      1.1  wiz #define	METEOR_NTSC		0x00000100
    635      1.1  wiz #define	METEOR_PAL		0x00000200
    636      1.1  wiz #define	METEOR_SECAM		0x00000400
    637      1.1  wiz #define	BROOKTREE_NTSC		0x00000100	/* used in video open() and */
    638      1.1  wiz #define	BROOKTREE_PAL		0x00000200	/* in the kernel config */
    639      1.1  wiz #define	BROOKTREE_SECAM		0x00000400	/* file */
    640      1.1  wiz #define	METEOR_AUTOMODE		0x00000800
    641      1.1  wiz #define	METEOR_FORM_MASK	0x00000f00
    642      1.1  wiz #define	METEOR_DEV0		0x00001000
    643      1.1  wiz #define	METEOR_DEV1		0x00002000
    644      1.1  wiz #define	METEOR_DEV2		0x00004000
    645      1.1  wiz #define	METEOR_DEV3		0x00008000
    646      1.1  wiz #define METEOR_DEV_SVIDEO	0x00006000
    647      1.1  wiz #define METEOR_DEV_RGB		0x0000a000
    648      1.1  wiz #define	METEOR_DEV_MASK		0x0000f000
    649      1.1  wiz #define	METEOR_RGB16		0x00010000
    650      1.1  wiz #define	METEOR_RGB24		0x00020000
    651      1.1  wiz #define	METEOR_YUV_PACKED	0x00040000
    652      1.1  wiz #define	METEOR_YUV_PLANAR	0x00080000
    653      1.1  wiz #define	METEOR_WANT_EVEN	0x00100000	/* want even frame */
    654      1.1  wiz #define	METEOR_WANT_ODD		0x00200000	/* want odd frame */
    655      1.1  wiz #define	METEOR_WANT_MASK	0x00300000
    656      1.1  wiz #define METEOR_ONLY_EVEN_FIELDS	0x01000000
    657      1.1  wiz #define METEOR_ONLY_ODD_FIELDS	0x02000000
    658      1.1  wiz #define METEOR_ONLY_FIELDS_MASK 0x03000000
    659      1.1  wiz #define METEOR_YUV_422		0x04000000
    660      1.1  wiz #define	METEOR_OUTPUT_FMT_MASK	0x040f0000
    661      1.1  wiz #define	METEOR_WANT_TS		0x08000000	/* time-stamp a frame */
    662      1.1  wiz #define METEOR_RGB		0x20000000	/* meteor rgb unit */
    663      1.1  wiz #define METEOR_FIELD_MODE	0x80000000
    664      1.1  wiz     u_char	tflags;				/* Tuner flags (/dev/tuner) */
    665      1.1  wiz #define	TUNER_INITALIZED	0x00000001
    666      1.1  wiz #define	TUNER_OPEN		0x00000002
    667      1.1  wiz     u_char      vbiflags;			/* VBI flags (/dev/vbi) */
    668      1.1  wiz #define VBI_INITALIZED          0x00000001
    669      1.1  wiz #define VBI_OPEN                0x00000002
    670      1.1  wiz #define VBI_CAPTURE             0x00000004
    671      1.1  wiz     u_short	fps;		/* frames per second */
    672      1.1  wiz     struct meteor_video video;
    673      1.1  wiz     struct TVTUNER	tuner;
    674      1.1  wiz     struct CARDTYPE	card;
    675      1.1  wiz     u_char		audio_mux_select;	/* current mode of the audio */
    676      1.1  wiz     u_char		audio_mute_state;	/* mute state of the audio */
    677      1.1  wiz     u_char		format_params;
    678      1.1  wiz     u_long              current_sol;
    679      1.1  wiz     u_long              current_col;
    680      1.1  wiz     int                 clip_start;
    681      1.1  wiz     int                 line_length;
    682      1.1  wiz     int                 last_y;
    683      1.1  wiz     int                 y;
    684      1.1  wiz     int                 y2;
    685      1.1  wiz     int                 yclip;
    686      1.1  wiz     int                 yclip2;
    687      1.1  wiz     int                 max_clip_node;
    688      1.1  wiz     bktr_clip_t		clip_list[100];
    689      1.1  wiz     int                 reverse_mute;		/* Swap the GPIO values for Mute and TV Audio */
    690      1.1  wiz     int                 bt848_tuner;
    691      1.1  wiz     int                 bt848_card;
    692      1.1  wiz     u_long              id;
    693      1.1  wiz #define BT848_USE_XTALS 0
    694      1.1  wiz #define BT848_USE_PLL   1
    695      1.1  wiz     int			xtal_pll_mode;	/* Use XTAL or PLL mode for PAL/SECAM */
    696      1.1  wiz     int			remote_control;      /* remote control detected */
    697      1.1  wiz     int			remote_control_addr;   /* remote control i2c address */
    698      1.1  wiz     char		msp_version_string[9]; /* MSP version string 34xxx-xx */
    699      1.1  wiz     int			msp_addr;	       /* MSP i2c address */
    700      1.1  wiz     char		dpl_version_string[9]; /* DPL version string 35xxx-xx */
    701      1.1  wiz     int			dpl_addr;	       /* DPL i2c address */
    702      1.1  wiz     int                 slow_msp_audio;	       /* 0 = use fast MSP3410/3415 programming sequence */
    703      1.1  wiz 					       /* 1 = use slow MSP3410/3415 programming sequence */
    704  1.1.1.4  wiz 					       /* 2 = use Tuner's Mono audio output via the MSP chip */
    705  1.1.1.4  wiz     int                 msp_use_mono_source;   /* use Tuner's Mono audio output via the MSP chip */
    706  1.1.1.4  wiz     int                 audio_mux_present;     /* 1 = has audio mux on GPIO lines, 0 = no audio mux */
    707  1.1.1.4  wiz     int                 msp_source_selected;   /* 0 = TV source, 1 = Line In source, 2 = FM Radio Source */
    708      1.1  wiz 
    709      1.1  wiz };
    710      1.1  wiz 
    711      1.1  wiz typedef struct bktr_softc bktr_reg_t;
    712      1.1  wiz typedef struct bktr_softc* bktr_ptr_t;
    713      1.1  wiz 
    714      1.1  wiz #define Bt848_MAX_SIGN 16
    715      1.1  wiz 
    716      1.1  wiz struct bt848_card_sig {
    717      1.1  wiz   int card;
    718      1.1  wiz   int tuner;
    719      1.1  wiz   u_char signature[Bt848_MAX_SIGN];
    720      1.1  wiz };
    721      1.1  wiz 
    722      1.1  wiz 
    723      1.1  wiz /***********************************************************/
    724      1.1  wiz /* ioctl_cmd_t int on old versions, u_long on new versions */
    725      1.1  wiz /***********************************************************/
    726      1.1  wiz 
    727      1.1  wiz #if (__FreeBSD__ == 2)
    728      1.1  wiz typedef int ioctl_cmd_t;
    729      1.1  wiz #endif
    730      1.1  wiz 
    731      1.1  wiz #if defined(__FreeBSD__)
    732      1.1  wiz #if (__FreeBSD_version >= 300000)
    733      1.1  wiz typedef u_long ioctl_cmd_t;
    734      1.1  wiz #endif
    735      1.1  wiz #endif
    736      1.1  wiz 
    737      1.1  wiz #if defined(__NetBSD__) || defined(__OpenBSD__)
    738      1.1  wiz typedef u_long ioctl_cmd_t;
    739      1.1  wiz #endif
    740      1.1  wiz 
    741      1.1  wiz 
    742