blob: c6010692746db9aae5ff05cdc539bb7ae9dffccd [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 ---------------------------------- */
David Woodhouse93e960f2005-11-08 21:36:46 -08001066 /* David Härdeman <david@2gen.com> */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 .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,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 .muxsel = { 3, 0, 1, 2},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 .pll = PLL_28,
1736 .no_gpioirq = 1,
1737 .has_dvb = 1,
1738},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001739 .name = "Formac ProTV II (bt878)",
1740 .video_inputs = 4,
1741 .audio_inputs = 1,
1742 .tuner = 0,
1743 .svhs = 3,
1744 .gpiomask = 2,
1745 /* TV, Comp1, Composite over SVID con, SVID */
1746 .muxsel = { 2, 3, 1, 1},
1747 .audiomux = { 2, 2, 0, 0, 0 },
1748 .pll = PLL_28,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 .has_radio = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001750 .tuner_type = TUNER_PHILIPS_PAL,
1751 .tuner_addr = ADDR_UNSET,
1752/* sound routing:
1753 GPIO=0x00,0x01,0x03: mute (?)
1754 0x02: both TV and radio (tuner: FM1216/I)
1755 The card has onboard audio connectors labeled "cdrom" and "board",
1756 not soldered here, though unknown wiring.
1757 Card lacks: external audio in, pci subsystem id.
1758*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759},{
1760
1761 /* ---- card 0x60 ---------------------------------- */
1762 .name = "MachTV",
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001763 .video_inputs = 3,
1764 .audio_inputs = 1,
1765 .tuner = 0,
1766 .svhs = -1,
1767 .gpiomask = 7,
1768 .muxsel = { 2, 3, 1, 1},
1769 .audiomux = { 0, 1, 2, 3, 4},
1770 .needs_tvaudio = 1,
1771 .tuner_type = 5,
1772 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 .pll = 1,
1774},{
1775 .name = "Euresys Picolo",
1776 .video_inputs = 3,
1777 .audio_inputs = 0,
1778 .tuner = -1,
1779 .svhs = 2,
1780 .gpiomask = 0,
1781 .no_msp34xx = 1,
1782 .no_tda9875 = 1,
1783 .no_tda7432 = 1,
1784 .muxsel = { 2, 0, 1},
1785 .pll = PLL_28,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001786 .tuner_type = UNSET,
1787 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788},{
1789 /* Luc Van Hoeylandt <luc@e-magic.be> */
1790 .name = "ProVideo PV150", /* 0x4f */
1791 .video_inputs = 2,
1792 .audio_inputs = 0,
1793 .tuner = -1,
1794 .svhs = -1,
1795 .gpiomask = 0,
1796 .muxsel = { 2, 3 },
1797 .audiomux = { 0 },
1798 .needs_tvaudio = 0,
1799 .no_msp34xx = 1,
1800 .pll = PLL_28,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001801 .tuner_type = UNSET,
1802 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803},{
1804 /* Hiroshi Takekawa <sian@big.or.jp> */
1805 /* This card lacks subsystem ID */
1806 .name = "AD-TVK503", /* 0x63 */
1807 .video_inputs = 4,
1808 .audio_inputs = 1,
1809 .tuner = 0,
1810 .svhs = 2,
1811 .gpiomask = 0x001e8007,
1812 .muxsel = { 2, 3, 1, 0 },
1813 /* Tuner, Radio, external, internal, off, on */
1814 .audiomux = { 0x08, 0x0f, 0x0a, 0x08, 0x0f, 0x08 },
1815 .needs_tvaudio = 0,
1816 .no_msp34xx = 1,
1817 .pll = PLL_28,
1818 .tuner_type = 2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001819 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 .audio_hook = adtvk503_audio,
1821},{
1822
1823 /* ---- card 0x64 ---------------------------------- */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001824 .name = "Hercules Smart TV Stereo",
1825 .video_inputs = 4,
1826 .audio_inputs = 1,
1827 .tuner = 0,
1828 .svhs = 2,
1829 .gpiomask = 0x00,
1830 .muxsel = { 2, 3, 1, 1 },
1831 .needs_tvaudio = 1,
1832 .no_msp34xx = 1,
1833 .pll = PLL_28,
1834 .tuner_type = 5,
1835 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 /* Notes:
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001837 - card lacks subsystem ID
1838 - stereo variant w/ daughter board with tda9874a @0xb0
1839 - Audio Routing:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 always from tda9874 independent of GPIO (?)
1841 external line in: unknown
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001842 - Other chips: em78p156elp @ 0x96 (probably IR remote control)
1843 hef4053 (instead 4052) for unknown function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 */
1845},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001846 .name = "Pace TV & Radio Card",
1847 .video_inputs = 4,
1848 .audio_inputs = 1,
1849 .tuner = 0,
1850 .svhs = 2,
1851 .muxsel = { 2, 3, 1, 1}, /* Tuner, CVid, SVid, CVid over SVid connector */
1852 .gpiomask = 0,
1853 .no_tda9875 = 1,
1854 .no_tda7432 = 1,
1855 .tuner_type = 1,
1856 .tuner_addr = ADDR_UNSET,
1857 .has_radio = 1,
1858 .pll = PLL_28,
1859 /* Bt878, Bt832, FI1246 tuner; no pci subsystem id
1860 only internal line out: (4pin header) RGGL
1861 Radio must be decoded by msp3410d (not routed through)*/
1862 /*
1863 .digital_mode = DIGITAL_MODE_CAMERA, todo!
1864 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001866 /* Chris Willing <chris@vislab.usyd.edu.au> */
1867 .name = "IVC-200",
1868 .video_inputs = 1,
1869 .audio_inputs = 0,
1870 .tuner = -1,
1871 .tuner_type = -1,
1872 .tuner_addr = ADDR_UNSET,
1873 .svhs = -1,
1874 .gpiomask = 0xdf,
1875 .muxsel = { 2 },
1876 .pll = PLL_28,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877},{
1878 .name = "Grand X-Guard / Trust 814PCI",
1879 .video_inputs = 16,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001880 .audio_inputs = 0,
1881 .tuner = -1,
1882 .svhs = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 .tuner_type = 4,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001884 .tuner_addr = ADDR_UNSET,
1885 .gpiomask2 = 0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 .muxsel = { 2,2,2,2, 3,3,3,3, 1,1,1,1, 0,0,0,0 },
1887 .muxsel_hook = xguard_muxsel,
1888 .no_msp34xx = 1,
1889 .no_tda9875 = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001890 .no_tda7432 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 .pll = PLL_28,
1892},{
1893
1894 /* ---- card 0x68 ---------------------------------- */
1895 .name = "Nebula Electronics DigiTV",
1896 .video_inputs = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001897 .tuner = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 .svhs = -1,
1899 .muxsel = { 2, 3, 1, 0},
1900 .no_msp34xx = 1,
1901 .no_tda9875 = 1,
1902 .no_tda7432 = 1,
1903 .pll = PLL_28,
1904 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001905 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 .has_dvb = 1,
1907 .no_gpioirq = 1,
1908},{
1909 /* Jorge Boncompte - DTI2 <jorge@dti2.net> */
1910 .name = "ProVideo PV143",
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001911 .video_inputs = 4,
1912 .audio_inputs = 0,
1913 .tuner = -1,
1914 .svhs = -1,
1915 .gpiomask = 0,
1916 .muxsel = { 2, 3, 1, 0 },
1917 .audiomux = { 0 },
1918 .needs_tvaudio = 0,
1919 .no_msp34xx = 1,
1920 .pll = PLL_28,
1921 .tuner_type = -1,
1922 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923},{
1924 /* M.Klahr@phytec.de */
1925 .name = "PHYTEC VD-009-X1 MiniDIN (bt878)",
1926 .video_inputs = 4,
1927 .audio_inputs = 0,
1928 .tuner = -1, /* card has no tuner */
1929 .svhs = 3,
1930 .gpiomask = 0x00,
1931 .muxsel = { 2, 3, 1, 0},
1932 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
1933 .needs_tvaudio = 1,
1934 .pll = PLL_28,
1935 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001936 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937},{
1938 .name = "PHYTEC VD-009-X1 Combi (bt878)",
1939 .video_inputs = 4,
1940 .audio_inputs = 0,
1941 .tuner = -1, /* card has no tuner */
1942 .svhs = 3,
1943 .gpiomask = 0x00,
1944 .muxsel = { 2, 3, 1, 1},
1945 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
1946 .needs_tvaudio = 1,
1947 .pll = PLL_28,
1948 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001949 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950},{
1951
1952 /* ---- card 0x6c ---------------------------------- */
1953 .name = "PHYTEC VD-009 MiniDIN (bt878)",
1954 .video_inputs = 10,
1955 .audio_inputs = 0,
1956 .tuner = -1, /* card has no tuner */
1957 .svhs = 9,
1958 .gpiomask = 0x00,
1959 .gpiomask2 = 0x03, /* gpiomask2 defines the bits used to switch audio
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001960 via the upper nibble of muxsel. here: used for
1961 xternal video-mux */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 .muxsel = { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x00 },
1963 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
1964 .needs_tvaudio = 1,
1965 .pll = PLL_28,
1966 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001967 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968},{
1969 .name = "PHYTEC VD-009 Combi (bt878)",
1970 .video_inputs = 10,
1971 .audio_inputs = 0,
1972 .tuner = -1, /* card has no tuner */
1973 .svhs = 9,
1974 .gpiomask = 0x00,
1975 .gpiomask2 = 0x03, /* gpiomask2 defines the bits used to switch audio
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001976 via the upper nibble of muxsel. here: used for
1977 xternal video-mux */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 .muxsel = { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x01 },
1979 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
1980 .needs_tvaudio = 1,
1981 .pll = PLL_28,
1982 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001983 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07001985 .name = "IVC-100",
1986 .video_inputs = 4,
1987 .audio_inputs = 0,
1988 .tuner = -1,
1989 .tuner_type = -1,
1990 .tuner_addr = ADDR_UNSET,
1991 .svhs = -1,
1992 .gpiomask = 0xdf,
1993 .muxsel = { 2, 3, 1, 0 },
1994 .pll = PLL_28,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995},{
1996 /* IVC-120G - Alan Garfield <alan@fromorbit.com> */
1997 .name = "IVC-120G",
1998 .video_inputs = 16,
1999 .audio_inputs = 0, /* card has no audio */
2000 .tuner = -1, /* card has no tuner */
2001 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002002 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 .svhs = -1, /* card has no svhs */
2004 .needs_tvaudio = 0,
2005 .no_msp34xx = 1,
2006 .no_tda9875 = 1,
2007 .no_tda7432 = 1,
2008 .gpiomask = 0x00,
2009 .muxsel = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002010 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 .muxsel_hook = ivc120_muxsel,
2012 .pll = PLL_28,
2013},{
2014
2015 /* ---- card 0x70 ---------------------------------- */
2016 .name = "pcHDTV HD-2000 TV",
2017 .video_inputs = 4,
2018 .audio_inputs = 1,
2019 .tuner = 0,
2020 .svhs = 2,
2021 .muxsel = { 2, 3, 1, 0},
2022 .tuner_type = TUNER_PHILIPS_ATSC,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002023 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 .has_dvb = 1,
2025},{
2026 .name = "Twinhan DST + clones",
2027 .no_msp34xx = 1,
2028 .no_tda9875 = 1,
2029 .no_tda7432 = 1,
2030 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002031 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 .no_video = 1,
2033 .has_dvb = 1,
2034},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002035 .name = "Winfast VC100",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 .video_inputs = 3,
2037 .audio_inputs = 0,
2038 .svhs = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002039 .tuner = -1,
2040 .muxsel = { 3, 1, 1, 3}, /* Vid In, SVid In, Vid over SVid in connector */
2041 .no_msp34xx = 1,
2042 .no_tda9875 = 1,
2043 .no_tda7432 = 1,
2044 .tuner_type = TUNER_ABSENT,
2045 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 .pll = PLL_28,
2047},{
2048 .name = "Teppro TEV-560/InterVision IV-560",
2049 .video_inputs = 3,
2050 .audio_inputs = 1,
2051 .tuner = 0,
2052 .svhs = 2,
2053 .gpiomask = 3,
2054 .muxsel = { 2, 3, 1, 1},
2055 .audiomux = { 1, 1, 1, 1, 0},
2056 .needs_tvaudio = 1,
2057 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002058 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 .pll = PLL_35,
2060},{
2061
2062 /* ---- card 0x74 ---------------------------------- */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002063 .name = "SIMUS GVC1100",
2064 .video_inputs = 4,
2065 .audio_inputs = 0,
2066 .tuner = -1,
2067 .svhs = -1,
2068 .tuner_type = -1,
2069 .tuner_addr = ADDR_UNSET,
2070 .pll = PLL_28,
2071 .muxsel = { 2, 2, 2, 2},
2072 .gpiomask = 0x3F,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 .muxsel_hook = gvc1100_muxsel,
2074},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002075 /* Carlos Silva r3pek@r3pek.homelinux.org || card 0x75 */
2076 .name = "NGS NGSTV+",
2077 .video_inputs = 3,
2078 .tuner = 0,
2079 .svhs = 2,
2080 .gpiomask = 0x008007,
2081 .muxsel = {2, 3, 0, 0},
2082 .audiomux = {0, 0, 0, 0, 0x000003, 0},
2083 .pll = PLL_28,
2084 .tuner_type = TUNER_PHILIPS_PAL,
2085 .tuner_addr = ADDR_UNSET,
2086 .has_remote = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002088 /* http://linuxmedialabs.com */
2089 .name = "LMLBT4",
2090 .video_inputs = 4, /* IN1,IN2,IN3,IN4 */
2091 .audio_inputs = 0,
2092 .tuner = -1,
2093 .svhs = -1,
2094 .muxsel = { 2, 3, 1, 0 },
2095 .no_msp34xx = 1,
2096 .no_tda9875 = 1,
2097 .no_tda7432 = 1,
2098 .needs_tvaudio = 0,
2099 .tuner_type = -1,
2100 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101},{
2102 /* Helmroos Harri <harri.helmroos@pp.inet.fi> */
2103 .name = "Tekram M205 PRO",
2104 .video_inputs = 3,
2105 .audio_inputs = 1,
2106 .tuner = 0,
2107 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002108 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 .svhs = 2,
2110 .needs_tvaudio = 0,
2111 .gpiomask = 0x68,
2112 .muxsel = { 2, 3, 1},
2113 .audiomux = { 0x68, 0x68, 0x61, 0x61, 0x00 },
2114 .pll = PLL_28,
2115},{
2116
2117 /* ---- card 0x78 ---------------------------------- */
2118 /* Javier Cendan Ares <jcendan@lycos.es> */
2119 /* bt878 TV + FM without subsystem ID */
2120 .name = "Conceptronic CONTVFMi",
2121 .video_inputs = 3,
2122 .audio_inputs = 1,
2123 .tuner = 0,
2124 .svhs = 2,
2125 .gpiomask = 0x008007,
2126 .muxsel = { 2, 3, 1, 1 },
2127 .audiomux = { 0, 1, 2, 2, 3 },
2128 .needs_tvaudio = 0,
2129 .pll = PLL_28,
2130 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002131 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 .has_remote = 1,
2133 .has_radio = 1,
2134},{
2135 /*Eric DEBIEF <debief@telemsa.com>*/
2136 /*EURESYS Picolo Tetra : 4 Conexant Fusion 878A, no audio, video input set with analog multiplexers GPIO controled*/
2137 /* adds picolo_tetra_muxsel(), picolo_tetra_init(), the folowing declaration strucure, and #define BTTV_PICOLO_TETRA_CHIP*/
2138 /*0x79 in bttv.h*/
2139 .name = "Euresys Picolo Tetra",
2140 .video_inputs = 4,
2141 .audio_inputs = 0,
2142 .tuner = -1,
2143 .svhs = -1,
2144 .gpiomask = 0,
2145 .gpiomask2 = 0x3C<<16,/*Set the GPIO[18]->GPIO[21] as output pin.==> drive the video inputs through analog multiplexers*/
2146 .no_msp34xx = 1,
2147 .no_tda9875 = 1,
2148 .no_tda7432 = 1,
2149 .muxsel = {2,2,2,2},/*878A input is always MUX0, see above.*/
2150 .audiomux = { 0, 0, 0, 0, 0, 0 }, /* card has no audio */
2151 .pll = PLL_28,
2152 .needs_tvaudio = 0,
2153 .muxsel_hook = picolo_tetra_muxsel,/*Required as it doesn't follow the classic input selection policy*/
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002154 .tuner_type = -1,
2155 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156},{
2157 /* Spirit TV Tuner from http://spiritmodems.com.au */
2158 /* Stafford Goodsell <surge@goliath.homeunix.org> */
2159 .name = "Spirit TV Tuner",
2160 .video_inputs = 3,
2161 .audio_inputs = 1,
2162 .tuner = 0,
2163 .svhs = 2,
2164 .gpiomask = 0x0000000f,
2165 .muxsel = { 2, 1, 1 },
2166 .audiomux = { 0x02, 0x00, 0x00, 0x00, 0x00},
2167 .tuner_type = TUNER_TEMIC_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002168 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 .no_msp34xx = 1,
2170 .no_tda9875 = 1,
2171},{
2172 /* Wolfram Joost <wojo@frokaschwei.de> */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002173 .name = "AVerMedia AVerTV DVB-T 771",
2174 .video_inputs = 2,
2175 .svhs = 1,
2176 .tuner = -1,
2177 .tuner_type = TUNER_ABSENT,
2178 .tuner_addr = ADDR_UNSET,
2179 .muxsel = { 3 , 3 },
2180 .no_msp34xx = 1,
2181 .no_tda9875 = 1,
2182 .no_tda7432 = 1,
2183 .pll = PLL_28,
2184 .has_dvb = 1,
2185 .no_gpioirq = 1,
2186 .has_remote = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187},{
2188 /* ---- card 0x7c ---------------------------------- */
2189 /* Matt Jesson <dvb@jesson.eclipse.co.uk> */
2190 /* Based on the Nebula card data - added remote and new card number - BTTV_AVDVBT_761, see also ir-kbd-gpio.c */
2191 .name = "AverMedia AverTV DVB-T 761",
2192 .video_inputs = 2,
2193 .tuner = -1,
2194 .svhs = 1,
2195 .muxsel = { 3, 1, 2, 0}, /* Comp0, S-Video, ?, ? */
2196 .no_msp34xx = 1,
2197 .no_tda9875 = 1,
2198 .no_tda7432 = 1,
2199 .pll = PLL_28,
2200 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002201 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 .has_dvb = 1,
2203 .no_gpioirq = 1,
2204 .has_remote = 1,
2205},{
2206 /* andre.schwarz@matrix-vision.de */
2207 .name = "MATRIX Vision Sigma-SQ",
2208 .video_inputs = 16,
2209 .audio_inputs = 0,
2210 .tuner = -1,
2211 .svhs = -1,
2212 .gpiomask = 0x0,
2213 .muxsel = { 2, 2, 2, 2, 2, 2, 2, 2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002214 3, 3, 3, 3, 3, 3, 3, 3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 .muxsel_hook = sigmaSQ_muxsel,
2216 .audiomux = { 0 },
2217 .no_msp34xx = 1,
2218 .pll = PLL_28,
2219 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002220 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221},{
2222 /* andre.schwarz@matrix-vision.de */
2223 .name = "MATRIX Vision Sigma-SLC",
2224 .video_inputs = 4,
2225 .audio_inputs = 0,
2226 .tuner = -1,
2227 .svhs = -1,
2228 .gpiomask = 0x0,
2229 .muxsel = { 2, 2, 2, 2 },
2230 .muxsel_hook = sigmaSLC_muxsel,
2231 .audiomux = { 0 },
2232 .no_msp34xx = 1,
2233 .pll = PLL_28,
2234 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002235 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236},{
2237 /* BTTV_APAC_VIEWCOMP */
2238 /* Attila Kondoros <attila.kondoros@chello.hu> */
2239 /* bt878 TV + FM 0x00000000 subsystem ID */
2240 .name = "APAC Viewcomp 878(AMAX)",
2241 .video_inputs = 2,
2242 .audio_inputs = 1,
2243 .tuner = 0,
2244 .svhs = -1,
2245 .gpiomask = 0xFF,
2246 .muxsel = { 2, 3, 1, 1},
2247 .audiomux = { 2, 0, 0, 0, 10},
2248 .needs_tvaudio = 0,
2249 .pll = PLL_28,
2250 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002251 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 .has_remote = 1, /* miniremote works, see ir-kbd-gpio.c */
2253 .has_radio = 1, /* not every card has radio */
2254},{
2255
2256 /* ---- card 0x80 ---------------------------------- */
2257 /* Chris Pascoe <c.pascoe@itee.uq.edu.au> */
Mauro Carvalho Chehab10c35cf2005-09-09 13:03:52 -07002258 .name = "DViCO FusionHDTV DVB-T Lite",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 .tuner = -1,
2260 .no_msp34xx = 1,
2261 .no_tda9875 = 1,
2262 .no_tda7432 = 1,
2263 .pll = PLL_28,
2264 .no_video = 1,
2265 .has_dvb = 1,
2266 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002267 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268},{
2269 /* Steven <photon38@pchome.com.tw> */
2270 .name = "V-Gear MyVCD",
2271 .video_inputs = 3,
2272 .audio_inputs = 1,
2273 .tuner = 0,
2274 .svhs = 2,
2275 .gpiomask = 0x3f,
2276 .muxsel = {2, 3, 1, 0},
2277 .audiomux = {0x31, 0x31, 0x31, 0x31, 0x31, 0x31},
2278 .no_msp34xx = 1,
2279 .pll = PLL_28,
2280 .tuner_type = TUNER_PHILIPS_NTSC_M,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002281 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 .has_radio = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283},{
2284 /* Rick C <cryptdragoon@gmail.com> */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002285 .name = "Super TV Tuner",
2286 .video_inputs = 4,
2287 .audio_inputs = 1,
2288 .tuner = 0,
2289 .svhs = 2,
2290 .muxsel = { 2, 3, 1, 0},
2291 .tuner_type = TUNER_PHILIPS_NTSC,
2292 .tuner_addr = ADDR_UNSET,
2293 .gpiomask = 0x008007,
2294 .audiomux = { 0, 0x000001,0,0, 0},
2295 .needs_tvaudio = 1,
2296 .has_radio = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297},{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002298 /* Chris Fanning <video4linux@haydon.net> */
2299 .name = "Tibet Systems 'Progress DVR' CS16",
2300 .video_inputs = 16,
2301 .audio_inputs = 0,
2302 .tuner = -1,
2303 .svhs = -1,
2304 .muxsel = { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 },
2305 .pll = PLL_28,
2306 .no_msp34xx = 1,
2307 .no_tda9875 = 1,
2308 .no_tda7432 = 1,
2309 .tuner_type = -1,
2310 .tuner_addr = ADDR_UNSET,
2311 .muxsel_hook = tibetCS16_muxsel,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312},
2313{
2314 /* Bill Brack <wbrack@mmm.com.hk> */
2315 /*
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002316 * Note that, because of the card's wiring, the "master"
2317 * BT878A chip (i.e. the one which controls the analog switch
2318 * and must use this card type) is the 2nd one detected. The
2319 * other 3 chips should use card type 0x85, whose description
2320 * follows this one. There is a EEPROM on the card (which is
2321 * connected to the I2C of one of those other chips), but is
2322 * not currently handled. There is also a facility for a
2323 * "monitor", which is also not currently implemented.
2324 */
2325 .name = "Kodicom 4400R (master)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 .video_inputs = 16,
2327 .audio_inputs = 0,
2328 .tuner = -1,
2329 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002330 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 .svhs = -1,
2332 /* GPIO bits 0-9 used for analog switch:
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002333 * 00 - 03: camera selector
2334 * 04 - 06: channel (controller) selector
2335 * 07: data (1->on, 0->off)
2336 * 08: strobe
2337 * 09: reset
2338 * bit 16 is input from sync separator for the channel
2339 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 .gpiomask = 0x0003ff,
2341 .no_gpioirq = 1,
2342 .muxsel = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2343 .pll = PLL_28,
2344 .no_msp34xx = 1,
2345 .no_tda7432 = 1,
2346 .no_tda9875 = 1,
2347 .muxsel_hook = kodicom4400r_muxsel,
2348},
2349{
2350 /* Bill Brack <wbrack@mmm.com.hk> */
2351 /* Note that, for reasons unknown, the "master" BT878A chip (i.e. the
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002352 * one which controls the analog switch, and must use the card type)
2353 * is the 2nd one detected. The other 3 chips should use this card
2354 * type
2355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 .name = "Kodicom 4400R (slave)",
2357 .video_inputs = 16,
2358 .audio_inputs = 0,
2359 .tuner = -1,
2360 .tuner_type = -1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002361 .tuner_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 .svhs = -1,
2363 .gpiomask = 0x010000,
2364 .no_gpioirq = 1,
2365 .muxsel = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2366 .pll = PLL_28,
2367 .no_msp34xx = 1,
2368 .no_tda7432 = 1,
2369 .no_tda9875 = 1,
2370 .muxsel_hook = kodicom4400r_muxsel,
Peter Skipworth93b43f12005-06-23 22:04:45 -07002371},
2372{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002373 /* ---- card 0x86---------------------------------- */
2374 /* Michael Henson <mhenson@clarityvi.com> */
2375 /* Adlink RTV24 with special unlock codes */
2376 .name = "Adlink RTV24",
2377 .video_inputs = 4,
2378 .audio_inputs = 1,
2379 .tuner = 0,
2380 .svhs = 2,
2381 .muxsel = { 2, 3, 1, 0},
2382 .tuner_type = -1,
2383 .tuner_addr = ADDR_UNSET,
2384 .pll = PLL_28,
2385},
2386{
2387 /* ---- card 0x87---------------------------------- */
2388 /* Michael Krufky <mkrufky@m1k.net> */
Mauro Carvalho Chehab10c35cf2005-09-09 13:03:52 -07002389 .name = "DViCO FusionHDTV 5 Lite",
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002390 .tuner = 0,
2391 .tuner_type = TUNER_LG_TDVS_H062F,
2392 .tuner_addr = ADDR_UNSET,
Michael Krufkyd3089792005-10-11 09:28:24 -07002393 .video_inputs = 3,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002394 .audio_inputs = 1,
2395 .svhs = 2,
Michael Krufkyd3089792005-10-11 09:28:24 -07002396 .muxsel = { 2, 3, 1 },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002397 .gpiomask = 0x00e00007,
Michael Krufky79dfa4a2005-09-30 11:58:58 -07002398 .audiomux = { 0x00400005, 0, 0x00000001, 0, 0x00c00007, 0 },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002399 .no_msp34xx = 1,
2400 .no_tda9875 = 1,
2401 .no_tda7432 = 1,
Michael Krufky99d6c342005-11-08 21:36:26 -08002402 .has_dvb = 1,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002403},{
2404 /* ---- card 0x88---------------------------------- */
2405 /* Mauro Carvalho Chehab <mchehab@brturbo.com.br> */
2406 .name = "Acorp Y878F",
2407 .video_inputs = 3,
2408 .audio_inputs = 1,
2409 .tuner = 0,
2410 .svhs = 2,
2411 .gpiomask = 0x01fe00,
2412 .muxsel = { 2, 3, 1, 1},
2413 .audiomux = { 0x001e00, 0, 0x018000, 0x014000, 0x002000, 0 },
2414 .needs_tvaudio = 1,
2415 .pll = PLL_28,
2416 .tuner_type = TUNER_YMEC_TVF66T5_B_DFF,
2417 .tuner_addr = 0xc1 >>1,
2418 .has_radio = 1,
Ricardo Cerqueiracc9d8d42005-11-08 21:36:20 -08002419},{
2420 /* ---- card 0x89 ---------------------------------- */
2421 .name = "Conceptronic CTVFMi v2",
2422 .video_inputs = 3,
2423 .audio_inputs = 1,
2424 .tuner = 0,
2425 .svhs = 2,
2426 .gpiomask = 0x001c0007,
2427 .muxsel = { 2, 3, 1, 1 },
2428 .audiomux = { 0, 1, 2, 2, 3 },
2429 .needs_tvaudio = 0,
2430 .pll = PLL_28,
2431 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
2432 .tuner_addr = ADDR_UNSET,
2433 .has_remote = 1,
Luis Miguel García699a4062005-11-08 21:36:38 -08002434},{
2435 .name = "Prolink Pixelview PV-BT878P+ (Rev.2E)",
2436 .video_inputs = 5,
2437 .audio_inputs = 1,
2438 .tuner = 0,
2439 .svhs = 3,
2440 .gpiomask = 0x01fe00,
2441 .muxsel = { 2,3,1,1,-1 },
2442 .digital_mode = DIGITAL_MODE_CAMERA,
2443 .audiomux = { 0x00400, 0x10400, 0x04400, 0x80000, 0x12400, 0x46000 },
2444 .no_msp34xx = 1,
2445 .pll = PLL_28,
2446 .tuner_type = TUNER_LG_PAL_FM,
2447 .has_remote = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}};
2449
2450static const unsigned int bttv_num_tvcards = ARRAY_SIZE(bttv_tvcards);
2451
2452/* ----------------------------------------------------------------------- */
2453
2454static unsigned char eeprom_data[256];
2455
2456/*
2457 * identify card
2458 */
2459void __devinit bttv_idcard(struct bttv *btv)
2460{
2461 unsigned int gpiobits;
2462 int i,type;
2463 unsigned short tmp;
2464
2465 /* read PCI subsystem ID */
2466 pci_read_config_word(btv->c.pci, PCI_SUBSYSTEM_ID, &tmp);
2467 btv->cardid = tmp << 16;
2468 pci_read_config_word(btv->c.pci, PCI_SUBSYSTEM_VENDOR_ID, &tmp);
2469 btv->cardid |= tmp;
2470
2471 if (0 != btv->cardid && 0xffffffff != btv->cardid) {
2472 /* look for the card */
2473 for (type = -1, i = 0; cards[i].id != 0; i++)
2474 if (cards[i].id == btv->cardid)
2475 type = i;
2476
2477 if (type != -1) {
2478 /* found it */
2479 printk(KERN_INFO "bttv%d: detected: %s [card=%d], "
2480 "PCI subsystem ID is %04x:%04x\n",
2481 btv->c.nr,cards[type].name,cards[type].cardnr,
2482 btv->cardid & 0xffff,
2483 (btv->cardid >> 16) & 0xffff);
2484 btv->c.type = cards[type].cardnr;
2485 } else {
2486 /* 404 */
2487 printk(KERN_INFO "bttv%d: subsystem: %04x:%04x (UNKNOWN)\n",
2488 btv->c.nr, btv->cardid & 0xffff,
2489 (btv->cardid >> 16) & 0xffff);
2490 printk(KERN_DEBUG "please mail id, board name and "
2491 "the correct card= insmod option to kraxel@bytesex.org\n");
2492 }
2493 }
2494
2495 /* let the user override the autodetected type */
2496 if (card[btv->c.nr] < bttv_num_tvcards)
2497 btv->c.type=card[btv->c.nr];
2498
2499 /* print which card config we are using */
2500 printk(KERN_INFO "bttv%d: using: %s [card=%d,%s]\n",btv->c.nr,
2501 bttv_tvcards[btv->c.type].name, btv->c.type,
2502 card[btv->c.nr] < bttv_num_tvcards
2503 ? "insmod option" : "autodetected");
2504
2505 /* overwrite gpio stuff ?? */
2506 if (UNSET == audioall && UNSET == audiomux[0])
2507 return;
2508
2509 if (UNSET != audiomux[0]) {
2510 gpiobits = 0;
2511 for (i = 0; i < 5; i++) {
2512 bttv_tvcards[btv->c.type].audiomux[i] = audiomux[i];
2513 gpiobits |= audiomux[i];
2514 }
2515 } else {
2516 gpiobits = audioall;
2517 for (i = 0; i < 5; i++) {
2518 bttv_tvcards[btv->c.type].audiomux[i] = audioall;
2519 }
2520 }
2521 bttv_tvcards[btv->c.type].gpiomask = (UNSET != gpiomask) ? gpiomask : gpiobits;
2522 printk(KERN_INFO "bttv%d: gpio config override: mask=0x%x, mux=",
2523 btv->c.nr,bttv_tvcards[btv->c.type].gpiomask);
2524 for (i = 0; i < 5; i++) {
2525 printk("%s0x%x", i ? "," : "", bttv_tvcards[btv->c.type].audiomux[i]);
2526 }
2527 printk("\n");
2528}
2529
2530/*
2531 * (most) board specific initialisations goes here
2532 */
2533
2534/* Some Modular Technology cards have an eeprom, but no subsystem ID */
2535void identify_by_eeprom(struct bttv *btv, unsigned char eeprom_data[256])
2536{
2537 int type = -1;
2538
2539 if (0 == strncmp(eeprom_data,"GET MM20xPCTV",13))
2540 type = BTTV_MODTEC_205;
2541 else if (0 == strncmp(eeprom_data+20,"Picolo",7))
2542 type = BTTV_EURESYS_PICOLO;
2543 else if (eeprom_data[0] == 0x84 && eeprom_data[2]== 0)
2544 type = BTTV_HAUPPAUGE; /* old bt848 */
2545
2546 if (-1 != type) {
2547 btv->c.type = type;
2548 printk("bttv%d: detected by eeprom: %s [card=%d]\n",
2549 btv->c.nr, bttv_tvcards[btv->c.type].name, btv->c.type);
2550 }
2551}
2552
2553static void flyvideo_gpio(struct bttv *btv)
2554{
2555 int gpio,has_remote,has_radio,is_capture_only,is_lr90,has_tda9820_tda9821;
2556 int tuner=-1,ttype;
2557
2558 gpio_inout(0xffffff, 0);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002559 udelay(8); /* without this we would see the 0x1800 mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 gpio = gpio_read();
2561 /* FIXME: must restore OUR_EN ??? */
2562
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002563 /* all cards provide GPIO info, some have an additional eeprom
2564 * LR50: GPIO coding can be found lower right CP1 .. CP9
2565 * CP9=GPIO23 .. CP1=GPIO15; when OPEN, the corresponding GPIO reads 1.
2566 * GPIO14-12: n.c.
2567 * LR90: GP9=GPIO23 .. GP1=GPIO15 (right above the bt878)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002569 * lowest 3 bytes are remote control codes (no handshake needed)
2570 * xxxFFF: No remote control chip soldered
2571 * xxxF00(LR26/LR50), xxxFE0(LR90): Remote control chip (LVA001 or CF45) soldered
2572 * Note: Some bits are Audio_Mask !
2573 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 ttype=(gpio&0x0f0000)>>16;
2575 switch(ttype) {
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002576 case 0x0: tuner=2; /* NTSC, e.g. TPI8NSR11P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 break;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002578 case 0x2: tuner=39;/* LG NTSC (newer TAPC series) TAPC-H701P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 break;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002580 case 0x4: tuner=5; /* Philips PAL TPI8PSB02P, TPI8PSB12P, TPI8PSB12D or FI1216, FM1216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 break;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002582 case 0x6: tuner=37;/* LG PAL (newer TAPC series) TAPC-G702P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 break;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002584 case 0xC: tuner=3; /* Philips SECAM(+PAL) FQ1216ME or FI1216MF */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 break;
2586 default:
2587 printk(KERN_INFO "bttv%d: FlyVideo_gpio: unknown tuner type.\n", btv->c.nr);
2588 }
2589
2590 has_remote = gpio & 0x800000;
2591 has_radio = gpio & 0x400000;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002592 /* unknown 0x200000;
2593 * unknown2 0x100000; */
2594 is_capture_only = !(gpio & 0x008000); /* GPIO15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 has_tda9820_tda9821 = !(gpio & 0x004000);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002596 is_lr90 = !(gpio & 0x002000); /* else LR26/LR50 (LR38/LR51 f. capture only) */
2597 /*
2598 * gpio & 0x001000 output bit for audio routing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 if(is_capture_only)
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002601 tuner=4; /* No tuner present */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 printk(KERN_INFO "bttv%d: FlyVideo Radio=%s RemoteControl=%s Tuner=%d gpio=0x%06x\n",
2604 btv->c.nr, has_radio? "yes":"no ", has_remote? "yes":"no ", tuner, gpio);
2605 printk(KERN_INFO "bttv%d: FlyVideo LR90=%s tda9821/tda9820=%s capture_only=%s\n",
2606 btv->c.nr, is_lr90?"yes":"no ", has_tda9820_tda9821?"yes":"no ",
2607 is_capture_only?"yes":"no ");
2608
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002609 if(tuner!= -1) /* only set if known tuner autodetected, else let insmod option through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 btv->tuner_type = tuner;
2611 btv->has_radio = has_radio;
2612
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002613 /* LR90 Audio Routing is done by 2 hef4052, so Audio_Mask has 4 bits: 0x001c80
2614 * LR26/LR50 only has 1 hef4052, Audio_Mask 0x000c00
2615 * Audio options: from tuner, from tda9821/tda9821(mono,stereo,sap), from tda9874, ext., mute */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 if(has_tda9820_tda9821) btv->audio_hook = lt9415_audio;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002617 /* todo: if(has_tda9874) btv->audio_hook = fv2000s_audio; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
2620static int miro_tunermap[] = { 0,6,2,3, 4,5,6,0, 3,0,4,5, 5,2,16,1,
2621 14,2,17,1, 4,1,4,3, 1,2,16,1, 4,4,4,4 };
2622static int miro_fmtuner[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,1,
2623 1,1,1,1, 1,1,1,0, 0,0,0,0, 0,1,0,0 };
2624
2625static void miro_pinnacle_gpio(struct bttv *btv)
2626{
2627 int id,msp,gpio;
2628 char *info;
2629
2630 gpio_inout(0xffffff, 0);
2631 gpio = gpio_read();
2632 id = ((gpio>>10) & 63) -1;
2633 msp = bttv_I2CRead(btv, I2C_MSP3400, "MSP34xx");
2634 if (id < 32) {
2635 btv->tuner_type = miro_tunermap[id];
2636 if (0 == (gpio & 0x20)) {
2637 btv->has_radio = 1;
2638 if (!miro_fmtuner[id]) {
2639 btv->has_matchbox = 1;
2640 btv->mbox_we = (1<<6);
2641 btv->mbox_most = (1<<7);
2642 btv->mbox_clk = (1<<8);
2643 btv->mbox_data = (1<<9);
2644 btv->mbox_mask = (1<<6)|(1<<7)|(1<<8)|(1<<9);
2645 }
2646 } else {
2647 btv->has_radio = 0;
2648 }
2649 if (-1 != msp) {
2650 if (btv->c.type == BTTV_MIRO)
2651 btv->c.type = BTTV_MIROPRO;
2652 if (btv->c.type == BTTV_PINNACLE)
2653 btv->c.type = BTTV_PINNACLEPRO;
2654 }
2655 printk(KERN_INFO
2656 "bttv%d: miro: id=%d tuner=%d radio=%s stereo=%s\n",
2657 btv->c.nr, id+1, btv->tuner_type,
2658 !btv->has_radio ? "no" :
2659 (btv->has_matchbox ? "matchbox" : "fmtuner"),
2660 (-1 == msp) ? "no" : "yes");
2661 } else {
2662 /* new cards with microtune tuner */
2663 id = 63 - id;
2664 btv->has_radio = 0;
2665 switch (id) {
2666 case 1:
2667 info = "PAL / mono";
2668 break;
2669 case 2:
2670 info = "PAL+SECAM / stereo";
2671 btv->has_radio = 1;
2672 break;
2673 case 3:
2674 info = "NTSC / stereo";
2675 btv->has_radio = 1;
2676 break;
2677 case 4:
2678 info = "PAL+SECAM / mono";
2679 break;
2680 case 5:
2681 info = "NTSC / mono";
2682 break;
2683 case 6:
2684 info = "NTSC / stereo";
2685 break;
2686 case 7:
2687 info = "PAL / stereo";
2688 break;
2689 default:
2690 info = "oops: unknown card";
2691 break;
2692 }
2693 if (-1 != msp)
2694 btv->c.type = BTTV_PINNACLEPRO;
2695 printk(KERN_INFO
2696 "bttv%d: pinnacle/mt: id=%d info=\"%s\" radio=%s\n",
2697 btv->c.nr, id, info, btv->has_radio ? "yes" : "no");
2698 btv->tuner_type = 33;
2699 btv->pinnacle_id = id;
2700 }
2701}
2702
2703/* GPIO21 L: Buffer aktiv, H: Buffer inaktiv */
2704#define LM1882_SYNC_DRIVE 0x200000L
2705
2706static void init_ids_eagle(struct bttv *btv)
2707{
2708 gpio_inout(0xffffff,0xFFFF37);
2709 gpio_write(0x200020);
2710
2711 /* flash strobe inverter ?! */
2712 gpio_write(0x200024);
2713
2714 /* switch sync drive off */
2715 gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE);
2716
2717 /* set BT848 muxel to 2 */
2718 btaor((2)<<5, ~(2<<5), BT848_IFORM);
2719}
2720
2721/* Muxsel helper for the IDS Eagle.
2722 * the eagles does not use the standard muxsel-bits but
2723 * has its own multiplexer */
2724static void eagle_muxsel(struct bttv *btv, unsigned int input)
2725{
2726 btaor((2)<<5, ~(3<<5), BT848_IFORM);
2727 gpio_bits(3,bttv_tvcards[btv->c.type].muxsel[input&7]);
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 /* composite */
2730 /* set chroma ADC to sleep */
2731 btor(BT848_ADC_C_SLEEP, BT848_ADC);
2732 /* set to composite video */
2733 btand(~BT848_CONTROL_COMP, BT848_E_CONTROL);
2734 btand(~BT848_CONTROL_COMP, BT848_O_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736 /* switch sync drive off */
2737 gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE);
2738}
2739
2740static void gvc1100_muxsel(struct bttv *btv, unsigned int input)
2741{
2742 static const int masks[] = {0x30, 0x01, 0x12, 0x23};
2743 gpio_write(masks[input%4]);
2744}
2745
2746/* LMLBT4x initialization - to allow access to GPIO bits for sensors input and
2747 alarms output
2748
2749 GPIObit | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
2750 assignment | TI | O3|INx| O2| O1|IN4|IN3|IN2|IN1| | |
2751
2752 IN - sensor inputs, INx - sensor inputs and TI XORed together
2753 O1,O2,O3 - alarm outputs (relays)
2754
2755 OUT ENABLE 1 1 0 . 1 1 0 0 . 0 0 0 0 = 0x6C0
2756
2757*/
2758
2759static void init_lmlbt4x(struct bttv *btv)
2760{
2761 printk(KERN_DEBUG "LMLBT4x init\n");
2762 btwrite(0x000000, BT848_GPIO_REG_INP);
2763 gpio_inout(0xffffff, 0x0006C0);
2764 gpio_write(0x000000);
2765}
2766
2767static void sigmaSQ_muxsel(struct bttv *btv, unsigned int input)
2768{
2769 unsigned int inmux = input % 8;
2770 gpio_inout( 0xf, 0xf );
2771 gpio_bits( 0xf, inmux );
2772}
2773
2774static void sigmaSLC_muxsel(struct bttv *btv, unsigned int input)
2775{
2776 unsigned int inmux = input % 4;
2777 gpio_inout( 3<<9, 3<<9 );
2778 gpio_bits( 3<<9, inmux<<9 );
2779}
2780
2781/* ----------------------------------------------------------------------- */
2782
2783static void bttv_reset_audio(struct bttv *btv)
2784{
2785 /*
2786 * BT878A has a audio-reset register.
2787 * 1. This register is an audio reset function but it is in
2788 * function-0 (video capture) address space.
2789 * 2. It is enough to do this once per power-up of the card.
2790 * 3. There is a typo in the Conexant doc -- it is not at
2791 * 0x5B, but at 0x058. (B is an odd-number, obviously a typo!).
2792 * --//Shrikumar 030609
2793 */
2794 if (btv->id != 878)
2795 return;
2796
2797 if (bttv_debug)
2798 printk("bttv%d: BT878A ARESET\n",btv->c.nr);
2799 btwrite((1<<7), 0x058);
2800 udelay(10);
2801 btwrite( 0, 0x058);
2802}
2803
2804/* initialization part one -- before registering i2c bus */
2805void __devinit bttv_init_card1(struct bttv *btv)
2806{
2807 switch (btv->c.type) {
2808 case BTTV_HAUPPAUGE:
2809 case BTTV_HAUPPAUGE878:
2810 boot_msp34xx(btv,5);
2811 break;
2812 case BTTV_VOODOOTV_FM:
2813 boot_msp34xx(btv,20);
2814 break;
2815 case BTTV_AVERMEDIA98:
2816 boot_msp34xx(btv,11);
2817 break;
2818 case BTTV_HAUPPAUGEPVR:
2819 pvr_boot(btv);
2820 break;
2821 case BTTV_TWINHAN_DST:
2822 case BTTV_AVDVBT_771:
Michael Krufky7c08fb02005-11-08 21:36:21 -08002823 case BTTV_PINNACLESAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 btv->use_i2c_hw = 1;
2825 break;
Michael Krufky7c08fb02005-11-08 21:36:21 -08002826 case BTTV_ADLINK_RTV24:
2827 init_RTV24( btv );
2828 break;
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07002829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 }
2831 if (!bttv_tvcards[btv->c.type].has_dvb)
2832 bttv_reset_audio(btv);
2833}
2834
2835/* initialization part two -- after registering i2c bus */
2836void __devinit bttv_init_card2(struct bttv *btv)
2837{
2838 int tda9887;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002839 int addr=ADDR_UNSET;
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 btv->tuner_type = -1;
2842
2843 if (BTTV_UNKNOWN == btv->c.type) {
2844 bttv_readee(btv,eeprom_data,0xa0);
2845 identify_by_eeprom(btv,eeprom_data);
2846 }
2847
2848 switch (btv->c.type) {
2849 case BTTV_MIRO:
2850 case BTTV_MIROPRO:
2851 case BTTV_PINNACLE:
2852 case BTTV_PINNACLEPRO:
2853 /* miro/pinnacle */
2854 miro_pinnacle_gpio(btv);
2855 break;
2856 case BTTV_FLYVIDEO_98:
2857 case BTTV_MAXI:
2858 case BTTV_LIFE_FLYKIT:
2859 case BTTV_FLYVIDEO:
2860 case BTTV_TYPHOON_TVIEW:
2861 case BTTV_CHRONOS_VS2:
2862 case BTTV_FLYVIDEO_98FM:
2863 case BTTV_FLYVIDEO2000:
2864 case BTTV_FLYVIDEO98EZ:
2865 case BTTV_CONFERENCETV:
2866 case BTTV_LIFETEC_9415:
2867 flyvideo_gpio(btv);
2868 break;
2869 case BTTV_HAUPPAUGE:
2870 case BTTV_HAUPPAUGE878:
2871 case BTTV_HAUPPAUGEPVR:
2872 /* pick up some config infos from the eeprom */
2873 bttv_readee(btv,eeprom_data,0xa0);
2874 hauppauge_eeprom(btv);
2875 break;
2876 case BTTV_AVERMEDIA98:
2877 case BTTV_AVPHONE98:
2878 bttv_readee(btv,eeprom_data,0xa0);
2879 avermedia_eeprom(btv);
2880 break;
2881 case BTTV_PXC200:
2882 init_PXC200(btv);
2883 break;
2884 case BTTV_PICOLO_TETRA_CHIP:
2885 picolo_tetra_init(btv);
2886 break;
2887 case BTTV_VHX:
2888 btv->has_radio = 1;
2889 btv->has_matchbox = 1;
2890 btv->mbox_we = 0x20;
2891 btv->mbox_most = 0;
2892 btv->mbox_clk = 0x08;
2893 btv->mbox_data = 0x10;
2894 btv->mbox_mask = 0x38;
2895 break;
2896 case BTTV_VOBIS_BOOSTAR:
2897 case BTTV_TERRATV:
2898 terratec_active_radio_upgrade(btv);
2899 break;
2900 case BTTV_MAGICTVIEW061:
2901 if (btv->cardid == 0x3002144f) {
2902 btv->has_radio=1;
2903 printk("bttv%d: radio detected by subsystem id (CPH05x)\n",btv->c.nr);
2904 }
2905 break;
2906 case BTTV_STB2:
2907 if (btv->cardid == 0x3060121a) {
2908 /* Fix up entry for 3DFX VoodooTV 100,
2909 which is an OEM STB card variant. */
2910 btv->has_radio=0;
2911 btv->tuner_type=TUNER_TEMIC_NTSC;
2912 }
2913 break;
2914 case BTTV_OSPREY1x0:
2915 case BTTV_OSPREY1x0_848:
2916 case BTTV_OSPREY101_848:
2917 case BTTV_OSPREY1x1:
2918 case BTTV_OSPREY1x1_SVID:
2919 case BTTV_OSPREY2xx:
2920 case BTTV_OSPREY2x0_SVID:
2921 case BTTV_OSPREY2x0:
2922 case BTTV_OSPREY500:
2923 case BTTV_OSPREY540:
2924 case BTTV_OSPREY2000:
2925 bttv_readee(btv,eeprom_data,0xa0);
2926 osprey_eeprom(btv);
2927 break;
2928 case BTTV_IDS_EAGLE:
2929 init_ids_eagle(btv);
2930 break;
2931 case BTTV_MODTEC_205:
2932 bttv_readee(btv,eeprom_data,0xa0);
2933 modtec_eeprom(btv);
2934 break;
2935 case BTTV_LMLBT4:
2936 init_lmlbt4x(btv);
2937 break;
2938 case BTTV_TIBET_CS16:
2939 tibetCS16_init(btv);
2940 break;
2941 case BTTV_KODICOM_4400R:
2942 kodicom4400r_init(btv);
2943 break;
2944 }
2945
2946 /* pll configuration */
2947 if (!(btv->id==848 && btv->revision==0x11)) {
2948 /* defaults from card list */
2949 if (PLL_28 == bttv_tvcards[btv->c.type].pll) {
2950 btv->pll.pll_ifreq=28636363;
2951 btv->pll.pll_crystal=BT848_IFORM_XT0;
2952 }
2953 if (PLL_35 == bttv_tvcards[btv->c.type].pll) {
2954 btv->pll.pll_ifreq=35468950;
2955 btv->pll.pll_crystal=BT848_IFORM_XT1;
2956 }
2957 /* insmod options can override */
2958 switch (pll[btv->c.nr]) {
2959 case 0: /* none */
2960 btv->pll.pll_crystal = 0;
2961 btv->pll.pll_ifreq = 0;
2962 btv->pll.pll_ofreq = 0;
2963 break;
2964 case 1: /* 28 MHz */
2965 case 28:
2966 btv->pll.pll_ifreq = 28636363;
2967 btv->pll.pll_ofreq = 0;
2968 btv->pll.pll_crystal = BT848_IFORM_XT0;
2969 break;
2970 case 2: /* 35 MHz */
2971 case 35:
2972 btv->pll.pll_ifreq = 35468950;
2973 btv->pll.pll_ofreq = 0;
2974 btv->pll.pll_crystal = BT848_IFORM_XT1;
2975 break;
2976 }
2977 }
2978 btv->pll.pll_current = -1;
2979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 /* tuner configuration (from card list / autodetect / insmod option) */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002981 if (ADDR_UNSET != bttv_tvcards[btv->c.type].tuner_addr)
2982 addr = bttv_tvcards[btv->c.type].tuner_addr;
2983
2984 if (UNSET != bttv_tvcards[btv->c.type].tuner_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 if(UNSET == btv->tuner_type)
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002986 btv->tuner_type = bttv_tvcards[btv->c.type].tuner_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 if (UNSET != tuner[btv->c.nr])
2988 btv->tuner_type = tuner[btv->c.nr];
2989 printk("bttv%d: using tuner=%d\n",btv->c.nr,btv->tuner_type);
2990 if (btv->pinnacle_id != UNSET)
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07002991 bttv_call_i2c_clients(btv, AUDC_CONFIG_PINNACLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 &btv->pinnacle_id);
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07002993 if (btv->tuner_type != UNSET) {
2994 struct tuner_setup tun_setup;
2995
2996 tun_setup.mode_mask = T_RADIO | T_ANALOG_TV | T_DIGITAL_TV;
2997 tun_setup.type = btv->tuner_type;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002998 tun_setup.addr = addr;
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07002999
3000 bttv_call_i2c_clients(btv, TUNER_SET_TYPE_ADDR, &tun_setup);
3001 }
3002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 btv->svhs = bttv_tvcards[btv->c.type].svhs;
3004 if (svhs[btv->c.nr] != UNSET)
3005 btv->svhs = svhs[btv->c.nr];
3006 if (remote[btv->c.nr] != UNSET)
3007 btv->has_remote = remote[btv->c.nr];
3008
3009 if (bttv_tvcards[btv->c.type].has_radio)
3010 btv->has_radio=1;
3011 if (bttv_tvcards[btv->c.type].has_remote)
3012 btv->has_remote=1;
Michael Krufky7c08fb02005-11-08 21:36:21 -08003013 if (!bttv_tvcards[btv->c.type].no_gpioirq)
3014 btv->gpioirq=1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 if (bttv_tvcards[btv->c.type].audio_hook)
3016 btv->audio_hook=bttv_tvcards[btv->c.type].audio_hook;
3017
3018 if (bttv_tvcards[btv->c.type].digital_mode == DIGITAL_MODE_CAMERA) {
3019 /* detect Bt832 chip for quartzsight digital camera */
3020 if ((bttv_I2CRead(btv, I2C_BT832_ALT1, "Bt832") >=0) ||
3021 (bttv_I2CRead(btv, I2C_BT832_ALT2, "Bt832") >=0))
3022 boot_bt832(btv);
3023 }
3024
3025 if (!autoload)
3026 return;
3027
3028 /* try to detect audio/fader chips */
3029 if (!bttv_tvcards[btv->c.type].no_msp34xx &&
3030 bttv_I2CRead(btv, I2C_MSP3400, "MSP34xx") >=0)
3031 request_module("msp3400");
3032
3033 if (bttv_tvcards[btv->c.type].msp34xx_alt &&
3034 bttv_I2CRead(btv, I2C_MSP3400_ALT, "MSP34xx (alternate address)") >=0)
3035 request_module("msp3400");
3036
3037 if (!bttv_tvcards[btv->c.type].no_tda9875 &&
3038 bttv_I2CRead(btv, I2C_TDA9875, "TDA9875") >=0)
3039 request_module("tda9875");
3040
3041 if (!bttv_tvcards[btv->c.type].no_tda7432 &&
3042 bttv_I2CRead(btv, I2C_TDA7432, "TDA7432") >=0)
3043 request_module("tda7432");
3044
3045 if (bttv_tvcards[btv->c.type].needs_tvaudio)
3046 request_module("tvaudio");
3047
3048 /* tuner modules */
3049 tda9887 = 0;
3050 if (btv->pinnacle_id != UNSET)
3051 tda9887 = 1;
3052 if (0 == tda9887 && 0 == bttv_tvcards[btv->c.type].has_dvb &&
3053 bttv_I2CRead(btv, I2C_TDA9887, "TDA9887") >=0)
3054 tda9887 = 1;
3055 if((btv->tuner_type == TUNER_PHILIPS_FM1216ME_MK3) ||
3056 (btv->tuner_type == TUNER_PHILIPS_FM1236_MK3) ||
3057 (btv->tuner_type == TUNER_PHILIPS_FM1256_IH3) ||
3058 tda9887)
3059 request_module("tda9887");
3060 if (btv->tuner_type != UNSET)
3061 request_module("tuner");
3062}
3063
3064
3065/* ----------------------------------------------------------------------- */
3066
3067static void modtec_eeprom(struct bttv *btv)
3068{
3069 if( strncmp(&(eeprom_data[0x1e]),"Temic 4066 FY5",14) ==0) {
3070 btv->tuner_type=TUNER_TEMIC_4066FY5_PAL_I;
3071 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3072 btv->c.nr,&eeprom_data[0x1e]);
3073 } else if (strncmp(&(eeprom_data[0x1e]),"Alps TSBB5",10) ==0) {
3074 btv->tuner_type=TUNER_ALPS_TSBB5_PAL_I;
3075 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3076 btv->c.nr,&eeprom_data[0x1e]);
3077 } else if (strncmp(&(eeprom_data[0x1e]),"Philips FM1246",14) ==0) {
3078 btv->tuner_type=TUNER_PHILIPS_NTSC;
3079 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3080 btv->c.nr,&eeprom_data[0x1e]);
3081 } else {
3082 printk("bttv%d: Modtec: Unknown TunerString: %s\n",
3083 btv->c.nr,&eeprom_data[0x1e]);
3084 }
3085}
3086
3087static void __devinit hauppauge_eeprom(struct bttv *btv)
3088{
3089 struct tveeprom tv;
3090
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -07003091 tveeprom_hauppauge_analog(&btv->i2c_client, &tv, eeprom_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 btv->tuner_type = tv.tuner_type;
3093 btv->has_radio = tv.has_radio;
3094}
3095
3096static int terratec_active_radio_upgrade(struct bttv *btv)
3097{
3098 int freq;
3099
3100 btv->has_radio = 1;
3101 btv->has_matchbox = 1;
3102 btv->mbox_we = 0x10;
3103 btv->mbox_most = 0x20;
3104 btv->mbox_clk = 0x08;
3105 btv->mbox_data = 0x04;
3106 btv->mbox_mask = 0x3c;
3107
3108 btv->mbox_iow = 1 << 8;
3109 btv->mbox_ior = 1 << 9;
3110 btv->mbox_csel = 1 << 10;
3111
3112 freq=88000/62.5;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003113 tea5757_write(btv, 5 * freq + 0x358); /* write 0x1ed8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 if (0x1ed8 == tea5757_read(btv)) {
3115 printk("bttv%d: Terratec Active Radio Upgrade found.\n",
3116 btv->c.nr);
3117 btv->has_radio = 1;
3118 btv->has_matchbox = 1;
3119 } else {
3120 btv->has_radio = 0;
3121 btv->has_matchbox = 0;
3122 }
3123 return 0;
3124}
3125
3126
3127/* ----------------------------------------------------------------------- */
3128
3129/*
3130 * minimal bootstrap for the WinTV/PVR -- upload altera firmware.
3131 *
3132 * The hcwamc.rbf firmware file is on the Hauppauge driver CD. Have
3133 * a look at Pvr/pvr45xxx.EXE (self-extracting zip archive, can be
3134 * unpacked with unzip).
3135 */
3136#define PVR_GPIO_DELAY 10
3137
3138#define BTTV_ALT_DATA 0x000001
3139#define BTTV_ALT_DCLK 0x100000
3140#define BTTV_ALT_NCONFIG 0x800000
3141
3142static int __devinit pvr_altera_load(struct bttv *btv, u8 *micro, u32 microlen)
3143{
3144 u32 n;
3145 u8 bits;
3146 int i;
3147
3148 gpio_inout(0xffffff,BTTV_ALT_DATA|BTTV_ALT_DCLK|BTTV_ALT_NCONFIG);
3149 gpio_write(0);
3150 udelay(PVR_GPIO_DELAY);
3151
3152 gpio_write(BTTV_ALT_NCONFIG);
3153 udelay(PVR_GPIO_DELAY);
3154
3155 for (n = 0; n < microlen; n++) {
3156 bits = micro[n];
3157 for ( i = 0 ; i < 8 ; i++ ) {
3158 gpio_bits(BTTV_ALT_DCLK,0);
3159 if (bits & 0x01)
3160 gpio_bits(BTTV_ALT_DATA,BTTV_ALT_DATA);
3161 else
3162 gpio_bits(BTTV_ALT_DATA,0);
3163 gpio_bits(BTTV_ALT_DCLK,BTTV_ALT_DCLK);
3164 bits >>= 1;
3165 }
3166 }
3167 gpio_bits(BTTV_ALT_DCLK,0);
3168 udelay(PVR_GPIO_DELAY);
3169
3170 /* begin Altera init loop (Not necessary,but doesn't hurt) */
3171 for (i = 0 ; i < 30 ; i++) {
3172 gpio_bits(BTTV_ALT_DCLK,0);
3173 gpio_bits(BTTV_ALT_DCLK,BTTV_ALT_DCLK);
3174 }
3175 gpio_bits(BTTV_ALT_DCLK,0);
3176 return 0;
3177}
3178
3179static int __devinit pvr_boot(struct bttv *btv)
3180{
3181 const struct firmware *fw_entry;
3182 int rc;
3183
3184 rc = request_firmware(&fw_entry, "hcwamc.rbf", &btv->c.pci->dev);
3185 if (rc != 0) {
3186 printk(KERN_WARNING "bttv%d: no altera firmware [via hotplug]\n",
3187 btv->c.nr);
3188 return rc;
3189 }
3190 rc = pvr_altera_load(btv, fw_entry->data, fw_entry->size);
3191 printk(KERN_INFO "bttv%d: altera firmware upload %s\n",
3192 btv->c.nr, (rc < 0) ? "failed" : "ok");
3193 release_firmware(fw_entry);
3194 return rc;
3195}
3196
3197/* ----------------------------------------------------------------------- */
3198/* some osprey specific stuff */
3199
3200static void __devinit osprey_eeprom(struct bttv *btv)
3201{
3202 int i = 0;
3203 unsigned char *ee = eeprom_data;
3204 unsigned long serial = 0;
3205
3206 if (btv->c.type == 0) {
3207 /* this might be an antique... check for MMAC label in eeprom */
3208 if ((ee[0]=='M') && (ee[1]=='M') && (ee[2]=='A') && (ee[3]=='C')) {
3209 unsigned char checksum = 0;
3210 for (i =0; i<21; i++)
3211 checksum += ee[i];
3212 if (checksum != ee[21])
3213 return;
3214 btv->c.type = BTTV_OSPREY1x0_848;
3215 for (i = 12; i < 21; i++)
3216 serial *= 10, serial += ee[i] - '0';
3217 }
3218 } else {
3219 unsigned short type;
3220 int offset = 4*16;
3221
3222 for(; offset < 8*16; offset += 16) {
3223 unsigned short checksum = 0;
3224 /* verify the checksum */
3225 for(i = 0; i<14; i++) checksum += ee[i+offset];
3226 checksum = ~checksum; /* no idea why */
3227 if ((((checksum>>8)&0x0FF) == ee[offset+14]) &&
3228 ((checksum & 0x0FF) == ee[offset+15])) {
3229 break;
3230 }
3231 }
3232
3233 if (offset >= 8*16)
3234 return;
3235
3236 /* found a valid descriptor */
3237 type = (ee[offset+4]<<8) | (ee[offset+5]);
3238
3239 switch(type) {
3240
3241 /* 848 based */
3242 case 0x0004:
3243 btv->c.type = BTTV_OSPREY1x0_848;
3244 break;
3245 case 0x0005:
3246 btv->c.type = BTTV_OSPREY101_848;
3247 break;
3248
3249 /* 878 based */
3250 case 0x0012:
3251 case 0x0013:
3252 btv->c.type = BTTV_OSPREY1x0;
3253 break;
3254 case 0x0014:
3255 case 0x0015:
3256 btv->c.type = BTTV_OSPREY1x1;
3257 break;
3258 case 0x0016:
3259 case 0x0017:
3260 case 0x0020:
3261 btv->c.type = BTTV_OSPREY1x1_SVID;
3262 break;
3263 case 0x0018:
3264 case 0x0019:
3265 case 0x001E:
3266 case 0x001F:
3267 btv->c.type = BTTV_OSPREY2xx;
3268 break;
3269 case 0x001A:
3270 case 0x001B:
3271 btv->c.type = BTTV_OSPREY2x0_SVID;
3272 break;
3273 case 0x0040:
3274 btv->c.type = BTTV_OSPREY500;
3275 break;
3276 case 0x0050:
3277 case 0x0056:
3278 btv->c.type = BTTV_OSPREY540;
3279 /* bttv_osprey_540_init(btv); */
3280 break;
3281 case 0x0060:
3282 case 0x0070:
3283 btv->c.type = BTTV_OSPREY2x0;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003284 /* enable output on select control lines */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 gpio_inout(0xffffff,0x000303);
3286 break;
3287 default:
3288 /* unknown...leave generic, but get serial # */
3289 break;
3290 }
3291 serial = (ee[offset+6] << 24)
3292 | (ee[offset+7] << 16)
3293 | (ee[offset+8] << 8)
3294 | (ee[offset+9]);
3295 }
3296
3297 printk(KERN_INFO "bttv%d: osprey eeprom: card=%d name=%s serial=%ld\n",
3298 btv->c.nr, btv->c.type, bttv_tvcards[btv->c.type].name,serial);
3299}
3300
3301/* ----------------------------------------------------------------------- */
3302/* AVermedia specific stuff, from bktr_card.c */
3303
3304static int tuner_0_table[] = {
3305 TUNER_PHILIPS_NTSC, TUNER_PHILIPS_PAL /* PAL-BG*/,
3306 TUNER_PHILIPS_PAL, TUNER_PHILIPS_PAL /* PAL-I*/,
3307 TUNER_PHILIPS_PAL, TUNER_PHILIPS_PAL,
3308 TUNER_PHILIPS_SECAM, TUNER_PHILIPS_SECAM,
3309 TUNER_PHILIPS_SECAM, TUNER_PHILIPS_PAL,
3310 TUNER_PHILIPS_FM1216ME_MK3 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
3312static int tuner_1_table[] = {
3313 TUNER_TEMIC_NTSC, TUNER_TEMIC_PAL,
3314 TUNER_TEMIC_PAL, TUNER_TEMIC_PAL,
3315 TUNER_TEMIC_PAL, TUNER_TEMIC_PAL,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003316 TUNER_TEMIC_4012FY5, TUNER_TEMIC_4012FY5, /* TUNER_TEMIC_SECAM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 TUNER_TEMIC_4012FY5, TUNER_TEMIC_PAL};
3318
3319static void __devinit avermedia_eeprom(struct bttv *btv)
3320{
3321 int tuner_make,tuner_tv_fm,tuner_format,tuner=0;
3322
3323 tuner_make = (eeprom_data[0x41] & 0x7);
3324 tuner_tv_fm = (eeprom_data[0x41] & 0x18) >> 3;
3325 tuner_format = (eeprom_data[0x42] & 0xf0) >> 4;
3326 btv->has_remote = (eeprom_data[0x42] & 0x01);
3327
3328 if (tuner_make == 0 || tuner_make == 2)
3329 if(tuner_format <=0x0a)
3330 tuner = tuner_0_table[tuner_format];
3331 if (tuner_make == 1)
3332 if(tuner_format <=9)
3333 tuner = tuner_1_table[tuner_format];
3334
3335 if (tuner_make == 4)
3336 if(tuner_format == 0x09)
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003337 tuner = TUNER_LG_NTSC_NEW_TAPC; /* TAPC-G702P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
3339 printk(KERN_INFO "bttv%d: Avermedia eeprom[0x%02x%02x]: tuner=",
3340 btv->c.nr,eeprom_data[0x41],eeprom_data[0x42]);
3341 if(tuner) {
3342 btv->tuner_type=tuner;
3343 printk("%d",tuner);
3344 } else
3345 printk("Unknown type");
3346 printk(" radio:%s remote control:%s\n",
3347 tuner_tv_fm ? "yes" : "no",
3348 btv->has_remote ? "yes" : "no");
3349}
3350
3351/* used on Voodoo TV/FM (Voodoo 200), S0 wired to 0x10000 */
3352void bttv_tda9880_setnorm(struct bttv *btv, int norm)
3353{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003354 /* fix up our card entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 if(norm==VIDEO_MODE_NTSC) {
3356 bttv_tvcards[BTTV_VOODOOTV_FM].audiomux[0]=0x957fff;
3357 bttv_tvcards[BTTV_VOODOOTV_FM].audiomux[4]=0x957fff;
3358 dprintk("bttv_tda9880_setnorm to NTSC\n");
3359 }
3360 else {
3361 bttv_tvcards[BTTV_VOODOOTV_FM].audiomux[0]=0x947fff;
3362 bttv_tvcards[BTTV_VOODOOTV_FM].audiomux[4]=0x947fff;
3363 dprintk("bttv_tda9880_setnorm to PAL\n");
3364 }
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003365 /* set GPIO according */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 gpio_bits(bttv_tvcards[btv->c.type].gpiomask,
3367 bttv_tvcards[btv->c.type].audiomux[btv->audio]);
3368}
3369
3370
3371/*
3372 * reset/enable the MSP on some Hauppauge cards
David Woodhouse93e960f2005-11-08 21:36:46 -08003373 * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 *
3375 * Hauppauge: pin 5
3376 * Voodoo: pin 20
3377 */
3378static void __devinit boot_msp34xx(struct bttv *btv, int pin)
3379{
3380 int mask = (1 << pin);
3381
3382 gpio_inout(mask,mask);
3383 gpio_bits(mask,0);
3384 udelay(2500);
3385 gpio_bits(mask,mask);
3386
3387 if (bttv_gpio)
3388 bttv_gpio_tracking(btv,"msp34xx");
3389 if (bttv_verbose)
3390 printk(KERN_INFO "bttv%d: Hauppauge/Voodoo msp34xx: reset line "
3391 "init [%d]\n", btv->c.nr, pin);
3392}
3393
3394static void __devinit boot_bt832(struct bttv *btv)
3395{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396}
3397
3398/* ----------------------------------------------------------------------- */
3399/* Imagenation L-Model PXC200 Framegrabber */
3400/* This is basically the same procedure as
3401 * used by Alessandro Rubini in his pxc200
3402 * driver, but using BTTV functions */
3403
3404static void __devinit init_PXC200(struct bttv *btv)
3405{
3406 static int vals[] __devinitdata = { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d,
3407 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
3408 0x00 };
3409 unsigned int i;
3410 int tmp;
3411 u32 val;
3412
3413 /* Initialise GPIO-connevted stuff */
3414 gpio_inout(0xffffff, (1<<13));
3415 gpio_write(0);
3416 udelay(3);
3417 gpio_write(1<<13);
3418 /* GPIO inputs are pulled up, so no need to drive
3419 * reset pin any longer */
3420 gpio_bits(0xffffff, 0);
3421 if (bttv_gpio)
3422 bttv_gpio_tracking(btv,"pxc200");
3423
3424 /* we could/should try and reset/control the AD pots? but
3425 right now we simply turned off the crushing. Without
3426 this the AGC drifts drifts
3427 remember the EN is reverse logic -->
3428 setting BT848_ADC_AGC_EN disable the AGC
3429 tboult@eecs.lehigh.edu
3430 */
3431
3432 btwrite(BT848_ADC_RESERVED|BT848_ADC_AGC_EN, BT848_ADC);
3433
3434 /* Initialise MAX517 DAC */
3435 printk(KERN_INFO "Setting DAC reference voltage level ...\n");
3436 bttv_I2CWrite(btv,0x5E,0,0x80,1);
3437
3438 /* Initialise 12C508 PIC */
3439 /* The I2CWrite and I2CRead commmands are actually to the
3440 * same chips - but the R/W bit is included in the address
3441 * argument so the numbers are different */
3442
3443
3444 printk(KERN_INFO "Initialising 12C508 PIC chip ...\n");
3445
3446 /* First of all, enable the clock line. This is used in the PXC200-F */
3447 val = btread(BT848_GPIO_DMA_CTL);
3448 val |= BT848_GPIO_DMA_CTL_GPCLKMODE;
3449 btwrite(val, BT848_GPIO_DMA_CTL);
3450
3451 /* Then, push to 0 the reset pin long enough to reset the *
3452 * device same as above for the reset line, but not the same
3453 * value sent to the GPIO-connected stuff
3454 * which one is the good one? */
3455 gpio_inout(0xffffff,(1<<2));
3456 gpio_write(0);
3457 udelay(10);
3458 gpio_write(1<<2);
3459
3460 for (i = 0; i < ARRAY_SIZE(vals); i++) {
3461 tmp=bttv_I2CWrite(btv,0x1E,0,vals[i],1);
3462 if (tmp != -1) {
3463 printk(KERN_INFO
3464 "I2C Write(%2.2x) = %i\nI2C Read () = %2.2x\n\n",
3465 vals[i],tmp,bttv_I2CRead(btv,0x1F,NULL));
3466 }
3467 }
3468
3469 printk(KERN_INFO "PXC200 Initialised.\n");
3470}
3471
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003472
3473
Peter Skipworth93b43f12005-06-23 22:04:45 -07003474/* ----------------------------------------------------------------------- */
3475/*
3476 * The Adlink RTV-24 (aka Angelo) has some special initialisation to unlock
3477 * it. This apparently involves the following procedure for each 878 chip:
3478 *
3479 * 1) write 0x00C3FEFF to the GPIO_OUT_EN register
3480 *
3481 * 2) write to GPIO_DATA
3482 * - 0x0E
3483 * - sleep 1ms
3484 * - 0x10 + 0x0E
3485 * - sleep 10ms
3486 * - 0x0E
3487 * read from GPIO_DATA into buf (uint_32)
3488 * - if ( data>>18 & 0x01 != 0) || ( buf>>19 & 0x01 != 1 )
3489 * error. ERROR_CPLD_Check_Failed stop.
3490 *
3491 * 3) write to GPIO_DATA
3492 * - write 0x4400 + 0x0E
3493 * - sleep 10ms
3494 * - write 0x4410 + 0x0E
3495 * - sleep 1ms
3496 * - write 0x0E
3497 * read from GPIO_DATA into buf (uint_32)
3498 * - if ( buf>>18 & 0x01 ) || ( buf>>19 && 0x01 != 0 )
3499 * error. ERROR_CPLD_Check_Failed.
3500 */
3501/* ----------------------------------------------------------------------- */
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003502void
3503init_RTV24 (struct bttv *btv)
Peter Skipworth93b43f12005-06-23 22:04:45 -07003504{
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003505 uint32_t dataRead = 0;
3506 long watchdog_value = 0x0E;
Peter Skipworth93b43f12005-06-23 22:04:45 -07003507
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003508 printk (KERN_INFO
3509 "bttv%d: Adlink RTV-24 initialisation in progress ...\n",
Peter Skipworth93b43f12005-06-23 22:04:45 -07003510 btv->c.nr);
3511
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003512 btwrite (0x00c3feff, BT848_GPIO_OUT_EN);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003513
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003514 btwrite (0 + watchdog_value, BT848_GPIO_DATA);
3515 msleep (1);
3516 btwrite (0x10 + watchdog_value, BT848_GPIO_DATA);
3517 msleep (10);
3518 btwrite (0 + watchdog_value, BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003519
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003520 dataRead = btread (BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003521
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003522 if ((((dataRead >> 18) & 0x01) != 0) || (((dataRead >> 19) & 0x01) != 1)) {
3523 printk (KERN_INFO
3524 "bttv%d: Adlink RTV-24 initialisation(1) ERROR_CPLD_Check_Failed (read %d)\n",
3525 btv->c.nr, dataRead);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003526 }
3527
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003528 btwrite (0x4400 + watchdog_value, BT848_GPIO_DATA);
3529 msleep (10);
3530 btwrite (0x4410 + watchdog_value, BT848_GPIO_DATA);
3531 msleep (1);
3532 btwrite (watchdog_value, BT848_GPIO_DATA);
3533 msleep (1);
3534 dataRead = btread (BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003535
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003536 if ((((dataRead >> 18) & 0x01) != 0) || (((dataRead >> 19) & 0x01) != 0)) {
3537 printk (KERN_INFO
3538 "bttv%d: Adlink RTV-24 initialisation(2) ERROR_CPLD_Check_Failed (read %d)\n",
3539 btv->c.nr, dataRead);
3540
Peter Skipworth93b43f12005-06-23 22:04:45 -07003541 return;
3542 }
3543
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003544 printk (KERN_INFO
3545 "bttv%d: Adlink RTV-24 initialisation complete.\n", btv->c.nr);
Peter Skipworth93b43f12005-06-23 22:04:45 -07003546}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003548
3549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550/* ----------------------------------------------------------------------- */
3551/* Miro Pro radio stuff -- the tea5757 is connected to some GPIO ports */
3552/*
3553 * Copyright (c) 1999 Csaba Halasz <qgehali@uni-miskolc.hu>
3554 * This code is placed under the terms of the GNU General Public License
3555 *
3556 * Brutally hacked by Dan Sheridan <dan.sheridan@contact.org.uk> djs52 8/3/00
3557 */
3558
3559static void bus_low(struct bttv *btv, int bit)
3560{
3561 if (btv->mbox_ior) {
3562 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3563 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3564 udelay(5);
3565 }
3566
3567 gpio_bits(bit,0);
3568 udelay(5);
3569
3570 if (btv->mbox_ior) {
3571 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3572 udelay(5);
3573 }
3574}
3575
3576static void bus_high(struct bttv *btv, int bit)
3577{
3578 if (btv->mbox_ior) {
3579 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3580 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3581 udelay(5);
3582 }
3583
3584 gpio_bits(bit,bit);
3585 udelay(5);
3586
3587 if (btv->mbox_ior) {
3588 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3589 udelay(5);
3590 }
3591}
3592
3593static int bus_in(struct bttv *btv, int bit)
3594{
3595 if (btv->mbox_ior) {
3596 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3597 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3598 udelay(5);
3599
3600 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
3601 udelay(5);
3602 }
3603 return gpio_read() & (bit);
3604}
3605
3606/* TEA5757 register bits */
3607#define TEA_FREQ 0:14
3608#define TEA_BUFFER 15:15
3609
3610#define TEA_SIGNAL_STRENGTH 16:17
3611
3612#define TEA_PORT1 18:18
3613#define TEA_PORT0 19:19
3614
3615#define TEA_BAND 20:21
3616#define TEA_BAND_FM 0
3617#define TEA_BAND_MW 1
3618#define TEA_BAND_LW 2
3619#define TEA_BAND_SW 3
3620
3621#define TEA_MONO 22:22
3622#define TEA_ALLOW_STEREO 0
3623#define TEA_FORCE_MONO 1
3624
3625#define TEA_SEARCH_DIRECTION 23:23
3626#define TEA_SEARCH_DOWN 0
3627#define TEA_SEARCH_UP 1
3628
3629#define TEA_STATUS 24:24
3630#define TEA_STATUS_TUNED 0
3631#define TEA_STATUS_SEARCHING 1
3632
3633/* Low-level stuff */
3634static int tea5757_read(struct bttv *btv)
3635{
3636 unsigned long timeout;
3637 int value = 0;
3638 int i;
3639
3640 /* better safe than sorry */
3641 gpio_inout(btv->mbox_mask, btv->mbox_clk | btv->mbox_we);
3642
3643 if (btv->mbox_ior) {
3644 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3645 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3646 udelay(5);
3647 }
3648
3649 if (bttv_gpio)
3650 bttv_gpio_tracking(btv,"tea5757 read");
3651
3652 bus_low(btv,btv->mbox_we);
3653 bus_low(btv,btv->mbox_clk);
3654
3655 udelay(10);
3656 timeout= jiffies + HZ;
3657
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003658 /* wait for DATA line to go low; error if it doesn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 while (bus_in(btv,btv->mbox_data) && time_before(jiffies, timeout))
3660 schedule();
3661 if (bus_in(btv,btv->mbox_data)) {
3662 printk(KERN_WARNING "bttv%d: tea5757: read timeout\n",btv->c.nr);
3663 return -1;
3664 }
3665
3666 dprintk("bttv%d: tea5757:",btv->c.nr);
3667 for(i = 0; i < 24; i++)
3668 {
3669 udelay(5);
3670 bus_high(btv,btv->mbox_clk);
3671 udelay(5);
3672 dprintk("%c",(bus_in(btv,btv->mbox_most) == 0)?'T':'-');
3673 bus_low(btv,btv->mbox_clk);
3674 value <<= 1;
3675 value |= (bus_in(btv,btv->mbox_data) == 0)?0:1; /* MSB first */
3676 dprintk("%c", (bus_in(btv,btv->mbox_most) == 0)?'S':'M');
3677 }
3678 dprintk("\nbttv%d: tea5757: read 0x%X\n", btv->c.nr, value);
3679 return value;
3680}
3681
3682static int tea5757_write(struct bttv *btv, int value)
3683{
3684 int i;
3685 int reg = value;
3686
3687 gpio_inout(btv->mbox_mask, btv->mbox_clk | btv->mbox_we | btv->mbox_data);
3688
3689 if (btv->mbox_ior) {
3690 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
3691 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
3692 udelay(5);
3693 }
3694 if (bttv_gpio)
3695 bttv_gpio_tracking(btv,"tea5757 write");
3696
3697 dprintk("bttv%d: tea5757: write 0x%X\n", btv->c.nr, value);
3698 bus_low(btv,btv->mbox_clk);
3699 bus_high(btv,btv->mbox_we);
3700 for(i = 0; i < 25; i++)
3701 {
3702 if (reg & 0x1000000)
3703 bus_high(btv,btv->mbox_data);
3704 else
3705 bus_low(btv,btv->mbox_data);
3706 reg <<= 1;
3707 bus_high(btv,btv->mbox_clk);
3708 udelay(10);
3709 bus_low(btv,btv->mbox_clk);
3710 udelay(10);
3711 }
3712 bus_low(btv,btv->mbox_we); /* unmute !!! */
3713 return 0;
3714}
3715
3716void tea5757_set_freq(struct bttv *btv, unsigned short freq)
3717{
3718 dprintk("tea5757_set_freq %d\n",freq);
3719 tea5757_write(btv, 5 * freq + 0x358); /* add 10.7MHz (see docs) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720}
3721
3722
3723/* ----------------------------------------------------------------------- */
3724/* winview */
3725
3726void winview_audio(struct bttv *btv, struct video_audio *v, int set)
3727{
3728 /* PT2254A programming Jon Tombs, jon@gte.esi.us.es */
3729 int bits_out, loops, vol, data;
3730
3731 if (!set) {
3732 /* Fixed by Leandro Lucarella <luca@linuxmendoza.org.ar (07/31/01) */
3733 v->flags |= VIDEO_AUDIO_VOLUME;
3734 return;
3735 }
3736
3737 /* 32 levels logarithmic */
3738 vol = 32 - ((v->volume>>11));
3739 /* units */
3740 bits_out = (PT2254_DBS_IN_2>>(vol%5));
3741 /* tens */
3742 bits_out |= (PT2254_DBS_IN_10>>(vol/5));
3743 bits_out |= PT2254_L_CHANNEL | PT2254_R_CHANNEL;
3744 data = gpio_read();
3745 data &= ~(WINVIEW_PT2254_CLK| WINVIEW_PT2254_DATA|
3746 WINVIEW_PT2254_STROBE);
3747 for (loops = 17; loops >= 0 ; loops--) {
3748 if (bits_out & (1<<loops))
3749 data |= WINVIEW_PT2254_DATA;
3750 else
3751 data &= ~WINVIEW_PT2254_DATA;
3752 gpio_write(data);
3753 udelay(5);
3754 data |= WINVIEW_PT2254_CLK;
3755 gpio_write(data);
3756 udelay(5);
3757 data &= ~WINVIEW_PT2254_CLK;
3758 gpio_write(data);
3759 }
3760 data |= WINVIEW_PT2254_STROBE;
3761 data &= ~WINVIEW_PT2254_DATA;
3762 gpio_write(data);
3763 udelay(10);
3764 data &= ~WINVIEW_PT2254_STROBE;
3765 gpio_write(data);
3766}
3767
3768/* ----------------------------------------------------------------------- */
3769/* mono/stereo control for various cards (which don't use i2c chips but */
3770/* connect something to the GPIO pins */
3771
3772static void
3773gvbctv3pci_audio(struct bttv *btv, struct video_audio *v, int set)
3774{
3775 unsigned int con = 0;
3776
3777 if (set) {
3778 gpio_inout(0x300, 0x300);
3779 if (v->mode & VIDEO_SOUND_LANG1)
3780 con = 0x000;
3781 if (v->mode & VIDEO_SOUND_LANG2)
3782 con = 0x300;
3783 if (v->mode & VIDEO_SOUND_STEREO)
3784 con = 0x200;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003785/* if (v->mode & VIDEO_SOUND_MONO)
3786 * con = 0x100; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 gpio_bits(0x300, con);
3788 } else {
3789 v->mode = VIDEO_SOUND_STEREO |
3790 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3791 }
3792}
3793
3794static void
3795gvbctv5pci_audio(struct bttv *btv, struct video_audio *v, int set)
3796{
3797 unsigned int val, con;
3798
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 if (btv->radio_user)
3800 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801
3802 val = gpio_read();
3803 if (set) {
3804 con = 0x000;
3805 if (v->mode & VIDEO_SOUND_LANG2) {
3806 if (v->mode & VIDEO_SOUND_LANG1) {
3807 /* LANG1 + LANG2 */
3808 con = 0x100;
3809 }
3810 else {
3811 /* LANG2 */
3812 con = 0x300;
3813 }
3814 }
3815 if (con != (val & 0x300)) {
3816 gpio_bits(0x300, con);
3817 if (bttv_gpio)
3818 bttv_gpio_tracking(btv,"gvbctv5pci");
3819 }
3820 } else {
3821 switch (val & 0x70) {
3822 case 0x10:
3823 v->mode = VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3824 break;
3825 case 0x30:
3826 v->mode = VIDEO_SOUND_LANG2;
3827 break;
3828 case 0x50:
3829 v->mode = VIDEO_SOUND_LANG1;
3830 break;
3831 case 0x60:
3832 v->mode = VIDEO_SOUND_STEREO;
3833 break;
3834 case 0x70:
3835 v->mode = VIDEO_SOUND_MONO;
3836 break;
3837 default:
3838 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3839 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3840 }
3841 }
3842}
3843
3844/*
3845 * Mario Medina Nussbaum <medisoft@alohabbs.org.mx>
3846 * I discover that on BT848_GPIO_DATA address a byte 0xcce enable stereo,
3847 * 0xdde enables mono and 0xccd enables sap
3848 *
3849 * Petr Vandrovec <VANDROVE@vc.cvut.cz>
3850 * P.S.: At least mask in line above is wrong - GPIO pins 3,2 select
3851 * input/output sound connection, so both must be set for output mode.
3852 *
3853 * Looks like it's needed only for the "tvphone", the "tvphone 98"
3854 * handles this with a tda9840
3855 *
3856 */
3857static void
3858avermedia_tvphone_audio(struct bttv *btv, struct video_audio *v, int set)
3859{
3860 int val = 0;
3861
3862 if (set) {
3863 if (v->mode & VIDEO_SOUND_LANG2) /* SAP */
3864 val = 0x02;
3865 if (v->mode & VIDEO_SOUND_STEREO)
3866 val = 0x01;
3867 if (val) {
3868 gpio_bits(0x03,val);
3869 if (bttv_gpio)
3870 bttv_gpio_tracking(btv,"avermedia");
3871 }
3872 } else {
3873 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3874 VIDEO_SOUND_LANG1;
3875 return;
3876 }
3877}
3878
3879static void
3880avermedia_tv_stereo_audio(struct bttv *btv, struct video_audio *v, int set)
3881{
3882 int val = 0;
3883
3884 if (set) {
3885 if (v->mode & VIDEO_SOUND_LANG2) /* SAP */
3886 val = 0x01;
3887 if (v->mode & VIDEO_SOUND_STEREO) /* STEREO */
3888 val = 0x02;
3889 btaor(val, ~0x03, BT848_GPIO_DATA);
3890 if (bttv_gpio)
3891 bttv_gpio_tracking(btv,"avermedia");
3892 } else {
3893 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3894 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3895 return;
3896 }
3897}
3898
3899/* Lifetec 9415 handling */
3900static void
3901lt9415_audio(struct bttv *btv, struct video_audio *v, int set)
3902{
3903 int val = 0;
3904
3905 if (gpio_read() & 0x4000) {
3906 v->mode = VIDEO_SOUND_MONO;
3907 return;
3908 }
3909
3910 if (set) {
3911 if (v->mode & VIDEO_SOUND_LANG2) /* A2 SAP */
3912 val = 0x0080;
3913 if (v->mode & VIDEO_SOUND_STEREO) /* A2 stereo */
3914 val = 0x0880;
3915 if ((v->mode & VIDEO_SOUND_LANG1) ||
3916 (v->mode & VIDEO_SOUND_MONO))
3917 val = 0;
3918 gpio_bits(0x0880, val);
3919 if (bttv_gpio)
3920 bttv_gpio_tracking(btv,"lt9415");
3921 } else {
3922 /* autodetect doesn't work with this card :-( */
3923 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3924 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3925 return;
3926 }
3927}
3928
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003929/* TDA9821 on TerraTV+ Bt848, Bt878 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930static void
3931terratv_audio(struct bttv *btv, struct video_audio *v, int set)
3932{
3933 unsigned int con = 0;
3934
3935 if (set) {
3936 gpio_inout(0x180000,0x180000);
3937 if (v->mode & VIDEO_SOUND_LANG2)
3938 con = 0x080000;
3939 if (v->mode & VIDEO_SOUND_STEREO)
3940 con = 0x180000;
3941 gpio_bits(0x180000, con);
3942 if (bttv_gpio)
3943 bttv_gpio_tracking(btv,"terratv");
3944 } else {
3945 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3946 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3947 }
3948}
3949
3950static void
3951winfast2000_audio(struct bttv *btv, struct video_audio *v, int set)
3952{
3953 unsigned long val = 0;
3954
3955 if (set) {
3956 /*btor (0xc32000, BT848_GPIO_OUT_EN);*/
3957 if (v->mode & VIDEO_SOUND_MONO) /* Mono */
3958 val = 0x420000;
3959 if (v->mode & VIDEO_SOUND_LANG1) /* Mono */
3960 val = 0x420000;
3961 if (v->mode & VIDEO_SOUND_LANG2) /* SAP */
3962 val = 0x410000;
3963 if (v->mode & VIDEO_SOUND_STEREO) /* Stereo */
3964 val = 0x020000;
3965 if (val) {
3966 gpio_bits(0x430000, val);
3967 if (bttv_gpio)
3968 bttv_gpio_tracking(btv,"winfast2000");
3969 }
3970 } else {
3971 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
3972 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
3973 }
3974}
3975
3976/*
3977 * Dariusz Kowalewski <darekk@automex.pl>
3978 * sound control for Prolink PV-BT878P+9B (PixelView PlayTV Pro FM+NICAM
3979 * revision 9B has on-board TDA9874A sound decoder).
3980 *
3981 * Note: There are card variants without tda9874a. Forcing the "stereo sound route"
3982 * will mute this cards.
3983 */
3984static void
3985pvbt878p9b_audio(struct bttv *btv, struct video_audio *v, int set)
3986{
3987 unsigned int val = 0;
3988
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 if (btv->radio_user)
3990 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
3992 if (set) {
3993 if (v->mode & VIDEO_SOUND_MONO) {
3994 val = 0x01;
3995 }
3996 if ((v->mode & (VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2))
3997 || (v->mode & VIDEO_SOUND_STEREO)) {
3998 val = 0x02;
3999 }
4000 if (val) {
4001 gpio_bits(0x03,val);
4002 if (bttv_gpio)
4003 bttv_gpio_tracking(btv,"pvbt878p9b");
4004 }
4005 } else {
4006 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4007 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4008 }
4009}
4010
4011/*
4012 * Dariusz Kowalewski <darekk@automex.pl>
4013 * sound control for FlyVideo 2000S (with tda9874 decoder)
4014 * based on pvbt878p9b_audio() - this is not tested, please fix!!!
4015 */
4016static void
4017fv2000s_audio(struct bttv *btv, struct video_audio *v, int set)
4018{
4019 unsigned int val = 0xffff;
4020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 if (btv->radio_user)
4022 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 if (set) {
4024 if (v->mode & VIDEO_SOUND_MONO) {
4025 val = 0x0000;
4026 }
4027 if ((v->mode & (VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2))
4028 || (v->mode & VIDEO_SOUND_STEREO)) {
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004029 val = 0x1080; /*-dk-???: 0x0880, 0x0080, 0x1800 ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 }
4031 if (val != 0xffff) {
4032 gpio_bits(0x1800, val);
4033 if (bttv_gpio)
4034 bttv_gpio_tracking(btv,"fv2000s");
4035 }
4036 } else {
4037 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4038 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4039 }
4040}
4041
4042/*
4043 * sound control for Canopus WinDVR PCI
4044 * Masaki Suzuki <masaki@btree.org>
4045 */
4046static void
4047windvr_audio(struct bttv *btv, struct video_audio *v, int set)
4048{
4049 unsigned long val = 0;
4050
4051 if (set) {
4052 if (v->mode & VIDEO_SOUND_MONO)
4053 val = 0x040000;
4054 if (v->mode & VIDEO_SOUND_LANG1)
4055 val = 0;
4056 if (v->mode & VIDEO_SOUND_LANG2)
4057 val = 0x100000;
4058 if (v->mode & VIDEO_SOUND_STEREO)
4059 val = 0;
4060 if (val) {
4061 gpio_bits(0x140000, val);
4062 if (bttv_gpio)
4063 bttv_gpio_tracking(btv,"windvr");
4064 }
4065 } else {
4066 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4067 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4068 }
4069}
4070
4071/*
4072 * sound control for AD-TVK503
4073 * Hiroshi Takekawa <sian@big.or.jp>
4074 */
4075static void
4076adtvk503_audio(struct bttv *btv, struct video_audio *v, int set)
4077{
4078 unsigned int con = 0xffffff;
4079
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004080 /* btaor(0x1e0000, ~0x1e0000, BT848_GPIO_OUT_EN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
4082 if (set) {
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004083 /* btor(***, BT848_GPIO_OUT_EN); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 if (v->mode & VIDEO_SOUND_LANG1)
4085 con = 0x00000000;
4086 if (v->mode & VIDEO_SOUND_LANG2)
4087 con = 0x00180000;
4088 if (v->mode & VIDEO_SOUND_STEREO)
4089 con = 0x00000000;
4090 if (v->mode & VIDEO_SOUND_MONO)
4091 con = 0x00060000;
4092 if (con != 0xffffff) {
4093 gpio_bits(0x1e0000,con);
4094 if (bttv_gpio)
4095 bttv_gpio_tracking(btv, "adtvk503");
4096 }
4097 } else {
4098 v->mode = VIDEO_SOUND_MONO | VIDEO_SOUND_STEREO |
4099 VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
4100 }
4101}
4102
4103/* RemoteVision MX (rv605) muxsel helper [Miguel Freitas]
4104 *
4105 * This is needed because rv605 don't use a normal multiplex, but a crosspoint
4106 * switch instead (CD22M3494E). This IC can have multiple active connections
4107 * between Xn (input) and Yn (output) pins. We need to clear any existing
4108 * connection prior to establish a new one, pulsing the STROBE pin.
4109 *
4110 * The board hardwire Y0 (xpoint) to MUX1 and MUXOUT to Yin.
4111 * GPIO pins are wired as:
4112 * GPIO[0:3] - AX[0:3] (xpoint) - P1[0:3] (microcontroler)
4113 * GPIO[4:6] - AY[0:2] (xpoint) - P1[4:6] (microcontroler)
4114 * GPIO[7] - DATA (xpoint) - P1[7] (microcontroler)
4115 * GPIO[8] - - P3[5] (microcontroler)
4116 * GPIO[9] - RESET (xpoint) - P3[6] (microcontroler)
4117 * GPIO[10] - STROBE (xpoint) - P3[7] (microcontroler)
4118 * GPINTR - - P3[4] (microcontroler)
4119 *
4120 * The microcontroler is a 80C32 like. It should be possible to change xpoint
4121 * configuration either directly (as we are doing) or using the microcontroler
4122 * which is also wired to I2C interface. I have no further info on the
4123 * microcontroler features, one would need to disassembly the firmware.
4124 * note: the vendor refused to give any information on this product, all
4125 * that stuff was found using a multimeter! :)
4126 */
4127static void rv605_muxsel(struct bttv *btv, unsigned int input)
4128{
4129 /* reset all conections */
4130 gpio_bits(0x200,0x200);
4131 mdelay(1);
4132 gpio_bits(0x200,0x000);
4133 mdelay(1);
4134
4135 /* create a new conection */
4136 gpio_bits(0x480,0x080);
4137 gpio_bits(0x480,0x480);
4138 mdelay(1);
4139 gpio_bits(0x480,0x080);
4140 mdelay(1);
4141}
4142
4143/* Tibet Systems 'Progress DVR' CS16 muxsel helper [Chris Fanning]
4144 *
4145 * The CS16 (available on eBay cheap) is a PCI board with four Fusion
4146 * 878A chips, a PCI bridge, an Atmel microcontroller, four sync seperator
4147 * chips, ten eight input analog multiplexors, a not chip and a few
4148 * other components.
4149 *
4150 * 16 inputs on a secondary bracket are provided and can be selected
4151 * from each of the four capture chips. Two of the eight input
4152 * multiplexors are used to select from any of the 16 input signals.
4153 *
4154 * Unsupported hardware capabilities:
4155 * . A video output monitor on the secondary bracket can be selected from
4156 * one of the 878A chips.
4157 * . Another passthrough but I haven't spent any time investigating it.
4158 * . Digital I/O (logic level connected to GPIO) is available from an
4159 * onboard header.
4160 *
4161 * The on chip input mux should always be set to 2.
4162 * GPIO[16:19] - Video input selection
4163 * GPIO[0:3] - Video output monitor select (only available from one 878A)
4164 * GPIO[?:?] - Digital I/O.
4165 *
4166 * There is an ATMEL microcontroller with an 8031 core on board. I have not
4167 * determined what function (if any) it provides. With the microcontroller
4168 * and sync seperator chips a guess is that it might have to do with video
4169 * switching and maybe some digital I/O.
4170 */
4171static void tibetCS16_muxsel(struct bttv *btv, unsigned int input)
4172{
4173 /* video mux */
4174 gpio_bits(0x0f0000, input << 16);
4175}
4176
4177static void tibetCS16_init(struct bttv *btv)
4178{
4179 /* enable gpio bits, mask obtained via btSpy */
4180 gpio_inout(0xffffff, 0x0f7fff);
4181 gpio_write(0x0f7fff);
4182}
4183
4184/*
4185 * The following routines for the Kodicom-4400r get a little mind-twisting.
4186 * There is a "master" controller and three "slave" controllers, together
4187 * an analog switch which connects any of 16 cameras to any of the BT87A's.
4188 * The analog switch is controlled by the "master", but the detection order
4189 * of the four BT878A chips is in an order which I just don't understand.
4190 * The "master" is actually the second controller to be detected. The
4191 * logic on the board uses logical numbers for the 4 controlers, but
4192 * those numbers are different from the detection sequence. When working
4193 * with the analog switch, we need to "map" from the detection sequence
4194 * over to the board's logical controller number. This mapping sequence
4195 * is {3, 0, 2, 1}, i.e. the first controller to be detected is logical
4196 * unit 3, the second (which is the master) is logical unit 0, etc.
4197 * We need to maintain the status of the analog switch (which of the 16
4198 * cameras is connected to which of the 4 controllers). Rather than
4199 * add to the bttv structure for this, we use the data reserved for
4200 * the mbox (unused for this card type).
4201 */
4202
4203/*
4204 * First a routine to set the analog switch, which controls which camera
4205 * is routed to which controller. The switch comprises an X-address
4206 * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4207 * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4208 * A data value (gpio bit 7) of '1' enables the switch, and '0' disables
4209 * the switch. A STROBE bit (gpio bit 8) latches the data value into the
4210 * specified address. The idea is to set the address and data, then bring
4211 * STROBE high, and finally bring STROBE back to low.
4212 */
4213static void kodicom4400r_write(struct bttv *btv,
4214 unsigned char xaddr,
4215 unsigned char yaddr,
4216 unsigned char data) {
4217 unsigned int udata;
4218
4219 udata = (data << 7) | ((yaddr&3) << 4) | (xaddr&0xf);
4220 gpio_bits(0x1ff, udata); /* write ADDR and DAT */
4221 gpio_bits(0x1ff, udata | (1 << 8)); /* strobe high */
4222 gpio_bits(0x1ff, udata); /* strobe low */
4223}
4224
4225/*
4226 * Next the mux select. Both the "master" and "slave" 'cards' (controllers)
4227 * use this routine. The routine finds the "master" for the card, maps
4228 * the controller number from the detected position over to the logical
4229 * number, writes the appropriate data to the analog switch, and housekeeps
4230 * the local copy of the switch information. The parameter 'input' is the
4231 * requested camera number (0 - 15).
4232 */
4233static void kodicom4400r_muxsel(struct bttv *btv, unsigned int input)
4234{
4235 char *sw_status;
4236 int xaddr, yaddr;
4237 struct bttv *mctlr;
4238 static unsigned char map[4] = {3, 0, 2, 1};
4239
4240 mctlr = master[btv->c.nr];
4241 if (mctlr == NULL) { /* ignore if master not yet detected */
4242 return;
4243 }
4244 yaddr = (btv->c.nr - mctlr->c.nr + 1) & 3; /* the '&' is for safety */
4245 yaddr = map[yaddr];
4246 sw_status = (char *)(&mctlr->mbox_we);
4247 xaddr = input & 0xf;
4248 /* Check if the controller/camera pair has changed, else ignore */
4249 if (sw_status[yaddr] != xaddr)
4250 {
4251 /* "open" the old switch, "close" the new one, save the new */
4252 kodicom4400r_write(mctlr, sw_status[yaddr], yaddr, 0);
4253 sw_status[yaddr] = xaddr;
4254 kodicom4400r_write(mctlr, xaddr, yaddr, 1);
4255 }
4256}
4257
4258/*
4259 * During initialisation, we need to reset the analog switch. We
4260 * also preset the switch to map the 4 connectors on the card to the
4261 * *user's* (see above description of kodicom4400r_muxsel) channels
4262 * 0 through 3
4263 */
4264static void kodicom4400r_init(struct bttv *btv)
4265{
4266 char *sw_status = (char *)(&btv->mbox_we);
4267 int ix;
4268
4269 gpio_inout(0x0003ff, 0x0003ff);
4270 gpio_write(1 << 9); /* reset MUX */
4271 gpio_write(0);
4272 /* Preset camera 0 to the 4 controllers */
4273 for (ix=0; ix<4; ix++) {
4274 sw_status[ix] = ix;
4275 kodicom4400r_write(btv, ix, ix, 1);
4276 }
4277 /*
4278 * Since this is the "master", we need to set up the
4279 * other three controller chips' pointers to this structure
4280 * for later use in the muxsel routine.
4281 */
4282 if ((btv->c.nr<1) || (btv->c.nr>BTTV_MAX-3))
4283 return;
4284 master[btv->c.nr-1] = btv;
4285 master[btv->c.nr] = btv;
4286 master[btv->c.nr+1] = btv;
4287 master[btv->c.nr+2] = btv;
4288}
4289
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004290/* The Grandtec X-Guard framegrabber card uses two Dual 4-channel
4291 * video multiplexers to provide up to 16 video inputs. These
4292 * multiplexers are controlled by the lower 8 GPIO pins of the
4293 * bt878. The multiplexers probably Pericom PI5V331Q or similar.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004295 * xxx0 is pin xxx of multiplexer U5,
4296 * yyy1 is pin yyy of multiplexer U2
4297 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298#define ENA0 0x01
4299#define ENB0 0x02
4300#define ENA1 0x04
4301#define ENB1 0x08
4302
4303#define IN10 0x10
4304#define IN00 0x20
4305#define IN11 0x40
4306#define IN01 0x80
4307
4308static void xguard_muxsel(struct bttv *btv, unsigned int input)
4309{
4310 static const int masks[] = {
4311 ENB0, ENB0|IN00, ENB0|IN10, ENB0|IN00|IN10,
4312 ENA0, ENA0|IN00, ENA0|IN10, ENA0|IN00|IN10,
4313 ENB1, ENB1|IN01, ENB1|IN11, ENB1|IN01|IN11,
4314 ENA1, ENA1|IN01, ENA1|IN11, ENA1|IN01|IN11,
4315 };
4316 gpio_write(masks[input%16]);
4317}
4318static void picolo_tetra_init(struct bttv *btv)
4319{
4320 /*This is the video input redirection fonctionality : I DID NOT USED IT. */
4321 btwrite (0x08<<16,BT848_GPIO_DATA);/*GPIO[19] [==> 4053 B+C] set to 1 */
4322 btwrite (0x04<<16,BT848_GPIO_DATA);/*GPIO[18] [==> 4053 A] set to 1*/
4323}
4324static void picolo_tetra_muxsel (struct bttv* btv, unsigned int input)
4325{
4326
4327 dprintk (KERN_DEBUG "bttv%d : picolo_tetra_muxsel => input = %d\n",btv->c.nr,input);
4328 /*Just set the right path in the analog multiplexers : channel 1 -> 4 ==> Analog Mux ==> MUX0*/
4329 /*GPIO[20]&GPIO[21] used to choose the right input*/
4330 btwrite (input<<20,BT848_GPIO_DATA);
4331
4332}
4333
4334/*
4335 * ivc120_muxsel [Added by Alan Garfield <alan@fromorbit.com>]
4336 *
4337 * The IVC120G security card has 4 i2c controlled TDA8540 matrix
4338 * swichers to provide 16 channels to MUX0. The TDA8540's have
4339 * 4 indepedant outputs and as such the IVC120G also has the
4340 * optional "Monitor Out" bus. This allows the card to be looking
4341 * at one input while the monitor is looking at another.
4342 *
4343 * Since I've couldn't be bothered figuring out how to add an
4344 * independant muxsel for the monitor bus, I've just set it to
4345 * whatever the card is looking at.
4346 *
4347 * OUT0 of the TDA8540's is connected to MUX0 (0x03)
4348 * OUT1 of the TDA8540's is connected to "Monitor Out" (0x0C)
4349 *
4350 * TDA8540_ALT3 IN0-3 = Channel 13 - 16 (0x03)
4351 * TDA8540_ALT4 IN0-3 = Channel 1 - 4 (0x03)
4352 * TDA8540_ALT5 IN0-3 = Channel 5 - 8 (0x03)
4353 * TDA8540_ALT6 IN0-3 = Channel 9 - 12 (0x03)
4354 *
4355 */
4356
4357/* All 7 possible sub-ids for the TDA8540 Matrix Switcher */
4358#define I2C_TDA8540 0x90
4359#define I2C_TDA8540_ALT1 0x92
4360#define I2C_TDA8540_ALT2 0x94
4361#define I2C_TDA8540_ALT3 0x96
4362#define I2C_TDA8540_ALT4 0x98
4363#define I2C_TDA8540_ALT5 0x9a
4364#define I2C_TDA8540_ALT6 0x9c
4365
4366static void ivc120_muxsel(struct bttv *btv, unsigned int input)
4367{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004368 /* Simple maths */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 int key = input % 4;
4370 int matrix = input / 4;
4371
4372 dprintk("bttv%d: ivc120_muxsel: Input - %02d | TDA - %02d | In - %02d\n",
4373 btv->c.nr, input, matrix, key);
4374
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004375 /* Handles the input selection on the TDA8540's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 bttv_I2CWrite(btv, I2C_TDA8540_ALT3, 0x00,
4377 ((matrix == 3) ? (key | key << 2) : 0x00), 1);
4378 bttv_I2CWrite(btv, I2C_TDA8540_ALT4, 0x00,
4379 ((matrix == 0) ? (key | key << 2) : 0x00), 1);
4380 bttv_I2CWrite(btv, I2C_TDA8540_ALT5, 0x00,
4381 ((matrix == 1) ? (key | key << 2) : 0x00), 1);
4382 bttv_I2CWrite(btv, I2C_TDA8540_ALT6, 0x00,
4383 ((matrix == 2) ? (key | key << 2) : 0x00), 1);
4384
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004385 /* Handles the output enables on the TDA8540's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 bttv_I2CWrite(btv, I2C_TDA8540_ALT3, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004387 ((matrix == 3) ? 0x03 : 0x00), 1); /* 13 - 16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 bttv_I2CWrite(btv, I2C_TDA8540_ALT4, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004389 ((matrix == 0) ? 0x03 : 0x00), 1); /* 1-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 bttv_I2CWrite(btv, I2C_TDA8540_ALT5, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004391 ((matrix == 1) ? 0x03 : 0x00), 1); /* 5-8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 bttv_I2CWrite(btv, I2C_TDA8540_ALT6, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004393 ((matrix == 2) ? 0x03 : 0x00), 1); /* 9-12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004395 /* Selects MUX0 for input on the 878 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 btaor((0)<<5, ~(3<<5), BT848_IFORM);
4397}
4398
4399
4400/* PXC200 muxsel helper
4401 * luke@syseng.anu.edu.au
4402 * another transplant
4403 * from Alessandro Rubini (rubini@linux.it)
4404 *
4405 * There are 4 kinds of cards:
4406 * PXC200L which is bt848
4407 * PXC200F which is bt848 with PIC controlling mux
4408 * PXC200AL which is bt878
4409 * PXC200AF which is bt878 with PIC controlling mux
4410 */
4411#define PX_CFG_PXC200F 0x01
4412#define PX_FLAG_PXC200A 0x00001000 /* a pxc200A is bt-878 based */
4413#define PX_I2C_PIC 0x0f
4414#define PX_PXC200A_CARDID 0x200a1295
4415#define PX_I2C_CMD_CFG 0x00
4416
4417static void PXC200_muxsel(struct bttv *btv, unsigned int input)
4418{
4419 int rc;
4420 long mux;
4421 int bitmask;
4422 unsigned char buf[2];
4423
4424 /* Read PIC config to determine if this is a PXC200F */
4425 /* PX_I2C_CMD_CFG*/
4426 buf[0]=0;
4427 buf[1]=0;
4428 rc=bttv_I2CWrite(btv,(PX_I2C_PIC<<1),buf[0],buf[1],1);
4429 if (rc) {
4430 printk(KERN_DEBUG "bttv%d: PXC200_muxsel: pic cfg write failed:%d\n", btv->c.nr,rc);
4431 /* not PXC ? do nothing */
4432 return;
4433 }
4434
4435 rc=bttv_I2CRead(btv,(PX_I2C_PIC<<1),NULL);
4436 if (!(rc & PX_CFG_PXC200F)) {
4437 printk(KERN_DEBUG "bttv%d: PXC200_muxsel: not PXC200F rc:%d \n", btv->c.nr,rc);
4438 return;
4439 }
4440
4441
4442 /* The multiplexer in the 200F is handled by the GPIO port */
4443 /* get correct mapping between inputs */
4444 /* mux = bttv_tvcards[btv->type].muxsel[input] & 3; */
4445 /* ** not needed!? */
4446 mux = input;
4447
4448 /* make sure output pins are enabled */
4449 /* bitmask=0x30f; */
4450 bitmask=0x302;
4451 /* check whether we have a PXC200A */
4452 if (btv->cardid == PX_PXC200A_CARDID) {
4453 bitmask ^= 0x180; /* use 7 and 9, not 8 and 9 */
4454 bitmask |= 7<<4; /* the DAC */
4455 }
4456 btwrite(bitmask, BT848_GPIO_OUT_EN);
4457
4458 bitmask = btread(BT848_GPIO_DATA);
4459 if (btv->cardid == PX_PXC200A_CARDID)
4460 bitmask = (bitmask & ~0x280) | ((mux & 2) << 8) | ((mux & 1) << 7);
4461 else /* older device */
4462 bitmask = (bitmask & ~0x300) | ((mux & 3) << 8);
4463 btwrite(bitmask,BT848_GPIO_DATA);
4464
4465 /*
4466 * Was "to be safe, set the bt848 to input 0"
4467 * Actually, since it's ok at load time, better not messing
4468 * with these bits (on PXC200AF you need to set mux 2 here)
4469 *
4470 * needed because bttv-driver sets mux before calling this function
4471 */
4472 if (btv->cardid == PX_PXC200A_CARDID)
4473 btaor(2<<5, ~BT848_IFORM_MUXSEL, BT848_IFORM);
4474 else /* older device */
4475 btand(~BT848_IFORM_MUXSEL,BT848_IFORM);
4476
4477 printk(KERN_DEBUG "bttv%d: setting input channel to:%d\n", btv->c.nr,(int)mux);
4478}
4479
4480/* ----------------------------------------------------------------------- */
4481/* motherboard chipset specific stuff */
4482
4483void __devinit bttv_check_chipset(void)
4484{
4485 int pcipci_fail = 0;
4486 struct pci_dev *dev = NULL;
4487
4488 if (pci_pci_problems & PCIPCI_FAIL)
4489 pcipci_fail = 1;
4490 if (pci_pci_problems & (PCIPCI_TRITON|PCIPCI_NATOMA|PCIPCI_VIAETBF))
4491 triton1 = 1;
4492 if (pci_pci_problems & PCIPCI_VSFX)
4493 vsfx = 1;
4494#ifdef PCIPCI_ALIMAGIK
4495 if (pci_pci_problems & PCIPCI_ALIMAGIK)
4496 latency = 0x0A;
4497#endif
4498
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
4500 /* print warnings about any quirks found */
4501 if (triton1)
4502 printk(KERN_INFO "bttv: Host bridge needs ETBF enabled.\n");
4503 if (vsfx)
4504 printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n");
4505 if (pcipci_fail) {
4506 printk(KERN_WARNING "bttv: BT848 and your chipset may not work together.\n");
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004507 if (!no_overlay) {
4508 printk(KERN_WARNING "bttv: overlay will be disabled.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 no_overlay = 1;
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004510 } else {
4511 printk(KERN_WARNING "bttv: overlay forced. Use this option at your own risk.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 }
4513 }
4514 if (UNSET != latency)
4515 printk(KERN_INFO "bttv: pci latency fixup [%d]\n",latency);
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -07004516
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 while ((dev = pci_find_device(PCI_VENDOR_ID_INTEL,
4518 PCI_DEVICE_ID_INTEL_82441, dev))) {
4519 unsigned char b;
4520 pci_read_config_byte(dev, 0x53, &b);
4521 if (bttv_debug)
4522 printk(KERN_INFO "bttv: Host bridge: 82441FX Natoma, "
4523 "bufcon=0x%02x\n",b);
4524 }
4525}
4526
4527int __devinit bttv_handle_chipset(struct bttv *btv)
4528{
4529 unsigned char command;
4530
4531 if (!triton1 && !vsfx && UNSET == latency)
4532 return 0;
4533
4534 if (bttv_verbose) {
4535 if (triton1)
4536 printk(KERN_INFO "bttv%d: enabling ETBF (430FX/VP3 compatibilty)\n",btv->c.nr);
4537 if (vsfx && btv->id >= 878)
4538 printk(KERN_INFO "bttv%d: enabling VSFX\n",btv->c.nr);
4539 if (UNSET != latency)
4540 printk(KERN_INFO "bttv%d: setting pci timer to %d\n",
4541 btv->c.nr,latency);
4542 }
4543
4544 if (btv->id < 878) {
4545 /* bt848 (mis)uses a bit in the irq mask for etbf */
4546 if (triton1)
4547 btv->triton1 = BT848_INT_ETBF;
4548 } else {
4549 /* bt878 has a bit in the pci config space for it */
4550 pci_read_config_byte(btv->c.pci, BT878_DEVCTRL, &command);
4551 if (triton1)
4552 command |= BT878_EN_TBFX;
4553 if (vsfx)
4554 command |= BT878_EN_VSFX;
4555 pci_write_config_byte(btv->c.pci, BT878_DEVCTRL, command);
4556 }
4557 if (UNSET != latency)
4558 pci_write_config_byte(btv->c.pci, PCI_LATENCY_TIMER, latency);
4559 return 0;
4560}
4561
4562
4563/*
4564 * Local variables:
4565 * c-basic-offset: 8
4566 * End:
4567 */