5 this file has configuration informations - card-specific stuff
6 like the big tvcards array for the most part
8 Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
9 & Marcus Metzler (mocm@thp.uni-koeln.de)
10 (c) 1999-2001 Gerd Knorr <kraxel@goldbach.in-berlin.de>
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <linux/delay.h>
29 #include <linux/module.h>
30 #include <linux/kmod.h>
31 #include <linux/init.h>
32 #include <linux/pci.h>
33 #include <linux/vmalloc.h>
34 #include <linux/firmware.h>
35 #include <net/checksum.h>
37 #include <asm/unaligned.h>
41 #include <media/v4l2-common.h>
42 #include <media/tvaudio.h>
43 #include "bttv-audio-hook.h"
46 static void boot_msp34xx(struct bttv
*btv
, int pin
);
47 static void boot_bt832(struct bttv
*btv
);
48 static void hauppauge_eeprom(struct bttv
*btv
);
49 static void avermedia_eeprom(struct bttv
*btv
);
50 static void osprey_eeprom(struct bttv
*btv
, const u8 ee
[256]);
51 static void modtec_eeprom(struct bttv
*btv
);
52 static void init_PXC200(struct bttv
*btv
);
53 static void init_RTV24(struct bttv
*btv
);
55 static void rv605_muxsel(struct bttv
*btv
, unsigned int input
);
56 static void eagle_muxsel(struct bttv
*btv
, unsigned int input
);
57 static void xguard_muxsel(struct bttv
*btv
, unsigned int input
);
58 static void ivc120_muxsel(struct bttv
*btv
, unsigned int input
);
59 static void gvc1100_muxsel(struct bttv
*btv
, unsigned int input
);
61 static void PXC200_muxsel(struct bttv
*btv
, unsigned int input
);
63 static void picolo_tetra_muxsel(struct bttv
*btv
, unsigned int input
);
64 static void picolo_tetra_init(struct bttv
*btv
);
66 static void tibetCS16_muxsel(struct bttv
*btv
, unsigned int input
);
67 static void tibetCS16_init(struct bttv
*btv
);
69 static void kodicom4400r_muxsel(struct bttv
*btv
, unsigned int input
);
70 static void kodicom4400r_init(struct bttv
*btv
);
72 static void sigmaSLC_muxsel(struct bttv
*btv
, unsigned int input
);
73 static void sigmaSQ_muxsel(struct bttv
*btv
, unsigned int input
);
75 static void geovision_muxsel(struct bttv
*btv
, unsigned int input
);
77 static int terratec_active_radio_upgrade(struct bttv
*btv
);
78 static int tea5757_read(struct bttv
*btv
);
79 static int tea5757_write(struct bttv
*btv
, int value
);
80 static void identify_by_eeprom(struct bttv
*btv
,
81 unsigned char eeprom_data
[256]);
82 static int __devinit
pvr_boot(struct bttv
*btv
);
84 /* config variables */
85 static unsigned int triton1
;
86 static unsigned int vsfx
;
87 static unsigned int latency
= UNSET
;
90 static unsigned int card
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
91 static unsigned int pll
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
92 static unsigned int tuner
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
93 static unsigned int svhs
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
94 static unsigned int remote
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
95 static struct bttv
*master
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = NULL
};
97 static unsigned int autoload
= 1;
99 static unsigned int autoload
;
101 static unsigned int gpiomask
= UNSET
;
102 static unsigned int audioall
= UNSET
;
103 static unsigned int audiomux
[5] = { [ 0 ... 4 ] = UNSET
};
106 module_param(triton1
, int, 0444);
107 module_param(vsfx
, int, 0444);
108 module_param(no_overlay
, int, 0444);
109 module_param(latency
, int, 0444);
110 module_param(gpiomask
, int, 0444);
111 module_param(audioall
, int, 0444);
112 module_param(autoload
, int, 0444);
114 module_param_array(card
, int, NULL
, 0444);
115 module_param_array(pll
, int, NULL
, 0444);
116 module_param_array(tuner
, int, NULL
, 0444);
117 module_param_array(svhs
, int, NULL
, 0444);
118 module_param_array(remote
, int, NULL
, 0444);
119 module_param_array(audiomux
, int, NULL
, 0444);
121 MODULE_PARM_DESC(triton1
,"set ETBF pci config bit "
122 "[enable bug compatibility for triton1 + others]");
123 MODULE_PARM_DESC(vsfx
,"set VSFX pci config bit "
124 "[yet another chipset flaw workaround]");
125 MODULE_PARM_DESC(latency
,"pci latency timer");
126 MODULE_PARM_DESC(card
,"specify TV/grabber card model, see CARDLIST file for a list");
127 MODULE_PARM_DESC(pll
,"specify installed crystal (0=none, 28=28 MHz, 35=35 MHz)");
128 MODULE_PARM_DESC(tuner
,"specify installed tuner type");
129 MODULE_PARM_DESC(autoload
,"automatically load i2c modules like tuner.o, default is 1 (yes)");
130 MODULE_PARM_DESC(no_overlay
,"allow override overlay default (0 disables, 1 enables)"
131 " [some VIA/SIS chipsets are known to have problem with overlay]");
133 /* ----------------------------------------------------------------------- */
134 /* list of card IDs for bt878+ cards */
140 } cards
[] __devinitdata
= {
141 { 0x13eb0070, BTTV_BOARD_HAUPPAUGE878
, "Hauppauge WinTV" },
142 { 0x39000070, BTTV_BOARD_HAUPPAUGE878
, "Hauppauge WinTV-D" },
143 { 0x45000070, BTTV_BOARD_HAUPPAUGEPVR
, "Hauppauge WinTV/PVR" },
144 { 0xff000070, BTTV_BOARD_OSPREY1x0
, "Osprey-100" },
145 { 0xff010070, BTTV_BOARD_OSPREY2x0_SVID
,"Osprey-200" },
146 { 0xff020070, BTTV_BOARD_OSPREY500
, "Osprey-500" },
147 { 0xff030070, BTTV_BOARD_OSPREY2000
, "Osprey-2000" },
148 { 0xff040070, BTTV_BOARD_OSPREY540
, "Osprey-540" },
149 { 0xff070070, BTTV_BOARD_OSPREY440
, "Osprey-440" },
151 { 0x00011002, BTTV_BOARD_ATI_TVWONDER
, "ATI TV Wonder" },
152 { 0x00031002, BTTV_BOARD_ATI_TVWONDERVE
,"ATI TV Wonder/VE" },
154 { 0x6606107d, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
155 { 0x6607107d, BTTV_BOARD_WINFASTVC100
, "Leadtek WinFast VC 100" },
156 { 0x6609107d, BTTV_BOARD_WINFAST2000
, "Leadtek TV 2000 XP" },
157 { 0x263610b4, BTTV_BOARD_STB2
, "STB TV PCI FM, Gateway P/N 6000704" },
158 { 0x264510b4, BTTV_BOARD_STB2
, "STB TV PCI FM, Gateway P/N 6000704" },
159 { 0x402010fc, BTTV_BOARD_GVBCTV3PCI
, "I-O Data Co. GV-BCTV3/PCI" },
160 { 0x405010fc, BTTV_BOARD_GVBCTV4PCI
, "I-O Data Co. GV-BCTV4/PCI" },
161 { 0x407010fc, BTTV_BOARD_GVBCTV5PCI
, "I-O Data Co. GV-BCTV5/PCI" },
162 { 0xd01810fc, BTTV_BOARD_GVBCTV5PCI
, "I-O Data Co. GV-BCTV5/PCI" },
164 { 0x001211bd, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV" },
165 /* some cards ship with byteswapped IDs ... */
166 { 0x1200bd11, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV [bswap]" },
167 { 0xff00bd11, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV [bswap]" },
168 /* this seems to happen as well ... */
169 { 0xff1211bd, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV" },
171 { 0x3000121a, BTTV_BOARD_VOODOOTV_200
, "3Dfx VoodooTV 200" },
172 { 0x263710b4, BTTV_BOARD_VOODOOTV_FM
, "3Dfx VoodooTV FM" },
173 { 0x3060121a, BTTV_BOARD_STB2
, "3Dfx VoodooTV 100/ STB OEM" },
175 { 0x3000144f, BTTV_BOARD_MAGICTVIEW063
, "(Askey Magic/others) TView99 CPH06x" },
176 { 0xa005144f, BTTV_BOARD_MAGICTVIEW063
, "CPH06X TView99-Card" },
177 { 0x3002144f, BTTV_BOARD_MAGICTVIEW061
, "(Askey Magic/others) TView99 CPH05x" },
178 { 0x3005144f, BTTV_BOARD_MAGICTVIEW061
, "(Askey Magic/others) TView99 CPH061/06L (T1/LC)" },
179 { 0x5000144f, BTTV_BOARD_MAGICTVIEW061
, "Askey CPH050" },
180 { 0x300014ff, BTTV_BOARD_MAGICTVIEW061
, "TView 99 (CPH061)" },
181 { 0x300214ff, BTTV_BOARD_PHOEBE_TVMAS
, "Phoebe TV Master (CPH060)" },
183 { 0x00011461, BTTV_BOARD_AVPHONE98
, "AVerMedia TVPhone98" },
184 { 0x00021461, BTTV_BOARD_AVERMEDIA98
, "AVermedia TVCapture 98" },
185 { 0x00031461, BTTV_BOARD_AVPHONE98
, "AVerMedia TVPhone98" },
186 { 0x00041461, BTTV_BOARD_AVERMEDIA98
, "AVerMedia TVCapture 98" },
187 { 0x03001461, BTTV_BOARD_AVERMEDIA98
, "VDOMATE TV TUNER CARD" },
189 { 0x1117153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Philips PAL B/G)" },
190 { 0x1118153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Temic PAL B/G)" },
191 { 0x1119153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Philips PAL I)" },
192 { 0x111a153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Temic PAL I)" },
194 { 0x1123153b, BTTV_BOARD_TERRATVRADIO
, "Terratec TV Radio+" },
195 { 0x1127153b, BTTV_BOARD_TERRATV
, "Terratec TV+ (V1.05)" },
196 /* clashes with FlyVideo
197 *{ 0x18521852, BTTV_BOARD_TERRATV, "Terratec TV+ (V1.10)" }, */
198 { 0x1134153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (LR102)" },
199 { 0x1135153b, BTTV_BOARD_TERRATVALUER
, "Terratec TValue Radio" }, /* LR102 */
200 { 0x5018153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue" }, /* ?? */
201 { 0xff3b153b, BTTV_BOARD_TERRATVALUER
, "Terratec TValue Radio" }, /* ?? */
203 { 0x400015b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV" },
204 { 0x400a15b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV" },
205 { 0x400d15b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
206 { 0x401015b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
207 { 0x401615b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
209 { 0x1430aa00, BTTV_BOARD_PV143
, "Provideo PV143A" },
210 { 0x1431aa00, BTTV_BOARD_PV143
, "Provideo PV143B" },
211 { 0x1432aa00, BTTV_BOARD_PV143
, "Provideo PV143C" },
212 { 0x1433aa00, BTTV_BOARD_PV143
, "Provideo PV143D" },
213 { 0x1433aa03, BTTV_BOARD_PV143
, "Security Eyes" },
215 { 0x1460aa00, BTTV_BOARD_PV150
, "Provideo PV150A-1" },
216 { 0x1461aa01, BTTV_BOARD_PV150
, "Provideo PV150A-2" },
217 { 0x1462aa02, BTTV_BOARD_PV150
, "Provideo PV150A-3" },
218 { 0x1463aa03, BTTV_BOARD_PV150
, "Provideo PV150A-4" },
220 { 0x1464aa04, BTTV_BOARD_PV150
, "Provideo PV150B-1" },
221 { 0x1465aa05, BTTV_BOARD_PV150
, "Provideo PV150B-2" },
222 { 0x1466aa06, BTTV_BOARD_PV150
, "Provideo PV150B-3" },
223 { 0x1467aa07, BTTV_BOARD_PV150
, "Provideo PV150B-4" },
225 { 0xa132ff00, BTTV_BOARD_IVC100
, "IVC-100" },
226 { 0xa1550000, BTTV_BOARD_IVC200
, "IVC-200" },
227 { 0xa1550001, BTTV_BOARD_IVC200
, "IVC-200" },
228 { 0xa1550002, BTTV_BOARD_IVC200
, "IVC-200" },
229 { 0xa1550003, BTTV_BOARD_IVC200
, "IVC-200" },
230 { 0xa1550100, BTTV_BOARD_IVC200
, "IVC-200G" },
231 { 0xa1550101, BTTV_BOARD_IVC200
, "IVC-200G" },
232 { 0xa1550102, BTTV_BOARD_IVC200
, "IVC-200G" },
233 { 0xa1550103, BTTV_BOARD_IVC200
, "IVC-200G" },
234 { 0xa182ff00, BTTV_BOARD_IVC120
, "IVC-120G" },
235 { 0xa182ff01, BTTV_BOARD_IVC120
, "IVC-120G" },
236 { 0xa182ff02, BTTV_BOARD_IVC120
, "IVC-120G" },
237 { 0xa182ff03, BTTV_BOARD_IVC120
, "IVC-120G" },
238 { 0xa182ff04, BTTV_BOARD_IVC120
, "IVC-120G" },
239 { 0xa182ff05, BTTV_BOARD_IVC120
, "IVC-120G" },
240 { 0xa182ff06, BTTV_BOARD_IVC120
, "IVC-120G" },
241 { 0xa182ff07, BTTV_BOARD_IVC120
, "IVC-120G" },
242 { 0xa182ff08, BTTV_BOARD_IVC120
, "IVC-120G" },
243 { 0xa182ff09, BTTV_BOARD_IVC120
, "IVC-120G" },
244 { 0xa182ff0a, BTTV_BOARD_IVC120
, "IVC-120G" },
245 { 0xa182ff0b, BTTV_BOARD_IVC120
, "IVC-120G" },
246 { 0xa182ff0c, BTTV_BOARD_IVC120
, "IVC-120G" },
247 { 0xa182ff0d, BTTV_BOARD_IVC120
, "IVC-120G" },
248 { 0xa182ff0e, BTTV_BOARD_IVC120
, "IVC-120G" },
249 { 0xa182ff0f, BTTV_BOARD_IVC120
, "IVC-120G" },
251 { 0x41424344, BTTV_BOARD_GRANDTEC
, "GrandTec Multi Capture" },
252 { 0x01020304, BTTV_BOARD_XGUARD
, "Grandtec Grand X-Guard" },
254 { 0x18501851, BTTV_BOARD_CHRONOS_VS2
, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
255 { 0xa0501851, BTTV_BOARD_CHRONOS_VS2
, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
256 { 0x18511851, BTTV_BOARD_FLYVIDEO98EZ
, "FlyVideo 98EZ (LR51)/ CyberMail AV" },
257 { 0x18521852, BTTV_BOARD_TYPHOON_TVIEW
, "FlyVideo 98FM (LR50)/ Typhoon TView TV/FM Tuner" },
258 { 0x41a0a051, BTTV_BOARD_FLYVIDEO_98FM
, "Lifeview FlyVideo 98 LR50 Rev Q" },
259 { 0x18501f7f, BTTV_BOARD_FLYVIDEO_98
, "Lifeview Flyvideo 98" },
261 { 0x010115cb, BTTV_BOARD_GMV1
, "AG GMV1" },
262 { 0x010114c7, BTTV_BOARD_MODTEC_205
, "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV" },
264 { 0x10b42636, BTTV_BOARD_HAUPPAUGE878
, "STB ???" },
265 { 0x217d6606, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
266 { 0xfff6f6ff, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
267 { 0x03116000, BTTV_BOARD_SENSORAY311
, "Sensoray 311" },
268 { 0x00790e11, BTTV_BOARD_WINDVR
, "Canopus WinDVR PCI" },
269 { 0xa0fca1a0, BTTV_BOARD_ZOLTRIX
, "Face to Face Tvmax" },
270 { 0x82b2aa6a, BTTV_BOARD_SIMUS_GVC1100
, "SIMUS GVC1100" },
271 { 0x146caa0c, BTTV_BOARD_PV951
, "ituner spectra8" },
272 { 0x200a1295, BTTV_BOARD_PXC200
, "ImageNation PXC200A" },
274 { 0x40111554, BTTV_BOARD_PV_BT878P_9B
, "Prolink Pixelview PV-BT" },
275 { 0x17de0a01, BTTV_BOARD_KWORLD
, "Mecer TV/FM/Video Tuner" },
277 { 0x01051805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #1" },
278 { 0x01061805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #2" },
279 { 0x01071805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #3" },
280 { 0x01081805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #4" },
282 { 0x15409511, BTTV_BOARD_ACORP_Y878F
, "Acorp Y878F" },
284 { 0x53534149, BTTV_BOARD_SSAI_SECURITY
, "SSAI Security Video Interface" },
285 { 0x5353414a, BTTV_BOARD_SSAI_ULTRASOUND
, "SSAI Ultrasound Video Interface" },
287 /* likely broken, vendor id doesn't match the other magic views ...
288 * { 0xa0fca04f, BTTV_BOARD_MAGICTVIEW063, "Guillemot Maxi TV Video 3" }, */
290 /* Duplicate PCI ID, reconfigure for this board during the eeprom read.
291 * { 0x13eb0070, BTTV_BOARD_HAUPPAUGE_IMPACTVCB, "Hauppauge ImpactVCB" }, */
293 /* DVB cards (using pci function .1 for mpeg data xfer) */
294 { 0x001c11bd, BTTV_BOARD_PINNACLESAT
, "Pinnacle PCTV Sat" },
295 { 0x01010071, BTTV_BOARD_NEBULA_DIGITV
, "Nebula Electronics DigiTV" },
296 { 0x20007063, BTTV_BOARD_PC_HDTV
, "pcHDTV HD-2000 TV"},
297 { 0x002611bd, BTTV_BOARD_TWINHAN_DST
, "Pinnacle PCTV SAT CI" },
298 { 0x00011822, BTTV_BOARD_TWINHAN_DST
, "Twinhan VisionPlus DVB" },
299 { 0xfc00270f, BTTV_BOARD_TWINHAN_DST
, "ChainTech digitop DST-1000 DVB-S" },
300 { 0x07711461, BTTV_BOARD_AVDVBT_771
, "AVermedia AverTV DVB-T 771" },
301 { 0x07611461, BTTV_BOARD_AVDVBT_761
, "AverMedia AverTV DVB-T 761" },
302 { 0xdb1018ac, BTTV_BOARD_DVICO_DVBT_LITE
, "DViCO FusionHDTV DVB-T Lite" },
303 { 0xdb1118ac, BTTV_BOARD_DVICO_DVBT_LITE
, "Ultraview DVB-T Lite" },
304 { 0xd50018ac, BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
, "DViCO FusionHDTV 5 Lite" },
305 { 0x00261822, BTTV_BOARD_TWINHAN_DST
, "DNTV Live! Mini "},
306 { 0xd200dbc0, BTTV_BOARD_DVICO_FUSIONHDTV_2
, "DViCO FusionHDTV 2" },
307 { 0x763c008a, BTTV_BOARD_GEOVISION_GV600
, "GeoVision GV-600" },
312 /* ----------------------------------------------------------------------- */
313 /* array with description for bt848 / bt878 tv/grabber cards */
315 struct tvcard bttv_tvcards
[] = {
316 /* ---- card 0x00 ---------------------------------- */
317 [BTTV_BOARD_UNKNOWN
] = {
318 .name
= " *** UNKNOWN/GENERIC *** ",
323 .muxsel
= { 2, 3, 1, 0 },
325 .tuner_addr
= ADDR_UNSET
,
326 .radio_addr
= ADDR_UNSET
,
328 [BTTV_BOARD_MIRO
] = {
335 .muxsel
= { 2, 3, 1, 1 },
336 .gpiomux
= { 2, 0, 0, 0 },
340 .tuner_addr
= ADDR_UNSET
,
341 .radio_addr
= ADDR_UNSET
,
343 [BTTV_BOARD_HAUPPAUGE
] = {
344 .name
= "Hauppauge (bt848)",
350 .muxsel
= { 2, 3, 1, 1 },
351 .gpiomux
= { 0, 1, 2, 3 },
355 .tuner_addr
= ADDR_UNSET
,
356 .radio_addr
= ADDR_UNSET
,
359 .name
= "STB, Gateway P/N 6000699 (bt848)",
365 .muxsel
= { 2, 3, 1, 1 },
366 .gpiomux
= { 4, 0, 2, 3 },
370 .tuner_type
= TUNER_PHILIPS_NTSC
,
371 .tuner_addr
= ADDR_UNSET
,
372 .radio_addr
= ADDR_UNSET
,
377 /* ---- card 0x04 ---------------------------------- */
378 [BTTV_BOARD_INTEL
] = {
379 .name
= "Intel Create and Share PCI/ Smart Video Recorder III",
385 .muxsel
= { 2, 3, 1, 1 },
388 .tuner_type
= TUNER_ABSENT
,
389 .tuner_addr
= ADDR_UNSET
,
390 .radio_addr
= ADDR_UNSET
,
392 [BTTV_BOARD_DIAMOND
] = {
393 .name
= "Diamond DTV2000",
399 .muxsel
= { 2, 3, 1, 0 },
400 .gpiomux
= { 0, 1, 0, 1 },
404 .tuner_addr
= ADDR_UNSET
,
405 .radio_addr
= ADDR_UNSET
,
407 [BTTV_BOARD_AVERMEDIA
] = {
408 .name
= "AVerMedia TVPhone",
413 .muxsel
= { 2, 3, 1, 1 },
415 .gpiomux
= { 0x0c, 0x04, 0x08, 0x04 },
416 /* 0x04 for some cards ?? */
419 .tuner_addr
= ADDR_UNSET
,
420 .radio_addr
= ADDR_UNSET
,
421 .audio_mode_gpio
= avermedia_tvphone_audio
,
424 [BTTV_BOARD_MATRIX_VISION
] = {
425 .name
= "MATRIX-Vision MV-Delta",
431 .muxsel
= { 2, 3, 1, 0, 0 },
435 .tuner_addr
= ADDR_UNSET
,
436 .radio_addr
= ADDR_UNSET
,
439 /* ---- card 0x08 ---------------------------------- */
440 [BTTV_BOARD_FLYVIDEO
] = {
441 .name
= "Lifeview FlyVideo II (Bt848) LR26 / MAXI TV Video PCI2 LR26",
447 .muxsel
= { 2, 3, 1, 1 },
448 .gpiomux
= { 0, 0xc00, 0x800, 0x400 },
453 .tuner_addr
= ADDR_UNSET
,
454 .radio_addr
= ADDR_UNSET
,
456 [BTTV_BOARD_TURBOTV
] = {
457 .name
= "IMS/IXmicro TurboTV",
463 .muxsel
= { 2, 3, 1, 1 },
464 .gpiomux
= { 1, 1, 2, 3 },
467 .tuner_type
= TUNER_TEMIC_PAL
,
468 .tuner_addr
= ADDR_UNSET
,
469 .radio_addr
= ADDR_UNSET
,
471 [BTTV_BOARD_HAUPPAUGE878
] = {
472 .name
= "Hauppauge (bt878)",
477 .gpiomask
= 0x0f, /* old: 7 */
478 .muxsel
= { 2, 0, 1, 1 },
479 .gpiomux
= { 0, 1, 2, 3 },
484 .tuner_addr
= ADDR_UNSET
,
485 .radio_addr
= ADDR_UNSET
,
487 [BTTV_BOARD_MIROPRO
] = {
488 .name
= "MIRO PCTV pro",
494 .muxsel
= { 2, 3, 1, 1 },
495 .gpiomux
= { 0x20001,0x10001, 0, 0 },
499 .tuner_addr
= ADDR_UNSET
,
500 .radio_addr
= ADDR_UNSET
,
503 /* ---- card 0x0c ---------------------------------- */
504 [BTTV_BOARD_ADSTECH_TV
] = {
505 .name
= "ADS Technologies Channel Surfer TV (bt848)",
511 .muxsel
= { 2, 3, 1, 1 },
512 .gpiomux
= { 13, 14, 11, 7 },
515 .tuner_addr
= ADDR_UNSET
,
516 .radio_addr
= ADDR_UNSET
,
518 [BTTV_BOARD_AVERMEDIA98
] = {
519 .name
= "AVerMedia TVCapture 98",
525 .muxsel
= { 2, 3, 1, 1 },
526 .gpiomux
= { 13, 14, 11, 7 },
530 .tuner_type
= TUNER_PHILIPS_PAL
,
531 .tuner_addr
= ADDR_UNSET
,
532 .radio_addr
= ADDR_UNSET
,
533 .audio_mode_gpio
= avermedia_tv_stereo_audio
,
537 .name
= "Aimslab Video Highway Xtreme (VHX)",
543 .muxsel
= { 2, 3, 1, 1 },
544 .gpiomux
= { 0, 2, 1, 3 }, /* old: {0, 1, 2, 3, 4} */
549 .tuner_addr
= ADDR_UNSET
,
550 .radio_addr
= ADDR_UNSET
,
552 [BTTV_BOARD_ZOLTRIX
] = {
553 .name
= "Zoltrix TV-Max",
559 .muxsel
= { 2, 3, 1, 1 },
560 .gpiomux
= { 0, 0, 1, 0 },
564 .tuner_addr
= ADDR_UNSET
,
565 .radio_addr
= ADDR_UNSET
,
568 /* ---- card 0x10 ---------------------------------- */
569 [BTTV_BOARD_PIXVIEWPLAYTV
] = {
570 .name
= "Prolink Pixelview PlayTV (bt878)",
575 .gpiomask
= 0x01fe00,
576 .muxsel
= { 2, 3, 1, 1 },
577 /* 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> */
578 .gpiomux
= { 0x001e00, 0, 0x018000, 0x014000 },
579 .gpiomute
= 0x002000,
583 .tuner_addr
= ADDR_UNSET
,
584 .radio_addr
= ADDR_UNSET
,
586 [BTTV_BOARD_WINVIEW_601
] = {
587 .name
= "Leadtek WinView 601",
592 .gpiomask
= 0x8300f8,
593 .muxsel
= { 2, 3, 1, 1,0 },
594 .gpiomux
= { 0x4fa007,0xcfa007,0xcfa007,0xcfa007 },
595 .gpiomute
= 0xcfa007,
598 .tuner_addr
= ADDR_UNSET
,
599 .radio_addr
= ADDR_UNSET
,
600 .volume_gpio
= winview_volume
,
603 [BTTV_BOARD_AVEC_INTERCAP
] = {
604 .name
= "AVEC Intercapture",
610 .muxsel
= { 2, 3, 1, 1 },
611 .gpiomux
= { 1, 0, 0, 0 },
614 .tuner_addr
= ADDR_UNSET
,
615 .radio_addr
= ADDR_UNSET
,
617 [BTTV_BOARD_LIFE_FLYKIT
] = {
618 .name
= "Lifeview FlyVideo II EZ /FlyKit LR38 Bt848 (capture only)",
623 .gpiomask
= 0x8dff00,
624 .muxsel
= { 2, 3, 1, 1 },
628 .tuner_addr
= ADDR_UNSET
,
629 .radio_addr
= ADDR_UNSET
,
632 /* ---- card 0x14 ---------------------------------- */
633 [BTTV_BOARD_CEI_RAFFLES
] = {
634 .name
= "CEI Raffles Card",
639 .muxsel
= { 2, 3, 1, 1 },
641 .tuner_addr
= ADDR_UNSET
,
642 .radio_addr
= ADDR_UNSET
,
644 [BTTV_BOARD_CONFERENCETV
] = {
645 .name
= "Lifeview FlyVideo 98/ Lucky Star Image World ConferenceTV LR50",
647 .audio_inputs
= 2, /* tuner, line in */
651 .muxsel
= { 2, 3, 1, 1 },
652 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
655 .tuner_type
= TUNER_PHILIPS_PAL_I
,
656 .tuner_addr
= ADDR_UNSET
,
657 .radio_addr
= ADDR_UNSET
,
659 [BTTV_BOARD_PHOEBE_TVMAS
] = {
660 .name
= "Askey CPH050/ Phoebe Tv Master + FM",
666 .muxsel
= { 2, 3, 1, 1 },
667 .gpiomux
= { 0, 1, 0x800, 0x400 },
672 .tuner_addr
= ADDR_UNSET
,
673 .radio_addr
= ADDR_UNSET
,
675 [BTTV_BOARD_MODTEC_205
] = {
676 .name
= "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV, bt878",
682 .muxsel
= { 2, 3, -1 },
683 .digital_mode
= DIGITAL_MODE_CAMERA
,
684 .gpiomux
= { 0, 0, 0, 0 },
687 .tuner_type
= TUNER_ALPS_TSBB5_PAL_I
,
688 .tuner_addr
= ADDR_UNSET
,
689 .radio_addr
= ADDR_UNSET
,
692 /* ---- card 0x18 ---------------------------------- */
693 [BTTV_BOARD_MAGICTVIEW061
] = {
694 .name
= "Askey CPH05X/06X (bt878) [many vendors]",
700 .muxsel
= { 2, 3, 1, 1 },
701 .gpiomux
= {0x400, 0x400, 0x400, 0x400 },
706 .tuner_addr
= ADDR_UNSET
,
707 .radio_addr
= ADDR_UNSET
,
710 [BTTV_BOARD_VOBIS_BOOSTAR
] = {
711 .name
= "Terratec TerraTV+ Version 1.0 (Bt848)/ Terra TValue Version 1.0/ Vobis TV-Boostar",
716 .gpiomask
= 0x1f0fff,
717 .muxsel
= { 2, 3, 1, 1 },
718 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0 },
721 .tuner_type
= TUNER_PHILIPS_PAL
,
722 .tuner_addr
= ADDR_UNSET
,
723 .radio_addr
= ADDR_UNSET
,
724 .audio_mode_gpio
= terratv_audio
,
726 [BTTV_BOARD_HAUPPAUG_WCAM
] = {
727 .name
= "Hauppauge WinCam newer (bt878)",
733 .muxsel
= { 2, 0, 1, 1 },
734 .gpiomux
= { 0, 1, 2, 3 },
738 .tuner_addr
= ADDR_UNSET
,
739 .radio_addr
= ADDR_UNSET
,
741 [BTTV_BOARD_MAXI
] = {
742 .name
= "Lifeview FlyVideo 98/ MAXI TV Video PCI2 LR50",
748 .muxsel
= { 2, 3, 1, 1 },
749 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
752 .tuner_type
= TUNER_PHILIPS_SECAM
,
753 .tuner_addr
= ADDR_UNSET
,
754 .radio_addr
= ADDR_UNSET
,
757 /* ---- card 0x1c ---------------------------------- */
758 [BTTV_BOARD_TERRATV
] = {
759 .name
= "Terratec TerraTV+ Version 1.1 (bt878)",
764 .gpiomask
= 0x1f0fff,
765 .muxsel
= { 2, 3, 1, 1 },
766 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0x00000 },
769 .tuner_type
= TUNER_PHILIPS_PAL
,
770 .tuner_addr
= ADDR_UNSET
,
771 .radio_addr
= ADDR_UNSET
,
772 .audio_mode_gpio
= terratv_audio
,
774 External 20 pin connector (for Active Radio Upgrade board)
780 gpio05: om5610-stereo
784 gpio09+10: nIOR, nSEL ?? (bt878)
788 gpio16: u2-A0 (1st 4052bt)
791 gpio19: u4-A0 (2nd 4052)
795 00000 : Cdrom (internal audio input)
796 10000 : ext. Video audio input
805 [BTTV_BOARD_PXC200
] = {
806 /* Jannik Fritsch <jannik@techfak.uni-bielefeld.de> */
807 .name
= "Imagenation PXC200",
811 .svhs
= 1, /* was: 4 */
813 .muxsel
= { 2, 3, 1, 0, 0},
817 .tuner_addr
= ADDR_UNSET
,
818 .radio_addr
= ADDR_UNSET
,
819 .muxsel_hook
= PXC200_muxsel
,
822 [BTTV_BOARD_FLYVIDEO_98
] = {
823 .name
= "Lifeview FlyVideo 98 LR50",
828 .gpiomask
= 0x1800, /* 0x8dfe00 */
829 .muxsel
= { 2, 3, 1, 1 },
830 .gpiomux
= { 0, 0x0800, 0x1000, 0x1000 },
834 .tuner_addr
= ADDR_UNSET
,
835 .radio_addr
= ADDR_UNSET
,
837 [BTTV_BOARD_IPROTV
] = {
838 .name
= "Formac iProTV, Formac ProTV I (bt848)",
844 .muxsel
= { 2, 3, 1, 1 },
845 .gpiomux
= { 1, 0, 0, 0 },
847 .tuner_type
= TUNER_PHILIPS_PAL
,
848 .tuner_addr
= ADDR_UNSET
,
849 .radio_addr
= ADDR_UNSET
,
852 /* ---- card 0x20 ---------------------------------- */
853 [BTTV_BOARD_INTEL_C_S_PCI
] = {
854 .name
= "Intel Create and Share PCI/ Smart Video Recorder III",
860 .muxsel
= { 2, 3, 1, 1 },
863 .tuner_type
= TUNER_ABSENT
,
864 .tuner_addr
= ADDR_UNSET
,
865 .radio_addr
= ADDR_UNSET
,
867 [BTTV_BOARD_TERRATVALUE
] = {
868 .name
= "Terratec TerraTValue Version Bt878",
873 .gpiomask
= 0xffff00,
874 .muxsel
= { 2, 3, 1, 1 },
875 .gpiomux
= { 0x500, 0, 0x300, 0x900 },
879 .tuner_type
= TUNER_PHILIPS_PAL
,
880 .tuner_addr
= ADDR_UNSET
,
881 .radio_addr
= ADDR_UNSET
,
883 [BTTV_BOARD_WINFAST2000
] = {
884 .name
= "Leadtek WinFast 2000/ WinFast 2000 XP",
889 .muxsel
= { 2, 3, 1, 1, 0 }, /* TV, CVid, SVid, CVid over SVid connector */
890 /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */
891 .gpiomask
= 0xb33000,
892 .gpiomux
= { 0x122000,0x1000,0x0000,0x620000 },
893 .gpiomute
= 0x800000,
894 /* Audio Routing for "WinFast 2000 XP" (no tv stereo !)
895 gpio23 -- hef4052:nEnable (0x800000)
898 0x0000: external audio
902 Note: There exists another variant "Winfast 2000" with tv stereo !?
903 Note: eeprom only contains FF and pci subsystem id 107d:6606
908 .tuner_type
= TUNER_PHILIPS_PAL
, /* default for now, gpio reads BFFF06 for Pal bg+dk */
909 .tuner_addr
= ADDR_UNSET
,
910 .radio_addr
= ADDR_UNSET
,
911 .audio_mode_gpio
= winfast2000_audio
,
914 [BTTV_BOARD_CHRONOS_VS2
] = {
915 .name
= "Lifeview FlyVideo 98 LR50 / Chronos Video Shuttle II",
921 .muxsel
= { 2, 3, 1, 1 },
922 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
926 .tuner_addr
= ADDR_UNSET
,
927 .radio_addr
= ADDR_UNSET
,
930 /* ---- card 0x24 ---------------------------------- */
931 [BTTV_BOARD_TYPHOON_TVIEW
] = {
932 .name
= "Lifeview FlyVideo 98FM LR50 / Typhoon TView TV/FM Tuner",
938 .muxsel
= { 2, 3, 1, 1 },
939 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
943 .tuner_addr
= ADDR_UNSET
,
944 .radio_addr
= ADDR_UNSET
,
947 [BTTV_BOARD_PXELVWPLTVPRO
] = {
948 .name
= "Prolink PixelView PlayTV pro",
954 .muxsel
= { 2, 3, 1, 1 },
955 .gpiomux
= { 0x21, 0x20, 0x24, 0x2c },
960 .tuner_addr
= ADDR_UNSET
,
961 .radio_addr
= ADDR_UNSET
,
963 [BTTV_BOARD_MAGICTVIEW063
] = {
964 .name
= "Askey CPH06X TView99",
969 .gpiomask
= 0x551e00,
970 .muxsel
= { 2, 3, 1, 0 },
971 .gpiomux
= { 0x551400, 0x551200, 0, 0 },
972 .gpiomute
= 0x551c00,
975 .tuner_type
= TUNER_PHILIPS_PAL_I
,
976 .tuner_addr
= ADDR_UNSET
,
977 .radio_addr
= ADDR_UNSET
,
980 [BTTV_BOARD_PINNACLE
] = {
981 .name
= "Pinnacle PCTV Studio/Rave",
986 .gpiomask
= 0x03000F,
987 .muxsel
= { 2, 3, 1, 1 },
988 .gpiomux
= { 2, 0xd0001, 0, 0 },
993 .tuner_addr
= ADDR_UNSET
,
994 .radio_addr
= ADDR_UNSET
,
997 /* ---- card 0x28 ---------------------------------- */
998 [BTTV_BOARD_STB2
] = {
999 .name
= "STB TV PCI FM, Gateway P/N 6000704 (bt878), 3Dfx VoodooTV 100",
1005 .muxsel
= { 2, 3, 1, 1 },
1006 .gpiomux
= { 4, 0, 2, 3 },
1010 .tuner_type
= TUNER_PHILIPS_NTSC
,
1011 .tuner_addr
= ADDR_UNSET
,
1012 .radio_addr
= ADDR_UNSET
,
1016 [BTTV_BOARD_AVPHONE98
] = {
1017 .name
= "AVerMedia TVPhone 98",
1023 .muxsel
= { 2, 3, 1, 1 },
1024 .gpiomux
= { 13, 4, 11, 7 },
1027 .tuner_type
= UNSET
,
1028 .tuner_addr
= ADDR_UNSET
,
1029 .radio_addr
= ADDR_UNSET
,
1031 .audio_mode_gpio
= avermedia_tvphone_audio
,
1033 [BTTV_BOARD_PV951
] = {
1034 .name
= "ProVideo PV951", /* pic16c54 */
1040 .muxsel
= { 2, 3, 1, 1},
1041 .gpiomux
= { 0, 0, 0, 0},
1045 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1046 .tuner_addr
= ADDR_UNSET
,
1047 .radio_addr
= ADDR_UNSET
,
1049 [BTTV_BOARD_ONAIR_TV
] = {
1050 .name
= "Little OnAir TV",
1056 .muxsel
= { 2, 3, 1, 1 },
1057 .gpiomux
= { 0xff9ff6, 0xff9ff6, 0xff1ff7, 0 },
1058 .gpiomute
= 0xff3ffc,
1060 .tuner_type
= UNSET
,
1061 .tuner_addr
= ADDR_UNSET
,
1062 .radio_addr
= ADDR_UNSET
,
1065 /* ---- card 0x2c ---------------------------------- */
1066 [BTTV_BOARD_SIGMA_TVII_FM
] = {
1067 .name
= "Sigma TVII-FM",
1073 .muxsel
= { 2, 3, 1, 1 },
1074 .gpiomux
= { 1, 1, 0, 2 },
1078 .tuner_type
= UNSET
,
1079 .tuner_addr
= ADDR_UNSET
,
1080 .radio_addr
= ADDR_UNSET
,
1082 [BTTV_BOARD_MATRIX_VISION2
] = {
1083 .name
= "MATRIX-Vision MV-Delta 2",
1089 .muxsel
= { 2, 3, 1, 0, 0 },
1093 .tuner_type
= UNSET
,
1094 .tuner_addr
= ADDR_UNSET
,
1095 .radio_addr
= ADDR_UNSET
,
1097 [BTTV_BOARD_ZOLTRIX_GENIE
] = {
1098 .name
= "Zoltrix Genie TV/FM",
1103 .gpiomask
= 0xbcf03f,
1104 .muxsel
= { 2, 3, 1, 1 },
1105 .gpiomux
= { 0xbc803f, 0xbc903f, 0xbcb03f, 0 },
1106 .gpiomute
= 0xbcb03f,
1109 .tuner_type
= TUNER_TEMIC_4039FR5_NTSC
,
1110 .tuner_addr
= ADDR_UNSET
,
1111 .radio_addr
= ADDR_UNSET
,
1113 [BTTV_BOARD_TERRATVRADIO
] = {
1114 .name
= "Terratec TV/Radio+",
1119 .gpiomask
= 0x70000,
1120 .muxsel
= { 2, 3, 1, 1 },
1121 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0 },
1122 .gpiomute
= 0x40000,
1126 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1127 .tuner_addr
= ADDR_UNSET
,
1128 .radio_addr
= ADDR_UNSET
,
1132 /* ---- card 0x30 ---------------------------------- */
1133 [BTTV_BOARD_DYNALINK
] = {
1134 .name
= "Askey CPH03x/ Dynalink Magic TView",
1140 .muxsel
= { 2, 3, 1, 1 },
1141 .gpiomux
= {2,0,0,0 },
1145 .tuner_type
= UNSET
,
1146 .tuner_addr
= ADDR_UNSET
,
1147 .radio_addr
= ADDR_UNSET
,
1149 [BTTV_BOARD_GVBCTV3PCI
] = {
1150 .name
= "IODATA GV-BCTV3/PCI",
1155 .gpiomask
= 0x010f00,
1156 .muxsel
= {2, 3, 0, 0 },
1157 .gpiomux
= {0x10000, 0, 0x10000, 0 },
1160 .tuner_type
= TUNER_ALPS_TSHC6_NTSC
,
1161 .tuner_addr
= ADDR_UNSET
,
1162 .radio_addr
= ADDR_UNSET
,
1163 .audio_mode_gpio
= gvbctv3pci_audio
,
1165 [BTTV_BOARD_PXELVWPLTVPAK
] = {
1166 .name
= "Prolink PV-BT878P+4E / PixelView PlayTV PAK / Lenco MXTV-9578 CP",
1171 .gpiomask
= 0xAA0000,
1172 .muxsel
= { 2,3,1,1,-1 },
1173 .digital_mode
= DIGITAL_MODE_CAMERA
,
1174 .gpiomux
= { 0x20000, 0, 0x80000, 0x80000 },
1175 .gpiomute
= 0xa8000,
1178 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1179 .tuner_addr
= ADDR_UNSET
,
1180 .radio_addr
= ADDR_UNSET
,
1182 /* GPIO wiring: (different from Rev.4C !)
1183 GPIO17: U4.A0 (first hef4052bt)
1185 GPIO20: U5.A1 (second hef4052bt)
1187 GPIO22: BT832 Reset Line
1188 GPIO23: A5,A0, U5,nEN
1189 Note: At i2c=0x8a is a Bt832 chip, which changes to 0x88 after being reset via GPIO22
1192 [BTTV_BOARD_EAGLE
] = {
1193 .name
= "Eagle Wireless Capricorn2 (bt878A)",
1199 .muxsel
= { 2, 0, 1, 1 },
1200 .gpiomux
= { 0, 1, 2, 3 },
1203 .tuner_type
= UNSET
/* TUNER_ALPS_TMDH2_NTSC */,
1204 .tuner_addr
= ADDR_UNSET
,
1205 .radio_addr
= ADDR_UNSET
,
1208 /* ---- card 0x34 ---------------------------------- */
1209 [BTTV_BOARD_PINNACLEPRO
] = {
1210 /* David Härdeman <david@2gen.com> */
1211 .name
= "Pinnacle PCTV Studio Pro",
1216 .gpiomask
= 0x03000F,
1217 .muxsel
= { 2, 3, 1, 1 },
1218 .gpiomux
= { 1, 0xd0001, 0, 0 },
1220 /* sound path (5 sources):
1221 MUX1 (mask 0x03), Enable Pin 0x08 (0=enable, 1=disable)
1224 2= Mono TV sound from Tuner
1226 MUX2 (mask 0x30000):
1228 1= FM stereo Radio from Tuner */
1231 .tuner_type
= UNSET
,
1232 .tuner_addr
= ADDR_UNSET
,
1233 .radio_addr
= ADDR_UNSET
,
1235 [BTTV_BOARD_TVIEW_RDS_FM
] = {
1236 /* Claas Langbehn <claas@bigfoot.com>,
1237 Sven Grothklags <sven@upb.de> */
1238 .name
= "Typhoon TView RDS + FM Stereo / KNC1 TV Station RDS",
1244 .muxsel
= { 2, 3, 1, 1 },
1245 .gpiomux
= { 0, 0, 0x10, 8 },
1249 .tuner_type
= TUNER_PHILIPS_PAL
,
1250 .tuner_addr
= ADDR_UNSET
,
1251 .radio_addr
= ADDR_UNSET
,
1254 [BTTV_BOARD_LIFETEC_9415
] = {
1255 /* Tim Röstermundt <rosterm@uni-muenster.de>
1256 in de.comp.os.unix.linux.hardware:
1257 options bttv card=0 pll=1 radio=1 gpiomask=0x18e0
1258 gpiomux =0x44c71f,0x44d71f,0,0x44d71f,0x44dfff
1259 options tuner type=5 */
1260 .name
= "Lifeview FlyVideo 2000 /FlyVideo A2/ Lifetec LT 9415 TV [LR90]",
1266 .muxsel
= { 2, 3, 1, 1 },
1267 .gpiomux
= { 0x0000,0x0800,0x1000,0x1000 },
1269 /* For cards with tda9820/tda9821:
1270 0x0000: Tuner normal stereo
1271 0x0080: Tuner A2 SAP (second audio program = Zweikanalton)
1272 0x0880: Tuner A2 stereo */
1274 .tuner_type
= UNSET
,
1275 .tuner_addr
= ADDR_UNSET
,
1276 .radio_addr
= ADDR_UNSET
,
1278 [BTTV_BOARD_BESTBUY_EASYTV
] = {
1279 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1280 old Easy TV BT848 version (model CPH031) */
1281 .name
= "Askey CPH031/ BESTBUY Easy TV",
1287 .muxsel
= { 2, 3, 1, 0 },
1288 .gpiomux
= { 2, 0, 0, 0 },
1292 .tuner_type
= TUNER_TEMIC_PAL
,
1293 .tuner_addr
= ADDR_UNSET
,
1294 .radio_addr
= ADDR_UNSET
,
1297 /* ---- card 0x38 ---------------------------------- */
1298 [BTTV_BOARD_FLYVIDEO_98FM
] = {
1299 /* Gordon Heydon <gjheydon@bigfoot.com ('98) */
1300 .name
= "Lifeview FlyVideo 98FM LR50",
1306 .muxsel
= { 2, 3, 1, 1 },
1307 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
1310 .tuner_type
= TUNER_PHILIPS_PAL
,
1311 .tuner_addr
= ADDR_UNSET
,
1312 .radio_addr
= ADDR_UNSET
,
1314 /* This is the ultimate cheapo capture card
1315 * just a BT848A on a small PCB!
1316 * Steve Hosgood <steve@equiinet.com> */
1317 [BTTV_BOARD_GRANDTEC
] = {
1318 .name
= "GrandTec 'Grand Video Capture' (Bt848)",
1329 .tuner_type
= UNSET
,
1330 .tuner_addr
= ADDR_UNSET
,
1331 .radio_addr
= ADDR_UNSET
,
1333 [BTTV_BOARD_ASKEY_CPH060
] = {
1334 /* Daniel Herrington <daniel.herrington@home.com> */
1335 .name
= "Askey CPH060/ Phoebe TV Master Only (No FM)",
1341 .muxsel
= { 2, 3, 1, 1},
1342 .gpiomux
= { 0x400, 0x400, 0x400, 0x400 },
1346 .tuner_type
= TUNER_TEMIC_4036FY5_NTSC
,
1347 .tuner_addr
= ADDR_UNSET
,
1348 .radio_addr
= ADDR_UNSET
,
1350 [BTTV_BOARD_ASKEY_CPH03X
] = {
1351 /* Matti Mottus <mottus@physic.ut.ee> */
1352 .name
= "Askey CPH03x TV Capturer",
1357 .gpiomask
= 0x03000F,
1358 .muxsel
= { 2, 3, 1, 0 },
1359 .gpiomux
= { 2, 0, 0, 0 },
1362 .tuner_type
= TUNER_TEMIC_PAL
,
1363 .tuner_addr
= ADDR_UNSET
,
1364 .radio_addr
= ADDR_UNSET
,
1367 /* ---- card 0x3c ---------------------------------- */
1368 [BTTV_BOARD_MM100PCTV
] = {
1369 /* Philip Blundell <philb@gnu.org> */
1370 .name
= "Modular Technology MM100PCTV",
1376 .muxsel
= { 2, 3, 1, 1 },
1377 .gpiomux
= { 2, 0, 0, 1 },
1380 .tuner_type
= TUNER_TEMIC_PAL
,
1381 .tuner_addr
= ADDR_UNSET
,
1382 .radio_addr
= ADDR_UNSET
,
1384 [BTTV_BOARD_GMV1
] = {
1385 /* Adrian Cox <adrian@humboldt.co.uk */
1386 .name
= "AG Electronics GMV1",
1397 .tuner_type
= UNSET
,
1398 .tuner_addr
= ADDR_UNSET
,
1399 .radio_addr
= ADDR_UNSET
,
1401 [BTTV_BOARD_BESTBUY_EASYTV2
] = {
1402 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1403 new Easy TV BT878 version (model CPH061)
1404 special thanks to Informatica Mieres for providing the card */
1405 .name
= "Askey CPH061/ BESTBUY Easy TV (bt878)",
1411 .muxsel
= { 2, 3, 1, 0 },
1412 .gpiomux
= { 1, 0, 4, 4 },
1416 .tuner_type
= TUNER_PHILIPS_PAL
,
1417 .tuner_addr
= ADDR_UNSET
,
1418 .radio_addr
= ADDR_UNSET
,
1420 [BTTV_BOARD_ATI_TVWONDER
] = {
1421 /* Lukas Gebauer <geby@volny.cz> */
1422 .name
= "ATI TV-Wonder",
1428 .muxsel
= { 2, 3, 1, 0 },
1429 .gpiomux
= { 0xbffe, 0, 0xbfff, 0 },
1432 .tuner_type
= TUNER_TEMIC_4006FN5_MULTI_PAL
,
1433 .tuner_addr
= ADDR_UNSET
,
1434 .radio_addr
= ADDR_UNSET
,
1437 /* ---- card 0x40 ---------------------------------- */
1438 [BTTV_BOARD_ATI_TVWONDERVE
] = {
1439 /* Lukas Gebauer <geby@volny.cz> */
1440 .name
= "ATI TV-Wonder VE",
1446 .muxsel
= { 2, 3, 0, 1 },
1447 .gpiomux
= { 0, 0, 1, 0 },
1450 .tuner_type
= TUNER_TEMIC_4006FN5_MULTI_PAL
,
1451 .tuner_addr
= ADDR_UNSET
,
1452 .radio_addr
= ADDR_UNSET
,
1454 [BTTV_BOARD_FLYVIDEO2000
] = {
1455 /* DeeJay <deejay@westel900.net (2000S) */
1456 .name
= "Lifeview FlyVideo 2000S LR90",
1462 .muxsel
= { 2, 3, 0, 1 },
1463 /* Radio changed from 1e80 to 0x800 to make
1464 FlyVideo2000S in .hu happy (gm)*/
1465 /* -dk-???: set mute=0x1800 for tda9874h daughterboard */
1466 .gpiomux
= { 0x0000,0x0800,0x1000,0x1000 },
1468 .audio_mode_gpio
= fv2000s_audio
,
1473 .tuner_type
= TUNER_PHILIPS_PAL
,
1474 .tuner_addr
= ADDR_UNSET
,
1475 .radio_addr
= ADDR_UNSET
,
1477 [BTTV_BOARD_TERRATVALUER
] = {
1478 .name
= "Terratec TValueRadio",
1483 .gpiomask
= 0xffff00,
1484 .muxsel
= { 2, 3, 1, 1 },
1485 .gpiomux
= { 0x500, 0x500, 0x300, 0x900 },
1489 .tuner_type
= TUNER_PHILIPS_PAL
,
1490 .tuner_addr
= ADDR_UNSET
,
1491 .radio_addr
= ADDR_UNSET
,
1494 [BTTV_BOARD_GVBCTV4PCI
] = {
1495 /* TANAKA Kei <peg00625@nifty.com> */
1496 .name
= "IODATA GV-BCTV4/PCI",
1501 .gpiomask
= 0x010f00,
1502 .muxsel
= {2, 3, 0, 0 },
1503 .gpiomux
= {0x10000, 0, 0x10000, 0 },
1506 .tuner_type
= TUNER_SHARP_2U5JF5540_NTSC
,
1507 .tuner_addr
= ADDR_UNSET
,
1508 .radio_addr
= ADDR_UNSET
,
1509 .audio_mode_gpio
= gvbctv3pci_audio
,
1512 /* ---- card 0x44 ---------------------------------- */
1513 [BTTV_BOARD_VOODOOTV_FM
] = {
1514 .name
= "3Dfx VoodooTV FM (Euro)",
1515 /* try "insmod msp3400 simple=0" if you have
1516 * sound problems with this card. */
1521 .gpiomask
= 0x4f8a00,
1522 /* 0x100000: 1=MSP enabled (0=disable again)
1523 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1524 .gpiomux
= {0x947fff, 0x987fff,0x947fff,0x947fff },
1525 .gpiomute
= 0x947fff,
1526 /* tvtuner, radio, external,internal, mute, stereo
1527 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1528 .muxsel
= { 2, 3 ,0 ,1 },
1529 .tuner_type
= TUNER_MT2032
,
1530 .tuner_addr
= ADDR_UNSET
,
1531 .radio_addr
= ADDR_UNSET
,
1535 [BTTV_BOARD_VOODOOTV_200
] = {
1536 .name
= "VoodooTV 200 (USA)",
1537 /* try "insmod msp3400 simple=0" if you have
1538 * sound problems with this card. */
1543 .gpiomask
= 0x4f8a00,
1544 /* 0x100000: 1=MSP enabled (0=disable again)
1545 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1546 .gpiomux
= {0x947fff, 0x987fff,0x947fff,0x947fff },
1547 .gpiomute
= 0x947fff,
1548 /* tvtuner, radio, external,internal, mute, stereo
1549 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1550 .muxsel
= { 2, 3 ,0 ,1 },
1551 .tuner_type
= TUNER_MT2032
,
1552 .tuner_addr
= ADDR_UNSET
,
1553 .radio_addr
= ADDR_UNSET
,
1557 [BTTV_BOARD_AIMMS
] = {
1558 /* Philip Blundell <pb@nexus.co.uk> */
1559 .name
= "Active Imaging AIMMS",
1563 .tuner_type
= UNSET
,
1564 .tuner_addr
= ADDR_UNSET
,
1565 .radio_addr
= ADDR_UNSET
,
1570 [BTTV_BOARD_PV_BT878P_PLUS
] = {
1571 /* Tomasz Pyra <hellfire@sedez.iq.pl> */
1572 .name
= "Prolink Pixelview PV-BT878P+ (Rev.4C,8E)",
1578 .muxsel
= { 2, 3, 1, 1 },
1579 .gpiomux
= { 0, 0, 11, 7 }, /* TV and Radio with same GPIO ! */
1583 .tuner_type
= TUNER_LG_PAL_I_FM
,
1584 .tuner_addr
= ADDR_UNSET
,
1585 .radio_addr
= ADDR_UNSET
,
1588 GPIO0: U4.A0 (hef4052bt)
1590 GPIO2: U4.A1 (second hef4052bt)
1591 GPIO3: U4.nEN, U5.A0, A5.nEN
1595 [BTTV_BOARD_FLYVIDEO98EZ
] = {
1596 .name
= "Lifeview FlyVideo 98EZ (capture only) LR51",
1601 .muxsel
= { 2, 3, 1, 1 }, /* AV1, AV2, SVHS, CVid adapter on SVHS */
1604 .tuner_type
= UNSET
,
1605 .tuner_addr
= ADDR_UNSET
,
1606 .radio_addr
= ADDR_UNSET
,
1609 /* ---- card 0x48 ---------------------------------- */
1610 [BTTV_BOARD_PV_BT878P_9B
] = {
1611 /* Dariusz Kowalewski <darekk@automex.pl> */
1612 .name
= "Prolink Pixelview PV-BT878P+9B (PlayTV Pro rev.9B FM+NICAM)",
1618 .muxsel
= { 2, 3, 1, 1 },
1619 .gpiomux
= { 0x01, 0x00, 0x03, 0x03 },
1625 .tuner_type
= TUNER_PHILIPS_PAL
,
1626 .tuner_addr
= ADDR_UNSET
,
1627 .radio_addr
= ADDR_UNSET
,
1628 .audio_mode_gpio
= pvbt878p9b_audio
, /* Note: not all cards have stereo */
1629 .has_radio
= 1, /* Note: not all cards have radio */
1636 GPIO20,22,23: R30,R29,R28
1639 [BTTV_BOARD_SENSORAY311
] = {
1640 /* Clay Kunz <ckunz@mail.arc.nasa.gov> */
1641 /* you must jumper JP5 for the card to work */
1642 .name
= "Sensoray 311",
1648 .muxsel
= { 2, 3, 1, 0, 0 },
1651 .tuner_type
= UNSET
,
1652 .tuner_addr
= ADDR_UNSET
,
1653 .radio_addr
= ADDR_UNSET
,
1655 [BTTV_BOARD_RV605
] = {
1656 /* Miguel Freitas <miguel@cetuc.puc-rio.br> */
1657 .name
= "RemoteVision MX (RV605)",
1663 .gpiomask2
= 0x07ff,
1664 .muxsel
= { 0x33, 0x13, 0x23, 0x43, 0xf3, 0x73, 0xe3, 0x03,
1665 0xd3, 0xb3, 0xc3, 0x63, 0x93, 0x53, 0x83, 0xa3 },
1668 .tuner_type
= UNSET
,
1669 .tuner_addr
= ADDR_UNSET
,
1670 .radio_addr
= ADDR_UNSET
,
1671 .muxsel_hook
= rv605_muxsel
,
1673 [BTTV_BOARD_POWERCLR_MTV878
] = {
1674 .name
= "Powercolor MTV878/ MTV878R/ MTV878F",
1679 .gpiomask
= 0x1C800F, /* Bit0-2: Audio select, 8-12:remote control 14:remote valid 15:remote reset */
1680 .muxsel
= { 2, 1, 1, },
1681 .gpiomux
= { 0, 1, 2, 2 },
1684 .tuner_type
= TUNER_PHILIPS_PAL
,
1685 .tuner_addr
= ADDR_UNSET
,
1686 .radio_addr
= ADDR_UNSET
,
1691 /* ---- card 0x4c ---------------------------------- */
1692 [BTTV_BOARD_WINDVR
] = {
1693 /* Masaki Suzuki <masaki@btree.org> */
1694 .name
= "Canopus WinDVR PCI (COMPAQ Presario 3524JP, 5112JP)",
1699 .gpiomask
= 0x140007,
1700 .muxsel
= { 2, 3, 1, 1 },
1701 .gpiomux
= { 0, 1, 2, 3 },
1703 .tuner_type
= TUNER_PHILIPS_NTSC
,
1704 .tuner_addr
= ADDR_UNSET
,
1705 .radio_addr
= ADDR_UNSET
,
1706 .audio_mode_gpio
= windvr_audio
,
1708 [BTTV_BOARD_GRANDTEC_MULTI
] = {
1709 .name
= "GrandTec Multi Capture Card (Bt878)",
1715 .muxsel
= { 2, 3, 1, 0 },
1720 .tuner_type
= UNSET
,
1721 .tuner_addr
= ADDR_UNSET
,
1722 .radio_addr
= ADDR_UNSET
,
1724 [BTTV_BOARD_KWORLD
] = {
1725 .name
= "Jetway TV/Capture JW-TV878-FBK, Kworld KW-TV878RF",
1731 .muxsel
= { 2, 3, 1, 1 }, /* Tuner, SVid, SVHS, SVid to SVHS connector */
1732 .gpiomux
= { 0, 0, 4, 4 },/* Yes, this tuner uses the same audio output for TV and FM radio!
1733 * This card lacks external Audio In, so we mute it on Ext. & Int.
1734 * The PCB can take a sbx1637/sbx1673, wiring unknown.
1735 * This card lacks PCI subsystem ID, sigh.
1736 * gpiomux =1: lower volume, 2+3: mute
1737 * btwincap uses 0x80000/0x80003
1743 .tuner_type
= TUNER_PHILIPS_PAL
,
1744 .tuner_addr
= ADDR_UNSET
,
1745 .radio_addr
= ADDR_UNSET
,
1746 /* Samsung TCPA9095PC27A (BG+DK), philips compatible, w/FM, stereo and
1747 radio signal strength indicators work fine. */
1750 GPIO0,1: HEF4052 A0,A1
1751 GPIO2: HEF4052 nENABLE
1753 GPIO8-13: IRDC357 data0-5 (data6 n.c. ?) [chip not present on my card]
1757 ?? : mtu8b56ep microcontroller for IR (GPIO wiring unknown)*/
1759 [BTTV_BOARD_DSP_TCVIDEO
] = {
1760 /* Arthur Tetzlaff-Deas, DSP Design Ltd <software@dspdesign.com> */
1761 .name
= "DSP Design TCVIDEO",
1764 .muxsel
= { 2, 3, 1, 0 },
1766 .tuner_type
= UNSET
,
1767 .tuner_addr
= ADDR_UNSET
,
1768 .radio_addr
= ADDR_UNSET
,
1771 /* ---- card 0x50 ---------------------------------- */
1772 [BTTV_BOARD_HAUPPAUGEPVR
] = {
1773 .name
= "Hauppauge WinTV PVR",
1778 .muxsel
= { 2, 0, 1, 1 },
1781 .tuner_type
= UNSET
,
1782 .tuner_addr
= ADDR_UNSET
,
1783 .radio_addr
= ADDR_UNSET
,
1788 [BTTV_BOARD_GVBCTV5PCI
] = {
1789 .name
= "IODATA GV-BCTV5/PCI",
1794 .gpiomask
= 0x0f0f80,
1795 .muxsel
= {2, 3, 1, 0 },
1796 .gpiomux
= {0x030000, 0x010000, 0, 0 },
1797 .gpiomute
= 0x020000,
1800 .tuner_type
= TUNER_PHILIPS_NTSC_M
,
1801 .tuner_addr
= ADDR_UNSET
,
1802 .radio_addr
= ADDR_UNSET
,
1803 .audio_mode_gpio
= gvbctv5pci_audio
,
1806 [BTTV_BOARD_OSPREY1x0
] = {
1807 .name
= "Osprey 100/150 (878)", /* 0x1(2|3)-45C6-C1 */
1808 .video_inputs
= 4, /* id-inputs-clock */
1812 .muxsel
= { 3, 2, 0, 1 },
1814 .tuner_type
= UNSET
,
1815 .tuner_addr
= ADDR_UNSET
,
1816 .radio_addr
= ADDR_UNSET
,
1821 [BTTV_BOARD_OSPREY1x0_848
] = {
1822 .name
= "Osprey 100/150 (848)", /* 0x04-54C0-C1 & older boards */
1827 .muxsel
= { 2, 3, 1 },
1829 .tuner_type
= UNSET
,
1830 .tuner_addr
= ADDR_UNSET
,
1831 .radio_addr
= ADDR_UNSET
,
1837 /* ---- card 0x54 ---------------------------------- */
1838 [BTTV_BOARD_OSPREY101_848
] = {
1839 .name
= "Osprey 101 (848)", /* 0x05-40C0-C1 */
1846 .tuner_type
= UNSET
,
1847 .tuner_addr
= ADDR_UNSET
,
1848 .radio_addr
= ADDR_UNSET
,
1853 [BTTV_BOARD_OSPREY1x1
] = {
1854 .name
= "Osprey 101/151", /* 0x1(4|5)-0004-C4 */
1861 .tuner_type
= UNSET
,
1862 .tuner_addr
= ADDR_UNSET
,
1863 .radio_addr
= ADDR_UNSET
,
1868 [BTTV_BOARD_OSPREY1x1_SVID
] = {
1869 .name
= "Osprey 101/151 w/ svid", /* 0x(16|17|20)-00C4-C1 */
1876 .tuner_type
= UNSET
,
1877 .tuner_addr
= ADDR_UNSET
,
1878 .radio_addr
= ADDR_UNSET
,
1883 [BTTV_BOARD_OSPREY2xx
] = {
1884 .name
= "Osprey 200/201/250/251", /* 0x1(8|9|E|F)-0004-C4 */
1891 .tuner_type
= UNSET
,
1892 .tuner_addr
= ADDR_UNSET
,
1893 .radio_addr
= ADDR_UNSET
,
1899 /* ---- card 0x58 ---------------------------------- */
1900 [BTTV_BOARD_OSPREY2x0_SVID
] = {
1901 .name
= "Osprey 200/250", /* 0x1(A|B)-00C4-C1 */
1908 .tuner_type
= UNSET
,
1909 .tuner_addr
= ADDR_UNSET
,
1910 .radio_addr
= ADDR_UNSET
,
1915 [BTTV_BOARD_OSPREY2x0
] = {
1916 .name
= "Osprey 210/220/230", /* 0x1(A|B)-04C0-C1 */
1923 .tuner_type
= UNSET
,
1924 .tuner_addr
= ADDR_UNSET
,
1925 .radio_addr
= ADDR_UNSET
,
1930 [BTTV_BOARD_OSPREY500
] = {
1931 .name
= "Osprey 500", /* 500 */
1938 .tuner_type
= UNSET
,
1939 .tuner_addr
= ADDR_UNSET
,
1940 .radio_addr
= ADDR_UNSET
,
1945 [BTTV_BOARD_OSPREY540
] = {
1946 .name
= "Osprey 540", /* 540 */
1951 .tuner_type
= UNSET
,
1952 .tuner_addr
= ADDR_UNSET
,
1953 .radio_addr
= ADDR_UNSET
,
1959 /* ---- card 0x5C ---------------------------------- */
1960 [BTTV_BOARD_OSPREY2000
] = {
1961 .name
= "Osprey 2000", /* 2000 */
1968 .tuner_type
= UNSET
,
1969 .tuner_addr
= ADDR_UNSET
,
1970 .radio_addr
= ADDR_UNSET
,
1973 .no_tda7432
= 1, /* must avoid, conflicts with the bt860 */
1975 [BTTV_BOARD_IDS_EAGLE
] = {
1976 /* M G Berberich <berberic@forwiss.uni-passau.de> */
1977 .name
= "IDS Eagle",
1981 .tuner_type
= UNSET
,
1982 .tuner_addr
= ADDR_UNSET
,
1983 .radio_addr
= ADDR_UNSET
,
1986 .muxsel
= { 0, 1, 2, 3 },
1987 .muxsel_hook
= eagle_muxsel
,
1992 [BTTV_BOARD_PINNACLESAT
] = {
1993 .name
= "Pinnacle PCTV Sat",
1998 .tuner_type
= UNSET
,
1999 .tuner_addr
= ADDR_UNSET
,
2000 .radio_addr
= ADDR_UNSET
,
2009 [BTTV_BOARD_FORMAC_PROTV
] = {
2010 .name
= "Formac ProTV II (bt878)",
2016 /* TV, Comp1, Composite over SVID con, SVID */
2017 .muxsel
= { 2, 3, 1, 1 },
2018 .gpiomux
= { 2, 2, 0, 0 },
2021 .tuner_type
= TUNER_PHILIPS_PAL
,
2022 .tuner_addr
= ADDR_UNSET
,
2023 .radio_addr
= ADDR_UNSET
,
2025 GPIO=0x00,0x01,0x03: mute (?)
2026 0x02: both TV and radio (tuner: FM1216/I)
2027 The card has onboard audio connectors labeled "cdrom" and "board",
2028 not soldered here, though unknown wiring.
2029 Card lacks: external audio in, pci subsystem id.
2033 /* ---- card 0x60 ---------------------------------- */
2034 [BTTV_BOARD_MACHTV
] = {
2041 .muxsel
= { 2, 3, 1, 1},
2042 .gpiomux
= { 0, 1, 2, 3},
2045 .tuner_type
= TUNER_PHILIPS_PAL
,
2046 .tuner_addr
= ADDR_UNSET
,
2047 .radio_addr
= ADDR_UNSET
,
2050 [BTTV_BOARD_EURESYS_PICOLO
] = {
2051 .name
= "Euresys Picolo",
2060 .muxsel
= { 2, 0, 1},
2062 .tuner_type
= UNSET
,
2063 .tuner_addr
= ADDR_UNSET
,
2064 .radio_addr
= ADDR_UNSET
,
2066 [BTTV_BOARD_PV150
] = {
2067 /* Luc Van Hoeylandt <luc@e-magic.be> */
2068 .name
= "ProVideo PV150", /* 0x4f */
2079 .tuner_type
= UNSET
,
2080 .tuner_addr
= ADDR_UNSET
,
2081 .radio_addr
= ADDR_UNSET
,
2083 [BTTV_BOARD_AD_TVK503
] = {
2084 /* Hiroshi Takekawa <sian@big.or.jp> */
2085 /* This card lacks subsystem ID */
2086 .name
= "AD-TVK503", /* 0x63 */
2091 .gpiomask
= 0x001e8007,
2092 .muxsel
= { 2, 3, 1, 0 },
2093 /* Tuner, Radio, external, internal, off, on */
2094 .gpiomux
= { 0x08, 0x0f, 0x0a, 0x08 },
2099 .tuner_type
= TUNER_PHILIPS_NTSC
,
2100 .tuner_addr
= ADDR_UNSET
,
2101 .radio_addr
= ADDR_UNSET
,
2102 .audio_mode_gpio
= adtvk503_audio
,
2105 /* ---- card 0x64 ---------------------------------- */
2106 [BTTV_BOARD_HERCULES_SM_TV
] = {
2107 .name
= "Hercules Smart TV Stereo",
2113 .muxsel
= { 2, 3, 1, 1 },
2117 .tuner_type
= TUNER_PHILIPS_PAL
,
2118 .tuner_addr
= ADDR_UNSET
,
2119 .radio_addr
= ADDR_UNSET
,
2121 - card lacks subsystem ID
2122 - stereo variant w/ daughter board with tda9874a @0xb0
2124 always from tda9874 independent of GPIO (?)
2125 external line in: unknown
2126 - Other chips: em78p156elp @ 0x96 (probably IR remote control)
2127 hef4053 (instead 4052) for unknown function
2130 [BTTV_BOARD_PACETV
] = {
2131 .name
= "Pace TV & Radio Card",
2136 .muxsel
= { 2, 3, 1, 1 }, /* Tuner, CVid, SVid, CVid over SVid connector */
2140 .tuner_type
= TUNER_PHILIPS_PAL_I
,
2141 .tuner_addr
= ADDR_UNSET
,
2142 .radio_addr
= ADDR_UNSET
,
2145 /* Bt878, Bt832, FI1246 tuner; no pci subsystem id
2146 only internal line out: (4pin header) RGGL
2147 Radio must be decoded by msp3410d (not routed through)*/
2149 .digital_mode = DIGITAL_MODE_CAMERA, todo!
2152 [BTTV_BOARD_IVC200
] = {
2153 /* Chris Willing <chris@vislab.usyd.edu.au> */
2158 .tuner_type
= UNSET
,
2159 .tuner_addr
= ADDR_UNSET
,
2160 .radio_addr
= ADDR_UNSET
,
2166 [BTTV_BOARD_XGUARD
] = {
2167 .name
= "Grand X-Guard / Trust 814PCI",
2172 .tuner_type
= TUNER_ABSENT
,
2173 .tuner_addr
= ADDR_UNSET
,
2174 .radio_addr
= ADDR_UNSET
,
2176 .muxsel
= { 2,2,2,2, 3,3,3,3, 1,1,1,1, 0,0,0,0 },
2177 .muxsel_hook
= xguard_muxsel
,
2184 /* ---- card 0x68 ---------------------------------- */
2185 [BTTV_BOARD_NEBULA_DIGITV
] = {
2186 .name
= "Nebula Electronics DigiTV",
2190 .muxsel
= { 2, 3, 1, 0 },
2195 .tuner_type
= UNSET
,
2196 .tuner_addr
= ADDR_UNSET
,
2197 .radio_addr
= ADDR_UNSET
,
2203 [BTTV_BOARD_PV143
] = {
2204 /* Jorge Boncompte - DTI2 <jorge@dti2.net> */
2205 .name
= "ProVideo PV143",
2211 .muxsel
= { 2, 3, 1, 0 },
2216 .tuner_type
= UNSET
,
2217 .tuner_addr
= ADDR_UNSET
,
2218 .radio_addr
= ADDR_UNSET
,
2220 [BTTV_BOARD_VD009X1_MINIDIN
] = {
2221 /* M.Klahr@phytec.de */
2222 .name
= "PHYTEC VD-009-X1 MiniDIN (bt878)",
2225 .tuner
= UNSET
, /* card has no tuner */
2228 .muxsel
= { 2, 3, 1, 0 },
2229 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2232 .tuner_type
= UNSET
,
2233 .tuner_addr
= ADDR_UNSET
,
2234 .radio_addr
= ADDR_UNSET
,
2236 [BTTV_BOARD_VD009X1_COMBI
] = {
2237 .name
= "PHYTEC VD-009-X1 Combi (bt878)",
2240 .tuner
= UNSET
, /* card has no tuner */
2243 .muxsel
= { 2, 3, 1, 1 },
2244 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2247 .tuner_type
= UNSET
,
2248 .tuner_addr
= ADDR_UNSET
,
2249 .radio_addr
= ADDR_UNSET
,
2252 /* ---- card 0x6c ---------------------------------- */
2253 [BTTV_BOARD_VD009_MINIDIN
] = {
2254 .name
= "PHYTEC VD-009 MiniDIN (bt878)",
2257 .tuner
= UNSET
, /* card has no tuner */
2260 .gpiomask2
= 0x03, /* gpiomask2 defines the bits used to switch audio
2261 via the upper nibble of muxsel. here: used for
2262 xternal video-mux */
2263 .muxsel
= { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x00 },
2264 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2267 .tuner_type
= UNSET
,
2268 .tuner_addr
= ADDR_UNSET
,
2269 .radio_addr
= ADDR_UNSET
,
2271 [BTTV_BOARD_VD009_COMBI
] = {
2272 .name
= "PHYTEC VD-009 Combi (bt878)",
2275 .tuner
= UNSET
, /* card has no tuner */
2278 .gpiomask2
= 0x03, /* gpiomask2 defines the bits used to switch audio
2279 via the upper nibble of muxsel. here: used for
2280 xternal video-mux */
2281 .muxsel
= { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x01 },
2282 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2285 .tuner_type
= UNSET
,
2286 .tuner_addr
= ADDR_UNSET
,
2287 .radio_addr
= ADDR_UNSET
,
2289 [BTTV_BOARD_IVC100
] = {
2294 .tuner_type
= UNSET
,
2295 .tuner_addr
= ADDR_UNSET
,
2296 .radio_addr
= ADDR_UNSET
,
2299 .muxsel
= { 2, 3, 1, 0 },
2302 [BTTV_BOARD_IVC120
] = {
2303 /* IVC-120G - Alan Garfield <alan@fromorbit.com> */
2306 .audio_inputs
= 0, /* card has no audio */
2307 .tuner
= UNSET
, /* card has no tuner */
2308 .tuner_type
= UNSET
,
2309 .tuner_addr
= ADDR_UNSET
,
2310 .radio_addr
= ADDR_UNSET
,
2311 .svhs
= UNSET
, /* card has no svhs */
2317 .muxsel
= { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
2318 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10 },
2319 .muxsel_hook
= ivc120_muxsel
,
2323 /* ---- card 0x70 ---------------------------------- */
2324 [BTTV_BOARD_PC_HDTV
] = {
2325 .name
= "pcHDTV HD-2000 TV",
2330 .muxsel
= { 2, 3, 1, 0 },
2331 .tuner_type
= TUNER_PHILIPS_FCV1236D
,
2332 .tuner_addr
= ADDR_UNSET
,
2333 .radio_addr
= ADDR_UNSET
,
2336 [BTTV_BOARD_TWINHAN_DST
] = {
2337 .name
= "Twinhan DST + clones",
2341 .tuner_type
= TUNER_ABSENT
,
2342 .tuner_addr
= ADDR_UNSET
,
2343 .radio_addr
= ADDR_UNSET
,
2347 [BTTV_BOARD_WINFASTVC100
] = {
2348 .name
= "Winfast VC100",
2353 .muxsel
= { 3, 1, 1, 3 }, /* Vid In, SVid In, Vid over SVid in connector */
2357 .tuner_type
= TUNER_ABSENT
,
2358 .tuner_addr
= ADDR_UNSET
,
2359 .radio_addr
= ADDR_UNSET
,
2362 [BTTV_BOARD_TEV560
] = {
2363 .name
= "Teppro TEV-560/InterVision IV-560",
2369 .muxsel
= { 2, 3, 1, 1 },
2370 .gpiomux
= { 1, 1, 1, 1 },
2372 .tuner_type
= TUNER_PHILIPS_PAL
,
2373 .tuner_addr
= ADDR_UNSET
,
2374 .radio_addr
= ADDR_UNSET
,
2378 /* ---- card 0x74 ---------------------------------- */
2379 [BTTV_BOARD_SIMUS_GVC1100
] = {
2380 .name
= "SIMUS GVC1100",
2385 .tuner_type
= UNSET
,
2386 .tuner_addr
= ADDR_UNSET
,
2387 .radio_addr
= ADDR_UNSET
,
2389 .muxsel
= { 2, 2, 2, 2 },
2391 .muxsel_hook
= gvc1100_muxsel
,
2393 [BTTV_BOARD_NGSTV_PLUS
] = {
2394 /* Carlos Silva r3pek@r3pek.homelinux.org || card 0x75 */
2395 .name
= "NGS NGSTV+",
2399 .gpiomask
= 0x008007,
2400 .muxsel
= { 2, 3, 0, 0 },
2401 .gpiomux
= { 0, 0, 0, 0 },
2402 .gpiomute
= 0x000003,
2404 .tuner_type
= TUNER_PHILIPS_PAL
,
2405 .tuner_addr
= ADDR_UNSET
,
2406 .radio_addr
= ADDR_UNSET
,
2409 [BTTV_BOARD_LMLBT4
] = {
2410 /* http://linuxmedialabs.com */
2412 .video_inputs
= 4, /* IN1,IN2,IN3,IN4 */
2416 .muxsel
= { 2, 3, 1, 0 },
2421 .tuner_type
= UNSET
,
2422 .tuner_addr
= ADDR_UNSET
,
2423 .radio_addr
= ADDR_UNSET
,
2425 [BTTV_BOARD_TEKRAM_M205
] = {
2426 /* Helmroos Harri <harri.helmroos@pp.inet.fi> */
2427 .name
= "Tekram M205 PRO",
2431 .tuner_type
= TUNER_PHILIPS_PAL
,
2432 .tuner_addr
= ADDR_UNSET
,
2433 .radio_addr
= ADDR_UNSET
,
2437 .muxsel
= { 2, 3, 1 },
2438 .gpiomux
= { 0x68, 0x68, 0x61, 0x61 },
2442 /* ---- card 0x78 ---------------------------------- */
2443 [BTTV_BOARD_CONTVFMI
] = {
2444 /* Javier Cendan Ares <jcendan@lycos.es> */
2445 /* bt878 TV + FM without subsystem ID */
2446 .name
= "Conceptronic CONTVFMi",
2451 .gpiomask
= 0x008007,
2452 .muxsel
= { 2, 3, 1, 1 },
2453 .gpiomux
= { 0, 1, 2, 2 },
2457 .tuner_type
= TUNER_PHILIPS_PAL
,
2458 .tuner_addr
= ADDR_UNSET
,
2459 .radio_addr
= ADDR_UNSET
,
2463 [BTTV_BOARD_PICOLO_TETRA_CHIP
] = {
2464 /*Eric DEBIEF <debief@telemsa.com>*/
2465 /*EURESYS Picolo Tetra : 4 Conexant Fusion 878A, no audio, video input set with analog multiplexers GPIO controled*/
2466 /* adds picolo_tetra_muxsel(), picolo_tetra_init(), the folowing declaration strucure, and #define BTTV_BOARD_PICOLO_TETRA_CHIP*/
2468 .name
= "Euresys Picolo Tetra",
2474 .gpiomask2
= 0x3C<<16,/*Set the GPIO[18]->GPIO[21] as output pin.==> drive the video inputs through analog multiplexers*/
2478 .muxsel
= {2,2,2,2},/*878A input is always MUX0, see above.*/
2479 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2482 .muxsel_hook
= picolo_tetra_muxsel
,/*Required as it doesn't follow the classic input selection policy*/
2483 .tuner_type
= UNSET
,
2484 .tuner_addr
= ADDR_UNSET
,
2485 .radio_addr
= ADDR_UNSET
,
2487 [BTTV_BOARD_SPIRIT_TV
] = {
2488 /* Spirit TV Tuner from http://spiritmodems.com.au */
2489 /* Stafford Goodsell <surge@goliath.homeunix.org> */
2490 .name
= "Spirit TV Tuner",
2495 .gpiomask
= 0x0000000f,
2496 .muxsel
= { 2, 1, 1 },
2497 .gpiomux
= { 0x02, 0x00, 0x00, 0x00 },
2498 .tuner_type
= TUNER_TEMIC_PAL
,
2499 .tuner_addr
= ADDR_UNSET
,
2500 .radio_addr
= ADDR_UNSET
,
2504 [BTTV_BOARD_AVDVBT_771
] = {
2505 /* Wolfram Joost <wojo@frokaschwei.de> */
2506 .name
= "AVerMedia AVerTV DVB-T 771",
2510 .tuner_type
= TUNER_ABSENT
,
2511 .tuner_addr
= ADDR_UNSET
,
2512 .radio_addr
= ADDR_UNSET
,
2513 .muxsel
= { 3 , 3 },
2522 /* ---- card 0x7c ---------------------------------- */
2523 [BTTV_BOARD_AVDVBT_761
] = {
2524 /* Matt Jesson <dvb@jesson.eclipse.co.uk> */
2525 /* Based on the Nebula card data - added remote and new card number - BTTV_BOARD_AVDVBT_761, see also ir-kbd-gpio.c */
2526 .name
= "AverMedia AverTV DVB-T 761",
2530 .muxsel
= { 3, 1, 2, 0 }, /* Comp0, S-Video, ?, ? */
2535 .tuner_type
= UNSET
,
2536 .tuner_addr
= ADDR_UNSET
,
2537 .radio_addr
= ADDR_UNSET
,
2542 [BTTV_BOARD_MATRIX_VISIONSQ
] = {
2543 /* andre.schwarz@matrix-vision.de */
2544 .name
= "MATRIX Vision Sigma-SQ",
2550 .muxsel
= { 2, 2, 2, 2, 2, 2, 2, 2,
2551 3, 3, 3, 3, 3, 3, 3, 3 },
2552 .muxsel_hook
= sigmaSQ_muxsel
,
2556 .tuner_type
= UNSET
,
2557 .tuner_addr
= ADDR_UNSET
,
2558 .radio_addr
= ADDR_UNSET
,
2560 [BTTV_BOARD_MATRIX_VISIONSLC
] = {
2561 /* andre.schwarz@matrix-vision.de */
2562 .name
= "MATRIX Vision Sigma-SLC",
2568 .muxsel
= { 2, 2, 2, 2 },
2569 .muxsel_hook
= sigmaSLC_muxsel
,
2573 .tuner_type
= UNSET
,
2574 .tuner_addr
= ADDR_UNSET
,
2575 .radio_addr
= ADDR_UNSET
,
2577 /* BTTV_BOARD_APAC_VIEWCOMP */
2578 [BTTV_BOARD_APAC_VIEWCOMP
] = {
2579 /* Attila Kondoros <attila.kondoros@chello.hu> */
2580 /* bt878 TV + FM 0x00000000 subsystem ID */
2581 .name
= "APAC Viewcomp 878(AMAX)",
2587 .muxsel
= { 2, 3, 1, 1 },
2588 .gpiomux
= { 2, 0, 0, 0 },
2592 .tuner_type
= TUNER_PHILIPS_PAL
,
2593 .tuner_addr
= ADDR_UNSET
,
2594 .radio_addr
= ADDR_UNSET
,
2595 .has_remote
= 1, /* miniremote works, see ir-kbd-gpio.c */
2596 .has_radio
= 1, /* not every card has radio */
2599 /* ---- card 0x80 ---------------------------------- */
2600 [BTTV_BOARD_DVICO_DVBT_LITE
] = {
2601 /* Chris Pascoe <c.pascoe@itee.uq.edu.au> */
2602 .name
= "DViCO FusionHDTV DVB-T Lite",
2610 .tuner_type
= UNSET
,
2611 .tuner_addr
= ADDR_UNSET
,
2612 .radio_addr
= ADDR_UNSET
,
2614 [BTTV_BOARD_VGEAR_MYVCD
] = {
2615 /* Steven <photon38@pchome.com.tw> */
2616 .name
= "V-Gear MyVCD",
2622 .muxsel
= {2, 3, 1, 0 },
2623 .gpiomux
= {0x31, 0x31, 0x31, 0x31 },
2627 .tuner_type
= TUNER_PHILIPS_NTSC_M
,
2628 .tuner_addr
= ADDR_UNSET
,
2629 .radio_addr
= ADDR_UNSET
,
2632 [BTTV_BOARD_SUPER_TV
] = {
2633 /* Rick C <cryptdragoon@gmail.com> */
2634 .name
= "Super TV Tuner",
2639 .muxsel
= { 2, 3, 1, 0 },
2640 .tuner_type
= TUNER_PHILIPS_NTSC
,
2641 .tuner_addr
= ADDR_UNSET
,
2642 .radio_addr
= ADDR_UNSET
,
2643 .gpiomask
= 0x008007,
2644 .gpiomux
= { 0, 0x000001,0,0 },
2648 [BTTV_BOARD_TIBET_CS16
] = {
2649 /* Chris Fanning <video4linux@haydon.net> */
2650 .name
= "Tibet Systems 'Progress DVR' CS16",
2655 .muxsel
= { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 },
2660 .tuner_type
= UNSET
,
2661 .tuner_addr
= ADDR_UNSET
,
2662 .radio_addr
= ADDR_UNSET
,
2663 .muxsel_hook
= tibetCS16_muxsel
,
2665 [BTTV_BOARD_KODICOM_4400R
] = {
2666 /* Bill Brack <wbrack@mmm.com.hk> */
2668 * Note that, because of the card's wiring, the "master"
2669 * BT878A chip (i.e. the one which controls the analog switch
2670 * and must use this card type) is the 2nd one detected. The
2671 * other 3 chips should use card type 0x85, whose description
2672 * follows this one. There is a EEPROM on the card (which is
2673 * connected to the I2C of one of those other chips), but is
2674 * not currently handled. There is also a facility for a
2675 * "monitor", which is also not currently implemented.
2677 .name
= "Kodicom 4400R (master)",
2681 .tuner_type
= UNSET
,
2682 .tuner_addr
= ADDR_UNSET
,
2683 .radio_addr
= ADDR_UNSET
,
2685 /* GPIO bits 0-9 used for analog switch:
2686 * 00 - 03: camera selector
2687 * 04 - 06: channel (controller) selector
2688 * 07: data (1->on, 0->off)
2691 * bit 16 is input from sync separator for the channel
2693 .gpiomask
= 0x0003ff,
2695 .muxsel
= { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2700 .muxsel_hook
= kodicom4400r_muxsel
,
2702 [BTTV_BOARD_KODICOM_4400R_SL
] = {
2703 /* Bill Brack <wbrack@mmm.com.hk> */
2704 /* Note that, for reasons unknown, the "master" BT878A chip (i.e. the
2705 * one which controls the analog switch, and must use the card type)
2706 * is the 2nd one detected. The other 3 chips should use this card
2709 .name
= "Kodicom 4400R (slave)",
2713 .tuner_type
= UNSET
,
2714 .tuner_addr
= ADDR_UNSET
,
2715 .radio_addr
= ADDR_UNSET
,
2717 .gpiomask
= 0x010000,
2719 .muxsel
= { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2724 .muxsel_hook
= kodicom4400r_muxsel
,
2726 /* ---- card 0x86---------------------------------- */
2727 [BTTV_BOARD_ADLINK_RTV24
] = {
2728 /* Michael Henson <mhenson@clarityvi.com> */
2729 /* Adlink RTV24 with special unlock codes */
2730 .name
= "Adlink RTV24",
2735 .muxsel
= { 2, 3, 1, 0 },
2736 .tuner_type
= UNSET
,
2737 .tuner_addr
= ADDR_UNSET
,
2738 .radio_addr
= ADDR_UNSET
,
2741 /* ---- card 0x87---------------------------------- */
2742 [BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
] = {
2743 /* Michael Krufky <mkrufky@m1k.net> */
2744 .name
= "DViCO FusionHDTV 5 Lite",
2746 .tuner_type
= TUNER_LG_TDVS_H06XF
, /* TDVS-H064F */
2747 .tuner_addr
= ADDR_UNSET
,
2748 .radio_addr
= ADDR_UNSET
,
2752 .muxsel
= { 2, 3, 1 },
2753 .gpiomask
= 0x00e00007,
2754 .gpiomux
= { 0x00400005, 0, 0x00000001, 0 },
2755 .gpiomute
= 0x00c00007,
2761 /* ---- card 0x88---------------------------------- */
2762 [BTTV_BOARD_ACORP_Y878F
] = {
2763 /* Mauro Carvalho Chehab <mchehab@infradead.org> */
2764 .name
= "Acorp Y878F",
2769 .gpiomask
= 0x01fe00,
2770 .muxsel
= { 2, 3, 1, 1 },
2771 .gpiomux
= { 0x001e00, 0, 0x018000, 0x014000 },
2772 .gpiomute
= 0x002000,
2775 .tuner_type
= TUNER_YMEC_TVF66T5_B_DFF
,
2776 .tuner_addr
= 0xc1 >>1,
2777 .radio_addr
= 0xc1 >>1,
2780 /* ---- card 0x89 ---------------------------------- */
2781 [BTTV_BOARD_CONCEPTRONIC_CTVFMI2
] = {
2782 .name
= "Conceptronic CTVFMi v2",
2787 .gpiomask
= 0x001c0007,
2788 .muxsel
= { 2, 3, 1, 1 },
2789 .gpiomux
= { 0, 1, 2, 2 },
2793 .tuner_type
= TUNER_TENA_9533_DI
,
2794 .tuner_addr
= ADDR_UNSET
,
2795 .radio_addr
= ADDR_UNSET
,
2799 /* ---- card 0x8a ---------------------------------- */
2800 [BTTV_BOARD_PV_BT878P_2E
] = {
2801 .name
= "Prolink Pixelview PV-BT878P+ (Rev.2E)",
2806 .gpiomask
= 0x01fe00,
2807 .muxsel
= { 2,3,1,1,-1 },
2808 .digital_mode
= DIGITAL_MODE_CAMERA
,
2809 .gpiomux
= { 0x00400, 0x10400, 0x04400, 0x80000 },
2810 .gpiomute
= 0x12400,
2813 .tuner_type
= TUNER_LG_PAL_FM
,
2814 .tuner_addr
= ADDR_UNSET
,
2815 .radio_addr
= ADDR_UNSET
,
2818 /* ---- card 0x8b ---------------------------------- */
2819 [BTTV_BOARD_PV_M4900
] = {
2820 /* Sérgio Fortier <sergiofortier@yahoo.com.br> */
2821 .name
= "Prolink PixelView PlayTV MPEG2 PV-M4900",
2827 .muxsel
= { 2, 3, 1, 1 },
2828 .gpiomux
= { 0x21, 0x20, 0x24, 0x2c },
2832 .tuner_type
= TUNER_YMEC_TVF_5533MF
,
2833 .tuner_addr
= ADDR_UNSET
,
2834 .radio_addr
= ADDR_UNSET
,
2838 /* ---- card 0x8c ---------------------------------- */
2839 /* Has four Bt878 chips behind a PCI bridge, each chip has:
2840 one external BNC composite input (mux 2)
2841 three internal composite inputs (unknown muxes)
2842 an 18-bit stereo A/D (CS5331A), which has:
2843 one external stereo unblanced (RCA) audio connection
2844 one (or 3?) internal stereo balanced (XLR) audio connection
2845 input is selected via gpio to a 14052B mux
2846 (mask=0x300, unbal=0x000, bal=0x100, ??=0x200,0x300)
2847 gain is controlled via an X9221A chip on the I2C bus @0x28
2848 sample rate is controlled via gpio to an MK1413S
2849 (mask=0x3, 32kHz=0x0, 44.1kHz=0x1, 48kHz=0x2, ??=0x3)
2850 There is neither a tuner nor an svideo input. */
2851 [BTTV_BOARD_OSPREY440
] = {
2852 .name
= "Osprey 440",
2854 .audio_inputs
= 2, /* this is meaningless */
2857 .muxsel
= { 2, 3, 0, 1 }, /* 3,0,1 are guesses */
2859 .gpiomute
= 0x000, /* int + 32kHz */
2860 .gpiomux
= { 0, 0, 0x000, 0x100},
2862 .tuner_type
= UNSET
,
2863 .tuner_addr
= ADDR_UNSET
,
2864 .radio_addr
= ADDR_UNSET
,
2869 /* ---- card 0x8d ---------------------------------- */
2870 [BTTV_BOARD_ASOUND_SKYEYE
] = {
2871 .name
= "Asound Skyeye PCTV",
2877 .muxsel
= { 2, 3, 1, 1 },
2878 .gpiomux
= { 2, 0, 0, 0 },
2882 .tuner_type
= TUNER_PHILIPS_NTSC
,
2883 .tuner_addr
= ADDR_UNSET
,
2884 .radio_addr
= ADDR_UNSET
,
2886 /* ---- card 0x8e ---------------------------------- */
2887 [BTTV_BOARD_SABRENT_TVFM
] = {
2888 .name
= "Sabrent TV-FM (bttv version)",
2893 .gpiomask
= 0x108007,
2894 .muxsel
= { 2, 3, 1, 1 },
2895 .gpiomux
= { 100000, 100002, 100002, 100000 },
2900 .tuner_type
= TUNER_TNF_5335MF
,
2901 .tuner_addr
= ADDR_UNSET
,
2904 /* ---- card 0x8f ---------------------------------- */
2905 [BTTV_BOARD_HAUPPAUGE_IMPACTVCB
] = {
2906 .name
= "Hauppauge ImpactVCB (bt878)",
2911 .gpiomask
= 0x0f, /* old: 7 */
2912 .muxsel
= { 0, 1, 3, 2 }, /* Composite 0-3 */
2916 .tuner_type
= UNSET
,
2917 .tuner_addr
= ADDR_UNSET
,
2918 .radio_addr
= ADDR_UNSET
,
2920 [BTTV_BOARD_MACHTV_MAGICTV
] = {
2921 /* Julian Calaby <julian.calaby@gmail.com>
2922 * Slightly different from original MachTV definition (0x60)
2924 * FIXME: RegSpy says gpiomask should be "0x001c800f", but it
2925 * stuffs up remote chip. Bug is a pin on the jaecs is not set
2926 * properly (methinks) causing no keyup bits being set */
2928 .name
= "MagicTV", /* rebranded MachTV */
2934 .muxsel
= { 2, 3, 1, 1 },
2935 .gpiomux
= { 0, 1, 2, 3 },
2937 .tuner_type
= TUNER_TEMIC_4009FR5_PAL
,
2938 .tuner_addr
= ADDR_UNSET
,
2939 .radio_addr
= ADDR_UNSET
,
2944 [BTTV_BOARD_SSAI_SECURITY
] = {
2945 .name
= "SSAI Security Video Interface",
2950 .muxsel
= { 0, 1, 2, 3 },
2951 .tuner_type
= UNSET
,
2952 .tuner_addr
= ADDR_UNSET
,
2953 .radio_addr
= ADDR_UNSET
,
2955 [BTTV_BOARD_SSAI_ULTRASOUND
] = {
2956 .name
= "SSAI Ultrasound Video Interface",
2961 .muxsel
= { 2, 0, 1, 3 },
2962 .tuner_type
= UNSET
,
2963 .tuner_addr
= ADDR_UNSET
,
2964 .radio_addr
= ADDR_UNSET
,
2966 /* ---- card 0x94---------------------------------- */
2967 [BTTV_BOARD_DVICO_FUSIONHDTV_2
] = {
2968 .name
= "DViCO FusionHDTV 2",
2970 .tuner_type
= TUNER_PHILIPS_FCV1236D
,
2971 .tuner_addr
= ADDR_UNSET
,
2972 .radio_addr
= ADDR_UNSET
,
2976 .muxsel
= { 2, 3, 1 },
2977 .gpiomask
= 0x00e00007,
2978 .gpiomux
= { 0x00400005, 0, 0x00000001, 0 },
2979 .gpiomute
= 0x00c00007,
2984 /* ---- card 0x95---------------------------------- */
2985 [BTTV_BOARD_TYPHOON_TVTUNERPCI
] = {
2986 .name
= "Typhoon TV-Tuner PCI (50684)",
2991 .gpiomask
= 0x3014f,
2992 .muxsel
= { 2, 3, 1, 1 },
2993 .gpiomux
= { 0x20001,0x10001, 0, 0 },
2997 .tuner_type
= TUNER_PHILIPS_PAL_I
,
2998 .tuner_addr
= ADDR_UNSET
,
2999 .radio_addr
= ADDR_UNSET
,
3001 [BTTV_BOARD_GEOVISION_GV600
] = {
3003 .name
= "Geovision GV-600",
3009 .muxsel
= { 2, 2, 2, 2, 2, 2, 2, 2,
3010 2, 2, 2, 2, 2, 2, 2, 2 },
3011 .muxsel_hook
= geovision_muxsel
,
3015 .tuner_type
= UNSET
,
3016 .tuner_addr
= ADDR_UNSET
,
3017 .radio_addr
= ADDR_UNSET
,
3019 [BTTV_BOARD_KOZUMI_KTV_01C
] = {
3020 /* Mauro Lacy <mauro@lacy.com.ar>
3021 * Based on MagicTV and Conceptronic CONTVFMi */
3023 .name
= "Kozumi KTV-01C",
3028 .gpiomask
= 0x008007,
3029 .muxsel
= { 2, 3, 1, 1 },
3030 .gpiomux
= { 0, 1, 2, 2 }, /* CONTVFMi */
3031 .gpiomute
= 3, /* CONTVFMi */
3033 .tuner_type
= TUNER_PHILIPS_FM1216ME_MK3
, /* TCL MK3 */
3034 .tuner_addr
= ADDR_UNSET
,
3035 .radio_addr
= ADDR_UNSET
,
3042 static const unsigned int bttv_num_tvcards
= ARRAY_SIZE(bttv_tvcards
);
3044 /* ----------------------------------------------------------------------- */
3046 static unsigned char eeprom_data
[256];
3051 void __devinit
bttv_idcard(struct bttv
*btv
)
3053 unsigned int gpiobits
;
3057 /* read PCI subsystem ID */
3058 pci_read_config_word(btv
->c
.pci
, PCI_SUBSYSTEM_ID
, &tmp
);
3059 btv
->cardid
= tmp
<< 16;
3060 pci_read_config_word(btv
->c
.pci
, PCI_SUBSYSTEM_VENDOR_ID
, &tmp
);
3063 if (0 != btv
->cardid
&& 0xffffffff != btv
->cardid
) {
3064 /* look for the card */
3065 for (type
= -1, i
= 0; cards
[i
].id
!= 0; i
++)
3066 if (cards
[i
].id
== btv
->cardid
)
3071 printk(KERN_INFO
"bttv%d: detected: %s [card=%d], "
3072 "PCI subsystem ID is %04x:%04x\n",
3073 btv
->c
.nr
,cards
[type
].name
,cards
[type
].cardnr
,
3074 btv
->cardid
& 0xffff,
3075 (btv
->cardid
>> 16) & 0xffff);
3076 btv
->c
.type
= cards
[type
].cardnr
;
3079 printk(KERN_INFO
"bttv%d: subsystem: %04x:%04x (UNKNOWN)\n",
3080 btv
->c
.nr
, btv
->cardid
& 0xffff,
3081 (btv
->cardid
>> 16) & 0xffff);
3082 printk(KERN_DEBUG
"please mail id, board name and "
3083 "the correct card= insmod option to video4linux-list@redhat.com\n");
3087 /* let the user override the autodetected type */
3088 if (card
[btv
->c
.nr
] < bttv_num_tvcards
)
3089 btv
->c
.type
=card
[btv
->c
.nr
];
3091 /* print which card config we are using */
3092 printk(KERN_INFO
"bttv%d: using: %s [card=%d,%s]\n",btv
->c
.nr
,
3093 bttv_tvcards
[btv
->c
.type
].name
, btv
->c
.type
,
3094 card
[btv
->c
.nr
] < bttv_num_tvcards
3095 ? "insmod option" : "autodetected");
3097 /* overwrite gpio stuff ?? */
3098 if (UNSET
== audioall
&& UNSET
== audiomux
[0])
3101 if (UNSET
!= audiomux
[0]) {
3103 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
3104 bttv_tvcards
[btv
->c
.type
].gpiomux
[i
] = audiomux
[i
];
3105 gpiobits
|= audiomux
[i
];
3108 gpiobits
= audioall
;
3109 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
3110 bttv_tvcards
[btv
->c
.type
].gpiomux
[i
] = audioall
;
3113 bttv_tvcards
[btv
->c
.type
].gpiomask
= (UNSET
!= gpiomask
) ? gpiomask
: gpiobits
;
3114 printk(KERN_INFO
"bttv%d: gpio config override: mask=0x%x, mux=",
3115 btv
->c
.nr
,bttv_tvcards
[btv
->c
.type
].gpiomask
);
3116 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
3117 printk("%s0x%x", i
? "," : "", bttv_tvcards
[btv
->c
.type
].gpiomux
[i
]);
3123 * (most) board specific initialisations goes here
3126 /* Some Modular Technology cards have an eeprom, but no subsystem ID */
3127 static void identify_by_eeprom(struct bttv
*btv
, unsigned char eeprom_data
[256])
3131 if (0 == strncmp(eeprom_data
,"GET MM20xPCTV",13))
3132 type
= BTTV_BOARD_MODTEC_205
;
3133 else if (0 == strncmp(eeprom_data
+20,"Picolo",7))
3134 type
= BTTV_BOARD_EURESYS_PICOLO
;
3135 else if (eeprom_data
[0] == 0x84 && eeprom_data
[2]== 0)
3136 type
= BTTV_BOARD_HAUPPAUGE
; /* old bt848 */
3140 printk("bttv%d: detected by eeprom: %s [card=%d]\n",
3141 btv
->c
.nr
, bttv_tvcards
[btv
->c
.type
].name
, btv
->c
.type
);
3145 static void flyvideo_gpio(struct bttv
*btv
)
3147 int gpio
,has_remote
,has_radio
,is_capture_only
,is_lr90
,has_tda9820_tda9821
;
3148 int tuner
=UNSET
,ttype
;
3150 gpio_inout(0xffffff, 0);
3151 udelay(8); /* without this we would see the 0x1800 mask */
3153 /* FIXME: must restore OUR_EN ??? */
3155 /* all cards provide GPIO info, some have an additional eeprom
3156 * LR50: GPIO coding can be found lower right CP1 .. CP9
3157 * CP9=GPIO23 .. CP1=GPIO15; when OPEN, the corresponding GPIO reads 1.
3159 * LR90: GP9=GPIO23 .. GP1=GPIO15 (right above the bt878)
3161 * lowest 3 bytes are remote control codes (no handshake needed)
3162 * xxxFFF: No remote control chip soldered
3163 * xxxF00(LR26/LR50), xxxFE0(LR90): Remote control chip (LVA001 or CF45) soldered
3164 * Note: Some bits are Audio_Mask !
3166 ttype
=(gpio
&0x0f0000)>>16;
3168 case 0x0: tuner
=2; /* NTSC, e.g. TPI8NSR11P */
3170 case 0x2: tuner
=39;/* LG NTSC (newer TAPC series) TAPC-H701P */
3172 case 0x4: tuner
=5; /* Philips PAL TPI8PSB02P, TPI8PSB12P, TPI8PSB12D or FI1216, FM1216 */
3174 case 0x6: tuner
=37;/* LG PAL (newer TAPC series) TAPC-G702P */
3176 case 0xC: tuner
=3; /* Philips SECAM(+PAL) FQ1216ME or FI1216MF */
3179 printk(KERN_INFO
"bttv%d: FlyVideo_gpio: unknown tuner type.\n", btv
->c
.nr
);
3182 has_remote
= gpio
& 0x800000;
3183 has_radio
= gpio
& 0x400000;
3184 /* unknown 0x200000;
3185 * unknown2 0x100000; */
3186 is_capture_only
= !(gpio
& 0x008000); /* GPIO15 */
3187 has_tda9820_tda9821
= !(gpio
& 0x004000);
3188 is_lr90
= !(gpio
& 0x002000); /* else LR26/LR50 (LR38/LR51 f. capture only) */
3190 * gpio & 0x001000 output bit for audio routing */
3193 tuner
= TUNER_ABSENT
; /* No tuner present */
3195 printk(KERN_INFO
"bttv%d: FlyVideo Radio=%s RemoteControl=%s Tuner=%d gpio=0x%06x\n",
3196 btv
->c
.nr
, has_radio
? "yes":"no ", has_remote
? "yes":"no ", tuner
, gpio
);
3197 printk(KERN_INFO
"bttv%d: FlyVideo LR90=%s tda9821/tda9820=%s capture_only=%s\n",
3198 btv
->c
.nr
, is_lr90
?"yes":"no ", has_tda9820_tda9821
?"yes":"no ",
3199 is_capture_only
?"yes":"no ");
3201 if (tuner
!= UNSET
) /* only set if known tuner autodetected, else let insmod option through */
3202 btv
->tuner_type
= tuner
;
3203 btv
->has_radio
= has_radio
;
3205 /* LR90 Audio Routing is done by 2 hef4052, so Audio_Mask has 4 bits: 0x001c80
3206 * LR26/LR50 only has 1 hef4052, Audio_Mask 0x000c00
3207 * Audio options: from tuner, from tda9821/tda9821(mono,stereo,sap), from tda9874, ext., mute */
3208 if(has_tda9820_tda9821
) btv
->audio_mode_gpio
= lt9415_audio
;
3209 /* todo: if(has_tda9874) btv->audio_mode_gpio = fv2000s_audio; */
3212 static int miro_tunermap
[] = { 0,6,2,3, 4,5,6,0, 3,0,4,5, 5,2,16,1,
3213 14,2,17,1, 4,1,4,3, 1,2,16,1, 4,4,4,4 };
3214 static int miro_fmtuner
[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,1,
3215 1,1,1,1, 1,1,1,0, 0,0,0,0, 0,1,0,0 };
3217 static void miro_pinnacle_gpio(struct bttv
*btv
)
3222 gpio_inout(0xffffff, 0);
3224 id
= ((gpio
>>10) & 63) -1;
3225 msp
= bttv_I2CRead(btv
, I2C_ADDR_MSP3400
, "MSP34xx");
3227 btv
->tuner_type
= miro_tunermap
[id
];
3228 if (0 == (gpio
& 0x20)) {
3230 if (!miro_fmtuner
[id
]) {
3231 btv
->has_matchbox
= 1;
3232 btv
->mbox_we
= (1<<6);
3233 btv
->mbox_most
= (1<<7);
3234 btv
->mbox_clk
= (1<<8);
3235 btv
->mbox_data
= (1<<9);
3236 btv
->mbox_mask
= (1<<6)|(1<<7)|(1<<8)|(1<<9);
3242 if (btv
->c
.type
== BTTV_BOARD_MIRO
)
3243 btv
->c
.type
= BTTV_BOARD_MIROPRO
;
3244 if (btv
->c
.type
== BTTV_BOARD_PINNACLE
)
3245 btv
->c
.type
= BTTV_BOARD_PINNACLEPRO
;
3248 "bttv%d: miro: id=%d tuner=%d radio=%s stereo=%s\n",
3249 btv
->c
.nr
, id
+1, btv
->tuner_type
,
3250 !btv
->has_radio
? "no" :
3251 (btv
->has_matchbox
? "matchbox" : "fmtuner"),
3252 (-1 == msp
) ? "no" : "yes");
3254 /* new cards with microtune tuner */
3259 info
= "PAL / mono";
3260 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3263 info
= "PAL+SECAM / stereo";
3265 btv
->tda9887_conf
= TDA9887_QSS
;
3268 info
= "NTSC / stereo";
3270 btv
->tda9887_conf
= TDA9887_QSS
;
3273 info
= "PAL+SECAM / mono";
3274 btv
->tda9887_conf
= TDA9887_QSS
;
3277 info
= "NTSC / mono";
3278 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3281 info
= "NTSC / stereo";
3282 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3285 info
= "PAL / stereo";
3286 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3289 info
= "oops: unknown card";
3293 btv
->c
.type
= BTTV_BOARD_PINNACLEPRO
;
3295 "bttv%d: pinnacle/mt: id=%d info=\"%s\" radio=%s\n",
3296 btv
->c
.nr
, id
, info
, btv
->has_radio
? "yes" : "no");
3297 btv
->tuner_type
= TUNER_MT2032
;
3301 /* GPIO21 L: Buffer aktiv, H: Buffer inaktiv */
3302 #define LM1882_SYNC_DRIVE 0x200000L
3304 static void init_ids_eagle(struct bttv
*btv
)
3306 gpio_inout(0xffffff,0xFFFF37);
3307 gpio_write(0x200020);
3309 /* flash strobe inverter ?! */
3310 gpio_write(0x200024);
3312 /* switch sync drive off */
3313 gpio_bits(LM1882_SYNC_DRIVE
,LM1882_SYNC_DRIVE
);
3315 /* set BT848 muxel to 2 */
3316 btaor((2)<<5, ~(2<<5), BT848_IFORM
);
3319 /* Muxsel helper for the IDS Eagle.
3320 * the eagles does not use the standard muxsel-bits but
3321 * has its own multiplexer */
3322 static void eagle_muxsel(struct bttv
*btv
, unsigned int input
)
3324 btaor((2)<<5, ~(3<<5), BT848_IFORM
);
3325 gpio_bits(3,bttv_tvcards
[btv
->c
.type
].muxsel
[input
&7]);
3328 /* set chroma ADC to sleep */
3329 btor(BT848_ADC_C_SLEEP
, BT848_ADC
);
3330 /* set to composite video */
3331 btand(~BT848_CONTROL_COMP
, BT848_E_CONTROL
);
3332 btand(~BT848_CONTROL_COMP
, BT848_O_CONTROL
);
3334 /* switch sync drive off */
3335 gpio_bits(LM1882_SYNC_DRIVE
,LM1882_SYNC_DRIVE
);
3338 static void gvc1100_muxsel(struct bttv
*btv
, unsigned int input
)
3340 static const int masks
[] = {0x30, 0x01, 0x12, 0x23};
3341 gpio_write(masks
[input
%4]);
3344 /* LMLBT4x initialization - to allow access to GPIO bits for sensors input and
3347 GPIObit | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
3348 assignment | TI | O3|INx| O2| O1|IN4|IN3|IN2|IN1| | |
3350 IN - sensor inputs, INx - sensor inputs and TI XORed together
3351 O1,O2,O3 - alarm outputs (relays)
3353 OUT ENABLE 1 1 0 . 1 1 0 0 . 0 0 0 0 = 0x6C0
3357 static void init_lmlbt4x(struct bttv
*btv
)
3359 printk(KERN_DEBUG
"LMLBT4x init\n");
3360 btwrite(0x000000, BT848_GPIO_REG_INP
);
3361 gpio_inout(0xffffff, 0x0006C0);
3362 gpio_write(0x000000);
3365 static void sigmaSQ_muxsel(struct bttv
*btv
, unsigned int input
)
3367 unsigned int inmux
= input
% 8;
3368 gpio_inout( 0xf, 0xf );
3369 gpio_bits( 0xf, inmux
);
3372 static void sigmaSLC_muxsel(struct bttv
*btv
, unsigned int input
)
3374 unsigned int inmux
= input
% 4;
3375 gpio_inout( 3<<9, 3<<9 );
3376 gpio_bits( 3<<9, inmux
<<9 );
3379 static void geovision_muxsel(struct bttv
*btv
, unsigned int input
)
3381 unsigned int inmux
= input
% 16;
3382 gpio_inout(0xf, 0xf);
3383 gpio_bits(0xf, inmux
);
3386 /* ----------------------------------------------------------------------- */
3388 static void bttv_reset_audio(struct bttv
*btv
)
3391 * BT878A has a audio-reset register.
3392 * 1. This register is an audio reset function but it is in
3393 * function-0 (video capture) address space.
3394 * 2. It is enough to do this once per power-up of the card.
3395 * 3. There is a typo in the Conexant doc -- it is not at
3396 * 0x5B, but at 0x058. (B is an odd-number, obviously a typo!).
3397 * --//Shrikumar 030609
3403 printk("bttv%d: BT878A ARESET\n",btv
->c
.nr
);
3404 btwrite((1<<7), 0x058);
3409 /* initialization part one -- before registering i2c bus */
3410 void __devinit
bttv_init_card1(struct bttv
*btv
)
3412 switch (btv
->c
.type
) {
3413 case BTTV_BOARD_HAUPPAUGE
:
3414 case BTTV_BOARD_HAUPPAUGE878
:
3415 boot_msp34xx(btv
,5);
3417 case BTTV_BOARD_VOODOOTV_200
:
3418 case BTTV_BOARD_VOODOOTV_FM
:
3419 boot_msp34xx(btv
,20);
3421 case BTTV_BOARD_AVERMEDIA98
:
3422 boot_msp34xx(btv
,11);
3424 case BTTV_BOARD_HAUPPAUGEPVR
:
3427 case BTTV_BOARD_TWINHAN_DST
:
3428 case BTTV_BOARD_AVDVBT_771
:
3429 case BTTV_BOARD_PINNACLESAT
:
3430 btv
->use_i2c_hw
= 1;
3432 case BTTV_BOARD_ADLINK_RTV24
:
3437 if (!bttv_tvcards
[btv
->c
.type
].has_dvb
)
3438 bttv_reset_audio(btv
);
3441 /* initialization part two -- after registering i2c bus */
3442 void __devinit
bttv_init_card2(struct bttv
*btv
)
3444 int addr
=ADDR_UNSET
;
3446 btv
->tuner_type
= UNSET
;
3448 if (BTTV_BOARD_UNKNOWN
== btv
->c
.type
) {
3449 bttv_readee(btv
,eeprom_data
,0xa0);
3450 identify_by_eeprom(btv
,eeprom_data
);
3453 switch (btv
->c
.type
) {
3454 case BTTV_BOARD_MIRO
:
3455 case BTTV_BOARD_MIROPRO
:
3456 case BTTV_BOARD_PINNACLE
:
3457 case BTTV_BOARD_PINNACLEPRO
:
3459 miro_pinnacle_gpio(btv
);
3461 case BTTV_BOARD_FLYVIDEO_98
:
3462 case BTTV_BOARD_MAXI
:
3463 case BTTV_BOARD_LIFE_FLYKIT
:
3464 case BTTV_BOARD_FLYVIDEO
:
3465 case BTTV_BOARD_TYPHOON_TVIEW
:
3466 case BTTV_BOARD_CHRONOS_VS2
:
3467 case BTTV_BOARD_FLYVIDEO_98FM
:
3468 case BTTV_BOARD_FLYVIDEO2000
:
3469 case BTTV_BOARD_FLYVIDEO98EZ
:
3470 case BTTV_BOARD_CONFERENCETV
:
3471 case BTTV_BOARD_LIFETEC_9415
:
3474 case BTTV_BOARD_HAUPPAUGE
:
3475 case BTTV_BOARD_HAUPPAUGE878
:
3476 case BTTV_BOARD_HAUPPAUGEPVR
:
3477 /* pick up some config infos from the eeprom */
3478 bttv_readee(btv
,eeprom_data
,0xa0);
3479 hauppauge_eeprom(btv
);
3481 case BTTV_BOARD_AVERMEDIA98
:
3482 case BTTV_BOARD_AVPHONE98
:
3483 bttv_readee(btv
,eeprom_data
,0xa0);
3484 avermedia_eeprom(btv
);
3486 case BTTV_BOARD_PXC200
:
3489 case BTTV_BOARD_PICOLO_TETRA_CHIP
:
3490 picolo_tetra_init(btv
);
3492 case BTTV_BOARD_VHX
:
3494 btv
->has_matchbox
= 1;
3495 btv
->mbox_we
= 0x20;
3497 btv
->mbox_clk
= 0x08;
3498 btv
->mbox_data
= 0x10;
3499 btv
->mbox_mask
= 0x38;
3501 case BTTV_BOARD_VOBIS_BOOSTAR
:
3502 case BTTV_BOARD_TERRATV
:
3503 terratec_active_radio_upgrade(btv
);
3505 case BTTV_BOARD_MAGICTVIEW061
:
3506 if (btv
->cardid
== 0x3002144f) {
3508 printk("bttv%d: radio detected by subsystem id (CPH05x)\n",btv
->c
.nr
);
3511 case BTTV_BOARD_STB2
:
3512 if (btv
->cardid
== 0x3060121a) {
3513 /* Fix up entry for 3DFX VoodooTV 100,
3514 which is an OEM STB card variant. */
3516 btv
->tuner_type
=TUNER_TEMIC_NTSC
;
3519 case BTTV_BOARD_OSPREY1x0
:
3520 case BTTV_BOARD_OSPREY1x0_848
:
3521 case BTTV_BOARD_OSPREY101_848
:
3522 case BTTV_BOARD_OSPREY1x1
:
3523 case BTTV_BOARD_OSPREY1x1_SVID
:
3524 case BTTV_BOARD_OSPREY2xx
:
3525 case BTTV_BOARD_OSPREY2x0_SVID
:
3526 case BTTV_BOARD_OSPREY2x0
:
3527 case BTTV_BOARD_OSPREY440
:
3528 case BTTV_BOARD_OSPREY500
:
3529 case BTTV_BOARD_OSPREY540
:
3530 case BTTV_BOARD_OSPREY2000
:
3531 bttv_readee(btv
,eeprom_data
,0xa0);
3532 osprey_eeprom(btv
, eeprom_data
);
3534 case BTTV_BOARD_IDS_EAGLE
:
3535 init_ids_eagle(btv
);
3537 case BTTV_BOARD_MODTEC_205
:
3538 bttv_readee(btv
,eeprom_data
,0xa0);
3541 case BTTV_BOARD_LMLBT4
:
3544 case BTTV_BOARD_TIBET_CS16
:
3545 tibetCS16_init(btv
);
3547 case BTTV_BOARD_KODICOM_4400R
:
3548 kodicom4400r_init(btv
);
3552 /* pll configuration */
3553 if (!(btv
->id
==848 && btv
->revision
==0x11)) {
3554 /* defaults from card list */
3555 if (PLL_28
== bttv_tvcards
[btv
->c
.type
].pll
) {
3556 btv
->pll
.pll_ifreq
=28636363;
3557 btv
->pll
.pll_crystal
=BT848_IFORM_XT0
;
3559 if (PLL_35
== bttv_tvcards
[btv
->c
.type
].pll
) {
3560 btv
->pll
.pll_ifreq
=35468950;
3561 btv
->pll
.pll_crystal
=BT848_IFORM_XT1
;
3563 /* insmod options can override */
3564 switch (pll
[btv
->c
.nr
]) {
3566 btv
->pll
.pll_crystal
= 0;
3567 btv
->pll
.pll_ifreq
= 0;
3568 btv
->pll
.pll_ofreq
= 0;
3570 case 1: /* 28 MHz */
3572 btv
->pll
.pll_ifreq
= 28636363;
3573 btv
->pll
.pll_ofreq
= 0;
3574 btv
->pll
.pll_crystal
= BT848_IFORM_XT0
;
3576 case 2: /* 35 MHz */
3578 btv
->pll
.pll_ifreq
= 35468950;
3579 btv
->pll
.pll_ofreq
= 0;
3580 btv
->pll
.pll_crystal
= BT848_IFORM_XT1
;
3584 btv
->pll
.pll_current
= -1;
3586 /* tuner configuration (from card list / autodetect / insmod option) */
3587 if (ADDR_UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_addr
)
3588 addr
= bttv_tvcards
[btv
->c
.type
].tuner_addr
;
3590 if (UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_type
)
3591 if(UNSET
== btv
->tuner_type
)
3592 btv
->tuner_type
= bttv_tvcards
[btv
->c
.type
].tuner_type
;
3593 if (UNSET
!= tuner
[btv
->c
.nr
])
3594 btv
->tuner_type
= tuner
[btv
->c
.nr
];
3596 if (btv
->tuner_type
== TUNER_ABSENT
||
3597 bttv_tvcards
[btv
->c
.type
].tuner
== UNSET
)
3598 printk(KERN_INFO
"bttv%d: tuner absent\n", btv
->c
.nr
);
3599 else if(btv
->tuner_type
== UNSET
)
3600 printk(KERN_WARNING
"bttv%d: tuner type unset\n", btv
->c
.nr
);
3602 printk(KERN_INFO
"bttv%d: tuner type=%d\n", btv
->c
.nr
,
3605 if (btv
->tuner_type
!= UNSET
) {
3606 struct tuner_setup tun_setup
;
3608 tun_setup
.mode_mask
= T_ANALOG_TV
| T_DIGITAL_TV
;
3609 tun_setup
.type
= btv
->tuner_type
;
3610 tun_setup
.addr
= addr
;
3612 bttv_call_i2c_clients(btv
, TUNER_SET_TYPE_ADDR
, &tun_setup
);
3615 if (btv
->tda9887_conf
) {
3616 struct v4l2_priv_tun_config tda9887_cfg
;
3618 tda9887_cfg
.tuner
= TUNER_TDA9887
;
3619 tda9887_cfg
.priv
= &btv
->tda9887_conf
;
3621 bttv_call_i2c_clients(btv
, TUNER_SET_CONFIG
, &tda9887_cfg
);
3624 btv
->svhs
= bttv_tvcards
[btv
->c
.type
].svhs
;
3625 if (svhs
[btv
->c
.nr
] != UNSET
)
3626 btv
->svhs
= svhs
[btv
->c
.nr
];
3627 if (remote
[btv
->c
.nr
] != UNSET
)
3628 btv
->has_remote
= remote
[btv
->c
.nr
];
3630 if (bttv_tvcards
[btv
->c
.type
].has_radio
)
3632 if (bttv_tvcards
[btv
->c
.type
].has_remote
)
3634 if (!bttv_tvcards
[btv
->c
.type
].no_gpioirq
)
3636 if (bttv_tvcards
[btv
->c
.type
].volume_gpio
)
3637 btv
->volume_gpio
=bttv_tvcards
[btv
->c
.type
].volume_gpio
;
3638 if (bttv_tvcards
[btv
->c
.type
].audio_mode_gpio
)
3639 btv
->audio_mode_gpio
=bttv_tvcards
[btv
->c
.type
].audio_mode_gpio
;
3641 if (bttv_tvcards
[btv
->c
.type
].digital_mode
== DIGITAL_MODE_CAMERA
) {
3642 /* detect Bt832 chip for quartzsight digital camera */
3643 if ((bttv_I2CRead(btv
, I2C_ADDR_BT832_ALT1
, "Bt832") >=0) ||
3644 (bttv_I2CRead(btv
, I2C_ADDR_BT832_ALT2
, "Bt832") >=0))
3651 if (bttv_tvcards
[btv
->c
.type
].tuner
== UNSET
)
3652 return; /* no tuner or related drivers to load */
3654 /* try to detect audio/fader chips */
3655 if (!bttv_tvcards
[btv
->c
.type
].no_msp34xx
&&
3656 bttv_I2CRead(btv
, I2C_ADDR_MSP3400
, "MSP34xx") >=0)
3657 request_module("msp3400");
3659 if (bttv_tvcards
[btv
->c
.type
].msp34xx_alt
&&
3660 bttv_I2CRead(btv
, I2C_ADDR_MSP3400_ALT
, "MSP34xx (alternate address)") >=0)
3661 request_module("msp3400");
3663 if (!bttv_tvcards
[btv
->c
.type
].no_tda9875
&&
3664 bttv_I2CRead(btv
, I2C_ADDR_TDA9875
, "TDA9875") >=0)
3665 request_module("tda9875");
3667 if (!bttv_tvcards
[btv
->c
.type
].no_tda7432
&&
3668 bttv_I2CRead(btv
, I2C_ADDR_TDA7432
, "TDA7432") >=0)
3669 request_module("tda7432");
3671 if (bttv_tvcards
[btv
->c
.type
].needs_tvaudio
)
3672 request_module("tvaudio");
3674 if (btv
->tuner_type
!= UNSET
&& btv
->tuner_type
!= TUNER_ABSENT
)
3675 request_module("tuner");
3679 /* ----------------------------------------------------------------------- */
3681 static void modtec_eeprom(struct bttv
*btv
)
3683 if( strncmp(&(eeprom_data
[0x1e]),"Temic 4066 FY5",14) ==0) {
3684 btv
->tuner_type
=TUNER_TEMIC_4066FY5_PAL_I
;
3685 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3686 btv
->c
.nr
,&eeprom_data
[0x1e]);
3687 } else if (strncmp(&(eeprom_data
[0x1e]),"Alps TSBB5",10) ==0) {
3688 btv
->tuner_type
=TUNER_ALPS_TSBB5_PAL_I
;
3689 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3690 btv
->c
.nr
,&eeprom_data
[0x1e]);
3691 } else if (strncmp(&(eeprom_data
[0x1e]),"Philips FM1246",14) ==0) {
3692 btv
->tuner_type
=TUNER_PHILIPS_NTSC
;
3693 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3694 btv
->c
.nr
,&eeprom_data
[0x1e]);
3696 printk("bttv%d: Modtec: Unknown TunerString: %s\n",
3697 btv
->c
.nr
,&eeprom_data
[0x1e]);
3701 static void __devinit
hauppauge_eeprom(struct bttv
*btv
)
3705 tveeprom_hauppauge_analog(&btv
->i2c_client
, &tv
, eeprom_data
);
3706 btv
->tuner_type
= tv
.tuner_type
;
3707 btv
->has_radio
= tv
.has_radio
;
3709 printk("bttv%d: Hauppauge eeprom indicates model#%d\n",
3710 btv
->c
.nr
, tv
.model
);
3713 * Some of the 878 boards have duplicate PCI IDs. Switch the board
3714 * type based on model #.
3716 if(tv
.model
== 64900) {
3717 printk("bttv%d: Switching board type from %s to %s\n",
3719 bttv_tvcards
[btv
->c
.type
].name
,
3720 bttv_tvcards
[BTTV_BOARD_HAUPPAUGE_IMPACTVCB
].name
);
3721 btv
->c
.type
= BTTV_BOARD_HAUPPAUGE_IMPACTVCB
;
3725 static int terratec_active_radio_upgrade(struct bttv
*btv
)
3730 btv
->has_matchbox
= 1;
3731 btv
->mbox_we
= 0x10;
3732 btv
->mbox_most
= 0x20;
3733 btv
->mbox_clk
= 0x08;
3734 btv
->mbox_data
= 0x04;
3735 btv
->mbox_mask
= 0x3c;
3737 btv
->mbox_iow
= 1 << 8;
3738 btv
->mbox_ior
= 1 << 9;
3739 btv
->mbox_csel
= 1 << 10;
3742 tea5757_write(btv
, 5 * freq
+ 0x358); /* write 0x1ed8 */
3743 if (0x1ed8 == tea5757_read(btv
)) {
3744 printk("bttv%d: Terratec Active Radio Upgrade found.\n",
3747 btv
->has_matchbox
= 1;
3750 btv
->has_matchbox
= 0;
3756 /* ----------------------------------------------------------------------- */
3759 * minimal bootstrap for the WinTV/PVR -- upload altera firmware.
3761 * The hcwamc.rbf firmware file is on the Hauppauge driver CD. Have
3762 * a look at Pvr/pvr45xxx.EXE (self-extracting zip archive, can be
3763 * unpacked with unzip).
3765 #define PVR_GPIO_DELAY 10
3767 #define BTTV_ALT_DATA 0x000001
3768 #define BTTV_ALT_DCLK 0x100000
3769 #define BTTV_ALT_NCONFIG 0x800000
3771 static int __devinit
pvr_altera_load(struct bttv
*btv
, u8
*micro
, u32 microlen
)
3777 gpio_inout(0xffffff,BTTV_ALT_DATA
|BTTV_ALT_DCLK
|BTTV_ALT_NCONFIG
);
3779 udelay(PVR_GPIO_DELAY
);
3781 gpio_write(BTTV_ALT_NCONFIG
);
3782 udelay(PVR_GPIO_DELAY
);
3784 for (n
= 0; n
< microlen
; n
++) {
3786 for (i
= 0 ; i
< 8 ; i
++) {
3787 gpio_bits(BTTV_ALT_DCLK
,0);
3789 gpio_bits(BTTV_ALT_DATA
,BTTV_ALT_DATA
);
3791 gpio_bits(BTTV_ALT_DATA
,0);
3792 gpio_bits(BTTV_ALT_DCLK
,BTTV_ALT_DCLK
);
3796 gpio_bits(BTTV_ALT_DCLK
,0);
3797 udelay(PVR_GPIO_DELAY
);
3799 /* begin Altera init loop (Not necessary,but doesn't hurt) */
3800 for (i
= 0 ; i
< 30 ; i
++) {
3801 gpio_bits(BTTV_ALT_DCLK
,0);
3802 gpio_bits(BTTV_ALT_DCLK
,BTTV_ALT_DCLK
);
3804 gpio_bits(BTTV_ALT_DCLK
,0);
3808 static int __devinit
pvr_boot(struct bttv
*btv
)
3810 const struct firmware
*fw_entry
;
3813 rc
= request_firmware(&fw_entry
, "hcwamc.rbf", &btv
->c
.pci
->dev
);
3815 printk(KERN_WARNING
"bttv%d: no altera firmware [via hotplug]\n",
3819 rc
= pvr_altera_load(btv
, fw_entry
->data
, fw_entry
->size
);
3820 printk(KERN_INFO
"bttv%d: altera firmware upload %s\n",
3821 btv
->c
.nr
, (rc
< 0) ? "failed" : "ok");
3822 release_firmware(fw_entry
);
3826 /* ----------------------------------------------------------------------- */
3827 /* some osprey specific stuff */
3829 static void __devinit
osprey_eeprom(struct bttv
*btv
, const u8 ee
[256])
3835 /* This code will nevery actually get called in this case.... */
3836 if (btv
->c
.type
== BTTV_BOARD_UNKNOWN
) {
3837 /* this might be an antique... check for MMAC label in eeprom */
3838 if (!strncmp(ee
, "MMAC", 4)) {
3840 for (i
= 0; i
< 21; i
++)
3842 if (checksum
!= ee
[21])
3844 cardid
= BTTV_BOARD_OSPREY1x0_848
;
3845 for (i
= 12; i
< 21; i
++)
3846 serial
*= 10, serial
+= ee
[i
] - '0';
3849 unsigned short type
;
3851 for (i
= 4*16; i
< 8*16; i
+= 16) {
3852 u16 checksum
= ip_compute_csum(ee
+ i
, 16);
3854 if ((checksum
&0xff) + (checksum
>>8) == 0xff)
3861 /* found a valid descriptor */
3862 type
= get_unaligned_be16((__be16
*)(ee
+4));
3867 cardid
= BTTV_BOARD_OSPREY1x0_848
;
3870 cardid
= BTTV_BOARD_OSPREY101_848
;
3876 cardid
= BTTV_BOARD_OSPREY1x0
;
3880 cardid
= BTTV_BOARD_OSPREY1x1
;
3885 cardid
= BTTV_BOARD_OSPREY1x1_SVID
;
3891 cardid
= BTTV_BOARD_OSPREY2xx
;
3895 cardid
= BTTV_BOARD_OSPREY2x0_SVID
;
3898 cardid
= BTTV_BOARD_OSPREY500
;
3902 cardid
= BTTV_BOARD_OSPREY540
;
3903 /* bttv_osprey_540_init(btv); */
3908 cardid
= BTTV_BOARD_OSPREY2x0
;
3909 /* enable output on select control lines */
3910 gpio_inout(0xffffff,0x000303);
3913 cardid
= BTTV_BOARD_OSPREY440
;
3916 /* unknown...leave generic, but get serial # */
3917 printk(KERN_INFO
"bttv%d: "
3918 "osprey eeprom: unknown card type 0x%04x\n",
3922 serial
= get_unaligned_be32((__be32
*)(ee
+6));
3925 printk(KERN_INFO
"bttv%d: osprey eeprom: card=%d '%s' serial=%u\n",
3927 cardid
>0 ? bttv_tvcards
[cardid
].name
: "Unknown", serial
);
3929 if (cardid
<0 || btv
->c
.type
== cardid
)
3932 /* card type isn't set correctly */
3933 if (card
[btv
->c
.nr
] < bttv_num_tvcards
) {
3934 printk(KERN_WARNING
"bttv%d: osprey eeprom: "
3935 "Not overriding user specified card type\n", btv
->c
.nr
);
3937 printk(KERN_INFO
"bttv%d: osprey eeprom: "
3938 "Changing card type from %d to %d\n", btv
->c
.nr
,
3939 btv
->c
.type
, cardid
);
3940 btv
->c
.type
= cardid
;
3944 /* ----------------------------------------------------------------------- */
3945 /* AVermedia specific stuff, from bktr_card.c */
3947 static int tuner_0_table
[] = {
3948 TUNER_PHILIPS_NTSC
, TUNER_PHILIPS_PAL
/* PAL-BG*/,
3949 TUNER_PHILIPS_PAL
, TUNER_PHILIPS_PAL
/* PAL-I*/,
3950 TUNER_PHILIPS_PAL
, TUNER_PHILIPS_PAL
,
3951 TUNER_PHILIPS_SECAM
, TUNER_PHILIPS_SECAM
,
3952 TUNER_PHILIPS_SECAM
, TUNER_PHILIPS_PAL
,
3953 TUNER_PHILIPS_FM1216ME_MK3
};
3955 static int tuner_1_table
[] = {
3956 TUNER_TEMIC_NTSC
, TUNER_TEMIC_PAL
,
3957 TUNER_TEMIC_PAL
, TUNER_TEMIC_PAL
,
3958 TUNER_TEMIC_PAL
, TUNER_TEMIC_PAL
,
3959 TUNER_TEMIC_4012FY5
, TUNER_TEMIC_4012FY5
, /* TUNER_TEMIC_SECAM */
3960 TUNER_TEMIC_4012FY5
, TUNER_TEMIC_PAL
};
3962 static void __devinit
avermedia_eeprom(struct bttv
*btv
)
3964 int tuner_make
,tuner_tv_fm
,tuner_format
,tuner
=0;
3966 tuner_make
= (eeprom_data
[0x41] & 0x7);
3967 tuner_tv_fm
= (eeprom_data
[0x41] & 0x18) >> 3;
3968 tuner_format
= (eeprom_data
[0x42] & 0xf0) >> 4;
3969 btv
->has_remote
= (eeprom_data
[0x42] & 0x01);
3971 if (tuner_make
== 0 || tuner_make
== 2)
3972 if(tuner_format
<=0x0a)
3973 tuner
= tuner_0_table
[tuner_format
];
3974 if (tuner_make
== 1)
3975 if(tuner_format
<=9)
3976 tuner
= tuner_1_table
[tuner_format
];
3978 if (tuner_make
== 4)
3979 if(tuner_format
== 0x09)
3980 tuner
= TUNER_LG_NTSC_NEW_TAPC
; /* TAPC-G702P */
3982 printk(KERN_INFO
"bttv%d: Avermedia eeprom[0x%02x%02x]: tuner=",
3983 btv
->c
.nr
,eeprom_data
[0x41],eeprom_data
[0x42]);
3985 btv
->tuner_type
=tuner
;
3988 printk("Unknown type");
3989 printk(" radio:%s remote control:%s\n",
3990 tuner_tv_fm
? "yes" : "no",
3991 btv
->has_remote
? "yes" : "no");
3994 /* used on Voodoo TV/FM (Voodoo 200), S0 wired to 0x10000 */
3995 void bttv_tda9880_setnorm(struct bttv
*btv
, int norm
)
3997 /* fix up our card entry */
3998 if(norm
==V4L2_STD_NTSC
) {
3999 bttv_tvcards
[BTTV_BOARD_VOODOOTV_FM
].gpiomux
[TVAUDIO_INPUT_TUNER
]=0x957fff;
4000 bttv_tvcards
[BTTV_BOARD_VOODOOTV_FM
].gpiomute
=0x957fff;
4001 bttv_tvcards
[BTTV_BOARD_VOODOOTV_200
].gpiomux
[TVAUDIO_INPUT_TUNER
]=0x957fff;
4002 bttv_tvcards
[BTTV_BOARD_VOODOOTV_200
].gpiomute
=0x957fff;
4003 dprintk("bttv_tda9880_setnorm to NTSC\n");
4006 bttv_tvcards
[BTTV_BOARD_VOODOOTV_FM
].gpiomux
[TVAUDIO_INPUT_TUNER
]=0x947fff;
4007 bttv_tvcards
[BTTV_BOARD_VOODOOTV_FM
].gpiomute
=0x947fff;
4008 bttv_tvcards
[BTTV_BOARD_VOODOOTV_200
].gpiomux
[TVAUDIO_INPUT_TUNER
]=0x947fff;
4009 bttv_tvcards
[BTTV_BOARD_VOODOOTV_200
].gpiomute
=0x947fff;
4010 dprintk("bttv_tda9880_setnorm to PAL\n");
4012 /* set GPIO according */
4013 gpio_bits(bttv_tvcards
[btv
->c
.type
].gpiomask
,
4014 bttv_tvcards
[btv
->c
.type
].gpiomux
[btv
->audio
]);
4019 * reset/enable the MSP on some Hauppauge cards
4020 * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
4025 static void __devinit
boot_msp34xx(struct bttv
*btv
, int pin
)
4027 int mask
= (1 << pin
);
4029 gpio_inout(mask
,mask
);
4032 gpio_bits(mask
,mask
);
4035 bttv_gpio_tracking(btv
,"msp34xx");
4037 printk(KERN_INFO
"bttv%d: Hauppauge/Voodoo msp34xx: reset line "
4038 "init [%d]\n", btv
->c
.nr
, pin
);
4041 static void __devinit
boot_bt832(struct bttv
*btv
)
4045 /* ----------------------------------------------------------------------- */
4046 /* Imagenation L-Model PXC200 Framegrabber */
4047 /* This is basically the same procedure as
4048 * used by Alessandro Rubini in his pxc200
4049 * driver, but using BTTV functions */
4051 static void __devinit
init_PXC200(struct bttv
*btv
)
4053 static int vals
[] __devinitdata
= { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d,
4054 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
4060 /* Initialise GPIO-connevted stuff */
4061 gpio_inout(0xffffff, (1<<13));
4065 /* GPIO inputs are pulled up, so no need to drive
4066 * reset pin any longer */
4067 gpio_bits(0xffffff, 0);
4069 bttv_gpio_tracking(btv
,"pxc200");
4071 /* we could/should try and reset/control the AD pots? but
4072 right now we simply turned off the crushing. Without
4073 this the AGC drifts drifts
4074 remember the EN is reverse logic -->
4075 setting BT848_ADC_AGC_EN disable the AGC
4076 tboult@eecs.lehigh.edu
4079 btwrite(BT848_ADC_RESERVED
|BT848_ADC_AGC_EN
, BT848_ADC
);
4081 /* Initialise MAX517 DAC */
4082 printk(KERN_INFO
"Setting DAC reference voltage level ...\n");
4083 bttv_I2CWrite(btv
,0x5E,0,0x80,1);
4085 /* Initialise 12C508 PIC */
4086 /* The I2CWrite and I2CRead commmands are actually to the
4087 * same chips - but the R/W bit is included in the address
4088 * argument so the numbers are different */
4091 printk(KERN_INFO
"Initialising 12C508 PIC chip ...\n");
4093 /* First of all, enable the clock line. This is used in the PXC200-F */
4094 val
= btread(BT848_GPIO_DMA_CTL
);
4095 val
|= BT848_GPIO_DMA_CTL_GPCLKMODE
;
4096 btwrite(val
, BT848_GPIO_DMA_CTL
);
4098 /* Then, push to 0 the reset pin long enough to reset the *
4099 * device same as above for the reset line, but not the same
4100 * value sent to the GPIO-connected stuff
4101 * which one is the good one? */
4102 gpio_inout(0xffffff,(1<<2));
4107 for (i
= 0; i
< ARRAY_SIZE(vals
); i
++) {
4108 tmp
=bttv_I2CWrite(btv
,0x1E,0,vals
[i
],1);
4111 "I2C Write(%2.2x) = %i\nI2C Read () = %2.2x\n\n",
4112 vals
[i
],tmp
,bttv_I2CRead(btv
,0x1F,NULL
));
4116 printk(KERN_INFO
"PXC200 Initialised.\n");
4121 /* ----------------------------------------------------------------------- */
4123 * The Adlink RTV-24 (aka Angelo) has some special initialisation to unlock
4124 * it. This apparently involves the following procedure for each 878 chip:
4126 * 1) write 0x00C3FEFF to the GPIO_OUT_EN register
4128 * 2) write to GPIO_DATA
4134 * read from GPIO_DATA into buf (uint_32)
4135 * - if ( data>>18 & 0x01 != 0) || ( buf>>19 & 0x01 != 1 )
4136 * error. ERROR_CPLD_Check_Failed stop.
4138 * 3) write to GPIO_DATA
4139 * - write 0x4400 + 0x0E
4141 * - write 0x4410 + 0x0E
4144 * read from GPIO_DATA into buf (uint_32)
4145 * - if ( buf>>18 & 0x01 ) || ( buf>>19 & 0x01 != 0 )
4146 * error. ERROR_CPLD_Check_Failed.
4148 /* ----------------------------------------------------------------------- */
4150 init_RTV24 (struct bttv
*btv
)
4152 uint32_t dataRead
= 0;
4153 long watchdog_value
= 0x0E;
4156 "bttv%d: Adlink RTV-24 initialisation in progress ...\n",
4159 btwrite (0x00c3feff, BT848_GPIO_OUT_EN
);
4161 btwrite (0 + watchdog_value
, BT848_GPIO_DATA
);
4163 btwrite (0x10 + watchdog_value
, BT848_GPIO_DATA
);
4165 btwrite (0 + watchdog_value
, BT848_GPIO_DATA
);
4167 dataRead
= btread (BT848_GPIO_DATA
);
4169 if ((((dataRead
>> 18) & 0x01) != 0) || (((dataRead
>> 19) & 0x01) != 1)) {
4171 "bttv%d: Adlink RTV-24 initialisation(1) ERROR_CPLD_Check_Failed (read %d)\n",
4172 btv
->c
.nr
, dataRead
);
4175 btwrite (0x4400 + watchdog_value
, BT848_GPIO_DATA
);
4177 btwrite (0x4410 + watchdog_value
, BT848_GPIO_DATA
);
4179 btwrite (watchdog_value
, BT848_GPIO_DATA
);
4181 dataRead
= btread (BT848_GPIO_DATA
);
4183 if ((((dataRead
>> 18) & 0x01) != 0) || (((dataRead
>> 19) & 0x01) != 0)) {
4185 "bttv%d: Adlink RTV-24 initialisation(2) ERROR_CPLD_Check_Failed (read %d)\n",
4186 btv
->c
.nr
, dataRead
);
4192 "bttv%d: Adlink RTV-24 initialisation complete.\n", btv
->c
.nr
);
4197 /* ----------------------------------------------------------------------- */
4198 /* Miro Pro radio stuff -- the tea5757 is connected to some GPIO ports */
4200 * Copyright (c) 1999 Csaba Halasz <qgehali@uni-miskolc.hu>
4201 * This code is placed under the terms of the GNU General Public License
4203 * Brutally hacked by Dan Sheridan <dan.sheridan@contact.org.uk> djs52 8/3/00
4206 static void bus_low(struct bttv
*btv
, int bit
)
4208 if (btv
->mbox_ior
) {
4209 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4210 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4217 if (btv
->mbox_ior
) {
4218 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4223 static void bus_high(struct bttv
*btv
, int bit
)
4225 if (btv
->mbox_ior
) {
4226 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4227 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4234 if (btv
->mbox_ior
) {
4235 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4240 static int bus_in(struct bttv
*btv
, int bit
)
4242 if (btv
->mbox_ior
) {
4243 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4244 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4247 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4250 return gpio_read() & (bit
);
4253 /* TEA5757 register bits */
4254 #define TEA_FREQ 0:14
4255 #define TEA_BUFFER 15:15
4257 #define TEA_SIGNAL_STRENGTH 16:17
4259 #define TEA_PORT1 18:18
4260 #define TEA_PORT0 19:19
4262 #define TEA_BAND 20:21
4263 #define TEA_BAND_FM 0
4264 #define TEA_BAND_MW 1
4265 #define TEA_BAND_LW 2
4266 #define TEA_BAND_SW 3
4268 #define TEA_MONO 22:22
4269 #define TEA_ALLOW_STEREO 0
4270 #define TEA_FORCE_MONO 1
4272 #define TEA_SEARCH_DIRECTION 23:23
4273 #define TEA_SEARCH_DOWN 0
4274 #define TEA_SEARCH_UP 1
4276 #define TEA_STATUS 24:24
4277 #define TEA_STATUS_TUNED 0
4278 #define TEA_STATUS_SEARCHING 1
4280 /* Low-level stuff */
4281 static int tea5757_read(struct bttv
*btv
)
4283 unsigned long timeout
;
4287 /* better safe than sorry */
4288 gpio_inout(btv
->mbox_mask
, btv
->mbox_clk
| btv
->mbox_we
);
4290 if (btv
->mbox_ior
) {
4291 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4292 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4297 bttv_gpio_tracking(btv
,"tea5757 read");
4299 bus_low(btv
,btv
->mbox_we
);
4300 bus_low(btv
,btv
->mbox_clk
);
4303 timeout
= jiffies
+ msecs_to_jiffies(1000);
4305 /* wait for DATA line to go low; error if it doesn't */
4306 while (bus_in(btv
,btv
->mbox_data
) && time_before(jiffies
, timeout
))
4308 if (bus_in(btv
,btv
->mbox_data
)) {
4309 printk(KERN_WARNING
"bttv%d: tea5757: read timeout\n",btv
->c
.nr
);
4313 dprintk("bttv%d: tea5757:",btv
->c
.nr
);
4314 for (i
= 0; i
< 24; i
++) {
4316 bus_high(btv
,btv
->mbox_clk
);
4318 dprintk("%c",(bus_in(btv
,btv
->mbox_most
) == 0)?'T':'-');
4319 bus_low(btv
,btv
->mbox_clk
);
4321 value
|= (bus_in(btv
,btv
->mbox_data
) == 0)?0:1; /* MSB first */
4322 dprintk("%c", (bus_in(btv
,btv
->mbox_most
) == 0)?'S':'M');
4324 dprintk("\nbttv%d: tea5757: read 0x%X\n", btv
->c
.nr
, value
);
4328 static int tea5757_write(struct bttv
*btv
, int value
)
4333 gpio_inout(btv
->mbox_mask
, btv
->mbox_clk
| btv
->mbox_we
| btv
->mbox_data
);
4335 if (btv
->mbox_ior
) {
4336 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4337 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4341 bttv_gpio_tracking(btv
,"tea5757 write");
4343 dprintk("bttv%d: tea5757: write 0x%X\n", btv
->c
.nr
, value
);
4344 bus_low(btv
,btv
->mbox_clk
);
4345 bus_high(btv
,btv
->mbox_we
);
4346 for (i
= 0; i
< 25; i
++) {
4347 if (reg
& 0x1000000)
4348 bus_high(btv
,btv
->mbox_data
);
4350 bus_low(btv
,btv
->mbox_data
);
4352 bus_high(btv
,btv
->mbox_clk
);
4354 bus_low(btv
,btv
->mbox_clk
);
4357 bus_low(btv
,btv
->mbox_we
); /* unmute !!! */
4361 void tea5757_set_freq(struct bttv
*btv
, unsigned short freq
)
4363 dprintk("tea5757_set_freq %d\n",freq
);
4364 tea5757_write(btv
, 5 * freq
+ 0x358); /* add 10.7MHz (see docs) */
4367 /* RemoteVision MX (rv605) muxsel helper [Miguel Freitas]
4369 * This is needed because rv605 don't use a normal multiplex, but a crosspoint
4370 * switch instead (CD22M3494E). This IC can have multiple active connections
4371 * between Xn (input) and Yn (output) pins. We need to clear any existing
4372 * connection prior to establish a new one, pulsing the STROBE pin.
4374 * The board hardwire Y0 (xpoint) to MUX1 and MUXOUT to Yin.
4375 * GPIO pins are wired as:
4376 * GPIO[0:3] - AX[0:3] (xpoint) - P1[0:3] (microcontroller)
4377 * GPIO[4:6] - AY[0:2] (xpoint) - P1[4:6] (microcontroller)
4378 * GPIO[7] - DATA (xpoint) - P1[7] (microcontroller)
4379 * GPIO[8] - - P3[5] (microcontroller)
4380 * GPIO[9] - RESET (xpoint) - P3[6] (microcontroller)
4381 * GPIO[10] - STROBE (xpoint) - P3[7] (microcontroller)
4382 * GPINTR - - P3[4] (microcontroller)
4384 * The microcontroller is a 80C32 like. It should be possible to change xpoint
4385 * configuration either directly (as we are doing) or using the microcontroller
4386 * which is also wired to I2C interface. I have no further info on the
4387 * microcontroller features, one would need to disassembly the firmware.
4388 * note: the vendor refused to give any information on this product, all
4389 * that stuff was found using a multimeter! :)
4391 static void rv605_muxsel(struct bttv
*btv
, unsigned int input
)
4393 /* reset all conections */
4394 gpio_bits(0x200,0x200);
4396 gpio_bits(0x200,0x000);
4399 /* create a new connection */
4400 gpio_bits(0x480,0x080);
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 seperator
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 seperator 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 (KERN_DEBUG
"bttv%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 * independant 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("bttv%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 /* Selects MUX0 for input on the 878 */
4660 btaor((0)<<5, ~(3<<5), BT848_IFORM
);
4664 /* PXC200 muxsel helper
4665 * luke@syseng.anu.edu.au
4666 * another transplant
4667 * from Alessandro Rubini (rubini@linux.it)
4669 * There are 4 kinds of cards:
4670 * PXC200L which is bt848
4671 * PXC200F which is bt848 with PIC controlling mux
4672 * PXC200AL which is bt878
4673 * PXC200AF which is bt878 with PIC controlling mux
4675 #define PX_CFG_PXC200F 0x01
4676 #define PX_FLAG_PXC200A 0x00001000 /* a pxc200A is bt-878 based */
4677 #define PX_I2C_PIC 0x0f
4678 #define PX_PXC200A_CARDID 0x200a1295
4679 #define PX_I2C_CMD_CFG 0x00
4681 static void PXC200_muxsel(struct bttv
*btv
, unsigned int input
)
4686 unsigned char buf
[2];
4688 /* Read PIC config to determine if this is a PXC200F */
4692 rc
=bttv_I2CWrite(btv
,(PX_I2C_PIC
<<1),buf
[0],buf
[1],1);
4694 printk(KERN_DEBUG
"bttv%d: PXC200_muxsel: pic cfg write failed:%d\n", btv
->c
.nr
,rc
);
4695 /* not PXC ? do nothing */
4699 rc
=bttv_I2CRead(btv
,(PX_I2C_PIC
<<1),NULL
);
4700 if (!(rc
& PX_CFG_PXC200F
)) {
4701 printk(KERN_DEBUG
"bttv%d: PXC200_muxsel: not PXC200F rc:%d \n", btv
->c
.nr
,rc
);
4706 /* The multiplexer in the 200F is handled by the GPIO port */
4707 /* get correct mapping between inputs */
4708 /* mux = bttv_tvcards[btv->type].muxsel[input] & 3; */
4709 /* ** not needed!? */
4712 /* make sure output pins are enabled */
4713 /* bitmask=0x30f; */
4715 /* check whether we have a PXC200A */
4716 if (btv
->cardid
== PX_PXC200A_CARDID
) {
4717 bitmask
^= 0x180; /* use 7 and 9, not 8 and 9 */
4718 bitmask
|= 7<<4; /* the DAC */
4720 btwrite(bitmask
, BT848_GPIO_OUT_EN
);
4722 bitmask
= btread(BT848_GPIO_DATA
);
4723 if (btv
->cardid
== PX_PXC200A_CARDID
)
4724 bitmask
= (bitmask
& ~0x280) | ((mux
& 2) << 8) | ((mux
& 1) << 7);
4725 else /* older device */
4726 bitmask
= (bitmask
& ~0x300) | ((mux
& 3) << 8);
4727 btwrite(bitmask
,BT848_GPIO_DATA
);
4730 * Was "to be safe, set the bt848 to input 0"
4731 * Actually, since it's ok at load time, better not messing
4732 * with these bits (on PXC200AF you need to set mux 2 here)
4734 * needed because bttv-driver sets mux before calling this function
4736 if (btv
->cardid
== PX_PXC200A_CARDID
)
4737 btaor(2<<5, ~BT848_IFORM_MUXSEL
, BT848_IFORM
);
4738 else /* older device */
4739 btand(~BT848_IFORM_MUXSEL
,BT848_IFORM
);
4741 printk(KERN_DEBUG
"bttv%d: setting input channel to:%d\n", btv
->c
.nr
,(int)mux
);
4744 /* ----------------------------------------------------------------------- */
4745 /* motherboard chipset specific stuff */
4747 void __init
bttv_check_chipset(void)
4749 int pcipci_fail
= 0;
4750 struct pci_dev
*dev
= NULL
;
4752 if (pci_pci_problems
& (PCIPCI_FAIL
|PCIAGP_FAIL
)) /* should check if target is AGP */
4754 if (pci_pci_problems
& (PCIPCI_TRITON
|PCIPCI_NATOMA
|PCIPCI_VIAETBF
))
4756 if (pci_pci_problems
& PCIPCI_VSFX
)
4758 #ifdef PCIPCI_ALIMAGIK
4759 if (pci_pci_problems
& PCIPCI_ALIMAGIK
)
4764 /* print warnings about any quirks found */
4766 printk(KERN_INFO
"bttv: Host bridge needs ETBF enabled.\n");
4768 printk(KERN_INFO
"bttv: Host bridge needs VSFX enabled.\n");
4770 printk(KERN_INFO
"bttv: bttv and your chipset may not work "
4773 printk(KERN_INFO
"bttv: overlay will be disabled.\n");
4776 printk(KERN_INFO
"bttv: overlay forced. Use this "
4777 "option at your own risk.\n");
4780 if (UNSET
!= latency
)
4781 printk(KERN_INFO
"bttv: pci latency fixup [%d]\n",latency
);
4782 while ((dev
= pci_get_device(PCI_VENDOR_ID_INTEL
,
4783 PCI_DEVICE_ID_INTEL_82441
, dev
))) {
4785 pci_read_config_byte(dev
, 0x53, &b
);
4787 printk(KERN_INFO
"bttv: Host bridge: 82441FX Natoma, "
4788 "bufcon=0x%02x\n",b
);
4792 int __devinit
bttv_handle_chipset(struct bttv
*btv
)
4794 unsigned char command
;
4796 if (!triton1
&& !vsfx
&& UNSET
== latency
)
4801 printk(KERN_INFO
"bttv%d: enabling ETBF (430FX/VP3 compatibilty)\n",btv
->c
.nr
);
4802 if (vsfx
&& btv
->id
>= 878)
4803 printk(KERN_INFO
"bttv%d: enabling VSFX\n",btv
->c
.nr
);
4804 if (UNSET
!= latency
)
4805 printk(KERN_INFO
"bttv%d: setting pci timer to %d\n",
4809 if (btv
->id
< 878) {
4810 /* bt848 (mis)uses a bit in the irq mask for etbf */
4812 btv
->triton1
= BT848_INT_ETBF
;
4814 /* bt878 has a bit in the pci config space for it */
4815 pci_read_config_byte(btv
->c
.pci
, BT878_DEVCTRL
, &command
);
4817 command
|= BT878_EN_TBFX
;
4819 command
|= BT878_EN_VSFX
;
4820 pci_write_config_byte(btv
->c
.pci
, BT878_DEVCTRL
, command
);
4822 if (UNSET
!= latency
)
4823 pci_write_config_byte(btv
->c
.pci
, PCI_LATENCY_TIMER
, latency
);