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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30 #include <linux/delay.h>
31 #include <linux/module.h>
32 #include <linux/kmod.h>
33 #include <linux/init.h>
34 #include <linux/pci.h>
35 #include <linux/vmalloc.h>
36 #include <linux/firmware.h>
37 #include <net/checksum.h>
39 #include <asm/unaligned.h>
43 #include <media/v4l2-common.h>
44 #include <media/tvaudio.h>
45 #include "bttv-audio-hook.h"
48 static void boot_msp34xx(struct bttv
*btv
, int pin
);
49 static void hauppauge_eeprom(struct bttv
*btv
);
50 static void avermedia_eeprom(struct bttv
*btv
);
51 static void osprey_eeprom(struct bttv
*btv
, const u8 ee
[256]);
52 static void modtec_eeprom(struct bttv
*btv
);
53 static void init_PXC200(struct bttv
*btv
);
54 static void init_RTV24(struct bttv
*btv
);
56 static void rv605_muxsel(struct bttv
*btv
, unsigned int input
);
57 static void eagle_muxsel(struct bttv
*btv
, unsigned int input
);
58 static void xguard_muxsel(struct bttv
*btv
, unsigned int input
);
59 static void ivc120_muxsel(struct bttv
*btv
, unsigned int input
);
60 static void gvc1100_muxsel(struct bttv
*btv
, unsigned int input
);
62 static void PXC200_muxsel(struct bttv
*btv
, unsigned int input
);
64 static void picolo_tetra_muxsel(struct bttv
*btv
, unsigned int input
);
65 static void picolo_tetra_init(struct bttv
*btv
);
67 static void tibetCS16_muxsel(struct bttv
*btv
, unsigned int input
);
68 static void tibetCS16_init(struct bttv
*btv
);
70 static void kodicom4400r_muxsel(struct bttv
*btv
, unsigned int input
);
71 static void kodicom4400r_init(struct bttv
*btv
);
73 static void sigmaSLC_muxsel(struct bttv
*btv
, unsigned int input
);
74 static void sigmaSQ_muxsel(struct bttv
*btv
, unsigned int input
);
76 static void geovision_muxsel(struct bttv
*btv
, unsigned int input
);
78 static void phytec_muxsel(struct bttv
*btv
, unsigned int input
);
80 static void gv800s_muxsel(struct bttv
*btv
, unsigned int input
);
81 static void gv800s_init(struct bttv
*btv
);
83 static void td3116_muxsel(struct bttv
*btv
, unsigned int input
);
85 static int terratec_active_radio_upgrade(struct bttv
*btv
);
86 static int tea5757_read(struct bttv
*btv
);
87 static int tea5757_write(struct bttv
*btv
, int value
);
88 static void identify_by_eeprom(struct bttv
*btv
,
89 unsigned char eeprom_data
[256]);
90 static int __devinit
pvr_boot(struct bttv
*btv
);
92 /* config variables */
93 static unsigned int triton1
;
94 static unsigned int vsfx
;
95 static unsigned int latency
= UNSET
;
98 static unsigned int card
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
99 static unsigned int pll
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
100 static unsigned int tuner
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
101 static unsigned int svhs
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
102 static unsigned int remote
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
103 static unsigned int audiodev
[BTTV_MAX
];
104 static unsigned int saa6588
[BTTV_MAX
];
105 static struct bttv
*master
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = NULL
};
106 static unsigned int autoload
= UNSET
;
107 static unsigned int gpiomask
= UNSET
;
108 static unsigned int audioall
= UNSET
;
109 static unsigned int audiomux
[5] = { [ 0 ... 4 ] = UNSET
};
112 module_param(triton1
, int, 0444);
113 module_param(vsfx
, int, 0444);
114 module_param(no_overlay
, int, 0444);
115 module_param(latency
, int, 0444);
116 module_param(gpiomask
, int, 0444);
117 module_param(audioall
, int, 0444);
118 module_param(autoload
, int, 0444);
120 module_param_array(card
, int, NULL
, 0444);
121 module_param_array(pll
, int, NULL
, 0444);
122 module_param_array(tuner
, int, NULL
, 0444);
123 module_param_array(svhs
, int, NULL
, 0444);
124 module_param_array(remote
, int, NULL
, 0444);
125 module_param_array(audiodev
, int, NULL
, 0444);
126 module_param_array(audiomux
, int, NULL
, 0444);
128 MODULE_PARM_DESC(triton1
,"set ETBF pci config bit "
129 "[enable bug compatibility for triton1 + others]");
130 MODULE_PARM_DESC(vsfx
,"set VSFX pci config bit "
131 "[yet another chipset flaw workaround]");
132 MODULE_PARM_DESC(latency
,"pci latency timer");
133 MODULE_PARM_DESC(card
,"specify TV/grabber card model, see CARDLIST file for a list");
134 MODULE_PARM_DESC(pll
,"specify installed crystal (0=none, 28=28 MHz, 35=35 MHz)");
135 MODULE_PARM_DESC(tuner
,"specify installed tuner type");
136 MODULE_PARM_DESC(autoload
, "obsolete option, please do not use anymore");
137 MODULE_PARM_DESC(audiodev
, "specify audio device:\n"
138 "\t\t-1 = no audio\n"
139 "\t\t 0 = autodetect (default)\n"
143 MODULE_PARM_DESC(saa6588
, "if 1, then load the saa6588 RDS module, default (0) is to use the card definition.");
144 MODULE_PARM_DESC(no_overlay
,"allow override overlay default (0 disables, 1 enables)"
145 " [some VIA/SIS chipsets are known to have problem with overlay]");
147 /* ----------------------------------------------------------------------- */
148 /* list of card IDs for bt878+ cards */
154 } cards
[] __devinitdata
= {
155 { 0x13eb0070, BTTV_BOARD_HAUPPAUGE878
, "Hauppauge WinTV" },
156 { 0x39000070, BTTV_BOARD_HAUPPAUGE878
, "Hauppauge WinTV-D" },
157 { 0x45000070, BTTV_BOARD_HAUPPAUGEPVR
, "Hauppauge WinTV/PVR" },
158 { 0xff000070, BTTV_BOARD_OSPREY1x0
, "Osprey-100" },
159 { 0xff010070, BTTV_BOARD_OSPREY2x0_SVID
,"Osprey-200" },
160 { 0xff020070, BTTV_BOARD_OSPREY500
, "Osprey-500" },
161 { 0xff030070, BTTV_BOARD_OSPREY2000
, "Osprey-2000" },
162 { 0xff040070, BTTV_BOARD_OSPREY540
, "Osprey-540" },
163 { 0xff070070, BTTV_BOARD_OSPREY440
, "Osprey-440" },
165 { 0x00011002, BTTV_BOARD_ATI_TVWONDER
, "ATI TV Wonder" },
166 { 0x00031002, BTTV_BOARD_ATI_TVWONDERVE
,"ATI TV Wonder/VE" },
168 { 0x6606107d, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
169 { 0x6607107d, BTTV_BOARD_WINFASTVC100
, "Leadtek WinFast VC 100" },
170 { 0x6609107d, BTTV_BOARD_WINFAST2000
, "Leadtek TV 2000 XP" },
171 { 0x263610b4, BTTV_BOARD_STB2
, "STB TV PCI FM, Gateway P/N 6000704" },
172 { 0x264510b4, BTTV_BOARD_STB2
, "STB TV PCI FM, Gateway P/N 6000704" },
173 { 0x402010fc, BTTV_BOARD_GVBCTV3PCI
, "I-O Data Co. GV-BCTV3/PCI" },
174 { 0x405010fc, BTTV_BOARD_GVBCTV4PCI
, "I-O Data Co. GV-BCTV4/PCI" },
175 { 0x407010fc, BTTV_BOARD_GVBCTV5PCI
, "I-O Data Co. GV-BCTV5/PCI" },
176 { 0xd01810fc, BTTV_BOARD_GVBCTV5PCI
, "I-O Data Co. GV-BCTV5/PCI" },
178 { 0x001211bd, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV" },
179 /* some cards ship with byteswapped IDs ... */
180 { 0x1200bd11, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV [bswap]" },
181 { 0xff00bd11, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV [bswap]" },
182 /* this seems to happen as well ... */
183 { 0xff1211bd, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV" },
185 { 0x3000121a, BTTV_BOARD_VOODOOTV_200
, "3Dfx VoodooTV 200" },
186 { 0x263710b4, BTTV_BOARD_VOODOOTV_FM
, "3Dfx VoodooTV FM" },
187 { 0x3060121a, BTTV_BOARD_STB2
, "3Dfx VoodooTV 100/ STB OEM" },
189 { 0x3000144f, BTTV_BOARD_MAGICTVIEW063
, "(Askey Magic/others) TView99 CPH06x" },
190 { 0xa005144f, BTTV_BOARD_MAGICTVIEW063
, "CPH06X TView99-Card" },
191 { 0x3002144f, BTTV_BOARD_MAGICTVIEW061
, "(Askey Magic/others) TView99 CPH05x" },
192 { 0x3005144f, BTTV_BOARD_MAGICTVIEW061
, "(Askey Magic/others) TView99 CPH061/06L (T1/LC)" },
193 { 0x5000144f, BTTV_BOARD_MAGICTVIEW061
, "Askey CPH050" },
194 { 0x300014ff, BTTV_BOARD_MAGICTVIEW061
, "TView 99 (CPH061)" },
195 { 0x300214ff, BTTV_BOARD_PHOEBE_TVMAS
, "Phoebe TV Master (CPH060)" },
197 { 0x00011461, BTTV_BOARD_AVPHONE98
, "AVerMedia TVPhone98" },
198 { 0x00021461, BTTV_BOARD_AVERMEDIA98
, "AVermedia TVCapture 98" },
199 { 0x00031461, BTTV_BOARD_AVPHONE98
, "AVerMedia TVPhone98" },
200 { 0x00041461, BTTV_BOARD_AVERMEDIA98
, "AVerMedia TVCapture 98" },
201 { 0x03001461, BTTV_BOARD_AVERMEDIA98
, "VDOMATE TV TUNER CARD" },
203 { 0x1117153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Philips PAL B/G)" },
204 { 0x1118153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Temic PAL B/G)" },
205 { 0x1119153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Philips PAL I)" },
206 { 0x111a153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Temic PAL I)" },
208 { 0x1123153b, BTTV_BOARD_TERRATVRADIO
, "Terratec TV Radio+" },
209 { 0x1127153b, BTTV_BOARD_TERRATV
, "Terratec TV+ (V1.05)" },
210 /* clashes with FlyVideo
211 *{ 0x18521852, BTTV_BOARD_TERRATV, "Terratec TV+ (V1.10)" }, */
212 { 0x1134153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (LR102)" },
213 { 0x1135153b, BTTV_BOARD_TERRATVALUER
, "Terratec TValue Radio" }, /* LR102 */
214 { 0x5018153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue" }, /* ?? */
215 { 0xff3b153b, BTTV_BOARD_TERRATVALUER
, "Terratec TValue Radio" }, /* ?? */
217 { 0x400015b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV" },
218 { 0x400a15b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV" },
219 { 0x400d15b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
220 { 0x401015b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
221 { 0x401615b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
223 { 0x1430aa00, BTTV_BOARD_PV143
, "Provideo PV143A" },
224 { 0x1431aa00, BTTV_BOARD_PV143
, "Provideo PV143B" },
225 { 0x1432aa00, BTTV_BOARD_PV143
, "Provideo PV143C" },
226 { 0x1433aa00, BTTV_BOARD_PV143
, "Provideo PV143D" },
227 { 0x1433aa03, BTTV_BOARD_PV143
, "Security Eyes" },
229 { 0x1460aa00, BTTV_BOARD_PV150
, "Provideo PV150A-1" },
230 { 0x1461aa01, BTTV_BOARD_PV150
, "Provideo PV150A-2" },
231 { 0x1462aa02, BTTV_BOARD_PV150
, "Provideo PV150A-3" },
232 { 0x1463aa03, BTTV_BOARD_PV150
, "Provideo PV150A-4" },
234 { 0x1464aa04, BTTV_BOARD_PV150
, "Provideo PV150B-1" },
235 { 0x1465aa05, BTTV_BOARD_PV150
, "Provideo PV150B-2" },
236 { 0x1466aa06, BTTV_BOARD_PV150
, "Provideo PV150B-3" },
237 { 0x1467aa07, BTTV_BOARD_PV150
, "Provideo PV150B-4" },
239 { 0xa132ff00, BTTV_BOARD_IVC100
, "IVC-100" },
240 { 0xa1550000, BTTV_BOARD_IVC200
, "IVC-200" },
241 { 0xa1550001, BTTV_BOARD_IVC200
, "IVC-200" },
242 { 0xa1550002, BTTV_BOARD_IVC200
, "IVC-200" },
243 { 0xa1550003, BTTV_BOARD_IVC200
, "IVC-200" },
244 { 0xa1550100, BTTV_BOARD_IVC200
, "IVC-200G" },
245 { 0xa1550101, BTTV_BOARD_IVC200
, "IVC-200G" },
246 { 0xa1550102, BTTV_BOARD_IVC200
, "IVC-200G" },
247 { 0xa1550103, BTTV_BOARD_IVC200
, "IVC-200G" },
248 { 0xa1550800, BTTV_BOARD_IVC200
, "IVC-200" },
249 { 0xa1550801, BTTV_BOARD_IVC200
, "IVC-200" },
250 { 0xa1550802, BTTV_BOARD_IVC200
, "IVC-200" },
251 { 0xa1550803, BTTV_BOARD_IVC200
, "IVC-200" },
252 { 0xa182ff00, BTTV_BOARD_IVC120
, "IVC-120G" },
253 { 0xa182ff01, BTTV_BOARD_IVC120
, "IVC-120G" },
254 { 0xa182ff02, BTTV_BOARD_IVC120
, "IVC-120G" },
255 { 0xa182ff03, BTTV_BOARD_IVC120
, "IVC-120G" },
256 { 0xa182ff04, BTTV_BOARD_IVC120
, "IVC-120G" },
257 { 0xa182ff05, BTTV_BOARD_IVC120
, "IVC-120G" },
258 { 0xa182ff06, BTTV_BOARD_IVC120
, "IVC-120G" },
259 { 0xa182ff07, BTTV_BOARD_IVC120
, "IVC-120G" },
260 { 0xa182ff08, BTTV_BOARD_IVC120
, "IVC-120G" },
261 { 0xa182ff09, BTTV_BOARD_IVC120
, "IVC-120G" },
262 { 0xa182ff0a, BTTV_BOARD_IVC120
, "IVC-120G" },
263 { 0xa182ff0b, BTTV_BOARD_IVC120
, "IVC-120G" },
264 { 0xa182ff0c, BTTV_BOARD_IVC120
, "IVC-120G" },
265 { 0xa182ff0d, BTTV_BOARD_IVC120
, "IVC-120G" },
266 { 0xa182ff0e, BTTV_BOARD_IVC120
, "IVC-120G" },
267 { 0xa182ff0f, BTTV_BOARD_IVC120
, "IVC-120G" },
268 { 0xf0500000, BTTV_BOARD_IVCE8784
, "IVCE-8784" },
269 { 0xf0500001, BTTV_BOARD_IVCE8784
, "IVCE-8784" },
270 { 0xf0500002, BTTV_BOARD_IVCE8784
, "IVCE-8784" },
271 { 0xf0500003, BTTV_BOARD_IVCE8784
, "IVCE-8784" },
273 { 0x41424344, BTTV_BOARD_GRANDTEC
, "GrandTec Multi Capture" },
274 { 0x01020304, BTTV_BOARD_XGUARD
, "Grandtec Grand X-Guard" },
276 { 0x18501851, BTTV_BOARD_CHRONOS_VS2
, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
277 { 0xa0501851, BTTV_BOARD_CHRONOS_VS2
, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
278 { 0x18511851, BTTV_BOARD_FLYVIDEO98EZ
, "FlyVideo 98EZ (LR51)/ CyberMail AV" },
279 { 0x18521852, BTTV_BOARD_TYPHOON_TVIEW
, "FlyVideo 98FM (LR50)/ Typhoon TView TV/FM Tuner" },
280 { 0x41a0a051, BTTV_BOARD_FLYVIDEO_98FM
, "Lifeview FlyVideo 98 LR50 Rev Q" },
281 { 0x18501f7f, BTTV_BOARD_FLYVIDEO_98
, "Lifeview Flyvideo 98" },
283 { 0x010115cb, BTTV_BOARD_GMV1
, "AG GMV1" },
284 { 0x010114c7, BTTV_BOARD_MODTEC_205
, "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV" },
286 { 0x10b42636, BTTV_BOARD_HAUPPAUGE878
, "STB ???" },
287 { 0x217d6606, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
288 { 0xfff6f6ff, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
289 { 0x03116000, BTTV_BOARD_SENSORAY311_611
, "Sensoray 311" },
290 { 0x06116000, BTTV_BOARD_SENSORAY311_611
, "Sensoray 611" },
291 { 0x00790e11, BTTV_BOARD_WINDVR
, "Canopus WinDVR PCI" },
292 { 0xa0fca1a0, BTTV_BOARD_ZOLTRIX
, "Face to Face Tvmax" },
293 { 0x82b2aa6a, BTTV_BOARD_SIMUS_GVC1100
, "SIMUS GVC1100" },
294 { 0x146caa0c, BTTV_BOARD_PV951
, "ituner spectra8" },
295 { 0x200a1295, BTTV_BOARD_PXC200
, "ImageNation PXC200A" },
297 { 0x40111554, BTTV_BOARD_PV_BT878P_9B
, "Prolink Pixelview PV-BT" },
298 { 0x17de0a01, BTTV_BOARD_KWORLD
, "Mecer TV/FM/Video Tuner" },
300 { 0x01051805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #1" },
301 { 0x01061805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #2" },
302 { 0x01071805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #3" },
303 { 0x01081805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #4" },
305 { 0x15409511, BTTV_BOARD_ACORP_Y878F
, "Acorp Y878F" },
307 { 0x53534149, BTTV_BOARD_SSAI_SECURITY
, "SSAI Security Video Interface" },
308 { 0x5353414a, BTTV_BOARD_SSAI_ULTRASOUND
, "SSAI Ultrasound Video Interface" },
310 /* likely broken, vendor id doesn't match the other magic views ...
311 * { 0xa0fca04f, BTTV_BOARD_MAGICTVIEW063, "Guillemot Maxi TV Video 3" }, */
313 /* Duplicate PCI ID, reconfigure for this board during the eeprom read.
314 * { 0x13eb0070, BTTV_BOARD_HAUPPAUGE_IMPACTVCB, "Hauppauge ImpactVCB" }, */
316 { 0x109e036e, BTTV_BOARD_CONCEPTRONIC_CTVFMI2
, "Conceptronic CTVFMi v2"},
318 /* DVB cards (using pci function .1 for mpeg data xfer) */
319 { 0x001c11bd, BTTV_BOARD_PINNACLESAT
, "Pinnacle PCTV Sat" },
320 { 0x01010071, BTTV_BOARD_NEBULA_DIGITV
, "Nebula Electronics DigiTV" },
321 { 0x20007063, BTTV_BOARD_PC_HDTV
, "pcHDTV HD-2000 TV"},
322 { 0x002611bd, BTTV_BOARD_TWINHAN_DST
, "Pinnacle PCTV SAT CI" },
323 { 0x00011822, BTTV_BOARD_TWINHAN_DST
, "Twinhan VisionPlus DVB" },
324 { 0xfc00270f, BTTV_BOARD_TWINHAN_DST
, "ChainTech digitop DST-1000 DVB-S" },
325 { 0x07711461, BTTV_BOARD_AVDVBT_771
, "AVermedia AverTV DVB-T 771" },
326 { 0x07611461, BTTV_BOARD_AVDVBT_761
, "AverMedia AverTV DVB-T 761" },
327 { 0xdb1018ac, BTTV_BOARD_DVICO_DVBT_LITE
, "DViCO FusionHDTV DVB-T Lite" },
328 { 0xdb1118ac, BTTV_BOARD_DVICO_DVBT_LITE
, "Ultraview DVB-T Lite" },
329 { 0xd50018ac, BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
, "DViCO FusionHDTV 5 Lite" },
330 { 0x00261822, BTTV_BOARD_TWINHAN_DST
, "DNTV Live! Mini "},
331 { 0xd200dbc0, BTTV_BOARD_DVICO_FUSIONHDTV_2
, "DViCO FusionHDTV 2" },
332 { 0x763c008a, BTTV_BOARD_GEOVISION_GV600
, "GeoVision GV-600" },
333 { 0x18011000, BTTV_BOARD_ENLTV_FM_2
, "Encore ENL TV-FM-2" },
334 { 0x763d800a, BTTV_BOARD_GEOVISION_GV800S
, "GeoVision GV-800(S) (master)" },
335 { 0x763d800b, BTTV_BOARD_GEOVISION_GV800S_SL
, "GeoVision GV-800(S) (slave)" },
336 { 0x763d800c, BTTV_BOARD_GEOVISION_GV800S_SL
, "GeoVision GV-800(S) (slave)" },
337 { 0x763d800d, BTTV_BOARD_GEOVISION_GV800S_SL
, "GeoVision GV-800(S) (slave)" },
339 { 0x15401830, BTTV_BOARD_PV183
, "Provideo PV183-1" },
340 { 0x15401831, BTTV_BOARD_PV183
, "Provideo PV183-2" },
341 { 0x15401832, BTTV_BOARD_PV183
, "Provideo PV183-3" },
342 { 0x15401833, BTTV_BOARD_PV183
, "Provideo PV183-4" },
343 { 0x15401834, BTTV_BOARD_PV183
, "Provideo PV183-5" },
344 { 0x15401835, BTTV_BOARD_PV183
, "Provideo PV183-6" },
345 { 0x15401836, BTTV_BOARD_PV183
, "Provideo PV183-7" },
346 { 0x15401837, BTTV_BOARD_PV183
, "Provideo PV183-8" },
347 { 0x3116f200, BTTV_BOARD_TVT_TD3116
, "Tongwei Video Technology TD-3116" },
352 /* ----------------------------------------------------------------------- */
353 /* array with description for bt848 / bt878 tv/grabber cards */
355 struct tvcard bttv_tvcards
[] = {
356 /* ---- card 0x00 ---------------------------------- */
357 [BTTV_BOARD_UNKNOWN
] = {
358 .name
= " *** UNKNOWN/GENERIC *** ",
361 .muxsel
= MUXSEL(2, 3, 1, 0),
363 .tuner_addr
= ADDR_UNSET
,
365 [BTTV_BOARD_MIRO
] = {
368 /* .audio_inputs= 1, */
371 .muxsel
= MUXSEL(2, 3, 1, 1),
372 .gpiomux
= { 2, 0, 0, 0 },
376 .tuner_addr
= ADDR_UNSET
,
378 [BTTV_BOARD_HAUPPAUGE
] = {
379 .name
= "Hauppauge (bt848)",
381 /* .audio_inputs= 1, */
384 .muxsel
= MUXSEL(2, 3, 1, 1),
385 .gpiomux
= { 0, 1, 2, 3 },
389 .tuner_addr
= ADDR_UNSET
,
392 .name
= "STB, Gateway P/N 6000699 (bt848)",
394 /* .audio_inputs= 1, */
397 .muxsel
= MUXSEL(2, 3, 1, 1),
398 .gpiomux
= { 4, 0, 2, 3 },
402 .tuner_type
= TUNER_PHILIPS_NTSC
,
403 .tuner_addr
= ADDR_UNSET
,
408 /* ---- card 0x04 ---------------------------------- */
409 [BTTV_BOARD_INTEL
] = {
410 .name
= "Intel Create and Share PCI/ Smart Video Recorder III",
412 /* .audio_inputs= 0, */
415 .muxsel
= MUXSEL(2, 3, 1, 1),
418 .tuner_type
= TUNER_ABSENT
,
419 .tuner_addr
= ADDR_UNSET
,
421 [BTTV_BOARD_DIAMOND
] = {
422 .name
= "Diamond DTV2000",
424 /* .audio_inputs= 1, */
427 .muxsel
= MUXSEL(2, 3, 1, 0),
428 .gpiomux
= { 0, 1, 0, 1 },
432 .tuner_addr
= ADDR_UNSET
,
434 [BTTV_BOARD_AVERMEDIA
] = {
435 .name
= "AVerMedia TVPhone",
437 /* .audio_inputs= 1, */
439 .muxsel
= MUXSEL(2, 3, 1, 1),
441 .gpiomux
= { 0x0c, 0x04, 0x08, 0x04 },
442 /* 0x04 for some cards ?? */
445 .tuner_addr
= ADDR_UNSET
,
446 .audio_mode_gpio
= avermedia_tvphone_audio
,
449 [BTTV_BOARD_MATRIX_VISION
] = {
450 .name
= "MATRIX-Vision MV-Delta",
452 /* .audio_inputs= 1, */
455 .muxsel
= MUXSEL(2, 3, 1, 0, 0),
458 .tuner_type
= TUNER_ABSENT
,
459 .tuner_addr
= ADDR_UNSET
,
462 /* ---- card 0x08 ---------------------------------- */
463 [BTTV_BOARD_FLYVIDEO
] = {
464 .name
= "Lifeview FlyVideo II (Bt848) LR26 / MAXI TV Video PCI2 LR26",
466 /* .audio_inputs= 1, */
469 .muxsel
= MUXSEL(2, 3, 1, 1),
470 .gpiomux
= { 0, 0xc00, 0x800, 0x400 },
475 .tuner_addr
= ADDR_UNSET
,
477 [BTTV_BOARD_TURBOTV
] = {
478 .name
= "IMS/IXmicro TurboTV",
480 /* .audio_inputs= 1, */
483 .muxsel
= MUXSEL(2, 3, 1, 1),
484 .gpiomux
= { 1, 1, 2, 3 },
487 .tuner_type
= TUNER_TEMIC_PAL
,
488 .tuner_addr
= ADDR_UNSET
,
490 [BTTV_BOARD_HAUPPAUGE878
] = {
491 .name
= "Hauppauge (bt878)",
493 /* .audio_inputs= 1, */
495 .gpiomask
= 0x0f, /* old: 7 */
496 .muxsel
= MUXSEL(2, 0, 1, 1),
497 .gpiomux
= { 0, 1, 2, 3 },
502 .tuner_addr
= ADDR_UNSET
,
504 [BTTV_BOARD_MIROPRO
] = {
505 .name
= "MIRO PCTV pro",
507 /* .audio_inputs= 1, */
510 .muxsel
= MUXSEL(2, 3, 1, 1),
511 .gpiomux
= { 0x20001,0x10001, 0, 0 },
515 .tuner_addr
= ADDR_UNSET
,
518 /* ---- card 0x0c ---------------------------------- */
519 [BTTV_BOARD_ADSTECH_TV
] = {
520 .name
= "ADS Technologies Channel Surfer TV (bt848)",
522 /* .audio_inputs= 1, */
525 .muxsel
= MUXSEL(2, 3, 1, 1),
526 .gpiomux
= { 13, 14, 11, 7 },
529 .tuner_addr
= ADDR_UNSET
,
531 [BTTV_BOARD_AVERMEDIA98
] = {
532 .name
= "AVerMedia TVCapture 98",
534 /* .audio_inputs= 4, */
537 .muxsel
= MUXSEL(2, 3, 1, 1),
538 .gpiomux
= { 13, 14, 11, 7 },
542 .tuner_type
= TUNER_PHILIPS_PAL
,
543 .tuner_addr
= ADDR_UNSET
,
544 .audio_mode_gpio
= avermedia_tv_stereo_audio
,
548 .name
= "Aimslab Video Highway Xtreme (VHX)",
550 /* .audio_inputs= 1, */
553 .muxsel
= MUXSEL(2, 3, 1, 1),
554 .gpiomux
= { 0, 2, 1, 3 }, /* old: {0, 1, 2, 3, 4} */
559 .tuner_addr
= ADDR_UNSET
,
561 [BTTV_BOARD_ZOLTRIX
] = {
562 .name
= "Zoltrix TV-Max",
564 /* .audio_inputs= 1, */
567 .muxsel
= MUXSEL(2, 3, 1, 1),
568 .gpiomux
= { 0, 0, 1, 0 },
572 .tuner_addr
= ADDR_UNSET
,
575 /* ---- card 0x10 ---------------------------------- */
576 [BTTV_BOARD_PIXVIEWPLAYTV
] = {
577 .name
= "Prolink Pixelview PlayTV (bt878)",
579 /* .audio_inputs= 1, */
581 .gpiomask
= 0x01fe00,
582 .muxsel
= MUXSEL(2, 3, 1, 1),
583 /* 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> */
584 .gpiomux
= { 0x001e00, 0, 0x018000, 0x014000 },
585 .gpiomute
= 0x002000,
589 .tuner_addr
= ADDR_UNSET
,
591 [BTTV_BOARD_WINVIEW_601
] = {
592 .name
= "Leadtek WinView 601",
594 /* .audio_inputs= 1, */
596 .gpiomask
= 0x8300f8,
597 .muxsel
= MUXSEL(2, 3, 1, 1, 0),
598 .gpiomux
= { 0x4fa007,0xcfa007,0xcfa007,0xcfa007 },
599 .gpiomute
= 0xcfa007,
602 .tuner_addr
= ADDR_UNSET
,
603 .volume_gpio
= winview_volume
,
606 [BTTV_BOARD_AVEC_INTERCAP
] = {
607 .name
= "AVEC Intercapture",
609 /* .audio_inputs= 2, */
612 .muxsel
= MUXSEL(2, 3, 1, 1),
613 .gpiomux
= { 1, 0, 0, 0 },
616 .tuner_addr
= ADDR_UNSET
,
618 [BTTV_BOARD_LIFE_FLYKIT
] = {
619 .name
= "Lifeview FlyVideo II EZ /FlyKit LR38 Bt848 (capture only)",
621 /* .audio_inputs= 1, */
623 .gpiomask
= 0x8dff00,
624 .muxsel
= MUXSEL(2, 3, 1, 1),
627 .tuner_type
= TUNER_ABSENT
,
628 .tuner_addr
= ADDR_UNSET
,
631 /* ---- card 0x14 ---------------------------------- */
632 [BTTV_BOARD_CEI_RAFFLES
] = {
633 .name
= "CEI Raffles Card",
635 /* .audio_inputs= 3, */
637 .muxsel
= MUXSEL(2, 3, 1, 1),
639 .tuner_addr
= ADDR_UNSET
,
641 [BTTV_BOARD_CONFERENCETV
] = {
642 .name
= "Lifeview FlyVideo 98/ Lucky Star Image World ConferenceTV LR50",
644 /* .audio_inputs= 2, tuner, line in */
647 .muxsel
= MUXSEL(2, 3, 1, 1),
648 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
651 .tuner_type
= TUNER_PHILIPS_PAL_I
,
652 .tuner_addr
= ADDR_UNSET
,
654 [BTTV_BOARD_PHOEBE_TVMAS
] = {
655 .name
= "Askey CPH050/ Phoebe Tv Master + FM",
657 /* .audio_inputs= 1, */
660 .muxsel
= MUXSEL(2, 3, 1, 1),
661 .gpiomux
= { 0, 1, 0x800, 0x400 },
666 .tuner_addr
= ADDR_UNSET
,
668 [BTTV_BOARD_MODTEC_205
] = {
669 .name
= "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV, bt878",
671 /* .audio_inputs= 1, */
675 .muxsel
= MUXSEL(2, 3, 0), /* input 2 is digital */
676 /* .digital_mode= DIGITAL_MODE_CAMERA, */
677 .gpiomux
= { 0, 0, 0, 0 },
680 .tuner_type
= TUNER_ALPS_TSBB5_PAL_I
,
681 .tuner_addr
= ADDR_UNSET
,
684 /* ---- card 0x18 ---------------------------------- */
685 [BTTV_BOARD_MAGICTVIEW061
] = {
686 .name
= "Askey CPH05X/06X (bt878) [many vendors]",
688 /* .audio_inputs= 1, */
691 .muxsel
= MUXSEL(2, 3, 1, 1),
692 .gpiomux
= {0x400, 0x400, 0x400, 0x400 },
697 .tuner_addr
= ADDR_UNSET
,
700 [BTTV_BOARD_VOBIS_BOOSTAR
] = {
701 .name
= "Terratec TerraTV+ Version 1.0 (Bt848)/ Terra TValue Version 1.0/ Vobis TV-Boostar",
703 /* .audio_inputs= 1, */
705 .gpiomask
= 0x1f0fff,
706 .muxsel
= MUXSEL(2, 3, 1, 1),
707 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0 },
710 .tuner_type
= TUNER_PHILIPS_PAL
,
711 .tuner_addr
= ADDR_UNSET
,
712 .audio_mode_gpio
= terratv_audio
,
714 [BTTV_BOARD_HAUPPAUG_WCAM
] = {
715 .name
= "Hauppauge WinCam newer (bt878)",
717 /* .audio_inputs= 1, */
720 .muxsel
= MUXSEL(2, 0, 1, 1),
721 .gpiomux
= { 0, 1, 2, 3 },
725 .tuner_addr
= ADDR_UNSET
,
727 [BTTV_BOARD_MAXI
] = {
728 .name
= "Lifeview FlyVideo 98/ MAXI TV Video PCI2 LR50",
730 /* .audio_inputs= 2, */
733 .muxsel
= MUXSEL(2, 3, 1, 1),
734 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
737 .tuner_type
= TUNER_PHILIPS_SECAM
,
738 .tuner_addr
= ADDR_UNSET
,
741 /* ---- card 0x1c ---------------------------------- */
742 [BTTV_BOARD_TERRATV
] = {
743 .name
= "Terratec TerraTV+ Version 1.1 (bt878)",
745 /* .audio_inputs= 1, */
747 .gpiomask
= 0x1f0fff,
748 .muxsel
= MUXSEL(2, 3, 1, 1),
749 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0x00000 },
752 .tuner_type
= TUNER_PHILIPS_PAL
,
753 .tuner_addr
= ADDR_UNSET
,
754 .audio_mode_gpio
= terratv_audio
,
756 External 20 pin connector (for Active Radio Upgrade board)
762 gpio05: om5610-stereo
766 gpio09+10: nIOR, nSEL ?? (bt878)
770 gpio16: u2-A0 (1st 4052bt)
773 gpio19: u4-A0 (2nd 4052)
777 00000 : Cdrom (internal audio input)
778 10000 : ext. Video audio input
787 [BTTV_BOARD_PXC200
] = {
788 /* Jannik Fritsch <jannik@techfak.uni-bielefeld.de> */
789 .name
= "Imagenation PXC200",
791 /* .audio_inputs= 1, */
792 .svhs
= 1, /* was: 4 */
794 .muxsel
= MUXSEL(2, 3, 1, 0, 0),
797 .tuner_type
= TUNER_ABSENT
,
798 .tuner_addr
= ADDR_UNSET
,
799 .muxsel_hook
= PXC200_muxsel
,
802 [BTTV_BOARD_FLYVIDEO_98
] = {
803 .name
= "Lifeview FlyVideo 98 LR50",
805 /* .audio_inputs= 1, */
807 .gpiomask
= 0x1800, /* 0x8dfe00 */
808 .muxsel
= MUXSEL(2, 3, 1, 1),
809 .gpiomux
= { 0, 0x0800, 0x1000, 0x1000 },
813 .tuner_addr
= ADDR_UNSET
,
815 [BTTV_BOARD_IPROTV
] = {
816 .name
= "Formac iProTV, Formac ProTV I (bt848)",
818 /* .audio_inputs= 1, */
821 .muxsel
= MUXSEL(2, 3, 1, 1),
822 .gpiomux
= { 1, 0, 0, 0 },
824 .tuner_type
= TUNER_PHILIPS_PAL
,
825 .tuner_addr
= ADDR_UNSET
,
828 /* ---- card 0x20 ---------------------------------- */
829 [BTTV_BOARD_INTEL_C_S_PCI
] = {
830 .name
= "Intel Create and Share PCI/ Smart Video Recorder III",
832 /* .audio_inputs= 0, */
835 .muxsel
= MUXSEL(2, 3, 1, 1),
838 .tuner_type
= TUNER_ABSENT
,
839 .tuner_addr
= ADDR_UNSET
,
841 [BTTV_BOARD_TERRATVALUE
] = {
842 .name
= "Terratec TerraTValue Version Bt878",
844 /* .audio_inputs= 1, */
846 .gpiomask
= 0xffff00,
847 .muxsel
= MUXSEL(2, 3, 1, 1),
848 .gpiomux
= { 0x500, 0, 0x300, 0x900 },
852 .tuner_type
= TUNER_PHILIPS_PAL
,
853 .tuner_addr
= ADDR_UNSET
,
855 [BTTV_BOARD_WINFAST2000
] = {
856 .name
= "Leadtek WinFast 2000/ WinFast 2000 XP",
858 /* .audio_inputs= 1, */
860 /* TV, CVid, SVid, CVid over SVid connector */
861 .muxsel
= MUXSEL(2, 3, 1, 1, 0),
862 /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */
863 .gpiomask
= 0xb33000,
864 .gpiomux
= { 0x122000,0x1000,0x0000,0x620000 },
865 .gpiomute
= 0x800000,
866 /* Audio Routing for "WinFast 2000 XP" (no tv stereo !)
867 gpio23 -- hef4052:nEnable (0x800000)
870 0x0000: external audio
874 Note: There exists another variant "Winfast 2000" with tv stereo !?
875 Note: eeprom only contains FF and pci subsystem id 107d:6606
880 .tuner_type
= TUNER_PHILIPS_PAL
, /* default for now, gpio reads BFFF06 for Pal bg+dk */
881 .tuner_addr
= ADDR_UNSET
,
882 .audio_mode_gpio
= winfast2000_audio
,
885 [BTTV_BOARD_CHRONOS_VS2
] = {
886 .name
= "Lifeview FlyVideo 98 LR50 / Chronos Video Shuttle II",
888 /* .audio_inputs= 3, */
891 .muxsel
= MUXSEL(2, 3, 1, 1),
892 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
896 .tuner_addr
= ADDR_UNSET
,
899 /* ---- card 0x24 ---------------------------------- */
900 [BTTV_BOARD_TYPHOON_TVIEW
] = {
901 .name
= "Lifeview FlyVideo 98FM LR50 / Typhoon TView TV/FM Tuner",
903 /* .audio_inputs= 3, */
906 .muxsel
= MUXSEL(2, 3, 1, 1),
907 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
911 .tuner_addr
= ADDR_UNSET
,
914 [BTTV_BOARD_PXELVWPLTVPRO
] = {
915 .name
= "Prolink PixelView PlayTV pro",
917 /* .audio_inputs= 1, */
920 .muxsel
= MUXSEL(2, 3, 1, 1),
921 .gpiomux
= { 0x21, 0x20, 0x24, 0x2c },
926 .tuner_addr
= ADDR_UNSET
,
928 [BTTV_BOARD_MAGICTVIEW063
] = {
929 .name
= "Askey CPH06X TView99",
931 /* .audio_inputs= 1, */
933 .gpiomask
= 0x551e00,
934 .muxsel
= MUXSEL(2, 3, 1, 0),
935 .gpiomux
= { 0x551400, 0x551200, 0, 0 },
936 .gpiomute
= 0x551c00,
939 .tuner_type
= TUNER_PHILIPS_PAL_I
,
940 .tuner_addr
= ADDR_UNSET
,
943 [BTTV_BOARD_PINNACLE
] = {
944 .name
= "Pinnacle PCTV Studio/Rave",
946 /* .audio_inputs= 1, */
948 .gpiomask
= 0x03000F,
949 .muxsel
= MUXSEL(2, 3, 1, 1),
950 .gpiomux
= { 2, 0xd0001, 0, 0 },
955 .tuner_addr
= ADDR_UNSET
,
958 /* ---- card 0x28 ---------------------------------- */
959 [BTTV_BOARD_STB2
] = {
960 .name
= "STB TV PCI FM, Gateway P/N 6000704 (bt878), 3Dfx VoodooTV 100",
962 /* .audio_inputs= 1, */
965 .muxsel
= MUXSEL(2, 3, 1, 1),
966 .gpiomux
= { 4, 0, 2, 3 },
970 .tuner_type
= TUNER_PHILIPS_NTSC
,
971 .tuner_addr
= ADDR_UNSET
,
975 [BTTV_BOARD_AVPHONE98
] = {
976 .name
= "AVerMedia TVPhone 98",
978 /* .audio_inputs= 4, */
981 .muxsel
= MUXSEL(2, 3, 1, 1),
982 .gpiomux
= { 13, 4, 11, 7 },
986 .tuner_addr
= ADDR_UNSET
,
988 .audio_mode_gpio
= avermedia_tvphone_audio
,
990 [BTTV_BOARD_PV951
] = {
991 .name
= "ProVideo PV951", /* pic16c54 */
993 /* .audio_inputs= 1, */
996 .muxsel
= MUXSEL(2, 3, 1, 1),
997 .gpiomux
= { 0, 0, 0, 0},
1001 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1002 .tuner_addr
= ADDR_UNSET
,
1004 [BTTV_BOARD_ONAIR_TV
] = {
1005 .name
= "Little OnAir TV",
1007 /* .audio_inputs= 1, */
1010 .muxsel
= MUXSEL(2, 3, 1, 1),
1011 .gpiomux
= { 0xff9ff6, 0xff9ff6, 0xff1ff7, 0 },
1012 .gpiomute
= 0xff3ffc,
1014 .tuner_type
= UNSET
,
1015 .tuner_addr
= ADDR_UNSET
,
1018 /* ---- card 0x2c ---------------------------------- */
1019 [BTTV_BOARD_SIGMA_TVII_FM
] = {
1020 .name
= "Sigma TVII-FM",
1022 /* .audio_inputs= 1, */
1025 .muxsel
= MUXSEL(2, 3, 1, 1),
1026 .gpiomux
= { 1, 1, 0, 2 },
1030 .tuner_type
= UNSET
,
1031 .tuner_addr
= ADDR_UNSET
,
1033 [BTTV_BOARD_MATRIX_VISION2
] = {
1034 .name
= "MATRIX-Vision MV-Delta 2",
1036 /* .audio_inputs= 1, */
1039 .muxsel
= MUXSEL(2, 3, 1, 0, 0),
1043 .tuner_type
= TUNER_ABSENT
,
1044 .tuner_addr
= ADDR_UNSET
,
1046 [BTTV_BOARD_ZOLTRIX_GENIE
] = {
1047 .name
= "Zoltrix Genie TV/FM",
1049 /* .audio_inputs= 1, */
1051 .gpiomask
= 0xbcf03f,
1052 .muxsel
= MUXSEL(2, 3, 1, 1),
1053 .gpiomux
= { 0xbc803f, 0xbc903f, 0xbcb03f, 0 },
1054 .gpiomute
= 0xbcb03f,
1057 .tuner_type
= TUNER_TEMIC_4039FR5_NTSC
,
1058 .tuner_addr
= ADDR_UNSET
,
1060 [BTTV_BOARD_TERRATVRADIO
] = {
1061 .name
= "Terratec TV/Radio+",
1063 /* .audio_inputs= 1, */
1065 .gpiomask
= 0x70000,
1066 .muxsel
= MUXSEL(2, 3, 1, 1),
1067 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0 },
1068 .gpiomute
= 0x40000,
1072 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1073 .tuner_addr
= ADDR_UNSET
,
1077 /* ---- card 0x30 ---------------------------------- */
1078 [BTTV_BOARD_DYNALINK
] = {
1079 .name
= "Askey CPH03x/ Dynalink Magic TView",
1081 /* .audio_inputs= 1, */
1084 .muxsel
= MUXSEL(2, 3, 1, 1),
1085 .gpiomux
= {2,0,0,0 },
1089 .tuner_type
= UNSET
,
1090 .tuner_addr
= ADDR_UNSET
,
1092 [BTTV_BOARD_GVBCTV3PCI
] = {
1093 .name
= "IODATA GV-BCTV3/PCI",
1095 /* .audio_inputs= 1, */
1097 .gpiomask
= 0x010f00,
1098 .muxsel
= MUXSEL(2, 3, 0, 0),
1099 .gpiomux
= {0x10000, 0, 0x10000, 0 },
1102 .tuner_type
= TUNER_ALPS_TSHC6_NTSC
,
1103 .tuner_addr
= ADDR_UNSET
,
1104 .audio_mode_gpio
= gvbctv3pci_audio
,
1106 [BTTV_BOARD_PXELVWPLTVPAK
] = {
1107 .name
= "Prolink PV-BT878P+4E / PixelView PlayTV PAK / Lenco MXTV-9578 CP",
1109 /* .audio_inputs= 1, */
1112 .gpiomask
= 0xAA0000,
1113 .muxsel
= MUXSEL(2, 3, 1, 1, 0), /* in 4 is digital */
1114 /* .digital_mode= DIGITAL_MODE_CAMERA, */
1115 .gpiomux
= { 0x20000, 0, 0x80000, 0x80000 },
1116 .gpiomute
= 0xa8000,
1119 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1120 .tuner_addr
= ADDR_UNSET
,
1122 /* GPIO wiring: (different from Rev.4C !)
1123 GPIO17: U4.A0 (first hef4052bt)
1125 GPIO20: U5.A1 (second hef4052bt)
1127 GPIO22: BT832 Reset Line
1128 GPIO23: A5,A0, U5,nEN
1129 Note: At i2c=0x8a is a Bt832 chip, which changes to 0x88 after being reset via GPIO22
1132 [BTTV_BOARD_EAGLE
] = {
1133 .name
= "Eagle Wireless Capricorn2 (bt878A)",
1135 /* .audio_inputs= 1, */
1138 .muxsel
= MUXSEL(2, 0, 1, 1),
1139 .gpiomux
= { 0, 1, 2, 3 },
1142 .tuner_type
= UNSET
/* TUNER_ALPS_TMDH2_NTSC */,
1143 .tuner_addr
= ADDR_UNSET
,
1146 /* ---- card 0x34 ---------------------------------- */
1147 [BTTV_BOARD_PINNACLEPRO
] = {
1148 /* David Härdeman <david@2gen.com> */
1149 .name
= "Pinnacle PCTV Studio Pro",
1151 /* .audio_inputs= 1, */
1153 .gpiomask
= 0x03000F,
1154 .muxsel
= MUXSEL(2, 3, 1, 1),
1155 .gpiomux
= { 1, 0xd0001, 0, 0 },
1157 /* sound path (5 sources):
1158 MUX1 (mask 0x03), Enable Pin 0x08 (0=enable, 1=disable)
1161 2= Mono TV sound from Tuner
1163 MUX2 (mask 0x30000):
1165 1= FM stereo Radio from Tuner */
1168 .tuner_type
= UNSET
,
1169 .tuner_addr
= ADDR_UNSET
,
1171 [BTTV_BOARD_TVIEW_RDS_FM
] = {
1172 /* Claas Langbehn <claas@bigfoot.com>,
1173 Sven Grothklags <sven@upb.de> */
1174 .name
= "Typhoon TView RDS + FM Stereo / KNC1 TV Station RDS",
1176 /* .audio_inputs= 3, */
1179 .muxsel
= MUXSEL(2, 3, 1, 1),
1180 .gpiomux
= { 0, 0, 0x10, 8 },
1184 .tuner_type
= TUNER_PHILIPS_PAL
,
1185 .tuner_addr
= ADDR_UNSET
,
1188 [BTTV_BOARD_LIFETEC_9415
] = {
1189 /* Tim Röstermundt <rosterm@uni-muenster.de>
1190 in de.comp.os.unix.linux.hardware:
1191 options bttv card=0 pll=1 radio=1 gpiomask=0x18e0
1192 gpiomux =0x44c71f,0x44d71f,0,0x44d71f,0x44dfff
1193 options tuner type=5 */
1194 .name
= "Lifeview FlyVideo 2000 /FlyVideo A2/ Lifetec LT 9415 TV [LR90]",
1196 /* .audio_inputs= 1, */
1199 .muxsel
= MUXSEL(2, 3, 1, 1),
1200 .gpiomux
= { 0x0000,0x0800,0x1000,0x1000 },
1202 /* For cards with tda9820/tda9821:
1203 0x0000: Tuner normal stereo
1204 0x0080: Tuner A2 SAP (second audio program = Zweikanalton)
1205 0x0880: Tuner A2 stereo */
1207 .tuner_type
= UNSET
,
1208 .tuner_addr
= ADDR_UNSET
,
1210 [BTTV_BOARD_BESTBUY_EASYTV
] = {
1211 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1212 old Easy TV BT848 version (model CPH031) */
1213 .name
= "Askey CPH031/ BESTBUY Easy TV",
1215 /* .audio_inputs= 1, */
1218 .muxsel
= MUXSEL(2, 3, 1, 0),
1219 .gpiomux
= { 2, 0, 0, 0 },
1223 .tuner_type
= TUNER_TEMIC_PAL
,
1224 .tuner_addr
= ADDR_UNSET
,
1227 /* ---- card 0x38 ---------------------------------- */
1228 [BTTV_BOARD_FLYVIDEO_98FM
] = {
1229 /* Gordon Heydon <gjheydon@bigfoot.com ('98) */
1230 .name
= "Lifeview FlyVideo 98FM LR50",
1232 /* .audio_inputs= 3, */
1235 .muxsel
= MUXSEL(2, 3, 1, 1),
1236 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
1239 .tuner_type
= TUNER_PHILIPS_PAL
,
1240 .tuner_addr
= ADDR_UNSET
,
1242 /* This is the ultimate cheapo capture card
1243 * just a BT848A on a small PCB!
1244 * Steve Hosgood <steve@equiinet.com> */
1245 [BTTV_BOARD_GRANDTEC
] = {
1246 .name
= "GrandTec 'Grand Video Capture' (Bt848)",
1248 /* .audio_inputs= 0, */
1251 .muxsel
= MUXSEL(3, 1),
1256 .tuner_type
= TUNER_ABSENT
,
1257 .tuner_addr
= ADDR_UNSET
,
1259 [BTTV_BOARD_ASKEY_CPH060
] = {
1260 /* Daniel Herrington <daniel.herrington@home.com> */
1261 .name
= "Askey CPH060/ Phoebe TV Master Only (No FM)",
1263 /* .audio_inputs= 1, */
1266 .muxsel
= MUXSEL(2, 3, 1, 1),
1267 .gpiomux
= { 0x400, 0x400, 0x400, 0x400 },
1271 .tuner_type
= TUNER_TEMIC_4036FY5_NTSC
,
1272 .tuner_addr
= ADDR_UNSET
,
1274 [BTTV_BOARD_ASKEY_CPH03X
] = {
1275 /* Matti Mottus <mottus@physic.ut.ee> */
1276 .name
= "Askey CPH03x TV Capturer",
1278 /* .audio_inputs= 1, */
1280 .gpiomask
= 0x03000F,
1281 .muxsel
= MUXSEL(2, 3, 1, 0),
1282 .gpiomux
= { 2, 0, 0, 0 },
1285 .tuner_type
= TUNER_TEMIC_PAL
,
1286 .tuner_addr
= ADDR_UNSET
,
1290 /* ---- card 0x3c ---------------------------------- */
1291 [BTTV_BOARD_MM100PCTV
] = {
1292 /* Philip Blundell <philb@gnu.org> */
1293 .name
= "Modular Technology MM100PCTV",
1295 /* .audio_inputs= 2, */
1298 .muxsel
= MUXSEL(2, 3, 1, 1),
1299 .gpiomux
= { 2, 0, 0, 1 },
1302 .tuner_type
= TUNER_TEMIC_PAL
,
1303 .tuner_addr
= ADDR_UNSET
,
1305 [BTTV_BOARD_GMV1
] = {
1306 /* Adrian Cox <adrian@humboldt.co.uk */
1307 .name
= "AG Electronics GMV1",
1309 /* .audio_inputs= 0, */
1312 .muxsel
= MUXSEL(2, 2),
1317 .tuner_type
= TUNER_ABSENT
,
1318 .tuner_addr
= ADDR_UNSET
,
1320 [BTTV_BOARD_BESTBUY_EASYTV2
] = {
1321 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1322 new Easy TV BT878 version (model CPH061)
1323 special thanks to Informatica Mieres for providing the card */
1324 .name
= "Askey CPH061/ BESTBUY Easy TV (bt878)",
1326 /* .audio_inputs= 2, */
1329 .muxsel
= MUXSEL(2, 3, 1, 0),
1330 .gpiomux
= { 1, 0, 4, 4 },
1334 .tuner_type
= TUNER_PHILIPS_PAL
,
1335 .tuner_addr
= ADDR_UNSET
,
1337 [BTTV_BOARD_ATI_TVWONDER
] = {
1338 /* Lukas Gebauer <geby@volny.cz> */
1339 .name
= "ATI TV-Wonder",
1341 /* .audio_inputs= 1, */
1344 .muxsel
= MUXSEL(2, 3, 1, 0),
1345 .gpiomux
= { 0xbffe, 0, 0xbfff, 0 },
1348 .tuner_type
= TUNER_TEMIC_4006FN5_MULTI_PAL
,
1349 .tuner_addr
= ADDR_UNSET
,
1352 /* ---- card 0x40 ---------------------------------- */
1353 [BTTV_BOARD_ATI_TVWONDERVE
] = {
1354 /* Lukas Gebauer <geby@volny.cz> */
1355 .name
= "ATI TV-Wonder VE",
1357 /* .audio_inputs= 1, */
1360 .muxsel
= MUXSEL(2, 3, 0, 1),
1361 .gpiomux
= { 0, 0, 1, 0 },
1364 .tuner_type
= TUNER_TEMIC_4006FN5_MULTI_PAL
,
1365 .tuner_addr
= ADDR_UNSET
,
1367 [BTTV_BOARD_FLYVIDEO2000
] = {
1368 /* DeeJay <deejay@westel900.net (2000S) */
1369 .name
= "Lifeview FlyVideo 2000S LR90",
1371 /* .audio_inputs= 3, */
1374 .muxsel
= MUXSEL(2, 3, 0, 1),
1375 /* Radio changed from 1e80 to 0x800 to make
1376 FlyVideo2000S in .hu happy (gm)*/
1377 /* -dk-???: set mute=0x1800 for tda9874h daughterboard */
1378 .gpiomux
= { 0x0000,0x0800,0x1000,0x1000 },
1380 .audio_mode_gpio
= fv2000s_audio
,
1384 .tuner_type
= TUNER_PHILIPS_PAL
,
1385 .tuner_addr
= ADDR_UNSET
,
1387 [BTTV_BOARD_TERRATVALUER
] = {
1388 .name
= "Terratec TValueRadio",
1390 /* .audio_inputs= 1, */
1392 .gpiomask
= 0xffff00,
1393 .muxsel
= MUXSEL(2, 3, 1, 1),
1394 .gpiomux
= { 0x500, 0x500, 0x300, 0x900 },
1398 .tuner_type
= TUNER_PHILIPS_PAL
,
1399 .tuner_addr
= ADDR_UNSET
,
1402 [BTTV_BOARD_GVBCTV4PCI
] = {
1403 /* TANAKA Kei <peg00625@nifty.com> */
1404 .name
= "IODATA GV-BCTV4/PCI",
1406 /* .audio_inputs= 1, */
1408 .gpiomask
= 0x010f00,
1409 .muxsel
= MUXSEL(2, 3, 0, 0),
1410 .gpiomux
= {0x10000, 0, 0x10000, 0 },
1413 .tuner_type
= TUNER_SHARP_2U5JF5540_NTSC
,
1414 .tuner_addr
= ADDR_UNSET
,
1415 .audio_mode_gpio
= gvbctv3pci_audio
,
1418 /* ---- card 0x44 ---------------------------------- */
1419 [BTTV_BOARD_VOODOOTV_FM
] = {
1420 .name
= "3Dfx VoodooTV FM (Euro)",
1421 /* try "insmod msp3400 simple=0" if you have
1422 * sound problems with this card. */
1424 /* .audio_inputs= 1, */
1426 .gpiomask
= 0x4f8a00,
1427 /* 0x100000: 1=MSP enabled (0=disable again)
1428 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1429 .gpiomux
= {0x947fff, 0x987fff,0x947fff,0x947fff },
1430 .gpiomute
= 0x947fff,
1431 /* tvtuner, radio, external,internal, mute, stereo
1432 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1433 .muxsel
= MUXSEL(2, 3, 0, 1),
1434 .tuner_type
= TUNER_MT2032
,
1435 .tuner_addr
= ADDR_UNSET
,
1439 [BTTV_BOARD_VOODOOTV_200
] = {
1440 .name
= "VoodooTV 200 (USA)",
1441 /* try "insmod msp3400 simple=0" if you have
1442 * sound problems with this card. */
1444 /* .audio_inputs= 1, */
1446 .gpiomask
= 0x4f8a00,
1447 /* 0x100000: 1=MSP enabled (0=disable again)
1448 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1449 .gpiomux
= {0x947fff, 0x987fff,0x947fff,0x947fff },
1450 .gpiomute
= 0x947fff,
1451 /* tvtuner, radio, external,internal, mute, stereo
1452 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1453 .muxsel
= MUXSEL(2, 3, 0, 1),
1454 .tuner_type
= TUNER_MT2032
,
1455 .tuner_addr
= ADDR_UNSET
,
1459 [BTTV_BOARD_AIMMS
] = {
1460 /* Philip Blundell <pb@nexus.co.uk> */
1461 .name
= "Active Imaging AIMMS",
1463 /* .audio_inputs= 0, */
1464 .tuner_type
= TUNER_ABSENT
,
1465 .tuner_addr
= ADDR_UNSET
,
1467 .muxsel
= MUXSEL(2),
1470 [BTTV_BOARD_PV_BT878P_PLUS
] = {
1471 /* Tomasz Pyra <hellfire@sedez.iq.pl> */
1472 .name
= "Prolink Pixelview PV-BT878P+ (Rev.4C,8E)",
1474 /* .audio_inputs= 4, */
1477 .muxsel
= MUXSEL(2, 3, 1, 1),
1478 .gpiomux
= { 0, 0, 11, 7 }, /* TV and Radio with same GPIO ! */
1482 .tuner_type
= TUNER_LG_PAL_I_FM
,
1483 .tuner_addr
= ADDR_UNSET
,
1486 GPIO0: U4.A0 (hef4052bt)
1488 GPIO2: U4.A1 (second hef4052bt)
1489 GPIO3: U4.nEN, U5.A0, A5.nEN
1493 [BTTV_BOARD_FLYVIDEO98EZ
] = {
1494 .name
= "Lifeview FlyVideo 98EZ (capture only) LR51",
1496 /* .audio_inputs= 0, */
1498 /* AV1, AV2, SVHS, CVid adapter on SVHS */
1499 .muxsel
= MUXSEL(2, 3, 1, 1),
1502 .tuner_type
= TUNER_ABSENT
,
1503 .tuner_addr
= ADDR_UNSET
,
1506 /* ---- card 0x48 ---------------------------------- */
1507 [BTTV_BOARD_PV_BT878P_9B
] = {
1508 /* Dariusz Kowalewski <darekk@automex.pl> */
1509 .name
= "Prolink Pixelview PV-BT878P+9B (PlayTV Pro rev.9B FM+NICAM)",
1511 /* .audio_inputs= 1, */
1514 .muxsel
= MUXSEL(2, 3, 1, 1),
1515 .gpiomux
= { 0x01, 0x00, 0x03, 0x03 },
1520 .tuner_type
= TUNER_PHILIPS_PAL
,
1521 .tuner_addr
= ADDR_UNSET
,
1522 .audio_mode_gpio
= pvbt878p9b_audio
, /* Note: not all cards have stereo */
1523 .has_radio
= 1, /* Note: not all cards have radio */
1530 GPIO20,22,23: R30,R29,R28
1533 [BTTV_BOARD_SENSORAY311_611
] = {
1534 /* Clay Kunz <ckunz@mail.arc.nasa.gov> */
1535 /* you must jumper JP5 for the 311 card (PC/104+) to work */
1536 .name
= "Sensoray 311/611",
1538 /* .audio_inputs= 0, */
1541 .muxsel
= MUXSEL(2, 3, 1, 0, 0),
1544 .tuner_type
= TUNER_ABSENT
,
1545 .tuner_addr
= ADDR_UNSET
,
1547 [BTTV_BOARD_RV605
] = {
1548 /* Miguel Freitas <miguel@cetuc.puc-rio.br> */
1549 .name
= "RemoteVision MX (RV605)",
1551 /* .audio_inputs= 0, */
1554 .gpiomask2
= 0x07ff,
1555 .muxsel
= MUXSEL(3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3),
1557 .tuner_type
= TUNER_ABSENT
,
1558 .tuner_addr
= ADDR_UNSET
,
1559 .muxsel_hook
= rv605_muxsel
,
1561 [BTTV_BOARD_POWERCLR_MTV878
] = {
1562 .name
= "Powercolor MTV878/ MTV878R/ MTV878F",
1564 /* .audio_inputs= 2, */
1566 .gpiomask
= 0x1C800F, /* Bit0-2: Audio select, 8-12:remote control 14:remote valid 15:remote reset */
1567 .muxsel
= MUXSEL(2, 1, 1),
1568 .gpiomux
= { 0, 1, 2, 2 },
1571 .tuner_type
= TUNER_PHILIPS_PAL
,
1572 .tuner_addr
= ADDR_UNSET
,
1577 /* ---- card 0x4c ---------------------------------- */
1578 [BTTV_BOARD_WINDVR
] = {
1579 /* Masaki Suzuki <masaki@btree.org> */
1580 .name
= "Canopus WinDVR PCI (COMPAQ Presario 3524JP, 5112JP)",
1582 /* .audio_inputs= 1, */
1584 .gpiomask
= 0x140007,
1585 .muxsel
= MUXSEL(2, 3, 1, 1),
1586 .gpiomux
= { 0, 1, 2, 3 },
1588 .tuner_type
= TUNER_PHILIPS_NTSC
,
1589 .tuner_addr
= ADDR_UNSET
,
1590 .audio_mode_gpio
= windvr_audio
,
1592 [BTTV_BOARD_GRANDTEC_MULTI
] = {
1593 .name
= "GrandTec Multi Capture Card (Bt878)",
1595 /* .audio_inputs= 0, */
1598 .muxsel
= MUXSEL(2, 3, 1, 0),
1603 .tuner_type
= TUNER_ABSENT
,
1604 .tuner_addr
= ADDR_UNSET
,
1606 [BTTV_BOARD_KWORLD
] = {
1607 .name
= "Jetway TV/Capture JW-TV878-FBK, Kworld KW-TV878RF",
1609 /* .audio_inputs= 3, */
1612 /* Tuner, SVid, SVHS, SVid to SVHS connector */
1613 .muxsel
= MUXSEL(2, 3, 1, 1),
1614 .gpiomux
= { 0, 0, 4, 4 },/* Yes, this tuner uses the same audio output for TV and FM radio!
1615 * This card lacks external Audio In, so we mute it on Ext. & Int.
1616 * The PCB can take a sbx1637/sbx1673, wiring unknown.
1617 * This card lacks PCI subsystem ID, sigh.
1618 * gpiomux =1: lower volume, 2+3: mute
1619 * btwincap uses 0x80000/0x80003
1625 .tuner_type
= TUNER_PHILIPS_PAL
,
1626 .tuner_addr
= ADDR_UNSET
,
1627 /* Samsung TCPA9095PC27A (BG+DK), philips compatible, w/FM, stereo and
1628 radio signal strength indicators work fine. */
1631 GPIO0,1: HEF4052 A0,A1
1632 GPIO2: HEF4052 nENABLE
1634 GPIO8-13: IRDC357 data0-5 (data6 n.c. ?) [chip not present on my card]
1638 ?? : mtu8b56ep microcontroller for IR (GPIO wiring unknown)*/
1640 [BTTV_BOARD_DSP_TCVIDEO
] = {
1641 /* Arthur Tetzlaff-Deas, DSP Design Ltd <software@dspdesign.com> */
1642 .name
= "DSP Design TCVIDEO",
1645 .muxsel
= MUXSEL(2, 3, 1, 0),
1647 .tuner_type
= UNSET
,
1648 .tuner_addr
= ADDR_UNSET
,
1651 /* ---- card 0x50 ---------------------------------- */
1652 [BTTV_BOARD_HAUPPAUGEPVR
] = {
1653 .name
= "Hauppauge WinTV PVR",
1655 /* .audio_inputs= 1, */
1657 .muxsel
= MUXSEL(2, 0, 1, 1),
1660 .tuner_type
= UNSET
,
1661 .tuner_addr
= ADDR_UNSET
,
1666 [BTTV_BOARD_GVBCTV5PCI
] = {
1667 .name
= "IODATA GV-BCTV5/PCI",
1669 /* .audio_inputs= 1, */
1671 .gpiomask
= 0x0f0f80,
1672 .muxsel
= MUXSEL(2, 3, 1, 0),
1673 .gpiomux
= {0x030000, 0x010000, 0, 0 },
1674 .gpiomute
= 0x020000,
1677 .tuner_type
= TUNER_PHILIPS_NTSC_M
,
1678 .tuner_addr
= ADDR_UNSET
,
1679 .audio_mode_gpio
= gvbctv5pci_audio
,
1682 [BTTV_BOARD_OSPREY1x0
] = {
1683 .name
= "Osprey 100/150 (878)", /* 0x1(2|3)-45C6-C1 */
1684 .video_inputs
= 4, /* id-inputs-clock */
1685 /* .audio_inputs= 0, */
1687 .muxsel
= MUXSEL(3, 2, 0, 1),
1689 .tuner_type
= TUNER_ABSENT
,
1690 .tuner_addr
= ADDR_UNSET
,
1694 [BTTV_BOARD_OSPREY1x0_848
] = {
1695 .name
= "Osprey 100/150 (848)", /* 0x04-54C0-C1 & older boards */
1697 /* .audio_inputs= 0, */
1699 .muxsel
= MUXSEL(2, 3, 1),
1701 .tuner_type
= TUNER_ABSENT
,
1702 .tuner_addr
= ADDR_UNSET
,
1707 /* ---- card 0x54 ---------------------------------- */
1708 [BTTV_BOARD_OSPREY101_848
] = {
1709 .name
= "Osprey 101 (848)", /* 0x05-40C0-C1 */
1711 /* .audio_inputs= 0, */
1713 .muxsel
= MUXSEL(3, 1),
1715 .tuner_type
= TUNER_ABSENT
,
1716 .tuner_addr
= ADDR_UNSET
,
1720 [BTTV_BOARD_OSPREY1x1
] = {
1721 .name
= "Osprey 101/151", /* 0x1(4|5)-0004-C4 */
1723 /* .audio_inputs= 0, */
1725 .muxsel
= MUXSEL(0),
1727 .tuner_type
= TUNER_ABSENT
,
1728 .tuner_addr
= ADDR_UNSET
,
1732 [BTTV_BOARD_OSPREY1x1_SVID
] = {
1733 .name
= "Osprey 101/151 w/ svid", /* 0x(16|17|20)-00C4-C1 */
1735 /* .audio_inputs= 0, */
1737 .muxsel
= MUXSEL(0, 1),
1739 .tuner_type
= TUNER_ABSENT
,
1740 .tuner_addr
= ADDR_UNSET
,
1744 [BTTV_BOARD_OSPREY2xx
] = {
1745 .name
= "Osprey 200/201/250/251", /* 0x1(8|9|E|F)-0004-C4 */
1747 /* .audio_inputs= 1, */
1749 .muxsel
= MUXSEL(0),
1751 .tuner_type
= TUNER_ABSENT
,
1752 .tuner_addr
= ADDR_UNSET
,
1757 /* ---- card 0x58 ---------------------------------- */
1758 [BTTV_BOARD_OSPREY2x0_SVID
] = {
1759 .name
= "Osprey 200/250", /* 0x1(A|B)-00C4-C1 */
1761 /* .audio_inputs= 1, */
1763 .muxsel
= MUXSEL(0, 1),
1765 .tuner_type
= TUNER_ABSENT
,
1766 .tuner_addr
= ADDR_UNSET
,
1770 [BTTV_BOARD_OSPREY2x0
] = {
1771 .name
= "Osprey 210/220/230", /* 0x1(A|B)-04C0-C1 */
1773 /* .audio_inputs= 1, */
1775 .muxsel
= MUXSEL(2, 3),
1777 .tuner_type
= TUNER_ABSENT
,
1778 .tuner_addr
= ADDR_UNSET
,
1782 [BTTV_BOARD_OSPREY500
] = {
1783 .name
= "Osprey 500", /* 500 */
1785 /* .audio_inputs= 1, */
1787 .muxsel
= MUXSEL(2, 3),
1789 .tuner_type
= TUNER_ABSENT
,
1790 .tuner_addr
= ADDR_UNSET
,
1794 [BTTV_BOARD_OSPREY540
] = {
1795 .name
= "Osprey 540", /* 540 */
1797 /* .audio_inputs= 1, */
1799 .tuner_type
= TUNER_ABSENT
,
1800 .tuner_addr
= ADDR_UNSET
,
1805 /* ---- card 0x5C ---------------------------------- */
1806 [BTTV_BOARD_OSPREY2000
] = {
1807 .name
= "Osprey 2000", /* 2000 */
1809 /* .audio_inputs= 1, */
1811 .muxsel
= MUXSEL(2, 3),
1813 .tuner_type
= TUNER_ABSENT
,
1814 .tuner_addr
= ADDR_UNSET
,
1816 .no_tda7432
= 1, /* must avoid, conflicts with the bt860 */
1818 [BTTV_BOARD_IDS_EAGLE
] = {
1819 /* M G Berberich <berberic@forwiss.uni-passau.de> */
1820 .name
= "IDS Eagle",
1822 /* .audio_inputs= 0, */
1823 .tuner_type
= TUNER_ABSENT
,
1824 .tuner_addr
= ADDR_UNSET
,
1827 .muxsel
= MUXSEL(2, 2, 2, 2),
1828 .muxsel_hook
= eagle_muxsel
,
1832 [BTTV_BOARD_PINNACLESAT
] = {
1833 .name
= "Pinnacle PCTV Sat",
1835 /* .audio_inputs= 0, */
1837 .tuner_type
= TUNER_ABSENT
,
1838 .tuner_addr
= ADDR_UNSET
,
1841 .muxsel
= MUXSEL(3, 1),
1846 [BTTV_BOARD_FORMAC_PROTV
] = {
1847 .name
= "Formac ProTV II (bt878)",
1849 /* .audio_inputs= 1, */
1852 /* TV, Comp1, Composite over SVID con, SVID */
1853 .muxsel
= MUXSEL(2, 3, 1, 1),
1854 .gpiomux
= { 2, 2, 0, 0 },
1857 .tuner_type
= TUNER_PHILIPS_PAL
,
1858 .tuner_addr
= ADDR_UNSET
,
1860 GPIO=0x00,0x01,0x03: mute (?)
1861 0x02: both TV and radio (tuner: FM1216/I)
1862 The card has onboard audio connectors labeled "cdrom" and "board",
1863 not soldered here, though unknown wiring.
1864 Card lacks: external audio in, pci subsystem id.
1868 /* ---- card 0x60 ---------------------------------- */
1869 [BTTV_BOARD_MACHTV
] = {
1872 /* .audio_inputs= 1, */
1875 .muxsel
= MUXSEL(2, 3, 1, 1),
1876 .gpiomux
= { 0, 1, 2, 3},
1879 .tuner_type
= TUNER_PHILIPS_PAL
,
1880 .tuner_addr
= ADDR_UNSET
,
1883 [BTTV_BOARD_EURESYS_PICOLO
] = {
1884 .name
= "Euresys Picolo",
1886 /* .audio_inputs= 0, */
1891 .muxsel
= MUXSEL(2, 0, 1),
1893 .tuner_type
= TUNER_ABSENT
,
1894 .tuner_addr
= ADDR_UNSET
,
1896 [BTTV_BOARD_PV150
] = {
1897 /* Luc Van Hoeylandt <luc@e-magic.be> */
1898 .name
= "ProVideo PV150", /* 0x4f */
1900 /* .audio_inputs= 0, */
1903 .muxsel
= MUXSEL(2, 3),
1908 .tuner_type
= TUNER_ABSENT
,
1909 .tuner_addr
= ADDR_UNSET
,
1911 [BTTV_BOARD_AD_TVK503
] = {
1912 /* Hiroshi Takekawa <sian@big.or.jp> */
1913 /* This card lacks subsystem ID */
1914 .name
= "AD-TVK503", /* 0x63 */
1916 /* .audio_inputs= 1, */
1918 .gpiomask
= 0x001e8007,
1919 .muxsel
= MUXSEL(2, 3, 1, 0),
1920 /* Tuner, Radio, external, internal, off, on */
1921 .gpiomux
= { 0x08, 0x0f, 0x0a, 0x08 },
1926 .tuner_type
= TUNER_PHILIPS_NTSC
,
1927 .tuner_addr
= ADDR_UNSET
,
1928 .audio_mode_gpio
= adtvk503_audio
,
1931 /* ---- card 0x64 ---------------------------------- */
1932 [BTTV_BOARD_HERCULES_SM_TV
] = {
1933 .name
= "Hercules Smart TV Stereo",
1935 /* .audio_inputs= 1, */
1938 .muxsel
= MUXSEL(2, 3, 1, 1),
1942 .tuner_type
= TUNER_PHILIPS_PAL
,
1943 .tuner_addr
= ADDR_UNSET
,
1945 - card lacks subsystem ID
1946 - stereo variant w/ daughter board with tda9874a @0xb0
1948 always from tda9874 independent of GPIO (?)
1949 external line in: unknown
1950 - Other chips: em78p156elp @ 0x96 (probably IR remote control)
1951 hef4053 (instead 4052) for unknown function
1954 [BTTV_BOARD_PACETV
] = {
1955 .name
= "Pace TV & Radio Card",
1957 /* .audio_inputs= 1, */
1959 /* Tuner, CVid, SVid, CVid over SVid connector */
1960 .muxsel
= MUXSEL(2, 3, 1, 1),
1963 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1964 .tuner_addr
= ADDR_UNSET
,
1967 /* Bt878, Bt832, FI1246 tuner; no pci subsystem id
1968 only internal line out: (4pin header) RGGL
1969 Radio must be decoded by msp3410d (not routed through)*/
1971 .digital_mode = DIGITAL_MODE_CAMERA, todo!
1974 [BTTV_BOARD_IVC200
] = {
1975 /* Chris Willing <chris@vislab.usyd.edu.au> */
1978 /* .audio_inputs= 0, */
1979 .tuner_type
= TUNER_ABSENT
,
1980 .tuner_addr
= ADDR_UNSET
,
1983 .muxsel
= MUXSEL(2),
1986 [BTTV_BOARD_IVCE8784
] = {
1987 .name
= "IVCE-8784",
1989 /* .audio_inputs= 0, */
1990 .tuner_type
= TUNER_ABSENT
,
1991 .tuner_addr
= ADDR_UNSET
,
1994 .muxsel
= MUXSEL(2),
1997 [BTTV_BOARD_XGUARD
] = {
1998 .name
= "Grand X-Guard / Trust 814PCI",
2000 /* .audio_inputs= 0, */
2002 .tuner_type
= TUNER_ABSENT
,
2003 .tuner_addr
= ADDR_UNSET
,
2005 .muxsel
= MUXSEL(2,2,2,2, 3,3,3,3, 1,1,1,1, 0,0,0,0),
2006 .muxsel_hook
= xguard_muxsel
,
2012 /* ---- card 0x68 ---------------------------------- */
2013 [BTTV_BOARD_NEBULA_DIGITV
] = {
2014 .name
= "Nebula Electronics DigiTV",
2017 .muxsel
= MUXSEL(2, 3, 1, 0),
2021 .tuner_type
= TUNER_ABSENT
,
2022 .tuner_addr
= ADDR_UNSET
,
2028 [BTTV_BOARD_PV143
] = {
2029 /* Jorge Boncompte - DTI2 <jorge@dti2.net> */
2030 .name
= "ProVideo PV143",
2032 /* .audio_inputs= 0, */
2035 .muxsel
= MUXSEL(2, 3, 1, 0),
2040 .tuner_type
= TUNER_ABSENT
,
2041 .tuner_addr
= ADDR_UNSET
,
2043 [BTTV_BOARD_VD009X1_VD011_MINIDIN
] = {
2044 /* M.Klahr@phytec.de */
2045 .name
= "PHYTEC VD-009-X1 VD-011 MiniDIN (bt878)",
2047 /* .audio_inputs= 0, */
2050 .muxsel
= MUXSEL(2, 3, 1, 0),
2051 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2054 .tuner_type
= TUNER_ABSENT
,
2055 .tuner_addr
= ADDR_UNSET
,
2057 [BTTV_BOARD_VD009X1_VD011_COMBI
] = {
2058 .name
= "PHYTEC VD-009-X1 VD-011 Combi (bt878)",
2060 /* .audio_inputs= 0, */
2063 .muxsel
= MUXSEL(2, 3, 1, 1),
2064 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2067 .tuner_type
= TUNER_ABSENT
,
2068 .tuner_addr
= ADDR_UNSET
,
2071 /* ---- card 0x6c ---------------------------------- */
2072 [BTTV_BOARD_VD009_MINIDIN
] = {
2073 .name
= "PHYTEC VD-009 MiniDIN (bt878)",
2075 /* .audio_inputs= 0, */
2078 .gpiomask2
= 0x03, /* used for external vodeo mux */
2079 .muxsel
= MUXSEL(2, 2, 2, 2, 3, 3, 3, 3, 1, 0),
2080 .muxsel_hook
= phytec_muxsel
,
2081 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2084 .tuner_type
= TUNER_ABSENT
,
2085 .tuner_addr
= ADDR_UNSET
,
2087 [BTTV_BOARD_VD009_COMBI
] = {
2088 .name
= "PHYTEC VD-009 Combi (bt878)",
2090 /* .audio_inputs= 0, */
2093 .gpiomask2
= 0x03, /* used for external vodeo mux */
2094 .muxsel
= MUXSEL(2, 2, 2, 2, 3, 3, 3, 3, 1, 1),
2095 .muxsel_hook
= phytec_muxsel
,
2096 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2099 .tuner_type
= TUNER_ABSENT
,
2100 .tuner_addr
= ADDR_UNSET
,
2102 [BTTV_BOARD_IVC100
] = {
2105 /* .audio_inputs= 0, */
2106 .tuner_type
= TUNER_ABSENT
,
2107 .tuner_addr
= ADDR_UNSET
,
2110 .muxsel
= MUXSEL(2, 3, 1, 0),
2113 [BTTV_BOARD_IVC120
] = {
2114 /* IVC-120G - Alan Garfield <alan@fromorbit.com> */
2117 /* .audio_inputs= 0, */
2118 .tuner_type
= TUNER_ABSENT
,
2119 .tuner_addr
= ADDR_UNSET
,
2120 .svhs
= NO_SVHS
, /* card has no svhs */
2125 .muxsel
= MUXSEL(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
2126 .muxsel_hook
= ivc120_muxsel
,
2130 /* ---- card 0x70 ---------------------------------- */
2131 [BTTV_BOARD_PC_HDTV
] = {
2132 .name
= "pcHDTV HD-2000 TV",
2134 /* .audio_inputs= 1, */
2136 .muxsel
= MUXSEL(2, 3, 1, 0),
2137 .tuner_type
= TUNER_PHILIPS_FCV1236D
,
2138 .tuner_addr
= ADDR_UNSET
,
2141 [BTTV_BOARD_TWINHAN_DST
] = {
2142 .name
= "Twinhan DST + clones",
2145 .tuner_type
= TUNER_ABSENT
,
2146 .tuner_addr
= ADDR_UNSET
,
2150 [BTTV_BOARD_WINFASTVC100
] = {
2151 .name
= "Winfast VC100",
2153 /* .audio_inputs= 0, */
2155 /* Vid In, SVid In, Vid over SVid in connector */
2156 .muxsel
= MUXSEL(3, 1, 1, 3),
2159 .tuner_type
= TUNER_ABSENT
,
2160 .tuner_addr
= ADDR_UNSET
,
2163 [BTTV_BOARD_TEV560
] = {
2164 .name
= "Teppro TEV-560/InterVision IV-560",
2166 /* .audio_inputs= 1, */
2169 .muxsel
= MUXSEL(2, 3, 1, 1),
2170 .gpiomux
= { 1, 1, 1, 1 },
2172 .tuner_type
= TUNER_PHILIPS_PAL
,
2173 .tuner_addr
= ADDR_UNSET
,
2177 /* ---- card 0x74 ---------------------------------- */
2178 [BTTV_BOARD_SIMUS_GVC1100
] = {
2179 .name
= "SIMUS GVC1100",
2181 /* .audio_inputs= 0, */
2183 .tuner_type
= TUNER_ABSENT
,
2184 .tuner_addr
= ADDR_UNSET
,
2186 .muxsel
= MUXSEL(2, 2, 2, 2),
2188 .muxsel_hook
= gvc1100_muxsel
,
2190 [BTTV_BOARD_NGSTV_PLUS
] = {
2191 /* Carlos Silva r3pek@r3pek.homelinux.org || card 0x75 */
2192 .name
= "NGS NGSTV+",
2195 .gpiomask
= 0x008007,
2196 .muxsel
= MUXSEL(2, 3, 0, 0),
2197 .gpiomux
= { 0, 0, 0, 0 },
2198 .gpiomute
= 0x000003,
2200 .tuner_type
= TUNER_PHILIPS_PAL
,
2201 .tuner_addr
= ADDR_UNSET
,
2204 [BTTV_BOARD_LMLBT4
] = {
2205 /* http://linuxmedialabs.com */
2207 .video_inputs
= 4, /* IN1,IN2,IN3,IN4 */
2208 /* .audio_inputs= 0, */
2210 .muxsel
= MUXSEL(2, 3, 1, 0),
2214 .tuner_type
= TUNER_ABSENT
,
2215 .tuner_addr
= ADDR_UNSET
,
2217 [BTTV_BOARD_TEKRAM_M205
] = {
2218 /* Helmroos Harri <harri.helmroos@pp.inet.fi> */
2219 .name
= "Tekram M205 PRO",
2221 /* .audio_inputs= 1, */
2222 .tuner_type
= TUNER_PHILIPS_PAL
,
2223 .tuner_addr
= ADDR_UNSET
,
2227 .muxsel
= MUXSEL(2, 3, 1),
2228 .gpiomux
= { 0x68, 0x68, 0x61, 0x61 },
2232 /* ---- card 0x78 ---------------------------------- */
2233 [BTTV_BOARD_CONTVFMI
] = {
2234 /* Javier Cendan Ares <jcendan@lycos.es> */
2235 /* bt878 TV + FM without subsystem ID */
2236 .name
= "Conceptronic CONTVFMi",
2238 /* .audio_inputs= 1, */
2240 .gpiomask
= 0x008007,
2241 .muxsel
= MUXSEL(2, 3, 1, 1),
2242 .gpiomux
= { 0, 1, 2, 2 },
2246 .tuner_type
= TUNER_PHILIPS_PAL
,
2247 .tuner_addr
= ADDR_UNSET
,
2251 [BTTV_BOARD_PICOLO_TETRA_CHIP
] = {
2252 /*Eric DEBIEF <debief@telemsa.com>*/
2253 /*EURESYS Picolo Tetra : 4 Conexant Fusion 878A, no audio, video input set with analog multiplexers GPIO controlled*/
2254 /* adds picolo_tetra_muxsel(), picolo_tetra_init(), the following declaration strucure, and #define BTTV_BOARD_PICOLO_TETRA_CHIP*/
2256 .name
= "Euresys Picolo Tetra",
2258 /* .audio_inputs= 0, */
2261 .gpiomask2
= 0x3C<<16,/*Set the GPIO[18]->GPIO[21] as output pin.==> drive the video inputs through analog multiplexers*/
2264 /*878A input is always MUX0, see above.*/
2265 .muxsel
= MUXSEL(2, 2, 2, 2),
2266 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2269 .muxsel_hook
= picolo_tetra_muxsel
,/*Required as it doesn't follow the classic input selection policy*/
2270 .tuner_type
= TUNER_ABSENT
,
2271 .tuner_addr
= ADDR_UNSET
,
2273 [BTTV_BOARD_SPIRIT_TV
] = {
2274 /* Spirit TV Tuner from http://spiritmodems.com.au */
2275 /* Stafford Goodsell <surge@goliath.homeunix.org> */
2276 .name
= "Spirit TV Tuner",
2278 /* .audio_inputs= 1, */
2280 .gpiomask
= 0x0000000f,
2281 .muxsel
= MUXSEL(2, 1, 1),
2282 .gpiomux
= { 0x02, 0x00, 0x00, 0x00 },
2283 .tuner_type
= TUNER_TEMIC_PAL
,
2284 .tuner_addr
= ADDR_UNSET
,
2287 [BTTV_BOARD_AVDVBT_771
] = {
2288 /* Wolfram Joost <wojo@frokaschwei.de> */
2289 .name
= "AVerMedia AVerTV DVB-T 771",
2292 .tuner_type
= TUNER_ABSENT
,
2293 .tuner_addr
= ADDR_UNSET
,
2294 .muxsel
= MUXSEL(3, 3),
2302 /* ---- card 0x7c ---------------------------------- */
2303 [BTTV_BOARD_AVDVBT_761
] = {
2304 /* Matt Jesson <dvb@jesson.eclipse.co.uk> */
2305 /* Based on the Nebula card data - added remote and new card number - BTTV_BOARD_AVDVBT_761, see also ir-kbd-gpio.c */
2306 .name
= "AverMedia AverTV DVB-T 761",
2309 .muxsel
= MUXSEL(3, 1, 2, 0), /* Comp0, S-Video, ?, ? */
2313 .tuner_type
= TUNER_ABSENT
,
2314 .tuner_addr
= ADDR_UNSET
,
2319 [BTTV_BOARD_MATRIX_VISIONSQ
] = {
2320 /* andre.schwarz@matrix-vision.de */
2321 .name
= "MATRIX Vision Sigma-SQ",
2323 /* .audio_inputs= 0, */
2326 .muxsel
= MUXSEL(2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3),
2327 .muxsel_hook
= sigmaSQ_muxsel
,
2331 .tuner_type
= TUNER_ABSENT
,
2332 .tuner_addr
= ADDR_UNSET
,
2334 [BTTV_BOARD_MATRIX_VISIONSLC
] = {
2335 /* andre.schwarz@matrix-vision.de */
2336 .name
= "MATRIX Vision Sigma-SLC",
2338 /* .audio_inputs= 0, */
2341 .muxsel
= MUXSEL(2, 2, 2, 2),
2342 .muxsel_hook
= sigmaSLC_muxsel
,
2346 .tuner_type
= TUNER_ABSENT
,
2347 .tuner_addr
= ADDR_UNSET
,
2349 /* BTTV_BOARD_APAC_VIEWCOMP */
2350 [BTTV_BOARD_APAC_VIEWCOMP
] = {
2351 /* Attila Kondoros <attila.kondoros@chello.hu> */
2352 /* bt878 TV + FM 0x00000000 subsystem ID */
2353 .name
= "APAC Viewcomp 878(AMAX)",
2355 /* .audio_inputs= 1, */
2358 .muxsel
= MUXSEL(2, 3, 1, 1),
2359 .gpiomux
= { 2, 0, 0, 0 },
2363 .tuner_type
= TUNER_PHILIPS_PAL
,
2364 .tuner_addr
= ADDR_UNSET
,
2365 .has_remote
= 1, /* miniremote works, see ir-kbd-gpio.c */
2366 .has_radio
= 1, /* not every card has radio */
2369 /* ---- card 0x80 ---------------------------------- */
2370 [BTTV_BOARD_DVICO_DVBT_LITE
] = {
2371 /* Chris Pascoe <c.pascoe@itee.uq.edu.au> */
2372 .name
= "DViCO FusionHDTV DVB-T Lite",
2378 .tuner_type
= TUNER_ABSENT
,
2379 .tuner_addr
= ADDR_UNSET
,
2381 [BTTV_BOARD_VGEAR_MYVCD
] = {
2382 /* Steven <photon38@pchome.com.tw> */
2383 .name
= "V-Gear MyVCD",
2385 /* .audio_inputs= 1, */
2388 .muxsel
= MUXSEL(2, 3, 1, 0),
2389 .gpiomux
= {0x31, 0x31, 0x31, 0x31 },
2393 .tuner_type
= TUNER_PHILIPS_NTSC_M
,
2394 .tuner_addr
= ADDR_UNSET
,
2397 [BTTV_BOARD_SUPER_TV
] = {
2398 /* Rick C <cryptdragoon@gmail.com> */
2399 .name
= "Super TV Tuner",
2401 /* .audio_inputs= 1, */
2403 .muxsel
= MUXSEL(2, 3, 1, 0),
2404 .tuner_type
= TUNER_PHILIPS_NTSC
,
2405 .tuner_addr
= ADDR_UNSET
,
2406 .gpiomask
= 0x008007,
2407 .gpiomux
= { 0, 0x000001,0,0 },
2411 [BTTV_BOARD_TIBET_CS16
] = {
2412 /* Chris Fanning <video4linux@haydon.net> */
2413 .name
= "Tibet Systems 'Progress DVR' CS16",
2415 /* .audio_inputs= 0, */
2417 .muxsel
= MUXSEL(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
2421 .tuner_type
= TUNER_ABSENT
,
2422 .tuner_addr
= ADDR_UNSET
,
2423 .muxsel_hook
= tibetCS16_muxsel
,
2425 [BTTV_BOARD_KODICOM_4400R
] = {
2426 /* Bill Brack <wbrack@mmm.com.hk> */
2428 * Note that, because of the card's wiring, the "master"
2429 * BT878A chip (i.e. the one which controls the analog switch
2430 * and must use this card type) is the 2nd one detected. The
2431 * other 3 chips should use card type 0x85, whose description
2432 * follows this one. There is a EEPROM on the card (which is
2433 * connected to the I2C of one of those other chips), but is
2434 * not currently handled. There is also a facility for a
2435 * "monitor", which is also not currently implemented.
2437 .name
= "Kodicom 4400R (master)",
2439 /* .audio_inputs= 0, */
2440 .tuner_type
= TUNER_ABSENT
,
2441 .tuner_addr
= ADDR_UNSET
,
2443 /* GPIO bits 0-9 used for analog switch:
2444 * 00 - 03: camera selector
2445 * 04 - 06: channel (controller) selector
2446 * 07: data (1->on, 0->off)
2449 * bit 16 is input from sync separator for the channel
2451 .gpiomask
= 0x0003ff,
2453 .muxsel
= MUXSEL(3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3),
2457 .muxsel_hook
= kodicom4400r_muxsel
,
2459 [BTTV_BOARD_KODICOM_4400R_SL
] = {
2460 /* Bill Brack <wbrack@mmm.com.hk> */
2461 /* Note that, for reasons unknown, the "master" BT878A chip (i.e. the
2462 * one which controls the analog switch, and must use the card type)
2463 * is the 2nd one detected. The other 3 chips should use this card
2466 .name
= "Kodicom 4400R (slave)",
2468 /* .audio_inputs= 0, */
2469 .tuner_type
= TUNER_ABSENT
,
2470 .tuner_addr
= ADDR_UNSET
,
2472 .gpiomask
= 0x010000,
2474 .muxsel
= MUXSEL(3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3),
2478 .muxsel_hook
= kodicom4400r_muxsel
,
2480 /* ---- card 0x86---------------------------------- */
2481 [BTTV_BOARD_ADLINK_RTV24
] = {
2482 /* Michael Henson <mhenson@clarityvi.com> */
2483 /* Adlink RTV24 with special unlock codes */
2484 .name
= "Adlink RTV24",
2486 /* .audio_inputs= 1, */
2488 .muxsel
= MUXSEL(2, 3, 1, 0),
2489 .tuner_type
= UNSET
,
2490 .tuner_addr
= ADDR_UNSET
,
2493 /* ---- card 0x87---------------------------------- */
2494 [BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
] = {
2495 /* Michael Krufky <mkrufky@m1k.net> */
2496 .name
= "DViCO FusionHDTV 5 Lite",
2497 .tuner_type
= TUNER_LG_TDVS_H06XF
, /* TDVS-H064F */
2498 .tuner_addr
= ADDR_UNSET
,
2500 /* .audio_inputs= 1, */
2502 .muxsel
= MUXSEL(2, 3, 1),
2503 .gpiomask
= 0x00e00007,
2504 .gpiomux
= { 0x00400005, 0, 0x00000001, 0 },
2505 .gpiomute
= 0x00c00007,
2510 /* ---- card 0x88---------------------------------- */
2511 [BTTV_BOARD_ACORP_Y878F
] = {
2512 /* Mauro Carvalho Chehab <mchehab@infradead.org> */
2513 .name
= "Acorp Y878F",
2515 /* .audio_inputs= 1, */
2517 .gpiomask
= 0x01fe00,
2518 .muxsel
= MUXSEL(2, 3, 1, 1),
2519 .gpiomux
= { 0x001e00, 0, 0x018000, 0x014000 },
2520 .gpiomute
= 0x002000,
2523 .tuner_type
= TUNER_YMEC_TVF66T5_B_DFF
,
2524 .tuner_addr
= 0xc1 >>1,
2527 /* ---- card 0x89 ---------------------------------- */
2528 [BTTV_BOARD_CONCEPTRONIC_CTVFMI2
] = {
2529 .name
= "Conceptronic CTVFMi v2",
2531 /* .audio_inputs= 1, */
2533 .gpiomask
= 0x001c0007,
2534 .muxsel
= MUXSEL(2, 3, 1, 1),
2535 .gpiomux
= { 0, 1, 2, 2 },
2539 .tuner_type
= TUNER_TENA_9533_DI
,
2540 .tuner_addr
= ADDR_UNSET
,
2544 /* ---- card 0x8a ---------------------------------- */
2545 [BTTV_BOARD_PV_BT878P_2E
] = {
2546 .name
= "Prolink Pixelview PV-BT878P+ (Rev.2E)",
2548 /* .audio_inputs= 1, */
2551 .gpiomask
= 0x01fe00,
2552 .muxsel
= MUXSEL(2, 3, 1, 1, 0), /* in 4 is digital */
2553 /* .digital_mode= DIGITAL_MODE_CAMERA, */
2554 .gpiomux
= { 0x00400, 0x10400, 0x04400, 0x80000 },
2555 .gpiomute
= 0x12400,
2558 .tuner_type
= TUNER_LG_PAL_FM
,
2559 .tuner_addr
= ADDR_UNSET
,
2562 /* ---- card 0x8b ---------------------------------- */
2563 [BTTV_BOARD_PV_M4900
] = {
2564 /* Sérgio Fortier <sergiofortier@yahoo.com.br> */
2565 .name
= "Prolink PixelView PlayTV MPEG2 PV-M4900",
2567 /* .audio_inputs= 1, */
2570 .muxsel
= MUXSEL(2, 3, 1, 1),
2571 .gpiomux
= { 0x21, 0x20, 0x24, 0x2c },
2575 .tuner_type
= TUNER_YMEC_TVF_5533MF
,
2576 .tuner_addr
= ADDR_UNSET
,
2580 /* ---- card 0x8c ---------------------------------- */
2581 /* Has four Bt878 chips behind a PCI bridge, each chip has:
2582 one external BNC composite input (mux 2)
2583 three internal composite inputs (unknown muxes)
2584 an 18-bit stereo A/D (CS5331A), which has:
2585 one external stereo unblanced (RCA) audio connection
2586 one (or 3?) internal stereo balanced (XLR) audio connection
2587 input is selected via gpio to a 14052B mux
2588 (mask=0x300, unbal=0x000, bal=0x100, ??=0x200,0x300)
2589 gain is controlled via an X9221A chip on the I2C bus @0x28
2590 sample rate is controlled via gpio to an MK1413S
2591 (mask=0x3, 32kHz=0x0, 44.1kHz=0x1, 48kHz=0x2, ??=0x3)
2592 There is neither a tuner nor an svideo input. */
2593 [BTTV_BOARD_OSPREY440
] = {
2594 .name
= "Osprey 440",
2596 /* .audio_inputs= 2, */
2598 .muxsel
= MUXSEL(2, 3, 0, 1), /* 3,0,1 are guesses */
2600 .gpiomute
= 0x000, /* int + 32kHz */
2601 .gpiomux
= { 0, 0, 0x000, 0x100},
2603 .tuner_type
= TUNER_ABSENT
,
2604 .tuner_addr
= ADDR_UNSET
,
2608 /* ---- card 0x8d ---------------------------------- */
2609 [BTTV_BOARD_ASOUND_SKYEYE
] = {
2610 .name
= "Asound Skyeye PCTV",
2612 /* .audio_inputs= 1, */
2615 .muxsel
= MUXSEL(2, 3, 1, 1),
2616 .gpiomux
= { 2, 0, 0, 0 },
2620 .tuner_type
= TUNER_PHILIPS_NTSC
,
2621 .tuner_addr
= ADDR_UNSET
,
2623 /* ---- card 0x8e ---------------------------------- */
2624 [BTTV_BOARD_SABRENT_TVFM
] = {
2625 .name
= "Sabrent TV-FM (bttv version)",
2627 /* .audio_inputs= 1, */
2629 .gpiomask
= 0x108007,
2630 .muxsel
= MUXSEL(2, 3, 1, 1),
2631 .gpiomux
= { 100000, 100002, 100002, 100000 },
2635 .tuner_type
= TUNER_TNF_5335MF
,
2636 .tuner_addr
= ADDR_UNSET
,
2639 /* ---- card 0x8f ---------------------------------- */
2640 [BTTV_BOARD_HAUPPAUGE_IMPACTVCB
] = {
2641 .name
= "Hauppauge ImpactVCB (bt878)",
2643 /* .audio_inputs= 0, */
2645 .gpiomask
= 0x0f, /* old: 7 */
2646 .muxsel
= MUXSEL(0, 1, 3, 2), /* Composite 0-3 */
2649 .tuner_type
= TUNER_ABSENT
,
2650 .tuner_addr
= ADDR_UNSET
,
2652 [BTTV_BOARD_MACHTV_MAGICTV
] = {
2653 /* Julian Calaby <julian.calaby@gmail.com>
2654 * Slightly different from original MachTV definition (0x60)
2656 * FIXME: RegSpy says gpiomask should be "0x001c800f", but it
2657 * stuffs up remote chip. Bug is a pin on the jaecs is not set
2658 * properly (methinks) causing no keyup bits being set */
2660 .name
= "MagicTV", /* rebranded MachTV */
2662 /* .audio_inputs= 1, */
2665 .muxsel
= MUXSEL(2, 3, 1, 1),
2666 .gpiomux
= { 0, 1, 2, 3 },
2668 .tuner_type
= TUNER_TEMIC_4009FR5_PAL
,
2669 .tuner_addr
= ADDR_UNSET
,
2674 [BTTV_BOARD_SSAI_SECURITY
] = {
2675 .name
= "SSAI Security Video Interface",
2677 /* .audio_inputs= 0, */
2679 .muxsel
= MUXSEL(0, 1, 2, 3),
2680 .tuner_type
= TUNER_ABSENT
,
2681 .tuner_addr
= ADDR_UNSET
,
2683 [BTTV_BOARD_SSAI_ULTRASOUND
] = {
2684 .name
= "SSAI Ultrasound Video Interface",
2686 /* .audio_inputs= 0, */
2688 .muxsel
= MUXSEL(2, 0, 1, 3),
2689 .tuner_type
= TUNER_ABSENT
,
2690 .tuner_addr
= ADDR_UNSET
,
2692 /* ---- card 0x94---------------------------------- */
2693 [BTTV_BOARD_DVICO_FUSIONHDTV_2
] = {
2694 .name
= "DViCO FusionHDTV 2",
2695 .tuner_type
= TUNER_PHILIPS_FCV1236D
,
2696 .tuner_addr
= ADDR_UNSET
,
2698 /* .audio_inputs= 1, */
2700 .muxsel
= MUXSEL(2, 3, 1),
2701 .gpiomask
= 0x00e00007,
2702 .gpiomux
= { 0x00400005, 0, 0x00000001, 0 },
2703 .gpiomute
= 0x00c00007,
2707 /* ---- card 0x95---------------------------------- */
2708 [BTTV_BOARD_TYPHOON_TVTUNERPCI
] = {
2709 .name
= "Typhoon TV-Tuner PCI (50684)",
2711 /* .audio_inputs= 1, */
2713 .gpiomask
= 0x3014f,
2714 .muxsel
= MUXSEL(2, 3, 1, 1),
2715 .gpiomux
= { 0x20001,0x10001, 0, 0 },
2719 .tuner_type
= TUNER_PHILIPS_PAL_I
,
2720 .tuner_addr
= ADDR_UNSET
,
2722 [BTTV_BOARD_GEOVISION_GV600
] = {
2724 .name
= "Geovision GV-600",
2726 /* .audio_inputs= 0, */
2729 .muxsel
= MUXSEL(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
2730 .muxsel_hook
= geovision_muxsel
,
2734 .tuner_type
= TUNER_ABSENT
,
2735 .tuner_addr
= ADDR_UNSET
,
2737 [BTTV_BOARD_KOZUMI_KTV_01C
] = {
2738 /* Mauro Lacy <mauro@lacy.com.ar>
2739 * Based on MagicTV and Conceptronic CONTVFMi */
2741 .name
= "Kozumi KTV-01C",
2743 /* .audio_inputs= 1, */
2745 .gpiomask
= 0x008007,
2746 .muxsel
= MUXSEL(2, 3, 1, 1),
2747 .gpiomux
= { 0, 1, 2, 2 }, /* CONTVFMi */
2748 .gpiomute
= 3, /* CONTVFMi */
2750 .tuner_type
= TUNER_PHILIPS_FM1216ME_MK3
, /* TCL MK3 */
2751 .tuner_addr
= ADDR_UNSET
,
2756 [BTTV_BOARD_ENLTV_FM_2
] = {
2757 /* Encore TV Tuner Pro ENL TV-FM-2
2758 Mauro Carvalho Chehab <mchehab@infradead.org */
2759 .name
= "Encore ENL TV-FM-2",
2761 /* .audio_inputs= 1, */
2763 /* bit 6 -> IR disabled
2764 bit 18/17 = 00 -> mute
2765 01 -> enable external audio input
2766 10 -> internal audio input (mono?)
2767 11 -> internal audio input
2769 .gpiomask
= 0x060040,
2770 .muxsel
= MUXSEL(2, 3, 3),
2771 .gpiomux
= { 0x60000, 0x60000, 0x20000, 0x20000 },
2773 .tuner_type
= TUNER_TCL_MF02GIP_5N
,
2774 .tuner_addr
= ADDR_UNSET
,
2779 [BTTV_BOARD_VD012
] = {
2780 /* D.Heer@Phytec.de */
2781 .name
= "PHYTEC VD-012 (bt878)",
2783 /* .audio_inputs= 0, */
2786 .muxsel
= MUXSEL(0, 2, 3, 1),
2787 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2790 .tuner_type
= TUNER_ABSENT
,
2791 .tuner_addr
= ADDR_UNSET
,
2793 [BTTV_BOARD_VD012_X1
] = {
2794 /* D.Heer@Phytec.de */
2795 .name
= "PHYTEC VD-012-X1 (bt878)",
2797 /* .audio_inputs= 0, */
2800 .muxsel
= MUXSEL(2, 3, 1),
2801 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2804 .tuner_type
= TUNER_ABSENT
,
2805 .tuner_addr
= ADDR_UNSET
,
2807 [BTTV_BOARD_VD012_X2
] = {
2808 /* D.Heer@Phytec.de */
2809 .name
= "PHYTEC VD-012-X2 (bt878)",
2811 /* .audio_inputs= 0, */
2814 .muxsel
= MUXSEL(3, 2, 1),
2815 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2818 .tuner_type
= TUNER_ABSENT
,
2819 .tuner_addr
= ADDR_UNSET
,
2821 [BTTV_BOARD_GEOVISION_GV800S
] = {
2822 /* Bruno Christo <bchristo@inf.ufsm.br>
2824 * GeoVision GV-800(S) has 4 Conexant Fusion 878A:
2825 * 1 audio input per BT878A = 4 audio inputs
2826 * 4 video inputs per BT878A = 16 video inputs
2827 * This is the first BT878A chip of the GV-800(S). It's the
2828 * "master" chip and it controls the video inputs through an
2829 * analog multiplexer (a CD22M3494) via some GPIO pins. The
2830 * slaves should use card type 0x9e (following this one).
2831 * There is a EEPROM on the card which is currently not handled.
2832 * The audio input is not working yet.
2834 .name
= "Geovision GV-800(S) (master)",
2836 /* .audio_inputs= 1, */
2837 .tuner_type
= TUNER_ABSENT
,
2838 .tuner_addr
= ADDR_UNSET
,
2840 .gpiomask
= 0xf107f,
2842 .muxsel
= MUXSEL(2, 2, 2, 2),
2846 .muxsel_hook
= gv800s_muxsel
,
2848 [BTTV_BOARD_GEOVISION_GV800S_SL
] = {
2849 /* Bruno Christo <bchristo@inf.ufsm.br>
2851 * GeoVision GV-800(S) has 4 Conexant Fusion 878A:
2852 * 1 audio input per BT878A = 4 audio inputs
2853 * 4 video inputs per BT878A = 16 video inputs
2854 * The 3 other BT878A chips are "slave" chips of the GV-800(S)
2855 * and should use this card type.
2856 * The audio input is not working yet.
2858 .name
= "Geovision GV-800(S) (slave)",
2860 /* .audio_inputs= 1, */
2861 .tuner_type
= TUNER_ABSENT
,
2862 .tuner_addr
= ADDR_UNSET
,
2866 .muxsel
= MUXSEL(2, 2, 2, 2),
2870 .muxsel_hook
= gv800s_muxsel
,
2872 [BTTV_BOARD_PV183
] = {
2873 .name
= "ProVideo PV183", /* 0x9f */
2875 /* .audio_inputs= 0, */
2878 .muxsel
= MUXSEL(2, 3),
2883 .tuner_type
= TUNER_ABSENT
,
2884 .tuner_addr
= ADDR_UNSET
,
2886 [BTTV_BOARD_TVT_TD3116
] = {
2887 .name
= "Tongwei Video Technology TD-3116",
2889 .gpiomask
= 0xc00ff,
2890 .muxsel
= MUXSEL(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
2891 .muxsel_hook
= td3116_muxsel
,
2894 .tuner_type
= TUNER_ABSENT
,
2898 static const unsigned int bttv_num_tvcards
= ARRAY_SIZE(bttv_tvcards
);
2900 /* ----------------------------------------------------------------------- */
2902 static unsigned char eeprom_data
[256];
2907 void __devinit
bttv_idcard(struct bttv
*btv
)
2909 unsigned int gpiobits
;
2912 /* read PCI subsystem ID */
2913 btv
->cardid
= btv
->c
.pci
->subsystem_device
<< 16;
2914 btv
->cardid
|= btv
->c
.pci
->subsystem_vendor
;
2916 if (0 != btv
->cardid
&& 0xffffffff != btv
->cardid
) {
2917 /* look for the card */
2918 for (type
= -1, i
= 0; cards
[i
].id
!= 0; i
++)
2919 if (cards
[i
].id
== btv
->cardid
)
2924 pr_info("%d: detected: %s [card=%d], PCI subsystem ID is %04x:%04x\n",
2925 btv
->c
.nr
, cards
[type
].name
, cards
[type
].cardnr
,
2926 btv
->cardid
& 0xffff,
2927 (btv
->cardid
>> 16) & 0xffff);
2928 btv
->c
.type
= cards
[type
].cardnr
;
2931 pr_info("%d: subsystem: %04x:%04x (UNKNOWN)\n",
2932 btv
->c
.nr
, btv
->cardid
& 0xffff,
2933 (btv
->cardid
>> 16) & 0xffff);
2934 pr_debug("please mail id, board name and the correct card= insmod option to linux-media@vger.kernel.org\n");
2938 /* let the user override the autodetected type */
2939 if (card
[btv
->c
.nr
] < bttv_num_tvcards
)
2940 btv
->c
.type
=card
[btv
->c
.nr
];
2942 /* print which card config we are using */
2943 pr_info("%d: using: %s [card=%d,%s]\n",
2944 btv
->c
.nr
, bttv_tvcards
[btv
->c
.type
].name
, btv
->c
.type
,
2945 card
[btv
->c
.nr
] < bttv_num_tvcards
2946 ? "insmod option" : "autodetected");
2948 /* overwrite gpio stuff ?? */
2949 if (UNSET
== audioall
&& UNSET
== audiomux
[0])
2952 if (UNSET
!= audiomux
[0]) {
2954 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
2955 bttv_tvcards
[btv
->c
.type
].gpiomux
[i
] = audiomux
[i
];
2956 gpiobits
|= audiomux
[i
];
2959 gpiobits
= audioall
;
2960 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
2961 bttv_tvcards
[btv
->c
.type
].gpiomux
[i
] = audioall
;
2964 bttv_tvcards
[btv
->c
.type
].gpiomask
= (UNSET
!= gpiomask
) ? gpiomask
: gpiobits
;
2965 pr_info("%d: gpio config override: mask=0x%x, mux=",
2966 btv
->c
.nr
, bttv_tvcards
[btv
->c
.type
].gpiomask
);
2967 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
2969 i
? "," : "", bttv_tvcards
[btv
->c
.type
].gpiomux
[i
]);
2975 * (most) board specific initialisations goes here
2978 /* Some Modular Technology cards have an eeprom, but no subsystem ID */
2979 static void identify_by_eeprom(struct bttv
*btv
, unsigned char eeprom_data
[256])
2983 if (0 == strncmp(eeprom_data
,"GET MM20xPCTV",13))
2984 type
= BTTV_BOARD_MODTEC_205
;
2985 else if (0 == strncmp(eeprom_data
+20,"Picolo",7))
2986 type
= BTTV_BOARD_EURESYS_PICOLO
;
2987 else if (eeprom_data
[0] == 0x84 && eeprom_data
[2]== 0)
2988 type
= BTTV_BOARD_HAUPPAUGE
; /* old bt848 */
2992 pr_info("%d: detected by eeprom: %s [card=%d]\n",
2993 btv
->c
.nr
, bttv_tvcards
[btv
->c
.type
].name
, btv
->c
.type
);
2997 static void flyvideo_gpio(struct bttv
*btv
)
2999 int gpio
, has_remote
, has_radio
, is_capture_only
;
3000 int is_lr90
, has_tda9820_tda9821
;
3001 int tuner_type
= UNSET
, ttype
;
3003 gpio_inout(0xffffff, 0);
3004 udelay(8); /* without this we would see the 0x1800 mask */
3006 /* FIXME: must restore OUR_EN ??? */
3008 /* all cards provide GPIO info, some have an additional eeprom
3009 * LR50: GPIO coding can be found lower right CP1 .. CP9
3010 * CP9=GPIO23 .. CP1=GPIO15; when OPEN, the corresponding GPIO reads 1.
3012 * LR90: GP9=GPIO23 .. GP1=GPIO15 (right above the bt878)
3014 * lowest 3 bytes are remote control codes (no handshake needed)
3015 * xxxFFF: No remote control chip soldered
3016 * xxxF00(LR26/LR50), xxxFE0(LR90): Remote control chip (LVA001 or CF45) soldered
3017 * Note: Some bits are Audio_Mask !
3019 ttype
= (gpio
& 0x0f0000) >> 16;
3022 tuner_type
= 2; /* NTSC, e.g. TPI8NSR11P */
3025 tuner_type
= 39; /* LG NTSC (newer TAPC series) TAPC-H701P */
3028 tuner_type
= 5; /* Philips PAL TPI8PSB02P, TPI8PSB12P, TPI8PSB12D or FI1216, FM1216 */
3031 tuner_type
= 37; /* LG PAL (newer TAPC series) TAPC-G702P */
3034 tuner_type
= 3; /* Philips SECAM(+PAL) FQ1216ME or FI1216MF */
3037 pr_info("%d: FlyVideo_gpio: unknown tuner type\n", btv
->c
.nr
);
3041 has_remote
= gpio
& 0x800000;
3042 has_radio
= gpio
& 0x400000;
3043 /* unknown 0x200000;
3044 * unknown2 0x100000; */
3045 is_capture_only
= !(gpio
& 0x008000); /* GPIO15 */
3046 has_tda9820_tda9821
= !(gpio
& 0x004000);
3047 is_lr90
= !(gpio
& 0x002000); /* else LR26/LR50 (LR38/LR51 f. capture only) */
3049 * gpio & 0x001000 output bit for audio routing */
3051 if (is_capture_only
)
3052 tuner_type
= TUNER_ABSENT
; /* No tuner present */
3054 pr_info("%d: FlyVideo Radio=%s RemoteControl=%s Tuner=%d gpio=0x%06x\n",
3055 btv
->c
.nr
, has_radio
? "yes" : "no",
3056 has_remote
? "yes" : "no", tuner_type
, gpio
);
3057 pr_info("%d: FlyVideo LR90=%s tda9821/tda9820=%s capture_only=%s\n",
3058 btv
->c
.nr
, is_lr90
? "yes" : "no",
3059 has_tda9820_tda9821
? "yes" : "no",
3060 is_capture_only
? "yes" : "no");
3062 if (tuner_type
!= UNSET
) /* only set if known tuner autodetected, else let insmod option through */
3063 btv
->tuner_type
= tuner_type
;
3064 btv
->has_radio
= has_radio
;
3066 /* LR90 Audio Routing is done by 2 hef4052, so Audio_Mask has 4 bits: 0x001c80
3067 * LR26/LR50 only has 1 hef4052, Audio_Mask 0x000c00
3068 * Audio options: from tuner, from tda9821/tda9821(mono,stereo,sap), from tda9874, ext., mute */
3069 if (has_tda9820_tda9821
)
3070 btv
->audio_mode_gpio
= lt9415_audio
;
3071 /* todo: if(has_tda9874) btv->audio_mode_gpio = fv2000s_audio; */
3074 static int miro_tunermap
[] = { 0,6,2,3, 4,5,6,0, 3,0,4,5, 5,2,16,1,
3075 14,2,17,1, 4,1,4,3, 1,2,16,1, 4,4,4,4 };
3076 static int miro_fmtuner
[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,1,
3077 1,1,1,1, 1,1,1,0, 0,0,0,0, 0,1,0,0 };
3079 static void miro_pinnacle_gpio(struct bttv
*btv
)
3084 gpio_inout(0xffffff, 0);
3086 id
= ((gpio
>>10) & 63) -1;
3087 msp
= bttv_I2CRead(btv
, I2C_ADDR_MSP3400
, "MSP34xx");
3089 btv
->tuner_type
= miro_tunermap
[id
];
3090 if (0 == (gpio
& 0x20)) {
3092 if (!miro_fmtuner
[id
]) {
3093 btv
->has_matchbox
= 1;
3094 btv
->mbox_we
= (1<<6);
3095 btv
->mbox_most
= (1<<7);
3096 btv
->mbox_clk
= (1<<8);
3097 btv
->mbox_data
= (1<<9);
3098 btv
->mbox_mask
= (1<<6)|(1<<7)|(1<<8)|(1<<9);
3104 if (btv
->c
.type
== BTTV_BOARD_MIRO
)
3105 btv
->c
.type
= BTTV_BOARD_MIROPRO
;
3106 if (btv
->c
.type
== BTTV_BOARD_PINNACLE
)
3107 btv
->c
.type
= BTTV_BOARD_PINNACLEPRO
;
3109 pr_info("%d: miro: id=%d tuner=%d radio=%s stereo=%s\n",
3110 btv
->c
.nr
, id
+1, btv
->tuner_type
,
3111 !btv
->has_radio
? "no" :
3112 (btv
->has_matchbox
? "matchbox" : "fmtuner"),
3113 (-1 == msp
) ? "no" : "yes");
3115 /* new cards with microtune tuner */
3120 info
= "PAL / mono";
3121 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3124 info
= "PAL+SECAM / stereo";
3126 btv
->tda9887_conf
= TDA9887_QSS
;
3129 info
= "NTSC / stereo";
3131 btv
->tda9887_conf
= TDA9887_QSS
;
3134 info
= "PAL+SECAM / mono";
3135 btv
->tda9887_conf
= TDA9887_QSS
;
3138 info
= "NTSC / mono";
3139 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3142 info
= "NTSC / stereo";
3143 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3146 info
= "PAL / stereo";
3147 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3150 info
= "oops: unknown card";
3154 btv
->c
.type
= BTTV_BOARD_PINNACLEPRO
;
3155 pr_info("%d: pinnacle/mt: id=%d info=\"%s\" radio=%s\n",
3156 btv
->c
.nr
, id
, info
, btv
->has_radio
? "yes" : "no");
3157 btv
->tuner_type
= TUNER_MT2032
;
3161 /* GPIO21 L: Buffer aktiv, H: Buffer inaktiv */
3162 #define LM1882_SYNC_DRIVE 0x200000L
3164 static void init_ids_eagle(struct bttv
*btv
)
3166 gpio_inout(0xffffff,0xFFFF37);
3167 gpio_write(0x200020);
3169 /* flash strobe inverter ?! */
3170 gpio_write(0x200024);
3172 /* switch sync drive off */
3173 gpio_bits(LM1882_SYNC_DRIVE
,LM1882_SYNC_DRIVE
);
3175 /* set BT848 muxel to 2 */
3176 btaor((2)<<5, ~(2<<5), BT848_IFORM
);
3179 /* Muxsel helper for the IDS Eagle.
3180 * the eagles does not use the standard muxsel-bits but
3181 * has its own multiplexer */
3182 static void eagle_muxsel(struct bttv
*btv
, unsigned int input
)
3184 gpio_bits(3, input
& 3);
3187 /* set chroma ADC to sleep */
3188 btor(BT848_ADC_C_SLEEP
, BT848_ADC
);
3189 /* set to composite video */
3190 btand(~BT848_CONTROL_COMP
, BT848_E_CONTROL
);
3191 btand(~BT848_CONTROL_COMP
, BT848_O_CONTROL
);
3193 /* switch sync drive off */
3194 gpio_bits(LM1882_SYNC_DRIVE
,LM1882_SYNC_DRIVE
);
3197 static void gvc1100_muxsel(struct bttv
*btv
, unsigned int input
)
3199 static const int masks
[] = {0x30, 0x01, 0x12, 0x23};
3200 gpio_write(masks
[input
%4]);
3203 /* LMLBT4x initialization - to allow access to GPIO bits for sensors input and
3206 GPIObit | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
3207 assignment | TI | O3|INx| O2| O1|IN4|IN3|IN2|IN1| | |
3209 IN - sensor inputs, INx - sensor inputs and TI XORed together
3210 O1,O2,O3 - alarm outputs (relays)
3212 OUT ENABLE 1 1 0 . 1 1 0 0 . 0 0 0 0 = 0x6C0
3216 static void init_lmlbt4x(struct bttv
*btv
)
3218 pr_debug("LMLBT4x init\n");
3219 btwrite(0x000000, BT848_GPIO_REG_INP
);
3220 gpio_inout(0xffffff, 0x0006C0);
3221 gpio_write(0x000000);
3224 static void sigmaSQ_muxsel(struct bttv
*btv
, unsigned int input
)
3226 unsigned int inmux
= input
% 8;
3227 gpio_inout( 0xf, 0xf );
3228 gpio_bits( 0xf, inmux
);
3231 static void sigmaSLC_muxsel(struct bttv
*btv
, unsigned int input
)
3233 unsigned int inmux
= input
% 4;
3234 gpio_inout( 3<<9, 3<<9 );
3235 gpio_bits( 3<<9, inmux
<<9 );
3238 static void geovision_muxsel(struct bttv
*btv
, unsigned int input
)
3240 unsigned int inmux
= input
% 16;
3241 gpio_inout(0xf, 0xf);
3242 gpio_bits(0xf, inmux
);
3246 * The TD3116 has 2 74HC4051 muxes wired to the MUX0 input of a bt878.
3247 * The first 74HC4051 has the lower 8 inputs, the second one the higher 8.
3248 * The muxes are controlled via a 74HC373 latch which is connected to
3249 * GPIOs 0-7. GPIO 18 is connected to the LE signal of the latch.
3250 * Q0 of the latch is connected to the Enable (~E) input of the first
3251 * 74HC4051. Q1 - Q3 are connected to S0 - S2 of the same 74HC4051.
3252 * Q4 - Q7 are connected to the second 74HC4051 in the same way.
3255 static void td3116_latch_value(struct bttv
*btv
, u32 value
)
3257 gpio_bits((1<<18) | 0xff, value
);
3258 gpio_bits((1<<18) | 0xff, (1<<18) | value
);
3260 gpio_bits((1<<18) | 0xff, value
);
3263 static void td3116_muxsel(struct bttv
*btv
, unsigned int input
)
3268 highbit
= (input
& 0x8) >> 3 ;
3270 /* Disable outputs and set value in the mux */
3271 value
= 0x11; /* Disable outputs */
3272 value
|= ((input
& 0x7) << 1) << (4 * highbit
);
3273 td3116_latch_value(btv
, value
);
3275 /* Enable the correct output */
3277 value
|= ((highbit
^ 0x1) << 4) | highbit
;
3278 td3116_latch_value(btv
, value
);
3281 /* ----------------------------------------------------------------------- */
3283 static void bttv_reset_audio(struct bttv
*btv
)
3286 * BT878A has a audio-reset register.
3287 * 1. This register is an audio reset function but it is in
3288 * function-0 (video capture) address space.
3289 * 2. It is enough to do this once per power-up of the card.
3290 * 3. There is a typo in the Conexant doc -- it is not at
3291 * 0x5B, but at 0x058. (B is an odd-number, obviously a typo!).
3292 * --//Shrikumar 030609
3298 pr_debug("%d: BT878A ARESET\n", btv
->c
.nr
);
3299 btwrite((1<<7), 0x058);
3304 /* initialization part one -- before registering i2c bus */
3305 void __devinit
bttv_init_card1(struct bttv
*btv
)
3307 switch (btv
->c
.type
) {
3308 case BTTV_BOARD_HAUPPAUGE
:
3309 case BTTV_BOARD_HAUPPAUGE878
:
3310 boot_msp34xx(btv
,5);
3312 case BTTV_BOARD_VOODOOTV_200
:
3313 case BTTV_BOARD_VOODOOTV_FM
:
3314 boot_msp34xx(btv
,20);
3316 case BTTV_BOARD_AVERMEDIA98
:
3317 boot_msp34xx(btv
,11);
3319 case BTTV_BOARD_HAUPPAUGEPVR
:
3322 case BTTV_BOARD_TWINHAN_DST
:
3323 case BTTV_BOARD_AVDVBT_771
:
3324 case BTTV_BOARD_PINNACLESAT
:
3325 btv
->use_i2c_hw
= 1;
3327 case BTTV_BOARD_ADLINK_RTV24
:
3332 if (!bttv_tvcards
[btv
->c
.type
].has_dvb
)
3333 bttv_reset_audio(btv
);
3336 /* initialization part two -- after registering i2c bus */
3337 void __devinit
bttv_init_card2(struct bttv
*btv
)
3339 btv
->tuner_type
= UNSET
;
3341 if (BTTV_BOARD_UNKNOWN
== btv
->c
.type
) {
3342 bttv_readee(btv
,eeprom_data
,0xa0);
3343 identify_by_eeprom(btv
,eeprom_data
);
3346 switch (btv
->c
.type
) {
3347 case BTTV_BOARD_MIRO
:
3348 case BTTV_BOARD_MIROPRO
:
3349 case BTTV_BOARD_PINNACLE
:
3350 case BTTV_BOARD_PINNACLEPRO
:
3352 miro_pinnacle_gpio(btv
);
3354 case BTTV_BOARD_FLYVIDEO_98
:
3355 case BTTV_BOARD_MAXI
:
3356 case BTTV_BOARD_LIFE_FLYKIT
:
3357 case BTTV_BOARD_FLYVIDEO
:
3358 case BTTV_BOARD_TYPHOON_TVIEW
:
3359 case BTTV_BOARD_CHRONOS_VS2
:
3360 case BTTV_BOARD_FLYVIDEO_98FM
:
3361 case BTTV_BOARD_FLYVIDEO2000
:
3362 case BTTV_BOARD_FLYVIDEO98EZ
:
3363 case BTTV_BOARD_CONFERENCETV
:
3364 case BTTV_BOARD_LIFETEC_9415
:
3367 case BTTV_BOARD_HAUPPAUGE
:
3368 case BTTV_BOARD_HAUPPAUGE878
:
3369 case BTTV_BOARD_HAUPPAUGEPVR
:
3370 /* pick up some config infos from the eeprom */
3371 bttv_readee(btv
,eeprom_data
,0xa0);
3372 hauppauge_eeprom(btv
);
3374 case BTTV_BOARD_AVERMEDIA98
:
3375 case BTTV_BOARD_AVPHONE98
:
3376 bttv_readee(btv
,eeprom_data
,0xa0);
3377 avermedia_eeprom(btv
);
3379 case BTTV_BOARD_PXC200
:
3382 case BTTV_BOARD_PICOLO_TETRA_CHIP
:
3383 picolo_tetra_init(btv
);
3385 case BTTV_BOARD_VHX
:
3387 btv
->has_matchbox
= 1;
3388 btv
->mbox_we
= 0x20;
3390 btv
->mbox_clk
= 0x08;
3391 btv
->mbox_data
= 0x10;
3392 btv
->mbox_mask
= 0x38;
3394 case BTTV_BOARD_VOBIS_BOOSTAR
:
3395 case BTTV_BOARD_TERRATV
:
3396 terratec_active_radio_upgrade(btv
);
3398 case BTTV_BOARD_MAGICTVIEW061
:
3399 if (btv
->cardid
== 0x3002144f) {
3401 pr_info("%d: radio detected by subsystem id (CPH05x)\n",
3405 case BTTV_BOARD_STB2
:
3406 if (btv
->cardid
== 0x3060121a) {
3407 /* Fix up entry for 3DFX VoodooTV 100,
3408 which is an OEM STB card variant. */
3410 btv
->tuner_type
=TUNER_TEMIC_NTSC
;
3413 case BTTV_BOARD_OSPREY1x0
:
3414 case BTTV_BOARD_OSPREY1x0_848
:
3415 case BTTV_BOARD_OSPREY101_848
:
3416 case BTTV_BOARD_OSPREY1x1
:
3417 case BTTV_BOARD_OSPREY1x1_SVID
:
3418 case BTTV_BOARD_OSPREY2xx
:
3419 case BTTV_BOARD_OSPREY2x0_SVID
:
3420 case BTTV_BOARD_OSPREY2x0
:
3421 case BTTV_BOARD_OSPREY440
:
3422 case BTTV_BOARD_OSPREY500
:
3423 case BTTV_BOARD_OSPREY540
:
3424 case BTTV_BOARD_OSPREY2000
:
3425 bttv_readee(btv
,eeprom_data
,0xa0);
3426 osprey_eeprom(btv
, eeprom_data
);
3428 case BTTV_BOARD_IDS_EAGLE
:
3429 init_ids_eagle(btv
);
3431 case BTTV_BOARD_MODTEC_205
:
3432 bttv_readee(btv
,eeprom_data
,0xa0);
3435 case BTTV_BOARD_LMLBT4
:
3438 case BTTV_BOARD_TIBET_CS16
:
3439 tibetCS16_init(btv
);
3441 case BTTV_BOARD_KODICOM_4400R
:
3442 kodicom4400r_init(btv
);
3444 case BTTV_BOARD_GEOVISION_GV800S
:
3449 /* pll configuration */
3450 if (!(btv
->id
==848 && btv
->revision
==0x11)) {
3451 /* defaults from card list */
3452 if (PLL_28
== bttv_tvcards
[btv
->c
.type
].pll
) {
3453 btv
->pll
.pll_ifreq
=28636363;
3454 btv
->pll
.pll_crystal
=BT848_IFORM_XT0
;
3456 if (PLL_35
== bttv_tvcards
[btv
->c
.type
].pll
) {
3457 btv
->pll
.pll_ifreq
=35468950;
3458 btv
->pll
.pll_crystal
=BT848_IFORM_XT1
;
3460 /* insmod options can override */
3461 switch (pll
[btv
->c
.nr
]) {
3463 btv
->pll
.pll_crystal
= 0;
3464 btv
->pll
.pll_ifreq
= 0;
3465 btv
->pll
.pll_ofreq
= 0;
3467 case 1: /* 28 MHz */
3469 btv
->pll
.pll_ifreq
= 28636363;
3470 btv
->pll
.pll_ofreq
= 0;
3471 btv
->pll
.pll_crystal
= BT848_IFORM_XT0
;
3473 case 2: /* 35 MHz */
3475 btv
->pll
.pll_ifreq
= 35468950;
3476 btv
->pll
.pll_ofreq
= 0;
3477 btv
->pll
.pll_crystal
= BT848_IFORM_XT1
;
3481 btv
->pll
.pll_current
= -1;
3483 /* tuner configuration (from card list / autodetect / insmod option) */
3484 if (UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_type
)
3485 if (UNSET
== btv
->tuner_type
)
3486 btv
->tuner_type
= bttv_tvcards
[btv
->c
.type
].tuner_type
;
3487 if (UNSET
!= tuner
[btv
->c
.nr
])
3488 btv
->tuner_type
= tuner
[btv
->c
.nr
];
3490 if (btv
->tuner_type
== TUNER_ABSENT
)
3491 pr_info("%d: tuner absent\n", btv
->c
.nr
);
3492 else if (btv
->tuner_type
== UNSET
)
3493 pr_warn("%d: tuner type unset\n", btv
->c
.nr
);
3495 pr_info("%d: tuner type=%d\n", btv
->c
.nr
, btv
->tuner_type
);
3497 if (autoload
!= UNSET
) {
3498 pr_warn("%d: the autoload option is obsolete\n", btv
->c
.nr
);
3499 pr_warn("%d: use option msp3400, tda7432 or tvaudio to override which audio module should be used\n",
3503 if (UNSET
== btv
->tuner_type
)
3504 btv
->tuner_type
= TUNER_ABSENT
;
3506 btv
->dig
= bttv_tvcards
[btv
->c
.type
].has_dig_in
?
3507 bttv_tvcards
[btv
->c
.type
].video_inputs
- 1 : UNSET
;
3508 btv
->svhs
= bttv_tvcards
[btv
->c
.type
].svhs
== NO_SVHS
?
3509 UNSET
: bttv_tvcards
[btv
->c
.type
].svhs
;
3510 if (svhs
[btv
->c
.nr
] != UNSET
)
3511 btv
->svhs
= svhs
[btv
->c
.nr
];
3512 if (remote
[btv
->c
.nr
] != UNSET
)
3513 btv
->has_remote
= remote
[btv
->c
.nr
];
3515 if (bttv_tvcards
[btv
->c
.type
].has_radio
)
3517 if (bttv_tvcards
[btv
->c
.type
].has_remote
)
3518 btv
->has_remote
= 1;
3519 if (!bttv_tvcards
[btv
->c
.type
].no_gpioirq
)
3521 if (bttv_tvcards
[btv
->c
.type
].volume_gpio
)
3522 btv
->volume_gpio
= bttv_tvcards
[btv
->c
.type
].volume_gpio
;
3523 if (bttv_tvcards
[btv
->c
.type
].audio_mode_gpio
)
3524 btv
->audio_mode_gpio
= bttv_tvcards
[btv
->c
.type
].audio_mode_gpio
;
3526 if (btv
->tuner_type
== TUNER_ABSENT
)
3527 return; /* no tuner or related drivers to load */
3529 if (btv
->has_saa6588
|| saa6588
[btv
->c
.nr
]) {
3530 /* Probe for RDS receiver chip */
3531 static const unsigned short addrs
[] = {
3536 struct v4l2_subdev
*sd
;
3538 sd
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3539 &btv
->c
.i2c_adap
, "saa6588", 0, addrs
);
3540 btv
->has_saa6588
= (sd
!= NULL
);
3543 /* try to detect audio/fader chips */
3545 /* First check if the user specified the audio chip via a module
3548 switch (audiodev
[btv
->c
.nr
]) {
3550 return; /* do not load any audio module */
3552 case 0: /* autodetect */
3556 /* The user specified that we should probe for msp3400 */
3557 static const unsigned short addrs
[] = {
3558 I2C_ADDR_MSP3400
>> 1,
3559 I2C_ADDR_MSP3400_ALT
>> 1,
3563 btv
->sd_msp34xx
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3564 &btv
->c
.i2c_adap
, "msp3400", 0, addrs
);
3565 if (btv
->sd_msp34xx
)
3571 /* The user specified that we should probe for tda7432 */
3572 static const unsigned short addrs
[] = {
3573 I2C_ADDR_TDA7432
>> 1,
3577 if (v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3578 &btv
->c
.i2c_adap
, "tda7432", 0, addrs
))
3584 /* The user specified that we should probe for tvaudio */
3585 btv
->sd_tvaudio
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3586 &btv
->c
.i2c_adap
, "tvaudio", 0, tvaudio_addrs());
3587 if (btv
->sd_tvaudio
)
3593 pr_warn("%d: unknown audiodev value!\n", btv
->c
.nr
);
3597 /* There were no overrides, so now we try to discover this through the
3600 /* probe for msp3400 first: this driver can detect whether or not
3601 it really is a msp3400, so it will return NULL when the device
3602 found is really something else (e.g. a tea6300). */
3603 if (!bttv_tvcards
[btv
->c
.type
].no_msp34xx
) {
3604 btv
->sd_msp34xx
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3605 &btv
->c
.i2c_adap
, "msp3400",
3606 0, I2C_ADDRS(I2C_ADDR_MSP3400
>> 1));
3607 } else if (bttv_tvcards
[btv
->c
.type
].msp34xx_alt
) {
3608 btv
->sd_msp34xx
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3609 &btv
->c
.i2c_adap
, "msp3400",
3610 0, I2C_ADDRS(I2C_ADDR_MSP3400_ALT
>> 1));
3613 /* If we found a msp34xx, then we're done. */
3614 if (btv
->sd_msp34xx
)
3617 /* it might also be a tda7432. */
3618 if (!bttv_tvcards
[btv
->c
.type
].no_tda7432
) {
3619 static const unsigned short addrs
[] = {
3620 I2C_ADDR_TDA7432
>> 1,
3624 if (v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3625 &btv
->c
.i2c_adap
, "tda7432", 0, addrs
))
3629 /* Now see if we can find one of the tvaudio devices. */
3630 btv
->sd_tvaudio
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3631 &btv
->c
.i2c_adap
, "tvaudio", 0, tvaudio_addrs());
3632 if (btv
->sd_tvaudio
)
3636 pr_warn("%d: audio absent, no audio device found!\n", btv
->c
.nr
);
3640 /* initialize the tuner */
3641 void __devinit
bttv_init_tuner(struct bttv
*btv
)
3643 int addr
= ADDR_UNSET
;
3645 if (ADDR_UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_addr
)
3646 addr
= bttv_tvcards
[btv
->c
.type
].tuner_addr
;
3648 if (btv
->tuner_type
!= TUNER_ABSENT
) {
3649 struct tuner_setup tun_setup
;
3651 /* Load tuner module before issuing tuner config call! */
3652 if (bttv_tvcards
[btv
->c
.type
].has_radio
)
3653 v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3654 &btv
->c
.i2c_adap
, "tuner",
3655 0, v4l2_i2c_tuner_addrs(ADDRS_RADIO
));
3656 v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3657 &btv
->c
.i2c_adap
, "tuner",
3658 0, v4l2_i2c_tuner_addrs(ADDRS_DEMOD
));
3659 v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3660 &btv
->c
.i2c_adap
, "tuner",
3661 0, v4l2_i2c_tuner_addrs(ADDRS_TV_WITH_DEMOD
));
3663 tun_setup
.mode_mask
= T_ANALOG_TV
;
3664 tun_setup
.type
= btv
->tuner_type
;
3665 tun_setup
.addr
= addr
;
3667 if (bttv_tvcards
[btv
->c
.type
].has_radio
)
3668 tun_setup
.mode_mask
|= T_RADIO
;
3670 bttv_call_all(btv
, tuner
, s_type_addr
, &tun_setup
);
3673 if (btv
->tda9887_conf
) {
3674 struct v4l2_priv_tun_config tda9887_cfg
;
3676 tda9887_cfg
.tuner
= TUNER_TDA9887
;
3677 tda9887_cfg
.priv
= &btv
->tda9887_conf
;
3679 bttv_call_all(btv
, tuner
, s_config
, &tda9887_cfg
);
3683 /* ----------------------------------------------------------------------- */
3685 static void modtec_eeprom(struct bttv
*btv
)
3687 if( strncmp(&(eeprom_data
[0x1e]),"Temic 4066 FY5",14) ==0) {
3688 btv
->tuner_type
=TUNER_TEMIC_4066FY5_PAL_I
;
3689 pr_info("%d: Modtec: Tuner autodetected by eeprom: %s\n",
3690 btv
->c
.nr
, &eeprom_data
[0x1e]);
3691 } else if (strncmp(&(eeprom_data
[0x1e]),"Alps TSBB5",10) ==0) {
3692 btv
->tuner_type
=TUNER_ALPS_TSBB5_PAL_I
;
3693 pr_info("%d: Modtec: Tuner autodetected by eeprom: %s\n",
3694 btv
->c
.nr
, &eeprom_data
[0x1e]);
3695 } else if (strncmp(&(eeprom_data
[0x1e]),"Philips FM1246",14) ==0) {
3696 btv
->tuner_type
=TUNER_PHILIPS_NTSC
;
3697 pr_info("%d: Modtec: Tuner autodetected by eeprom: %s\n",
3698 btv
->c
.nr
, &eeprom_data
[0x1e]);
3700 pr_info("%d: Modtec: Unknown TunerString: %s\n",
3701 btv
->c
.nr
, &eeprom_data
[0x1e]);
3705 static void __devinit
hauppauge_eeprom(struct bttv
*btv
)
3709 tveeprom_hauppauge_analog(&btv
->i2c_client
, &tv
, eeprom_data
);
3710 btv
->tuner_type
= tv
.tuner_type
;
3711 btv
->has_radio
= tv
.has_radio
;
3713 pr_info("%d: Hauppauge eeprom indicates model#%d\n",
3714 btv
->c
.nr
, tv
.model
);
3717 * Some of the 878 boards have duplicate PCI IDs. Switch the board
3718 * type based on model #.
3720 if(tv
.model
== 64900) {
3721 pr_info("%d: Switching board type from %s to %s\n",
3723 bttv_tvcards
[btv
->c
.type
].name
,
3724 bttv_tvcards
[BTTV_BOARD_HAUPPAUGE_IMPACTVCB
].name
);
3725 btv
->c
.type
= BTTV_BOARD_HAUPPAUGE_IMPACTVCB
;
3729 static int terratec_active_radio_upgrade(struct bttv
*btv
)
3734 btv
->has_matchbox
= 1;
3735 btv
->mbox_we
= 0x10;
3736 btv
->mbox_most
= 0x20;
3737 btv
->mbox_clk
= 0x08;
3738 btv
->mbox_data
= 0x04;
3739 btv
->mbox_mask
= 0x3c;
3741 btv
->mbox_iow
= 1 << 8;
3742 btv
->mbox_ior
= 1 << 9;
3743 btv
->mbox_csel
= 1 << 10;
3746 tea5757_write(btv
, 5 * freq
+ 0x358); /* write 0x1ed8 */
3747 if (0x1ed8 == tea5757_read(btv
)) {
3748 pr_info("%d: Terratec Active Radio Upgrade found\n", btv
->c
.nr
);
3750 btv
->has_saa6588
= 1;
3751 btv
->has_matchbox
= 1;
3754 btv
->has_matchbox
= 0;
3760 /* ----------------------------------------------------------------------- */
3763 * minimal bootstrap for the WinTV/PVR -- upload altera firmware.
3765 * The hcwamc.rbf firmware file is on the Hauppauge driver CD. Have
3766 * a look at Pvr/pvr45xxx.EXE (self-extracting zip archive, can be
3767 * unpacked with unzip).
3769 #define PVR_GPIO_DELAY 10
3771 #define BTTV_ALT_DATA 0x000001
3772 #define BTTV_ALT_DCLK 0x100000
3773 #define BTTV_ALT_NCONFIG 0x800000
3775 static int __devinit
pvr_altera_load(struct bttv
*btv
, const u8
*micro
,
3782 gpio_inout(0xffffff,BTTV_ALT_DATA
|BTTV_ALT_DCLK
|BTTV_ALT_NCONFIG
);
3784 udelay(PVR_GPIO_DELAY
);
3786 gpio_write(BTTV_ALT_NCONFIG
);
3787 udelay(PVR_GPIO_DELAY
);
3789 for (n
= 0; n
< microlen
; n
++) {
3791 for (i
= 0 ; i
< 8 ; i
++) {
3792 gpio_bits(BTTV_ALT_DCLK
,0);
3794 gpio_bits(BTTV_ALT_DATA
,BTTV_ALT_DATA
);
3796 gpio_bits(BTTV_ALT_DATA
,0);
3797 gpio_bits(BTTV_ALT_DCLK
,BTTV_ALT_DCLK
);
3801 gpio_bits(BTTV_ALT_DCLK
,0);
3802 udelay(PVR_GPIO_DELAY
);
3804 /* begin Altera init loop (Not necessary,but doesn't hurt) */
3805 for (i
= 0 ; i
< 30 ; i
++) {
3806 gpio_bits(BTTV_ALT_DCLK
,0);
3807 gpio_bits(BTTV_ALT_DCLK
,BTTV_ALT_DCLK
);
3809 gpio_bits(BTTV_ALT_DCLK
,0);
3813 static int __devinit
pvr_boot(struct bttv
*btv
)
3815 const struct firmware
*fw_entry
;
3818 rc
= request_firmware(&fw_entry
, "hcwamc.rbf", &btv
->c
.pci
->dev
);
3820 pr_warn("%d: no altera firmware [via hotplug]\n", btv
->c
.nr
);
3823 rc
= pvr_altera_load(btv
, fw_entry
->data
, fw_entry
->size
);
3824 pr_info("%d: altera firmware upload %s\n",
3825 btv
->c
.nr
, (rc
< 0) ? "failed" : "ok");
3826 release_firmware(fw_entry
);
3830 /* ----------------------------------------------------------------------- */
3831 /* some osprey specific stuff */
3833 static void __devinit
osprey_eeprom(struct bttv
*btv
, const u8 ee
[256])
3839 /* This code will nevery actually get called in this case.... */
3840 if (btv
->c
.type
== BTTV_BOARD_UNKNOWN
) {
3841 /* this might be an antique... check for MMAC label in eeprom */
3842 if (!strncmp(ee
, "MMAC", 4)) {
3844 for (i
= 0; i
< 21; i
++)
3846 if (checksum
!= ee
[21])
3848 cardid
= BTTV_BOARD_OSPREY1x0_848
;
3849 for (i
= 12; i
< 21; i
++)
3850 serial
*= 10, serial
+= ee
[i
] - '0';
3853 unsigned short type
;
3855 for (i
= 4*16; i
< 8*16; i
+= 16) {
3856 u16 checksum
= ip_compute_csum(ee
+ i
, 16);
3858 if ((checksum
&0xff) + (checksum
>>8) == 0xff)
3865 /* found a valid descriptor */
3866 type
= get_unaligned_be16((__be16
*)(ee
+4));
3871 cardid
= BTTV_BOARD_OSPREY1x0_848
;
3874 cardid
= BTTV_BOARD_OSPREY101_848
;
3880 cardid
= BTTV_BOARD_OSPREY1x0
;
3884 cardid
= BTTV_BOARD_OSPREY1x1
;
3889 cardid
= BTTV_BOARD_OSPREY1x1_SVID
;
3895 cardid
= BTTV_BOARD_OSPREY2xx
;
3899 cardid
= BTTV_BOARD_OSPREY2x0_SVID
;
3902 cardid
= BTTV_BOARD_OSPREY500
;
3906 cardid
= BTTV_BOARD_OSPREY540
;
3907 /* bttv_osprey_540_init(btv); */
3912 cardid
= BTTV_BOARD_OSPREY2x0
;
3913 /* enable output on select control lines */
3914 gpio_inout(0xffffff,0x000303);
3917 cardid
= BTTV_BOARD_OSPREY440
;
3920 /* unknown...leave generic, but get serial # */
3921 pr_info("%d: osprey eeprom: unknown card type 0x%04x\n",
3925 serial
= get_unaligned_be32((__be32
*)(ee
+6));
3928 pr_info("%d: osprey eeprom: card=%d '%s' serial=%u\n",
3930 cardid
> 0 ? bttv_tvcards
[cardid
].name
: "Unknown", serial
);
3932 if (cardid
<0 || btv
->c
.type
== cardid
)
3935 /* card type isn't set correctly */
3936 if (card
[btv
->c
.nr
] < bttv_num_tvcards
) {
3937 pr_warn("%d: osprey eeprom: Not overriding user specified card type\n",
3940 pr_info("%d: osprey eeprom: Changing card type from %d to %d\n",
3941 btv
->c
.nr
, btv
->c
.type
, cardid
);
3942 btv
->c
.type
= cardid
;
3946 /* ----------------------------------------------------------------------- */
3947 /* AVermedia specific stuff, from bktr_card.c */
3949 static int tuner_0_table
[] = {
3950 TUNER_PHILIPS_NTSC
, TUNER_PHILIPS_PAL
/* PAL-BG*/,
3951 TUNER_PHILIPS_PAL
, TUNER_PHILIPS_PAL
/* PAL-I*/,
3952 TUNER_PHILIPS_PAL
, TUNER_PHILIPS_PAL
,
3953 TUNER_PHILIPS_SECAM
, TUNER_PHILIPS_SECAM
,
3954 TUNER_PHILIPS_SECAM
, TUNER_PHILIPS_PAL
,
3955 TUNER_PHILIPS_FM1216ME_MK3
};
3957 static int tuner_1_table
[] = {
3958 TUNER_TEMIC_NTSC
, TUNER_TEMIC_PAL
,
3959 TUNER_TEMIC_PAL
, TUNER_TEMIC_PAL
,
3960 TUNER_TEMIC_PAL
, TUNER_TEMIC_PAL
,
3961 TUNER_TEMIC_4012FY5
, TUNER_TEMIC_4012FY5
, /* TUNER_TEMIC_SECAM */
3962 TUNER_TEMIC_4012FY5
, TUNER_TEMIC_PAL
};
3964 static void __devinit
avermedia_eeprom(struct bttv
*btv
)
3966 int tuner_make
, tuner_tv_fm
, tuner_format
, tuner_type
= 0;
3968 tuner_make
= (eeprom_data
[0x41] & 0x7);
3969 tuner_tv_fm
= (eeprom_data
[0x41] & 0x18) >> 3;
3970 tuner_format
= (eeprom_data
[0x42] & 0xf0) >> 4;
3971 btv
->has_remote
= (eeprom_data
[0x42] & 0x01);
3973 if (tuner_make
== 0 || tuner_make
== 2)
3974 if (tuner_format
<= 0x0a)
3975 tuner_type
= tuner_0_table
[tuner_format
];
3976 if (tuner_make
== 1)
3977 if (tuner_format
<= 9)
3978 tuner_type
= tuner_1_table
[tuner_format
];
3980 if (tuner_make
== 4)
3981 if (tuner_format
== 0x09)
3982 tuner_type
= TUNER_LG_NTSC_NEW_TAPC
; /* TAPC-G702P */
3984 pr_info("%d: Avermedia eeprom[0x%02x%02x]: tuner=",
3985 btv
->c
.nr
, eeprom_data
[0x41], eeprom_data
[0x42]);
3987 btv
->tuner_type
= tuner_type
;
3988 pr_cont("%d", tuner_type
);
3990 pr_cont("Unknown type");
3991 pr_cont(" radio:%s remote control:%s\n",
3992 tuner_tv_fm
? "yes" : "no",
3993 btv
->has_remote
? "yes" : "no");
3997 * For Voodoo TV/FM and Voodoo 200. These cards' tuners use a TDA9880
3998 * analog demod, which is not I2C controlled like the newer and more common
3999 * TDA9887 series. Instead is has two tri-state input pins, S0 and S1,
4000 * that control the IF for the video and audio. Apparently, bttv GPIO
4001 * 0x10000 is connected to S0. S0 low selects a 38.9 MHz VIF for B/G/D/K/I
4002 * (i.e., PAL) while high selects 45.75 MHz for M/N (i.e., NTSC).
4004 u32
bttv_tda9880_setnorm(struct bttv
*btv
, u32 gpiobits
)
4007 if (btv
->audio
== TVAUDIO_INPUT_TUNER
) {
4008 if (bttv_tvnorms
[btv
->tvnorm
].v4l2_id
& V4L2_STD_MN
)
4009 gpiobits
|= 0x10000;
4011 gpiobits
&= ~0x10000;
4014 gpio_bits(bttv_tvcards
[btv
->c
.type
].gpiomask
, gpiobits
);
4020 * reset/enable the MSP on some Hauppauge cards
4021 * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
4026 static void __devinit
boot_msp34xx(struct bttv
*btv
, int pin
)
4028 int mask
= (1 << pin
);
4030 gpio_inout(mask
,mask
);
4034 gpio_bits(mask
,mask
);
4037 bttv_gpio_tracking(btv
,"msp34xx");
4039 pr_info("%d: Hauppauge/Voodoo msp34xx: reset line init [%d]\n",
4043 /* ----------------------------------------------------------------------- */
4044 /* Imagenation L-Model PXC200 Framegrabber */
4045 /* This is basically the same procedure as
4046 * used by Alessandro Rubini in his pxc200
4047 * driver, but using BTTV functions */
4049 static void __devinit
init_PXC200(struct bttv
*btv
)
4051 static int vals
[] __devinitdata
= { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d,
4052 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
4058 /* Initialise GPIO-connevted stuff */
4059 gpio_inout(0xffffff, (1<<13));
4063 /* GPIO inputs are pulled up, so no need to drive
4064 * reset pin any longer */
4065 gpio_bits(0xffffff, 0);
4067 bttv_gpio_tracking(btv
,"pxc200");
4069 /* we could/should try and reset/control the AD pots? but
4070 right now we simply turned off the crushing. Without
4071 this the AGC drifts drifts
4072 remember the EN is reverse logic -->
4073 setting BT848_ADC_AGC_EN disable the AGC
4074 tboult@eecs.lehigh.edu
4077 btwrite(BT848_ADC_RESERVED
|BT848_ADC_AGC_EN
, BT848_ADC
);
4079 /* Initialise MAX517 DAC */
4080 pr_info("Setting DAC reference voltage level ...\n");
4081 bttv_I2CWrite(btv
,0x5E,0,0x80,1);
4083 /* Initialise 12C508 PIC */
4084 /* The I2CWrite and I2CRead commmands are actually to the
4085 * same chips - but the R/W bit is included in the address
4086 * argument so the numbers are different */
4089 pr_info("Initialising 12C508 PIC chip ...\n");
4091 /* First of all, enable the clock line. This is used in the PXC200-F */
4092 val
= btread(BT848_GPIO_DMA_CTL
);
4093 val
|= BT848_GPIO_DMA_CTL_GPCLKMODE
;
4094 btwrite(val
, BT848_GPIO_DMA_CTL
);
4096 /* Then, push to 0 the reset pin long enough to reset the *
4097 * device same as above for the reset line, but not the same
4098 * value sent to the GPIO-connected stuff
4099 * which one is the good one? */
4100 gpio_inout(0xffffff,(1<<2));
4105 for (i
= 0; i
< ARRAY_SIZE(vals
); i
++) {
4106 tmp
=bttv_I2CWrite(btv
,0x1E,0,vals
[i
],1);
4108 pr_info("I2C Write(%2.2x) = %i\nI2C Read () = %2.2x\n\n",
4109 vals
[i
],tmp
,bttv_I2CRead(btv
,0x1F,NULL
));
4113 pr_info("PXC200 Initialised\n");
4118 /* ----------------------------------------------------------------------- */
4120 * The Adlink RTV-24 (aka Angelo) has some special initialisation to unlock
4121 * it. This apparently involves the following procedure for each 878 chip:
4123 * 1) write 0x00C3FEFF to the GPIO_OUT_EN register
4125 * 2) write to GPIO_DATA
4131 * read from GPIO_DATA into buf (uint_32)
4132 * - if ( data>>18 & 0x01 != 0) || ( buf>>19 & 0x01 != 1 )
4133 * error. ERROR_CPLD_Check_Failed stop.
4135 * 3) write to GPIO_DATA
4136 * - write 0x4400 + 0x0E
4138 * - write 0x4410 + 0x0E
4141 * read from GPIO_DATA into buf (uint_32)
4142 * - if ( buf>>18 & 0x01 ) || ( buf>>19 & 0x01 != 0 )
4143 * error. ERROR_CPLD_Check_Failed.
4145 /* ----------------------------------------------------------------------- */
4147 init_RTV24 (struct bttv
*btv
)
4149 uint32_t dataRead
= 0;
4150 long watchdog_value
= 0x0E;
4152 pr_info("%d: Adlink RTV-24 initialisation in progress ...\n",
4155 btwrite (0x00c3feff, BT848_GPIO_OUT_EN
);
4157 btwrite (0 + watchdog_value
, BT848_GPIO_DATA
);
4159 btwrite (0x10 + watchdog_value
, BT848_GPIO_DATA
);
4161 btwrite (0 + watchdog_value
, BT848_GPIO_DATA
);
4163 dataRead
= btread (BT848_GPIO_DATA
);
4165 if ((((dataRead
>> 18) & 0x01) != 0) || (((dataRead
>> 19) & 0x01) != 1)) {
4166 pr_info("%d: Adlink RTV-24 initialisation(1) ERROR_CPLD_Check_Failed (read %d)\n",
4167 btv
->c
.nr
, dataRead
);
4170 btwrite (0x4400 + watchdog_value
, BT848_GPIO_DATA
);
4172 btwrite (0x4410 + watchdog_value
, BT848_GPIO_DATA
);
4174 btwrite (watchdog_value
, BT848_GPIO_DATA
);
4176 dataRead
= btread (BT848_GPIO_DATA
);
4178 if ((((dataRead
>> 18) & 0x01) != 0) || (((dataRead
>> 19) & 0x01) != 0)) {
4179 pr_info("%d: Adlink RTV-24 initialisation(2) ERROR_CPLD_Check_Failed (read %d)\n",
4180 btv
->c
.nr
, dataRead
);
4185 pr_info("%d: Adlink RTV-24 initialisation complete\n", btv
->c
.nr
);
4190 /* ----------------------------------------------------------------------- */
4191 /* Miro Pro radio stuff -- the tea5757 is connected to some GPIO ports */
4193 * Copyright (c) 1999 Csaba Halasz <qgehali@uni-miskolc.hu>
4194 * This code is placed under the terms of the GNU General Public License
4196 * Brutally hacked by Dan Sheridan <dan.sheridan@contact.org.uk> djs52 8/3/00
4199 static void bus_low(struct bttv
*btv
, int bit
)
4201 if (btv
->mbox_ior
) {
4202 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4203 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4210 if (btv
->mbox_ior
) {
4211 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4216 static void bus_high(struct bttv
*btv
, int bit
)
4218 if (btv
->mbox_ior
) {
4219 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4220 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4227 if (btv
->mbox_ior
) {
4228 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4233 static int bus_in(struct bttv
*btv
, int bit
)
4235 if (btv
->mbox_ior
) {
4236 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4237 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4240 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4243 return gpio_read() & (bit
);
4246 /* TEA5757 register bits */
4247 #define TEA_FREQ 0:14
4248 #define TEA_BUFFER 15:15
4250 #define TEA_SIGNAL_STRENGTH 16:17
4252 #define TEA_PORT1 18:18
4253 #define TEA_PORT0 19:19
4255 #define TEA_BAND 20:21
4256 #define TEA_BAND_FM 0
4257 #define TEA_BAND_MW 1
4258 #define TEA_BAND_LW 2
4259 #define TEA_BAND_SW 3
4261 #define TEA_MONO 22:22
4262 #define TEA_ALLOW_STEREO 0
4263 #define TEA_FORCE_MONO 1
4265 #define TEA_SEARCH_DIRECTION 23:23
4266 #define TEA_SEARCH_DOWN 0
4267 #define TEA_SEARCH_UP 1
4269 #define TEA_STATUS 24:24
4270 #define TEA_STATUS_TUNED 0
4271 #define TEA_STATUS_SEARCHING 1
4273 /* Low-level stuff */
4274 static int tea5757_read(struct bttv
*btv
)
4276 unsigned long timeout
;
4280 /* better safe than sorry */
4281 gpio_inout(btv
->mbox_mask
, btv
->mbox_clk
| btv
->mbox_we
);
4283 if (btv
->mbox_ior
) {
4284 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4285 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4290 bttv_gpio_tracking(btv
,"tea5757 read");
4292 bus_low(btv
,btv
->mbox_we
);
4293 bus_low(btv
,btv
->mbox_clk
);
4296 timeout
= jiffies
+ msecs_to_jiffies(1000);
4298 /* wait for DATA line to go low; error if it doesn't */
4299 while (bus_in(btv
,btv
->mbox_data
) && time_before(jiffies
, timeout
))
4301 if (bus_in(btv
,btv
->mbox_data
)) {
4302 pr_warn("%d: tea5757: read timeout\n", btv
->c
.nr
);
4306 dprintk("%d: tea5757:", btv
->c
.nr
);
4307 for (i
= 0; i
< 24; i
++) {
4309 bus_high(btv
,btv
->mbox_clk
);
4312 bus_in(btv
, btv
->mbox_most
) == 0 ? 'T' : '-');
4313 bus_low(btv
,btv
->mbox_clk
);
4315 value
|= (bus_in(btv
,btv
->mbox_data
) == 0)?0:1; /* MSB first */
4317 bus_in(btv
, btv
->mbox_most
) == 0 ? 'S' : 'M');
4320 dprintk("%d: tea5757: read 0x%X\n", btv
->c
.nr
, value
);
4324 static int tea5757_write(struct bttv
*btv
, int value
)
4329 gpio_inout(btv
->mbox_mask
, btv
->mbox_clk
| btv
->mbox_we
| btv
->mbox_data
);
4331 if (btv
->mbox_ior
) {
4332 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4333 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4337 bttv_gpio_tracking(btv
,"tea5757 write");
4339 dprintk("%d: tea5757: write 0x%X\n", btv
->c
.nr
, value
);
4340 bus_low(btv
,btv
->mbox_clk
);
4341 bus_high(btv
,btv
->mbox_we
);
4342 for (i
= 0; i
< 25; i
++) {
4343 if (reg
& 0x1000000)
4344 bus_high(btv
,btv
->mbox_data
);
4346 bus_low(btv
,btv
->mbox_data
);
4348 bus_high(btv
,btv
->mbox_clk
);
4350 bus_low(btv
,btv
->mbox_clk
);
4353 bus_low(btv
,btv
->mbox_we
); /* unmute !!! */
4357 void tea5757_set_freq(struct bttv
*btv
, unsigned short freq
)
4359 dprintk("tea5757_set_freq %d\n",freq
);
4360 tea5757_write(btv
, 5 * freq
+ 0x358); /* add 10.7MHz (see docs) */
4363 /* RemoteVision MX (rv605) muxsel helper [Miguel Freitas]
4365 * This is needed because rv605 don't use a normal multiplex, but a crosspoint
4366 * switch instead (CD22M3494E). This IC can have multiple active connections
4367 * between Xn (input) and Yn (output) pins. We need to clear any existing
4368 * connection prior to establish a new one, pulsing the STROBE pin.
4370 * The board hardwire Y0 (xpoint) to MUX1 and MUXOUT to Yin.
4371 * GPIO pins are wired as:
4372 * GPIO[0:3] - AX[0:3] (xpoint) - P1[0:3] (microcontroller)
4373 * GPIO[4:6] - AY[0:2] (xpoint) - P1[4:6] (microcontroller)
4374 * GPIO[7] - DATA (xpoint) - P1[7] (microcontroller)
4375 * GPIO[8] - - P3[5] (microcontroller)
4376 * GPIO[9] - RESET (xpoint) - P3[6] (microcontroller)
4377 * GPIO[10] - STROBE (xpoint) - P3[7] (microcontroller)
4378 * GPINTR - - P3[4] (microcontroller)
4380 * The microcontroller is a 80C32 like. It should be possible to change xpoint
4381 * configuration either directly (as we are doing) or using the microcontroller
4382 * which is also wired to I2C interface. I have no further info on the
4383 * microcontroller features, one would need to disassembly the firmware.
4384 * note: the vendor refused to give any information on this product, all
4385 * that stuff was found using a multimeter! :)
4387 static void rv605_muxsel(struct bttv
*btv
, unsigned int input
)
4389 static const u8 muxgpio
[] = { 0x3, 0x1, 0x2, 0x4, 0xf, 0x7, 0xe, 0x0,
4390 0xd, 0xb, 0xc, 0x6, 0x9, 0x5, 0x8, 0xa };
4392 gpio_bits(0x07f, muxgpio
[input
]);
4394 /* reset all conections */
4395 gpio_bits(0x200,0x200);
4397 gpio_bits(0x200,0x000);
4400 /* create a new connection */
4401 gpio_bits(0x480,0x480);
4403 gpio_bits(0x480,0x080);
4407 /* Tibet Systems 'Progress DVR' CS16 muxsel helper [Chris Fanning]
4409 * The CS16 (available on eBay cheap) is a PCI board with four Fusion
4410 * 878A chips, a PCI bridge, an Atmel microcontroller, four sync separator
4411 * chips, ten eight input analog multiplexors, a not chip and a few
4414 * 16 inputs on a secondary bracket are provided and can be selected
4415 * from each of the four capture chips. Two of the eight input
4416 * multiplexors are used to select from any of the 16 input signals.
4418 * Unsupported hardware capabilities:
4419 * . A video output monitor on the secondary bracket can be selected from
4420 * one of the 878A chips.
4421 * . Another passthrough but I haven't spent any time investigating it.
4422 * . Digital I/O (logic level connected to GPIO) is available from an
4425 * The on chip input mux should always be set to 2.
4426 * GPIO[16:19] - Video input selection
4427 * GPIO[0:3] - Video output monitor select (only available from one 878A)
4428 * GPIO[?:?] - Digital I/O.
4430 * There is an ATMEL microcontroller with an 8031 core on board. I have not
4431 * determined what function (if any) it provides. With the microcontroller
4432 * and sync separator chips a guess is that it might have to do with video
4433 * switching and maybe some digital I/O.
4435 static void tibetCS16_muxsel(struct bttv
*btv
, unsigned int input
)
4438 gpio_bits(0x0f0000, input
<< 16);
4441 static void tibetCS16_init(struct bttv
*btv
)
4443 /* enable gpio bits, mask obtained via btSpy */
4444 gpio_inout(0xffffff, 0x0f7fff);
4445 gpio_write(0x0f7fff);
4449 * The following routines for the Kodicom-4400r get a little mind-twisting.
4450 * There is a "master" controller and three "slave" controllers, together
4451 * an analog switch which connects any of 16 cameras to any of the BT87A's.
4452 * The analog switch is controlled by the "master", but the detection order
4453 * of the four BT878A chips is in an order which I just don't understand.
4454 * The "master" is actually the second controller to be detected. The
4455 * logic on the board uses logical numbers for the 4 controllers, but
4456 * those numbers are different from the detection sequence. When working
4457 * with the analog switch, we need to "map" from the detection sequence
4458 * over to the board's logical controller number. This mapping sequence
4459 * is {3, 0, 2, 1}, i.e. the first controller to be detected is logical
4460 * unit 3, the second (which is the master) is logical unit 0, etc.
4461 * We need to maintain the status of the analog switch (which of the 16
4462 * cameras is connected to which of the 4 controllers). Rather than
4463 * add to the bttv structure for this, we use the data reserved for
4464 * the mbox (unused for this card type).
4468 * First a routine to set the analog switch, which controls which camera
4469 * is routed to which controller. The switch comprises an X-address
4470 * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4471 * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4472 * A data value (gpio bit 7) of '1' enables the switch, and '0' disables
4473 * the switch. A STROBE bit (gpio bit 8) latches the data value into the
4474 * specified address. The idea is to set the address and data, then bring
4475 * STROBE high, and finally bring STROBE back to low.
4477 static void kodicom4400r_write(struct bttv
*btv
,
4478 unsigned char xaddr
,
4479 unsigned char yaddr
,
4480 unsigned char data
) {
4483 udata
= (data
<< 7) | ((yaddr
&3) << 4) | (xaddr
&0xf);
4484 gpio_bits(0x1ff, udata
); /* write ADDR and DAT */
4485 gpio_bits(0x1ff, udata
| (1 << 8)); /* strobe high */
4486 gpio_bits(0x1ff, udata
); /* strobe low */
4490 * Next the mux select. Both the "master" and "slave" 'cards' (controllers)
4491 * use this routine. The routine finds the "master" for the card, maps
4492 * the controller number from the detected position over to the logical
4493 * number, writes the appropriate data to the analog switch, and housekeeps
4494 * the local copy of the switch information. The parameter 'input' is the
4495 * requested camera number (0 - 15).
4497 static void kodicom4400r_muxsel(struct bttv
*btv
, unsigned int input
)
4502 static unsigned char map
[4] = {3, 0, 2, 1};
4504 mctlr
= master
[btv
->c
.nr
];
4505 if (mctlr
== NULL
) { /* ignore if master not yet detected */
4508 yaddr
= (btv
->c
.nr
- mctlr
->c
.nr
+ 1) & 3; /* the '&' is for safety */
4510 sw_status
= (char *)(&mctlr
->mbox_we
);
4511 xaddr
= input
& 0xf;
4512 /* Check if the controller/camera pair has changed, else ignore */
4513 if (sw_status
[yaddr
] != xaddr
)
4515 /* "open" the old switch, "close" the new one, save the new */
4516 kodicom4400r_write(mctlr
, sw_status
[yaddr
], yaddr
, 0);
4517 sw_status
[yaddr
] = xaddr
;
4518 kodicom4400r_write(mctlr
, xaddr
, yaddr
, 1);
4523 * During initialisation, we need to reset the analog switch. We
4524 * also preset the switch to map the 4 connectors on the card to the
4525 * *user's* (see above description of kodicom4400r_muxsel) channels
4528 static void kodicom4400r_init(struct bttv
*btv
)
4530 char *sw_status
= (char *)(&btv
->mbox_we
);
4533 gpio_inout(0x0003ff, 0x0003ff);
4534 gpio_write(1 << 9); /* reset MUX */
4536 /* Preset camera 0 to the 4 controllers */
4537 for (ix
= 0; ix
< 4; ix
++) {
4539 kodicom4400r_write(btv
, ix
, ix
, 1);
4542 * Since this is the "master", we need to set up the
4543 * other three controller chips' pointers to this structure
4544 * for later use in the muxsel routine.
4546 if ((btv
->c
.nr
<1) || (btv
->c
.nr
>BTTV_MAX
-3))
4548 master
[btv
->c
.nr
-1] = btv
;
4549 master
[btv
->c
.nr
] = btv
;
4550 master
[btv
->c
.nr
+1] = btv
;
4551 master
[btv
->c
.nr
+2] = btv
;
4554 /* The Grandtec X-Guard framegrabber card uses two Dual 4-channel
4555 * video multiplexers to provide up to 16 video inputs. These
4556 * multiplexers are controlled by the lower 8 GPIO pins of the
4557 * bt878. The multiplexers probably Pericom PI5V331Q or similar.
4559 * xxx0 is pin xxx of multiplexer U5,
4560 * yyy1 is pin yyy of multiplexer U2
4572 static void xguard_muxsel(struct bttv
*btv
, unsigned int input
)
4574 static const int masks
[] = {
4575 ENB0
, ENB0
|IN00
, ENB0
|IN10
, ENB0
|IN00
|IN10
,
4576 ENA0
, ENA0
|IN00
, ENA0
|IN10
, ENA0
|IN00
|IN10
,
4577 ENB1
, ENB1
|IN01
, ENB1
|IN11
, ENB1
|IN01
|IN11
,
4578 ENA1
, ENA1
|IN01
, ENA1
|IN11
, ENA1
|IN01
|IN11
,
4580 gpio_write(masks
[input
%16]);
4582 static void picolo_tetra_init(struct bttv
*btv
)
4584 /*This is the video input redirection fonctionality : I DID NOT USED IT. */
4585 btwrite (0x08<<16,BT848_GPIO_DATA
);/*GPIO[19] [==> 4053 B+C] set to 1 */
4586 btwrite (0x04<<16,BT848_GPIO_DATA
);/*GPIO[18] [==> 4053 A] set to 1*/
4588 static void picolo_tetra_muxsel (struct bttv
* btv
, unsigned int input
)
4591 dprintk("%d : picolo_tetra_muxsel => input = %d\n", btv
->c
.nr
, input
);
4592 /*Just set the right path in the analog multiplexers : channel 1 -> 4 ==> Analog Mux ==> MUX0*/
4593 /*GPIO[20]&GPIO[21] used to choose the right input*/
4594 btwrite (input
<<20,BT848_GPIO_DATA
);
4599 * ivc120_muxsel [Added by Alan Garfield <alan@fromorbit.com>]
4601 * The IVC120G security card has 4 i2c controlled TDA8540 matrix
4602 * swichers to provide 16 channels to MUX0. The TDA8540's have
4603 * 4 independent outputs and as such the IVC120G also has the
4604 * optional "Monitor Out" bus. This allows the card to be looking
4605 * at one input while the monitor is looking at another.
4607 * Since I've couldn't be bothered figuring out how to add an
4608 * independent muxsel for the monitor bus, I've just set it to
4609 * whatever the card is looking at.
4611 * OUT0 of the TDA8540's is connected to MUX0 (0x03)
4612 * OUT1 of the TDA8540's is connected to "Monitor Out" (0x0C)
4614 * TDA8540_ALT3 IN0-3 = Channel 13 - 16 (0x03)
4615 * TDA8540_ALT4 IN0-3 = Channel 1 - 4 (0x03)
4616 * TDA8540_ALT5 IN0-3 = Channel 5 - 8 (0x03)
4617 * TDA8540_ALT6 IN0-3 = Channel 9 - 12 (0x03)
4621 /* All 7 possible sub-ids for the TDA8540 Matrix Switcher */
4622 #define I2C_TDA8540 0x90
4623 #define I2C_TDA8540_ALT1 0x92
4624 #define I2C_TDA8540_ALT2 0x94
4625 #define I2C_TDA8540_ALT3 0x96
4626 #define I2C_TDA8540_ALT4 0x98
4627 #define I2C_TDA8540_ALT5 0x9a
4628 #define I2C_TDA8540_ALT6 0x9c
4630 static void ivc120_muxsel(struct bttv
*btv
, unsigned int input
)
4633 int key
= input
% 4;
4634 int matrix
= input
/ 4;
4636 dprintk("%d: ivc120_muxsel: Input - %02d | TDA - %02d | In - %02d\n",
4637 btv
->c
.nr
, input
, matrix
, key
);
4639 /* Handles the input selection on the TDA8540's */
4640 bttv_I2CWrite(btv
, I2C_TDA8540_ALT3
, 0x00,
4641 ((matrix
== 3) ? (key
| key
<< 2) : 0x00), 1);
4642 bttv_I2CWrite(btv
, I2C_TDA8540_ALT4
, 0x00,
4643 ((matrix
== 0) ? (key
| key
<< 2) : 0x00), 1);
4644 bttv_I2CWrite(btv
, I2C_TDA8540_ALT5
, 0x00,
4645 ((matrix
== 1) ? (key
| key
<< 2) : 0x00), 1);
4646 bttv_I2CWrite(btv
, I2C_TDA8540_ALT6
, 0x00,
4647 ((matrix
== 2) ? (key
| key
<< 2) : 0x00), 1);
4649 /* Handles the output enables on the TDA8540's */
4650 bttv_I2CWrite(btv
, I2C_TDA8540_ALT3
, 0x02,
4651 ((matrix
== 3) ? 0x03 : 0x00), 1); /* 13 - 16 */
4652 bttv_I2CWrite(btv
, I2C_TDA8540_ALT4
, 0x02,
4653 ((matrix
== 0) ? 0x03 : 0x00), 1); /* 1-4 */
4654 bttv_I2CWrite(btv
, I2C_TDA8540_ALT5
, 0x02,
4655 ((matrix
== 1) ? 0x03 : 0x00), 1); /* 5-8 */
4656 bttv_I2CWrite(btv
, I2C_TDA8540_ALT6
, 0x02,
4657 ((matrix
== 2) ? 0x03 : 0x00), 1); /* 9-12 */
4659 /* 878's MUX0 is already selected for input via muxsel values */
4663 /* PXC200 muxsel helper
4664 * luke@syseng.anu.edu.au
4665 * another transplant
4666 * from Alessandro Rubini (rubini@linux.it)
4668 * There are 4 kinds of cards:
4669 * PXC200L which is bt848
4670 * PXC200F which is bt848 with PIC controlling mux
4671 * PXC200AL which is bt878
4672 * PXC200AF which is bt878 with PIC controlling mux
4674 #define PX_CFG_PXC200F 0x01
4675 #define PX_FLAG_PXC200A 0x00001000 /* a pxc200A is bt-878 based */
4676 #define PX_I2C_PIC 0x0f
4677 #define PX_PXC200A_CARDID 0x200a1295
4678 #define PX_I2C_CMD_CFG 0x00
4680 static void PXC200_muxsel(struct bttv
*btv
, unsigned int input
)
4685 unsigned char buf
[2];
4687 /* Read PIC config to determine if this is a PXC200F */
4691 rc
=bttv_I2CWrite(btv
,(PX_I2C_PIC
<<1),buf
[0],buf
[1],1);
4693 pr_debug("%d: PXC200_muxsel: pic cfg write failed:%d\n",
4695 /* not PXC ? do nothing */
4699 rc
=bttv_I2CRead(btv
,(PX_I2C_PIC
<<1),NULL
);
4700 if (!(rc
& PX_CFG_PXC200F
)) {
4701 pr_debug("%d: PXC200_muxsel: not PXC200F rc:%d\n",
4707 /* The multiplexer in the 200F is handled by the GPIO port */
4708 /* get correct mapping between inputs */
4709 /* mux = bttv_tvcards[btv->type].muxsel[input] & 3; */
4710 /* ** not needed!? */
4713 /* make sure output pins are enabled */
4714 /* bitmask=0x30f; */
4716 /* check whether we have a PXC200A */
4717 if (btv
->cardid
== PX_PXC200A_CARDID
) {
4718 bitmask
^= 0x180; /* use 7 and 9, not 8 and 9 */
4719 bitmask
|= 7<<4; /* the DAC */
4721 btwrite(bitmask
, BT848_GPIO_OUT_EN
);
4723 bitmask
= btread(BT848_GPIO_DATA
);
4724 if (btv
->cardid
== PX_PXC200A_CARDID
)
4725 bitmask
= (bitmask
& ~0x280) | ((mux
& 2) << 8) | ((mux
& 1) << 7);
4726 else /* older device */
4727 bitmask
= (bitmask
& ~0x300) | ((mux
& 3) << 8);
4728 btwrite(bitmask
,BT848_GPIO_DATA
);
4731 * Was "to be safe, set the bt848 to input 0"
4732 * Actually, since it's ok at load time, better not messing
4733 * with these bits (on PXC200AF you need to set mux 2 here)
4735 * needed because bttv-driver sets mux before calling this function
4737 if (btv
->cardid
== PX_PXC200A_CARDID
)
4738 btaor(2<<5, ~BT848_IFORM_MUXSEL
, BT848_IFORM
);
4739 else /* older device */
4740 btand(~BT848_IFORM_MUXSEL
,BT848_IFORM
);
4742 pr_debug("%d: setting input channel to:%d\n", btv
->c
.nr
, (int)mux
);
4745 static void phytec_muxsel(struct bttv
*btv
, unsigned int input
)
4747 unsigned int mux
= input
% 4;
4749 if (input
== btv
->svhs
)
4752 gpio_bits(0x3, mux
);
4756 * GeoVision GV-800(S) functions
4757 * Bruno Christo <bchristo@inf.ufsm.br>
4760 /* This is a function to control the analog switch, which determines which
4761 * camera is routed to which controller. The switch comprises an X-address
4762 * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4763 * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4764 * A data value (gpio bit 18) of '1' enables the switch, and '0' disables
4765 * the switch. A STROBE bit (gpio bit 17) latches the data value into the
4766 * specified address. There is also a chip select (gpio bit 16).
4767 * The idea is to set the address and chip select together, bring
4768 * STROBE high, write the data, and finally bring STROBE back to low.
4770 static void gv800s_write(struct bttv
*btv
,
4771 unsigned char xaddr
,
4772 unsigned char yaddr
,
4773 unsigned char data
) {
4774 /* On the "master" 878A:
4775 * GPIO bits 0-9 are used for the analog switch:
4776 * 00 - 03: camera selector
4777 * 04 - 06: 878A (controller) selector
4780 * 18: data (1->on, 0->off)
4783 const u32 ADDRESS
= ((xaddr
&0xf) | (yaddr
&3)<<4);
4784 const u32 CSELECT
= 1<<16;
4785 const u32 STROBE
= 1<<17;
4786 const u32 DATA
= data
<<18;
4788 gpio_bits(0x1007f, ADDRESS
| CSELECT
); /* write ADDRESS and CSELECT */
4789 gpio_bits(0x20000, STROBE
); /* STROBE high */
4790 gpio_bits(0x40000, DATA
); /* write DATA */
4791 gpio_bits(0x20000, ~STROBE
); /* STROBE low */
4795 * GeoVision GV-800(S) muxsel
4797 * Each of the 4 cards (controllers) use this function.
4798 * The controller using this function selects the input through the GPIO pins
4799 * of the "master" card. A pointer to this card is stored in master[btv->c.nr].
4801 * The parameter 'input' is the requested camera number (0-4) on the controller.
4802 * The map array has the address of each input. Note that the addresses in the
4803 * array are in the sequence the original GeoVision driver uses, that is, set
4804 * every controller to input 0, then to input 1, 2, 3, repeat. This means that
4805 * the physical "camera 1" connector corresponds to controller 0 input 0,
4806 * "camera 2" corresponds to controller 1 input 0, and so on.
4808 * After getting the input address, the function then writes the appropriate
4809 * data to the analog switch, and housekeeps the local copy of the switch
4812 static void gv800s_muxsel(struct bttv
*btv
, unsigned int input
)
4817 static unsigned int map
[4][4] = { { 0x0, 0x4, 0xa, 0x6 },
4818 { 0x1, 0x5, 0xb, 0x7 },
4819 { 0x2, 0x8, 0xc, 0xe },
4820 { 0x3, 0x9, 0xd, 0xf } };
4822 mctlr
= master
[btv
->c
.nr
];
4823 if (mctlr
== NULL
) {
4824 /* do nothing until the "master" is detected */
4827 yaddr
= (btv
->c
.nr
- mctlr
->c
.nr
) & 3;
4828 sw_status
= (char *)(&mctlr
->mbox_we
);
4829 xaddr
= map
[yaddr
][input
] & 0xf;
4831 /* Check if the controller/camera pair has changed, ignore otherwise */
4832 if (sw_status
[yaddr
] != xaddr
) {
4833 /* disable the old switch, enable the new one and save status */
4834 gv800s_write(mctlr
, sw_status
[yaddr
], yaddr
, 0);
4835 sw_status
[yaddr
] = xaddr
;
4836 gv800s_write(mctlr
, xaddr
, yaddr
, 1);
4840 /* GeoVision GV-800(S) "master" chip init */
4841 static void gv800s_init(struct bttv
*btv
)
4843 char *sw_status
= (char *)(&btv
->mbox_we
);
4846 gpio_inout(0xf107f, 0xf107f);
4847 gpio_write(1<<19); /* reset the analog MUX */
4850 /* Preset camera 0 to the 4 controllers */
4851 for (ix
= 0; ix
< 4; ix
++) {
4853 gv800s_write(btv
, ix
, ix
, 1);
4856 /* Inputs on the "master" controller need this brightness fix */
4857 bttv_I2CWrite(btv
, 0x18, 0x5, 0x90, 1);
4859 if (btv
->c
.nr
> BTTV_MAX
-4)
4862 * Store the "master" controller pointer in the master
4863 * array for later use in the muxsel function.
4865 master
[btv
->c
.nr
] = btv
;
4866 master
[btv
->c
.nr
+1] = btv
;
4867 master
[btv
->c
.nr
+2] = btv
;
4868 master
[btv
->c
.nr
+3] = btv
;
4871 /* ----------------------------------------------------------------------- */
4872 /* motherboard chipset specific stuff */
4874 void __init
bttv_check_chipset(void)
4876 int pcipci_fail
= 0;
4877 struct pci_dev
*dev
= NULL
;
4879 if (pci_pci_problems
& (PCIPCI_FAIL
|PCIAGP_FAIL
)) /* should check if target is AGP */
4881 if (pci_pci_problems
& (PCIPCI_TRITON
|PCIPCI_NATOMA
|PCIPCI_VIAETBF
))
4883 if (pci_pci_problems
& PCIPCI_VSFX
)
4885 #ifdef PCIPCI_ALIMAGIK
4886 if (pci_pci_problems
& PCIPCI_ALIMAGIK
)
4891 /* print warnings about any quirks found */
4893 pr_info("Host bridge needs ETBF enabled\n");
4895 pr_info("Host bridge needs VSFX enabled\n");
4897 pr_info("bttv and your chipset may not work together\n");
4899 pr_info("overlay will be disabled\n");
4902 pr_info("overlay forced. Use this option at your own risk.\n");
4905 if (UNSET
!= latency
)
4906 pr_info("pci latency fixup [%d]\n", latency
);
4907 while ((dev
= pci_get_device(PCI_VENDOR_ID_INTEL
,
4908 PCI_DEVICE_ID_INTEL_82441
, dev
))) {
4910 pci_read_config_byte(dev
, 0x53, &b
);
4912 pr_info("Host bridge: 82441FX Natoma, bufcon=0x%02x\n",
4917 int __devinit
bttv_handle_chipset(struct bttv
*btv
)
4919 unsigned char command
;
4921 if (!triton1
&& !vsfx
&& UNSET
== latency
)
4926 pr_info("%d: enabling ETBF (430FX/VP3 compatibility)\n",
4928 if (vsfx
&& btv
->id
>= 878)
4929 pr_info("%d: enabling VSFX\n", btv
->c
.nr
);
4930 if (UNSET
!= latency
)
4931 pr_info("%d: setting pci timer to %d\n",
4932 btv
->c
.nr
, latency
);
4935 if (btv
->id
< 878) {
4936 /* bt848 (mis)uses a bit in the irq mask for etbf */
4938 btv
->triton1
= BT848_INT_ETBF
;
4940 /* bt878 has a bit in the pci config space for it */
4941 pci_read_config_byte(btv
->c
.pci
, BT878_DEVCTRL
, &command
);
4943 command
|= BT878_EN_TBFX
;
4945 command
|= BT878_EN_VSFX
;
4946 pci_write_config_byte(btv
->c
.pci
, BT878_DEVCTRL
, command
);
4948 if (UNSET
!= latency
)
4949 pci_write_config_byte(btv
->c
.pci
, PCI_LATENCY_TIMER
, latency
);