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