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