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