5 this file has configuration informations - card-specific stuff
6 like the big tvcards array for the most part
8 Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
9 & Marcus Metzler (mocm@thp.uni-koeln.de)
10 (c) 1999-2001 Gerd Knorr <kraxel@goldbach.in-berlin.de>
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30 #include <linux/delay.h>
31 #include <linux/module.h>
32 #include <linux/kmod.h>
33 #include <linux/init.h>
34 #include <linux/pci.h>
35 #include <linux/vmalloc.h>
36 #include <linux/firmware.h>
37 #include <net/checksum.h>
39 #include <asm/unaligned.h>
43 #include <media/v4l2-common.h>
44 #include <media/i2c/tvaudio.h>
45 #include "bttv-audio-hook.h"
48 static void boot_msp34xx(struct bttv
*btv
, int pin
);
49 static void hauppauge_eeprom(struct bttv
*btv
);
50 static void avermedia_eeprom(struct bttv
*btv
);
51 static void osprey_eeprom(struct bttv
*btv
, const u8 ee
[256]);
52 static void modtec_eeprom(struct bttv
*btv
);
53 static void init_PXC200(struct bttv
*btv
);
54 static void init_RTV24(struct bttv
*btv
);
55 static void init_PCI8604PW(struct bttv
*btv
);
57 static void rv605_muxsel(struct bttv
*btv
, unsigned int input
);
58 static void eagle_muxsel(struct bttv
*btv
, unsigned int input
);
59 static void xguard_muxsel(struct bttv
*btv
, unsigned int input
);
60 static void ivc120_muxsel(struct bttv
*btv
, unsigned int input
);
61 static void gvc1100_muxsel(struct bttv
*btv
, unsigned int input
);
63 static void PXC200_muxsel(struct bttv
*btv
, unsigned int input
);
65 static void picolo_tetra_muxsel(struct bttv
*btv
, unsigned int input
);
66 static void picolo_tetra_init(struct bttv
*btv
);
68 static void tibetCS16_muxsel(struct bttv
*btv
, unsigned int input
);
69 static void tibetCS16_init(struct bttv
*btv
);
71 static void kodicom4400r_muxsel(struct bttv
*btv
, unsigned int input
);
72 static void kodicom4400r_init(struct bttv
*btv
);
74 static void sigmaSLC_muxsel(struct bttv
*btv
, unsigned int input
);
75 static void sigmaSQ_muxsel(struct bttv
*btv
, unsigned int input
);
77 static void geovision_muxsel(struct bttv
*btv
, unsigned int input
);
79 static void phytec_muxsel(struct bttv
*btv
, unsigned int input
);
81 static void gv800s_muxsel(struct bttv
*btv
, unsigned int input
);
82 static void gv800s_init(struct bttv
*btv
);
84 static void td3116_muxsel(struct bttv
*btv
, unsigned int input
);
86 static int terratec_active_radio_upgrade(struct bttv
*btv
);
87 static int tea575x_init(struct bttv
*btv
);
88 static void identify_by_eeprom(struct bttv
*btv
,
89 unsigned char eeprom_data
[256]);
90 static int pvr_boot(struct bttv
*btv
);
92 /* config variables */
93 static unsigned int triton1
;
94 static unsigned int vsfx
;
95 static unsigned int latency
= UNSET
;
98 static unsigned int card
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
99 static unsigned int pll
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
100 static unsigned int tuner
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
101 static unsigned int svhs
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
102 static unsigned int remote
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
103 static unsigned int audiodev
[BTTV_MAX
];
104 static unsigned int saa6588
[BTTV_MAX
];
105 static struct bttv
*master
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = NULL
};
106 static unsigned int autoload
= UNSET
;
107 static unsigned int gpiomask
= UNSET
;
108 static unsigned int audioall
= UNSET
;
109 static unsigned int audiomux
[5] = { [ 0 ... 4 ] = UNSET
};
112 module_param(triton1
, int, 0444);
113 module_param(vsfx
, int, 0444);
114 module_param(no_overlay
, int, 0444);
115 module_param(latency
, int, 0444);
116 module_param(gpiomask
, int, 0444);
117 module_param(audioall
, int, 0444);
118 module_param(autoload
, int, 0444);
120 module_param_array(card
, int, NULL
, 0444);
121 module_param_array(pll
, int, NULL
, 0444);
122 module_param_array(tuner
, int, NULL
, 0444);
123 module_param_array(svhs
, int, NULL
, 0444);
124 module_param_array(remote
, int, NULL
, 0444);
125 module_param_array(audiodev
, int, NULL
, 0444);
126 module_param_array(audiomux
, int, NULL
, 0444);
128 MODULE_PARM_DESC(triton1
, "set ETBF pci config bit [enable bug compatibility for triton1 + others]");
129 MODULE_PARM_DESC(vsfx
, "set VSFX pci config bit [yet another chipset flaw workaround]");
130 MODULE_PARM_DESC(latency
,"pci latency timer");
131 MODULE_PARM_DESC(card
,"specify TV/grabber card model, see CARDLIST file for a list");
132 MODULE_PARM_DESC(pll
, "specify installed crystal (0=none, 28=28 MHz, 35=35 MHz, 14=14 MHz)");
133 MODULE_PARM_DESC(tuner
,"specify installed tuner type");
134 MODULE_PARM_DESC(autoload
, "obsolete option, please do not use anymore");
135 MODULE_PARM_DESC(audiodev
, "specify audio device:\n"
136 "\t\t-1 = no audio\n"
137 "\t\t 0 = autodetect (default)\n"
141 MODULE_PARM_DESC(saa6588
, "if 1, then load the saa6588 RDS module, default (0) is to use the card definition.");
142 MODULE_PARM_DESC(no_overlay
, "allow override overlay default (0 disables, 1 enables) [some VIA/SIS chipsets are known to have problem with overlay]");
145 /* I2C addresses list */
146 #define I2C_ADDR_TDA7432 0x8a
147 #define I2C_ADDR_MSP3400 0x80
148 #define I2C_ADDR_MSP3400_ALT 0x88
151 /* ----------------------------------------------------------------------- */
152 /* list of card IDs for bt878+ cards */
159 { 0x13eb0070, BTTV_BOARD_HAUPPAUGE878
, "Hauppauge WinTV" },
160 { 0x39000070, BTTV_BOARD_HAUPPAUGE878
, "Hauppauge WinTV-D" },
161 { 0x45000070, BTTV_BOARD_HAUPPAUGEPVR
, "Hauppauge WinTV/PVR" },
162 { 0xff000070, BTTV_BOARD_OSPREY1x0
, "Osprey-100" },
163 { 0xff010070, BTTV_BOARD_OSPREY2x0_SVID
,"Osprey-200" },
164 { 0xff020070, BTTV_BOARD_OSPREY500
, "Osprey-500" },
165 { 0xff030070, BTTV_BOARD_OSPREY2000
, "Osprey-2000" },
166 { 0xff040070, BTTV_BOARD_OSPREY540
, "Osprey-540" },
167 { 0xff070070, BTTV_BOARD_OSPREY440
, "Osprey-440" },
169 { 0x00011002, BTTV_BOARD_ATI_TVWONDER
, "ATI TV Wonder" },
170 { 0x00031002, BTTV_BOARD_ATI_TVWONDERVE
,"ATI TV Wonder/VE" },
172 { 0x6606107d, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
173 { 0x6607107d, BTTV_BOARD_WINFASTVC100
, "Leadtek WinFast VC 100" },
174 { 0x6609107d, BTTV_BOARD_WINFAST2000
, "Leadtek TV 2000 XP" },
175 { 0x263610b4, BTTV_BOARD_STB2
, "STB TV PCI FM, Gateway P/N 6000704" },
176 { 0x264510b4, BTTV_BOARD_STB2
, "STB TV PCI FM, Gateway P/N 6000704" },
177 { 0x402010fc, BTTV_BOARD_GVBCTV3PCI
, "I-O Data Co. GV-BCTV3/PCI" },
178 { 0x405010fc, BTTV_BOARD_GVBCTV4PCI
, "I-O Data Co. GV-BCTV4/PCI" },
179 { 0x407010fc, BTTV_BOARD_GVBCTV5PCI
, "I-O Data Co. GV-BCTV5/PCI" },
180 { 0xd01810fc, BTTV_BOARD_GVBCTV5PCI
, "I-O Data Co. GV-BCTV5/PCI" },
182 { 0x001211bd, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV" },
183 /* some cards ship with byteswapped IDs ... */
184 { 0x1200bd11, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV [bswap]" },
185 { 0xff00bd11, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV [bswap]" },
186 /* this seems to happen as well ... */
187 { 0xff1211bd, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV" },
189 { 0x3000121a, BTTV_BOARD_VOODOOTV_200
, "3Dfx VoodooTV 200" },
190 { 0x263710b4, BTTV_BOARD_VOODOOTV_FM
, "3Dfx VoodooTV FM" },
191 { 0x3060121a, BTTV_BOARD_STB2
, "3Dfx VoodooTV 100/ STB OEM" },
193 { 0x3000144f, BTTV_BOARD_MAGICTVIEW063
, "(Askey Magic/others) TView99 CPH06x" },
194 { 0xa005144f, BTTV_BOARD_MAGICTVIEW063
, "CPH06X TView99-Card" },
195 { 0x3002144f, BTTV_BOARD_MAGICTVIEW061
, "(Askey Magic/others) TView99 CPH05x" },
196 { 0x3005144f, BTTV_BOARD_MAGICTVIEW061
, "(Askey Magic/others) TView99 CPH061/06L (T1/LC)" },
197 { 0x5000144f, BTTV_BOARD_MAGICTVIEW061
, "Askey CPH050" },
198 { 0x300014ff, BTTV_BOARD_MAGICTVIEW061
, "TView 99 (CPH061)" },
199 { 0x300214ff, BTTV_BOARD_PHOEBE_TVMAS
, "Phoebe TV Master (CPH060)" },
201 { 0x00011461, BTTV_BOARD_AVPHONE98
, "AVerMedia TVPhone98" },
202 { 0x00021461, BTTV_BOARD_AVERMEDIA98
, "AVermedia TVCapture 98" },
203 { 0x00031461, BTTV_BOARD_AVPHONE98
, "AVerMedia TVPhone98" },
204 { 0x00041461, BTTV_BOARD_AVERMEDIA98
, "AVerMedia TVCapture 98" },
205 { 0x03001461, BTTV_BOARD_AVERMEDIA98
, "VDOMATE TV TUNER CARD" },
207 { 0x1117153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Philips PAL B/G)" },
208 { 0x1118153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Temic PAL B/G)" },
209 { 0x1119153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Philips PAL I)" },
210 { 0x111a153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Temic PAL I)" },
212 { 0x1123153b, BTTV_BOARD_TERRATVRADIO
, "Terratec TV Radio+" },
213 { 0x1127153b, BTTV_BOARD_TERRATV
, "Terratec TV+ (V1.05)" },
214 /* clashes with FlyVideo
215 *{ 0x18521852, BTTV_BOARD_TERRATV, "Terratec TV+ (V1.10)" }, */
216 { 0x1134153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (LR102)" },
217 { 0x1135153b, BTTV_BOARD_TERRATVALUER
, "Terratec TValue Radio" }, /* LR102 */
218 { 0x5018153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue" }, /* ?? */
219 { 0xff3b153b, BTTV_BOARD_TERRATVALUER
, "Terratec TValue Radio" }, /* ?? */
221 { 0x400015b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV" },
222 { 0x400a15b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV" },
223 { 0x400d15b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
224 { 0x401015b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
225 { 0x401615b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
227 { 0x1430aa00, BTTV_BOARD_PV143
, "Provideo PV143A" },
228 { 0x1431aa00, BTTV_BOARD_PV143
, "Provideo PV143B" },
229 { 0x1432aa00, BTTV_BOARD_PV143
, "Provideo PV143C" },
230 { 0x1433aa00, BTTV_BOARD_PV143
, "Provideo PV143D" },
231 { 0x1433aa03, BTTV_BOARD_PV143
, "Security Eyes" },
233 { 0x1460aa00, BTTV_BOARD_PV150
, "Provideo PV150A-1" },
234 { 0x1461aa01, BTTV_BOARD_PV150
, "Provideo PV150A-2" },
235 { 0x1462aa02, BTTV_BOARD_PV150
, "Provideo PV150A-3" },
236 { 0x1463aa03, BTTV_BOARD_PV150
, "Provideo PV150A-4" },
238 { 0x1464aa04, BTTV_BOARD_PV150
, "Provideo PV150B-1" },
239 { 0x1465aa05, BTTV_BOARD_PV150
, "Provideo PV150B-2" },
240 { 0x1466aa06, BTTV_BOARD_PV150
, "Provideo PV150B-3" },
241 { 0x1467aa07, BTTV_BOARD_PV150
, "Provideo PV150B-4" },
243 { 0xa132ff00, BTTV_BOARD_IVC100
, "IVC-100" },
244 { 0xa1550000, BTTV_BOARD_IVC200
, "IVC-200" },
245 { 0xa1550001, BTTV_BOARD_IVC200
, "IVC-200" },
246 { 0xa1550002, BTTV_BOARD_IVC200
, "IVC-200" },
247 { 0xa1550003, BTTV_BOARD_IVC200
, "IVC-200" },
248 { 0xa1550100, BTTV_BOARD_IVC200
, "IVC-200G" },
249 { 0xa1550101, BTTV_BOARD_IVC200
, "IVC-200G" },
250 { 0xa1550102, BTTV_BOARD_IVC200
, "IVC-200G" },
251 { 0xa1550103, BTTV_BOARD_IVC200
, "IVC-200G" },
252 { 0xa1550800, BTTV_BOARD_IVC200
, "IVC-200" },
253 { 0xa1550801, BTTV_BOARD_IVC200
, "IVC-200" },
254 { 0xa1550802, BTTV_BOARD_IVC200
, "IVC-200" },
255 { 0xa1550803, BTTV_BOARD_IVC200
, "IVC-200" },
256 { 0xa182ff00, BTTV_BOARD_IVC120
, "IVC-120G" },
257 { 0xa182ff01, BTTV_BOARD_IVC120
, "IVC-120G" },
258 { 0xa182ff02, BTTV_BOARD_IVC120
, "IVC-120G" },
259 { 0xa182ff03, BTTV_BOARD_IVC120
, "IVC-120G" },
260 { 0xa182ff04, BTTV_BOARD_IVC120
, "IVC-120G" },
261 { 0xa182ff05, BTTV_BOARD_IVC120
, "IVC-120G" },
262 { 0xa182ff06, BTTV_BOARD_IVC120
, "IVC-120G" },
263 { 0xa182ff07, BTTV_BOARD_IVC120
, "IVC-120G" },
264 { 0xa182ff08, BTTV_BOARD_IVC120
, "IVC-120G" },
265 { 0xa182ff09, BTTV_BOARD_IVC120
, "IVC-120G" },
266 { 0xa182ff0a, BTTV_BOARD_IVC120
, "IVC-120G" },
267 { 0xa182ff0b, BTTV_BOARD_IVC120
, "IVC-120G" },
268 { 0xa182ff0c, BTTV_BOARD_IVC120
, "IVC-120G" },
269 { 0xa182ff0d, BTTV_BOARD_IVC120
, "IVC-120G" },
270 { 0xa182ff0e, BTTV_BOARD_IVC120
, "IVC-120G" },
271 { 0xa182ff0f, BTTV_BOARD_IVC120
, "IVC-120G" },
272 { 0xf0500000, BTTV_BOARD_IVCE8784
, "IVCE-8784" },
273 { 0xf0500001, BTTV_BOARD_IVCE8784
, "IVCE-8784" },
274 { 0xf0500002, BTTV_BOARD_IVCE8784
, "IVCE-8784" },
275 { 0xf0500003, BTTV_BOARD_IVCE8784
, "IVCE-8784" },
277 { 0x41424344, BTTV_BOARD_GRANDTEC
, "GrandTec Multi Capture" },
278 { 0x01020304, BTTV_BOARD_XGUARD
, "Grandtec Grand X-Guard" },
280 { 0x18501851, BTTV_BOARD_CHRONOS_VS2
, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
281 { 0xa0501851, BTTV_BOARD_CHRONOS_VS2
, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
282 { 0x18511851, BTTV_BOARD_FLYVIDEO98EZ
, "FlyVideo 98EZ (LR51)/ CyberMail AV" },
283 { 0x18521852, BTTV_BOARD_TYPHOON_TVIEW
, "FlyVideo 98FM (LR50)/ Typhoon TView TV/FM Tuner" },
284 { 0x41a0a051, BTTV_BOARD_FLYVIDEO_98FM
, "Lifeview FlyVideo 98 LR50 Rev Q" },
285 { 0x18501f7f, BTTV_BOARD_FLYVIDEO_98
, "Lifeview Flyvideo 98" },
287 { 0x010115cb, BTTV_BOARD_GMV1
, "AG GMV1" },
288 { 0x010114c7, BTTV_BOARD_MODTEC_205
, "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV" },
290 { 0x10b42636, BTTV_BOARD_HAUPPAUGE878
, "STB ???" },
291 { 0x217d6606, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
292 { 0xfff6f6ff, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
293 { 0x03116000, BTTV_BOARD_SENSORAY311_611
, "Sensoray 311" },
294 { 0x06116000, BTTV_BOARD_SENSORAY311_611
, "Sensoray 611" },
295 { 0x00790e11, BTTV_BOARD_WINDVR
, "Canopus WinDVR PCI" },
296 { 0xa0fca1a0, BTTV_BOARD_ZOLTRIX
, "Face to Face Tvmax" },
297 { 0x82b2aa6a, BTTV_BOARD_SIMUS_GVC1100
, "SIMUS GVC1100" },
298 { 0x146caa0c, BTTV_BOARD_PV951
, "ituner spectra8" },
299 { 0x200a1295, BTTV_BOARD_PXC200
, "ImageNation PXC200A" },
301 { 0x40111554, BTTV_BOARD_PV_BT878P_9B
, "Prolink Pixelview PV-BT" },
302 { 0x17de0a01, BTTV_BOARD_KWORLD
, "Mecer TV/FM/Video Tuner" },
304 { 0x01051805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #1" },
305 { 0x01061805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #2" },
306 { 0x01071805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #3" },
307 { 0x01081805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #4" },
309 { 0x15409511, BTTV_BOARD_ACORP_Y878F
, "Acorp Y878F" },
311 { 0x53534149, BTTV_BOARD_SSAI_SECURITY
, "SSAI Security Video Interface" },
312 { 0x5353414a, BTTV_BOARD_SSAI_ULTRASOUND
, "SSAI Ultrasound Video Interface" },
314 /* likely broken, vendor id doesn't match the other magic views ...
315 * { 0xa0fca04f, BTTV_BOARD_MAGICTVIEW063, "Guillemot Maxi TV Video 3" }, */
317 /* Duplicate PCI ID, reconfigure for this board during the eeprom read.
318 * { 0x13eb0070, BTTV_BOARD_HAUPPAUGE_IMPACTVCB, "Hauppauge ImpactVCB" }, */
320 { 0x109e036e, BTTV_BOARD_CONCEPTRONIC_CTVFMI2
, "Conceptronic CTVFMi v2"},
322 /* DVB cards (using pci function .1 for mpeg data xfer) */
323 { 0x001c11bd, BTTV_BOARD_PINNACLESAT
, "Pinnacle PCTV Sat" },
324 { 0x01010071, BTTV_BOARD_NEBULA_DIGITV
, "Nebula Electronics DigiTV" },
325 { 0x20007063, BTTV_BOARD_PC_HDTV
, "pcHDTV HD-2000 TV"},
326 { 0x002611bd, BTTV_BOARD_TWINHAN_DST
, "Pinnacle PCTV SAT CI" },
327 { 0x00011822, BTTV_BOARD_TWINHAN_DST
, "Twinhan VisionPlus DVB" },
328 { 0xfc00270f, BTTV_BOARD_TWINHAN_DST
, "ChainTech digitop DST-1000 DVB-S" },
329 { 0x07711461, BTTV_BOARD_AVDVBT_771
, "AVermedia AverTV DVB-T 771" },
330 { 0x07611461, BTTV_BOARD_AVDVBT_761
, "AverMedia AverTV DVB-T 761" },
331 { 0xdb1018ac, BTTV_BOARD_DVICO_DVBT_LITE
, "DViCO FusionHDTV DVB-T Lite" },
332 { 0xdb1118ac, BTTV_BOARD_DVICO_DVBT_LITE
, "Ultraview DVB-T Lite" },
333 { 0xd50018ac, BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
, "DViCO FusionHDTV 5 Lite" },
334 { 0x00261822, BTTV_BOARD_TWINHAN_DST
, "DNTV Live! Mini "},
335 { 0xd200dbc0, BTTV_BOARD_DVICO_FUSIONHDTV_2
, "DViCO FusionHDTV 2" },
336 { 0x763c008a, BTTV_BOARD_GEOVISION_GV600
, "GeoVision GV-600" },
337 { 0x18011000, BTTV_BOARD_ENLTV_FM_2
, "Encore ENL TV-FM-2" },
338 { 0x763d800a, BTTV_BOARD_GEOVISION_GV800S
, "GeoVision GV-800(S) (master)" },
339 { 0x763d800b, BTTV_BOARD_GEOVISION_GV800S_SL
, "GeoVision GV-800(S) (slave)" },
340 { 0x763d800c, BTTV_BOARD_GEOVISION_GV800S_SL
, "GeoVision GV-800(S) (slave)" },
341 { 0x763d800d, BTTV_BOARD_GEOVISION_GV800S_SL
, "GeoVision GV-800(S) (slave)" },
343 { 0x15401830, BTTV_BOARD_PV183
, "Provideo PV183-1" },
344 { 0x15401831, BTTV_BOARD_PV183
, "Provideo PV183-2" },
345 { 0x15401832, BTTV_BOARD_PV183
, "Provideo PV183-3" },
346 { 0x15401833, BTTV_BOARD_PV183
, "Provideo PV183-4" },
347 { 0x15401834, BTTV_BOARD_PV183
, "Provideo PV183-5" },
348 { 0x15401835, BTTV_BOARD_PV183
, "Provideo PV183-6" },
349 { 0x15401836, BTTV_BOARD_PV183
, "Provideo PV183-7" },
350 { 0x15401837, BTTV_BOARD_PV183
, "Provideo PV183-8" },
351 { 0x3116f200, BTTV_BOARD_TVT_TD3116
, "Tongwei Video Technology TD-3116" },
352 { 0x02280279, BTTV_BOARD_APOSONIC_WDVR
, "Aposonic W-DVR" },
356 /* ----------------------------------------------------------------------- */
357 /* array with description for bt848 / bt878 tv/grabber cards */
359 struct tvcard bttv_tvcards
[] = {
360 /* ---- card 0x00 ---------------------------------- */
361 [BTTV_BOARD_UNKNOWN
] = {
362 .name
= " *** UNKNOWN/GENERIC *** ",
365 .muxsel
= MUXSEL(2, 3, 1, 0),
367 .tuner_addr
= ADDR_UNSET
,
369 [BTTV_BOARD_MIRO
] = {
372 /* .audio_inputs= 1, */
375 .muxsel
= MUXSEL(2, 3, 1, 1),
376 .gpiomux
= { 2, 0, 0, 0 },
379 .tuner_addr
= ADDR_UNSET
,
381 [BTTV_BOARD_HAUPPAUGE
] = {
382 .name
= "Hauppauge (bt848)",
384 /* .audio_inputs= 1, */
387 .muxsel
= MUXSEL(2, 3, 1, 1),
388 .gpiomux
= { 0, 1, 2, 3 },
391 .tuner_addr
= ADDR_UNSET
,
394 .name
= "STB, Gateway P/N 6000699 (bt848)",
396 /* .audio_inputs= 1, */
399 .muxsel
= MUXSEL(2, 3, 1, 1),
400 .gpiomux
= { 4, 0, 2, 3 },
403 .tuner_type
= TUNER_PHILIPS_NTSC
,
404 .tuner_addr
= ADDR_UNSET
,
409 /* ---- card 0x04 ---------------------------------- */
410 [BTTV_BOARD_INTEL
] = {
411 .name
= "Intel Create and Share PCI/ Smart Video Recorder III",
413 /* .audio_inputs= 0, */
416 .muxsel
= MUXSEL(2, 3, 1, 1),
418 .tuner_type
= TUNER_ABSENT
,
419 .tuner_addr
= ADDR_UNSET
,
421 [BTTV_BOARD_DIAMOND
] = {
422 .name
= "Diamond DTV2000",
424 /* .audio_inputs= 1, */
427 .muxsel
= MUXSEL(2, 3, 1, 0),
428 .gpiomux
= { 0, 1, 0, 1 },
431 .tuner_addr
= ADDR_UNSET
,
433 [BTTV_BOARD_AVERMEDIA
] = {
434 .name
= "AVerMedia TVPhone",
436 /* .audio_inputs= 1, */
438 .muxsel
= MUXSEL(2, 3, 1, 1),
440 .gpiomux
= { 0x0c, 0x04, 0x08, 0x04 },
441 /* 0x04 for some cards ?? */
443 .tuner_addr
= ADDR_UNSET
,
444 .audio_mode_gpio
= avermedia_tvphone_audio
,
447 [BTTV_BOARD_MATRIX_VISION
] = {
448 .name
= "MATRIX-Vision MV-Delta",
450 /* .audio_inputs= 1, */
453 .muxsel
= MUXSEL(2, 3, 1, 0, 0),
455 .tuner_type
= TUNER_ABSENT
,
456 .tuner_addr
= ADDR_UNSET
,
459 /* ---- card 0x08 ---------------------------------- */
460 [BTTV_BOARD_FLYVIDEO
] = {
461 .name
= "Lifeview FlyVideo II (Bt848) LR26 / MAXI TV Video PCI2 LR26",
463 /* .audio_inputs= 1, */
466 .muxsel
= MUXSEL(2, 3, 1, 1),
467 .gpiomux
= { 0, 0xc00, 0x800, 0x400 },
471 .tuner_addr
= ADDR_UNSET
,
473 [BTTV_BOARD_TURBOTV
] = {
474 .name
= "IMS/IXmicro TurboTV",
476 /* .audio_inputs= 1, */
479 .muxsel
= MUXSEL(2, 3, 1, 1),
480 .gpiomux
= { 1, 1, 2, 3 },
482 .tuner_type
= TUNER_TEMIC_PAL
,
483 .tuner_addr
= ADDR_UNSET
,
485 [BTTV_BOARD_HAUPPAUGE878
] = {
486 .name
= "Hauppauge (bt878)",
488 /* .audio_inputs= 1, */
490 .gpiomask
= 0x0f, /* old: 7 */
491 .muxsel
= MUXSEL(2, 0, 1, 1),
492 .gpiomux
= { 0, 1, 2, 3 },
496 .tuner_addr
= ADDR_UNSET
,
498 [BTTV_BOARD_MIROPRO
] = {
499 .name
= "MIRO PCTV pro",
501 /* .audio_inputs= 1, */
504 .muxsel
= MUXSEL(2, 3, 1, 1),
505 .gpiomux
= { 0x20001,0x10001, 0, 0 },
508 .tuner_addr
= ADDR_UNSET
,
511 /* ---- card 0x0c ---------------------------------- */
512 [BTTV_BOARD_ADSTECH_TV
] = {
513 .name
= "ADS Technologies Channel Surfer TV (bt848)",
515 /* .audio_inputs= 1, */
518 .muxsel
= MUXSEL(2, 3, 1, 1),
519 .gpiomux
= { 13, 14, 11, 7 },
521 .tuner_addr
= ADDR_UNSET
,
523 [BTTV_BOARD_AVERMEDIA98
] = {
524 .name
= "AVerMedia TVCapture 98",
526 /* .audio_inputs= 4, */
529 .muxsel
= MUXSEL(2, 3, 1, 1),
530 .gpiomux
= { 13, 14, 11, 7 },
533 .tuner_type
= TUNER_PHILIPS_PAL
,
534 .tuner_addr
= ADDR_UNSET
,
535 .audio_mode_gpio
= avermedia_tv_stereo_audio
,
539 .name
= "Aimslab Video Highway Xtreme (VHX)",
541 /* .audio_inputs= 1, */
544 .muxsel
= MUXSEL(2, 3, 1, 1),
545 .gpiomux
= { 0, 2, 1, 3 }, /* old: {0, 1, 2, 3, 4} */
549 .tuner_addr
= ADDR_UNSET
,
551 [BTTV_BOARD_ZOLTRIX
] = {
552 .name
= "Zoltrix TV-Max",
554 /* .audio_inputs= 1, */
557 .muxsel
= MUXSEL(2, 3, 1, 1),
558 .gpiomux
= { 0, 0, 1, 0 },
561 .tuner_addr
= ADDR_UNSET
,
564 /* ---- card 0x10 ---------------------------------- */
565 [BTTV_BOARD_PIXVIEWPLAYTV
] = {
566 .name
= "Prolink Pixelview PlayTV (bt878)",
568 /* .audio_inputs= 1, */
570 .gpiomask
= 0x01fe00,
571 .muxsel
= MUXSEL(2, 3, 1, 1),
572 /* 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> */
573 .gpiomux
= { 0x001e00, 0, 0x018000, 0x014000 },
574 .gpiomute
= 0x002000,
577 .tuner_addr
= ADDR_UNSET
,
579 [BTTV_BOARD_WINVIEW_601
] = {
580 .name
= "Leadtek WinView 601",
582 /* .audio_inputs= 1, */
584 .gpiomask
= 0x8300f8,
585 .muxsel
= MUXSEL(2, 3, 1, 1, 0),
586 .gpiomux
= { 0x4fa007,0xcfa007,0xcfa007,0xcfa007 },
587 .gpiomute
= 0xcfa007,
589 .tuner_addr
= ADDR_UNSET
,
590 .volume_gpio
= winview_volume
,
593 [BTTV_BOARD_AVEC_INTERCAP
] = {
594 .name
= "AVEC Intercapture",
596 /* .audio_inputs= 2, */
599 .muxsel
= MUXSEL(2, 3, 1, 1),
600 .gpiomux
= { 1, 0, 0, 0 },
602 .tuner_addr
= ADDR_UNSET
,
604 [BTTV_BOARD_LIFE_FLYKIT
] = {
605 .name
= "Lifeview FlyVideo II EZ /FlyKit LR38 Bt848 (capture only)",
607 /* .audio_inputs= 1, */
609 .gpiomask
= 0x8dff00,
610 .muxsel
= MUXSEL(2, 3, 1, 1),
613 .tuner_type
= TUNER_ABSENT
,
614 .tuner_addr
= ADDR_UNSET
,
617 /* ---- card 0x14 ---------------------------------- */
618 [BTTV_BOARD_CEI_RAFFLES
] = {
619 .name
= "CEI Raffles Card",
621 /* .audio_inputs= 3, */
623 .muxsel
= MUXSEL(2, 3, 1, 1),
625 .tuner_addr
= ADDR_UNSET
,
627 [BTTV_BOARD_CONFERENCETV
] = {
628 .name
= "Lifeview FlyVideo 98/ Lucky Star Image World ConferenceTV LR50",
630 /* .audio_inputs= 2, tuner, line in */
633 .muxsel
= MUXSEL(2, 3, 1, 1),
634 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
637 .tuner_type
= TUNER_PHILIPS_PAL_I
,
638 .tuner_addr
= ADDR_UNSET
,
640 [BTTV_BOARD_PHOEBE_TVMAS
] = {
641 .name
= "Askey CPH050/ Phoebe Tv Master + FM",
643 /* .audio_inputs= 1, */
646 .muxsel
= MUXSEL(2, 3, 1, 1),
647 .gpiomux
= { 0, 1, 0x800, 0x400 },
651 .tuner_addr
= ADDR_UNSET
,
653 [BTTV_BOARD_MODTEC_205
] = {
654 .name
= "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV, bt878",
656 /* .audio_inputs= 1, */
660 .muxsel
= MUXSEL(2, 3, 0), /* input 2 is digital */
661 /* .digital_mode= DIGITAL_MODE_CAMERA, */
662 .gpiomux
= { 0, 0, 0, 0 },
665 .tuner_type
= TUNER_ALPS_TSBB5_PAL_I
,
666 .tuner_addr
= ADDR_UNSET
,
669 /* ---- card 0x18 ---------------------------------- */
670 [BTTV_BOARD_MAGICTVIEW061
] = {
671 .name
= "Askey CPH05X/06X (bt878) [many vendors]",
673 /* .audio_inputs= 1, */
676 .muxsel
= MUXSEL(2, 3, 1, 1),
677 .gpiomux
= {0x400, 0x400, 0x400, 0x400 },
681 .tuner_addr
= ADDR_UNSET
,
683 .has_radio
= 1, /* not every card has radio */
685 [BTTV_BOARD_VOBIS_BOOSTAR
] = {
686 .name
= "Terratec TerraTV+ Version 1.0 (Bt848)/ Terra TValue Version 1.0/ Vobis TV-Boostar",
688 /* .audio_inputs= 1, */
690 .gpiomask
= 0x1f0fff,
691 .muxsel
= MUXSEL(2, 3, 1, 1),
692 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0 },
694 .tuner_type
= TUNER_PHILIPS_PAL
,
695 .tuner_addr
= ADDR_UNSET
,
696 .audio_mode_gpio
= terratv_audio
,
698 [BTTV_BOARD_HAUPPAUG_WCAM
] = {
699 .name
= "Hauppauge WinCam newer (bt878)",
701 /* .audio_inputs= 1, */
704 .muxsel
= MUXSEL(2, 0, 1, 1),
705 .gpiomux
= { 0, 1, 2, 3 },
708 .tuner_addr
= ADDR_UNSET
,
710 [BTTV_BOARD_MAXI
] = {
711 .name
= "Lifeview FlyVideo 98/ MAXI TV Video PCI2 LR50",
713 /* .audio_inputs= 2, */
716 .muxsel
= MUXSEL(2, 3, 1, 1),
717 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
720 .tuner_type
= TUNER_PHILIPS_SECAM
,
721 .tuner_addr
= ADDR_UNSET
,
724 /* ---- card 0x1c ---------------------------------- */
725 [BTTV_BOARD_TERRATV
] = {
726 .name
= "Terratec TerraTV+ Version 1.1 (bt878)",
728 /* .audio_inputs= 1, */
730 .gpiomask
= 0x1f0fff,
731 .muxsel
= MUXSEL(2, 3, 1, 1),
732 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0x00000 },
734 .tuner_type
= TUNER_PHILIPS_PAL
,
735 .tuner_addr
= ADDR_UNSET
,
736 .audio_mode_gpio
= terratv_audio
,
738 External 20 pin connector (for Active Radio Upgrade board)
744 gpio05: om5610-stereo
748 gpio09+10: nIOR, nSEL ?? (bt878)
752 gpio16: u2-A0 (1st 4052bt)
755 gpio19: u4-A0 (2nd 4052)
759 00000 : Cdrom (internal audio input)
760 10000 : ext. Video audio input
769 [BTTV_BOARD_PXC200
] = {
770 /* Jannik Fritsch <jannik@techfak.uni-bielefeld.de> */
771 .name
= "Imagenation PXC200",
773 /* .audio_inputs= 1, */
774 .svhs
= 1, /* was: 4 */
776 .muxsel
= MUXSEL(2, 3, 1, 0, 0),
778 .tuner_type
= TUNER_ABSENT
,
779 .tuner_addr
= ADDR_UNSET
,
780 .muxsel_hook
= PXC200_muxsel
,
783 [BTTV_BOARD_FLYVIDEO_98
] = {
784 .name
= "Lifeview FlyVideo 98 LR50",
786 /* .audio_inputs= 1, */
788 .gpiomask
= 0x1800, /* 0x8dfe00 */
789 .muxsel
= MUXSEL(2, 3, 1, 1),
790 .gpiomux
= { 0, 0x0800, 0x1000, 0x1000 },
794 .tuner_addr
= ADDR_UNSET
,
796 [BTTV_BOARD_IPROTV
] = {
797 .name
= "Formac iProTV, Formac ProTV I (bt848)",
799 /* .audio_inputs= 1, */
802 .muxsel
= MUXSEL(2, 3, 1, 1),
803 .gpiomux
= { 1, 0, 0, 0 },
805 .tuner_type
= TUNER_PHILIPS_PAL
,
806 .tuner_addr
= ADDR_UNSET
,
809 /* ---- card 0x20 ---------------------------------- */
810 [BTTV_BOARD_INTEL_C_S_PCI
] = {
811 .name
= "Intel Create and Share PCI/ Smart Video Recorder III",
813 /* .audio_inputs= 0, */
816 .muxsel
= MUXSEL(2, 3, 1, 1),
818 .tuner_type
= TUNER_ABSENT
,
819 .tuner_addr
= ADDR_UNSET
,
821 [BTTV_BOARD_TERRATVALUE
] = {
822 .name
= "Terratec TerraTValue Version Bt878",
824 /* .audio_inputs= 1, */
826 .gpiomask
= 0xffff00,
827 .muxsel
= MUXSEL(2, 3, 1, 1),
828 .gpiomux
= { 0x500, 0, 0x300, 0x900 },
831 .tuner_type
= TUNER_PHILIPS_PAL
,
832 .tuner_addr
= ADDR_UNSET
,
834 [BTTV_BOARD_WINFAST2000
] = {
835 .name
= "Leadtek WinFast 2000/ WinFast 2000 XP",
837 /* .audio_inputs= 1, */
839 /* TV, CVid, SVid, CVid over SVid connector */
840 .muxsel
= MUXSEL(2, 3, 1, 1, 0),
841 /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */
842 .gpiomask
= 0xb33000,
843 .gpiomux
= { 0x122000,0x1000,0x0000,0x620000 },
844 .gpiomute
= 0x800000,
845 /* Audio Routing for "WinFast 2000 XP" (no tv stereo !)
846 gpio23 -- hef4052:nEnable (0x800000)
849 0x0000: external audio
853 Note: There exists another variant "Winfast 2000" with tv stereo !?
854 Note: eeprom only contains FF and pci subsystem id 107d:6606
858 .tuner_type
= TUNER_PHILIPS_PAL
, /* default for now, gpio reads BFFF06 for Pal bg+dk */
859 .tuner_addr
= ADDR_UNSET
,
860 .audio_mode_gpio
= winfast2000_audio
,
863 [BTTV_BOARD_CHRONOS_VS2
] = {
864 .name
= "Lifeview FlyVideo 98 LR50 / Chronos Video Shuttle II",
866 /* .audio_inputs= 3, */
869 .muxsel
= MUXSEL(2, 3, 1, 1),
870 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
874 .tuner_addr
= ADDR_UNSET
,
877 /* ---- card 0x24 ---------------------------------- */
878 [BTTV_BOARD_TYPHOON_TVIEW
] = {
879 .name
= "Lifeview FlyVideo 98FM LR50 / Typhoon TView TV/FM Tuner",
881 /* .audio_inputs= 3, */
884 .muxsel
= MUXSEL(2, 3, 1, 1),
885 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
889 .tuner_addr
= ADDR_UNSET
,
892 [BTTV_BOARD_PXELVWPLTVPRO
] = {
893 .name
= "Prolink PixelView PlayTV pro",
895 /* .audio_inputs= 1, */
898 .muxsel
= MUXSEL(2, 3, 1, 1),
899 .gpiomux
= { 0x21, 0x20, 0x24, 0x2c },
904 .tuner_addr
= ADDR_UNSET
,
906 [BTTV_BOARD_MAGICTVIEW063
] = {
907 .name
= "Askey CPH06X TView99",
909 /* .audio_inputs= 1, */
911 .gpiomask
= 0x551e00,
912 .muxsel
= MUXSEL(2, 3, 1, 0),
913 .gpiomux
= { 0x551400, 0x551200, 0, 0 },
914 .gpiomute
= 0x551c00,
916 .tuner_type
= TUNER_PHILIPS_PAL_I
,
917 .tuner_addr
= ADDR_UNSET
,
920 [BTTV_BOARD_PINNACLE
] = {
921 .name
= "Pinnacle PCTV Studio/Rave",
923 /* .audio_inputs= 1, */
925 .gpiomask
= 0x03000F,
926 .muxsel
= MUXSEL(2, 3, 1, 1),
927 .gpiomux
= { 2, 0xd0001, 0, 0 },
931 .tuner_addr
= ADDR_UNSET
,
934 /* ---- card 0x28 ---------------------------------- */
935 [BTTV_BOARD_STB2
] = {
936 .name
= "STB TV PCI FM, Gateway P/N 6000704 (bt878), 3Dfx VoodooTV 100",
938 /* .audio_inputs= 1, */
941 .muxsel
= MUXSEL(2, 3, 1, 1),
942 .gpiomux
= { 4, 0, 2, 3 },
945 .tuner_type
= TUNER_PHILIPS_NTSC
,
946 .tuner_addr
= ADDR_UNSET
,
950 [BTTV_BOARD_AVPHONE98
] = {
951 .name
= "AVerMedia TVPhone 98",
953 /* .audio_inputs= 4, */
956 .muxsel
= MUXSEL(2, 3, 1, 1),
957 .gpiomux
= { 13, 4, 11, 7 },
960 .tuner_addr
= ADDR_UNSET
,
962 .audio_mode_gpio
= avermedia_tvphone_audio
,
964 [BTTV_BOARD_PV951
] = {
965 .name
= "ProVideo PV951", /* pic16c54 */
967 /* .audio_inputs= 1, */
970 .muxsel
= MUXSEL(2, 3, 1, 1),
971 .gpiomux
= { 0, 0, 0, 0},
974 .tuner_type
= TUNER_PHILIPS_PAL_I
,
975 .tuner_addr
= ADDR_UNSET
,
977 [BTTV_BOARD_ONAIR_TV
] = {
978 .name
= "Little OnAir TV",
980 /* .audio_inputs= 1, */
983 .muxsel
= MUXSEL(2, 3, 1, 1),
984 .gpiomux
= { 0xff9ff6, 0xff9ff6, 0xff1ff7, 0 },
985 .gpiomute
= 0xff3ffc,
988 .tuner_addr
= ADDR_UNSET
,
991 /* ---- card 0x2c ---------------------------------- */
992 [BTTV_BOARD_SIGMA_TVII_FM
] = {
993 .name
= "Sigma TVII-FM",
995 /* .audio_inputs= 1, */
998 .muxsel
= MUXSEL(2, 3, 1, 1),
999 .gpiomux
= { 1, 1, 0, 2 },
1003 .tuner_type
= UNSET
,
1004 .tuner_addr
= ADDR_UNSET
,
1006 [BTTV_BOARD_MATRIX_VISION2
] = {
1007 .name
= "MATRIX-Vision MV-Delta 2",
1009 /* .audio_inputs= 1, */
1012 .muxsel
= MUXSEL(2, 3, 1, 0, 0),
1016 .tuner_type
= TUNER_ABSENT
,
1017 .tuner_addr
= ADDR_UNSET
,
1019 [BTTV_BOARD_ZOLTRIX_GENIE
] = {
1020 .name
= "Zoltrix Genie TV/FM",
1022 /* .audio_inputs= 1, */
1024 .gpiomask
= 0xbcf03f,
1025 .muxsel
= MUXSEL(2, 3, 1, 1),
1026 .gpiomux
= { 0xbc803f, 0xbc903f, 0xbcb03f, 0 },
1027 .gpiomute
= 0xbcb03f,
1030 .tuner_type
= TUNER_TEMIC_4039FR5_NTSC
,
1031 .tuner_addr
= ADDR_UNSET
,
1033 [BTTV_BOARD_TERRATVRADIO
] = {
1034 .name
= "Terratec TV/Radio+",
1036 /* .audio_inputs= 1, */
1038 .gpiomask
= 0x70000,
1039 .muxsel
= MUXSEL(2, 3, 1, 1),
1040 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0 },
1041 .gpiomute
= 0x40000,
1044 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1045 .tuner_addr
= ADDR_UNSET
,
1049 /* ---- card 0x30 ---------------------------------- */
1050 [BTTV_BOARD_DYNALINK
] = {
1051 .name
= "Askey CPH03x/ Dynalink Magic TView",
1053 /* .audio_inputs= 1, */
1056 .muxsel
= MUXSEL(2, 3, 1, 1),
1057 .gpiomux
= {2,0,0,0 },
1060 .tuner_type
= UNSET
,
1061 .tuner_addr
= ADDR_UNSET
,
1063 [BTTV_BOARD_GVBCTV3PCI
] = {
1064 .name
= "IODATA GV-BCTV3/PCI",
1066 /* .audio_inputs= 1, */
1068 .gpiomask
= 0x010f00,
1069 .muxsel
= MUXSEL(2, 3, 0, 0),
1070 .gpiomux
= {0x10000, 0, 0x10000, 0 },
1073 .tuner_type
= TUNER_ALPS_TSHC6_NTSC
,
1074 .tuner_addr
= ADDR_UNSET
,
1075 .audio_mode_gpio
= gvbctv3pci_audio
,
1077 [BTTV_BOARD_PXELVWPLTVPAK
] = {
1078 .name
= "Prolink PV-BT878P+4E / PixelView PlayTV PAK / Lenco MXTV-9578 CP",
1080 /* .audio_inputs= 1, */
1083 .gpiomask
= 0xAA0000,
1084 .muxsel
= MUXSEL(2, 3, 1, 1, 0), /* in 4 is digital */
1085 /* .digital_mode= DIGITAL_MODE_CAMERA, */
1086 .gpiomux
= { 0x20000, 0, 0x80000, 0x80000 },
1087 .gpiomute
= 0xa8000,
1090 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1091 .tuner_addr
= ADDR_UNSET
,
1093 /* GPIO wiring: (different from Rev.4C !)
1094 GPIO17: U4.A0 (first hef4052bt)
1096 GPIO20: U5.A1 (second hef4052bt)
1098 GPIO22: BT832 Reset Line
1099 GPIO23: A5,A0, U5,nEN
1100 Note: At i2c=0x8a is a Bt832 chip, which changes to 0x88 after being reset via GPIO22
1103 [BTTV_BOARD_EAGLE
] = {
1104 .name
= "Eagle Wireless Capricorn2 (bt878A)",
1106 /* .audio_inputs= 1, */
1109 .muxsel
= MUXSEL(2, 0, 1, 1),
1110 .gpiomux
= { 0, 1, 2, 3 },
1113 .tuner_type
= UNSET
/* TUNER_ALPS_TMDH2_NTSC */,
1114 .tuner_addr
= ADDR_UNSET
,
1117 /* ---- card 0x34 ---------------------------------- */
1118 [BTTV_BOARD_PINNACLEPRO
] = {
1119 /* David Härdeman <david@2gen.com> */
1120 .name
= "Pinnacle PCTV Studio Pro",
1122 /* .audio_inputs= 1, */
1124 .gpiomask
= 0x03000F,
1125 .muxsel
= MUXSEL(2, 3, 1, 1),
1126 .gpiomux
= { 1, 0xd0001, 0, 0 },
1128 /* sound path (5 sources):
1129 MUX1 (mask 0x03), Enable Pin 0x08 (0=enable, 1=disable)
1132 2= Mono TV sound from Tuner
1134 MUX2 (mask 0x30000):
1136 1= FM stereo Radio from Tuner */
1138 .tuner_type
= UNSET
,
1139 .tuner_addr
= ADDR_UNSET
,
1141 [BTTV_BOARD_TVIEW_RDS_FM
] = {
1142 /* Claas Langbehn <claas@bigfoot.com>,
1143 Sven Grothklags <sven@upb.de> */
1144 .name
= "Typhoon TView RDS + FM Stereo / KNC1 TV Station RDS",
1146 /* .audio_inputs= 3, */
1149 .muxsel
= MUXSEL(2, 3, 1, 1),
1150 .gpiomux
= { 0, 0, 0x10, 8 },
1153 .tuner_type
= TUNER_PHILIPS_PAL
,
1154 .tuner_addr
= ADDR_UNSET
,
1157 [BTTV_BOARD_LIFETEC_9415
] = {
1158 /* Tim Röstermundt <rosterm@uni-muenster.de>
1159 in de.comp.os.unix.linux.hardware:
1160 options bttv card=0 pll=1 radio=1 gpiomask=0x18e0
1161 gpiomux =0x44c71f,0x44d71f,0,0x44d71f,0x44dfff
1162 options tuner type=5 */
1163 .name
= "Lifeview FlyVideo 2000 /FlyVideo A2/ Lifetec LT 9415 TV [LR90]",
1165 /* .audio_inputs= 1, */
1168 .muxsel
= MUXSEL(2, 3, 1, 1),
1169 .gpiomux
= { 0x0000,0x0800,0x1000,0x1000 },
1171 /* For cards with tda9820/tda9821:
1172 0x0000: Tuner normal stereo
1173 0x0080: Tuner A2 SAP (second audio program = Zweikanalton)
1174 0x0880: Tuner A2 stereo */
1176 .tuner_type
= UNSET
,
1177 .tuner_addr
= ADDR_UNSET
,
1179 [BTTV_BOARD_BESTBUY_EASYTV
] = {
1180 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1181 old Easy TV BT848 version (model CPH031) */
1182 .name
= "Askey CPH031/ BESTBUY Easy TV",
1184 /* .audio_inputs= 1, */
1187 .muxsel
= MUXSEL(2, 3, 1, 0),
1188 .gpiomux
= { 2, 0, 0, 0 },
1191 .tuner_type
= TUNER_TEMIC_PAL
,
1192 .tuner_addr
= ADDR_UNSET
,
1195 /* ---- card 0x38 ---------------------------------- */
1196 [BTTV_BOARD_FLYVIDEO_98FM
] = {
1197 /* Gordon Heydon <gjheydon@bigfoot.com ('98) */
1198 .name
= "Lifeview FlyVideo 98FM LR50",
1200 /* .audio_inputs= 3, */
1203 .muxsel
= MUXSEL(2, 3, 1, 1),
1204 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
1207 .tuner_type
= TUNER_PHILIPS_PAL
,
1208 .tuner_addr
= ADDR_UNSET
,
1210 /* This is the ultimate cheapo capture card
1211 * just a BT848A on a small PCB!
1212 * Steve Hosgood <steve@equiinet.com> */
1213 [BTTV_BOARD_GRANDTEC
] = {
1214 .name
= "GrandTec 'Grand Video Capture' (Bt848)",
1216 /* .audio_inputs= 0, */
1219 .muxsel
= MUXSEL(3, 1),
1223 .tuner_type
= TUNER_ABSENT
,
1224 .tuner_addr
= ADDR_UNSET
,
1226 [BTTV_BOARD_ASKEY_CPH060
] = {
1227 /* Daniel Herrington <daniel.herrington@home.com> */
1228 .name
= "Askey CPH060/ Phoebe TV Master Only (No FM)",
1230 /* .audio_inputs= 1, */
1233 .muxsel
= MUXSEL(2, 3, 1, 1),
1234 .gpiomux
= { 0x400, 0x400, 0x400, 0x400 },
1237 .tuner_type
= TUNER_TEMIC_4036FY5_NTSC
,
1238 .tuner_addr
= ADDR_UNSET
,
1240 [BTTV_BOARD_ASKEY_CPH03X
] = {
1241 /* Matti Mottus <mottus@physic.ut.ee> */
1242 .name
= "Askey CPH03x TV Capturer",
1244 /* .audio_inputs= 1, */
1246 .gpiomask
= 0x03000F,
1247 .muxsel
= MUXSEL(2, 3, 1, 0),
1248 .gpiomux
= { 2, 0, 0, 0 },
1251 .tuner_type
= TUNER_TEMIC_PAL
,
1252 .tuner_addr
= ADDR_UNSET
,
1256 /* ---- card 0x3c ---------------------------------- */
1257 [BTTV_BOARD_MM100PCTV
] = {
1258 /* Philip Blundell <philb@gnu.org> */
1259 .name
= "Modular Technology MM100PCTV",
1261 /* .audio_inputs= 2, */
1264 .muxsel
= MUXSEL(2, 3, 1, 1),
1265 .gpiomux
= { 2, 0, 0, 1 },
1268 .tuner_type
= TUNER_TEMIC_PAL
,
1269 .tuner_addr
= ADDR_UNSET
,
1271 [BTTV_BOARD_GMV1
] = {
1272 /* Adrian Cox <adrian@humboldt.co.uk */
1273 .name
= "AG Electronics GMV1",
1275 /* .audio_inputs= 0, */
1278 .muxsel
= MUXSEL(2, 2),
1282 .tuner_type
= TUNER_ABSENT
,
1283 .tuner_addr
= ADDR_UNSET
,
1285 [BTTV_BOARD_BESTBUY_EASYTV2
] = {
1286 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1287 new Easy TV BT878 version (model CPH061)
1288 special thanks to Informatica Mieres for providing the card */
1289 .name
= "Askey CPH061/ BESTBUY Easy TV (bt878)",
1291 /* .audio_inputs= 2, */
1294 .muxsel
= MUXSEL(2, 3, 1, 0),
1295 .gpiomux
= { 1, 0, 4, 4 },
1298 .tuner_type
= TUNER_PHILIPS_PAL
,
1299 .tuner_addr
= ADDR_UNSET
,
1301 [BTTV_BOARD_ATI_TVWONDER
] = {
1302 /* Lukas Gebauer <geby@volny.cz> */
1303 .name
= "ATI TV-Wonder",
1305 /* .audio_inputs= 1, */
1308 .muxsel
= MUXSEL(2, 3, 1, 0),
1309 .gpiomux
= { 0xbffe, 0, 0xbfff, 0 },
1312 .tuner_type
= TUNER_TEMIC_4006FN5_MULTI_PAL
,
1313 .tuner_addr
= ADDR_UNSET
,
1316 /* ---- card 0x40 ---------------------------------- */
1317 [BTTV_BOARD_ATI_TVWONDERVE
] = {
1318 /* Lukas Gebauer <geby@volny.cz> */
1319 .name
= "ATI TV-Wonder VE",
1321 /* .audio_inputs= 1, */
1324 .muxsel
= MUXSEL(2, 3, 0, 1),
1325 .gpiomux
= { 0, 0, 1, 0 },
1328 .tuner_type
= TUNER_TEMIC_4006FN5_MULTI_PAL
,
1329 .tuner_addr
= ADDR_UNSET
,
1331 [BTTV_BOARD_FLYVIDEO2000
] = {
1332 /* DeeJay <deejay@westel900.net (2000S) */
1333 .name
= "Lifeview FlyVideo 2000S LR90",
1335 /* .audio_inputs= 3, */
1338 .muxsel
= MUXSEL(2, 3, 0, 1),
1339 /* Radio changed from 1e80 to 0x800 to make
1340 FlyVideo2000S in .hu happy (gm)*/
1341 /* -dk-???: set mute=0x1800 for tda9874h daughterboard */
1342 .gpiomux
= { 0x0000,0x0800,0x1000,0x1000 },
1344 .audio_mode_gpio
= fv2000s_audio
,
1347 .tuner_type
= TUNER_PHILIPS_PAL
,
1348 .tuner_addr
= ADDR_UNSET
,
1350 [BTTV_BOARD_TERRATVALUER
] = {
1351 .name
= "Terratec TValueRadio",
1353 /* .audio_inputs= 1, */
1355 .gpiomask
= 0xffff00,
1356 .muxsel
= MUXSEL(2, 3, 1, 1),
1357 .gpiomux
= { 0x500, 0x500, 0x300, 0x900 },
1360 .tuner_type
= TUNER_PHILIPS_PAL
,
1361 .tuner_addr
= ADDR_UNSET
,
1364 [BTTV_BOARD_GVBCTV4PCI
] = {
1365 /* TANAKA Kei <peg00625@nifty.com> */
1366 .name
= "IODATA GV-BCTV4/PCI",
1368 /* .audio_inputs= 1, */
1370 .gpiomask
= 0x010f00,
1371 .muxsel
= MUXSEL(2, 3, 0, 0),
1372 .gpiomux
= {0x10000, 0, 0x10000, 0 },
1375 .tuner_type
= TUNER_SHARP_2U5JF5540_NTSC
,
1376 .tuner_addr
= ADDR_UNSET
,
1377 .audio_mode_gpio
= gvbctv3pci_audio
,
1380 /* ---- card 0x44 ---------------------------------- */
1381 [BTTV_BOARD_VOODOOTV_FM
] = {
1382 .name
= "3Dfx VoodooTV FM (Euro)",
1383 /* try "insmod msp3400 simple=0" if you have
1384 * sound problems with this card. */
1386 /* .audio_inputs= 1, */
1388 .gpiomask
= 0x4f8a00,
1389 /* 0x100000: 1=MSP enabled (0=disable again)
1390 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1391 .gpiomux
= {0x947fff, 0x987fff,0x947fff,0x947fff },
1392 .gpiomute
= 0x947fff,
1393 /* tvtuner, radio, external,internal, mute, stereo
1394 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1395 .muxsel
= MUXSEL(2, 3, 0, 1),
1396 .tuner_type
= TUNER_MT2032
,
1397 .tuner_addr
= ADDR_UNSET
,
1401 [BTTV_BOARD_VOODOOTV_200
] = {
1402 .name
= "VoodooTV 200 (USA)",
1403 /* try "insmod msp3400 simple=0" if you have
1404 * sound problems with this card. */
1406 /* .audio_inputs= 1, */
1408 .gpiomask
= 0x4f8a00,
1409 /* 0x100000: 1=MSP enabled (0=disable again)
1410 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1411 .gpiomux
= {0x947fff, 0x987fff,0x947fff,0x947fff },
1412 .gpiomute
= 0x947fff,
1413 /* tvtuner, radio, external,internal, mute, stereo
1414 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1415 .muxsel
= MUXSEL(2, 3, 0, 1),
1416 .tuner_type
= TUNER_MT2032
,
1417 .tuner_addr
= ADDR_UNSET
,
1421 [BTTV_BOARD_AIMMS
] = {
1422 /* Philip Blundell <pb@nexus.co.uk> */
1423 .name
= "Active Imaging AIMMS",
1425 /* .audio_inputs= 0, */
1426 .tuner_type
= TUNER_ABSENT
,
1427 .tuner_addr
= ADDR_UNSET
,
1429 .muxsel
= MUXSEL(2),
1432 [BTTV_BOARD_PV_BT878P_PLUS
] = {
1433 /* Tomasz Pyra <hellfire@sedez.iq.pl> */
1434 .name
= "Prolink Pixelview PV-BT878P+ (Rev.4C,8E)",
1436 /* .audio_inputs= 4, */
1439 .muxsel
= MUXSEL(2, 3, 1, 1),
1440 .gpiomux
= { 0, 0, 11, 7 }, /* TV and Radio with same GPIO ! */
1443 .tuner_type
= TUNER_LG_PAL_I_FM
,
1444 .tuner_addr
= ADDR_UNSET
,
1447 GPIO0: U4.A0 (hef4052bt)
1449 GPIO2: U4.A1 (second hef4052bt)
1450 GPIO3: U4.nEN, U5.A0, A5.nEN
1454 [BTTV_BOARD_FLYVIDEO98EZ
] = {
1455 .name
= "Lifeview FlyVideo 98EZ (capture only) LR51",
1457 /* .audio_inputs= 0, */
1459 /* AV1, AV2, SVHS, CVid adapter on SVHS */
1460 .muxsel
= MUXSEL(2, 3, 1, 1),
1463 .tuner_type
= TUNER_ABSENT
,
1464 .tuner_addr
= ADDR_UNSET
,
1467 /* ---- card 0x48 ---------------------------------- */
1468 [BTTV_BOARD_PV_BT878P_9B
] = {
1469 /* Dariusz Kowalewski <darekk@automex.pl> */
1470 .name
= "Prolink Pixelview PV-BT878P+9B (PlayTV Pro rev.9B FM+NICAM)",
1472 /* .audio_inputs= 1, */
1475 .muxsel
= MUXSEL(2, 3, 1, 1),
1476 .gpiomux
= { 0x01, 0x00, 0x03, 0x03 },
1480 .tuner_type
= TUNER_PHILIPS_PAL
,
1481 .tuner_addr
= ADDR_UNSET
,
1482 .audio_mode_gpio
= pvbt878p9b_audio
, /* Note: not all cards have stereo */
1483 .has_radio
= 1, /* Note: not all cards have radio */
1490 GPIO20,22,23: R30,R29,R28
1493 [BTTV_BOARD_SENSORAY311_611
] = {
1494 /* Clay Kunz <ckunz@mail.arc.nasa.gov> */
1495 /* you must jumper JP5 for the 311 card (PC/104+) to work */
1496 .name
= "Sensoray 311/611",
1498 /* .audio_inputs= 0, */
1501 .muxsel
= MUXSEL(2, 3, 1, 0, 0),
1503 .tuner_type
= TUNER_ABSENT
,
1504 .tuner_addr
= ADDR_UNSET
,
1506 [BTTV_BOARD_RV605
] = {
1507 /* Miguel Freitas <miguel@cetuc.puc-rio.br> */
1508 .name
= "RemoteVision MX (RV605)",
1510 /* .audio_inputs= 0, */
1513 .gpiomask2
= 0x07ff,
1514 .muxsel
= MUXSEL(3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3),
1516 .tuner_type
= TUNER_ABSENT
,
1517 .tuner_addr
= ADDR_UNSET
,
1518 .muxsel_hook
= rv605_muxsel
,
1520 [BTTV_BOARD_POWERCLR_MTV878
] = {
1521 .name
= "Powercolor MTV878/ MTV878R/ MTV878F",
1523 /* .audio_inputs= 2, */
1525 .gpiomask
= 0x1C800F, /* Bit0-2: Audio select, 8-12:remote control 14:remote valid 15:remote reset */
1526 .muxsel
= MUXSEL(2, 1, 1),
1527 .gpiomux
= { 0, 1, 2, 2 },
1529 .tuner_type
= TUNER_PHILIPS_PAL
,
1530 .tuner_addr
= ADDR_UNSET
,
1535 /* ---- card 0x4c ---------------------------------- */
1536 [BTTV_BOARD_WINDVR
] = {
1537 /* Masaki Suzuki <masaki@btree.org> */
1538 .name
= "Canopus WinDVR PCI (COMPAQ Presario 3524JP, 5112JP)",
1540 /* .audio_inputs= 1, */
1542 .gpiomask
= 0x140007,
1543 .muxsel
= MUXSEL(2, 3, 1, 1),
1544 .gpiomux
= { 0, 1, 2, 3 },
1546 .tuner_type
= TUNER_PHILIPS_NTSC
,
1547 .tuner_addr
= ADDR_UNSET
,
1548 .audio_mode_gpio
= windvr_audio
,
1550 [BTTV_BOARD_GRANDTEC_MULTI
] = {
1551 .name
= "GrandTec Multi Capture Card (Bt878)",
1553 /* .audio_inputs= 0, */
1556 .muxsel
= MUXSEL(2, 3, 1, 0),
1560 .tuner_type
= TUNER_ABSENT
,
1561 .tuner_addr
= ADDR_UNSET
,
1563 [BTTV_BOARD_KWORLD
] = {
1564 .name
= "Jetway TV/Capture JW-TV878-FBK, Kworld KW-TV878RF",
1566 /* .audio_inputs= 3, */
1569 /* Tuner, SVid, SVHS, SVid to SVHS connector */
1570 .muxsel
= MUXSEL(2, 3, 1, 1),
1571 .gpiomux
= { 0, 0, 4, 4 },/* Yes, this tuner uses the same audio output for TV and FM radio!
1572 * This card lacks external Audio In, so we mute it on Ext. & Int.
1573 * The PCB can take a sbx1637/sbx1673, wiring unknown.
1574 * This card lacks PCI subsystem ID, sigh.
1575 * gpiomux =1: lower volume, 2+3: mute
1576 * btwincap uses 0x80000/0x80003
1581 .tuner_type
= TUNER_PHILIPS_PAL
,
1582 .tuner_addr
= ADDR_UNSET
,
1583 /* Samsung TCPA9095PC27A (BG+DK), philips compatible, w/FM, stereo and
1584 radio signal strength indicators work fine. */
1587 GPIO0,1: HEF4052 A0,A1
1588 GPIO2: HEF4052 nENABLE
1590 GPIO8-13: IRDC357 data0-5 (data6 n.c. ?) [chip not present on my card]
1594 ?? : mtu8b56ep microcontroller for IR (GPIO wiring unknown)*/
1596 [BTTV_BOARD_DSP_TCVIDEO
] = {
1597 /* Arthur Tetzlaff-Deas, DSP Design Ltd <software@dspdesign.com> */
1598 .name
= "DSP Design TCVIDEO",
1601 .muxsel
= MUXSEL(2, 3, 1, 0),
1603 .tuner_type
= UNSET
,
1604 .tuner_addr
= ADDR_UNSET
,
1607 /* ---- card 0x50 ---------------------------------- */
1608 [BTTV_BOARD_HAUPPAUGEPVR
] = {
1609 .name
= "Hauppauge WinTV PVR",
1611 /* .audio_inputs= 1, */
1613 .muxsel
= MUXSEL(2, 0, 1, 1),
1615 .tuner_type
= UNSET
,
1616 .tuner_addr
= ADDR_UNSET
,
1621 [BTTV_BOARD_GVBCTV5PCI
] = {
1622 .name
= "IODATA GV-BCTV5/PCI",
1624 /* .audio_inputs= 1, */
1626 .gpiomask
= 0x0f0f80,
1627 .muxsel
= MUXSEL(2, 3, 1, 0),
1628 .gpiomux
= {0x030000, 0x010000, 0, 0 },
1629 .gpiomute
= 0x020000,
1632 .tuner_type
= TUNER_PHILIPS_NTSC_M
,
1633 .tuner_addr
= ADDR_UNSET
,
1634 .audio_mode_gpio
= gvbctv5pci_audio
,
1637 [BTTV_BOARD_OSPREY1x0
] = {
1638 .name
= "Osprey 100/150 (878)", /* 0x1(2|3)-45C6-C1 */
1639 .video_inputs
= 4, /* id-inputs-clock */
1640 /* .audio_inputs= 0, */
1642 .muxsel
= MUXSEL(3, 2, 0, 1),
1644 .tuner_type
= TUNER_ABSENT
,
1645 .tuner_addr
= ADDR_UNSET
,
1649 [BTTV_BOARD_OSPREY1x0_848
] = {
1650 .name
= "Osprey 100/150 (848)", /* 0x04-54C0-C1 & older boards */
1652 /* .audio_inputs= 0, */
1654 .muxsel
= MUXSEL(2, 3, 1),
1656 .tuner_type
= TUNER_ABSENT
,
1657 .tuner_addr
= ADDR_UNSET
,
1662 /* ---- card 0x54 ---------------------------------- */
1663 [BTTV_BOARD_OSPREY101_848
] = {
1664 .name
= "Osprey 101 (848)", /* 0x05-40C0-C1 */
1666 /* .audio_inputs= 0, */
1668 .muxsel
= MUXSEL(3, 1),
1670 .tuner_type
= TUNER_ABSENT
,
1671 .tuner_addr
= ADDR_UNSET
,
1675 [BTTV_BOARD_OSPREY1x1
] = {
1676 .name
= "Osprey 101/151", /* 0x1(4|5)-0004-C4 */
1678 /* .audio_inputs= 0, */
1680 .muxsel
= MUXSEL(0),
1682 .tuner_type
= TUNER_ABSENT
,
1683 .tuner_addr
= ADDR_UNSET
,
1687 [BTTV_BOARD_OSPREY1x1_SVID
] = {
1688 .name
= "Osprey 101/151 w/ svid", /* 0x(16|17|20)-00C4-C1 */
1690 /* .audio_inputs= 0, */
1692 .muxsel
= MUXSEL(0, 1),
1694 .tuner_type
= TUNER_ABSENT
,
1695 .tuner_addr
= ADDR_UNSET
,
1699 [BTTV_BOARD_OSPREY2xx
] = {
1700 .name
= "Osprey 200/201/250/251", /* 0x1(8|9|E|F)-0004-C4 */
1702 /* .audio_inputs= 1, */
1704 .muxsel
= MUXSEL(0),
1706 .tuner_type
= TUNER_ABSENT
,
1707 .tuner_addr
= ADDR_UNSET
,
1712 /* ---- card 0x58 ---------------------------------- */
1713 [BTTV_BOARD_OSPREY2x0_SVID
] = {
1714 .name
= "Osprey 200/250", /* 0x1(A|B)-00C4-C1 */
1716 /* .audio_inputs= 1, */
1718 .muxsel
= MUXSEL(0, 1),
1720 .tuner_type
= TUNER_ABSENT
,
1721 .tuner_addr
= ADDR_UNSET
,
1725 [BTTV_BOARD_OSPREY2x0
] = {
1726 .name
= "Osprey 210/220/230", /* 0x1(A|B)-04C0-C1 */
1728 /* .audio_inputs= 1, */
1730 .muxsel
= MUXSEL(2, 3),
1732 .tuner_type
= TUNER_ABSENT
,
1733 .tuner_addr
= ADDR_UNSET
,
1737 [BTTV_BOARD_OSPREY500
] = {
1738 .name
= "Osprey 500", /* 500 */
1740 /* .audio_inputs= 1, */
1742 .muxsel
= MUXSEL(2, 3),
1744 .tuner_type
= TUNER_ABSENT
,
1745 .tuner_addr
= ADDR_UNSET
,
1749 [BTTV_BOARD_OSPREY540
] = {
1750 .name
= "Osprey 540", /* 540 */
1752 /* .audio_inputs= 1, */
1754 .tuner_type
= TUNER_ABSENT
,
1755 .tuner_addr
= ADDR_UNSET
,
1760 /* ---- card 0x5C ---------------------------------- */
1761 [BTTV_BOARD_OSPREY2000
] = {
1762 .name
= "Osprey 2000", /* 2000 */
1764 /* .audio_inputs= 1, */
1766 .muxsel
= MUXSEL(2, 3),
1768 .tuner_type
= TUNER_ABSENT
,
1769 .tuner_addr
= ADDR_UNSET
,
1771 .no_tda7432
= 1, /* must avoid, conflicts with the bt860 */
1773 [BTTV_BOARD_IDS_EAGLE
] = {
1774 /* M G Berberich <berberic@forwiss.uni-passau.de> */
1775 .name
= "IDS Eagle",
1777 /* .audio_inputs= 0, */
1778 .tuner_type
= TUNER_ABSENT
,
1779 .tuner_addr
= ADDR_UNSET
,
1782 .muxsel
= MUXSEL(2, 2, 2, 2),
1783 .muxsel_hook
= eagle_muxsel
,
1787 [BTTV_BOARD_PINNACLESAT
] = {
1788 .name
= "Pinnacle PCTV Sat",
1790 /* .audio_inputs= 0, */
1792 .tuner_type
= TUNER_ABSENT
,
1793 .tuner_addr
= ADDR_UNSET
,
1796 .muxsel
= MUXSEL(3, 1),
1801 [BTTV_BOARD_FORMAC_PROTV
] = {
1802 .name
= "Formac ProTV II (bt878)",
1804 /* .audio_inputs= 1, */
1807 /* TV, Comp1, Composite over SVID con, SVID */
1808 .muxsel
= MUXSEL(2, 3, 1, 1),
1809 .gpiomux
= { 2, 2, 0, 0 },
1812 .tuner_type
= TUNER_PHILIPS_PAL
,
1813 .tuner_addr
= ADDR_UNSET
,
1815 GPIO=0x00,0x01,0x03: mute (?)
1816 0x02: both TV and radio (tuner: FM1216/I)
1817 The card has onboard audio connectors labeled "cdrom" and "board",
1818 not soldered here, though unknown wiring.
1819 Card lacks: external audio in, pci subsystem id.
1823 /* ---- card 0x60 ---------------------------------- */
1824 [BTTV_BOARD_MACHTV
] = {
1827 /* .audio_inputs= 1, */
1830 .muxsel
= MUXSEL(2, 3, 1, 1),
1831 .gpiomux
= { 0, 1, 2, 3},
1833 .tuner_type
= TUNER_PHILIPS_PAL
,
1834 .tuner_addr
= ADDR_UNSET
,
1837 [BTTV_BOARD_EURESYS_PICOLO
] = {
1838 .name
= "Euresys Picolo",
1840 /* .audio_inputs= 0, */
1845 .muxsel
= MUXSEL(2, 0, 1),
1847 .tuner_type
= TUNER_ABSENT
,
1848 .tuner_addr
= ADDR_UNSET
,
1850 [BTTV_BOARD_PV150
] = {
1851 /* Luc Van Hoeylandt <luc@e-magic.be> */
1852 .name
= "ProVideo PV150", /* 0x4f */
1854 /* .audio_inputs= 0, */
1857 .muxsel
= MUXSEL(2, 3),
1861 .tuner_type
= TUNER_ABSENT
,
1862 .tuner_addr
= ADDR_UNSET
,
1864 [BTTV_BOARD_AD_TVK503
] = {
1865 /* Hiroshi Takekawa <sian@big.or.jp> */
1866 /* This card lacks subsystem ID */
1867 .name
= "AD-TVK503", /* 0x63 */
1869 /* .audio_inputs= 1, */
1871 .gpiomask
= 0x001e8007,
1872 .muxsel
= MUXSEL(2, 3, 1, 0),
1873 /* Tuner, Radio, external, internal, off, on */
1874 .gpiomux
= { 0x08, 0x0f, 0x0a, 0x08 },
1878 .tuner_type
= TUNER_PHILIPS_NTSC
,
1879 .tuner_addr
= ADDR_UNSET
,
1880 .audio_mode_gpio
= adtvk503_audio
,
1883 /* ---- card 0x64 ---------------------------------- */
1884 [BTTV_BOARD_HERCULES_SM_TV
] = {
1885 .name
= "Hercules Smart TV Stereo",
1887 /* .audio_inputs= 1, */
1890 .muxsel
= MUXSEL(2, 3, 1, 1),
1893 .tuner_type
= TUNER_PHILIPS_PAL
,
1894 .tuner_addr
= ADDR_UNSET
,
1896 - card lacks subsystem ID
1897 - stereo variant w/ daughter board with tda9874a @0xb0
1899 always from tda9874 independent of GPIO (?)
1900 external line in: unknown
1901 - Other chips: em78p156elp @ 0x96 (probably IR remote control)
1902 hef4053 (instead 4052) for unknown function
1905 [BTTV_BOARD_PACETV
] = {
1906 .name
= "Pace TV & Radio Card",
1908 /* .audio_inputs= 1, */
1910 /* Tuner, CVid, SVid, CVid over SVid connector */
1911 .muxsel
= MUXSEL(2, 3, 1, 1),
1914 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1915 .tuner_addr
= ADDR_UNSET
,
1918 /* Bt878, Bt832, FI1246 tuner; no pci subsystem id
1919 only internal line out: (4pin header) RGGL
1920 Radio must be decoded by msp3410d (not routed through)*/
1922 .digital_mode = DIGITAL_MODE_CAMERA, todo!
1925 [BTTV_BOARD_IVC200
] = {
1926 /* Chris Willing <chris@vislab.usyd.edu.au> */
1929 /* .audio_inputs= 0, */
1930 .tuner_type
= TUNER_ABSENT
,
1931 .tuner_addr
= ADDR_UNSET
,
1934 .muxsel
= MUXSEL(2),
1937 [BTTV_BOARD_IVCE8784
] = {
1938 .name
= "IVCE-8784",
1940 /* .audio_inputs= 0, */
1941 .tuner_type
= TUNER_ABSENT
,
1942 .tuner_addr
= ADDR_UNSET
,
1945 .muxsel
= MUXSEL(2),
1948 [BTTV_BOARD_XGUARD
] = {
1949 .name
= "Grand X-Guard / Trust 814PCI",
1951 /* .audio_inputs= 0, */
1953 .tuner_type
= TUNER_ABSENT
,
1954 .tuner_addr
= ADDR_UNSET
,
1956 .muxsel
= MUXSEL(2,2,2,2, 3,3,3,3, 1,1,1,1, 0,0,0,0),
1957 .muxsel_hook
= xguard_muxsel
,
1963 /* ---- card 0x68 ---------------------------------- */
1964 [BTTV_BOARD_NEBULA_DIGITV
] = {
1965 .name
= "Nebula Electronics DigiTV",
1968 .muxsel
= MUXSEL(2, 3, 1, 0),
1972 .tuner_type
= TUNER_ABSENT
,
1973 .tuner_addr
= ADDR_UNSET
,
1979 [BTTV_BOARD_PV143
] = {
1980 /* Jorge Boncompte - DTI2 <jorge@dti2.net> */
1981 .name
= "ProVideo PV143",
1983 /* .audio_inputs= 0, */
1986 .muxsel
= MUXSEL(2, 3, 1, 0),
1990 .tuner_type
= TUNER_ABSENT
,
1991 .tuner_addr
= ADDR_UNSET
,
1993 [BTTV_BOARD_VD009X1_VD011_MINIDIN
] = {
1994 /* M.Klahr@phytec.de */
1995 .name
= "PHYTEC VD-009-X1 VD-011 MiniDIN (bt878)",
1997 /* .audio_inputs= 0, */
2000 .muxsel
= MUXSEL(2, 3, 1, 0),
2001 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2003 .tuner_type
= TUNER_ABSENT
,
2004 .tuner_addr
= ADDR_UNSET
,
2006 [BTTV_BOARD_VD009X1_VD011_COMBI
] = {
2007 .name
= "PHYTEC VD-009-X1 VD-011 Combi (bt878)",
2009 /* .audio_inputs= 0, */
2012 .muxsel
= MUXSEL(2, 3, 1, 1),
2013 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2015 .tuner_type
= TUNER_ABSENT
,
2016 .tuner_addr
= ADDR_UNSET
,
2019 /* ---- card 0x6c ---------------------------------- */
2020 [BTTV_BOARD_VD009_MINIDIN
] = {
2021 .name
= "PHYTEC VD-009 MiniDIN (bt878)",
2023 /* .audio_inputs= 0, */
2026 .gpiomask2
= 0x03, /* used for external vodeo mux */
2027 .muxsel
= MUXSEL(2, 2, 2, 2, 3, 3, 3, 3, 1, 0),
2028 .muxsel_hook
= phytec_muxsel
,
2029 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2031 .tuner_type
= TUNER_ABSENT
,
2032 .tuner_addr
= ADDR_UNSET
,
2034 [BTTV_BOARD_VD009_COMBI
] = {
2035 .name
= "PHYTEC VD-009 Combi (bt878)",
2037 /* .audio_inputs= 0, */
2040 .gpiomask2
= 0x03, /* used for external vodeo mux */
2041 .muxsel
= MUXSEL(2, 2, 2, 2, 3, 3, 3, 3, 1, 1),
2042 .muxsel_hook
= phytec_muxsel
,
2043 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2045 .tuner_type
= TUNER_ABSENT
,
2046 .tuner_addr
= ADDR_UNSET
,
2048 [BTTV_BOARD_IVC100
] = {
2051 /* .audio_inputs= 0, */
2052 .tuner_type
= TUNER_ABSENT
,
2053 .tuner_addr
= ADDR_UNSET
,
2056 .muxsel
= MUXSEL(2, 3, 1, 0),
2059 [BTTV_BOARD_IVC120
] = {
2060 /* IVC-120G - Alan Garfield <alan@fromorbit.com> */
2063 /* .audio_inputs= 0, */
2064 .tuner_type
= TUNER_ABSENT
,
2065 .tuner_addr
= ADDR_UNSET
,
2066 .svhs
= NO_SVHS
, /* card has no svhs */
2070 .muxsel
= MUXSEL(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
2071 .muxsel_hook
= ivc120_muxsel
,
2075 /* ---- card 0x70 ---------------------------------- */
2076 [BTTV_BOARD_PC_HDTV
] = {
2077 .name
= "pcHDTV HD-2000 TV",
2079 /* .audio_inputs= 1, */
2081 .muxsel
= MUXSEL(2, 3, 1, 0),
2082 .tuner_type
= TUNER_PHILIPS_FCV1236D
,
2083 .tuner_addr
= ADDR_UNSET
,
2086 [BTTV_BOARD_TWINHAN_DST
] = {
2087 .name
= "Twinhan DST + clones",
2090 .tuner_type
= TUNER_ABSENT
,
2091 .tuner_addr
= ADDR_UNSET
,
2095 [BTTV_BOARD_WINFASTVC100
] = {
2096 .name
= "Winfast VC100",
2098 /* .audio_inputs= 0, */
2100 /* Vid In, SVid In, Vid over SVid in connector */
2101 .muxsel
= MUXSEL(3, 1, 1, 3),
2104 .tuner_type
= TUNER_ABSENT
,
2105 .tuner_addr
= ADDR_UNSET
,
2108 [BTTV_BOARD_TEV560
] = {
2109 .name
= "Teppro TEV-560/InterVision IV-560",
2111 /* .audio_inputs= 1, */
2114 .muxsel
= MUXSEL(2, 3, 1, 1),
2115 .gpiomux
= { 1, 1, 1, 1 },
2116 .tuner_type
= TUNER_PHILIPS_PAL
,
2117 .tuner_addr
= ADDR_UNSET
,
2121 /* ---- card 0x74 ---------------------------------- */
2122 [BTTV_BOARD_SIMUS_GVC1100
] = {
2123 .name
= "SIMUS GVC1100",
2125 /* .audio_inputs= 0, */
2127 .tuner_type
= TUNER_ABSENT
,
2128 .tuner_addr
= ADDR_UNSET
,
2130 .muxsel
= MUXSEL(2, 2, 2, 2),
2132 .muxsel_hook
= gvc1100_muxsel
,
2134 [BTTV_BOARD_NGSTV_PLUS
] = {
2135 /* Carlos Silva r3pek@r3pek.homelinux.org || card 0x75 */
2136 .name
= "NGS NGSTV+",
2139 .gpiomask
= 0x008007,
2140 .muxsel
= MUXSEL(2, 3, 0, 0),
2141 .gpiomux
= { 0, 0, 0, 0 },
2142 .gpiomute
= 0x000003,
2144 .tuner_type
= TUNER_PHILIPS_PAL
,
2145 .tuner_addr
= ADDR_UNSET
,
2148 [BTTV_BOARD_LMLBT4
] = {
2149 /* http://linuxmedialabs.com */
2151 .video_inputs
= 4, /* IN1,IN2,IN3,IN4 */
2152 /* .audio_inputs= 0, */
2154 .muxsel
= MUXSEL(2, 3, 1, 0),
2157 .tuner_type
= TUNER_ABSENT
,
2158 .tuner_addr
= ADDR_UNSET
,
2160 [BTTV_BOARD_TEKRAM_M205
] = {
2161 /* Helmroos Harri <harri.helmroos@pp.inet.fi> */
2162 .name
= "Tekram M205 PRO",
2164 /* .audio_inputs= 1, */
2165 .tuner_type
= TUNER_PHILIPS_PAL
,
2166 .tuner_addr
= ADDR_UNSET
,
2169 .muxsel
= MUXSEL(2, 3, 1),
2170 .gpiomux
= { 0x68, 0x68, 0x61, 0x61 },
2174 /* ---- card 0x78 ---------------------------------- */
2175 [BTTV_BOARD_CONTVFMI
] = {
2176 /* Javier Cendan Ares <jcendan@lycos.es> */
2177 /* bt878 TV + FM without subsystem ID */
2178 .name
= "Conceptronic CONTVFMi",
2180 /* .audio_inputs= 1, */
2182 .gpiomask
= 0x008007,
2183 .muxsel
= MUXSEL(2, 3, 1, 1),
2184 .gpiomux
= { 0, 1, 2, 2 },
2187 .tuner_type
= TUNER_PHILIPS_PAL
,
2188 .tuner_addr
= ADDR_UNSET
,
2192 [BTTV_BOARD_PICOLO_TETRA_CHIP
] = {
2193 /*Eric DEBIEF <debief@telemsa.com>*/
2194 /*EURESYS Picolo Tetra : 4 Conexant Fusion 878A, no audio, video input set with analog multiplexers GPIO controlled*/
2195 /* adds picolo_tetra_muxsel(), picolo_tetra_init(), the following declaration strucure, and #define BTTV_BOARD_PICOLO_TETRA_CHIP*/
2197 .name
= "Euresys Picolo Tetra",
2199 /* .audio_inputs= 0, */
2202 .gpiomask2
= 0x3C<<16,/*Set the GPIO[18]->GPIO[21] as output pin.==> drive the video inputs through analog multiplexers*/
2205 /*878A input is always MUX0, see above.*/
2206 .muxsel
= MUXSEL(2, 2, 2, 2),
2207 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2209 .muxsel_hook
= picolo_tetra_muxsel
,/*Required as it doesn't follow the classic input selection policy*/
2210 .tuner_type
= TUNER_ABSENT
,
2211 .tuner_addr
= ADDR_UNSET
,
2213 [BTTV_BOARD_SPIRIT_TV
] = {
2214 /* Spirit TV Tuner from http://spiritmodems.com.au */
2215 /* Stafford Goodsell <surge@goliath.homeunix.org> */
2216 .name
= "Spirit TV Tuner",
2218 /* .audio_inputs= 1, */
2220 .gpiomask
= 0x0000000f,
2221 .muxsel
= MUXSEL(2, 1, 1),
2222 .gpiomux
= { 0x02, 0x00, 0x00, 0x00 },
2223 .tuner_type
= TUNER_TEMIC_PAL
,
2224 .tuner_addr
= ADDR_UNSET
,
2227 [BTTV_BOARD_AVDVBT_771
] = {
2228 /* Wolfram Joost <wojo@frokaschwei.de> */
2229 .name
= "AVerMedia AVerTV DVB-T 771",
2232 .tuner_type
= TUNER_ABSENT
,
2233 .tuner_addr
= ADDR_UNSET
,
2234 .muxsel
= MUXSEL(3, 3),
2242 /* ---- card 0x7c ---------------------------------- */
2243 [BTTV_BOARD_AVDVBT_761
] = {
2244 /* Matt Jesson <dvb@jesson.eclipse.co.uk> */
2245 /* Based on the Nebula card data - added remote and new card number - BTTV_BOARD_AVDVBT_761, see also ir-kbd-gpio.c */
2246 .name
= "AverMedia AverTV DVB-T 761",
2249 .muxsel
= MUXSEL(3, 1, 2, 0), /* Comp0, S-Video, ?, ? */
2253 .tuner_type
= TUNER_ABSENT
,
2254 .tuner_addr
= ADDR_UNSET
,
2259 [BTTV_BOARD_MATRIX_VISIONSQ
] = {
2260 /* andre.schwarz@matrix-vision.de */
2261 .name
= "MATRIX Vision Sigma-SQ",
2263 /* .audio_inputs= 0, */
2266 .muxsel
= MUXSEL(2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3),
2267 .muxsel_hook
= sigmaSQ_muxsel
,
2271 .tuner_type
= TUNER_ABSENT
,
2272 .tuner_addr
= ADDR_UNSET
,
2274 [BTTV_BOARD_MATRIX_VISIONSLC
] = {
2275 /* andre.schwarz@matrix-vision.de */
2276 .name
= "MATRIX Vision Sigma-SLC",
2278 /* .audio_inputs= 0, */
2281 .muxsel
= MUXSEL(2, 2, 2, 2),
2282 .muxsel_hook
= sigmaSLC_muxsel
,
2286 .tuner_type
= TUNER_ABSENT
,
2287 .tuner_addr
= ADDR_UNSET
,
2289 /* BTTV_BOARD_APAC_VIEWCOMP */
2290 [BTTV_BOARD_APAC_VIEWCOMP
] = {
2291 /* Attila Kondoros <attila.kondoros@chello.hu> */
2292 /* bt878 TV + FM 0x00000000 subsystem ID */
2293 .name
= "APAC Viewcomp 878(AMAX)",
2295 /* .audio_inputs= 1, */
2298 .muxsel
= MUXSEL(2, 3, 1, 1),
2299 .gpiomux
= { 2, 0, 0, 0 },
2302 .tuner_type
= TUNER_PHILIPS_PAL
,
2303 .tuner_addr
= ADDR_UNSET
,
2304 .has_remote
= 1, /* miniremote works, see ir-kbd-gpio.c */
2305 .has_radio
= 1, /* not every card has radio */
2308 /* ---- card 0x80 ---------------------------------- */
2309 [BTTV_BOARD_DVICO_DVBT_LITE
] = {
2310 /* Chris Pascoe <c.pascoe@itee.uq.edu.au> */
2311 .name
= "DViCO FusionHDTV DVB-T Lite",
2317 .tuner_type
= TUNER_ABSENT
,
2318 .tuner_addr
= ADDR_UNSET
,
2320 [BTTV_BOARD_VGEAR_MYVCD
] = {
2321 /* Steven <photon38@pchome.com.tw> */
2322 .name
= "V-Gear MyVCD",
2324 /* .audio_inputs= 1, */
2327 .muxsel
= MUXSEL(2, 3, 1, 0),
2328 .gpiomux
= {0x31, 0x31, 0x31, 0x31 },
2332 .tuner_type
= TUNER_PHILIPS_NTSC_M
,
2333 .tuner_addr
= ADDR_UNSET
,
2336 [BTTV_BOARD_SUPER_TV
] = {
2337 /* Rick C <cryptdragoon@gmail.com> */
2338 .name
= "Super TV Tuner",
2340 /* .audio_inputs= 1, */
2342 .muxsel
= MUXSEL(2, 3, 1, 0),
2343 .tuner_type
= TUNER_PHILIPS_NTSC
,
2344 .tuner_addr
= ADDR_UNSET
,
2345 .gpiomask
= 0x008007,
2346 .gpiomux
= { 0, 0x000001,0,0 },
2349 [BTTV_BOARD_TIBET_CS16
] = {
2350 /* Chris Fanning <video4linux@haydon.net> */
2351 .name
= "Tibet Systems 'Progress DVR' CS16",
2353 /* .audio_inputs= 0, */
2355 .muxsel
= MUXSEL(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
2359 .tuner_type
= TUNER_ABSENT
,
2360 .tuner_addr
= ADDR_UNSET
,
2361 .muxsel_hook
= tibetCS16_muxsel
,
2363 [BTTV_BOARD_KODICOM_4400R
] = {
2364 /* Bill Brack <wbrack@mmm.com.hk> */
2366 * Note that, because of the card's wiring, the "master"
2367 * BT878A chip (i.e. the one which controls the analog switch
2368 * and must use this card type) is the 2nd one detected. The
2369 * other 3 chips should use card type 0x85, whose description
2370 * follows this one. There is a EEPROM on the card (which is
2371 * connected to the I2C of one of those other chips), but is
2372 * not currently handled. There is also a facility for a
2373 * "monitor", which is also not currently implemented.
2375 .name
= "Kodicom 4400R (master)",
2377 /* .audio_inputs= 0, */
2378 .tuner_type
= TUNER_ABSENT
,
2379 .tuner_addr
= ADDR_UNSET
,
2381 /* GPIO bits 0-9 used for analog switch:
2382 * 00 - 03: camera selector
2383 * 04 - 06: channel (controller) selector
2384 * 07: data (1->on, 0->off)
2387 * bit 16 is input from sync separator for the channel
2389 .gpiomask
= 0x0003ff,
2391 .muxsel
= MUXSEL(3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3),
2395 .muxsel_hook
= kodicom4400r_muxsel
,
2397 [BTTV_BOARD_KODICOM_4400R_SL
] = {
2398 /* Bill Brack <wbrack@mmm.com.hk> */
2399 /* Note that, for reasons unknown, the "master" BT878A chip (i.e. the
2400 * one which controls the analog switch, and must use the card type)
2401 * is the 2nd one detected. The other 3 chips should use this card
2404 .name
= "Kodicom 4400R (slave)",
2406 /* .audio_inputs= 0, */
2407 .tuner_type
= TUNER_ABSENT
,
2408 .tuner_addr
= ADDR_UNSET
,
2410 .gpiomask
= 0x010000,
2412 .muxsel
= MUXSEL(3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3),
2416 .muxsel_hook
= kodicom4400r_muxsel
,
2418 /* ---- card 0x86---------------------------------- */
2419 [BTTV_BOARD_ADLINK_RTV24
] = {
2420 /* Michael Henson <mhenson@clarityvi.com> */
2421 /* Adlink RTV24 with special unlock codes */
2422 .name
= "Adlink RTV24",
2424 /* .audio_inputs= 1, */
2426 .muxsel
= MUXSEL(2, 3, 1, 0),
2427 .tuner_type
= UNSET
,
2428 .tuner_addr
= ADDR_UNSET
,
2431 /* ---- card 0x87---------------------------------- */
2432 [BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
] = {
2433 /* Michael Krufky <mkrufky@linuxtv.org> */
2434 .name
= "DViCO FusionHDTV 5 Lite",
2435 .tuner_type
= TUNER_LG_TDVS_H06XF
, /* TDVS-H064F */
2436 .tuner_addr
= ADDR_UNSET
,
2438 /* .audio_inputs= 1, */
2440 .muxsel
= MUXSEL(2, 3, 1),
2441 .gpiomask
= 0x00e00007,
2442 .gpiomux
= { 0x00400005, 0, 0x00000001, 0 },
2443 .gpiomute
= 0x00c00007,
2448 /* ---- card 0x88---------------------------------- */
2449 [BTTV_BOARD_ACORP_Y878F
] = {
2450 /* Mauro Carvalho Chehab <mchehab@infradead.org> */
2451 .name
= "Acorp Y878F",
2453 /* .audio_inputs= 1, */
2455 .gpiomask
= 0x01fe00,
2456 .muxsel
= MUXSEL(2, 3, 1, 1),
2457 .gpiomux
= { 0x001e00, 0, 0x018000, 0x014000 },
2458 .gpiomute
= 0x002000,
2460 .tuner_type
= TUNER_YMEC_TVF66T5_B_DFF
,
2461 .tuner_addr
= 0xc1 >>1,
2464 /* ---- card 0x89 ---------------------------------- */
2465 [BTTV_BOARD_CONCEPTRONIC_CTVFMI2
] = {
2466 .name
= "Conceptronic CTVFMi v2",
2468 /* .audio_inputs= 1, */
2470 .gpiomask
= 0x001c0007,
2471 .muxsel
= MUXSEL(2, 3, 1, 1),
2472 .gpiomux
= { 0, 1, 2, 2 },
2475 .tuner_type
= TUNER_TENA_9533_DI
,
2476 .tuner_addr
= ADDR_UNSET
,
2480 /* ---- card 0x8a ---------------------------------- */
2481 [BTTV_BOARD_PV_BT878P_2E
] = {
2482 .name
= "Prolink Pixelview PV-BT878P+ (Rev.2E)",
2484 /* .audio_inputs= 1, */
2487 .gpiomask
= 0x01fe00,
2488 .muxsel
= MUXSEL(2, 3, 1, 1, 0), /* in 4 is digital */
2489 /* .digital_mode= DIGITAL_MODE_CAMERA, */
2490 .gpiomux
= { 0x00400, 0x10400, 0x04400, 0x80000 },
2491 .gpiomute
= 0x12400,
2494 .tuner_type
= TUNER_LG_PAL_FM
,
2495 .tuner_addr
= ADDR_UNSET
,
2498 /* ---- card 0x8b ---------------------------------- */
2499 [BTTV_BOARD_PV_M4900
] = {
2500 /* Sérgio Fortier <sergiofortier@yahoo.com.br> */
2501 .name
= "Prolink PixelView PlayTV MPEG2 PV-M4900",
2503 /* .audio_inputs= 1, */
2506 .muxsel
= MUXSEL(2, 3, 1, 1),
2507 .gpiomux
= { 0x21, 0x20, 0x24, 0x2c },
2511 .tuner_type
= TUNER_YMEC_TVF_5533MF
,
2512 .tuner_addr
= ADDR_UNSET
,
2516 /* ---- card 0x8c ---------------------------------- */
2517 /* Has four Bt878 chips behind a PCI bridge, each chip has:
2518 one external BNC composite input (mux 2)
2519 three internal composite inputs (unknown muxes)
2520 an 18-bit stereo A/D (CS5331A), which has:
2521 one external stereo unblanced (RCA) audio connection
2522 one (or 3?) internal stereo balanced (XLR) audio connection
2523 input is selected via gpio to a 14052B mux
2524 (mask=0x300, unbal=0x000, bal=0x100, ??=0x200,0x300)
2525 gain is controlled via an X9221A chip on the I2C bus @0x28
2526 sample rate is controlled via gpio to an MK1413S
2527 (mask=0x3, 32kHz=0x0, 44.1kHz=0x1, 48kHz=0x2, ??=0x3)
2528 There is neither a tuner nor an svideo input. */
2529 [BTTV_BOARD_OSPREY440
] = {
2530 .name
= "Osprey 440",
2532 /* .audio_inputs= 2, */
2534 .muxsel
= MUXSEL(2, 3, 0, 1), /* 3,0,1 are guesses */
2536 .gpiomute
= 0x000, /* int + 32kHz */
2537 .gpiomux
= { 0, 0, 0x000, 0x100},
2539 .tuner_type
= TUNER_ABSENT
,
2540 .tuner_addr
= ADDR_UNSET
,
2544 /* ---- card 0x8d ---------------------------------- */
2545 [BTTV_BOARD_ASOUND_SKYEYE
] = {
2546 .name
= "Asound Skyeye PCTV",
2548 /* .audio_inputs= 1, */
2551 .muxsel
= MUXSEL(2, 3, 1, 1),
2552 .gpiomux
= { 2, 0, 0, 0 },
2555 .tuner_type
= TUNER_PHILIPS_NTSC
,
2556 .tuner_addr
= ADDR_UNSET
,
2558 /* ---- card 0x8e ---------------------------------- */
2559 [BTTV_BOARD_SABRENT_TVFM
] = {
2560 .name
= "Sabrent TV-FM (bttv version)",
2562 /* .audio_inputs= 1, */
2564 .gpiomask
= 0x108007,
2565 .muxsel
= MUXSEL(2, 3, 1, 1),
2566 .gpiomux
= { 100000, 100002, 100002, 100000 },
2570 .tuner_type
= TUNER_TNF_5335MF
,
2571 .tuner_addr
= ADDR_UNSET
,
2574 /* ---- card 0x8f ---------------------------------- */
2575 [BTTV_BOARD_HAUPPAUGE_IMPACTVCB
] = {
2576 .name
= "Hauppauge ImpactVCB (bt878)",
2578 /* .audio_inputs= 0, */
2580 .gpiomask
= 0x0f, /* old: 7 */
2581 .muxsel
= MUXSEL(0, 1, 3, 2), /* Composite 0-3 */
2584 .tuner_type
= TUNER_ABSENT
,
2585 .tuner_addr
= ADDR_UNSET
,
2587 [BTTV_BOARD_MACHTV_MAGICTV
] = {
2588 /* Julian Calaby <julian.calaby@gmail.com>
2589 * Slightly different from original MachTV definition (0x60)
2591 * FIXME: RegSpy says gpiomask should be "0x001c800f", but it
2592 * stuffs up remote chip. Bug is a pin on the jaecs is not set
2593 * properly (methinks) causing no keyup bits being set */
2595 .name
= "MagicTV", /* rebranded MachTV */
2597 /* .audio_inputs= 1, */
2600 .muxsel
= MUXSEL(2, 3, 1, 1),
2601 .gpiomux
= { 0, 1, 2, 3 },
2603 .tuner_type
= TUNER_TEMIC_4009FR5_PAL
,
2604 .tuner_addr
= ADDR_UNSET
,
2609 [BTTV_BOARD_SSAI_SECURITY
] = {
2610 .name
= "SSAI Security Video Interface",
2612 /* .audio_inputs= 0, */
2614 .muxsel
= MUXSEL(0, 1, 2, 3),
2615 .tuner_type
= TUNER_ABSENT
,
2616 .tuner_addr
= ADDR_UNSET
,
2618 [BTTV_BOARD_SSAI_ULTRASOUND
] = {
2619 .name
= "SSAI Ultrasound Video Interface",
2621 /* .audio_inputs= 0, */
2623 .muxsel
= MUXSEL(2, 0, 1, 3),
2624 .tuner_type
= TUNER_ABSENT
,
2625 .tuner_addr
= ADDR_UNSET
,
2627 /* ---- card 0x94---------------------------------- */
2628 [BTTV_BOARD_DVICO_FUSIONHDTV_2
] = {
2629 .name
= "DViCO FusionHDTV 2",
2630 .tuner_type
= TUNER_PHILIPS_FCV1236D
,
2631 .tuner_addr
= ADDR_UNSET
,
2633 /* .audio_inputs= 1, */
2635 .muxsel
= MUXSEL(2, 3, 1),
2636 .gpiomask
= 0x00e00007,
2637 .gpiomux
= { 0x00400005, 0, 0x00000001, 0 },
2638 .gpiomute
= 0x00c00007,
2642 /* ---- card 0x95---------------------------------- */
2643 [BTTV_BOARD_TYPHOON_TVTUNERPCI
] = {
2644 .name
= "Typhoon TV-Tuner PCI (50684)",
2646 /* .audio_inputs= 1, */
2648 .gpiomask
= 0x3014f,
2649 .muxsel
= MUXSEL(2, 3, 1, 1),
2650 .gpiomux
= { 0x20001,0x10001, 0, 0 },
2653 .tuner_type
= TUNER_PHILIPS_PAL_I
,
2654 .tuner_addr
= ADDR_UNSET
,
2656 [BTTV_BOARD_GEOVISION_GV600
] = {
2658 .name
= "Geovision GV-600",
2660 /* .audio_inputs= 0, */
2663 .muxsel
= MUXSEL(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
2664 .muxsel_hook
= geovision_muxsel
,
2668 .tuner_type
= TUNER_ABSENT
,
2669 .tuner_addr
= ADDR_UNSET
,
2671 [BTTV_BOARD_KOZUMI_KTV_01C
] = {
2672 /* Mauro Lacy <mauro@lacy.com.ar>
2673 * Based on MagicTV and Conceptronic CONTVFMi */
2675 .name
= "Kozumi KTV-01C",
2677 /* .audio_inputs= 1, */
2679 .gpiomask
= 0x008007,
2680 .muxsel
= MUXSEL(2, 3, 1, 1),
2681 .gpiomux
= { 0, 1, 2, 2 }, /* CONTVFMi */
2682 .gpiomute
= 3, /* CONTVFMi */
2683 .tuner_type
= TUNER_PHILIPS_FM1216ME_MK3
, /* TCL MK3 */
2684 .tuner_addr
= ADDR_UNSET
,
2689 [BTTV_BOARD_ENLTV_FM_2
] = {
2690 /* Encore TV Tuner Pro ENL TV-FM-2
2691 Mauro Carvalho Chehab <mchehab@infradead.org */
2692 .name
= "Encore ENL TV-FM-2",
2694 /* .audio_inputs= 1, */
2696 /* bit 6 -> IR disabled
2697 bit 18/17 = 00 -> mute
2698 01 -> enable external audio input
2699 10 -> internal audio input (mono?)
2700 11 -> internal audio input
2702 .gpiomask
= 0x060040,
2703 .muxsel
= MUXSEL(2, 3, 3),
2704 .gpiomux
= { 0x60000, 0x60000, 0x20000, 0x20000 },
2706 .tuner_type
= TUNER_TCL_MF02GIP_5N
,
2707 .tuner_addr
= ADDR_UNSET
,
2712 [BTTV_BOARD_VD012
] = {
2713 /* D.Heer@Phytec.de */
2714 .name
= "PHYTEC VD-012 (bt878)",
2716 /* .audio_inputs= 0, */
2719 .muxsel
= MUXSEL(0, 2, 3, 1),
2720 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2722 .tuner_type
= TUNER_ABSENT
,
2723 .tuner_addr
= ADDR_UNSET
,
2725 [BTTV_BOARD_VD012_X1
] = {
2726 /* D.Heer@Phytec.de */
2727 .name
= "PHYTEC VD-012-X1 (bt878)",
2729 /* .audio_inputs= 0, */
2732 .muxsel
= MUXSEL(2, 3, 1),
2733 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2735 .tuner_type
= TUNER_ABSENT
,
2736 .tuner_addr
= ADDR_UNSET
,
2738 [BTTV_BOARD_VD012_X2
] = {
2739 /* D.Heer@Phytec.de */
2740 .name
= "PHYTEC VD-012-X2 (bt878)",
2742 /* .audio_inputs= 0, */
2745 .muxsel
= MUXSEL(3, 2, 1),
2746 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2748 .tuner_type
= TUNER_ABSENT
,
2749 .tuner_addr
= ADDR_UNSET
,
2751 [BTTV_BOARD_GEOVISION_GV800S
] = {
2752 /* Bruno Christo <bchristo@inf.ufsm.br>
2754 * GeoVision GV-800(S) has 4 Conexant Fusion 878A:
2755 * 1 audio input per BT878A = 4 audio inputs
2756 * 4 video inputs per BT878A = 16 video inputs
2757 * This is the first BT878A chip of the GV-800(S). It's the
2758 * "master" chip and it controls the video inputs through an
2759 * analog multiplexer (a CD22M3494) via some GPIO pins. The
2760 * slaves should use card type 0x9e (following this one).
2761 * There is a EEPROM on the card which is currently not handled.
2762 * The audio input is not working yet.
2764 .name
= "Geovision GV-800(S) (master)",
2766 /* .audio_inputs= 1, */
2767 .tuner_type
= TUNER_ABSENT
,
2768 .tuner_addr
= ADDR_UNSET
,
2770 .gpiomask
= 0xf107f,
2772 .muxsel
= MUXSEL(2, 2, 2, 2),
2776 .muxsel_hook
= gv800s_muxsel
,
2778 [BTTV_BOARD_GEOVISION_GV800S_SL
] = {
2779 /* Bruno Christo <bchristo@inf.ufsm.br>
2781 * GeoVision GV-800(S) has 4 Conexant Fusion 878A:
2782 * 1 audio input per BT878A = 4 audio inputs
2783 * 4 video inputs per BT878A = 16 video inputs
2784 * The 3 other BT878A chips are "slave" chips of the GV-800(S)
2785 * and should use this card type.
2786 * The audio input is not working yet.
2788 .name
= "Geovision GV-800(S) (slave)",
2790 /* .audio_inputs= 1, */
2791 .tuner_type
= TUNER_ABSENT
,
2792 .tuner_addr
= ADDR_UNSET
,
2796 .muxsel
= MUXSEL(2, 2, 2, 2),
2800 .muxsel_hook
= gv800s_muxsel
,
2802 [BTTV_BOARD_PV183
] = {
2803 .name
= "ProVideo PV183", /* 0x9f */
2805 /* .audio_inputs= 0, */
2808 .muxsel
= MUXSEL(2, 3),
2812 .tuner_type
= TUNER_ABSENT
,
2813 .tuner_addr
= ADDR_UNSET
,
2815 /* ---- card 0xa0---------------------------------- */
2816 [BTTV_BOARD_TVT_TD3116
] = {
2817 .name
= "Tongwei Video Technology TD-3116",
2819 .gpiomask
= 0xc00ff,
2820 .muxsel
= MUXSEL(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
2821 .muxsel_hook
= td3116_muxsel
,
2824 .tuner_type
= TUNER_ABSENT
,
2826 [BTTV_BOARD_APOSONIC_WDVR
] = {
2827 .name
= "Aposonic W-DVR",
2830 .muxsel
= MUXSEL(2, 3, 1, 0),
2831 .tuner_type
= TUNER_ABSENT
,
2833 [BTTV_BOARD_ADLINK_MPG24
] = {
2835 .name
= "Adlink MPG24",
2837 /* .audio_inputs= 1, */
2839 .muxsel
= MUXSEL(2, 2, 2, 2),
2840 .tuner_type
= UNSET
,
2841 .tuner_addr
= ADDR_UNSET
,
2844 [BTTV_BOARD_BT848_CAP_14
] = {
2845 .name
= "Bt848 Capture 14MHz",
2848 .muxsel
= MUXSEL(2, 3, 1, 0),
2850 .tuner_type
= TUNER_ABSENT
,
2852 [BTTV_BOARD_CYBERVISION_CV06
] = {
2853 .name
= "CyberVision CV06 (SV)",
2855 /* .audio_inputs= 0, */
2857 .muxsel
= MUXSEL(2, 3, 1, 0),
2859 .tuner_type
= TUNER_ABSENT
,
2860 .tuner_addr
= ADDR_UNSET
,
2862 [BTTV_BOARD_KWORLD_VSTREAM_XPERT
] = {
2863 /* Pojar George <geoubuntu@gmail.com> */
2864 .name
= "Kworld V-Stream Xpert TV PVR878",
2866 /* .audio_inputs= 1, */
2868 .gpiomask
= 0x001c0007,
2869 .muxsel
= MUXSEL(2, 3, 1, 1),
2870 .gpiomux
= { 0, 1, 2, 2 },
2873 .tuner_type
= TUNER_TENA_9533_DI
,
2874 .tuner_addr
= ADDR_UNSET
,
2878 /* ---- card 0xa6---------------------------------- */
2879 [BTTV_BOARD_PCI_8604PW
] = {
2880 /* PCI-8604PW with special unlock sequence */
2881 .name
= "PCI-8604PW",
2883 /* .audio_inputs= 0, */
2885 /* The second input is available on CN4, if populated.
2886 * The other 5x2 header (CN2?) connects to the same inputs
2887 * as the on-board BNCs */
2888 .muxsel
= MUXSEL(2, 3),
2889 .tuner_type
= TUNER_ABSENT
,
2896 static const unsigned int bttv_num_tvcards
= ARRAY_SIZE(bttv_tvcards
);
2898 /* ----------------------------------------------------------------------- */
2900 static unsigned char eeprom_data
[256];
2905 void bttv_idcard(struct bttv
*btv
)
2907 unsigned int gpiobits
;
2910 /* read PCI subsystem ID */
2911 btv
->cardid
= btv
->c
.pci
->subsystem_device
<< 16;
2912 btv
->cardid
|= btv
->c
.pci
->subsystem_vendor
;
2914 if (0 != btv
->cardid
&& 0xffffffff != btv
->cardid
) {
2915 /* look for the card */
2916 for (type
= -1, i
= 0; cards
[i
].id
!= 0; i
++)
2917 if (cards
[i
].id
== btv
->cardid
)
2922 pr_info("%d: detected: %s [card=%d], PCI subsystem ID is %04x:%04x\n",
2923 btv
->c
.nr
, cards
[type
].name
, cards
[type
].cardnr
,
2924 btv
->cardid
& 0xffff,
2925 (btv
->cardid
>> 16) & 0xffff);
2926 btv
->c
.type
= cards
[type
].cardnr
;
2929 pr_info("%d: subsystem: %04x:%04x (UNKNOWN)\n",
2930 btv
->c
.nr
, btv
->cardid
& 0xffff,
2931 (btv
->cardid
>> 16) & 0xffff);
2932 pr_debug("please mail id, board name and the correct card= insmod option to linux-media@vger.kernel.org\n");
2936 /* let the user override the autodetected type */
2937 if (card
[btv
->c
.nr
] < bttv_num_tvcards
)
2938 btv
->c
.type
=card
[btv
->c
.nr
];
2940 /* print which card config we are using */
2941 pr_info("%d: using: %s [card=%d,%s]\n",
2942 btv
->c
.nr
, bttv_tvcards
[btv
->c
.type
].name
, btv
->c
.type
,
2943 card
[btv
->c
.nr
] < bttv_num_tvcards
2944 ? "insmod option" : "autodetected");
2946 /* overwrite gpio stuff ?? */
2947 if (UNSET
== audioall
&& UNSET
== audiomux
[0])
2950 if (UNSET
!= audiomux
[0]) {
2952 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
2953 bttv_tvcards
[btv
->c
.type
].gpiomux
[i
] = audiomux
[i
];
2954 gpiobits
|= audiomux
[i
];
2957 gpiobits
= audioall
;
2958 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
2959 bttv_tvcards
[btv
->c
.type
].gpiomux
[i
] = audioall
;
2962 bttv_tvcards
[btv
->c
.type
].gpiomask
= (UNSET
!= gpiomask
) ? gpiomask
: gpiobits
;
2963 pr_info("%d: gpio config override: mask=0x%x, mux=",
2964 btv
->c
.nr
, bttv_tvcards
[btv
->c
.type
].gpiomask
);
2965 for (i
= 0; i
< ARRAY_SIZE(bttv_tvcards
->gpiomux
); i
++) {
2967 i
? "," : "", bttv_tvcards
[btv
->c
.type
].gpiomux
[i
]);
2973 * (most) board specific initialisations goes here
2976 /* Some Modular Technology cards have an eeprom, but no subsystem ID */
2977 static void identify_by_eeprom(struct bttv
*btv
, unsigned char eeprom_data
[256])
2981 if (0 == strncmp(eeprom_data
,"GET MM20xPCTV",13))
2982 type
= BTTV_BOARD_MODTEC_205
;
2983 else if (0 == strncmp(eeprom_data
+20,"Picolo",7))
2984 type
= BTTV_BOARD_EURESYS_PICOLO
;
2985 else if (eeprom_data
[0] == 0x84 && eeprom_data
[2]== 0)
2986 type
= BTTV_BOARD_HAUPPAUGE
; /* old bt848 */
2990 pr_info("%d: detected by eeprom: %s [card=%d]\n",
2991 btv
->c
.nr
, bttv_tvcards
[btv
->c
.type
].name
, btv
->c
.type
);
2995 static void flyvideo_gpio(struct bttv
*btv
)
2997 int gpio
, has_remote
, has_radio
, is_capture_only
;
2998 int is_lr90
, has_tda9820_tda9821
;
2999 int tuner_type
= UNSET
, ttype
;
3001 gpio_inout(0xffffff, 0);
3002 udelay(8); /* without this we would see the 0x1800 mask */
3004 /* FIXME: must restore OUR_EN ??? */
3006 /* all cards provide GPIO info, some have an additional eeprom
3007 * LR50: GPIO coding can be found lower right CP1 .. CP9
3008 * CP9=GPIO23 .. CP1=GPIO15; when OPEN, the corresponding GPIO reads 1.
3010 * LR90: GP9=GPIO23 .. GP1=GPIO15 (right above the bt878)
3012 * lowest 3 bytes are remote control codes (no handshake needed)
3013 * xxxFFF: No remote control chip soldered
3014 * xxxF00(LR26/LR50), xxxFE0(LR90): Remote control chip (LVA001 or CF45) soldered
3015 * Note: Some bits are Audio_Mask !
3017 ttype
= (gpio
& 0x0f0000) >> 16;
3020 tuner_type
= 2; /* NTSC, e.g. TPI8NSR11P */
3023 tuner_type
= 39; /* LG NTSC (newer TAPC series) TAPC-H701P */
3026 tuner_type
= 5; /* Philips PAL TPI8PSB02P, TPI8PSB12P, TPI8PSB12D or FI1216, FM1216 */
3029 tuner_type
= 37; /* LG PAL (newer TAPC series) TAPC-G702P */
3032 tuner_type
= 3; /* Philips SECAM(+PAL) FQ1216ME or FI1216MF */
3035 pr_info("%d: FlyVideo_gpio: unknown tuner type\n", btv
->c
.nr
);
3039 has_remote
= gpio
& 0x800000;
3040 has_radio
= gpio
& 0x400000;
3041 /* unknown 0x200000;
3042 * unknown2 0x100000; */
3043 is_capture_only
= !(gpio
& 0x008000); /* GPIO15 */
3044 has_tda9820_tda9821
= !(gpio
& 0x004000);
3045 is_lr90
= !(gpio
& 0x002000); /* else LR26/LR50 (LR38/LR51 f. capture only) */
3047 * gpio & 0x001000 output bit for audio routing */
3049 if (is_capture_only
)
3050 tuner_type
= TUNER_ABSENT
; /* No tuner present */
3052 pr_info("%d: FlyVideo Radio=%s RemoteControl=%s Tuner=%d gpio=0x%06x\n",
3053 btv
->c
.nr
, has_radio
? "yes" : "no",
3054 has_remote
? "yes" : "no", tuner_type
, gpio
);
3055 pr_info("%d: FlyVideo LR90=%s tda9821/tda9820=%s capture_only=%s\n",
3056 btv
->c
.nr
, is_lr90
? "yes" : "no",
3057 has_tda9820_tda9821
? "yes" : "no",
3058 is_capture_only
? "yes" : "no");
3060 if (tuner_type
!= UNSET
) /* only set if known tuner autodetected, else let insmod option through */
3061 btv
->tuner_type
= tuner_type
;
3062 btv
->has_radio
= has_radio
;
3064 /* LR90 Audio Routing is done by 2 hef4052, so Audio_Mask has 4 bits: 0x001c80
3065 * LR26/LR50 only has 1 hef4052, Audio_Mask 0x000c00
3066 * Audio options: from tuner, from tda9821/tda9821(mono,stereo,sap), from tda9874, ext., mute */
3067 if (has_tda9820_tda9821
)
3068 btv
->audio_mode_gpio
= lt9415_audio
;
3069 /* todo: if(has_tda9874) btv->audio_mode_gpio = fv2000s_audio; */
3072 static int miro_tunermap
[] = { 0,6,2,3, 4,5,6,0, 3,0,4,5, 5,2,16,1,
3073 14,2,17,1, 4,1,4,3, 1,2,16,1, 4,4,4,4 };
3074 static int miro_fmtuner
[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,1,
3075 1,1,1,1, 1,1,1,0, 0,0,0,0, 0,1,0,0 };
3077 static void miro_pinnacle_gpio(struct bttv
*btv
)
3082 gpio_inout(0xffffff, 0);
3084 id
= ((gpio
>>10) & 63) -1;
3085 msp
= bttv_I2CRead(btv
, I2C_ADDR_MSP3400
, "MSP34xx");
3087 btv
->tuner_type
= miro_tunermap
[id
];
3088 if (0 == (gpio
& 0x20)) {
3090 if (!miro_fmtuner
[id
]) {
3091 btv
->has_tea575x
= 1;
3092 btv
->tea_gpio
.wren
= 6;
3093 btv
->tea_gpio
.most
= 7;
3094 btv
->tea_gpio
.clk
= 8;
3095 btv
->tea_gpio
.data
= 9;
3102 if (btv
->c
.type
== BTTV_BOARD_MIRO
)
3103 btv
->c
.type
= BTTV_BOARD_MIROPRO
;
3104 if (btv
->c
.type
== BTTV_BOARD_PINNACLE
)
3105 btv
->c
.type
= BTTV_BOARD_PINNACLEPRO
;
3107 pr_info("%d: miro: id=%d tuner=%d radio=%s stereo=%s\n",
3108 btv
->c
.nr
, id
+1, btv
->tuner_type
,
3109 !btv
->has_radio
? "no" :
3110 (btv
->has_tea575x
? "tea575x" : "fmtuner"),
3111 (-1 == msp
) ? "no" : "yes");
3113 /* new cards with microtune tuner */
3118 info
= "PAL / mono";
3119 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3122 info
= "PAL+SECAM / stereo";
3124 btv
->tda9887_conf
= TDA9887_QSS
;
3127 info
= "NTSC / stereo";
3129 btv
->tda9887_conf
= TDA9887_QSS
;
3132 info
= "PAL+SECAM / mono";
3133 btv
->tda9887_conf
= TDA9887_QSS
;
3136 info
= "NTSC / mono";
3137 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3140 info
= "NTSC / stereo";
3141 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3144 info
= "PAL / stereo";
3145 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3148 info
= "oops: unknown card";
3152 btv
->c
.type
= BTTV_BOARD_PINNACLEPRO
;
3153 pr_info("%d: pinnacle/mt: id=%d info=\"%s\" radio=%s\n",
3154 btv
->c
.nr
, id
, info
, btv
->has_radio
? "yes" : "no");
3155 btv
->tuner_type
= TUNER_MT2032
;
3159 /* GPIO21 L: Buffer aktiv, H: Buffer inaktiv */
3160 #define LM1882_SYNC_DRIVE 0x200000L
3162 static void init_ids_eagle(struct bttv
*btv
)
3164 gpio_inout(0xffffff,0xFFFF37);
3165 gpio_write(0x200020);
3167 /* flash strobe inverter ?! */
3168 gpio_write(0x200024);
3170 /* switch sync drive off */
3171 gpio_bits(LM1882_SYNC_DRIVE
,LM1882_SYNC_DRIVE
);
3173 /* set BT848 muxel to 2 */
3174 btaor((2)<<5, ~(2<<5), BT848_IFORM
);
3177 /* Muxsel helper for the IDS Eagle.
3178 * the eagles does not use the standard muxsel-bits but
3179 * has its own multiplexer */
3180 static void eagle_muxsel(struct bttv
*btv
, unsigned int input
)
3182 gpio_bits(3, input
& 3);
3185 /* set chroma ADC to sleep */
3186 btor(BT848_ADC_C_SLEEP
, BT848_ADC
);
3187 /* set to composite video */
3188 btand(~BT848_CONTROL_COMP
, BT848_E_CONTROL
);
3189 btand(~BT848_CONTROL_COMP
, BT848_O_CONTROL
);
3191 /* switch sync drive off */
3192 gpio_bits(LM1882_SYNC_DRIVE
,LM1882_SYNC_DRIVE
);
3195 static void gvc1100_muxsel(struct bttv
*btv
, unsigned int input
)
3197 static const int masks
[] = {0x30, 0x01, 0x12, 0x23};
3198 gpio_write(masks
[input
%4]);
3201 /* LMLBT4x initialization - to allow access to GPIO bits for sensors input and
3204 GPIObit | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
3205 assignment | TI | O3|INx| O2| O1|IN4|IN3|IN2|IN1| | |
3207 IN - sensor inputs, INx - sensor inputs and TI XORed together
3208 O1,O2,O3 - alarm outputs (relays)
3210 OUT ENABLE 1 1 0 . 1 1 0 0 . 0 0 0 0 = 0x6C0
3214 static void init_lmlbt4x(struct bttv
*btv
)
3216 pr_debug("LMLBT4x init\n");
3217 btwrite(0x000000, BT848_GPIO_REG_INP
);
3218 gpio_inout(0xffffff, 0x0006C0);
3219 gpio_write(0x000000);
3222 static void sigmaSQ_muxsel(struct bttv
*btv
, unsigned int input
)
3224 unsigned int inmux
= input
% 8;
3225 gpio_inout( 0xf, 0xf );
3226 gpio_bits( 0xf, inmux
);
3229 static void sigmaSLC_muxsel(struct bttv
*btv
, unsigned int input
)
3231 unsigned int inmux
= input
% 4;
3232 gpio_inout( 3<<9, 3<<9 );
3233 gpio_bits( 3<<9, inmux
<<9 );
3236 static void geovision_muxsel(struct bttv
*btv
, unsigned int input
)
3238 unsigned int inmux
= input
% 16;
3239 gpio_inout(0xf, 0xf);
3240 gpio_bits(0xf, inmux
);
3244 * The TD3116 has 2 74HC4051 muxes wired to the MUX0 input of a bt878.
3245 * The first 74HC4051 has the lower 8 inputs, the second one the higher 8.
3246 * The muxes are controlled via a 74HC373 latch which is connected to
3247 * GPIOs 0-7. GPIO 18 is connected to the LE signal of the latch.
3248 * Q0 of the latch is connected to the Enable (~E) input of the first
3249 * 74HC4051. Q1 - Q3 are connected to S0 - S2 of the same 74HC4051.
3250 * Q4 - Q7 are connected to the second 74HC4051 in the same way.
3253 static void td3116_latch_value(struct bttv
*btv
, u32 value
)
3255 gpio_bits((1<<18) | 0xff, value
);
3256 gpio_bits((1<<18) | 0xff, (1<<18) | value
);
3258 gpio_bits((1<<18) | 0xff, value
);
3261 static void td3116_muxsel(struct bttv
*btv
, unsigned int input
)
3266 highbit
= (input
& 0x8) >> 3 ;
3268 /* Disable outputs and set value in the mux */
3269 value
= 0x11; /* Disable outputs */
3270 value
|= ((input
& 0x7) << 1) << (4 * highbit
);
3271 td3116_latch_value(btv
, value
);
3273 /* Enable the correct output */
3275 value
|= ((highbit
^ 0x1) << 4) | highbit
;
3276 td3116_latch_value(btv
, value
);
3279 /* ----------------------------------------------------------------------- */
3281 static void bttv_reset_audio(struct bttv
*btv
)
3284 * BT878A has a audio-reset register.
3285 * 1. This register is an audio reset function but it is in
3286 * function-0 (video capture) address space.
3287 * 2. It is enough to do this once per power-up of the card.
3288 * 3. There is a typo in the Conexant doc -- it is not at
3289 * 0x5B, but at 0x058. (B is an odd-number, obviously a typo!).
3290 * --//Shrikumar 030609
3296 pr_debug("%d: BT878A ARESET\n", btv
->c
.nr
);
3297 btwrite((1<<7), 0x058);
3302 /* initialization part one -- before registering i2c bus */
3303 void bttv_init_card1(struct bttv
*btv
)
3305 switch (btv
->c
.type
) {
3306 case BTTV_BOARD_HAUPPAUGE
:
3307 case BTTV_BOARD_HAUPPAUGE878
:
3308 boot_msp34xx(btv
,5);
3310 case BTTV_BOARD_VOODOOTV_200
:
3311 case BTTV_BOARD_VOODOOTV_FM
:
3312 boot_msp34xx(btv
,20);
3314 case BTTV_BOARD_AVERMEDIA98
:
3315 boot_msp34xx(btv
,11);
3317 case BTTV_BOARD_HAUPPAUGEPVR
:
3320 case BTTV_BOARD_TWINHAN_DST
:
3321 case BTTV_BOARD_AVDVBT_771
:
3322 case BTTV_BOARD_PINNACLESAT
:
3323 btv
->use_i2c_hw
= 1;
3325 case BTTV_BOARD_ADLINK_RTV24
:
3328 case BTTV_BOARD_PCI_8604PW
:
3329 init_PCI8604PW(btv
);
3333 if (!bttv_tvcards
[btv
->c
.type
].has_dvb
)
3334 bttv_reset_audio(btv
);
3337 /* initialization part two -- after registering i2c bus */
3338 void bttv_init_card2(struct bttv
*btv
)
3340 btv
->tuner_type
= UNSET
;
3342 if (BTTV_BOARD_UNKNOWN
== btv
->c
.type
) {
3343 bttv_readee(btv
,eeprom_data
,0xa0);
3344 identify_by_eeprom(btv
,eeprom_data
);
3347 switch (btv
->c
.type
) {
3348 case BTTV_BOARD_MIRO
:
3349 case BTTV_BOARD_MIROPRO
:
3350 case BTTV_BOARD_PINNACLE
:
3351 case BTTV_BOARD_PINNACLEPRO
:
3353 miro_pinnacle_gpio(btv
);
3355 case BTTV_BOARD_FLYVIDEO_98
:
3356 case BTTV_BOARD_MAXI
:
3357 case BTTV_BOARD_LIFE_FLYKIT
:
3358 case BTTV_BOARD_FLYVIDEO
:
3359 case BTTV_BOARD_TYPHOON_TVIEW
:
3360 case BTTV_BOARD_CHRONOS_VS2
:
3361 case BTTV_BOARD_FLYVIDEO_98FM
:
3362 case BTTV_BOARD_FLYVIDEO2000
:
3363 case BTTV_BOARD_FLYVIDEO98EZ
:
3364 case BTTV_BOARD_CONFERENCETV
:
3365 case BTTV_BOARD_LIFETEC_9415
:
3368 case BTTV_BOARD_HAUPPAUGE
:
3369 case BTTV_BOARD_HAUPPAUGE878
:
3370 case BTTV_BOARD_HAUPPAUGEPVR
:
3371 /* pick up some config infos from the eeprom */
3372 bttv_readee(btv
,eeprom_data
,0xa0);
3373 hauppauge_eeprom(btv
);
3375 case BTTV_BOARD_AVERMEDIA98
:
3376 case BTTV_BOARD_AVPHONE98
:
3377 bttv_readee(btv
,eeprom_data
,0xa0);
3378 avermedia_eeprom(btv
);
3380 case BTTV_BOARD_PXC200
:
3383 case BTTV_BOARD_PICOLO_TETRA_CHIP
:
3384 picolo_tetra_init(btv
);
3386 case BTTV_BOARD_VHX
:
3388 btv
->has_tea575x
= 1;
3389 btv
->tea_gpio
.wren
= 5;
3390 btv
->tea_gpio
.most
= 6;
3391 btv
->tea_gpio
.clk
= 3;
3392 btv
->tea_gpio
.data
= 4;
3395 case BTTV_BOARD_VOBIS_BOOSTAR
:
3396 case BTTV_BOARD_TERRATV
:
3397 terratec_active_radio_upgrade(btv
);
3399 case BTTV_BOARD_MAGICTVIEW061
:
3400 if (btv
->cardid
== 0x3002144f) {
3402 pr_info("%d: radio detected by subsystem id (CPH05x)\n",
3406 case BTTV_BOARD_STB2
:
3407 if (btv
->cardid
== 0x3060121a) {
3408 /* Fix up entry for 3DFX VoodooTV 100,
3409 which is an OEM STB card variant. */
3411 btv
->tuner_type
=TUNER_TEMIC_NTSC
;
3414 case BTTV_BOARD_OSPREY1x0
:
3415 case BTTV_BOARD_OSPREY1x0_848
:
3416 case BTTV_BOARD_OSPREY101_848
:
3417 case BTTV_BOARD_OSPREY1x1
:
3418 case BTTV_BOARD_OSPREY1x1_SVID
:
3419 case BTTV_BOARD_OSPREY2xx
:
3420 case BTTV_BOARD_OSPREY2x0_SVID
:
3421 case BTTV_BOARD_OSPREY2x0
:
3422 case BTTV_BOARD_OSPREY440
:
3423 case BTTV_BOARD_OSPREY500
:
3424 case BTTV_BOARD_OSPREY540
:
3425 case BTTV_BOARD_OSPREY2000
:
3426 bttv_readee(btv
,eeprom_data
,0xa0);
3427 osprey_eeprom(btv
, eeprom_data
);
3429 case BTTV_BOARD_IDS_EAGLE
:
3430 init_ids_eagle(btv
);
3432 case BTTV_BOARD_MODTEC_205
:
3433 bttv_readee(btv
,eeprom_data
,0xa0);
3436 case BTTV_BOARD_LMLBT4
:
3439 case BTTV_BOARD_TIBET_CS16
:
3440 tibetCS16_init(btv
);
3442 case BTTV_BOARD_KODICOM_4400R
:
3443 kodicom4400r_init(btv
);
3445 case BTTV_BOARD_GEOVISION_GV800S
:
3450 /* pll configuration */
3451 if (!(btv
->id
==848 && btv
->revision
==0x11)) {
3452 /* defaults from card list */
3453 if (PLL_28
== bttv_tvcards
[btv
->c
.type
].pll
) {
3454 btv
->pll
.pll_ifreq
=28636363;
3455 btv
->pll
.pll_crystal
=BT848_IFORM_XT0
;
3457 if (PLL_35
== bttv_tvcards
[btv
->c
.type
].pll
) {
3458 btv
->pll
.pll_ifreq
=35468950;
3459 btv
->pll
.pll_crystal
=BT848_IFORM_XT1
;
3461 if (PLL_14
== bttv_tvcards
[btv
->c
.type
].pll
) {
3462 btv
->pll
.pll_ifreq
= 14318181;
3463 btv
->pll
.pll_crystal
= BT848_IFORM_XT0
;
3465 /* insmod options can override */
3466 switch (pll
[btv
->c
.nr
]) {
3468 btv
->pll
.pll_crystal
= 0;
3469 btv
->pll
.pll_ifreq
= 0;
3470 btv
->pll
.pll_ofreq
= 0;
3472 case 1: /* 28 MHz */
3474 btv
->pll
.pll_ifreq
= 28636363;
3475 btv
->pll
.pll_ofreq
= 0;
3476 btv
->pll
.pll_crystal
= BT848_IFORM_XT0
;
3478 case 2: /* 35 MHz */
3480 btv
->pll
.pll_ifreq
= 35468950;
3481 btv
->pll
.pll_ofreq
= 0;
3482 btv
->pll
.pll_crystal
= BT848_IFORM_XT1
;
3484 case 3: /* 14 MHz */
3486 btv
->pll
.pll_ifreq
= 14318181;
3487 btv
->pll
.pll_ofreq
= 0;
3488 btv
->pll
.pll_crystal
= BT848_IFORM_XT0
;
3492 btv
->pll
.pll_current
= -1;
3494 /* tuner configuration (from card list / autodetect / insmod option) */
3495 if (UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_type
)
3496 if (UNSET
== btv
->tuner_type
)
3497 btv
->tuner_type
= bttv_tvcards
[btv
->c
.type
].tuner_type
;
3498 if (UNSET
!= tuner
[btv
->c
.nr
])
3499 btv
->tuner_type
= tuner
[btv
->c
.nr
];
3501 if (btv
->tuner_type
== TUNER_ABSENT
)
3502 pr_info("%d: tuner absent\n", btv
->c
.nr
);
3503 else if (btv
->tuner_type
== UNSET
)
3504 pr_warn("%d: tuner type unset\n", btv
->c
.nr
);
3506 pr_info("%d: tuner type=%d\n", btv
->c
.nr
, btv
->tuner_type
);
3508 if (autoload
!= UNSET
) {
3509 pr_warn("%d: the autoload option is obsolete\n", btv
->c
.nr
);
3510 pr_warn("%d: use option msp3400, tda7432 or tvaudio to override which audio module should be used\n",
3514 if (UNSET
== btv
->tuner_type
)
3515 btv
->tuner_type
= TUNER_ABSENT
;
3517 btv
->dig
= bttv_tvcards
[btv
->c
.type
].has_dig_in
?
3518 bttv_tvcards
[btv
->c
.type
].video_inputs
- 1 : UNSET
;
3519 btv
->svhs
= bttv_tvcards
[btv
->c
.type
].svhs
== NO_SVHS
?
3520 UNSET
: bttv_tvcards
[btv
->c
.type
].svhs
;
3521 if (svhs
[btv
->c
.nr
] != UNSET
)
3522 btv
->svhs
= svhs
[btv
->c
.nr
];
3523 if (remote
[btv
->c
.nr
] != UNSET
)
3524 btv
->has_remote
= remote
[btv
->c
.nr
];
3526 if (bttv_tvcards
[btv
->c
.type
].has_radio
)
3528 if (bttv_tvcards
[btv
->c
.type
].has_remote
)
3529 btv
->has_remote
= 1;
3530 if (!bttv_tvcards
[btv
->c
.type
].no_gpioirq
)
3532 if (bttv_tvcards
[btv
->c
.type
].volume_gpio
)
3533 btv
->volume_gpio
= bttv_tvcards
[btv
->c
.type
].volume_gpio
;
3534 if (bttv_tvcards
[btv
->c
.type
].audio_mode_gpio
)
3535 btv
->audio_mode_gpio
= bttv_tvcards
[btv
->c
.type
].audio_mode_gpio
;
3537 if (btv
->tuner_type
== TUNER_ABSENT
)
3538 return; /* no tuner or related drivers to load */
3540 if (btv
->has_saa6588
|| saa6588
[btv
->c
.nr
]) {
3541 /* Probe for RDS receiver chip */
3542 static const unsigned short addrs
[] = {
3547 struct v4l2_subdev
*sd
;
3549 sd
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3550 &btv
->c
.i2c_adap
, "saa6588", 0, addrs
);
3551 btv
->has_saa6588
= (sd
!= NULL
);
3554 /* try to detect audio/fader chips */
3556 /* First check if the user specified the audio chip via a module
3559 switch (audiodev
[btv
->c
.nr
]) {
3561 return; /* do not load any audio module */
3563 case 0: /* autodetect */
3567 /* The user specified that we should probe for msp3400 */
3568 static const unsigned short addrs
[] = {
3569 I2C_ADDR_MSP3400
>> 1,
3570 I2C_ADDR_MSP3400_ALT
>> 1,
3574 btv
->sd_msp34xx
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3575 &btv
->c
.i2c_adap
, "msp3400", 0, addrs
);
3576 if (btv
->sd_msp34xx
)
3582 /* The user specified that we should probe for tda7432 */
3583 static const unsigned short addrs
[] = {
3584 I2C_ADDR_TDA7432
>> 1,
3588 if (v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3589 &btv
->c
.i2c_adap
, "tda7432", 0, addrs
))
3595 /* The user specified that we should probe for tvaudio */
3596 btv
->sd_tvaudio
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3597 &btv
->c
.i2c_adap
, "tvaudio", 0, tvaudio_addrs());
3598 if (btv
->sd_tvaudio
)
3604 pr_warn("%d: unknown audiodev value!\n", btv
->c
.nr
);
3608 /* There were no overrides, so now we try to discover this through the
3611 /* probe for msp3400 first: this driver can detect whether or not
3612 it really is a msp3400, so it will return NULL when the device
3613 found is really something else (e.g. a tea6300). */
3614 if (!bttv_tvcards
[btv
->c
.type
].no_msp34xx
) {
3615 btv
->sd_msp34xx
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3616 &btv
->c
.i2c_adap
, "msp3400",
3617 0, I2C_ADDRS(I2C_ADDR_MSP3400
>> 1));
3618 } else if (bttv_tvcards
[btv
->c
.type
].msp34xx_alt
) {
3619 btv
->sd_msp34xx
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3620 &btv
->c
.i2c_adap
, "msp3400",
3621 0, I2C_ADDRS(I2C_ADDR_MSP3400_ALT
>> 1));
3624 /* If we found a msp34xx, then we're done. */
3625 if (btv
->sd_msp34xx
)
3628 /* Now see if we can find one of the tvaudio devices. */
3629 btv
->sd_tvaudio
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3630 &btv
->c
.i2c_adap
, "tvaudio", 0, tvaudio_addrs());
3631 if (btv
->sd_tvaudio
) {
3632 /* There may be two tvaudio chips on the card, so try to
3634 v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3635 &btv
->c
.i2c_adap
, "tvaudio", 0, tvaudio_addrs());
3638 /* it might also be a tda7432. */
3639 if (!bttv_tvcards
[btv
->c
.type
].no_tda7432
) {
3640 static const unsigned short addrs
[] = {
3641 I2C_ADDR_TDA7432
>> 1,
3645 btv
->sd_tda7432
= v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3646 &btv
->c
.i2c_adap
, "tda7432", 0, addrs
);
3647 if (btv
->sd_tda7432
)
3650 if (btv
->sd_tvaudio
)
3654 pr_warn("%d: audio absent, no audio device found!\n", btv
->c
.nr
);
3658 /* initialize the tuner */
3659 void bttv_init_tuner(struct bttv
*btv
)
3661 int addr
= ADDR_UNSET
;
3663 if (ADDR_UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_addr
)
3664 addr
= bttv_tvcards
[btv
->c
.type
].tuner_addr
;
3666 if (btv
->tuner_type
!= TUNER_ABSENT
) {
3667 struct tuner_setup tun_setup
;
3669 /* Load tuner module before issuing tuner config call! */
3671 v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3672 &btv
->c
.i2c_adap
, "tuner",
3673 0, v4l2_i2c_tuner_addrs(ADDRS_RADIO
));
3674 v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3675 &btv
->c
.i2c_adap
, "tuner",
3676 0, v4l2_i2c_tuner_addrs(ADDRS_DEMOD
));
3677 v4l2_i2c_new_subdev(&btv
->c
.v4l2_dev
,
3678 &btv
->c
.i2c_adap
, "tuner",
3679 0, v4l2_i2c_tuner_addrs(ADDRS_TV_WITH_DEMOD
));
3681 tun_setup
.mode_mask
= T_ANALOG_TV
;
3682 tun_setup
.type
= btv
->tuner_type
;
3683 tun_setup
.addr
= addr
;
3686 tun_setup
.mode_mask
|= T_RADIO
;
3688 bttv_call_all(btv
, tuner
, s_type_addr
, &tun_setup
);
3691 if (btv
->tda9887_conf
) {
3692 struct v4l2_priv_tun_config tda9887_cfg
;
3694 tda9887_cfg
.tuner
= TUNER_TDA9887
;
3695 tda9887_cfg
.priv
= &btv
->tda9887_conf
;
3697 bttv_call_all(btv
, tuner
, s_config
, &tda9887_cfg
);
3701 /* ----------------------------------------------------------------------- */
3703 static void modtec_eeprom(struct bttv
*btv
)
3705 if( strncmp(&(eeprom_data
[0x1e]),"Temic 4066 FY5",14) ==0) {
3706 btv
->tuner_type
=TUNER_TEMIC_4066FY5_PAL_I
;
3707 pr_info("%d: Modtec: Tuner autodetected by eeprom: %s\n",
3708 btv
->c
.nr
, &eeprom_data
[0x1e]);
3709 } else if (strncmp(&(eeprom_data
[0x1e]),"Alps TSBB5",10) ==0) {
3710 btv
->tuner_type
=TUNER_ALPS_TSBB5_PAL_I
;
3711 pr_info("%d: Modtec: Tuner autodetected by eeprom: %s\n",
3712 btv
->c
.nr
, &eeprom_data
[0x1e]);
3713 } else if (strncmp(&(eeprom_data
[0x1e]),"Philips FM1246",14) ==0) {
3714 btv
->tuner_type
=TUNER_PHILIPS_NTSC
;
3715 pr_info("%d: Modtec: Tuner autodetected by eeprom: %s\n",
3716 btv
->c
.nr
, &eeprom_data
[0x1e]);
3718 pr_info("%d: Modtec: Unknown TunerString: %s\n",
3719 btv
->c
.nr
, &eeprom_data
[0x1e]);
3723 static void hauppauge_eeprom(struct bttv
*btv
)
3727 tveeprom_hauppauge_analog(&tv
, eeprom_data
);
3728 btv
->tuner_type
= tv
.tuner_type
;
3729 btv
->has_radio
= tv
.has_radio
;
3731 pr_info("%d: Hauppauge eeprom indicates model#%d\n",
3732 btv
->c
.nr
, tv
.model
);
3735 * Some of the 878 boards have duplicate PCI IDs. Switch the board
3736 * type based on model #.
3738 if(tv
.model
== 64900) {
3739 pr_info("%d: Switching board type from %s to %s\n",
3741 bttv_tvcards
[btv
->c
.type
].name
,
3742 bttv_tvcards
[BTTV_BOARD_HAUPPAUGE_IMPACTVCB
].name
);
3743 btv
->c
.type
= BTTV_BOARD_HAUPPAUGE_IMPACTVCB
;
3746 /* The 61334 needs the msp3410 to do the radio demod to get sound */
3747 if (tv
.model
== 61334)
3748 btv
->radio_uses_msp_demodulator
= 1;
3751 /* ----------------------------------------------------------------------- */
3753 static void bttv_tea575x_set_pins(struct snd_tea575x
*tea
, u8 pins
)
3755 struct bttv
*btv
= tea
->private_data
;
3756 struct bttv_tea575x_gpio gpio
= btv
->tea_gpio
;
3759 val
|= (pins
& TEA575X_DATA
) ? (1 << gpio
.data
) : 0;
3760 val
|= (pins
& TEA575X_CLK
) ? (1 << gpio
.clk
) : 0;
3761 val
|= (pins
& TEA575X_WREN
) ? (1 << gpio
.wren
) : 0;
3763 gpio_bits((1 << gpio
.data
) | (1 << gpio
.clk
) | (1 << gpio
.wren
), val
);
3764 if (btv
->mbox_ior
) {
3765 /* IOW and CSEL active */
3766 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
3769 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
3770 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
3774 static u8
bttv_tea575x_get_pins(struct snd_tea575x
*tea
)
3776 struct bttv
*btv
= tea
->private_data
;
3777 struct bttv_tea575x_gpio gpio
= btv
->tea_gpio
;
3781 if (btv
->mbox_ior
) {
3782 /* IOR and CSEL active */
3783 gpio_bits(btv
->mbox_ior
| btv
->mbox_csel
, 0);
3787 if (btv
->mbox_ior
) {
3789 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
3790 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
3793 if (val
& (1 << gpio
.data
))
3794 ret
|= TEA575X_DATA
;
3795 if (val
& (1 << gpio
.most
))
3796 ret
|= TEA575X_MOST
;
3801 static void bttv_tea575x_set_direction(struct snd_tea575x
*tea
, bool output
)
3803 struct bttv
*btv
= tea
->private_data
;
3804 struct bttv_tea575x_gpio gpio
= btv
->tea_gpio
;
3805 u32 mask
= (1 << gpio
.clk
) | (1 << gpio
.wren
) | (1 << gpio
.data
) |
3809 gpio_inout(mask
, (1 << gpio
.data
) | (1 << gpio
.clk
) |
3812 gpio_inout(mask
, (1 << gpio
.clk
) | (1 << gpio
.wren
));
3815 static const struct snd_tea575x_ops bttv_tea_ops
= {
3816 .set_pins
= bttv_tea575x_set_pins
,
3817 .get_pins
= bttv_tea575x_get_pins
,
3818 .set_direction
= bttv_tea575x_set_direction
,
3821 static int tea575x_init(struct bttv
*btv
)
3823 btv
->tea
.private_data
= btv
;
3824 btv
->tea
.ops
= &bttv_tea_ops
;
3825 if (!snd_tea575x_hw_init(&btv
->tea
)) {
3826 pr_info("%d: detected TEA575x radio\n", btv
->c
.nr
);
3827 btv
->tea
.mute
= false;
3831 btv
->has_tea575x
= 0;
3837 /* ----------------------------------------------------------------------- */
3839 static int terratec_active_radio_upgrade(struct bttv
*btv
)
3842 btv
->has_tea575x
= 1;
3843 btv
->tea_gpio
.wren
= 4;
3844 btv
->tea_gpio
.most
= 5;
3845 btv
->tea_gpio
.clk
= 3;
3846 btv
->tea_gpio
.data
= 2;
3848 btv
->mbox_iow
= 1 << 8;
3849 btv
->mbox_ior
= 1 << 9;
3850 btv
->mbox_csel
= 1 << 10;
3852 if (!tea575x_init(btv
)) {
3853 pr_info("%d: Terratec Active Radio Upgrade found\n", btv
->c
.nr
);
3854 btv
->has_saa6588
= 1;
3861 /* ----------------------------------------------------------------------- */
3864 * minimal bootstrap for the WinTV/PVR -- upload altera firmware.
3866 * The hcwamc.rbf firmware file is on the Hauppauge driver CD. Have
3867 * a look at Pvr/pvr45xxx.EXE (self-extracting zip archive, can be
3868 * unpacked with unzip).
3870 #define PVR_GPIO_DELAY 10
3872 #define BTTV_ALT_DATA 0x000001
3873 #define BTTV_ALT_DCLK 0x100000
3874 #define BTTV_ALT_NCONFIG 0x800000
3876 static int pvr_altera_load(struct bttv
*btv
, const u8
*micro
, u32 microlen
)
3882 gpio_inout(0xffffff,BTTV_ALT_DATA
|BTTV_ALT_DCLK
|BTTV_ALT_NCONFIG
);
3884 udelay(PVR_GPIO_DELAY
);
3886 gpio_write(BTTV_ALT_NCONFIG
);
3887 udelay(PVR_GPIO_DELAY
);
3889 for (n
= 0; n
< microlen
; n
++) {
3891 for (i
= 0 ; i
< 8 ; i
++) {
3892 gpio_bits(BTTV_ALT_DCLK
,0);
3894 gpio_bits(BTTV_ALT_DATA
,BTTV_ALT_DATA
);
3896 gpio_bits(BTTV_ALT_DATA
,0);
3897 gpio_bits(BTTV_ALT_DCLK
,BTTV_ALT_DCLK
);
3901 gpio_bits(BTTV_ALT_DCLK
,0);
3902 udelay(PVR_GPIO_DELAY
);
3904 /* begin Altera init loop (Not necessary,but doesn't hurt) */
3905 for (i
= 0 ; i
< 30 ; i
++) {
3906 gpio_bits(BTTV_ALT_DCLK
,0);
3907 gpio_bits(BTTV_ALT_DCLK
,BTTV_ALT_DCLK
);
3909 gpio_bits(BTTV_ALT_DCLK
,0);
3913 static int pvr_boot(struct bttv
*btv
)
3915 const struct firmware
*fw_entry
;
3918 rc
= request_firmware(&fw_entry
, "hcwamc.rbf", &btv
->c
.pci
->dev
);
3920 pr_warn("%d: no altera firmware [via hotplug]\n", btv
->c
.nr
);
3923 rc
= pvr_altera_load(btv
, fw_entry
->data
, fw_entry
->size
);
3924 pr_info("%d: altera firmware upload %s\n",
3925 btv
->c
.nr
, (rc
< 0) ? "failed" : "ok");
3926 release_firmware(fw_entry
);
3930 /* ----------------------------------------------------------------------- */
3931 /* some osprey specific stuff */
3933 static void osprey_eeprom(struct bttv
*btv
, const u8 ee
[256])
3939 /* This code will nevery actually get called in this case.... */
3940 if (btv
->c
.type
== BTTV_BOARD_UNKNOWN
) {
3941 /* this might be an antique... check for MMAC label in eeprom */
3942 if (!strncmp(ee
, "MMAC", 4)) {
3944 for (i
= 0; i
< 21; i
++)
3946 if (checksum
!= ee
[21])
3948 cardid
= BTTV_BOARD_OSPREY1x0_848
;
3949 for (i
= 12; i
< 21; i
++)
3950 serial
*= 10, serial
+= ee
[i
] - '0';
3953 unsigned short type
;
3955 for (i
= 4 * 16; i
< 8 * 16; i
+= 16) {
3956 u16 checksum
= (__force u16
)ip_compute_csum(ee
+ i
, 16);
3958 if ((checksum
& 0xff) + (checksum
>> 8) == 0xff)
3965 /* found a valid descriptor */
3966 type
= get_unaligned_be16((__be16
*)(ee
+4));
3971 cardid
= BTTV_BOARD_OSPREY1x0_848
;
3974 cardid
= BTTV_BOARD_OSPREY101_848
;
3980 cardid
= BTTV_BOARD_OSPREY1x0
;
3984 cardid
= BTTV_BOARD_OSPREY1x1
;
3989 cardid
= BTTV_BOARD_OSPREY1x1_SVID
;
3995 cardid
= BTTV_BOARD_OSPREY2xx
;
3999 cardid
= BTTV_BOARD_OSPREY2x0_SVID
;
4002 cardid
= BTTV_BOARD_OSPREY500
;
4006 cardid
= BTTV_BOARD_OSPREY540
;
4007 /* bttv_osprey_540_init(btv); */
4012 cardid
= BTTV_BOARD_OSPREY2x0
;
4013 /* enable output on select control lines */
4014 gpio_inout(0xffffff,0x000303);
4017 cardid
= BTTV_BOARD_OSPREY440
;
4020 /* unknown...leave generic, but get serial # */
4021 pr_info("%d: osprey eeprom: unknown card type 0x%04x\n",
4025 serial
= get_unaligned_be32((__be32
*)(ee
+6));
4028 pr_info("%d: osprey eeprom: card=%d '%s' serial=%u\n",
4030 cardid
> 0 ? bttv_tvcards
[cardid
].name
: "Unknown", serial
);
4032 if (cardid
<0 || btv
->c
.type
== cardid
)
4035 /* card type isn't set correctly */
4036 if (card
[btv
->c
.nr
] < bttv_num_tvcards
) {
4037 pr_warn("%d: osprey eeprom: Not overriding user specified card type\n",
4040 pr_info("%d: osprey eeprom: Changing card type from %d to %d\n",
4041 btv
->c
.nr
, btv
->c
.type
, cardid
);
4042 btv
->c
.type
= cardid
;
4046 /* ----------------------------------------------------------------------- */
4047 /* AVermedia specific stuff, from bktr_card.c */
4049 static int tuner_0_table
[] = {
4050 TUNER_PHILIPS_NTSC
, TUNER_PHILIPS_PAL
/* PAL-BG*/,
4051 TUNER_PHILIPS_PAL
, TUNER_PHILIPS_PAL
/* PAL-I*/,
4052 TUNER_PHILIPS_PAL
, TUNER_PHILIPS_PAL
,
4053 TUNER_PHILIPS_SECAM
, TUNER_PHILIPS_SECAM
,
4054 TUNER_PHILIPS_SECAM
, TUNER_PHILIPS_PAL
,
4055 TUNER_PHILIPS_FM1216ME_MK3
};
4057 static int tuner_1_table
[] = {
4058 TUNER_TEMIC_NTSC
, TUNER_TEMIC_PAL
,
4059 TUNER_TEMIC_PAL
, TUNER_TEMIC_PAL
,
4060 TUNER_TEMIC_PAL
, TUNER_TEMIC_PAL
,
4061 TUNER_TEMIC_4012FY5
, TUNER_TEMIC_4012FY5
, /* TUNER_TEMIC_SECAM */
4062 TUNER_TEMIC_4012FY5
, TUNER_TEMIC_PAL
};
4064 static void avermedia_eeprom(struct bttv
*btv
)
4066 int tuner_make
, tuner_tv_fm
, tuner_format
, tuner_type
= 0;
4068 tuner_make
= (eeprom_data
[0x41] & 0x7);
4069 tuner_tv_fm
= (eeprom_data
[0x41] & 0x18) >> 3;
4070 tuner_format
= (eeprom_data
[0x42] & 0xf0) >> 4;
4071 btv
->has_remote
= (eeprom_data
[0x42] & 0x01);
4073 if (tuner_make
== 0 || tuner_make
== 2)
4074 if (tuner_format
<= 0x0a)
4075 tuner_type
= tuner_0_table
[tuner_format
];
4076 if (tuner_make
== 1)
4077 if (tuner_format
<= 9)
4078 tuner_type
= tuner_1_table
[tuner_format
];
4080 if (tuner_make
== 4)
4081 if (tuner_format
== 0x09)
4082 tuner_type
= TUNER_LG_NTSC_NEW_TAPC
; /* TAPC-G702P */
4084 pr_info("%d: Avermedia eeprom[0x%02x%02x]: tuner=",
4085 btv
->c
.nr
, eeprom_data
[0x41], eeprom_data
[0x42]);
4087 btv
->tuner_type
= tuner_type
;
4088 pr_cont("%d", tuner_type
);
4090 pr_cont("Unknown type");
4091 pr_cont(" radio:%s remote control:%s\n",
4092 tuner_tv_fm
? "yes" : "no",
4093 btv
->has_remote
? "yes" : "no");
4097 * For Voodoo TV/FM and Voodoo 200. These cards' tuners use a TDA9880
4098 * analog demod, which is not I2C controlled like the newer and more common
4099 * TDA9887 series. Instead is has two tri-state input pins, S0 and S1,
4100 * that control the IF for the video and audio. Apparently, bttv GPIO
4101 * 0x10000 is connected to S0. S0 low selects a 38.9 MHz VIF for B/G/D/K/I
4102 * (i.e., PAL) while high selects 45.75 MHz for M/N (i.e., NTSC).
4104 u32
bttv_tda9880_setnorm(struct bttv
*btv
, u32 gpiobits
)
4107 if (btv
->audio_input
== TVAUDIO_INPUT_TUNER
) {
4108 if (bttv_tvnorms
[btv
->tvnorm
].v4l2_id
& V4L2_STD_MN
)
4109 gpiobits
|= 0x10000;
4111 gpiobits
&= ~0x10000;
4114 gpio_bits(bttv_tvcards
[btv
->c
.type
].gpiomask
, gpiobits
);
4120 * reset/enable the MSP on some Hauppauge cards
4121 * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
4126 static void boot_msp34xx(struct bttv
*btv
, int pin
)
4128 int mask
= (1 << pin
);
4130 gpio_inout(mask
,mask
);
4134 gpio_bits(mask
,mask
);
4137 bttv_gpio_tracking(btv
,"msp34xx");
4139 pr_info("%d: Hauppauge/Voodoo msp34xx: reset line init [%d]\n",
4143 /* ----------------------------------------------------------------------- */
4144 /* Imagenation L-Model PXC200 Framegrabber */
4145 /* This is basically the same procedure as
4146 * used by Alessandro Rubini in his pxc200
4147 * driver, but using BTTV functions */
4149 static void init_PXC200(struct bttv
*btv
)
4151 static int vals
[] = { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d, 0x01, 0x02,
4152 0x03, 0x04, 0x05, 0x06, 0x00 };
4157 /* Initialise GPIO-connevted stuff */
4158 gpio_inout(0xffffff, (1<<13));
4162 /* GPIO inputs are pulled up, so no need to drive
4163 * reset pin any longer */
4164 gpio_bits(0xffffff, 0);
4166 bttv_gpio_tracking(btv
,"pxc200");
4168 /* we could/should try and reset/control the AD pots? but
4169 right now we simply turned off the crushing. Without
4170 this the AGC drifts drifts
4171 remember the EN is reverse logic -->
4172 setting BT848_ADC_AGC_EN disable the AGC
4173 tboult@eecs.lehigh.edu
4176 btwrite(BT848_ADC_RESERVED
|BT848_ADC_AGC_EN
, BT848_ADC
);
4178 /* Initialise MAX517 DAC */
4179 pr_info("Setting DAC reference voltage level ...\n");
4180 bttv_I2CWrite(btv
,0x5E,0,0x80,1);
4182 /* Initialise 12C508 PIC */
4183 /* The I2CWrite and I2CRead commmands are actually to the
4184 * same chips - but the R/W bit is included in the address
4185 * argument so the numbers are different */
4188 pr_info("Initialising 12C508 PIC chip ...\n");
4190 /* First of all, enable the clock line. This is used in the PXC200-F */
4191 val
= btread(BT848_GPIO_DMA_CTL
);
4192 val
|= BT848_GPIO_DMA_CTL_GPCLKMODE
;
4193 btwrite(val
, BT848_GPIO_DMA_CTL
);
4195 /* Then, push to 0 the reset pin long enough to reset the *
4196 * device same as above for the reset line, but not the same
4197 * value sent to the GPIO-connected stuff
4198 * which one is the good one? */
4199 gpio_inout(0xffffff,(1<<2));
4204 for (i
= 0; i
< ARRAY_SIZE(vals
); i
++) {
4205 tmp
=bttv_I2CWrite(btv
,0x1E,0,vals
[i
],1);
4207 pr_info("I2C Write(%2.2x) = %i\nI2C Read () = %2.2x\n\n",
4208 vals
[i
],tmp
,bttv_I2CRead(btv
,0x1F,NULL
));
4212 pr_info("PXC200 Initialised\n");
4217 /* ----------------------------------------------------------------------- */
4219 * The Adlink RTV-24 (aka Angelo) has some special initialisation to unlock
4220 * it. This apparently involves the following procedure for each 878 chip:
4222 * 1) write 0x00C3FEFF to the GPIO_OUT_EN register
4224 * 2) write to GPIO_DATA
4230 * read from GPIO_DATA into buf (uint_32)
4231 * - if ( data>>18 & 0x01 != 0) || ( buf>>19 & 0x01 != 1 )
4232 * error. ERROR_CPLD_Check_Failed stop.
4234 * 3) write to GPIO_DATA
4235 * - write 0x4400 + 0x0E
4237 * - write 0x4410 + 0x0E
4240 * read from GPIO_DATA into buf (uint_32)
4241 * - if ( buf>>18 & 0x01 ) || ( buf>>19 & 0x01 != 0 )
4242 * error. ERROR_CPLD_Check_Failed.
4244 /* ----------------------------------------------------------------------- */
4246 init_RTV24 (struct bttv
*btv
)
4248 uint32_t dataRead
= 0;
4249 long watchdog_value
= 0x0E;
4251 pr_info("%d: Adlink RTV-24 initialisation in progress ...\n",
4254 btwrite (0x00c3feff, BT848_GPIO_OUT_EN
);
4256 btwrite (0 + watchdog_value
, BT848_GPIO_DATA
);
4258 btwrite (0x10 + watchdog_value
, BT848_GPIO_DATA
);
4260 btwrite (0 + watchdog_value
, BT848_GPIO_DATA
);
4262 dataRead
= btread (BT848_GPIO_DATA
);
4264 if ((((dataRead
>> 18) & 0x01) != 0) || (((dataRead
>> 19) & 0x01) != 1)) {
4265 pr_info("%d: Adlink RTV-24 initialisation(1) ERROR_CPLD_Check_Failed (read %d)\n",
4266 btv
->c
.nr
, dataRead
);
4269 btwrite (0x4400 + watchdog_value
, BT848_GPIO_DATA
);
4271 btwrite (0x4410 + watchdog_value
, BT848_GPIO_DATA
);
4273 btwrite (watchdog_value
, BT848_GPIO_DATA
);
4275 dataRead
= btread (BT848_GPIO_DATA
);
4277 if ((((dataRead
>> 18) & 0x01) != 0) || (((dataRead
>> 19) & 0x01) != 0)) {
4278 pr_info("%d: Adlink RTV-24 initialisation(2) ERROR_CPLD_Check_Failed (read %d)\n",
4279 btv
->c
.nr
, dataRead
);
4284 pr_info("%d: Adlink RTV-24 initialisation complete\n", btv
->c
.nr
);
4289 /* ----------------------------------------------------------------------- */
4291 * The PCI-8604PW contains a CPLD, probably an ispMACH 4A, that filters
4292 * the PCI REQ signals comming from the four BT878 chips. After power
4293 * up, the CPLD does not forward requests to the bus, which prevents
4294 * the BT878 from fetching RISC instructions from memory. While the
4295 * CPLD is connected to most of the GPIOs of PCI device 0xD, only
4296 * five appear to play a role in unlocking the REQ signal. The following
4297 * sequence has been determined by trial and error without access to the
4300 * Eight GPIOs of device 0xC are provided on connector CN4 (4 in, 4 out).
4301 * Devices 0xE and 0xF do not appear to have anything connected to their
4304 * The correct GPIO_OUT_EN value might have some more bits set. It should
4305 * be possible to derive it from a boundary scan of the CPLD. Its JTAG
4306 * pins are routed to test points.
4309 /* ----------------------------------------------------------------------- */
4311 init_PCI8604PW(struct bttv
*btv
)
4315 if ((PCI_SLOT(btv
->c
.pci
->devfn
) & ~3) != 0xC) {
4316 pr_warn("This is not a PCI-8604PW\n");
4320 if (PCI_SLOT(btv
->c
.pci
->devfn
) != 0xD)
4323 btwrite(0x080002, BT848_GPIO_OUT_EN
);
4325 state
= (btread(BT848_GPIO_DATA
) >> 21) & 7;
4333 pr_debug("PCI-8604PW in state %i, toggling pin\n",
4335 btwrite(0x080000, BT848_GPIO_DATA
);
4337 btwrite(0x000000, BT848_GPIO_DATA
);
4341 pr_info("PCI-8604PW unlocked\n");
4344 /* FIXME: If we are in state 7 and toggle GPIO[19] one
4345 more time, the CPLD goes into state 0, where PCI bus
4346 mastering is inhibited again. We have not managed to
4347 get out of that state. */
4349 pr_err("PCI-8604PW locked until reset\n");
4352 pr_err("PCI-8604PW in unknown state %i\n", state
);
4356 state
= (state
<< 4) | ((btread(BT848_GPIO_DATA
) >> 21) & 7);
4363 /* The transition from state 7 to state 0 is, as explained
4364 above, valid but undesired and with this code impossible
4365 as we exit as soon as we are in state 7.
4369 pr_err("PCI-8604PW invalid transition %i -> %i\n",
4370 state
>> 4, state
& 7);
4377 /* RemoteVision MX (rv605) muxsel helper [Miguel Freitas]
4379 * This is needed because rv605 don't use a normal multiplex, but a crosspoint
4380 * switch instead (CD22M3494E). This IC can have multiple active connections
4381 * between Xn (input) and Yn (output) pins. We need to clear any existing
4382 * connection prior to establish a new one, pulsing the STROBE pin.
4384 * The board hardwire Y0 (xpoint) to MUX1 and MUXOUT to Yin.
4385 * GPIO pins are wired as:
4386 * GPIO[0:3] - AX[0:3] (xpoint) - P1[0:3] (microcontroller)
4387 * GPIO[4:6] - AY[0:2] (xpoint) - P1[4:6] (microcontroller)
4388 * GPIO[7] - DATA (xpoint) - P1[7] (microcontroller)
4389 * GPIO[8] - - P3[5] (microcontroller)
4390 * GPIO[9] - RESET (xpoint) - P3[6] (microcontroller)
4391 * GPIO[10] - STROBE (xpoint) - P3[7] (microcontroller)
4392 * GPINTR - - P3[4] (microcontroller)
4394 * The microcontroller is a 80C32 like. It should be possible to change xpoint
4395 * configuration either directly (as we are doing) or using the microcontroller
4396 * which is also wired to I2C interface. I have no further info on the
4397 * microcontroller features, one would need to disassembly the firmware.
4398 * note: the vendor refused to give any information on this product, all
4399 * that stuff was found using a multimeter! :)
4401 static void rv605_muxsel(struct bttv
*btv
, unsigned int input
)
4403 static const u8 muxgpio
[] = { 0x3, 0x1, 0x2, 0x4, 0xf, 0x7, 0xe, 0x0,
4404 0xd, 0xb, 0xc, 0x6, 0x9, 0x5, 0x8, 0xa };
4406 gpio_bits(0x07f, muxgpio
[input
]);
4408 /* reset all conections */
4409 gpio_bits(0x200,0x200);
4411 gpio_bits(0x200,0x000);
4414 /* create a new connection */
4415 gpio_bits(0x480,0x480);
4417 gpio_bits(0x480,0x080);
4421 /* Tibet Systems 'Progress DVR' CS16 muxsel helper [Chris Fanning]
4423 * The CS16 (available on eBay cheap) is a PCI board with four Fusion
4424 * 878A chips, a PCI bridge, an Atmel microcontroller, four sync separator
4425 * chips, ten eight input analog multiplexors, a not chip and a few
4428 * 16 inputs on a secondary bracket are provided and can be selected
4429 * from each of the four capture chips. Two of the eight input
4430 * multiplexors are used to select from any of the 16 input signals.
4432 * Unsupported hardware capabilities:
4433 * . A video output monitor on the secondary bracket can be selected from
4434 * one of the 878A chips.
4435 * . Another passthrough but I haven't spent any time investigating it.
4436 * . Digital I/O (logic level connected to GPIO) is available from an
4439 * The on chip input mux should always be set to 2.
4440 * GPIO[16:19] - Video input selection
4441 * GPIO[0:3] - Video output monitor select (only available from one 878A)
4442 * GPIO[?:?] - Digital I/O.
4444 * There is an ATMEL microcontroller with an 8031 core on board. I have not
4445 * determined what function (if any) it provides. With the microcontroller
4446 * and sync separator chips a guess is that it might have to do with video
4447 * switching and maybe some digital I/O.
4449 static void tibetCS16_muxsel(struct bttv
*btv
, unsigned int input
)
4452 gpio_bits(0x0f0000, input
<< 16);
4455 static void tibetCS16_init(struct bttv
*btv
)
4457 /* enable gpio bits, mask obtained via btSpy */
4458 gpio_inout(0xffffff, 0x0f7fff);
4459 gpio_write(0x0f7fff);
4463 * The following routines for the Kodicom-4400r get a little mind-twisting.
4464 * There is a "master" controller and three "slave" controllers, together
4465 * an analog switch which connects any of 16 cameras to any of the BT87A's.
4466 * The analog switch is controlled by the "master", but the detection order
4467 * of the four BT878A chips is in an order which I just don't understand.
4468 * The "master" is actually the second controller to be detected. The
4469 * logic on the board uses logical numbers for the 4 controllers, but
4470 * those numbers are different from the detection sequence. When working
4471 * with the analog switch, we need to "map" from the detection sequence
4472 * over to the board's logical controller number. This mapping sequence
4473 * is {3, 0, 2, 1}, i.e. the first controller to be detected is logical
4474 * unit 3, the second (which is the master) is logical unit 0, etc.
4475 * We need to maintain the status of the analog switch (which of the 16
4476 * cameras is connected to which of the 4 controllers) in sw_status array.
4480 * First a routine to set the analog switch, which controls which camera
4481 * is routed to which controller. The switch comprises an X-address
4482 * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4483 * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4484 * A data value (gpio bit 7) of '1' enables the switch, and '0' disables
4485 * the switch. A STROBE bit (gpio bit 8) latches the data value into the
4486 * specified address. The idea is to set the address and data, then bring
4487 * STROBE high, and finally bring STROBE back to low.
4489 static void kodicom4400r_write(struct bttv
*btv
,
4490 unsigned char xaddr
,
4491 unsigned char yaddr
,
4492 unsigned char data
) {
4495 udata
= (data
<< 7) | ((yaddr
&3) << 4) | (xaddr
&0xf);
4496 gpio_bits(0x1ff, udata
); /* write ADDR and DAT */
4497 gpio_bits(0x1ff, udata
| (1 << 8)); /* strobe high */
4498 gpio_bits(0x1ff, udata
); /* strobe low */
4502 * Next the mux select. Both the "master" and "slave" 'cards' (controllers)
4503 * use this routine. The routine finds the "master" for the card, maps
4504 * the controller number from the detected position over to the logical
4505 * number, writes the appropriate data to the analog switch, and housekeeps
4506 * the local copy of the switch information. The parameter 'input' is the
4507 * requested camera number (0 - 15).
4509 static void kodicom4400r_muxsel(struct bttv
*btv
, unsigned int input
)
4513 static unsigned char map
[4] = {3, 0, 2, 1};
4515 mctlr
= master
[btv
->c
.nr
];
4516 if (mctlr
== NULL
) { /* ignore if master not yet detected */
4519 yaddr
= (btv
->c
.nr
- mctlr
->c
.nr
+ 1) & 3; /* the '&' is for safety */
4521 xaddr
= input
& 0xf;
4522 /* Check if the controller/camera pair has changed, else ignore */
4523 if (mctlr
->sw_status
[yaddr
] != xaddr
)
4525 /* "open" the old switch, "close" the new one, save the new */
4526 kodicom4400r_write(mctlr
, mctlr
->sw_status
[yaddr
], yaddr
, 0);
4527 mctlr
->sw_status
[yaddr
] = xaddr
;
4528 kodicom4400r_write(mctlr
, xaddr
, yaddr
, 1);
4533 * During initialisation, we need to reset the analog switch. We
4534 * also preset the switch to map the 4 connectors on the card to the
4535 * *user's* (see above description of kodicom4400r_muxsel) channels
4538 static void kodicom4400r_init(struct bttv
*btv
)
4542 gpio_inout(0x0003ff, 0x0003ff);
4543 gpio_write(1 << 9); /* reset MUX */
4545 /* Preset camera 0 to the 4 controllers */
4546 for (ix
= 0; ix
< 4; ix
++) {
4547 btv
->sw_status
[ix
] = ix
;
4548 kodicom4400r_write(btv
, ix
, ix
, 1);
4551 * Since this is the "master", we need to set up the
4552 * other three controller chips' pointers to this structure
4553 * for later use in the muxsel routine.
4555 if ((btv
->c
.nr
<1) || (btv
->c
.nr
>BTTV_MAX
-3))
4557 master
[btv
->c
.nr
-1] = btv
;
4558 master
[btv
->c
.nr
] = btv
;
4559 master
[btv
->c
.nr
+1] = btv
;
4560 master
[btv
->c
.nr
+2] = btv
;
4563 /* The Grandtec X-Guard framegrabber card uses two Dual 4-channel
4564 * video multiplexers to provide up to 16 video inputs. These
4565 * multiplexers are controlled by the lower 8 GPIO pins of the
4566 * bt878. The multiplexers probably Pericom PI5V331Q or similar.
4568 * xxx0 is pin xxx of multiplexer U5,
4569 * yyy1 is pin yyy of multiplexer U2
4581 static void xguard_muxsel(struct bttv
*btv
, unsigned int input
)
4583 static const int masks
[] = {
4584 ENB0
, ENB0
|IN00
, ENB0
|IN10
, ENB0
|IN00
|IN10
,
4585 ENA0
, ENA0
|IN00
, ENA0
|IN10
, ENA0
|IN00
|IN10
,
4586 ENB1
, ENB1
|IN01
, ENB1
|IN11
, ENB1
|IN01
|IN11
,
4587 ENA1
, ENA1
|IN01
, ENA1
|IN11
, ENA1
|IN01
|IN11
,
4589 gpio_write(masks
[input
%16]);
4591 static void picolo_tetra_init(struct bttv
*btv
)
4593 /*This is the video input redirection fonctionality : I DID NOT USED IT. */
4594 btwrite (0x08<<16,BT848_GPIO_DATA
);/*GPIO[19] [==> 4053 B+C] set to 1 */
4595 btwrite (0x04<<16,BT848_GPIO_DATA
);/*GPIO[18] [==> 4053 A] set to 1*/
4597 static void picolo_tetra_muxsel (struct bttv
* btv
, unsigned int input
)
4600 dprintk("%d : picolo_tetra_muxsel => input = %d\n", btv
->c
.nr
, input
);
4601 /*Just set the right path in the analog multiplexers : channel 1 -> 4 ==> Analog Mux ==> MUX0*/
4602 /*GPIO[20]&GPIO[21] used to choose the right input*/
4603 btwrite (input
<<20,BT848_GPIO_DATA
);
4608 * ivc120_muxsel [Added by Alan Garfield <alan@fromorbit.com>]
4610 * The IVC120G security card has 4 i2c controlled TDA8540 matrix
4611 * swichers to provide 16 channels to MUX0. The TDA8540's have
4612 * 4 independent outputs and as such the IVC120G also has the
4613 * optional "Monitor Out" bus. This allows the card to be looking
4614 * at one input while the monitor is looking at another.
4616 * Since I've couldn't be bothered figuring out how to add an
4617 * independent muxsel for the monitor bus, I've just set it to
4618 * whatever the card is looking at.
4620 * OUT0 of the TDA8540's is connected to MUX0 (0x03)
4621 * OUT1 of the TDA8540's is connected to "Monitor Out" (0x0C)
4623 * TDA8540_ALT3 IN0-3 = Channel 13 - 16 (0x03)
4624 * TDA8540_ALT4 IN0-3 = Channel 1 - 4 (0x03)
4625 * TDA8540_ALT5 IN0-3 = Channel 5 - 8 (0x03)
4626 * TDA8540_ALT6 IN0-3 = Channel 9 - 12 (0x03)
4630 /* All 7 possible sub-ids for the TDA8540 Matrix Switcher */
4631 #define I2C_TDA8540 0x90
4632 #define I2C_TDA8540_ALT1 0x92
4633 #define I2C_TDA8540_ALT2 0x94
4634 #define I2C_TDA8540_ALT3 0x96
4635 #define I2C_TDA8540_ALT4 0x98
4636 #define I2C_TDA8540_ALT5 0x9a
4637 #define I2C_TDA8540_ALT6 0x9c
4639 static void ivc120_muxsel(struct bttv
*btv
, unsigned int input
)
4642 int key
= input
% 4;
4643 int matrix
= input
/ 4;
4645 dprintk("%d: ivc120_muxsel: Input - %02d | TDA - %02d | In - %02d\n",
4646 btv
->c
.nr
, input
, matrix
, key
);
4648 /* Handles the input selection on the TDA8540's */
4649 bttv_I2CWrite(btv
, I2C_TDA8540_ALT3
, 0x00,
4650 ((matrix
== 3) ? (key
| key
<< 2) : 0x00), 1);
4651 bttv_I2CWrite(btv
, I2C_TDA8540_ALT4
, 0x00,
4652 ((matrix
== 0) ? (key
| key
<< 2) : 0x00), 1);
4653 bttv_I2CWrite(btv
, I2C_TDA8540_ALT5
, 0x00,
4654 ((matrix
== 1) ? (key
| key
<< 2) : 0x00), 1);
4655 bttv_I2CWrite(btv
, I2C_TDA8540_ALT6
, 0x00,
4656 ((matrix
== 2) ? (key
| key
<< 2) : 0x00), 1);
4658 /* Handles the output enables on the TDA8540's */
4659 bttv_I2CWrite(btv
, I2C_TDA8540_ALT3
, 0x02,
4660 ((matrix
== 3) ? 0x03 : 0x00), 1); /* 13 - 16 */
4661 bttv_I2CWrite(btv
, I2C_TDA8540_ALT4
, 0x02,
4662 ((matrix
== 0) ? 0x03 : 0x00), 1); /* 1-4 */
4663 bttv_I2CWrite(btv
, I2C_TDA8540_ALT5
, 0x02,
4664 ((matrix
== 1) ? 0x03 : 0x00), 1); /* 5-8 */
4665 bttv_I2CWrite(btv
, I2C_TDA8540_ALT6
, 0x02,
4666 ((matrix
== 2) ? 0x03 : 0x00), 1); /* 9-12 */
4668 /* 878's MUX0 is already selected for input via muxsel values */
4672 /* PXC200 muxsel helper
4673 * luke@syseng.anu.edu.au
4674 * another transplant
4675 * from Alessandro Rubini (rubini@linux.it)
4677 * There are 4 kinds of cards:
4678 * PXC200L which is bt848
4679 * PXC200F which is bt848 with PIC controlling mux
4680 * PXC200AL which is bt878
4681 * PXC200AF which is bt878 with PIC controlling mux
4683 #define PX_CFG_PXC200F 0x01
4684 #define PX_FLAG_PXC200A 0x00001000 /* a pxc200A is bt-878 based */
4685 #define PX_I2C_PIC 0x0f
4686 #define PX_PXC200A_CARDID 0x200a1295
4687 #define PX_I2C_CMD_CFG 0x00
4689 static void PXC200_muxsel(struct bttv
*btv
, unsigned int input
)
4694 unsigned char buf
[2];
4696 /* Read PIC config to determine if this is a PXC200F */
4700 rc
=bttv_I2CWrite(btv
,(PX_I2C_PIC
<<1),buf
[0],buf
[1],1);
4702 pr_debug("%d: PXC200_muxsel: pic cfg write failed:%d\n",
4704 /* not PXC ? do nothing */
4708 rc
=bttv_I2CRead(btv
,(PX_I2C_PIC
<<1),NULL
);
4709 if (!(rc
& PX_CFG_PXC200F
)) {
4710 pr_debug("%d: PXC200_muxsel: not PXC200F rc:%d\n",
4716 /* The multiplexer in the 200F is handled by the GPIO port */
4717 /* get correct mapping between inputs */
4718 /* mux = bttv_tvcards[btv->type].muxsel[input] & 3; */
4719 /* ** not needed!? */
4722 /* make sure output pins are enabled */
4723 /* bitmask=0x30f; */
4725 /* check whether we have a PXC200A */
4726 if (btv
->cardid
== PX_PXC200A_CARDID
) {
4727 bitmask
^= 0x180; /* use 7 and 9, not 8 and 9 */
4728 bitmask
|= 7<<4; /* the DAC */
4730 btwrite(bitmask
, BT848_GPIO_OUT_EN
);
4732 bitmask
= btread(BT848_GPIO_DATA
);
4733 if (btv
->cardid
== PX_PXC200A_CARDID
)
4734 bitmask
= (bitmask
& ~0x280) | ((mux
& 2) << 8) | ((mux
& 1) << 7);
4735 else /* older device */
4736 bitmask
= (bitmask
& ~0x300) | ((mux
& 3) << 8);
4737 btwrite(bitmask
,BT848_GPIO_DATA
);
4740 * Was "to be safe, set the bt848 to input 0"
4741 * Actually, since it's ok at load time, better not messing
4742 * with these bits (on PXC200AF you need to set mux 2 here)
4744 * needed because bttv-driver sets mux before calling this function
4746 if (btv
->cardid
== PX_PXC200A_CARDID
)
4747 btaor(2<<5, ~BT848_IFORM_MUXSEL
, BT848_IFORM
);
4748 else /* older device */
4749 btand(~BT848_IFORM_MUXSEL
,BT848_IFORM
);
4751 pr_debug("%d: setting input channel to:%d\n", btv
->c
.nr
, (int)mux
);
4754 static void phytec_muxsel(struct bttv
*btv
, unsigned int input
)
4756 unsigned int mux
= input
% 4;
4758 if (input
== btv
->svhs
)
4761 gpio_bits(0x3, mux
);
4765 * GeoVision GV-800(S) functions
4766 * Bruno Christo <bchristo@inf.ufsm.br>
4769 /* This is a function to control the analog switch, which determines which
4770 * camera is routed to which controller. The switch comprises an X-address
4771 * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4772 * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4773 * A data value (gpio bit 18) of '1' enables the switch, and '0' disables
4774 * the switch. A STROBE bit (gpio bit 17) latches the data value into the
4775 * specified address. There is also a chip select (gpio bit 16).
4776 * The idea is to set the address and chip select together, bring
4777 * STROBE high, write the data, and finally bring STROBE back to low.
4779 static void gv800s_write(struct bttv
*btv
,
4780 unsigned char xaddr
,
4781 unsigned char yaddr
,
4782 unsigned char data
) {
4783 /* On the "master" 878A:
4784 * GPIO bits 0-9 are used for the analog switch:
4785 * 00 - 03: camera selector
4786 * 04 - 06: 878A (controller) selector
4789 * 18: data (1->on, 0->off)
4792 const u32 ADDRESS
= ((xaddr
&0xf) | (yaddr
&3)<<4);
4793 const u32 CSELECT
= 1<<16;
4794 const u32 STROBE
= 1<<17;
4795 const u32 DATA
= data
<<18;
4797 gpio_bits(0x1007f, ADDRESS
| CSELECT
); /* write ADDRESS and CSELECT */
4798 gpio_bits(0x20000, STROBE
); /* STROBE high */
4799 gpio_bits(0x40000, DATA
); /* write DATA */
4800 gpio_bits(0x20000, ~STROBE
); /* STROBE low */
4804 * GeoVision GV-800(S) muxsel
4806 * Each of the 4 cards (controllers) use this function.
4807 * The controller using this function selects the input through the GPIO pins
4808 * of the "master" card. A pointer to this card is stored in master[btv->c.nr].
4810 * The parameter 'input' is the requested camera number (0-4) on the controller.
4811 * The map array has the address of each input. Note that the addresses in the
4812 * array are in the sequence the original GeoVision driver uses, that is, set
4813 * every controller to input 0, then to input 1, 2, 3, repeat. This means that
4814 * the physical "camera 1" connector corresponds to controller 0 input 0,
4815 * "camera 2" corresponds to controller 1 input 0, and so on.
4817 * After getting the input address, the function then writes the appropriate
4818 * data to the analog switch, and housekeeps the local copy of the switch
4821 static void gv800s_muxsel(struct bttv
*btv
, unsigned int input
)
4825 static unsigned int map
[4][4] = { { 0x0, 0x4, 0xa, 0x6 },
4826 { 0x1, 0x5, 0xb, 0x7 },
4827 { 0x2, 0x8, 0xc, 0xe },
4828 { 0x3, 0x9, 0xd, 0xf } };
4830 mctlr
= master
[btv
->c
.nr
];
4831 if (mctlr
== NULL
) {
4832 /* do nothing until the "master" is detected */
4835 yaddr
= (btv
->c
.nr
- mctlr
->c
.nr
) & 3;
4836 xaddr
= map
[yaddr
][input
] & 0xf;
4838 /* Check if the controller/camera pair has changed, ignore otherwise */
4839 if (mctlr
->sw_status
[yaddr
] != xaddr
) {
4840 /* disable the old switch, enable the new one and save status */
4841 gv800s_write(mctlr
, mctlr
->sw_status
[yaddr
], yaddr
, 0);
4842 mctlr
->sw_status
[yaddr
] = xaddr
;
4843 gv800s_write(mctlr
, xaddr
, yaddr
, 1);
4847 /* GeoVision GV-800(S) "master" chip init */
4848 static void gv800s_init(struct bttv
*btv
)
4852 gpio_inout(0xf107f, 0xf107f);
4853 gpio_write(1<<19); /* reset the analog MUX */
4856 /* Preset camera 0 to the 4 controllers */
4857 for (ix
= 0; ix
< 4; ix
++) {
4858 btv
->sw_status
[ix
] = ix
;
4859 gv800s_write(btv
, ix
, ix
, 1);
4862 /* Inputs on the "master" controller need this brightness fix */
4863 bttv_I2CWrite(btv
, 0x18, 0x5, 0x90, 1);
4865 if (btv
->c
.nr
> BTTV_MAX
-4)
4868 * Store the "master" controller pointer in the master
4869 * array for later use in the muxsel function.
4871 master
[btv
->c
.nr
] = btv
;
4872 master
[btv
->c
.nr
+1] = btv
;
4873 master
[btv
->c
.nr
+2] = btv
;
4874 master
[btv
->c
.nr
+3] = btv
;
4877 /* ----------------------------------------------------------------------- */
4878 /* motherboard chipset specific stuff */
4880 void __init
bttv_check_chipset(void)
4882 int pcipci_fail
= 0;
4883 struct pci_dev
*dev
= NULL
;
4885 if (pci_pci_problems
& (PCIPCI_FAIL
|PCIAGP_FAIL
)) /* should check if target is AGP */
4887 if (pci_pci_problems
& (PCIPCI_TRITON
|PCIPCI_NATOMA
|PCIPCI_VIAETBF
))
4889 if (pci_pci_problems
& PCIPCI_VSFX
)
4891 #ifdef PCIPCI_ALIMAGIK
4892 if (pci_pci_problems
& PCIPCI_ALIMAGIK
)
4897 /* print warnings about any quirks found */
4899 pr_info("Host bridge needs ETBF enabled\n");
4901 pr_info("Host bridge needs VSFX enabled\n");
4903 pr_info("bttv and your chipset may not work together\n");
4905 pr_info("overlay will be disabled\n");
4908 pr_info("overlay forced. Use this option at your own risk.\n");
4911 if (UNSET
!= latency
)
4912 pr_info("pci latency fixup [%d]\n", latency
);
4913 while ((dev
= pci_get_device(PCI_VENDOR_ID_INTEL
,
4914 PCI_DEVICE_ID_INTEL_82441
, dev
))) {
4916 pci_read_config_byte(dev
, 0x53, &b
);
4918 pr_info("Host bridge: 82441FX Natoma, bufcon=0x%02x\n",
4923 int bttv_handle_chipset(struct bttv
*btv
)
4925 unsigned char command
;
4927 if (!triton1
&& !vsfx
&& UNSET
== latency
)
4932 pr_info("%d: enabling ETBF (430FX/VP3 compatibility)\n",
4934 if (vsfx
&& btv
->id
>= 878)
4935 pr_info("%d: enabling VSFX\n", btv
->c
.nr
);
4936 if (UNSET
!= latency
)
4937 pr_info("%d: setting pci timer to %d\n",
4938 btv
->c
.nr
, latency
);
4941 if (btv
->id
< 878) {
4942 /* bt848 (mis)uses a bit in the irq mask for etbf */
4944 btv
->triton1
= BT848_INT_ETBF
;
4946 /* bt878 has a bit in the pci config space for it */
4947 pci_read_config_byte(btv
->c
.pci
, BT878_DEVCTRL
, &command
);
4949 command
|= BT878_EN_TBFX
;
4951 command
|= BT878_EN_VSFX
;
4952 pci_write_config_byte(btv
->c
.pci
, BT878_DEVCTRL
, command
);
4954 if (UNSET
!= latency
)
4955 pci_write_config_byte(btv
->c
.pci
, PCI_LATENCY_TIMER
, latency
);