!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/src/linux-2.4.18-xfs-1.1/drivers/media/video/   drwxr-xr-x
Free 318.36 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     bttv-cards.c (52.25 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
    bttv-cards.c

    this file has configuration informations - card-specific stuff
    like the big tvcards array for the most part

    Copyright (C) 1996,97,98 Ralph  Metzler (rjkm@thp.uni-koeln.de)
                           & Marcus Metzler (mocm@thp.uni-koeln.de)
    (c) 1999-2001 Gerd Knorr <kraxel@goldbach.in-berlin.de>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    
*/

#define __NO_VERSION__ 1

#include <linux/version.h>
#include <linux/delay.h>
#include <linux/module.h>
#include <linux/kmod.h>
#include <linux/init.h>
#include <linux/pci.h>

#include <asm/io.h>

#include "bttvp.h"
#include "tuner.h"

/* fwd decl */
static void hauppauge_eeprom(struct bttv *btv);
static void avermedia_eeprom(struct bttv *btv);

static void init_PXC200(struct bttv *btv);
#if 0
static void init_tea5757(struct bttv *btv);
#endif

static void winview_audio(struct bttv *btv, struct video_audio *v, int set);
static void lt9415_audio(struct bttv *btv, struct video_audio *v, int set);
static void avermedia_tvphone_audio(struct bttv *btv, struct video_audio *v,
                    int set);
static void terratv_audio(struct bttv *btv, struct video_audio *v, int set);
static void gvbctv3pci_audio(struct bttv *btv, struct video_audio *v, int set);
static void winfast2000_audio(struct bttv *btv, struct video_audio *v, int set);
static void pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set);

/* config variables */
static int triton1=0;
static int vsfx=0;
int no_overlay=-1;
static unsigned int card[4]  = { -1, -1, -1, -1 };
static unsigned int pll[4]   = { -1, -1, -1, -1 };
static unsigned int tuner[4] = { -1, -1, -1, -1 };
#ifdef MODULE
static unsigned int autoload = 1;
#else
static unsigned int autoload = 0;
#endif
static unsigned int gpiomask = -1;
static unsigned int audioall = -1;
static unsigned int audiomux[5] = { -1, -1, -1, -1, -1 };

/* insmod options */
MODULE_PARM(triton1,"i");
MODULE_PARM_DESC(triton1,"set ETBF pci config bit "
         "[enable bug compatibility for triton1 + others]");
MODULE_PARM(vsfx,"i");
MODULE_PARM_DESC(vsfx,"set VSFX pci config bit [yet another chipset flaw workaround]");
MODULE_PARM(no_overlay,"i");
MODULE_PARM(card,"1-4i");
MODULE_PARM_DESC(card,"specify TV/grabber card model, see CARDLIST file for a list");
MODULE_PARM(pll,"1-4i");
MODULE_PARM_DESC(pll,"specify installed crystal (0=none, 28=28 MHz, 35=35 MHz)");
MODULE_PARM(tuner,"1-4i");
MODULE_PARM_DESC(tuner,"specify installed tuner type");
MODULE_PARM(autoload,"i");
MODULE_PARM_DESC(autoload,"automatically load i2c modules like tuner.o, default is 1 (yes)");
MODULE_PARM(gpiomask,"i");
MODULE_PARM(audioall,"i");
MODULE_PARM(audiomux,"1-5i");

/* kernel args */
#ifndef MODULE
static int __init p_card(char *str)  { return bttv_parse(str,BTTV_MAX,card);  }
static int __init p_pll(char *str)   { return bttv_parse(str,BTTV_MAX,pll);   }
static int __init p_tuner(char *str) { return bttv_parse(str,BTTV_MAX,tuner); }
__setup("bttv.card=",  p_card);
__setup("bttv.pll=",   p_pll);
__setup("bttv.tuner=", p_tuner);

int __init bttv_parse(char *str, int max, int *vals)
{
    int i,number,res = 2;
    
    for (i = 0; res == 2 && i < max; i++) {
        res = get_option(&str,&number);
        if (res)
            vals[i] = number;
    }
    return 1;
}
#endif

/* ----------------------------------------------------------------------- */
/* list of card IDs for bt878+ cards                                       */

static struct CARD {
    unsigned id;
    int cardnr;
    char *name;
} cards[] __devinitdata = {
    { 0x13eb0070, BTTV_HAUPPAUGE878,  "Hauppauge WinTV" },
    { 0x39000070, BTTV_HAUPPAUGE878,  "Hauppauge WinTV-D" },
    { 0x45000070, BTTV_HAUPPAUGE878,  "Hauppauge WinTV/PVR" },
    { 0xff000070, BTTV_HAUPPAUGE878,  "Osprey-100" },
    { 0xff010070, BTTV_HAUPPAUGE878,  "Osprey-200" },

    { 0x00011002, BTTV_ATI_TVWONDER,  "ATI TV Wonder" },
    { 0x00031002, BTTV_ATI_TVWONDERVE,"ATI TV Wonder/VE" },

    { 0x6606107d, BTTV_WINFAST2000,   "Leadtek WinFast TV 2000" },
    { 0x263610b4, BTTV_STB2,          "STB TV PCI FM, P/N 6000704" },
     { 0x402010fc, BTTV_GVBCTV3PCI,    "I-O Data Co. GV-BCV3/PCI" },
    { 0x405010fc, BTTV_GVBCTV4PCI,    "I-O Data Co. GV-BCV4/PCI" },

    { 0x1200bd11, BTTV_PINNACLE,      "Pinnacle PCTV" },
    { 0x001211bd, BTTV_PINNACLE,      "Pinnacle PCTV" },
    { 0x001c11bd, BTTV_PINNACLE,      "Pinnacle PCTV Sat" },

    { 0x3000121a, BTTV_VOODOOTV_FM,   "3Dfx VoodooTV FM/ VoodooTV 200" },
    
    { 0x3000144f, BTTV_MAGICTVIEW063, "(Askey Magic/others) TView99 CPH06x" },
    { 0x3002144f, BTTV_MAGICTVIEW061, "(Askey Magic/others) TView99 CPH05x" },
    { 0x3005144f, BTTV_MAGICTVIEW061, "(Askey Magic/others) TView99 CPH061/06L (T1/LC)" },
    
    { 0x00011461, BTTV_AVPHONE98,     "AVerMedia TVPhone98" },
    { 0x00021461, BTTV_AVERMEDIA98,   "AVermedia TVCapture 98" },
    { 0x00031461, BTTV_AVPHONE98,     "AVerMedia TVPhone98" },
    { 0x00041461, BTTV_AVERMEDIA98,   "AVerMedia TVCapture 98" },

    { 0x300014ff, BTTV_MAGICTVIEW061, "TView 99 (CPH061)" },
    { 0x300214ff, BTTV_PHOEBE_TVMAS,  "Phoebe TV Master" },

    { 0x1117153b, BTTV_TERRATVALUE,   "Terratec TValue" },
    { 0x1118153b, BTTV_TERRATVALUE,   "Terratec TValue" },
    { 0x1119153b, BTTV_TERRATVALUE,   "Terratec TValue" },
    { 0x111a153b, BTTV_TERRATVALUE,   "Terratec TValue" },
    { 0x1123153b, BTTV_TERRATVRADIO,  "Terratec TV Radio+" },
    { 0x1127153b, BTTV_TERRATV,       "Terratec TV+"    },
    { 0x1134153b, BTTV_TERRATVALUE,   "Terratec TValue" },
    { 0x1135153b, BTTV_TERRATVALUER,  "Terratec TValue Radio" },

    { 0x400a15b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV" },
    { 0x400d15b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
    { 0x401015b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
    { 0x401615b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },

        { 0x010115cb, BTTV_GMV1,          "AG GMV1" },
    { 0x010114c7, BTTV_MODTEC_205,    "Modular Technology PCTV" },
    { 0x18501851, BTTV_CHRONOS_VS2,   "Flyvideo 98 (LR50)/ Chronos Video Shuttle II" },
    { 0x18511851, BTTV_FLYVIDEO98EZ,  "Flyvideo 98EZ (LR51)/ CyberMail AV" },
    { 0x18521852, BTTV_TYPHOON_TVIEW, "Flyvideo 98FM (LR50)/ Typhoon TView TV/FM Tuner" },
    { 0x10b42636, BTTV_HAUPPAUGE878,  "STB ???" },
    { 0x217d6606, BTTV_WINFAST2000,   "Leadtek WinFast TV 2000" },

    { 0, -1, NULL }
};

/* ----------------------------------------------------------------------- */
/* array with description for bt848 / bt878 tv/grabber cards               */

struct tvcard bttv_tvcards[] = {
{
/* ---- card 0x00 ---------------------------------- */
    name:        " *** UNKNOWN/GENERIC *** ",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    muxsel:        { 2, 3, 1, 0},
    tuner_type:    -1,
},{
    name:        "MIRO PCTV",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    15,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 2, 0, 0, 0, 10},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "Hauppauge (bt848)",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    7,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 1, 2, 3, 4},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "STB",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    7,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 4, 0, 2, 3, 1},
    no_msp34xx:    1,
    needs_tvaudio:    1,
    tuner_type:    -1,
},{

/* ---- card 0x04 ---------------------------------- */
    name:        "Intel",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        -1,
    gpiomask:    7,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 1, 2, 3, 4},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "Diamond DTV2000",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    3,
    muxsel:        { 2, 3, 1, 0},
    audiomux:    { 0, 1, 0, 1, 3},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "AVerMedia TVPhone",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        3,
    muxsel:        { 2, 3, 1, 1},
    gpiomask:    0x0f,
    audiomux:    { 0x0c, 0x04, 0x08, 0x04, 0},
    /*                0x04 for some cards ?? */
    needs_tvaudio:    1,
    tuner_type:    -1,
    audio_hook:    avermedia_tvphone_audio,
},{
    name:        "MATRIX-Vision MV-Delta",
    video_inputs:    5,
    audio_inputs:    1,
    tuner:        -1,
    svhs:        3,
    gpiomask:    0,
    muxsel:        { 2, 3, 1, 0, 0},
    audiomux:    {0 },
    needs_tvaudio:    1,
    tuner_type:    -1,
},{

/* ---- card 0x08 ---------------------------------- */
    name:        "Fly Video II (Bt848)",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xc00,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 0xc00, 0x800, 0x400, 0xc00, 0},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "TurboTV",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    3,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 1, 1, 2, 3, 0},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "Hauppauge (bt878)",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x0f, /* old: 7 */
    muxsel:        { 2, 0, 1, 1},
    audiomux:    { 0, 1, 2, 3, 4},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{
    name:        "MIRO PCTV pro",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x3014f,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0x20001,0x10001, 0, 0,10},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{

/* ---- card 0x0c ---------------------------------- */
    name:        "ADS Technologies Channel Surfer TV",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    15,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 13, 14, 11, 7, 0, 0},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "AVerMedia TVCapture 98",
    video_inputs:    3,
    audio_inputs:    4,
    tuner:        0,
    svhs:        2,
    gpiomask:    15,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 13, 14, 11, 7, 0, 0},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{
    name:        "Aimslab VHX",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    7,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 1, 2, 3, 4},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "Zoltrix TV-Max",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    15,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    {0 , 0, 1 , 0, 10},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{

/* ---- card 0x10 ---------------------------------- */
    name:        "Pixelview PlayTV (bt878)",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x01fe00,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0x01c000, 0, 0x018000, 0x014000, 0x002000, 0 },
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{
    name:        "Leadtek WinView 601",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x8300f8,
    muxsel:        { 2, 3, 1, 1,0},
    audiomux:    { 0x4fa007,0xcfa007,0xcfa007,0xcfa007,0xcfa007,0xcfa007},
    needs_tvaudio:    1,
    tuner_type:    -1,
    audio_hook:    winview_audio,
},{
    name:        "AVEC Intercapture",
    video_inputs:    3,
    audio_inputs:    2,
    tuner:        0,
    svhs:        2,
    gpiomask:    0,
    muxsel:        {2, 3, 1, 1},
    audiomux:    {1, 0, 0, 0, 0},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "LifeView FlyKit w/o Tuner",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        -1,
    svhs:        -1,
    gpiomask:    0x8dff00,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0 },
    no_msp34xx:    1,
    tuner_type:    -1,
},{

/* ---- card 0x14 ---------------------------------- */
    name:        "CEI Raffles Card",
    video_inputs:    3,
    audio_inputs:    3,
    tuner:        0,
    svhs:        2,
    muxsel:        {2, 3, 1, 1},
    tuner_type:    -1,
},{
    name:        "Lucky Star Image World ConferenceTV",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x00fffe07,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 131072, 1, 1638400, 3, 4},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    TUNER_PHILIPS_PAL_I,
},{
    name:        "Phoebe Tv Master + FM",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xc00,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    {0, 1, 0x800, 0x400, 0xc00, 0},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "Modular Technology MM205 PCTV, bt878",
    video_inputs:    2,
    audio_inputs:    1,
    tuner:        0,
    svhs:        -1,
    gpiomask:    7,
    muxsel:        { 2, 3 },
    audiomux:    { 0, 0, 0, 0, 0 },
    no_msp34xx:    1,
    pll:            PLL_28,
    tuner_type:     TUNER_ALPS_TSBB5_PAL_I,
},{

/* ---- card 0x18 ---------------------------------- */
    name:        "[many vendors] CPH05X/06X (bt878)",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xe00,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    {0x400, 0x400, 0x400, 0x400, 0xc00},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{
    name:        "Terratec/Vobis TV-Boostar",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    16777215,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 131072, 1, 1638400, 3,4},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "Newer Hauppauge WinCam (bt878)",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        3,
    gpiomask:    7,
    muxsel:        { 2, 0, 1, 1},
    audiomux:    { 0, 1, 2, 3, 4},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "MAXI TV Video PCI2",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xffff,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 1, 2, 3, 0xc00},
    needs_tvaudio:    1,
    tuner_type:    TUNER_PHILIPS_SECAM,
},{

/* ---- card 0x1c ---------------------------------- */
    name:        "Terratec TerraTV+",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x70000,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0x20000, 0x30000, 0x10000, 0x00000, 0x40000},
    needs_tvaudio:    1,
    tuner_type:    TUNER_PHILIPS_PAL,
    audio_hook:    terratv_audio,
},{
    /* Jannik Fritsch <jannik@techfak.uni-bielefeld.de> */
    name:        "Imagenation PXC200",
    video_inputs:    5,
    audio_inputs:    1,
    tuner:        -1,
    svhs:        1, /* was: 4 */
    gpiomask:    0,
    muxsel:        { 2, 3, 1, 0, 0},
    audiomux:    { 0 },
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "FlyVideo 98",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x1800,  //0x8dfe00
    muxsel:        {2, 3, 1, 1},
    audiomux:    { 0, 0x0800, 0x1000, 0x1000, 0x1800, 0 },
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "iProTV",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    1,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 1, 0, 0, 0, 0 },
    tuner_type:    -1,
},{

/* ---- card 0x20 ---------------------------------- */
    name:        "Intel Create and Share PCI",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    7,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 4, 4, 4, 4, 4},
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "Terratec TerraTValue",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xffff00,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0x500, 0, 0x300, 0x900, 0x900},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    TUNER_PHILIPS_PAL,
},{
    name:        "Leadtek WinFast 2000",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xc33000,
    muxsel:        { 2, 3, 1, 1,0},
    audiomux:    { 0x422000,0x001000,0x621100,0x620000,0x800000,0x620000},
    needs_tvaudio:    0,
    pll:        PLL_28,
    tuner_type:    -1,
    audio_hook:    winfast2000_audio,
},{
    name:        "Flyvideo 98 (LR50Q) / Chronos Video Shuttle II",
    video_inputs:    3,
    audio_inputs:    3,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x1800,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 0x800, 0x1000, 0x1000, 0x1800},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{

/* ---- card 0x24 ---------------------------------- */
    name:        "Flyvideo 98FM (LR50Q) / Typhoon TView TV/FM Tuner",
    video_inputs:    3,
    audio_inputs:    3,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x1800,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 0x800, 0x1000, 0x1000, 0x1800, 0 },
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
    has_radio:    1,
},{
    name:        "PixelView PlayTV pro",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xff,
    muxsel:        { 2, 3, 1, 1 },
    audiomux:    { 0x21, 0x20, 0x24, 0x2c, 0x29, 0x29 },
    no_msp34xx:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{
    name:        "TView99 CPH06X",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x551e00,
    muxsel:        { 2, 3, 1, 0},
    audiomux:    { 0x551400, 0x551200, 0, 0, 0x551c00, 0x551200 },
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{
    name:        "Pinnacle PCTV Studio/Rave",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x03000F,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 2, 0, 0, 0, 1},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{

/* ---- card 0x28 ---------------------------------- */
    name:        "STB2",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    7,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 4, 0, 2, 3, 1},
    no_msp34xx:    1,
    needs_tvaudio:    1,
    tuner_type:    -1,
},{
    name:        "AVerMedia TVPhone 98",
    video_inputs:    3,
    audio_inputs:    4,
    tuner:        0,
    svhs:        2,
    gpiomask:    12,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 13, 4, 11, 7, 0, 0},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
    has_radio:    1,
},{
    name:        "ProVideo PV951", /* pic16c54 */
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 0, 0, 0, 0},
    no_msp34xx:    1,
    pll:        PLL_28,
    tuner_type:    1,
},{
    name:        "Little OnAir TV",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xe00b,
    muxsel:        {2, 3, 1, 1},
    audiomux:    {0xff9ff6, 0xff9ff6, 0xff1ff7, 0, 0xff3ffc},
    no_msp34xx:    1,
    tuner_type:    -1,
},{

/* ---- card 0x2c ---------------------------------- */
    name:        "Sigma TVII-FM",
    video_inputs:    2,
    audio_inputs:    1,
    tuner:        0,
    svhs:        -1,
    gpiomask:    3,
    muxsel:        {2, 3, 1, 1},
    audiomux:    {1, 1, 0, 2, 3},
    no_msp34xx:    1,
    pll:        PLL_NONE,
    tuner_type:    -1,
},{
    name:        "MATRIX-Vision MV-Delta 2",
    video_inputs:    5,
    audio_inputs:    1,
    tuner:        -1,
    svhs:        3,
    gpiomask:    0,
    muxsel:        { 2, 3, 1, 0, 0},
    audiomux:    {0 },
    no_msp34xx:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{
    name:        "Zoltrix Genie TV/FM",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xbcf03f,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0xbc803f, 0xbc903f, 0xbcb03f, 0, 0xbcb03f},
    no_msp34xx:    1,
    pll:        PLL_28,
    tuner_type:    21,
},{
    name:        "Terratec TV/Radio+",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x1f0000,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0xe2ffff, 0xebffff, 0, 0, 0xe0ffff, 0xe2ffff },
    no_msp34xx:    1,
    pll:        PLL_35,
    tuner_type:    1,
    has_radio:    1,
},{

/* ---- card 0x30 ---------------------------------- */
    name:        "Dynalink Magic TView ",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    15,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    {2,0,0,0,1},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    -1,
},{
    name:        "GV-BCTV3",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x010f00,
    muxsel:        {2, 3, 0, 0},
    audiomux:    {0x10000, 0, 0x10000, 0, 0, 0},
    no_msp34xx:    1,
    pll:        PLL_28,
    tuner_type:    TUNER_ALPS_TSHC6_NTSC,
    audio_hook:    gvbctv3pci_audio,
},{
    name:        "Prolink PV-BT878P+4E / PixelView PlayTV PAK / Lenco MXTV-9578 CP",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xAA0000,
    muxsel:        { 2,3,1,1 },
    audiomux:    { 0x20000, 0, 0x80000, 0x80000, 0xa8000, 0x46000  },
    no_msp34xx:    1,
    pll:        PLL_28,
    tuner_type:    TUNER_PHILIPS_PAL_I,
},{
    name:           "Eagle Wireless Capricorn2 (bt878A)",
    video_inputs:   4,
    audio_inputs:   1,
    tuner:          0,
    svhs:           2,
    gpiomask:       7,
    muxsel:         { 2, 0, 1, 1},
    audiomux:       { 0, 1, 2, 3, 4},
    pll:            PLL_28,
    tuner_type:     -1 /* TUNER_ALPS_TMDH2_NTSC */,
},{

/* ---- card 0x34 ---------------------------------- */
    /* David Härdeman <david@2gen.com> */
    name:           "Pinnacle PCTV Studio Pro",
    video_inputs:   3,
    audio_inputs:   1,
    tuner:          0,
    svhs:           2,
    gpiomask:       0x03000F,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 1, 0x10001, 0, 0, 10},
    needs_tvaudio:  1,
    pll:            PLL_28,
    tuner_type:     -1,
},{
    /* Claas Langbehn <claas@bigfoot.com>,
       Sven Grothklags <sven@upb.de> */
    name:        "Typhoon TView RDS + FM Stereo / KNC1 TV Station RDS",
    video_inputs:    3,
    audio_inputs:    3,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x1c,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0, 0, 0x10, 8, 4 },
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    TUNER_PHILIPS_PAL_I,
    has_radio:    1,
},{
    /* Tim Röstermundt <rosterm@uni-muenster.de>
       in de.comp.os.unix.linux.hardware:
        options bttv card=0 pll=1 radio=1 gpiomask=0x18e0
        audiomux=0x44c71f,0x44d71f,0,0x44d71f,0x44dfff
        options tuner type=5 */
    name:        "Lifetec LT 9415 TV (LR90 Rev.F)",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x18e0,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0x0000,0x0800,0x1000,0x1000,0x18e0 },
               /* 0x0000: Tuner normal stereo
              0x0080: Tuner A2 SAP (second audio program = Zweikanalton)
              0x0880: Tuner A2 stereo */
    pll:        PLL_28,
    tuner_type:    TUNER_PHILIPS_PAL,
    audio_hook:    lt9415_audio,
    has_radio:    1,
},{
    /* Miguel Angel Alvarez <maacruz@navegalia.com>
       old Easy TV BT848 version (model CPH031) */
    name:           "BESTBUY Easy TV",
    video_inputs:    4,
    audio_inputs:   1,
    tuner:          0,
    svhs:           2,
    gpiomask:       0xF,
    muxsel:         { 2, 3, 1, 0},
    audiomux:       { 2, 0, 0, 0, 10},
    needs_tvaudio:  0,
    pll:        PLL_28,
    tuner_type:    TUNER_TEMIC_PAL,
},{

/* ---- card 0x38 ---------------------------------- */
    /* Gordon Heydon <gjheydon@bigfoot.com ('98) */
    name:           "FlyVideo '98/FM",
    video_inputs:   3,
    audio_inputs:   3,
    tuner:          0,
    svhs:           2,
    gpiomask:       0x1800,
    muxsel:         { 2, 3, 0, 1},
    audiomux:       { 0, 0x800, 0x1000, 0x1000, 0x1800, 0 },
    needs_tvaudio:  1,
    pll:            PLL_28,
    tuner_type:     5,
},{
    /* This is the ultimate cheapo capture card 
     * just a BT848A on a small PCB!
     * Steve Hosgood <steve@equiinet.com> */
    name:           "GrandTec 'Grand Video Capture'",
    video_inputs:   2,
    audio_inputs:   0,
    tuner:          -1,
    svhs:           1,
    gpiomask:       0,
    muxsel:         { 3, 1 },
    audiomux:       { 0 },
    needs_tvaudio:  0,
    no_msp34xx:     1,
    pll:            PLL_35,
    tuner_type:     -1,
},{
        /* Daniel Herrington <daniel.herrington@home.com> */
        name:           "Phoebe TV Master Only (No FM)",
        video_inputs:   3,
        audio_inputs:   1,
        tuner:          0,
        svhs:           2,
        gpiomask:       0xe00,
        muxsel:         { 2, 3, 1, 1},
        audiomux:       { 0x400, 0x400, 0x400, 0x400, 0x800, 0x400 },
        needs_tvaudio:  1,
        pll:            PLL_NONE,
        tuner_type:     TUNER_TEMIC_4036FY5_NTSC,
},{
    /* Matti Mottus <mottus@physic.ut.ee> */
    name:        "TV Capturer",
    video_inputs:    4,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
        gpiomask:       0x03000F,
    muxsel:        { 2, 3, 1, 0},
        audiomux:       { 2,0,0,0,1 },
    pll:            PLL_28,
    tuner_type:    0,
},{

/* ---- card 0x3c ---------------------------------- */
    /* Philip Blundell <philb@gnu.org> */
    name:           "MM100PCTV",
    video_inputs:   2,
    audio_inputs:   2,
    gpiomask:       11,
    muxsel:         { 2, 3, 1, 1},
    audiomux:       { 2, 0, 0, 1, 8},
    pll:            PLL_NONE,
    tuner_type:     TUNER_TEMIC_PAL,

},{
    /* Adrian Cox <adrian@humboldt.co.uk */
    name:            "AG Electronics GMV1",
    video_inputs:   2,
    audio_inputs:   0,
    tuner:            -1,
    svhs:            1,
    gpiomask:       0xF,
    muxsel:            { 2, 2},
    audiomux:       { },
    no_msp34xx:     1,
    needs_tvaudio:  0,
    pll:            PLL_28,
    tuner_type:     -1,
},{
    /* Miguel Angel Alvarez <maacruz@navegalia.com>
       new Easy TV BT878 version (model CPH061) 
       special thanks to Informatica Mieres for providing the card */
    name:           "BESTBUY Easy TV (bt878)",
    video_inputs:    3,
    audio_inputs:   2,
    tuner:          0,
    svhs:           2,
    gpiomask:       0xFF,
    muxsel:         { 2, 3, 1, 0},
    audiomux:       { 1, 0, 4, 4, 9},
    needs_tvaudio:  0,
    pll:        PLL_28,
    tuner_type:    TUNER_PHILIPS_PAL,
},{
    /* Lukas Gebauer <geby@volny.cz> */
    name:        "ATI TV-Wonder",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xf03f,
    muxsel:        { 2, 3, 0, 1},
    audiomux:    { 0xbffe, 0, 0xbfff, 0, 0xbffe},
    pll:        PLL_28,
    tuner_type:    TUNER_TEMIC_4006FN5_MULTI_PAL,
},{

/* ---- card 0x40 ---------------------------------- */
    /* Lukas Gebauer <geby@volny.cz> */
    name:        "ATI TV-Wonder VE",
    video_inputs:    2,
    audio_inputs:    1,
    tuner:        0,
    svhs:        -1,
    gpiomask:    1,
    muxsel:        { 2, 3, 0, 1},
    audiomux:    { 0, 0, 1, 0, 0},
    no_msp34xx:    1,
    pll:        PLL_28,
    tuner_type:    TUNER_TEMIC_4006FN5_MULTI_PAL,
},{
    /* DeeJay <deejay@westel900.net (2000S) */
    name:           "FlyVideo 2000S",
    video_inputs:   3,
    audio_inputs:   3,
    tuner:          0,
    svhs:           2,
    gpiomask:    0x18e0,
    muxsel:        { 2, 3, 0, 1},
    audiomux:    { 0,0x18e0,0x1000,0x1000,0x1080, 0x1080 },
    needs_tvaudio:  1,
    pll:            PLL_28,
    tuner_type:     5,
},{
    name:        "Terratec TValueRadio",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0xffff00,
    muxsel:        { 2, 3, 1, 1},
    audiomux:    { 0x500, 0x500, 0x300, 0x900, 0x900},
    needs_tvaudio:    1,
    pll:        PLL_28,
    tuner_type:    TUNER_PHILIPS_PAL,
    has_radio:    1,
},{
    /* TANAKA Kei <peg00625@nifty.com> */
    name:           "GV-BCTV4/PCI",
    video_inputs:   3,
    audio_inputs:   1,
    tuner:          0,
    svhs:           2,
    gpiomask:       0x010f00,
    muxsel:         {2, 3, 0, 0},
    audiomux:       {0x10000, 0, 0x10000, 0, 0, 0},
    no_msp34xx:     1,
    pll:            PLL_28,
    tuner_type:     TUNER_SHARP_2U5JF5540_NTSC,
    audio_hook:     gvbctv3pci_audio,
},{

/* ---- card 0x44 ---------------------------------- */
        name:           "3Dfx VoodooTV FM (Euro), VoodooTV 200 (USA)",
    // try "insmod msp3400 simple=0" if you have
    // sound problems with this card.
        video_inputs:   4,
        audio_inputs:   1,
        tuner:          0,
        svhs:           -1,
        gpiomask:       0x4f8a00,
                    // 0x100000: 1=MSP enabled (0=disable again)
            // 0x010000: somehow influences tuner picture quality (?)
        audiomux:       {0x947fff, 0x987fff,0x947fff,0x947fff},
                        //tvtuner, radio,   external,internal,mute,stereo
        muxsel:         { 2, 3 ,0 ,1}, /* tuner, Composit, SVid, Composit-on-Svid-adapter*/
        tuner_type:     TUNER_MT2032,
    pll:        PLL_28,
    has_radio:    1,
},{
    /* Philip Blundell <pb@nexus.co.uk> */
    name:           "Active Imaging AIMMS",
    video_inputs:   1,
    audio_inputs:   0,
    tuner:          -1,
    tuner_type:     -1,
    pll:            PLL_28,
    muxsel:         { 2 },
    gpiomask:       0
},{
        /* Tomasz Pyra <hellfire@sedez.iq.pl> */
        name:           "PV-BT878P+",
        video_inputs:   3,
        audio_inputs:   4,
        tuner:          0,
        svhs:           2,
        gpiomask:       15,
        muxsel:         { 2, 3, 1, 1},
        audiomux:       { 0, 0, 11, 7, 13, 0},
        needs_tvaudio:  1,
        pll:            PLL_28,
        tuner_type:     25,
},{
    name:        "Flyvideo 98EZ (capture only)",
    video_inputs:    4,
    audio_inputs:   0,
    tuner:        -1,
    svhs:        2,
    muxsel:        { 2, 3, 1, 1}, // AV1, AV2, SVHS, CVid adapter on SVHS
    pll:        PLL_28,
    no_msp34xx:    1,
},{

/* ---- card 0x48 ---------------------------------- */
    /* Dariusz Kowalewski <darekk@automex.pl> */
    name:        "Prolink PV-BT878P+9B (PlayTV Pro rev.9B FM+NICAM)",
    video_inputs:    3,
    audio_inputs:    1,
    tuner:        0,
    svhs:        2,
    gpiomask:    0x3f,
    muxsel:        { 2, 3, 0, 1 },
    audiomux:    { 0x01, 0x00, 0x03, 0x03, 0x09, 0x02 },
    needs_tvaudio:  1,
    no_msp34xx:    1,
    no_tda9875:    1,
    pll:        PLL_28,
    tuner_type:    -1,
    audio_hook:    pvbt878p9b_audio,
    has_radio:    1,
}
};

const int bttv_num_tvcards = (sizeof(bttv_tvcards)/sizeof(struct tvcard));

/* ----------------------------------------------------------------------- */

static unsigned char eeprom_data[256];

/*
 * identify card
 */
void __devinit bttv_idcard(struct bttv *btv)
{
    unsigned int gpiobits;
    int i,type;
    unsigned short tmp;

    /* read PCI subsystem ID */
    pci_read_config_word(btv->dev, PCI_SUBSYSTEM_ID, &tmp);
    btv->cardid = tmp << 16;
    pci_read_config_word(btv->dev, PCI_SUBSYSTEM_VENDOR_ID, &tmp);
    btv->cardid |= tmp;

    if (0 != btv->cardid && 0xffffffff != btv->cardid) {
        /* look for the card */
        for (type = -1, i = 0; cards[i].id != 0; i++)
            if (cards[i].id  == btv->cardid)
                type = i;
        
        if (type != -1) {
            /* found it */
            printk(KERN_INFO "bttv%d: detected: %s [card=%d], "
                   "PCI subsystem ID is %04x:%04x\n",
                   btv->nr,cards[type].name,cards[type].cardnr,
                   btv->cardid & 0xffff, btv->cardid >> 16);
            btv->type = cards[type].cardnr;
        } else {
            /* 404 */
            printk(KERN_INFO "bttv%d: subsystem: %04x:%04x (UNKNOWN)\n",
                   btv->nr, btv->cardid&0xffff, btv->cardid>>16);
            printk(KERN_DEBUG "please mail id, board name and "
                   "the correct card= insmod option to kraxel@bytesex.org\n");
        }
    }

    /* let the user override the autodetected type */
    if (card[btv->nr] >= 0 && card[btv->nr] < bttv_num_tvcards)
        btv->type=card[btv->nr];
    
    /* print which card config we are using */
    sprintf(btv->video_dev.name,"BT%d%s(%.23s)",
        btv->id,
        (btv->id==848 && btv->revision==0x12) ? "A" : "",
        bttv_tvcards[btv->type].name);
    printk(KERN_INFO "bttv%d: using: %s [card=%d,%s]\n",btv->nr,
           btv->video_dev.name,btv->type,
           (card[btv->nr] >= 0 && card[btv->nr] < bttv_num_tvcards) ?
           "insmod option" : "autodetected");

    /* overwrite gpio stuff ?? */
    if (-1 == audioall && -1 == audiomux[0])
        return;

    if (-1 != audiomux[0]) {
        gpiobits = 0;
        for (i = 0; i < 5; i++) {
            bttv_tvcards[btv->type].audiomux[i] = audiomux[i];
            gpiobits |= audiomux[i];
        }
    } else {
        gpiobits = audioall;
        for (i = 0; i < 5; i++) {
            bttv_tvcards[btv->type].audiomux[i] = audioall;
        }
    }
    bttv_tvcards[btv->type].gpiomask = (-1 != gpiomask) ? gpiomask : gpiobits;
    printk(KERN_INFO "bttv%d: gpio config override: mask=0x%x, mux=",
           btv->nr,bttv_tvcards[btv->type].gpiomask);
    for (i = 0; i < 5; i++) {
        printk("%s0x%x", i ? "," : "", bttv_tvcards[btv->type].audiomux[i]);
    }
    printk("\n");
}

/*
 * (most) board specific initialisations goes here
 */

int miro_tunermap[] = { 0,6,2,3,   4,5,6,0,  3,0,4,5,  5,2,16,1,
            14,2,17,1, 4,1,4,3,  1,2,16,1, 4,4,4,4 };
int miro_fmtuner[]  = { 0,0,0,0,   0,0,0,0,  0,0,0,0,  0,0,0,1,
            1,1,1,1,   1,1,1,0,  0,0,0,0,  0,0,0,0 };

void __devinit bttv_init_card(struct bttv *btv)
{
    /* miro/pinnacle */
        if (btv->type == BTTV_MIRO      ||
        btv->type == BTTV_MIROPRO   ||
        btv->type == BTTV_PINNACLE  ||
        btv->type == BTTV_PINNACLEPRO) {
        int id,msp;
        id  = ((btread(BT848_GPIO_DATA)>>10) & 31) -1;
        msp = bttv_I2CRead(btv, I2C_MSP3400, "MSP34xx");
        btv->tuner_type = miro_tunermap[id];
        if (0 == (btread(BT848_GPIO_DATA) & 0x20)) {
            btv->has_radio = 1;
            if (!miro_fmtuner[id]) {
                btv->has_matchbox = 1;
                btv->mbox_we    = (1<<6);
                btv->mbox_most  = (1<<7);
                btv->mbox_clk   = (1<<8);
                btv->mbox_data  = (1<<9);
                btv->mbox_mask  = (1<<6)|(1<<7)|(1<<8)|(1<<9);
            }
        } else {
            btv->has_radio = 0;
        }
        if (-1 != msp) {
            if (btv->type == BTTV_MIRO)
                btv->type = BTTV_MIROPRO;
            if (btv->type == BTTV_PINNACLE)
                btv->type = BTTV_PINNACLEPRO;
        }
        if (bttv_verbose)
            printk(KERN_INFO "bttv%d: miro: id=%d tuner=%d "
                   "radio=%s stereo=%s\n",
                   btv->nr, id+1, btv->tuner_type,
                   !btv->has_radio ? "no" :
                   (btv->has_matchbox ? "matchbox" : "fmtuner"),
                   (-1 == msp) ? "no" : "yes");
#if 0
        if (btv->has_matchbox) {
            if (bttv_verbose)
                printk(KERN_INFO "Initializing TEA5757...\n");
            init_tea5757(btv);
        }
#endif
    }

        if (btv->type == BTTV_HAUPPAUGE || btv->type == BTTV_HAUPPAUGE878) {
        /* pick up some config infos from the eeprom */
        bttv_readee(btv,eeprom_data,0xa0);
                hauppauge_eeprom(btv);
        }

    if (btv->type == BTTV_AVERMEDIA98 || btv->type == BTTV_AVPHONE98) {
        bttv_readee(btv,eeprom_data,0xa0);
        avermedia_eeprom(btv);
    }

     if (btv->type == BTTV_PXC200)
        init_PXC200(btv);

    if (btv->type == BTTV_VHX) {
        btv->has_radio    = 1;
        btv->has_matchbox = 1;
        btv->mbox_we      = 0x20;
        btv->mbox_most    = 0;
        btv->mbox_clk     = 0x08;
        btv->mbox_data    = 0x10;
        btv->mbox_mask    = 0x38;
    }

    if (btv->type == BTTV_LIFETEC_9415) {
        if (btread(BT848_GPIO_DATA) & 0x4000)
            printk("bttv%d: lifetec: tv mono/fm stereo card\n", btv->nr);
        else
            printk("bttv%d: lifetec: stereo(TDA9821) card\n",btv->nr);
    }

    if (btv->type == BTTV_MAGICTVIEW061) {
        if(btv->cardid == 0x4002144f) {
            btv->has_radio=1;
            printk("bttv%d: radio detected by subsystem id (CPH05x)\n",btv->nr);
        }
    }

    /* pll configuration */
        if (!(btv->id==848 && btv->revision==0x11)) {
        /* defaults from card list */
        if (PLL_28 == bttv_tvcards[btv->type].pll) {
            btv->pll.pll_ifreq=28636363;
            btv->pll.pll_crystal=BT848_IFORM_XT0;
        }
        if (PLL_35 == bttv_tvcards[btv->type].pll) {
            btv->pll.pll_ifreq=35468950;
            btv->pll.pll_crystal=BT848_IFORM_XT1;
        }
        /* insmod options can override */
                switch (pll[btv->nr]) {
                case 0: /* none */
            btv->pll.pll_crystal = 0;
            btv->pll.pll_ifreq   = 0;
            btv->pll.pll_ofreq   = 0;
                        break;
                case 1: /* 28 MHz */
        case 28:
                        btv->pll.pll_ifreq   = 28636363;
            btv->pll.pll_ofreq   = 0;
                        btv->pll.pll_crystal = BT848_IFORM_XT0;
                        break;
                case 2: /* 35 MHz */
        case 35:
                        btv->pll.pll_ifreq   = 35468950;
            btv->pll.pll_ofreq   = 0;
                        btv->pll.pll_crystal = BT848_IFORM_XT1;
                        break;
                }
        }

    /* tuner configuration (from card list / insmod option) */
     if (-1 != bttv_tvcards[btv->type].tuner_type)
                btv->tuner_type = bttv_tvcards[btv->type].tuner_type;
    if (-1 != tuner[btv->nr])
        btv->tuner_type = tuner[btv->nr];
    if (btv->tuner_type != -1)
        bttv_call_i2c_clients(btv,TUNER_SET_TYPE,&btv->tuner_type);

    if (bttv_tvcards[btv->type].has_radio)
        btv->has_radio=1;

    /* try to detect audio/fader chips */
    if (!bttv_tvcards[btv->type].no_msp34xx &&
        bttv_I2CRead(btv, I2C_MSP3400, "MSP34xx") >=0) {
        if (autoload)
            request_module("msp3400");
    }

    if (!bttv_tvcards[btv->type].no_tda9875 &&
        bttv_I2CRead(btv, I2C_TDA9875, "TDA9875") >=0) {
        if (autoload)
            request_module("tda9875");
    }

    if (bttv_I2CRead(btv, I2C_TDA7432, "TDA7432") >=0) {
        if (autoload)
            request_module("tda7432");
    }

    if (bttv_tvcards[btv->type].needs_tvaudio) {
        if (autoload)
            request_module("tvaudio");
    }

    if (bttv_tvcards[btv->type].tuner != -1) {
        if (autoload)
            request_module("tuner");
    }
}


/* ----------------------------------------------------------------------- */
/* some hauppauge specific stuff                                           */

static struct HAUPPAUGE_TUNER 
{
        int  id;
        char *name;

hauppauge_tuner[] __devinitdata = 
{
        { TUNER_ABSENT,        "" },
        { TUNER_ABSENT,        "External" },
        { TUNER_ABSENT,        "Unspecified" },
        { TUNER_PHILIPS_PAL,   "Philips FI1216" },
        { TUNER_PHILIPS_SECAM, "Philips FI1216MF" },
        { TUNER_PHILIPS_NTSC,  "Philips FI1236" },
        { TUNER_PHILIPS_PAL_I, "Philips FI1246" },
        { TUNER_PHILIPS_PAL_DK,"Philips FI1256" },
        { TUNER_PHILIPS_PAL,   "Philips FI1216 MK2" },
        { TUNER_PHILIPS_SECAM, "Philips FI1216MF MK2" },
        { TUNER_PHILIPS_NTSC,  "Philips FI1236 MK2" },
        { TUNER_PHILIPS_PAL_I, "Philips FI1246 MK2" },
        { TUNER_PHILIPS_PAL_DK,"Philips FI1256 MK2" },
        { TUNER_TEMIC_NTSC,    "Temic 4032FY5" },
        { TUNER_TEMIC_PAL,     "Temic 4002FH5" },
        { TUNER_TEMIC_PAL_I,   "Temic 4062FY5" },
        { TUNER_PHILIPS_PAL,   "Philips FR1216 MK2" },
        { TUNER_PHILIPS_SECAM, "Philips FR1216MF MK2" },
        { TUNER_PHILIPS_NTSC,  "Philips FR1236 MK2" },
        { TUNER_PHILIPS_PAL_I, "Philips FR1246 MK2" },
        { TUNER_PHILIPS_PAL_DK,"Philips FR1256 MK2" },
        { TUNER_PHILIPS_PAL,   "Philips FM1216" },
        { TUNER_PHILIPS_SECAM, "Philips FM1216MF" },
        { TUNER_PHILIPS_NTSC,  "Philips FM1236" },
        { TUNER_PHILIPS_PAL_I, "Philips FM1246" },
        { TUNER_PHILIPS_PAL_DK,"Philips FM1256" },
        { TUNER_TEMIC_4036FY5_NTSC, "Temic 4036FY5" },
        { TUNER_ABSENT,        "Samsung TCPN9082D" },
        { TUNER_ABSENT,        "Samsung TCPM9092P" },
        { TUNER_TEMIC_4006FH5_PAL, "Temic 4006FH5" },
        { TUNER_ABSENT,        "Samsung TCPN9085D" },
        { TUNER_ABSENT,        "Samsung TCPB9085P" },
        { TUNER_ABSENT,        "Samsung TCPL9091P" },
        { TUNER_TEMIC_4039FR5_NTSC, "Temic 4039FR5" },
        { TUNER_PHILIPS_FQ1216ME,   "Philips FQ1216 ME" },
        { TUNER_TEMIC_4066FY5_PAL_I, "Temic 4066FY5" },
        { TUNER_ABSENT,        "Philips TD1536" },
        { TUNER_ABSENT,        "Philips TD1536D" },
    { TUNER_PHILIPS_NTSC,  "Philips FMR1236" }, /* mono radio */
        { TUNER_ABSENT,        "Philips FI1256MP" },
        { TUNER_ABSENT,        "Samsung TCPQ9091P" },
        { TUNER_TEMIC_4006FN5_MULTI_PAL, "Temic 4006FN5" },
        { TUNER_TEMIC_4009FR5_PAL, "Temic 4009FR5" },
        { TUNER_TEMIC_4046FM5,     "Temic 4046FM5" },
    { TUNER_TEMIC_4009FN5_MULTI_PAL_FM, "Temic 4009FN5" },
    { TUNER_ABSENT,        "Philips TD1536D_FH_44"},
    { TUNER_LG_NTSC_FM,    "LG TP18NSR01F"},
    { TUNER_LG_PAL_FM,     "LG TP18PSB01D"},
    { TUNER_LG_PAL,        "LG TP18PSB11D"},    
    { TUNER_LG_PAL_I_FM,   "LG TAPC-I001D"},
    { TUNER_LG_PAL_I,      "LG TAPC-I701D"}
};

static void __devinit hauppauge_eeprom(struct bttv *btv)
{
    int blk2,tuner,radio,model;

    if (eeprom_data[0] != 0x84 || eeprom_data[2] != 0)
        printk(KERN_WARNING "bttv%d: Hauppauge eeprom: invalid\n",
               btv->nr);

    /* Block 2 starts after len+3 bytes header */
    blk2 = eeprom_data[1] + 3;

    /* decode + use some config infos */
    model = eeprom_data[12] << 8 | eeprom_data[11];
    tuner = eeprom_data[9];
    radio = eeprom_data[blk2-1] & 0x01;
    
        if (tuner < sizeof(hauppauge_tuner)/sizeof(struct HAUPPAUGE_TUNER))
                btv->tuner_type = hauppauge_tuner[tuner].id;
    if (radio)
        btv->has_radio = 1;
    
    if (bttv_verbose)
        printk(KERN_INFO "bttv%d: Hauppauge eeprom: model=%d, "
               "tuner=%s (%d), radio=%s\n",
               btv->nr, model, hauppauge_tuner[tuner].name,
               btv->tuner_type, radio ? "yes" : "no");
}

// AVermedia specific stuff...
// from  bktr_card.c
int tuner_0_table[] = {
        TUNER_PHILIPS_NTSC,  TUNER_PHILIPS_PAL,
        TUNER_PHILIPS_PAL,   TUNER_PHILIPS_PAL,
        TUNER_PHILIPS_PAL,   TUNER_PHILIPS_PAL,
        TUNER_PHILIPS_SECAM, TUNER_PHILIPS_SECAM,
        TUNER_PHILIPS_SECAM, TUNER_PHILIPS_PAL};
/*
int tuner_0_fm_table[] = {
        PHILIPS_FR1236_NTSC,  PHILIPS_FR1216_PAL,
        PHILIPS_FR1216_PAL,   PHILIPS_FR1216_PAL,
        PHILIPS_FR1216_PAL,   PHILIPS_FR1216_PAL,
        PHILIPS_FR1236_SECAM, PHILIPS_FR1236_SECAM,
        PHILIPS_FR1236_SECAM, PHILIPS_FR1216_PAL};
*/

int tuner_1_table[] = {
        TUNER_TEMIC_NTSC,  TUNER_TEMIC_PAL,
    TUNER_TEMIC_PAL,   TUNER_TEMIC_PAL,
    TUNER_TEMIC_PAL,   TUNER_TEMIC_PAL,
        TUNER_TEMIC_4012FY5, TUNER_TEMIC_4012FY5, //TUNER_TEMIC_SECAM
        TUNER_TEMIC_4012FY5, TUNER_TEMIC_PAL};

static void __devinit avermedia_eeprom(struct bttv *btv)
{
        int tuner_make,tuner_tv_fm,tuner_format,tuner=0;

    tuner_make   = (eeprom_data[0x41] & 0x7);
        tuner_tv_fm  = (eeprom_data[0x41] & 0x18) >> 3;
        tuner_format = (eeprom_data[0x42] & 0xf0) >> 4;

    if (tuner_make == 0 || tuner_make == 2)
        if(tuner_format <=9)
            tuner = tuner_0_table[tuner_format];
    if (tuner_make == 1)
        if(tuner_format <=9)
            tuner = tuner_1_table[tuner_format];
    
    printk(KERN_INFO "bttv%d: Avermedia eeprom[0x%02x%02x]: tuner=",
        btv->nr,eeprom_data[0x41],eeprom_data[0x42]);
    if(tuner) {
        btv->tuner_type=tuner;
        printk("%d\n",tuner);
    } else
        printk("Unknown type\n");
}



/*
 * reset/enable the MSP on some Hauppauge cards
 * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
 *
 * Hauppauge:  pin  5
 * Voodoo:     pin 20
 */
void __devinit bttv_boot_msp34xx(struct bttv *btv, int pin)
{
    int mask = (1 << pin);

        btaor(mask, ~mask, BT848_GPIO_OUT_EN);
        btaor(0, ~mask, BT848_GPIO_DATA);
        udelay(2500);
        btaor(mask, ~mask, BT848_GPIO_DATA);
    if (bttv_gpio)
        bttv_gpio_tracking(btv,"msp34xx");

    if (bttv_verbose)
        printk(KERN_INFO "bttv%d: Hauppauge/Voodoo msp34xx: reset line "
               "init [%d]\n", btv->nr, pin);
}


/* ----------------------------------------------------------------------- */
/*  Imagenation L-Model PXC200 Framegrabber */
/*  This is basically the same procedure as 
 *  used by Alessandro Rubini in his pxc200 
 *  driver, but using BTTV functions */

static void __devinit init_PXC200(struct bttv *btv)
{
    static int vals[] __devinitdata = { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d,
                        0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
                        0x00 };
    int i,tmp;

    /* Initialise GPIO-connevted stuff */
    btwrite(1<<13,BT848_GPIO_OUT_EN); /* Reset pin only */
    btwrite(0,BT848_GPIO_DATA);
    udelay(3);
    btwrite(1<<13,BT848_GPIO_DATA);
    /* GPIO inputs are pulled up, so no need to drive 
     * reset pin any longer */
    btwrite(0,BT848_GPIO_OUT_EN);
    if (bttv_gpio)
        bttv_gpio_tracking(btv,"pxc200");

    /*  we could/should try and reset/control the AD pots? but
        right now  we simply  turned off the crushing.  Without
        this the AGC drifts drifts
        remember the EN is reverse logic -->
        setting BT848_ADC_AGC_EN disable the AGC
        tboult@eecs.lehigh.edu
    */
    btwrite(BT848_ADC_RESERVED|BT848_ADC_AGC_EN, BT848_ADC);
    
    /*    Initialise MAX517 DAC */
    printk(KERN_INFO "Setting DAC reference voltage level ...\n");
    bttv_I2CWrite(btv,0x5E,0,0x80,1);
    
    /*    Initialise 12C508 PIC */
    /*    The I2CWrite and I2CRead commmands are actually to the 
     *    same chips - but the R/W bit is included in the address
     *    argument so the numbers are different */
    
    printk(KERN_INFO "Initialising 12C508 PIC chip ...\n");

    for (i = 0; i < sizeof(vals)/sizeof(int); i++) {
        tmp=bttv_I2CWrite(btv,0x1E,vals[i],0,1);
        printk(KERN_INFO "I2C Write(0x08) = %i\nI2C Read () = %x\n\n",
               tmp,bttv_I2CRead(btv,0x1F,NULL));
    }
    printk(KERN_INFO "PXC200 Initialised.\n");
}

/* ----------------------------------------------------------------------- */
/* Miro Pro radio stuff -- the tea5757 is connected to some GPIO ports     */
/*
 * Copyright (c) 1999 Csaba Halasz <qgehali@uni-miskolc.hu>
 * This code is placed under the terms of the GNU General Public License
 *
 * Brutally hacked by Dan Sheridan <dan.sheridan@contact.org.uk> djs52 8/3/00
 */

#if 0
/* bus bits on the GPIO port */
#define TEA_WE            6
#define TEA_DATA        9
#define TEA_CLK            8
#define TEA_MOST        7
#endif

#define BUS_LOW(bit)     btand(~(bit), BT848_GPIO_DATA)
#define BUS_HIGH(bit)    btor((bit), BT848_GPIO_DATA)
#define BUS_IN(bit)    (btread(BT848_GPIO_DATA) & (bit))

/* TEA5757 register bits */
#define TEA_FREQ        0:14
#define TEA_BUFFER        15:15

#define TEA_SIGNAL_STRENGTH    16:17

#define TEA_PORT1        18:18
#define TEA_PORT0        19:19

#define TEA_BAND        20:21
#define TEA_BAND_FM        0
#define TEA_BAND_MW        1
#define TEA_BAND_LW        2
#define TEA_BAND_SW        3

#define TEA_MONO        22:22
#define TEA_ALLOW_STEREO    0
#define TEA_FORCE_MONO        1

#define TEA_SEARCH_DIRECTION    23:23
#define TEA_SEARCH_DOWN        0
#define TEA_SEARCH_UP        1

#define TEA_STATUS        24:24
#define TEA_STATUS_TUNED    0
#define TEA_STATUS_SEARCHING    1

/* Low-level stuff */
static int tea5757_read(struct bttv *btv)
{
    int value = 0;
    long timeout;
    int i;
    
    /* better safe than sorry */
    btaor((btv->mbox_clk | btv->mbox_we),
          ~btv->mbox_mask, BT848_GPIO_OUT_EN);
    if (bttv_gpio)
        bttv_gpio_tracking(btv,"tea5757 read");
    
    BUS_LOW(btv->mbox_we);
    BUS_LOW(btv->mbox_clk);
    
    udelay(10);
    for(timeout = jiffies + 10 * HZ;
        BUS_IN(btv->mbox_data) && time_before(jiffies, timeout);
        schedule());    /* 10 s */
    if (BUS_IN(btv->mbox_data)) {
        printk(KERN_WARNING "bttv%d: tea5757: read timeout\n",btv->nr);
        return -1;
    }
    for(timeout = jiffies + HZ/5;
        BUS_IN(btv->mbox_data) == 1 && time_before(jiffies, timeout);
        schedule());    /* 0.2 s */
    dprintk("bttv%d: tea5757:",btv->nr);
    for(i = 0; i < 24; i++)
    {
        udelay(5);
        BUS_HIGH(btv->mbox_clk);
        udelay(5);
        dprintk("%c",(BUS_IN(btv->mbox_most) == 0)?'T':'-');
        BUS_LOW(btv->mbox_clk);
        value <<= 1;
        value |= (BUS_IN(btv->mbox_data) == 0)?0:1;  /* MSB first */
        dprintk("%c", (BUS_IN(btv->mbox_most) == 0)?'S':'M');
    }
    dprintk("\nbttv%d: tea5757: read 0x%X\n", btv->nr, value);
    return value;
}

static int tea5757_write(struct bttv *btv, int value)
{
    int i;
    int reg = value;
    
    btaor(btv->mbox_clk | btv->mbox_we | btv->mbox_data,
          ~btv->mbox_mask, BT848_GPIO_OUT_EN);
    if (bttv_gpio)
        bttv_gpio_tracking(btv,"tea5757 write");
    dprintk("bttv%d: tea5757: write 0x%X\n", btv->nr, value);
    BUS_LOW(btv->mbox_clk);
    BUS_HIGH(btv->mbox_we);
    for(i = 0; i < 25; i++)
    {
        if (reg & 0x1000000)
            BUS_HIGH(btv->mbox_data);
        else
            BUS_LOW(btv->mbox_data);
        reg <<= 1;
        BUS_HIGH(btv->mbox_clk);
        udelay(10);
        BUS_LOW(btv->mbox_clk);
        udelay(10);
    }
    BUS_LOW(btv->mbox_we);  /* unmute !!! */
    return 0;
}

void tea5757_set_freq(struct bttv *btv, unsigned short freq)
{
    tea5757_write(btv, 5 * freq + 0x358); /* add 10.7MHz (see docs) */
    if (bttv_debug)
        tea5757_read(btv);
}


/* ----------------------------------------------------------------------- */
/* winview                                                                 */

void winview_audio(struct bttv *btv, struct video_audio *v, int set)
{
    /* PT2254A programming Jon Tombs, jon@gte.esi.us.es */
    int bits_out, loops, vol, data;

    if (!set) {
        /* Fixed by Leandro Lucarella <luca@linuxmendoza.org.ar (07/31/01) */
        v->flags |= VIDEO_AUDIO_VOLUME;
        return;
    }
    
    /* 32 levels logarithmic */
    vol = 32 - ((v->volume>>11));
    /* units */
    bits_out = (PT2254_DBS_IN_2>>(vol%5));
    /* tens */
    bits_out |= (PT2254_DBS_IN_10>>(vol/5));
    bits_out |= PT2254_L_CHANNEL | PT2254_R_CHANNEL;
    data = btread(BT848_GPIO_DATA);
    data &= ~(WINVIEW_PT2254_CLK| WINVIEW_PT2254_DATA|
          WINVIEW_PT2254_STROBE);
    for (loops = 17; loops >= 0 ; loops--) {
        if (bits_out & (1<<loops))
            data |=  WINVIEW_PT2254_DATA;
        else
            data &= ~WINVIEW_PT2254_DATA;
        btwrite(data, BT848_GPIO_DATA);
        udelay(5);
        data |= WINVIEW_PT2254_CLK;
        btwrite(data, BT848_GPIO_DATA);
        udelay(5);
        data &= ~WINVIEW_PT2254_CLK;
        btwrite(data, BT848_GPIO_DATA);
    }
    data |=  WINVIEW_PT2254_STROBE;
    data &= ~WINVIEW_PT2254_DATA;
    btwrite(data, BT848_GPIO_DATA);
    udelay(10);                     
    data &= ~WINVIEW_PT2254_STROBE;
    btwrite(data, BT848_GPIO_DATA);
}

/* ----------------------------------------------------------------------- */
/* mono/stereo control for various cards (which don't use i2c chips but    */
/* connect something to the GPIO pins                                      */

static void
gvbctv3pci_audio(struct bttv *btv, struct video_audio *v, int set)
{
    unsigned int con = 0;

    if (set) {
        btor(0x300, BT848_GPIO_OUT_EN);
        if (v->mode & VIDEO_SOUND_LANG1)
            con = 0x000;
        if (v->mode & VIDEO_SOUND_LANG2)
            con = 0x300;
        if (v->mode & VIDEO_SOUND_STEREO)
            con = 0x200;
//        if (v->mode & VIDEO_SOUND_MONO)
//            con = 0x100;
        btaor(con, ~0x300, BT848_GPIO_DATA);
    } else {
        v->mode = VIDEO_SOUND_STEREO |
              VIDEO_SOUND_LANG1  | VIDEO_SOUND_LANG2;
    }
}

/*
 * Mario Medina Nussbaum <medisoft@alohabbs.org.mx>
 *  I discover that on BT848_GPIO_DATA address a byte 0xcce enable stereo,
 *  0xdde enables mono and 0xccd enables sap
 *
 * Petr Vandrovec <VANDROVE@vc.cvut.cz>
 *  P.S.: At least mask in line above is wrong - GPIO pins 3,2 select
 *  input/output sound connection, so both must be set for output mode.
 *
 * Looks like it's needed only for the "tvphone", the "tvphone 98"
 * handles this with a tda9840
 *
 */
static void
avermedia_tvphone_audio(struct bttv *btv, struct video_audio *v, int set)
{
    int val = 0;

    if (set) {
        if (v->mode & VIDEO_SOUND_LANG1)   /* SAP */
            val = 0x02;
        if (v->mode & VIDEO_SOUND_STEREO)
            val = 0x01;
        if (val) {
            btaor(val, ~0x03, BT848_GPIO_DATA);
            if (bttv_gpio)
                bttv_gpio_tracking(btv,"avermedia");
        }
    } else {
        v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
            VIDEO_SOUND_LANG1;
        return;
    }
}

/* Lifetec 9415 handling */
static void
lt9415_audio(struct bttv *btv, struct video_audio *v, int set)
{
        int val = 0;

        if (btread(BT848_GPIO_DATA) & 0x4000) {
        v->mode = VIDEO_SOUND_MONO;
        return;
    }

        if (set) {
                if (v->mode & VIDEO_SOUND_LANG2)  /* A2 SAP */
                        val = 0x0080;
        if (v->mode & VIDEO_SOUND_STEREO) /* A2 stereo */
                        val = 0x0880;
                if ((v->mode & VIDEO_SOUND_LANG1) ||
            (v->mode & VIDEO_SOUND_MONO))
            val = 0;
                btaor(val, ~0x0880, BT848_GPIO_DATA);
                if (bttv_gpio)
                        bttv_gpio_tracking(btv,"lt9415");
        } else {
        /* autodetect doesn't work with this card :-( */
                v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
            VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
                return;
        }
}


static void
terratv_audio(struct bttv *btv, struct video_audio *v, int set)
{
    unsigned int con = 0;

    if (set) {
        btor(0x180000, BT848_GPIO_OUT_EN);
        if (v->mode & VIDEO_SOUND_LANG2)
            con = 0x080000;
        if (v->mode & VIDEO_SOUND_STEREO)
            con = 0x180000;
        btaor(con, ~0x180000, BT848_GPIO_DATA);
        if (bttv_gpio)
            bttv_gpio_tracking(btv,"terratv");
    } else {
        v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
            VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
    }
}

static void
winfast2000_audio(struct bttv *btv, struct video_audio *v, int set)
{
    unsigned long val = 0;

    if (set) {
        /*btor (0xc32000, BT848_GPIO_OUT_EN);*/
        if (v->mode & VIDEO_SOUND_MONO)        /* Mono */
            val = 0x420000;
        if (v->mode & VIDEO_SOUND_LANG1)    /* Mono */
            val = 0x420000;
        if (v->mode & VIDEO_SOUND_LANG2)    /* SAP */
            val = 0x410000;
        if (v->mode & VIDEO_SOUND_STEREO)    /* Stereo */
            val = 0x020000;
        if (val) {
            btaor(val, ~0x430000, BT848_GPIO_DATA);
            if (bttv_gpio)
                bttv_gpio_tracking(btv,"winfast2000");
        }
    } else {
        v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
              VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
    }
}

/*
 * Dariusz Kowalewski <darekk@automex.pl>
 * sound control for Prolink PV-BT878P+9B (PixelView PlayTV Pro FM+NICAM
 * revision 9B has on-board TDA9874A sound decoder).
 */
static void
pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set)
{
    unsigned int val = 0;

#if BTTV_VERSION_CODE > KERNEL_VERSION(0,8,0)
    if (btv->radio_user)
        return;
#else
    if (btv->radio)
        return;
#endif

    if (set) {
        if (v->mode & VIDEO_SOUND_MONO)    {
            val = 0x01;
        }
        if ((v->mode & (VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2))
            || (v->mode & VIDEO_SOUND_STEREO)) {
            val = 0x02;
        }
        if (val) {
            btaor(val, ~0x03, BT848_GPIO_DATA);
            if (bttv_gpio)
                bttv_gpio_tracking(btv,"pvbt878p9b");
        }
    } else {
        v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
              VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
    }
}

/* ----------------------------------------------------------------------- */
/* motherboard chipset specific stuff                                      */

void __devinit bttv_check_chipset(void)
{
    int pcipci_fail = 0;
    struct pci_dev *dev = NULL;

    /* for 2.4.x we'll use the pci quirks (drivers/pci/quirks.c) */
    if (pci_pci_problems & PCIPCI_FAIL)
        pcipci_fail = 1;
    if (pci_pci_problems & (PCIPCI_TRITON|PCIPCI_NATOMA|PCIPCI_VIAETBF))
        triton1 = 1;
    if (pci_pci_problems & PCIPCI_VSFX)
        vsfx = 1;

    /* print which chipset we have */
    while ((dev = pci_find_class(PCI_CLASS_BRIDGE_HOST << 8,dev)))
        printk(KERN_INFO "bttv: Host bridge is %s\n",dev->name);

    /* print warnings about any quirks found */
    if (triton1)
        printk(KERN_INFO "bttv: Host bridge needs ETBF enabled.\n");
    if (vsfx)
        printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n");

    if (pcipci_fail) {
        printk(KERN_WARNING "bttv: BT848 and your chipset may not work together.\n");
        if (-1 == no_overlay) {
            printk(KERN_WARNING "bttv: going to disable overlay.\n");
            no_overlay = 1;
        }
    }

    while ((dev = pci_find_device(PCI_VENDOR_ID_INTEL,
                      PCI_DEVICE_ID_INTEL_82441, dev))) {
                unsigned char b;
                pci_read_config_byte(dev, 0x53, &b);
        if (bttv_debug)
            printk(KERN_INFO "bttv: Host bridge: 82441FX Natoma, "
                   "bufcon=0x%02x\n",b);
    }

}

int __devinit bttv_handle_chipset(struct bttv *btv)
{
     unsigned char command;

    if (!triton1 && !vsfx)
        return 0;

    if (bttv_verbose) {
        if (triton1)
            printk("bttv%d: enabling ETBF (430FX/VP3 compatibilty)\n",btv->nr);
        if (vsfx && btv->id >= 878)
            printk("bttv%d: enabling VSFX\n",btv->nr);
    }

    if (btv->id < 878) {
        /* bt848 (mis)uses a bit in the irq mask for etbf */
        if (triton1)
            btv->triton1 = BT848_INT_ETBF;
    } else {
        /* bt878 has a bit in the pci config space for it */
                pci_read_config_byte(btv->dev, BT878_DEVCTRL, &command);
        if (triton1)
            command |= BT878_EN_TBFX;
        if (vsfx)
            command |= BT878_EN_VSFX;
                pci_write_config_byte(btv->dev, BT878_DEVCTRL, command);
        }
    return 0;
}


/*
 * Local variables:
 * c-basic-offset: 8
 * End:
 */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0206 ]--