blob: 75033f06551f163fdcf69d8024ce58328cb608d2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
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)
9 & Marcus Metzler (mocm@thp.uni-koeln.de)
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
28#include <linux/config.h>
29#include <linux/delay.h>
30#include <linux/module.h>
31#include <linux/moduleparam.h>
32#include <linux/kmod.h>
33#include <linux/init.h>
34#include <linux/pci.h>
35#include <linux/vmalloc.h>
36#include <linux/firmware.h>
37
38#include <asm/io.h>
39
40#include "bttvp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* fwd decl */
43static void boot_msp34xx(struct bttv *btv, int pin);
44static void boot_bt832(struct bttv *btv);
45static void hauppauge_eeprom(struct bttv *btv);
46static void avermedia_eeprom(struct bttv *btv);
47static void osprey_eeprom(struct bttv *btv);
48static void modtec_eeprom(struct bttv *btv);
49static void init_PXC200(struct bttv *btv);
Peter Skipworth93b43f12005-06-23 22:04:45 -070050static void init_RTV24(struct bttv *btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52static void winview_audio(struct bttv *btv, struct video_audio *v, int set);
53static void lt9415_audio(struct bttv *btv, struct video_audio *v, int set);
54static void avermedia_tvphone_audio(struct bttv *btv, struct video_audio *v,
55 int set);
56static void avermedia_tv_stereo_audio(struct bttv *btv, struct video_audio *v,
57 int set);
58static void terratv_audio(struct bttv *btv, struct video_audio *v, int set);
59static void gvbctv3pci_audio(struct bttv *btv, struct video_audio *v, int set);
60static void gvbctv5pci_audio(struct bttv *btv, struct video_audio *v, int set);
61static void winfast2000_audio(struct bttv *btv, struct video_audio *v, int set);
62static void pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set);
63static void fv2000s_audio(struct bttv *btv, struct video_audio *v, int set);
64static void windvr_audio(struct bttv *btv, struct video_audio *v, int set);
65static void adtvk503_audio(struct bttv *btv, struct video_audio *v, int set);
66static void rv605_muxsel(struct bttv *btv, unsigned int input);
67static void eagle_muxsel(struct bttv *btv, unsigned int input);
68static void xguard_muxsel(struct bttv *btv, unsigned int input);
69static void ivc120_muxsel(struct bttv *btv, unsigned int input);
70static void gvc1100_muxsel(struct bttv *btv, unsigned int input);
71
72static void PXC200_muxsel(struct bttv *btv, unsigned int input);
73
74static void picolo_tetra_muxsel(struct bttv *btv, unsigned int input);
75static void picolo_tetra_init(struct bttv *btv);
76
77static void tibetCS16_muxsel(struct bttv *btv, unsigned int input);
78static void tibetCS16_init(struct bttv *btv);
79
80static void kodicom4400r_muxsel(struct bttv *btv, unsigned int input);
81static void kodicom4400r_init(struct bttv *btv);
82
83static void sigmaSLC_muxsel(struct bttv *btv, unsigned int input);
84static void sigmaSQ_muxsel(struct bttv *btv, unsigned int input);
85
86static int terratec_active_radio_upgrade(struct bttv *btv);
87static int tea5757_read(struct bttv *btv);
88static int tea5757_write(struct bttv *btv, int value);
89static void identify_by_eeprom(struct bttv *btv,
90 unsigned char eeprom_data[256]);
91static int __devinit pvr_boot(struct bttv *btv);
92
93/* config variables */
94static unsigned int triton1=0;
95static unsigned int vsfx=0;
96static unsigned int latency = UNSET;
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -070097int no_overlay=-1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99static unsigned int card[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
100static unsigned int pll[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
101static unsigned int tuner[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
102static unsigned int svhs[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
103static unsigned int remote[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
104static struct bttv *master[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = NULL };
105#ifdef MODULE
106static unsigned int autoload = 1;
107#else
108static unsigned int autoload = 0;
109#endif
110static unsigned int gpiomask = UNSET;
111static unsigned int audioall = UNSET;
112static unsigned int audiomux[5] = { [ 0 ... 4 ] = UNSET };
113
114/* insmod options */
115module_param(triton1, int, 0444);
116module_param(vsfx, int, 0444);
117module_param(no_overlay, int, 0444);
118module_param(latency, int, 0444);
119module_param(gpiomask, int, 0444);
120module_param(audioall, int, 0444);
121module_param(autoload, int, 0444);
122
123module_param_array(card, int, NULL, 0444);
124module_param_array(pll, int, NULL, 0444);
125module_param_array(tuner, int, NULL, 0444);
126module_param_array(svhs, int, NULL, 0444);
127module_param_array(remote, int, NULL, 0444);
128module_param_array(audiomux, int, NULL, 0444);
129
130MODULE_PARM_DESC(triton1,"set ETBF pci config bit "
131 "[enable bug compatibility for triton1 + others]");
132MODULE_PARM_DESC(vsfx,"set VSFX pci config bit "
133 "[yet another chipset flaw workaround]");
134MODULE_PARM_DESC(latency,"pci latency timer");
135MODULE_PARM_DESC(card,"specify TV/grabber card model, see CARDLIST file for a list");
136MODULE_PARM_DESC(pll,"specify installed crystal (0=none, 28=28 MHz, 35=35 MHz)");
137MODULE_PARM_DESC(tuner,"specify installed tuner type");
138MODULE_PARM_DESC(autoload,"automatically load i2c modules like tuner.o, default is 1 (yes)");
139
140/* ----------------------------------------------------------------------- */
141/* list of card IDs for bt878+ cards */
142
143static struct CARD {
144 unsigned id;
145 int cardnr;
146 char *name;
147} cards[] __devinitdata = {
148 { 0x13eb0070, BTTV_HAUPPAUGE878, "Hauppauge WinTV" },
149 { 0x39000070, BTTV_HAUPPAUGE878, "Hauppauge WinTV-D" },
150 { 0x45000070, BTTV_HAUPPAUGEPVR, "Hauppauge WinTV/PVR" },
151 { 0xff000070, BTTV_OSPREY1x0, "Osprey-100" },
152 { 0xff010070, BTTV_OSPREY2x0_SVID,"Osprey-200" },
153 { 0xff020070, BTTV_OSPREY500, "Osprey-500" },
154 { 0xff030070, BTTV_OSPREY2000, "Osprey-2000" },
155 { 0xff040070, BTTV_OSPREY540, "Osprey-540" },
156
157 { 0x00011002, BTTV_ATI_TVWONDER, "ATI TV Wonder" },
158 { 0x00031002, BTTV_ATI_TVWONDERVE,"ATI TV Wonder/VE" },
159
160 { 0x6606107d, BTTV_WINFAST2000, "Leadtek WinFast TV 2000" },
161 { 0x6607107d, BTTV_WINFASTVC100, "Leadtek WinFast VC 100" },
162 { 0x6609107d, BTTV_WINFAST2000, "Leadtek TV 2000 XP" },
163 { 0x263610b4, BTTV_STB2, "STB TV PCI FM, Gateway P/N 6000704" },
164 { 0x264510b4, BTTV_STB2, "STB TV PCI FM, Gateway P/N 6000704" },
165 { 0x402010fc, BTTV_GVBCTV3PCI, "I-O Data Co. GV-BCTV3/PCI" },
166 { 0x405010fc, BTTV_GVBCTV4PCI, "I-O Data Co. GV-BCTV4/PCI" },
167 { 0x407010fc, BTTV_GVBCTV5PCI, "I-O Data Co. GV-BCTV5/PCI" },
168 { 0xd01810fc, BTTV_GVBCTV5PCI, "I-O Data Co. GV-BCTV5/PCI" },
169
170 { 0x001211bd, BTTV_PINNACLE, "Pinnacle PCTV" },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700171 /* some cards ship with byteswapped IDs ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 { 0x1200bd11, BTTV_PINNACLE, "Pinnacle PCTV [bswap]" },
173 { 0xff00bd11, BTTV_PINNACLE, "Pinnacle PCTV [bswap]" },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700174 /* this seems to happen as well ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 { 0xff1211bd, BTTV_PINNACLE, "Pinnacle PCTV" },
176
177 { 0x3000121a, BTTV_VOODOOTV_FM, "3Dfx VoodooTV FM/ VoodooTV 200" },
178 { 0x263710b4, BTTV_VOODOOTV_FM, "3Dfx VoodooTV FM/ VoodooTV 200" },
179 { 0x3060121a, BTTV_STB2, "3Dfx VoodooTV 100/ STB OEM" },
180
181 { 0x3000144f, BTTV_MAGICTVIEW063, "(Askey Magic/others) TView99 CPH06x" },
182 { 0xa005144f, BTTV_MAGICTVIEW063, "CPH06X TView99-Card" },
183 { 0x3002144f, BTTV_MAGICTVIEW061, "(Askey Magic/others) TView99 CPH05x" },
184 { 0x3005144f, BTTV_MAGICTVIEW061, "(Askey Magic/others) TView99 CPH061/06L (T1/LC)" },
185 { 0x5000144f, BTTV_MAGICTVIEW061, "Askey CPH050" },
186 { 0x300014ff, BTTV_MAGICTVIEW061, "TView 99 (CPH061)" },
187 { 0x300214ff, BTTV_PHOEBE_TVMAS, "Phoebe TV Master (CPH060)" },
188
189 { 0x00011461, BTTV_AVPHONE98, "AVerMedia TVPhone98" },
190 { 0x00021461, BTTV_AVERMEDIA98, "AVermedia TVCapture 98" },
191 { 0x00031461, BTTV_AVPHONE98, "AVerMedia TVPhone98" },
192 { 0x00041461, BTTV_AVERMEDIA98, "AVerMedia TVCapture 98" },
193 { 0x03001461, BTTV_AVERMEDIA98, "VDOMATE TV TUNER CARD" },
194
195 { 0x1117153b, BTTV_TERRATVALUE, "Terratec TValue (Philips PAL B/G)" },
196 { 0x1118153b, BTTV_TERRATVALUE, "Terratec TValue (Temic PAL B/G)" },
197 { 0x1119153b, BTTV_TERRATVALUE, "Terratec TValue (Philips PAL I)" },
198 { 0x111a153b, BTTV_TERRATVALUE, "Terratec TValue (Temic PAL I)" },
199
200 { 0x1123153b, BTTV_TERRATVRADIO, "Terratec TV Radio+" },
201 { 0x1127153b, BTTV_TERRATV, "Terratec TV+ (V1.05)" },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700202 /* clashes with FlyVideo
203 *{ 0x18521852, BTTV_TERRATV, "Terratec TV+ (V1.10)" }, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 { 0x1134153b, BTTV_TERRATVALUE, "Terratec TValue (LR102)" },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700205 { 0x1135153b, BTTV_TERRATVALUER, "Terratec TValue Radio" }, /* LR102 */
206 { 0x5018153b, BTTV_TERRATVALUE, "Terratec TValue" }, /* ?? */
207 { 0xff3b153b, BTTV_TERRATVALUER, "Terratec TValue Radio" }, /* ?? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 { 0x400015b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV" },
210 { 0x400a15b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV" },
211 { 0x400d15b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
212 { 0x401015b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
213 { 0x401615b0, BTTV_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
214
215 { 0x1430aa00, BTTV_PV143, "Provideo PV143A" },
216 { 0x1431aa00, BTTV_PV143, "Provideo PV143B" },
217 { 0x1432aa00, BTTV_PV143, "Provideo PV143C" },
218 { 0x1433aa00, BTTV_PV143, "Provideo PV143D" },
219 { 0x1433aa03, BTTV_PV143, "Security Eyes" },
220
221 { 0x1460aa00, BTTV_PV150, "Provideo PV150A-1" },
222 { 0x1461aa01, BTTV_PV150, "Provideo PV150A-2" },
223 { 0x1462aa02, BTTV_PV150, "Provideo PV150A-3" },
224 { 0x1463aa03, BTTV_PV150, "Provideo PV150A-4" },
225
226 { 0x1464aa04, BTTV_PV150, "Provideo PV150B-1" },
227 { 0x1465aa05, BTTV_PV150, "Provideo PV150B-2" },
228 { 0x1466aa06, BTTV_PV150, "Provideo PV150B-3" },
229 { 0x1467aa07, BTTV_PV150, "Provideo PV150B-4" },
230
231 { 0xa132ff00, BTTV_IVC100, "IVC-100" },
232 { 0xa1550000, BTTV_IVC200, "IVC-200" },
233 { 0xa1550001, BTTV_IVC200, "IVC-200" },
234 { 0xa1550002, BTTV_IVC200, "IVC-200" },
235 { 0xa1550003, BTTV_IVC200, "IVC-200" },
236 { 0xa1550100, BTTV_IVC200, "IVC-200G" },
237 { 0xa1550101, BTTV_IVC200, "IVC-200G" },
238 { 0xa1550102, BTTV_IVC200, "IVC-200G" },
239 { 0xa1550103, BTTV_IVC200, "IVC-200G" },
240 { 0xa182ff00, BTTV_IVC120, "IVC-120G" },
241 { 0xa182ff01, BTTV_IVC120, "IVC-120G" },
242 { 0xa182ff02, BTTV_IVC120, "IVC-120G" },
243 { 0xa182ff03, BTTV_IVC120, "IVC-120G" },
244 { 0xa182ff04, BTTV_IVC120, "IVC-120G" },
245 { 0xa182ff05, BTTV_IVC120, "IVC-120G" },
246 { 0xa182ff06, BTTV_IVC120, "IVC-120G" },
247 { 0xa182ff07, BTTV_IVC120, "IVC-120G" },
248 { 0xa182ff08, BTTV_IVC120, "IVC-120G" },
249 { 0xa182ff09, BTTV_IVC120, "IVC-120G" },
250 { 0xa182ff0a, BTTV_IVC120, "IVC-120G" },
251 { 0xa182ff0b, BTTV_IVC120, "IVC-120G" },
252 { 0xa182ff0c, BTTV_IVC120, "IVC-120G" },
253 { 0xa182ff0d, BTTV_IVC120, "IVC-120G" },
254 { 0xa182ff0e, BTTV_IVC120, "IVC-120G" },
255 { 0xa182ff0f, BTTV_IVC120, "IVC-120G" },
256
257 { 0x41424344, BTTV_GRANDTEC, "GrandTec Multi Capture" },
258 { 0x01020304, BTTV_XGUARD, "Grandtec Grand X-Guard" },
259
260 { 0x18501851, BTTV_CHRONOS_VS2, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
261 { 0xa0501851, BTTV_CHRONOS_VS2, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
262 { 0x18511851, BTTV_FLYVIDEO98EZ, "FlyVideo 98EZ (LR51)/ CyberMail AV" },
263 { 0x18521852, BTTV_TYPHOON_TVIEW, "FlyVideo 98FM (LR50)/ Typhoon TView TV/FM Tuner" },
264 { 0x41a0a051, BTTV_FLYVIDEO_98FM, "Lifeview FlyVideo 98 LR50 Rev Q" },
265 { 0x18501f7f, BTTV_FLYVIDEO_98, "Lifeview Flyvideo 98" },
266
267 { 0x010115cb, BTTV_GMV1, "AG GMV1" },
268 { 0x010114c7, BTTV_MODTEC_205, "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV" },
269
270 { 0x10b42636, BTTV_HAUPPAUGE878, "STB ???" },
271 { 0x217d6606, BTTV_WINFAST2000, "Leadtek WinFast TV 2000" },
272 { 0xfff6f6ff, BTTV_WINFAST2000, "Leadtek WinFast TV 2000" },
273 { 0x03116000, BTTV_SENSORAY311, "Sensoray 311" },
274 { 0x00790e11, BTTV_WINDVR, "Canopus WinDVR PCI" },
275 { 0xa0fca1a0, BTTV_ZOLTRIX, "Face to Face Tvmax" },
276 { 0x20007063, BTTV_PC_HDTV, "pcHDTV HD-2000 TV"},
277 { 0x82b2aa6a, BTTV_SIMUS_GVC1100, "SIMUS GVC1100" },
278 { 0x146caa0c, BTTV_PV951, "ituner spectra8" },
279 { 0x200a1295, BTTV_PXC200, "ImageNation PXC200A" },
280
281 { 0x40111554, BTTV_PV_BT878P_9B, "Prolink Pixelview PV-BT" },
282 { 0x17de0a01, BTTV_KWORLD, "Mecer TV/FM/Video Tuner" },
283
284 { 0x01051805, BTTV_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #1" },
285 { 0x01061805, BTTV_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #2" },
286 { 0x01071805, BTTV_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #3" },
287 { 0x01081805, BTTV_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #4" },
288
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700289 { 0x15409511, BTTV_ACORP_Y878F, "Acorp Y878F" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700291 /* likely broken, vendor id doesn't match the other magic views ...
292 * { 0xa0fca04f, BTTV_MAGICTVIEW063, "Guillemot Maxi TV Video 3" }, */
293
294 /* DVB cards (using pci function .1 for mpeg data xfer) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 { 0x01010071, BTTV_NEBULA_DIGITV, "Nebula Electronics DigiTV" },
296 { 0x07611461, BTTV_AVDVBT_761, "AverMedia AverTV DVB-T 761" },
297 { 0x001c11bd, BTTV_PINNACLESAT, "Pinnacle PCTV Sat" },
298 { 0x002611bd, BTTV_TWINHAN_DST, "Pinnacle PCTV SAT CI" },
299 { 0x00011822, BTTV_TWINHAN_DST, "Twinhan VisionPlus DVB" },
300 { 0xfc00270f, BTTV_TWINHAN_DST, "ChainTech digitop DST-1000 DVB-S" },
301 { 0x07711461, BTTV_AVDVBT_771, "AVermedia AverTV DVB-T 771" },
Mauro Carvalho Chehab33ac6b52005-09-09 13:03:56 -0700302 { 0xdb1018ac, BTTV_DVICO_DVBT_LITE, "DViCO FusionHDTV DVB-T Lite" },
303 { 0xd50018ac, BTTV_DVICO_FUSIONHDTV_5_LITE, "DViCO FusionHDTV 5 Lite" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 { 0, -1, NULL }
306};
307
308/* ----------------------------------------------------------------------- */
309/* array with description for bt848 / bt878 tv/grabber cards */
310
311struct tvcard bttv_tvcards[] = {
312{
313/* ---- card 0x00 ---------------------------------- */
314 .name = " *** UNKNOWN/GENERIC *** ",
315 .video_inputs = 4,
316 .audio_inputs = 1,
317 .tuner = 0,
318 .svhs = 2,
319 .muxsel = { 2, 3, 1, 0},
320 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700321 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322},{
323 .name = "MIRO PCTV",
324 .video_inputs = 4,
325 .audio_inputs = 1,
326 .tuner = 0,
327 .svhs = 2,
328 .gpiomask = 15,
329 .muxsel = { 2, 3, 1, 1},
330 .audiomux = { 2, 0, 0, 0, 10},
331 .needs_tvaudio = 1,
332 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700333 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334},{
335 .name = "Hauppauge (bt848)",
336 .video_inputs = 4,
337 .audio_inputs = 1,
338 .tuner = 0,
339 .svhs = 2,
340 .gpiomask = 7,
341 .muxsel = { 2, 3, 1, 1},
342 .audiomux = { 0, 1, 2, 3, 4},
343 .needs_tvaudio = 1,
344 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700345 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346},{
347 .name = "STB, Gateway P/N 6000699 (bt848)",
348 .video_inputs = 3,
349 .audio_inputs = 1,
350 .tuner = 0,
351 .svhs = 2,
352 .gpiomask = 7,
353 .muxsel = { 2, 3, 1, 1},
354 .audiomux = { 4, 0, 2, 3, 1},
355 .no_msp34xx = 1,
356 .needs_tvaudio = 1,
357 .tuner_type = TUNER_PHILIPS_NTSC,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700358 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 .pll = PLL_28,
360 .has_radio = 1,
361},{
362
363/* ---- card 0x04 ---------------------------------- */
364 .name = "Intel Create and Share PCI/ Smart Video Recorder III",
365 .video_inputs = 4,
366 .audio_inputs = 0,
367 .tuner = -1,
368 .svhs = 2,
369 .gpiomask = 0,
370 .muxsel = { 2, 3, 1, 1},
371 .audiomux = { 0 },
372 .needs_tvaudio = 0,
373 .tuner_type = 4,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700374 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375},{
376 .name = "Diamond DTV2000",
377 .video_inputs = 4,
378 .audio_inputs = 1,
379 .tuner = 0,
380 .svhs = 2,
381 .gpiomask = 3,
382 .muxsel = { 2, 3, 1, 0},
383 .audiomux = { 0, 1, 0, 1, 3},
384 .needs_tvaudio = 1,
385 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700386 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387},{
388 .name = "AVerMedia TVPhone",
389 .video_inputs = 3,
390 .audio_inputs = 1,
391 .tuner = 0,
392 .svhs = 3,
393 .muxsel = { 2, 3, 1, 1},
394 .gpiomask = 0x0f,
395 .audiomux = { 0x0c, 0x04, 0x08, 0x04, 0},
396 /* 0x04 for some cards ?? */
397 .needs_tvaudio = 1,
398 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700399 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 .audio_hook = avermedia_tvphone_audio,
401 .has_remote = 1,
402},{
403 .name = "MATRIX-Vision MV-Delta",
404 .video_inputs = 5,
405 .audio_inputs = 1,
406 .tuner = -1,
407 .svhs = 3,
408 .gpiomask = 0,
409 .muxsel = { 2, 3, 1, 0, 0},
410 .audiomux = {0 },
411 .needs_tvaudio = 1,
412 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700413 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414},{
415
416/* ---- card 0x08 ---------------------------------- */
417 .name = "Lifeview FlyVideo II (Bt848) LR26 / MAXI TV Video PCI2 LR26",
418 .video_inputs = 4,
419 .audio_inputs = 1,
420 .tuner = 0,
421 .svhs = 2,
422 .gpiomask = 0xc00,
423 .muxsel = { 2, 3, 1, 1},
424 .audiomux = { 0, 0xc00, 0x800, 0x400, 0xc00, 0},
425 .needs_tvaudio = 1,
426 .pll = PLL_28,
427 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700428 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429},{
430 .name = "IMS/IXmicro TurboTV",
431 .video_inputs = 3,
432 .audio_inputs = 1,
433 .tuner = 0,
434 .svhs = 2,
435 .gpiomask = 3,
436 .muxsel = { 2, 3, 1, 1},
437 .audiomux = { 1, 1, 2, 3, 0},
438 .needs_tvaudio = 0,
439 .pll = PLL_28,
440 .tuner_type = TUNER_TEMIC_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700441 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442},{
443 .name = "Hauppauge (bt878)",
444 .video_inputs = 4,
445 .audio_inputs = 1,
446 .tuner = 0,
447 .svhs = 2,
448 .gpiomask = 0x0f, /* old: 7 */
449 .muxsel = { 2, 0, 1, 1},
450 .audiomux = { 0, 1, 2, 3, 4},
451 .needs_tvaudio = 1,
452 .pll = PLL_28,
453 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700454 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455},{
456 .name = "MIRO PCTV pro",
457 .video_inputs = 3,
458 .audio_inputs = 1,
459 .tuner = 0,
460 .svhs = 2,
461 .gpiomask = 0x3014f,
462 .muxsel = { 2, 3, 1, 1},
463 .audiomux = { 0x20001,0x10001, 0, 0,10},
464 .needs_tvaudio = 1,
465 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700466 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467},{
468
469/* ---- card 0x0c ---------------------------------- */
470 .name = "ADS Technologies Channel Surfer TV (bt848)",
471 .video_inputs = 3,
472 .audio_inputs = 1,
473 .tuner = 0,
474 .svhs = 2,
475 .gpiomask = 15,
476 .muxsel = { 2, 3, 1, 1},
477 .audiomux = { 13, 14, 11, 7, 0, 0},
478 .needs_tvaudio = 1,
479 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700480 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481},{
482 .name = "AVerMedia TVCapture 98",
483 .video_inputs = 3,
484 .audio_inputs = 4,
485 .tuner = 0,
486 .svhs = 2,
487 .gpiomask = 15,
488 .muxsel = { 2, 3, 1, 1},
489 .audiomux = { 13, 14, 11, 7, 0, 0},
490 .needs_tvaudio = 1,
491 .msp34xx_alt = 1,
492 .pll = PLL_28,
493 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700494 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 .audio_hook = avermedia_tv_stereo_audio,
496},{
497 .name = "Aimslab Video Highway Xtreme (VHX)",
498 .video_inputs = 3,
499 .audio_inputs = 1,
500 .tuner = 0,
501 .svhs = 2,
502 .gpiomask = 7,
503 .muxsel = { 2, 3, 1, 1},
504 .audiomux = { 0, 2, 1, 3, 4}, /* old: { 0, 1, 2, 3, 4} */
505 .needs_tvaudio = 1,
506 .pll = PLL_28,
507 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700508 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509},{
510 .name = "Zoltrix TV-Max",
511 .video_inputs = 3,
512 .audio_inputs = 1,
513 .tuner = 0,
514 .svhs = 2,
515 .gpiomask = 15,
516 .muxsel = { 2, 3, 1, 1},
517 .audiomux = {0 , 0, 1 , 0, 10},
518 .needs_tvaudio = 1,
519 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700520 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521},{
522
523/* ---- card 0x10 ---------------------------------- */
524 .name = "Prolink Pixelview PlayTV (bt878)",
525 .video_inputs = 3,
526 .audio_inputs = 1,
527 .tuner = 0,
528 .svhs = 2,
529 .gpiomask = 0x01fe00,
530 .muxsel = { 2, 3, 1, 1},
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700531 /* 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 .audiomux = { 0x001e00, 0, 0x018000, 0x014000, 0x002000, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 .needs_tvaudio = 1,
534 .pll = PLL_28,
535 .tuner_type = -1,
536},{
537 .name = "Leadtek WinView 601",
538 .video_inputs = 3,
539 .audio_inputs = 1,
540 .tuner = 0,
541 .svhs = 2,
542 .gpiomask = 0x8300f8,
543 .muxsel = { 2, 3, 1, 1,0},
544 .audiomux = { 0x4fa007,0xcfa007,0xcfa007,0xcfa007,0xcfa007,0xcfa007},
545 .needs_tvaudio = 1,
546 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700547 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 .audio_hook = winview_audio,
549 .has_radio = 1,
550},{
551 .name = "AVEC Intercapture",
552 .video_inputs = 3,
553 .audio_inputs = 2,
554 .tuner = 0,
555 .svhs = 2,
556 .gpiomask = 0,
557 .muxsel = {2, 3, 1, 1},
558 .audiomux = {1, 0, 0, 0, 0},
559 .needs_tvaudio = 1,
560 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700561 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562},{
563 .name = "Lifeview FlyVideo II EZ /FlyKit LR38 Bt848 (capture only)",
564 .video_inputs = 4,
565 .audio_inputs = 1,
566 .tuner = -1,
567 .svhs = -1,
568 .gpiomask = 0x8dff00,
569 .muxsel = { 2, 3, 1, 1},
570 .audiomux = { 0 },
571 .no_msp34xx = 1,
572 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700573 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574},{
575
576/* ---- card 0x14 ---------------------------------- */
577 .name = "CEI Raffles Card",
578 .video_inputs = 3,
579 .audio_inputs = 3,
580 .tuner = 0,
581 .svhs = 2,
582 .muxsel = {2, 3, 1, 1},
583 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700584 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585},{
586 .name = "Lifeview FlyVideo 98/ Lucky Star Image World ConferenceTV LR50",
587 .video_inputs = 4,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700588 .audio_inputs = 2, /* tuner, line in */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 .tuner = 0,
590 .svhs = 2,
591 .gpiomask = 0x1800,
592 .muxsel = { 2, 3, 1, 1},
593 .audiomux = { 0, 0x800, 0x1000, 0x1000, 0x1800},
594 .pll = PLL_28,
595 .tuner_type = TUNER_PHILIPS_PAL_I,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700596 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597},{
598 .name = "Askey CPH050/ Phoebe Tv Master + FM",
599 .video_inputs = 3,
600 .audio_inputs = 1,
601 .tuner = 0,
602 .svhs = 2,
603 .gpiomask = 0xc00,
604 .muxsel = { 2, 3, 1, 1},
605 .audiomux = {0, 1, 0x800, 0x400, 0xc00, 0},
606 .needs_tvaudio = 1,
607 .pll = PLL_28,
608 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700609 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610},{
611 .name = "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV, bt878",
612 .video_inputs = 3,
613 .audio_inputs = 1,
614 .tuner = 0,
615 .svhs = -1,
616 .gpiomask = 7,
617 .muxsel = { 2, 3, -1 },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700618 .digital_mode = DIGITAL_MODE_CAMERA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 .audiomux = { 0, 0, 0, 0, 0 },
620 .no_msp34xx = 1,
621 .pll = PLL_28,
622 .tuner_type = TUNER_ALPS_TSBB5_PAL_I,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700623 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624},{
625
626/* ---- card 0x18 ---------------------------------- */
627 .name = "Askey CPH05X/06X (bt878) [many vendors]",
628 .video_inputs = 3,
629 .audio_inputs = 1,
630 .tuner = 0,
631 .svhs = 2,
632 .gpiomask = 0xe00,
633 .muxsel = { 2, 3, 1, 1},
634 .audiomux = {0x400, 0x400, 0x400, 0x400, 0xc00},
635 .needs_tvaudio = 1,
636 .pll = PLL_28,
637 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700638 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 .has_remote = 1,
640},{
641 .name = "Terratec TerraTV+ Version 1.0 (Bt848)/ Terra TValue Version 1.0/ Vobis TV-Boostar",
642 .video_inputs = 3,
643 .audio_inputs = 1,
644 .tuner = 0,
645 .svhs = 2,
646 .gpiomask = 0x1f0fff,
647 .muxsel = { 2, 3, 1, 1},
648 .audiomux = { 0x20000, 0x30000, 0x10000, 0, 0x40000},
649 .needs_tvaudio = 0,
650 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700651 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 .audio_hook = terratv_audio,
653},{
654 .name = "Hauppauge WinCam newer (bt878)",
655 .video_inputs = 4,
656 .audio_inputs = 1,
657 .tuner = 0,
658 .svhs = 3,
659 .gpiomask = 7,
660 .muxsel = { 2, 0, 1, 1},
661 .audiomux = { 0, 1, 2, 3, 4},
662 .needs_tvaudio = 1,
663 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700664 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665},{
666 .name = "Lifeview FlyVideo 98/ MAXI TV Video PCI2 LR50",
667 .video_inputs = 4,
668 .audio_inputs = 2,
669 .tuner = 0,
670 .svhs = 2,
671 .gpiomask = 0x1800,
672 .muxsel = { 2, 3, 1, 1},
673 .audiomux = { 0, 0x800, 0x1000, 0x1000, 0x1800},
674 .pll = PLL_28,
675 .tuner_type = TUNER_PHILIPS_SECAM,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700676 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677},{
678
679/* ---- card 0x1c ---------------------------------- */
680 .name = "Terratec TerraTV+ Version 1.1 (bt878)",
681 .video_inputs = 3,
682 .audio_inputs = 1,
683 .tuner = 0,
684 .svhs = 2,
685 .gpiomask = 0x1f0fff,
686 .muxsel = { 2, 3, 1, 1},
687 .audiomux = { 0x20000, 0x30000, 0x10000, 0x00000, 0x40000},
688 .needs_tvaudio = 0,
689 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700690 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 .audio_hook = terratv_audio,
692 /* GPIO wiring:
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700693 External 20 pin connector (for Active Radio Upgrade board)
694 gpio00: i2c-sda
695 gpio01: i2c-scl
696 gpio02: om5610-data
697 gpio03: om5610-clk
698 gpio04: om5610-wre
699 gpio05: om5610-stereo
700 gpio06: rds6588-davn
701 gpio07: Pin 7 n.c.
702 gpio08: nIOW
703 gpio09+10: nIOR, nSEL ?? (bt878)
704 gpio09: nIOR (bt848)
705 gpio10: nSEL (bt848)
706 Sound Routing:
707 gpio16: u2-A0 (1st 4052bt)
708 gpio17: u2-A1
709 gpio18: u2-nEN
710 gpio19: u4-A0 (2nd 4052)
711 gpio20: u4-A1
712 u4-nEN - GND
713 Btspy:
714 00000 : Cdrom (internal audio input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 10000 : ext. Video audio input
716 20000 : TV Mono
717 a0000 : TV Mono/2
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700718 1a0000 : TV Stereo
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 30000 : Radio
720 40000 : Mute
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700721*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723},{
724 /* Jannik Fritsch <jannik@techfak.uni-bielefeld.de> */
725 .name = "Imagenation PXC200",
726 .video_inputs = 5,
727 .audio_inputs = 1,
728 .tuner = -1,
729 .svhs = 1, /* was: 4 */
730 .gpiomask = 0,
731 .muxsel = { 2, 3, 1, 0, 0},
732 .audiomux = { 0 },
733 .needs_tvaudio = 1,
734 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700735 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 .muxsel_hook = PXC200_muxsel,
737
738},{
739 .name = "Lifeview FlyVideo 98 LR50",
740 .video_inputs = 4,
741 .audio_inputs = 1,
742 .tuner = 0,
743 .svhs = 2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700744 .gpiomask = 0x1800, /* 0x8dfe00 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 .muxsel = { 2, 3, 1, 1},
746 .audiomux = { 0, 0x0800, 0x1000, 0x1000, 0x1800, 0 },
747 .pll = PLL_28,
748 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700749 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750},{
751 .name = "Formac iProTV, Formac ProTV I (bt848)",
752 .video_inputs = 4,
753 .audio_inputs = 1,
754 .tuner = 0,
755 .svhs = 3,
756 .gpiomask = 1,
757 .muxsel = { 2, 3, 1, 1},
758 .audiomux = { 1, 0, 0, 0, 0 },
759 .pll = PLL_28,
760 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700761 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762},{
763
764/* ---- card 0x20 ---------------------------------- */
765 .name = "Intel Create and Share PCI/ Smart Video Recorder III",
766 .video_inputs = 4,
767 .audio_inputs = 0,
768 .tuner = -1,
769 .svhs = 2,
770 .gpiomask = 0,
771 .muxsel = { 2, 3, 1, 1},
772 .audiomux = { 0 },
773 .needs_tvaudio = 0,
774 .tuner_type = 4,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700775 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776},{
777 .name = "Terratec TerraTValue Version Bt878",
778 .video_inputs = 3,
779 .audio_inputs = 1,
780 .tuner = 0,
781 .svhs = 2,
782 .gpiomask = 0xffff00,
783 .muxsel = { 2, 3, 1, 1},
784 .audiomux = { 0x500, 0, 0x300, 0x900, 0x900},
785 .needs_tvaudio = 1,
786 .pll = PLL_28,
787 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700788 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789},{
790 .name = "Leadtek WinFast 2000/ WinFast 2000 XP",
791 .video_inputs = 4,
792 .audio_inputs = 1,
793 .tuner = 0,
794 .svhs = 2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700795 .muxsel = { 2, 3, 1, 1, 0}, /* TV, CVid, SVid, CVid over SVid connector */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */
797 .gpiomask = 0xb33000,
798 .audiomux = { 0x122000,0x1000,0x0000,0x620000,0x800000 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /* Audio Routing for "WinFast 2000 XP" (no tv stereo !)
800 gpio23 -- hef4052:nEnable (0x800000)
801 gpio12 -- hef4052:A1
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700802 gpio13 -- hef4052:A0
803 0x0000: external audio
804 0x1000: FM
805 0x2000: TV
806 0x3000: n.c.
807 Note: There exists another variant "Winfast 2000" with tv stereo !?
808 Note: eeprom only contains FF and pci subsystem id 107d:6606
809 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 .needs_tvaudio = 0,
811 .pll = PLL_28,
812 .has_radio = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700813 .tuner_type = 5, /* default for now, gpio reads BFFF06 for Pal bg+dk */
814 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 .audio_hook = winfast2000_audio,
816 .has_remote = 1,
817},{
818 .name = "Lifeview FlyVideo 98 LR50 / Chronos Video Shuttle II",
819 .video_inputs = 4,
820 .audio_inputs = 3,
821 .tuner = 0,
822 .svhs = 2,
823 .gpiomask = 0x1800,
824 .muxsel = { 2, 3, 1, 1},
825 .audiomux = { 0, 0x800, 0x1000, 0x1000, 0x1800},
826 .pll = PLL_28,
827 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700828 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829},{
830
831/* ---- card 0x24 ---------------------------------- */
832 .name = "Lifeview FlyVideo 98FM LR50 / Typhoon TView TV/FM Tuner",
833 .video_inputs = 4,
834 .audio_inputs = 3,
835 .tuner = 0,
836 .svhs = 2,
837 .gpiomask = 0x1800,
838 .muxsel = { 2, 3, 1, 1},
839 .audiomux = { 0, 0x800, 0x1000, 0x1000, 0x1800, 0 },
840 .pll = PLL_28,
841 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700842 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 .has_radio = 1,
844},{
845 .name = "Prolink PixelView PlayTV pro",
846 .video_inputs = 3,
847 .audio_inputs = 1,
848 .tuner = 0,
849 .svhs = 2,
850 .gpiomask = 0xff,
851 .muxsel = { 2, 3, 1, 1 },
852 .audiomux = { 0x21, 0x20, 0x24, 0x2c, 0x29, 0x29 },
853 .no_msp34xx = 1,
854 .pll = PLL_28,
855 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700856 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857},{
858 .name = "Askey CPH06X TView99",
859 .video_inputs = 4,
860 .audio_inputs = 1,
861 .tuner = 0,
862 .svhs = 2,
863 .gpiomask = 0x551e00,
864 .muxsel = { 2, 3, 1, 0},
865 .audiomux = { 0x551400, 0x551200, 0, 0, 0x551c00, 0x551200 },
866 .needs_tvaudio = 1,
867 .pll = PLL_28,
868 .tuner_type = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700869 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 .has_remote = 1,
871},{
872 .name = "Pinnacle PCTV Studio/Rave",
873 .video_inputs = 3,
874 .audio_inputs = 1,
875 .tuner = 0,
876 .svhs = 2,
877 .gpiomask = 0x03000F,
878 .muxsel = { 2, 3, 1, 1},
879 .audiomux = { 2, 0xd0001, 0, 0, 1},
880 .needs_tvaudio = 0,
881 .pll = PLL_28,
882 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700883 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884},{
885
886/* ---- card 0x28 ---------------------------------- */
887 .name = "STB TV PCI FM, Gateway P/N 6000704 (bt878), 3Dfx VoodooTV 100",
888 .video_inputs = 3,
889 .audio_inputs = 1,
890 .tuner = 0,
891 .svhs = 2,
892 .gpiomask = 7,
893 .muxsel = { 2, 3, 1, 1},
894 .audiomux = { 4, 0, 2, 3, 1},
895 .no_msp34xx = 1,
896 .needs_tvaudio = 1,
897 .tuner_type = TUNER_PHILIPS_NTSC,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700898 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 .pll = PLL_28,
900 .has_radio = 1,
901},{
902 .name = "AVerMedia TVPhone 98",
903 .video_inputs = 3,
904 .audio_inputs = 4,
905 .tuner = 0,
906 .svhs = 2,
907 .gpiomask = 15,
908 .muxsel = { 2, 3, 1, 1},
909 .audiomux = { 13, 4, 11, 7, 0, 0},
910 .needs_tvaudio = 1,
911 .pll = PLL_28,
912 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700913 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 .has_radio = 1,
915 .audio_hook = avermedia_tvphone_audio,
916},{
917 .name = "ProVideo PV951", /* pic16c54 */
918 .video_inputs = 3,
919 .audio_inputs = 1,
920 .tuner = 0,
921 .svhs = 2,
922 .gpiomask = 0,
923 .muxsel = { 2, 3, 1, 1},
924 .audiomux = { 0, 0, 0, 0, 0},
925 .needs_tvaudio = 1,
926 .no_msp34xx = 1,
927 .pll = PLL_28,
928 .tuner_type = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700929 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930},{
931 .name = "Little OnAir TV",
932 .video_inputs = 3,
933 .audio_inputs = 1,
934 .tuner = 0,
935 .svhs = 2,
936 .gpiomask = 0xe00b,
937 .muxsel = {2, 3, 1, 1},
938 .audiomux = {0xff9ff6, 0xff9ff6, 0xff1ff7, 0, 0xff3ffc},
939 .no_msp34xx = 1,
940 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700941 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942},{
943
944/* ---- card 0x2c ---------------------------------- */
945 .name = "Sigma TVII-FM",
946 .video_inputs = 2,
947 .audio_inputs = 1,
948 .tuner = 0,
949 .svhs = -1,
950 .gpiomask = 3,
951 .muxsel = {2, 3, 1, 1},
952 .audiomux = {1, 1, 0, 2, 3},
953 .no_msp34xx = 1,
954 .pll = PLL_NONE,
955 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700956 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957},{
958 .name = "MATRIX-Vision MV-Delta 2",
959 .video_inputs = 5,
960 .audio_inputs = 1,
961 .tuner = -1,
962 .svhs = 3,
963 .gpiomask = 0,
964 .muxsel = { 2, 3, 1, 0, 0},
965 .audiomux = {0 },
966 .no_msp34xx = 1,
967 .pll = PLL_28,
968 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700969 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970},{
971 .name = "Zoltrix Genie TV/FM",
972 .video_inputs = 3,
973 .audio_inputs = 1,
974 .tuner = 0,
975 .svhs = 2,
976 .gpiomask = 0xbcf03f,
977 .muxsel = { 2, 3, 1, 1},
978 .audiomux = { 0xbc803f, 0xbc903f, 0xbcb03f, 0, 0xbcb03f},
979 .no_msp34xx = 1,
980 .pll = PLL_28,
981 .tuner_type = 21,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700982 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983},{
984 .name = "Terratec TV/Radio+",
985 .video_inputs = 3,
986 .audio_inputs = 1,
987 .tuner = 0,
988 .svhs = 2,
989 .gpiomask = 0x70000,
990 .muxsel = { 2, 3, 1, 1},
991 .audiomux = { 0x20000, 0x30000, 0x10000, 0, 0x40000, 0x20000 },
992 .needs_tvaudio = 1,
993 .no_msp34xx = 1,
994 .pll = PLL_35,
995 .tuner_type = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700996 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 .has_radio = 1,
998},{
999
1000/* ---- card 0x30 ---------------------------------- */
1001 .name = "Askey CPH03x/ Dynalink Magic TView",
1002 .video_inputs = 3,
1003 .audio_inputs = 1,
1004 .tuner = 0,
1005 .svhs = 2,
1006 .gpiomask = 15,
1007 .muxsel = { 2, 3, 1, 1},
1008 .audiomux = {2,0,0,0,1},
1009 .needs_tvaudio = 1,
1010 .pll = PLL_28,
1011 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001012 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013},{
1014 .name = "IODATA GV-BCTV3/PCI",
1015 .video_inputs = 3,
1016 .audio_inputs = 1,
1017 .tuner = 0,
1018 .svhs = 2,
1019 .gpiomask = 0x010f00,
1020 .muxsel = {2, 3, 0, 0},
1021 .audiomux = {0x10000, 0, 0x10000, 0, 0, 0},
1022 .no_msp34xx = 1,
1023 .pll = PLL_28,
1024 .tuner_type = TUNER_ALPS_TSHC6_NTSC,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001025 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 .audio_hook = gvbctv3pci_audio,
1027},{
1028 .name = "Prolink PV-BT878P+4E / PixelView PlayTV PAK / Lenco MXTV-9578 CP",
1029 .video_inputs = 5,
1030 .audio_inputs = 1,
1031 .tuner = 0,
1032 .svhs = 3,
1033 .gpiomask = 0xAA0000,
1034 .muxsel = { 2,3,1,1,-1 },
1035 .digital_mode = DIGITAL_MODE_CAMERA,
1036 .audiomux = { 0x20000, 0, 0x80000, 0x80000, 0xa8000, 0x46000 },
1037 .no_msp34xx = 1,
1038 .pll = PLL_28,
1039 .tuner_type = TUNER_PHILIPS_PAL_I,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001040 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 .has_remote = 1,
1042 /* GPIO wiring: (different from Rev.4C !)
1043 GPIO17: U4.A0 (first hef4052bt)
1044 GPIO19: U4.A1
1045 GPIO20: U5.A1 (second hef4052bt)
1046 GPIO21: U4.nEN
1047 GPIO22: BT832 Reset Line
1048 GPIO23: A5,A0, U5,nEN
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001049 Note: At i2c=0x8a is a Bt832 chip, which changes to 0x88 after being reset via GPIO22
1050 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051},{
1052 .name = "Eagle Wireless Capricorn2 (bt878A)",
1053 .video_inputs = 4,
1054 .audio_inputs = 1,
1055 .tuner = 0,
1056 .svhs = 2,
1057 .gpiomask = 7,
1058 .muxsel = { 2, 0, 1, 1},
1059 .audiomux = { 0, 1, 2, 3, 4},
1060 .pll = PLL_28,
1061 .tuner_type = -1 /* TUNER_ALPS_TMDH2_NTSC */,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001062 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063},{
1064
1065/* ---- card 0x34 ---------------------------------- */
1066 /* David Härdeman <david@2gen.com> */
1067 .name = "Pinnacle PCTV Studio Pro",
1068 .video_inputs = 4,
1069 .audio_inputs = 1,
1070 .tuner = 0,
1071 .svhs = 3,
1072 .gpiomask = 0x03000F,
1073 .muxsel = { 2, 3, 1, 1},
1074 .audiomux = { 1, 0xd0001, 0, 0, 10},
1075 /* sound path (5 sources):
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001076 MUX1 (mask 0x03), Enable Pin 0x08 (0=enable, 1=disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 0= ext. Audio IN
1078 1= from MUX2
1079 2= Mono TV sound from Tuner
1080 3= not connected
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001081 MUX2 (mask 0x30000):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 0,2,3= from MSP34xx
1083 1= FM stereo Radio from Tuner */
1084 .needs_tvaudio = 0,
1085 .pll = PLL_28,
1086 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001087 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088},{
1089 /* Claas Langbehn <claas@bigfoot.com>,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001090 Sven Grothklags <sven@upb.de> */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 .name = "Typhoon TView RDS + FM Stereo / KNC1 TV Station RDS",
1092 .video_inputs = 4,
1093 .audio_inputs = 3,
1094 .tuner = 0,
1095 .svhs = 2,
1096 .gpiomask = 0x1c,
1097 .muxsel = { 2, 3, 1, 1},
1098 .audiomux = { 0, 0, 0x10, 8, 4 },
1099 .needs_tvaudio = 1,
1100 .pll = PLL_28,
1101 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001102 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 .has_radio = 1,
1104},{
1105 /* Tim Röstermundt <rosterm@uni-muenster.de>
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001106 in de.comp.os.unix.linux.hardware:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 options bttv card=0 pll=1 radio=1 gpiomask=0x18e0
1108 audiomux=0x44c71f,0x44d71f,0,0x44d71f,0x44dfff
1109 options tuner type=5 */
1110 .name = "Lifeview FlyVideo 2000 /FlyVideo A2/ Lifetec LT 9415 TV [LR90]",
1111 .video_inputs = 4,
1112 .audio_inputs = 1,
1113 .tuner = 0,
1114 .svhs = 2,
1115 .gpiomask = 0x18e0,
1116 .muxsel = { 2, 3, 1, 1},
1117 .audiomux = { 0x0000,0x0800,0x1000,0x1000,0x18e0 },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001118 /* For cards with tda9820/tda9821:
1119 0x0000: Tuner normal stereo
1120 0x0080: Tuner A2 SAP (second audio program = Zweikanalton)
1121 0x0880: Tuner A2 stereo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 .pll = PLL_28,
1123 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001124 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125},{
1126 /* Miguel Angel Alvarez <maacruz@navegalia.com>
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001127 old Easy TV BT848 version (model CPH031) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 .name = "Askey CPH031/ BESTBUY Easy TV",
1129 .video_inputs = 4,
1130 .audio_inputs = 1,
1131 .tuner = 0,
1132 .svhs = 2,
1133 .gpiomask = 0xF,
1134 .muxsel = { 2, 3, 1, 0},
1135 .audiomux = { 2, 0, 0, 0, 10},
1136 .needs_tvaudio = 0,
1137 .pll = PLL_28,
1138 .tuner_type = TUNER_TEMIC_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001139 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140},{
1141
1142/* ---- card 0x38 ---------------------------------- */
1143 /* Gordon Heydon <gjheydon@bigfoot.com ('98) */
1144 .name = "Lifeview FlyVideo 98FM LR50",
1145 .video_inputs = 4,
1146 .audio_inputs = 3,
1147 .tuner = 0,
1148 .svhs = 2,
1149 .gpiomask = 0x1800,
1150 .muxsel = { 2, 3, 1, 1},
1151 .audiomux = { 0, 0x800, 0x1000, 0x1000, 0x1800, 0 },
1152 .pll = PLL_28,
1153 .tuner_type = 5,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001154 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155},{
1156 /* This is the ultimate cheapo capture card
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001157 * just a BT848A on a small PCB!
1158 * Steve Hosgood <steve@equiinet.com> */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 .name = "GrandTec 'Grand Video Capture' (Bt848)",
1160 .video_inputs = 2,
1161 .audio_inputs = 0,
1162 .tuner = -1,
1163 .svhs = 1,
1164 .gpiomask = 0,
1165 .muxsel = { 3, 1 },
1166 .audiomux = { 0 },
1167 .needs_tvaudio = 0,
1168 .no_msp34xx = 1,
1169 .pll = PLL_35,
1170 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001171 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001173 /* Daniel Herrington <daniel.herrington@home.com> */
1174 .name = "Askey CPH060/ Phoebe TV Master Only (No FM)",
1175 .video_inputs = 3,
1176 .audio_inputs = 1,
1177 .tuner = 0,
1178 .svhs = 2,
1179 .gpiomask = 0xe00,
1180 .muxsel = { 2, 3, 1, 1},
1181 .audiomux = { 0x400, 0x400, 0x400, 0x400, 0x800, 0x400 },
1182 .needs_tvaudio = 1,
1183 .pll = PLL_28,
1184 .tuner_type = TUNER_TEMIC_4036FY5_NTSC,
1185 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186},{
1187 /* Matti Mottus <mottus@physic.ut.ee> */
1188 .name = "Askey CPH03x TV Capturer",
1189 .video_inputs = 4,
1190 .audio_inputs = 1,
1191 .tuner = 0,
1192 .svhs = 2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001193 .gpiomask = 0x03000F,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 .muxsel = { 2, 3, 1, 0},
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001195 .audiomux = { 2,0,0,0,1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 .pll = PLL_28,
1197 .tuner_type = 0,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001198 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199},{
1200
1201/* ---- card 0x3c ---------------------------------- */
1202 /* Philip Blundell <philb@gnu.org> */
1203 .name = "Modular Technology MM100PCTV",
1204 .video_inputs = 2,
1205 .audio_inputs = 2,
1206 .tuner = 0,
1207 .svhs = -1,
1208 .gpiomask = 11,
1209 .muxsel = { 2, 3, 1, 1},
1210 .audiomux = { 2, 0, 0, 1, 8},
1211 .pll = PLL_35,
1212 .tuner_type = TUNER_TEMIC_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001213 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214},{
1215 /* Adrian Cox <adrian@humboldt.co.uk */
1216 .name = "AG Electronics GMV1",
1217 .video_inputs = 2,
1218 .audio_inputs = 0,
1219 .tuner = -1,
1220 .svhs = 1,
1221 .gpiomask = 0xF,
1222 .muxsel = { 2, 2},
1223 .audiomux = { },
1224 .no_msp34xx = 1,
1225 .needs_tvaudio = 0,
1226 .pll = PLL_28,
1227 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001228 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229},{
1230 /* Miguel Angel Alvarez <maacruz@navegalia.com>
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001231 new Easy TV BT878 version (model CPH061)
1232 special thanks to Informatica Mieres for providing the card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 .name = "Askey CPH061/ BESTBUY Easy TV (bt878)",
1234 .video_inputs = 3,
1235 .audio_inputs = 2,
1236 .tuner = 0,
1237 .svhs = 2,
1238 .gpiomask = 0xFF,
1239 .muxsel = { 2, 3, 1, 0},
1240 .audiomux = { 1, 0, 4, 4, 9},
1241 .needs_tvaudio = 0,
1242 .pll = PLL_28,
1243 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001244 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245},{
1246 /* Lukas Gebauer <geby@volny.cz> */
1247 .name = "ATI TV-Wonder",
1248 .video_inputs = 3,
1249 .audio_inputs = 1,
1250 .tuner = 0,
1251 .svhs = 2,
1252 .gpiomask = 0xf03f,
1253 .muxsel = { 2, 3, 1, 0 },
1254 .audiomux = { 0xbffe, 0, 0xbfff, 0, 0xbffe},
1255 .pll = PLL_28,
1256 .tuner_type = TUNER_TEMIC_4006FN5_MULTI_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001257 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258},{
1259
1260/* ---- card 0x40 ---------------------------------- */
1261 /* Lukas Gebauer <geby@volny.cz> */
1262 .name = "ATI TV-Wonder VE",
1263 .video_inputs = 2,
1264 .audio_inputs = 1,
1265 .tuner = 0,
1266 .svhs = -1,
1267 .gpiomask = 1,
1268 .muxsel = { 2, 3, 0, 1},
1269 .audiomux = { 0, 0, 1, 0, 0},
1270 .no_msp34xx = 1,
1271 .pll = PLL_28,
1272 .tuner_type = TUNER_TEMIC_4006FN5_MULTI_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001273 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274},{
1275 /* DeeJay <deejay@westel900.net (2000S) */
1276 .name = "Lifeview FlyVideo 2000S LR90",
1277 .video_inputs = 3,
1278 .audio_inputs = 3,
1279 .tuner = 0,
1280 .svhs = 2,
1281 .gpiomask = 0x18e0,
1282 .muxsel = { 2, 3, 0, 1},
1283 /* Radio changed from 1e80 to 0x800 to make
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001284 FlyVideo2000S in .hu happy (gm)*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 /* -dk-???: set mute=0x1800 for tda9874h daughterboard */
1286 .audiomux = { 0x0000,0x0800,0x1000,0x1000,0x1800, 0x1080 },
1287 .audio_hook = fv2000s_audio,
1288 .no_msp34xx = 1,
1289 .no_tda9875 = 1,
1290 .needs_tvaudio = 1,
1291 .pll = PLL_28,
1292 .tuner_type = 5,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001293 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294},{
1295 .name = "Terratec TValueRadio",
1296 .video_inputs = 3,
1297 .audio_inputs = 1,
1298 .tuner = 0,
1299 .svhs = 2,
1300 .gpiomask = 0xffff00,
1301 .muxsel = { 2, 3, 1, 1},
1302 .audiomux = { 0x500, 0x500, 0x300, 0x900, 0x900},
1303 .needs_tvaudio = 1,
1304 .pll = PLL_28,
1305 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001306 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 .has_radio = 1,
1308},{
1309 /* TANAKA Kei <peg00625@nifty.com> */
1310 .name = "IODATA GV-BCTV4/PCI",
1311 .video_inputs = 3,
1312 .audio_inputs = 1,
1313 .tuner = 0,
1314 .svhs = 2,
1315 .gpiomask = 0x010f00,
1316 .muxsel = {2, 3, 0, 0},
1317 .audiomux = {0x10000, 0, 0x10000, 0, 0, 0},
1318 .no_msp34xx = 1,
1319 .pll = PLL_28,
1320 .tuner_type = TUNER_SHARP_2U5JF5540_NTSC,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001321 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 .audio_hook = gvbctv3pci_audio,
1323},{
1324
1325/* ---- card 0x44 ---------------------------------- */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001326 .name = "3Dfx VoodooTV FM (Euro), VoodooTV 200 (USA)",
1327 /* try "insmod msp3400 simple=0" if you have
1328 * sound problems with this card. */
1329 .video_inputs = 4,
1330 .audio_inputs = 1,
1331 .tuner = 0,
1332 .svhs = -1,
1333 .gpiomask = 0x4f8a00,
1334 /* 0x100000: 1=MSP enabled (0=disable again)
1335 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1336 .audiomux = {0x947fff, 0x987fff,0x947fff,0x947fff, 0x947fff},
1337 /* tvtuner, radio, external,internal, mute, stereo
1338 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1339 .muxsel = { 2, 3 ,0 ,1},
1340 .tuner_type = TUNER_MT2032,
1341 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 .pll = PLL_28,
1343 .has_radio = 1,
1344},{
1345 /* Philip Blundell <pb@nexus.co.uk> */
1346 .name = "Active Imaging AIMMS",
1347 .video_inputs = 1,
1348 .audio_inputs = 0,
1349 .tuner = -1,
1350 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001351 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 .pll = PLL_28,
1353 .muxsel = { 2 },
1354 .gpiomask = 0
1355},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001356 /* Tomasz Pyra <hellfire@sedez.iq.pl> */
1357 .name = "Prolink Pixelview PV-BT878P+ (Rev.4C,8E)",
1358 .video_inputs = 3,
1359 .audio_inputs = 4,
1360 .tuner = 0,
1361 .svhs = 2,
1362 .gpiomask = 15,
1363 .muxsel = { 2, 3, 1, 1},
1364 .audiomux = { 0, 0, 11, 7, 13, 0}, /* TV and Radio with same GPIO ! */
1365 .needs_tvaudio = 1,
1366 .pll = PLL_28,
1367 .tuner_type = 25,
1368 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 .has_remote = 1,
1370 /* GPIO wiring:
1371 GPIO0: U4.A0 (hef4052bt)
1372 GPIO1: U4.A1
1373 GPIO2: U4.A1 (second hef4052bt)
1374 GPIO3: U4.nEN, U5.A0, A5.nEN
1375 GPIO8-15: vrd866b ?
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001376 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377},{
1378 .name = "Lifeview FlyVideo 98EZ (capture only) LR51",
1379 .video_inputs = 4,
1380 .audio_inputs = 0,
1381 .tuner = -1,
1382 .svhs = 2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001383 .muxsel = { 2, 3, 1, 1}, /* AV1, AV2, SVHS, CVid adapter on SVHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 .pll = PLL_28,
1385 .no_msp34xx = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001386 .tuner_type = UNSET,
1387 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388},{
1389
1390/* ---- card 0x48 ---------------------------------- */
1391 /* Dariusz Kowalewski <darekk@automex.pl> */
1392 .name = "Prolink Pixelview PV-BT878P+9B (PlayTV Pro rev.9B FM+NICAM)",
1393 .video_inputs = 4,
1394 .audio_inputs = 1,
1395 .tuner = 0,
1396 .svhs = 2,
1397 .gpiomask = 0x3f,
1398 .muxsel = { 2, 3, 1, 1 },
1399 .audiomux = { 0x01, 0x00, 0x03, 0x03, 0x09, 0x02 },
1400 .needs_tvaudio = 1,
1401 .no_msp34xx = 1,
1402 .no_tda9875 = 1,
1403 .pll = PLL_28,
1404 .tuner_type = 5,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001405 .tuner_addr = ADDR_UNSET,
1406 .audio_hook = pvbt878p9b_audio, /* Note: not all cards have stereo */
1407 .has_radio = 1, /* Note: not all cards have radio */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 .has_remote = 1,
1409 /* GPIO wiring:
1410 GPIO0: A0 hef4052
1411 GPIO1: A1 hef4052
1412 GPIO3: nEN hef4052
1413 GPIO8-15: vrd866b
1414 GPIO20,22,23: R30,R29,R28
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416},{
1417 /* Clay Kunz <ckunz@mail.arc.nasa.gov> */
1418 /* you must jumper JP5 for the card to work */
1419 .name = "Sensoray 311",
1420 .video_inputs = 5,
1421 .audio_inputs = 0,
1422 .tuner = -1,
1423 .svhs = 4,
1424 .gpiomask = 0,
1425 .muxsel = { 2, 3, 1, 0, 0},
1426 .audiomux = { 0 },
1427 .needs_tvaudio = 0,
1428 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001429 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430},{
1431 /* Miguel Freitas <miguel@cetuc.puc-rio.br> */
1432 .name = "RemoteVision MX (RV605)",
1433 .video_inputs = 16,
1434 .audio_inputs = 0,
1435 .tuner = -1,
1436 .svhs = -1,
1437 .gpiomask = 0x00,
1438 .gpiomask2 = 0x07ff,
1439 .muxsel = { 0x33, 0x13, 0x23, 0x43, 0xf3, 0x73, 0xe3, 0x03,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001440 0xd3, 0xb3, 0xc3, 0x63, 0x93, 0x53, 0x83, 0xa3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 .no_msp34xx = 1,
1442 .no_tda9875 = 1,
1443 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001444 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 .muxsel_hook = rv605_muxsel,
1446},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001447 .name = "Powercolor MTV878/ MTV878R/ MTV878F",
1448 .video_inputs = 3,
1449 .audio_inputs = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 .tuner = 0,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001451 .svhs = 2,
1452 .gpiomask = 0x1C800F, /* Bit0-2: Audio select, 8-12:remote control 14:remote valid 15:remote reset */
1453 .muxsel = { 2, 1, 1, },
1454 .audiomux = { 0, 1, 2, 2, 4 },
1455 .needs_tvaudio = 0,
1456 .tuner_type = TUNER_PHILIPS_PAL,
1457 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 .pll = PLL_28,
1459 .has_radio = 1,
1460},{
1461
1462/* ---- card 0x4c ---------------------------------- */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001463 /* Masaki Suzuki <masaki@btree.org> */
1464 .name = "Canopus WinDVR PCI (COMPAQ Presario 3524JP, 5112JP)",
1465 .video_inputs = 3,
1466 .audio_inputs = 1,
1467 .tuner = 0,
1468 .svhs = 2,
1469 .gpiomask = 0x140007,
1470 .muxsel = { 2, 3, 1, 1 },
1471 .audiomux = { 0, 1, 2, 3, 4, 0 },
1472 .tuner_type = TUNER_PHILIPS_NTSC,
1473 .tuner_addr = ADDR_UNSET,
1474 .audio_hook = windvr_audio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001476 .name = "GrandTec Multi Capture Card (Bt878)",
1477 .video_inputs = 4,
1478 .audio_inputs = 0,
1479 .tuner = -1,
1480 .svhs = -1,
1481 .gpiomask = 0,
1482 .muxsel = { 2, 3, 1, 0 },
1483 .audiomux = { 0 },
1484 .needs_tvaudio = 0,
1485 .no_msp34xx = 1,
1486 .pll = PLL_28,
1487 .tuner_type = -1,
1488 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001490 .name = "Jetway TV/Capture JW-TV878-FBK, Kworld KW-TV878RF",
1491 .video_inputs = 4,
1492 .audio_inputs = 3,
1493 .tuner = 0,
1494 .svhs = 2,
1495 .gpiomask = 7,
1496 .muxsel = { 2, 3, 1, 1 }, /* Tuner, SVid, SVHS, SVid to SVHS connector */
1497 .audiomux = { 0 ,0 ,4, 4,4,4},/* Yes, this tuner uses the same audio output for TV and FM radio!
1498 * This card lacks external Audio In, so we mute it on Ext. & Int.
1499 * The PCB can take a sbx1637/sbx1673, wiring unknown.
1500 * This card lacks PCI subsystem ID, sigh.
1501 * audiomux=1: lower volume, 2+3: mute
1502 * btwincap uses 0x80000/0x80003
1503 */
1504 .needs_tvaudio = 0,
1505 .no_msp34xx = 1,
1506 .pll = PLL_28,
1507 .tuner_type = 5,
1508 .tuner_addr = ADDR_UNSET,
1509 /* Samsung TCPA9095PC27A (BG+DK), philips compatible, w/FM, stereo and
1510 radio signal strength indicators work fine. */
1511 .has_radio = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 /* GPIO Info:
1513 GPIO0,1: HEF4052 A0,A1
1514 GPIO2: HEF4052 nENABLE
1515 GPIO3-7: n.c.
1516 GPIO8-13: IRDC357 data0-5 (data6 n.c. ?) [chip not present on my card]
1517 GPIO14,15: ??
1518 GPIO16-21: n.c.
1519 GPIO22,23: ??
1520 ?? : mtu8b56ep microcontroller for IR (GPIO wiring unknown)*/
1521},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001522 /* Arthur Tetzlaff-Deas, DSP Design Ltd <software@dspdesign.com> */
1523 .name = "DSP Design TCVIDEO",
1524 .video_inputs = 4,
1525 .svhs = -1,
1526 .muxsel = { 2, 3, 1, 0},
1527 .pll = PLL_28,
1528 .tuner_type = -1,
1529 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530},{
1531
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001532 /* ---- card 0x50 ---------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 .name = "Hauppauge WinTV PVR",
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001534 .video_inputs = 4,
1535 .audio_inputs = 1,
1536 .tuner = 0,
1537 .svhs = 2,
1538 .muxsel = { 2, 0, 1, 1},
1539 .needs_tvaudio = 1,
1540 .pll = PLL_28,
1541 .tuner_type = -1,
1542 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 .gpiomask = 7,
1545 .audiomux = {7},
1546},{
1547 .name = "IODATA GV-BCTV5/PCI",
1548 .video_inputs = 3,
1549 .audio_inputs = 1,
1550 .tuner = 0,
1551 .svhs = 2,
1552 .gpiomask = 0x0f0f80,
1553 .muxsel = {2, 3, 1, 0},
1554 .audiomux = {0x030000, 0x010000, 0, 0, 0x020000, 0},
1555 .no_msp34xx = 1,
1556 .pll = PLL_28,
1557 .tuner_type = TUNER_PHILIPS_NTSC_M,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001558 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 .audio_hook = gvbctv5pci_audio,
1560 .has_radio = 1,
1561},{
1562 .name = "Osprey 100/150 (878)", /* 0x1(2|3)-45C6-C1 */
1563 .video_inputs = 4, /* id-inputs-clock */
1564 .audio_inputs = 0,
1565 .tuner = -1,
1566 .svhs = 3,
1567 .muxsel = { 3, 2, 0, 1 },
1568 .pll = PLL_28,
1569 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001570 .tuner_addr = ADDR_UNSET,
1571 .no_msp34xx = 1,
1572 .no_tda9875 = 1,
1573 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574},{
1575 .name = "Osprey 100/150 (848)", /* 0x04-54C0-C1 & older boards */
1576 .video_inputs = 3,
1577 .audio_inputs = 0,
1578 .tuner = -1,
1579 .svhs = 2,
1580 .muxsel = { 2, 3, 1 },
1581 .pll = PLL_28,
1582 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001583 .tuner_addr = ADDR_UNSET,
1584 .no_msp34xx = 1,
1585 .no_tda9875 = 1,
1586 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587},{
1588
1589 /* ---- card 0x54 ---------------------------------- */
1590 .name = "Osprey 101 (848)", /* 0x05-40C0-C1 */
1591 .video_inputs = 2,
1592 .audio_inputs = 0,
1593 .tuner = -1,
1594 .svhs = 1,
1595 .muxsel = { 3, 1 },
1596 .pll = PLL_28,
1597 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001598 .tuner_addr = ADDR_UNSET,
1599 .no_msp34xx = 1,
1600 .no_tda9875 = 1,
1601 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602},{
1603 .name = "Osprey 101/151", /* 0x1(4|5)-0004-C4 */
1604 .video_inputs = 1,
1605 .audio_inputs = 0,
1606 .tuner = -1,
1607 .svhs = -1,
1608 .muxsel = { 0 },
1609 .pll = PLL_28,
1610 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001611 .tuner_addr = ADDR_UNSET,
1612 .no_msp34xx = 1,
1613 .no_tda9875 = 1,
1614 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615},{
1616 .name = "Osprey 101/151 w/ svid", /* 0x(16|17|20)-00C4-C1 */
1617 .video_inputs = 2,
1618 .audio_inputs = 0,
1619 .tuner = -1,
1620 .svhs = 1,
1621 .muxsel = { 0, 1 },
1622 .pll = PLL_28,
1623 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001624 .tuner_addr = ADDR_UNSET,
1625 .no_msp34xx = 1,
1626 .no_tda9875 = 1,
1627 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628},{
1629 .name = "Osprey 200/201/250/251", /* 0x1(8|9|E|F)-0004-C4 */
1630 .video_inputs = 1,
1631 .audio_inputs = 1,
1632 .tuner = -1,
1633 .svhs = -1,
1634 .muxsel = { 0 },
1635 .pll = PLL_28,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001636 .tuner_type = UNSET,
1637 .tuner_addr = ADDR_UNSET,
1638 .no_msp34xx = 1,
1639 .no_tda9875 = 1,
1640 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641},{
1642
1643 /* ---- card 0x58 ---------------------------------- */
1644 .name = "Osprey 200/250", /* 0x1(A|B)-00C4-C1 */
1645 .video_inputs = 2,
1646 .audio_inputs = 1,
1647 .tuner = -1,
1648 .svhs = 1,
1649 .muxsel = { 0, 1 },
1650 .pll = PLL_28,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001651 .tuner_type = UNSET,
1652 .tuner_addr = ADDR_UNSET,
1653 .no_msp34xx = 1,
1654 .no_tda9875 = 1,
1655 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656},{
1657 .name = "Osprey 210/220", /* 0x1(A|B)-04C0-C1 */
1658 .video_inputs = 2,
1659 .audio_inputs = 1,
1660 .tuner = -1,
1661 .svhs = 1,
1662 .muxsel = { 2, 3 },
1663 .pll = PLL_28,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001664 .tuner_type = UNSET,
1665 .tuner_addr = ADDR_UNSET,
1666 .no_msp34xx = 1,
1667 .no_tda9875 = 1,
1668 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669},{
1670 .name = "Osprey 500", /* 500 */
1671 .video_inputs = 2,
1672 .audio_inputs = 1,
1673 .tuner = -1,
1674 .svhs = 1,
1675 .muxsel = { 2, 3 },
1676 .pll = PLL_28,
1677 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001678 .tuner_addr = ADDR_UNSET,
1679 .no_msp34xx = 1,
1680 .no_tda9875 = 1,
1681 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001683 .name = "Osprey 540", /* 540 */
1684 .video_inputs = 4,
1685 .audio_inputs = 1,
1686 .tuner = -1,
1687 .pll = PLL_28,
1688 .tuner_type = -1,
1689 .tuner_addr = ADDR_UNSET,
1690 .no_msp34xx = 1,
1691 .no_tda9875 = 1,
1692 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693},{
1694
1695 /* ---- card 0x5C ---------------------------------- */
1696 .name = "Osprey 2000", /* 2000 */
1697 .video_inputs = 2,
1698 .audio_inputs = 1,
1699 .tuner = -1,
1700 .svhs = 1,
1701 .muxsel = { 2, 3 },
1702 .pll = PLL_28,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001703 .tuner_type = UNSET,
1704 .tuner_addr = ADDR_UNSET,
1705 .no_msp34xx = 1,
1706 .no_tda9875 = 1,
1707 .no_tda7432 = 1, /* must avoid, conflicts with the bt860 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708},{
1709 /* M G Berberich <berberic@forwiss.uni-passau.de> */
1710 .name = "IDS Eagle",
1711 .video_inputs = 4,
1712 .audio_inputs = 0,
1713 .tuner = -1,
1714 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001715 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 .svhs = -1,
1717 .gpiomask = 0,
1718 .muxsel = { 0, 1, 2, 3 },
1719 .muxsel_hook = eagle_muxsel,
1720 .no_msp34xx = 1,
1721 .no_tda9875 = 1,
1722 .pll = PLL_28,
1723},{
1724 .name = "Pinnacle PCTV Sat",
1725 .video_inputs = 2,
1726 .audio_inputs = 0,
1727 .svhs = 1,
1728 .tuner = -1,
1729 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001730 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 .no_msp34xx = 1,
1732 .no_tda9875 = 1,
1733 .no_tda7432 = 1,
1734 .gpiomask = 0x01,
1735 .audiomux = { 0, 0, 0, 0, 1 },
1736 .muxsel = { 3, 0, 1, 2},
1737 .needs_tvaudio = 0,
1738 .pll = PLL_28,
1739 .no_gpioirq = 1,
1740 .has_dvb = 1,
1741},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001742 .name = "Formac ProTV II (bt878)",
1743 .video_inputs = 4,
1744 .audio_inputs = 1,
1745 .tuner = 0,
1746 .svhs = 3,
1747 .gpiomask = 2,
1748 /* TV, Comp1, Composite over SVID con, SVID */
1749 .muxsel = { 2, 3, 1, 1},
1750 .audiomux = { 2, 2, 0, 0, 0 },
1751 .pll = PLL_28,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 .has_radio = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001753 .tuner_type = TUNER_PHILIPS_PAL,
1754 .tuner_addr = ADDR_UNSET,
1755/* sound routing:
1756 GPIO=0x00,0x01,0x03: mute (?)
1757 0x02: both TV and radio (tuner: FM1216/I)
1758 The card has onboard audio connectors labeled "cdrom" and "board",
1759 not soldered here, though unknown wiring.
1760 Card lacks: external audio in, pci subsystem id.
1761*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762},{
1763
1764 /* ---- card 0x60 ---------------------------------- */
1765 .name = "MachTV",
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001766 .video_inputs = 3,
1767 .audio_inputs = 1,
1768 .tuner = 0,
1769 .svhs = -1,
1770 .gpiomask = 7,
1771 .muxsel = { 2, 3, 1, 1},
1772 .audiomux = { 0, 1, 2, 3, 4},
1773 .needs_tvaudio = 1,
1774 .tuner_type = 5,
1775 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 .pll = 1,
1777},{
1778 .name = "Euresys Picolo",
1779 .video_inputs = 3,
1780 .audio_inputs = 0,
1781 .tuner = -1,
1782 .svhs = 2,
1783 .gpiomask = 0,
1784 .no_msp34xx = 1,
1785 .no_tda9875 = 1,
1786 .no_tda7432 = 1,
1787 .muxsel = { 2, 0, 1},
1788 .pll = PLL_28,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001789 .tuner_type = UNSET,
1790 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791},{
1792 /* Luc Van Hoeylandt <luc@e-magic.be> */
1793 .name = "ProVideo PV150", /* 0x4f */
1794 .video_inputs = 2,
1795 .audio_inputs = 0,
1796 .tuner = -1,
1797 .svhs = -1,
1798 .gpiomask = 0,
1799 .muxsel = { 2, 3 },
1800 .audiomux = { 0 },
1801 .needs_tvaudio = 0,
1802 .no_msp34xx = 1,
1803 .pll = PLL_28,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001804 .tuner_type = UNSET,
1805 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806},{
1807 /* Hiroshi Takekawa <sian@big.or.jp> */
1808 /* This card lacks subsystem ID */
1809 .name = "AD-TVK503", /* 0x63 */
1810 .video_inputs = 4,
1811 .audio_inputs = 1,
1812 .tuner = 0,
1813 .svhs = 2,
1814 .gpiomask = 0x001e8007,
1815 .muxsel = { 2, 3, 1, 0 },
1816 /* Tuner, Radio, external, internal, off, on */
1817 .audiomux = { 0x08, 0x0f, 0x0a, 0x08, 0x0f, 0x08 },
1818 .needs_tvaudio = 0,
1819 .no_msp34xx = 1,
1820 .pll = PLL_28,
1821 .tuner_type = 2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001822 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 .audio_hook = adtvk503_audio,
1824},{
1825
1826 /* ---- card 0x64 ---------------------------------- */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001827 .name = "Hercules Smart TV Stereo",
1828 .video_inputs = 4,
1829 .audio_inputs = 1,
1830 .tuner = 0,
1831 .svhs = 2,
1832 .gpiomask = 0x00,
1833 .muxsel = { 2, 3, 1, 1 },
1834 .needs_tvaudio = 1,
1835 .no_msp34xx = 1,
1836 .pll = PLL_28,
1837 .tuner_type = 5,
1838 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 /* Notes:
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001840 - card lacks subsystem ID
1841 - stereo variant w/ daughter board with tda9874a @0xb0
1842 - Audio Routing:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 always from tda9874 independent of GPIO (?)
1844 external line in: unknown
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001845 - Other chips: em78p156elp @ 0x96 (probably IR remote control)
1846 hef4053 (instead 4052) for unknown function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 */
1848},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001849 .name = "Pace TV & Radio Card",
1850 .video_inputs = 4,
1851 .audio_inputs = 1,
1852 .tuner = 0,
1853 .svhs = 2,
1854 .muxsel = { 2, 3, 1, 1}, /* Tuner, CVid, SVid, CVid over SVid connector */
1855 .gpiomask = 0,
1856 .no_tda9875 = 1,
1857 .no_tda7432 = 1,
1858 .tuner_type = 1,
1859 .tuner_addr = ADDR_UNSET,
1860 .has_radio = 1,
1861 .pll = PLL_28,
1862 /* Bt878, Bt832, FI1246 tuner; no pci subsystem id
1863 only internal line out: (4pin header) RGGL
1864 Radio must be decoded by msp3410d (not routed through)*/
1865 /*
1866 .digital_mode = DIGITAL_MODE_CAMERA, todo!
1867 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001869 /* Chris Willing <chris@vislab.usyd.edu.au> */
1870 .name = "IVC-200",
1871 .video_inputs = 1,
1872 .audio_inputs = 0,
1873 .tuner = -1,
1874 .tuner_type = -1,
1875 .tuner_addr = ADDR_UNSET,
1876 .svhs = -1,
1877 .gpiomask = 0xdf,
1878 .muxsel = { 2 },
1879 .pll = PLL_28,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880},{
1881 .name = "Grand X-Guard / Trust 814PCI",
1882 .video_inputs = 16,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001883 .audio_inputs = 0,
1884 .tuner = -1,
1885 .svhs = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 .tuner_type = 4,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001887 .tuner_addr = ADDR_UNSET,
1888 .gpiomask2 = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 .muxsel = { 2,2,2,2, 3,3,3,3, 1,1,1,1, 0,0,0,0 },
1890 .muxsel_hook = xguard_muxsel,
1891 .no_msp34xx = 1,
1892 .no_tda9875 = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001893 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 .pll = PLL_28,
1895},{
1896
1897 /* ---- card 0x68 ---------------------------------- */
1898 .name = "Nebula Electronics DigiTV",
1899 .video_inputs = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001900 .tuner = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 .svhs = -1,
1902 .muxsel = { 2, 3, 1, 0},
1903 .no_msp34xx = 1,
1904 .no_tda9875 = 1,
1905 .no_tda7432 = 1,
1906 .pll = PLL_28,
1907 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001908 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 .has_dvb = 1,
1910 .no_gpioirq = 1,
1911},{
1912 /* Jorge Boncompte - DTI2 <jorge@dti2.net> */
1913 .name = "ProVideo PV143",
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001914 .video_inputs = 4,
1915 .audio_inputs = 0,
1916 .tuner = -1,
1917 .svhs = -1,
1918 .gpiomask = 0,
1919 .muxsel = { 2, 3, 1, 0 },
1920 .audiomux = { 0 },
1921 .needs_tvaudio = 0,
1922 .no_msp34xx = 1,
1923 .pll = PLL_28,
1924 .tuner_type = -1,
1925 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926},{
1927 /* M.Klahr@phytec.de */
1928 .name = "PHYTEC VD-009-X1 MiniDIN (bt878)",
1929 .video_inputs = 4,
1930 .audio_inputs = 0,
1931 .tuner = -1, /* card has no tuner */
1932 .svhs = 3,
1933 .gpiomask = 0x00,
1934 .muxsel = { 2, 3, 1, 0},
1935 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
1936 .needs_tvaudio = 1,
1937 .pll = PLL_28,
1938 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001939 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940},{
1941 .name = "PHYTEC VD-009-X1 Combi (bt878)",
1942 .video_inputs = 4,
1943 .audio_inputs = 0,
1944 .tuner = -1, /* card has no tuner */
1945 .svhs = 3,
1946 .gpiomask = 0x00,
1947 .muxsel = { 2, 3, 1, 1},
1948 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
1949 .needs_tvaudio = 1,
1950 .pll = PLL_28,
1951 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001952 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953},{
1954
1955 /* ---- card 0x6c ---------------------------------- */
1956 .name = "PHYTEC VD-009 MiniDIN (bt878)",
1957 .video_inputs = 10,
1958 .audio_inputs = 0,
1959 .tuner = -1, /* card has no tuner */
1960 .svhs = 9,
1961 .gpiomask = 0x00,
1962 .gpiomask2 = 0x03, /* gpiomask2 defines the bits used to switch audio
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001963 via the upper nibble of muxsel. here: used for
1964 xternal video-mux */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 .muxsel = { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x00 },
1966 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
1967 .needs_tvaudio = 1,
1968 .pll = PLL_28,
1969 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001970 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971},{
1972 .name = "PHYTEC VD-009 Combi (bt878)",
1973 .video_inputs = 10,
1974 .audio_inputs = 0,
1975 .tuner = -1, /* card has no tuner */
1976 .svhs = 9,
1977 .gpiomask = 0x00,
1978 .gpiomask2 = 0x03, /* gpiomask2 defines the bits used to switch audio
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001979 via the upper nibble of muxsel. here: used for
1980 xternal video-mux */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 .muxsel = { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x01 },
1982 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
1983 .needs_tvaudio = 1,
1984 .pll = PLL_28,
1985 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001986 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001988 .name = "IVC-100",
1989 .video_inputs = 4,
1990 .audio_inputs = 0,
1991 .tuner = -1,
1992 .tuner_type = -1,
1993 .tuner_addr = ADDR_UNSET,
1994 .svhs = -1,
1995 .gpiomask = 0xdf,
1996 .muxsel = { 2, 3, 1, 0 },
1997 .pll = PLL_28,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998},{
1999 /* IVC-120G - Alan Garfield <alan@fromorbit.com> */
2000 .name = "IVC-120G",
2001 .video_inputs = 16,
2002 .audio_inputs = 0, /* card has no audio */
2003 .tuner = -1, /* card has no tuner */
2004 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002005 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 .svhs = -1, /* card has no svhs */
2007 .needs_tvaudio = 0,
2008 .no_msp34xx = 1,
2009 .no_tda9875 = 1,
2010 .no_tda7432 = 1,
2011 .gpiomask = 0x00,
2012 .muxsel = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002013 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 .muxsel_hook = ivc120_muxsel,
2015 .pll = PLL_28,
2016},{
2017
2018 /* ---- card 0x70 ---------------------------------- */
2019 .name = "pcHDTV HD-2000 TV",
2020 .video_inputs = 4,
2021 .audio_inputs = 1,
2022 .tuner = 0,
2023 .svhs = 2,
2024 .muxsel = { 2, 3, 1, 0},
2025 .tuner_type = TUNER_PHILIPS_ATSC,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002026 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 .has_dvb = 1,
2028},{
2029 .name = "Twinhan DST + clones",
2030 .no_msp34xx = 1,
2031 .no_tda9875 = 1,
2032 .no_tda7432 = 1,
2033 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002034 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 .no_video = 1,
2036 .has_dvb = 1,
2037},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002038 .name = "Winfast VC100",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 .video_inputs = 3,
2040 .audio_inputs = 0,
2041 .svhs = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002042 .tuner = -1,
2043 .muxsel = { 3, 1, 1, 3}, /* Vid In, SVid In, Vid over SVid in connector */
2044 .no_msp34xx = 1,
2045 .no_tda9875 = 1,
2046 .no_tda7432 = 1,
2047 .tuner_type = TUNER_ABSENT,
2048 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 .pll = PLL_28,
2050},{
2051 .name = "Teppro TEV-560/InterVision IV-560",
2052 .video_inputs = 3,
2053 .audio_inputs = 1,
2054 .tuner = 0,
2055 .svhs = 2,
2056 .gpiomask = 3,
2057 .muxsel = { 2, 3, 1, 1},
2058 .audiomux = { 1, 1, 1, 1, 0},
2059 .needs_tvaudio = 1,
2060 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002061 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 .pll = PLL_35,
2063},{
2064
2065 /* ---- card 0x74 ---------------------------------- */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002066 .name = "SIMUS GVC1100",
2067 .video_inputs = 4,
2068 .audio_inputs = 0,
2069 .tuner = -1,
2070 .svhs = -1,
2071 .tuner_type = -1,
2072 .tuner_addr = ADDR_UNSET,
2073 .pll = PLL_28,
2074 .muxsel = { 2, 2, 2, 2},
2075 .gpiomask = 0x3F,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 .muxsel_hook = gvc1100_muxsel,
2077},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002078 /* Carlos Silva r3pek@r3pek.homelinux.org || card 0x75 */
2079 .name = "NGS NGSTV+",
2080 .video_inputs = 3,
2081 .tuner = 0,
2082 .svhs = 2,
2083 .gpiomask = 0x008007,
2084 .muxsel = {2, 3, 0, 0},
2085 .audiomux = {0, 0, 0, 0, 0x000003, 0},
2086 .pll = PLL_28,
2087 .tuner_type = TUNER_PHILIPS_PAL,
2088 .tuner_addr = ADDR_UNSET,
2089 .has_remote = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002091 /* http://linuxmedialabs.com */
2092 .name = "LMLBT4",
2093 .video_inputs = 4, /* IN1,IN2,IN3,IN4 */
2094 .audio_inputs = 0,
2095 .tuner = -1,
2096 .svhs = -1,
2097 .muxsel = { 2, 3, 1, 0 },
2098 .no_msp34xx = 1,
2099 .no_tda9875 = 1,
2100 .no_tda7432 = 1,
2101 .needs_tvaudio = 0,
2102 .tuner_type = -1,
2103 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104},{
2105 /* Helmroos Harri <harri.helmroos@pp.inet.fi> */
2106 .name = "Tekram M205 PRO",
2107 .video_inputs = 3,
2108 .audio_inputs = 1,
2109 .tuner = 0,
2110 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002111 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 .svhs = 2,
2113 .needs_tvaudio = 0,
2114 .gpiomask = 0x68,
2115 .muxsel = { 2, 3, 1},
2116 .audiomux = { 0x68, 0x68, 0x61, 0x61, 0x00 },
2117 .pll = PLL_28,
2118},{
2119
2120 /* ---- card 0x78 ---------------------------------- */
2121 /* Javier Cendan Ares <jcendan@lycos.es> */
2122 /* bt878 TV + FM without subsystem ID */
2123 .name = "Conceptronic CONTVFMi",
2124 .video_inputs = 3,
2125 .audio_inputs = 1,
2126 .tuner = 0,
2127 .svhs = 2,
2128 .gpiomask = 0x008007,
2129 .muxsel = { 2, 3, 1, 1 },
2130 .audiomux = { 0, 1, 2, 2, 3 },
2131 .needs_tvaudio = 0,
2132 .pll = PLL_28,
2133 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002134 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 .has_remote = 1,
2136 .has_radio = 1,
2137},{
2138 /*Eric DEBIEF <debief@telemsa.com>*/
2139 /*EURESYS Picolo Tetra : 4 Conexant Fusion 878A, no audio, video input set with analog multiplexers GPIO controled*/
2140 /* adds picolo_tetra_muxsel(), picolo_tetra_init(), the folowing declaration strucure, and #define BTTV_PICOLO_TETRA_CHIP*/
2141 /*0x79 in bttv.h*/
2142 .name = "Euresys Picolo Tetra",
2143 .video_inputs = 4,
2144 .audio_inputs = 0,
2145 .tuner = -1,
2146 .svhs = -1,
2147 .gpiomask = 0,
2148 .gpiomask2 = 0x3C<<16,/*Set the GPIO[18]->GPIO[21] as output pin.==> drive the video inputs through analog multiplexers*/
2149 .no_msp34xx = 1,
2150 .no_tda9875 = 1,
2151 .no_tda7432 = 1,
2152 .muxsel = {2,2,2,2},/*878A input is always MUX0, see above.*/
2153 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
2154 .pll = PLL_28,
2155 .needs_tvaudio = 0,
2156 .muxsel_hook = picolo_tetra_muxsel,/*Required as it doesn't follow the classic input selection policy*/
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002157 .tuner_type = -1,
2158 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159},{
2160 /* Spirit TV Tuner from http://spiritmodems.com.au */
2161 /* Stafford Goodsell <surge@goliath.homeunix.org> */
2162 .name = "Spirit TV Tuner",
2163 .video_inputs = 3,
2164 .audio_inputs = 1,
2165 .tuner = 0,
2166 .svhs = 2,
2167 .gpiomask = 0x0000000f,
2168 .muxsel = { 2, 1, 1 },
2169 .audiomux = { 0x02, 0x00, 0x00, 0x00, 0x00},
2170 .tuner_type = TUNER_TEMIC_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002171 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 .no_msp34xx = 1,
2173 .no_tda9875 = 1,
2174},{
2175 /* Wolfram Joost <wojo@frokaschwei.de> */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002176 .name = "AVerMedia AVerTV DVB-T 771",
2177 .video_inputs = 2,
2178 .svhs = 1,
2179 .tuner = -1,
2180 .tuner_type = TUNER_ABSENT,
2181 .tuner_addr = ADDR_UNSET,
2182 .muxsel = { 3 , 3 },
2183 .no_msp34xx = 1,
2184 .no_tda9875 = 1,
2185 .no_tda7432 = 1,
2186 .pll = PLL_28,
2187 .has_dvb = 1,
2188 .no_gpioirq = 1,
2189 .has_remote = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190},{
2191 /* ---- card 0x7c ---------------------------------- */
2192 /* Matt Jesson <dvb@jesson.eclipse.co.uk> */
2193 /* Based on the Nebula card data - added remote and new card number - BTTV_AVDVBT_761, see also ir-kbd-gpio.c */
2194 .name = "AverMedia AverTV DVB-T 761",
2195 .video_inputs = 2,
2196 .tuner = -1,
2197 .svhs = 1,
2198 .muxsel = { 3, 1, 2, 0}, /* Comp0, S-Video, ?, ? */
2199 .no_msp34xx = 1,
2200 .no_tda9875 = 1,
2201 .no_tda7432 = 1,
2202 .pll = PLL_28,
2203 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002204 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 .has_dvb = 1,
2206 .no_gpioirq = 1,
2207 .has_remote = 1,
2208},{
2209 /* andre.schwarz@matrix-vision.de */
2210 .name = "MATRIX Vision Sigma-SQ",
2211 .video_inputs = 16,
2212 .audio_inputs = 0,
2213 .tuner = -1,
2214 .svhs = -1,
2215 .gpiomask = 0x0,
2216 .muxsel = { 2, 2, 2, 2, 2, 2, 2, 2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002217 3, 3, 3, 3, 3, 3, 3, 3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 .muxsel_hook = sigmaSQ_muxsel,
2219 .audiomux = { 0 },
2220 .no_msp34xx = 1,
2221 .pll = PLL_28,
2222 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002223 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224},{
2225 /* andre.schwarz@matrix-vision.de */
2226 .name = "MATRIX Vision Sigma-SLC",
2227 .video_inputs = 4,
2228 .audio_inputs = 0,
2229 .tuner = -1,
2230 .svhs = -1,
2231 .gpiomask = 0x0,
2232 .muxsel = { 2, 2, 2, 2 },
2233 .muxsel_hook = sigmaSLC_muxsel,
2234 .audiomux = { 0 },
2235 .no_msp34xx = 1,
2236 .pll = PLL_28,
2237 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002238 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239},{
2240 /* BTTV_APAC_VIEWCOMP */
2241 /* Attila Kondoros <attila.kondoros@chello.hu> */
2242 /* bt878 TV + FM 0x00000000 subsystem ID */
2243 .name = "APAC Viewcomp 878(AMAX)",
2244 .video_inputs = 2,
2245 .audio_inputs = 1,
2246 .tuner = 0,
2247 .svhs = -1,
2248 .gpiomask = 0xFF,
2249 .muxsel = { 2, 3, 1, 1},
2250 .audiomux = { 2, 0, 0, 0, 10},
2251 .needs_tvaudio = 0,
2252 .pll = PLL_28,
2253 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002254 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 .has_remote = 1, /* miniremote works, see ir-kbd-gpio.c */
2256 .has_radio = 1, /* not every card has radio */
2257},{
2258
2259 /* ---- card 0x80 ---------------------------------- */
2260 /* Chris Pascoe <c.pascoe@itee.uq.edu.au> */
Mauro Carvalho Chehab10c35cf2005-09-09 13:03:52 -07002261 .name = "DViCO FusionHDTV DVB-T Lite",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 .tuner = -1,
2263 .no_msp34xx = 1,
2264 .no_tda9875 = 1,
2265 .no_tda7432 = 1,
2266 .pll = PLL_28,
2267 .no_video = 1,
2268 .has_dvb = 1,
2269 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002270 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271},{
2272 /* Steven <photon38@pchome.com.tw> */
2273 .name = "V-Gear MyVCD",
2274 .video_inputs = 3,
2275 .audio_inputs = 1,
2276 .tuner = 0,
2277 .svhs = 2,
2278 .gpiomask = 0x3f,
2279 .muxsel = {2, 3, 1, 0},
2280 .audiomux = {0x31, 0x31, 0x31, 0x31, 0x31, 0x31},
2281 .no_msp34xx = 1,
2282 .pll = PLL_28,
2283 .tuner_type = TUNER_PHILIPS_NTSC_M,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002284 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 .has_radio = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286},{
2287 /* Rick C <cryptdragoon@gmail.com> */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002288 .name = "Super TV Tuner",
2289 .video_inputs = 4,
2290 .audio_inputs = 1,
2291 .tuner = 0,
2292 .svhs = 2,
2293 .muxsel = { 2, 3, 1, 0},
2294 .tuner_type = TUNER_PHILIPS_NTSC,
2295 .tuner_addr = ADDR_UNSET,
2296 .gpiomask = 0x008007,
2297 .audiomux = { 0, 0x000001,0,0, 0},
2298 .needs_tvaudio = 1,
2299 .has_radio = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002301 /* Chris Fanning <video4linux@haydon.net> */
2302 .name = "Tibet Systems 'Progress DVR' CS16",
2303 .video_inputs = 16,
2304 .audio_inputs = 0,
2305 .tuner = -1,
2306 .svhs = -1,
2307 .muxsel = { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 },
2308 .pll = PLL_28,
2309 .no_msp34xx = 1,
2310 .no_tda9875 = 1,
2311 .no_tda7432 = 1,
2312 .tuner_type = -1,
2313 .tuner_addr = ADDR_UNSET,
2314 .muxsel_hook = tibetCS16_muxsel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315},
2316{
2317 /* Bill Brack <wbrack@mmm.com.hk> */
2318 /*
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002319 * Note that, because of the card's wiring, the "master"
2320 * BT878A chip (i.e. the one which controls the analog switch
2321 * and must use this card type) is the 2nd one detected. The
2322 * other 3 chips should use card type 0x85, whose description
2323 * follows this one. There is a EEPROM on the card (which is
2324 * connected to the I2C of one of those other chips), but is
2325 * not currently handled. There is also a facility for a
2326 * "monitor", which is also not currently implemented.
2327 */
2328 .name = "Kodicom 4400R (master)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 .video_inputs = 16,
2330 .audio_inputs = 0,
2331 .tuner = -1,
2332 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002333 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 .svhs = -1,
2335 /* GPIO bits 0-9 used for analog switch:
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002336 * 00 - 03: camera selector
2337 * 04 - 06: channel (controller) selector
2338 * 07: data (1->on, 0->off)
2339 * 08: strobe
2340 * 09: reset
2341 * bit 16 is input from sync separator for the channel
2342 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 .gpiomask = 0x0003ff,
2344 .no_gpioirq = 1,
2345 .muxsel = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2346 .pll = PLL_28,
2347 .no_msp34xx = 1,
2348 .no_tda7432 = 1,
2349 .no_tda9875 = 1,
2350 .muxsel_hook = kodicom4400r_muxsel,
2351},
2352{
2353 /* Bill Brack <wbrack@mmm.com.hk> */
2354 /* Note that, for reasons unknown, the "master" BT878A chip (i.e. the
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002355 * one which controls the analog switch, and must use the card type)
2356 * is the 2nd one detected. The other 3 chips should use this card
2357 * type
2358 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 .name = "Kodicom 4400R (slave)",
2360 .video_inputs = 16,
2361 .audio_inputs = 0,
2362 .tuner = -1,
2363 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002364 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 .svhs = -1,
2366 .gpiomask = 0x010000,
2367 .no_gpioirq = 1,
2368 .muxsel = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2369 .pll = PLL_28,
2370 .no_msp34xx = 1,
2371 .no_tda7432 = 1,
2372 .no_tda9875 = 1,
2373 .muxsel_hook = kodicom4400r_muxsel,
Peter Skipworth93b43f12005-06-23 22:04:45 -07002374},
2375{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002376 /* ---- card 0x86---------------------------------- */
2377 /* Michael Henson <mhenson@clarityvi.com> */
2378 /* Adlink RTV24 with special unlock codes */
2379 .name = "Adlink RTV24",
2380 .video_inputs = 4,
2381 .audio_inputs = 1,
2382 .tuner = 0,
2383 .svhs = 2,
2384 .muxsel = { 2, 3, 1, 0},
2385 .tuner_type = -1,
2386 .tuner_addr = ADDR_UNSET,
2387 .pll = PLL_28,
2388},
2389{
2390 /* ---- card 0x87---------------------------------- */
2391 /* Michael Krufky <mkrufky@m1k.net> */
Mauro Carvalho Chehab10c35cf2005-09-09 13:03:52 -07002392 .name = "DViCO FusionHDTV 5 Lite",
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002393 .tuner = 0,
2394 .tuner_type = TUNER_LG_TDVS_H062F,
2395 .tuner_addr = ADDR_UNSET,
Michael Krufkyd3089792005-10-11 09:28:24 -07002396 .video_inputs = 3,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002397 .audio_inputs = 1,
2398 .svhs = 2,
Michael Krufkyd3089792005-10-11 09:28:24 -07002399 .muxsel = { 2, 3, 1 },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002400 .gpiomask = 0x00e00007,
Michael Krufky79dfa4a2005-09-30 11:58:58 -07002401 .audiomux = { 0x00400005, 0, 0x00000001, 0, 0x00c00007, 0 },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002402 .no_msp34xx = 1,
2403 .no_tda9875 = 1,
2404 .no_tda7432 = 1,
2405},{
2406 /* ---- card 0x88---------------------------------- */
2407 /* Mauro Carvalho Chehab <mchehab@brturbo.com.br> */
2408 .name = "Acorp Y878F",
2409 .video_inputs = 3,
2410 .audio_inputs = 1,
2411 .tuner = 0,
2412 .svhs = 2,
2413 .gpiomask = 0x01fe00,
2414 .muxsel = { 2, 3, 1, 1},
2415 .audiomux = { 0x001e00, 0, 0x018000, 0x014000, 0x002000, 0 },
2416 .needs_tvaudio = 1,
2417 .pll = PLL_28,
2418 .tuner_type = TUNER_YMEC_TVF66T5_B_DFF,
2419 .tuner_addr = 0xc1 >>1,
2420 .has_radio = 1,
Ricardo Cerqueiracc9d8d42005-11-08 21:36:20 -08002421},{
2422 /* ---- card 0x89 ---------------------------------- */
2423 .name = "Conceptronic CTVFMi v2",
2424 .video_inputs = 3,
2425 .audio_inputs = 1,
2426 .tuner = 0,
2427 .svhs = 2,
2428 .gpiomask = 0x001c0007,
2429 .muxsel = { 2, 3, 1, 1 },
2430 .audiomux = { 0, 1, 2, 2, 3 },
2431 .needs_tvaudio = 0,
2432 .pll = PLL_28,
2433 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
2434 .tuner_addr = ADDR_UNSET,
2435 .has_remote = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}};
2437
2438static const unsigned int bttv_num_tvcards = ARRAY_SIZE(bttv_tvcards);
2439
2440/* ----------------------------------------------------------------------- */
2441
2442static unsigned char eeprom_data[256];
2443
2444/*
2445 * identify card
2446 */
2447void __devinit bttv_idcard(struct bttv *btv)
2448{
2449 unsigned int gpiobits;
2450 int i,type;
2451 unsigned short tmp;
2452
2453 /* read PCI subsystem ID */
2454 pci_read_config_word(btv->c.pci, PCI_SUBSYSTEM_ID, &tmp);
2455 btv->cardid = tmp << 16;
2456 pci_read_config_word(btv->c.pci, PCI_SUBSYSTEM_VENDOR_ID, &tmp);
2457 btv->cardid |= tmp;
2458
2459 if (0 != btv->cardid && 0xffffffff != btv->cardid) {
2460 /* look for the card */
2461 for (type = -1, i = 0; cards[i].id != 0; i++)
2462 if (cards[i].id == btv->cardid)
2463 type = i;
2464
2465 if (type != -1) {
2466 /* found it */
2467 printk(KERN_INFO "bttv%d: detected: %s [card=%d], "
2468 "PCI subsystem ID is %04x:%04x\n",
2469 btv->c.nr,cards[type].name,cards[type].cardnr,
2470 btv->cardid & 0xffff,
2471 (btv->cardid >> 16) & 0xffff);
2472 btv->c.type = cards[type].cardnr;
2473 } else {
2474 /* 404 */
2475 printk(KERN_INFO "bttv%d: subsystem: %04x:%04x (UNKNOWN)\n",
2476 btv->c.nr, btv->cardid & 0xffff,
2477 (btv->cardid >> 16) & 0xffff);
2478 printk(KERN_DEBUG "please mail id, board name and "
2479 "the correct card= insmod option to kraxel@bytesex.org\n");
2480 }
2481 }
2482
2483 /* let the user override the autodetected type */
2484 if (card[btv->c.nr] < bttv_num_tvcards)
2485 btv->c.type=card[btv->c.nr];
2486
2487 /* print which card config we are using */
2488 printk(KERN_INFO "bttv%d: using: %s [card=%d,%s]\n",btv->c.nr,
2489 bttv_tvcards[btv->c.type].name, btv->c.type,
2490 card[btv->c.nr] < bttv_num_tvcards
2491 ? "insmod option" : "autodetected");
2492
2493 /* overwrite gpio stuff ?? */
2494 if (UNSET == audioall && UNSET == audiomux[0])
2495 return;
2496
2497 if (UNSET != audiomux[0]) {
2498 gpiobits = 0;
2499 for (i = 0; i < 5; i++) {
2500 bttv_tvcards[btv->c.type].audiomux[i] = audiomux[i];
2501 gpiobits |= audiomux[i];
2502 }
2503 } else {
2504 gpiobits = audioall;
2505 for (i = 0; i < 5; i++) {
2506 bttv_tvcards[btv->c.type].audiomux[i] = audioall;
2507 }
2508 }
2509 bttv_tvcards[btv->c.type].gpiomask = (UNSET != gpiomask) ? gpiomask : gpiobits;
2510 printk(KERN_INFO "bttv%d: gpio config override: mask=0x%x, mux=",
2511 btv->c.nr,bttv_tvcards[btv->c.type].gpiomask);
2512 for (i = 0; i < 5; i++) {
2513 printk("%s0x%x", i ? "," : "", bttv_tvcards[btv->c.type].audiomux[i]);
2514 }
2515 printk("\n");
2516}
2517
2518/*
2519 * (most) board specific initialisations goes here
2520 */
2521
2522/* Some Modular Technology cards have an eeprom, but no subsystem ID */
2523void identify_by_eeprom(struct bttv *btv, unsigned char eeprom_data[256])
2524{
2525 int type = -1;
2526
2527 if (0 == strncmp(eeprom_data,"GET MM20xPCTV",13))
2528 type = BTTV_MODTEC_205;
2529 else if (0 == strncmp(eeprom_data+20,"Picolo",7))
2530 type = BTTV_EURESYS_PICOLO;
2531 else if (eeprom_data[0] == 0x84 && eeprom_data[2]== 0)
2532 type = BTTV_HAUPPAUGE; /* old bt848 */
2533
2534 if (-1 != type) {
2535 btv->c.type = type;
2536 printk("bttv%d: detected by eeprom: %s [card=%d]\n",
2537 btv->c.nr, bttv_tvcards[btv->c.type].name, btv->c.type);
2538 }
2539}
2540
2541static void flyvideo_gpio(struct bttv *btv)
2542{
2543 int gpio,has_remote,has_radio,is_capture_only,is_lr90,has_tda9820_tda9821;
2544 int tuner=-1,ttype;
2545
2546 gpio_inout(0xffffff, 0);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002547 udelay(8); /* without this we would see the 0x1800 mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 gpio = gpio_read();
2549 /* FIXME: must restore OUR_EN ??? */
2550
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002551 /* all cards provide GPIO info, some have an additional eeprom
2552 * LR50: GPIO coding can be found lower right CP1 .. CP9
2553 * CP9=GPIO23 .. CP1=GPIO15; when OPEN, the corresponding GPIO reads 1.
2554 * GPIO14-12: n.c.
2555 * LR90: GP9=GPIO23 .. GP1=GPIO15 (right above the bt878)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002557 * lowest 3 bytes are remote control codes (no handshake needed)
2558 * xxxFFF: No remote control chip soldered
2559 * xxxF00(LR26/LR50), xxxFE0(LR90): Remote control chip (LVA001 or CF45) soldered
2560 * Note: Some bits are Audio_Mask !
2561 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 ttype=(gpio&0x0f0000)>>16;
2563 switch(ttype) {
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002564 case 0x0: tuner=2; /* NTSC, e.g. TPI8NSR11P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 break;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002566 case 0x2: tuner=39;/* LG NTSC (newer TAPC series) TAPC-H701P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 break;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002568 case 0x4: tuner=5; /* Philips PAL TPI8PSB02P, TPI8PSB12P, TPI8PSB12D or FI1216, FM1216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 break;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002570 case 0x6: tuner=37;/* LG PAL (newer TAPC series) TAPC-G702P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 break;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002572 case 0xC: tuner=3; /* Philips SECAM(+PAL) FQ1216ME or FI1216MF */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 break;
2574 default:
2575 printk(KERN_INFO "bttv%d: FlyVideo_gpio: unknown tuner type.\n", btv->c.nr);
2576 }
2577
2578 has_remote = gpio & 0x800000;
2579 has_radio = gpio & 0x400000;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002580 /* unknown 0x200000;
2581 * unknown2 0x100000; */
2582 is_capture_only = !(gpio & 0x008000); /* GPIO15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 has_tda9820_tda9821 = !(gpio & 0x004000);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002584 is_lr90 = !(gpio & 0x002000); /* else LR26/LR50 (LR38/LR51 f. capture only) */
2585 /*
2586 * gpio & 0x001000 output bit for audio routing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 if(is_capture_only)
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002589 tuner=4; /* No tuner present */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
2591 printk(KERN_INFO "bttv%d: FlyVideo Radio=%s RemoteControl=%s Tuner=%d gpio=0x%06x\n",
2592 btv->c.nr, has_radio? "yes":"no ", has_remote? "yes":"no ", tuner, gpio);
2593 printk(KERN_INFO "bttv%d: FlyVideo LR90=%s tda9821/tda9820=%s capture_only=%s\n",
2594 btv->c.nr, is_lr90?"yes":"no ", has_tda9820_tda9821?"yes":"no ",
2595 is_capture_only?"yes":"no ");
2596
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002597 if(tuner!= -1) /* only set if known tuner autodetected, else let insmod option through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 btv->tuner_type = tuner;
2599 btv->has_radio = has_radio;
2600
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002601 /* LR90 Audio Routing is done by 2 hef4052, so Audio_Mask has 4 bits: 0x001c80
2602 * LR26/LR50 only has 1 hef4052, Audio_Mask 0x000c00
2603 * Audio options: from tuner, from tda9821/tda9821(mono,stereo,sap), from tda9874, ext., mute */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if(has_tda9820_tda9821) btv->audio_hook = lt9415_audio;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002605 /* todo: if(has_tda9874) btv->audio_hook = fv2000s_audio; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
2607
2608static int miro_tunermap[] = { 0,6,2,3, 4,5,6,0, 3,0,4,5, 5,2,16,1,
2609 14,2,17,1, 4,1,4,3, 1,2,16,1, 4,4,4,4 };
2610static int miro_fmtuner[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,1,
2611 1,1,1,1, 1,1,1,0, 0,0,0,0, 0,1,0,0 };
2612
2613static void miro_pinnacle_gpio(struct bttv *btv)
2614{
2615 int id,msp,gpio;
2616 char *info;
2617
2618 gpio_inout(0xffffff, 0);
2619 gpio = gpio_read();
2620 id = ((gpio>>10) & 63) -1;
2621 msp = bttv_I2CRead(btv, I2C_MSP3400, "MSP34xx");
2622 if (id < 32) {
2623 btv->tuner_type = miro_tunermap[id];
2624 if (0 == (gpio & 0x20)) {
2625 btv->has_radio = 1;
2626 if (!miro_fmtuner[id]) {
2627 btv->has_matchbox = 1;
2628 btv->mbox_we = (1<<6);
2629 btv->mbox_most = (1<<7);
2630 btv->mbox_clk = (1<<8);
2631 btv->mbox_data = (1<<9);
2632 btv->mbox_mask = (1<<6)|(1<<7)|(1<<8)|(1<<9);
2633 }
2634 } else {
2635 btv->has_radio = 0;
2636 }
2637 if (-1 != msp) {
2638 if (btv->c.type == BTTV_MIRO)
2639 btv->c.type = BTTV_MIROPRO;
2640 if (btv->c.type == BTTV_PINNACLE)
2641 btv->c.type = BTTV_PINNACLEPRO;
2642 }
2643 printk(KERN_INFO
2644 "bttv%d: miro: id=%d tuner=%d radio=%s stereo=%s\n",
2645 btv->c.nr, id+1, btv->tuner_type,
2646 !btv->has_radio ? "no" :
2647 (btv->has_matchbox ? "matchbox" : "fmtuner"),
2648 (-1 == msp) ? "no" : "yes");
2649 } else {
2650 /* new cards with microtune tuner */
2651 id = 63 - id;
2652 btv->has_radio = 0;
2653 switch (id) {
2654 case 1:
2655 info = "PAL / mono";
2656 break;
2657 case 2:
2658 info = "PAL+SECAM / stereo";
2659 btv->has_radio = 1;
2660 break;
2661 case 3:
2662 info = "NTSC / stereo";
2663 btv->has_radio = 1;
2664 break;
2665 case 4:
2666 info = "PAL+SECAM / mono";
2667 break;
2668 case 5:
2669 info = "NTSC / mono";
2670 break;
2671 case 6:
2672 info = "NTSC / stereo";
2673 break;
2674 case 7:
2675 info = "PAL / stereo";
2676 break;
2677 default:
2678 info = "oops: unknown card";
2679 break;
2680 }
2681 if (-1 != msp)
2682 btv->c.type = BTTV_PINNACLEPRO;
2683 printk(KERN_INFO
2684 "bttv%d: pinnacle/mt: id=%d info=\"%s\" radio=%s\n",
2685 btv->c.nr, id, info, btv->has_radio ? "yes" : "no");
2686 btv->tuner_type = 33;
2687 btv->pinnacle_id = id;
2688 }
2689}
2690
2691/* GPIO21 L: Buffer aktiv, H: Buffer inaktiv */
2692#define LM1882_SYNC_DRIVE 0x200000L
2693
2694static void init_ids_eagle(struct bttv *btv)
2695{
2696 gpio_inout(0xffffff,0xFFFF37);
2697 gpio_write(0x200020);
2698
2699 /* flash strobe inverter ?! */
2700 gpio_write(0x200024);
2701
2702 /* switch sync drive off */
2703 gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE);
2704
2705 /* set BT848 muxel to 2 */
2706 btaor((2)<<5, ~(2<<5), BT848_IFORM);
2707}
2708
2709/* Muxsel helper for the IDS Eagle.
2710 * the eagles does not use the standard muxsel-bits but
2711 * has its own multiplexer */
2712static void eagle_muxsel(struct bttv *btv, unsigned int input)
2713{
2714 btaor((2)<<5, ~(3<<5), BT848_IFORM);
2715 gpio_bits(3,bttv_tvcards[btv->c.type].muxsel[input&7]);
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 /* composite */
2718 /* set chroma ADC to sleep */
2719 btor(BT848_ADC_C_SLEEP, BT848_ADC);
2720 /* set to composite video */
2721 btand(~BT848_CONTROL_COMP, BT848_E_CONTROL);
2722 btand(~BT848_CONTROL_COMP, BT848_O_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 /* switch sync drive off */
2725 gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE);
2726}
2727
2728static void gvc1100_muxsel(struct bttv *btv, unsigned int input)
2729{
2730 static const int masks[] = {0x30, 0x01, 0x12, 0x23};
2731 gpio_write(masks[input%4]);
2732}
2733
2734/* LMLBT4x initialization - to allow access to GPIO bits for sensors input and
2735 alarms output
2736
2737 GPIObit | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
2738 assignment | TI | O3|INx| O2| O1|IN4|IN3|IN2|IN1| | |
2739
2740 IN - sensor inputs, INx - sensor inputs and TI XORed together
2741 O1,O2,O3 - alarm outputs (relays)
2742
2743 OUT ENABLE 1 1 0 . 1 1 0 0 . 0 0 0 0 = 0x6C0
2744
2745*/
2746
2747static void init_lmlbt4x(struct bttv *btv)
2748{
2749 printk(KERN_DEBUG "LMLBT4x init\n");
2750 btwrite(0x000000, BT848_GPIO_REG_INP);
2751 gpio_inout(0xffffff, 0x0006C0);
2752 gpio_write(0x000000);
2753}
2754
2755static void sigmaSQ_muxsel(struct bttv *btv, unsigned int input)
2756{
2757 unsigned int inmux = input % 8;
2758 gpio_inout( 0xf, 0xf );
2759 gpio_bits( 0xf, inmux );
2760}
2761
2762static void sigmaSLC_muxsel(struct bttv *btv, unsigned int input)
2763{
2764 unsigned int inmux = input % 4;
2765 gpio_inout( 3<<9, 3<<9 );
2766 gpio_bits( 3<<9, inmux<<9 );
2767}
2768
2769/* ----------------------------------------------------------------------- */
2770
2771static void bttv_reset_audio(struct bttv *btv)
2772{
2773 /*
2774 * BT878A has a audio-reset register.
2775 * 1. This register is an audio reset function but it is in
2776 * function-0 (video capture) address space.
2777 * 2. It is enough to do this once per power-up of the card.
2778 * 3. There is a typo in the Conexant doc -- it is not at
2779 * 0x5B, but at 0x058. (B is an odd-number, obviously a typo!).
2780 * --//Shrikumar 030609
2781 */
2782 if (btv->id != 878)
2783 return;
2784
2785 if (bttv_debug)
2786 printk("bttv%d: BT878A ARESET\n",btv->c.nr);
2787 btwrite((1<<7), 0x058);
2788 udelay(10);
2789 btwrite( 0, 0x058);
2790}
2791
2792/* initialization part one -- before registering i2c bus */
2793void __devinit bttv_init_card1(struct bttv *btv)
2794{
2795 switch (btv->c.type) {
2796 case BTTV_HAUPPAUGE:
2797 case BTTV_HAUPPAUGE878:
2798 boot_msp34xx(btv,5);
2799 break;
2800 case BTTV_VOODOOTV_FM:
2801 boot_msp34xx(btv,20);
2802 break;
2803 case BTTV_AVERMEDIA98:
2804 boot_msp34xx(btv,11);
2805 break;
2806 case BTTV_HAUPPAUGEPVR:
2807 pvr_boot(btv);
2808 break;
2809 case BTTV_TWINHAN_DST:
2810 case BTTV_AVDVBT_771:
2811 btv->use_i2c_hw = 1;
2812 break;
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07002813 case BTTV_ADLINK_RTV24:
2814 init_RTV24( btv );
2815 break;
2816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 }
2818 if (!bttv_tvcards[btv->c.type].has_dvb)
2819 bttv_reset_audio(btv);
2820}
2821
2822/* initialization part two -- after registering i2c bus */
2823void __devinit bttv_init_card2(struct bttv *btv)
2824{
2825 int tda9887;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002826 int addr=ADDR_UNSET;
2827
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 btv->tuner_type = -1;
2829
2830 if (BTTV_UNKNOWN == btv->c.type) {
2831 bttv_readee(btv,eeprom_data,0xa0);
2832 identify_by_eeprom(btv,eeprom_data);
2833 }
2834
2835 switch (btv->c.type) {
2836 case BTTV_MIRO:
2837 case BTTV_MIROPRO:
2838 case BTTV_PINNACLE:
2839 case BTTV_PINNACLEPRO:
2840 /* miro/pinnacle */
2841 miro_pinnacle_gpio(btv);
2842 break;
2843 case BTTV_FLYVIDEO_98:
2844 case BTTV_MAXI:
2845 case BTTV_LIFE_FLYKIT:
2846 case BTTV_FLYVIDEO:
2847 case BTTV_TYPHOON_TVIEW:
2848 case BTTV_CHRONOS_VS2:
2849 case BTTV_FLYVIDEO_98FM:
2850 case BTTV_FLYVIDEO2000:
2851 case BTTV_FLYVIDEO98EZ:
2852 case BTTV_CONFERENCETV:
2853 case BTTV_LIFETEC_9415:
2854 flyvideo_gpio(btv);
2855 break;
2856 case BTTV_HAUPPAUGE:
2857 case BTTV_HAUPPAUGE878:
2858 case BTTV_HAUPPAUGEPVR:
2859 /* pick up some config infos from the eeprom */
2860 bttv_readee(btv,eeprom_data,0xa0);
2861 hauppauge_eeprom(btv);
2862 break;
2863 case BTTV_AVERMEDIA98:
2864 case BTTV_AVPHONE98:
2865 bttv_readee(btv,eeprom_data,0xa0);
2866 avermedia_eeprom(btv);
2867 break;
2868 case BTTV_PXC200:
2869 init_PXC200(btv);
2870 break;
2871 case BTTV_PICOLO_TETRA_CHIP:
2872 picolo_tetra_init(btv);
2873 break;
2874 case BTTV_VHX:
2875 btv->has_radio = 1;
2876 btv->has_matchbox = 1;
2877 btv->mbox_we = 0x20;
2878 btv->mbox_most = 0;
2879 btv->mbox_clk = 0x08;
2880 btv->mbox_data = 0x10;
2881 btv->mbox_mask = 0x38;
2882 break;
2883 case BTTV_VOBIS_BOOSTAR:
2884 case BTTV_TERRATV:
2885 terratec_active_radio_upgrade(btv);
2886 break;
2887 case BTTV_MAGICTVIEW061:
2888 if (btv->cardid == 0x3002144f) {
2889 btv->has_radio=1;
2890 printk("bttv%d: radio detected by subsystem id (CPH05x)\n",btv->c.nr);
2891 }
2892 break;
2893 case BTTV_STB2:
2894 if (btv->cardid == 0x3060121a) {
2895 /* Fix up entry for 3DFX VoodooTV 100,
2896 which is an OEM STB card variant. */
2897 btv->has_radio=0;
2898 btv->tuner_type=TUNER_TEMIC_NTSC;
2899 }
2900 break;
2901 case BTTV_OSPREY1x0:
2902 case BTTV_OSPREY1x0_848:
2903 case BTTV_OSPREY101_848:
2904 case BTTV_OSPREY1x1:
2905 case BTTV_OSPREY1x1_SVID:
2906 case BTTV_OSPREY2xx:
2907 case BTTV_OSPREY2x0_SVID:
2908 case BTTV_OSPREY2x0:
2909 case BTTV_OSPREY500:
2910 case BTTV_OSPREY540:
2911 case BTTV_OSPREY2000:
2912 bttv_readee(btv,eeprom_data,0xa0);
2913 osprey_eeprom(btv);
2914 break;
2915 case BTTV_IDS_EAGLE:
2916 init_ids_eagle(btv);
2917 break;
2918 case BTTV_MODTEC_205:
2919 bttv_readee(btv,eeprom_data,0xa0);
2920 modtec_eeprom(btv);
2921 break;
2922 case BTTV_LMLBT4:
2923 init_lmlbt4x(btv);
2924 break;
2925 case BTTV_TIBET_CS16:
2926 tibetCS16_init(btv);
2927 break;
2928 case BTTV_KODICOM_4400R:
2929 kodicom4400r_init(btv);
2930 break;
2931 }
2932
2933 /* pll configuration */
2934 if (!(btv->id==848 && btv->revision==0x11)) {
2935 /* defaults from card list */
2936 if (PLL_28 == bttv_tvcards[btv->c.type].pll) {
2937 btv->pll.pll_ifreq=28636363;
2938 btv->pll.pll_crystal=BT848_IFORM_XT0;
2939 }
2940 if (PLL_35 == bttv_tvcards[btv->c.type].pll) {
2941 btv->pll.pll_ifreq=35468950;
2942 btv->pll.pll_crystal=BT848_IFORM_XT1;
2943 }
2944 /* insmod options can override */
2945 switch (pll[btv->c.nr]) {
2946 case 0: /* none */
2947 btv->pll.pll_crystal = 0;
2948 btv->pll.pll_ifreq = 0;
2949 btv->pll.pll_ofreq = 0;
2950 break;
2951 case 1: /* 28 MHz */
2952 case 28:
2953 btv->pll.pll_ifreq = 28636363;
2954 btv->pll.pll_ofreq = 0;
2955 btv->pll.pll_crystal = BT848_IFORM_XT0;
2956 break;
2957 case 2: /* 35 MHz */
2958 case 35:
2959 btv->pll.pll_ifreq = 35468950;
2960 btv->pll.pll_ofreq = 0;
2961 btv->pll.pll_crystal = BT848_IFORM_XT1;
2962 break;
2963 }
2964 }
2965 btv->pll.pll_current = -1;
2966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 /* tuner configuration (from card list / autodetect / insmod option) */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002968 if (ADDR_UNSET != bttv_tvcards[btv->c.type].tuner_addr)
2969 addr = bttv_tvcards[btv->c.type].tuner_addr;
2970
2971 if (UNSET != bttv_tvcards[btv->c.type].tuner_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if(UNSET == btv->tuner_type)
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002973 btv->tuner_type = bttv_tvcards[btv->c.type].tuner_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 if (UNSET != tuner[btv->c.nr])
2975 btv->tuner_type = tuner[btv->c.nr];
2976 printk("bttv%d: using tuner=%d\n",btv->c.nr,btv->tuner_type);
2977 if (btv->pinnacle_id != UNSET)
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07002978 bttv_call_i2c_clients(btv, AUDC_CONFIG_PINNACLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 &btv->pinnacle_id);
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07002980 if (btv->tuner_type != UNSET) {
2981 struct tuner_setup tun_setup;
2982
2983 tun_setup.mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV;
2984 tun_setup.type = btv->tuner_type;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002985 tun_setup.addr = addr;
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07002986
2987 bttv_call_i2c_clients(btv, TUNER_SET_TYPE_ADDR, &tun_setup);
2988 }
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 btv->svhs = bttv_tvcards[btv->c.type].svhs;
2991 if (svhs[btv->c.nr] != UNSET)
2992 btv->svhs = svhs[btv->c.nr];
2993 if (remote[btv->c.nr] != UNSET)
2994 btv->has_remote = remote[btv->c.nr];
2995
2996 if (bttv_tvcards[btv->c.type].has_radio)
2997 btv->has_radio=1;
2998 if (bttv_tvcards[btv->c.type].has_remote)
2999 btv->has_remote=1;
3000 if (bttv_tvcards[btv->c.type].no_gpioirq)
3001 btv->gpioirq=0;
3002 if (bttv_tvcards[btv->c.type].audio_hook)
3003 btv->audio_hook=bttv_tvcards[btv->c.type].audio_hook;
3004
3005 if (bttv_tvcards[btv->c.type].digital_mode == DIGITAL_MODE_CAMERA) {
3006 /* detect Bt832 chip for quartzsight digital camera */
3007 if ((bttv_I2CRead(btv, I2C_BT832_ALT1, "Bt832") >=0) ||
3008 (bttv_I2CRead(btv, I2C_BT832_ALT2, "Bt832") >=0))
3009 boot_bt832(btv);
3010 }
3011
3012 if (!autoload)
3013 return;
3014
3015 /* try to detect audio/fader chips */
3016 if (!bttv_tvcards[btv->c.type].no_msp34xx &&
3017 bttv_I2CRead(btv, I2C_MSP3400, "MSP34xx") >=0)
3018 request_module("msp3400");
3019
3020 if (bttv_tvcards[btv->c.type].msp34xx_alt &&
3021 bttv_I2CRead(btv, I2C_MSP3400_ALT, "MSP34xx (alternate address)") >=0)
3022 request_module("msp3400");
3023
3024 if (!bttv_tvcards[btv->c.type].no_tda9875 &&
3025 bttv_I2CRead(btv, I2C_TDA9875, "TDA9875") >=0)
3026 request_module("tda9875");
3027
3028 if (!bttv_tvcards[btv->c.type].no_tda7432 &&
3029 bttv_I2CRead(btv, I2C_TDA7432, "TDA7432") >=0)
3030 request_module("tda7432");
3031
3032 if (bttv_tvcards[btv->c.type].needs_tvaudio)
3033 request_module("tvaudio");
3034
3035 /* tuner modules */
3036 tda9887 = 0;
3037 if (btv->pinnacle_id != UNSET)
3038 tda9887 = 1;
3039 if (0 == tda9887 && 0 == bttv_tvcards[btv->c.type].has_dvb &&
3040 bttv_I2CRead(btv, I2C_TDA9887, "TDA9887") >=0)
3041 tda9887 = 1;
3042 if((btv->tuner_type == TUNER_PHILIPS_FM1216ME_MK3) ||
3043 (btv->tuner_type == TUNER_PHILIPS_FM1236_MK3) ||
3044 (btv->tuner_type == TUNER_PHILIPS_FM1256_IH3) ||
3045 tda9887)
3046 request_module("tda9887");
3047 if (btv->tuner_type != UNSET)
3048 request_module("tuner");
3049}
3050
3051
3052/* ----------------------------------------------------------------------- */
3053
3054static void modtec_eeprom(struct bttv *btv)
3055{
3056 if( strncmp(&(eeprom_data[0x1e]),"Temic 4066 FY5",14) ==0) {
3057 btv->tuner_type=TUNER_TEMIC_4066FY5_PAL_I;
3058 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3059 btv->c.nr,&eeprom_data[0x1e]);
3060 } else if (strncmp(&(eeprom_data[0x1e]),"Alps TSBB5",10) ==0) {
3061 btv->tuner_type=TUNER_ALPS_TSBB5_PAL_I;
3062 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3063 btv->c.nr,&eeprom_data[0x1e]);
3064 } else if (strncmp(&(eeprom_data[0x1e]),"Philips FM1246",14) ==0) {
3065 btv->tuner_type=TUNER_PHILIPS_NTSC;
3066 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3067 btv->c.nr,&eeprom_data[0x1e]);
3068 } else {
3069 printk("bttv%d: Modtec: Unknown TunerString: %s\n",
3070 btv->c.nr,&eeprom_data[0x1e]);
3071 }
3072}
3073
3074static void __devinit hauppauge_eeprom(struct bttv *btv)
3075{
3076 struct tveeprom tv;
3077
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -07003078 tveeprom_hauppauge_analog(&btv->i2c_client, &tv, eeprom_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 btv->tuner_type = tv.tuner_type;
3080 btv->has_radio = tv.has_radio;
3081}
3082
3083static int terratec_active_radio_upgrade(struct bttv *btv)
3084{
3085 int freq;
3086
3087 btv->has_radio = 1;
3088 btv->has_matchbox = 1;
3089 btv->mbox_we = 0x10;
3090 btv->mbox_most = 0x20;
3091 btv->mbox_clk = 0x08;
3092 btv->mbox_data = 0x04;
3093 btv->mbox_mask = 0x3c;
3094
3095 btv->mbox_iow = 1 << 8;
3096 btv->mbox_ior = 1 << 9;
3097 btv->mbox_csel = 1 << 10;
3098
3099 freq=88000/62.5;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003100 tea5757_write(btv, 5 * freq + 0x358); /* write 0x1ed8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 if (0x1ed8 == tea5757_read(btv)) {
3102 printk("bttv%d: Terratec Active Radio Upgrade found.\n",
3103 btv->c.nr);
3104 btv->has_radio = 1;
3105 btv->has_matchbox = 1;
3106 } else {
3107 btv->has_radio = 0;
3108 btv->has_matchbox = 0;
3109 }
3110 return 0;
3111}
3112
3113
3114/* ----------------------------------------------------------------------- */
3115
3116/*
3117 * minimal bootstrap for the WinTV/PVR -- upload altera firmware.
3118 *
3119 * The hcwamc.rbf firmware file is on the Hauppauge driver CD. Have
3120 * a look at Pvr/pvr45xxx.EXE (self-extracting zip archive, can be
3121 * unpacked with unzip).
3122 */
3123#define PVR_GPIO_DELAY 10
3124
3125#define BTTV_ALT_DATA 0x000001
3126#define BTTV_ALT_DCLK 0x100000
3127#define BTTV_ALT_NCONFIG 0x800000
3128
3129static int __devinit pvr_altera_load(struct bttv *btv, u8 *micro, u32 microlen)
3130{
3131 u32 n;
3132 u8 bits;
3133 int i;
3134
3135 gpio_inout(0xffffff,BTTV_ALT_DATA|BTTV_ALT_DCLK|BTTV_ALT_NCONFIG);
3136 gpio_write(0);
3137 udelay(PVR_GPIO_DELAY);
3138
3139 gpio_write(BTTV_ALT_NCONFIG);
3140 udelay(PVR_GPIO_DELAY);
3141
3142 for (n = 0; n < microlen; n++) {
3143 bits = micro[n];
3144 for ( i = 0 ; i < 8 ; i++ ) {
3145 gpio_bits(BTTV_ALT_DCLK,0);
3146 if (bits & 0x01)
3147 gpio_bits(BTTV_ALT_DATA,BTTV_ALT_DATA);
3148 else
3149 gpio_bits(BTTV_ALT_DATA,0);
3150 gpio_bits(BTTV_ALT_DCLK,BTTV_ALT_DCLK);
3151 bits >>= 1;
3152 }
3153 }
3154 gpio_bits(BTTV_ALT_DCLK,0);
3155 udelay(PVR_GPIO_DELAY);
3156
3157 /* begin Altera init loop (Not necessary,but doesn't hurt) */
3158 for (i = 0 ; i < 30 ; i++) {
3159 gpio_bits(BTTV_ALT_DCLK,0);
3160 gpio_bits(BTTV_ALT_DCLK,BTTV_ALT_DCLK);
3161 }
3162 gpio_bits(BTTV_ALT_DCLK,0);
3163 return 0;
3164}
3165
3166static int __devinit pvr_boot(struct bttv *btv)
3167{
3168 const struct firmware *fw_entry;
3169 int rc;
3170
3171 rc = request_firmware(&fw_entry, "hcwamc.rbf", &btv->c.pci->dev);
3172 if (rc != 0) {
3173 printk(KERN_WARNING "bttv%d: no altera firmware [via hotplug]\n",
3174 btv->c.nr);
3175 return rc;
3176 }
3177 rc = pvr_altera_load(btv, fw_entry->data, fw_entry->size);
3178 printk(KERN_INFO "bttv%d: altera firmware upload %s\n",
3179 btv->c.nr, (rc < 0) ? "failed" : "ok");
3180 release_firmware(fw_entry);
3181 return rc;
3182}
3183
3184/* ----------------------------------------------------------------------- */
3185/* some osprey specific stuff */
3186
3187static void __devinit osprey_eeprom(struct bttv *btv)
3188{
3189 int i = 0;
3190 unsigned char *ee = eeprom_data;
3191 unsigned long serial = 0;
3192
3193 if (btv->c.type == 0) {
3194 /* this might be an antique... check for MMAC label in eeprom */
3195 if ((ee[0]=='M') && (ee[1]=='M') && (ee[2]=='A') && (ee[3]=='C')) {
3196 unsigned char checksum = 0;
3197 for (i =0; i<21; i++)
3198 checksum += ee[i];
3199 if (checksum != ee[21])
3200 return;
3201 btv->c.type = BTTV_OSPREY1x0_848;
3202 for (i = 12; i < 21; i++)
3203 serial *= 10, serial += ee[i] - '0';
3204 }
3205 } else {
3206 unsigned short type;
3207 int offset = 4*16;
3208
3209 for(; offset < 8*16; offset += 16) {
3210 unsigned short checksum = 0;
3211 /* verify the checksum */
3212 for(i = 0; i<14; i++) checksum += ee[i+offset];
3213 checksum = ~checksum; /* no idea why */
3214 if ((((checksum>>8)&0x0FF) == ee[offset+14]) &&
3215 ((checksum & 0x0FF) == ee[offset+15])) {
3216 break;
3217 }
3218 }
3219
3220 if (offset >= 8*16)
3221 return;
3222
3223 /* found a valid descriptor */
3224 type = (ee[offset+4]<<8) | (ee[offset+5]);
3225
3226 switch(type) {
3227
3228 /* 848 based */
3229 case 0x0004:
3230 btv->c.type = BTTV_OSPREY1x0_848;
3231 break;
3232 case 0x0005:
3233 btv->c.type = BTTV_OSPREY101_848;
3234 break;
3235
3236 /* 878 based */
3237 case 0x0012:
3238 case 0x0013:
3239 btv->c.type = BTTV_OSPREY1x0;
3240 break;
3241 case 0x0014:
3242 case 0x0015:
3243 btv->c.type = BTTV_OSPREY1x1;
3244 break;
3245 case 0x0016:
3246 case 0x0017:
3247 case 0x0020:
3248 btv->c.type = BTTV_OSPREY1x1_SVID;
3249 break;
3250 case 0x0018:
3251 case 0x0019:
3252 case 0x001E:
3253 case 0x001F:
3254 btv->c.type = BTTV_OSPREY2xx;
3255 break;
3256 case 0x001A:
3257 case 0x001B:
3258 btv->c.type = BTTV_OSPREY2x0_SVID;
3259 break;
3260 case 0x0040:
3261 btv->c.type = BTTV_OSPREY500;
3262 break;
3263 case 0x0050:
3264 case 0x0056:
3265 btv->c.type = BTTV_OSPREY540;
3266 /* bttv_osprey_540_init(btv); */
3267 break;
3268 case 0x0060:
3269 case 0x0070:
3270 btv->c.type = BTTV_OSPREY2x0;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003271 /* enable output on select control lines */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 gpio_inout(0xffffff,0x000303);
3273 break;
3274 default:
3275 /* unknown...leave generic, but get serial # */
3276 break;
3277 }
3278 serial = (ee[offset+6] << 24)
3279 | (ee[offset+7] << 16)
3280 | (ee[offset+8] << 8)
3281 | (ee[offset+9]);
3282 }
3283
3284 printk(KERN_INFO "bttv%d: osprey eeprom: card=%d name=%s serial=%ld\n",
3285 btv->c.nr, btv->c.type, bttv_tvcards[btv->c.type].name,serial);
3286}
3287
3288/* ----------------------------------------------------------------------- */
3289/* AVermedia specific stuff, from bktr_card.c */
3290
3291static int tuner_0_table[] = {
3292 TUNER_PHILIPS_NTSC, TUNER_PHILIPS_PAL /* PAL-BG*/,
3293 TUNER_PHILIPS_PAL, TUNER_PHILIPS_PAL /* PAL-I*/,
3294 TUNER_PHILIPS_PAL, TUNER_PHILIPS_PAL,
3295 TUNER_PHILIPS_SECAM, TUNER_PHILIPS_SECAM,
3296 TUNER_PHILIPS_SECAM, TUNER_PHILIPS_PAL,
3297 TUNER_PHILIPS_FM1216ME_MK3 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
3299static int tuner_1_table[] = {
3300 TUNER_TEMIC_NTSC, TUNER_TEMIC_PAL,
3301 TUNER_TEMIC_PAL, TUNER_TEMIC_PAL,
3302 TUNER_TEMIC_PAL, TUNER_TEMIC_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003303 TUNER_TEMIC_4012FY5, TUNER_TEMIC_4012FY5, /* TUNER_TEMIC_SECAM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 TUNER_TEMIC_4012FY5, TUNER_TEMIC_PAL};
3305
3306static void __devinit avermedia_eeprom(struct bttv *btv)
3307{
3308 int tuner_make,tuner_tv_fm,tuner_format,tuner=0;
3309
3310 tuner_make = (eeprom_data[0x41] & 0x7);
3311 tuner_tv_fm = (eeprom_data[0x41] & 0x18) >> 3;
3312 tuner_format = (eeprom_data[0x42] & 0xf0) >> 4;
3313 btv->has_remote = (eeprom_data[0x42] & 0x01);
3314
3315 if (tuner_make == 0 || tuner_make == 2)
3316 if(tuner_format <=0x0a)
3317 tuner = tuner_0_table[tuner_format];
3318 if (tuner_make == 1)
3319 if(tuner_format <=9)
3320 tuner = tuner_1_table[tuner_format];
3321
3322 if (tuner_make == 4)
3323 if(tuner_format == 0x09)
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003324 tuner = TUNER_LG_NTSC_NEW_TAPC; /* TAPC-G702P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
3326 printk(KERN_INFO "bttv%d: Avermedia eeprom[0x%02x%02x]: tuner=",
3327 btv->c.nr,eeprom_data[0x41],eeprom_data[0x42]);
3328 if(tuner) {
3329 btv->tuner_type=tuner;
3330 printk("%d",tuner);
3331 } else
3332 printk("Unknown type");
3333 printk(" radio:%s remote control:%s\n",
3334 tuner_tv_fm ? "yes" : "no",
3335 btv->has_remote ? "yes" : "no");
3336}
3337
3338/* used on Voodoo TV/FM (Voodoo 200), S0 wired to 0x10000 */
3339void bttv_tda9880_setnorm(struct bttv *btv, int norm)
3340{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003341 /* fix up our card entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 if(norm==VIDEO_MODE_NTSC) {
3343 bttv_tvcards[BTTV_VOODOOTV_FM].audiomux[0]=0x957fff;
3344 bttv_tvcards[BTTV_VOODOOTV_FM].audiomux[4]=0x957fff;
3345 dprintk("bttv_tda9880_setnorm to NTSC\n");
3346 }
3347 else {
3348 bttv_tvcards[BTTV_VOODOOTV_FM].audiomux[0]=0x947fff;
3349 bttv_tvcards[BTTV_VOODOOTV_FM].audiomux[4]=0x947fff;
3350 dprintk("bttv_tda9880_setnorm to PAL\n");
3351 }
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003352 /* set GPIO according */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 gpio_bits(bttv_tvcards[btv->c.type].gpiomask,
3354 bttv_tvcards[btv->c.type].audiomux[btv->audio]);
3355}
3356
3357
3358/*
3359 * reset/enable the MSP on some Hauppauge cards
3360 * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
3361 *
3362 * Hauppauge: pin 5
3363 * Voodoo: pin 20
3364 */
3365static void __devinit boot_msp34xx(struct bttv *btv, int pin)
3366{
3367 int mask = (1 << pin);
3368
3369 gpio_inout(mask,mask);
3370 gpio_bits(mask,0);
3371 udelay(2500);
3372 gpio_bits(mask,mask);
3373
3374 if (bttv_gpio)
3375 bttv_gpio_tracking(btv,"msp34xx");
3376 if (bttv_verbose)
3377 printk(KERN_INFO "bttv%d: Hauppauge/Voodoo msp34xx: reset line "
3378 "init [%d]\n", btv->c.nr, pin);
3379}
3380
3381static void __devinit boot_bt832(struct bttv *btv)
3382{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383}
3384
3385/* ----------------------------------------------------------------------- */
3386/* Imagenation L-Model PXC200 Framegrabber */
3387/* This is basically the same procedure as
3388 * used by Alessandro Rubini in his pxc200
3389 * driver, but using BTTV functions */
3390
3391static void __devinit init_PXC200(struct bttv *btv)
3392{
3393 static int vals[] __devinitdata = { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d,
3394 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
3395 0x00 };
3396 unsigned int i;
3397 int tmp;
3398 u32 val;
3399
3400 /* Initialise GPIO-connevted stuff */
3401 gpio_inout(0xffffff, (1<<13));
3402 gpio_write(0);
3403 udelay(3);
3404 gpio_write(1<<13);
3405 /* GPIO inputs are pulled up, so no need to drive
3406 * reset pin any longer */
3407 gpio_bits(0xffffff, 0);
3408 if (bttv_gpio)
3409 bttv_gpio_tracking(btv,"pxc200");
3410
3411 /* we could/should try and reset/control the AD pots? but
3412 right now we simply turned off the crushing. Without
3413 this the AGC drifts drifts
3414 remember the EN is reverse logic -->
3415 setting BT848_ADC_AGC_EN disable the AGC
3416 tboult@eecs.lehigh.edu
3417 */
3418
3419 btwrite(BT848_ADC_RESERVED|BT848_ADC_AGC_EN, BT848_ADC);
3420
3421 /* Initialise MAX517 DAC */
3422 printk(KERN_INFO "Setting DAC reference voltage level ...\n");
3423 bttv_I2CWrite(btv,0x5E,0,0x80,1);
3424
3425 /* Initialise 12C508 PIC */
3426 /* The I2CWrite and I2CRead commmands are actually to the
3427 * same chips - but the R/W bit is included in the address
3428 * argument so the numbers are different */
3429
3430
3431 printk(KERN_INFO "Initialising 12C508 PIC chip ...\n");
3432
3433 /* First of all, enable the clock line. This is used in the PXC200-F */
3434 val = btread(BT848_GPIO_DMA_CTL);
3435 val |= BT848_GPIO_DMA_CTL_GPCLKMODE;
3436 btwrite(val, BT848_GPIO_DMA_CTL);
3437
3438 /* Then, push to 0 the reset pin long enough to reset the *
3439 * device same as above for the reset line, but not the same
3440 * value sent to the GPIO-connected stuff
3441 * which one is the good one? */
3442 gpio_inout(0xffffff,(1<<2));
3443 gpio_write(0);
3444 udelay(10);
3445 gpio_write(1<<2);
3446
3447 for (i = 0; i < ARRAY_SIZE(vals); i++) {
3448 tmp=bttv_I2CWrite(btv,0x1E,0,vals[i],1);
3449 if (tmp != -1) {
3450 printk(KERN_INFO
3451 "I2C Write(%2.2x) = %i\nI2C Read () = %2.2x\n\n",
3452 vals[i],tmp,bttv_I2CRead(btv,0x1F,NULL));
3453 }
3454 }
3455
3456 printk(KERN_INFO "PXC200 Initialised.\n");
3457}
3458
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003459
3460
Peter Skipworth93b43f12005-06-23 22:04:45 -07003461/* ----------------------------------------------------------------------- */
3462/*
3463 * The Adlink RTV-24 (aka Angelo) has some special initialisation to unlock
3464 * it. This apparently involves the following procedure for each 878 chip:
3465 *
3466 * 1) write 0x00C3FEFF to the GPIO_OUT_EN register
3467 *
3468 * 2) write to GPIO_DATA
3469 * - 0x0E
3470 * - sleep 1ms
3471 * - 0x10 + 0x0E
3472 * - sleep 10ms
3473 * - 0x0E
3474 * read from GPIO_DATA into buf (uint_32)
3475 * - if ( data>>18 & 0x01 != 0) || ( buf>>19 & 0x01 != 1 )
3476 * error. ERROR_CPLD_Check_Failed stop.
3477 *
3478 * 3) write to GPIO_DATA
3479 * - write 0x4400 + 0x0E
3480 * - sleep 10ms
3481 * - write 0x4410 + 0x0E
3482 * - sleep 1ms
3483 * - write 0x0E
3484 * read from GPIO_DATA into buf (uint_32)
3485 * - if ( buf>>18 & 0x01 ) || ( buf>>19 && 0x01 != 0 )
3486 * error. ERROR_CPLD_Check_Failed.
3487 */
3488/* ----------------------------------------------------------------------- */
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003489void
3490init_RTV24 (struct bttv *btv)
Peter Skipworth93b43f12005-06-23 22:04:45 -07003491{
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003492 uint32_t dataRead = 0;
3493 long watchdog_value = 0x0E;
Peter Skipworth93b43f12005-06-23 22:04:45 -07003494
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003495 printk (KERN_INFO
3496 "bttv%d: Adlink RTV-24 initialisation in progress ...\n",
Peter Skipworth93b43f12005-06-23 22:04:45 -07003497 btv->c.nr);
3498
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003499 btwrite (0x00c3feff, BT848_GPIO_OUT_EN);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003500
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003501 btwrite (0 + watchdog_value, BT848_GPIO_DATA);
3502 msleep (1);
3503 btwrite (0x10 + watchdog_value, BT848_GPIO_DATA);
3504 msleep (10);
3505 btwrite (0 + watchdog_value, BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003506
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003507 dataRead = btread (BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003508
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003509 if ((((dataRead >> 18) & 0x01) != 0) || (((dataRead >> 19) & 0x01) != 1)) {
3510 printk (KERN_INFO
3511 "bttv%d: Adlink RTV-24 initialisation(1) ERROR_CPLD_Check_Failed (read %d)\n",
3512 btv->c.nr, dataRead);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003513 }
3514
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003515 btwrite (0x4400 + watchdog_value, BT848_GPIO_DATA);
3516 msleep (10);
3517 btwrite (0x4410 + watchdog_value, BT848_GPIO_DATA);
3518 msleep (1);
3519 btwrite (watchdog_value, BT848_GPIO_DATA);
3520 msleep (1);
3521 dataRead = btread (BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003522
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003523 if ((((dataRead >> 18) & 0x01) != 0) || (((dataRead >> 19) & 0x01) != 0)) {
3524 printk (KERN_INFO
3525 "bttv%d: Adlink RTV-24 initialisation(2) ERROR_CPLD_Check_Failed (read %d)\n",
3526 btv->c.nr, dataRead);
3527
Peter Skipworth93b43f12005-06-23 22:04:45 -07003528 return;
3529 }
3530
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003531 printk (KERN_INFO
3532 "bttv%d: Adlink RTV-24 initialisation complete.\n", btv->c.nr);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003533}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003535
3536
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537/* ----------------------------------------------------------------------- */
3538/* Miro Pro radio stuff -- the tea5757 is connected to some GPIO ports */
3539/*
3540 * Copyright (c) 1999 Csaba Halasz <qgehali@uni-miskolc.hu>
3541 * This code is placed under the terms of the GNU General Public License
3542 *
3543 * Brutally hacked by Dan Sheridan <dan.sheridan@contact.org.uk> djs52 8/3/00
3544 */
3545
3546static void bus_low(struct bttv *btv, int bit)
3547{
3548 if (btv->mbox_ior) {
3549 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3550 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3551 udelay(5);
3552 }
3553
3554 gpio_bits(bit,0);
3555 udelay(5);
3556
3557 if (btv->mbox_ior) {
3558 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3559 udelay(5);
3560 }
3561}
3562
3563static void bus_high(struct bttv *btv, int bit)
3564{
3565 if (btv->mbox_ior) {
3566 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3567 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3568 udelay(5);
3569 }
3570
3571 gpio_bits(bit,bit);
3572 udelay(5);
3573
3574 if (btv->mbox_ior) {
3575 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3576 udelay(5);
3577 }
3578}
3579
3580static int bus_in(struct bttv *btv, int bit)
3581{
3582 if (btv->mbox_ior) {
3583 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3584 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3585 udelay(5);
3586
3587 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3588 udelay(5);
3589 }
3590 return gpio_read() & (bit);
3591}
3592
3593/* TEA5757 register bits */
3594#define TEA_FREQ 0:14
3595#define TEA_BUFFER 15:15
3596
3597#define TEA_SIGNAL_STRENGTH 16:17
3598
3599#define TEA_PORT1 18:18
3600#define TEA_PORT0 19:19
3601
3602#define TEA_BAND 20:21
3603#define TEA_BAND_FM 0
3604#define TEA_BAND_MW 1
3605#define TEA_BAND_LW 2
3606#define TEA_BAND_SW 3
3607
3608#define TEA_MONO 22:22
3609#define TEA_ALLOW_STEREO 0
3610#define TEA_FORCE_MONO 1
3611
3612#define TEA_SEARCH_DIRECTION 23:23
3613#define TEA_SEARCH_DOWN 0
3614#define TEA_SEARCH_UP 1
3615
3616#define TEA_STATUS 24:24
3617#define TEA_STATUS_TUNED 0
3618#define TEA_STATUS_SEARCHING 1
3619
3620/* Low-level stuff */
3621static int tea5757_read(struct bttv *btv)
3622{
3623 unsigned long timeout;
3624 int value = 0;
3625 int i;
3626
3627 /* better safe than sorry */
3628 gpio_inout(btv->mbox_mask, btv->mbox_clk | btv->mbox_we);
3629
3630 if (btv->mbox_ior) {
3631 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3632 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3633 udelay(5);
3634 }
3635
3636 if (bttv_gpio)
3637 bttv_gpio_tracking(btv,"tea5757 read");
3638
3639 bus_low(btv,btv->mbox_we);
3640 bus_low(btv,btv->mbox_clk);
3641
3642 udelay(10);
3643 timeout= jiffies + HZ;
3644
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003645 /* wait for DATA line to go low; error if it doesn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 while (bus_in(btv,btv->mbox_data) && time_before(jiffies, timeout))
3647 schedule();
3648 if (bus_in(btv,btv->mbox_data)) {
3649 printk(KERN_WARNING "bttv%d: tea5757: read timeout\n",btv->c.nr);
3650 return -1;
3651 }
3652
3653 dprintk("bttv%d: tea5757:",btv->c.nr);
3654 for(i = 0; i < 24; i++)
3655 {
3656 udelay(5);
3657 bus_high(btv,btv->mbox_clk);
3658 udelay(5);
3659 dprintk("%c",(bus_in(btv,btv->mbox_most) == 0)?'T':'-');
3660 bus_low(btv,btv->mbox_clk);
3661 value <<= 1;
3662 value |= (bus_in(btv,btv->mbox_data) == 0)?0:1; /* MSB first */
3663 dprintk("%c", (bus_in(btv,btv->mbox_most) == 0)?'S':'M');
3664 }
3665 dprintk("\nbttv%d: tea5757: read 0x%X\n", btv->c.nr, value);
3666 return value;
3667}
3668
3669static int tea5757_write(struct bttv *btv, int value)
3670{
3671 int i;
3672 int reg = value;
3673
3674 gpio_inout(btv->mbox_mask, btv->mbox_clk | btv->mbox_we | btv->mbox_data);
3675
3676 if (btv->mbox_ior) {
3677 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3678 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3679 udelay(5);
3680 }
3681 if (bttv_gpio)
3682 bttv_gpio_tracking(btv,"tea5757 write");
3683
3684 dprintk("bttv%d: tea5757: write 0x%X\n", btv->c.nr, value);
3685 bus_low(btv,btv->mbox_clk);
3686 bus_high(btv,btv->mbox_we);
3687 for(i = 0; i < 25; i++)
3688 {
3689 if (reg & 0x1000000)
3690 bus_high(btv,btv->mbox_data);
3691 else
3692 bus_low(btv,btv->mbox_data);
3693 reg <<= 1;
3694 bus_high(btv,btv->mbox_clk);
3695 udelay(10);
3696 bus_low(btv,btv->mbox_clk);
3697 udelay(10);
3698 }
3699 bus_low(btv,btv->mbox_we); /* unmute !!! */
3700 return 0;
3701}
3702
3703void tea5757_set_freq(struct bttv *btv, unsigned short freq)
3704{
3705 dprintk("tea5757_set_freq %d\n",freq);
3706 tea5757_write(btv, 5 * freq + 0x358); /* add 10.7MHz (see docs) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707}
3708
3709
3710/* ----------------------------------------------------------------------- */
3711/* winview */
3712
3713void winview_audio(struct bttv *btv, struct video_audio *v, int set)
3714{
3715 /* PT2254A programming Jon Tombs, jon@gte.esi.us.es */
3716 int bits_out, loops, vol, data;
3717
3718 if (!set) {
3719 /* Fixed by Leandro Lucarella <luca@linuxmendoza.org.ar (07/31/01) */
3720 v->flags |= VIDEO_AUDIO_VOLUME;
3721 return;
3722 }
3723
3724 /* 32 levels logarithmic */
3725 vol = 32 - ((v->volume>>11));
3726 /* units */
3727 bits_out = (PT2254_DBS_IN_2>>(vol%5));
3728 /* tens */
3729 bits_out |= (PT2254_DBS_IN_10>>(vol/5));
3730 bits_out |= PT2254_L_CHANNEL | PT2254_R_CHANNEL;
3731 data = gpio_read();
3732 data &= ~(WINVIEW_PT2254_CLK| WINVIEW_PT2254_DATA|
3733 WINVIEW_PT2254_STROBE);
3734 for (loops = 17; loops >= 0 ; loops--) {
3735 if (bits_out & (1<<loops))
3736 data |= WINVIEW_PT2254_DATA;
3737 else
3738 data &= ~WINVIEW_PT2254_DATA;
3739 gpio_write(data);
3740 udelay(5);
3741 data |= WINVIEW_PT2254_CLK;
3742 gpio_write(data);
3743 udelay(5);
3744 data &= ~WINVIEW_PT2254_CLK;
3745 gpio_write(data);
3746 }
3747 data |= WINVIEW_PT2254_STROBE;
3748 data &= ~WINVIEW_PT2254_DATA;
3749 gpio_write(data);
3750 udelay(10);
3751 data &= ~WINVIEW_PT2254_STROBE;
3752 gpio_write(data);
3753}
3754
3755/* ----------------------------------------------------------------------- */
3756/* mono/stereo control for various cards (which don't use i2c chips but */
3757/* connect something to the GPIO pins */
3758
3759static void
3760gvbctv3pci_audio(struct bttv *btv, struct video_audio *v, int set)
3761{
3762 unsigned int con = 0;
3763
3764 if (set) {
3765 gpio_inout(0x300, 0x300);
3766 if (v->mode & VIDEO_SOUND_LANG1)
3767 con = 0x000;
3768 if (v->mode & VIDEO_SOUND_LANG2)
3769 con = 0x300;
3770 if (v->mode & VIDEO_SOUND_STEREO)
3771 con = 0x200;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003772/* if (v->mode & VIDEO_SOUND_MONO)
3773 * con = 0x100; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 gpio_bits(0x300, con);
3775 } else {
3776 v->mode = VIDEO_SOUND_STEREO |
3777 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3778 }
3779}
3780
3781static void
3782gvbctv5pci_audio(struct bttv *btv, struct video_audio *v, int set)
3783{
3784 unsigned int val, con;
3785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 if (btv->radio_user)
3787 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788
3789 val = gpio_read();
3790 if (set) {
3791 con = 0x000;
3792 if (v->mode & VIDEO_SOUND_LANG2) {
3793 if (v->mode & VIDEO_SOUND_LANG1) {
3794 /* LANG1 + LANG2 */
3795 con = 0x100;
3796 }
3797 else {
3798 /* LANG2 */
3799 con = 0x300;
3800 }
3801 }
3802 if (con != (val & 0x300)) {
3803 gpio_bits(0x300, con);
3804 if (bttv_gpio)
3805 bttv_gpio_tracking(btv,"gvbctv5pci");
3806 }
3807 } else {
3808 switch (val & 0x70) {
3809 case 0x10:
3810 v->mode = VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3811 break;
3812 case 0x30:
3813 v->mode = VIDEO_SOUND_LANG2;
3814 break;
3815 case 0x50:
3816 v->mode = VIDEO_SOUND_LANG1;
3817 break;
3818 case 0x60:
3819 v->mode = VIDEO_SOUND_STEREO;
3820 break;
3821 case 0x70:
3822 v->mode = VIDEO_SOUND_MONO;
3823 break;
3824 default:
3825 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3826 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3827 }
3828 }
3829}
3830
3831/*
3832 * Mario Medina Nussbaum <medisoft@alohabbs.org.mx>
3833 * I discover that on BT848_GPIO_DATA address a byte 0xcce enable stereo,
3834 * 0xdde enables mono and 0xccd enables sap
3835 *
3836 * Petr Vandrovec <VANDROVE@vc.cvut.cz>
3837 * P.S.: At least mask in line above is wrong - GPIO pins 3,2 select
3838 * input/output sound connection, so both must be set for output mode.
3839 *
3840 * Looks like it's needed only for the "tvphone", the "tvphone 98"
3841 * handles this with a tda9840
3842 *
3843 */
3844static void
3845avermedia_tvphone_audio(struct bttv *btv, struct video_audio *v, int set)
3846{
3847 int val = 0;
3848
3849 if (set) {
3850 if (v->mode & VIDEO_SOUND_LANG2) /* SAP */
3851 val = 0x02;
3852 if (v->mode & VIDEO_SOUND_STEREO)
3853 val = 0x01;
3854 if (val) {
3855 gpio_bits(0x03,val);
3856 if (bttv_gpio)
3857 bttv_gpio_tracking(btv,"avermedia");
3858 }
3859 } else {
3860 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3861 VIDEO_SOUND_LANG1;
3862 return;
3863 }
3864}
3865
3866static void
3867avermedia_tv_stereo_audio(struct bttv *btv, struct video_audio *v, int set)
3868{
3869 int val = 0;
3870
3871 if (set) {
3872 if (v->mode & VIDEO_SOUND_LANG2) /* SAP */
3873 val = 0x01;
3874 if (v->mode & VIDEO_SOUND_STEREO) /* STEREO */
3875 val = 0x02;
3876 btaor(val, ~0x03, BT848_GPIO_DATA);
3877 if (bttv_gpio)
3878 bttv_gpio_tracking(btv,"avermedia");
3879 } else {
3880 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3881 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3882 return;
3883 }
3884}
3885
3886/* Lifetec 9415 handling */
3887static void
3888lt9415_audio(struct bttv *btv, struct video_audio *v, int set)
3889{
3890 int val = 0;
3891
3892 if (gpio_read() & 0x4000) {
3893 v->mode = VIDEO_SOUND_MONO;
3894 return;
3895 }
3896
3897 if (set) {
3898 if (v->mode & VIDEO_SOUND_LANG2) /* A2 SAP */
3899 val = 0x0080;
3900 if (v->mode & VIDEO_SOUND_STEREO) /* A2 stereo */
3901 val = 0x0880;
3902 if ((v->mode & VIDEO_SOUND_LANG1) ||
3903 (v->mode & VIDEO_SOUND_MONO))
3904 val = 0;
3905 gpio_bits(0x0880, val);
3906 if (bttv_gpio)
3907 bttv_gpio_tracking(btv,"lt9415");
3908 } else {
3909 /* autodetect doesn't work with this card :-( */
3910 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3911 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3912 return;
3913 }
3914}
3915
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003916/* TDA9821 on TerraTV+ Bt848, Bt878 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917static void
3918terratv_audio(struct bttv *btv, struct video_audio *v, int set)
3919{
3920 unsigned int con = 0;
3921
3922 if (set) {
3923 gpio_inout(0x180000,0x180000);
3924 if (v->mode & VIDEO_SOUND_LANG2)
3925 con = 0x080000;
3926 if (v->mode & VIDEO_SOUND_STEREO)
3927 con = 0x180000;
3928 gpio_bits(0x180000, con);
3929 if (bttv_gpio)
3930 bttv_gpio_tracking(btv,"terratv");
3931 } else {
3932 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3933 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3934 }
3935}
3936
3937static void
3938winfast2000_audio(struct bttv *btv, struct video_audio *v, int set)
3939{
3940 unsigned long val = 0;
3941
3942 if (set) {
3943 /*btor (0xc32000, BT848_GPIO_OUT_EN);*/
3944 if (v->mode & VIDEO_SOUND_MONO) /* Mono */
3945 val = 0x420000;
3946 if (v->mode & VIDEO_SOUND_LANG1) /* Mono */
3947 val = 0x420000;
3948 if (v->mode & VIDEO_SOUND_LANG2) /* SAP */
3949 val = 0x410000;
3950 if (v->mode & VIDEO_SOUND_STEREO) /* Stereo */
3951 val = 0x020000;
3952 if (val) {
3953 gpio_bits(0x430000, val);
3954 if (bttv_gpio)
3955 bttv_gpio_tracking(btv,"winfast2000");
3956 }
3957 } else {
3958 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3959 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3960 }
3961}
3962
3963/*
3964 * Dariusz Kowalewski <darekk@automex.pl>
3965 * sound control for Prolink PV-BT878P+9B (PixelView PlayTV Pro FM+NICAM
3966 * revision 9B has on-board TDA9874A sound decoder).
3967 *
3968 * Note: There are card variants without tda9874a. Forcing the "stereo sound route"
3969 * will mute this cards.
3970 */
3971static void
3972pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set)
3973{
3974 unsigned int val = 0;
3975
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 if (btv->radio_user)
3977 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
3979 if (set) {
3980 if (v->mode & VIDEO_SOUND_MONO) {
3981 val = 0x01;
3982 }
3983 if ((v->mode & (VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2))
3984 || (v->mode & VIDEO_SOUND_STEREO)) {
3985 val = 0x02;
3986 }
3987 if (val) {
3988 gpio_bits(0x03,val);
3989 if (bttv_gpio)
3990 bttv_gpio_tracking(btv,"pvbt878p9b");
3991 }
3992 } else {
3993 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3994 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3995 }
3996}
3997
3998/*
3999 * Dariusz Kowalewski <darekk@automex.pl>
4000 * sound control for FlyVideo 2000S (with tda9874 decoder)
4001 * based on pvbt878p9b_audio() - this is not tested, please fix!!!
4002 */
4003static void
4004fv2000s_audio(struct bttv *btv, struct video_audio *v, int set)
4005{
4006 unsigned int val = 0xffff;
4007
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 if (btv->radio_user)
4009 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 if (set) {
4011 if (v->mode & VIDEO_SOUND_MONO) {
4012 val = 0x0000;
4013 }
4014 if ((v->mode & (VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2))
4015 || (v->mode & VIDEO_SOUND_STEREO)) {
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004016 val = 0x1080; /*-dk-???: 0x0880, 0x0080, 0x1800 ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 }
4018 if (val != 0xffff) {
4019 gpio_bits(0x1800, val);
4020 if (bttv_gpio)
4021 bttv_gpio_tracking(btv,"fv2000s");
4022 }
4023 } else {
4024 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4025 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4026 }
4027}
4028
4029/*
4030 * sound control for Canopus WinDVR PCI
4031 * Masaki Suzuki <masaki@btree.org>
4032 */
4033static void
4034windvr_audio(struct bttv *btv, struct video_audio *v, int set)
4035{
4036 unsigned long val = 0;
4037
4038 if (set) {
4039 if (v->mode & VIDEO_SOUND_MONO)
4040 val = 0x040000;
4041 if (v->mode & VIDEO_SOUND_LANG1)
4042 val = 0;
4043 if (v->mode & VIDEO_SOUND_LANG2)
4044 val = 0x100000;
4045 if (v->mode & VIDEO_SOUND_STEREO)
4046 val = 0;
4047 if (val) {
4048 gpio_bits(0x140000, val);
4049 if (bttv_gpio)
4050 bttv_gpio_tracking(btv,"windvr");
4051 }
4052 } else {
4053 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4054 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4055 }
4056}
4057
4058/*
4059 * sound control for AD-TVK503
4060 * Hiroshi Takekawa <sian@big.or.jp>
4061 */
4062static void
4063adtvk503_audio(struct bttv *btv, struct video_audio *v, int set)
4064{
4065 unsigned int con = 0xffffff;
4066
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004067 /* btaor(0x1e0000, ~0x1e0000, BT848_GPIO_OUT_EN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068
4069 if (set) {
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004070 /* btor(***, BT848_GPIO_OUT_EN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 if (v->mode & VIDEO_SOUND_LANG1)
4072 con = 0x00000000;
4073 if (v->mode & VIDEO_SOUND_LANG2)
4074 con = 0x00180000;
4075 if (v->mode & VIDEO_SOUND_STEREO)
4076 con = 0x00000000;
4077 if (v->mode & VIDEO_SOUND_MONO)
4078 con = 0x00060000;
4079 if (con != 0xffffff) {
4080 gpio_bits(0x1e0000,con);
4081 if (bttv_gpio)
4082 bttv_gpio_tracking(btv, "adtvk503");
4083 }
4084 } else {
4085 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4086 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4087 }
4088}
4089
4090/* RemoteVision MX (rv605) muxsel helper [Miguel Freitas]
4091 *
4092 * This is needed because rv605 don't use a normal multiplex, but a crosspoint
4093 * switch instead (CD22M3494E). This IC can have multiple active connections
4094 * between Xn (input) and Yn (output) pins. We need to clear any existing
4095 * connection prior to establish a new one, pulsing the STROBE pin.
4096 *
4097 * The board hardwire Y0 (xpoint) to MUX1 and MUXOUT to Yin.
4098 * GPIO pins are wired as:
4099 * GPIO[0:3] - AX[0:3] (xpoint) - P1[0:3] (microcontroler)
4100 * GPIO[4:6] - AY[0:2] (xpoint) - P1[4:6] (microcontroler)
4101 * GPIO[7] - DATA (xpoint) - P1[7] (microcontroler)
4102 * GPIO[8] - - P3[5] (microcontroler)
4103 * GPIO[9] - RESET (xpoint) - P3[6] (microcontroler)
4104 * GPIO[10] - STROBE (xpoint) - P3[7] (microcontroler)
4105 * GPINTR - - P3[4] (microcontroler)
4106 *
4107 * The microcontroler is a 80C32 like. It should be possible to change xpoint
4108 * configuration either directly (as we are doing) or using the microcontroler
4109 * which is also wired to I2C interface. I have no further info on the
4110 * microcontroler features, one would need to disassembly the firmware.
4111 * note: the vendor refused to give any information on this product, all
4112 * that stuff was found using a multimeter! :)
4113 */
4114static void rv605_muxsel(struct bttv *btv, unsigned int input)
4115{
4116 /* reset all conections */
4117 gpio_bits(0x200,0x200);
4118 mdelay(1);
4119 gpio_bits(0x200,0x000);
4120 mdelay(1);
4121
4122 /* create a new conection */
4123 gpio_bits(0x480,0x080);
4124 gpio_bits(0x480,0x480);
4125 mdelay(1);
4126 gpio_bits(0x480,0x080);
4127 mdelay(1);
4128}
4129
4130/* Tibet Systems 'Progress DVR' CS16 muxsel helper [Chris Fanning]
4131 *
4132 * The CS16 (available on eBay cheap) is a PCI board with four Fusion
4133 * 878A chips, a PCI bridge, an Atmel microcontroller, four sync seperator
4134 * chips, ten eight input analog multiplexors, a not chip and a few
4135 * other components.
4136 *
4137 * 16 inputs on a secondary bracket are provided and can be selected
4138 * from each of the four capture chips. Two of the eight input
4139 * multiplexors are used to select from any of the 16 input signals.
4140 *
4141 * Unsupported hardware capabilities:
4142 * . A video output monitor on the secondary bracket can be selected from
4143 * one of the 878A chips.
4144 * . Another passthrough but I haven't spent any time investigating it.
4145 * . Digital I/O (logic level connected to GPIO) is available from an
4146 * onboard header.
4147 *
4148 * The on chip input mux should always be set to 2.
4149 * GPIO[16:19] - Video input selection
4150 * GPIO[0:3] - Video output monitor select (only available from one 878A)
4151 * GPIO[?:?] - Digital I/O.
4152 *
4153 * There is an ATMEL microcontroller with an 8031 core on board. I have not
4154 * determined what function (if any) it provides. With the microcontroller
4155 * and sync seperator chips a guess is that it might have to do with video
4156 * switching and maybe some digital I/O.
4157 */
4158static void tibetCS16_muxsel(struct bttv *btv, unsigned int input)
4159{
4160 /* video mux */
4161 gpio_bits(0x0f0000, input << 16);
4162}
4163
4164static void tibetCS16_init(struct bttv *btv)
4165{
4166 /* enable gpio bits, mask obtained via btSpy */
4167 gpio_inout(0xffffff, 0x0f7fff);
4168 gpio_write(0x0f7fff);
4169}
4170
4171/*
4172 * The following routines for the Kodicom-4400r get a little mind-twisting.
4173 * There is a "master" controller and three "slave" controllers, together
4174 * an analog switch which connects any of 16 cameras to any of the BT87A's.
4175 * The analog switch is controlled by the "master", but the detection order
4176 * of the four BT878A chips is in an order which I just don't understand.
4177 * The "master" is actually the second controller to be detected. The
4178 * logic on the board uses logical numbers for the 4 controlers, but
4179 * those numbers are different from the detection sequence. When working
4180 * with the analog switch, we need to "map" from the detection sequence
4181 * over to the board's logical controller number. This mapping sequence
4182 * is {3, 0, 2, 1}, i.e. the first controller to be detected is logical
4183 * unit 3, the second (which is the master) is logical unit 0, etc.
4184 * We need to maintain the status of the analog switch (which of the 16
4185 * cameras is connected to which of the 4 controllers). Rather than
4186 * add to the bttv structure for this, we use the data reserved for
4187 * the mbox (unused for this card type).
4188 */
4189
4190/*
4191 * First a routine to set the analog switch, which controls which camera
4192 * is routed to which controller. The switch comprises an X-address
4193 * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4194 * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4195 * A data value (gpio bit 7) of '1' enables the switch, and '0' disables
4196 * the switch. A STROBE bit (gpio bit 8) latches the data value into the
4197 * specified address. The idea is to set the address and data, then bring
4198 * STROBE high, and finally bring STROBE back to low.
4199 */
4200static void kodicom4400r_write(struct bttv *btv,
4201 unsigned char xaddr,
4202 unsigned char yaddr,
4203 unsigned char data) {
4204 unsigned int udata;
4205
4206 udata = (data << 7) | ((yaddr&3) << 4) | (xaddr&0xf);
4207 gpio_bits(0x1ff, udata); /* write ADDR and DAT */
4208 gpio_bits(0x1ff, udata | (1 << 8)); /* strobe high */
4209 gpio_bits(0x1ff, udata); /* strobe low */
4210}
4211
4212/*
4213 * Next the mux select. Both the "master" and "slave" 'cards' (controllers)
4214 * use this routine. The routine finds the "master" for the card, maps
4215 * the controller number from the detected position over to the logical
4216 * number, writes the appropriate data to the analog switch, and housekeeps
4217 * the local copy of the switch information. The parameter 'input' is the
4218 * requested camera number (0 - 15).
4219 */
4220static void kodicom4400r_muxsel(struct bttv *btv, unsigned int input)
4221{
4222 char *sw_status;
4223 int xaddr, yaddr;
4224 struct bttv *mctlr;
4225 static unsigned char map[4] = {3, 0, 2, 1};
4226
4227 mctlr = master[btv->c.nr];
4228 if (mctlr == NULL) { /* ignore if master not yet detected */
4229 return;
4230 }
4231 yaddr = (btv->c.nr - mctlr->c.nr + 1) & 3; /* the '&' is for safety */
4232 yaddr = map[yaddr];
4233 sw_status = (char *)(&mctlr->mbox_we);
4234 xaddr = input & 0xf;
4235 /* Check if the controller/camera pair has changed, else ignore */
4236 if (sw_status[yaddr] != xaddr)
4237 {
4238 /* "open" the old switch, "close" the new one, save the new */
4239 kodicom4400r_write(mctlr, sw_status[yaddr], yaddr, 0);
4240 sw_status[yaddr] = xaddr;
4241 kodicom4400r_write(mctlr, xaddr, yaddr, 1);
4242 }
4243}
4244
4245/*
4246 * During initialisation, we need to reset the analog switch. We
4247 * also preset the switch to map the 4 connectors on the card to the
4248 * *user's* (see above description of kodicom4400r_muxsel) channels
4249 * 0 through 3
4250 */
4251static void kodicom4400r_init(struct bttv *btv)
4252{
4253 char *sw_status = (char *)(&btv->mbox_we);
4254 int ix;
4255
4256 gpio_inout(0x0003ff, 0x0003ff);
4257 gpio_write(1 << 9); /* reset MUX */
4258 gpio_write(0);
4259 /* Preset camera 0 to the 4 controllers */
4260 for (ix=0; ix<4; ix++) {
4261 sw_status[ix] = ix;
4262 kodicom4400r_write(btv, ix, ix, 1);
4263 }
4264 /*
4265 * Since this is the "master", we need to set up the
4266 * other three controller chips' pointers to this structure
4267 * for later use in the muxsel routine.
4268 */
4269 if ((btv->c.nr<1) || (btv->c.nr>BTTV_MAX-3))
4270 return;
4271 master[btv->c.nr-1] = btv;
4272 master[btv->c.nr] = btv;
4273 master[btv->c.nr+1] = btv;
4274 master[btv->c.nr+2] = btv;
4275}
4276
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004277/* The Grandtec X-Guard framegrabber card uses two Dual 4-channel
4278 * video multiplexers to provide up to 16 video inputs. These
4279 * multiplexers are controlled by the lower 8 GPIO pins of the
4280 * bt878. The multiplexers probably Pericom PI5V331Q or similar.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004282 * xxx0 is pin xxx of multiplexer U5,
4283 * yyy1 is pin yyy of multiplexer U2
4284 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285#define ENA0 0x01
4286#define ENB0 0x02
4287#define ENA1 0x04
4288#define ENB1 0x08
4289
4290#define IN10 0x10
4291#define IN00 0x20
4292#define IN11 0x40
4293#define IN01 0x80
4294
4295static void xguard_muxsel(struct bttv *btv, unsigned int input)
4296{
4297 static const int masks[] = {
4298 ENB0, ENB0|IN00, ENB0|IN10, ENB0|IN00|IN10,
4299 ENA0, ENA0|IN00, ENA0|IN10, ENA0|IN00|IN10,
4300 ENB1, ENB1|IN01, ENB1|IN11, ENB1|IN01|IN11,
4301 ENA1, ENA1|IN01, ENA1|IN11, ENA1|IN01|IN11,
4302 };
4303 gpio_write(masks[input%16]);
4304}
4305static void picolo_tetra_init(struct bttv *btv)
4306{
4307 /*This is the video input redirection fonctionality : I DID NOT USED IT. */
4308 btwrite (0x08<<16,BT848_GPIO_DATA);/*GPIO[19] [==> 4053 B+C] set to 1 */
4309 btwrite (0x04<<16,BT848_GPIO_DATA);/*GPIO[18] [==> 4053 A] set to 1*/
4310}
4311static void picolo_tetra_muxsel (struct bttv* btv, unsigned int input)
4312{
4313
4314 dprintk (KERN_DEBUG "bttv%d : picolo_tetra_muxsel => input = %d\n",btv->c.nr,input);
4315 /*Just set the right path in the analog multiplexers : channel 1 -> 4 ==> Analog Mux ==> MUX0*/
4316 /*GPIO[20]&GPIO[21] used to choose the right input*/
4317 btwrite (input<<20,BT848_GPIO_DATA);
4318
4319}
4320
4321/*
4322 * ivc120_muxsel [Added by Alan Garfield <alan@fromorbit.com>]
4323 *
4324 * The IVC120G security card has 4 i2c controlled TDA8540 matrix
4325 * swichers to provide 16 channels to MUX0. The TDA8540's have
4326 * 4 indepedant outputs and as such the IVC120G also has the
4327 * optional "Monitor Out" bus. This allows the card to be looking
4328 * at one input while the monitor is looking at another.
4329 *
4330 * Since I've couldn't be bothered figuring out how to add an
4331 * independant muxsel for the monitor bus, I've just set it to
4332 * whatever the card is looking at.
4333 *
4334 * OUT0 of the TDA8540's is connected to MUX0 (0x03)
4335 * OUT1 of the TDA8540's is connected to "Monitor Out" (0x0C)
4336 *
4337 * TDA8540_ALT3 IN0-3 = Channel 13 - 16 (0x03)
4338 * TDA8540_ALT4 IN0-3 = Channel 1 - 4 (0x03)
4339 * TDA8540_ALT5 IN0-3 = Channel 5 - 8 (0x03)
4340 * TDA8540_ALT6 IN0-3 = Channel 9 - 12 (0x03)
4341 *
4342 */
4343
4344/* All 7 possible sub-ids for the TDA8540 Matrix Switcher */
4345#define I2C_TDA8540 0x90
4346#define I2C_TDA8540_ALT1 0x92
4347#define I2C_TDA8540_ALT2 0x94
4348#define I2C_TDA8540_ALT3 0x96
4349#define I2C_TDA8540_ALT4 0x98
4350#define I2C_TDA8540_ALT5 0x9a
4351#define I2C_TDA8540_ALT6 0x9c
4352
4353static void ivc120_muxsel(struct bttv *btv, unsigned int input)
4354{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004355 /* Simple maths */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 int key = input % 4;
4357 int matrix = input / 4;
4358
4359 dprintk("bttv%d: ivc120_muxsel: Input - %02d | TDA - %02d | In - %02d\n",
4360 btv->c.nr, input, matrix, key);
4361
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004362 /* Handles the input selection on the TDA8540's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 bttv_I2CWrite(btv, I2C_TDA8540_ALT3, 0x00,
4364 ((matrix == 3) ? (key | key << 2) : 0x00), 1);
4365 bttv_I2CWrite(btv, I2C_TDA8540_ALT4, 0x00,
4366 ((matrix == 0) ? (key | key << 2) : 0x00), 1);
4367 bttv_I2CWrite(btv, I2C_TDA8540_ALT5, 0x00,
4368 ((matrix == 1) ? (key | key << 2) : 0x00), 1);
4369 bttv_I2CWrite(btv, I2C_TDA8540_ALT6, 0x00,
4370 ((matrix == 2) ? (key | key << 2) : 0x00), 1);
4371
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004372 /* Handles the output enables on the TDA8540's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 bttv_I2CWrite(btv, I2C_TDA8540_ALT3, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004374 ((matrix == 3) ? 0x03 : 0x00), 1); /* 13 - 16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 bttv_I2CWrite(btv, I2C_TDA8540_ALT4, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004376 ((matrix == 0) ? 0x03 : 0x00), 1); /* 1-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 bttv_I2CWrite(btv, I2C_TDA8540_ALT5, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004378 ((matrix == 1) ? 0x03 : 0x00), 1); /* 5-8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 bttv_I2CWrite(btv, I2C_TDA8540_ALT6, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004380 ((matrix == 2) ? 0x03 : 0x00), 1); /* 9-12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004382 /* Selects MUX0 for input on the 878 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 btaor((0)<<5, ~(3<<5), BT848_IFORM);
4384}
4385
4386
4387/* PXC200 muxsel helper
4388 * luke@syseng.anu.edu.au
4389 * another transplant
4390 * from Alessandro Rubini (rubini@linux.it)
4391 *
4392 * There are 4 kinds of cards:
4393 * PXC200L which is bt848
4394 * PXC200F which is bt848 with PIC controlling mux
4395 * PXC200AL which is bt878
4396 * PXC200AF which is bt878 with PIC controlling mux
4397 */
4398#define PX_CFG_PXC200F 0x01
4399#define PX_FLAG_PXC200A 0x00001000 /* a pxc200A is bt-878 based */
4400#define PX_I2C_PIC 0x0f
4401#define PX_PXC200A_CARDID 0x200a1295
4402#define PX_I2C_CMD_CFG 0x00
4403
4404static void PXC200_muxsel(struct bttv *btv, unsigned int input)
4405{
4406 int rc;
4407 long mux;
4408 int bitmask;
4409 unsigned char buf[2];
4410
4411 /* Read PIC config to determine if this is a PXC200F */
4412 /* PX_I2C_CMD_CFG*/
4413 buf[0]=0;
4414 buf[1]=0;
4415 rc=bttv_I2CWrite(btv,(PX_I2C_PIC<<1),buf[0],buf[1],1);
4416 if (rc) {
4417 printk(KERN_DEBUG "bttv%d: PXC200_muxsel: pic cfg write failed:%d\n", btv->c.nr,rc);
4418 /* not PXC ? do nothing */
4419 return;
4420 }
4421
4422 rc=bttv_I2CRead(btv,(PX_I2C_PIC<<1),NULL);
4423 if (!(rc & PX_CFG_PXC200F)) {
4424 printk(KERN_DEBUG "bttv%d: PXC200_muxsel: not PXC200F rc:%d \n", btv->c.nr,rc);
4425 return;
4426 }
4427
4428
4429 /* The multiplexer in the 200F is handled by the GPIO port */
4430 /* get correct mapping between inputs */
4431 /* mux = bttv_tvcards[btv->type].muxsel[input] & 3; */
4432 /* ** not needed!? */
4433 mux = input;
4434
4435 /* make sure output pins are enabled */
4436 /* bitmask=0x30f; */
4437 bitmask=0x302;
4438 /* check whether we have a PXC200A */
4439 if (btv->cardid == PX_PXC200A_CARDID) {
4440 bitmask ^= 0x180; /* use 7 and 9, not 8 and 9 */
4441 bitmask |= 7<<4; /* the DAC */
4442 }
4443 btwrite(bitmask, BT848_GPIO_OUT_EN);
4444
4445 bitmask = btread(BT848_GPIO_DATA);
4446 if (btv->cardid == PX_PXC200A_CARDID)
4447 bitmask = (bitmask & ~0x280) | ((mux & 2) << 8) | ((mux & 1) << 7);
4448 else /* older device */
4449 bitmask = (bitmask & ~0x300) | ((mux & 3) << 8);
4450 btwrite(bitmask,BT848_GPIO_DATA);
4451
4452 /*
4453 * Was "to be safe, set the bt848 to input 0"
4454 * Actually, since it's ok at load time, better not messing
4455 * with these bits (on PXC200AF you need to set mux 2 here)
4456 *
4457 * needed because bttv-driver sets mux before calling this function
4458 */
4459 if (btv->cardid == PX_PXC200A_CARDID)
4460 btaor(2<<5, ~BT848_IFORM_MUXSEL, BT848_IFORM);
4461 else /* older device */
4462 btand(~BT848_IFORM_MUXSEL,BT848_IFORM);
4463
4464 printk(KERN_DEBUG "bttv%d: setting input channel to:%d\n", btv->c.nr,(int)mux);
4465}
4466
4467/* ----------------------------------------------------------------------- */
4468/* motherboard chipset specific stuff */
4469
4470void __devinit bttv_check_chipset(void)
4471{
4472 int pcipci_fail = 0;
4473 struct pci_dev *dev = NULL;
4474
4475 if (pci_pci_problems & PCIPCI_FAIL)
4476 pcipci_fail = 1;
4477 if (pci_pci_problems & (PCIPCI_TRITON|PCIPCI_NATOMA|PCIPCI_VIAETBF))
4478 triton1 = 1;
4479 if (pci_pci_problems & PCIPCI_VSFX)
4480 vsfx = 1;
4481#ifdef PCIPCI_ALIMAGIK
4482 if (pci_pci_problems & PCIPCI_ALIMAGIK)
4483 latency = 0x0A;
4484#endif
4485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
4487 /* print warnings about any quirks found */
4488 if (triton1)
4489 printk(KERN_INFO "bttv: Host bridge needs ETBF enabled.\n");
4490 if (vsfx)
4491 printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n");
4492 if (pcipci_fail) {
4493 printk(KERN_WARNING "bttv: BT848 and your chipset may not work together.\n");
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004494 if (!no_overlay) {
4495 printk(KERN_WARNING "bttv: overlay will be disabled.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 no_overlay = 1;
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004497 } else {
4498 printk(KERN_WARNING "bttv: overlay forced. Use this option at your own risk.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 }
4500 }
4501 if (UNSET != latency)
4502 printk(KERN_INFO "bttv: pci latency fixup [%d]\n",latency);
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -07004503
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 while ((dev = pci_find_device(PCI_VENDOR_ID_INTEL,
4505 PCI_DEVICE_ID_INTEL_82441, dev))) {
4506 unsigned char b;
4507 pci_read_config_byte(dev, 0x53, &b);
4508 if (bttv_debug)
4509 printk(KERN_INFO "bttv: Host bridge: 82441FX Natoma, "
4510 "bufcon=0x%02x\n",b);
4511 }
4512}
4513
4514int __devinit bttv_handle_chipset(struct bttv *btv)
4515{
4516 unsigned char command;
4517
4518 if (!triton1 && !vsfx && UNSET == latency)
4519 return 0;
4520
4521 if (bttv_verbose) {
4522 if (triton1)
4523 printk(KERN_INFO "bttv%d: enabling ETBF (430FX/VP3 compatibilty)\n",btv->c.nr);
4524 if (vsfx && btv->id >= 878)
4525 printk(KERN_INFO "bttv%d: enabling VSFX\n",btv->c.nr);
4526 if (UNSET != latency)
4527 printk(KERN_INFO "bttv%d: setting pci timer to %d\n",
4528 btv->c.nr,latency);
4529 }
4530
4531 if (btv->id < 878) {
4532 /* bt848 (mis)uses a bit in the irq mask for etbf */
4533 if (triton1)
4534 btv->triton1 = BT848_INT_ETBF;
4535 } else {
4536 /* bt878 has a bit in the pci config space for it */
4537 pci_read_config_byte(btv->c.pci, BT878_DEVCTRL, &command);
4538 if (triton1)
4539 command |= BT878_EN_TBFX;
4540 if (vsfx)
4541 command |= BT878_EN_VSFX;
4542 pci_write_config_byte(btv->c.pci, BT878_DEVCTRL, command);
4543 }
4544 if (UNSET != latency)
4545 pci_write_config_byte(btv->c.pci, PCI_LATENCY_TIMER, latency);
4546 return 0;
4547}
4548
4549
4550/*
4551 * Local variables:
4552 * c-basic-offset: 8
4553 * End:
4554 */