]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/media/video/bttv-cards.c
[PATCH] v4l:: (936) Support for sabrent bt848 version
[karo-tx-linux.git] / drivers / media / video / bttv-cards.c
1 /*
2
3     bttv-cards.c
4
5     this file has configuration informations - card-specific stuff
6     like the big tvcards array for the most part
7
8     Copyright (C) 1996,97,98 Ralph  Metzler (rjkm@thp.uni-koeln.de)
9                            & Marcus Metzler (mocm@thp.uni-koeln.de)
10     (c) 1999-2001 Gerd Knorr <kraxel@goldbach.in-berlin.de>
11
12     This program is free software; you can redistribute it and/or modify
13     it under the terms of the GNU General Public License as published by
14     the Free Software Foundation; either version 2 of the License, or
15     (at your option) any later version.
16
17     This program is distributed in the hope that it will be useful,
18     but WITHOUT ANY WARRANTY; without even the implied warranty of
19     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20     GNU General Public License for more details.
21
22     You should have received a copy of the GNU General Public License
23     along with this program; if not, write to the Free Software
24     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25
26 */
27
28 #include <linux/config.h>
29 #include <linux/delay.h>
30 #include <linux/module.h>
31 #include <linux/moduleparam.h>
32 #include <linux/kmod.h>
33 #include <linux/init.h>
34 #include <linux/pci.h>
35 #include <linux/vmalloc.h>
36 #include <linux/firmware.h>
37
38 #include <asm/io.h>
39
40 #include "bttvp.h"
41
42 /* fwd decl */
43 static void boot_msp34xx(struct bttv *btv, int pin);
44 static void boot_bt832(struct bttv *btv);
45 static void hauppauge_eeprom(struct bttv *btv);
46 static void avermedia_eeprom(struct bttv *btv);
47 static void osprey_eeprom(struct bttv *btv);
48 static void modtec_eeprom(struct bttv *btv);
49 static void init_PXC200(struct bttv *btv);
50 static void init_RTV24(struct bttv *btv);
51
52 static void winview_audio(struct bttv *btv, struct video_audio *v, int set);
53 static void lt9415_audio(struct bttv *btv, struct video_audio *v, int set);
54 static void avermedia_tvphone_audio(struct bttv *btv, struct video_audio *v,
55                                     int set);
56 static void avermedia_tv_stereo_audio(struct bttv *btv, struct video_audio *v,
57                                       int set);
58 static void terratv_audio(struct bttv *btv, struct video_audio *v, int set);
59 static void gvbctv3pci_audio(struct bttv *btv, struct video_audio *v, int set);
60 static void gvbctv5pci_audio(struct bttv *btv, struct video_audio *v, int set);
61 static void winfast2000_audio(struct bttv *btv, struct video_audio *v, int set);
62 static void pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set);
63 static void fv2000s_audio(struct bttv *btv, struct video_audio *v, int set);
64 static void windvr_audio(struct bttv *btv, struct video_audio *v, int set);
65 static void adtvk503_audio(struct bttv *btv, struct video_audio *v, int set);
66 static void rv605_muxsel(struct bttv *btv, unsigned int input);
67 static void eagle_muxsel(struct bttv *btv, unsigned int input);
68 static void xguard_muxsel(struct bttv *btv, unsigned int input);
69 static void ivc120_muxsel(struct bttv *btv, unsigned int input);
70 static void gvc1100_muxsel(struct bttv *btv, unsigned int input);
71
72 static void PXC200_muxsel(struct bttv *btv, unsigned int input);
73
74 static void picolo_tetra_muxsel(struct bttv *btv, unsigned int input);
75 static void picolo_tetra_init(struct bttv *btv);
76
77 static void tibetCS16_muxsel(struct bttv *btv, unsigned int input);
78 static void tibetCS16_init(struct bttv *btv);
79
80 static void kodicom4400r_muxsel(struct bttv *btv, unsigned int input);
81 static void kodicom4400r_init(struct bttv *btv);
82
83 static void sigmaSLC_muxsel(struct bttv *btv, unsigned int input);
84 static void sigmaSQ_muxsel(struct bttv *btv, unsigned int input);
85
86 static int terratec_active_radio_upgrade(struct bttv *btv);
87 static int tea5757_read(struct bttv *btv);
88 static int tea5757_write(struct bttv *btv, int value);
89 static void identify_by_eeprom(struct bttv *btv,
90                                unsigned char eeprom_data[256]);
91 static int __devinit pvr_boot(struct bttv *btv);
92
93 /* config variables */
94 static unsigned int triton1=0;
95 static unsigned int vsfx=0;
96 static unsigned int latency = UNSET;
97 int no_overlay=-1;
98
99 static unsigned int card[BTTV_MAX]   = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
100 static unsigned int pll[BTTV_MAX]    = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
101 static unsigned int tuner[BTTV_MAX]  = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
102 static unsigned int svhs[BTTV_MAX]   = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
103 static unsigned int remote[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
104 static struct bttv  *master[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = NULL };
105 #ifdef MODULE
106 static unsigned int autoload = 1;
107 #else
108 static unsigned int autoload = 0;
109 #endif
110 static unsigned int gpiomask = UNSET;
111 static unsigned int audioall = UNSET;
112 static unsigned int audiomux[5] = { [ 0 ... 4 ] = UNSET };
113
114 /* insmod options */
115 module_param(triton1,    int, 0444);
116 module_param(vsfx,       int, 0444);
117 module_param(no_overlay, int, 0444);
118 module_param(latency,    int, 0444);
119 module_param(gpiomask,   int, 0444);
120 module_param(audioall,   int, 0444);
121 module_param(autoload,   int, 0444);
122
123 module_param_array(card,     int, NULL, 0444);
124 module_param_array(pll,      int, NULL, 0444);
125 module_param_array(tuner,    int, NULL, 0444);
126 module_param_array(svhs,     int, NULL, 0444);
127 module_param_array(remote,   int, NULL, 0444);
128 module_param_array(audiomux, int, NULL, 0444);
129
130 MODULE_PARM_DESC(triton1,"set ETBF pci config bit "
131                  "[enable bug compatibility for triton1 + others]");
132 MODULE_PARM_DESC(vsfx,"set VSFX pci config bit "
133                  "[yet another chipset flaw workaround]");
134 MODULE_PARM_DESC(latency,"pci latency timer");
135 MODULE_PARM_DESC(card,"specify TV/grabber card model, see CARDLIST file for a list");
136 MODULE_PARM_DESC(pll,"specify installed crystal (0=none, 28=28 MHz, 35=35 MHz)");
137 MODULE_PARM_DESC(tuner,"specify installed tuner type");
138 MODULE_PARM_DESC(autoload,"automatically load i2c modules like tuner.o, default is 1 (yes)");
139
140 /* ----------------------------------------------------------------------- */
141 /* list of card IDs for bt878+ cards                                       */
142
143 static struct CARD {
144         unsigned id;
145         int cardnr;
146         char *name;
147 } cards[] __devinitdata = {
148         { 0x13eb0070, BTTV_BOARD_HAUPPAUGE878,  "Hauppauge WinTV" },
149         { 0x39000070, BTTV_BOARD_HAUPPAUGE878,  "Hauppauge WinTV-D" },
150         { 0x45000070, BTTV_BOARD_HAUPPAUGEPVR,  "Hauppauge WinTV/PVR" },
151         { 0xff000070, BTTV_BOARD_OSPREY1x0,     "Osprey-100" },
152         { 0xff010070, BTTV_BOARD_OSPREY2x0_SVID,"Osprey-200" },
153         { 0xff020070, BTTV_BOARD_OSPREY500,     "Osprey-500" },
154         { 0xff030070, BTTV_BOARD_OSPREY2000,    "Osprey-2000" },
155         { 0xff040070, BTTV_BOARD_OSPREY540,     "Osprey-540" },
156         { 0xff070070, BTTV_BOARD_OSPREY440,     "Osprey-440" },
157
158         { 0x00011002, BTTV_BOARD_ATI_TVWONDER,  "ATI TV Wonder" },
159         { 0x00031002, BTTV_BOARD_ATI_TVWONDERVE,"ATI TV Wonder/VE" },
160
161         { 0x6606107d, BTTV_BOARD_WINFAST2000,   "Leadtek WinFast TV 2000" },
162         { 0x6607107d, BTTV_BOARD_WINFASTVC100,  "Leadtek WinFast VC 100" },
163         { 0x6609107d, BTTV_BOARD_WINFAST2000,   "Leadtek TV 2000 XP" },
164         { 0x263610b4, BTTV_BOARD_STB2,          "STB TV PCI FM, Gateway P/N 6000704" },
165         { 0x264510b4, BTTV_BOARD_STB2,          "STB TV PCI FM, Gateway P/N 6000704" },
166         { 0x402010fc, BTTV_BOARD_GVBCTV3PCI,    "I-O Data Co. GV-BCTV3/PCI" },
167         { 0x405010fc, BTTV_BOARD_GVBCTV4PCI,    "I-O Data Co. GV-BCTV4/PCI" },
168         { 0x407010fc, BTTV_BOARD_GVBCTV5PCI,    "I-O Data Co. GV-BCTV5/PCI" },
169         { 0xd01810fc, BTTV_BOARD_GVBCTV5PCI,    "I-O Data Co. GV-BCTV5/PCI" },
170
171         { 0x001211bd, BTTV_BOARD_PINNACLE,      "Pinnacle PCTV" },
172         /* some cards ship with byteswapped IDs ... */
173         { 0x1200bd11, BTTV_BOARD_PINNACLE,      "Pinnacle PCTV [bswap]" },
174         { 0xff00bd11, BTTV_BOARD_PINNACLE,      "Pinnacle PCTV [bswap]" },
175         /* this seems to happen as well ... */
176         { 0xff1211bd, BTTV_BOARD_PINNACLE,      "Pinnacle PCTV" },
177
178         { 0x3000121a, BTTV_BOARD_VOODOOTV_FM,   "3Dfx VoodooTV FM/ VoodooTV 200" },
179         { 0x263710b4, BTTV_BOARD_VOODOOTV_FM,   "3Dfx VoodooTV FM/ VoodooTV 200" },
180         { 0x3060121a, BTTV_BOARD_STB2,    "3Dfx VoodooTV 100/ STB OEM" },
181
182         { 0x3000144f, BTTV_BOARD_MAGICTVIEW063, "(Askey Magic/others) TView99 CPH06x" },
183         { 0xa005144f, BTTV_BOARD_MAGICTVIEW063, "CPH06X TView99-Card" },
184         { 0x3002144f, BTTV_BOARD_MAGICTVIEW061, "(Askey Magic/others) TView99 CPH05x" },
185         { 0x3005144f, BTTV_BOARD_MAGICTVIEW061, "(Askey Magic/others) TView99 CPH061/06L (T1/LC)" },
186         { 0x5000144f, BTTV_BOARD_MAGICTVIEW061, "Askey CPH050" },
187         { 0x300014ff, BTTV_BOARD_MAGICTVIEW061, "TView 99 (CPH061)" },
188         { 0x300214ff, BTTV_BOARD_PHOEBE_TVMAS,  "Phoebe TV Master (CPH060)" },
189
190         { 0x00011461, BTTV_BOARD_AVPHONE98,     "AVerMedia TVPhone98" },
191         { 0x00021461, BTTV_BOARD_AVERMEDIA98,   "AVermedia TVCapture 98" },
192         { 0x00031461, BTTV_BOARD_AVPHONE98,     "AVerMedia TVPhone98" },
193         { 0x00041461, BTTV_BOARD_AVERMEDIA98,   "AVerMedia TVCapture 98" },
194         { 0x03001461, BTTV_BOARD_AVERMEDIA98,   "VDOMATE TV TUNER CARD" },
195
196         { 0x1117153b, BTTV_BOARD_TERRATVALUE,   "Terratec TValue (Philips PAL B/G)" },
197         { 0x1118153b, BTTV_BOARD_TERRATVALUE,   "Terratec TValue (Temic PAL B/G)" },
198         { 0x1119153b, BTTV_BOARD_TERRATVALUE,   "Terratec TValue (Philips PAL I)" },
199         { 0x111a153b, BTTV_BOARD_TERRATVALUE,   "Terratec TValue (Temic PAL I)" },
200
201         { 0x1123153b, BTTV_BOARD_TERRATVRADIO,  "Terratec TV Radio+" },
202         { 0x1127153b, BTTV_BOARD_TERRATV,       "Terratec TV+ (V1.05)"    },
203         /* clashes with FlyVideo
204          *{ 0x18521852, BTTV_BOARD_TERRATV,     "Terratec TV+ (V1.10)"    }, */
205         { 0x1134153b, BTTV_BOARD_TERRATVALUE,   "Terratec TValue (LR102)" },
206         { 0x1135153b, BTTV_BOARD_TERRATVALUER,  "Terratec TValue Radio" }, /* LR102 */
207         { 0x5018153b, BTTV_BOARD_TERRATVALUE,   "Terratec TValue" },       /* ?? */
208         { 0xff3b153b, BTTV_BOARD_TERRATVALUER,  "Terratec TValue Radio" }, /* ?? */
209
210         { 0x400015b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV" },
211         { 0x400a15b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV" },
212         { 0x400d15b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
213         { 0x401015b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
214         { 0x401615b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
215
216         { 0x1430aa00, BTTV_BOARD_PV143,         "Provideo PV143A" },
217         { 0x1431aa00, BTTV_BOARD_PV143,         "Provideo PV143B" },
218         { 0x1432aa00, BTTV_BOARD_PV143,         "Provideo PV143C" },
219         { 0x1433aa00, BTTV_BOARD_PV143,         "Provideo PV143D" },
220         { 0x1433aa03, BTTV_BOARD_PV143,         "Security Eyes" },
221
222         { 0x1460aa00, BTTV_BOARD_PV150,         "Provideo PV150A-1" },
223         { 0x1461aa01, BTTV_BOARD_PV150,         "Provideo PV150A-2" },
224         { 0x1462aa02, BTTV_BOARD_PV150,         "Provideo PV150A-3" },
225         { 0x1463aa03, BTTV_BOARD_PV150,         "Provideo PV150A-4" },
226
227         { 0x1464aa04, BTTV_BOARD_PV150,         "Provideo PV150B-1" },
228         { 0x1465aa05, BTTV_BOARD_PV150,         "Provideo PV150B-2" },
229         { 0x1466aa06, BTTV_BOARD_PV150,         "Provideo PV150B-3" },
230         { 0x1467aa07, BTTV_BOARD_PV150,         "Provideo PV150B-4" },
231
232         { 0xa132ff00, BTTV_BOARD_IVC100,        "IVC-100"  },
233         { 0xa1550000, BTTV_BOARD_IVC200,        "IVC-200"  },
234         { 0xa1550001, BTTV_BOARD_IVC200,        "IVC-200"  },
235         { 0xa1550002, BTTV_BOARD_IVC200,        "IVC-200"  },
236         { 0xa1550003, BTTV_BOARD_IVC200,        "IVC-200"  },
237         { 0xa1550100, BTTV_BOARD_IVC200,        "IVC-200G" },
238         { 0xa1550101, BTTV_BOARD_IVC200,        "IVC-200G" },
239         { 0xa1550102, BTTV_BOARD_IVC200,        "IVC-200G" },
240         { 0xa1550103, BTTV_BOARD_IVC200,        "IVC-200G" },
241         { 0xa182ff00, BTTV_BOARD_IVC120,        "IVC-120G" },
242         { 0xa182ff01, BTTV_BOARD_IVC120,        "IVC-120G" },
243         { 0xa182ff02, BTTV_BOARD_IVC120,        "IVC-120G" },
244         { 0xa182ff03, BTTV_BOARD_IVC120,        "IVC-120G" },
245         { 0xa182ff04, BTTV_BOARD_IVC120,        "IVC-120G" },
246         { 0xa182ff05, BTTV_BOARD_IVC120,        "IVC-120G" },
247         { 0xa182ff06, BTTV_BOARD_IVC120,        "IVC-120G" },
248         { 0xa182ff07, BTTV_BOARD_IVC120,        "IVC-120G" },
249         { 0xa182ff08, BTTV_BOARD_IVC120,        "IVC-120G" },
250         { 0xa182ff09, BTTV_BOARD_IVC120,        "IVC-120G" },
251         { 0xa182ff0a, BTTV_BOARD_IVC120,        "IVC-120G" },
252         { 0xa182ff0b, BTTV_BOARD_IVC120,        "IVC-120G" },
253         { 0xa182ff0c, BTTV_BOARD_IVC120,        "IVC-120G" },
254         { 0xa182ff0d, BTTV_BOARD_IVC120,        "IVC-120G" },
255         { 0xa182ff0e, BTTV_BOARD_IVC120,        "IVC-120G" },
256         { 0xa182ff0f, BTTV_BOARD_IVC120,        "IVC-120G" },
257
258         { 0x41424344, BTTV_BOARD_GRANDTEC,      "GrandTec Multi Capture" },
259         { 0x01020304, BTTV_BOARD_XGUARD,        "Grandtec Grand X-Guard" },
260
261         { 0x18501851, BTTV_BOARD_CHRONOS_VS2,   "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
262         { 0xa0501851, BTTV_BOARD_CHRONOS_VS2,   "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
263         { 0x18511851, BTTV_BOARD_FLYVIDEO98EZ,  "FlyVideo 98EZ (LR51)/ CyberMail AV" },
264         { 0x18521852, BTTV_BOARD_TYPHOON_TVIEW, "FlyVideo 98FM (LR50)/ Typhoon TView TV/FM Tuner" },
265         { 0x41a0a051, BTTV_BOARD_FLYVIDEO_98FM, "Lifeview FlyVideo 98 LR50 Rev Q" },
266         { 0x18501f7f, BTTV_BOARD_FLYVIDEO_98,   "Lifeview Flyvideo 98" },
267
268         { 0x010115cb, BTTV_BOARD_GMV1,          "AG GMV1" },
269         { 0x010114c7, BTTV_BOARD_MODTEC_205,    "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV" },
270
271         { 0x10b42636, BTTV_BOARD_HAUPPAUGE878,  "STB ???" },
272         { 0x217d6606, BTTV_BOARD_WINFAST2000,   "Leadtek WinFast TV 2000" },
273         { 0xfff6f6ff, BTTV_BOARD_WINFAST2000,   "Leadtek WinFast TV 2000" },
274         { 0x03116000, BTTV_BOARD_SENSORAY311,   "Sensoray 311" },
275         { 0x00790e11, BTTV_BOARD_WINDVR,        "Canopus WinDVR PCI" },
276         { 0xa0fca1a0, BTTV_BOARD_ZOLTRIX,       "Face to Face Tvmax" },
277         { 0x20007063, BTTV_BOARD_PC_HDTV,       "pcHDTV HD-2000 TV"},
278         { 0x82b2aa6a, BTTV_BOARD_SIMUS_GVC1100, "SIMUS GVC1100" },
279         { 0x146caa0c, BTTV_BOARD_PV951,         "ituner spectra8" },
280         { 0x200a1295, BTTV_BOARD_PXC200,        "ImageNation PXC200A" },
281
282         { 0x40111554, BTTV_BOARD_PV_BT878P_9B,  "Prolink Pixelview PV-BT" },
283         { 0x17de0a01, BTTV_BOARD_KWORLD,        "Mecer TV/FM/Video Tuner" },
284
285         { 0x01051805, BTTV_BOARD_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #1" },
286         { 0x01061805, BTTV_BOARD_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #2" },
287         { 0x01071805, BTTV_BOARD_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #3" },
288         { 0x01081805, BTTV_BOARD_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #4" },
289
290         { 0x15409511, BTTV_BOARD_ACORP_Y878F, "Acorp Y878F" },
291
292         /* likely broken, vendor id doesn't match the other magic views ...
293          * { 0xa0fca04f, BTTV_BOARD_MAGICTVIEW063, "Guillemot Maxi TV Video 3" }, */
294
295         /* DVB cards (using pci function .1 for mpeg data xfer) */
296         { 0x01010071, BTTV_BOARD_NEBULA_DIGITV, "Nebula Electronics DigiTV" },
297         { 0x07611461, BTTV_BOARD_AVDVBT_761,    "AverMedia AverTV DVB-T 761" },
298         { 0x001c11bd, BTTV_BOARD_PINNACLESAT,   "Pinnacle PCTV Sat" },
299         { 0x002611bd, BTTV_BOARD_TWINHAN_DST,   "Pinnacle PCTV SAT CI" },
300         { 0x00011822, BTTV_BOARD_TWINHAN_DST,   "Twinhan VisionPlus DVB" },
301         { 0xfc00270f, BTTV_BOARD_TWINHAN_DST,   "ChainTech digitop DST-1000 DVB-S" },
302         { 0x07711461, BTTV_BOARD_AVDVBT_771,    "AVermedia AverTV DVB-T 771" },
303         { 0xdb1018ac, BTTV_BOARD_DVICO_DVBT_LITE,    "DViCO FusionHDTV DVB-T Lite" },
304         { 0xd50018ac, BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE,    "DViCO FusionHDTV 5 Lite" },
305
306         { 0, -1, NULL }
307 };
308
309 /* ----------------------------------------------------------------------- */
310 /* array with description for bt848 / bt878 tv/grabber cards               */
311
312 struct tvcard bttv_tvcards[] = {
313         /* ---- card 0x00 ---------------------------------- */
314         [BTTV_BOARD_UNKNOWN] = {
315                 .name           = " *** UNKNOWN/GENERIC *** ",
316                 .video_inputs   = 4,
317                 .audio_inputs   = 1,
318                 .tuner          = 0,
319                 .svhs           = 2,
320                 .muxsel         = { 2, 3, 1, 0},
321                 .tuner_type     = -1,
322                 .tuner_addr     = ADDR_UNSET,
323                 .radio_addr     = ADDR_UNSET,
324         },
325         [BTTV_BOARD_MIRO] = {
326                 .name           = "MIRO PCTV",
327                 .video_inputs   = 4,
328                 .audio_inputs   = 1,
329                 .tuner          = 0,
330                 .svhs           = 2,
331                 .gpiomask       = 15,
332                 .muxsel         = { 2, 3, 1, 1},
333                 .audiomux       = { 2, 0, 0, 0, 10},
334                 .needs_tvaudio  = 1,
335                 .tuner_type     = -1,
336                 .tuner_addr     = ADDR_UNSET,
337                 .radio_addr     = ADDR_UNSET,
338         },
339         [BTTV_BOARD_HAUPPAUGE] = {
340                 .name           = "Hauppauge (bt848)",
341                 .video_inputs   = 4,
342                 .audio_inputs   = 1,
343                 .tuner          = 0,
344                 .svhs           = 2,
345                 .gpiomask       = 7,
346                 .muxsel         = { 2, 3, 1, 1},
347                 .audiomux       = { 0, 1, 2, 3, 4},
348                 .needs_tvaudio  = 1,
349                 .tuner_type     = -1,
350                 .tuner_addr     = ADDR_UNSET,
351                 .radio_addr     = ADDR_UNSET,
352         },
353         [BTTV_BOARD_STB] = {
354                 .name           = "STB, Gateway P/N 6000699 (bt848)",
355                 .video_inputs   = 3,
356                 .audio_inputs   = 1,
357                 .tuner          = 0,
358                 .svhs           = 2,
359                 .gpiomask       = 7,
360                 .muxsel         = { 2, 3, 1, 1},
361                 .audiomux       = { 4, 0, 2, 3, 1},
362                 .no_msp34xx     = 1,
363                 .needs_tvaudio  = 1,
364                 .tuner_type     = TUNER_PHILIPS_NTSC,
365                 .tuner_addr     = ADDR_UNSET,
366                 .radio_addr     = ADDR_UNSET,
367                 .pll            = PLL_28,
368                 .has_radio      = 1,
369         },
370
371         /* ---- card 0x04 ---------------------------------- */
372         [BTTV_BOARD_INTEL] = {
373                 .name           = "Intel Create and Share PCI/ Smart Video Recorder III",
374                 .video_inputs   = 4,
375                 .audio_inputs   = 0,
376                 .tuner          = -1,
377                 .svhs           = 2,
378                 .gpiomask       = 0,
379                 .muxsel         = { 2, 3, 1, 1},
380                 .audiomux       = { 0 },
381                 .needs_tvaudio  = 0,
382                 .tuner_type     = 4,
383                 .tuner_addr     = ADDR_UNSET,
384                 .radio_addr     = ADDR_UNSET,
385         },
386         [BTTV_BOARD_DIAMOND] = {
387                 .name           = "Diamond DTV2000",
388                 .video_inputs   = 4,
389                 .audio_inputs   = 1,
390                 .tuner          = 0,
391                 .svhs           = 2,
392                 .gpiomask       = 3,
393                 .muxsel         = { 2, 3, 1, 0},
394                 .audiomux       = { 0, 1, 0, 1, 3},
395                 .needs_tvaudio  = 1,
396                 .tuner_type     = -1,
397                 .tuner_addr     = ADDR_UNSET,
398                 .radio_addr     = ADDR_UNSET,
399         },
400         [BTTV_BOARD_AVERMEDIA] = {
401                 .name           = "AVerMedia TVPhone",
402                 .video_inputs   = 3,
403                 .audio_inputs   = 1,
404                 .tuner          = 0,
405                 .svhs           = 3,
406                 .muxsel         = { 2, 3, 1, 1},
407                 .gpiomask       = 0x0f,
408                 .audiomux       = { 0x0c, 0x04, 0x08, 0x04, 0},
409                 /*                0x04 for some cards ?? */
410                 .needs_tvaudio  = 1,
411                 .tuner_type     = -1,
412                 .tuner_addr     = ADDR_UNSET,
413                 .radio_addr     = ADDR_UNSET,
414                 .audio_hook     = avermedia_tvphone_audio,
415                 .has_remote     = 1,
416         },
417         [BTTV_BOARD_MATRIX_VISION] = {
418                 .name           = "MATRIX-Vision MV-Delta",
419                 .video_inputs   = 5,
420                 .audio_inputs   = 1,
421                 .tuner          = -1,
422                 .svhs           = 3,
423                 .gpiomask       = 0,
424                 .muxsel         = { 2, 3, 1, 0, 0},
425                 .audiomux       = {0 },
426                 .needs_tvaudio  = 1,
427                 .tuner_type     = -1,
428                 .tuner_addr     = ADDR_UNSET,
429                 .radio_addr     = ADDR_UNSET,
430         },
431
432         /* ---- card 0x08 ---------------------------------- */
433         [BTTV_BOARD_FLYVIDEO] = {
434                 .name           = "Lifeview FlyVideo II (Bt848) LR26 / MAXI TV Video PCI2 LR26",
435                 .video_inputs   = 4,
436                 .audio_inputs   = 1,
437                 .tuner          = 0,
438                 .svhs           = 2,
439                 .gpiomask       = 0xc00,
440                 .muxsel         = { 2, 3, 1, 1},
441                 .audiomux       = { 0, 0xc00, 0x800, 0x400, 0xc00, 0},
442                 .needs_tvaudio  = 1,
443                 .pll            = PLL_28,
444                 .tuner_type     = -1,
445                 .tuner_addr     = ADDR_UNSET,
446                 .radio_addr     = ADDR_UNSET,
447         },
448         [BTTV_BOARD_TURBOTV] = {
449                 .name           = "IMS/IXmicro TurboTV",
450                 .video_inputs   = 3,
451                 .audio_inputs   = 1,
452                 .tuner          = 0,
453                 .svhs           = 2,
454                 .gpiomask       = 3,
455                 .muxsel         = { 2, 3, 1, 1},
456                 .audiomux       = { 1, 1, 2, 3, 0},
457                 .needs_tvaudio  = 0,
458                 .pll            = PLL_28,
459                 .tuner_type     = TUNER_TEMIC_PAL,
460                 .tuner_addr     = ADDR_UNSET,
461                 .radio_addr     = ADDR_UNSET,
462         },
463         [BTTV_BOARD_HAUPPAUGE878] = {
464                 .name           = "Hauppauge (bt878)",
465                 .video_inputs   = 4,
466                 .audio_inputs   = 1,
467                 .tuner          = 0,
468                 .svhs           = 2,
469                 .gpiomask       = 0x0f, /* old: 7 */
470                 .muxsel         = { 2, 0, 1, 1},
471                 .audiomux       = { 0, 1, 2, 3, 4},
472                 .needs_tvaudio  = 1,
473                 .pll            = PLL_28,
474                 .tuner_type     = -1,
475                 .tuner_addr     = ADDR_UNSET,
476                 .radio_addr     = ADDR_UNSET,
477         },
478         [BTTV_BOARD_MIROPRO] = {
479                 .name           = "MIRO PCTV pro",
480                 .video_inputs   = 3,
481                 .audio_inputs   = 1,
482                 .tuner          = 0,
483                 .svhs           = 2,
484                 .gpiomask       = 0x3014f,
485                 .muxsel         = { 2, 3, 1, 1},
486                 .audiomux       = { 0x20001,0x10001, 0, 0,10},
487                 .needs_tvaudio  = 1,
488                 .tuner_type     = -1,
489                 .tuner_addr     = ADDR_UNSET,
490                 .radio_addr     = ADDR_UNSET,
491         },
492
493         /* ---- card 0x0c ---------------------------------- */
494         [BTTV_BOARD_ADSTECH_TV] = {
495                 .name           = "ADS Technologies Channel Surfer TV (bt848)",
496                 .video_inputs   = 3,
497                 .audio_inputs   = 1,
498                 .tuner          = 0,
499                 .svhs           = 2,
500                 .gpiomask       = 15,
501                 .muxsel         = { 2, 3, 1, 1},
502                 .audiomux       = { 13, 14, 11, 7, 0, 0},
503                 .needs_tvaudio  = 1,
504                 .tuner_type     = -1,
505                 .tuner_addr     = ADDR_UNSET,
506                 .radio_addr     = ADDR_UNSET,
507         },
508         [BTTV_BOARD_AVERMEDIA98] = {
509                 .name           = "AVerMedia TVCapture 98",
510                 .video_inputs   = 3,
511                 .audio_inputs   = 4,
512                 .tuner          = 0,
513                 .svhs           = 2,
514                 .gpiomask       = 15,
515                 .muxsel         = { 2, 3, 1, 1},
516                 .audiomux       = { 13, 14, 11, 7, 0, 0},
517                 .needs_tvaudio  = 1,
518                 .msp34xx_alt    = 1,
519                 .pll            = PLL_28,
520                 .tuner_type     = TUNER_PHILIPS_PAL,
521                 .tuner_addr     = ADDR_UNSET,
522                 .radio_addr     = ADDR_UNSET,
523                 .audio_hook     = avermedia_tv_stereo_audio,
524                 .no_gpioirq     = 1,
525         },
526         [BTTV_BOARD_VHX] = {
527                 .name           = "Aimslab Video Highway Xtreme (VHX)",
528                 .video_inputs   = 3,
529                 .audio_inputs   = 1,
530                 .tuner          = 0,
531                 .svhs           = 2,
532                 .gpiomask       = 7,
533                 .muxsel         = { 2, 3, 1, 1},
534                 .audiomux       = { 0, 2, 1, 3, 4}, /* old: { 0, 1, 2, 3, 4} */
535                 .needs_tvaudio  = 1,
536                 .pll            = PLL_28,
537                 .tuner_type     = -1,
538                 .tuner_addr     = ADDR_UNSET,
539                 .radio_addr     = ADDR_UNSET,
540         },
541         [BTTV_BOARD_ZOLTRIX] = {
542                 .name           = "Zoltrix TV-Max",
543                 .video_inputs   = 3,
544                 .audio_inputs   = 1,
545                 .tuner          = 0,
546                 .svhs           = 2,
547                 .gpiomask       = 15,
548                 .muxsel         = { 2, 3, 1, 1},
549                 .audiomux       = {0 , 0, 1 , 0, 10},
550                 .needs_tvaudio  = 1,
551                 .tuner_type     = -1,
552                 .tuner_addr     = ADDR_UNSET,
553                 .radio_addr     = ADDR_UNSET,
554         },
555
556         /* ---- card 0x10 ---------------------------------- */
557         [BTTV_BOARD_PIXVIEWPLAYTV] = {
558                 .name           = "Prolink Pixelview PlayTV (bt878)",
559                 .video_inputs   = 3,
560                 .audio_inputs   = 1,
561                 .tuner          = 0,
562                 .svhs           = 2,
563                 .gpiomask       = 0x01fe00,
564                 .muxsel         = { 2, 3, 1, 1},
565         #if 0
566                 /* old */
567                 .audiomux       = { 0x01c000, 0, 0x018000, 0x014000, 0x002000, 0 },
568         #else
569                 /* 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> */
570                 .audiomux       = { 0x001e00, 0, 0x018000, 0x014000, 0x002000, 0 },
571         #endif
572                 .needs_tvaudio  = 1,
573                 .pll            = PLL_28,
574                 .tuner_type     = -1,
575         },
576         [BTTV_BOARD_WINVIEW_601] = {
577                 .name           = "Leadtek WinView 601",
578                 .video_inputs   = 3,
579                 .audio_inputs   = 1,
580                 .tuner          = 0,
581                 .svhs           = 2,
582                 .gpiomask       = 0x8300f8,
583                 .muxsel         = { 2, 3, 1, 1,0},
584                 .audiomux       = { 0x4fa007,0xcfa007,0xcfa007,0xcfa007,0xcfa007,0xcfa007},
585                 .needs_tvaudio  = 1,
586                 .tuner_type     = -1,
587                 .tuner_addr     = ADDR_UNSET,
588                 .radio_addr     = ADDR_UNSET,
589                 .audio_hook     = winview_audio,
590                 .has_radio      = 1,
591         },
592         [BTTV_BOARD_AVEC_INTERCAP] = {
593                 .name           = "AVEC Intercapture",
594                 .video_inputs   = 3,
595                 .audio_inputs   = 2,
596                 .tuner          = 0,
597                 .svhs           = 2,
598                 .gpiomask       = 0,
599                 .muxsel         = {2, 3, 1, 1},
600                 .audiomux       = {1, 0, 0, 0, 0},
601                 .needs_tvaudio  = 1,
602                 .tuner_type     = -1,
603                 .tuner_addr     = ADDR_UNSET,
604                 .radio_addr     = ADDR_UNSET,
605         },
606         [BTTV_BOARD_LIFE_FLYKIT] = {
607                 .name           = "Lifeview FlyVideo II EZ /FlyKit LR38 Bt848 (capture only)",
608                 .video_inputs   = 4,
609                 .audio_inputs   = 1,
610                 .tuner          = -1,
611                 .svhs           = -1,
612                 .gpiomask       = 0x8dff00,
613                 .muxsel         = { 2, 3, 1, 1},
614                 .audiomux       = { 0 },
615                 .no_msp34xx     = 1,
616                 .tuner_type     = -1,
617                 .tuner_addr     = ADDR_UNSET,
618                 .radio_addr     = ADDR_UNSET,
619         },
620
621         /* ---- card 0x14 ---------------------------------- */
622         [BTTV_BOARD_CEI_RAFFLES] = {
623                 .name           = "CEI Raffles Card",
624                 .video_inputs   = 3,
625                 .audio_inputs   = 3,
626                 .tuner          = 0,
627                 .svhs           = 2,
628                 .muxsel         = {2, 3, 1, 1},
629                 .tuner_type     = -1,
630                 .tuner_addr     = ADDR_UNSET,
631                 .radio_addr     = ADDR_UNSET,
632         },
633         [BTTV_BOARD_CONFERENCETV] = {
634                 .name           = "Lifeview FlyVideo 98/ Lucky Star Image World ConferenceTV LR50",
635                 .video_inputs   = 4,
636                 .audio_inputs   = 2,  /* tuner, line in */
637                 .tuner          = 0,
638                 .svhs           = 2,
639                 .gpiomask       = 0x1800,
640                 .muxsel         = { 2, 3, 1, 1},
641                 .audiomux       = { 0, 0x800, 0x1000, 0x1000, 0x1800},
642                 .pll            = PLL_28,
643                 .tuner_type     = TUNER_PHILIPS_PAL_I,
644                 .tuner_addr     = ADDR_UNSET,
645                 .radio_addr     = ADDR_UNSET,
646         },
647         [BTTV_BOARD_PHOEBE_TVMAS] = {
648                 .name           = "Askey CPH050/ Phoebe Tv Master + FM",
649                 .video_inputs   = 3,
650                 .audio_inputs   = 1,
651                 .tuner          = 0,
652                 .svhs           = 2,
653                 .gpiomask       = 0xc00,
654                 .muxsel         = { 2, 3, 1, 1},
655                 .audiomux       = {0, 1, 0x800, 0x400, 0xc00, 0},
656                 .needs_tvaudio  = 1,
657                 .pll            = PLL_28,
658                 .tuner_type     = -1,
659                 .tuner_addr     = ADDR_UNSET,
660                 .radio_addr     = ADDR_UNSET,
661         },
662         [BTTV_BOARD_MODTEC_205] = {
663                 .name           = "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV, bt878",
664                 .video_inputs   = 3,
665                 .audio_inputs   = 1,
666                 .tuner          = 0,
667                 .svhs           = -1,
668                 .gpiomask       = 7,
669                 .muxsel         = { 2, 3, -1 },
670                 .digital_mode   = DIGITAL_MODE_CAMERA,
671                 .audiomux       = { 0, 0, 0, 0, 0 },
672                 .no_msp34xx     = 1,
673                 .pll            = PLL_28,
674                 .tuner_type     = TUNER_ALPS_TSBB5_PAL_I,
675                 .tuner_addr     = ADDR_UNSET,
676                 .radio_addr     = ADDR_UNSET,
677         },
678
679         /* ---- card 0x18 ---------------------------------- */
680         [BTTV_BOARD_MAGICTVIEW061] = {
681                 .name           = "Askey CPH05X/06X (bt878) [many vendors]",
682                 .video_inputs   = 3,
683                 .audio_inputs   = 1,
684                 .tuner          = 0,
685                 .svhs           = 2,
686                 .gpiomask       = 0xe00,
687                 .muxsel         = { 2, 3, 1, 1},
688                 .audiomux       = {0x400, 0x400, 0x400, 0x400, 0xc00},
689                 .needs_tvaudio  = 1,
690                 .pll            = PLL_28,
691                 .tuner_type     = -1,
692                 .tuner_addr     = ADDR_UNSET,
693                 .radio_addr     = ADDR_UNSET,
694                 .has_remote     = 1,
695         },
696         [BTTV_BOARD_VOBIS_BOOSTAR] = {
697                 .name           = "Terratec TerraTV+ Version 1.0 (Bt848)/ Terra TValue Version 1.0/ Vobis TV-Boostar",
698                 .video_inputs   = 3,
699                 .audio_inputs   = 1,
700                 .tuner          = 0,
701                 .svhs           = 2,
702                 .gpiomask       = 0x1f0fff,
703                 .muxsel         = { 2, 3, 1, 1},
704                 .audiomux       = { 0x20000, 0x30000, 0x10000, 0, 0x40000},
705                 .needs_tvaudio  = 0,
706                 .tuner_type     = TUNER_PHILIPS_PAL,
707                 .tuner_addr     = ADDR_UNSET,
708                 .radio_addr     = ADDR_UNSET,
709                 .audio_hook     = terratv_audio,
710         },
711         [BTTV_BOARD_HAUPPAUG_WCAM] = {
712                 .name           = "Hauppauge WinCam newer (bt878)",
713                 .video_inputs   = 4,
714                 .audio_inputs   = 1,
715                 .tuner          = 0,
716                 .svhs           = 3,
717                 .gpiomask       = 7,
718                 .muxsel         = { 2, 0, 1, 1},
719                 .audiomux       = { 0, 1, 2, 3, 4},
720                 .needs_tvaudio  = 1,
721                 .tuner_type     = -1,
722                 .tuner_addr     = ADDR_UNSET,
723                 .radio_addr     = ADDR_UNSET,
724         },
725         [BTTV_BOARD_MAXI] = {
726                 .name           = "Lifeview FlyVideo 98/ MAXI TV Video PCI2 LR50",
727                 .video_inputs   = 4,
728                 .audio_inputs   = 2,
729                 .tuner          = 0,
730                 .svhs           = 2,
731                 .gpiomask       = 0x1800,
732                 .muxsel         = { 2, 3, 1, 1},
733                 .audiomux       = { 0, 0x800, 0x1000, 0x1000, 0x1800},
734                 .pll            = PLL_28,
735                 .tuner_type     = TUNER_PHILIPS_SECAM,
736                 .tuner_addr     = ADDR_UNSET,
737                 .radio_addr     = ADDR_UNSET,
738         },
739
740         /* ---- card 0x1c ---------------------------------- */
741         [BTTV_BOARD_TERRATV] = {
742                 .name           = "Terratec TerraTV+ Version 1.1 (bt878)",
743                 .video_inputs   = 3,
744                 .audio_inputs   = 1,
745                 .tuner          = 0,
746                 .svhs           = 2,
747                 .gpiomask       = 0x1f0fff,
748                 .muxsel         = { 2, 3, 1, 1},
749                 .audiomux       = { 0x20000, 0x30000, 0x10000, 0x00000, 0x40000},
750                 .needs_tvaudio  = 0,
751                 .tuner_type     = TUNER_PHILIPS_PAL,
752                 .tuner_addr     = ADDR_UNSET,
753                 .radio_addr     = ADDR_UNSET,
754                 .audio_hook     = terratv_audio,
755                 /* GPIO wiring:
756                 External 20 pin connector (for Active Radio Upgrade board)
757                 gpio00: i2c-sda
758                 gpio01: i2c-scl
759                 gpio02: om5610-data
760                 gpio03: om5610-clk
761                 gpio04: om5610-wre
762                 gpio05: om5610-stereo
763                 gpio06: rds6588-davn
764                 gpio07: Pin 7 n.c.
765                 gpio08: nIOW
766                 gpio09+10: nIOR, nSEL ?? (bt878)
767                         gpio09: nIOR (bt848)
768                         gpio10: nSEL (bt848)
769                 Sound Routing:
770                 gpio16: u2-A0 (1st 4052bt)
771                 gpio17: u2-A1
772                 gpio18: u2-nEN
773                 gpio19: u4-A0 (2nd 4052)
774                 gpio20: u4-A1
775                         u4-nEN - GND
776                 Btspy:
777                         00000 : Cdrom (internal audio input)
778                         10000 : ext. Video audio input
779                         20000 : TV Mono
780                         a0000 : TV Mono/2
781                 1a0000 : TV Stereo
782                         30000 : Radio
783                         40000 : Mute
784         */
785
786         },
787         [BTTV_BOARD_PXC200] = {
788                 /* Jannik Fritsch <jannik@techfak.uni-bielefeld.de> */
789                 .name           = "Imagenation PXC200",
790                 .video_inputs   = 5,
791                 .audio_inputs   = 1,
792                 .tuner          = -1,
793                 .svhs           = 1, /* was: 4 */
794                 .gpiomask       = 0,
795                 .muxsel         = { 2, 3, 1, 0, 0},
796                 .audiomux       = { 0 },
797                 .needs_tvaudio  = 1,
798                 .tuner_type     = -1,
799                 .tuner_addr     = ADDR_UNSET,
800                 .radio_addr     = ADDR_UNSET,
801                 .muxsel_hook    = PXC200_muxsel,
802
803         },
804         [BTTV_BOARD_FLYVIDEO_98] = {
805                 .name           = "Lifeview FlyVideo 98 LR50",
806                 .video_inputs   = 4,
807                 .audio_inputs   = 1,
808                 .tuner          = 0,
809                 .svhs           = 2,
810                 .gpiomask       = 0x1800,  /* 0x8dfe00 */
811                 .muxsel         = { 2, 3, 1, 1},
812                 .audiomux       = { 0, 0x0800, 0x1000, 0x1000, 0x1800, 0 },
813                 .pll            = PLL_28,
814                 .tuner_type     = -1,
815                 .tuner_addr     = ADDR_UNSET,
816                 .radio_addr     = ADDR_UNSET,
817         },
818         [BTTV_BOARD_IPROTV] = {
819                 .name           = "Formac iProTV, Formac ProTV I (bt848)",
820                 .video_inputs   = 4,
821                 .audio_inputs   = 1,
822                 .tuner          = 0,
823                 .svhs           = 3,
824                 .gpiomask       = 1,
825                 .muxsel         = { 2, 3, 1, 1},
826                 .audiomux       = { 1, 0, 0, 0, 0 },
827                 .pll            = PLL_28,
828                 .tuner_type     = TUNER_PHILIPS_PAL,
829                 .tuner_addr     = ADDR_UNSET,
830                 .radio_addr     = ADDR_UNSET,
831         },
832
833         /* ---- card 0x20 ---------------------------------- */
834         [BTTV_BOARD_INTEL_C_S_PCI] = {
835                 .name           = "Intel Create and Share PCI/ Smart Video Recorder III",
836                 .video_inputs   = 4,
837                 .audio_inputs   = 0,
838                 .tuner          = -1,
839                 .svhs           = 2,
840                 .gpiomask       = 0,
841                 .muxsel         = { 2, 3, 1, 1},
842                 .audiomux       = { 0 },
843                 .needs_tvaudio  = 0,
844                 .tuner_type     = 4,
845                 .tuner_addr     = ADDR_UNSET,
846                 .radio_addr     = ADDR_UNSET,
847         },
848         [BTTV_BOARD_TERRATVALUE] = {
849                 .name           = "Terratec TerraTValue Version Bt878",
850                 .video_inputs   = 3,
851                 .audio_inputs   = 1,
852                 .tuner          = 0,
853                 .svhs           = 2,
854                 .gpiomask       = 0xffff00,
855                 .muxsel         = { 2, 3, 1, 1},
856                 .audiomux       = { 0x500, 0, 0x300, 0x900, 0x900},
857                 .needs_tvaudio  = 1,
858                 .pll            = PLL_28,
859                 .tuner_type     = TUNER_PHILIPS_PAL,
860                 .tuner_addr     = ADDR_UNSET,
861                 .radio_addr     = ADDR_UNSET,
862         },
863         [BTTV_BOARD_WINFAST2000] = {
864                 .name           = "Leadtek WinFast 2000/ WinFast 2000 XP",
865                 .video_inputs   = 4,
866                 .audio_inputs   = 1,
867                 .tuner          = 0,
868                 .svhs           = 2,
869                 .muxsel         = { 2, 3, 1, 1, 0}, /* TV, CVid, SVid, CVid over SVid connector */
870         #if 0
871                 .gpiomask       = 0xc33000,
872                 .audiomux       = { 0x422000,0x1000,0x0000,0x620000,0x800000 },
873         #else
874                 /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */
875                 .gpiomask       = 0xb33000,
876                 .audiomux       = { 0x122000,0x1000,0x0000,0x620000,0x800000 },
877         #endif
878                 /* Audio Routing for "WinFast 2000 XP" (no tv stereo !)
879                         gpio23 -- hef4052:nEnable (0x800000)
880                         gpio12 -- hef4052:A1
881                         gpio13 -- hef4052:A0
882                 0x0000: external audio
883                 0x1000: FM
884                 0x2000: TV
885                 0x3000: n.c.
886                 Note: There exists another variant "Winfast 2000" with tv stereo !?
887                 Note: eeprom only contains FF and pci subsystem id 107d:6606
888                 */
889                 .needs_tvaudio  = 0,
890                 .pll            = PLL_28,
891                 .has_radio      = 1,
892                 .tuner_type     = 5, /* default for now, gpio reads BFFF06 for Pal bg+dk */
893                 .tuner_addr     = ADDR_UNSET,
894                 .radio_addr     = ADDR_UNSET,
895                 .audio_hook     = winfast2000_audio,
896                 .has_remote     = 1,
897         },
898         [BTTV_BOARD_CHRONOS_VS2] = {
899                 .name           = "Lifeview FlyVideo 98 LR50 / Chronos Video Shuttle II",
900                 .video_inputs   = 4,
901                 .audio_inputs   = 3,
902                 .tuner          = 0,
903                 .svhs           = 2,
904                 .gpiomask       = 0x1800,
905                 .muxsel         = { 2, 3, 1, 1},
906                 .audiomux       = { 0, 0x800, 0x1000, 0x1000, 0x1800},
907                 .pll            = PLL_28,
908                 .tuner_type     = -1,
909                 .tuner_addr     = ADDR_UNSET,
910                 .radio_addr     = ADDR_UNSET,
911         },
912
913         /* ---- card 0x24 ---------------------------------- */
914         [BTTV_BOARD_TYPHOON_TVIEW] = {
915                 .name           = "Lifeview FlyVideo 98FM LR50 / Typhoon TView TV/FM Tuner",
916                 .video_inputs   = 4,
917                 .audio_inputs   = 3,
918                 .tuner          = 0,
919                 .svhs           = 2,
920                 .gpiomask       = 0x1800,
921                 .muxsel         = { 2, 3, 1, 1},
922                 .audiomux       = { 0, 0x800, 0x1000, 0x1000, 0x1800, 0 },
923                 .pll            = PLL_28,
924                 .tuner_type     = -1,
925                 .tuner_addr     = ADDR_UNSET,
926                 .radio_addr     = ADDR_UNSET,
927                 .has_radio      = 1,
928         },
929         [BTTV_BOARD_PXELVWPLTVPRO] = {
930                 .name           = "Prolink PixelView PlayTV pro",
931                 .video_inputs   = 3,
932                 .audio_inputs   = 1,
933                 .tuner          = 0,
934                 .svhs           = 2,
935                 .gpiomask       = 0xff,
936                 .muxsel         = { 2, 3, 1, 1 },
937                 .audiomux       = { 0x21, 0x20, 0x24, 0x2c, 0x29, 0x29 },
938                 .no_msp34xx     = 1,
939                 .pll            = PLL_28,
940                 .tuner_type     = -1,
941                 .tuner_addr     = ADDR_UNSET,
942                 .radio_addr     = ADDR_UNSET,
943         },
944         [BTTV_BOARD_MAGICTVIEW063] = {
945                 .name           = "Askey CPH06X TView99",
946                 .video_inputs   = 4,
947                 .audio_inputs   = 1,
948                 .tuner          = 0,
949                 .svhs           = 2,
950                 .gpiomask       = 0x551e00,
951                 .muxsel         = { 2, 3, 1, 0},
952                 .audiomux       = { 0x551400, 0x551200, 0, 0, 0x551c00, 0x551200 },
953                 .needs_tvaudio  = 1,
954                 .pll            = PLL_28,
955                 .tuner_type     = 1,
956                 .tuner_addr     = ADDR_UNSET,
957                 .radio_addr     = ADDR_UNSET,
958                 .has_remote     = 1,
959         },
960         [BTTV_BOARD_PINNACLE] = {
961                 .name           = "Pinnacle PCTV Studio/Rave",
962                 .video_inputs   = 3,
963                 .audio_inputs   = 1,
964                 .tuner          = 0,
965                 .svhs           = 2,
966                 .gpiomask       = 0x03000F,
967                 .muxsel         = { 2, 3, 1, 1},
968                 .audiomux       = { 2, 0xd0001, 0, 0, 1},
969                 .needs_tvaudio  = 0,
970                 .pll            = PLL_28,
971                 .tuner_type     = -1,
972                 .tuner_addr     = ADDR_UNSET,
973                 .radio_addr     = ADDR_UNSET,
974         },
975
976         /* ---- card 0x28 ---------------------------------- */
977         [BTTV_BOARD_STB2] = {
978                 .name           = "STB TV PCI FM, Gateway P/N 6000704 (bt878), 3Dfx VoodooTV 100",
979                 .video_inputs   = 3,
980                 .audio_inputs   = 1,
981                 .tuner          = 0,
982                 .svhs           = 2,
983                 .gpiomask       = 7,
984                 .muxsel         = { 2, 3, 1, 1},
985                 .audiomux       = { 4, 0, 2, 3, 1},
986                 .no_msp34xx     = 1,
987                 .needs_tvaudio  = 1,
988                 .tuner_type     = TUNER_PHILIPS_NTSC,
989                 .tuner_addr     = ADDR_UNSET,
990                 .radio_addr     = ADDR_UNSET,
991                 .pll            = PLL_28,
992                 .has_radio      = 1,
993         },
994         [BTTV_BOARD_AVPHONE98] = {
995                 .name           = "AVerMedia TVPhone 98",
996                 .video_inputs   = 3,
997                 .audio_inputs   = 4,
998                 .tuner          = 0,
999                 .svhs           = 2,
1000                 .gpiomask       = 15,
1001                 .muxsel         = { 2, 3, 1, 1},
1002                 .audiomux       = { 13, 4, 11, 7, 0, 0},
1003                 .needs_tvaudio  = 1,
1004                 .pll            = PLL_28,
1005                 .tuner_type     = -1,
1006                 .tuner_addr     = ADDR_UNSET,
1007                 .radio_addr     = ADDR_UNSET,
1008                 .has_radio      = 1,
1009                 .audio_hook     = avermedia_tvphone_audio,
1010         },
1011         [BTTV_BOARD_PV951] = {
1012                 .name           = "ProVideo PV951", /* pic16c54 */
1013                 .video_inputs   = 3,
1014                 .audio_inputs   = 1,
1015                 .tuner          = 0,
1016                 .svhs           = 2,
1017                 .gpiomask       = 0,
1018                 .muxsel         = { 2, 3, 1, 1},
1019                 .audiomux       = { 0, 0, 0, 0, 0},
1020                 .needs_tvaudio  = 1,
1021                 .no_msp34xx     = 1,
1022                 .pll            = PLL_28,
1023                 .tuner_type     = 1,
1024                 .tuner_addr     = ADDR_UNSET,
1025                 .radio_addr     = ADDR_UNSET,
1026         },
1027         [BTTV_BOARD_ONAIR_TV] = {
1028                 .name           = "Little OnAir TV",
1029                 .video_inputs   = 3,
1030                 .audio_inputs   = 1,
1031                 .tuner          = 0,
1032                 .svhs           = 2,
1033                 .gpiomask       = 0xe00b,
1034                 .muxsel         = {2, 3, 1, 1},
1035                 .audiomux       = {0xff9ff6, 0xff9ff6, 0xff1ff7, 0, 0xff3ffc},
1036                 .no_msp34xx     = 1,
1037                 .tuner_type     = -1,
1038                 .tuner_addr     = ADDR_UNSET,
1039                 .radio_addr     = ADDR_UNSET,
1040         },
1041
1042         /* ---- card 0x2c ---------------------------------- */
1043         [BTTV_BOARD_SIGMA_TVII_FM] = {
1044                 .name           = "Sigma TVII-FM",
1045                 .video_inputs   = 2,
1046                 .audio_inputs   = 1,
1047                 .tuner          = 0,
1048                 .svhs           = -1,
1049                 .gpiomask       = 3,
1050                 .muxsel         = {2, 3, 1, 1},
1051                 .audiomux       = {1, 1, 0, 2, 3},
1052                 .no_msp34xx     = 1,
1053                 .pll            = PLL_NONE,
1054                 .tuner_type     = -1,
1055                 .tuner_addr     = ADDR_UNSET,
1056                 .radio_addr     = ADDR_UNSET,
1057         },
1058         [BTTV_BOARD_MATRIX_VISION2] = {
1059                 .name           = "MATRIX-Vision MV-Delta 2",
1060                 .video_inputs   = 5,
1061                 .audio_inputs   = 1,
1062                 .tuner          = -1,
1063                 .svhs           = 3,
1064                 .gpiomask       = 0,
1065                 .muxsel         = { 2, 3, 1, 0, 0},
1066                 .audiomux       = {0 },
1067                 .no_msp34xx     = 1,
1068                 .pll            = PLL_28,
1069                 .tuner_type     = -1,
1070                 .tuner_addr     = ADDR_UNSET,
1071                 .radio_addr     = ADDR_UNSET,
1072         },
1073         [BTTV_BOARD_ZOLTRIX_GENIE] = {
1074                 .name           = "Zoltrix Genie TV/FM",
1075                 .video_inputs   = 3,
1076                 .audio_inputs   = 1,
1077                 .tuner          = 0,
1078                 .svhs           = 2,
1079                 .gpiomask       = 0xbcf03f,
1080                 .muxsel         = { 2, 3, 1, 1},
1081                 .audiomux       = { 0xbc803f, 0xbc903f, 0xbcb03f, 0, 0xbcb03f},
1082                 .no_msp34xx     = 1,
1083                 .pll            = PLL_28,
1084                 .tuner_type     = 21,
1085                 .tuner_addr     = ADDR_UNSET,
1086                 .radio_addr     = ADDR_UNSET,
1087         },
1088         [BTTV_BOARD_TERRATVRADIO] = {
1089                 .name           = "Terratec TV/Radio+",
1090                 .video_inputs   = 3,
1091                 .audio_inputs   = 1,
1092                 .tuner          = 0,
1093                 .svhs           = 2,
1094                 .gpiomask       = 0x70000,
1095                 .muxsel         = { 2, 3, 1, 1},
1096                 .audiomux       = { 0x20000, 0x30000, 0x10000, 0, 0x40000, 0x20000 },
1097                 .needs_tvaudio  = 1,
1098                 .no_msp34xx     = 1,
1099                 .pll            = PLL_35,
1100                 .tuner_type     = 1,
1101                 .tuner_addr     = ADDR_UNSET,
1102                 .radio_addr     = ADDR_UNSET,
1103                 .has_radio      = 1,
1104         },
1105
1106         /* ---- card 0x30 ---------------------------------- */
1107         [BTTV_BOARD_DYNALINK] = {
1108                 .name           = "Askey CPH03x/ Dynalink Magic TView",
1109                 .video_inputs   = 3,
1110                 .audio_inputs   = 1,
1111                 .tuner          = 0,
1112                 .svhs           = 2,
1113                 .gpiomask       = 15,
1114                 .muxsel         = { 2, 3, 1, 1},
1115                 .audiomux       = {2,0,0,0,1},
1116                 .needs_tvaudio  = 1,
1117                 .pll            = PLL_28,
1118                 .tuner_type     = -1,
1119                 .tuner_addr     = ADDR_UNSET,
1120                 .radio_addr     = ADDR_UNSET,
1121         },
1122         [BTTV_BOARD_GVBCTV3PCI] = {
1123                 .name           = "IODATA GV-BCTV3/PCI",
1124                 .video_inputs   = 3,
1125                 .audio_inputs   = 1,
1126                 .tuner          = 0,
1127                 .svhs           = 2,
1128                 .gpiomask       = 0x010f00,
1129                 .muxsel         = {2, 3, 0, 0},
1130                 .audiomux       = {0x10000, 0, 0x10000, 0, 0, 0},
1131                 .no_msp34xx     = 1,
1132                 .pll            = PLL_28,
1133                 .tuner_type     = TUNER_ALPS_TSHC6_NTSC,
1134                 .tuner_addr     = ADDR_UNSET,
1135                 .radio_addr     = ADDR_UNSET,
1136                 .audio_hook     = gvbctv3pci_audio,
1137         },
1138         [BTTV_BOARD_PXELVWPLTVPAK] = {
1139                 .name           = "Prolink PV-BT878P+4E / PixelView PlayTV PAK / Lenco MXTV-9578 CP",
1140                 .video_inputs   = 5,
1141                 .audio_inputs   = 1,
1142                 .tuner          = 0,
1143                 .svhs           = 3,
1144                 .gpiomask       = 0xAA0000,
1145                 .muxsel         = { 2,3,1,1,-1 },
1146                 .digital_mode   = DIGITAL_MODE_CAMERA,
1147                 .audiomux       = { 0x20000, 0, 0x80000, 0x80000, 0xa8000, 0x46000  },
1148                 .no_msp34xx     = 1,
1149                 .pll            = PLL_28,
1150                 .tuner_type     = TUNER_PHILIPS_PAL_I,
1151                 .tuner_addr     = ADDR_UNSET,
1152                 .radio_addr     = ADDR_UNSET,
1153                 .has_remote     = 1,
1154                 /* GPIO wiring: (different from Rev.4C !)
1155                         GPIO17: U4.A0 (first hef4052bt)
1156                         GPIO19: U4.A1
1157                         GPIO20: U5.A1 (second hef4052bt)
1158                         GPIO21: U4.nEN
1159                         GPIO22: BT832 Reset Line
1160                         GPIO23: A5,A0, U5,nEN
1161                 Note: At i2c=0x8a is a Bt832 chip, which changes to 0x88 after being reset via GPIO22
1162                 */
1163         },
1164         [BTTV_BOARD_EAGLE] = {
1165                 .name           = "Eagle Wireless Capricorn2 (bt878A)",
1166                 .video_inputs   = 4,
1167                 .audio_inputs   = 1,
1168                 .tuner          = 0,
1169                 .svhs           = 2,
1170                 .gpiomask       = 7,
1171                 .muxsel         = { 2, 0, 1, 1},
1172                 .audiomux       = { 0, 1, 2, 3, 4},
1173                 .pll            = PLL_28,
1174                 .tuner_type     = -1 /* TUNER_ALPS_TMDH2_NTSC */,
1175                 .tuner_addr     = ADDR_UNSET,
1176                 .radio_addr     = ADDR_UNSET,
1177         },
1178
1179         /* ---- card 0x34 ---------------------------------- */
1180         [BTTV_BOARD_PINNACLEPRO] = {
1181                 /* David Härdeman <david@2gen.com> */
1182                 .name           = "Pinnacle PCTV Studio Pro",
1183                 .video_inputs   = 4,
1184                 .audio_inputs   = 1,
1185                 .tuner          = 0,
1186                 .svhs           = 3,
1187                 .gpiomask       = 0x03000F,
1188                 .muxsel         = { 2, 3, 1, 1},
1189                 .audiomux       = { 1, 0xd0001, 0, 0, 10},
1190                                 /* sound path (5 sources):
1191                                 MUX1 (mask 0x03), Enable Pin 0x08 (0=enable, 1=disable)
1192                                         0= ext. Audio IN
1193                                         1= from MUX2
1194                                         2= Mono TV sound from Tuner
1195                                         3= not connected
1196                                 MUX2 (mask 0x30000):
1197                                         0,2,3= from MSP34xx
1198                                         1= FM stereo Radio from Tuner */
1199                 .needs_tvaudio  = 0,
1200                 .pll            = PLL_28,
1201                 .tuner_type     = -1,
1202                 .tuner_addr     = ADDR_UNSET,
1203                 .radio_addr     = ADDR_UNSET,
1204         },
1205         [BTTV_BOARD_TVIEW_RDS_FM] = {
1206                 /* Claas Langbehn <claas@bigfoot.com>,
1207                 Sven Grothklags <sven@upb.de> */
1208                 .name           = "Typhoon TView RDS + FM Stereo / KNC1 TV Station RDS",
1209                 .video_inputs   = 4,
1210                 .audio_inputs   = 3,
1211                 .tuner          = 0,
1212                 .svhs           = 2,
1213                 .gpiomask       = 0x1c,
1214                 .muxsel         = { 2, 3, 1, 1},
1215                 .audiomux       = { 0, 0, 0x10, 8, 4 },
1216                 .needs_tvaudio  = 1,
1217                 .pll            = PLL_28,
1218                 .tuner_type     = TUNER_PHILIPS_PAL,
1219                 .tuner_addr     = ADDR_UNSET,
1220                 .radio_addr     = ADDR_UNSET,
1221                 .has_radio      = 1,
1222         },
1223         [BTTV_BOARD_LIFETEC_9415] = {
1224                 /* Tim Röstermundt <rosterm@uni-muenster.de>
1225                 in de.comp.os.unix.linux.hardware:
1226                         options bttv card=0 pll=1 radio=1 gpiomask=0x18e0
1227                         audiomux=0x44c71f,0x44d71f,0,0x44d71f,0x44dfff
1228                         options tuner type=5 */
1229                 .name           = "Lifeview FlyVideo 2000 /FlyVideo A2/ Lifetec LT 9415 TV [LR90]",
1230                 .video_inputs   = 4,
1231                 .audio_inputs   = 1,
1232                 .tuner          = 0,
1233                 .svhs           = 2,
1234                 .gpiomask       = 0x18e0,
1235                 .muxsel         = { 2, 3, 1, 1},
1236                 .audiomux       = { 0x0000,0x0800,0x1000,0x1000,0x18e0 },
1237                         /* For cards with tda9820/tda9821:
1238                                 0x0000: Tuner normal stereo
1239                                 0x0080: Tuner A2 SAP (second audio program = Zweikanalton)
1240                                 0x0880: Tuner A2 stereo */
1241                 .pll            = PLL_28,
1242                 .tuner_type     = -1,
1243                 .tuner_addr     = ADDR_UNSET,
1244                 .radio_addr     = ADDR_UNSET,
1245         },
1246         [BTTV_BOARD_BESTBUY_EASYTV] = {
1247                 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1248                 old Easy TV BT848 version (model CPH031) */
1249                 .name           = "Askey CPH031/ BESTBUY Easy TV",
1250                 .video_inputs   = 4,
1251                 .audio_inputs   = 1,
1252                 .tuner          = 0,
1253                 .svhs           = 2,
1254                 .gpiomask       = 0xF,
1255                 .muxsel         = { 2, 3, 1, 0},
1256                 .audiomux       = { 2, 0, 0, 0, 10},
1257                 .needs_tvaudio  = 0,
1258                 .pll            = PLL_28,
1259                 .tuner_type     = TUNER_TEMIC_PAL,
1260                 .tuner_addr     = ADDR_UNSET,
1261                 .radio_addr     = ADDR_UNSET,
1262         },
1263
1264         /* ---- card 0x38 ---------------------------------- */
1265         [BTTV_BOARD_FLYVIDEO_98FM] = {
1266                 /* Gordon Heydon <gjheydon@bigfoot.com ('98) */
1267                 .name           = "Lifeview FlyVideo 98FM LR50",
1268                 .video_inputs   = 4,
1269                 .audio_inputs   = 3,
1270                 .tuner          = 0,
1271                 .svhs           = 2,
1272                 .gpiomask       = 0x1800,
1273                 .muxsel         = { 2, 3, 1, 1},
1274                 .audiomux       = { 0, 0x800, 0x1000, 0x1000, 0x1800, 0 },
1275                 .pll            = PLL_28,
1276                 .tuner_type     = 5,
1277                 .tuner_addr     = ADDR_UNSET,
1278                 .radio_addr     = ADDR_UNSET,
1279         },
1280                 /* This is the ultimate cheapo capture card
1281                 * just a BT848A on a small PCB!
1282                 * Steve Hosgood <steve@equiinet.com> */
1283         [BTTV_BOARD_GRANDTEC] = {
1284                 .name           = "GrandTec 'Grand Video Capture' (Bt848)",
1285                 .video_inputs   = 2,
1286                 .audio_inputs   = 0,
1287                 .tuner          = -1,
1288                 .svhs           = 1,
1289                 .gpiomask       = 0,
1290                 .muxsel         = { 3, 1 },
1291                 .audiomux       = { 0 },
1292                 .needs_tvaudio  = 0,
1293                 .no_msp34xx     = 1,
1294                 .pll            = PLL_35,
1295                 .tuner_type     = -1,
1296                 .tuner_addr     = ADDR_UNSET,
1297                 .radio_addr     = ADDR_UNSET,
1298         },
1299         [BTTV_BOARD_ASKEY_CPH060] = {
1300                 /* Daniel Herrington <daniel.herrington@home.com> */
1301                 .name           = "Askey CPH060/ Phoebe TV Master Only (No FM)",
1302                 .video_inputs   = 3,
1303                 .audio_inputs   = 1,
1304                 .tuner          = 0,
1305                 .svhs           = 2,
1306                 .gpiomask       = 0xe00,
1307                 .muxsel         = { 2, 3, 1, 1},
1308                 .audiomux       = { 0x400, 0x400, 0x400, 0x400, 0x800, 0x400 },
1309                 .needs_tvaudio  = 1,
1310                 .pll            = PLL_28,
1311                 .tuner_type     = TUNER_TEMIC_4036FY5_NTSC,
1312                 .tuner_addr     = ADDR_UNSET,
1313                 .radio_addr     = ADDR_UNSET,
1314         },
1315         [BTTV_BOARD_ASKEY_CPH03X] = {
1316                 /* Matti Mottus <mottus@physic.ut.ee> */
1317                 .name           = "Askey CPH03x TV Capturer",
1318                 .video_inputs   = 4,
1319                 .audio_inputs   = 1,
1320                 .tuner          = 0,
1321                 .svhs           = 2,
1322                 .gpiomask       = 0x03000F,
1323                 .muxsel         = { 2, 3, 1, 0},
1324                 .audiomux       = { 2,0,0,0,1 },
1325                 .pll            = PLL_28,
1326                 .tuner_type     = 0,
1327                 .tuner_addr     = ADDR_UNSET,
1328                 .radio_addr     = ADDR_UNSET,
1329         },
1330
1331         /* ---- card 0x3c ---------------------------------- */
1332         [BTTV_BOARD_MM100PCTV] = {
1333                 /* Philip Blundell <philb@gnu.org> */
1334                 .name           = "Modular Technology MM100PCTV",
1335                 .video_inputs   = 2,
1336                 .audio_inputs   = 2,
1337                 .tuner          = 0,
1338                 .svhs           = -1,
1339                 .gpiomask       = 11,
1340                 .muxsel         = { 2, 3, 1, 1},
1341                 .audiomux       = { 2, 0, 0, 1, 8},
1342                 .pll            = PLL_35,
1343                 .tuner_type     = TUNER_TEMIC_PAL,
1344                 .tuner_addr     = ADDR_UNSET,
1345                 .radio_addr     = ADDR_UNSET,
1346         },
1347         [BTTV_BOARD_GMV1] = {
1348                 /* Adrian Cox <adrian@humboldt.co.uk */
1349                 .name           = "AG Electronics GMV1",
1350                 .video_inputs   = 2,
1351                 .audio_inputs   = 0,
1352                 .tuner          = -1,
1353                 .svhs           = 1,
1354                 .gpiomask       = 0xF,
1355                 .muxsel         = { 2, 2},
1356                 .audiomux       = { },
1357                 .no_msp34xx     = 1,
1358                 .needs_tvaudio  = 0,
1359                 .pll            = PLL_28,
1360                 .tuner_type     = -1,
1361                 .tuner_addr     = ADDR_UNSET,
1362                 .radio_addr     = ADDR_UNSET,
1363         },
1364         [BTTV_BOARD_BESTBUY_EASYTV2] = {
1365                 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1366                 new Easy TV BT878 version (model CPH061)
1367                 special thanks to Informatica Mieres for providing the card */
1368                 .name           = "Askey CPH061/ BESTBUY Easy TV (bt878)",
1369                 .video_inputs   = 3,
1370                 .audio_inputs   = 2,
1371                 .tuner          = 0,
1372                 .svhs           = 2,
1373                 .gpiomask       = 0xFF,
1374                 .muxsel         = { 2, 3, 1, 0},
1375                 .audiomux       = { 1, 0, 4, 4, 9},
1376                 .needs_tvaudio  = 0,
1377                 .pll            = PLL_28,
1378                 .tuner_type     = TUNER_PHILIPS_PAL,
1379                 .tuner_addr     = ADDR_UNSET,
1380                 .radio_addr     = ADDR_UNSET,
1381         },
1382         [BTTV_BOARD_ATI_TVWONDER] = {
1383                 /* Lukas Gebauer <geby@volny.cz> */
1384                 .name           = "ATI TV-Wonder",
1385                 .video_inputs   = 3,
1386                 .audio_inputs   = 1,
1387                 .tuner          = 0,
1388                 .svhs           = 2,
1389                 .gpiomask       = 0xf03f,
1390                 .muxsel         = { 2, 3, 1, 0 },
1391                 .audiomux       = { 0xbffe, 0, 0xbfff, 0, 0xbffe},
1392                 .pll            = PLL_28,
1393                 .tuner_type     = TUNER_TEMIC_4006FN5_MULTI_PAL,
1394                 .tuner_addr     = ADDR_UNSET,
1395                 .radio_addr     = ADDR_UNSET,
1396         },
1397
1398         /* ---- card 0x40 ---------------------------------- */
1399         [BTTV_BOARD_ATI_TVWONDERVE] = {
1400                 /* Lukas Gebauer <geby@volny.cz> */
1401                 .name           = "ATI TV-Wonder VE",
1402                 .video_inputs   = 2,
1403                 .audio_inputs   = 1,
1404                 .tuner          = 0,
1405                 .svhs           = -1,
1406                 .gpiomask       = 1,
1407                 .muxsel         = { 2, 3, 0, 1},
1408                 .audiomux       = { 0, 0, 1, 0, 0},
1409                 .no_msp34xx     = 1,
1410                 .pll            = PLL_28,
1411                 .tuner_type     = TUNER_TEMIC_4006FN5_MULTI_PAL,
1412                 .tuner_addr     = ADDR_UNSET,
1413                 .radio_addr     = ADDR_UNSET,
1414         },
1415         [BTTV_BOARD_FLYVIDEO2000] = {
1416                 /* DeeJay <deejay@westel900.net (2000S) */
1417                 .name           = "Lifeview FlyVideo 2000S LR90",
1418                 .video_inputs   = 3,
1419                 .audio_inputs   = 3,
1420                 .tuner          = 0,
1421                 .svhs           = 2,
1422                 .gpiomask       = 0x18e0,
1423                 .muxsel         = { 2, 3, 0, 1},
1424                                 /* Radio changed from 1e80 to 0x800 to make
1425                                 FlyVideo2000S in .hu happy (gm)*/
1426                                 /* -dk-???: set mute=0x1800 for tda9874h daughterboard */
1427                 .audiomux       = { 0x0000,0x0800,0x1000,0x1000,0x1800, 0x1080 },
1428                 .audio_hook     = fv2000s_audio,
1429                 .no_msp34xx     = 1,
1430                 .no_tda9875     = 1,
1431                 .needs_tvaudio  = 1,
1432                 .pll            = PLL_28,
1433                 .tuner_type     = 5,
1434                 .tuner_addr     = ADDR_UNSET,
1435                 .radio_addr     = ADDR_UNSET,
1436         },
1437         [BTTV_BOARD_TERRATVALUER] = {
1438                 .name           = "Terratec TValueRadio",
1439                 .video_inputs   = 3,
1440                 .audio_inputs   = 1,
1441                 .tuner          = 0,
1442                 .svhs           = 2,
1443                 .gpiomask       = 0xffff00,
1444                 .muxsel         = { 2, 3, 1, 1},
1445                 .audiomux       = { 0x500, 0x500, 0x300, 0x900, 0x900},
1446                 .needs_tvaudio  = 1,
1447                 .pll            = PLL_28,
1448                 .tuner_type     = TUNER_PHILIPS_PAL,
1449                 .tuner_addr     = ADDR_UNSET,
1450                 .radio_addr     = ADDR_UNSET,
1451                 .has_radio      = 1,
1452         },
1453         [BTTV_BOARD_GVBCTV4PCI] = {
1454                 /* TANAKA Kei <peg00625@nifty.com> */
1455                 .name           = "IODATA GV-BCTV4/PCI",
1456                 .video_inputs   = 3,
1457                 .audio_inputs   = 1,
1458                 .tuner          = 0,
1459                 .svhs           = 2,
1460                 .gpiomask       = 0x010f00,
1461                 .muxsel         = {2, 3, 0, 0},
1462                 .audiomux       = {0x10000, 0, 0x10000, 0, 0, 0},
1463                 .no_msp34xx     = 1,
1464                 .pll            = PLL_28,
1465                 .tuner_type     = TUNER_SHARP_2U5JF5540_NTSC,
1466                 .tuner_addr     = ADDR_UNSET,
1467                 .radio_addr     = ADDR_UNSET,
1468                 .audio_hook     = gvbctv3pci_audio,
1469         },
1470
1471         /* ---- card 0x44 ---------------------------------- */
1472         [BTTV_BOARD_VOODOOTV_FM] = {
1473                 .name           = "3Dfx VoodooTV FM (Euro), VoodooTV 200 (USA)",
1474                 /* try "insmod msp3400 simple=0" if you have
1475                 * sound problems with this card. */
1476                 .video_inputs   = 4,
1477                 .audio_inputs   = 1,
1478                 .tuner          = 0,
1479                 .svhs           = -1,
1480                 .gpiomask       = 0x4f8a00,
1481                 /* 0x100000: 1=MSP enabled (0=disable again)
1482                 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1483                 .audiomux       = {0x947fff, 0x987fff,0x947fff,0x947fff, 0x947fff},
1484                 /* tvtuner, radio,   external,internal, mute,  stereo
1485                 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1486                 .muxsel         = { 2, 3 ,0 ,1},
1487                 .tuner_type     = TUNER_MT2032,
1488                 .tuner_addr     = ADDR_UNSET,
1489                 .radio_addr     = ADDR_UNSET,
1490                 .pll            = PLL_28,
1491                 .has_radio      = 1,
1492         },
1493         [BTTV_BOARD_AIMMS] = {
1494                 /* Philip Blundell <pb@nexus.co.uk> */
1495                 .name           = "Active Imaging AIMMS",
1496                 .video_inputs   = 1,
1497                 .audio_inputs   = 0,
1498                 .tuner          = -1,
1499                 .tuner_type     = -1,
1500                 .tuner_addr     = ADDR_UNSET,
1501                 .radio_addr     = ADDR_UNSET,
1502                 .pll            = PLL_28,
1503                 .muxsel         = { 2 },
1504                 .gpiomask       = 0
1505         },
1506         [BTTV_BOARD_PV_BT878P_PLUS] = {
1507                 /* Tomasz Pyra <hellfire@sedez.iq.pl> */
1508                 .name           = "Prolink Pixelview PV-BT878P+ (Rev.4C,8E)",
1509                 .video_inputs   = 3,
1510                 .audio_inputs   = 4,
1511                 .tuner          = 0,
1512                 .svhs           = 2,
1513                 .gpiomask       = 15,
1514                 .muxsel         = { 2, 3, 1, 1},
1515                 .audiomux       = { 0, 0, 11, 7, 13, 0}, /* TV and Radio with same GPIO ! */
1516                 .needs_tvaudio  = 1,
1517                 .pll            = PLL_28,
1518                 .tuner_type     = 25,
1519                 .tuner_addr     = ADDR_UNSET,
1520                 .radio_addr     = ADDR_UNSET,
1521                 .has_remote     = 1,
1522                 /* GPIO wiring:
1523                         GPIO0: U4.A0 (hef4052bt)
1524                         GPIO1: U4.A1
1525                         GPIO2: U4.A1 (second hef4052bt)
1526                         GPIO3: U4.nEN, U5.A0, A5.nEN
1527                         GPIO8-15: vrd866b ?
1528                 */
1529         },
1530         [BTTV_BOARD_FLYVIDEO98EZ] = {
1531                 .name           = "Lifeview FlyVideo 98EZ (capture only) LR51",
1532                 .video_inputs   = 4,
1533                 .audio_inputs   = 0,
1534                 .tuner          = -1,
1535                 .svhs           = 2,
1536                 .muxsel         = { 2, 3, 1, 1}, /* AV1, AV2, SVHS, CVid adapter on SVHS */
1537                 .pll            = PLL_28,
1538                 .no_msp34xx     = 1,
1539                 .tuner_type     = UNSET,
1540                 .tuner_addr     = ADDR_UNSET,
1541                 .radio_addr     = ADDR_UNSET,
1542         },
1543
1544         /* ---- card 0x48 ---------------------------------- */
1545         [BTTV_BOARD_PV_BT878P_9B] = {
1546                 /* Dariusz Kowalewski <darekk@automex.pl> */
1547                 .name           = "Prolink Pixelview PV-BT878P+9B (PlayTV Pro rev.9B FM+NICAM)",
1548                 .video_inputs   = 4,
1549                 .audio_inputs   = 1,
1550                 .tuner          = 0,
1551                 .svhs           = 2,
1552                 .gpiomask       = 0x3f,
1553                 .muxsel         = { 2, 3, 1, 1 },
1554                 .audiomux       = { 0x01, 0x00, 0x03, 0x03, 0x09, 0x02 },
1555                 .needs_tvaudio  = 1,
1556                 .no_msp34xx     = 1,
1557                 .no_tda9875     = 1,
1558                 .pll            = PLL_28,
1559                 .tuner_type     = 5,
1560                 .tuner_addr     = ADDR_UNSET,
1561                 .radio_addr     = ADDR_UNSET,
1562                 .audio_hook     = pvbt878p9b_audio, /* Note: not all cards have stereo */
1563                 .has_radio      = 1,  /* Note: not all cards have radio */
1564                 .has_remote     = 1,
1565                 /* GPIO wiring:
1566                         GPIO0: A0 hef4052
1567                         GPIO1: A1 hef4052
1568                         GPIO3: nEN hef4052
1569                         GPIO8-15: vrd866b
1570                         GPIO20,22,23: R30,R29,R28
1571                 */
1572         },
1573         [BTTV_BOARD_SENSORAY311] = {
1574                 /* Clay Kunz <ckunz@mail.arc.nasa.gov> */
1575                 /* you must jumper JP5 for the card to work */
1576                 .name           = "Sensoray 311",
1577                 .video_inputs   = 5,
1578                 .audio_inputs   = 0,
1579                 .tuner          = -1,
1580                 .svhs           = 4,
1581                 .gpiomask       = 0,
1582                 .muxsel         = { 2, 3, 1, 0, 0},
1583                 .audiomux       = { 0 },
1584                 .needs_tvaudio  = 0,
1585                 .tuner_type     = -1,
1586                 .tuner_addr     = ADDR_UNSET,
1587                 .radio_addr     = ADDR_UNSET,
1588         },
1589         [BTTV_BOARD_RV605] = {
1590                 /* Miguel Freitas <miguel@cetuc.puc-rio.br> */
1591                 .name           = "RemoteVision MX (RV605)",
1592                 .video_inputs   = 16,
1593                 .audio_inputs   = 0,
1594                 .tuner          = -1,
1595                 .svhs           = -1,
1596                 .gpiomask       = 0x00,
1597                 .gpiomask2      = 0x07ff,
1598                 .muxsel         = { 0x33, 0x13, 0x23, 0x43, 0xf3, 0x73, 0xe3, 0x03,
1599                                 0xd3, 0xb3, 0xc3, 0x63, 0x93, 0x53, 0x83, 0xa3 },
1600                 .no_msp34xx     = 1,
1601                 .no_tda9875     = 1,
1602                 .tuner_type     = -1,
1603                 .tuner_addr     = ADDR_UNSET,
1604                 .radio_addr     = ADDR_UNSET,
1605                 .muxsel_hook    = rv605_muxsel,
1606         },
1607         [BTTV_BOARD_POWERCLR_MTV878] = {
1608                 .name           = "Powercolor MTV878/ MTV878R/ MTV878F",
1609                 .video_inputs   = 3,
1610                 .audio_inputs   = 2,
1611                 .tuner          = 0,
1612                 .svhs           = 2,
1613                 .gpiomask       = 0x1C800F,  /* Bit0-2: Audio select, 8-12:remote control 14:remote valid 15:remote reset */
1614                 .muxsel         = { 2, 1, 1, },
1615                 .audiomux       = { 0, 1, 2, 2, 4 },
1616                 .needs_tvaudio  = 0,
1617                 .tuner_type     = TUNER_PHILIPS_PAL,
1618                 .tuner_addr     = ADDR_UNSET,
1619                 .radio_addr     = ADDR_UNSET,
1620                 .pll            = PLL_28,
1621                 .has_radio      = 1,
1622         },
1623
1624         /* ---- card 0x4c ---------------------------------- */
1625         [BTTV_BOARD_WINDVR] = {
1626                 /* Masaki Suzuki <masaki@btree.org> */
1627                 .name           = "Canopus WinDVR PCI (COMPAQ Presario 3524JP, 5112JP)",
1628                 .video_inputs   = 3,
1629                 .audio_inputs   = 1,
1630                 .tuner          = 0,
1631                 .svhs           = 2,
1632                 .gpiomask       = 0x140007,
1633                 .muxsel         = { 2, 3, 1, 1 },
1634                 .audiomux       = { 0, 1, 2, 3, 4, 0 },
1635                 .tuner_type     = TUNER_PHILIPS_NTSC,
1636                 .tuner_addr     = ADDR_UNSET,
1637                 .radio_addr     = ADDR_UNSET,
1638                 .audio_hook     = windvr_audio,
1639         },
1640         [BTTV_BOARD_GRANDTEC_MULTI] = {
1641                 .name           = "GrandTec Multi Capture Card (Bt878)",
1642                 .video_inputs   = 4,
1643                 .audio_inputs   = 0,
1644                 .tuner          = -1,
1645                 .svhs           = -1,
1646                 .gpiomask       = 0,
1647                 .muxsel         = { 2, 3, 1, 0 },
1648                 .audiomux       = { 0 },
1649                 .needs_tvaudio  = 0,
1650                 .no_msp34xx     = 1,
1651                 .pll            = PLL_28,
1652                 .tuner_type     = -1,
1653                 .tuner_addr     = ADDR_UNSET,
1654                 .radio_addr     = ADDR_UNSET,
1655         },
1656         [BTTV_BOARD_KWORLD] = {
1657                 .name           = "Jetway TV/Capture JW-TV878-FBK, Kworld KW-TV878RF",
1658                 .video_inputs   = 4,
1659                 .audio_inputs   = 3,
1660                 .tuner          = 0,
1661                 .svhs           = 2,
1662                 .gpiomask       = 7,
1663                 .muxsel         = { 2, 3, 1, 1 },   /* Tuner, SVid, SVHS, SVid to SVHS connector */
1664                 .audiomux       = { 0 ,0 ,4, 4,4,4},/* Yes, this tuner uses the same audio output for TV and FM radio!
1665                                                 * This card lacks external Audio In, so we mute it on Ext. & Int.
1666                                                 * The PCB can take a sbx1637/sbx1673, wiring unknown.
1667                                                 * This card lacks PCI subsystem ID, sigh.
1668                                                 * audiomux=1: lower volume, 2+3: mute
1669                                                 * btwincap uses 0x80000/0x80003
1670                                                 */
1671                 .needs_tvaudio  = 0,
1672                 .no_msp34xx     = 1,
1673                 .pll            = PLL_28,
1674                 .tuner_type     = 5,
1675                 .tuner_addr     = ADDR_UNSET,
1676                 .radio_addr     = ADDR_UNSET,
1677                 /* Samsung TCPA9095PC27A (BG+DK), philips compatible, w/FM, stereo and
1678                 radio signal strength indicators work fine. */
1679                 .has_radio      = 1,
1680                 /* GPIO Info:
1681                         GPIO0,1:   HEF4052 A0,A1
1682                         GPIO2:     HEF4052 nENABLE
1683                         GPIO3-7:   n.c.
1684                         GPIO8-13:  IRDC357 data0-5 (data6 n.c. ?) [chip not present on my card]
1685                         GPIO14,15: ??
1686                         GPIO16-21: n.c.
1687                         GPIO22,23: ??
1688                         ??       : mtu8b56ep microcontroller for IR (GPIO wiring unknown)*/
1689         },
1690         [BTTV_BOARD_DSP_TCVIDEO] = {
1691                 /* Arthur Tetzlaff-Deas, DSP Design Ltd <software@dspdesign.com> */
1692                 .name           = "DSP Design TCVIDEO",
1693                 .video_inputs   = 4,
1694                 .svhs           = -1,
1695                 .muxsel         = { 2, 3, 1, 0},
1696                 .pll            = PLL_28,
1697                 .tuner_type     = -1,
1698                 .tuner_addr     = ADDR_UNSET,
1699                 .radio_addr     = ADDR_UNSET,
1700         },
1701
1702                 /* ---- card 0x50 ---------------------------------- */
1703         [BTTV_BOARD_HAUPPAUGEPVR] = {
1704                 .name           = "Hauppauge WinTV PVR",
1705                 .video_inputs   = 4,
1706                 .audio_inputs   = 1,
1707                 .tuner          = 0,
1708                 .svhs           = 2,
1709                 .muxsel         = { 2, 0, 1, 1},
1710                 .needs_tvaudio  = 1,
1711                 .pll            = PLL_28,
1712                 .tuner_type     = -1,
1713                 .tuner_addr     = ADDR_UNSET,
1714                 .radio_addr     = ADDR_UNSET,
1715
1716                 .gpiomask       = 7,
1717                 .audiomux       = {7},
1718         },
1719         [BTTV_BOARD_GVBCTV5PCI] = {
1720                 .name           = "IODATA GV-BCTV5/PCI",
1721                 .video_inputs   = 3,
1722                 .audio_inputs   = 1,
1723                 .tuner          = 0,
1724                 .svhs           = 2,
1725                 .gpiomask       = 0x0f0f80,
1726                 .muxsel         = {2, 3, 1, 0},
1727                 .audiomux       = {0x030000, 0x010000, 0, 0, 0x020000, 0},
1728                 .no_msp34xx     = 1,
1729                 .pll            = PLL_28,
1730                 .tuner_type     = TUNER_PHILIPS_NTSC_M,
1731                 .tuner_addr     = ADDR_UNSET,
1732                 .radio_addr     = ADDR_UNSET,
1733                 .audio_hook     = gvbctv5pci_audio,
1734                 .has_radio      = 1,
1735         },
1736         [BTTV_BOARD_OSPREY1x0] = {
1737                 .name           = "Osprey 100/150 (878)", /* 0x1(2|3)-45C6-C1 */
1738                 .video_inputs   = 4,                  /* id-inputs-clock */
1739                 .audio_inputs   = 0,
1740                 .tuner          = -1,
1741                 .svhs           = 3,
1742                 .muxsel         = { 3, 2, 0, 1 },
1743                 .pll            = PLL_28,
1744                 .tuner_type     = -1,
1745                 .tuner_addr     = ADDR_UNSET,
1746                 .radio_addr     = ADDR_UNSET,
1747                 .no_msp34xx     = 1,
1748                 .no_tda9875     = 1,
1749                 .no_tda7432     = 1,
1750         },
1751         [BTTV_BOARD_OSPREY1x0_848] = {
1752                 .name           = "Osprey 100/150 (848)", /* 0x04-54C0-C1 & older boards */
1753                 .video_inputs   = 3,
1754                 .audio_inputs   = 0,
1755                 .tuner          = -1,
1756                 .svhs           = 2,
1757                 .muxsel         = { 2, 3, 1 },
1758                 .pll            = PLL_28,
1759                 .tuner_type     = -1,
1760                 .tuner_addr     = ADDR_UNSET,
1761                 .radio_addr     = ADDR_UNSET,
1762                 .no_msp34xx     = 1,
1763                 .no_tda9875     = 1,
1764                 .no_tda7432     = 1,
1765         },
1766
1767                 /* ---- card 0x54 ---------------------------------- */
1768         [BTTV_BOARD_OSPREY101_848] = {
1769                 .name           = "Osprey 101 (848)", /* 0x05-40C0-C1 */
1770                 .video_inputs   = 2,
1771                 .audio_inputs   = 0,
1772                 .tuner          = -1,
1773                 .svhs           = 1,
1774                 .muxsel         = { 3, 1 },
1775                 .pll            = PLL_28,
1776                 .tuner_type     = -1,
1777                 .tuner_addr     = ADDR_UNSET,
1778                 .radio_addr     = ADDR_UNSET,
1779                 .no_msp34xx     = 1,
1780                 .no_tda9875     = 1,
1781                 .no_tda7432     = 1,
1782         },
1783         [BTTV_BOARD_OSPREY1x1] = {
1784                 .name           = "Osprey 101/151",       /* 0x1(4|5)-0004-C4 */
1785                 .video_inputs   = 1,
1786                 .audio_inputs   = 0,
1787                 .tuner          = -1,
1788                 .svhs           = -1,
1789                 .muxsel         = { 0 },
1790                 .pll            = PLL_28,
1791                 .tuner_type     = -1,
1792                 .tuner_addr     = ADDR_UNSET,
1793                 .radio_addr     = ADDR_UNSET,
1794                 .no_msp34xx     = 1,
1795                 .no_tda9875     = 1,
1796                 .no_tda7432     = 1,
1797         },
1798         [BTTV_BOARD_OSPREY1x1_SVID] = {
1799                 .name           = "Osprey 101/151 w/ svid",  /* 0x(16|17|20)-00C4-C1 */
1800                 .video_inputs   = 2,
1801                 .audio_inputs   = 0,
1802                 .tuner          = -1,
1803                 .svhs           = 1,
1804                 .muxsel         = { 0, 1 },
1805                 .pll            = PLL_28,
1806                 .tuner_type     = -1,
1807                 .tuner_addr     = ADDR_UNSET,
1808                 .radio_addr     = ADDR_UNSET,
1809                 .no_msp34xx     = 1,
1810                 .no_tda9875     = 1,
1811                 .no_tda7432     = 1,
1812         },
1813         [BTTV_BOARD_OSPREY2xx] = {
1814                 .name           = "Osprey 200/201/250/251",  /* 0x1(8|9|E|F)-0004-C4 */
1815                 .video_inputs   = 1,
1816                 .audio_inputs   = 1,
1817                 .tuner          = -1,
1818                 .svhs           = -1,
1819                 .muxsel         = { 0 },
1820                 .pll            = PLL_28,
1821                 .tuner_type     = UNSET,
1822                 .tuner_addr     = ADDR_UNSET,
1823                 .radio_addr     = ADDR_UNSET,
1824                 .no_msp34xx     = 1,
1825                 .no_tda9875     = 1,
1826                 .no_tda7432     = 1,
1827         },
1828
1829                 /* ---- card 0x58 ---------------------------------- */
1830         [BTTV_BOARD_OSPREY2x0_SVID] = {
1831                 .name           = "Osprey 200/250",   /* 0x1(A|B)-00C4-C1 */
1832                 .video_inputs   = 2,
1833                 .audio_inputs   = 1,
1834                 .tuner          = -1,
1835                 .svhs           = 1,
1836                 .muxsel         = { 0, 1 },
1837                 .pll            = PLL_28,
1838                 .tuner_type     = UNSET,
1839                 .tuner_addr     = ADDR_UNSET,
1840                 .radio_addr     = ADDR_UNSET,
1841                 .no_msp34xx     = 1,
1842                 .no_tda9875     = 1,
1843                 .no_tda7432     = 1,
1844         },
1845         [BTTV_BOARD_OSPREY2x0] = {
1846                 .name           = "Osprey 210/220",   /* 0x1(A|B)-04C0-C1 */
1847                 .video_inputs   = 2,
1848                 .audio_inputs   = 1,
1849                 .tuner          = -1,
1850                 .svhs           = 1,
1851                 .muxsel         = { 2, 3 },
1852                 .pll            = PLL_28,
1853                 .tuner_type     = UNSET,
1854                 .tuner_addr     = ADDR_UNSET,
1855                 .radio_addr     = ADDR_UNSET,
1856                 .no_msp34xx     = 1,
1857                 .no_tda9875     = 1,
1858                 .no_tda7432     = 1,
1859         },
1860         [BTTV_BOARD_OSPREY500] = {
1861                 .name           = "Osprey 500",   /* 500 */
1862                 .video_inputs   = 2,
1863                 .audio_inputs   = 1,
1864                 .tuner          = -1,
1865                 .svhs           = 1,
1866                 .muxsel         = { 2, 3 },
1867                 .pll            = PLL_28,
1868                 .tuner_type     = -1,
1869                 .tuner_addr     = ADDR_UNSET,
1870                 .radio_addr     = ADDR_UNSET,
1871                 .no_msp34xx     = 1,
1872                 .no_tda9875     = 1,
1873                 .no_tda7432     = 1,
1874         },
1875         [BTTV_BOARD_OSPREY540] = {
1876                 .name           = "Osprey 540",   /* 540 */
1877                 .video_inputs   = 4,
1878                 .audio_inputs   = 1,
1879                 .tuner          = -1,
1880         #if 0 /* TODO ... */
1881                 .svhs           = OSPREY540_SVID_ANALOG,
1882                 .muxsel         = {       [OSPREY540_COMP_ANALOG] = 2,
1883                                         [OSPREY540_SVID_ANALOG] = 3, },
1884         #endif
1885                 .pll            = PLL_28,
1886                 .tuner_type     = -1,
1887                 .tuner_addr     = ADDR_UNSET,
1888                 .radio_addr     = ADDR_UNSET,
1889                 .no_msp34xx     = 1,
1890                 .no_tda9875     = 1,
1891                 .no_tda7432     = 1,
1892         #if 0 /* TODO ... */
1893                 .muxsel_hook    = osprey_540_muxsel,
1894                 .picture_hook   = osprey_540_set_picture,
1895         #endif
1896         },
1897
1898                 /* ---- card 0x5C ---------------------------------- */
1899         [BTTV_BOARD_OSPREY2000] = {
1900                 .name           = "Osprey 2000",  /* 2000 */
1901                 .video_inputs   = 2,
1902                 .audio_inputs   = 1,
1903                 .tuner          = -1,
1904                 .svhs           = 1,
1905                 .muxsel         = { 2, 3 },
1906                 .pll            = PLL_28,
1907                 .tuner_type     = UNSET,
1908                 .tuner_addr     = ADDR_UNSET,
1909                 .radio_addr     = ADDR_UNSET,
1910                 .no_msp34xx     = 1,
1911                 .no_tda9875     = 1,
1912                 .no_tda7432     = 1,      /* must avoid, conflicts with the bt860 */
1913         },
1914         [BTTV_BOARD_IDS_EAGLE] = {
1915                 /* M G Berberich <berberic@forwiss.uni-passau.de> */
1916                 .name           = "IDS Eagle",
1917                 .video_inputs   = 4,
1918                 .audio_inputs   = 0,
1919                 .tuner          = -1,
1920                 .tuner_type     = -1,
1921                 .tuner_addr     = ADDR_UNSET,
1922                 .radio_addr     = ADDR_UNSET,
1923                 .svhs           = -1,
1924                 .gpiomask       = 0,
1925                 .muxsel         = { 0, 1, 2, 3 },
1926                 .muxsel_hook    = eagle_muxsel,
1927                 .no_msp34xx     = 1,
1928                 .no_tda9875     = 1,
1929                 .pll            = PLL_28,
1930         },
1931         [BTTV_BOARD_PINNACLESAT] = {
1932                 .name           = "Pinnacle PCTV Sat",
1933                 .video_inputs   = 2,
1934                 .audio_inputs   = 0,
1935                 .svhs           = 1,
1936                 .tuner          = -1,
1937                 .tuner_type     = -1,
1938                 .tuner_addr     = ADDR_UNSET,
1939                 .radio_addr     = ADDR_UNSET,
1940                 .no_msp34xx     = 1,
1941                 .no_tda9875     = 1,
1942                 .no_tda7432     = 1,
1943                 .muxsel         = { 3, 0, 1, 2},
1944                 .pll            = PLL_28,
1945                 .no_gpioirq     = 1,
1946                 .has_dvb        = 1,
1947         },
1948         [BTTV_BOARD_FORMAC_PROTV] = {
1949                 .name           = "Formac ProTV II (bt878)",
1950                 .video_inputs   = 4,
1951                 .audio_inputs   = 1,
1952                 .tuner          = 0,
1953                 .svhs           = 3,
1954                 .gpiomask       = 2,
1955                 /* TV, Comp1, Composite over SVID con, SVID */
1956                 .muxsel         = { 2, 3, 1, 1},
1957                 .audiomux       = { 2, 2, 0, 0, 0 },
1958                 .pll            = PLL_28,
1959                 .has_radio      = 1,
1960                 .tuner_type     = TUNER_PHILIPS_PAL,
1961                 .tuner_addr     = ADDR_UNSET,
1962                 .radio_addr     = ADDR_UNSET,
1963         /* sound routing:
1964                 GPIO=0x00,0x01,0x03: mute (?)
1965                 0x02: both TV and radio (tuner: FM1216/I)
1966                 The card has onboard audio connectors labeled "cdrom" and "board",
1967                 not soldered here, though unknown wiring.
1968                 Card lacks: external audio in, pci subsystem id.
1969         */
1970         },
1971
1972                 /* ---- card 0x60 ---------------------------------- */
1973         [BTTV_BOARD_MACHTV] = {
1974                 .name           = "MachTV",
1975                 .video_inputs   = 3,
1976                 .audio_inputs   = 1,
1977                 .tuner          = 0,
1978                 .svhs           = -1,
1979                 .gpiomask       = 7,
1980                 .muxsel         = { 2, 3, 1, 1},
1981                 .audiomux       = { 0, 1, 2, 3, 4},
1982                 .needs_tvaudio  = 1,
1983                 .tuner_type     = 5,
1984                 .tuner_addr     = ADDR_UNSET,
1985                 .radio_addr     = ADDR_UNSET,
1986                 .pll            = PLL_28,
1987         },
1988         [BTTV_BOARD_EURESYS_PICOLO] = {
1989                 .name           = "Euresys Picolo",
1990                 .video_inputs   = 3,
1991                 .audio_inputs   = 0,
1992                 .tuner          = -1,
1993                 .svhs           = 2,
1994                 .gpiomask       = 0,
1995                 .no_msp34xx     = 1,
1996                 .no_tda9875     = 1,
1997                 .no_tda7432     = 1,
1998                 .muxsel         = { 2, 0, 1},
1999                 .pll            = PLL_28,
2000                 .tuner_type     = UNSET,
2001                 .tuner_addr     = ADDR_UNSET,
2002                 .radio_addr     = ADDR_UNSET,
2003         },
2004         [BTTV_BOARD_PV150] = {
2005                 /* Luc Van Hoeylandt <luc@e-magic.be> */
2006                 .name           = "ProVideo PV150", /* 0x4f */
2007                 .video_inputs   = 2,
2008                 .audio_inputs   = 0,
2009                 .tuner          = -1,
2010                 .svhs           = -1,
2011                 .gpiomask       = 0,
2012                 .muxsel         = { 2, 3 },
2013                 .audiomux       = { 0 },
2014                 .needs_tvaudio  = 0,
2015                 .no_msp34xx     = 1,
2016                 .pll            = PLL_28,
2017                 .tuner_type     = UNSET,
2018                 .tuner_addr     = ADDR_UNSET,
2019                 .radio_addr     = ADDR_UNSET,
2020         },
2021         [BTTV_BOARD_AD_TVK503] = {
2022                 /* Hiroshi Takekawa <sian@big.or.jp> */
2023                 /* This card lacks subsystem ID */
2024                 .name           = "AD-TVK503", /* 0x63 */
2025                 .video_inputs   = 4,
2026                 .audio_inputs   = 1,
2027                 .tuner          = 0,
2028                 .svhs           = 2,
2029                 .gpiomask       = 0x001e8007,
2030                 .muxsel         = { 2, 3, 1, 0 },
2031                 /*                  Tuner, Radio, external, internal, off,  on */
2032                 .audiomux       = { 0x08,  0x0f,  0x0a,     0x08,     0x0f, 0x08 },
2033                 .needs_tvaudio  = 0,
2034                 .no_msp34xx     = 1,
2035                 .pll            = PLL_28,
2036                 .tuner_type     = 2,
2037                 .tuner_addr     = ADDR_UNSET,
2038                 .radio_addr     = ADDR_UNSET,
2039                 .audio_hook     = adtvk503_audio,
2040         },
2041
2042                 /* ---- card 0x64 ---------------------------------- */
2043         [BTTV_BOARD_HERCULES_SM_TV] = {
2044                 .name           = "Hercules Smart TV Stereo",
2045                 .video_inputs   = 4,
2046                 .audio_inputs   = 1,
2047                 .tuner          = 0,
2048                 .svhs           = 2,
2049                 .gpiomask       = 0x00,
2050                 .muxsel         = { 2, 3, 1, 1 },
2051                 .needs_tvaudio  = 1,
2052                 .no_msp34xx     = 1,
2053                 .pll            = PLL_28,
2054                 .tuner_type     = 5,
2055                 .tuner_addr     = ADDR_UNSET,
2056                 .radio_addr     = ADDR_UNSET,
2057                 /* Notes:
2058                 - card lacks subsystem ID
2059                 - stereo variant w/ daughter board with tda9874a @0xb0
2060                 - Audio Routing:
2061                         always from tda9874 independent of GPIO (?)
2062                         external line in: unknown
2063                 - Other chips: em78p156elp @ 0x96 (probably IR remote control)
2064                         hef4053 (instead 4052) for unknown function
2065                 */
2066         },
2067         [BTTV_BOARD_PACETV] = {
2068                 .name           = "Pace TV & Radio Card",
2069                 .video_inputs   = 4,
2070                 .audio_inputs   = 1,
2071                 .tuner          = 0,
2072                 .svhs           = 2,
2073                 .muxsel         = { 2, 3, 1, 1}, /* Tuner, CVid, SVid, CVid over SVid connector */
2074                 .gpiomask       = 0,
2075                 .no_tda9875     = 1,
2076                 .no_tda7432     = 1,
2077                 .tuner_type     = 1,
2078                 .tuner_addr     = ADDR_UNSET,
2079                 .radio_addr     = ADDR_UNSET,
2080                 .has_radio      = 1,
2081                 .pll            = PLL_28,
2082                 /* Bt878, Bt832, FI1246 tuner; no pci subsystem id
2083                 only internal line out: (4pin header) RGGL
2084                 Radio must be decoded by msp3410d (not routed through)*/
2085                 /*
2086                 .digital_mode   = DIGITAL_MODE_CAMERA,  todo!
2087                 */
2088         },
2089         [BTTV_BOARD_IVC200] = {
2090                 /* Chris Willing <chris@vislab.usyd.edu.au> */
2091                 .name           = "IVC-200",
2092                 .video_inputs   = 1,
2093                 .audio_inputs   = 0,
2094                 .tuner          = -1,
2095                 .tuner_type     = -1,
2096                 .tuner_addr     = ADDR_UNSET,
2097                 .radio_addr     = ADDR_UNSET,
2098                 .svhs           = -1,
2099                 .gpiomask       = 0xdf,
2100                 .muxsel         = { 2 },
2101                 .pll            = PLL_28,
2102         },
2103         [BTTV_BOARD_XGUARD] = {
2104                 .name           = "Grand X-Guard / Trust 814PCI",
2105                 .video_inputs   = 16,
2106                 .audio_inputs   = 0,
2107                 .tuner          = -1,
2108                 .svhs           = -1,
2109                 .tuner_type     = 4,
2110                 .tuner_addr     = ADDR_UNSET,
2111                 .radio_addr     = ADDR_UNSET,
2112                 .gpiomask2      = 0xff,
2113                 .muxsel         = { 2,2,2,2, 3,3,3,3, 1,1,1,1, 0,0,0,0 },
2114                 .muxsel_hook    = xguard_muxsel,
2115                 .no_msp34xx     = 1,
2116                 .no_tda9875     = 1,
2117                 .no_tda7432     = 1,
2118                 .pll            = PLL_28,
2119         },
2120
2121                 /* ---- card 0x68 ---------------------------------- */
2122         [BTTV_BOARD_NEBULA_DIGITV] = {
2123                 .name           = "Nebula Electronics DigiTV",
2124                 .video_inputs   = 1,
2125                 .tuner          = -1,
2126                 .svhs           = -1,
2127                 .muxsel         = { 2, 3, 1, 0},
2128                 .no_msp34xx     = 1,
2129                 .no_tda9875     = 1,
2130                 .no_tda7432     = 1,
2131                 .pll            = PLL_28,
2132                 .tuner_type     = -1,
2133                 .tuner_addr     = ADDR_UNSET,
2134                 .radio_addr     = ADDR_UNSET,
2135                 .has_dvb        = 1,
2136                 .no_gpioirq     = 1,
2137         },
2138         [BTTV_BOARD_PV143] = {
2139                 /* Jorge Boncompte - DTI2 <jorge@dti2.net> */
2140                 .name           = "ProVideo PV143",
2141                 .video_inputs   = 4,
2142                 .audio_inputs   = 0,
2143                 .tuner          = -1,
2144                 .svhs           = -1,
2145                 .gpiomask       = 0,
2146                 .muxsel         = { 2, 3, 1, 0 },
2147                 .audiomux       = { 0 },
2148                 .needs_tvaudio  = 0,
2149                 .no_msp34xx     = 1,
2150                 .pll            = PLL_28,
2151                 .tuner_type     = -1,
2152                 .tuner_addr     = ADDR_UNSET,
2153                 .radio_addr     = ADDR_UNSET,
2154         },
2155         [BTTV_BOARD_VD009X1_MINIDIN] = {
2156                 /* M.Klahr@phytec.de */
2157                 .name           = "PHYTEC VD-009-X1 MiniDIN (bt878)",
2158                 .video_inputs   = 4,
2159                 .audio_inputs   = 0,
2160                 .tuner          = -1, /* card has no tuner */
2161                 .svhs           = 3,
2162                 .gpiomask       = 0x00,
2163                 .muxsel         = { 2, 3, 1, 0},
2164                 .audiomux       = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
2165                 .needs_tvaudio  = 1,
2166                 .pll            = PLL_28,
2167                 .tuner_type     = -1,
2168                 .tuner_addr     = ADDR_UNSET,
2169                 .radio_addr     = ADDR_UNSET,
2170         },
2171         [BTTV_BOARD_VD009X1_COMBI] = {
2172                 .name           = "PHYTEC VD-009-X1 Combi (bt878)",
2173                 .video_inputs   = 4,
2174                 .audio_inputs   = 0,
2175                 .tuner          = -1, /* card has no tuner */
2176                 .svhs           = 3,
2177                 .gpiomask       = 0x00,
2178                 .muxsel         = { 2, 3, 1, 1},
2179                 .audiomux       = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
2180                 .needs_tvaudio  = 1,
2181                 .pll            = PLL_28,
2182                 .tuner_type     = -1,
2183                 .tuner_addr     = ADDR_UNSET,
2184                 .radio_addr     = ADDR_UNSET,
2185         },
2186
2187                 /* ---- card 0x6c ---------------------------------- */
2188         [BTTV_BOARD_VD009_MINIDIN] = {
2189                 .name           = "PHYTEC VD-009 MiniDIN (bt878)",
2190                 .video_inputs   = 10,
2191                 .audio_inputs   = 0,
2192                 .tuner          = -1, /* card has no tuner */
2193                 .svhs           = 9,
2194                 .gpiomask       = 0x00,
2195                 .gpiomask2      = 0x03, /* gpiomask2 defines the bits used to switch audio
2196                                         via the upper nibble of muxsel. here: used for
2197                                         xternal video-mux */
2198                 .muxsel         = { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x00 },
2199                 .audiomux       = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
2200                 .needs_tvaudio  = 1,
2201                 .pll            = PLL_28,
2202                 .tuner_type     = -1,
2203                 .tuner_addr     = ADDR_UNSET,
2204                 .radio_addr     = ADDR_UNSET,
2205         },
2206         [BTTV_BOARD_VD009_COMBI] = {
2207                 .name           = "PHYTEC VD-009 Combi (bt878)",
2208                 .video_inputs   = 10,
2209                 .audio_inputs   = 0,
2210                 .tuner          = -1, /* card has no tuner */
2211                 .svhs           = 9,
2212                 .gpiomask       = 0x00,
2213                 .gpiomask2      = 0x03, /* gpiomask2 defines the bits used to switch audio
2214                                         via the upper nibble of muxsel. here: used for
2215                                         xternal video-mux */
2216                 .muxsel         = { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x01 },
2217                 .audiomux       = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
2218                 .needs_tvaudio  = 1,
2219                 .pll            = PLL_28,
2220                 .tuner_type     = -1,
2221                 .tuner_addr     = ADDR_UNSET,
2222                 .radio_addr     = ADDR_UNSET,
2223         },
2224         [BTTV_BOARD_IVC100] = {
2225                 .name           = "IVC-100",
2226                 .video_inputs   = 4,
2227                 .audio_inputs   = 0,
2228                 .tuner          = -1,
2229                 .tuner_type     = -1,
2230                 .tuner_addr     = ADDR_UNSET,
2231                 .radio_addr     = ADDR_UNSET,
2232                 .svhs           = -1,
2233                 .gpiomask       = 0xdf,
2234                 .muxsel         = { 2, 3, 1, 0 },
2235                 .pll            = PLL_28,
2236         },
2237         [BTTV_BOARD_IVC120] = {
2238                 /* IVC-120G - Alan Garfield <alan@fromorbit.com> */
2239                 .name           = "IVC-120G",
2240                 .video_inputs   = 16,
2241                 .audio_inputs   = 0,    /* card has no audio */
2242                 .tuner          = -1,   /* card has no tuner */
2243                 .tuner_type     = -1,
2244                 .tuner_addr     = ADDR_UNSET,
2245                 .radio_addr     = ADDR_UNSET,
2246                 .svhs           = -1,   /* card has no svhs */
2247                 .needs_tvaudio  = 0,
2248                 .no_msp34xx     = 1,
2249                 .no_tda9875     = 1,
2250                 .no_tda7432     = 1,
2251                 .gpiomask       = 0x00,
2252                 .muxsel         = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
2253                                 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10 },
2254                 .muxsel_hook    = ivc120_muxsel,
2255                 .pll            = PLL_28,
2256         },
2257
2258                 /* ---- card 0x70 ---------------------------------- */
2259         [BTTV_BOARD_PC_HDTV] = {
2260                 .name           = "pcHDTV HD-2000 TV",
2261                 .video_inputs   = 4,
2262                 .audio_inputs   = 1,
2263                 .tuner          = 0,
2264                 .svhs           = 2,
2265                 .muxsel         = { 2, 3, 1, 0},
2266                 .tuner_type     = TUNER_PHILIPS_ATSC,
2267                 .tuner_addr     = ADDR_UNSET,
2268                 .radio_addr     = ADDR_UNSET,
2269                 .has_dvb        = 1,
2270         },
2271         [BTTV_BOARD_TWINHAN_DST] = {
2272                 .name           = "Twinhan DST + clones",
2273                 .no_msp34xx     = 1,
2274                 .no_tda9875     = 1,
2275                 .no_tda7432     = 1,
2276                 .tuner_type     = TUNER_ABSENT,
2277                 .tuner_addr     = ADDR_UNSET,
2278                 .radio_addr     = ADDR_UNSET,
2279                 .no_video       = 1,
2280                 .has_dvb        = 1,
2281         },
2282         [BTTV_BOARD_WINFASTVC100] = {
2283                 .name           = "Winfast VC100",
2284                 .video_inputs   = 3,
2285                 .audio_inputs   = 0,
2286                 .svhs           = 1,
2287                 .tuner          = -1,
2288                 .muxsel         = { 3, 1, 1, 3}, /* Vid In, SVid In, Vid over SVid in connector */
2289                 .no_msp34xx     = 1,
2290                 .no_tda9875     = 1,
2291                 .no_tda7432     = 1,
2292                 .tuner_type     = TUNER_ABSENT,
2293                 .tuner_addr     = ADDR_UNSET,
2294                 .radio_addr     = ADDR_UNSET,
2295                 .pll            = PLL_28,
2296         },
2297         [BTTV_BOARD_TEV560] = {
2298                 .name           = "Teppro TEV-560/InterVision IV-560",
2299                 .video_inputs   = 3,
2300                 .audio_inputs   = 1,
2301                 .tuner          = 0,
2302                 .svhs           = 2,
2303                 .gpiomask       = 3,
2304                 .muxsel         = { 2, 3, 1, 1},
2305                 .audiomux       = { 1, 1, 1, 1, 0},
2306                 .needs_tvaudio  = 1,
2307                 .tuner_type     = TUNER_PHILIPS_PAL,
2308                 .tuner_addr     = ADDR_UNSET,
2309                 .radio_addr     = ADDR_UNSET,
2310                 .pll            = PLL_35,
2311         },
2312
2313                 /* ---- card 0x74 ---------------------------------- */
2314         [BTTV_BOARD_SIMUS_GVC1100] = {
2315                 .name           = "SIMUS GVC1100",
2316                 .video_inputs   = 4,
2317                 .audio_inputs   = 0,
2318                 .tuner          = -1,
2319                 .svhs           = -1,
2320                 .tuner_type     = -1,
2321                 .tuner_addr     = ADDR_UNSET,
2322                 .radio_addr     = ADDR_UNSET,
2323                 .pll            = PLL_28,
2324                 .muxsel         = { 2, 2, 2, 2},
2325                 .gpiomask       = 0x3F,
2326                 .muxsel_hook    = gvc1100_muxsel,
2327         },
2328         [BTTV_BOARD_NGSTV_PLUS] = {
2329                 /* Carlos Silva r3pek@r3pek.homelinux.org || card 0x75 */
2330                 .name           = "NGS NGSTV+",
2331                 .video_inputs   = 3,
2332                 .tuner          = 0,
2333                 .svhs           = 2,
2334                 .gpiomask       = 0x008007,
2335                 .muxsel         = {2, 3, 0, 0},
2336                 .audiomux       = {0, 0, 0, 0, 0x000003, 0},
2337                 .pll            = PLL_28,
2338                 .tuner_type     = TUNER_PHILIPS_PAL,
2339                 .tuner_addr     = ADDR_UNSET,
2340                 .radio_addr     = ADDR_UNSET,
2341                 .has_remote     = 1,
2342         },
2343         [BTTV_BOARD_LMLBT4] = {
2344                 /* http://linuxmedialabs.com */
2345                 .name           = "LMLBT4",
2346                 .video_inputs   = 4, /* IN1,IN2,IN3,IN4 */
2347                 .audio_inputs   = 0,
2348                 .tuner          = -1,
2349                 .svhs           = -1,
2350                 .muxsel         = { 2, 3, 1, 0 },
2351                 .no_msp34xx     = 1,
2352                 .no_tda9875     = 1,
2353                 .no_tda7432     = 1,
2354                 .needs_tvaudio  = 0,
2355                 .tuner_type     = -1,
2356                 .tuner_addr     = ADDR_UNSET,
2357                 .radio_addr     = ADDR_UNSET,
2358         },
2359         [BTTV_BOARD_TEKRAM_M205] = {
2360                 /* Helmroos Harri <harri.helmroos@pp.inet.fi> */
2361                 .name           = "Tekram M205 PRO",
2362                 .video_inputs   = 3,
2363                 .audio_inputs   = 1,
2364                 .tuner          = 0,
2365                 .tuner_type     = TUNER_PHILIPS_PAL,
2366                 .tuner_addr     = ADDR_UNSET,
2367                 .radio_addr     = ADDR_UNSET,
2368                 .svhs           = 2,
2369                 .needs_tvaudio  = 0,
2370                 .gpiomask       = 0x68,
2371                 .muxsel         = { 2, 3, 1},
2372                 .audiomux       = { 0x68, 0x68, 0x61, 0x61, 0x00 },
2373                 .pll            = PLL_28,
2374         },
2375
2376                 /* ---- card 0x78 ---------------------------------- */
2377         [BTTV_BOARD_CONTVFMI] = {
2378                 /* Javier Cendan Ares <jcendan@lycos.es> */
2379                 /* bt878 TV + FM without subsystem ID */
2380                 .name           = "Conceptronic CONTVFMi",
2381                 .video_inputs   = 3,
2382                 .audio_inputs   = 1,
2383                 .tuner          = 0,
2384                 .svhs           = 2,
2385                 .gpiomask       = 0x008007,
2386                 .muxsel         = { 2, 3, 1, 1 },
2387                 .audiomux       = { 0, 1, 2, 2, 3 },
2388                 .needs_tvaudio  = 0,
2389                 .pll            = PLL_28,
2390                 .tuner_type     = TUNER_PHILIPS_PAL,
2391                 .tuner_addr     = ADDR_UNSET,
2392                 .radio_addr     = ADDR_UNSET,
2393                 .has_remote     = 1,
2394                 .has_radio      = 1,
2395         },
2396         [BTTV_BOARD_PICOLO_TETRA_CHIP] = {
2397                 /*Eric DEBIEF <debief@telemsa.com>*/
2398                 /*EURESYS Picolo Tetra : 4 Conexant Fusion 878A, no audio, video input set with analog multiplexers GPIO controled*/
2399                 /* adds picolo_tetra_muxsel(), picolo_tetra_init(), the folowing declaration strucure, and #define BTTV_BOARD_PICOLO_TETRA_CHIP*/
2400                 /*0x79 in bttv.h*/
2401                 .name           = "Euresys Picolo Tetra",
2402                 .video_inputs   = 4,
2403                 .audio_inputs   = 0,
2404                 .tuner          = -1,
2405                 .svhs           = -1,
2406                 .gpiomask       = 0,
2407                 .gpiomask2      = 0x3C<<16,/*Set the GPIO[18]->GPIO[21] as output pin.==> drive the video inputs through analog multiplexers*/
2408                 .no_msp34xx     = 1,
2409                 .no_tda9875     = 1,
2410                 .no_tda7432     = 1,
2411                 .muxsel         = {2,2,2,2},/*878A input is always MUX0, see above.*/
2412                 .audiomux       = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
2413                 .pll            = PLL_28,
2414                 .needs_tvaudio  = 0,
2415                 .muxsel_hook    = picolo_tetra_muxsel,/*Required as it doesn't follow the classic input selection policy*/
2416                 .tuner_type     = -1,
2417                 .tuner_addr     = ADDR_UNSET,
2418                 .radio_addr     = ADDR_UNSET,
2419         },
2420         [BTTV_BOARD_SPIRIT_TV] = {
2421                 /* Spirit TV Tuner from http://spiritmodems.com.au */
2422                 /* Stafford Goodsell <surge@goliath.homeunix.org> */
2423                 .name           = "Spirit TV Tuner",
2424                 .video_inputs   = 3,
2425                 .audio_inputs   = 1,
2426                 .tuner          = 0,
2427                 .svhs           = 2,
2428                 .gpiomask       = 0x0000000f,
2429                 .muxsel         = { 2, 1, 1 },
2430                 .audiomux       = { 0x02, 0x00, 0x00, 0x00, 0x00},
2431                 .tuner_type     = TUNER_TEMIC_PAL,
2432                 .tuner_addr     = ADDR_UNSET,
2433                 .radio_addr     = ADDR_UNSET,
2434                 .no_msp34xx     = 1,
2435                 .no_tda9875     = 1,
2436         },
2437         [BTTV_BOARD_AVDVBT_771] = {
2438                 /* Wolfram Joost <wojo@frokaschwei.de> */
2439                 .name           = "AVerMedia AVerTV DVB-T 771",
2440                 .video_inputs   = 2,
2441                 .svhs           = 1,
2442                 .tuner          = -1,
2443                 .tuner_type     = TUNER_ABSENT,
2444                 .tuner_addr     = ADDR_UNSET,
2445                 .radio_addr     = ADDR_UNSET,
2446                 .muxsel         = { 3 , 3 },
2447                 .no_msp34xx     = 1,
2448                 .no_tda9875     = 1,
2449                 .no_tda7432     = 1,
2450                 .pll            = PLL_28,
2451                 .has_dvb        = 1,
2452                 .no_gpioirq     = 1,
2453                 .has_remote     = 1,
2454         },
2455                 /* ---- card 0x7c ---------------------------------- */
2456         [BTTV_BOARD_AVDVBT_761] = {
2457                 /* Matt Jesson <dvb@jesson.eclipse.co.uk> */
2458                 /* Based on the Nebula card data - added remote and new card number - BTTV_BOARD_AVDVBT_761, see also ir-kbd-gpio.c */
2459                 .name           = "AverMedia AverTV DVB-T 761",
2460                 .video_inputs   = 2,
2461                 .tuner          = -1,
2462                 .svhs           = 1,
2463                 .muxsel         = { 3, 1, 2, 0}, /* Comp0, S-Video, ?, ? */
2464                 .no_msp34xx     = 1,
2465                 .no_tda9875     = 1,
2466                 .no_tda7432     = 1,
2467                 .pll            = PLL_28,
2468                 .tuner_type     = -1,
2469                 .tuner_addr     = ADDR_UNSET,
2470                 .radio_addr     = ADDR_UNSET,
2471                 .has_dvb        = 1,
2472                 .no_gpioirq     = 1,
2473                 .has_remote     = 1,
2474         },
2475         [BTTV_BOARD_MATRIX_VISIONSQ] = {
2476                 /* andre.schwarz@matrix-vision.de */
2477                 .name             = "MATRIX Vision Sigma-SQ",
2478                 .video_inputs     = 16,
2479                 .audio_inputs     = 0,
2480                 .tuner            = -1,
2481                 .svhs             = -1,
2482                 .gpiomask         = 0x0,
2483                 .muxsel           = { 2, 2, 2, 2, 2, 2, 2, 2,
2484                                 3, 3, 3, 3, 3, 3, 3, 3 },
2485                 .muxsel_hook      = sigmaSQ_muxsel,
2486                 .audiomux         = { 0 },
2487                 .no_msp34xx       = 1,
2488                 .pll              = PLL_28,
2489                 .tuner_type       = -1,
2490                 .tuner_addr       = ADDR_UNSET,
2491                 .radio_addr     = ADDR_UNSET,
2492         },
2493         [BTTV_BOARD_MATRIX_VISIONSLC] = {
2494                 /* andre.schwarz@matrix-vision.de */
2495                 .name             = "MATRIX Vision Sigma-SLC",
2496                 .video_inputs     = 4,
2497                 .audio_inputs     = 0,
2498                 .tuner            = -1,
2499                 .svhs             = -1,
2500                 .gpiomask         = 0x0,
2501                 .muxsel           = { 2, 2, 2, 2 },
2502                 .muxsel_hook      = sigmaSLC_muxsel,
2503                 .audiomux         = { 0 },
2504                 .no_msp34xx       = 1,
2505                 .pll              = PLL_28,
2506                 .tuner_type       = -1,
2507                 .tuner_addr       = ADDR_UNSET,
2508                 .radio_addr     = ADDR_UNSET,
2509         },
2510                 /* BTTV_BOARD_APAC_VIEWCOMP */
2511         [BTTV_BOARD_APAC_VIEWCOMP] = {
2512                 /* Attila Kondoros <attila.kondoros@chello.hu> */
2513                 /* bt878 TV + FM 0x00000000 subsystem ID */
2514                 .name           = "APAC Viewcomp 878(AMAX)",
2515                 .video_inputs   = 2,
2516                 .audio_inputs   = 1,
2517                 .tuner          = 0,
2518                 .svhs           = -1,
2519                 .gpiomask       = 0xFF,
2520                 .muxsel         = { 2, 3, 1, 1},
2521                 .audiomux       = { 2, 0, 0, 0, 10},
2522                 .needs_tvaudio  = 0,
2523                 .pll            = PLL_28,
2524                 .tuner_type     = TUNER_PHILIPS_PAL,
2525                 .tuner_addr     = ADDR_UNSET,
2526                 .radio_addr     = ADDR_UNSET,
2527                 .has_remote     = 1,   /* miniremote works, see ir-kbd-gpio.c */
2528                 .has_radio      = 1,   /* not every card has radio */
2529         },
2530
2531                 /* ---- card 0x80 ---------------------------------- */
2532         [BTTV_BOARD_DVICO_DVBT_LITE] = {
2533                 /* Chris Pascoe <c.pascoe@itee.uq.edu.au> */
2534                 .name           = "DViCO FusionHDTV DVB-T Lite",
2535                 .tuner          = -1,
2536                 .no_msp34xx     = 1,
2537                 .no_tda9875     = 1,
2538                 .no_tda7432     = 1,
2539                 .pll            = PLL_28,
2540                 .no_video       = 1,
2541                 .has_dvb        = 1,
2542                 .tuner_type     = -1,
2543                 .tuner_addr     = ADDR_UNSET,
2544                 .radio_addr     = ADDR_UNSET,
2545         },
2546         [BTTV_BOARD_VGEAR_MYVCD] = {
2547                 /* Steven <photon38@pchome.com.tw> */
2548                 .name           = "V-Gear MyVCD",
2549                 .video_inputs   = 3,
2550                 .audio_inputs   = 1,
2551                 .tuner          = 0,
2552                 .svhs           = 2,
2553                 .gpiomask       = 0x3f,
2554                 .muxsel         = {2, 3, 1, 0},
2555                 .audiomux       = {0x31, 0x31, 0x31, 0x31, 0x31, 0x31},
2556                 .no_msp34xx     = 1,
2557                 .pll            = PLL_28,
2558                 .tuner_type     = TUNER_PHILIPS_NTSC_M,
2559                 .tuner_addr     = ADDR_UNSET,
2560                 .radio_addr     = ADDR_UNSET,
2561                 .has_radio      = 0,
2562         #if 0
2563                 .has_remote     = 1,
2564         #endif
2565         },
2566         [BTTV_BOARD_SUPER_TV] = {
2567                 /* Rick C <cryptdragoon@gmail.com> */
2568                 .name           = "Super TV Tuner",
2569                 .video_inputs   = 4,
2570                 .audio_inputs   = 1,
2571                 .tuner          = 0,
2572                 .svhs           = 2,
2573                 .muxsel         = { 2, 3, 1, 0},
2574                 .tuner_type     = TUNER_PHILIPS_NTSC,
2575                 .tuner_addr     = ADDR_UNSET,
2576                 .radio_addr     = ADDR_UNSET,
2577                 .gpiomask       = 0x008007,
2578                 .audiomux       = { 0, 0x000001,0,0, 0},
2579                 .needs_tvaudio  = 1,
2580                 .has_radio      = 1,
2581         },
2582         [BTTV_BOARD_TIBET_CS16] = {
2583                 /* Chris Fanning <video4linux@haydon.net> */
2584                 .name           = "Tibet Systems 'Progress DVR' CS16",
2585                 .video_inputs   = 16,
2586                 .audio_inputs   = 0,
2587                 .tuner          = -1,
2588                 .svhs           = -1,
2589                 .muxsel         = { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 },
2590                 .pll            = PLL_28,
2591                 .no_msp34xx     = 1,
2592                 .no_tda9875     = 1,
2593                 .no_tda7432     = 1,
2594                 .tuner_type     = -1,
2595                 .tuner_addr     = ADDR_UNSET,
2596                 .radio_addr     = ADDR_UNSET,
2597                 .muxsel_hook    = tibetCS16_muxsel,
2598         },
2599         [BTTV_BOARD_KODICOM_4400R] = {
2600                 /* Bill Brack <wbrack@mmm.com.hk> */
2601                 /*
2602                 * Note that, because of the card's wiring, the "master"
2603                 * BT878A chip (i.e. the one which controls the analog switch
2604                 * and must use this card type) is the 2nd one detected.  The
2605                 * other 3 chips should use card type 0x85, whose description
2606                 * follows this one.  There is a EEPROM on the card (which is
2607                 * connected to the I2C of one of those other chips), but is
2608                 * not currently handled.  There is also a facility for a
2609                 * "monitor", which is also not currently implemented.
2610                 */
2611                 .name           = "Kodicom 4400R (master)",
2612                 .video_inputs   = 16,
2613                 .audio_inputs   = 0,
2614                 .tuner          = -1,
2615                 .tuner_type     = -1,
2616                 .tuner_addr     = ADDR_UNSET,
2617                 .radio_addr     = ADDR_UNSET,
2618                 .svhs           = -1,
2619                 /* GPIO bits 0-9 used for analog switch:
2620                 *   00 - 03:    camera selector
2621                 *   04 - 06:    channel (controller) selector
2622                 *   07: data (1->on, 0->off)
2623                 *   08: strobe
2624                 *   09: reset
2625                 * bit 16 is input from sync separator for the channel
2626                 */
2627                 .gpiomask       = 0x0003ff,
2628                 .no_gpioirq     = 1,
2629                 .muxsel         = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2630                 .pll            = PLL_28,
2631                 .no_msp34xx     = 1,
2632                 .no_tda7432     = 1,
2633                 .no_tda9875     = 1,
2634                 .muxsel_hook    = kodicom4400r_muxsel,
2635         },
2636         [BTTV_BOARD_KODICOM_4400R_SL] = {
2637                 /* Bill Brack <wbrack@mmm.com.hk> */
2638                 /* Note that, for reasons unknown, the "master" BT878A chip (i.e. the
2639                 * one which controls the analog switch, and must use the card type)
2640                 * is the 2nd one detected.  The other 3 chips should use this card
2641                 * type
2642                 */
2643                 .name           = "Kodicom 4400R (slave)",
2644                 .video_inputs   = 16,
2645                 .audio_inputs   = 0,
2646                 .tuner          = -1,
2647                 .tuner_type     = -1,
2648                 .tuner_addr     = ADDR_UNSET,
2649                 .radio_addr     = ADDR_UNSET,
2650                 .svhs           = -1,
2651                 .gpiomask       = 0x010000,
2652                 .no_gpioirq     = 1,
2653                 .muxsel         = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2654                 .pll            = PLL_28,
2655                 .no_msp34xx     = 1,
2656                 .no_tda7432     = 1,
2657                 .no_tda9875     = 1,
2658                 .muxsel_hook    = kodicom4400r_muxsel,
2659         },
2660                 /* ---- card 0x86---------------------------------- */
2661         [BTTV_BOARD_ADLINK_RTV24] = {
2662                 /* Michael Henson <mhenson@clarityvi.com> */
2663                 /* Adlink RTV24 with special unlock codes */
2664                 .name           = "Adlink RTV24",
2665                 .video_inputs   = 4,
2666                 .audio_inputs   = 1,
2667                 .tuner          = 0,
2668                 .svhs           = 2,
2669                 .muxsel         = { 2, 3, 1, 0},
2670                 .tuner_type     = -1,
2671                 .tuner_addr     = ADDR_UNSET,
2672                 .radio_addr     = ADDR_UNSET,
2673                 .pll            = PLL_28,
2674         },
2675                 /* ---- card 0x87---------------------------------- */
2676         [BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE] = {
2677                 /* Michael Krufky <mkrufky@m1k.net> */
2678                 .name           = "DViCO FusionHDTV 5 Lite",
2679                 .tuner          = 0,
2680                 .tuner_type     = TUNER_LG_TDVS_H062F,
2681                 .tuner_addr     = ADDR_UNSET,
2682                 .radio_addr     = ADDR_UNSET,
2683                 .video_inputs   = 3,
2684                 .audio_inputs   = 1,
2685                 .svhs           = 2,
2686                 .muxsel         = { 2, 3, 1 },
2687                 .gpiomask       = 0x00e00007,
2688                 .audiomux       = { 0x00400005, 0, 0x00000001, 0, 0x00c00007, 0 },
2689                 .no_msp34xx     = 1,
2690                 .no_tda9875     = 1,
2691                 .no_tda7432     = 1,
2692                 .has_dvb        = 1,
2693         },
2694                 /* ---- card 0x88---------------------------------- */
2695         [BTTV_BOARD_ACORP_Y878F] = {
2696                 /* Mauro Carvalho Chehab <mchehab@brturbo.com.br> */
2697                 .name           = "Acorp Y878F",
2698                 .video_inputs   = 3,
2699                 .audio_inputs   = 1,
2700                 .tuner          = 0,
2701                 .svhs           = 2,
2702                 .gpiomask       = 0x01fe00,
2703                 .muxsel         = { 2, 3, 1, 1},
2704                 .audiomux       = { 0x001e00, 0, 0x018000, 0x014000, 0x002000, 0 },
2705                 .needs_tvaudio  = 1,
2706                 .pll            = PLL_28,
2707                 .tuner_type     = TUNER_YMEC_TVF66T5_B_DFF,
2708                 .tuner_addr     = 0xc1 >>1,
2709                 .radio_addr     = 0xc1 >>1,
2710                 .has_radio      = 1,
2711         },
2712                 /* ---- card 0x89 ---------------------------------- */
2713         [BTTV_BOARD_CONCEPTRONIC_CTVFMI2] = {
2714                 .name           = "Conceptronic CTVFMi v2",
2715                 .video_inputs   = 3,
2716                 .audio_inputs   = 1,
2717                 .tuner          = 0,
2718                 .svhs           = 2,
2719                 .gpiomask       = 0x001c0007,
2720                 .muxsel         = { 2, 3, 1, 1 },
2721                 .audiomux       = { 0, 1, 2, 2, 3 },
2722                 .needs_tvaudio  = 0,
2723                 .pll            = PLL_28,
2724                 .tuner_type     = TUNER_TENA_9533_DI,
2725                 .tuner_addr     = ADDR_UNSET,
2726                 .radio_addr     = ADDR_UNSET,
2727                 .has_remote     = 1,
2728                 .has_radio      = 1,
2729         },
2730                 /* ---- card 0x8a ---------------------------------- */
2731         [BTTV_BOARD_PV_BT878P_2E] = {
2732                 .name          = "Prolink Pixelview PV-BT878P+ (Rev.2E)",
2733                 .video_inputs  = 5,
2734                 .audio_inputs  = 1,
2735                 .tuner         = 0,
2736                 .svhs          = 3,
2737                 .gpiomask      = 0x01fe00,
2738                 .muxsel        = { 2,3,1,1,-1 },
2739                 .digital_mode  = DIGITAL_MODE_CAMERA,
2740                 .audiomux      = { 0x00400, 0x10400, 0x04400, 0x80000, 0x12400, 0x46000  },
2741                 .no_msp34xx    = 1,
2742                 .pll           = PLL_28,
2743                 .tuner_type    = TUNER_LG_PAL_FM,
2744                 .tuner_addr     = ADDR_UNSET,
2745                 .radio_addr     = ADDR_UNSET,
2746                 .has_remote    = 1,
2747         },
2748                 /* ---- card 0x8b ---------------------------------- */
2749         [BTTV_BOARD_PV_M4900] = {
2750                 /* Sérgio Fortier <sergiofortier@yahoo.com.br> */
2751                 .name           = "Prolink PixelView PlayTV MPEG2 PV-M4900",
2752                 .video_inputs   = 3,
2753                 .audio_inputs   = 1,
2754                 .tuner          = 0,
2755                 .svhs           = 2,
2756                 .gpiomask       = 0x3f,
2757                 .muxsel         = { 2, 3, 1, 1 },
2758                 .audiomux       = { 0x21, 0x20, 0x24, 0x2c, 0x29, 0x29 },
2759                 .no_msp34xx     = 1,
2760                 .pll            = PLL_28,
2761                 .tuner_type     = TUNER_YMEC_TVF_5533MF,
2762                 .tuner_addr     = ADDR_UNSET,
2763                 .radio_addr     = ADDR_UNSET,
2764                 .has_radio      = 1,
2765                 .has_remote     = 1,
2766         },
2767                 /* ---- card 0x8c ---------------------------------- */
2768         [BTTV_BOARD_OSPREY440]  = {
2769                 .name           = "Osprey 440",
2770                 .video_inputs   = 1,
2771                 .audio_inputs   = 1,
2772                 .tuner          = -1,
2773                 .svhs           = 1,
2774                 .muxsel         = { 2 },
2775                 .pll            = PLL_28,
2776                 .tuner_type     = UNSET,
2777                 .tuner_addr     = ADDR_UNSET,
2778                 .radio_addr     = ADDR_UNSET,
2779                 .no_msp34xx     = 1,
2780                 .no_tda9875     = 1,
2781                 .no_tda7432     = 1,
2782         },
2783                 /* ---- card 0x8d ---------------------------------- */
2784         [BTTV_BOARD_ASOUND_SKYEYE] = {
2785                 .name           = "Asound Skyeye PCTV",
2786                 .video_inputs   = 3,
2787                 .audio_inputs   = 1,
2788                 .tuner          = 0,
2789                 .svhs           = 2,
2790                 .gpiomask       = 15,
2791                 .muxsel         = { 2, 3, 1, 1},
2792                 .audiomux       = {2,0,0,0,1},
2793                 .needs_tvaudio  = 1,
2794                 .pll            = PLL_28,
2795                 .tuner_type     = 2,
2796                 .tuner_addr     = ADDR_UNSET,
2797                 .radio_addr     = ADDR_UNSET,
2798         },
2799                 /* ---- card 0x8e ---------------------------------- */
2800         [BTTV_BOARD_SABRENT_TVFM] = {
2801                 .name           = "Sabrent TV-FM (bttv version)",
2802                 .video_inputs   = 3,
2803                 .audio_inputs   = 1,
2804                 .tuner          = 0,
2805                 .svhs           = 2,
2806                 .gpiomask       = 0x108007,
2807                 .muxsel         = { 2, 3, 1, 1},
2808                 .audiomux       = { 100000, 100002, 100002, 100000},
2809                 .no_msp34xx     = 1,
2810                 .no_tda9875     = 1,
2811                 .no_tda7432     = 1,
2812                 .pll            = PLL_28,
2813                 .tuner_type     = TUNER_TNF_5335MF,
2814                 .tuner_addr     = ADDR_UNSET,
2815                 .has_radio      = 1,
2816         },
2817 };
2818
2819 static const unsigned int bttv_num_tvcards = ARRAY_SIZE(bttv_tvcards);
2820
2821 /* ----------------------------------------------------------------------- */
2822
2823 static unsigned char eeprom_data[256];
2824
2825 /*
2826  * identify card
2827  */
2828 void __devinit bttv_idcard(struct bttv *btv)
2829 {
2830         unsigned int gpiobits;
2831         int i,type;
2832         unsigned short tmp;
2833
2834         /* read PCI subsystem ID */
2835         pci_read_config_word(btv->c.pci, PCI_SUBSYSTEM_ID, &tmp);
2836         btv->cardid = tmp << 16;
2837         pci_read_config_word(btv->c.pci, PCI_SUBSYSTEM_VENDOR_ID, &tmp);
2838         btv->cardid |= tmp;
2839
2840         if (0 != btv->cardid && 0xffffffff != btv->cardid) {
2841                 /* look for the card */
2842                 for (type = -1, i = 0; cards[i].id != 0; i++)
2843                         if (cards[i].id  == btv->cardid)
2844                                 type = i;
2845
2846                 if (type != -1) {
2847                         /* found it */
2848                         printk(KERN_INFO "bttv%d: detected: %s [card=%d], "
2849                                "PCI subsystem ID is %04x:%04x\n",
2850                                btv->c.nr,cards[type].name,cards[type].cardnr,
2851                                btv->cardid & 0xffff,
2852                                (btv->cardid >> 16) & 0xffff);
2853                         btv->c.type = cards[type].cardnr;
2854                 } else {
2855                         /* 404 */
2856                         printk(KERN_INFO "bttv%d: subsystem: %04x:%04x (UNKNOWN)\n",
2857                                btv->c.nr, btv->cardid & 0xffff,
2858                                (btv->cardid >> 16) & 0xffff);
2859                         printk(KERN_DEBUG "please mail id, board name and "
2860                                "the correct card= insmod option to video4linux-list@redhat.com\n");
2861                 }
2862         }
2863
2864         /* let the user override the autodetected type */
2865         if (card[btv->c.nr] < bttv_num_tvcards)
2866                 btv->c.type=card[btv->c.nr];
2867
2868         /* print which card config we are using */
2869         printk(KERN_INFO "bttv%d: using: %s [card=%d,%s]\n",btv->c.nr,
2870                bttv_tvcards[btv->c.type].name, btv->c.type,
2871                card[btv->c.nr] < bttv_num_tvcards
2872                ? "insmod option" : "autodetected");
2873
2874         /* overwrite gpio stuff ?? */
2875         if (UNSET == audioall && UNSET == audiomux[0])
2876                 return;
2877
2878         if (UNSET != audiomux[0]) {
2879                 gpiobits = 0;
2880                 for (i = 0; i < 5; i++) {
2881                         bttv_tvcards[btv->c.type].audiomux[i] = audiomux[i];
2882                         gpiobits |= audiomux[i];
2883                 }
2884         } else {
2885                 gpiobits = audioall;
2886                 for (i = 0; i < 5; i++) {
2887                         bttv_tvcards[btv->c.type].audiomux[i] = audioall;
2888                 }
2889         }
2890         bttv_tvcards[btv->c.type].gpiomask = (UNSET != gpiomask) ? gpiomask : gpiobits;
2891         printk(KERN_INFO "bttv%d: gpio config override: mask=0x%x, mux=",
2892                btv->c.nr,bttv_tvcards[btv->c.type].gpiomask);
2893         for (i = 0; i < 5; i++) {
2894                 printk("%s0x%x", i ? "," : "", bttv_tvcards[btv->c.type].audiomux[i]);
2895         }
2896         printk("\n");
2897 }
2898
2899 /*
2900  * (most) board specific initialisations goes here
2901  */
2902
2903 /* Some Modular Technology cards have an eeprom, but no subsystem ID */
2904 void identify_by_eeprom(struct bttv *btv, unsigned char eeprom_data[256])
2905 {
2906         int type = -1;
2907
2908         if (0 == strncmp(eeprom_data,"GET MM20xPCTV",13))
2909                 type = BTTV_BOARD_MODTEC_205;
2910         else if (0 == strncmp(eeprom_data+20,"Picolo",7))
2911                 type = BTTV_BOARD_EURESYS_PICOLO;
2912         else if (eeprom_data[0] == 0x84 && eeprom_data[2]== 0)
2913                 type = BTTV_BOARD_HAUPPAUGE; /* old bt848 */
2914
2915         if (-1 != type) {
2916                 btv->c.type = type;
2917                 printk("bttv%d: detected by eeprom: %s [card=%d]\n",
2918                        btv->c.nr, bttv_tvcards[btv->c.type].name, btv->c.type);
2919         }
2920 }
2921
2922 static void flyvideo_gpio(struct bttv *btv)
2923 {
2924         int gpio,has_remote,has_radio,is_capture_only,is_lr90,has_tda9820_tda9821;
2925         int tuner=-1,ttype;
2926
2927         gpio_inout(0xffffff, 0);
2928         udelay(8);  /* without this we would see the 0x1800 mask */
2929         gpio = gpio_read();
2930         /* FIXME: must restore OUR_EN ??? */
2931
2932         /* all cards provide GPIO info, some have an additional eeprom
2933          * LR50: GPIO coding can be found lower right CP1 .. CP9
2934          *       CP9=GPIO23 .. CP1=GPIO15; when OPEN, the corresponding GPIO reads 1.
2935          *       GPIO14-12: n.c.
2936          * LR90: GP9=GPIO23 .. GP1=GPIO15 (right above the bt878)
2937
2938          * lowest 3 bytes are remote control codes (no handshake needed)
2939          * xxxFFF: No remote control chip soldered
2940          * xxxF00(LR26/LR50), xxxFE0(LR90): Remote control chip (LVA001 or CF45) soldered
2941          * Note: Some bits are Audio_Mask !
2942          */
2943         ttype=(gpio&0x0f0000)>>16;
2944         switch(ttype) {
2945         case 0x0: tuner=2; /* NTSC, e.g. TPI8NSR11P */
2946                 break;
2947         case 0x2: tuner=39;/* LG NTSC (newer TAPC series) TAPC-H701P */
2948                 break;
2949         case 0x4: tuner=5; /* Philips PAL TPI8PSB02P, TPI8PSB12P, TPI8PSB12D or FI1216, FM1216 */
2950                 break;
2951         case 0x6: tuner=37;/* LG PAL (newer TAPC series) TAPC-G702P */
2952                 break;
2953                 case 0xC: tuner=3; /* Philips SECAM(+PAL) FQ1216ME or FI1216MF */
2954                 break;
2955         default:
2956                 printk(KERN_INFO "bttv%d: FlyVideo_gpio: unknown tuner type.\n", btv->c.nr);
2957         }
2958
2959         has_remote          =   gpio & 0x800000;
2960         has_radio           =   gpio & 0x400000;
2961         /*   unknown                   0x200000;
2962          *   unknown2                  0x100000; */
2963         is_capture_only     = !(gpio & 0x008000); /* GPIO15 */
2964         has_tda9820_tda9821 = !(gpio & 0x004000);
2965         is_lr90             = !(gpio & 0x002000); /* else LR26/LR50 (LR38/LR51 f. capture only) */
2966         /*
2967          * gpio & 0x001000    output bit for audio routing */
2968
2969         if(is_capture_only)
2970                 tuner=4; /* No tuner present */
2971
2972         printk(KERN_INFO "bttv%d: FlyVideo Radio=%s RemoteControl=%s Tuner=%d gpio=0x%06x\n",
2973                btv->c.nr, has_radio? "yes":"no ", has_remote? "yes":"no ", tuner, gpio);
2974         printk(KERN_INFO "bttv%d: FlyVideo  LR90=%s tda9821/tda9820=%s capture_only=%s\n",
2975                 btv->c.nr, is_lr90?"yes":"no ", has_tda9820_tda9821?"yes":"no ",
2976                 is_capture_only?"yes":"no ");
2977
2978         if(tuner!= -1) /* only set if known tuner autodetected, else let insmod option through */
2979                 btv->tuner_type = tuner;
2980         btv->has_radio = has_radio;
2981
2982         /* LR90 Audio Routing is done by 2 hef4052, so Audio_Mask has 4 bits: 0x001c80
2983          * LR26/LR50 only has 1 hef4052, Audio_Mask 0x000c00
2984          * Audio options: from tuner, from tda9821/tda9821(mono,stereo,sap), from tda9874, ext., mute */
2985         if(has_tda9820_tda9821) btv->audio_hook = lt9415_audio;
2986         /* todo: if(has_tda9874) btv->audio_hook = fv2000s_audio; */
2987 }
2988
2989 static int miro_tunermap[] = { 0,6,2,3,   4,5,6,0,  3,0,4,5,  5,2,16,1,
2990                                14,2,17,1, 4,1,4,3,  1,2,16,1, 4,4,4,4 };
2991 static int miro_fmtuner[]  = { 0,0,0,0,   0,0,0,0,  0,0,0,0,  0,0,0,1,
2992                                1,1,1,1,   1,1,1,0,  0,0,0,0,  0,1,0,0 };
2993
2994 static void miro_pinnacle_gpio(struct bttv *btv)
2995 {
2996         int id,msp,gpio;
2997         char *info;
2998
2999         gpio_inout(0xffffff, 0);
3000         gpio = gpio_read();
3001         id   = ((gpio>>10) & 63) -1;
3002         msp  = bttv_I2CRead(btv, I2C_MSP3400, "MSP34xx");
3003         if (id < 32) {
3004                 btv->tuner_type = miro_tunermap[id];
3005                 if (0 == (gpio & 0x20)) {
3006                         btv->has_radio = 1;
3007                         if (!miro_fmtuner[id]) {
3008                                 btv->has_matchbox = 1;
3009                                 btv->mbox_we    = (1<<6);
3010                                 btv->mbox_most  = (1<<7);
3011                                 btv->mbox_clk   = (1<<8);
3012                                 btv->mbox_data  = (1<<9);
3013                                 btv->mbox_mask  = (1<<6)|(1<<7)|(1<<8)|(1<<9);
3014                         }
3015                 } else {
3016                         btv->has_radio = 0;
3017                 }
3018                 if (-1 != msp) {
3019                         if (btv->c.type == BTTV_BOARD_MIRO)
3020                                 btv->c.type = BTTV_BOARD_MIROPRO;
3021                         if (btv->c.type == BTTV_BOARD_PINNACLE)
3022                                 btv->c.type = BTTV_BOARD_PINNACLEPRO;
3023                 }
3024                 printk(KERN_INFO
3025                        "bttv%d: miro: id=%d tuner=%d radio=%s stereo=%s\n",
3026                        btv->c.nr, id+1, btv->tuner_type,
3027                        !btv->has_radio ? "no" :
3028                        (btv->has_matchbox ? "matchbox" : "fmtuner"),
3029                        (-1 == msp) ? "no" : "yes");
3030         } else {
3031                 /* new cards with microtune tuner */
3032                 id = 63 - id;
3033                 btv->has_radio = 0;
3034                 switch (id) {
3035                 case 1:
3036                         info = "PAL / mono";
3037                         break;
3038                 case 2:
3039                         info = "PAL+SECAM / stereo";
3040                         btv->has_radio = 1;
3041                         break;
3042                 case 3:
3043                         info = "NTSC / stereo";
3044                         btv->has_radio = 1;
3045                         break;
3046                 case 4:
3047                         info = "PAL+SECAM / mono";
3048                         break;
3049                 case 5:
3050                         info = "NTSC / mono";
3051                         break;
3052                 case 6:
3053                         info = "NTSC / stereo";
3054                         break;
3055                 case 7:
3056                         info = "PAL / stereo";
3057                         break;
3058                 default:
3059                         info = "oops: unknown card";
3060                         break;
3061                 }
3062                 if (-1 != msp)
3063                         btv->c.type = BTTV_BOARD_PINNACLEPRO;
3064                 printk(KERN_INFO
3065                        "bttv%d: pinnacle/mt: id=%d info=\"%s\" radio=%s\n",
3066                        btv->c.nr, id, info, btv->has_radio ? "yes" : "no");
3067                 btv->tuner_type  = 33;
3068                 btv->pinnacle_id = id;
3069         }
3070 }
3071
3072 /* GPIO21   L: Buffer aktiv, H: Buffer inaktiv */
3073 #define LM1882_SYNC_DRIVE     0x200000L
3074
3075 static void init_ids_eagle(struct bttv *btv)
3076 {
3077         gpio_inout(0xffffff,0xFFFF37);
3078         gpio_write(0x200020);
3079
3080         /* flash strobe inverter ?! */
3081         gpio_write(0x200024);
3082
3083         /* switch sync drive off */
3084         gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE);
3085
3086         /* set BT848 muxel to 2 */
3087         btaor((2)<<5, ~(2<<5), BT848_IFORM);
3088 }
3089
3090 /* Muxsel helper for the IDS Eagle.
3091  * the eagles does not use the standard muxsel-bits but
3092  * has its own multiplexer */
3093 static void eagle_muxsel(struct bttv *btv, unsigned int input)
3094 {
3095         btaor((2)<<5, ~(3<<5), BT848_IFORM);
3096         gpio_bits(3,bttv_tvcards[btv->c.type].muxsel[input&7]);
3097
3098        /* composite */
3099        /* set chroma ADC to sleep */
3100        btor(BT848_ADC_C_SLEEP, BT848_ADC);
3101        /* set to composite video */
3102        btand(~BT848_CONTROL_COMP, BT848_E_CONTROL);
3103        btand(~BT848_CONTROL_COMP, BT848_O_CONTROL);
3104
3105        /* switch sync drive off */
3106        gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE);
3107 }
3108
3109 static void gvc1100_muxsel(struct bttv *btv, unsigned int input)
3110 {
3111         static const int masks[] = {0x30, 0x01, 0x12, 0x23};
3112         gpio_write(masks[input%4]);
3113 }
3114
3115 /* LMLBT4x initialization - to allow access to GPIO bits for sensors input and
3116    alarms output
3117
3118    GPIObit    | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
3119    assignment | TI | O3|INx| O2| O1|IN4|IN3|IN2|IN1|   |   |
3120
3121    IN - sensor inputs, INx - sensor inputs and TI XORed together
3122    O1,O2,O3 - alarm outputs (relays)
3123
3124    OUT ENABLE   1    1   0  . 1  1   0   0 . 0   0   0    0   = 0x6C0
3125
3126 */
3127
3128 static void init_lmlbt4x(struct bttv *btv)
3129 {
3130         printk(KERN_DEBUG "LMLBT4x init\n");
3131         btwrite(0x000000, BT848_GPIO_REG_INP);
3132         gpio_inout(0xffffff, 0x0006C0);
3133         gpio_write(0x000000);
3134 }
3135
3136 static void sigmaSQ_muxsel(struct bttv *btv, unsigned int input)
3137 {
3138         unsigned int inmux = input % 8;
3139         gpio_inout( 0xf, 0xf );
3140         gpio_bits( 0xf, inmux );
3141 }
3142
3143 static void sigmaSLC_muxsel(struct bttv *btv, unsigned int input)
3144 {
3145         unsigned int inmux = input % 4;
3146         gpio_inout( 3<<9, 3<<9 );
3147         gpio_bits( 3<<9, inmux<<9 );
3148 }
3149
3150 /* ----------------------------------------------------------------------- */
3151
3152 static void bttv_reset_audio(struct bttv *btv)
3153 {
3154         /*
3155          * BT878A has a audio-reset register.
3156          * 1. This register is an audio reset function but it is in
3157          *    function-0 (video capture) address space.
3158          * 2. It is enough to do this once per power-up of the card.
3159          * 3. There is a typo in the Conexant doc -- it is not at
3160          *    0x5B, but at 0x058. (B is an odd-number, obviously a typo!).
3161          * --//Shrikumar 030609
3162          */
3163         if (btv->id != 878)
3164                 return;
3165
3166         if (bttv_debug)
3167                 printk("bttv%d: BT878A ARESET\n",btv->c.nr);
3168         btwrite((1<<7), 0x058);
3169         udelay(10);
3170         btwrite(     0, 0x058);
3171 }
3172
3173 /* initialization part one -- before registering i2c bus */
3174 void __devinit bttv_init_card1(struct bttv *btv)
3175 {
3176         switch (btv->c.type) {
3177         case BTTV_BOARD_HAUPPAUGE:
3178         case BTTV_BOARD_HAUPPAUGE878:
3179                 boot_msp34xx(btv,5);
3180                 break;
3181         case BTTV_BOARD_VOODOOTV_FM:
3182                 boot_msp34xx(btv,20);
3183                 break;
3184         case BTTV_BOARD_AVERMEDIA98:
3185                 boot_msp34xx(btv,11);
3186                 break;
3187         case BTTV_BOARD_HAUPPAUGEPVR:
3188                 pvr_boot(btv);
3189                 break;
3190         case BTTV_BOARD_TWINHAN_DST:
3191         case BTTV_BOARD_AVDVBT_771:
3192         case BTTV_BOARD_PINNACLESAT:
3193                 btv->use_i2c_hw = 1;
3194                 break;
3195         case BTTV_BOARD_ADLINK_RTV24:
3196                 init_RTV24( btv );
3197                 break;
3198
3199         }
3200         if (!bttv_tvcards[btv->c.type].has_dvb)
3201                 bttv_reset_audio(btv);
3202 }
3203
3204 /* initialization part two -- after registering i2c bus */
3205 void __devinit bttv_init_card2(struct bttv *btv)
3206 {
3207         int tda9887;
3208         int addr=ADDR_UNSET;
3209
3210         btv->tuner_type = -1;
3211
3212         if (BTTV_BOARD_UNKNOWN == btv->c.type) {
3213                 bttv_readee(btv,eeprom_data,0xa0);
3214                 identify_by_eeprom(btv,eeprom_data);
3215         }
3216
3217         switch (btv->c.type) {
3218         case BTTV_BOARD_MIRO:
3219         case BTTV_BOARD_MIROPRO:
3220         case BTTV_BOARD_PINNACLE:
3221         case BTTV_BOARD_PINNACLEPRO:
3222                 /* miro/pinnacle */
3223                 miro_pinnacle_gpio(btv);
3224                 break;
3225         case BTTV_BOARD_FLYVIDEO_98:
3226         case BTTV_BOARD_MAXI:
3227         case BTTV_BOARD_LIFE_FLYKIT:
3228         case BTTV_BOARD_FLYVIDEO:
3229         case BTTV_BOARD_TYPHOON_TVIEW:
3230         case BTTV_BOARD_CHRONOS_VS2:
3231         case BTTV_BOARD_FLYVIDEO_98FM:
3232         case BTTV_BOARD_FLYVIDEO2000:
3233         case BTTV_BOARD_FLYVIDEO98EZ:
3234         case BTTV_BOARD_CONFERENCETV:
3235         case BTTV_BOARD_LIFETEC_9415:
3236                 flyvideo_gpio(btv);
3237                 break;
3238         case BTTV_BOARD_HAUPPAUGE:
3239         case BTTV_BOARD_HAUPPAUGE878:
3240         case BTTV_BOARD_HAUPPAUGEPVR:
3241                 /* pick up some config infos from the eeprom */
3242                 bttv_readee(btv,eeprom_data,0xa0);
3243                 hauppauge_eeprom(btv);
3244                 break;
3245         case BTTV_BOARD_AVERMEDIA98:
3246         case BTTV_BOARD_AVPHONE98:
3247                 bttv_readee(btv,eeprom_data,0xa0);
3248                 avermedia_eeprom(btv);
3249                 break;
3250         case BTTV_BOARD_PXC200:
3251                 init_PXC200(btv);
3252                 break;
3253         case BTTV_BOARD_PICOLO_TETRA_CHIP:
3254                 picolo_tetra_init(btv);
3255                 break;
3256         case BTTV_BOARD_VHX:
3257                 btv->has_radio    = 1;
3258                 btv->has_matchbox = 1;
3259                 btv->mbox_we      = 0x20;
3260                 btv->mbox_most    = 0;
3261                 btv->mbox_clk     = 0x08;
3262                 btv->mbox_data    = 0x10;
3263                 btv->mbox_mask    = 0x38;
3264                 break;
3265         case BTTV_BOARD_VOBIS_BOOSTAR:
3266         case BTTV_BOARD_TERRATV:
3267                 terratec_active_radio_upgrade(btv);
3268                 break;
3269         case BTTV_BOARD_MAGICTVIEW061:
3270                 if (btv->cardid == 0x3002144f) {
3271                         btv->has_radio=1;
3272                         printk("bttv%d: radio detected by subsystem id (CPH05x)\n",btv->c.nr);
3273                 }
3274                 break;
3275        case BTTV_BOARD_STB2:
3276                 if (btv->cardid == 0x3060121a) {
3277                         /* Fix up entry for 3DFX VoodooTV 100,
3278                            which is an OEM STB card variant. */
3279                         btv->has_radio=0;
3280                         btv->tuner_type=TUNER_TEMIC_NTSC;
3281                 }
3282                 break;
3283         case BTTV_BOARD_OSPREY1x0:
3284         case BTTV_BOARD_OSPREY1x0_848:
3285         case BTTV_BOARD_OSPREY101_848:
3286         case BTTV_BOARD_OSPREY1x1:
3287         case BTTV_BOARD_OSPREY1x1_SVID:
3288         case BTTV_BOARD_OSPREY2xx:
3289         case BTTV_BOARD_OSPREY2x0_SVID:
3290         case BTTV_BOARD_OSPREY2x0:
3291         case BTTV_BOARD_OSPREY500:
3292         case BTTV_BOARD_OSPREY540:
3293         case BTTV_BOARD_OSPREY2000:
3294                 bttv_readee(btv,eeprom_data,0xa0);
3295                 osprey_eeprom(btv);
3296                 break;
3297         case BTTV_BOARD_IDS_EAGLE:
3298                 init_ids_eagle(btv);
3299                 break;
3300         case BTTV_BOARD_MODTEC_205:
3301                 bttv_readee(btv,eeprom_data,0xa0);
3302                 modtec_eeprom(btv);
3303                 break;
3304         case BTTV_BOARD_LMLBT4:
3305                 init_lmlbt4x(btv);
3306                 break;
3307         case BTTV_BOARD_TIBET_CS16:
3308                 tibetCS16_init(btv);
3309                 break;
3310         case BTTV_BOARD_KODICOM_4400R:
3311                 kodicom4400r_init(btv);
3312                 break;
3313         }
3314
3315         /* pll configuration */
3316         if (!(btv->id==848 && btv->revision==0x11)) {
3317                 /* defaults from card list */
3318                 if (PLL_28 == bttv_tvcards[btv->c.type].pll) {
3319                         btv->pll.pll_ifreq=28636363;
3320                         btv->pll.pll_crystal=BT848_IFORM_XT0;
3321                 }
3322                 if (PLL_35 == bttv_tvcards[btv->c.type].pll) {
3323                         btv->pll.pll_ifreq=35468950;
3324                         btv->pll.pll_crystal=BT848_IFORM_XT1;
3325                 }
3326                 /* insmod options can override */
3327                 switch (pll[btv->c.nr]) {
3328                 case 0: /* none */
3329                         btv->pll.pll_crystal = 0;
3330                         btv->pll.pll_ifreq   = 0;
3331                         btv->pll.pll_ofreq   = 0;
3332                         break;
3333                 case 1: /* 28 MHz */
3334                 case 28:
3335                         btv->pll.pll_ifreq   = 28636363;
3336                         btv->pll.pll_ofreq   = 0;
3337                         btv->pll.pll_crystal = BT848_IFORM_XT0;
3338                         break;
3339                 case 2: /* 35 MHz */
3340                 case 35:
3341                         btv->pll.pll_ifreq   = 35468950;
3342                         btv->pll.pll_ofreq   = 0;
3343                         btv->pll.pll_crystal = BT848_IFORM_XT1;
3344                         break;
3345                 }
3346         }
3347         btv->pll.pll_current = -1;
3348
3349         /* tuner configuration (from card list / autodetect / insmod option) */
3350         if (ADDR_UNSET != bttv_tvcards[btv->c.type].tuner_addr)
3351                 addr = bttv_tvcards[btv->c.type].tuner_addr;
3352
3353         if (UNSET != bttv_tvcards[btv->c.type].tuner_type)
3354                 if(UNSET == btv->tuner_type)
3355                         btv->tuner_type = bttv_tvcards[btv->c.type].tuner_type;
3356         if (UNSET != tuner[btv->c.nr])
3357                 btv->tuner_type = tuner[btv->c.nr];
3358         printk("bttv%d: using tuner=%d\n",btv->c.nr,btv->tuner_type);
3359
3360         if (btv->tuner_type != UNSET) {
3361                 struct tuner_setup tun_setup;
3362
3363                 tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
3364                 tun_setup.type = btv->tuner_type;
3365                 tun_setup.addr = addr;
3366
3367                 bttv_call_i2c_clients(btv, TUNER_SET_TYPE_ADDR, &tun_setup);
3368         }
3369
3370         if (btv->pinnacle_id != UNSET) {
3371                 bttv_call_i2c_clients(btv, AUDC_CONFIG_PINNACLE,
3372                                                         &btv->pinnacle_id);
3373         }
3374
3375         btv->svhs = bttv_tvcards[btv->c.type].svhs;
3376         if (svhs[btv->c.nr] != UNSET)
3377                 btv->svhs = svhs[btv->c.nr];
3378         if (remote[btv->c.nr] != UNSET)
3379                 btv->has_remote = remote[btv->c.nr];
3380
3381         if (bttv_tvcards[btv->c.type].has_radio)
3382                 btv->has_radio=1;
3383         if (bttv_tvcards[btv->c.type].has_remote)
3384                 btv->has_remote=1;
3385         if (!bttv_tvcards[btv->c.type].no_gpioirq)
3386                 btv->gpioirq=1;
3387         if (bttv_tvcards[btv->c.type].audio_hook)
3388                 btv->audio_hook=bttv_tvcards[btv->c.type].audio_hook;
3389
3390         if (bttv_tvcards[btv->c.type].digital_mode == DIGITAL_MODE_CAMERA) {
3391                 /* detect Bt832 chip for quartzsight digital camera */
3392                 if ((bttv_I2CRead(btv, I2C_BT832_ALT1, "Bt832") >=0) ||
3393                     (bttv_I2CRead(btv, I2C_BT832_ALT2, "Bt832") >=0))
3394                         boot_bt832(btv);
3395         }
3396
3397         if (!autoload)
3398                 return;
3399
3400         /* try to detect audio/fader chips */
3401         if (!bttv_tvcards[btv->c.type].no_msp34xx &&
3402             bttv_I2CRead(btv, I2C_MSP3400, "MSP34xx") >=0)
3403                 request_module("msp3400");
3404
3405         if (bttv_tvcards[btv->c.type].msp34xx_alt &&
3406             bttv_I2CRead(btv, I2C_MSP3400_ALT, "MSP34xx (alternate address)") >=0)
3407                 request_module("msp3400");
3408
3409         if (!bttv_tvcards[btv->c.type].no_tda9875 &&
3410             bttv_I2CRead(btv, I2C_TDA9875, "TDA9875") >=0)
3411                 request_module("tda9875");
3412
3413         if (!bttv_tvcards[btv->c.type].no_tda7432 &&
3414             bttv_I2CRead(btv, I2C_TDA7432, "TDA7432") >=0)
3415                 request_module("tda7432");
3416
3417         if (bttv_tvcards[btv->c.type].needs_tvaudio)
3418                 request_module("tvaudio");
3419
3420         /* tuner modules */
3421         tda9887 = 0;
3422         if (btv->pinnacle_id != UNSET)
3423                 tda9887 = 1;
3424         if (0 == tda9887 && 0 == bttv_tvcards[btv->c.type].has_dvb &&
3425             bttv_I2CRead(btv, I2C_TDA9887, "TDA9887") >=0)
3426                 tda9887 = 1;
3427         /* Hybrid DVB card, DOES have a tda9887 */
3428         if (btv->c.type == BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE)
3429                 tda9887 = 1;
3430         if((btv->tuner_type == TUNER_PHILIPS_FM1216ME_MK3) ||
3431            (btv->tuner_type == TUNER_PHILIPS_FM1236_MK3) ||
3432            (btv->tuner_type == TUNER_PHILIPS_FM1256_IH3) ||
3433             tda9887)
3434                 request_module("tda9887");
3435         if (btv->tuner_type != UNSET)
3436                 request_module("tuner");
3437 }
3438
3439
3440 /* ----------------------------------------------------------------------- */
3441
3442 static void modtec_eeprom(struct bttv *btv)
3443 {
3444         if( strncmp(&(eeprom_data[0x1e]),"Temic 4066 FY5",14) ==0) {
3445                 btv->tuner_type=TUNER_TEMIC_4066FY5_PAL_I;
3446                 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3447                        btv->c.nr,&eeprom_data[0x1e]);
3448         } else if (strncmp(&(eeprom_data[0x1e]),"Alps TSBB5",10) ==0) {
3449                 btv->tuner_type=TUNER_ALPS_TSBB5_PAL_I;
3450                 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3451                        btv->c.nr,&eeprom_data[0x1e]);
3452         } else if (strncmp(&(eeprom_data[0x1e]),"Philips FM1246",14) ==0) {
3453                 btv->tuner_type=TUNER_PHILIPS_NTSC;
3454                 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3455                        btv->c.nr,&eeprom_data[0x1e]);
3456         } else {
3457                 printk("bttv%d: Modtec: Unknown TunerString: %s\n",
3458                        btv->c.nr,&eeprom_data[0x1e]);
3459         }
3460 }
3461
3462 static void __devinit hauppauge_eeprom(struct bttv *btv)
3463 {
3464         struct tveeprom tv;
3465
3466         tveeprom_hauppauge_analog(&btv->i2c_client, &tv, eeprom_data);
3467         btv->tuner_type = tv.tuner_type;
3468         btv->has_radio  = tv.has_radio;
3469 }
3470
3471 static int terratec_active_radio_upgrade(struct bttv *btv)
3472 {
3473         int freq;
3474
3475         btv->has_radio    = 1;
3476         btv->has_matchbox = 1;
3477         btv->mbox_we      = 0x10;
3478         btv->mbox_most    = 0x20;
3479         btv->mbox_clk     = 0x08;
3480         btv->mbox_data    = 0x04;
3481         btv->mbox_mask    = 0x3c;
3482
3483         btv->mbox_iow     = 1 <<  8;
3484         btv->mbox_ior     = 1 <<  9;
3485         btv->mbox_csel    = 1 << 10;
3486
3487         freq=88000/62.5;
3488         tea5757_write(btv, 5 * freq + 0x358); /* write 0x1ed8 */
3489         if (0x1ed8 == tea5757_read(btv)) {
3490                 printk("bttv%d: Terratec Active Radio Upgrade found.\n",
3491                        btv->c.nr);
3492                 btv->has_radio    = 1;
3493                 btv->has_matchbox = 1;
3494         } else {
3495                 btv->has_radio    = 0;
3496                 btv->has_matchbox = 0;
3497         }
3498         return 0;
3499 }
3500
3501
3502 /* ----------------------------------------------------------------------- */
3503
3504 /*
3505  * minimal bootstrap for the WinTV/PVR -- upload altera firmware.
3506  *
3507  * The hcwamc.rbf firmware file is on the Hauppauge driver CD.  Have
3508  * a look at Pvr/pvr45xxx.EXE (self-extracting zip archive, can be
3509  * unpacked with unzip).
3510  */
3511 #define PVR_GPIO_DELAY          10
3512
3513 #define BTTV_ALT_DATA           0x000001
3514 #define BTTV_ALT_DCLK           0x100000
3515 #define BTTV_ALT_NCONFIG        0x800000
3516
3517 static int __devinit pvr_altera_load(struct bttv *btv, u8 *micro, u32 microlen)
3518 {
3519         u32 n;
3520         u8 bits;
3521         int i;
3522
3523         gpio_inout(0xffffff,BTTV_ALT_DATA|BTTV_ALT_DCLK|BTTV_ALT_NCONFIG);
3524         gpio_write(0);
3525         udelay(PVR_GPIO_DELAY);
3526
3527         gpio_write(BTTV_ALT_NCONFIG);
3528         udelay(PVR_GPIO_DELAY);
3529
3530         for (n = 0; n < microlen; n++) {
3531                 bits = micro[n];
3532                 for ( i = 0 ; i < 8 ; i++ ) {
3533                         gpio_bits(BTTV_ALT_DCLK,0);
3534                         if (bits & 0x01)
3535                                 gpio_bits(BTTV_ALT_DATA,BTTV_ALT_DATA);
3536                         else
3537                                 gpio_bits(BTTV_ALT_DATA,0);
3538                         gpio_bits(BTTV_ALT_DCLK,BTTV_ALT_DCLK);
3539                         bits >>= 1;
3540                 }
3541         }
3542         gpio_bits(BTTV_ALT_DCLK,0);
3543         udelay(PVR_GPIO_DELAY);
3544
3545         /* begin Altera init loop (Not necessary,but doesn't hurt) */
3546         for (i = 0 ; i < 30 ; i++) {
3547                 gpio_bits(BTTV_ALT_DCLK,0);
3548                 gpio_bits(BTTV_ALT_DCLK,BTTV_ALT_DCLK);
3549         }
3550         gpio_bits(BTTV_ALT_DCLK,0);
3551         return 0;
3552 }
3553
3554 static int __devinit pvr_boot(struct bttv *btv)
3555 {
3556         const struct firmware *fw_entry;
3557         int rc;
3558
3559         rc = request_firmware(&fw_entry, "hcwamc.rbf", &btv->c.pci->dev);
3560         if (rc != 0) {
3561                 printk(KERN_WARNING "bttv%d: no altera firmware [via hotplug]\n",
3562                        btv->c.nr);
3563                 return rc;
3564         }
3565         rc = pvr_altera_load(btv, fw_entry->data, fw_entry->size);
3566         printk(KERN_INFO "bttv%d: altera firmware upload %s\n",
3567                btv->c.nr, (rc < 0) ? "failed" : "ok");
3568         release_firmware(fw_entry);
3569         return rc;
3570 }
3571
3572 /* ----------------------------------------------------------------------- */
3573 /* some osprey specific stuff                                              */
3574
3575 static void __devinit osprey_eeprom(struct bttv *btv)
3576 {
3577        int i = 0;
3578        unsigned char *ee = eeprom_data;
3579        unsigned long serial = 0;
3580
3581        if (btv->c.type == 0) {
3582                /* this might be an antique... check for MMAC label in eeprom */
3583                if ((ee[0]=='M') && (ee[1]=='M') && (ee[2]=='A') && (ee[3]=='C')) {
3584                        unsigned char checksum = 0;
3585                        for (i =0; i<21; i++)
3586                                checksum += ee[i];
3587                        if (checksum != ee[21])
3588                                return;
3589                        btv->c.type = BTTV_BOARD_OSPREY1x0_848;
3590                        for (i = 12; i < 21; i++)
3591                                serial *= 10, serial += ee[i] - '0';
3592                }
3593        } else {
3594                unsigned short type;
3595                int offset = 4*16;
3596
3597                for(; offset < 8*16; offset += 16) {
3598                        unsigned short checksum = 0;
3599                        /* verify the checksum */
3600                        for(i = 0; i<14; i++) checksum += ee[i+offset];
3601                                checksum = ~checksum;  /* no idea why */
3602                                if ((((checksum>>8)&0x0FF) == ee[offset+14]) &&
3603                                    ((checksum & 0x0FF) == ee[offset+15])) {
3604                                break;
3605                        }
3606                }
3607
3608                if (offset >= 8*16)
3609                        return;
3610
3611                /* found a valid descriptor */
3612                type = (ee[offset+4]<<8) | (ee[offset+5]);
3613
3614                switch(type) {
3615
3616                /* 848 based */
3617                case 0x0004:
3618                        btv->c.type = BTTV_BOARD_OSPREY1x0_848;
3619                        break;
3620                case 0x0005:
3621                        btv->c.type = BTTV_BOARD_OSPREY101_848;
3622                        break;
3623
3624                /* 878 based */
3625                case 0x0012:
3626                case 0x0013:
3627                        btv->c.type = BTTV_BOARD_OSPREY1x0;
3628                        break;
3629                case 0x0014:
3630                case 0x0015:
3631                        btv->c.type = BTTV_BOARD_OSPREY1x1;
3632                        break;
3633                case 0x0016:
3634                case 0x0017:
3635                case 0x0020:
3636                        btv->c.type = BTTV_BOARD_OSPREY1x1_SVID;
3637                        break;
3638                case 0x0018:
3639                case 0x0019:
3640                case 0x001E:
3641                case 0x001F:
3642                        btv->c.type = BTTV_BOARD_OSPREY2xx;
3643                        break;
3644                case 0x001A:
3645                case 0x001B:
3646                        btv->c.type = BTTV_BOARD_OSPREY2x0_SVID;
3647                        break;
3648                case 0x0040:
3649                        btv->c.type = BTTV_BOARD_OSPREY500;
3650                        break;
3651                case 0x0050:
3652                case 0x0056:
3653                        btv->c.type = BTTV_BOARD_OSPREY540;
3654                        /* bttv_osprey_540_init(btv); */
3655                        break;
3656                case 0x0060:
3657                case 0x0070:
3658                        btv->c.type = BTTV_BOARD_OSPREY2x0;
3659                        /* enable output on select control lines */
3660                        gpio_inout(0xffffff,0x000303);
3661                        break;
3662                default:
3663                        /* unknown...leave generic, but get serial # */
3664                        break;
3665                }
3666                serial =  (ee[offset+6] << 24)
3667                        | (ee[offset+7] << 16)
3668                        | (ee[offset+8] <<  8)
3669                        | (ee[offset+9]);
3670        }
3671
3672        printk(KERN_INFO "bttv%d: osprey eeprom: card=%d name=%s serial=%ld\n",
3673               btv->c.nr, btv->c.type, bttv_tvcards[btv->c.type].name,serial);
3674 }
3675
3676 /* ----------------------------------------------------------------------- */
3677 /* AVermedia specific stuff, from  bktr_card.c                             */
3678
3679 static int tuner_0_table[] = {
3680         TUNER_PHILIPS_NTSC,  TUNER_PHILIPS_PAL /* PAL-BG*/,
3681         TUNER_PHILIPS_PAL,   TUNER_PHILIPS_PAL /* PAL-I*/,
3682         TUNER_PHILIPS_PAL,   TUNER_PHILIPS_PAL,
3683         TUNER_PHILIPS_SECAM, TUNER_PHILIPS_SECAM,
3684         TUNER_PHILIPS_SECAM, TUNER_PHILIPS_PAL,
3685         TUNER_PHILIPS_FM1216ME_MK3 };
3686
3687 static int tuner_1_table[] = {
3688         TUNER_TEMIC_NTSC,  TUNER_TEMIC_PAL,
3689         TUNER_TEMIC_PAL,   TUNER_TEMIC_PAL,
3690         TUNER_TEMIC_PAL,   TUNER_TEMIC_PAL,
3691         TUNER_TEMIC_4012FY5, TUNER_TEMIC_4012FY5, /* TUNER_TEMIC_SECAM */
3692         TUNER_TEMIC_4012FY5, TUNER_TEMIC_PAL};
3693
3694 static void __devinit avermedia_eeprom(struct bttv *btv)
3695 {
3696         int tuner_make,tuner_tv_fm,tuner_format,tuner=0;
3697
3698         tuner_make      = (eeprom_data[0x41] & 0x7);
3699         tuner_tv_fm     = (eeprom_data[0x41] & 0x18) >> 3;
3700         tuner_format    = (eeprom_data[0x42] & 0xf0) >> 4;
3701         btv->has_remote = (eeprom_data[0x42] & 0x01);
3702
3703         if (tuner_make == 0 || tuner_make == 2)
3704                 if(tuner_format <=0x0a)
3705                         tuner = tuner_0_table[tuner_format];
3706         if (tuner_make == 1)
3707                 if(tuner_format <=9)
3708                         tuner = tuner_1_table[tuner_format];
3709
3710         if (tuner_make == 4)
3711                 if(tuner_format == 0x09)
3712                         tuner = TUNER_LG_NTSC_NEW_TAPC; /* TAPC-G702P */
3713
3714         printk(KERN_INFO "bttv%d: Avermedia eeprom[0x%02x%02x]: tuner=",
3715                 btv->c.nr,eeprom_data[0x41],eeprom_data[0x42]);
3716         if(tuner) {
3717                 btv->tuner_type=tuner;
3718                 printk("%d",tuner);
3719         } else
3720                 printk("Unknown type");
3721         printk(" radio:%s remote control:%s\n",
3722                tuner_tv_fm     ? "yes" : "no",
3723                btv->has_remote ? "yes" : "no");
3724 }
3725
3726 /* used on Voodoo TV/FM (Voodoo 200), S0 wired to 0x10000 */
3727 void bttv_tda9880_setnorm(struct bttv *btv, int norm)
3728 {
3729         /* fix up our card entry */
3730         if(norm==VIDEO_MODE_NTSC) {
3731                 bttv_tvcards[BTTV_BOARD_VOODOOTV_FM].audiomux[0]=0x957fff;
3732                 bttv_tvcards[BTTV_BOARD_VOODOOTV_FM].audiomux[4]=0x957fff;
3733                 dprintk("bttv_tda9880_setnorm to NTSC\n");
3734         }
3735         else {
3736                 bttv_tvcards[BTTV_BOARD_VOODOOTV_FM].audiomux[0]=0x947fff;
3737                 bttv_tvcards[BTTV_BOARD_VOODOOTV_FM].audiomux[4]=0x947fff;
3738                 dprintk("bttv_tda9880_setnorm to PAL\n");
3739         }
3740         /* set GPIO according */
3741         gpio_bits(bttv_tvcards[btv->c.type].gpiomask,
3742                   bttv_tvcards[btv->c.type].audiomux[btv->audio]);
3743 }
3744
3745
3746 /*
3747  * reset/enable the MSP on some Hauppauge cards
3748  * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
3749  *
3750  * Hauppauge:  pin  5
3751  * Voodoo:     pin 20
3752  */
3753 static void __devinit boot_msp34xx(struct bttv *btv, int pin)
3754 {
3755         int mask = (1 << pin);
3756
3757         gpio_inout(mask,mask);
3758         gpio_bits(mask,0);
3759         udelay(2500);
3760         gpio_bits(mask,mask);
3761
3762         if (bttv_gpio)
3763                 bttv_gpio_tracking(btv,"msp34xx");
3764         if (bttv_verbose)
3765                 printk(KERN_INFO "bttv%d: Hauppauge/Voodoo msp34xx: reset line "
3766                        "init [%d]\n", btv->c.nr, pin);
3767 }
3768
3769 static void __devinit boot_bt832(struct bttv *btv)
3770 {
3771 }
3772
3773 /* ----------------------------------------------------------------------- */
3774 /*  Imagenation L-Model PXC200 Framegrabber */
3775 /*  This is basically the same procedure as
3776  *  used by Alessandro Rubini in his pxc200
3777  *  driver, but using BTTV functions */
3778
3779 static void __devinit init_PXC200(struct bttv *btv)
3780 {
3781         static int vals[] __devinitdata = { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d,
3782                                             0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
3783                                             0x00 };
3784         unsigned int i;
3785         int tmp;
3786         u32 val;
3787
3788         /* Initialise GPIO-connevted stuff */
3789         gpio_inout(0xffffff, (1<<13));
3790         gpio_write(0);
3791         udelay(3);
3792         gpio_write(1<<13);
3793         /* GPIO inputs are pulled up, so no need to drive
3794          * reset pin any longer */
3795         gpio_bits(0xffffff, 0);
3796         if (bttv_gpio)
3797                 bttv_gpio_tracking(btv,"pxc200");
3798
3799         /*  we could/should try and reset/control the AD pots? but
3800             right now  we simply  turned off the crushing.  Without
3801             this the AGC drifts drifts
3802             remember the EN is reverse logic -->
3803             setting BT848_ADC_AGC_EN disable the AGC
3804             tboult@eecs.lehigh.edu
3805         */
3806
3807         btwrite(BT848_ADC_RESERVED|BT848_ADC_AGC_EN, BT848_ADC);
3808
3809         /*      Initialise MAX517 DAC */
3810         printk(KERN_INFO "Setting DAC reference voltage level ...\n");
3811         bttv_I2CWrite(btv,0x5E,0,0x80,1);
3812
3813         /*      Initialise 12C508 PIC */
3814         /*      The I2CWrite and I2CRead commmands are actually to the
3815          *      same chips - but the R/W bit is included in the address
3816          *      argument so the numbers are different */
3817
3818
3819         printk(KERN_INFO "Initialising 12C508 PIC chip ...\n");
3820
3821         /* First of all, enable the clock line. This is used in the PXC200-F */
3822         val = btread(BT848_GPIO_DMA_CTL);
3823         val |= BT848_GPIO_DMA_CTL_GPCLKMODE;
3824         btwrite(val, BT848_GPIO_DMA_CTL);
3825
3826         /* Then, push to 0 the reset pin long enough to reset the *
3827          * device same as above for the reset line, but not the same
3828          * value sent to the GPIO-connected stuff
3829          * which one is the good one? */
3830         gpio_inout(0xffffff,(1<<2));
3831         gpio_write(0);
3832         udelay(10);
3833         gpio_write(1<<2);
3834
3835         for (i = 0; i < ARRAY_SIZE(vals); i++) {
3836                 tmp=bttv_I2CWrite(btv,0x1E,0,vals[i],1);
3837                 if (tmp != -1) {
3838                         printk(KERN_INFO
3839                                "I2C Write(%2.2x) = %i\nI2C Read () = %2.2x\n\n",
3840                                vals[i],tmp,bttv_I2CRead(btv,0x1F,NULL));
3841                 }
3842         }
3843
3844         printk(KERN_INFO "PXC200 Initialised.\n");
3845 }
3846
3847
3848
3849 /* ----------------------------------------------------------------------- */
3850 /*
3851  *  The Adlink RTV-24 (aka Angelo) has some special initialisation to unlock
3852  *  it. This apparently involves the following procedure for each 878 chip:
3853  *
3854  *  1) write 0x00C3FEFF to the GPIO_OUT_EN register
3855  *
3856  *  2)  write to GPIO_DATA
3857  *      - 0x0E
3858  *      - sleep 1ms
3859  *      - 0x10 + 0x0E
3860  *      - sleep 10ms
3861  *      - 0x0E
3862  *     read from GPIO_DATA into buf (uint_32)
3863  *      - if ( data>>18 & 0x01 != 0) || ( buf>>19 & 0x01 != 1 )
3864  *                 error. ERROR_CPLD_Check_Failed stop.
3865  *
3866  *  3) write to GPIO_DATA
3867  *      - write 0x4400 + 0x0E
3868  *      - sleep 10ms
3869  *      - write 0x4410 + 0x0E
3870  *      - sleep 1ms
3871  *      - write 0x0E
3872  *     read from GPIO_DATA into buf (uint_32)
3873  *      - if ( buf>>18 & 0x01 ) || ( buf>>19 && 0x01 != 0 )
3874  *                error. ERROR_CPLD_Check_Failed.
3875  */
3876 /* ----------------------------------------------------------------------- */
3877 void
3878 init_RTV24 (struct bttv *btv)
3879 {
3880         uint32_t dataRead = 0;
3881         long watchdog_value = 0x0E;
3882
3883         printk (KERN_INFO
3884                 "bttv%d: Adlink RTV-24 initialisation in progress ...\n",
3885                 btv->c.nr);
3886
3887         btwrite (0x00c3feff, BT848_GPIO_OUT_EN);
3888
3889         btwrite (0 + watchdog_value, BT848_GPIO_DATA);
3890         msleep (1);
3891         btwrite (0x10 + watchdog_value, BT848_GPIO_DATA);
3892         msleep (10);
3893         btwrite (0 + watchdog_value, BT848_GPIO_DATA);
3894
3895         dataRead = btread (BT848_GPIO_DATA);
3896
3897         if ((((dataRead >> 18) & 0x01) != 0) || (((dataRead >> 19) & 0x01) != 1)) {
3898                 printk (KERN_INFO
3899                         "bttv%d: Adlink RTV-24 initialisation(1) ERROR_CPLD_Check_Failed (read %d)\n",
3900                         btv->c.nr, dataRead);
3901         }
3902
3903         btwrite (0x4400 + watchdog_value, BT848_GPIO_DATA);
3904         msleep (10);
3905         btwrite (0x4410 + watchdog_value, BT848_GPIO_DATA);
3906         msleep (1);
3907         btwrite (watchdog_value, BT848_GPIO_DATA);
3908         msleep (1);
3909         dataRead = btread (BT848_GPIO_DATA);
3910
3911         if ((((dataRead >> 18) & 0x01) != 0) || (((dataRead >> 19) & 0x01) != 0)) {
3912                 printk (KERN_INFO
3913                         "bttv%d: Adlink RTV-24 initialisation(2) ERROR_CPLD_Check_Failed (read %d)\n",
3914                         btv->c.nr, dataRead);
3915
3916                 return;
3917         }
3918
3919         printk (KERN_INFO
3920                 "bttv%d: Adlink RTV-24 initialisation complete.\n", btv->c.nr);
3921 }
3922
3923
3924
3925 /* ----------------------------------------------------------------------- */
3926 /* Miro Pro radio stuff -- the tea5757 is connected to some GPIO ports     */
3927 /*
3928  * Copyright (c) 1999 Csaba Halasz <qgehali@uni-miskolc.hu>
3929  * This code is placed under the terms of the GNU General Public License
3930  *
3931  * Brutally hacked by Dan Sheridan <dan.sheridan@contact.org.uk> djs52 8/3/00
3932  */
3933
3934 static void bus_low(struct bttv *btv, int bit)
3935 {
3936         if (btv->mbox_ior) {
3937                 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3938                           btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3939                 udelay(5);
3940         }
3941
3942         gpio_bits(bit,0);
3943         udelay(5);
3944
3945         if (btv->mbox_ior) {
3946                 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3947                 udelay(5);
3948         }
3949 }
3950
3951 static void bus_high(struct bttv *btv, int bit)
3952 {
3953         if (btv->mbox_ior) {
3954                 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3955                           btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3956                 udelay(5);
3957         }
3958
3959         gpio_bits(bit,bit);
3960         udelay(5);
3961
3962         if (btv->mbox_ior) {
3963                 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3964                 udelay(5);
3965         }
3966 }
3967
3968 static int bus_in(struct bttv *btv, int bit)
3969 {
3970         if (btv->mbox_ior) {
3971                 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3972                           btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3973                 udelay(5);
3974
3975                 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3976                 udelay(5);
3977         }
3978         return gpio_read() & (bit);
3979 }
3980
3981 /* TEA5757 register bits */
3982 #define TEA_FREQ                0:14
3983 #define TEA_BUFFER              15:15
3984
3985 #define TEA_SIGNAL_STRENGTH     16:17
3986
3987 #define TEA_PORT1               18:18
3988 #define TEA_PORT0               19:19
3989
3990 #define TEA_BAND                20:21
3991 #define TEA_BAND_FM             0
3992 #define TEA_BAND_MW             1
3993 #define TEA_BAND_LW             2
3994 #define TEA_BAND_SW             3
3995
3996 #define TEA_MONO                22:22
3997 #define TEA_ALLOW_STEREO        0
3998 #define TEA_FORCE_MONO          1
3999
4000 #define TEA_SEARCH_DIRECTION    23:23
4001 #define TEA_SEARCH_DOWN         0
4002 #define TEA_SEARCH_UP           1
4003
4004 #define TEA_STATUS              24:24
4005 #define TEA_STATUS_TUNED        0
4006 #define TEA_STATUS_SEARCHING    1
4007
4008 /* Low-level stuff */
4009 static int tea5757_read(struct bttv *btv)
4010 {
4011         unsigned long timeout;
4012         int value = 0;
4013         int i;
4014
4015         /* better safe than sorry */
4016         gpio_inout(btv->mbox_mask, btv->mbox_clk | btv->mbox_we);
4017
4018         if (btv->mbox_ior) {
4019                 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
4020                           btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
4021                 udelay(5);
4022         }
4023
4024         if (bttv_gpio)
4025                 bttv_gpio_tracking(btv,"tea5757 read");
4026
4027         bus_low(btv,btv->mbox_we);
4028         bus_low(btv,btv->mbox_clk);
4029
4030         udelay(10);
4031         timeout= jiffies + HZ;
4032
4033         /* wait for DATA line to go low; error if it doesn't */
4034         while (bus_in(btv,btv->mbox_data) && time_before(jiffies, timeout))
4035                 schedule();
4036         if (bus_in(btv,btv->mbox_data)) {
4037                 printk(KERN_WARNING "bttv%d: tea5757: read timeout\n",btv->c.nr);
4038                 return -1;
4039         }
4040
4041         dprintk("bttv%d: tea5757:",btv->c.nr);
4042         for(i = 0; i < 24; i++)
4043         {
4044                 udelay(5);
4045                 bus_high(btv,btv->mbox_clk);
4046                 udelay(5);
4047                 dprintk("%c",(bus_in(btv,btv->mbox_most) == 0)?'T':'-');
4048                 bus_low(btv,btv->mbox_clk);
4049                 value <<= 1;
4050                 value |= (bus_in(btv,btv->mbox_data) == 0)?0:1;  /* MSB first */
4051                 dprintk("%c", (bus_in(btv,btv->mbox_most) == 0)?'S':'M');
4052         }
4053         dprintk("\nbttv%d: tea5757: read 0x%X\n", btv->c.nr, value);
4054         return value;
4055 }
4056
4057 static int tea5757_write(struct bttv *btv, int value)
4058 {
4059         int i;
4060         int reg = value;
4061
4062         gpio_inout(btv->mbox_mask, btv->mbox_clk | btv->mbox_we | btv->mbox_data);
4063
4064         if (btv->mbox_ior) {
4065                 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
4066                           btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
4067                 udelay(5);
4068         }
4069         if (bttv_gpio)
4070                 bttv_gpio_tracking(btv,"tea5757 write");
4071
4072         dprintk("bttv%d: tea5757: write 0x%X\n", btv->c.nr, value);
4073         bus_low(btv,btv->mbox_clk);
4074         bus_high(btv,btv->mbox_we);
4075         for(i = 0; i < 25; i++)
4076         {
4077                 if (reg & 0x1000000)
4078                         bus_high(btv,btv->mbox_data);
4079                 else
4080                         bus_low(btv,btv->mbox_data);
4081                 reg <<= 1;
4082                 bus_high(btv,btv->mbox_clk);
4083                 udelay(10);
4084                 bus_low(btv,btv->mbox_clk);
4085                 udelay(10);
4086         }
4087         bus_low(btv,btv->mbox_we);  /* unmute !!! */
4088         return 0;
4089 }
4090
4091 void tea5757_set_freq(struct bttv *btv, unsigned short freq)
4092 {
4093         dprintk("tea5757_set_freq %d\n",freq);
4094         tea5757_write(btv, 5 * freq + 0x358); /* add 10.7MHz (see docs) */
4095 }
4096
4097
4098 /* ----------------------------------------------------------------------- */
4099 /* winview                                                                 */
4100
4101 void winview_audio(struct bttv *btv, struct video_audio *v, int set)
4102 {
4103         /* PT2254A programming Jon Tombs, jon@gte.esi.us.es */
4104         int bits_out, loops, vol, data;
4105
4106         if (!set) {
4107                 /* Fixed by Leandro Lucarella <luca@linuxmendoza.org.ar (07/31/01) */
4108                 v->flags |= VIDEO_AUDIO_VOLUME;
4109                 return;
4110         }
4111
4112         /* 32 levels logarithmic */
4113         vol = 32 - ((v->volume>>11));
4114         /* units */
4115         bits_out = (PT2254_DBS_IN_2>>(vol%5));
4116         /* tens */
4117         bits_out |= (PT2254_DBS_IN_10>>(vol/5));
4118         bits_out |= PT2254_L_CHANNEL | PT2254_R_CHANNEL;
4119         data = gpio_read();
4120         data &= ~(WINVIEW_PT2254_CLK| WINVIEW_PT2254_DATA|
4121                   WINVIEW_PT2254_STROBE);
4122         for (loops = 17; loops >= 0 ; loops--) {
4123                 if (bits_out & (1<<loops))
4124                         data |=  WINVIEW_PT2254_DATA;
4125                 else
4126                         data &= ~WINVIEW_PT2254_DATA;
4127                 gpio_write(data);
4128                 udelay(5);
4129                 data |= WINVIEW_PT2254_CLK;
4130                 gpio_write(data);
4131                 udelay(5);
4132                 data &= ~WINVIEW_PT2254_CLK;
4133                 gpio_write(data);
4134         }
4135         data |=  WINVIEW_PT2254_STROBE;
4136         data &= ~WINVIEW_PT2254_DATA;
4137         gpio_write(data);
4138         udelay(10);
4139         data &= ~WINVIEW_PT2254_STROBE;
4140         gpio_write(data);
4141 }
4142
4143 /* ----------------------------------------------------------------------- */
4144 /* mono/stereo control for various cards (which don't use i2c chips but    */
4145 /* connect something to the GPIO pins                                      */
4146
4147 static void
4148 gvbctv3pci_audio(struct bttv *btv, struct video_audio *v, int set)
4149 {
4150         unsigned int con = 0;
4151
4152         if (set) {
4153                 gpio_inout(0x300, 0x300);
4154                 if (v->mode & VIDEO_SOUND_LANG1)
4155                         con = 0x000;
4156                 if (v->mode & VIDEO_SOUND_LANG2)
4157                         con = 0x300;
4158                 if (v->mode & VIDEO_SOUND_STEREO)
4159                         con = 0x200;
4160 /*              if (v->mode & VIDEO_SOUND_MONO)
4161  *                      con = 0x100; */
4162                 gpio_bits(0x300, con);
4163         } else {
4164                 v->mode = VIDEO_SOUND_STEREO |
4165                           VIDEO_SOUND_LANG1  | VIDEO_SOUND_LANG2;
4166         }
4167 }
4168
4169 static void
4170 gvbctv5pci_audio(struct bttv *btv, struct video_audio *v, int set)
4171 {
4172         unsigned int val, con;
4173
4174         if (btv->radio_user)
4175                 return;
4176
4177         val = gpio_read();
4178         if (set) {
4179                 con = 0x000;
4180                 if (v->mode & VIDEO_SOUND_LANG2) {
4181                         if (v->mode & VIDEO_SOUND_LANG1) {
4182                                 /* LANG1 + LANG2 */
4183                                 con = 0x100;
4184                         }
4185                         else {
4186                                 /* LANG2 */
4187                                 con = 0x300;
4188                         }
4189                 }
4190                 if (con != (val & 0x300)) {
4191                         gpio_bits(0x300, con);
4192                         if (bttv_gpio)
4193                                 bttv_gpio_tracking(btv,"gvbctv5pci");
4194                 }
4195         } else {
4196                 switch (val & 0x70) {
4197                   case 0x10:
4198                         v->mode = VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4199                         break;
4200                   case 0x30:
4201                         v->mode = VIDEO_SOUND_LANG2;
4202                         break;
4203                   case 0x50:
4204                         v->mode = VIDEO_SOUND_LANG1;
4205                         break;
4206                   case 0x60:
4207                         v->mode = VIDEO_SOUND_STEREO;
4208                         break;
4209                   case 0x70:
4210                         v->mode = VIDEO_SOUND_MONO;
4211                         break;
4212                   default:
4213                         v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4214                                   VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4215                 }
4216         }
4217 }
4218
4219 /*
4220  * Mario Medina Nussbaum <medisoft@alohabbs.org.mx>
4221  *  I discover that on BT848_GPIO_DATA address a byte 0xcce enable stereo,
4222  *  0xdde enables mono and 0xccd enables sap
4223  *
4224  * Petr Vandrovec <VANDROVE@vc.cvut.cz>
4225  *  P.S.: At least mask in line above is wrong - GPIO pins 3,2 select
4226  *  input/output sound connection, so both must be set for output mode.
4227  *
4228  * Looks like it's needed only for the "tvphone", the "tvphone 98"
4229  * handles this with a tda9840
4230  *
4231  */
4232 static void
4233 avermedia_tvphone_audio(struct bttv *btv, struct video_audio *v, int set)
4234 {
4235         int val = 0;
4236
4237         if (set) {
4238                 if (v->mode & VIDEO_SOUND_LANG2)   /* SAP */
4239                         val = 0x02;
4240                 if (v->mode & VIDEO_SOUND_STEREO)
4241                         val = 0x01;
4242                 if (val) {
4243                         gpio_bits(0x03,val);
4244                         if (bttv_gpio)
4245                                 bttv_gpio_tracking(btv,"avermedia");
4246                 }
4247         } else {
4248                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4249                         VIDEO_SOUND_LANG1;
4250                 return;
4251         }
4252 }
4253
4254 static void
4255 avermedia_tv_stereo_audio(struct bttv *btv, struct video_audio *v, int set)
4256 {
4257         int val = 0;
4258
4259         if (set) {
4260                 if (v->mode & VIDEO_SOUND_LANG2)   /* SAP */
4261                         val = 0x01;
4262                 if (v->mode & VIDEO_SOUND_STEREO)  /* STEREO */
4263                         val = 0x02;
4264                 btaor(val, ~0x03, BT848_GPIO_DATA);
4265                 if (bttv_gpio)
4266                         bttv_gpio_tracking(btv,"avermedia");
4267         } else {
4268                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4269                         VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4270                 return;
4271         }
4272 }
4273
4274 /* Lifetec 9415 handling */
4275 static void
4276 lt9415_audio(struct bttv *btv, struct video_audio *v, int set)
4277 {
4278         int val = 0;
4279
4280         if (gpio_read() & 0x4000) {
4281                 v->mode = VIDEO_SOUND_MONO;
4282                 return;
4283         }
4284
4285         if (set) {
4286                 if (v->mode & VIDEO_SOUND_LANG2)  /* A2 SAP */
4287                         val = 0x0080;
4288                 if (v->mode & VIDEO_SOUND_STEREO) /* A2 stereo */
4289                         val = 0x0880;
4290                 if ((v->mode & VIDEO_SOUND_LANG1) ||
4291                     (v->mode & VIDEO_SOUND_MONO))
4292                         val = 0;
4293                 gpio_bits(0x0880, val);
4294                 if (bttv_gpio)
4295                         bttv_gpio_tracking(btv,"lt9415");
4296         } else {
4297                 /* autodetect doesn't work with this card :-( */
4298                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4299                         VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4300                 return;
4301         }
4302 }
4303
4304 /* TDA9821 on TerraTV+ Bt848, Bt878 */
4305 static void
4306 terratv_audio(struct bttv *btv, struct video_audio *v, int set)
4307 {
4308         unsigned int con = 0;
4309
4310         if (set) {
4311                 gpio_inout(0x180000,0x180000);
4312                 if (v->mode & VIDEO_SOUND_LANG2)
4313                         con = 0x080000;
4314                 if (v->mode & VIDEO_SOUND_STEREO)
4315                         con = 0x180000;
4316                 gpio_bits(0x180000, con);
4317                 if (bttv_gpio)
4318                         bttv_gpio_tracking(btv,"terratv");
4319         } else {
4320                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4321                         VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4322         }
4323 }
4324
4325 static void
4326 winfast2000_audio(struct bttv *btv, struct video_audio *v, int set)
4327 {
4328         unsigned long val = 0;
4329
4330         if (set) {
4331                 /*btor (0xc32000, BT848_GPIO_OUT_EN);*/
4332                 if (v->mode & VIDEO_SOUND_MONO)         /* Mono */
4333                         val = 0x420000;
4334                 if (v->mode & VIDEO_SOUND_LANG1)        /* Mono */
4335                         val = 0x420000;
4336                 if (v->mode & VIDEO_SOUND_LANG2)        /* SAP */
4337                         val = 0x410000;
4338                 if (v->mode & VIDEO_SOUND_STEREO)       /* Stereo */
4339                         val = 0x020000;
4340                 if (val) {
4341                         gpio_bits(0x430000, val);
4342                         if (bttv_gpio)
4343                                 bttv_gpio_tracking(btv,"winfast2000");
4344                 }
4345         } else {
4346                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4347                           VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4348         }
4349 }
4350
4351 /*
4352  * Dariusz Kowalewski <darekk@automex.pl>
4353  * sound control for Prolink PV-BT878P+9B (PixelView PlayTV Pro FM+NICAM
4354  * revision 9B has on-board TDA9874A sound decoder).
4355  *
4356  * Note: There are card variants without tda9874a. Forcing the "stereo sound route"
4357  *       will mute this cards.
4358  */
4359 static void
4360 pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set)
4361 {
4362         unsigned int val = 0;
4363
4364         if (btv->radio_user)
4365                 return;
4366
4367         if (set) {
4368                 if (v->mode & VIDEO_SOUND_MONO) {
4369                         val = 0x01;
4370                 }
4371                 if ((v->mode & (VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2))
4372                     || (v->mode & VIDEO_SOUND_STEREO)) {
4373                         val = 0x02;
4374                 }
4375                 if (val) {
4376                         gpio_bits(0x03,val);
4377                         if (bttv_gpio)
4378                                 bttv_gpio_tracking(btv,"pvbt878p9b");
4379                 }
4380         } else {
4381                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4382                         VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4383         }
4384 }
4385
4386 /*
4387  * Dariusz Kowalewski <darekk@automex.pl>
4388  * sound control for FlyVideo 2000S (with tda9874 decoder)
4389  * based on pvbt878p9b_audio() - this is not tested, please fix!!!
4390  */
4391 static void
4392 fv2000s_audio(struct bttv *btv, struct video_audio *v, int set)
4393 {
4394         unsigned int val = 0xffff;
4395
4396         if (btv->radio_user)
4397                 return;
4398         if (set) {
4399                 if (v->mode & VIDEO_SOUND_MONO) {
4400                         val = 0x0000;
4401                 }
4402                 if ((v->mode & (VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2))
4403                     || (v->mode & VIDEO_SOUND_STEREO)) {
4404                         val = 0x1080; /*-dk-???: 0x0880, 0x0080, 0x1800 ... */
4405                 }
4406                 if (val != 0xffff) {
4407                         gpio_bits(0x1800, val);
4408                         if (bttv_gpio)
4409                                 bttv_gpio_tracking(btv,"fv2000s");
4410                 }
4411         } else {
4412                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4413                         VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4414         }
4415 }
4416
4417 /*
4418  * sound control for Canopus WinDVR PCI
4419  * Masaki Suzuki <masaki@btree.org>
4420  */
4421 static void
4422 windvr_audio(struct bttv *btv, struct video_audio *v, int set)
4423 {
4424         unsigned long val = 0;
4425
4426         if (set) {
4427                 if (v->mode & VIDEO_SOUND_MONO)
4428                         val = 0x040000;
4429                 if (v->mode & VIDEO_SOUND_LANG1)
4430                         val = 0;
4431                 if (v->mode & VIDEO_SOUND_LANG2)
4432                         val = 0x100000;
4433                 if (v->mode & VIDEO_SOUND_STEREO)
4434                         val = 0;
4435                 if (val) {
4436                         gpio_bits(0x140000, val);
4437                         if (bttv_gpio)
4438                                 bttv_gpio_tracking(btv,"windvr");
4439                 }
4440         } else {
4441                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4442                           VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4443         }
4444 }
4445
4446 /*
4447  * sound control for AD-TVK503
4448  * Hiroshi Takekawa <sian@big.or.jp>
4449  */
4450 static void
4451 adtvk503_audio(struct bttv *btv, struct video_audio *v, int set)
4452 {
4453         unsigned int con = 0xffffff;
4454
4455         /* btaor(0x1e0000, ~0x1e0000, BT848_GPIO_OUT_EN); */
4456
4457         if (set) {
4458                 /* btor(***, BT848_GPIO_OUT_EN); */
4459                 if (v->mode & VIDEO_SOUND_LANG1)
4460                         con = 0x00000000;
4461                 if (v->mode & VIDEO_SOUND_LANG2)
4462                         con = 0x00180000;
4463                 if (v->mode & VIDEO_SOUND_STEREO)
4464                         con = 0x00000000;
4465                 if (v->mode & VIDEO_SOUND_MONO)
4466                         con = 0x00060000;
4467                 if (con != 0xffffff) {
4468                         gpio_bits(0x1e0000,con);
4469                         if (bttv_gpio)
4470                                 bttv_gpio_tracking(btv, "adtvk503");
4471                 }
4472         } else {
4473                 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4474                           VIDEO_SOUND_LANG1  | VIDEO_SOUND_LANG2;
4475         }
4476 }
4477
4478 /* RemoteVision MX (rv605) muxsel helper [Miguel Freitas]
4479  *
4480  * This is needed because rv605 don't use a normal multiplex, but a crosspoint
4481  * switch instead (CD22M3494E). This IC can have multiple active connections
4482  * between Xn (input) and Yn (output) pins. We need to clear any existing
4483  * connection prior to establish a new one, pulsing the STROBE pin.
4484  *
4485  * The board hardwire Y0 (xpoint) to MUX1 and MUXOUT to Yin.
4486  * GPIO pins are wired as:
4487  *  GPIO[0:3] - AX[0:3] (xpoint) - P1[0:3] (microcontroler)
4488  *  GPIO[4:6] - AY[0:2] (xpoint) - P1[4:6] (microcontroler)
4489  *  GPIO[7]   - DATA (xpoint)    - P1[7] (microcontroler)
4490  *  GPIO[8]   -                  - P3[5] (microcontroler)
4491  *  GPIO[9]   - RESET (xpoint)   - P3[6] (microcontroler)
4492  *  GPIO[10]  - STROBE (xpoint)  - P3[7] (microcontroler)
4493  *  GPINTR    -                  - P3[4] (microcontroler)
4494  *
4495  * The microcontroler is a 80C32 like. It should be possible to change xpoint
4496  * configuration either directly (as we are doing) or using the microcontroler
4497  * which is also wired to I2C interface. I have no further info on the
4498  * microcontroler features, one would need to disassembly the firmware.
4499  * note: the vendor refused to give any information on this product, all
4500  *       that stuff was found using a multimeter! :)
4501  */
4502 static void rv605_muxsel(struct bttv *btv, unsigned int input)
4503 {
4504         /* reset all conections */
4505         gpio_bits(0x200,0x200);
4506         mdelay(1);
4507         gpio_bits(0x200,0x000);
4508         mdelay(1);
4509
4510         /* create a new conection */
4511         gpio_bits(0x480,0x080);
4512         gpio_bits(0x480,0x480);
4513         mdelay(1);
4514         gpio_bits(0x480,0x080);
4515         mdelay(1);
4516 }
4517
4518 /* Tibet Systems 'Progress DVR' CS16 muxsel helper [Chris Fanning]
4519  *
4520  * The CS16 (available on eBay cheap) is a PCI board with four Fusion
4521  * 878A chips, a PCI bridge, an Atmel microcontroller, four sync seperator
4522  * chips, ten eight input analog multiplexors, a not chip and a few
4523  * other components.
4524  *
4525  * 16 inputs on a secondary bracket are provided and can be selected
4526  * from each of the four capture chips.  Two of the eight input
4527  * multiplexors are used to select from any of the 16 input signals.
4528  *
4529  * Unsupported hardware capabilities:
4530  *  . A video output monitor on the secondary bracket can be selected from
4531  *    one of the 878A chips.
4532  *  . Another passthrough but I haven't spent any time investigating it.
4533  *  . Digital I/O (logic level connected to GPIO) is available from an
4534  *    onboard header.
4535  *
4536  * The on chip input mux should always be set to 2.
4537  * GPIO[16:19] - Video input selection
4538  * GPIO[0:3]   - Video output monitor select (only available from one 878A)
4539  * GPIO[?:?]   - Digital I/O.
4540  *
4541  * There is an ATMEL microcontroller with an 8031 core on board.  I have not
4542  * determined what function (if any) it provides.  With the microcontroller
4543  * and sync seperator chips a guess is that it might have to do with video
4544  * switching and maybe some digital I/O.
4545  */
4546 static void tibetCS16_muxsel(struct bttv *btv, unsigned int input)
4547 {
4548         /* video mux */
4549         gpio_bits(0x0f0000, input << 16);
4550 }
4551
4552 static void tibetCS16_init(struct bttv *btv)
4553 {
4554         /* enable gpio bits, mask obtained via btSpy */
4555         gpio_inout(0xffffff, 0x0f7fff);
4556         gpio_write(0x0f7fff);
4557 }
4558
4559 /*
4560  * The following routines for the Kodicom-4400r get a little mind-twisting.
4561  * There is a "master" controller and three "slave" controllers, together
4562  * an analog switch which connects any of 16 cameras to any of the BT87A's.
4563  * The analog switch is controlled by the "master", but the detection order
4564  * of the four BT878A chips is in an order which I just don't understand.
4565  * The "master" is actually the second controller to be detected.  The
4566  * logic on the board uses logical numbers for the 4 controlers, but
4567  * those numbers are different from the detection sequence.  When working
4568  * with the analog switch, we need to "map" from the detection sequence
4569  * over to the board's logical controller number.  This mapping sequence
4570  * is {3, 0, 2, 1}, i.e. the first controller to be detected is logical
4571  * unit 3, the second (which is the master) is logical unit 0, etc.
4572  * We need to maintain the status of the analog switch (which of the 16
4573  * cameras is connected to which of the 4 controllers).  Rather than
4574  * add to the bttv structure for this, we use the data reserved for
4575  * the mbox (unused for this card type).
4576  */
4577
4578 /*
4579  * First a routine to set the analog switch, which controls which camera
4580  * is routed to which controller.  The switch comprises an X-address
4581  * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4582  * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4583  * A data value (gpio bit 7) of '1' enables the switch, and '0' disables
4584  * the switch.  A STROBE bit (gpio bit 8) latches the data value into the
4585  * specified address.  The idea is to set the address and data, then bring
4586  * STROBE high, and finally bring STROBE back to low.
4587  */
4588 static void kodicom4400r_write(struct bttv *btv,
4589                                unsigned char xaddr,
4590                                unsigned char yaddr,
4591                                unsigned char data) {
4592         unsigned int udata;
4593
4594         udata = (data << 7) | ((yaddr&3) << 4) | (xaddr&0xf);
4595         gpio_bits(0x1ff, udata);                /* write ADDR and DAT */
4596         gpio_bits(0x1ff, udata | (1 << 8));     /* strobe high */
4597         gpio_bits(0x1ff, udata);                /* strobe low */
4598 }
4599
4600 /*
4601  * Next the mux select.  Both the "master" and "slave" 'cards' (controllers)
4602  * use this routine.  The routine finds the "master" for the card, maps
4603  * the controller number from the detected position over to the logical
4604  * number, writes the appropriate data to the analog switch, and housekeeps
4605  * the local copy of the switch information.  The parameter 'input' is the
4606  * requested camera number (0 - 15).
4607  */
4608 static void kodicom4400r_muxsel(struct bttv *btv, unsigned int input)
4609 {
4610         char *sw_status;
4611         int xaddr, yaddr;
4612         struct bttv *mctlr;
4613         static unsigned char map[4] = {3, 0, 2, 1};
4614
4615         mctlr = master[btv->c.nr];
4616         if (mctlr == NULL) {    /* ignore if master not yet detected */
4617                 return;
4618         }
4619         yaddr = (btv->c.nr - mctlr->c.nr + 1) & 3; /* the '&' is for safety */
4620         yaddr = map[yaddr];
4621         sw_status = (char *)(&mctlr->mbox_we);
4622         xaddr = input & 0xf;
4623         /* Check if the controller/camera pair has changed, else ignore */
4624         if (sw_status[yaddr] != xaddr)
4625         {
4626                 /* "open" the old switch, "close" the new one, save the new */
4627                 kodicom4400r_write(mctlr, sw_status[yaddr], yaddr, 0);
4628                 sw_status[yaddr] = xaddr;
4629                 kodicom4400r_write(mctlr, xaddr, yaddr, 1);
4630         }
4631 }
4632
4633 /*
4634  * During initialisation, we need to reset the analog switch.  We
4635  * also preset the switch to map the 4 connectors on the card to the
4636  * *user's* (see above description of kodicom4400r_muxsel) channels
4637  * 0 through 3
4638  */
4639 static void kodicom4400r_init(struct bttv *btv)
4640 {
4641         char *sw_status = (char *)(&btv->mbox_we);
4642         int ix;
4643
4644         gpio_inout(0x0003ff, 0x0003ff);
4645         gpio_write(1 << 9);     /* reset MUX */
4646         gpio_write(0);
4647         /* Preset camera 0 to the 4 controllers */
4648         for (ix=0; ix<4; ix++) {
4649                 sw_status[ix] = ix;
4650                 kodicom4400r_write(btv, ix, ix, 1);
4651         }
4652         /*
4653          * Since this is the "master", we need to set up the
4654          * other three controller chips' pointers to this structure
4655          * for later use in the muxsel routine.
4656          */
4657         if ((btv->c.nr<1) || (btv->c.nr>BTTV_MAX-3))
4658             return;
4659         master[btv->c.nr-1] = btv;
4660         master[btv->c.nr]   = btv;
4661         master[btv->c.nr+1] = btv;
4662         master[btv->c.nr+2] = btv;
4663 }
4664
4665 /* The Grandtec X-Guard framegrabber card uses two Dual 4-channel
4666  * video multiplexers to provide up to 16 video inputs. These
4667  * multiplexers are controlled by the lower 8 GPIO pins of the
4668  * bt878. The multiplexers probably Pericom PI5V331Q or similar.
4669
4670  * xxx0 is pin xxx of multiplexer U5,
4671  * yyy1 is pin yyy of multiplexer U2
4672  */
4673 #define ENA0    0x01
4674 #define ENB0    0x02
4675 #define ENA1    0x04
4676 #define ENB1    0x08
4677
4678 #define IN10    0x10
4679 #define IN00    0x20
4680 #define IN11    0x40
4681 #define IN01    0x80
4682
4683 static void xguard_muxsel(struct bttv *btv, unsigned int input)
4684 {
4685         static const int masks[] = {
4686                 ENB0, ENB0|IN00, ENB0|IN10, ENB0|IN00|IN10,
4687                 ENA0, ENA0|IN00, ENA0|IN10, ENA0|IN00|IN10,
4688                 ENB1, ENB1|IN01, ENB1|IN11, ENB1|IN01|IN11,
4689                 ENA1, ENA1|IN01, ENA1|IN11, ENA1|IN01|IN11,
4690         };
4691         gpio_write(masks[input%16]);
4692 }
4693 static void picolo_tetra_init(struct bttv *btv)
4694 {
4695         /*This is the video input redirection fonctionality : I DID NOT USED IT. */
4696         btwrite (0x08<<16,BT848_GPIO_DATA);/*GPIO[19] [==> 4053 B+C] set to 1 */
4697         btwrite (0x04<<16,BT848_GPIO_DATA);/*GPIO[18] [==> 4053 A]  set to 1*/
4698 }
4699 static void picolo_tetra_muxsel (struct bttv* btv, unsigned int input)
4700 {
4701
4702         dprintk (KERN_DEBUG "bttv%d : picolo_tetra_muxsel =>  input = %d\n",btv->c.nr,input);
4703         /*Just set the right path in the analog multiplexers : channel 1 -> 4 ==> Analog Mux ==> MUX0*/
4704         /*GPIO[20]&GPIO[21] used to choose the right input*/
4705         btwrite (input<<20,BT848_GPIO_DATA);
4706
4707 }
4708
4709 /*
4710  * ivc120_muxsel [Added by Alan Garfield <alan@fromorbit.com>]
4711  *
4712  * The IVC120G security card has 4 i2c controlled TDA8540 matrix
4713  * swichers to provide 16 channels to MUX0. The TDA8540's have
4714  * 4 indepedant outputs and as such the IVC120G also has the
4715  * optional "Monitor Out" bus. This allows the card to be looking
4716  * at one input while the monitor is looking at another.
4717  *
4718  * Since I've couldn't be bothered figuring out how to add an
4719  * independant muxsel for the monitor bus, I've just set it to
4720  * whatever the card is looking at.
4721  *
4722  *  OUT0 of the TDA8540's is connected to MUX0         (0x03)
4723  *  OUT1 of the TDA8540's is connected to "Monitor Out"        (0x0C)
4724  *
4725  *  TDA8540_ALT3 IN0-3 = Channel 13 - 16       (0x03)
4726  *  TDA8540_ALT4 IN0-3 = Channel 1 - 4         (0x03)
4727  *  TDA8540_ALT5 IN0-3 = Channel 5 - 8         (0x03)
4728  *  TDA8540_ALT6 IN0-3 = Channel 9 - 12                (0x03)
4729  *
4730  */
4731
4732 /* All 7 possible sub-ids for the TDA8540 Matrix Switcher */
4733 #define I2C_TDA8540        0x90
4734 #define I2C_TDA8540_ALT1   0x92
4735 #define I2C_TDA8540_ALT2   0x94
4736 #define I2C_TDA8540_ALT3   0x96
4737 #define I2C_TDA8540_ALT4   0x98
4738 #define I2C_TDA8540_ALT5   0x9a
4739 #define I2C_TDA8540_ALT6   0x9c
4740
4741 static void ivc120_muxsel(struct bttv *btv, unsigned int input)
4742 {
4743         /* Simple maths */
4744         int key = input % 4;
4745         int matrix = input / 4;
4746
4747         dprintk("bttv%d: ivc120_muxsel: Input - %02d | TDA - %02d | In - %02d\n",
4748                 btv->c.nr, input, matrix, key);
4749
4750         /* Handles the input selection on the TDA8540's */
4751         bttv_I2CWrite(btv, I2C_TDA8540_ALT3, 0x00,
4752                       ((matrix == 3) ? (key | key << 2) : 0x00), 1);
4753         bttv_I2CWrite(btv, I2C_TDA8540_ALT4, 0x00,
4754                       ((matrix == 0) ? (key | key << 2) : 0x00), 1);
4755         bttv_I2CWrite(btv, I2C_TDA8540_ALT5, 0x00,
4756                       ((matrix == 1) ? (key | key << 2) : 0x00), 1);
4757         bttv_I2CWrite(btv, I2C_TDA8540_ALT6, 0x00,
4758                       ((matrix == 2) ? (key | key << 2) : 0x00), 1);
4759
4760         /* Handles the output enables on the TDA8540's */
4761         bttv_I2CWrite(btv, I2C_TDA8540_ALT3, 0x02,
4762                       ((matrix == 3) ? 0x03 : 0x00), 1);  /* 13 - 16 */
4763         bttv_I2CWrite(btv, I2C_TDA8540_ALT4, 0x02,
4764                       ((matrix == 0) ? 0x03 : 0x00), 1);  /* 1-4 */
4765         bttv_I2CWrite(btv, I2C_TDA8540_ALT5, 0x02,
4766                       ((matrix == 1) ? 0x03 : 0x00), 1);  /* 5-8 */
4767         bttv_I2CWrite(btv, I2C_TDA8540_ALT6, 0x02,
4768                       ((matrix == 2) ? 0x03 : 0x00), 1);  /* 9-12 */
4769
4770         /* Selects MUX0 for input on the 878 */
4771         btaor((0)<<5, ~(3<<5), BT848_IFORM);
4772 }
4773
4774
4775 /* PXC200 muxsel helper
4776  * luke@syseng.anu.edu.au
4777  * another transplant
4778  * from Alessandro Rubini (rubini@linux.it)
4779  *
4780  * There are 4 kinds of cards:
4781  * PXC200L which is bt848
4782  * PXC200F which is bt848 with PIC controlling mux
4783  * PXC200AL which is bt878
4784  * PXC200AF which is bt878 with PIC controlling mux
4785  */
4786 #define PX_CFG_PXC200F 0x01
4787 #define PX_FLAG_PXC200A  0x00001000 /* a pxc200A is bt-878 based */
4788 #define PX_I2C_PIC       0x0f
4789 #define PX_PXC200A_CARDID 0x200a1295
4790 #define PX_I2C_CMD_CFG   0x00
4791
4792 static void PXC200_muxsel(struct bttv *btv, unsigned int input)
4793 {
4794         int rc;
4795         long mux;
4796         int bitmask;
4797         unsigned char buf[2];
4798
4799         /* Read PIC config to determine if this is a PXC200F */
4800         /* PX_I2C_CMD_CFG*/
4801         buf[0]=0;
4802         buf[1]=0;
4803         rc=bttv_I2CWrite(btv,(PX_I2C_PIC<<1),buf[0],buf[1],1);
4804         if (rc) {
4805           printk(KERN_DEBUG "bttv%d: PXC200_muxsel: pic cfg write failed:%d\n", btv->c.nr,rc);
4806           /* not PXC ? do nothing */
4807           return;
4808         }
4809
4810         rc=bttv_I2CRead(btv,(PX_I2C_PIC<<1),NULL);
4811         if (!(rc & PX_CFG_PXC200F)) {
4812           printk(KERN_DEBUG "bttv%d: PXC200_muxsel: not PXC200F rc:%d \n", btv->c.nr,rc);
4813           return;
4814         }
4815
4816
4817         /* The multiplexer in the 200F is handled by the GPIO port */
4818         /* get correct mapping between inputs  */
4819         /*  mux = bttv_tvcards[btv->type].muxsel[input] & 3; */
4820         /* ** not needed!?   */
4821         mux = input;
4822
4823         /* make sure output pins are enabled */
4824         /* bitmask=0x30f; */
4825         bitmask=0x302;
4826         /* check whether we have a PXC200A */
4827         if (btv->cardid == PX_PXC200A_CARDID)  {
4828            bitmask ^= 0x180; /* use 7 and 9, not 8 and 9 */
4829            bitmask |= 7<<4; /* the DAC */
4830         }
4831         btwrite(bitmask, BT848_GPIO_OUT_EN);
4832
4833         bitmask = btread(BT848_GPIO_DATA);
4834         if (btv->cardid == PX_PXC200A_CARDID)
4835           bitmask = (bitmask & ~0x280) | ((mux & 2) << 8) | ((mux & 1) << 7);
4836         else /* older device */
4837           bitmask = (bitmask & ~0x300) | ((mux & 3) << 8);
4838         btwrite(bitmask,BT848_GPIO_DATA);
4839
4840         /*
4841          * Was "to be safe, set the bt848 to input 0"
4842          * Actually, since it's ok at load time, better not messing
4843          * with these bits (on PXC200AF you need to set mux 2 here)
4844          *
4845          * needed because bttv-driver sets mux before calling this function
4846          */
4847         if (btv->cardid == PX_PXC200A_CARDID)
4848           btaor(2<<5, ~BT848_IFORM_MUXSEL, BT848_IFORM);
4849         else /* older device */
4850           btand(~BT848_IFORM_MUXSEL,BT848_IFORM);
4851
4852         printk(KERN_DEBUG "bttv%d: setting input channel to:%d\n", btv->c.nr,(int)mux);
4853 }
4854
4855 /* ----------------------------------------------------------------------- */
4856 /* motherboard chipset specific stuff                                      */
4857
4858 void __devinit bttv_check_chipset(void)
4859 {
4860         int pcipci_fail = 0;
4861         struct pci_dev *dev = NULL;
4862
4863         if (pci_pci_problems & PCIPCI_FAIL)
4864                 pcipci_fail = 1;
4865         if (pci_pci_problems & (PCIPCI_TRITON|PCIPCI_NATOMA|PCIPCI_VIAETBF))
4866                 triton1 = 1;
4867         if (pci_pci_problems & PCIPCI_VSFX)
4868                 vsfx = 1;
4869 #ifdef PCIPCI_ALIMAGIK
4870         if (pci_pci_problems & PCIPCI_ALIMAGIK)
4871                 latency = 0x0A;
4872 #endif
4873
4874
4875         /* print warnings about any quirks found */
4876         if (triton1)
4877                 printk(KERN_INFO "bttv: Host bridge needs ETBF enabled.\n");
4878         if (vsfx)
4879                 printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n");
4880         if (pcipci_fail) {
4881                 printk(KERN_WARNING "bttv: BT848 and your chipset may not work together.\n");
4882                 if (!no_overlay) {
4883                         printk(KERN_WARNING "bttv: overlay will be disabled.\n");
4884                         no_overlay = 1;
4885                 } else {
4886                         printk(KERN_WARNING "bttv: overlay forced. Use this option at your own risk.\n");
4887                 }
4888         }
4889         if (UNSET != latency)
4890                 printk(KERN_INFO "bttv: pci latency fixup [%d]\n",latency);
4891         while ((dev = pci_get_device(PCI_VENDOR_ID_INTEL,
4892                                       PCI_DEVICE_ID_INTEL_82441, dev))) {
4893                 unsigned char b;
4894                 pci_read_config_byte(dev, 0x53, &b);
4895                 if (bttv_debug)
4896                         printk(KERN_INFO "bttv: Host bridge: 82441FX Natoma, "
4897                                "bufcon=0x%02x\n",b);
4898         }
4899 }
4900
4901 int __devinit bttv_handle_chipset(struct bttv *btv)
4902 {
4903         unsigned char command;
4904
4905         if (!triton1 && !vsfx && UNSET == latency)
4906                 return 0;
4907
4908         if (bttv_verbose) {
4909                 if (triton1)
4910                         printk(KERN_INFO "bttv%d: enabling ETBF (430FX/VP3 compatibilty)\n",btv->c.nr);
4911                 if (vsfx && btv->id >= 878)
4912                         printk(KERN_INFO "bttv%d: enabling VSFX\n",btv->c.nr);
4913                 if (UNSET != latency)
4914                         printk(KERN_INFO "bttv%d: setting pci timer to %d\n",
4915                                btv->c.nr,latency);
4916         }
4917
4918         if (btv->id < 878) {
4919                 /* bt848 (mis)uses a bit in the irq mask for etbf */
4920                 if (triton1)
4921                         btv->triton1 = BT848_INT_ETBF;
4922         } else {
4923                 /* bt878 has a bit in the pci config space for it */
4924                 pci_read_config_byte(btv->c.pci, BT878_DEVCTRL, &command);
4925                 if (triton1)
4926                         command |= BT878_EN_TBFX;
4927                 if (vsfx)
4928                         command |= BT878_EN_VSFX;
4929                 pci_write_config_byte(btv->c.pci, BT878_DEVCTRL, command);
4930         }
4931         if (UNSET != latency)
4932                 pci_write_config_byte(btv->c.pci, PCI_LATENCY_TIMER, latency);
4933         return 0;
4934 }
4935
4936
4937 /*
4938  * Local variables:
4939  * c-basic-offset: 8
4940  * End:
4941  */