blob: 8629b77666f60feb241fdedb2b923fcdb535bf27 [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)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08009 & Marcus Metzler (mocm@thp.uni-koeln.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 (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
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/delay.h>
29#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kmod.h>
31#include <linux/init.h>
32#include <linux/pci.h>
33#include <linux/vmalloc.h>
34#include <linux/firmware.h>
Trent Piephocf784d52007-07-21 21:26:40 -030035#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Al Viroc1c36f32008-05-21 00:32:21 -030037#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/io.h>
39
40#include "bttvp.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020041#include <media/v4l2-common.h>
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -030042#include <media/tvaudio.h>
Mauro Carvalho Chehabc2806d02007-10-26 16:54:54 -030043#include "bttv-audio-hook.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/* fwd decl */
46static void boot_msp34xx(struct bttv *btv, int pin);
47static void boot_bt832(struct bttv *btv);
48static void hauppauge_eeprom(struct bttv *btv);
49static void avermedia_eeprom(struct bttv *btv);
Trent Piephocf784d52007-07-21 21:26:40 -030050static void osprey_eeprom(struct bttv *btv, const u8 ee[256]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static void modtec_eeprom(struct bttv *btv);
52static void init_PXC200(struct bttv *btv);
Peter Skipworth93b43f12005-06-23 22:04:45 -070053static void init_RTV24(struct bttv *btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static void rv605_muxsel(struct bttv *btv, unsigned int input);
56static void eagle_muxsel(struct bttv *btv, unsigned int input);
57static void xguard_muxsel(struct bttv *btv, unsigned int input);
58static void ivc120_muxsel(struct bttv *btv, unsigned int input);
59static void gvc1100_muxsel(struct bttv *btv, unsigned int input);
60
61static void PXC200_muxsel(struct bttv *btv, unsigned int input);
62
63static void picolo_tetra_muxsel(struct bttv *btv, unsigned int input);
64static void picolo_tetra_init(struct bttv *btv);
65
66static void tibetCS16_muxsel(struct bttv *btv, unsigned int input);
67static void tibetCS16_init(struct bttv *btv);
68
69static void kodicom4400r_muxsel(struct bttv *btv, unsigned int input);
70static void kodicom4400r_init(struct bttv *btv);
71
72static void sigmaSLC_muxsel(struct bttv *btv, unsigned int input);
73static void sigmaSQ_muxsel(struct bttv *btv, unsigned int input);
74
Ernesto Hernández-Novich97275ac2008-04-22 14:45:58 -030075static void geovision_muxsel(struct bttv *btv, unsigned int input);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static int terratec_active_radio_upgrade(struct bttv *btv);
78static int tea5757_read(struct bttv *btv);
79static int tea5757_write(struct bttv *btv, int value);
80static void identify_by_eeprom(struct bttv *btv,
81 unsigned char eeprom_data[256]);
82static int __devinit pvr_boot(struct bttv *btv);
83
84/* config variables */
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020085static unsigned int triton1;
86static unsigned int vsfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static unsigned int latency = UNSET;
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -070088int no_overlay=-1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static unsigned int card[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
91static unsigned int pll[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
92static unsigned int tuner[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
93static unsigned int svhs[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
94static unsigned int remote[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = UNSET };
95static struct bttv *master[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = NULL };
96#ifdef MODULE
97static unsigned int autoload = 1;
98#else
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020099static unsigned int autoload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#endif
101static unsigned int gpiomask = UNSET;
102static unsigned int audioall = UNSET;
103static unsigned int audiomux[5] = { [ 0 ... 4 ] = UNSET };
104
105/* insmod options */
106module_param(triton1, int, 0444);
107module_param(vsfx, int, 0444);
108module_param(no_overlay, int, 0444);
109module_param(latency, int, 0444);
110module_param(gpiomask, int, 0444);
111module_param(audioall, int, 0444);
112module_param(autoload, int, 0444);
113
114module_param_array(card, int, NULL, 0444);
115module_param_array(pll, int, NULL, 0444);
116module_param_array(tuner, int, NULL, 0444);
117module_param_array(svhs, int, NULL, 0444);
118module_param_array(remote, int, NULL, 0444);
119module_param_array(audiomux, int, NULL, 0444);
120
121MODULE_PARM_DESC(triton1,"set ETBF pci config bit "
122 "[enable bug compatibility for triton1 + others]");
123MODULE_PARM_DESC(vsfx,"set VSFX pci config bit "
124 "[yet another chipset flaw workaround]");
125MODULE_PARM_DESC(latency,"pci latency timer");
126MODULE_PARM_DESC(card,"specify TV/grabber card model, see CARDLIST file for a list");
127MODULE_PARM_DESC(pll,"specify installed crystal (0=none, 28=28 MHz, 35=35 MHz)");
128MODULE_PARM_DESC(tuner,"specify installed tuner type");
129MODULE_PARM_DESC(autoload,"automatically load i2c modules like tuner.o, default is 1 (yes)");
Mauro Carvalho Chehab9050d942006-03-10 16:46:50 -0300130MODULE_PARM_DESC(no_overlay,"allow override overlay default (0 disables, 1 enables)"
131 " [some VIA/SIS chipsets are known to have problem with overlay]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133/* ----------------------------------------------------------------------- */
134/* list of card IDs for bt878+ cards */
135
136static struct CARD {
137 unsigned id;
138 int cardnr;
139 char *name;
140} cards[] __devinitdata = {
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800141 { 0x13eb0070, BTTV_BOARD_HAUPPAUGE878, "Hauppauge WinTV" },
142 { 0x39000070, BTTV_BOARD_HAUPPAUGE878, "Hauppauge WinTV-D" },
143 { 0x45000070, BTTV_BOARD_HAUPPAUGEPVR, "Hauppauge WinTV/PVR" },
144 { 0xff000070, BTTV_BOARD_OSPREY1x0, "Osprey-100" },
145 { 0xff010070, BTTV_BOARD_OSPREY2x0_SVID,"Osprey-200" },
146 { 0xff020070, BTTV_BOARD_OSPREY500, "Osprey-500" },
147 { 0xff030070, BTTV_BOARD_OSPREY2000, "Osprey-2000" },
148 { 0xff040070, BTTV_BOARD_OSPREY540, "Osprey-540" },
Kenth Anderssonf718e6e2005-11-08 21:37:02 -0800149 { 0xff070070, BTTV_BOARD_OSPREY440, "Osprey-440" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800151 { 0x00011002, BTTV_BOARD_ATI_TVWONDER, "ATI TV Wonder" },
152 { 0x00031002, BTTV_BOARD_ATI_TVWONDERVE,"ATI TV Wonder/VE" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800154 { 0x6606107d, BTTV_BOARD_WINFAST2000, "Leadtek WinFast TV 2000" },
155 { 0x6607107d, BTTV_BOARD_WINFASTVC100, "Leadtek WinFast VC 100" },
156 { 0x6609107d, BTTV_BOARD_WINFAST2000, "Leadtek TV 2000 XP" },
157 { 0x263610b4, BTTV_BOARD_STB2, "STB TV PCI FM, Gateway P/N 6000704" },
158 { 0x264510b4, BTTV_BOARD_STB2, "STB TV PCI FM, Gateway P/N 6000704" },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800159 { 0x402010fc, BTTV_BOARD_GVBCTV3PCI, "I-O Data Co. GV-BCTV3/PCI" },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800160 { 0x405010fc, BTTV_BOARD_GVBCTV4PCI, "I-O Data Co. GV-BCTV4/PCI" },
161 { 0x407010fc, BTTV_BOARD_GVBCTV5PCI, "I-O Data Co. GV-BCTV5/PCI" },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800162 { 0xd01810fc, BTTV_BOARD_GVBCTV5PCI, "I-O Data Co. GV-BCTV5/PCI" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800164 { 0x001211bd, BTTV_BOARD_PINNACLE, "Pinnacle PCTV" },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700165 /* some cards ship with byteswapped IDs ... */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800166 { 0x1200bd11, BTTV_BOARD_PINNACLE, "Pinnacle PCTV [bswap]" },
167 { 0xff00bd11, BTTV_BOARD_PINNACLE, "Pinnacle PCTV [bswap]" },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700168 /* this seems to happen as well ... */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800169 { 0xff1211bd, BTTV_BOARD_PINNACLE, "Pinnacle PCTV" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Wade Berrier434b2522007-06-25 13:02:16 -0300171 { 0x3000121a, BTTV_BOARD_VOODOOTV_200, "3Dfx VoodooTV 200" },
172 { 0x263710b4, BTTV_BOARD_VOODOOTV_FM, "3Dfx VoodooTV FM" },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800173 { 0x3060121a, BTTV_BOARD_STB2, "3Dfx VoodooTV 100/ STB OEM" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800175 { 0x3000144f, BTTV_BOARD_MAGICTVIEW063, "(Askey Magic/others) TView99 CPH06x" },
176 { 0xa005144f, BTTV_BOARD_MAGICTVIEW063, "CPH06X TView99-Card" },
177 { 0x3002144f, BTTV_BOARD_MAGICTVIEW061, "(Askey Magic/others) TView99 CPH05x" },
178 { 0x3005144f, BTTV_BOARD_MAGICTVIEW061, "(Askey Magic/others) TView99 CPH061/06L (T1/LC)" },
179 { 0x5000144f, BTTV_BOARD_MAGICTVIEW061, "Askey CPH050" },
180 { 0x300014ff, BTTV_BOARD_MAGICTVIEW061, "TView 99 (CPH061)" },
181 { 0x300214ff, BTTV_BOARD_PHOEBE_TVMAS, "Phoebe TV Master (CPH060)" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800183 { 0x00011461, BTTV_BOARD_AVPHONE98, "AVerMedia TVPhone98" },
184 { 0x00021461, BTTV_BOARD_AVERMEDIA98, "AVermedia TVCapture 98" },
185 { 0x00031461, BTTV_BOARD_AVPHONE98, "AVerMedia TVPhone98" },
186 { 0x00041461, BTTV_BOARD_AVERMEDIA98, "AVerMedia TVCapture 98" },
187 { 0x03001461, BTTV_BOARD_AVERMEDIA98, "VDOMATE TV TUNER CARD" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800189 { 0x1117153b, BTTV_BOARD_TERRATVALUE, "Terratec TValue (Philips PAL B/G)" },
190 { 0x1118153b, BTTV_BOARD_TERRATVALUE, "Terratec TValue (Temic PAL B/G)" },
191 { 0x1119153b, BTTV_BOARD_TERRATVALUE, "Terratec TValue (Philips PAL I)" },
192 { 0x111a153b, BTTV_BOARD_TERRATVALUE, "Terratec TValue (Temic PAL I)" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800194 { 0x1123153b, BTTV_BOARD_TERRATVRADIO, "Terratec TV Radio+" },
195 { 0x1127153b, BTTV_BOARD_TERRATV, "Terratec TV+ (V1.05)" },
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700196 /* clashes with FlyVideo
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800197 *{ 0x18521852, BTTV_BOARD_TERRATV, "Terratec TV+ (V1.10)" }, */
198 { 0x1134153b, BTTV_BOARD_TERRATVALUE, "Terratec TValue (LR102)" },
199 { 0x1135153b, BTTV_BOARD_TERRATVALUER, "Terratec TValue Radio" }, /* LR102 */
200 { 0x5018153b, BTTV_BOARD_TERRATVALUE, "Terratec TValue" }, /* ?? */
201 { 0xff3b153b, BTTV_BOARD_TERRATVALUER, "Terratec TValue Radio" }, /* ?? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800203 { 0x400015b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV" },
204 { 0x400a15b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV" },
205 { 0x400d15b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
206 { 0x401015b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
207 { 0x401615b0, BTTV_BOARD_ZOLTRIX_GENIE, "Zoltrix Genie TV / Radio" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800209 { 0x1430aa00, BTTV_BOARD_PV143, "Provideo PV143A" },
210 { 0x1431aa00, BTTV_BOARD_PV143, "Provideo PV143B" },
211 { 0x1432aa00, BTTV_BOARD_PV143, "Provideo PV143C" },
212 { 0x1433aa00, BTTV_BOARD_PV143, "Provideo PV143D" },
213 { 0x1433aa03, BTTV_BOARD_PV143, "Security Eyes" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800215 { 0x1460aa00, BTTV_BOARD_PV150, "Provideo PV150A-1" },
216 { 0x1461aa01, BTTV_BOARD_PV150, "Provideo PV150A-2" },
217 { 0x1462aa02, BTTV_BOARD_PV150, "Provideo PV150A-3" },
218 { 0x1463aa03, BTTV_BOARD_PV150, "Provideo PV150A-4" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800220 { 0x1464aa04, BTTV_BOARD_PV150, "Provideo PV150B-1" },
221 { 0x1465aa05, BTTV_BOARD_PV150, "Provideo PV150B-2" },
222 { 0x1466aa06, BTTV_BOARD_PV150, "Provideo PV150B-3" },
223 { 0x1467aa07, BTTV_BOARD_PV150, "Provideo PV150B-4" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800225 { 0xa132ff00, BTTV_BOARD_IVC100, "IVC-100" },
226 { 0xa1550000, BTTV_BOARD_IVC200, "IVC-200" },
227 { 0xa1550001, BTTV_BOARD_IVC200, "IVC-200" },
228 { 0xa1550002, BTTV_BOARD_IVC200, "IVC-200" },
229 { 0xa1550003, BTTV_BOARD_IVC200, "IVC-200" },
230 { 0xa1550100, BTTV_BOARD_IVC200, "IVC-200G" },
231 { 0xa1550101, BTTV_BOARD_IVC200, "IVC-200G" },
232 { 0xa1550102, BTTV_BOARD_IVC200, "IVC-200G" },
233 { 0xa1550103, BTTV_BOARD_IVC200, "IVC-200G" },
234 { 0xa182ff00, BTTV_BOARD_IVC120, "IVC-120G" },
235 { 0xa182ff01, BTTV_BOARD_IVC120, "IVC-120G" },
236 { 0xa182ff02, BTTV_BOARD_IVC120, "IVC-120G" },
237 { 0xa182ff03, BTTV_BOARD_IVC120, "IVC-120G" },
238 { 0xa182ff04, BTTV_BOARD_IVC120, "IVC-120G" },
239 { 0xa182ff05, BTTV_BOARD_IVC120, "IVC-120G" },
240 { 0xa182ff06, BTTV_BOARD_IVC120, "IVC-120G" },
241 { 0xa182ff07, BTTV_BOARD_IVC120, "IVC-120G" },
242 { 0xa182ff08, BTTV_BOARD_IVC120, "IVC-120G" },
243 { 0xa182ff09, BTTV_BOARD_IVC120, "IVC-120G" },
244 { 0xa182ff0a, BTTV_BOARD_IVC120, "IVC-120G" },
245 { 0xa182ff0b, BTTV_BOARD_IVC120, "IVC-120G" },
246 { 0xa182ff0c, BTTV_BOARD_IVC120, "IVC-120G" },
247 { 0xa182ff0d, BTTV_BOARD_IVC120, "IVC-120G" },
248 { 0xa182ff0e, BTTV_BOARD_IVC120, "IVC-120G" },
249 { 0xa182ff0f, BTTV_BOARD_IVC120, "IVC-120G" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800251 { 0x41424344, BTTV_BOARD_GRANDTEC, "GrandTec Multi Capture" },
252 { 0x01020304, BTTV_BOARD_XGUARD, "Grandtec Grand X-Guard" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800254 { 0x18501851, BTTV_BOARD_CHRONOS_VS2, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
255 { 0xa0501851, BTTV_BOARD_CHRONOS_VS2, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
256 { 0x18511851, BTTV_BOARD_FLYVIDEO98EZ, "FlyVideo 98EZ (LR51)/ CyberMail AV" },
257 { 0x18521852, BTTV_BOARD_TYPHOON_TVIEW, "FlyVideo 98FM (LR50)/ Typhoon TView TV/FM Tuner" },
258 { 0x41a0a051, BTTV_BOARD_FLYVIDEO_98FM, "Lifeview FlyVideo 98 LR50 Rev Q" },
259 { 0x18501f7f, BTTV_BOARD_FLYVIDEO_98, "Lifeview Flyvideo 98" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Trent Piepho657de3c2006-06-20 00:30:57 -0300261 { 0x010115cb, BTTV_BOARD_GMV1, "AG GMV1" },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800262 { 0x010114c7, BTTV_BOARD_MODTEC_205, "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800264 { 0x10b42636, BTTV_BOARD_HAUPPAUGE878, "STB ???" },
265 { 0x217d6606, BTTV_BOARD_WINFAST2000, "Leadtek WinFast TV 2000" },
266 { 0xfff6f6ff, BTTV_BOARD_WINFAST2000, "Leadtek WinFast TV 2000" },
267 { 0x03116000, BTTV_BOARD_SENSORAY311, "Sensoray 311" },
268 { 0x00790e11, BTTV_BOARD_WINDVR, "Canopus WinDVR PCI" },
269 { 0xa0fca1a0, BTTV_BOARD_ZOLTRIX, "Face to Face Tvmax" },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800270 { 0x82b2aa6a, BTTV_BOARD_SIMUS_GVC1100, "SIMUS GVC1100" },
271 { 0x146caa0c, BTTV_BOARD_PV951, "ituner spectra8" },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800272 { 0x200a1295, BTTV_BOARD_PXC200, "ImageNation PXC200A" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800274 { 0x40111554, BTTV_BOARD_PV_BT878P_9B, "Prolink Pixelview PV-BT" },
275 { 0x17de0a01, BTTV_BOARD_KWORLD, "Mecer TV/FM/Video Tuner" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800277 { 0x01051805, BTTV_BOARD_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #1" },
278 { 0x01061805, BTTV_BOARD_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #2" },
279 { 0x01071805, BTTV_BOARD_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #3" },
280 { 0x01081805, BTTV_BOARD_PICOLO_TETRA_CHIP, "Picolo Tetra Chip #4" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800282 { 0x15409511, BTTV_BOARD_ACORP_Y878F, "Acorp Y878F" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Scott Alfter1ebba672007-04-02 14:22:39 -0300284 { 0x53534149, BTTV_BOARD_SSAI_SECURITY, "SSAI Security Video Interface" },
285 { 0x5353414a, BTTV_BOARD_SSAI_ULTRASOUND, "SSAI Ultrasound Video Interface" },
286
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700287 /* likely broken, vendor id doesn't match the other magic views ...
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800288 * { 0xa0fca04f, BTTV_BOARD_MAGICTVIEW063, "Guillemot Maxi TV Video 3" }, */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700289
Steven Tothcd1257d2006-01-09 15:25:01 -0200290 /* Duplicate PCI ID, reconfigure for this board during the eeprom read.
291 * { 0x13eb0070, BTTV_BOARD_HAUPPAUGE_IMPACTVCB, "Hauppauge ImpactVCB" }, */
292
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700293 /* DVB cards (using pci function .1 for mpeg data xfer) */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800294 { 0x001c11bd, BTTV_BOARD_PINNACLESAT, "Pinnacle PCTV Sat" },
Michael Krufky2af35572006-01-23 17:11:06 -0200295 { 0x01010071, BTTV_BOARD_NEBULA_DIGITV, "Nebula Electronics DigiTV" },
296 { 0x20007063, BTTV_BOARD_PC_HDTV, "pcHDTV HD-2000 TV"},
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800297 { 0x002611bd, BTTV_BOARD_TWINHAN_DST, "Pinnacle PCTV SAT CI" },
298 { 0x00011822, BTTV_BOARD_TWINHAN_DST, "Twinhan VisionPlus DVB" },
299 { 0xfc00270f, BTTV_BOARD_TWINHAN_DST, "ChainTech digitop DST-1000 DVB-S" },
300 { 0x07711461, BTTV_BOARD_AVDVBT_771, "AVermedia AverTV DVB-T 771" },
Michael Krufky2af35572006-01-23 17:11:06 -0200301 { 0x07611461, BTTV_BOARD_AVDVBT_761, "AverMedia AverTV DVB-T 761" },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800302 { 0xdb1018ac, BTTV_BOARD_DVICO_DVBT_LITE, "DViCO FusionHDTV DVB-T Lite" },
Michael Krufky19790db2007-01-07 22:12:22 -0300303 { 0xdb1118ac, BTTV_BOARD_DVICO_DVBT_LITE, "Ultraview DVB-T Lite" },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800304 { 0xd50018ac, BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE, "DViCO FusionHDTV 5 Lite" },
Cameron Hutchinson442d15d2006-06-21 18:45:31 -0300305 { 0x00261822, BTTV_BOARD_TWINHAN_DST, "DNTV Live! Mini "},
Michael Krufky27cb7862007-06-28 12:19:20 -0300306 { 0xd200dbc0, BTTV_BOARD_DVICO_FUSIONHDTV_2, "DViCO FusionHDTV 2" },
Ernesto Hernández-Novich97275ac2008-04-22 14:45:58 -0300307 { 0x763c008a, BTTV_BOARD_GEOVISION_GV600, "GeoVision GV-600" },
Mauro Carvalho Chehab7d341a62008-08-05 10:14:13 -0300308 { 0x18011000, BTTV_BOARD_ENLTV_FM_2, "Encore ENL TV-FM-2" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 { 0, -1, NULL }
310};
311
312/* ----------------------------------------------------------------------- */
313/* array with description for bt848 / bt878 tv/grabber cards */
314
315struct tvcard bttv_tvcards[] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800316 /* ---- card 0x00 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800317 [BTTV_BOARD_UNKNOWN] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800318 .name = " *** UNKNOWN/GENERIC *** ",
319 .video_inputs = 4,
320 .audio_inputs = 1,
321 .tuner = 0,
322 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -0200323 .muxsel = { 2, 3, 1, 0 },
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300324 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800325 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800326 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800327 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800328 [BTTV_BOARD_MIRO] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800329 .name = "MIRO PCTV",
330 .video_inputs = 4,
331 .audio_inputs = 1,
332 .tuner = 0,
333 .svhs = 2,
334 .gpiomask = 15,
Michael Krufkybc286362006-01-11 19:40:17 -0200335 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300336 .gpiomux = { 2, 0, 0, 0 },
337 .gpiomute = 10,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800338 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300339 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800340 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800341 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800342 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800343 [BTTV_BOARD_HAUPPAUGE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800344 .name = "Hauppauge (bt848)",
345 .video_inputs = 4,
346 .audio_inputs = 1,
347 .tuner = 0,
348 .svhs = 2,
349 .gpiomask = 7,
Michael Krufkybc286362006-01-11 19:40:17 -0200350 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300351 .gpiomux = { 0, 1, 2, 3 },
352 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800353 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300354 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800355 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800356 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800357 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800358 [BTTV_BOARD_STB] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800359 .name = "STB, Gateway P/N 6000699 (bt848)",
360 .video_inputs = 3,
361 .audio_inputs = 1,
362 .tuner = 0,
363 .svhs = 2,
364 .gpiomask = 7,
Michael Krufkybc286362006-01-11 19:40:17 -0200365 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300366 .gpiomux = { 4, 0, 2, 3 },
367 .gpiomute = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800368 .no_msp34xx = 1,
369 .needs_tvaudio = 1,
370 .tuner_type = TUNER_PHILIPS_NTSC,
371 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800372 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800373 .pll = PLL_28,
374 .has_radio = 1,
375 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800377 /* ---- card 0x04 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800378 [BTTV_BOARD_INTEL] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800379 .name = "Intel Create and Share PCI/ Smart Video Recorder III",
380 .video_inputs = 4,
381 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300382 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800383 .svhs = 2,
384 .gpiomask = 0,
Michael Krufkybc286362006-01-11 19:40:17 -0200385 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300386 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800387 .needs_tvaudio = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300388 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800389 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800390 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800391 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800392 [BTTV_BOARD_DIAMOND] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800393 .name = "Diamond DTV2000",
394 .video_inputs = 4,
395 .audio_inputs = 1,
396 .tuner = 0,
397 .svhs = 2,
398 .gpiomask = 3,
Michael Krufkybc286362006-01-11 19:40:17 -0200399 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300400 .gpiomux = { 0, 1, 0, 1 },
401 .gpiomute = 3,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800402 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300403 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800404 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800405 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800406 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800407 [BTTV_BOARD_AVERMEDIA] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800408 .name = "AVerMedia TVPhone",
409 .video_inputs = 3,
410 .audio_inputs = 1,
411 .tuner = 0,
412 .svhs = 3,
Michael Krufkybc286362006-01-11 19:40:17 -0200413 .muxsel = { 2, 3, 1, 1 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800414 .gpiomask = 0x0f,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300415 .gpiomux = { 0x0c, 0x04, 0x08, 0x04 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800416 /* 0x04 for some cards ?? */
417 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300418 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800419 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800420 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -0300421 .audio_mode_gpio= avermedia_tvphone_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800422 .has_remote = 1,
423 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800424 [BTTV_BOARD_MATRIX_VISION] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800425 .name = "MATRIX-Vision MV-Delta",
426 .video_inputs = 5,
427 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300428 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800429 .svhs = 3,
430 .gpiomask = 0,
Michael Krufkybc286362006-01-11 19:40:17 -0200431 .muxsel = { 2, 3, 1, 0, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300432 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800433 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300434 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800435 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800436 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800437 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800439 /* ---- card 0x08 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800440 [BTTV_BOARD_FLYVIDEO] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800441 .name = "Lifeview FlyVideo II (Bt848) LR26 / MAXI TV Video PCI2 LR26",
442 .video_inputs = 4,
443 .audio_inputs = 1,
444 .tuner = 0,
445 .svhs = 2,
446 .gpiomask = 0xc00,
Michael Krufkybc286362006-01-11 19:40:17 -0200447 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300448 .gpiomux = { 0, 0xc00, 0x800, 0x400 },
449 .gpiomute = 0xc00,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800450 .needs_tvaudio = 1,
451 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300452 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800453 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800454 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800455 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800456 [BTTV_BOARD_TURBOTV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800457 .name = "IMS/IXmicro TurboTV",
458 .video_inputs = 3,
459 .audio_inputs = 1,
460 .tuner = 0,
461 .svhs = 2,
462 .gpiomask = 3,
Michael Krufkybc286362006-01-11 19:40:17 -0200463 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300464 .gpiomux = { 1, 1, 2, 3 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800465 .needs_tvaudio = 0,
466 .pll = PLL_28,
467 .tuner_type = TUNER_TEMIC_PAL,
468 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800469 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800470 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800471 [BTTV_BOARD_HAUPPAUGE878] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800472 .name = "Hauppauge (bt878)",
473 .video_inputs = 4,
474 .audio_inputs = 1,
475 .tuner = 0,
476 .svhs = 2,
477 .gpiomask = 0x0f, /* old: 7 */
Michael Krufkybc286362006-01-11 19:40:17 -0200478 .muxsel = { 2, 0, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300479 .gpiomux = { 0, 1, 2, 3 },
480 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800481 .needs_tvaudio = 1,
482 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300483 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800484 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800485 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800486 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800487 [BTTV_BOARD_MIROPRO] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800488 .name = "MIRO PCTV pro",
489 .video_inputs = 3,
490 .audio_inputs = 1,
491 .tuner = 0,
492 .svhs = 2,
493 .gpiomask = 0x3014f,
Michael Krufkybc286362006-01-11 19:40:17 -0200494 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300495 .gpiomux = { 0x20001,0x10001, 0, 0 },
496 .gpiomute = 10,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800497 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300498 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800499 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800500 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800501 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800503 /* ---- card 0x0c ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800504 [BTTV_BOARD_ADSTECH_TV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800505 .name = "ADS Technologies Channel Surfer TV (bt848)",
506 .video_inputs = 3,
507 .audio_inputs = 1,
508 .tuner = 0,
509 .svhs = 2,
510 .gpiomask = 15,
Michael Krufkybc286362006-01-11 19:40:17 -0200511 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300512 .gpiomux = { 13, 14, 11, 7 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800513 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300514 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800515 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800516 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800517 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800518 [BTTV_BOARD_AVERMEDIA98] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800519 .name = "AVerMedia TVCapture 98",
520 .video_inputs = 3,
521 .audio_inputs = 4,
522 .tuner = 0,
523 .svhs = 2,
524 .gpiomask = 15,
Michael Krufkybc286362006-01-11 19:40:17 -0200525 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300526 .gpiomux = { 13, 14, 11, 7 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800527 .needs_tvaudio = 1,
528 .msp34xx_alt = 1,
529 .pll = PLL_28,
530 .tuner_type = TUNER_PHILIPS_PAL,
531 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800532 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -0300533 .audio_mode_gpio= avermedia_tv_stereo_audio,
Ray Colea8900fc2005-11-08 21:37:43 -0800534 .no_gpioirq = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800535 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800536 [BTTV_BOARD_VHX] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800537 .name = "Aimslab Video Highway Xtreme (VHX)",
538 .video_inputs = 3,
539 .audio_inputs = 1,
540 .tuner = 0,
541 .svhs = 2,
542 .gpiomask = 7,
Michael Krufkybc286362006-01-11 19:40:17 -0200543 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300544 .gpiomux = { 0, 2, 1, 3 }, /* old: {0, 1, 2, 3, 4} */
545 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800546 .needs_tvaudio = 1,
547 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300548 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800549 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800550 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800551 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800552 [BTTV_BOARD_ZOLTRIX] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800553 .name = "Zoltrix TV-Max",
554 .video_inputs = 3,
555 .audio_inputs = 1,
556 .tuner = 0,
557 .svhs = 2,
558 .gpiomask = 15,
Michael Krufkybc286362006-01-11 19:40:17 -0200559 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300560 .gpiomux = { 0, 0, 1, 0 },
561 .gpiomute = 10,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800562 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300563 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800564 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800565 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800566 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800568 /* ---- card 0x10 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800569 [BTTV_BOARD_PIXVIEWPLAYTV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800570 .name = "Prolink Pixelview PlayTV (bt878)",
571 .video_inputs = 3,
572 .audio_inputs = 1,
573 .tuner = 0,
574 .svhs = 2,
575 .gpiomask = 0x01fe00,
Michael Krufkybc286362006-01-11 19:40:17 -0200576 .muxsel = { 2, 3, 1, 1 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800577 /* 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300578 .gpiomux = { 0x001e00, 0, 0x018000, 0x014000 },
579 .gpiomute = 0x002000,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800580 .needs_tvaudio = 1,
581 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300582 .tuner_type = UNSET,
Wojciech Migda27dea3e2008-04-22 14:45:36 -0300583 .tuner_addr = ADDR_UNSET,
584 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800585 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800586 [BTTV_BOARD_WINVIEW_601] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800587 .name = "Leadtek WinView 601",
588 .video_inputs = 3,
589 .audio_inputs = 1,
590 .tuner = 0,
591 .svhs = 2,
592 .gpiomask = 0x8300f8,
Michael Krufkybc286362006-01-11 19:40:17 -0200593 .muxsel = { 2, 3, 1, 1,0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300594 .gpiomux = { 0x4fa007,0xcfa007,0xcfa007,0xcfa007 },
595 .gpiomute = 0xcfa007,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800596 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300597 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800598 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800599 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -0300600 .volume_gpio = winview_volume,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800601 .has_radio = 1,
602 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800603 [BTTV_BOARD_AVEC_INTERCAP] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800604 .name = "AVEC Intercapture",
605 .video_inputs = 3,
606 .audio_inputs = 2,
607 .tuner = 0,
608 .svhs = 2,
609 .gpiomask = 0,
Michael Krufkybc286362006-01-11 19:40:17 -0200610 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300611 .gpiomux = { 1, 0, 0, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800612 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300613 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800614 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800615 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800616 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800617 [BTTV_BOARD_LIFE_FLYKIT] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800618 .name = "Lifeview FlyVideo II EZ /FlyKit LR38 Bt848 (capture only)",
619 .video_inputs = 4,
620 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300621 .tuner = UNSET,
622 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800623 .gpiomask = 0x8dff00,
Michael Krufkybc286362006-01-11 19:40:17 -0200624 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300625 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800626 .no_msp34xx = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300627 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800628 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800629 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800630 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800632 /* ---- card 0x14 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800633 [BTTV_BOARD_CEI_RAFFLES] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800634 .name = "CEI Raffles Card",
635 .video_inputs = 3,
636 .audio_inputs = 3,
637 .tuner = 0,
638 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -0200639 .muxsel = { 2, 3, 1, 1 },
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300640 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800641 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800642 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800643 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800644 [BTTV_BOARD_CONFERENCETV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800645 .name = "Lifeview FlyVideo 98/ Lucky Star Image World ConferenceTV LR50",
646 .video_inputs = 4,
647 .audio_inputs = 2, /* tuner, line in */
648 .tuner = 0,
649 .svhs = 2,
650 .gpiomask = 0x1800,
Michael Krufkybc286362006-01-11 19:40:17 -0200651 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300652 .gpiomux = { 0, 0x800, 0x1000, 0x1000 },
653 .gpiomute = 0x1800,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800654 .pll = PLL_28,
655 .tuner_type = TUNER_PHILIPS_PAL_I,
656 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800657 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800658 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800659 [BTTV_BOARD_PHOEBE_TVMAS] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800660 .name = "Askey CPH050/ Phoebe Tv Master + FM",
661 .video_inputs = 3,
662 .audio_inputs = 1,
663 .tuner = 0,
664 .svhs = 2,
665 .gpiomask = 0xc00,
Michael Krufkybc286362006-01-11 19:40:17 -0200666 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300667 .gpiomux = { 0, 1, 0x800, 0x400 },
668 .gpiomute = 0xc00,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800669 .needs_tvaudio = 1,
670 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300671 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800672 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800673 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800674 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800675 [BTTV_BOARD_MODTEC_205] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800676 .name = "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV, bt878",
677 .video_inputs = 3,
678 .audio_inputs = 1,
679 .tuner = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300680 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800681 .gpiomask = 7,
682 .muxsel = { 2, 3, -1 },
683 .digital_mode = DIGITAL_MODE_CAMERA,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300684 .gpiomux = { 0, 0, 0, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800685 .no_msp34xx = 1,
686 .pll = PLL_28,
687 .tuner_type = TUNER_ALPS_TSBB5_PAL_I,
688 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800689 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800690 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800692 /* ---- card 0x18 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800693 [BTTV_BOARD_MAGICTVIEW061] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800694 .name = "Askey CPH05X/06X (bt878) [many vendors]",
695 .video_inputs = 3,
696 .audio_inputs = 1,
697 .tuner = 0,
698 .svhs = 2,
699 .gpiomask = 0xe00,
Michael Krufkybc286362006-01-11 19:40:17 -0200700 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300701 .gpiomux = {0x400, 0x400, 0x400, 0x400 },
702 .gpiomute = 0xc00,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800703 .needs_tvaudio = 1,
704 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300705 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800706 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800707 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800708 .has_remote = 1,
709 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800710 [BTTV_BOARD_VOBIS_BOOSTAR] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800711 .name = "Terratec TerraTV+ Version 1.0 (Bt848)/ Terra TValue Version 1.0/ Vobis TV-Boostar",
712 .video_inputs = 3,
713 .audio_inputs = 1,
714 .tuner = 0,
715 .svhs = 2,
716 .gpiomask = 0x1f0fff,
Michael Krufkybc286362006-01-11 19:40:17 -0200717 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300718 .gpiomux = { 0x20000, 0x30000, 0x10000, 0 },
719 .gpiomute = 0x40000,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800720 .needs_tvaudio = 0,
721 .tuner_type = TUNER_PHILIPS_PAL,
722 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800723 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -0300724 .audio_mode_gpio= terratv_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800725 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800726 [BTTV_BOARD_HAUPPAUG_WCAM] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800727 .name = "Hauppauge WinCam newer (bt878)",
728 .video_inputs = 4,
729 .audio_inputs = 1,
730 .tuner = 0,
731 .svhs = 3,
732 .gpiomask = 7,
Michael Krufkybc286362006-01-11 19:40:17 -0200733 .muxsel = { 2, 0, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300734 .gpiomux = { 0, 1, 2, 3 },
735 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800736 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300737 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800738 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800739 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800740 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800741 [BTTV_BOARD_MAXI] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800742 .name = "Lifeview FlyVideo 98/ MAXI TV Video PCI2 LR50",
743 .video_inputs = 4,
744 .audio_inputs = 2,
745 .tuner = 0,
746 .svhs = 2,
747 .gpiomask = 0x1800,
Michael Krufkybc286362006-01-11 19:40:17 -0200748 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300749 .gpiomux = { 0, 0x800, 0x1000, 0x1000 },
750 .gpiomute = 0x1800,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800751 .pll = PLL_28,
752 .tuner_type = TUNER_PHILIPS_SECAM,
753 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800754 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800755 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800757 /* ---- card 0x1c ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800758 [BTTV_BOARD_TERRATV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800759 .name = "Terratec TerraTV+ Version 1.1 (bt878)",
760 .video_inputs = 3,
761 .audio_inputs = 1,
762 .tuner = 0,
763 .svhs = 2,
764 .gpiomask = 0x1f0fff,
Michael Krufkybc286362006-01-11 19:40:17 -0200765 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300766 .gpiomux = { 0x20000, 0x30000, 0x10000, 0x00000 },
767 .gpiomute = 0x40000,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800768 .needs_tvaudio = 0,
769 .tuner_type = TUNER_PHILIPS_PAL,
770 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800771 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -0300772 .audio_mode_gpio= terratv_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800773 /* GPIO wiring:
774 External 20 pin connector (for Active Radio Upgrade board)
775 gpio00: i2c-sda
776 gpio01: i2c-scl
777 gpio02: om5610-data
778 gpio03: om5610-clk
779 gpio04: om5610-wre
780 gpio05: om5610-stereo
781 gpio06: rds6588-davn
782 gpio07: Pin 7 n.c.
783 gpio08: nIOW
784 gpio09+10: nIOR, nSEL ?? (bt878)
785 gpio09: nIOR (bt848)
786 gpio10: nSEL (bt848)
787 Sound Routing:
788 gpio16: u2-A0 (1st 4052bt)
789 gpio17: u2-A1
790 gpio18: u2-nEN
791 gpio19: u4-A0 (2nd 4052)
792 gpio20: u4-A1
793 u4-nEN - GND
794 Btspy:
795 00000 : Cdrom (internal audio input)
796 10000 : ext. Video audio input
797 20000 : TV Mono
798 a0000 : TV Mono/2
799 1a0000 : TV Stereo
800 30000 : Radio
801 40000 : Mute
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -0700802 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800804 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800805 [BTTV_BOARD_PXC200] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800806 /* Jannik Fritsch <jannik@techfak.uni-bielefeld.de> */
807 .name = "Imagenation PXC200",
808 .video_inputs = 5,
809 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300810 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800811 .svhs = 1, /* was: 4 */
812 .gpiomask = 0,
813 .muxsel = { 2, 3, 1, 0, 0},
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300814 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800815 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300816 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800817 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800818 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800819 .muxsel_hook = PXC200_muxsel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800821 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800822 [BTTV_BOARD_FLYVIDEO_98] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800823 .name = "Lifeview FlyVideo 98 LR50",
824 .video_inputs = 4,
825 .audio_inputs = 1,
826 .tuner = 0,
827 .svhs = 2,
828 .gpiomask = 0x1800, /* 0x8dfe00 */
Michael Krufkybc286362006-01-11 19:40:17 -0200829 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300830 .gpiomux = { 0, 0x0800, 0x1000, 0x1000 },
831 .gpiomute = 0x1800,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800832 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300833 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800834 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800835 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800836 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800837 [BTTV_BOARD_IPROTV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800838 .name = "Formac iProTV, Formac ProTV I (bt848)",
839 .video_inputs = 4,
840 .audio_inputs = 1,
841 .tuner = 0,
842 .svhs = 3,
843 .gpiomask = 1,
Michael Krufkybc286362006-01-11 19:40:17 -0200844 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300845 .gpiomux = { 1, 0, 0, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800846 .pll = PLL_28,
847 .tuner_type = TUNER_PHILIPS_PAL,
848 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800849 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800850 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800852 /* ---- card 0x20 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800853 [BTTV_BOARD_INTEL_C_S_PCI] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800854 .name = "Intel Create and Share PCI/ Smart Video Recorder III",
855 .video_inputs = 4,
856 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300857 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800858 .svhs = 2,
859 .gpiomask = 0,
Michael Krufkybc286362006-01-11 19:40:17 -0200860 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300861 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800862 .needs_tvaudio = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300863 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800864 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800865 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800866 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800867 [BTTV_BOARD_TERRATVALUE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800868 .name = "Terratec TerraTValue Version Bt878",
869 .video_inputs = 3,
870 .audio_inputs = 1,
871 .tuner = 0,
872 .svhs = 2,
873 .gpiomask = 0xffff00,
Michael Krufkybc286362006-01-11 19:40:17 -0200874 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300875 .gpiomux = { 0x500, 0, 0x300, 0x900 },
876 .gpiomute = 0x900,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800877 .needs_tvaudio = 1,
878 .pll = PLL_28,
879 .tuner_type = TUNER_PHILIPS_PAL,
880 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800881 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800882 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800883 [BTTV_BOARD_WINFAST2000] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800884 .name = "Leadtek WinFast 2000/ WinFast 2000 XP",
885 .video_inputs = 4,
886 .audio_inputs = 1,
887 .tuner = 0,
888 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -0200889 .muxsel = { 2, 3, 1, 1, 0 }, /* TV, CVid, SVid, CVid over SVid connector */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800890 /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */
891 .gpiomask = 0xb33000,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300892 .gpiomux = { 0x122000,0x1000,0x0000,0x620000 },
893 .gpiomute = 0x800000,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800894 /* Audio Routing for "WinFast 2000 XP" (no tv stereo !)
895 gpio23 -- hef4052:nEnable (0x800000)
896 gpio12 -- hef4052:A1
897 gpio13 -- hef4052:A0
898 0x0000: external audio
899 0x1000: FM
900 0x2000: TV
901 0x3000: n.c.
902 Note: There exists another variant "Winfast 2000" with tv stereo !?
903 Note: eeprom only contains FF and pci subsystem id 107d:6606
904 */
905 .needs_tvaudio = 0,
906 .pll = PLL_28,
907 .has_radio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300908 .tuner_type = TUNER_PHILIPS_PAL, /* default for now, gpio reads BFFF06 for Pal bg+dk */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800909 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800910 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -0300911 .audio_mode_gpio= winfast2000_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800912 .has_remote = 1,
913 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800914 [BTTV_BOARD_CHRONOS_VS2] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800915 .name = "Lifeview FlyVideo 98 LR50 / Chronos Video Shuttle II",
916 .video_inputs = 4,
917 .audio_inputs = 3,
918 .tuner = 0,
919 .svhs = 2,
920 .gpiomask = 0x1800,
Michael Krufkybc286362006-01-11 19:40:17 -0200921 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300922 .gpiomux = { 0, 0x800, 0x1000, 0x1000 },
923 .gpiomute = 0x1800,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800924 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300925 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800926 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800927 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800928 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800930 /* ---- card 0x24 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800931 [BTTV_BOARD_TYPHOON_TVIEW] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800932 .name = "Lifeview FlyVideo 98FM LR50 / Typhoon TView TV/FM Tuner",
933 .video_inputs = 4,
934 .audio_inputs = 3,
935 .tuner = 0,
936 .svhs = 2,
937 .gpiomask = 0x1800,
Michael Krufkybc286362006-01-11 19:40:17 -0200938 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300939 .gpiomux = { 0, 0x800, 0x1000, 0x1000 },
940 .gpiomute = 0x1800,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800941 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300942 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800943 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800944 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800945 .has_radio = 1,
946 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800947 [BTTV_BOARD_PXELVWPLTVPRO] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800948 .name = "Prolink PixelView PlayTV pro",
949 .video_inputs = 3,
950 .audio_inputs = 1,
951 .tuner = 0,
952 .svhs = 2,
953 .gpiomask = 0xff,
954 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300955 .gpiomux = { 0x21, 0x20, 0x24, 0x2c },
956 .gpiomute = 0x29,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800957 .no_msp34xx = 1,
958 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300959 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800960 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800961 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800962 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800963 [BTTV_BOARD_MAGICTVIEW063] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800964 .name = "Askey CPH06X TView99",
965 .video_inputs = 4,
966 .audio_inputs = 1,
967 .tuner = 0,
968 .svhs = 2,
969 .gpiomask = 0x551e00,
Michael Krufkybc286362006-01-11 19:40:17 -0200970 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300971 .gpiomux = { 0x551400, 0x551200, 0, 0 },
972 .gpiomute = 0x551c00,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800973 .needs_tvaudio = 1,
974 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300975 .tuner_type = TUNER_PHILIPS_PAL_I,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800976 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800977 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800978 .has_remote = 1,
979 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800980 [BTTV_BOARD_PINNACLE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800981 .name = "Pinnacle PCTV Studio/Rave",
982 .video_inputs = 3,
983 .audio_inputs = 1,
984 .tuner = 0,
985 .svhs = 2,
986 .gpiomask = 0x03000F,
Michael Krufkybc286362006-01-11 19:40:17 -0200987 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300988 .gpiomux = { 2, 0xd0001, 0, 0 },
989 .gpiomute = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800990 .needs_tvaudio = 0,
991 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -0300992 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800993 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -0800994 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800995 },
996
997 /* ---- card 0x28 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -0800998 [BTTV_BOARD_STB2] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -0800999 .name = "STB TV PCI FM, Gateway P/N 6000704 (bt878), 3Dfx VoodooTV 100",
1000 .video_inputs = 3,
1001 .audio_inputs = 1,
1002 .tuner = 0,
1003 .svhs = 2,
1004 .gpiomask = 7,
Michael Krufkybc286362006-01-11 19:40:17 -02001005 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001006 .gpiomux = { 4, 0, 2, 3 },
1007 .gpiomute = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001008 .no_msp34xx = 1,
1009 .needs_tvaudio = 1,
1010 .tuner_type = TUNER_PHILIPS_NTSC,
1011 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001012 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001013 .pll = PLL_28,
1014 .has_radio = 1,
1015 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001016 [BTTV_BOARD_AVPHONE98] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001017 .name = "AVerMedia TVPhone 98",
1018 .video_inputs = 3,
1019 .audio_inputs = 4,
1020 .tuner = 0,
1021 .svhs = 2,
1022 .gpiomask = 15,
Michael Krufkybc286362006-01-11 19:40:17 -02001023 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001024 .gpiomux = { 13, 4, 11, 7 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001025 .needs_tvaudio = 1,
1026 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001027 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001028 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001029 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001030 .has_radio = 1,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001031 .audio_mode_gpio= avermedia_tvphone_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001032 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001033 [BTTV_BOARD_PV951] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001034 .name = "ProVideo PV951", /* pic16c54 */
1035 .video_inputs = 3,
1036 .audio_inputs = 1,
1037 .tuner = 0,
1038 .svhs = 2,
1039 .gpiomask = 0,
1040 .muxsel = { 2, 3, 1, 1},
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001041 .gpiomux = { 0, 0, 0, 0},
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001042 .needs_tvaudio = 1,
1043 .no_msp34xx = 1,
1044 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001045 .tuner_type = TUNER_PHILIPS_PAL_I,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001046 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001047 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001048 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001049 [BTTV_BOARD_ONAIR_TV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001050 .name = "Little OnAir TV",
1051 .video_inputs = 3,
1052 .audio_inputs = 1,
1053 .tuner = 0,
1054 .svhs = 2,
1055 .gpiomask = 0xe00b,
Michael Krufkybc286362006-01-11 19:40:17 -02001056 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001057 .gpiomux = { 0xff9ff6, 0xff9ff6, 0xff1ff7, 0 },
1058 .gpiomute = 0xff3ffc,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001059 .no_msp34xx = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001060 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001061 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001062 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001063 },
1064
1065 /* ---- card 0x2c ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001066 [BTTV_BOARD_SIGMA_TVII_FM] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001067 .name = "Sigma TVII-FM",
1068 .video_inputs = 2,
1069 .audio_inputs = 1,
1070 .tuner = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001071 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001072 .gpiomask = 3,
Michael Krufkybc286362006-01-11 19:40:17 -02001073 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001074 .gpiomux = { 1, 1, 0, 2 },
1075 .gpiomute = 3,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001076 .no_msp34xx = 1,
1077 .pll = PLL_NONE,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001078 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001079 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001080 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001081 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001082 [BTTV_BOARD_MATRIX_VISION2] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001083 .name = "MATRIX-Vision MV-Delta 2",
1084 .video_inputs = 5,
1085 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001086 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001087 .svhs = 3,
1088 .gpiomask = 0,
Michael Krufkybc286362006-01-11 19:40:17 -02001089 .muxsel = { 2, 3, 1, 0, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001090 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001091 .no_msp34xx = 1,
1092 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001093 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001094 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001095 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001096 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001097 [BTTV_BOARD_ZOLTRIX_GENIE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001098 .name = "Zoltrix Genie TV/FM",
1099 .video_inputs = 3,
1100 .audio_inputs = 1,
1101 .tuner = 0,
1102 .svhs = 2,
1103 .gpiomask = 0xbcf03f,
Michael Krufkybc286362006-01-11 19:40:17 -02001104 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001105 .gpiomux = { 0xbc803f, 0xbc903f, 0xbcb03f, 0 },
1106 .gpiomute = 0xbcb03f,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001107 .no_msp34xx = 1,
1108 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001109 .tuner_type = TUNER_TEMIC_4039FR5_NTSC,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001110 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001111 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001112 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001113 [BTTV_BOARD_TERRATVRADIO] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001114 .name = "Terratec TV/Radio+",
1115 .video_inputs = 3,
1116 .audio_inputs = 1,
1117 .tuner = 0,
1118 .svhs = 2,
1119 .gpiomask = 0x70000,
Michael Krufkybc286362006-01-11 19:40:17 -02001120 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001121 .gpiomux = { 0x20000, 0x30000, 0x10000, 0 },
1122 .gpiomute = 0x40000,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001123 .needs_tvaudio = 1,
1124 .no_msp34xx = 1,
1125 .pll = PLL_35,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001126 .tuner_type = TUNER_PHILIPS_PAL_I,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001127 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001128 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001129 .has_radio = 1,
1130 },
1131
1132 /* ---- card 0x30 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001133 [BTTV_BOARD_DYNALINK] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001134 .name = "Askey CPH03x/ Dynalink Magic TView",
1135 .video_inputs = 3,
1136 .audio_inputs = 1,
1137 .tuner = 0,
1138 .svhs = 2,
1139 .gpiomask = 15,
Michael Krufkybc286362006-01-11 19:40:17 -02001140 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001141 .gpiomux = {2,0,0,0 },
1142 .gpiomute = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001143 .needs_tvaudio = 1,
1144 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001145 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001146 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001147 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001148 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001149 [BTTV_BOARD_GVBCTV3PCI] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001150 .name = "IODATA GV-BCTV3/PCI",
1151 .video_inputs = 3,
1152 .audio_inputs = 1,
1153 .tuner = 0,
1154 .svhs = 2,
1155 .gpiomask = 0x010f00,
Michael Krufkybc286362006-01-11 19:40:17 -02001156 .muxsel = {2, 3, 0, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001157 .gpiomux = {0x10000, 0, 0x10000, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001158 .no_msp34xx = 1,
1159 .pll = PLL_28,
1160 .tuner_type = TUNER_ALPS_TSHC6_NTSC,
1161 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001162 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001163 .audio_mode_gpio= gvbctv3pci_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001164 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001165 [BTTV_BOARD_PXELVWPLTVPAK] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001166 .name = "Prolink PV-BT878P+4E / PixelView PlayTV PAK / Lenco MXTV-9578 CP",
1167 .video_inputs = 5,
1168 .audio_inputs = 1,
1169 .tuner = 0,
1170 .svhs = 3,
1171 .gpiomask = 0xAA0000,
1172 .muxsel = { 2,3,1,1,-1 },
1173 .digital_mode = DIGITAL_MODE_CAMERA,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001174 .gpiomux = { 0x20000, 0, 0x80000, 0x80000 },
1175 .gpiomute = 0xa8000,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001176 .no_msp34xx = 1,
1177 .pll = PLL_28,
1178 .tuner_type = TUNER_PHILIPS_PAL_I,
1179 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001180 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001181 .has_remote = 1,
1182 /* GPIO wiring: (different from Rev.4C !)
1183 GPIO17: U4.A0 (first hef4052bt)
1184 GPIO19: U4.A1
1185 GPIO20: U5.A1 (second hef4052bt)
1186 GPIO21: U4.nEN
1187 GPIO22: BT832 Reset Line
1188 GPIO23: A5,A0, U5,nEN
1189 Note: At i2c=0x8a is a Bt832 chip, which changes to 0x88 after being reset via GPIO22
1190 */
1191 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001192 [BTTV_BOARD_EAGLE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001193 .name = "Eagle Wireless Capricorn2 (bt878A)",
1194 .video_inputs = 4,
1195 .audio_inputs = 1,
1196 .tuner = 0,
1197 .svhs = 2,
1198 .gpiomask = 7,
Michael Krufkybc286362006-01-11 19:40:17 -02001199 .muxsel = { 2, 0, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001200 .gpiomux = { 0, 1, 2, 3 },
1201 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001202 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001203 .tuner_type = UNSET /* TUNER_ALPS_TMDH2_NTSC */,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001204 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001205 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001206 },
1207
1208 /* ---- card 0x34 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001209 [BTTV_BOARD_PINNACLEPRO] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001210 /* David Härdeman <david@2gen.com> */
1211 .name = "Pinnacle PCTV Studio Pro",
1212 .video_inputs = 4,
1213 .audio_inputs = 1,
1214 .tuner = 0,
1215 .svhs = 3,
1216 .gpiomask = 0x03000F,
Michael Krufkybc286362006-01-11 19:40:17 -02001217 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001218 .gpiomux = { 1, 0xd0001, 0, 0 },
1219 .gpiomute = 10,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001220 /* sound path (5 sources):
1221 MUX1 (mask 0x03), Enable Pin 0x08 (0=enable, 1=disable)
1222 0= ext. Audio IN
1223 1= from MUX2
1224 2= Mono TV sound from Tuner
1225 3= not connected
1226 MUX2 (mask 0x30000):
1227 0,2,3= from MSP34xx
1228 1= FM stereo Radio from Tuner */
1229 .needs_tvaudio = 0,
1230 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001231 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001232 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001233 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001234 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001235 [BTTV_BOARD_TVIEW_RDS_FM] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001236 /* Claas Langbehn <claas@bigfoot.com>,
1237 Sven Grothklags <sven@upb.de> */
1238 .name = "Typhoon TView RDS + FM Stereo / KNC1 TV Station RDS",
1239 .video_inputs = 4,
1240 .audio_inputs = 3,
1241 .tuner = 0,
1242 .svhs = 2,
1243 .gpiomask = 0x1c,
Michael Krufkybc286362006-01-11 19:40:17 -02001244 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001245 .gpiomux = { 0, 0, 0x10, 8 },
1246 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001247 .needs_tvaudio = 1,
1248 .pll = PLL_28,
1249 .tuner_type = TUNER_PHILIPS_PAL,
1250 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001251 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001252 .has_radio = 1,
1253 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001254 [BTTV_BOARD_LIFETEC_9415] = {
Jan Engelhardt96de0e22007-10-19 23:21:04 +02001255 /* Tim Röstermundt <rosterm@uni-muenster.de>
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001256 in de.comp.os.unix.linux.hardware:
1257 options bttv card=0 pll=1 radio=1 gpiomask=0x18e0
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001258 gpiomux =0x44c71f,0x44d71f,0,0x44d71f,0x44dfff
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001259 options tuner type=5 */
1260 .name = "Lifeview FlyVideo 2000 /FlyVideo A2/ Lifetec LT 9415 TV [LR90]",
1261 .video_inputs = 4,
1262 .audio_inputs = 1,
1263 .tuner = 0,
1264 .svhs = 2,
1265 .gpiomask = 0x18e0,
Michael Krufkybc286362006-01-11 19:40:17 -02001266 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001267 .gpiomux = { 0x0000,0x0800,0x1000,0x1000 },
1268 .gpiomute = 0x18e0,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001269 /* For cards with tda9820/tda9821:
1270 0x0000: Tuner normal stereo
1271 0x0080: Tuner A2 SAP (second audio program = Zweikanalton)
1272 0x0880: Tuner A2 stereo */
1273 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001274 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001275 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001276 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001277 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001278 [BTTV_BOARD_BESTBUY_EASYTV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001279 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1280 old Easy TV BT848 version (model CPH031) */
1281 .name = "Askey CPH031/ BESTBUY Easy TV",
1282 .video_inputs = 4,
1283 .audio_inputs = 1,
1284 .tuner = 0,
1285 .svhs = 2,
1286 .gpiomask = 0xF,
Michael Krufkybc286362006-01-11 19:40:17 -02001287 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001288 .gpiomux = { 2, 0, 0, 0 },
1289 .gpiomute = 10,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001290 .needs_tvaudio = 0,
1291 .pll = PLL_28,
1292 .tuner_type = TUNER_TEMIC_PAL,
1293 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001294 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001295 },
1296
1297 /* ---- card 0x38 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001298 [BTTV_BOARD_FLYVIDEO_98FM] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001299 /* Gordon Heydon <gjheydon@bigfoot.com ('98) */
1300 .name = "Lifeview FlyVideo 98FM LR50",
1301 .video_inputs = 4,
1302 .audio_inputs = 3,
1303 .tuner = 0,
1304 .svhs = 2,
1305 .gpiomask = 0x1800,
Michael Krufkybc286362006-01-11 19:40:17 -02001306 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001307 .gpiomux = { 0, 0x800, 0x1000, 0x1000 },
1308 .gpiomute = 0x1800,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001309 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001310 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001311 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001312 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001313 },
1314 /* This is the ultimate cheapo capture card
1315 * just a BT848A on a small PCB!
1316 * Steve Hosgood <steve@equiinet.com> */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001317 [BTTV_BOARD_GRANDTEC] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001318 .name = "GrandTec 'Grand Video Capture' (Bt848)",
1319 .video_inputs = 2,
1320 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001321 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001322 .svhs = 1,
1323 .gpiomask = 0,
1324 .muxsel = { 3, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001325 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001326 .needs_tvaudio = 0,
1327 .no_msp34xx = 1,
1328 .pll = PLL_35,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001329 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001330 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001331 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001332 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001333 [BTTV_BOARD_ASKEY_CPH060] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001334 /* Daniel Herrington <daniel.herrington@home.com> */
1335 .name = "Askey CPH060/ Phoebe TV Master Only (No FM)",
1336 .video_inputs = 3,
1337 .audio_inputs = 1,
1338 .tuner = 0,
1339 .svhs = 2,
1340 .gpiomask = 0xe00,
1341 .muxsel = { 2, 3, 1, 1},
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001342 .gpiomux = { 0x400, 0x400, 0x400, 0x400 },
1343 .gpiomute = 0x800,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001344 .needs_tvaudio = 1,
1345 .pll = PLL_28,
1346 .tuner_type = TUNER_TEMIC_4036FY5_NTSC,
1347 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001348 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001349 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001350 [BTTV_BOARD_ASKEY_CPH03X] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001351 /* Matti Mottus <mottus@physic.ut.ee> */
1352 .name = "Askey CPH03x TV Capturer",
1353 .video_inputs = 4,
1354 .audio_inputs = 1,
1355 .tuner = 0,
1356 .svhs = 2,
1357 .gpiomask = 0x03000F,
Michael Krufkybc286362006-01-11 19:40:17 -02001358 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001359 .gpiomux = { 2, 0, 0, 0 },
1360 .gpiomute = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001361 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001362 .tuner_type = TUNER_TEMIC_PAL,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001363 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001364 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001365 },
1366
1367 /* ---- card 0x3c ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001368 [BTTV_BOARD_MM100PCTV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001369 /* Philip Blundell <philb@gnu.org> */
1370 .name = "Modular Technology MM100PCTV",
1371 .video_inputs = 2,
1372 .audio_inputs = 2,
1373 .tuner = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001374 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001375 .gpiomask = 11,
Michael Krufkybc286362006-01-11 19:40:17 -02001376 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001377 .gpiomux = { 2, 0, 0, 1 },
1378 .gpiomute = 8,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001379 .pll = PLL_35,
1380 .tuner_type = TUNER_TEMIC_PAL,
1381 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001382 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001383 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001384 [BTTV_BOARD_GMV1] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001385 /* Adrian Cox <adrian@humboldt.co.uk */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001386 .name = "AG Electronics GMV1",
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001387 .video_inputs = 2,
1388 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001389 .tuner = UNSET,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001390 .svhs = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001391 .gpiomask = 0xF,
Michael Krufkybc286362006-01-11 19:40:17 -02001392 .muxsel = { 2, 2 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001393 .gpiomux = { },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001394 .no_msp34xx = 1,
1395 .needs_tvaudio = 0,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001396 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001397 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001398 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001399 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001400 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001401 [BTTV_BOARD_BESTBUY_EASYTV2] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001402 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1403 new Easy TV BT878 version (model CPH061)
1404 special thanks to Informatica Mieres for providing the card */
1405 .name = "Askey CPH061/ BESTBUY Easy TV (bt878)",
1406 .video_inputs = 3,
1407 .audio_inputs = 2,
1408 .tuner = 0,
1409 .svhs = 2,
1410 .gpiomask = 0xFF,
Michael Krufkybc286362006-01-11 19:40:17 -02001411 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001412 .gpiomux = { 1, 0, 4, 4 },
1413 .gpiomute = 9,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001414 .needs_tvaudio = 0,
1415 .pll = PLL_28,
1416 .tuner_type = TUNER_PHILIPS_PAL,
1417 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001418 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001419 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001420 [BTTV_BOARD_ATI_TVWONDER] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001421 /* Lukas Gebauer <geby@volny.cz> */
1422 .name = "ATI TV-Wonder",
1423 .video_inputs = 3,
1424 .audio_inputs = 1,
1425 .tuner = 0,
1426 .svhs = 2,
1427 .gpiomask = 0xf03f,
1428 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001429 .gpiomux = { 0xbffe, 0, 0xbfff, 0 },
1430 .gpiomute = 0xbffe,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001431 .pll = PLL_28,
1432 .tuner_type = TUNER_TEMIC_4006FN5_MULTI_PAL,
1433 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001434 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001435 },
1436
1437 /* ---- card 0x40 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001438 [BTTV_BOARD_ATI_TVWONDERVE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001439 /* Lukas Gebauer <geby@volny.cz> */
1440 .name = "ATI TV-Wonder VE",
1441 .video_inputs = 2,
1442 .audio_inputs = 1,
1443 .tuner = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001444 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001445 .gpiomask = 1,
Michael Krufkybc286362006-01-11 19:40:17 -02001446 .muxsel = { 2, 3, 0, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001447 .gpiomux = { 0, 0, 1, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001448 .no_msp34xx = 1,
1449 .pll = PLL_28,
1450 .tuner_type = TUNER_TEMIC_4006FN5_MULTI_PAL,
1451 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001452 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001453 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001454 [BTTV_BOARD_FLYVIDEO2000] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001455 /* DeeJay <deejay@westel900.net (2000S) */
1456 .name = "Lifeview FlyVideo 2000S LR90",
1457 .video_inputs = 3,
1458 .audio_inputs = 3,
1459 .tuner = 0,
1460 .svhs = 2,
1461 .gpiomask = 0x18e0,
Michael Krufkybc286362006-01-11 19:40:17 -02001462 .muxsel = { 2, 3, 0, 1 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001463 /* Radio changed from 1e80 to 0x800 to make
1464 FlyVideo2000S in .hu happy (gm)*/
1465 /* -dk-???: set mute=0x1800 for tda9874h daughterboard */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001466 .gpiomux = { 0x0000,0x0800,0x1000,0x1000 },
1467 .gpiomute = 0x1800,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001468 .audio_mode_gpio= fv2000s_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001469 .no_msp34xx = 1,
1470 .no_tda9875 = 1,
1471 .needs_tvaudio = 1,
1472 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001473 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001474 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001475 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001476 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001477 [BTTV_BOARD_TERRATVALUER] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001478 .name = "Terratec TValueRadio",
1479 .video_inputs = 3,
1480 .audio_inputs = 1,
1481 .tuner = 0,
1482 .svhs = 2,
1483 .gpiomask = 0xffff00,
Michael Krufkybc286362006-01-11 19:40:17 -02001484 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001485 .gpiomux = { 0x500, 0x500, 0x300, 0x900 },
1486 .gpiomute = 0x900,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001487 .needs_tvaudio = 1,
1488 .pll = PLL_28,
1489 .tuner_type = TUNER_PHILIPS_PAL,
1490 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001491 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001492 .has_radio = 1,
1493 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001494 [BTTV_BOARD_GVBCTV4PCI] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001495 /* TANAKA Kei <peg00625@nifty.com> */
1496 .name = "IODATA GV-BCTV4/PCI",
1497 .video_inputs = 3,
1498 .audio_inputs = 1,
1499 .tuner = 0,
1500 .svhs = 2,
1501 .gpiomask = 0x010f00,
Michael Krufkybc286362006-01-11 19:40:17 -02001502 .muxsel = {2, 3, 0, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001503 .gpiomux = {0x10000, 0, 0x10000, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001504 .no_msp34xx = 1,
1505 .pll = PLL_28,
1506 .tuner_type = TUNER_SHARP_2U5JF5540_NTSC,
1507 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001508 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001509 .audio_mode_gpio= gvbctv3pci_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001510 },
1511
1512 /* ---- card 0x44 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001513 [BTTV_BOARD_VOODOOTV_FM] = {
Wade Berrier434b2522007-06-25 13:02:16 -03001514 .name = "3Dfx VoodooTV FM (Euro)",
1515 /* try "insmod msp3400 simple=0" if you have
1516 * sound problems with this card. */
1517 .video_inputs = 4,
1518 .audio_inputs = 1,
1519 .tuner = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001520 .svhs = UNSET,
Wade Berrier434b2522007-06-25 13:02:16 -03001521 .gpiomask = 0x4f8a00,
1522 /* 0x100000: 1=MSP enabled (0=disable again)
1523 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1524 .gpiomux = {0x947fff, 0x987fff,0x947fff,0x947fff },
1525 .gpiomute = 0x947fff,
1526 /* tvtuner, radio, external,internal, mute, stereo
1527 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1528 .muxsel = { 2, 3 ,0 ,1 },
1529 .tuner_type = TUNER_MT2032,
1530 .tuner_addr = ADDR_UNSET,
1531 .radio_addr = ADDR_UNSET,
1532 .pll = PLL_28,
1533 .has_radio = 1,
1534 },
1535 [BTTV_BOARD_VOODOOTV_200] = {
1536 .name = "VoodooTV 200 (USA)",
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001537 /* try "insmod msp3400 simple=0" if you have
1538 * sound problems with this card. */
1539 .video_inputs = 4,
1540 .audio_inputs = 1,
1541 .tuner = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001542 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001543 .gpiomask = 0x4f8a00,
1544 /* 0x100000: 1=MSP enabled (0=disable again)
1545 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001546 .gpiomux = {0x947fff, 0x987fff,0x947fff,0x947fff },
1547 .gpiomute = 0x947fff,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001548 /* tvtuner, radio, external,internal, mute, stereo
1549 * tuner, Composit, SVid, Composit-on-Svid-adapter */
Michael Krufkybc286362006-01-11 19:40:17 -02001550 .muxsel = { 2, 3 ,0 ,1 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001551 .tuner_type = TUNER_MT2032,
1552 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001553 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001554 .pll = PLL_28,
1555 .has_radio = 1,
1556 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001557 [BTTV_BOARD_AIMMS] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001558 /* Philip Blundell <pb@nexus.co.uk> */
1559 .name = "Active Imaging AIMMS",
1560 .video_inputs = 1,
1561 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001562 .tuner = UNSET,
1563 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001564 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001565 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001566 .pll = PLL_28,
1567 .muxsel = { 2 },
1568 .gpiomask = 0
1569 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001570 [BTTV_BOARD_PV_BT878P_PLUS] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001571 /* Tomasz Pyra <hellfire@sedez.iq.pl> */
1572 .name = "Prolink Pixelview PV-BT878P+ (Rev.4C,8E)",
1573 .video_inputs = 3,
1574 .audio_inputs = 4,
1575 .tuner = 0,
1576 .svhs = 2,
1577 .gpiomask = 15,
Michael Krufkybc286362006-01-11 19:40:17 -02001578 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001579 .gpiomux = { 0, 0, 11, 7 }, /* TV and Radio with same GPIO ! */
1580 .gpiomute = 13,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001581 .needs_tvaudio = 1,
1582 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001583 .tuner_type = TUNER_LG_PAL_I_FM,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001584 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001585 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001586 .has_remote = 1,
1587 /* GPIO wiring:
1588 GPIO0: U4.A0 (hef4052bt)
1589 GPIO1: U4.A1
1590 GPIO2: U4.A1 (second hef4052bt)
1591 GPIO3: U4.nEN, U5.A0, A5.nEN
1592 GPIO8-15: vrd866b ?
1593 */
1594 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001595 [BTTV_BOARD_FLYVIDEO98EZ] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001596 .name = "Lifeview FlyVideo 98EZ (capture only) LR51",
1597 .video_inputs = 4,
1598 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001599 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001600 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -02001601 .muxsel = { 2, 3, 1, 1 }, /* AV1, AV2, SVHS, CVid adapter on SVHS */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001602 .pll = PLL_28,
1603 .no_msp34xx = 1,
1604 .tuner_type = UNSET,
1605 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001606 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001607 },
1608
1609 /* ---- card 0x48 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001610 [BTTV_BOARD_PV_BT878P_9B] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001611 /* Dariusz Kowalewski <darekk@automex.pl> */
1612 .name = "Prolink Pixelview PV-BT878P+9B (PlayTV Pro rev.9B FM+NICAM)",
1613 .video_inputs = 4,
1614 .audio_inputs = 1,
1615 .tuner = 0,
1616 .svhs = 2,
1617 .gpiomask = 0x3f,
1618 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001619 .gpiomux = { 0x01, 0x00, 0x03, 0x03 },
1620 .gpiomute = 0x09,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001621 .needs_tvaudio = 1,
1622 .no_msp34xx = 1,
1623 .no_tda9875 = 1,
1624 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001625 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001626 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001627 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001628 .audio_mode_gpio= pvbt878p9b_audio, /* Note: not all cards have stereo */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001629 .has_radio = 1, /* Note: not all cards have radio */
1630 .has_remote = 1,
1631 /* GPIO wiring:
1632 GPIO0: A0 hef4052
1633 GPIO1: A1 hef4052
1634 GPIO3: nEN hef4052
1635 GPIO8-15: vrd866b
1636 GPIO20,22,23: R30,R29,R28
1637 */
1638 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001639 [BTTV_BOARD_SENSORAY311] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001640 /* Clay Kunz <ckunz@mail.arc.nasa.gov> */
1641 /* you must jumper JP5 for the card to work */
1642 .name = "Sensoray 311",
1643 .video_inputs = 5,
1644 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001645 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001646 .svhs = 4,
1647 .gpiomask = 0,
Michael Krufkybc286362006-01-11 19:40:17 -02001648 .muxsel = { 2, 3, 1, 0, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001649 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001650 .needs_tvaudio = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001651 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001652 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001653 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001654 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001655 [BTTV_BOARD_RV605] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001656 /* Miguel Freitas <miguel@cetuc.puc-rio.br> */
1657 .name = "RemoteVision MX (RV605)",
1658 .video_inputs = 16,
1659 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001660 .tuner = UNSET,
1661 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001662 .gpiomask = 0x00,
1663 .gpiomask2 = 0x07ff,
1664 .muxsel = { 0x33, 0x13, 0x23, 0x43, 0xf3, 0x73, 0xe3, 0x03,
1665 0xd3, 0xb3, 0xc3, 0x63, 0x93, 0x53, 0x83, 0xa3 },
1666 .no_msp34xx = 1,
1667 .no_tda9875 = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001668 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001669 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001670 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001671 .muxsel_hook = rv605_muxsel,
1672 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001673 [BTTV_BOARD_POWERCLR_MTV878] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001674 .name = "Powercolor MTV878/ MTV878R/ MTV878F",
1675 .video_inputs = 3,
1676 .audio_inputs = 2,
1677 .tuner = 0,
1678 .svhs = 2,
1679 .gpiomask = 0x1C800F, /* Bit0-2: Audio select, 8-12:remote control 14:remote valid 15:remote reset */
1680 .muxsel = { 2, 1, 1, },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001681 .gpiomux = { 0, 1, 2, 2 },
1682 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001683 .needs_tvaudio = 0,
1684 .tuner_type = TUNER_PHILIPS_PAL,
1685 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001686 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001687 .pll = PLL_28,
1688 .has_radio = 1,
1689 },
1690
1691 /* ---- card 0x4c ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001692 [BTTV_BOARD_WINDVR] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001693 /* Masaki Suzuki <masaki@btree.org> */
1694 .name = "Canopus WinDVR PCI (COMPAQ Presario 3524JP, 5112JP)",
1695 .video_inputs = 3,
1696 .audio_inputs = 1,
1697 .tuner = 0,
1698 .svhs = 2,
1699 .gpiomask = 0x140007,
1700 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001701 .gpiomux = { 0, 1, 2, 3 },
1702 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001703 .tuner_type = TUNER_PHILIPS_NTSC,
1704 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001705 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001706 .audio_mode_gpio= windvr_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001707 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001708 [BTTV_BOARD_GRANDTEC_MULTI] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001709 .name = "GrandTec Multi Capture Card (Bt878)",
1710 .video_inputs = 4,
1711 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001712 .tuner = UNSET,
1713 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001714 .gpiomask = 0,
1715 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001716 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001717 .needs_tvaudio = 0,
1718 .no_msp34xx = 1,
1719 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001720 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001721 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001722 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001723 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001724 [BTTV_BOARD_KWORLD] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001725 .name = "Jetway TV/Capture JW-TV878-FBK, Kworld KW-TV878RF",
1726 .video_inputs = 4,
1727 .audio_inputs = 3,
1728 .tuner = 0,
1729 .svhs = 2,
1730 .gpiomask = 7,
1731 .muxsel = { 2, 3, 1, 1 }, /* Tuner, SVid, SVHS, SVid to SVHS connector */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001732 .gpiomux = { 0, 0, 4, 4 },/* Yes, this tuner uses the same audio output for TV and FM radio!
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001733 * This card lacks external Audio In, so we mute it on Ext. & Int.
1734 * The PCB can take a sbx1637/sbx1673, wiring unknown.
1735 * This card lacks PCI subsystem ID, sigh.
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001736 * gpiomux =1: lower volume, 2+3: mute
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001737 * btwincap uses 0x80000/0x80003
1738 */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001739 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001740 .needs_tvaudio = 0,
1741 .no_msp34xx = 1,
1742 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001743 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001744 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001745 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001746 /* Samsung TCPA9095PC27A (BG+DK), philips compatible, w/FM, stereo and
1747 radio signal strength indicators work fine. */
1748 .has_radio = 1,
1749 /* GPIO Info:
1750 GPIO0,1: HEF4052 A0,A1
1751 GPIO2: HEF4052 nENABLE
1752 GPIO3-7: n.c.
1753 GPIO8-13: IRDC357 data0-5 (data6 n.c. ?) [chip not present on my card]
1754 GPIO14,15: ??
1755 GPIO16-21: n.c.
1756 GPIO22,23: ??
1757 ?? : mtu8b56ep microcontroller for IR (GPIO wiring unknown)*/
1758 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001759 [BTTV_BOARD_DSP_TCVIDEO] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001760 /* Arthur Tetzlaff-Deas, DSP Design Ltd <software@dspdesign.com> */
1761 .name = "DSP Design TCVIDEO",
1762 .video_inputs = 4,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001763 .svhs = UNSET,
Michael Krufkybc286362006-01-11 19:40:17 -02001764 .muxsel = { 2, 3, 1, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001765 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001766 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001767 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001768 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001769 },
1770
1771 /* ---- card 0x50 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001772 [BTTV_BOARD_HAUPPAUGEPVR] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001773 .name = "Hauppauge WinTV PVR",
1774 .video_inputs = 4,
1775 .audio_inputs = 1,
1776 .tuner = 0,
1777 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -02001778 .muxsel = { 2, 0, 1, 1 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001779 .needs_tvaudio = 1,
1780 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001781 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001782 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001783 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001784
1785 .gpiomask = 7,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001786 .gpiomux = {7},
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001787 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001788 [BTTV_BOARD_GVBCTV5PCI] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001789 .name = "IODATA GV-BCTV5/PCI",
1790 .video_inputs = 3,
1791 .audio_inputs = 1,
1792 .tuner = 0,
1793 .svhs = 2,
1794 .gpiomask = 0x0f0f80,
Michael Krufkybc286362006-01-11 19:40:17 -02001795 .muxsel = {2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001796 .gpiomux = {0x030000, 0x010000, 0, 0 },
1797 .gpiomute = 0x020000,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001798 .no_msp34xx = 1,
1799 .pll = PLL_28,
1800 .tuner_type = TUNER_PHILIPS_NTSC_M,
1801 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001802 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001803 .audio_mode_gpio= gvbctv5pci_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001804 .has_radio = 1,
1805 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001806 [BTTV_BOARD_OSPREY1x0] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001807 .name = "Osprey 100/150 (878)", /* 0x1(2|3)-45C6-C1 */
1808 .video_inputs = 4, /* id-inputs-clock */
1809 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001810 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001811 .svhs = 3,
1812 .muxsel = { 3, 2, 0, 1 },
1813 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001814 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001815 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001816 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001817 .no_msp34xx = 1,
1818 .no_tda9875 = 1,
1819 .no_tda7432 = 1,
1820 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001821 [BTTV_BOARD_OSPREY1x0_848] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001822 .name = "Osprey 100/150 (848)", /* 0x04-54C0-C1 & older boards */
1823 .video_inputs = 3,
1824 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001825 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001826 .svhs = 2,
1827 .muxsel = { 2, 3, 1 },
1828 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001829 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001830 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001831 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001832 .no_msp34xx = 1,
1833 .no_tda9875 = 1,
1834 .no_tda7432 = 1,
1835 },
1836
1837 /* ---- card 0x54 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001838 [BTTV_BOARD_OSPREY101_848] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001839 .name = "Osprey 101 (848)", /* 0x05-40C0-C1 */
1840 .video_inputs = 2,
1841 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001842 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001843 .svhs = 1,
1844 .muxsel = { 3, 1 },
1845 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001846 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001847 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001848 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001849 .no_msp34xx = 1,
1850 .no_tda9875 = 1,
1851 .no_tda7432 = 1,
1852 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001853 [BTTV_BOARD_OSPREY1x1] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001854 .name = "Osprey 101/151", /* 0x1(4|5)-0004-C4 */
1855 .video_inputs = 1,
1856 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001857 .tuner = UNSET,
1858 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001859 .muxsel = { 0 },
1860 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001861 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001862 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001863 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001864 .no_msp34xx = 1,
1865 .no_tda9875 = 1,
1866 .no_tda7432 = 1,
1867 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001868 [BTTV_BOARD_OSPREY1x1_SVID] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001869 .name = "Osprey 101/151 w/ svid", /* 0x(16|17|20)-00C4-C1 */
1870 .video_inputs = 2,
1871 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001872 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001873 .svhs = 1,
1874 .muxsel = { 0, 1 },
1875 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001876 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001877 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001878 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001879 .no_msp34xx = 1,
1880 .no_tda9875 = 1,
1881 .no_tda7432 = 1,
1882 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001883 [BTTV_BOARD_OSPREY2xx] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001884 .name = "Osprey 200/201/250/251", /* 0x1(8|9|E|F)-0004-C4 */
1885 .video_inputs = 1,
1886 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001887 .tuner = UNSET,
1888 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001889 .muxsel = { 0 },
1890 .pll = PLL_28,
1891 .tuner_type = UNSET,
1892 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001893 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001894 .no_msp34xx = 1,
1895 .no_tda9875 = 1,
1896 .no_tda7432 = 1,
1897 },
1898
1899 /* ---- card 0x58 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001900 [BTTV_BOARD_OSPREY2x0_SVID] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001901 .name = "Osprey 200/250", /* 0x1(A|B)-00C4-C1 */
1902 .video_inputs = 2,
1903 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001904 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001905 .svhs = 1,
1906 .muxsel = { 0, 1 },
1907 .pll = PLL_28,
1908 .tuner_type = UNSET,
1909 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001910 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001911 .no_msp34xx = 1,
1912 .no_tda9875 = 1,
1913 .no_tda7432 = 1,
1914 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001915 [BTTV_BOARD_OSPREY2x0] = {
Michael Krufky52398ef2006-05-26 02:13:15 -03001916 .name = "Osprey 210/220/230", /* 0x1(A|B)-04C0-C1 */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001917 .video_inputs = 2,
1918 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001919 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001920 .svhs = 1,
1921 .muxsel = { 2, 3 },
1922 .pll = PLL_28,
1923 .tuner_type = UNSET,
1924 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001925 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001926 .no_msp34xx = 1,
1927 .no_tda9875 = 1,
1928 .no_tda7432 = 1,
1929 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001930 [BTTV_BOARD_OSPREY500] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001931 .name = "Osprey 500", /* 500 */
1932 .video_inputs = 2,
1933 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001934 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001935 .svhs = 1,
1936 .muxsel = { 2, 3 },
1937 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001938 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001939 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001940 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001941 .no_msp34xx = 1,
1942 .no_tda9875 = 1,
1943 .no_tda7432 = 1,
1944 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001945 [BTTV_BOARD_OSPREY540] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001946 .name = "Osprey 540", /* 540 */
1947 .video_inputs = 4,
1948 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001949 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001950 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001951 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001952 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001953 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001954 .no_msp34xx = 1,
1955 .no_tda9875 = 1,
1956 .no_tda7432 = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001957 },
1958
1959 /* ---- card 0x5C ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001960 [BTTV_BOARD_OSPREY2000] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001961 .name = "Osprey 2000", /* 2000 */
1962 .video_inputs = 2,
1963 .audio_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001964 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001965 .svhs = 1,
1966 .muxsel = { 2, 3 },
1967 .pll = PLL_28,
1968 .tuner_type = UNSET,
1969 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001970 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001971 .no_msp34xx = 1,
1972 .no_tda9875 = 1,
1973 .no_tda7432 = 1, /* must avoid, conflicts with the bt860 */
1974 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001975 [BTTV_BOARD_IDS_EAGLE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001976 /* M G Berberich <berberic@forwiss.uni-passau.de> */
1977 .name = "IDS Eagle",
1978 .video_inputs = 4,
1979 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001980 .tuner = UNSET,
1981 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001982 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08001983 .radio_addr = ADDR_UNSET,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001984 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001985 .gpiomask = 0,
1986 .muxsel = { 0, 1, 2, 3 },
1987 .muxsel_hook = eagle_muxsel,
1988 .no_msp34xx = 1,
1989 .no_tda9875 = 1,
1990 .pll = PLL_28,
1991 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001992 [BTTV_BOARD_PINNACLESAT] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001993 .name = "Pinnacle PCTV Sat",
1994 .video_inputs = 2,
1995 .audio_inputs = 0,
1996 .svhs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03001997 .tuner = UNSET,
1998 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08001999 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002000 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002001 .no_msp34xx = 1,
2002 .no_tda9875 = 1,
2003 .no_tda7432 = 1,
Mauro Carvalho Chehabd2be8932006-10-02 23:52:48 -03002004 .muxsel = { 3, 1 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002005 .pll = PLL_28,
2006 .no_gpioirq = 1,
2007 .has_dvb = 1,
2008 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002009 [BTTV_BOARD_FORMAC_PROTV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002010 .name = "Formac ProTV II (bt878)",
2011 .video_inputs = 4,
2012 .audio_inputs = 1,
2013 .tuner = 0,
2014 .svhs = 3,
2015 .gpiomask = 2,
2016 /* TV, Comp1, Composite over SVID con, SVID */
Michael Krufkybc286362006-01-11 19:40:17 -02002017 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002018 .gpiomux = { 2, 2, 0, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002019 .pll = PLL_28,
2020 .has_radio = 1,
2021 .tuner_type = TUNER_PHILIPS_PAL,
2022 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002023 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002024 /* sound routing:
2025 GPIO=0x00,0x01,0x03: mute (?)
2026 0x02: both TV and radio (tuner: FM1216/I)
2027 The card has onboard audio connectors labeled "cdrom" and "board",
2028 not soldered here, though unknown wiring.
2029 Card lacks: external audio in, pci subsystem id.
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07002030 */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002031 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002033 /* ---- card 0x60 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002034 [BTTV_BOARD_MACHTV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002035 .name = "MachTV",
2036 .video_inputs = 3,
2037 .audio_inputs = 1,
2038 .tuner = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002039 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002040 .gpiomask = 7,
2041 .muxsel = { 2, 3, 1, 1},
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002042 .gpiomux = { 0, 1, 2, 3},
2043 .gpiomute = 4,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002044 .needs_tvaudio = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002045 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002046 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002047 .radio_addr = ADDR_UNSET,
Michael Krufkycf583ac2005-11-08 21:37:03 -08002048 .pll = PLL_28,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002049 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002050 [BTTV_BOARD_EURESYS_PICOLO] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002051 .name = "Euresys Picolo",
2052 .video_inputs = 3,
2053 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002054 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002055 .svhs = 2,
2056 .gpiomask = 0,
2057 .no_msp34xx = 1,
2058 .no_tda9875 = 1,
2059 .no_tda7432 = 1,
2060 .muxsel = { 2, 0, 1},
2061 .pll = PLL_28,
2062 .tuner_type = UNSET,
2063 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002064 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002065 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002066 [BTTV_BOARD_PV150] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002067 /* Luc Van Hoeylandt <luc@e-magic.be> */
2068 .name = "ProVideo PV150", /* 0x4f */
2069 .video_inputs = 2,
2070 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002071 .tuner = UNSET,
2072 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002073 .gpiomask = 0,
2074 .muxsel = { 2, 3 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002075 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002076 .needs_tvaudio = 0,
2077 .no_msp34xx = 1,
2078 .pll = PLL_28,
2079 .tuner_type = UNSET,
2080 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002081 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002082 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002083 [BTTV_BOARD_AD_TVK503] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002084 /* Hiroshi Takekawa <sian@big.or.jp> */
2085 /* This card lacks subsystem ID */
2086 .name = "AD-TVK503", /* 0x63 */
2087 .video_inputs = 4,
2088 .audio_inputs = 1,
2089 .tuner = 0,
2090 .svhs = 2,
2091 .gpiomask = 0x001e8007,
2092 .muxsel = { 2, 3, 1, 0 },
2093 /* Tuner, Radio, external, internal, off, on */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002094 .gpiomux = { 0x08, 0x0f, 0x0a, 0x08 },
2095 .gpiomute = 0x0f,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002096 .needs_tvaudio = 0,
2097 .no_msp34xx = 1,
2098 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002099 .tuner_type = TUNER_PHILIPS_NTSC,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002100 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002101 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03002102 .audio_mode_gpio= adtvk503_audio,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002103 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002105 /* ---- card 0x64 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002106 [BTTV_BOARD_HERCULES_SM_TV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002107 .name = "Hercules Smart TV Stereo",
2108 .video_inputs = 4,
2109 .audio_inputs = 1,
2110 .tuner = 0,
2111 .svhs = 2,
2112 .gpiomask = 0x00,
2113 .muxsel = { 2, 3, 1, 1 },
2114 .needs_tvaudio = 1,
2115 .no_msp34xx = 1,
2116 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002117 .tuner_type = TUNER_PHILIPS_PAL,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002118 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002119 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002120 /* Notes:
2121 - card lacks subsystem ID
2122 - stereo variant w/ daughter board with tda9874a @0xb0
2123 - Audio Routing:
2124 always from tda9874 independent of GPIO (?)
2125 external line in: unknown
2126 - Other chips: em78p156elp @ 0x96 (probably IR remote control)
2127 hef4053 (instead 4052) for unknown function
2128 */
2129 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002130 [BTTV_BOARD_PACETV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002131 .name = "Pace TV & Radio Card",
2132 .video_inputs = 4,
2133 .audio_inputs = 1,
2134 .tuner = 0,
2135 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -02002136 .muxsel = { 2, 3, 1, 1 }, /* Tuner, CVid, SVid, CVid over SVid connector */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002137 .gpiomask = 0,
2138 .no_tda9875 = 1,
2139 .no_tda7432 = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002140 .tuner_type = TUNER_PHILIPS_PAL_I,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002141 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002142 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002143 .has_radio = 1,
2144 .pll = PLL_28,
2145 /* Bt878, Bt832, FI1246 tuner; no pci subsystem id
2146 only internal line out: (4pin header) RGGL
2147 Radio must be decoded by msp3410d (not routed through)*/
2148 /*
2149 .digital_mode = DIGITAL_MODE_CAMERA, todo!
2150 */
2151 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002152 [BTTV_BOARD_IVC200] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002153 /* Chris Willing <chris@vislab.usyd.edu.au> */
2154 .name = "IVC-200",
2155 .video_inputs = 1,
2156 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002157 .tuner = UNSET,
2158 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002159 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002160 .radio_addr = ADDR_UNSET,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002161 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002162 .gpiomask = 0xdf,
2163 .muxsel = { 2 },
2164 .pll = PLL_28,
2165 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002166 [BTTV_BOARD_XGUARD] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002167 .name = "Grand X-Guard / Trust 814PCI",
2168 .video_inputs = 16,
2169 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002170 .tuner = UNSET,
2171 .svhs = UNSET,
2172 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002173 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002174 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002175 .gpiomask2 = 0xff,
2176 .muxsel = { 2,2,2,2, 3,3,3,3, 1,1,1,1, 0,0,0,0 },
2177 .muxsel_hook = xguard_muxsel,
2178 .no_msp34xx = 1,
2179 .no_tda9875 = 1,
2180 .no_tda7432 = 1,
2181 .pll = PLL_28,
2182 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002184 /* ---- card 0x68 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002185 [BTTV_BOARD_NEBULA_DIGITV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002186 .name = "Nebula Electronics DigiTV",
2187 .video_inputs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002188 .tuner = UNSET,
2189 .svhs = UNSET,
Michael Krufkybc286362006-01-11 19:40:17 -02002190 .muxsel = { 2, 3, 1, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002191 .no_msp34xx = 1,
2192 .no_tda9875 = 1,
2193 .no_tda7432 = 1,
2194 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002195 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002196 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002197 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002198 .has_dvb = 1,
Mark Weaver6c6c0b22005-11-13 16:07:52 -08002199 .has_remote = 1,
2200 .gpiomask = 0x1b,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002201 .no_gpioirq = 1,
2202 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002203 [BTTV_BOARD_PV143] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002204 /* Jorge Boncompte - DTI2 <jorge@dti2.net> */
2205 .name = "ProVideo PV143",
2206 .video_inputs = 4,
2207 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002208 .tuner = UNSET,
2209 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002210 .gpiomask = 0,
2211 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002212 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002213 .needs_tvaudio = 0,
2214 .no_msp34xx = 1,
2215 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002216 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002217 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002218 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002219 },
Dirk Heer05583622008-11-21 19:00:55 -03002220 [BTTV_BOARD_VD009X1_VD011_MINIDIN] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002221 /* M.Klahr@phytec.de */
Dirk Heer05583622008-11-21 19:00:55 -03002222 .name = "PHYTEC VD-009-X1 VD-011 MiniDIN (bt878)",
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002223 .video_inputs = 4,
2224 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002225 .tuner = UNSET, /* card has no tuner */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002226 .svhs = 3,
2227 .gpiomask = 0x00,
Michael Krufkybc286362006-01-11 19:40:17 -02002228 .muxsel = { 2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002229 .gpiomux = { 0, 0, 0, 0 }, /* card has no audio */
Dirk Heer05583622008-11-21 19:00:55 -03002230 .needs_tvaudio = 0,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002231 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002232 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002233 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002234 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002235 },
Dirk Heer05583622008-11-21 19:00:55 -03002236 [BTTV_BOARD_VD009X1_VD011_COMBI] = {
2237 .name = "PHYTEC VD-009-X1 VD-011 Combi (bt878)",
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002238 .video_inputs = 4,
2239 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002240 .tuner = UNSET, /* card has no tuner */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002241 .svhs = 3,
2242 .gpiomask = 0x00,
Michael Krufkybc286362006-01-11 19:40:17 -02002243 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002244 .gpiomux = { 0, 0, 0, 0 }, /* card has no audio */
Dirk Heer05583622008-11-21 19:00:55 -03002245 .needs_tvaudio = 0,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002246 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002247 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002248 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002249 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002250 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002252 /* ---- card 0x6c ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002253 [BTTV_BOARD_VD009_MINIDIN] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002254 .name = "PHYTEC VD-009 MiniDIN (bt878)",
2255 .video_inputs = 10,
2256 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002257 .tuner = UNSET, /* card has no tuner */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002258 .svhs = 9,
2259 .gpiomask = 0x00,
2260 .gpiomask2 = 0x03, /* gpiomask2 defines the bits used to switch audio
2261 via the upper nibble of muxsel. here: used for
2262 xternal video-mux */
2263 .muxsel = { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x00 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002264 .gpiomux = { 0, 0, 0, 0 }, /* card has no audio */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002265 .needs_tvaudio = 1,
2266 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002267 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002268 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002269 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002270 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002271 [BTTV_BOARD_VD009_COMBI] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002272 .name = "PHYTEC VD-009 Combi (bt878)",
2273 .video_inputs = 10,
2274 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002275 .tuner = UNSET, /* card has no tuner */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002276 .svhs = 9,
2277 .gpiomask = 0x00,
2278 .gpiomask2 = 0x03, /* gpiomask2 defines the bits used to switch audio
2279 via the upper nibble of muxsel. here: used for
2280 xternal video-mux */
2281 .muxsel = { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x01 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002282 .gpiomux = { 0, 0, 0, 0 }, /* card has no audio */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002283 .needs_tvaudio = 1,
2284 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002285 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002286 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002287 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002288 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002289 [BTTV_BOARD_IVC100] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002290 .name = "IVC-100",
2291 .video_inputs = 4,
2292 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002293 .tuner = UNSET,
2294 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002295 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002296 .radio_addr = ADDR_UNSET,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002297 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002298 .gpiomask = 0xdf,
2299 .muxsel = { 2, 3, 1, 0 },
2300 .pll = PLL_28,
2301 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002302 [BTTV_BOARD_IVC120] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002303 /* IVC-120G - Alan Garfield <alan@fromorbit.com> */
2304 .name = "IVC-120G",
2305 .video_inputs = 16,
2306 .audio_inputs = 0, /* card has no audio */
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002307 .tuner = UNSET, /* card has no tuner */
2308 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002309 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002310 .radio_addr = ADDR_UNSET,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002311 .svhs = UNSET, /* card has no svhs */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002312 .needs_tvaudio = 0,
2313 .no_msp34xx = 1,
2314 .no_tda9875 = 1,
2315 .no_tda7432 = 1,
2316 .gpiomask = 0x00,
2317 .muxsel = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
2318 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10 },
2319 .muxsel_hook = ivc120_muxsel,
2320 .pll = PLL_28,
2321 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002323 /* ---- card 0x70 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002324 [BTTV_BOARD_PC_HDTV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002325 .name = "pcHDTV HD-2000 TV",
2326 .video_inputs = 4,
2327 .audio_inputs = 1,
2328 .tuner = 0,
2329 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -02002330 .muxsel = { 2, 3, 1, 0 },
Michael Krufkyab8b8702008-04-22 14:46:05 -03002331 .tuner_type = TUNER_PHILIPS_FCV1236D,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002332 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002333 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002334 .has_dvb = 1,
2335 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002336 [BTTV_BOARD_TWINHAN_DST] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002337 .name = "Twinhan DST + clones",
2338 .no_msp34xx = 1,
2339 .no_tda9875 = 1,
2340 .no_tda7432 = 1,
2341 .tuner_type = TUNER_ABSENT,
2342 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002343 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002344 .no_video = 1,
2345 .has_dvb = 1,
2346 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002347 [BTTV_BOARD_WINFASTVC100] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002348 .name = "Winfast VC100",
2349 .video_inputs = 3,
2350 .audio_inputs = 0,
2351 .svhs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002352 .tuner = UNSET,
Michael Krufkybc286362006-01-11 19:40:17 -02002353 .muxsel = { 3, 1, 1, 3 }, /* Vid In, SVid In, Vid over SVid in connector */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002354 .no_msp34xx = 1,
2355 .no_tda9875 = 1,
2356 .no_tda7432 = 1,
2357 .tuner_type = TUNER_ABSENT,
2358 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002359 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002360 .pll = PLL_28,
2361 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002362 [BTTV_BOARD_TEV560] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002363 .name = "Teppro TEV-560/InterVision IV-560",
2364 .video_inputs = 3,
2365 .audio_inputs = 1,
2366 .tuner = 0,
2367 .svhs = 2,
2368 .gpiomask = 3,
Michael Krufkybc286362006-01-11 19:40:17 -02002369 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002370 .gpiomux = { 1, 1, 1, 1 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002371 .needs_tvaudio = 1,
2372 .tuner_type = TUNER_PHILIPS_PAL,
2373 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002374 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002375 .pll = PLL_35,
2376 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002378 /* ---- card 0x74 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002379 [BTTV_BOARD_SIMUS_GVC1100] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002380 .name = "SIMUS GVC1100",
2381 .video_inputs = 4,
2382 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002383 .tuner = UNSET,
2384 .svhs = UNSET,
2385 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002386 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002387 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002388 .pll = PLL_28,
Michael Krufkybc286362006-01-11 19:40:17 -02002389 .muxsel = { 2, 2, 2, 2 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002390 .gpiomask = 0x3F,
2391 .muxsel_hook = gvc1100_muxsel,
2392 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002393 [BTTV_BOARD_NGSTV_PLUS] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002394 /* Carlos Silva r3pek@r3pek.homelinux.org || card 0x75 */
2395 .name = "NGS NGSTV+",
2396 .video_inputs = 3,
2397 .tuner = 0,
2398 .svhs = 2,
2399 .gpiomask = 0x008007,
Michael Krufkybc286362006-01-11 19:40:17 -02002400 .muxsel = { 2, 3, 0, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002401 .gpiomux = { 0, 0, 0, 0 },
2402 .gpiomute = 0x000003,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002403 .pll = PLL_28,
2404 .tuner_type = TUNER_PHILIPS_PAL,
2405 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002406 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002407 .has_remote = 1,
2408 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002409 [BTTV_BOARD_LMLBT4] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002410 /* http://linuxmedialabs.com */
2411 .name = "LMLBT4",
2412 .video_inputs = 4, /* IN1,IN2,IN3,IN4 */
2413 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002414 .tuner = UNSET,
2415 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002416 .muxsel = { 2, 3, 1, 0 },
2417 .no_msp34xx = 1,
2418 .no_tda9875 = 1,
2419 .no_tda7432 = 1,
2420 .needs_tvaudio = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002421 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002422 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002423 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002424 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002425 [BTTV_BOARD_TEKRAM_M205] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002426 /* Helmroos Harri <harri.helmroos@pp.inet.fi> */
2427 .name = "Tekram M205 PRO",
2428 .video_inputs = 3,
2429 .audio_inputs = 1,
2430 .tuner = 0,
2431 .tuner_type = TUNER_PHILIPS_PAL,
2432 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002433 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002434 .svhs = 2,
2435 .needs_tvaudio = 0,
2436 .gpiomask = 0x68,
Michael Krufkybc286362006-01-11 19:40:17 -02002437 .muxsel = { 2, 3, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002438 .gpiomux = { 0x68, 0x68, 0x61, 0x61 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002439 .pll = PLL_28,
2440 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002442 /* ---- card 0x78 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002443 [BTTV_BOARD_CONTVFMI] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002444 /* Javier Cendan Ares <jcendan@lycos.es> */
2445 /* bt878 TV + FM without subsystem ID */
2446 .name = "Conceptronic CONTVFMi",
2447 .video_inputs = 3,
2448 .audio_inputs = 1,
2449 .tuner = 0,
2450 .svhs = 2,
2451 .gpiomask = 0x008007,
2452 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002453 .gpiomux = { 0, 1, 2, 2 },
2454 .gpiomute = 3,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002455 .needs_tvaudio = 0,
2456 .pll = PLL_28,
2457 .tuner_type = TUNER_PHILIPS_PAL,
2458 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002459 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002460 .has_remote = 1,
2461 .has_radio = 1,
2462 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002463 [BTTV_BOARD_PICOLO_TETRA_CHIP] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002464 /*Eric DEBIEF <debief@telemsa.com>*/
2465 /*EURESYS Picolo Tetra : 4 Conexant Fusion 878A, no audio, video input set with analog multiplexers GPIO controled*/
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002466 /* adds picolo_tetra_muxsel(), picolo_tetra_init(), the folowing declaration strucure, and #define BTTV_BOARD_PICOLO_TETRA_CHIP*/
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002467 /*0x79 in bttv.h*/
2468 .name = "Euresys Picolo Tetra",
2469 .video_inputs = 4,
2470 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002471 .tuner = UNSET,
2472 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002473 .gpiomask = 0,
2474 .gpiomask2 = 0x3C<<16,/*Set the GPIO[18]->GPIO[21] as output pin.==> drive the video inputs through analog multiplexers*/
2475 .no_msp34xx = 1,
2476 .no_tda9875 = 1,
2477 .no_tda7432 = 1,
2478 .muxsel = {2,2,2,2},/*878A input is always MUX0, see above.*/
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002479 .gpiomux = { 0, 0, 0, 0 }, /* card has no audio */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002480 .pll = PLL_28,
2481 .needs_tvaudio = 0,
2482 .muxsel_hook = picolo_tetra_muxsel,/*Required as it doesn't follow the classic input selection policy*/
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002483 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002484 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002485 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002486 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002487 [BTTV_BOARD_SPIRIT_TV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002488 /* Spirit TV Tuner from http://spiritmodems.com.au */
2489 /* Stafford Goodsell <surge@goliath.homeunix.org> */
2490 .name = "Spirit TV Tuner",
2491 .video_inputs = 3,
2492 .audio_inputs = 1,
2493 .tuner = 0,
2494 .svhs = 2,
2495 .gpiomask = 0x0000000f,
2496 .muxsel = { 2, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002497 .gpiomux = { 0x02, 0x00, 0x00, 0x00 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002498 .tuner_type = TUNER_TEMIC_PAL,
2499 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002500 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002501 .no_msp34xx = 1,
2502 .no_tda9875 = 1,
2503 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002504 [BTTV_BOARD_AVDVBT_771] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002505 /* Wolfram Joost <wojo@frokaschwei.de> */
2506 .name = "AVerMedia AVerTV DVB-T 771",
2507 .video_inputs = 2,
2508 .svhs = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002509 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002510 .tuner_type = TUNER_ABSENT,
2511 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002512 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002513 .muxsel = { 3 , 3 },
2514 .no_msp34xx = 1,
2515 .no_tda9875 = 1,
2516 .no_tda7432 = 1,
2517 .pll = PLL_28,
2518 .has_dvb = 1,
2519 .no_gpioirq = 1,
2520 .has_remote = 1,
2521 },
2522 /* ---- card 0x7c ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002523 [BTTV_BOARD_AVDVBT_761] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002524 /* Matt Jesson <dvb@jesson.eclipse.co.uk> */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002525 /* Based on the Nebula card data - added remote and new card number - BTTV_BOARD_AVDVBT_761, see also ir-kbd-gpio.c */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002526 .name = "AverMedia AverTV DVB-T 761",
2527 .video_inputs = 2,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002528 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002529 .svhs = 1,
Michael Krufkybc286362006-01-11 19:40:17 -02002530 .muxsel = { 3, 1, 2, 0 }, /* Comp0, S-Video, ?, ? */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002531 .no_msp34xx = 1,
2532 .no_tda9875 = 1,
2533 .no_tda7432 = 1,
2534 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002535 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002536 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002537 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002538 .has_dvb = 1,
2539 .no_gpioirq = 1,
2540 .has_remote = 1,
2541 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002542 [BTTV_BOARD_MATRIX_VISIONSQ] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002543 /* andre.schwarz@matrix-vision.de */
2544 .name = "MATRIX Vision Sigma-SQ",
2545 .video_inputs = 16,
2546 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002547 .tuner = UNSET,
2548 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002549 .gpiomask = 0x0,
2550 .muxsel = { 2, 2, 2, 2, 2, 2, 2, 2,
2551 3, 3, 3, 3, 3, 3, 3, 3 },
2552 .muxsel_hook = sigmaSQ_muxsel,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002553 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002554 .no_msp34xx = 1,
2555 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002556 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002557 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002558 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002559 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002560 [BTTV_BOARD_MATRIX_VISIONSLC] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002561 /* andre.schwarz@matrix-vision.de */
2562 .name = "MATRIX Vision Sigma-SLC",
2563 .video_inputs = 4,
2564 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002565 .tuner = UNSET,
2566 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002567 .gpiomask = 0x0,
2568 .muxsel = { 2, 2, 2, 2 },
2569 .muxsel_hook = sigmaSLC_muxsel,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002570 .gpiomux = { 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002571 .no_msp34xx = 1,
2572 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002573 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002574 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002575 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002576 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002577 /* BTTV_BOARD_APAC_VIEWCOMP */
2578 [BTTV_BOARD_APAC_VIEWCOMP] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002579 /* Attila Kondoros <attila.kondoros@chello.hu> */
2580 /* bt878 TV + FM 0x00000000 subsystem ID */
2581 .name = "APAC Viewcomp 878(AMAX)",
2582 .video_inputs = 2,
2583 .audio_inputs = 1,
2584 .tuner = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002585 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002586 .gpiomask = 0xFF,
Michael Krufkybc286362006-01-11 19:40:17 -02002587 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002588 .gpiomux = { 2, 0, 0, 0 },
2589 .gpiomute = 10,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002590 .needs_tvaudio = 0,
2591 .pll = PLL_28,
2592 .tuner_type = TUNER_PHILIPS_PAL,
2593 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002594 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002595 .has_remote = 1, /* miniremote works, see ir-kbd-gpio.c */
2596 .has_radio = 1, /* not every card has radio */
2597 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002599 /* ---- card 0x80 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002600 [BTTV_BOARD_DVICO_DVBT_LITE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002601 /* Chris Pascoe <c.pascoe@itee.uq.edu.au> */
2602 .name = "DViCO FusionHDTV DVB-T Lite",
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002603 .tuner = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002604 .no_msp34xx = 1,
2605 .no_tda9875 = 1,
2606 .no_tda7432 = 1,
2607 .pll = PLL_28,
2608 .no_video = 1,
2609 .has_dvb = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002610 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002611 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002612 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002613 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002614 [BTTV_BOARD_VGEAR_MYVCD] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002615 /* Steven <photon38@pchome.com.tw> */
2616 .name = "V-Gear MyVCD",
2617 .video_inputs = 3,
2618 .audio_inputs = 1,
2619 .tuner = 0,
2620 .svhs = 2,
2621 .gpiomask = 0x3f,
Michael Krufkybc286362006-01-11 19:40:17 -02002622 .muxsel = {2, 3, 1, 0 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002623 .gpiomux = {0x31, 0x31, 0x31, 0x31 },
2624 .gpiomute = 0x31,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002625 .no_msp34xx = 1,
2626 .pll = PLL_28,
2627 .tuner_type = TUNER_PHILIPS_NTSC_M,
2628 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002629 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002630 .has_radio = 0,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002631 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002632 [BTTV_BOARD_SUPER_TV] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002633 /* Rick C <cryptdragoon@gmail.com> */
2634 .name = "Super TV Tuner",
2635 .video_inputs = 4,
2636 .audio_inputs = 1,
2637 .tuner = 0,
2638 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -02002639 .muxsel = { 2, 3, 1, 0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002640 .tuner_type = TUNER_PHILIPS_NTSC,
2641 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002642 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002643 .gpiomask = 0x008007,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002644 .gpiomux = { 0, 0x000001,0,0 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002645 .needs_tvaudio = 1,
2646 .has_radio = 1,
2647 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002648 [BTTV_BOARD_TIBET_CS16] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002649 /* Chris Fanning <video4linux@haydon.net> */
2650 .name = "Tibet Systems 'Progress DVR' CS16",
2651 .video_inputs = 16,
2652 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002653 .tuner = UNSET,
2654 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002655 .muxsel = { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 },
2656 .pll = PLL_28,
2657 .no_msp34xx = 1,
2658 .no_tda9875 = 1,
2659 .no_tda7432 = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002660 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002661 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002662 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002663 .muxsel_hook = tibetCS16_muxsel,
2664 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002665 [BTTV_BOARD_KODICOM_4400R] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002666 /* Bill Brack <wbrack@mmm.com.hk> */
2667 /*
2668 * Note that, because of the card's wiring, the "master"
2669 * BT878A chip (i.e. the one which controls the analog switch
2670 * and must use this card type) is the 2nd one detected. The
2671 * other 3 chips should use card type 0x85, whose description
2672 * follows this one. There is a EEPROM on the card (which is
2673 * connected to the I2C of one of those other chips), but is
2674 * not currently handled. There is also a facility for a
2675 * "monitor", which is also not currently implemented.
2676 */
2677 .name = "Kodicom 4400R (master)",
2678 .video_inputs = 16,
2679 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002680 .tuner = UNSET,
2681 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002682 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002683 .radio_addr = ADDR_UNSET,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002684 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002685 /* GPIO bits 0-9 used for analog switch:
2686 * 00 - 03: camera selector
2687 * 04 - 06: channel (controller) selector
2688 * 07: data (1->on, 0->off)
2689 * 08: strobe
2690 * 09: reset
2691 * bit 16 is input from sync separator for the channel
2692 */
2693 .gpiomask = 0x0003ff,
2694 .no_gpioirq = 1,
2695 .muxsel = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2696 .pll = PLL_28,
2697 .no_msp34xx = 1,
2698 .no_tda7432 = 1,
2699 .no_tda9875 = 1,
2700 .muxsel_hook = kodicom4400r_muxsel,
2701 },
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002702 [BTTV_BOARD_KODICOM_4400R_SL] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002703 /* Bill Brack <wbrack@mmm.com.hk> */
2704 /* Note that, for reasons unknown, the "master" BT878A chip (i.e. the
2705 * one which controls the analog switch, and must use the card type)
2706 * is the 2nd one detected. The other 3 chips should use this card
2707 * type
2708 */
2709 .name = "Kodicom 4400R (slave)",
2710 .video_inputs = 16,
2711 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002712 .tuner = UNSET,
2713 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002714 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002715 .radio_addr = ADDR_UNSET,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002716 .svhs = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002717 .gpiomask = 0x010000,
2718 .no_gpioirq = 1,
2719 .muxsel = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2720 .pll = PLL_28,
2721 .no_msp34xx = 1,
2722 .no_tda7432 = 1,
2723 .no_tda9875 = 1,
2724 .muxsel_hook = kodicom4400r_muxsel,
2725 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002726 /* ---- card 0x86---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002727 [BTTV_BOARD_ADLINK_RTV24] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002728 /* Michael Henson <mhenson@clarityvi.com> */
2729 /* Adlink RTV24 with special unlock codes */
2730 .name = "Adlink RTV24",
2731 .video_inputs = 4,
2732 .audio_inputs = 1,
2733 .tuner = 0,
2734 .svhs = 2,
Michael Krufkybc286362006-01-11 19:40:17 -02002735 .muxsel = { 2, 3, 1, 0 },
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002736 .tuner_type = UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002737 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002738 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002739 .pll = PLL_28,
2740 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002741 /* ---- card 0x87---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002742 [BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002743 /* Michael Krufky <mkrufky@m1k.net> */
2744 .name = "DViCO FusionHDTV 5 Lite",
2745 .tuner = 0,
Michael Krufky9c26c8b2006-04-27 01:29:17 -03002746 .tuner_type = TUNER_LG_TDVS_H06XF, /* TDVS-H064F */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002747 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002748 .radio_addr = ADDR_UNSET,
Michael Krufky4b017412005-11-08 21:37:06 -08002749 .video_inputs = 3,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002750 .audio_inputs = 1,
2751 .svhs = 2,
Michael Krufky4b017412005-11-08 21:37:06 -08002752 .muxsel = { 2, 3, 1 },
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002753 .gpiomask = 0x00e00007,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002754 .gpiomux = { 0x00400005, 0, 0x00000001, 0 },
2755 .gpiomute = 0x00c00007,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002756 .no_msp34xx = 1,
2757 .no_tda9875 = 1,
2758 .no_tda7432 = 1,
2759 .has_dvb = 1,
2760 },
2761 /* ---- card 0x88---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002762 [BTTV_BOARD_ACORP_Y878F] = {
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -03002763 /* Mauro Carvalho Chehab <mchehab@infradead.org> */
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002764 .name = "Acorp Y878F",
2765 .video_inputs = 3,
2766 .audio_inputs = 1,
2767 .tuner = 0,
2768 .svhs = 2,
2769 .gpiomask = 0x01fe00,
Michael Krufkybc286362006-01-11 19:40:17 -02002770 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002771 .gpiomux = { 0x001e00, 0, 0x018000, 0x014000 },
2772 .gpiomute = 0x002000,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002773 .needs_tvaudio = 1,
2774 .pll = PLL_28,
2775 .tuner_type = TUNER_YMEC_TVF66T5_B_DFF,
2776 .tuner_addr = 0xc1 >>1,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002777 .radio_addr = 0xc1 >>1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002778 .has_radio = 1,
2779 },
2780 /* ---- card 0x89 ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002781 [BTTV_BOARD_CONCEPTRONIC_CTVFMI2] = {
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002782 .name = "Conceptronic CTVFMi v2",
2783 .video_inputs = 3,
2784 .audio_inputs = 1,
2785 .tuner = 0,
2786 .svhs = 2,
2787 .gpiomask = 0x001c0007,
2788 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002789 .gpiomux = { 0, 1, 2, 2 },
2790 .gpiomute = 3,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002791 .needs_tvaudio = 0,
2792 .pll = PLL_28,
Ricardo Cerqueira24d41222005-11-08 21:38:21 -08002793 .tuner_type = TUNER_TENA_9533_DI,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002794 .tuner_addr = ADDR_UNSET,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002795 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002796 .has_remote = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002797 .has_radio = 1,
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08002798 },
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002799 /* ---- card 0x8a ---------------------------------- */
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08002800 [BTTV_BOARD_PV_BT878P_2E] = {
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002801 .name = "Prolink Pixelview PV-BT878P+ (Rev.2E)",
2802 .video_inputs = 5,
2803 .audio_inputs = 1,
2804 .tuner = 0,
2805 .svhs = 3,
2806 .gpiomask = 0x01fe00,
2807 .muxsel = { 2,3,1,1,-1 },
2808 .digital_mode = DIGITAL_MODE_CAMERA,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002809 .gpiomux = { 0x00400, 0x10400, 0x04400, 0x80000 },
2810 .gpiomute = 0x12400,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002811 .no_msp34xx = 1,
2812 .pll = PLL_28,
2813 .tuner_type = TUNER_LG_PAL_FM,
2814 .tuner_addr = ADDR_UNSET,
2815 .radio_addr = ADDR_UNSET,
2816 .has_remote = 1,
2817 },
2818 /* ---- card 0x8b ---------------------------------- */
2819 [BTTV_BOARD_PV_M4900] = {
Jan Engelhardt96de0e22007-10-19 23:21:04 +02002820 /* Sérgio Fortier <sergiofortier@yahoo.com.br> */
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002821 .name = "Prolink PixelView PlayTV MPEG2 PV-M4900",
2822 .video_inputs = 3,
2823 .audio_inputs = 1,
2824 .tuner = 0,
2825 .svhs = 2,
2826 .gpiomask = 0x3f,
2827 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002828 .gpiomux = { 0x21, 0x20, 0x24, 0x2c },
2829 .gpiomute = 0x29,
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08002830 .no_msp34xx = 1,
2831 .pll = PLL_28,
2832 .tuner_type = TUNER_YMEC_TVF_5533MF,
2833 .tuner_addr = ADDR_UNSET,
2834 .radio_addr = ADDR_UNSET,
2835 .has_radio = 1,
2836 .has_remote = 1,
Kenth Anderssonf718e6e2005-11-08 21:37:02 -08002837 },
Michael Krufkycf583ac2005-11-08 21:37:03 -08002838 /* ---- card 0x8c ---------------------------------- */
Trent Piephocf784d52007-07-21 21:26:40 -03002839 /* Has four Bt878 chips behind a PCI bridge, each chip has:
2840 one external BNC composite input (mux 2)
2841 three internal composite inputs (unknown muxes)
2842 an 18-bit stereo A/D (CS5331A), which has:
2843 one external stereo unblanced (RCA) audio connection
2844 one (or 3?) internal stereo balanced (XLR) audio connection
2845 input is selected via gpio to a 14052B mux
2846 (mask=0x300, unbal=0x000, bal=0x100, ??=0x200,0x300)
2847 gain is controlled via an X9221A chip on the I2C bus @0x28
2848 sample rate is controlled via gpio to an MK1413S
2849 (mask=0x3, 32kHz=0x0, 44.1kHz=0x1, 48kHz=0x2, ??=0x3)
2850 There is neither a tuner nor an svideo input. */
Kenth Anderssonf718e6e2005-11-08 21:37:02 -08002851 [BTTV_BOARD_OSPREY440] = {
2852 .name = "Osprey 440",
Trent Piephocf784d52007-07-21 21:26:40 -03002853 .video_inputs = 4,
2854 .audio_inputs = 2, /* this is meaningless */
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002855 .tuner = UNSET,
Trent Piephocf784d52007-07-21 21:26:40 -03002856 .svhs = UNSET,
2857 .muxsel = { 2, 3, 0, 1 }, /* 3,0,1 are guesses */
2858 .gpiomask = 0x303,
2859 .gpiomute = 0x000, /* int + 32kHz */
2860 .gpiomux = { 0, 0, 0x000, 0x100},
Kenth Anderssonf718e6e2005-11-08 21:37:02 -08002861 .pll = PLL_28,
2862 .tuner_type = UNSET,
2863 .tuner_addr = ADDR_UNSET,
2864 .radio_addr = ADDR_UNSET,
2865 .no_msp34xx = 1,
2866 .no_tda9875 = 1,
2867 .no_tda7432 = 1,
2868 },
nshmyrev@yandex.ru71633c02005-11-08 21:37:38 -08002869 /* ---- card 0x8d ---------------------------------- */
2870 [BTTV_BOARD_ASOUND_SKYEYE] = {
2871 .name = "Asound Skyeye PCTV",
2872 .video_inputs = 3,
2873 .audio_inputs = 1,
2874 .tuner = 0,
2875 .svhs = 2,
2876 .gpiomask = 15,
Michael Krufkybc286362006-01-11 19:40:17 -02002877 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002878 .gpiomux = { 2, 0, 0, 0 },
2879 .gpiomute = 1,
nshmyrev@yandex.ru71633c02005-11-08 21:37:38 -08002880 .needs_tvaudio = 1,
2881 .pll = PLL_28,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002882 .tuner_type = TUNER_PHILIPS_NTSC,
nshmyrev@yandex.ru71633c02005-11-08 21:37:38 -08002883 .tuner_addr = ADDR_UNSET,
2884 .radio_addr = ADDR_UNSET,
2885 },
Bill Pechter633323f2005-11-13 16:07:50 -08002886 /* ---- card 0x8e ---------------------------------- */
2887 [BTTV_BOARD_SABRENT_TVFM] = {
2888 .name = "Sabrent TV-FM (bttv version)",
2889 .video_inputs = 3,
2890 .audio_inputs = 1,
2891 .tuner = 0,
2892 .svhs = 2,
2893 .gpiomask = 0x108007,
Michael Krufkybc286362006-01-11 19:40:17 -02002894 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002895 .gpiomux = { 100000, 100002, 100002, 100000 },
Bill Pechter633323f2005-11-13 16:07:50 -08002896 .no_msp34xx = 1,
2897 .no_tda9875 = 1,
2898 .no_tda7432 = 1,
2899 .pll = PLL_28,
2900 .tuner_type = TUNER_TNF_5335MF,
2901 .tuner_addr = ADDR_UNSET,
2902 .has_radio = 1,
2903 },
Steven Tothcd1257d2006-01-09 15:25:01 -02002904 /* ---- card 0x8f ---------------------------------- */
2905 [BTTV_BOARD_HAUPPAUGE_IMPACTVCB] = {
2906 .name = "Hauppauge ImpactVCB (bt878)",
2907 .video_inputs = 4,
2908 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002909 .tuner = UNSET,
2910 .svhs = UNSET,
Steven Tothcd1257d2006-01-09 15:25:01 -02002911 .gpiomask = 0x0f, /* old: 7 */
Michael Krufkybc286362006-01-11 19:40:17 -02002912 .muxsel = { 0, 1, 3, 2 }, /* Composite 0-3 */
Steven Tothcd1257d2006-01-09 15:25:01 -02002913 .no_msp34xx = 1,
2914 .no_tda9875 = 1,
2915 .no_tda7432 = 1,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002916 .tuner_type = UNSET,
Steven Tothcd1257d2006-01-09 15:25:01 -02002917 .tuner_addr = ADDR_UNSET,
2918 .radio_addr = ADDR_UNSET,
2919 },
Julian Calaby2d05ae62006-01-11 19:40:09 -02002920 [BTTV_BOARD_MACHTV_MAGICTV] = {
2921 /* Julian Calaby <julian.calaby@gmail.com>
2922 * Slightly different from original MachTV definition (0x60)
2923
2924 * FIXME: RegSpy says gpiomask should be "0x001c800f", but it
2925 * stuffs up remote chip. Bug is a pin on the jaecs is not set
2926 * properly (methinks) causing no keyup bits being set */
2927
2928 .name = "MagicTV", /* rebranded MachTV */
2929 .video_inputs = 3,
2930 .audio_inputs = 1,
2931 .tuner = 0,
2932 .svhs = 2,
2933 .gpiomask = 7,
2934 .muxsel = { 2, 3, 1, 1 },
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03002935 .gpiomux = { 0, 1, 2, 3 },
2936 .gpiomute = 4,
Julian Calaby2d05ae62006-01-11 19:40:09 -02002937 .tuner_type = TUNER_TEMIC_4009FR5_PAL,
2938 .tuner_addr = ADDR_UNSET,
2939 .radio_addr = ADDR_UNSET,
2940 .pll = PLL_28,
2941 .has_radio = 1,
2942 .has_remote = 1,
2943 },
Scott Alfter1ebba672007-04-02 14:22:39 -03002944 [BTTV_BOARD_SSAI_SECURITY] = {
2945 .name = "SSAI Security Video Interface",
2946 .video_inputs = 4,
2947 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002948 .tuner = UNSET,
2949 .svhs = UNSET,
Scott Alfter1ebba672007-04-02 14:22:39 -03002950 .muxsel = { 0, 1, 2, 3 },
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002951 .tuner_type = UNSET,
Scott Alfter1ebba672007-04-02 14:22:39 -03002952 .tuner_addr = ADDR_UNSET,
2953 .radio_addr = ADDR_UNSET,
2954 },
2955 [BTTV_BOARD_SSAI_ULTRASOUND] = {
2956 .name = "SSAI Ultrasound Video Interface",
2957 .video_inputs = 2,
2958 .audio_inputs = 0,
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002959 .tuner = UNSET,
Scott Alfter1ebba672007-04-02 14:22:39 -03002960 .svhs = 1,
2961 .muxsel = { 2, 0, 1, 3 },
Trent Piepho8c2c0df2007-06-28 18:30:36 -03002962 .tuner_type = UNSET,
Scott Alfter1ebba672007-04-02 14:22:39 -03002963 .tuner_addr = ADDR_UNSET,
2964 .radio_addr = ADDR_UNSET,
2965 },
Michael Krufky27cb7862007-06-28 12:19:20 -03002966 /* ---- card 0x94---------------------------------- */
2967 [BTTV_BOARD_DVICO_FUSIONHDTV_2] = {
2968 .name = "DViCO FusionHDTV 2",
2969 .tuner = 0,
Michael Krufkyab8b8702008-04-22 14:46:05 -03002970 .tuner_type = TUNER_PHILIPS_FCV1236D,
Michael Krufky27cb7862007-06-28 12:19:20 -03002971 .tuner_addr = ADDR_UNSET,
2972 .radio_addr = ADDR_UNSET,
2973 .video_inputs = 3,
2974 .audio_inputs = 1,
2975 .svhs = 2,
2976 .muxsel = { 2, 3, 1 },
2977 .gpiomask = 0x00e00007,
2978 .gpiomux = { 0x00400005, 0, 0x00000001, 0 },
2979 .gpiomute = 0x00c00007,
2980 .no_msp34xx = 1,
2981 .no_tda9875 = 1,
2982 .no_tda7432 = 1,
2983 },
Sascha Sommerb5457b72007-10-02 12:23:39 -03002984 /* ---- card 0x95---------------------------------- */
2985 [BTTV_BOARD_TYPHOON_TVTUNERPCI] = {
2986 .name = "Typhoon TV-Tuner PCI (50684)",
2987 .video_inputs = 3,
2988 .audio_inputs = 1,
2989 .tuner = 0,
2990 .svhs = 2,
2991 .gpiomask = 0x3014f,
2992 .muxsel = { 2, 3, 1, 1 },
2993 .gpiomux = { 0x20001,0x10001, 0, 0 },
2994 .gpiomute = 10,
2995 .needs_tvaudio = 1,
2996 .pll = PLL_28,
2997 .tuner_type = TUNER_PHILIPS_PAL_I,
2998 .tuner_addr = ADDR_UNSET,
2999 .radio_addr = ADDR_UNSET,
3000 },
Ernesto Hernández-Novich97275ac2008-04-22 14:45:58 -03003001 [BTTV_BOARD_GEOVISION_GV600] = {
3002 /* emhn@usb.ve */
3003 .name = "Geovision GV-600",
3004 .video_inputs = 16,
3005 .audio_inputs = 0,
3006 .tuner = UNSET,
3007 .svhs = UNSET,
3008 .gpiomask = 0x0,
3009 .muxsel = { 2, 2, 2, 2, 2, 2, 2, 2,
3010 2, 2, 2, 2, 2, 2, 2, 2 },
3011 .muxsel_hook = geovision_muxsel,
3012 .gpiomux = { 0 },
3013 .no_msp34xx = 1,
3014 .pll = PLL_28,
3015 .tuner_type = UNSET,
3016 .tuner_addr = ADDR_UNSET,
3017 .radio_addr = ADDR_UNSET,
3018 },
Mauro Lacye80faad2008-04-22 14:45:58 -03003019 [BTTV_BOARD_KOZUMI_KTV_01C] = {
3020 /* Mauro Lacy <mauro@lacy.com.ar>
3021 * Based on MagicTV and Conceptronic CONTVFMi */
3022
3023 .name = "Kozumi KTV-01C",
3024 .video_inputs = 3,
3025 .audio_inputs = 1,
3026 .tuner = 0,
3027 .svhs = 2,
3028 .gpiomask = 0x008007,
3029 .muxsel = { 2, 3, 1, 1 },
3030 .gpiomux = { 0, 1, 2, 2 }, /* CONTVFMi */
Mauro Lacye80faad2008-04-22 14:45:58 -03003031 .gpiomute = 3, /* CONTVFMi */
Mauro Lacye80faad2008-04-22 14:45:58 -03003032 .needs_tvaudio = 0,
3033 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, /* TCL MK3 */
3034 .tuner_addr = ADDR_UNSET,
3035 .radio_addr = ADDR_UNSET,
3036 .pll = PLL_28,
3037 .has_radio = 1,
3038 .has_remote = 1,
3039 },
Mauro Carvalho Chehab7d341a62008-08-05 10:14:13 -03003040 [BTTV_BOARD_ENLTV_FM_2] = {
3041 /* Encore TV Tuner Pro ENL TV-FM-2
3042 Mauro Carvalho Chehab <mchehab@infradead.org */
3043 .name = "Encore ENL TV-FM-2",
3044 .video_inputs = 3,
3045 .audio_inputs = 1,
3046 .tuner = 0,
3047 .svhs = 2,
3048 /* bit 6 -> IR disabled
3049 bit 18/17 = 00 -> mute
3050 01 -> enable external audio input
3051 10 -> internal audio input (mono?)
3052 11 -> internal audio input
3053 */
3054 .gpiomask = 0x060040,
3055 .muxsel = { 2, 3, 3 },
3056 .gpiomux = { 0x60000, 0x60000, 0x20000, 0x20000 },
3057 .gpiomute = 0,
3058 .tuner_type = TUNER_TCL_MF02GIP_5N,
3059 .tuner_addr = ADDR_UNSET,
3060 .radio_addr = ADDR_UNSET,
3061 .pll = PLL_28,
3062 .has_radio = 1,
3063 .has_remote = 1,
Dirk Heer05583622008-11-21 19:00:55 -03003064 },
3065 [BTTV_BOARD_VD012] = {
3066 /* D.Heer@Phytec.de */
3067 .name = "PHYTEC VD-012 (bt878)",
3068 .video_inputs = 4,
3069 .audio_inputs = 0,
3070 .tuner = UNSET, /* card has no tuner */
3071 .svhs = UNSET, /* card has no s-video */
3072 .gpiomask = 0x00,
3073 .muxsel = { 0, 2, 3, 1 },
3074 .gpiomux = { 0, 0, 0, 0 }, /* card has no audio */
3075 .needs_tvaudio = 0,
3076 .pll = PLL_28,
3077 .tuner_type = UNSET,
3078 .tuner_addr = ADDR_UNSET,
3079 .radio_addr = ADDR_UNSET,
3080 },
3081 [BTTV_BOARD_VD012_X1] = {
3082 /* D.Heer@Phytec.de */
3083 .name = "PHYTEC VD-012-X1 (bt878)",
3084 .video_inputs = 4,
3085 .audio_inputs = 0,
3086 .tuner = UNSET, /* card has no tuner */
3087 .svhs = 3,
3088 .gpiomask = 0x00,
3089 .muxsel = { 2, 3, 1 },
3090 .gpiomux = { 0, 0, 0, 0 }, /* card has no audio */
3091 .needs_tvaudio = 0,
3092 .pll = PLL_28,
3093 .tuner_type = UNSET,
3094 .tuner_addr = ADDR_UNSET,
3095 .radio_addr = ADDR_UNSET,
3096 },
3097 [BTTV_BOARD_VD012_X2] = {
3098 /* D.Heer@Phytec.de */
3099 .name = "PHYTEC VD-012-X2 (bt878)",
3100 .video_inputs = 4,
3101 .audio_inputs = 0,
3102 .tuner = UNSET, /* card has no tuner */
3103 .svhs = 3,
3104 .gpiomask = 0x00,
3105 .muxsel = { 3, 2, 1 },
3106 .gpiomux = { 0, 0, 0, 0 }, /* card has no audio */
3107 .needs_tvaudio = 0,
3108 .pll = PLL_28,
3109 .tuner_type = UNSET,
3110 .tuner_addr = ADDR_UNSET,
3111 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab7d341a62008-08-05 10:14:13 -03003112 }
Mauro Carvalho Chehab10c2c8b2005-11-08 21:36:56 -08003113};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
3115static const unsigned int bttv_num_tvcards = ARRAY_SIZE(bttv_tvcards);
3116
3117/* ----------------------------------------------------------------------- */
3118
3119static unsigned char eeprom_data[256];
3120
3121/*
3122 * identify card
3123 */
3124void __devinit bttv_idcard(struct bttv *btv)
3125{
3126 unsigned int gpiobits;
3127 int i,type;
3128 unsigned short tmp;
3129
3130 /* read PCI subsystem ID */
3131 pci_read_config_word(btv->c.pci, PCI_SUBSYSTEM_ID, &tmp);
3132 btv->cardid = tmp << 16;
3133 pci_read_config_word(btv->c.pci, PCI_SUBSYSTEM_VENDOR_ID, &tmp);
3134 btv->cardid |= tmp;
3135
3136 if (0 != btv->cardid && 0xffffffff != btv->cardid) {
3137 /* look for the card */
3138 for (type = -1, i = 0; cards[i].id != 0; i++)
3139 if (cards[i].id == btv->cardid)
3140 type = i;
3141
3142 if (type != -1) {
3143 /* found it */
3144 printk(KERN_INFO "bttv%d: detected: %s [card=%d], "
3145 "PCI subsystem ID is %04x:%04x\n",
3146 btv->c.nr,cards[type].name,cards[type].cardnr,
3147 btv->cardid & 0xffff,
3148 (btv->cardid >> 16) & 0xffff);
3149 btv->c.type = cards[type].cardnr;
3150 } else {
3151 /* 404 */
3152 printk(KERN_INFO "bttv%d: subsystem: %04x:%04x (UNKNOWN)\n",
3153 btv->c.nr, btv->cardid & 0xffff,
3154 (btv->cardid >> 16) & 0xffff);
3155 printk(KERN_DEBUG "please mail id, board name and "
Michael Krufky2a2d8572005-11-08 21:37:24 -08003156 "the correct card= insmod option to video4linux-list@redhat.com\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158 }
3159
3160 /* let the user override the autodetected type */
3161 if (card[btv->c.nr] < bttv_num_tvcards)
3162 btv->c.type=card[btv->c.nr];
3163
3164 /* print which card config we are using */
3165 printk(KERN_INFO "bttv%d: using: %s [card=%d,%s]\n",btv->c.nr,
3166 bttv_tvcards[btv->c.type].name, btv->c.type,
3167 card[btv->c.nr] < bttv_num_tvcards
3168 ? "insmod option" : "autodetected");
3169
3170 /* overwrite gpio stuff ?? */
3171 if (UNSET == audioall && UNSET == audiomux[0])
3172 return;
3173
3174 if (UNSET != audiomux[0]) {
3175 gpiobits = 0;
Mauro Carvalho Chehab57747b72007-03-28 22:37:20 -03003176 for (i = 0; i < ARRAY_SIZE(bttv_tvcards->gpiomux); i++) {
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03003177 bttv_tvcards[btv->c.type].gpiomux[i] = audiomux[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 gpiobits |= audiomux[i];
3179 }
3180 } else {
3181 gpiobits = audioall;
Mauro Carvalho Chehab57747b72007-03-28 22:37:20 -03003182 for (i = 0; i < ARRAY_SIZE(bttv_tvcards->gpiomux); i++) {
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03003183 bttv_tvcards[btv->c.type].gpiomux[i] = audioall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185 }
3186 bttv_tvcards[btv->c.type].gpiomask = (UNSET != gpiomask) ? gpiomask : gpiobits;
3187 printk(KERN_INFO "bttv%d: gpio config override: mask=0x%x, mux=",
3188 btv->c.nr,bttv_tvcards[btv->c.type].gpiomask);
Mauro Carvalho Chehab57747b72007-03-28 22:37:20 -03003189 for (i = 0; i < ARRAY_SIZE(bttv_tvcards->gpiomux); i++) {
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03003190 printk("%s0x%x", i ? "," : "", bttv_tvcards[btv->c.type].gpiomux[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 }
3192 printk("\n");
3193}
3194
3195/*
3196 * (most) board specific initialisations goes here
3197 */
3198
3199/* Some Modular Technology cards have an eeprom, but no subsystem ID */
Adrian Bunk943a4902005-12-01 00:51:35 -08003200static void identify_by_eeprom(struct bttv *btv, unsigned char eeprom_data[256])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201{
3202 int type = -1;
3203
3204 if (0 == strncmp(eeprom_data,"GET MM20xPCTV",13))
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003205 type = BTTV_BOARD_MODTEC_205;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 else if (0 == strncmp(eeprom_data+20,"Picolo",7))
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003207 type = BTTV_BOARD_EURESYS_PICOLO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 else if (eeprom_data[0] == 0x84 && eeprom_data[2]== 0)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003209 type = BTTV_BOARD_HAUPPAUGE; /* old bt848 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
3211 if (-1 != type) {
3212 btv->c.type = type;
3213 printk("bttv%d: detected by eeprom: %s [card=%d]\n",
3214 btv->c.nr, bttv_tvcards[btv->c.type].name, btv->c.type);
3215 }
3216}
3217
3218static void flyvideo_gpio(struct bttv *btv)
3219{
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003220 int gpio, has_remote, has_radio, is_capture_only;
3221 int is_lr90, has_tda9820_tda9821;
3222 int tuner_type = UNSET, ttype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224 gpio_inout(0xffffff, 0);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003225 udelay(8); /* without this we would see the 0x1800 mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 gpio = gpio_read();
3227 /* FIXME: must restore OUR_EN ??? */
3228
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003229 /* all cards provide GPIO info, some have an additional eeprom
3230 * LR50: GPIO coding can be found lower right CP1 .. CP9
3231 * CP9=GPIO23 .. CP1=GPIO15; when OPEN, the corresponding GPIO reads 1.
3232 * GPIO14-12: n.c.
3233 * LR90: GP9=GPIO23 .. GP1=GPIO15 (right above the bt878)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003235 * lowest 3 bytes are remote control codes (no handshake needed)
3236 * xxxFFF: No remote control chip soldered
3237 * xxxF00(LR26/LR50), xxxFE0(LR90): Remote control chip (LVA001 or CF45) soldered
3238 * Note: Some bits are Audio_Mask !
3239 */
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003240 ttype = (gpio & 0x0f0000) >> 16;
3241 switch (ttype) {
3242 case 0x0:
3243 tuner_type = 2; /* NTSC, e.g. TPI8NSR11P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 break;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003245 case 0x2:
3246 tuner_type = 39; /* LG NTSC (newer TAPC series) TAPC-H701P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 break;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003248 case 0x4:
3249 tuner_type = 5; /* Philips PAL TPI8PSB02P, TPI8PSB12P, TPI8PSB12D or FI1216, FM1216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 break;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003251 case 0x6:
3252 tuner_type = 37; /* LG PAL (newer TAPC series) TAPC-G702P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 break;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003254 case 0xC:
3255 tuner_type = 3; /* Philips SECAM(+PAL) FQ1216ME or FI1216MF */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 break;
3257 default:
3258 printk(KERN_INFO "bttv%d: FlyVideo_gpio: unknown tuner type.\n", btv->c.nr);
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 }
3261
3262 has_remote = gpio & 0x800000;
3263 has_radio = gpio & 0x400000;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003264 /* unknown 0x200000;
3265 * unknown2 0x100000; */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003266 is_capture_only = !(gpio & 0x008000); /* GPIO15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 has_tda9820_tda9821 = !(gpio & 0x004000);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003268 is_lr90 = !(gpio & 0x002000); /* else LR26/LR50 (LR38/LR51 f. capture only) */
3269 /*
3270 * gpio & 0x001000 output bit for audio routing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003272 if (is_capture_only)
3273 tuner_type = TUNER_ABSENT; /* No tuner present */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
3275 printk(KERN_INFO "bttv%d: FlyVideo Radio=%s RemoteControl=%s Tuner=%d gpio=0x%06x\n",
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003276 btv->c.nr, has_radio ? "yes" : "no ",
3277 has_remote ? "yes" : "no ", tuner_type, gpio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 printk(KERN_INFO "bttv%d: FlyVideo LR90=%s tda9821/tda9820=%s capture_only=%s\n",
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003279 btv->c.nr, is_lr90 ? "yes" : "no ",
3280 has_tda9820_tda9821 ? "yes" : "no ",
3281 is_capture_only ? "yes" : "no ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003283 if (tuner_type != UNSET) /* only set if known tuner autodetected, else let insmod option through */
3284 btv->tuner_type = tuner_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 btv->has_radio = has_radio;
3286
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003287 /* LR90 Audio Routing is done by 2 hef4052, so Audio_Mask has 4 bits: 0x001c80
3288 * LR26/LR50 only has 1 hef4052, Audio_Mask 0x000c00
3289 * Audio options: from tuner, from tda9821/tda9821(mono,stereo,sap), from tda9874, ext., mute */
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03003290 if (has_tda9820_tda9821)
3291 btv->audio_mode_gpio = lt9415_audio;
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03003292 /* todo: if(has_tda9874) btv->audio_mode_gpio = fv2000s_audio; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293}
3294
3295static int miro_tunermap[] = { 0,6,2,3, 4,5,6,0, 3,0,4,5, 5,2,16,1,
3296 14,2,17,1, 4,1,4,3, 1,2,16,1, 4,4,4,4 };
3297static int miro_fmtuner[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,1,
3298 1,1,1,1, 1,1,1,0, 0,0,0,0, 0,1,0,0 };
3299
3300static void miro_pinnacle_gpio(struct bttv *btv)
3301{
3302 int id,msp,gpio;
3303 char *info;
3304
3305 gpio_inout(0xffffff, 0);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003306 gpio = gpio_read();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 id = ((gpio>>10) & 63) -1;
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03003308 msp = bttv_I2CRead(btv, I2C_ADDR_MSP3400, "MSP34xx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 if (id < 32) {
3310 btv->tuner_type = miro_tunermap[id];
3311 if (0 == (gpio & 0x20)) {
3312 btv->has_radio = 1;
3313 if (!miro_fmtuner[id]) {
3314 btv->has_matchbox = 1;
3315 btv->mbox_we = (1<<6);
3316 btv->mbox_most = (1<<7);
3317 btv->mbox_clk = (1<<8);
3318 btv->mbox_data = (1<<9);
3319 btv->mbox_mask = (1<<6)|(1<<7)|(1<<8)|(1<<9);
3320 }
3321 } else {
3322 btv->has_radio = 0;
3323 }
3324 if (-1 != msp) {
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003325 if (btv->c.type == BTTV_BOARD_MIRO)
3326 btv->c.type = BTTV_BOARD_MIROPRO;
3327 if (btv->c.type == BTTV_BOARD_PINNACLE)
3328 btv->c.type = BTTV_BOARD_PINNACLEPRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 }
3330 printk(KERN_INFO
3331 "bttv%d: miro: id=%d tuner=%d radio=%s stereo=%s\n",
3332 btv->c.nr, id+1, btv->tuner_type,
3333 !btv->has_radio ? "no" :
3334 (btv->has_matchbox ? "matchbox" : "fmtuner"),
3335 (-1 == msp) ? "no" : "yes");
3336 } else {
3337 /* new cards with microtune tuner */
3338 id = 63 - id;
3339 btv->has_radio = 0;
3340 switch (id) {
3341 case 1:
3342 info = "PAL / mono";
Hans Verkuil39e8f402006-01-09 15:25:16 -02003343 btv->tda9887_conf = TDA9887_INTERCARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 break;
3345 case 2:
3346 info = "PAL+SECAM / stereo";
3347 btv->has_radio = 1;
Hans Verkuil39e8f402006-01-09 15:25:16 -02003348 btv->tda9887_conf = TDA9887_QSS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 break;
3350 case 3:
3351 info = "NTSC / stereo";
3352 btv->has_radio = 1;
Hans Verkuil39e8f402006-01-09 15:25:16 -02003353 btv->tda9887_conf = TDA9887_QSS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 break;
3355 case 4:
3356 info = "PAL+SECAM / mono";
Hans Verkuil39e8f402006-01-09 15:25:16 -02003357 btv->tda9887_conf = TDA9887_QSS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 break;
3359 case 5:
3360 info = "NTSC / mono";
Hans Verkuil39e8f402006-01-09 15:25:16 -02003361 btv->tda9887_conf = TDA9887_INTERCARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 break;
3363 case 6:
3364 info = "NTSC / stereo";
Hans Verkuil39e8f402006-01-09 15:25:16 -02003365 btv->tda9887_conf = TDA9887_INTERCARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 break;
3367 case 7:
3368 info = "PAL / stereo";
Hans Verkuil39e8f402006-01-09 15:25:16 -02003369 btv->tda9887_conf = TDA9887_INTERCARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 break;
3371 default:
3372 info = "oops: unknown card";
3373 break;
3374 }
3375 if (-1 != msp)
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003376 btv->c.type = BTTV_BOARD_PINNACLEPRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 printk(KERN_INFO
3378 "bttv%d: pinnacle/mt: id=%d info=\"%s\" radio=%s\n",
3379 btv->c.nr, id, info, btv->has_radio ? "yes" : "no");
Hans Verkuil39e8f402006-01-09 15:25:16 -02003380 btv->tuner_type = TUNER_MT2032;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 }
3382}
3383
3384/* GPIO21 L: Buffer aktiv, H: Buffer inaktiv */
3385#define LM1882_SYNC_DRIVE 0x200000L
3386
3387static void init_ids_eagle(struct bttv *btv)
3388{
3389 gpio_inout(0xffffff,0xFFFF37);
3390 gpio_write(0x200020);
3391
3392 /* flash strobe inverter ?! */
3393 gpio_write(0x200024);
3394
3395 /* switch sync drive off */
3396 gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE);
3397
3398 /* set BT848 muxel to 2 */
3399 btaor((2)<<5, ~(2<<5), BT848_IFORM);
3400}
3401
3402/* Muxsel helper for the IDS Eagle.
3403 * the eagles does not use the standard muxsel-bits but
3404 * has its own multiplexer */
3405static void eagle_muxsel(struct bttv *btv, unsigned int input)
3406{
3407 btaor((2)<<5, ~(3<<5), BT848_IFORM);
3408 gpio_bits(3,bttv_tvcards[btv->c.type].muxsel[input&7]);
3409
Michael Krufkyb930e1d2007-08-27 18:16:54 -03003410 /* composite */
3411 /* set chroma ADC to sleep */
3412 btor(BT848_ADC_C_SLEEP, BT848_ADC);
3413 /* set to composite video */
3414 btand(~BT848_CONTROL_COMP, BT848_E_CONTROL);
3415 btand(~BT848_CONTROL_COMP, BT848_O_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
Michael Krufkyb930e1d2007-08-27 18:16:54 -03003417 /* switch sync drive off */
3418 gpio_bits(LM1882_SYNC_DRIVE,LM1882_SYNC_DRIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419}
3420
3421static void gvc1100_muxsel(struct bttv *btv, unsigned int input)
3422{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003423 static const int masks[] = {0x30, 0x01, 0x12, 0x23};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 gpio_write(masks[input%4]);
3425}
3426
3427/* LMLBT4x initialization - to allow access to GPIO bits for sensors input and
3428 alarms output
3429
3430 GPIObit | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
3431 assignment | TI | O3|INx| O2| O1|IN4|IN3|IN2|IN1| | |
3432
3433 IN - sensor inputs, INx - sensor inputs and TI XORed together
3434 O1,O2,O3 - alarm outputs (relays)
3435
3436 OUT ENABLE 1 1 0 . 1 1 0 0 . 0 0 0 0 = 0x6C0
3437
3438*/
3439
3440static void init_lmlbt4x(struct bttv *btv)
3441{
3442 printk(KERN_DEBUG "LMLBT4x init\n");
3443 btwrite(0x000000, BT848_GPIO_REG_INP);
3444 gpio_inout(0xffffff, 0x0006C0);
3445 gpio_write(0x000000);
3446}
3447
3448static void sigmaSQ_muxsel(struct bttv *btv, unsigned int input)
3449{
3450 unsigned int inmux = input % 8;
3451 gpio_inout( 0xf, 0xf );
3452 gpio_bits( 0xf, inmux );
3453}
3454
3455static void sigmaSLC_muxsel(struct bttv *btv, unsigned int input)
3456{
3457 unsigned int inmux = input % 4;
3458 gpio_inout( 3<<9, 3<<9 );
3459 gpio_bits( 3<<9, inmux<<9 );
3460}
3461
Ernesto Hernández-Novich97275ac2008-04-22 14:45:58 -03003462static void geovision_muxsel(struct bttv *btv, unsigned int input)
3463{
3464 unsigned int inmux = input % 16;
3465 gpio_inout(0xf, 0xf);
3466 gpio_bits(0xf, inmux);
3467}
3468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469/* ----------------------------------------------------------------------- */
3470
3471static void bttv_reset_audio(struct bttv *btv)
3472{
3473 /*
3474 * BT878A has a audio-reset register.
3475 * 1. This register is an audio reset function but it is in
3476 * function-0 (video capture) address space.
3477 * 2. It is enough to do this once per power-up of the card.
3478 * 3. There is a typo in the Conexant doc -- it is not at
3479 * 0x5B, but at 0x058. (B is an odd-number, obviously a typo!).
3480 * --//Shrikumar 030609
3481 */
3482 if (btv->id != 878)
3483 return;
3484
3485 if (bttv_debug)
3486 printk("bttv%d: BT878A ARESET\n",btv->c.nr);
3487 btwrite((1<<7), 0x058);
3488 udelay(10);
3489 btwrite( 0, 0x058);
3490}
3491
3492/* initialization part one -- before registering i2c bus */
3493void __devinit bttv_init_card1(struct bttv *btv)
3494{
3495 switch (btv->c.type) {
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003496 case BTTV_BOARD_HAUPPAUGE:
3497 case BTTV_BOARD_HAUPPAUGE878:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003498 boot_msp34xx(btv,5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 break;
Wade Berrier434b2522007-06-25 13:02:16 -03003500 case BTTV_BOARD_VOODOOTV_200:
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003501 case BTTV_BOARD_VOODOOTV_FM:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003502 boot_msp34xx(btv,20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003504 case BTTV_BOARD_AVERMEDIA98:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 boot_msp34xx(btv,11);
3506 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003507 case BTTV_BOARD_HAUPPAUGEPVR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 pvr_boot(btv);
3509 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003510 case BTTV_BOARD_TWINHAN_DST:
3511 case BTTV_BOARD_AVDVBT_771:
3512 case BTTV_BOARD_PINNACLESAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 btv->use_i2c_hw = 1;
3514 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003515 case BTTV_BOARD_ADLINK_RTV24:
Michael Krufky7c08fb02005-11-08 21:36:21 -08003516 init_RTV24( btv );
3517 break;
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07003518
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 }
3520 if (!bttv_tvcards[btv->c.type].has_dvb)
3521 bttv_reset_audio(btv);
3522}
3523
3524/* initialization part two -- after registering i2c bus */
3525void __devinit bttv_init_card2(struct bttv *btv)
3526{
Mauro Carvalho Chehabf3b512f2005-11-08 21:38:23 -08003527 int addr=ADDR_UNSET;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003528
Trent Piephoac7dc842007-06-28 17:51:08 -03003529 btv->tuner_type = UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003531 if (BTTV_BOARD_UNKNOWN == btv->c.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 bttv_readee(btv,eeprom_data,0xa0);
3533 identify_by_eeprom(btv,eeprom_data);
3534 }
3535
3536 switch (btv->c.type) {
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003537 case BTTV_BOARD_MIRO:
3538 case BTTV_BOARD_MIROPRO:
3539 case BTTV_BOARD_PINNACLE:
3540 case BTTV_BOARD_PINNACLEPRO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 /* miro/pinnacle */
3542 miro_pinnacle_gpio(btv);
3543 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003544 case BTTV_BOARD_FLYVIDEO_98:
3545 case BTTV_BOARD_MAXI:
3546 case BTTV_BOARD_LIFE_FLYKIT:
3547 case BTTV_BOARD_FLYVIDEO:
3548 case BTTV_BOARD_TYPHOON_TVIEW:
3549 case BTTV_BOARD_CHRONOS_VS2:
3550 case BTTV_BOARD_FLYVIDEO_98FM:
3551 case BTTV_BOARD_FLYVIDEO2000:
3552 case BTTV_BOARD_FLYVIDEO98EZ:
3553 case BTTV_BOARD_CONFERENCETV:
3554 case BTTV_BOARD_LIFETEC_9415:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 flyvideo_gpio(btv);
3556 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003557 case BTTV_BOARD_HAUPPAUGE:
3558 case BTTV_BOARD_HAUPPAUGE878:
3559 case BTTV_BOARD_HAUPPAUGEPVR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 /* pick up some config infos from the eeprom */
3561 bttv_readee(btv,eeprom_data,0xa0);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003562 hauppauge_eeprom(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003564 case BTTV_BOARD_AVERMEDIA98:
3565 case BTTV_BOARD_AVPHONE98:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 bttv_readee(btv,eeprom_data,0xa0);
3567 avermedia_eeprom(btv);
3568 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003569 case BTTV_BOARD_PXC200:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 init_PXC200(btv);
3571 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003572 case BTTV_BOARD_PICOLO_TETRA_CHIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 picolo_tetra_init(btv);
3574 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003575 case BTTV_BOARD_VHX:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 btv->has_radio = 1;
3577 btv->has_matchbox = 1;
3578 btv->mbox_we = 0x20;
3579 btv->mbox_most = 0;
3580 btv->mbox_clk = 0x08;
3581 btv->mbox_data = 0x10;
3582 btv->mbox_mask = 0x38;
3583 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003584 case BTTV_BOARD_VOBIS_BOOSTAR:
3585 case BTTV_BOARD_TERRATV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 terratec_active_radio_upgrade(btv);
3587 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003588 case BTTV_BOARD_MAGICTVIEW061:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 if (btv->cardid == 0x3002144f) {
3590 btv->has_radio=1;
3591 printk("bttv%d: radio detected by subsystem id (CPH05x)\n",btv->c.nr);
3592 }
3593 break;
Michael Krufkyb930e1d2007-08-27 18:16:54 -03003594 case BTTV_BOARD_STB2:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003595 if (btv->cardid == 0x3060121a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 /* Fix up entry for 3DFX VoodooTV 100,
3597 which is an OEM STB card variant. */
3598 btv->has_radio=0;
3599 btv->tuner_type=TUNER_TEMIC_NTSC;
3600 }
3601 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003602 case BTTV_BOARD_OSPREY1x0:
3603 case BTTV_BOARD_OSPREY1x0_848:
3604 case BTTV_BOARD_OSPREY101_848:
3605 case BTTV_BOARD_OSPREY1x1:
3606 case BTTV_BOARD_OSPREY1x1_SVID:
3607 case BTTV_BOARD_OSPREY2xx:
3608 case BTTV_BOARD_OSPREY2x0_SVID:
3609 case BTTV_BOARD_OSPREY2x0:
Trent Piephocf784d52007-07-21 21:26:40 -03003610 case BTTV_BOARD_OSPREY440:
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003611 case BTTV_BOARD_OSPREY500:
3612 case BTTV_BOARD_OSPREY540:
3613 case BTTV_BOARD_OSPREY2000:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 bttv_readee(btv,eeprom_data,0xa0);
Trent Piephocf784d52007-07-21 21:26:40 -03003615 osprey_eeprom(btv, eeprom_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003617 case BTTV_BOARD_IDS_EAGLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 init_ids_eagle(btv);
3619 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003620 case BTTV_BOARD_MODTEC_205:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 bttv_readee(btv,eeprom_data,0xa0);
3622 modtec_eeprom(btv);
3623 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003624 case BTTV_BOARD_LMLBT4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 init_lmlbt4x(btv);
3626 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003627 case BTTV_BOARD_TIBET_CS16:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 tibetCS16_init(btv);
3629 break;
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08003630 case BTTV_BOARD_KODICOM_4400R:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 kodicom4400r_init(btv);
3632 break;
3633 }
3634
3635 /* pll configuration */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003636 if (!(btv->id==848 && btv->revision==0x11)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 /* defaults from card list */
3638 if (PLL_28 == bttv_tvcards[btv->c.type].pll) {
3639 btv->pll.pll_ifreq=28636363;
3640 btv->pll.pll_crystal=BT848_IFORM_XT0;
3641 }
3642 if (PLL_35 == bttv_tvcards[btv->c.type].pll) {
3643 btv->pll.pll_ifreq=35468950;
3644 btv->pll.pll_crystal=BT848_IFORM_XT1;
3645 }
3646 /* insmod options can override */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003647 switch (pll[btv->c.nr]) {
3648 case 0: /* none */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 btv->pll.pll_crystal = 0;
3650 btv->pll.pll_ifreq = 0;
3651 btv->pll.pll_ofreq = 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003652 break;
3653 case 1: /* 28 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 case 28:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003655 btv->pll.pll_ifreq = 28636363;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 btv->pll.pll_ofreq = 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003657 btv->pll.pll_crystal = BT848_IFORM_XT0;
3658 break;
3659 case 2: /* 35 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 case 35:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003661 btv->pll.pll_ifreq = 35468950;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 btv->pll.pll_ofreq = 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003663 btv->pll.pll_crystal = BT848_IFORM_XT1;
3664 break;
3665 }
3666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 btv->pll.pll_current = -1;
3668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 /* tuner configuration (from card list / autodetect / insmod option) */
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003670 if (ADDR_UNSET != bttv_tvcards[btv->c.type].tuner_addr)
3671 addr = bttv_tvcards[btv->c.type].tuner_addr;
3672
3673 if (UNSET != bttv_tvcards[btv->c.type].tuner_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 if(UNSET == btv->tuner_type)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003675 btv->tuner_type = bttv_tvcards[btv->c.type].tuner_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 if (UNSET != tuner[btv->c.nr])
3677 btv->tuner_type = tuner[btv->c.nr];
Trent Piephoac7dc842007-06-28 17:51:08 -03003678
3679 if (btv->tuner_type == TUNER_ABSENT ||
3680 bttv_tvcards[btv->c.type].tuner == UNSET)
3681 printk(KERN_INFO "bttv%d: tuner absent\n", btv->c.nr);
3682 else if(btv->tuner_type == UNSET)
3683 printk(KERN_WARNING "bttv%d: tuner type unset\n", btv->c.nr);
3684 else
3685 printk(KERN_INFO "bttv%d: tuner type=%d\n", btv->c.nr,
3686 btv->tuner_type);
Mauro Carvalho Chehabf3b512f2005-11-08 21:38:23 -08003687
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07003688 if (btv->tuner_type != UNSET) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003689 struct tuner_setup tun_setup;
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07003690
Mauro Carvalho Chehabf3b512f2005-11-08 21:38:23 -08003691 tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV;
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07003692 tun_setup.type = btv->tuner_type;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003693 tun_setup.addr = addr;
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -07003694
3695 bttv_call_i2c_clients(btv, TUNER_SET_TYPE_ADDR, &tun_setup);
3696 }
3697
Hans Verkuil39e8f402006-01-09 15:25:16 -02003698 if (btv->tda9887_conf) {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03003699 struct v4l2_priv_tun_config tda9887_cfg;
3700
3701 tda9887_cfg.tuner = TUNER_TDA9887;
3702 tda9887_cfg.priv = &btv->tda9887_conf;
3703
3704 bttv_call_i2c_clients(btv, TUNER_SET_CONFIG, &tda9887_cfg);
Mauro Carvalho Chehabf3b512f2005-11-08 21:38:23 -08003705 }
3706
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 btv->svhs = bttv_tvcards[btv->c.type].svhs;
3708 if (svhs[btv->c.nr] != UNSET)
3709 btv->svhs = svhs[btv->c.nr];
3710 if (remote[btv->c.nr] != UNSET)
3711 btv->has_remote = remote[btv->c.nr];
3712
3713 if (bttv_tvcards[btv->c.type].has_radio)
3714 btv->has_radio=1;
3715 if (bttv_tvcards[btv->c.type].has_remote)
3716 btv->has_remote=1;
Michael Krufky7c08fb02005-11-08 21:36:21 -08003717 if (!bttv_tvcards[btv->c.type].no_gpioirq)
3718 btv->gpioirq=1;
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03003719 if (bttv_tvcards[btv->c.type].volume_gpio)
3720 btv->volume_gpio=bttv_tvcards[btv->c.type].volume_gpio;
3721 if (bttv_tvcards[btv->c.type].audio_mode_gpio)
3722 btv->audio_mode_gpio=bttv_tvcards[btv->c.type].audio_mode_gpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
3724 if (bttv_tvcards[btv->c.type].digital_mode == DIGITAL_MODE_CAMERA) {
3725 /* detect Bt832 chip for quartzsight digital camera */
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03003726 if ((bttv_I2CRead(btv, I2C_ADDR_BT832_ALT1, "Bt832") >=0) ||
3727 (bttv_I2CRead(btv, I2C_ADDR_BT832_ALT2, "Bt832") >=0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 boot_bt832(btv);
3729 }
3730
3731 if (!autoload)
3732 return;
3733
Trent Piephoac7dc842007-06-28 17:51:08 -03003734 if (bttv_tvcards[btv->c.type].tuner == UNSET)
3735 return; /* no tuner or related drivers to load */
3736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 /* try to detect audio/fader chips */
3738 if (!bttv_tvcards[btv->c.type].no_msp34xx &&
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03003739 bttv_I2CRead(btv, I2C_ADDR_MSP3400, "MSP34xx") >=0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 request_module("msp3400");
3741
3742 if (bttv_tvcards[btv->c.type].msp34xx_alt &&
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03003743 bttv_I2CRead(btv, I2C_ADDR_MSP3400_ALT, "MSP34xx (alternate address)") >=0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 request_module("msp3400");
3745
3746 if (!bttv_tvcards[btv->c.type].no_tda9875 &&
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03003747 bttv_I2CRead(btv, I2C_ADDR_TDA9875, "TDA9875") >=0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 request_module("tda9875");
3749
3750 if (!bttv_tvcards[btv->c.type].no_tda7432 &&
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03003751 bttv_I2CRead(btv, I2C_ADDR_TDA7432, "TDA7432") >=0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 request_module("tda7432");
3753
3754 if (bttv_tvcards[btv->c.type].needs_tvaudio)
3755 request_module("tvaudio");
3756
Trent Piephoac7dc842007-06-28 17:51:08 -03003757 if (btv->tuner_type != UNSET && btv->tuner_type != TUNER_ABSENT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 request_module("tuner");
3759}
3760
3761
3762/* ----------------------------------------------------------------------- */
3763
3764static void modtec_eeprom(struct bttv *btv)
3765{
3766 if( strncmp(&(eeprom_data[0x1e]),"Temic 4066 FY5",14) ==0) {
3767 btv->tuner_type=TUNER_TEMIC_4066FY5_PAL_I;
3768 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3769 btv->c.nr,&eeprom_data[0x1e]);
3770 } else if (strncmp(&(eeprom_data[0x1e]),"Alps TSBB5",10) ==0) {
3771 btv->tuner_type=TUNER_ALPS_TSBB5_PAL_I;
3772 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003773 btv->c.nr,&eeprom_data[0x1e]);
3774 } else if (strncmp(&(eeprom_data[0x1e]),"Philips FM1246",14) ==0) {
3775 btv->tuner_type=TUNER_PHILIPS_NTSC;
3776 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3777 btv->c.nr,&eeprom_data[0x1e]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 } else {
3779 printk("bttv%d: Modtec: Unknown TunerString: %s\n",
3780 btv->c.nr,&eeprom_data[0x1e]);
3781 }
3782}
3783
3784static void __devinit hauppauge_eeprom(struct bttv *btv)
3785{
3786 struct tveeprom tv;
3787
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -07003788 tveeprom_hauppauge_analog(&btv->i2c_client, &tv, eeprom_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 btv->tuner_type = tv.tuner_type;
3790 btv->has_radio = tv.has_radio;
Steven Tothcd1257d2006-01-09 15:25:01 -02003791
3792 printk("bttv%d: Hauppauge eeprom indicates model#%d\n",
3793 btv->c.nr, tv.model);
3794
3795 /*
3796 * Some of the 878 boards have duplicate PCI IDs. Switch the board
3797 * type based on model #.
3798 */
3799 if(tv.model == 64900) {
3800 printk("bttv%d: Switching board type from %s to %s\n",
3801 btv->c.nr,
3802 bttv_tvcards[btv->c.type].name,
3803 bttv_tvcards[BTTV_BOARD_HAUPPAUGE_IMPACTVCB].name);
3804 btv->c.type = BTTV_BOARD_HAUPPAUGE_IMPACTVCB;
3805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806}
3807
3808static int terratec_active_radio_upgrade(struct bttv *btv)
3809{
3810 int freq;
3811
3812 btv->has_radio = 1;
3813 btv->has_matchbox = 1;
3814 btv->mbox_we = 0x10;
3815 btv->mbox_most = 0x20;
3816 btv->mbox_clk = 0x08;
3817 btv->mbox_data = 0x04;
3818 btv->mbox_mask = 0x3c;
3819
3820 btv->mbox_iow = 1 << 8;
3821 btv->mbox_ior = 1 << 9;
3822 btv->mbox_csel = 1 << 10;
3823
3824 freq=88000/62.5;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003825 tea5757_write(btv, 5 * freq + 0x358); /* write 0x1ed8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 if (0x1ed8 == tea5757_read(btv)) {
3827 printk("bttv%d: Terratec Active Radio Upgrade found.\n",
3828 btv->c.nr);
3829 btv->has_radio = 1;
3830 btv->has_matchbox = 1;
3831 } else {
3832 btv->has_radio = 0;
3833 btv->has_matchbox = 0;
3834 }
3835 return 0;
3836}
3837
3838
3839/* ----------------------------------------------------------------------- */
3840
3841/*
3842 * minimal bootstrap for the WinTV/PVR -- upload altera firmware.
3843 *
3844 * The hcwamc.rbf firmware file is on the Hauppauge driver CD. Have
3845 * a look at Pvr/pvr45xxx.EXE (self-extracting zip archive, can be
3846 * unpacked with unzip).
3847 */
3848#define PVR_GPIO_DELAY 10
3849
3850#define BTTV_ALT_DATA 0x000001
3851#define BTTV_ALT_DCLK 0x100000
3852#define BTTV_ALT_NCONFIG 0x800000
3853
David Woodhouse4f2a0c32008-05-24 00:11:44 +01003854static int __devinit pvr_altera_load(struct bttv *btv, const u8 *micro,
3855 u32 microlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
3857 u32 n;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003858 u8 bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 int i;
3860
3861 gpio_inout(0xffffff,BTTV_ALT_DATA|BTTV_ALT_DCLK|BTTV_ALT_NCONFIG);
3862 gpio_write(0);
3863 udelay(PVR_GPIO_DELAY);
3864
3865 gpio_write(BTTV_ALT_NCONFIG);
3866 udelay(PVR_GPIO_DELAY);
3867
3868 for (n = 0; n < microlen; n++) {
3869 bits = micro[n];
Mauro Carvalho Chehabc1d57032007-03-28 22:37:23 -03003870 for (i = 0 ; i < 8 ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 gpio_bits(BTTV_ALT_DCLK,0);
3872 if (bits & 0x01)
3873 gpio_bits(BTTV_ALT_DATA,BTTV_ALT_DATA);
3874 else
3875 gpio_bits(BTTV_ALT_DATA,0);
3876 gpio_bits(BTTV_ALT_DCLK,BTTV_ALT_DCLK);
3877 bits >>= 1;
3878 }
3879 }
3880 gpio_bits(BTTV_ALT_DCLK,0);
3881 udelay(PVR_GPIO_DELAY);
3882
3883 /* begin Altera init loop (Not necessary,but doesn't hurt) */
3884 for (i = 0 ; i < 30 ; i++) {
3885 gpio_bits(BTTV_ALT_DCLK,0);
3886 gpio_bits(BTTV_ALT_DCLK,BTTV_ALT_DCLK);
3887 }
3888 gpio_bits(BTTV_ALT_DCLK,0);
3889 return 0;
3890}
3891
3892static int __devinit pvr_boot(struct bttv *btv)
3893{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003894 const struct firmware *fw_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 int rc;
3896
3897 rc = request_firmware(&fw_entry, "hcwamc.rbf", &btv->c.pci->dev);
3898 if (rc != 0) {
3899 printk(KERN_WARNING "bttv%d: no altera firmware [via hotplug]\n",
3900 btv->c.nr);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003901 return rc;
3902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 rc = pvr_altera_load(btv, fw_entry->data, fw_entry->size);
3904 printk(KERN_INFO "bttv%d: altera firmware upload %s\n",
3905 btv->c.nr, (rc < 0) ? "failed" : "ok");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003906 release_firmware(fw_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 return rc;
3908}
3909
3910/* ----------------------------------------------------------------------- */
3911/* some osprey specific stuff */
3912
Trent Piephocf784d52007-07-21 21:26:40 -03003913static void __devinit osprey_eeprom(struct bttv *btv, const u8 ee[256])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914{
Trent Piephocf784d52007-07-21 21:26:40 -03003915 int i;
3916 u32 serial = 0;
3917 int cardid = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
Trent Piephocf784d52007-07-21 21:26:40 -03003919 /* This code will nevery actually get called in this case.... */
3920 if (btv->c.type == BTTV_BOARD_UNKNOWN) {
3921 /* this might be an antique... check for MMAC label in eeprom */
3922 if (!strncmp(ee, "MMAC", 4)) {
3923 u8 checksum = 0;
3924 for (i = 0; i < 21; i++)
3925 checksum += ee[i];
3926 if (checksum != ee[21])
3927 return;
3928 cardid = BTTV_BOARD_OSPREY1x0_848;
3929 for (i = 12; i < 21; i++)
3930 serial *= 10, serial += ee[i] - '0';
3931 }
Michael Krufkyb930e1d2007-08-27 18:16:54 -03003932 } else {
Trent Piephocf784d52007-07-21 21:26:40 -03003933 unsigned short type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
Trent Piephocf784d52007-07-21 21:26:40 -03003935 for (i = 4*16; i < 8*16; i += 16) {
3936 u16 checksum = ip_compute_csum(ee + i, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
Trent Piephocf784d52007-07-21 21:26:40 -03003938 if ((checksum&0xff) + (checksum>>8) == 0xff)
3939 break;
3940 }
3941 if (i >= 8*16)
3942 return;
3943 ee += i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
Trent Piephocf784d52007-07-21 21:26:40 -03003945 /* found a valid descriptor */
Al Viroc1c36f32008-05-21 00:32:21 -03003946 type = get_unaligned_be16((__be16 *)(ee+4));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Trent Piephocf784d52007-07-21 21:26:40 -03003948 switch(type) {
3949 /* 848 based */
3950 case 0x0004:
3951 cardid = BTTV_BOARD_OSPREY1x0_848;
3952 break;
3953 case 0x0005:
3954 cardid = BTTV_BOARD_OSPREY101_848;
3955 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Trent Piephocf784d52007-07-21 21:26:40 -03003957 /* 878 based */
3958 case 0x0012:
3959 case 0x0013:
3960 cardid = BTTV_BOARD_OSPREY1x0;
3961 break;
3962 case 0x0014:
3963 case 0x0015:
3964 cardid = BTTV_BOARD_OSPREY1x1;
3965 break;
3966 case 0x0016:
3967 case 0x0017:
3968 case 0x0020:
3969 cardid = BTTV_BOARD_OSPREY1x1_SVID;
3970 break;
3971 case 0x0018:
3972 case 0x0019:
3973 case 0x001E:
3974 case 0x001F:
3975 cardid = BTTV_BOARD_OSPREY2xx;
3976 break;
3977 case 0x001A:
3978 case 0x001B:
3979 cardid = BTTV_BOARD_OSPREY2x0_SVID;
3980 break;
3981 case 0x0040:
3982 cardid = BTTV_BOARD_OSPREY500;
3983 break;
3984 case 0x0050:
3985 case 0x0056:
3986 cardid = BTTV_BOARD_OSPREY540;
3987 /* bttv_osprey_540_init(btv); */
3988 break;
3989 case 0x0060:
3990 case 0x0070:
3991 case 0x00A0:
3992 cardid = BTTV_BOARD_OSPREY2x0;
3993 /* enable output on select control lines */
3994 gpio_inout(0xffffff,0x000303);
3995 break;
3996 case 0x00D8:
3997 cardid = BTTV_BOARD_OSPREY440;
3998 break;
3999 default:
4000 /* unknown...leave generic, but get serial # */
4001 printk(KERN_INFO "bttv%d: "
4002 "osprey eeprom: unknown card type 0x%04x\n",
4003 btv->c.nr, type);
4004 break;
4005 }
Al Viroc1c36f32008-05-21 00:32:21 -03004006 serial = get_unaligned_be32((__be32 *)(ee+6));
Trent Piephocf784d52007-07-21 21:26:40 -03004007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Trent Piephocf784d52007-07-21 21:26:40 -03004009 printk(KERN_INFO "bttv%d: osprey eeprom: card=%d '%s' serial=%u\n",
4010 btv->c.nr, cardid,
4011 cardid>0 ? bttv_tvcards[cardid].name : "Unknown", serial);
4012
4013 if (cardid<0 || btv->c.type == cardid)
4014 return;
4015
4016 /* card type isn't set correctly */
4017 if (card[btv->c.nr] < bttv_num_tvcards) {
4018 printk(KERN_WARNING "bttv%d: osprey eeprom: "
4019 "Not overriding user specified card type\n", btv->c.nr);
4020 } else {
4021 printk(KERN_INFO "bttv%d: osprey eeprom: "
4022 "Changing card type from %d to %d\n", btv->c.nr,
4023 btv->c.type, cardid);
4024 btv->c.type = cardid;
4025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026}
4027
4028/* ----------------------------------------------------------------------- */
4029/* AVermedia specific stuff, from bktr_card.c */
4030
4031static int tuner_0_table[] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004032 TUNER_PHILIPS_NTSC, TUNER_PHILIPS_PAL /* PAL-BG*/,
4033 TUNER_PHILIPS_PAL, TUNER_PHILIPS_PAL /* PAL-I*/,
4034 TUNER_PHILIPS_PAL, TUNER_PHILIPS_PAL,
4035 TUNER_PHILIPS_SECAM, TUNER_PHILIPS_SECAM,
4036 TUNER_PHILIPS_SECAM, TUNER_PHILIPS_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 TUNER_PHILIPS_FM1216ME_MK3 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
4039static int tuner_1_table[] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004040 TUNER_TEMIC_NTSC, TUNER_TEMIC_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 TUNER_TEMIC_PAL, TUNER_TEMIC_PAL,
4042 TUNER_TEMIC_PAL, TUNER_TEMIC_PAL,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004043 TUNER_TEMIC_4012FY5, TUNER_TEMIC_4012FY5, /* TUNER_TEMIC_SECAM */
4044 TUNER_TEMIC_4012FY5, TUNER_TEMIC_PAL};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045
4046static void __devinit avermedia_eeprom(struct bttv *btv)
4047{
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03004048 int tuner_make, tuner_tv_fm, tuner_format, tuner_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
4050 tuner_make = (eeprom_data[0x41] & 0x7);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004051 tuner_tv_fm = (eeprom_data[0x41] & 0x18) >> 3;
4052 tuner_format = (eeprom_data[0x42] & 0xf0) >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 btv->has_remote = (eeprom_data[0x42] & 0x01);
4054
4055 if (tuner_make == 0 || tuner_make == 2)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03004056 if (tuner_format <= 0x0a)
4057 tuner_type = tuner_0_table[tuner_format];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 if (tuner_make == 1)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03004059 if (tuner_format <= 9)
4060 tuner_type = tuner_1_table[tuner_format];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
4062 if (tuner_make == 4)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03004063 if (tuner_format == 0x09)
4064 tuner_type = TUNER_LG_NTSC_NEW_TAPC; /* TAPC-G702P */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
4066 printk(KERN_INFO "bttv%d: Avermedia eeprom[0x%02x%02x]: tuner=",
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03004067 btv->c.nr, eeprom_data[0x41], eeprom_data[0x42]);
4068 if (tuner_type) {
4069 btv->tuner_type = tuner_type;
4070 printk(KERN_CONT "%d", tuner_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 } else
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -03004072 printk(KERN_CONT "Unknown type");
4073 printk(KERN_CONT " radio:%s remote control:%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 tuner_tv_fm ? "yes" : "no",
4075 btv->has_remote ? "yes" : "no");
4076}
4077
4078/* used on Voodoo TV/FM (Voodoo 200), S0 wired to 0x10000 */
4079void bttv_tda9880_setnorm(struct bttv *btv, int norm)
4080{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004081 /* fix up our card entry */
Mauro Carvalho Chehabc2806d02007-10-26 16:54:54 -03004082 if(norm==V4L2_STD_NTSC) {
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004083 bttv_tvcards[BTTV_BOARD_VOODOOTV_FM].gpiomux[TVAUDIO_INPUT_TUNER]=0x957fff;
4084 bttv_tvcards[BTTV_BOARD_VOODOOTV_FM].gpiomute=0x957fff;
Wade Berrier434b2522007-06-25 13:02:16 -03004085 bttv_tvcards[BTTV_BOARD_VOODOOTV_200].gpiomux[TVAUDIO_INPUT_TUNER]=0x957fff;
4086 bttv_tvcards[BTTV_BOARD_VOODOOTV_200].gpiomute=0x957fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 dprintk("bttv_tda9880_setnorm to NTSC\n");
4088 }
4089 else {
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004090 bttv_tvcards[BTTV_BOARD_VOODOOTV_FM].gpiomux[TVAUDIO_INPUT_TUNER]=0x947fff;
4091 bttv_tvcards[BTTV_BOARD_VOODOOTV_FM].gpiomute=0x947fff;
Wade Berrier434b2522007-06-25 13:02:16 -03004092 bttv_tvcards[BTTV_BOARD_VOODOOTV_200].gpiomux[TVAUDIO_INPUT_TUNER]=0x947fff;
4093 bttv_tvcards[BTTV_BOARD_VOODOOTV_200].gpiomute=0x947fff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 dprintk("bttv_tda9880_setnorm to PAL\n");
4095 }
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004096 /* set GPIO according */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 gpio_bits(bttv_tvcards[btv->c.type].gpiomask,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004098 bttv_tvcards[btv->c.type].gpiomux[btv->audio]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099}
4100
4101
4102/*
4103 * reset/enable the MSP on some Hauppauge cards
David Woodhouse93e960f2005-11-08 21:36:46 -08004104 * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 *
4106 * Hauppauge: pin 5
4107 * Voodoo: pin 20
4108 */
4109static void __devinit boot_msp34xx(struct bttv *btv, int pin)
4110{
4111 int mask = (1 << pin);
4112
4113 gpio_inout(mask,mask);
4114 gpio_bits(mask,0);
Thierry MERLEc4e3fd92008-09-01 17:32:10 -03004115 mdelay(2);
4116 udelay(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 gpio_bits(mask,mask);
4118
4119 if (bttv_gpio)
4120 bttv_gpio_tracking(btv,"msp34xx");
4121 if (bttv_verbose)
4122 printk(KERN_INFO "bttv%d: Hauppauge/Voodoo msp34xx: reset line "
4123 "init [%d]\n", btv->c.nr, pin);
4124}
4125
4126static void __devinit boot_bt832(struct bttv *btv)
4127{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128}
4129
4130/* ----------------------------------------------------------------------- */
4131/* Imagenation L-Model PXC200 Framegrabber */
4132/* This is basically the same procedure as
4133 * used by Alessandro Rubini in his pxc200
4134 * driver, but using BTTV functions */
4135
4136static void __devinit init_PXC200(struct bttv *btv)
4137{
4138 static int vals[] __devinitdata = { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d,
4139 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
4140 0x00 };
4141 unsigned int i;
4142 int tmp;
4143 u32 val;
4144
4145 /* Initialise GPIO-connevted stuff */
4146 gpio_inout(0xffffff, (1<<13));
4147 gpio_write(0);
4148 udelay(3);
4149 gpio_write(1<<13);
4150 /* GPIO inputs are pulled up, so no need to drive
4151 * reset pin any longer */
4152 gpio_bits(0xffffff, 0);
4153 if (bttv_gpio)
4154 bttv_gpio_tracking(btv,"pxc200");
4155
4156 /* we could/should try and reset/control the AD pots? but
4157 right now we simply turned off the crushing. Without
4158 this the AGC drifts drifts
4159 remember the EN is reverse logic -->
4160 setting BT848_ADC_AGC_EN disable the AGC
4161 tboult@eecs.lehigh.edu
4162 */
4163
4164 btwrite(BT848_ADC_RESERVED|BT848_ADC_AGC_EN, BT848_ADC);
4165
4166 /* Initialise MAX517 DAC */
4167 printk(KERN_INFO "Setting DAC reference voltage level ...\n");
4168 bttv_I2CWrite(btv,0x5E,0,0x80,1);
4169
4170 /* Initialise 12C508 PIC */
4171 /* The I2CWrite and I2CRead commmands are actually to the
4172 * same chips - but the R/W bit is included in the address
4173 * argument so the numbers are different */
4174
4175
4176 printk(KERN_INFO "Initialising 12C508 PIC chip ...\n");
4177
4178 /* First of all, enable the clock line. This is used in the PXC200-F */
4179 val = btread(BT848_GPIO_DMA_CTL);
4180 val |= BT848_GPIO_DMA_CTL_GPCLKMODE;
4181 btwrite(val, BT848_GPIO_DMA_CTL);
4182
4183 /* Then, push to 0 the reset pin long enough to reset the *
4184 * device same as above for the reset line, but not the same
4185 * value sent to the GPIO-connected stuff
4186 * which one is the good one? */
4187 gpio_inout(0xffffff,(1<<2));
4188 gpio_write(0);
4189 udelay(10);
4190 gpio_write(1<<2);
4191
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004192 for (i = 0; i < ARRAY_SIZE(vals); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 tmp=bttv_I2CWrite(btv,0x1E,0,vals[i],1);
4194 if (tmp != -1) {
4195 printk(KERN_INFO
4196 "I2C Write(%2.2x) = %i\nI2C Read () = %2.2x\n\n",
4197 vals[i],tmp,bttv_I2CRead(btv,0x1F,NULL));
4198 }
4199 }
4200
4201 printk(KERN_INFO "PXC200 Initialised.\n");
4202}
4203
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004204
4205
Peter Skipworth93b43f12005-06-23 22:04:45 -07004206/* ----------------------------------------------------------------------- */
4207/*
4208 * The Adlink RTV-24 (aka Angelo) has some special initialisation to unlock
4209 * it. This apparently involves the following procedure for each 878 chip:
4210 *
4211 * 1) write 0x00C3FEFF to the GPIO_OUT_EN register
4212 *
4213 * 2) write to GPIO_DATA
4214 * - 0x0E
4215 * - sleep 1ms
4216 * - 0x10 + 0x0E
4217 * - sleep 10ms
4218 * - 0x0E
4219 * read from GPIO_DATA into buf (uint_32)
4220 * - if ( data>>18 & 0x01 != 0) || ( buf>>19 & 0x01 != 1 )
4221 * error. ERROR_CPLD_Check_Failed stop.
4222 *
4223 * 3) write to GPIO_DATA
4224 * - write 0x4400 + 0x0E
4225 * - sleep 10ms
4226 * - write 0x4410 + 0x0E
4227 * - sleep 1ms
4228 * - write 0x0E
4229 * read from GPIO_DATA into buf (uint_32)
Jean Delvarefef4fa142006-11-09 17:25:28 -03004230 * - if ( buf>>18 & 0x01 ) || ( buf>>19 & 0x01 != 0 )
Peter Skipworth93b43f12005-06-23 22:04:45 -07004231 * error. ERROR_CPLD_Check_Failed.
4232 */
4233/* ----------------------------------------------------------------------- */
Adrian Bunk943a4902005-12-01 00:51:35 -08004234static void
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004235init_RTV24 (struct bttv *btv)
Peter Skipworth93b43f12005-06-23 22:04:45 -07004236{
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004237 uint32_t dataRead = 0;
4238 long watchdog_value = 0x0E;
Peter Skipworth93b43f12005-06-23 22:04:45 -07004239
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004240 printk (KERN_INFO
4241 "bttv%d: Adlink RTV-24 initialisation in progress ...\n",
Peter Skipworth93b43f12005-06-23 22:04:45 -07004242 btv->c.nr);
4243
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004244 btwrite (0x00c3feff, BT848_GPIO_OUT_EN);
Peter Skipworth93b43f12005-06-23 22:04:45 -07004245
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004246 btwrite (0 + watchdog_value, BT848_GPIO_DATA);
4247 msleep (1);
4248 btwrite (0x10 + watchdog_value, BT848_GPIO_DATA);
4249 msleep (10);
4250 btwrite (0 + watchdog_value, BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07004251
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004252 dataRead = btread (BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07004253
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004254 if ((((dataRead >> 18) & 0x01) != 0) || (((dataRead >> 19) & 0x01) != 1)) {
4255 printk (KERN_INFO
4256 "bttv%d: Adlink RTV-24 initialisation(1) ERROR_CPLD_Check_Failed (read %d)\n",
4257 btv->c.nr, dataRead);
Peter Skipworth93b43f12005-06-23 22:04:45 -07004258 }
4259
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004260 btwrite (0x4400 + watchdog_value, BT848_GPIO_DATA);
4261 msleep (10);
4262 btwrite (0x4410 + watchdog_value, BT848_GPIO_DATA);
4263 msleep (1);
4264 btwrite (watchdog_value, BT848_GPIO_DATA);
4265 msleep (1);
4266 dataRead = btread (BT848_GPIO_DATA);
Peter Skipworth93b43f12005-06-23 22:04:45 -07004267
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004268 if ((((dataRead >> 18) & 0x01) != 0) || (((dataRead >> 19) & 0x01) != 0)) {
4269 printk (KERN_INFO
4270 "bttv%d: Adlink RTV-24 initialisation(2) ERROR_CPLD_Check_Failed (read %d)\n",
4271 btv->c.nr, dataRead);
4272
Peter Skipworth93b43f12005-06-23 22:04:45 -07004273 return;
4274 }
4275
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004276 printk (KERN_INFO
4277 "bttv%d: Adlink RTV-24 initialisation complete.\n", btv->c.nr);
Peter Skipworth93b43f12005-06-23 22:04:45 -07004278}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279
Mauro Carvalho Chehab2d03e282005-06-23 22:04:58 -07004280
4281
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282/* ----------------------------------------------------------------------- */
4283/* Miro Pro radio stuff -- the tea5757 is connected to some GPIO ports */
4284/*
4285 * Copyright (c) 1999 Csaba Halasz <qgehali@uni-miskolc.hu>
4286 * This code is placed under the terms of the GNU General Public License
4287 *
4288 * Brutally hacked by Dan Sheridan <dan.sheridan@contact.org.uk> djs52 8/3/00
4289 */
4290
4291static void bus_low(struct bttv *btv, int bit)
4292{
4293 if (btv->mbox_ior) {
4294 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
4295 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
4296 udelay(5);
4297 }
4298
4299 gpio_bits(bit,0);
4300 udelay(5);
4301
4302 if (btv->mbox_ior) {
4303 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
4304 udelay(5);
4305 }
4306}
4307
4308static void bus_high(struct bttv *btv, int bit)
4309{
4310 if (btv->mbox_ior) {
4311 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
4312 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
4313 udelay(5);
4314 }
4315
4316 gpio_bits(bit,bit);
4317 udelay(5);
4318
4319 if (btv->mbox_ior) {
4320 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
4321 udelay(5);
4322 }
4323}
4324
4325static int bus_in(struct bttv *btv, int bit)
4326{
4327 if (btv->mbox_ior) {
4328 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
4329 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
4330 udelay(5);
4331
4332 gpio_bits(btv->mbox_iow | btv->mbox_csel, 0);
4333 udelay(5);
4334 }
4335 return gpio_read() & (bit);
4336}
4337
4338/* TEA5757 register bits */
4339#define TEA_FREQ 0:14
4340#define TEA_BUFFER 15:15
4341
4342#define TEA_SIGNAL_STRENGTH 16:17
4343
4344#define TEA_PORT1 18:18
4345#define TEA_PORT0 19:19
4346
4347#define TEA_BAND 20:21
4348#define TEA_BAND_FM 0
4349#define TEA_BAND_MW 1
4350#define TEA_BAND_LW 2
4351#define TEA_BAND_SW 3
4352
4353#define TEA_MONO 22:22
4354#define TEA_ALLOW_STEREO 0
4355#define TEA_FORCE_MONO 1
4356
4357#define TEA_SEARCH_DIRECTION 23:23
4358#define TEA_SEARCH_DOWN 0
4359#define TEA_SEARCH_UP 1
4360
4361#define TEA_STATUS 24:24
4362#define TEA_STATUS_TUNED 0
4363#define TEA_STATUS_SEARCHING 1
4364
4365/* Low-level stuff */
4366static int tea5757_read(struct bttv *btv)
4367{
4368 unsigned long timeout;
4369 int value = 0;
4370 int i;
4371
4372 /* better safe than sorry */
4373 gpio_inout(btv->mbox_mask, btv->mbox_clk | btv->mbox_we);
4374
4375 if (btv->mbox_ior) {
4376 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
4377 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
4378 udelay(5);
4379 }
4380
4381 if (bttv_gpio)
4382 bttv_gpio_tracking(btv,"tea5757 read");
4383
4384 bus_low(btv,btv->mbox_we);
4385 bus_low(btv,btv->mbox_clk);
4386
4387 udelay(10);
Mauro Carvalho Chehabfe06fe02007-07-17 16:36:20 -03004388 timeout= jiffies + msecs_to_jiffies(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004390 /* wait for DATA line to go low; error if it doesn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 while (bus_in(btv,btv->mbox_data) && time_before(jiffies, timeout))
4392 schedule();
4393 if (bus_in(btv,btv->mbox_data)) {
4394 printk(KERN_WARNING "bttv%d: tea5757: read timeout\n",btv->c.nr);
4395 return -1;
4396 }
4397
4398 dprintk("bttv%d: tea5757:",btv->c.nr);
Mauro Carvalho Chehabc1d57032007-03-28 22:37:23 -03004399 for (i = 0; i < 24; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 udelay(5);
4401 bus_high(btv,btv->mbox_clk);
4402 udelay(5);
4403 dprintk("%c",(bus_in(btv,btv->mbox_most) == 0)?'T':'-');
4404 bus_low(btv,btv->mbox_clk);
4405 value <<= 1;
4406 value |= (bus_in(btv,btv->mbox_data) == 0)?0:1; /* MSB first */
4407 dprintk("%c", (bus_in(btv,btv->mbox_most) == 0)?'S':'M');
4408 }
4409 dprintk("\nbttv%d: tea5757: read 0x%X\n", btv->c.nr, value);
4410 return value;
4411}
4412
4413static int tea5757_write(struct bttv *btv, int value)
4414{
4415 int i;
4416 int reg = value;
4417
4418 gpio_inout(btv->mbox_mask, btv->mbox_clk | btv->mbox_we | btv->mbox_data);
4419
4420 if (btv->mbox_ior) {
4421 gpio_bits(btv->mbox_ior | btv->mbox_iow | btv->mbox_csel,
4422 btv->mbox_ior | btv->mbox_iow | btv->mbox_csel);
4423 udelay(5);
4424 }
4425 if (bttv_gpio)
4426 bttv_gpio_tracking(btv,"tea5757 write");
4427
4428 dprintk("bttv%d: tea5757: write 0x%X\n", btv->c.nr, value);
4429 bus_low(btv,btv->mbox_clk);
4430 bus_high(btv,btv->mbox_we);
Mauro Carvalho Chehabc1d57032007-03-28 22:37:23 -03004431 for (i = 0; i < 25; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 if (reg & 0x1000000)
4433 bus_high(btv,btv->mbox_data);
4434 else
4435 bus_low(btv,btv->mbox_data);
4436 reg <<= 1;
4437 bus_high(btv,btv->mbox_clk);
4438 udelay(10);
4439 bus_low(btv,btv->mbox_clk);
4440 udelay(10);
4441 }
4442 bus_low(btv,btv->mbox_we); /* unmute !!! */
4443 return 0;
4444}
4445
4446void tea5757_set_freq(struct bttv *btv, unsigned short freq)
4447{
4448 dprintk("tea5757_set_freq %d\n",freq);
4449 tea5757_write(btv, 5 * freq + 0x358); /* add 10.7MHz (see docs) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450}
4451
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452/* RemoteVision MX (rv605) muxsel helper [Miguel Freitas]
4453 *
4454 * This is needed because rv605 don't use a normal multiplex, but a crosspoint
4455 * switch instead (CD22M3494E). This IC can have multiple active connections
4456 * between Xn (input) and Yn (output) pins. We need to clear any existing
4457 * connection prior to establish a new one, pulsing the STROBE pin.
4458 *
4459 * The board hardwire Y0 (xpoint) to MUX1 and MUXOUT to Yin.
4460 * GPIO pins are wired as:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02004461 * GPIO[0:3] - AX[0:3] (xpoint) - P1[0:3] (microcontroller)
4462 * GPIO[4:6] - AY[0:2] (xpoint) - P1[4:6] (microcontroller)
4463 * GPIO[7] - DATA (xpoint) - P1[7] (microcontroller)
4464 * GPIO[8] - - P3[5] (microcontroller)
4465 * GPIO[9] - RESET (xpoint) - P3[6] (microcontroller)
4466 * GPIO[10] - STROBE (xpoint) - P3[7] (microcontroller)
4467 * GPINTR - - P3[4] (microcontroller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02004469 * The microcontroller is a 80C32 like. It should be possible to change xpoint
4470 * configuration either directly (as we are doing) or using the microcontroller
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 * which is also wired to I2C interface. I have no further info on the
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02004472 * microcontroller features, one would need to disassembly the firmware.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 * note: the vendor refused to give any information on this product, all
4474 * that stuff was found using a multimeter! :)
4475 */
4476static void rv605_muxsel(struct bttv *btv, unsigned int input)
4477{
4478 /* reset all conections */
4479 gpio_bits(0x200,0x200);
4480 mdelay(1);
4481 gpio_bits(0x200,0x000);
4482 mdelay(1);
4483
Joe Perchesc84e6032008-02-03 17:18:59 +02004484 /* create a new connection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 gpio_bits(0x480,0x080);
4486 gpio_bits(0x480,0x480);
4487 mdelay(1);
4488 gpio_bits(0x480,0x080);
4489 mdelay(1);
4490}
4491
4492/* Tibet Systems 'Progress DVR' CS16 muxsel helper [Chris Fanning]
4493 *
4494 * The CS16 (available on eBay cheap) is a PCI board with four Fusion
4495 * 878A chips, a PCI bridge, an Atmel microcontroller, four sync seperator
4496 * chips, ten eight input analog multiplexors, a not chip and a few
4497 * other components.
4498 *
4499 * 16 inputs on a secondary bracket are provided and can be selected
4500 * from each of the four capture chips. Two of the eight input
4501 * multiplexors are used to select from any of the 16 input signals.
4502 *
4503 * Unsupported hardware capabilities:
4504 * . A video output monitor on the secondary bracket can be selected from
4505 * one of the 878A chips.
4506 * . Another passthrough but I haven't spent any time investigating it.
4507 * . Digital I/O (logic level connected to GPIO) is available from an
4508 * onboard header.
4509 *
4510 * The on chip input mux should always be set to 2.
4511 * GPIO[16:19] - Video input selection
4512 * GPIO[0:3] - Video output monitor select (only available from one 878A)
4513 * GPIO[?:?] - Digital I/O.
4514 *
4515 * There is an ATMEL microcontroller with an 8031 core on board. I have not
4516 * determined what function (if any) it provides. With the microcontroller
4517 * and sync seperator chips a guess is that it might have to do with video
4518 * switching and maybe some digital I/O.
4519 */
4520static void tibetCS16_muxsel(struct bttv *btv, unsigned int input)
4521{
4522 /* video mux */
4523 gpio_bits(0x0f0000, input << 16);
4524}
4525
4526static void tibetCS16_init(struct bttv *btv)
4527{
4528 /* enable gpio bits, mask obtained via btSpy */
4529 gpio_inout(0xffffff, 0x0f7fff);
4530 gpio_write(0x0f7fff);
4531}
4532
4533/*
4534 * The following routines for the Kodicom-4400r get a little mind-twisting.
4535 * There is a "master" controller and three "slave" controllers, together
4536 * an analog switch which connects any of 16 cameras to any of the BT87A's.
4537 * The analog switch is controlled by the "master", but the detection order
4538 * of the four BT878A chips is in an order which I just don't understand.
4539 * The "master" is actually the second controller to be detected. The
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02004540 * logic on the board uses logical numbers for the 4 controllers, but
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 * those numbers are different from the detection sequence. When working
4542 * with the analog switch, we need to "map" from the detection sequence
4543 * over to the board's logical controller number. This mapping sequence
4544 * is {3, 0, 2, 1}, i.e. the first controller to be detected is logical
4545 * unit 3, the second (which is the master) is logical unit 0, etc.
4546 * We need to maintain the status of the analog switch (which of the 16
4547 * cameras is connected to which of the 4 controllers). Rather than
4548 * add to the bttv structure for this, we use the data reserved for
4549 * the mbox (unused for this card type).
4550 */
4551
4552/*
4553 * First a routine to set the analog switch, which controls which camera
4554 * is routed to which controller. The switch comprises an X-address
4555 * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4556 * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4557 * A data value (gpio bit 7) of '1' enables the switch, and '0' disables
4558 * the switch. A STROBE bit (gpio bit 8) latches the data value into the
4559 * specified address. The idea is to set the address and data, then bring
4560 * STROBE high, and finally bring STROBE back to low.
4561 */
4562static void kodicom4400r_write(struct bttv *btv,
4563 unsigned char xaddr,
4564 unsigned char yaddr,
4565 unsigned char data) {
4566 unsigned int udata;
4567
4568 udata = (data << 7) | ((yaddr&3) << 4) | (xaddr&0xf);
4569 gpio_bits(0x1ff, udata); /* write ADDR and DAT */
4570 gpio_bits(0x1ff, udata | (1 << 8)); /* strobe high */
4571 gpio_bits(0x1ff, udata); /* strobe low */
4572}
4573
4574/*
4575 * Next the mux select. Both the "master" and "slave" 'cards' (controllers)
4576 * use this routine. The routine finds the "master" for the card, maps
4577 * the controller number from the detected position over to the logical
4578 * number, writes the appropriate data to the analog switch, and housekeeps
4579 * the local copy of the switch information. The parameter 'input' is the
4580 * requested camera number (0 - 15).
4581 */
4582static void kodicom4400r_muxsel(struct bttv *btv, unsigned int input)
4583{
4584 char *sw_status;
4585 int xaddr, yaddr;
4586 struct bttv *mctlr;
4587 static unsigned char map[4] = {3, 0, 2, 1};
4588
4589 mctlr = master[btv->c.nr];
4590 if (mctlr == NULL) { /* ignore if master not yet detected */
4591 return;
4592 }
4593 yaddr = (btv->c.nr - mctlr->c.nr + 1) & 3; /* the '&' is for safety */
4594 yaddr = map[yaddr];
4595 sw_status = (char *)(&mctlr->mbox_we);
4596 xaddr = input & 0xf;
4597 /* Check if the controller/camera pair has changed, else ignore */
4598 if (sw_status[yaddr] != xaddr)
4599 {
4600 /* "open" the old switch, "close" the new one, save the new */
4601 kodicom4400r_write(mctlr, sw_status[yaddr], yaddr, 0);
4602 sw_status[yaddr] = xaddr;
4603 kodicom4400r_write(mctlr, xaddr, yaddr, 1);
4604 }
4605}
4606
4607/*
4608 * During initialisation, we need to reset the analog switch. We
4609 * also preset the switch to map the 4 connectors on the card to the
4610 * *user's* (see above description of kodicom4400r_muxsel) channels
4611 * 0 through 3
4612 */
4613static void kodicom4400r_init(struct bttv *btv)
4614{
4615 char *sw_status = (char *)(&btv->mbox_we);
4616 int ix;
4617
4618 gpio_inout(0x0003ff, 0x0003ff);
4619 gpio_write(1 << 9); /* reset MUX */
4620 gpio_write(0);
4621 /* Preset camera 0 to the 4 controllers */
Mauro Carvalho Chehabc1d57032007-03-28 22:37:23 -03004622 for (ix = 0; ix < 4; ix++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 sw_status[ix] = ix;
4624 kodicom4400r_write(btv, ix, ix, 1);
4625 }
4626 /*
4627 * Since this is the "master", we need to set up the
4628 * other three controller chips' pointers to this structure
4629 * for later use in the muxsel routine.
4630 */
4631 if ((btv->c.nr<1) || (btv->c.nr>BTTV_MAX-3))
4632 return;
4633 master[btv->c.nr-1] = btv;
4634 master[btv->c.nr] = btv;
4635 master[btv->c.nr+1] = btv;
4636 master[btv->c.nr+2] = btv;
4637}
4638
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004639/* The Grandtec X-Guard framegrabber card uses two Dual 4-channel
4640 * video multiplexers to provide up to 16 video inputs. These
4641 * multiplexers are controlled by the lower 8 GPIO pins of the
4642 * bt878. The multiplexers probably Pericom PI5V331Q or similar.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004644 * xxx0 is pin xxx of multiplexer U5,
4645 * yyy1 is pin yyy of multiplexer U2
4646 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647#define ENA0 0x01
4648#define ENB0 0x02
4649#define ENA1 0x04
4650#define ENB1 0x08
4651
4652#define IN10 0x10
4653#define IN00 0x20
4654#define IN11 0x40
4655#define IN01 0x80
4656
4657static void xguard_muxsel(struct bttv *btv, unsigned int input)
4658{
4659 static const int masks[] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004660 ENB0, ENB0|IN00, ENB0|IN10, ENB0|IN00|IN10,
4661 ENA0, ENA0|IN00, ENA0|IN10, ENA0|IN00|IN10,
4662 ENB1, ENB1|IN01, ENB1|IN11, ENB1|IN01|IN11,
4663 ENA1, ENA1|IN01, ENA1|IN11, ENA1|IN01|IN11,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 };
4665 gpio_write(masks[input%16]);
4666}
4667static void picolo_tetra_init(struct bttv *btv)
4668{
4669 /*This is the video input redirection fonctionality : I DID NOT USED IT. */
4670 btwrite (0x08<<16,BT848_GPIO_DATA);/*GPIO[19] [==> 4053 B+C] set to 1 */
4671 btwrite (0x04<<16,BT848_GPIO_DATA);/*GPIO[18] [==> 4053 A] set to 1*/
4672}
4673static void picolo_tetra_muxsel (struct bttv* btv, unsigned int input)
4674{
4675
4676 dprintk (KERN_DEBUG "bttv%d : picolo_tetra_muxsel => input = %d\n",btv->c.nr,input);
4677 /*Just set the right path in the analog multiplexers : channel 1 -> 4 ==> Analog Mux ==> MUX0*/
4678 /*GPIO[20]&GPIO[21] used to choose the right input*/
4679 btwrite (input<<20,BT848_GPIO_DATA);
4680
4681}
4682
4683/*
4684 * ivc120_muxsel [Added by Alan Garfield <alan@fromorbit.com>]
4685 *
4686 * The IVC120G security card has 4 i2c controlled TDA8540 matrix
4687 * swichers to provide 16 channels to MUX0. The TDA8540's have
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02004688 * 4 independent outputs and as such the IVC120G also has the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 * optional "Monitor Out" bus. This allows the card to be looking
4690 * at one input while the monitor is looking at another.
4691 *
4692 * Since I've couldn't be bothered figuring out how to add an
4693 * independant muxsel for the monitor bus, I've just set it to
4694 * whatever the card is looking at.
4695 *
4696 * OUT0 of the TDA8540's is connected to MUX0 (0x03)
4697 * OUT1 of the TDA8540's is connected to "Monitor Out" (0x0C)
4698 *
4699 * TDA8540_ALT3 IN0-3 = Channel 13 - 16 (0x03)
4700 * TDA8540_ALT4 IN0-3 = Channel 1 - 4 (0x03)
4701 * TDA8540_ALT5 IN0-3 = Channel 5 - 8 (0x03)
4702 * TDA8540_ALT6 IN0-3 = Channel 9 - 12 (0x03)
4703 *
4704 */
4705
4706/* All 7 possible sub-ids for the TDA8540 Matrix Switcher */
4707#define I2C_TDA8540 0x90
4708#define I2C_TDA8540_ALT1 0x92
4709#define I2C_TDA8540_ALT2 0x94
4710#define I2C_TDA8540_ALT3 0x96
4711#define I2C_TDA8540_ALT4 0x98
4712#define I2C_TDA8540_ALT5 0x9a
4713#define I2C_TDA8540_ALT6 0x9c
4714
4715static void ivc120_muxsel(struct bttv *btv, unsigned int input)
4716{
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004717 /* Simple maths */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 int key = input % 4;
4719 int matrix = input / 4;
4720
4721 dprintk("bttv%d: ivc120_muxsel: Input - %02d | TDA - %02d | In - %02d\n",
4722 btv->c.nr, input, matrix, key);
4723
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004724 /* Handles the input selection on the TDA8540's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 bttv_I2CWrite(btv, I2C_TDA8540_ALT3, 0x00,
4726 ((matrix == 3) ? (key | key << 2) : 0x00), 1);
4727 bttv_I2CWrite(btv, I2C_TDA8540_ALT4, 0x00,
4728 ((matrix == 0) ? (key | key << 2) : 0x00), 1);
4729 bttv_I2CWrite(btv, I2C_TDA8540_ALT5, 0x00,
4730 ((matrix == 1) ? (key | key << 2) : 0x00), 1);
4731 bttv_I2CWrite(btv, I2C_TDA8540_ALT6, 0x00,
4732 ((matrix == 2) ? (key | key << 2) : 0x00), 1);
4733
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004734 /* Handles the output enables on the TDA8540's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 bttv_I2CWrite(btv, I2C_TDA8540_ALT3, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004736 ((matrix == 3) ? 0x03 : 0x00), 1); /* 13 - 16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 bttv_I2CWrite(btv, I2C_TDA8540_ALT4, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004738 ((matrix == 0) ? 0x03 : 0x00), 1); /* 1-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 bttv_I2CWrite(btv, I2C_TDA8540_ALT5, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004740 ((matrix == 1) ? 0x03 : 0x00), 1); /* 5-8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 bttv_I2CWrite(btv, I2C_TDA8540_ALT6, 0x02,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004742 ((matrix == 2) ? 0x03 : 0x00), 1); /* 9-12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07004744 /* Selects MUX0 for input on the 878 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 btaor((0)<<5, ~(3<<5), BT848_IFORM);
4746}
4747
4748
4749/* PXC200 muxsel helper
4750 * luke@syseng.anu.edu.au
4751 * another transplant
4752 * from Alessandro Rubini (rubini@linux.it)
4753 *
4754 * There are 4 kinds of cards:
4755 * PXC200L which is bt848
4756 * PXC200F which is bt848 with PIC controlling mux
4757 * PXC200AL which is bt878
4758 * PXC200AF which is bt878 with PIC controlling mux
4759 */
4760#define PX_CFG_PXC200F 0x01
4761#define PX_FLAG_PXC200A 0x00001000 /* a pxc200A is bt-878 based */
4762#define PX_I2C_PIC 0x0f
4763#define PX_PXC200A_CARDID 0x200a1295
4764#define PX_I2C_CMD_CFG 0x00
4765
4766static void PXC200_muxsel(struct bttv *btv, unsigned int input)
4767{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004768 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 long mux;
4770 int bitmask;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004771 unsigned char buf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
4773 /* Read PIC config to determine if this is a PXC200F */
4774 /* PX_I2C_CMD_CFG*/
4775 buf[0]=0;
4776 buf[1]=0;
4777 rc=bttv_I2CWrite(btv,(PX_I2C_PIC<<1),buf[0],buf[1],1);
4778 if (rc) {
4779 printk(KERN_DEBUG "bttv%d: PXC200_muxsel: pic cfg write failed:%d\n", btv->c.nr,rc);
4780 /* not PXC ? do nothing */
4781 return;
4782 }
4783
4784 rc=bttv_I2CRead(btv,(PX_I2C_PIC<<1),NULL);
4785 if (!(rc & PX_CFG_PXC200F)) {
4786 printk(KERN_DEBUG "bttv%d: PXC200_muxsel: not PXC200F rc:%d \n", btv->c.nr,rc);
4787 return;
4788 }
4789
4790
4791 /* The multiplexer in the 200F is handled by the GPIO port */
4792 /* get correct mapping between inputs */
4793 /* mux = bttv_tvcards[btv->type].muxsel[input] & 3; */
4794 /* ** not needed!? */
4795 mux = input;
4796
4797 /* make sure output pins are enabled */
4798 /* bitmask=0x30f; */
4799 bitmask=0x302;
4800 /* check whether we have a PXC200A */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004801 if (btv->cardid == PX_PXC200A_CARDID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 bitmask ^= 0x180; /* use 7 and 9, not 8 and 9 */
4803 bitmask |= 7<<4; /* the DAC */
4804 }
4805 btwrite(bitmask, BT848_GPIO_OUT_EN);
4806
4807 bitmask = btread(BT848_GPIO_DATA);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004808 if (btv->cardid == PX_PXC200A_CARDID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 bitmask = (bitmask & ~0x280) | ((mux & 2) << 8) | ((mux & 1) << 7);
4810 else /* older device */
4811 bitmask = (bitmask & ~0x300) | ((mux & 3) << 8);
4812 btwrite(bitmask,BT848_GPIO_DATA);
4813
4814 /*
4815 * Was "to be safe, set the bt848 to input 0"
4816 * Actually, since it's ok at load time, better not messing
4817 * with these bits (on PXC200AF you need to set mux 2 here)
4818 *
4819 * needed because bttv-driver sets mux before calling this function
4820 */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004821 if (btv->cardid == PX_PXC200A_CARDID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 btaor(2<<5, ~BT848_IFORM_MUXSEL, BT848_IFORM);
4823 else /* older device */
4824 btand(~BT848_IFORM_MUXSEL,BT848_IFORM);
4825
4826 printk(KERN_DEBUG "bttv%d: setting input channel to:%d\n", btv->c.nr,(int)mux);
4827}
4828
4829/* ----------------------------------------------------------------------- */
4830/* motherboard chipset specific stuff */
4831
Adrian Bunk7d44e892007-12-11 19:23:43 -03004832void __init bttv_check_chipset(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833{
4834 int pcipci_fail = 0;
4835 struct pci_dev *dev = NULL;
4836
Alan Cox3d265c92006-09-14 11:53:16 -03004837 if (pci_pci_problems & (PCIPCI_FAIL|PCIAGP_FAIL)) /* should check if target is AGP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 pcipci_fail = 1;
4839 if (pci_pci_problems & (PCIPCI_TRITON|PCIPCI_NATOMA|PCIPCI_VIAETBF))
4840 triton1 = 1;
4841 if (pci_pci_problems & PCIPCI_VSFX)
4842 vsfx = 1;
4843#ifdef PCIPCI_ALIMAGIK
4844 if (pci_pci_problems & PCIPCI_ALIMAGIK)
4845 latency = 0x0A;
4846#endif
4847
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
4849 /* print warnings about any quirks found */
4850 if (triton1)
4851 printk(KERN_INFO "bttv: Host bridge needs ETBF enabled.\n");
4852 if (vsfx)
4853 printk(KERN_INFO "bttv: Host bridge needs VSFX enabled.\n");
4854 if (pcipci_fail) {
Mauro Carvalho Chehab9050d942006-03-10 16:46:50 -03004855 printk(KERN_INFO "bttv: bttv and your chipset may not work "
4856 "together.\n");
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004857 if (!no_overlay) {
Mauro Carvalho Chehab9050d942006-03-10 16:46:50 -03004858 printk(KERN_INFO "bttv: overlay will be disabled.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 no_overlay = 1;
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004860 } else {
Mauro Carvalho Chehab9050d942006-03-10 16:46:50 -03004861 printk(KERN_INFO "bttv: overlay forced. Use this "
4862 "option at your own risk.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 }
4864 }
4865 if (UNSET != latency)
4866 printk(KERN_INFO "bttv: pci latency fixup [%d]\n",latency);
Mauro Carvalho Chehab2bfa1ac2005-11-08 21:36:51 -08004867 while ((dev = pci_get_device(PCI_VENDOR_ID_INTEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 PCI_DEVICE_ID_INTEL_82441, dev))) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004869 unsigned char b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 pci_read_config_byte(dev, 0x53, &b);
4871 if (bttv_debug)
4872 printk(KERN_INFO "bttv: Host bridge: 82441FX Natoma, "
4873 "bufcon=0x%02x\n",b);
4874 }
4875}
4876
4877int __devinit bttv_handle_chipset(struct bttv *btv)
4878{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004879 unsigned char command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
4881 if (!triton1 && !vsfx && UNSET == latency)
4882 return 0;
4883
4884 if (bttv_verbose) {
4885 if (triton1)
4886 printk(KERN_INFO "bttv%d: enabling ETBF (430FX/VP3 compatibilty)\n",btv->c.nr);
4887 if (vsfx && btv->id >= 878)
4888 printk(KERN_INFO "bttv%d: enabling VSFX\n",btv->c.nr);
4889 if (UNSET != latency)
4890 printk(KERN_INFO "bttv%d: setting pci timer to %d\n",
4891 btv->c.nr,latency);
4892 }
4893
4894 if (btv->id < 878) {
4895 /* bt848 (mis)uses a bit in the irq mask for etbf */
4896 if (triton1)
4897 btv->triton1 = BT848_INT_ETBF;
4898 } else {
4899 /* bt878 has a bit in the pci config space for it */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004900 pci_read_config_byte(btv->c.pci, BT878_DEVCTRL, &command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 if (triton1)
4902 command |= BT878_EN_TBFX;
4903 if (vsfx)
4904 command |= BT878_EN_VSFX;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004905 pci_write_config_byte(btv->c.pci, BT878_DEVCTRL, command);
4906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 if (UNSET != latency)
4908 pci_write_config_byte(btv->c.pci, PCI_LATENCY_TIMER, latency);
4909 return 0;
4910}
4911
4912
4913/*
4914 * Local variables:
4915 * c-basic-offset: 8
4916 * End:
4917 */