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