5 this file has configuration informations - card-specific stuff
6 like the big tvcards array for the most part
8 Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
9 & Marcus Metzler (mocm@thp.uni-koeln.de)
10 (c) 1999-2001 Gerd Knorr <kraxel@goldbach.in-berlin.de>
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.
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.
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.
28 #include <linux/config.h>
29 #include <linux/delay.h>
30 #include <linux/module.h>
31 #include <linux/moduleparam.h>
32 #include <linux/kmod.h>
33 #include <linux/init.h>
34 #include <linux/pci.h>
35 #include <linux/vmalloc.h>
36 #include <linux/firmware.h>
41 #include <media/v4l2-common.h>
42 #include <media/tvaudio.h>
45 static void boot_msp34xx(struct bttv
*btv
, int pin
);
46 static void boot_bt832(struct bttv
*btv
);
47 static void hauppauge_eeprom(struct bttv
*btv
);
48 static void avermedia_eeprom(struct bttv
*btv
);
49 static void osprey_eeprom(struct bttv
*btv
);
50 static void modtec_eeprom(struct bttv
*btv
);
51 static void init_PXC200(struct bttv
*btv
);
52 static void init_RTV24(struct bttv
*btv
);
54 static void winview_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
55 static void lt9415_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
56 static void avermedia_tvphone_audio(struct bttv
*btv
, struct video_audio
*v
,
58 static void avermedia_tv_stereo_audio(struct bttv
*btv
, struct video_audio
*v
,
60 static void terratv_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
61 static void gvbctv3pci_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
62 static void gvbctv5pci_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
63 static void winfast2000_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
64 static void pvbt878p9b_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
65 static void fv2000s_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
66 static void windvr_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
67 static void adtvk503_audio(struct bttv
*btv
, struct video_audio
*v
, int set
);
68 static void rv605_muxsel(struct bttv
*btv
, unsigned int input
);
69 static void eagle_muxsel(struct bttv
*btv
, unsigned int input
);
70 static void xguard_muxsel(struct bttv
*btv
, unsigned int input
);
71 static void ivc120_muxsel(struct bttv
*btv
, unsigned int input
);
72 static void gvc1100_muxsel(struct bttv
*btv
, unsigned int input
);
74 static void PXC200_muxsel(struct bttv
*btv
, unsigned int input
);
76 static void picolo_tetra_muxsel(struct bttv
*btv
, unsigned int input
);
77 static void picolo_tetra_init(struct bttv
*btv
);
79 static void tibetCS16_muxsel(struct bttv
*btv
, unsigned int input
);
80 static void tibetCS16_init(struct bttv
*btv
);
82 static void kodicom4400r_muxsel(struct bttv
*btv
, unsigned int input
);
83 static void kodicom4400r_init(struct bttv
*btv
);
85 static void sigmaSLC_muxsel(struct bttv
*btv
, unsigned int input
);
86 static void sigmaSQ_muxsel(struct bttv
*btv
, unsigned int input
);
88 static int terratec_active_radio_upgrade(struct bttv
*btv
);
89 static int tea5757_read(struct bttv
*btv
);
90 static int tea5757_write(struct bttv
*btv
, int value
);
91 static void identify_by_eeprom(struct bttv
*btv
,
92 unsigned char eeprom_data
[256]);
93 static int __devinit
pvr_boot(struct bttv
*btv
);
95 /* config variables */
96 static unsigned int triton1
;
97 static unsigned int vsfx
;
98 static unsigned int latency
= UNSET
;
101 static unsigned int card
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
102 static unsigned int pll
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
103 static unsigned int tuner
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
104 static unsigned int svhs
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
105 static unsigned int remote
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = UNSET
};
106 static struct bttv
*master
[BTTV_MAX
] = { [ 0 ... (BTTV_MAX
-1) ] = NULL
};
108 static unsigned int autoload
= 1;
110 static unsigned int autoload
;
112 static unsigned int gpiomask
= UNSET
;
113 static unsigned int audioall
= UNSET
;
114 static unsigned int audiomux
[5] = { [ 0 ... 4 ] = UNSET
};
117 module_param(triton1
, int, 0444);
118 module_param(vsfx
, int, 0444);
119 module_param(no_overlay
, int, 0444);
120 module_param(latency
, int, 0444);
121 module_param(gpiomask
, int, 0444);
122 module_param(audioall
, int, 0444);
123 module_param(autoload
, int, 0444);
125 module_param_array(card
, int, NULL
, 0444);
126 module_param_array(pll
, int, NULL
, 0444);
127 module_param_array(tuner
, int, NULL
, 0444);
128 module_param_array(svhs
, int, NULL
, 0444);
129 module_param_array(remote
, int, NULL
, 0444);
130 module_param_array(audiomux
, int, NULL
, 0444);
132 MODULE_PARM_DESC(triton1
,"set ETBF pci config bit "
133 "[enable bug compatibility for triton1 + others]");
134 MODULE_PARM_DESC(vsfx
,"set VSFX pci config bit "
135 "[yet another chipset flaw workaround]");
136 MODULE_PARM_DESC(latency
,"pci latency timer");
137 MODULE_PARM_DESC(card
,"specify TV/grabber card model, see CARDLIST file for a list");
138 MODULE_PARM_DESC(pll
,"specify installed crystal (0=none, 28=28 MHz, 35=35 MHz)");
139 MODULE_PARM_DESC(tuner
,"specify installed tuner type");
140 MODULE_PARM_DESC(autoload
,"automatically load i2c modules like tuner.o, default is 1 (yes)");
141 MODULE_PARM_DESC(no_overlay
,"allow override overlay default (0 disables, 1 enables)"
142 " [some VIA/SIS chipsets are known to have problem with overlay]");
144 /* ----------------------------------------------------------------------- */
145 /* list of card IDs for bt878+ cards */
151 } cards
[] __devinitdata
= {
152 { 0x13eb0070, BTTV_BOARD_HAUPPAUGE878
, "Hauppauge WinTV" },
153 { 0x39000070, BTTV_BOARD_HAUPPAUGE878
, "Hauppauge WinTV-D" },
154 { 0x45000070, BTTV_BOARD_HAUPPAUGEPVR
, "Hauppauge WinTV/PVR" },
155 { 0xff000070, BTTV_BOARD_OSPREY1x0
, "Osprey-100" },
156 { 0xff010070, BTTV_BOARD_OSPREY2x0_SVID
,"Osprey-200" },
157 { 0xff020070, BTTV_BOARD_OSPREY500
, "Osprey-500" },
158 { 0xff030070, BTTV_BOARD_OSPREY2000
, "Osprey-2000" },
159 { 0xff040070, BTTV_BOARD_OSPREY540
, "Osprey-540" },
160 { 0xff070070, BTTV_BOARD_OSPREY440
, "Osprey-440" },
162 { 0x00011002, BTTV_BOARD_ATI_TVWONDER
, "ATI TV Wonder" },
163 { 0x00031002, BTTV_BOARD_ATI_TVWONDERVE
,"ATI TV Wonder/VE" },
165 { 0x6606107d, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
166 { 0x6607107d, BTTV_BOARD_WINFASTVC100
, "Leadtek WinFast VC 100" },
167 { 0x6609107d, BTTV_BOARD_WINFAST2000
, "Leadtek TV 2000 XP" },
168 { 0x263610b4, BTTV_BOARD_STB2
, "STB TV PCI FM, Gateway P/N 6000704" },
169 { 0x264510b4, BTTV_BOARD_STB2
, "STB TV PCI FM, Gateway P/N 6000704" },
170 { 0x402010fc, BTTV_BOARD_GVBCTV3PCI
, "I-O Data Co. GV-BCTV3/PCI" },
171 { 0x405010fc, BTTV_BOARD_GVBCTV4PCI
, "I-O Data Co. GV-BCTV4/PCI" },
172 { 0x407010fc, BTTV_BOARD_GVBCTV5PCI
, "I-O Data Co. GV-BCTV5/PCI" },
173 { 0xd01810fc, BTTV_BOARD_GVBCTV5PCI
, "I-O Data Co. GV-BCTV5/PCI" },
175 { 0x001211bd, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV" },
176 /* some cards ship with byteswapped IDs ... */
177 { 0x1200bd11, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV [bswap]" },
178 { 0xff00bd11, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV [bswap]" },
179 /* this seems to happen as well ... */
180 { 0xff1211bd, BTTV_BOARD_PINNACLE
, "Pinnacle PCTV" },
182 { 0x3000121a, BTTV_BOARD_VOODOOTV_FM
, "3Dfx VoodooTV FM/ VoodooTV 200" },
183 { 0x263710b4, BTTV_BOARD_VOODOOTV_FM
, "3Dfx VoodooTV FM/ VoodooTV 200" },
184 { 0x3060121a, BTTV_BOARD_STB2
, "3Dfx VoodooTV 100/ STB OEM" },
186 { 0x3000144f, BTTV_BOARD_MAGICTVIEW063
, "(Askey Magic/others) TView99 CPH06x" },
187 { 0xa005144f, BTTV_BOARD_MAGICTVIEW063
, "CPH06X TView99-Card" },
188 { 0x3002144f, BTTV_BOARD_MAGICTVIEW061
, "(Askey Magic/others) TView99 CPH05x" },
189 { 0x3005144f, BTTV_BOARD_MAGICTVIEW061
, "(Askey Magic/others) TView99 CPH061/06L (T1/LC)" },
190 { 0x5000144f, BTTV_BOARD_MAGICTVIEW061
, "Askey CPH050" },
191 { 0x300014ff, BTTV_BOARD_MAGICTVIEW061
, "TView 99 (CPH061)" },
192 { 0x300214ff, BTTV_BOARD_PHOEBE_TVMAS
, "Phoebe TV Master (CPH060)" },
194 { 0x00011461, BTTV_BOARD_AVPHONE98
, "AVerMedia TVPhone98" },
195 { 0x00021461, BTTV_BOARD_AVERMEDIA98
, "AVermedia TVCapture 98" },
196 { 0x00031461, BTTV_BOARD_AVPHONE98
, "AVerMedia TVPhone98" },
197 { 0x00041461, BTTV_BOARD_AVERMEDIA98
, "AVerMedia TVCapture 98" },
198 { 0x03001461, BTTV_BOARD_AVERMEDIA98
, "VDOMATE TV TUNER CARD" },
200 { 0x1117153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Philips PAL B/G)" },
201 { 0x1118153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Temic PAL B/G)" },
202 { 0x1119153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Philips PAL I)" },
203 { 0x111a153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (Temic PAL I)" },
205 { 0x1123153b, BTTV_BOARD_TERRATVRADIO
, "Terratec TV Radio+" },
206 { 0x1127153b, BTTV_BOARD_TERRATV
, "Terratec TV+ (V1.05)" },
207 /* clashes with FlyVideo
208 *{ 0x18521852, BTTV_BOARD_TERRATV, "Terratec TV+ (V1.10)" }, */
209 { 0x1134153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue (LR102)" },
210 { 0x1135153b, BTTV_BOARD_TERRATVALUER
, "Terratec TValue Radio" }, /* LR102 */
211 { 0x5018153b, BTTV_BOARD_TERRATVALUE
, "Terratec TValue" }, /* ?? */
212 { 0xff3b153b, BTTV_BOARD_TERRATVALUER
, "Terratec TValue Radio" }, /* ?? */
214 { 0x400015b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV" },
215 { 0x400a15b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV" },
216 { 0x400d15b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
217 { 0x401015b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
218 { 0x401615b0, BTTV_BOARD_ZOLTRIX_GENIE
, "Zoltrix Genie TV / Radio" },
220 { 0x1430aa00, BTTV_BOARD_PV143
, "Provideo PV143A" },
221 { 0x1431aa00, BTTV_BOARD_PV143
, "Provideo PV143B" },
222 { 0x1432aa00, BTTV_BOARD_PV143
, "Provideo PV143C" },
223 { 0x1433aa00, BTTV_BOARD_PV143
, "Provideo PV143D" },
224 { 0x1433aa03, BTTV_BOARD_PV143
, "Security Eyes" },
226 { 0x1460aa00, BTTV_BOARD_PV150
, "Provideo PV150A-1" },
227 { 0x1461aa01, BTTV_BOARD_PV150
, "Provideo PV150A-2" },
228 { 0x1462aa02, BTTV_BOARD_PV150
, "Provideo PV150A-3" },
229 { 0x1463aa03, BTTV_BOARD_PV150
, "Provideo PV150A-4" },
231 { 0x1464aa04, BTTV_BOARD_PV150
, "Provideo PV150B-1" },
232 { 0x1465aa05, BTTV_BOARD_PV150
, "Provideo PV150B-2" },
233 { 0x1466aa06, BTTV_BOARD_PV150
, "Provideo PV150B-3" },
234 { 0x1467aa07, BTTV_BOARD_PV150
, "Provideo PV150B-4" },
236 { 0xa132ff00, BTTV_BOARD_IVC100
, "IVC-100" },
237 { 0xa1550000, BTTV_BOARD_IVC200
, "IVC-200" },
238 { 0xa1550001, BTTV_BOARD_IVC200
, "IVC-200" },
239 { 0xa1550002, BTTV_BOARD_IVC200
, "IVC-200" },
240 { 0xa1550003, BTTV_BOARD_IVC200
, "IVC-200" },
241 { 0xa1550100, BTTV_BOARD_IVC200
, "IVC-200G" },
242 { 0xa1550101, BTTV_BOARD_IVC200
, "IVC-200G" },
243 { 0xa1550102, BTTV_BOARD_IVC200
, "IVC-200G" },
244 { 0xa1550103, BTTV_BOARD_IVC200
, "IVC-200G" },
245 { 0xa182ff00, BTTV_BOARD_IVC120
, "IVC-120G" },
246 { 0xa182ff01, BTTV_BOARD_IVC120
, "IVC-120G" },
247 { 0xa182ff02, BTTV_BOARD_IVC120
, "IVC-120G" },
248 { 0xa182ff03, BTTV_BOARD_IVC120
, "IVC-120G" },
249 { 0xa182ff04, BTTV_BOARD_IVC120
, "IVC-120G" },
250 { 0xa182ff05, BTTV_BOARD_IVC120
, "IVC-120G" },
251 { 0xa182ff06, BTTV_BOARD_IVC120
, "IVC-120G" },
252 { 0xa182ff07, BTTV_BOARD_IVC120
, "IVC-120G" },
253 { 0xa182ff08, BTTV_BOARD_IVC120
, "IVC-120G" },
254 { 0xa182ff09, BTTV_BOARD_IVC120
, "IVC-120G" },
255 { 0xa182ff0a, BTTV_BOARD_IVC120
, "IVC-120G" },
256 { 0xa182ff0b, BTTV_BOARD_IVC120
, "IVC-120G" },
257 { 0xa182ff0c, BTTV_BOARD_IVC120
, "IVC-120G" },
258 { 0xa182ff0d, BTTV_BOARD_IVC120
, "IVC-120G" },
259 { 0xa182ff0e, BTTV_BOARD_IVC120
, "IVC-120G" },
260 { 0xa182ff0f, BTTV_BOARD_IVC120
, "IVC-120G" },
262 { 0x41424344, BTTV_BOARD_GRANDTEC
, "GrandTec Multi Capture" },
263 { 0x01020304, BTTV_BOARD_XGUARD
, "Grandtec Grand X-Guard" },
265 { 0x18501851, BTTV_BOARD_CHRONOS_VS2
, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
266 { 0xa0501851, BTTV_BOARD_CHRONOS_VS2
, "FlyVideo 98 (LR50)/ Chronos Video Shuttle II" },
267 { 0x18511851, BTTV_BOARD_FLYVIDEO98EZ
, "FlyVideo 98EZ (LR51)/ CyberMail AV" },
268 { 0x18521852, BTTV_BOARD_TYPHOON_TVIEW
, "FlyVideo 98FM (LR50)/ Typhoon TView TV/FM Tuner" },
269 { 0x41a0a051, BTTV_BOARD_FLYVIDEO_98FM
, "Lifeview FlyVideo 98 LR50 Rev Q" },
270 { 0x18501f7f, BTTV_BOARD_FLYVIDEO_98
, "Lifeview Flyvideo 98" },
272 { 0x010115cb, BTTV_BOARD_GMV1
, "AG GMV1" },
273 { 0x010114c7, BTTV_BOARD_MODTEC_205
, "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV" },
275 { 0x10b42636, BTTV_BOARD_HAUPPAUGE878
, "STB ???" },
276 { 0x217d6606, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
277 { 0xfff6f6ff, BTTV_BOARD_WINFAST2000
, "Leadtek WinFast TV 2000" },
278 { 0x03116000, BTTV_BOARD_SENSORAY311
, "Sensoray 311" },
279 { 0x00790e11, BTTV_BOARD_WINDVR
, "Canopus WinDVR PCI" },
280 { 0xa0fca1a0, BTTV_BOARD_ZOLTRIX
, "Face to Face Tvmax" },
281 { 0x82b2aa6a, BTTV_BOARD_SIMUS_GVC1100
, "SIMUS GVC1100" },
282 { 0x146caa0c, BTTV_BOARD_PV951
, "ituner spectra8" },
283 { 0x200a1295, BTTV_BOARD_PXC200
, "ImageNation PXC200A" },
285 { 0x40111554, BTTV_BOARD_PV_BT878P_9B
, "Prolink Pixelview PV-BT" },
286 { 0x17de0a01, BTTV_BOARD_KWORLD
, "Mecer TV/FM/Video Tuner" },
288 { 0x01051805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #1" },
289 { 0x01061805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #2" },
290 { 0x01071805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #3" },
291 { 0x01081805, BTTV_BOARD_PICOLO_TETRA_CHIP
, "Picolo Tetra Chip #4" },
293 { 0x15409511, BTTV_BOARD_ACORP_Y878F
, "Acorp Y878F" },
295 /* likely broken, vendor id doesn't match the other magic views ...
296 * { 0xa0fca04f, BTTV_BOARD_MAGICTVIEW063, "Guillemot Maxi TV Video 3" }, */
298 /* Duplicate PCI ID, reconfigure for this board during the eeprom read.
299 * { 0x13eb0070, BTTV_BOARD_HAUPPAUGE_IMPACTVCB, "Hauppauge ImpactVCB" }, */
301 /* DVB cards (using pci function .1 for mpeg data xfer) */
302 { 0x001c11bd, BTTV_BOARD_PINNACLESAT
, "Pinnacle PCTV Sat" },
303 { 0x01010071, BTTV_BOARD_NEBULA_DIGITV
, "Nebula Electronics DigiTV" },
304 { 0x20007063, BTTV_BOARD_PC_HDTV
, "pcHDTV HD-2000 TV"},
305 { 0x002611bd, BTTV_BOARD_TWINHAN_DST
, "Pinnacle PCTV SAT CI" },
306 { 0x00011822, BTTV_BOARD_TWINHAN_DST
, "Twinhan VisionPlus DVB" },
307 { 0xfc00270f, BTTV_BOARD_TWINHAN_DST
, "ChainTech digitop DST-1000 DVB-S" },
308 { 0x07711461, BTTV_BOARD_AVDVBT_771
, "AVermedia AverTV DVB-T 771" },
309 { 0x07611461, BTTV_BOARD_AVDVBT_761
, "AverMedia AverTV DVB-T 761" },
310 { 0xdb1018ac, BTTV_BOARD_DVICO_DVBT_LITE
, "DViCO FusionHDTV DVB-T Lite" },
311 { 0xd50018ac, BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
, "DViCO FusionHDTV 5 Lite" },
316 /* ----------------------------------------------------------------------- */
317 /* array with description for bt848 / bt878 tv/grabber cards */
319 struct tvcard bttv_tvcards
[] = {
320 /* ---- card 0x00 ---------------------------------- */
321 [BTTV_BOARD_UNKNOWN
] = {
322 .name
= " *** UNKNOWN/GENERIC *** ",
327 .muxsel
= { 2, 3, 1, 0 },
329 .tuner_addr
= ADDR_UNSET
,
330 .radio_addr
= ADDR_UNSET
,
332 [BTTV_BOARD_MIRO
] = {
339 .muxsel
= { 2, 3, 1, 1 },
340 .gpiomux
= { 2, 0, 0, 0 },
344 .tuner_addr
= ADDR_UNSET
,
345 .radio_addr
= ADDR_UNSET
,
347 [BTTV_BOARD_HAUPPAUGE
] = {
348 .name
= "Hauppauge (bt848)",
354 .muxsel
= { 2, 3, 1, 1 },
355 .gpiomux
= { 0, 1, 2, 3 },
359 .tuner_addr
= ADDR_UNSET
,
360 .radio_addr
= ADDR_UNSET
,
363 .name
= "STB, Gateway P/N 6000699 (bt848)",
369 .muxsel
= { 2, 3, 1, 1 },
370 .gpiomux
= { 4, 0, 2, 3 },
374 .tuner_type
= TUNER_PHILIPS_NTSC
,
375 .tuner_addr
= ADDR_UNSET
,
376 .radio_addr
= ADDR_UNSET
,
381 /* ---- card 0x04 ---------------------------------- */
382 [BTTV_BOARD_INTEL
] = {
383 .name
= "Intel Create and Share PCI/ Smart Video Recorder III",
389 .muxsel
= { 2, 3, 1, 1 },
393 .tuner_addr
= ADDR_UNSET
,
394 .radio_addr
= ADDR_UNSET
,
396 [BTTV_BOARD_DIAMOND
] = {
397 .name
= "Diamond DTV2000",
403 .muxsel
= { 2, 3, 1, 0 },
404 .gpiomux
= { 0, 1, 0, 1 },
408 .tuner_addr
= ADDR_UNSET
,
409 .radio_addr
= ADDR_UNSET
,
411 [BTTV_BOARD_AVERMEDIA
] = {
412 .name
= "AVerMedia TVPhone",
417 .muxsel
= { 2, 3, 1, 1 },
419 .gpiomux
= { 0x0c, 0x04, 0x08, 0x04 },
420 /* 0x04 for some cards ?? */
423 .tuner_addr
= ADDR_UNSET
,
424 .radio_addr
= ADDR_UNSET
,
425 .audio_hook
= avermedia_tvphone_audio
,
428 [BTTV_BOARD_MATRIX_VISION
] = {
429 .name
= "MATRIX-Vision MV-Delta",
435 .muxsel
= { 2, 3, 1, 0, 0 },
439 .tuner_addr
= ADDR_UNSET
,
440 .radio_addr
= ADDR_UNSET
,
443 /* ---- card 0x08 ---------------------------------- */
444 [BTTV_BOARD_FLYVIDEO
] = {
445 .name
= "Lifeview FlyVideo II (Bt848) LR26 / MAXI TV Video PCI2 LR26",
451 .muxsel
= { 2, 3, 1, 1 },
452 .gpiomux
= { 0, 0xc00, 0x800, 0x400 },
457 .tuner_addr
= ADDR_UNSET
,
458 .radio_addr
= ADDR_UNSET
,
460 [BTTV_BOARD_TURBOTV
] = {
461 .name
= "IMS/IXmicro TurboTV",
467 .muxsel
= { 2, 3, 1, 1 },
468 .gpiomux
= { 1, 1, 2, 3 },
471 .tuner_type
= TUNER_TEMIC_PAL
,
472 .tuner_addr
= ADDR_UNSET
,
473 .radio_addr
= ADDR_UNSET
,
475 [BTTV_BOARD_HAUPPAUGE878
] = {
476 .name
= "Hauppauge (bt878)",
481 .gpiomask
= 0x0f, /* old: 7 */
482 .muxsel
= { 2, 0, 1, 1 },
483 .gpiomux
= { 0, 1, 2, 3 },
488 .tuner_addr
= ADDR_UNSET
,
489 .radio_addr
= ADDR_UNSET
,
491 [BTTV_BOARD_MIROPRO
] = {
492 .name
= "MIRO PCTV pro",
498 .muxsel
= { 2, 3, 1, 1 },
499 .gpiomux
= { 0x20001,0x10001, 0, 0 },
503 .tuner_addr
= ADDR_UNSET
,
504 .radio_addr
= ADDR_UNSET
,
507 /* ---- card 0x0c ---------------------------------- */
508 [BTTV_BOARD_ADSTECH_TV
] = {
509 .name
= "ADS Technologies Channel Surfer TV (bt848)",
515 .muxsel
= { 2, 3, 1, 1 },
516 .gpiomux
= { 13, 14, 11, 7 },
519 .tuner_addr
= ADDR_UNSET
,
520 .radio_addr
= ADDR_UNSET
,
522 [BTTV_BOARD_AVERMEDIA98
] = {
523 .name
= "AVerMedia TVCapture 98",
529 .muxsel
= { 2, 3, 1, 1 },
530 .gpiomux
= { 13, 14, 11, 7 },
534 .tuner_type
= TUNER_PHILIPS_PAL
,
535 .tuner_addr
= ADDR_UNSET
,
536 .radio_addr
= ADDR_UNSET
,
537 .audio_hook
= avermedia_tv_stereo_audio
,
541 .name
= "Aimslab Video Highway Xtreme (VHX)",
547 .muxsel
= { 2, 3, 1, 1 },
548 .gpiomux
= { 0, 2, 1, 3 }, /* old: {0, 1, 2, 3, 4} */
553 .tuner_addr
= ADDR_UNSET
,
554 .radio_addr
= ADDR_UNSET
,
556 [BTTV_BOARD_ZOLTRIX
] = {
557 .name
= "Zoltrix TV-Max",
563 .muxsel
= { 2, 3, 1, 1 },
564 .gpiomux
= { 0, 0, 1, 0 },
568 .tuner_addr
= ADDR_UNSET
,
569 .radio_addr
= ADDR_UNSET
,
572 /* ---- card 0x10 ---------------------------------- */
573 [BTTV_BOARD_PIXVIEWPLAYTV
] = {
574 .name
= "Prolink Pixelview PlayTV (bt878)",
579 .gpiomask
= 0x01fe00,
580 .muxsel
= { 2, 3, 1, 1 },
583 .gpiomux
= { 0x01c000, 0, 0x018000, 0x014000, 0x002000 },
585 /* 2003-10-20 by "Anton A. Arapov" <arapov@mail.ru> */
586 .gpiomux
= { 0x001e00, 0, 0x018000, 0x014000 },
587 .gpiomute
= 0x002000,
593 [BTTV_BOARD_WINVIEW_601
] = {
594 .name
= "Leadtek WinView 601",
599 .gpiomask
= 0x8300f8,
600 .muxsel
= { 2, 3, 1, 1,0 },
601 .gpiomux
= { 0x4fa007,0xcfa007,0xcfa007,0xcfa007 },
602 .gpiomute
= 0xcfa007,
605 .tuner_addr
= ADDR_UNSET
,
606 .radio_addr
= ADDR_UNSET
,
607 .audio_hook
= winview_audio
,
610 [BTTV_BOARD_AVEC_INTERCAP
] = {
611 .name
= "AVEC Intercapture",
617 .muxsel
= { 2, 3, 1, 1 },
618 .gpiomux
= { 1, 0, 0, 0 },
621 .tuner_addr
= ADDR_UNSET
,
622 .radio_addr
= ADDR_UNSET
,
624 [BTTV_BOARD_LIFE_FLYKIT
] = {
625 .name
= "Lifeview FlyVideo II EZ /FlyKit LR38 Bt848 (capture only)",
630 .gpiomask
= 0x8dff00,
631 .muxsel
= { 2, 3, 1, 1 },
635 .tuner_addr
= ADDR_UNSET
,
636 .radio_addr
= ADDR_UNSET
,
639 /* ---- card 0x14 ---------------------------------- */
640 [BTTV_BOARD_CEI_RAFFLES
] = {
641 .name
= "CEI Raffles Card",
646 .muxsel
= { 2, 3, 1, 1 },
648 .tuner_addr
= ADDR_UNSET
,
649 .radio_addr
= ADDR_UNSET
,
651 [BTTV_BOARD_CONFERENCETV
] = {
652 .name
= "Lifeview FlyVideo 98/ Lucky Star Image World ConferenceTV LR50",
654 .audio_inputs
= 2, /* tuner, line in */
658 .muxsel
= { 2, 3, 1, 1 },
659 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
662 .tuner_type
= TUNER_PHILIPS_PAL_I
,
663 .tuner_addr
= ADDR_UNSET
,
664 .radio_addr
= ADDR_UNSET
,
666 [BTTV_BOARD_PHOEBE_TVMAS
] = {
667 .name
= "Askey CPH050/ Phoebe Tv Master + FM",
673 .muxsel
= { 2, 3, 1, 1 },
674 .gpiomux
= { 0, 1, 0x800, 0x400 },
679 .tuner_addr
= ADDR_UNSET
,
680 .radio_addr
= ADDR_UNSET
,
682 [BTTV_BOARD_MODTEC_205
] = {
683 .name
= "Modular Technology MM201/MM202/MM205/MM210/MM215 PCTV, bt878",
689 .muxsel
= { 2, 3, -1 },
690 .digital_mode
= DIGITAL_MODE_CAMERA
,
691 .gpiomux
= { 0, 0, 0, 0 },
694 .tuner_type
= TUNER_ALPS_TSBB5_PAL_I
,
695 .tuner_addr
= ADDR_UNSET
,
696 .radio_addr
= ADDR_UNSET
,
699 /* ---- card 0x18 ---------------------------------- */
700 [BTTV_BOARD_MAGICTVIEW061
] = {
701 .name
= "Askey CPH05X/06X (bt878) [many vendors]",
707 .muxsel
= { 2, 3, 1, 1 },
708 .gpiomux
= {0x400, 0x400, 0x400, 0x400 },
713 .tuner_addr
= ADDR_UNSET
,
714 .radio_addr
= ADDR_UNSET
,
717 [BTTV_BOARD_VOBIS_BOOSTAR
] = {
718 .name
= "Terratec TerraTV+ Version 1.0 (Bt848)/ Terra TValue Version 1.0/ Vobis TV-Boostar",
723 .gpiomask
= 0x1f0fff,
724 .muxsel
= { 2, 3, 1, 1 },
725 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0 },
728 .tuner_type
= TUNER_PHILIPS_PAL
,
729 .tuner_addr
= ADDR_UNSET
,
730 .radio_addr
= ADDR_UNSET
,
731 .audio_hook
= terratv_audio
,
733 [BTTV_BOARD_HAUPPAUG_WCAM
] = {
734 .name
= "Hauppauge WinCam newer (bt878)",
740 .muxsel
= { 2, 0, 1, 1 },
741 .gpiomux
= { 0, 1, 2, 3 },
745 .tuner_addr
= ADDR_UNSET
,
746 .radio_addr
= ADDR_UNSET
,
748 [BTTV_BOARD_MAXI
] = {
749 .name
= "Lifeview FlyVideo 98/ MAXI TV Video PCI2 LR50",
755 .muxsel
= { 2, 3, 1, 1 },
756 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
759 .tuner_type
= TUNER_PHILIPS_SECAM
,
760 .tuner_addr
= ADDR_UNSET
,
761 .radio_addr
= ADDR_UNSET
,
764 /* ---- card 0x1c ---------------------------------- */
765 [BTTV_BOARD_TERRATV
] = {
766 .name
= "Terratec TerraTV+ Version 1.1 (bt878)",
771 .gpiomask
= 0x1f0fff,
772 .muxsel
= { 2, 3, 1, 1 },
773 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0x00000 },
776 .tuner_type
= TUNER_PHILIPS_PAL
,
777 .tuner_addr
= ADDR_UNSET
,
778 .radio_addr
= ADDR_UNSET
,
779 .audio_hook
= terratv_audio
,
781 External 20 pin connector (for Active Radio Upgrade board)
787 gpio05: om5610-stereo
791 gpio09+10: nIOR, nSEL ?? (bt878)
795 gpio16: u2-A0 (1st 4052bt)
798 gpio19: u4-A0 (2nd 4052)
802 00000 : Cdrom (internal audio input)
803 10000 : ext. Video audio input
812 [BTTV_BOARD_PXC200
] = {
813 /* Jannik Fritsch <jannik@techfak.uni-bielefeld.de> */
814 .name
= "Imagenation PXC200",
818 .svhs
= 1, /* was: 4 */
820 .muxsel
= { 2, 3, 1, 0, 0},
824 .tuner_addr
= ADDR_UNSET
,
825 .radio_addr
= ADDR_UNSET
,
826 .muxsel_hook
= PXC200_muxsel
,
829 [BTTV_BOARD_FLYVIDEO_98
] = {
830 .name
= "Lifeview FlyVideo 98 LR50",
835 .gpiomask
= 0x1800, /* 0x8dfe00 */
836 .muxsel
= { 2, 3, 1, 1 },
837 .gpiomux
= { 0, 0x0800, 0x1000, 0x1000 },
841 .tuner_addr
= ADDR_UNSET
,
842 .radio_addr
= ADDR_UNSET
,
844 [BTTV_BOARD_IPROTV
] = {
845 .name
= "Formac iProTV, Formac ProTV I (bt848)",
851 .muxsel
= { 2, 3, 1, 1 },
852 .gpiomux
= { 1, 0, 0, 0 },
854 .tuner_type
= TUNER_PHILIPS_PAL
,
855 .tuner_addr
= ADDR_UNSET
,
856 .radio_addr
= ADDR_UNSET
,
859 /* ---- card 0x20 ---------------------------------- */
860 [BTTV_BOARD_INTEL_C_S_PCI
] = {
861 .name
= "Intel Create and Share PCI/ Smart Video Recorder III",
867 .muxsel
= { 2, 3, 1, 1 },
871 .tuner_addr
= ADDR_UNSET
,
872 .radio_addr
= ADDR_UNSET
,
874 [BTTV_BOARD_TERRATVALUE
] = {
875 .name
= "Terratec TerraTValue Version Bt878",
880 .gpiomask
= 0xffff00,
881 .muxsel
= { 2, 3, 1, 1 },
882 .gpiomux
= { 0x500, 0, 0x300, 0x900 },
886 .tuner_type
= TUNER_PHILIPS_PAL
,
887 .tuner_addr
= ADDR_UNSET
,
888 .radio_addr
= ADDR_UNSET
,
890 [BTTV_BOARD_WINFAST2000
] = {
891 .name
= "Leadtek WinFast 2000/ WinFast 2000 XP",
896 .muxsel
= { 2, 3, 1, 1, 0 }, /* TV, CVid, SVid, CVid over SVid connector */
898 .gpiomask
= 0xc33000,
899 .gpiomux
= { 0x422000,0x1000,0x0000,0x620000,0x800000 },
901 /* Alexander Varakin <avarakin@hotmail.com> [stereo version] */
902 .gpiomask
= 0xb33000,
903 .gpiomux
= { 0x122000,0x1000,0x0000,0x620000 },
904 .gpiomute
= 0x800000,
906 /* Audio Routing for "WinFast 2000 XP" (no tv stereo !)
907 gpio23 -- hef4052:nEnable (0x800000)
910 0x0000: external audio
914 Note: There exists another variant "Winfast 2000" with tv stereo !?
915 Note: eeprom only contains FF and pci subsystem id 107d:6606
920 .tuner_type
= 5, /* default for now, gpio reads BFFF06 for Pal bg+dk */
921 .tuner_addr
= ADDR_UNSET
,
922 .radio_addr
= ADDR_UNSET
,
923 .audio_hook
= winfast2000_audio
,
926 [BTTV_BOARD_CHRONOS_VS2
] = {
927 .name
= "Lifeview FlyVideo 98 LR50 / Chronos Video Shuttle II",
933 .muxsel
= { 2, 3, 1, 1 },
934 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
938 .tuner_addr
= ADDR_UNSET
,
939 .radio_addr
= ADDR_UNSET
,
942 /* ---- card 0x24 ---------------------------------- */
943 [BTTV_BOARD_TYPHOON_TVIEW
] = {
944 .name
= "Lifeview FlyVideo 98FM LR50 / Typhoon TView TV/FM Tuner",
950 .muxsel
= { 2, 3, 1, 1 },
951 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
955 .tuner_addr
= ADDR_UNSET
,
956 .radio_addr
= ADDR_UNSET
,
959 [BTTV_BOARD_PXELVWPLTVPRO
] = {
960 .name
= "Prolink PixelView PlayTV pro",
966 .muxsel
= { 2, 3, 1, 1 },
967 .gpiomux
= { 0x21, 0x20, 0x24, 0x2c },
972 .tuner_addr
= ADDR_UNSET
,
973 .radio_addr
= ADDR_UNSET
,
975 [BTTV_BOARD_MAGICTVIEW063
] = {
976 .name
= "Askey CPH06X TView99",
981 .gpiomask
= 0x551e00,
982 .muxsel
= { 2, 3, 1, 0 },
983 .gpiomux
= { 0x551400, 0x551200, 0, 0 },
984 .gpiomute
= 0x551c00,
988 .tuner_addr
= ADDR_UNSET
,
989 .radio_addr
= ADDR_UNSET
,
992 [BTTV_BOARD_PINNACLE
] = {
993 .name
= "Pinnacle PCTV Studio/Rave",
998 .gpiomask
= 0x03000F,
999 .muxsel
= { 2, 3, 1, 1 },
1000 .gpiomux
= { 2, 0xd0001, 0, 0 },
1005 .tuner_addr
= ADDR_UNSET
,
1006 .radio_addr
= ADDR_UNSET
,
1009 /* ---- card 0x28 ---------------------------------- */
1010 [BTTV_BOARD_STB2
] = {
1011 .name
= "STB TV PCI FM, Gateway P/N 6000704 (bt878), 3Dfx VoodooTV 100",
1017 .muxsel
= { 2, 3, 1, 1 },
1018 .gpiomux
= { 4, 0, 2, 3 },
1022 .tuner_type
= TUNER_PHILIPS_NTSC
,
1023 .tuner_addr
= ADDR_UNSET
,
1024 .radio_addr
= ADDR_UNSET
,
1028 [BTTV_BOARD_AVPHONE98
] = {
1029 .name
= "AVerMedia TVPhone 98",
1035 .muxsel
= { 2, 3, 1, 1 },
1036 .gpiomux
= { 13, 4, 11, 7 },
1040 .tuner_addr
= ADDR_UNSET
,
1041 .radio_addr
= ADDR_UNSET
,
1043 .audio_hook
= avermedia_tvphone_audio
,
1045 [BTTV_BOARD_PV951
] = {
1046 .name
= "ProVideo PV951", /* pic16c54 */
1052 .muxsel
= { 2, 3, 1, 1},
1053 .gpiomux
= { 0, 0, 0, 0},
1058 .tuner_addr
= ADDR_UNSET
,
1059 .radio_addr
= ADDR_UNSET
,
1061 [BTTV_BOARD_ONAIR_TV
] = {
1062 .name
= "Little OnAir TV",
1068 .muxsel
= { 2, 3, 1, 1 },
1069 .gpiomux
= { 0xff9ff6, 0xff9ff6, 0xff1ff7, 0 },
1070 .gpiomute
= 0xff3ffc,
1073 .tuner_addr
= ADDR_UNSET
,
1074 .radio_addr
= ADDR_UNSET
,
1077 /* ---- card 0x2c ---------------------------------- */
1078 [BTTV_BOARD_SIGMA_TVII_FM
] = {
1079 .name
= "Sigma TVII-FM",
1085 .muxsel
= { 2, 3, 1, 1 },
1086 .gpiomux
= { 1, 1, 0, 2 },
1091 .tuner_addr
= ADDR_UNSET
,
1092 .radio_addr
= ADDR_UNSET
,
1094 [BTTV_BOARD_MATRIX_VISION2
] = {
1095 .name
= "MATRIX-Vision MV-Delta 2",
1101 .muxsel
= { 2, 3, 1, 0, 0 },
1106 .tuner_addr
= ADDR_UNSET
,
1107 .radio_addr
= ADDR_UNSET
,
1109 [BTTV_BOARD_ZOLTRIX_GENIE
] = {
1110 .name
= "Zoltrix Genie TV/FM",
1115 .gpiomask
= 0xbcf03f,
1116 .muxsel
= { 2, 3, 1, 1 },
1117 .gpiomux
= { 0xbc803f, 0xbc903f, 0xbcb03f, 0 },
1118 .gpiomute
= 0xbcb03f,
1122 .tuner_addr
= ADDR_UNSET
,
1123 .radio_addr
= ADDR_UNSET
,
1125 [BTTV_BOARD_TERRATVRADIO
] = {
1126 .name
= "Terratec TV/Radio+",
1131 .gpiomask
= 0x70000,
1132 .muxsel
= { 2, 3, 1, 1 },
1133 .gpiomux
= { 0x20000, 0x30000, 0x10000, 0 },
1134 .gpiomute
= 0x40000,
1139 .tuner_addr
= ADDR_UNSET
,
1140 .radio_addr
= ADDR_UNSET
,
1144 /* ---- card 0x30 ---------------------------------- */
1145 [BTTV_BOARD_DYNALINK
] = {
1146 .name
= "Askey CPH03x/ Dynalink Magic TView",
1152 .muxsel
= { 2, 3, 1, 1 },
1153 .gpiomux
= {2,0,0,0 },
1158 .tuner_addr
= ADDR_UNSET
,
1159 .radio_addr
= ADDR_UNSET
,
1161 [BTTV_BOARD_GVBCTV3PCI
] = {
1162 .name
= "IODATA GV-BCTV3/PCI",
1167 .gpiomask
= 0x010f00,
1168 .muxsel
= {2, 3, 0, 0 },
1169 .gpiomux
= {0x10000, 0, 0x10000, 0 },
1172 .tuner_type
= TUNER_ALPS_TSHC6_NTSC
,
1173 .tuner_addr
= ADDR_UNSET
,
1174 .radio_addr
= ADDR_UNSET
,
1175 .audio_hook
= gvbctv3pci_audio
,
1177 [BTTV_BOARD_PXELVWPLTVPAK
] = {
1178 .name
= "Prolink PV-BT878P+4E / PixelView PlayTV PAK / Lenco MXTV-9578 CP",
1183 .gpiomask
= 0xAA0000,
1184 .muxsel
= { 2,3,1,1,-1 },
1185 .digital_mode
= DIGITAL_MODE_CAMERA
,
1186 .gpiomux
= { 0x20000, 0, 0x80000, 0x80000 },
1187 .gpiomute
= 0xa8000,
1190 .tuner_type
= TUNER_PHILIPS_PAL_I
,
1191 .tuner_addr
= ADDR_UNSET
,
1192 .radio_addr
= ADDR_UNSET
,
1194 /* GPIO wiring: (different from Rev.4C !)
1195 GPIO17: U4.A0 (first hef4052bt)
1197 GPIO20: U5.A1 (second hef4052bt)
1199 GPIO22: BT832 Reset Line
1200 GPIO23: A5,A0, U5,nEN
1201 Note: At i2c=0x8a is a Bt832 chip, which changes to 0x88 after being reset via GPIO22
1204 [BTTV_BOARD_EAGLE
] = {
1205 .name
= "Eagle Wireless Capricorn2 (bt878A)",
1211 .muxsel
= { 2, 0, 1, 1 },
1212 .gpiomux
= { 0, 1, 2, 3 },
1215 .tuner_type
= -1 /* TUNER_ALPS_TMDH2_NTSC */,
1216 .tuner_addr
= ADDR_UNSET
,
1217 .radio_addr
= ADDR_UNSET
,
1220 /* ---- card 0x34 ---------------------------------- */
1221 [BTTV_BOARD_PINNACLEPRO
] = {
1222 /* David Härdeman <david@2gen.com> */
1223 .name
= "Pinnacle PCTV Studio Pro",
1228 .gpiomask
= 0x03000F,
1229 .muxsel
= { 2, 3, 1, 1 },
1230 .gpiomux
= { 1, 0xd0001, 0, 0 },
1232 /* sound path (5 sources):
1233 MUX1 (mask 0x03), Enable Pin 0x08 (0=enable, 1=disable)
1236 2= Mono TV sound from Tuner
1238 MUX2 (mask 0x30000):
1240 1= FM stereo Radio from Tuner */
1244 .tuner_addr
= ADDR_UNSET
,
1245 .radio_addr
= ADDR_UNSET
,
1247 [BTTV_BOARD_TVIEW_RDS_FM
] = {
1248 /* Claas Langbehn <claas@bigfoot.com>,
1249 Sven Grothklags <sven@upb.de> */
1250 .name
= "Typhoon TView RDS + FM Stereo / KNC1 TV Station RDS",
1256 .muxsel
= { 2, 3, 1, 1 },
1257 .gpiomux
= { 0, 0, 0x10, 8 },
1261 .tuner_type
= TUNER_PHILIPS_PAL
,
1262 .tuner_addr
= ADDR_UNSET
,
1263 .radio_addr
= ADDR_UNSET
,
1266 [BTTV_BOARD_LIFETEC_9415
] = {
1267 /* Tim Röstermundt <rosterm@uni-muenster.de>
1268 in de.comp.os.unix.linux.hardware:
1269 options bttv card=0 pll=1 radio=1 gpiomask=0x18e0
1270 gpiomux =0x44c71f,0x44d71f,0,0x44d71f,0x44dfff
1271 options tuner type=5 */
1272 .name
= "Lifeview FlyVideo 2000 /FlyVideo A2/ Lifetec LT 9415 TV [LR90]",
1278 .muxsel
= { 2, 3, 1, 1 },
1279 .gpiomux
= { 0x0000,0x0800,0x1000,0x1000 },
1281 /* For cards with tda9820/tda9821:
1282 0x0000: Tuner normal stereo
1283 0x0080: Tuner A2 SAP (second audio program = Zweikanalton)
1284 0x0880: Tuner A2 stereo */
1287 .tuner_addr
= ADDR_UNSET
,
1288 .radio_addr
= ADDR_UNSET
,
1290 [BTTV_BOARD_BESTBUY_EASYTV
] = {
1291 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1292 old Easy TV BT848 version (model CPH031) */
1293 .name
= "Askey CPH031/ BESTBUY Easy TV",
1299 .muxsel
= { 2, 3, 1, 0 },
1300 .gpiomux
= { 2, 0, 0, 0 },
1304 .tuner_type
= TUNER_TEMIC_PAL
,
1305 .tuner_addr
= ADDR_UNSET
,
1306 .radio_addr
= ADDR_UNSET
,
1309 /* ---- card 0x38 ---------------------------------- */
1310 [BTTV_BOARD_FLYVIDEO_98FM
] = {
1311 /* Gordon Heydon <gjheydon@bigfoot.com ('98) */
1312 .name
= "Lifeview FlyVideo 98FM LR50",
1318 .muxsel
= { 2, 3, 1, 1 },
1319 .gpiomux
= { 0, 0x800, 0x1000, 0x1000 },
1323 .tuner_addr
= ADDR_UNSET
,
1324 .radio_addr
= ADDR_UNSET
,
1326 /* This is the ultimate cheapo capture card
1327 * just a BT848A on a small PCB!
1328 * Steve Hosgood <steve@equiinet.com> */
1329 [BTTV_BOARD_GRANDTEC
] = {
1330 .name
= "GrandTec 'Grand Video Capture' (Bt848)",
1342 .tuner_addr
= ADDR_UNSET
,
1343 .radio_addr
= ADDR_UNSET
,
1345 [BTTV_BOARD_ASKEY_CPH060
] = {
1346 /* Daniel Herrington <daniel.herrington@home.com> */
1347 .name
= "Askey CPH060/ Phoebe TV Master Only (No FM)",
1353 .muxsel
= { 2, 3, 1, 1},
1354 .gpiomux
= { 0x400, 0x400, 0x400, 0x400 },
1358 .tuner_type
= TUNER_TEMIC_4036FY5_NTSC
,
1359 .tuner_addr
= ADDR_UNSET
,
1360 .radio_addr
= ADDR_UNSET
,
1362 [BTTV_BOARD_ASKEY_CPH03X
] = {
1363 /* Matti Mottus <mottus@physic.ut.ee> */
1364 .name
= "Askey CPH03x TV Capturer",
1369 .gpiomask
= 0x03000F,
1370 .muxsel
= { 2, 3, 1, 0 },
1371 .gpiomux
= { 2, 0, 0, 0 },
1375 .tuner_addr
= ADDR_UNSET
,
1376 .radio_addr
= ADDR_UNSET
,
1379 /* ---- card 0x3c ---------------------------------- */
1380 [BTTV_BOARD_MM100PCTV
] = {
1381 /* Philip Blundell <philb@gnu.org> */
1382 .name
= "Modular Technology MM100PCTV",
1388 .muxsel
= { 2, 3, 1, 1 },
1389 .gpiomux
= { 2, 0, 0, 1 },
1392 .tuner_type
= TUNER_TEMIC_PAL
,
1393 .tuner_addr
= ADDR_UNSET
,
1394 .radio_addr
= ADDR_UNSET
,
1396 [BTTV_BOARD_GMV1
] = {
1397 /* Adrian Cox <adrian@humboldt.co.uk */
1398 .name
= "AG Electronics GMV1",
1410 .tuner_addr
= ADDR_UNSET
,
1411 .radio_addr
= ADDR_UNSET
,
1413 [BTTV_BOARD_BESTBUY_EASYTV2
] = {
1414 /* Miguel Angel Alvarez <maacruz@navegalia.com>
1415 new Easy TV BT878 version (model CPH061)
1416 special thanks to Informatica Mieres for providing the card */
1417 .name
= "Askey CPH061/ BESTBUY Easy TV (bt878)",
1423 .muxsel
= { 2, 3, 1, 0 },
1424 .gpiomux
= { 1, 0, 4, 4 },
1428 .tuner_type
= TUNER_PHILIPS_PAL
,
1429 .tuner_addr
= ADDR_UNSET
,
1430 .radio_addr
= ADDR_UNSET
,
1432 [BTTV_BOARD_ATI_TVWONDER
] = {
1433 /* Lukas Gebauer <geby@volny.cz> */
1434 .name
= "ATI TV-Wonder",
1440 .muxsel
= { 2, 3, 1, 0 },
1441 .gpiomux
= { 0xbffe, 0, 0xbfff, 0 },
1444 .tuner_type
= TUNER_TEMIC_4006FN5_MULTI_PAL
,
1445 .tuner_addr
= ADDR_UNSET
,
1446 .radio_addr
= ADDR_UNSET
,
1449 /* ---- card 0x40 ---------------------------------- */
1450 [BTTV_BOARD_ATI_TVWONDERVE
] = {
1451 /* Lukas Gebauer <geby@volny.cz> */
1452 .name
= "ATI TV-Wonder VE",
1458 .muxsel
= { 2, 3, 0, 1 },
1459 .gpiomux
= { 0, 0, 1, 0 },
1462 .tuner_type
= TUNER_TEMIC_4006FN5_MULTI_PAL
,
1463 .tuner_addr
= ADDR_UNSET
,
1464 .radio_addr
= ADDR_UNSET
,
1466 [BTTV_BOARD_FLYVIDEO2000
] = {
1467 /* DeeJay <deejay@westel900.net (2000S) */
1468 .name
= "Lifeview FlyVideo 2000S LR90",
1474 .muxsel
= { 2, 3, 0, 1 },
1475 /* Radio changed from 1e80 to 0x800 to make
1476 FlyVideo2000S in .hu happy (gm)*/
1477 /* -dk-???: set mute=0x1800 for tda9874h daughterboard */
1478 .gpiomux
= { 0x0000,0x0800,0x1000,0x1000 },
1480 .audio_hook
= fv2000s_audio
,
1486 .tuner_addr
= ADDR_UNSET
,
1487 .radio_addr
= ADDR_UNSET
,
1489 [BTTV_BOARD_TERRATVALUER
] = {
1490 .name
= "Terratec TValueRadio",
1495 .gpiomask
= 0xffff00,
1496 .muxsel
= { 2, 3, 1, 1 },
1497 .gpiomux
= { 0x500, 0x500, 0x300, 0x900 },
1501 .tuner_type
= TUNER_PHILIPS_PAL
,
1502 .tuner_addr
= ADDR_UNSET
,
1503 .radio_addr
= ADDR_UNSET
,
1506 [BTTV_BOARD_GVBCTV4PCI
] = {
1507 /* TANAKA Kei <peg00625@nifty.com> */
1508 .name
= "IODATA GV-BCTV4/PCI",
1513 .gpiomask
= 0x010f00,
1514 .muxsel
= {2, 3, 0, 0 },
1515 .gpiomux
= {0x10000, 0, 0x10000, 0 },
1518 .tuner_type
= TUNER_SHARP_2U5JF5540_NTSC
,
1519 .tuner_addr
= ADDR_UNSET
,
1520 .radio_addr
= ADDR_UNSET
,
1521 .audio_hook
= gvbctv3pci_audio
,
1524 /* ---- card 0x44 ---------------------------------- */
1525 [BTTV_BOARD_VOODOOTV_FM
] = {
1526 .name
= "3Dfx VoodooTV FM (Euro), VoodooTV 200 (USA)",
1527 /* try "insmod msp3400 simple=0" if you have
1528 * sound problems with this card. */
1533 .gpiomask
= 0x4f8a00,
1534 /* 0x100000: 1=MSP enabled (0=disable again)
1535 * 0x010000: Connected to "S0" on tda9880 (0=Pal/BG, 1=NTSC) */
1536 .gpiomux
= {0x947fff, 0x987fff,0x947fff,0x947fff },
1537 .gpiomute
= 0x947fff,
1538 /* tvtuner, radio, external,internal, mute, stereo
1539 * tuner, Composit, SVid, Composit-on-Svid-adapter */
1540 .muxsel
= { 2, 3 ,0 ,1 },
1541 .tuner_type
= TUNER_MT2032
,
1542 .tuner_addr
= ADDR_UNSET
,
1543 .radio_addr
= ADDR_UNSET
,
1547 [BTTV_BOARD_AIMMS
] = {
1548 /* Philip Blundell <pb@nexus.co.uk> */
1549 .name
= "Active Imaging AIMMS",
1554 .tuner_addr
= ADDR_UNSET
,
1555 .radio_addr
= ADDR_UNSET
,
1560 [BTTV_BOARD_PV_BT878P_PLUS
] = {
1561 /* Tomasz Pyra <hellfire@sedez.iq.pl> */
1562 .name
= "Prolink Pixelview PV-BT878P+ (Rev.4C,8E)",
1568 .muxsel
= { 2, 3, 1, 1 },
1569 .gpiomux
= { 0, 0, 11, 7 }, /* TV and Radio with same GPIO ! */
1574 .tuner_addr
= ADDR_UNSET
,
1575 .radio_addr
= ADDR_UNSET
,
1578 GPIO0: U4.A0 (hef4052bt)
1580 GPIO2: U4.A1 (second hef4052bt)
1581 GPIO3: U4.nEN, U5.A0, A5.nEN
1585 [BTTV_BOARD_FLYVIDEO98EZ
] = {
1586 .name
= "Lifeview FlyVideo 98EZ (capture only) LR51",
1591 .muxsel
= { 2, 3, 1, 1 }, /* AV1, AV2, SVHS, CVid adapter on SVHS */
1594 .tuner_type
= UNSET
,
1595 .tuner_addr
= ADDR_UNSET
,
1596 .radio_addr
= ADDR_UNSET
,
1599 /* ---- card 0x48 ---------------------------------- */
1600 [BTTV_BOARD_PV_BT878P_9B
] = {
1601 /* Dariusz Kowalewski <darekk@automex.pl> */
1602 .name
= "Prolink Pixelview PV-BT878P+9B (PlayTV Pro rev.9B FM+NICAM)",
1608 .muxsel
= { 2, 3, 1, 1 },
1609 .gpiomux
= { 0x01, 0x00, 0x03, 0x03 },
1616 .tuner_addr
= ADDR_UNSET
,
1617 .radio_addr
= ADDR_UNSET
,
1618 .audio_hook
= pvbt878p9b_audio
, /* Note: not all cards have stereo */
1619 .has_radio
= 1, /* Note: not all cards have radio */
1626 GPIO20,22,23: R30,R29,R28
1629 [BTTV_BOARD_SENSORAY311
] = {
1630 /* Clay Kunz <ckunz@mail.arc.nasa.gov> */
1631 /* you must jumper JP5 for the card to work */
1632 .name
= "Sensoray 311",
1638 .muxsel
= { 2, 3, 1, 0, 0 },
1642 .tuner_addr
= ADDR_UNSET
,
1643 .radio_addr
= ADDR_UNSET
,
1645 [BTTV_BOARD_RV605
] = {
1646 /* Miguel Freitas <miguel@cetuc.puc-rio.br> */
1647 .name
= "RemoteVision MX (RV605)",
1653 .gpiomask2
= 0x07ff,
1654 .muxsel
= { 0x33, 0x13, 0x23, 0x43, 0xf3, 0x73, 0xe3, 0x03,
1655 0xd3, 0xb3, 0xc3, 0x63, 0x93, 0x53, 0x83, 0xa3 },
1659 .tuner_addr
= ADDR_UNSET
,
1660 .radio_addr
= ADDR_UNSET
,
1661 .muxsel_hook
= rv605_muxsel
,
1663 [BTTV_BOARD_POWERCLR_MTV878
] = {
1664 .name
= "Powercolor MTV878/ MTV878R/ MTV878F",
1669 .gpiomask
= 0x1C800F, /* Bit0-2: Audio select, 8-12:remote control 14:remote valid 15:remote reset */
1670 .muxsel
= { 2, 1, 1, },
1671 .gpiomux
= { 0, 1, 2, 2 },
1674 .tuner_type
= TUNER_PHILIPS_PAL
,
1675 .tuner_addr
= ADDR_UNSET
,
1676 .radio_addr
= ADDR_UNSET
,
1681 /* ---- card 0x4c ---------------------------------- */
1682 [BTTV_BOARD_WINDVR
] = {
1683 /* Masaki Suzuki <masaki@btree.org> */
1684 .name
= "Canopus WinDVR PCI (COMPAQ Presario 3524JP, 5112JP)",
1689 .gpiomask
= 0x140007,
1690 .muxsel
= { 2, 3, 1, 1 },
1691 .gpiomux
= { 0, 1, 2, 3 },
1693 .tuner_type
= TUNER_PHILIPS_NTSC
,
1694 .tuner_addr
= ADDR_UNSET
,
1695 .radio_addr
= ADDR_UNSET
,
1696 .audio_hook
= windvr_audio
,
1698 [BTTV_BOARD_GRANDTEC_MULTI
] = {
1699 .name
= "GrandTec Multi Capture Card (Bt878)",
1705 .muxsel
= { 2, 3, 1, 0 },
1711 .tuner_addr
= ADDR_UNSET
,
1712 .radio_addr
= ADDR_UNSET
,
1714 [BTTV_BOARD_KWORLD
] = {
1715 .name
= "Jetway TV/Capture JW-TV878-FBK, Kworld KW-TV878RF",
1721 .muxsel
= { 2, 3, 1, 1 }, /* Tuner, SVid, SVHS, SVid to SVHS connector */
1722 .gpiomux
= { 0, 0, 4, 4 },/* Yes, this tuner uses the same audio output for TV and FM radio!
1723 * This card lacks external Audio In, so we mute it on Ext. & Int.
1724 * The PCB can take a sbx1637/sbx1673, wiring unknown.
1725 * This card lacks PCI subsystem ID, sigh.
1726 * gpiomux =1: lower volume, 2+3: mute
1727 * btwincap uses 0x80000/0x80003
1734 .tuner_addr
= ADDR_UNSET
,
1735 .radio_addr
= ADDR_UNSET
,
1736 /* Samsung TCPA9095PC27A (BG+DK), philips compatible, w/FM, stereo and
1737 radio signal strength indicators work fine. */
1740 GPIO0,1: HEF4052 A0,A1
1741 GPIO2: HEF4052 nENABLE
1743 GPIO8-13: IRDC357 data0-5 (data6 n.c. ?) [chip not present on my card]
1747 ?? : mtu8b56ep microcontroller for IR (GPIO wiring unknown)*/
1749 [BTTV_BOARD_DSP_TCVIDEO
] = {
1750 /* Arthur Tetzlaff-Deas, DSP Design Ltd <software@dspdesign.com> */
1751 .name
= "DSP Design TCVIDEO",
1754 .muxsel
= { 2, 3, 1, 0 },
1757 .tuner_addr
= ADDR_UNSET
,
1758 .radio_addr
= ADDR_UNSET
,
1761 /* ---- card 0x50 ---------------------------------- */
1762 [BTTV_BOARD_HAUPPAUGEPVR
] = {
1763 .name
= "Hauppauge WinTV PVR",
1768 .muxsel
= { 2, 0, 1, 1 },
1772 .tuner_addr
= ADDR_UNSET
,
1773 .radio_addr
= ADDR_UNSET
,
1778 [BTTV_BOARD_GVBCTV5PCI
] = {
1779 .name
= "IODATA GV-BCTV5/PCI",
1784 .gpiomask
= 0x0f0f80,
1785 .muxsel
= {2, 3, 1, 0 },
1786 .gpiomux
= {0x030000, 0x010000, 0, 0 },
1787 .gpiomute
= 0x020000,
1790 .tuner_type
= TUNER_PHILIPS_NTSC_M
,
1791 .tuner_addr
= ADDR_UNSET
,
1792 .radio_addr
= ADDR_UNSET
,
1793 .audio_hook
= gvbctv5pci_audio
,
1796 [BTTV_BOARD_OSPREY1x0
] = {
1797 .name
= "Osprey 100/150 (878)", /* 0x1(2|3)-45C6-C1 */
1798 .video_inputs
= 4, /* id-inputs-clock */
1802 .muxsel
= { 3, 2, 0, 1 },
1805 .tuner_addr
= ADDR_UNSET
,
1806 .radio_addr
= ADDR_UNSET
,
1811 [BTTV_BOARD_OSPREY1x0_848
] = {
1812 .name
= "Osprey 100/150 (848)", /* 0x04-54C0-C1 & older boards */
1817 .muxsel
= { 2, 3, 1 },
1820 .tuner_addr
= ADDR_UNSET
,
1821 .radio_addr
= ADDR_UNSET
,
1827 /* ---- card 0x54 ---------------------------------- */
1828 [BTTV_BOARD_OSPREY101_848
] = {
1829 .name
= "Osprey 101 (848)", /* 0x05-40C0-C1 */
1837 .tuner_addr
= ADDR_UNSET
,
1838 .radio_addr
= ADDR_UNSET
,
1843 [BTTV_BOARD_OSPREY1x1
] = {
1844 .name
= "Osprey 101/151", /* 0x1(4|5)-0004-C4 */
1852 .tuner_addr
= ADDR_UNSET
,
1853 .radio_addr
= ADDR_UNSET
,
1858 [BTTV_BOARD_OSPREY1x1_SVID
] = {
1859 .name
= "Osprey 101/151 w/ svid", /* 0x(16|17|20)-00C4-C1 */
1867 .tuner_addr
= ADDR_UNSET
,
1868 .radio_addr
= ADDR_UNSET
,
1873 [BTTV_BOARD_OSPREY2xx
] = {
1874 .name
= "Osprey 200/201/250/251", /* 0x1(8|9|E|F)-0004-C4 */
1881 .tuner_type
= UNSET
,
1882 .tuner_addr
= ADDR_UNSET
,
1883 .radio_addr
= ADDR_UNSET
,
1889 /* ---- card 0x58 ---------------------------------- */
1890 [BTTV_BOARD_OSPREY2x0_SVID
] = {
1891 .name
= "Osprey 200/250", /* 0x1(A|B)-00C4-C1 */
1898 .tuner_type
= UNSET
,
1899 .tuner_addr
= ADDR_UNSET
,
1900 .radio_addr
= ADDR_UNSET
,
1905 [BTTV_BOARD_OSPREY2x0
] = {
1906 .name
= "Osprey 210/220", /* 0x1(A|B)-04C0-C1 */
1913 .tuner_type
= UNSET
,
1914 .tuner_addr
= ADDR_UNSET
,
1915 .radio_addr
= ADDR_UNSET
,
1920 [BTTV_BOARD_OSPREY500
] = {
1921 .name
= "Osprey 500", /* 500 */
1929 .tuner_addr
= ADDR_UNSET
,
1930 .radio_addr
= ADDR_UNSET
,
1935 [BTTV_BOARD_OSPREY540
] = {
1936 .name
= "Osprey 540", /* 540 */
1940 #if 0 /* TODO ... */
1941 .svhs
= OSPREY540_SVID_ANALOG
,
1942 .muxsel
= { [OSPREY540_COMP_ANALOG
] = 2,
1943 [OSPREY540_SVID_ANALOG
] = 3, },
1947 .tuner_addr
= ADDR_UNSET
,
1948 .radio_addr
= ADDR_UNSET
,
1952 #if 0 /* TODO ... */
1953 .muxsel_hook
= osprey_540_muxsel
,
1954 .picture_hook
= osprey_540_set_picture
,
1958 /* ---- card 0x5C ---------------------------------- */
1959 [BTTV_BOARD_OSPREY2000
] = {
1960 .name
= "Osprey 2000", /* 2000 */
1967 .tuner_type
= UNSET
,
1968 .tuner_addr
= ADDR_UNSET
,
1969 .radio_addr
= ADDR_UNSET
,
1972 .no_tda7432
= 1, /* must avoid, conflicts with the bt860 */
1974 [BTTV_BOARD_IDS_EAGLE
] = {
1975 /* M G Berberich <berberic@forwiss.uni-passau.de> */
1976 .name
= "IDS Eagle",
1981 .tuner_addr
= ADDR_UNSET
,
1982 .radio_addr
= ADDR_UNSET
,
1985 .muxsel
= { 0, 1, 2, 3 },
1986 .muxsel_hook
= eagle_muxsel
,
1991 [BTTV_BOARD_PINNACLESAT
] = {
1992 .name
= "Pinnacle PCTV Sat",
1998 .tuner_addr
= ADDR_UNSET
,
1999 .radio_addr
= ADDR_UNSET
,
2003 .muxsel
= { 3, 0, 1, 2 },
2008 [BTTV_BOARD_FORMAC_PROTV
] = {
2009 .name
= "Formac ProTV II (bt878)",
2015 /* TV, Comp1, Composite over SVID con, SVID */
2016 .muxsel
= { 2, 3, 1, 1 },
2017 .gpiomux
= { 2, 2, 0, 0 },
2020 .tuner_type
= TUNER_PHILIPS_PAL
,
2021 .tuner_addr
= ADDR_UNSET
,
2022 .radio_addr
= ADDR_UNSET
,
2024 GPIO=0x00,0x01,0x03: mute (?)
2025 0x02: both TV and radio (tuner: FM1216/I)
2026 The card has onboard audio connectors labeled "cdrom" and "board",
2027 not soldered here, though unknown wiring.
2028 Card lacks: external audio in, pci subsystem id.
2032 /* ---- card 0x60 ---------------------------------- */
2033 [BTTV_BOARD_MACHTV
] = {
2040 .muxsel
= { 2, 3, 1, 1},
2041 .gpiomux
= { 0, 1, 2, 3},
2045 .tuner_addr
= ADDR_UNSET
,
2046 .radio_addr
= ADDR_UNSET
,
2049 [BTTV_BOARD_EURESYS_PICOLO
] = {
2050 .name
= "Euresys Picolo",
2059 .muxsel
= { 2, 0, 1},
2061 .tuner_type
= UNSET
,
2062 .tuner_addr
= ADDR_UNSET
,
2063 .radio_addr
= ADDR_UNSET
,
2065 [BTTV_BOARD_PV150
] = {
2066 /* Luc Van Hoeylandt <luc@e-magic.be> */
2067 .name
= "ProVideo PV150", /* 0x4f */
2078 .tuner_type
= UNSET
,
2079 .tuner_addr
= ADDR_UNSET
,
2080 .radio_addr
= ADDR_UNSET
,
2082 [BTTV_BOARD_AD_TVK503
] = {
2083 /* Hiroshi Takekawa <sian@big.or.jp> */
2084 /* This card lacks subsystem ID */
2085 .name
= "AD-TVK503", /* 0x63 */
2090 .gpiomask
= 0x001e8007,
2091 .muxsel
= { 2, 3, 1, 0 },
2092 /* Tuner, Radio, external, internal, off, on */
2093 .gpiomux
= { 0x08, 0x0f, 0x0a, 0x08 },
2099 .tuner_addr
= ADDR_UNSET
,
2100 .radio_addr
= ADDR_UNSET
,
2101 .audio_hook
= adtvk503_audio
,
2104 /* ---- card 0x64 ---------------------------------- */
2105 [BTTV_BOARD_HERCULES_SM_TV
] = {
2106 .name
= "Hercules Smart TV Stereo",
2112 .muxsel
= { 2, 3, 1, 1 },
2117 .tuner_addr
= ADDR_UNSET
,
2118 .radio_addr
= ADDR_UNSET
,
2120 - card lacks subsystem ID
2121 - stereo variant w/ daughter board with tda9874a @0xb0
2123 always from tda9874 independent of GPIO (?)
2124 external line in: unknown
2125 - Other chips: em78p156elp @ 0x96 (probably IR remote control)
2126 hef4053 (instead 4052) for unknown function
2129 [BTTV_BOARD_PACETV
] = {
2130 .name
= "Pace TV & Radio Card",
2135 .muxsel
= { 2, 3, 1, 1 }, /* Tuner, CVid, SVid, CVid over SVid connector */
2140 .tuner_addr
= ADDR_UNSET
,
2141 .radio_addr
= ADDR_UNSET
,
2144 /* Bt878, Bt832, FI1246 tuner; no pci subsystem id
2145 only internal line out: (4pin header) RGGL
2146 Radio must be decoded by msp3410d (not routed through)*/
2148 .digital_mode = DIGITAL_MODE_CAMERA, todo!
2151 [BTTV_BOARD_IVC200
] = {
2152 /* Chris Willing <chris@vislab.usyd.edu.au> */
2158 .tuner_addr
= ADDR_UNSET
,
2159 .radio_addr
= ADDR_UNSET
,
2165 [BTTV_BOARD_XGUARD
] = {
2166 .name
= "Grand X-Guard / Trust 814PCI",
2172 .tuner_addr
= ADDR_UNSET
,
2173 .radio_addr
= ADDR_UNSET
,
2175 .muxsel
= { 2,2,2,2, 3,3,3,3, 1,1,1,1, 0,0,0,0 },
2176 .muxsel_hook
= xguard_muxsel
,
2183 /* ---- card 0x68 ---------------------------------- */
2184 [BTTV_BOARD_NEBULA_DIGITV
] = {
2185 .name
= "Nebula Electronics DigiTV",
2189 .muxsel
= { 2, 3, 1, 0 },
2195 .tuner_addr
= ADDR_UNSET
,
2196 .radio_addr
= ADDR_UNSET
,
2202 [BTTV_BOARD_PV143
] = {
2203 /* Jorge Boncompte - DTI2 <jorge@dti2.net> */
2204 .name
= "ProVideo PV143",
2210 .muxsel
= { 2, 3, 1, 0 },
2216 .tuner_addr
= ADDR_UNSET
,
2217 .radio_addr
= ADDR_UNSET
,
2219 [BTTV_BOARD_VD009X1_MINIDIN
] = {
2220 /* M.Klahr@phytec.de */
2221 .name
= "PHYTEC VD-009-X1 MiniDIN (bt878)",
2224 .tuner
= -1, /* card has no tuner */
2227 .muxsel
= { 2, 3, 1, 0 },
2228 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2232 .tuner_addr
= ADDR_UNSET
,
2233 .radio_addr
= ADDR_UNSET
,
2235 [BTTV_BOARD_VD009X1_COMBI
] = {
2236 .name
= "PHYTEC VD-009-X1 Combi (bt878)",
2239 .tuner
= -1, /* card has no tuner */
2242 .muxsel
= { 2, 3, 1, 1 },
2243 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2247 .tuner_addr
= ADDR_UNSET
,
2248 .radio_addr
= ADDR_UNSET
,
2251 /* ---- card 0x6c ---------------------------------- */
2252 [BTTV_BOARD_VD009_MINIDIN
] = {
2253 .name
= "PHYTEC VD-009 MiniDIN (bt878)",
2256 .tuner
= -1, /* card has no tuner */
2259 .gpiomask2
= 0x03, /* gpiomask2 defines the bits used to switch audio
2260 via the upper nibble of muxsel. here: used for
2261 xternal video-mux */
2262 .muxsel
= { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x00 },
2263 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2267 .tuner_addr
= ADDR_UNSET
,
2268 .radio_addr
= ADDR_UNSET
,
2270 [BTTV_BOARD_VD009_COMBI
] = {
2271 .name
= "PHYTEC VD-009 Combi (bt878)",
2274 .tuner
= -1, /* card has no tuner */
2277 .gpiomask2
= 0x03, /* gpiomask2 defines the bits used to switch audio
2278 via the upper nibble of muxsel. here: used for
2279 xternal video-mux */
2280 .muxsel
= { 0x02, 0x12, 0x22, 0x32, 0x03, 0x13, 0x23, 0x33, 0x01, 0x01 },
2281 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2285 .tuner_addr
= ADDR_UNSET
,
2286 .radio_addr
= ADDR_UNSET
,
2288 [BTTV_BOARD_IVC100
] = {
2294 .tuner_addr
= ADDR_UNSET
,
2295 .radio_addr
= ADDR_UNSET
,
2298 .muxsel
= { 2, 3, 1, 0 },
2301 [BTTV_BOARD_IVC120
] = {
2302 /* IVC-120G - Alan Garfield <alan@fromorbit.com> */
2305 .audio_inputs
= 0, /* card has no audio */
2306 .tuner
= -1, /* card has no tuner */
2308 .tuner_addr
= ADDR_UNSET
,
2309 .radio_addr
= ADDR_UNSET
,
2310 .svhs
= -1, /* card has no svhs */
2316 .muxsel
= { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
2317 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10 },
2318 .muxsel_hook
= ivc120_muxsel
,
2322 /* ---- card 0x70 ---------------------------------- */
2323 [BTTV_BOARD_PC_HDTV
] = {
2324 .name
= "pcHDTV HD-2000 TV",
2329 .muxsel
= { 2, 3, 1, 0 },
2330 .tuner_type
= TUNER_PHILIPS_ATSC
,
2331 .tuner_addr
= ADDR_UNSET
,
2332 .radio_addr
= ADDR_UNSET
,
2335 [BTTV_BOARD_TWINHAN_DST
] = {
2336 .name
= "Twinhan DST + clones",
2340 .tuner_type
= TUNER_ABSENT
,
2341 .tuner_addr
= ADDR_UNSET
,
2342 .radio_addr
= ADDR_UNSET
,
2346 [BTTV_BOARD_WINFASTVC100
] = {
2347 .name
= "Winfast VC100",
2352 .muxsel
= { 3, 1, 1, 3 }, /* Vid In, SVid In, Vid over SVid in connector */
2356 .tuner_type
= TUNER_ABSENT
,
2357 .tuner_addr
= ADDR_UNSET
,
2358 .radio_addr
= ADDR_UNSET
,
2361 [BTTV_BOARD_TEV560
] = {
2362 .name
= "Teppro TEV-560/InterVision IV-560",
2368 .muxsel
= { 2, 3, 1, 1 },
2369 .gpiomux
= { 1, 1, 1, 1 },
2371 .tuner_type
= TUNER_PHILIPS_PAL
,
2372 .tuner_addr
= ADDR_UNSET
,
2373 .radio_addr
= ADDR_UNSET
,
2377 /* ---- card 0x74 ---------------------------------- */
2378 [BTTV_BOARD_SIMUS_GVC1100
] = {
2379 .name
= "SIMUS GVC1100",
2385 .tuner_addr
= ADDR_UNSET
,
2386 .radio_addr
= ADDR_UNSET
,
2388 .muxsel
= { 2, 2, 2, 2 },
2390 .muxsel_hook
= gvc1100_muxsel
,
2392 [BTTV_BOARD_NGSTV_PLUS
] = {
2393 /* Carlos Silva r3pek@r3pek.homelinux.org || card 0x75 */
2394 .name
= "NGS NGSTV+",
2398 .gpiomask
= 0x008007,
2399 .muxsel
= { 2, 3, 0, 0 },
2400 .gpiomux
= { 0, 0, 0, 0 },
2401 .gpiomute
= 0x000003,
2403 .tuner_type
= TUNER_PHILIPS_PAL
,
2404 .tuner_addr
= ADDR_UNSET
,
2405 .radio_addr
= ADDR_UNSET
,
2408 [BTTV_BOARD_LMLBT4
] = {
2409 /* http://linuxmedialabs.com */
2411 .video_inputs
= 4, /* IN1,IN2,IN3,IN4 */
2415 .muxsel
= { 2, 3, 1, 0 },
2421 .tuner_addr
= ADDR_UNSET
,
2422 .radio_addr
= ADDR_UNSET
,
2424 [BTTV_BOARD_TEKRAM_M205
] = {
2425 /* Helmroos Harri <harri.helmroos@pp.inet.fi> */
2426 .name
= "Tekram M205 PRO",
2430 .tuner_type
= TUNER_PHILIPS_PAL
,
2431 .tuner_addr
= ADDR_UNSET
,
2432 .radio_addr
= ADDR_UNSET
,
2436 .muxsel
= { 2, 3, 1 },
2437 .gpiomux
= { 0x68, 0x68, 0x61, 0x61 },
2441 /* ---- card 0x78 ---------------------------------- */
2442 [BTTV_BOARD_CONTVFMI
] = {
2443 /* Javier Cendan Ares <jcendan@lycos.es> */
2444 /* bt878 TV + FM without subsystem ID */
2445 .name
= "Conceptronic CONTVFMi",
2450 .gpiomask
= 0x008007,
2451 .muxsel
= { 2, 3, 1, 1 },
2452 .gpiomux
= { 0, 1, 2, 2 },
2456 .tuner_type
= TUNER_PHILIPS_PAL
,
2457 .tuner_addr
= ADDR_UNSET
,
2458 .radio_addr
= ADDR_UNSET
,
2462 [BTTV_BOARD_PICOLO_TETRA_CHIP
] = {
2463 /*Eric DEBIEF <debief@telemsa.com>*/
2464 /*EURESYS Picolo Tetra : 4 Conexant Fusion 878A, no audio, video input set with analog multiplexers GPIO controled*/
2465 /* adds picolo_tetra_muxsel(), picolo_tetra_init(), the folowing declaration strucure, and #define BTTV_BOARD_PICOLO_TETRA_CHIP*/
2467 .name
= "Euresys Picolo Tetra",
2473 .gpiomask2
= 0x3C<<16,/*Set the GPIO[18]->GPIO[21] as output pin.==> drive the video inputs through analog multiplexers*/
2477 .muxsel
= {2,2,2,2},/*878A input is always MUX0, see above.*/
2478 .gpiomux
= { 0, 0, 0, 0 }, /* card has no audio */
2481 .muxsel_hook
= picolo_tetra_muxsel
,/*Required as it doesn't follow the classic input selection policy*/
2483 .tuner_addr
= ADDR_UNSET
,
2484 .radio_addr
= ADDR_UNSET
,
2486 [BTTV_BOARD_SPIRIT_TV
] = {
2487 /* Spirit TV Tuner from http://spiritmodems.com.au */
2488 /* Stafford Goodsell <surge@goliath.homeunix.org> */
2489 .name
= "Spirit TV Tuner",
2494 .gpiomask
= 0x0000000f,
2495 .muxsel
= { 2, 1, 1 },
2496 .gpiomux
= { 0x02, 0x00, 0x00, 0x00 },
2497 .tuner_type
= TUNER_TEMIC_PAL
,
2498 .tuner_addr
= ADDR_UNSET
,
2499 .radio_addr
= ADDR_UNSET
,
2503 [BTTV_BOARD_AVDVBT_771
] = {
2504 /* Wolfram Joost <wojo@frokaschwei.de> */
2505 .name
= "AVerMedia AVerTV DVB-T 771",
2509 .tuner_type
= TUNER_ABSENT
,
2510 .tuner_addr
= ADDR_UNSET
,
2511 .radio_addr
= ADDR_UNSET
,
2512 .muxsel
= { 3 , 3 },
2521 /* ---- card 0x7c ---------------------------------- */
2522 [BTTV_BOARD_AVDVBT_761
] = {
2523 /* Matt Jesson <dvb@jesson.eclipse.co.uk> */
2524 /* Based on the Nebula card data - added remote and new card number - BTTV_BOARD_AVDVBT_761, see also ir-kbd-gpio.c */
2525 .name
= "AverMedia AverTV DVB-T 761",
2529 .muxsel
= { 3, 1, 2, 0 }, /* Comp0, S-Video, ?, ? */
2535 .tuner_addr
= ADDR_UNSET
,
2536 .radio_addr
= ADDR_UNSET
,
2541 [BTTV_BOARD_MATRIX_VISIONSQ
] = {
2542 /* andre.schwarz@matrix-vision.de */
2543 .name
= "MATRIX Vision Sigma-SQ",
2549 .muxsel
= { 2, 2, 2, 2, 2, 2, 2, 2,
2550 3, 3, 3, 3, 3, 3, 3, 3 },
2551 .muxsel_hook
= sigmaSQ_muxsel
,
2556 .tuner_addr
= ADDR_UNSET
,
2557 .radio_addr
= ADDR_UNSET
,
2559 [BTTV_BOARD_MATRIX_VISIONSLC
] = {
2560 /* andre.schwarz@matrix-vision.de */
2561 .name
= "MATRIX Vision Sigma-SLC",
2567 .muxsel
= { 2, 2, 2, 2 },
2568 .muxsel_hook
= sigmaSLC_muxsel
,
2573 .tuner_addr
= ADDR_UNSET
,
2574 .radio_addr
= ADDR_UNSET
,
2576 /* BTTV_BOARD_APAC_VIEWCOMP */
2577 [BTTV_BOARD_APAC_VIEWCOMP
] = {
2578 /* Attila Kondoros <attila.kondoros@chello.hu> */
2579 /* bt878 TV + FM 0x00000000 subsystem ID */
2580 .name
= "APAC Viewcomp 878(AMAX)",
2586 .muxsel
= { 2, 3, 1, 1 },
2587 .gpiomux
= { 2, 0, 0, 0 },
2591 .tuner_type
= TUNER_PHILIPS_PAL
,
2592 .tuner_addr
= ADDR_UNSET
,
2593 .radio_addr
= ADDR_UNSET
,
2594 .has_remote
= 1, /* miniremote works, see ir-kbd-gpio.c */
2595 .has_radio
= 1, /* not every card has radio */
2598 /* ---- card 0x80 ---------------------------------- */
2599 [BTTV_BOARD_DVICO_DVBT_LITE
] = {
2600 /* Chris Pascoe <c.pascoe@itee.uq.edu.au> */
2601 .name
= "DViCO FusionHDTV DVB-T Lite",
2610 .tuner_addr
= ADDR_UNSET
,
2611 .radio_addr
= ADDR_UNSET
,
2613 [BTTV_BOARD_VGEAR_MYVCD
] = {
2614 /* Steven <photon38@pchome.com.tw> */
2615 .name
= "V-Gear MyVCD",
2621 .muxsel
= {2, 3, 1, 0 },
2622 .gpiomux
= {0x31, 0x31, 0x31, 0x31 },
2626 .tuner_type
= TUNER_PHILIPS_NTSC_M
,
2627 .tuner_addr
= ADDR_UNSET
,
2628 .radio_addr
= ADDR_UNSET
,
2634 [BTTV_BOARD_SUPER_TV
] = {
2635 /* Rick C <cryptdragoon@gmail.com> */
2636 .name
= "Super TV Tuner",
2641 .muxsel
= { 2, 3, 1, 0 },
2642 .tuner_type
= TUNER_PHILIPS_NTSC
,
2643 .tuner_addr
= ADDR_UNSET
,
2644 .radio_addr
= ADDR_UNSET
,
2645 .gpiomask
= 0x008007,
2646 .gpiomux
= { 0, 0x000001,0,0 },
2650 [BTTV_BOARD_TIBET_CS16
] = {
2651 /* Chris Fanning <video4linux@haydon.net> */
2652 .name
= "Tibet Systems 'Progress DVR' CS16",
2657 .muxsel
= { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 },
2663 .tuner_addr
= ADDR_UNSET
,
2664 .radio_addr
= ADDR_UNSET
,
2665 .muxsel_hook
= tibetCS16_muxsel
,
2667 [BTTV_BOARD_KODICOM_4400R
] = {
2668 /* Bill Brack <wbrack@mmm.com.hk> */
2670 * Note that, because of the card's wiring, the "master"
2671 * BT878A chip (i.e. the one which controls the analog switch
2672 * and must use this card type) is the 2nd one detected. The
2673 * other 3 chips should use card type 0x85, whose description
2674 * follows this one. There is a EEPROM on the card (which is
2675 * connected to the I2C of one of those other chips), but is
2676 * not currently handled. There is also a facility for a
2677 * "monitor", which is also not currently implemented.
2679 .name
= "Kodicom 4400R (master)",
2684 .tuner_addr
= ADDR_UNSET
,
2685 .radio_addr
= ADDR_UNSET
,
2687 /* GPIO bits 0-9 used for analog switch:
2688 * 00 - 03: camera selector
2689 * 04 - 06: channel (controller) selector
2690 * 07: data (1->on, 0->off)
2693 * bit 16 is input from sync separator for the channel
2695 .gpiomask
= 0x0003ff,
2697 .muxsel
= { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2702 .muxsel_hook
= kodicom4400r_muxsel
,
2704 [BTTV_BOARD_KODICOM_4400R_SL
] = {
2705 /* Bill Brack <wbrack@mmm.com.hk> */
2706 /* Note that, for reasons unknown, the "master" BT878A chip (i.e. the
2707 * one which controls the analog switch, and must use the card type)
2708 * is the 2nd one detected. The other 3 chips should use this card
2711 .name
= "Kodicom 4400R (slave)",
2716 .tuner_addr
= ADDR_UNSET
,
2717 .radio_addr
= ADDR_UNSET
,
2719 .gpiomask
= 0x010000,
2721 .muxsel
= { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2726 .muxsel_hook
= kodicom4400r_muxsel
,
2728 /* ---- card 0x86---------------------------------- */
2729 [BTTV_BOARD_ADLINK_RTV24
] = {
2730 /* Michael Henson <mhenson@clarityvi.com> */
2731 /* Adlink RTV24 with special unlock codes */
2732 .name
= "Adlink RTV24",
2737 .muxsel
= { 2, 3, 1, 0 },
2739 .tuner_addr
= ADDR_UNSET
,
2740 .radio_addr
= ADDR_UNSET
,
2743 /* ---- card 0x87---------------------------------- */
2744 [BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
] = {
2745 /* Michael Krufky <mkrufky@m1k.net> */
2746 .name
= "DViCO FusionHDTV 5 Lite",
2748 .tuner_type
= TUNER_LG_TDVS_H062F
,
2749 .tuner_addr
= ADDR_UNSET
,
2750 .radio_addr
= ADDR_UNSET
,
2754 .muxsel
= { 2, 3, 1 },
2755 .gpiomask
= 0x00e00007,
2756 .gpiomux
= { 0x00400005, 0, 0x00000001, 0 },
2757 .gpiomute
= 0x00c00007,
2763 /* ---- card 0x88---------------------------------- */
2764 [BTTV_BOARD_ACORP_Y878F
] = {
2765 /* Mauro Carvalho Chehab <mchehab@brturbo.com.br> */
2766 .name
= "Acorp Y878F",
2771 .gpiomask
= 0x01fe00,
2772 .muxsel
= { 2, 3, 1, 1 },
2773 .gpiomux
= { 0x001e00, 0, 0x018000, 0x014000 },
2774 .gpiomute
= 0x002000,
2777 .tuner_type
= TUNER_YMEC_TVF66T5_B_DFF
,
2778 .tuner_addr
= 0xc1 >>1,
2779 .radio_addr
= 0xc1 >>1,
2782 /* ---- card 0x89 ---------------------------------- */
2783 [BTTV_BOARD_CONCEPTRONIC_CTVFMI2
] = {
2784 .name
= "Conceptronic CTVFMi v2",
2789 .gpiomask
= 0x001c0007,
2790 .muxsel
= { 2, 3, 1, 1 },
2791 .gpiomux
= { 0, 1, 2, 2 },
2795 .tuner_type
= TUNER_TENA_9533_DI
,
2796 .tuner_addr
= ADDR_UNSET
,
2797 .radio_addr
= ADDR_UNSET
,
2801 /* ---- card 0x8a ---------------------------------- */
2802 [BTTV_BOARD_PV_BT878P_2E
] = {
2803 .name
= "Prolink Pixelview PV-BT878P+ (Rev.2E)",
2808 .gpiomask
= 0x01fe00,
2809 .muxsel
= { 2,3,1,1,-1 },
2810 .digital_mode
= DIGITAL_MODE_CAMERA
,
2811 .gpiomux
= { 0x00400, 0x10400, 0x04400, 0x80000 },
2812 .gpiomute
= 0x12400,
2815 .tuner_type
= TUNER_LG_PAL_FM
,
2816 .tuner_addr
= ADDR_UNSET
,
2817 .radio_addr
= ADDR_UNSET
,
2820 /* ---- card 0x8b ---------------------------------- */
2821 [BTTV_BOARD_PV_M4900
] = {
2822 /* Sérgio Fortier <sergiofortier@yahoo.com.br> */
2823 .name
= "Prolink PixelView PlayTV MPEG2 PV-M4900",
2829 .muxsel
= { 2, 3, 1, 1 },
2830 .gpiomux
= { 0x21, 0x20, 0x24, 0x2c },
2834 .tuner_type
= TUNER_YMEC_TVF_5533MF
,
2835 .tuner_addr
= ADDR_UNSET
,
2836 .radio_addr
= ADDR_UNSET
,
2840 /* ---- card 0x8c ---------------------------------- */
2841 [BTTV_BOARD_OSPREY440
] = {
2842 .name
= "Osprey 440",
2849 .tuner_type
= UNSET
,
2850 .tuner_addr
= ADDR_UNSET
,
2851 .radio_addr
= ADDR_UNSET
,
2856 /* ---- card 0x8d ---------------------------------- */
2857 [BTTV_BOARD_ASOUND_SKYEYE
] = {
2858 .name
= "Asound Skyeye PCTV",
2864 .muxsel
= { 2, 3, 1, 1 },
2865 .gpiomux
= { 2, 0, 0, 0 },
2870 .tuner_addr
= ADDR_UNSET
,
2871 .radio_addr
= ADDR_UNSET
,
2873 /* ---- card 0x8e ---------------------------------- */
2874 [BTTV_BOARD_SABRENT_TVFM
] = {
2875 .name
= "Sabrent TV-FM (bttv version)",
2880 .gpiomask
= 0x108007,
2881 .muxsel
= { 2, 3, 1, 1 },
2882 .gpiomux
= { 100000, 100002, 100002, 100000 },
2887 .tuner_type
= TUNER_TNF_5335MF
,
2888 .tuner_addr
= ADDR_UNSET
,
2891 /* ---- card 0x8f ---------------------------------- */
2892 [BTTV_BOARD_HAUPPAUGE_IMPACTVCB
] = {
2893 .name
= "Hauppauge ImpactVCB (bt878)",
2898 .gpiomask
= 0x0f, /* old: 7 */
2899 .muxsel
= { 0, 1, 3, 2 }, /* Composite 0-3 */
2904 .tuner_addr
= ADDR_UNSET
,
2905 .radio_addr
= ADDR_UNSET
,
2907 [BTTV_BOARD_MACHTV_MAGICTV
] = {
2908 /* Julian Calaby <julian.calaby@gmail.com>
2909 * Slightly different from original MachTV definition (0x60)
2911 * FIXME: RegSpy says gpiomask should be "0x001c800f", but it
2912 * stuffs up remote chip. Bug is a pin on the jaecs is not set
2913 * properly (methinks) causing no keyup bits being set */
2915 .name
= "MagicTV", /* rebranded MachTV */
2921 .muxsel
= { 2, 3, 1, 1 },
2922 .gpiomux
= { 0, 1, 2, 3 },
2924 .tuner_type
= TUNER_TEMIC_4009FR5_PAL
,
2925 .tuner_addr
= ADDR_UNSET
,
2926 .radio_addr
= ADDR_UNSET
,
2933 static const unsigned int bttv_num_tvcards
= ARRAY_SIZE(bttv_tvcards
);
2935 /* ----------------------------------------------------------------------- */
2937 static unsigned char eeprom_data
[256];
2942 void __devinit
bttv_idcard(struct bttv
*btv
)
2944 unsigned int gpiobits
;
2948 /* read PCI subsystem ID */
2949 pci_read_config_word(btv
->c
.pci
, PCI_SUBSYSTEM_ID
, &tmp
);
2950 btv
->cardid
= tmp
<< 16;
2951 pci_read_config_word(btv
->c
.pci
, PCI_SUBSYSTEM_VENDOR_ID
, &tmp
);
2954 if (0 != btv
->cardid
&& 0xffffffff != btv
->cardid
) {
2955 /* look for the card */
2956 for (type
= -1, i
= 0; cards
[i
].id
!= 0; i
++)
2957 if (cards
[i
].id
== btv
->cardid
)
2962 printk(KERN_INFO
"bttv%d: detected: %s [card=%d], "
2963 "PCI subsystem ID is %04x:%04x\n",
2964 btv
->c
.nr
,cards
[type
].name
,cards
[type
].cardnr
,
2965 btv
->cardid
& 0xffff,
2966 (btv
->cardid
>> 16) & 0xffff);
2967 btv
->c
.type
= cards
[type
].cardnr
;
2970 printk(KERN_INFO
"bttv%d: subsystem: %04x:%04x (UNKNOWN)\n",
2971 btv
->c
.nr
, btv
->cardid
& 0xffff,
2972 (btv
->cardid
>> 16) & 0xffff);
2973 printk(KERN_DEBUG
"please mail id, board name and "
2974 "the correct card= insmod option to video4linux-list@redhat.com\n");
2978 /* let the user override the autodetected type */
2979 if (card
[btv
->c
.nr
] < bttv_num_tvcards
)
2980 btv
->c
.type
=card
[btv
->c
.nr
];
2982 /* print which card config we are using */
2983 printk(KERN_INFO
"bttv%d: using: %s [card=%d,%s]\n",btv
->c
.nr
,
2984 bttv_tvcards
[btv
->c
.type
].name
, btv
->c
.type
,
2985 card
[btv
->c
.nr
] < bttv_num_tvcards
2986 ? "insmod option" : "autodetected");
2988 /* overwrite gpio stuff ?? */
2989 if (UNSET
== audioall
&& UNSET
== audiomux
[0])
2992 if (UNSET
!= audiomux
[0]) {
2994 for (i
= 0; i
< 4; i
++) {
2995 bttv_tvcards
[btv
->c
.type
].gpiomux
[i
] = audiomux
[i
];
2996 gpiobits
|= audiomux
[i
];
2999 gpiobits
= audioall
;
3000 for (i
= 0; i
< 4; i
++) {
3001 bttv_tvcards
[btv
->c
.type
].gpiomux
[i
] = audioall
;
3004 bttv_tvcards
[btv
->c
.type
].gpiomask
= (UNSET
!= gpiomask
) ? gpiomask
: gpiobits
;
3005 printk(KERN_INFO
"bttv%d: gpio config override: mask=0x%x, mux=",
3006 btv
->c
.nr
,bttv_tvcards
[btv
->c
.type
].gpiomask
);
3007 for (i
= 0; i
< 5; i
++) {
3008 printk("%s0x%x", i
? "," : "", bttv_tvcards
[btv
->c
.type
].gpiomux
[i
]);
3014 * (most) board specific initialisations goes here
3017 /* Some Modular Technology cards have an eeprom, but no subsystem ID */
3018 static void identify_by_eeprom(struct bttv
*btv
, unsigned char eeprom_data
[256])
3022 if (0 == strncmp(eeprom_data
,"GET MM20xPCTV",13))
3023 type
= BTTV_BOARD_MODTEC_205
;
3024 else if (0 == strncmp(eeprom_data
+20,"Picolo",7))
3025 type
= BTTV_BOARD_EURESYS_PICOLO
;
3026 else if (eeprom_data
[0] == 0x84 && eeprom_data
[2]== 0)
3027 type
= BTTV_BOARD_HAUPPAUGE
; /* old bt848 */
3031 printk("bttv%d: detected by eeprom: %s [card=%d]\n",
3032 btv
->c
.nr
, bttv_tvcards
[btv
->c
.type
].name
, btv
->c
.type
);
3036 static void flyvideo_gpio(struct bttv
*btv
)
3038 int gpio
,has_remote
,has_radio
,is_capture_only
,is_lr90
,has_tda9820_tda9821
;
3041 gpio_inout(0xffffff, 0);
3042 udelay(8); /* without this we would see the 0x1800 mask */
3044 /* FIXME: must restore OUR_EN ??? */
3046 /* all cards provide GPIO info, some have an additional eeprom
3047 * LR50: GPIO coding can be found lower right CP1 .. CP9
3048 * CP9=GPIO23 .. CP1=GPIO15; when OPEN, the corresponding GPIO reads 1.
3050 * LR90: GP9=GPIO23 .. GP1=GPIO15 (right above the bt878)
3052 * lowest 3 bytes are remote control codes (no handshake needed)
3053 * xxxFFF: No remote control chip soldered
3054 * xxxF00(LR26/LR50), xxxFE0(LR90): Remote control chip (LVA001 or CF45) soldered
3055 * Note: Some bits are Audio_Mask !
3057 ttype
=(gpio
&0x0f0000)>>16;
3059 case 0x0: tuner
=2; /* NTSC, e.g. TPI8NSR11P */
3061 case 0x2: tuner
=39;/* LG NTSC (newer TAPC series) TAPC-H701P */
3063 case 0x4: tuner
=5; /* Philips PAL TPI8PSB02P, TPI8PSB12P, TPI8PSB12D or FI1216, FM1216 */
3065 case 0x6: tuner
=37;/* LG PAL (newer TAPC series) TAPC-G702P */
3067 case 0xC: tuner
=3; /* Philips SECAM(+PAL) FQ1216ME or FI1216MF */
3070 printk(KERN_INFO
"bttv%d: FlyVideo_gpio: unknown tuner type.\n", btv
->c
.nr
);
3073 has_remote
= gpio
& 0x800000;
3074 has_radio
= gpio
& 0x400000;
3075 /* unknown 0x200000;
3076 * unknown2 0x100000; */
3077 is_capture_only
= !(gpio
& 0x008000); /* GPIO15 */
3078 has_tda9820_tda9821
= !(gpio
& 0x004000);
3079 is_lr90
= !(gpio
& 0x002000); /* else LR26/LR50 (LR38/LR51 f. capture only) */
3081 * gpio & 0x001000 output bit for audio routing */
3084 tuner
=4; /* No tuner present */
3086 printk(KERN_INFO
"bttv%d: FlyVideo Radio=%s RemoteControl=%s Tuner=%d gpio=0x%06x\n",
3087 btv
->c
.nr
, has_radio
? "yes":"no ", has_remote
? "yes":"no ", tuner
, gpio
);
3088 printk(KERN_INFO
"bttv%d: FlyVideo LR90=%s tda9821/tda9820=%s capture_only=%s\n",
3089 btv
->c
.nr
, is_lr90
?"yes":"no ", has_tda9820_tda9821
?"yes":"no ",
3090 is_capture_only
?"yes":"no ");
3092 if(tuner
!= -1) /* only set if known tuner autodetected, else let insmod option through */
3093 btv
->tuner_type
= tuner
;
3094 btv
->has_radio
= has_radio
;
3096 /* LR90 Audio Routing is done by 2 hef4052, so Audio_Mask has 4 bits: 0x001c80
3097 * LR26/LR50 only has 1 hef4052, Audio_Mask 0x000c00
3098 * Audio options: from tuner, from tda9821/tda9821(mono,stereo,sap), from tda9874, ext., mute */
3099 if(has_tda9820_tda9821
) btv
->audio_hook
= lt9415_audio
;
3100 /* todo: if(has_tda9874) btv->audio_hook = fv2000s_audio; */
3103 static int miro_tunermap
[] = { 0,6,2,3, 4,5,6,0, 3,0,4,5, 5,2,16,1,
3104 14,2,17,1, 4,1,4,3, 1,2,16,1, 4,4,4,4 };
3105 static int miro_fmtuner
[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,1,
3106 1,1,1,1, 1,1,1,0, 0,0,0,0, 0,1,0,0 };
3108 static void miro_pinnacle_gpio(struct bttv
*btv
)
3113 gpio_inout(0xffffff, 0);
3115 id
= ((gpio
>>10) & 63) -1;
3116 msp
= bttv_I2CRead(btv
, I2C_ADDR_MSP3400
, "MSP34xx");
3118 btv
->tuner_type
= miro_tunermap
[id
];
3119 if (0 == (gpio
& 0x20)) {
3121 if (!miro_fmtuner
[id
]) {
3122 btv
->has_matchbox
= 1;
3123 btv
->mbox_we
= (1<<6);
3124 btv
->mbox_most
= (1<<7);
3125 btv
->mbox_clk
= (1<<8);
3126 btv
->mbox_data
= (1<<9);
3127 btv
->mbox_mask
= (1<<6)|(1<<7)|(1<<8)|(1<<9);
3133 if (btv
->c
.type
== BTTV_BOARD_MIRO
)
3134 btv
->c
.type
= BTTV_BOARD_MIROPRO
;
3135 if (btv
->c
.type
== BTTV_BOARD_PINNACLE
)
3136 btv
->c
.type
= BTTV_BOARD_PINNACLEPRO
;
3139 "bttv%d: miro: id=%d tuner=%d radio=%s stereo=%s\n",
3140 btv
->c
.nr
, id
+1, btv
->tuner_type
,
3141 !btv
->has_radio
? "no" :
3142 (btv
->has_matchbox
? "matchbox" : "fmtuner"),
3143 (-1 == msp
) ? "no" : "yes");
3145 /* new cards with microtune tuner */
3150 info
= "PAL / mono";
3151 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3154 info
= "PAL+SECAM / stereo";
3156 btv
->tda9887_conf
= TDA9887_QSS
;
3159 info
= "NTSC / stereo";
3161 btv
->tda9887_conf
= TDA9887_QSS
;
3164 info
= "PAL+SECAM / mono";
3165 btv
->tda9887_conf
= TDA9887_QSS
;
3168 info
= "NTSC / mono";
3169 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3172 info
= "NTSC / stereo";
3173 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3176 info
= "PAL / stereo";
3177 btv
->tda9887_conf
= TDA9887_INTERCARRIER
;
3180 info
= "oops: unknown card";
3184 btv
->c
.type
= BTTV_BOARD_PINNACLEPRO
;
3186 "bttv%d: pinnacle/mt: id=%d info=\"%s\" radio=%s\n",
3187 btv
->c
.nr
, id
, info
, btv
->has_radio
? "yes" : "no");
3188 btv
->tuner_type
= TUNER_MT2032
;
3192 /* GPIO21 L: Buffer aktiv, H: Buffer inaktiv */
3193 #define LM1882_SYNC_DRIVE 0x200000L
3195 static void init_ids_eagle(struct bttv
*btv
)
3197 gpio_inout(0xffffff,0xFFFF37);
3198 gpio_write(0x200020);
3200 /* flash strobe inverter ?! */
3201 gpio_write(0x200024);
3203 /* switch sync drive off */
3204 gpio_bits(LM1882_SYNC_DRIVE
,LM1882_SYNC_DRIVE
);
3206 /* set BT848 muxel to 2 */
3207 btaor((2)<<5, ~(2<<5), BT848_IFORM
);
3210 /* Muxsel helper for the IDS Eagle.
3211 * the eagles does not use the standard muxsel-bits but
3212 * has its own multiplexer */
3213 static void eagle_muxsel(struct bttv
*btv
, unsigned int input
)
3215 btaor((2)<<5, ~(3<<5), BT848_IFORM
);
3216 gpio_bits(3,bttv_tvcards
[btv
->c
.type
].muxsel
[input
&7]);
3219 /* set chroma ADC to sleep */
3220 btor(BT848_ADC_C_SLEEP
, BT848_ADC
);
3221 /* set to composite video */
3222 btand(~BT848_CONTROL_COMP
, BT848_E_CONTROL
);
3223 btand(~BT848_CONTROL_COMP
, BT848_O_CONTROL
);
3225 /* switch sync drive off */
3226 gpio_bits(LM1882_SYNC_DRIVE
,LM1882_SYNC_DRIVE
);
3229 static void gvc1100_muxsel(struct bttv
*btv
, unsigned int input
)
3231 static const int masks
[] = {0x30, 0x01, 0x12, 0x23};
3232 gpio_write(masks
[input
%4]);
3235 /* LMLBT4x initialization - to allow access to GPIO bits for sensors input and
3238 GPIObit | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
3239 assignment | TI | O3|INx| O2| O1|IN4|IN3|IN2|IN1| | |
3241 IN - sensor inputs, INx - sensor inputs and TI XORed together
3242 O1,O2,O3 - alarm outputs (relays)
3244 OUT ENABLE 1 1 0 . 1 1 0 0 . 0 0 0 0 = 0x6C0
3248 static void init_lmlbt4x(struct bttv
*btv
)
3250 printk(KERN_DEBUG
"LMLBT4x init\n");
3251 btwrite(0x000000, BT848_GPIO_REG_INP
);
3252 gpio_inout(0xffffff, 0x0006C0);
3253 gpio_write(0x000000);
3256 static void sigmaSQ_muxsel(struct bttv
*btv
, unsigned int input
)
3258 unsigned int inmux
= input
% 8;
3259 gpio_inout( 0xf, 0xf );
3260 gpio_bits( 0xf, inmux
);
3263 static void sigmaSLC_muxsel(struct bttv
*btv
, unsigned int input
)
3265 unsigned int inmux
= input
% 4;
3266 gpio_inout( 3<<9, 3<<9 );
3267 gpio_bits( 3<<9, inmux
<<9 );
3270 /* ----------------------------------------------------------------------- */
3272 static void bttv_reset_audio(struct bttv
*btv
)
3275 * BT878A has a audio-reset register.
3276 * 1. This register is an audio reset function but it is in
3277 * function-0 (video capture) address space.
3278 * 2. It is enough to do this once per power-up of the card.
3279 * 3. There is a typo in the Conexant doc -- it is not at
3280 * 0x5B, but at 0x058. (B is an odd-number, obviously a typo!).
3281 * --//Shrikumar 030609
3287 printk("bttv%d: BT878A ARESET\n",btv
->c
.nr
);
3288 btwrite((1<<7), 0x058);
3293 /* initialization part one -- before registering i2c bus */
3294 void __devinit
bttv_init_card1(struct bttv
*btv
)
3296 switch (btv
->c
.type
) {
3297 case BTTV_BOARD_HAUPPAUGE
:
3298 case BTTV_BOARD_HAUPPAUGE878
:
3299 boot_msp34xx(btv
,5);
3301 case BTTV_BOARD_VOODOOTV_FM
:
3302 boot_msp34xx(btv
,20);
3304 case BTTV_BOARD_AVERMEDIA98
:
3305 boot_msp34xx(btv
,11);
3307 case BTTV_BOARD_HAUPPAUGEPVR
:
3310 case BTTV_BOARD_TWINHAN_DST
:
3311 case BTTV_BOARD_AVDVBT_771
:
3312 case BTTV_BOARD_PINNACLESAT
:
3313 btv
->use_i2c_hw
= 1;
3315 case BTTV_BOARD_ADLINK_RTV24
:
3320 if (!bttv_tvcards
[btv
->c
.type
].has_dvb
)
3321 bttv_reset_audio(btv
);
3324 /* initialization part two -- after registering i2c bus */
3325 void __devinit
bttv_init_card2(struct bttv
*btv
)
3328 int addr
=ADDR_UNSET
;
3330 btv
->tuner_type
= -1;
3332 if (BTTV_BOARD_UNKNOWN
== btv
->c
.type
) {
3333 bttv_readee(btv
,eeprom_data
,0xa0);
3334 identify_by_eeprom(btv
,eeprom_data
);
3337 switch (btv
->c
.type
) {
3338 case BTTV_BOARD_MIRO
:
3339 case BTTV_BOARD_MIROPRO
:
3340 case BTTV_BOARD_PINNACLE
:
3341 case BTTV_BOARD_PINNACLEPRO
:
3343 miro_pinnacle_gpio(btv
);
3345 case BTTV_BOARD_FLYVIDEO_98
:
3346 case BTTV_BOARD_MAXI
:
3347 case BTTV_BOARD_LIFE_FLYKIT
:
3348 case BTTV_BOARD_FLYVIDEO
:
3349 case BTTV_BOARD_TYPHOON_TVIEW
:
3350 case BTTV_BOARD_CHRONOS_VS2
:
3351 case BTTV_BOARD_FLYVIDEO_98FM
:
3352 case BTTV_BOARD_FLYVIDEO2000
:
3353 case BTTV_BOARD_FLYVIDEO98EZ
:
3354 case BTTV_BOARD_CONFERENCETV
:
3355 case BTTV_BOARD_LIFETEC_9415
:
3358 case BTTV_BOARD_HAUPPAUGE
:
3359 case BTTV_BOARD_HAUPPAUGE878
:
3360 case BTTV_BOARD_HAUPPAUGEPVR
:
3361 /* pick up some config infos from the eeprom */
3362 bttv_readee(btv
,eeprom_data
,0xa0);
3363 hauppauge_eeprom(btv
);
3365 case BTTV_BOARD_AVERMEDIA98
:
3366 case BTTV_BOARD_AVPHONE98
:
3367 bttv_readee(btv
,eeprom_data
,0xa0);
3368 avermedia_eeprom(btv
);
3370 case BTTV_BOARD_PXC200
:
3373 case BTTV_BOARD_PICOLO_TETRA_CHIP
:
3374 picolo_tetra_init(btv
);
3376 case BTTV_BOARD_VHX
:
3378 btv
->has_matchbox
= 1;
3379 btv
->mbox_we
= 0x20;
3381 btv
->mbox_clk
= 0x08;
3382 btv
->mbox_data
= 0x10;
3383 btv
->mbox_mask
= 0x38;
3385 case BTTV_BOARD_VOBIS_BOOSTAR
:
3386 case BTTV_BOARD_TERRATV
:
3387 terratec_active_radio_upgrade(btv
);
3389 case BTTV_BOARD_MAGICTVIEW061
:
3390 if (btv
->cardid
== 0x3002144f) {
3392 printk("bttv%d: radio detected by subsystem id (CPH05x)\n",btv
->c
.nr
);
3395 case BTTV_BOARD_STB2
:
3396 if (btv
->cardid
== 0x3060121a) {
3397 /* Fix up entry for 3DFX VoodooTV 100,
3398 which is an OEM STB card variant. */
3400 btv
->tuner_type
=TUNER_TEMIC_NTSC
;
3403 case BTTV_BOARD_OSPREY1x0
:
3404 case BTTV_BOARD_OSPREY1x0_848
:
3405 case BTTV_BOARD_OSPREY101_848
:
3406 case BTTV_BOARD_OSPREY1x1
:
3407 case BTTV_BOARD_OSPREY1x1_SVID
:
3408 case BTTV_BOARD_OSPREY2xx
:
3409 case BTTV_BOARD_OSPREY2x0_SVID
:
3410 case BTTV_BOARD_OSPREY2x0
:
3411 case BTTV_BOARD_OSPREY500
:
3412 case BTTV_BOARD_OSPREY540
:
3413 case BTTV_BOARD_OSPREY2000
:
3414 bttv_readee(btv
,eeprom_data
,0xa0);
3417 case BTTV_BOARD_IDS_EAGLE
:
3418 init_ids_eagle(btv
);
3420 case BTTV_BOARD_MODTEC_205
:
3421 bttv_readee(btv
,eeprom_data
,0xa0);
3424 case BTTV_BOARD_LMLBT4
:
3427 case BTTV_BOARD_TIBET_CS16
:
3428 tibetCS16_init(btv
);
3430 case BTTV_BOARD_KODICOM_4400R
:
3431 kodicom4400r_init(btv
);
3435 /* pll configuration */
3436 if (!(btv
->id
==848 && btv
->revision
==0x11)) {
3437 /* defaults from card list */
3438 if (PLL_28
== bttv_tvcards
[btv
->c
.type
].pll
) {
3439 btv
->pll
.pll_ifreq
=28636363;
3440 btv
->pll
.pll_crystal
=BT848_IFORM_XT0
;
3442 if (PLL_35
== bttv_tvcards
[btv
->c
.type
].pll
) {
3443 btv
->pll
.pll_ifreq
=35468950;
3444 btv
->pll
.pll_crystal
=BT848_IFORM_XT1
;
3446 /* insmod options can override */
3447 switch (pll
[btv
->c
.nr
]) {
3449 btv
->pll
.pll_crystal
= 0;
3450 btv
->pll
.pll_ifreq
= 0;
3451 btv
->pll
.pll_ofreq
= 0;
3453 case 1: /* 28 MHz */
3455 btv
->pll
.pll_ifreq
= 28636363;
3456 btv
->pll
.pll_ofreq
= 0;
3457 btv
->pll
.pll_crystal
= BT848_IFORM_XT0
;
3459 case 2: /* 35 MHz */
3461 btv
->pll
.pll_ifreq
= 35468950;
3462 btv
->pll
.pll_ofreq
= 0;
3463 btv
->pll
.pll_crystal
= BT848_IFORM_XT1
;
3467 btv
->pll
.pll_current
= -1;
3469 /* tuner configuration (from card list / autodetect / insmod option) */
3470 if (ADDR_UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_addr
)
3471 addr
= bttv_tvcards
[btv
->c
.type
].tuner_addr
;
3473 if (UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_type
)
3474 if(UNSET
== btv
->tuner_type
)
3475 btv
->tuner_type
= bttv_tvcards
[btv
->c
.type
].tuner_type
;
3476 if (UNSET
!= tuner
[btv
->c
.nr
])
3477 btv
->tuner_type
= tuner
[btv
->c
.nr
];
3478 printk("bttv%d: using tuner=%d\n",btv
->c
.nr
,btv
->tuner_type
);
3480 if (btv
->tuner_type
!= UNSET
) {
3481 struct tuner_setup tun_setup
;
3483 tun_setup
.mode_mask
= T_ANALOG_TV
| T_DIGITAL_TV
;
3484 tun_setup
.type
= btv
->tuner_type
;
3485 tun_setup
.addr
= addr
;
3487 bttv_call_i2c_clients(btv
, TUNER_SET_TYPE_ADDR
, &tun_setup
);
3490 if (btv
->tda9887_conf
) {
3491 bttv_call_i2c_clients(btv
, TDA9887_SET_CONFIG
,
3492 &btv
->tda9887_conf
);
3495 btv
->svhs
= bttv_tvcards
[btv
->c
.type
].svhs
;
3496 if (svhs
[btv
->c
.nr
] != UNSET
)
3497 btv
->svhs
= svhs
[btv
->c
.nr
];
3498 if (remote
[btv
->c
.nr
] != UNSET
)
3499 btv
->has_remote
= remote
[btv
->c
.nr
];
3501 if (bttv_tvcards
[btv
->c
.type
].has_radio
)
3503 if (bttv_tvcards
[btv
->c
.type
].has_remote
)
3505 if (!bttv_tvcards
[btv
->c
.type
].no_gpioirq
)
3507 if (bttv_tvcards
[btv
->c
.type
].audio_hook
)
3508 btv
->audio_hook
=bttv_tvcards
[btv
->c
.type
].audio_hook
;
3510 if (bttv_tvcards
[btv
->c
.type
].digital_mode
== DIGITAL_MODE_CAMERA
) {
3511 /* detect Bt832 chip for quartzsight digital camera */
3512 if ((bttv_I2CRead(btv
, I2C_ADDR_BT832_ALT1
, "Bt832") >=0) ||
3513 (bttv_I2CRead(btv
, I2C_ADDR_BT832_ALT2
, "Bt832") >=0))
3520 /* try to detect audio/fader chips */
3521 if (!bttv_tvcards
[btv
->c
.type
].no_msp34xx
&&
3522 bttv_I2CRead(btv
, I2C_ADDR_MSP3400
, "MSP34xx") >=0)
3523 request_module("msp3400");
3525 if (bttv_tvcards
[btv
->c
.type
].msp34xx_alt
&&
3526 bttv_I2CRead(btv
, I2C_ADDR_MSP3400_ALT
, "MSP34xx (alternate address)") >=0)
3527 request_module("msp3400");
3529 if (!bttv_tvcards
[btv
->c
.type
].no_tda9875
&&
3530 bttv_I2CRead(btv
, I2C_ADDR_TDA9875
, "TDA9875") >=0)
3531 request_module("tda9875");
3533 if (!bttv_tvcards
[btv
->c
.type
].no_tda7432
&&
3534 bttv_I2CRead(btv
, I2C_ADDR_TDA7432
, "TDA7432") >=0)
3535 request_module("tda7432");
3537 if (bttv_tvcards
[btv
->c
.type
].needs_tvaudio
)
3538 request_module("tvaudio");
3542 if (btv
->tda9887_conf
)
3544 if (0 == tda9887
&& 0 == bttv_tvcards
[btv
->c
.type
].has_dvb
&&
3545 bttv_I2CRead(btv
, I2C_ADDR_TDA9887
, "TDA9887") >=0)
3547 /* Hybrid DVB card, DOES have a tda9887 */
3548 if (btv
->c
.type
== BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE
)
3550 if((btv
->tuner_type
== TUNER_PHILIPS_FM1216ME_MK3
) ||
3551 (btv
->tuner_type
== TUNER_PHILIPS_FM1236_MK3
) ||
3552 (btv
->tuner_type
== TUNER_PHILIPS_FM1256_IH3
) ||
3554 request_module("tda9887");
3555 if (btv
->tuner_type
!= UNSET
)
3556 request_module("tuner");
3560 /* ----------------------------------------------------------------------- */
3562 static void modtec_eeprom(struct bttv
*btv
)
3564 if( strncmp(&(eeprom_data
[0x1e]),"Temic 4066 FY5",14) ==0) {
3565 btv
->tuner_type
=TUNER_TEMIC_4066FY5_PAL_I
;
3566 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3567 btv
->c
.nr
,&eeprom_data
[0x1e]);
3568 } else if (strncmp(&(eeprom_data
[0x1e]),"Alps TSBB5",10) ==0) {
3569 btv
->tuner_type
=TUNER_ALPS_TSBB5_PAL_I
;
3570 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3571 btv
->c
.nr
,&eeprom_data
[0x1e]);
3572 } else if (strncmp(&(eeprom_data
[0x1e]),"Philips FM1246",14) ==0) {
3573 btv
->tuner_type
=TUNER_PHILIPS_NTSC
;
3574 printk("bttv%d: Modtec: Tuner autodetected by eeprom: %s\n",
3575 btv
->c
.nr
,&eeprom_data
[0x1e]);
3577 printk("bttv%d: Modtec: Unknown TunerString: %s\n",
3578 btv
->c
.nr
,&eeprom_data
[0x1e]);
3582 static void __devinit
hauppauge_eeprom(struct bttv
*btv
)
3586 tveeprom_hauppauge_analog(&btv
->i2c_client
, &tv
, eeprom_data
);
3587 btv
->tuner_type
= tv
.tuner_type
;
3588 btv
->has_radio
= tv
.has_radio
;
3590 printk("bttv%d: Hauppauge eeprom indicates model#%d\n",
3591 btv
->c
.nr
, tv
.model
);
3594 * Some of the 878 boards have duplicate PCI IDs. Switch the board
3595 * type based on model #.
3597 if(tv
.model
== 64900) {
3598 printk("bttv%d: Switching board type from %s to %s\n",
3600 bttv_tvcards
[btv
->c
.type
].name
,
3601 bttv_tvcards
[BTTV_BOARD_HAUPPAUGE_IMPACTVCB
].name
);
3602 btv
->c
.type
= BTTV_BOARD_HAUPPAUGE_IMPACTVCB
;
3606 static int terratec_active_radio_upgrade(struct bttv
*btv
)
3611 btv
->has_matchbox
= 1;
3612 btv
->mbox_we
= 0x10;
3613 btv
->mbox_most
= 0x20;
3614 btv
->mbox_clk
= 0x08;
3615 btv
->mbox_data
= 0x04;
3616 btv
->mbox_mask
= 0x3c;
3618 btv
->mbox_iow
= 1 << 8;
3619 btv
->mbox_ior
= 1 << 9;
3620 btv
->mbox_csel
= 1 << 10;
3623 tea5757_write(btv
, 5 * freq
+ 0x358); /* write 0x1ed8 */
3624 if (0x1ed8 == tea5757_read(btv
)) {
3625 printk("bttv%d: Terratec Active Radio Upgrade found.\n",
3628 btv
->has_matchbox
= 1;
3631 btv
->has_matchbox
= 0;
3637 /* ----------------------------------------------------------------------- */
3640 * minimal bootstrap for the WinTV/PVR -- upload altera firmware.
3642 * The hcwamc.rbf firmware file is on the Hauppauge driver CD. Have
3643 * a look at Pvr/pvr45xxx.EXE (self-extracting zip archive, can be
3644 * unpacked with unzip).
3646 #define PVR_GPIO_DELAY 10
3648 #define BTTV_ALT_DATA 0x000001
3649 #define BTTV_ALT_DCLK 0x100000
3650 #define BTTV_ALT_NCONFIG 0x800000
3652 static int __devinit
pvr_altera_load(struct bttv
*btv
, u8
*micro
, u32 microlen
)
3658 gpio_inout(0xffffff,BTTV_ALT_DATA
|BTTV_ALT_DCLK
|BTTV_ALT_NCONFIG
);
3660 udelay(PVR_GPIO_DELAY
);
3662 gpio_write(BTTV_ALT_NCONFIG
);
3663 udelay(PVR_GPIO_DELAY
);
3665 for (n
= 0; n
< microlen
; n
++) {
3667 for ( i
= 0 ; i
< 8 ; i
++ ) {
3668 gpio_bits(BTTV_ALT_DCLK
,0);
3670 gpio_bits(BTTV_ALT_DATA
,BTTV_ALT_DATA
);
3672 gpio_bits(BTTV_ALT_DATA
,0);
3673 gpio_bits(BTTV_ALT_DCLK
,BTTV_ALT_DCLK
);
3677 gpio_bits(BTTV_ALT_DCLK
,0);
3678 udelay(PVR_GPIO_DELAY
);
3680 /* begin Altera init loop (Not necessary,but doesn't hurt) */
3681 for (i
= 0 ; i
< 30 ; i
++) {
3682 gpio_bits(BTTV_ALT_DCLK
,0);
3683 gpio_bits(BTTV_ALT_DCLK
,BTTV_ALT_DCLK
);
3685 gpio_bits(BTTV_ALT_DCLK
,0);
3689 static int __devinit
pvr_boot(struct bttv
*btv
)
3691 const struct firmware
*fw_entry
;
3694 rc
= request_firmware(&fw_entry
, "hcwamc.rbf", &btv
->c
.pci
->dev
);
3696 printk(KERN_WARNING
"bttv%d: no altera firmware [via hotplug]\n",
3700 rc
= pvr_altera_load(btv
, fw_entry
->data
, fw_entry
->size
);
3701 printk(KERN_INFO
"bttv%d: altera firmware upload %s\n",
3702 btv
->c
.nr
, (rc
< 0) ? "failed" : "ok");
3703 release_firmware(fw_entry
);
3707 /* ----------------------------------------------------------------------- */
3708 /* some osprey specific stuff */
3710 static void __devinit
osprey_eeprom(struct bttv
*btv
)
3713 unsigned char *ee
= eeprom_data
;
3714 unsigned long serial
= 0;
3716 if (btv
->c
.type
== 0) {
3717 /* this might be an antique... check for MMAC label in eeprom */
3718 if ((ee
[0]=='M') && (ee
[1]=='M') && (ee
[2]=='A') && (ee
[3]=='C')) {
3719 unsigned char checksum
= 0;
3720 for (i
=0; i
<21; i
++)
3722 if (checksum
!= ee
[21])
3724 btv
->c
.type
= BTTV_BOARD_OSPREY1x0_848
;
3725 for (i
= 12; i
< 21; i
++)
3726 serial
*= 10, serial
+= ee
[i
] - '0';
3729 unsigned short type
;
3732 for(; offset
< 8*16; offset
+= 16) {
3733 unsigned short checksum
= 0;
3734 /* verify the checksum */
3735 for(i
= 0; i
<14; i
++) checksum
+= ee
[i
+offset
];
3736 checksum
= ~checksum
; /* no idea why */
3737 if ((((checksum
>>8)&0x0FF) == ee
[offset
+14]) &&
3738 ((checksum
& 0x0FF) == ee
[offset
+15])) {
3746 /* found a valid descriptor */
3747 type
= (ee
[offset
+4]<<8) | (ee
[offset
+5]);
3753 btv
->c
.type
= BTTV_BOARD_OSPREY1x0_848
;
3756 btv
->c
.type
= BTTV_BOARD_OSPREY101_848
;
3762 btv
->c
.type
= BTTV_BOARD_OSPREY1x0
;
3766 btv
->c
.type
= BTTV_BOARD_OSPREY1x1
;
3771 btv
->c
.type
= BTTV_BOARD_OSPREY1x1_SVID
;
3777 btv
->c
.type
= BTTV_BOARD_OSPREY2xx
;
3781 btv
->c
.type
= BTTV_BOARD_OSPREY2x0_SVID
;
3784 btv
->c
.type
= BTTV_BOARD_OSPREY500
;
3788 btv
->c
.type
= BTTV_BOARD_OSPREY540
;
3789 /* bttv_osprey_540_init(btv); */
3793 btv
->c
.type
= BTTV_BOARD_OSPREY2x0
;
3794 /* enable output on select control lines */
3795 gpio_inout(0xffffff,0x000303);
3798 /* unknown...leave generic, but get serial # */
3801 serial
= (ee
[offset
+6] << 24)
3802 | (ee
[offset
+7] << 16)
3803 | (ee
[offset
+8] << 8)
3807 printk(KERN_INFO
"bttv%d: osprey eeprom: card=%d name=%s serial=%ld\n",
3808 btv
->c
.nr
, btv
->c
.type
, bttv_tvcards
[btv
->c
.type
].name
,serial
);
3811 /* ----------------------------------------------------------------------- */
3812 /* AVermedia specific stuff, from bktr_card.c */
3814 static int tuner_0_table
[] = {
3815 TUNER_PHILIPS_NTSC
, TUNER_PHILIPS_PAL
/* PAL-BG*/,
3816 TUNER_PHILIPS_PAL
, TUNER_PHILIPS_PAL
/* PAL-I*/,
3817 TUNER_PHILIPS_PAL
, TUNER_PHILIPS_PAL
,
3818 TUNER_PHILIPS_SECAM
, TUNER_PHILIPS_SECAM
,
3819 TUNER_PHILIPS_SECAM
, TUNER_PHILIPS_PAL
,
3820 TUNER_PHILIPS_FM1216ME_MK3
};
3822 static int tuner_1_table
[] = {
3823 TUNER_TEMIC_NTSC
, TUNER_TEMIC_PAL
,
3824 TUNER_TEMIC_PAL
, TUNER_TEMIC_PAL
,
3825 TUNER_TEMIC_PAL
, TUNER_TEMIC_PAL
,
3826 TUNER_TEMIC_4012FY5
, TUNER_TEMIC_4012FY5
, /* TUNER_TEMIC_SECAM */
3827 TUNER_TEMIC_4012FY5
, TUNER_TEMIC_PAL
};
3829 static void __devinit
avermedia_eeprom(struct bttv
*btv
)
3831 int tuner_make
,tuner_tv_fm
,tuner_format
,tuner
=0;
3833 tuner_make
= (eeprom_data
[0x41] & 0x7);
3834 tuner_tv_fm
= (eeprom_data
[0x41] & 0x18) >> 3;
3835 tuner_format
= (eeprom_data
[0x42] & 0xf0) >> 4;
3836 btv
->has_remote
= (eeprom_data
[0x42] & 0x01);
3838 if (tuner_make
== 0 || tuner_make
== 2)
3839 if(tuner_format
<=0x0a)
3840 tuner
= tuner_0_table
[tuner_format
];
3841 if (tuner_make
== 1)
3842 if(tuner_format
<=9)
3843 tuner
= tuner_1_table
[tuner_format
];
3845 if (tuner_make
== 4)
3846 if(tuner_format
== 0x09)
3847 tuner
= TUNER_LG_NTSC_NEW_TAPC
; /* TAPC-G702P */
3849 printk(KERN_INFO
"bttv%d: Avermedia eeprom[0x%02x%02x]: tuner=",
3850 btv
->c
.nr
,eeprom_data
[0x41],eeprom_data
[0x42]);
3852 btv
->tuner_type
=tuner
;
3855 printk("Unknown type");
3856 printk(" radio:%s remote control:%s\n",
3857 tuner_tv_fm
? "yes" : "no",
3858 btv
->has_remote
? "yes" : "no");
3861 /* used on Voodoo TV/FM (Voodoo 200), S0 wired to 0x10000 */
3862 void bttv_tda9880_setnorm(struct bttv
*btv
, int norm
)
3864 /* fix up our card entry */
3865 if(norm
==VIDEO_MODE_NTSC
) {
3866 bttv_tvcards
[BTTV_BOARD_VOODOOTV_FM
].gpiomux
[TVAUDIO_INPUT_TUNER
]=0x957fff;
3867 bttv_tvcards
[BTTV_BOARD_VOODOOTV_FM
].gpiomute
=0x957fff;
3868 dprintk("bttv_tda9880_setnorm to NTSC\n");
3871 bttv_tvcards
[BTTV_BOARD_VOODOOTV_FM
].gpiomux
[TVAUDIO_INPUT_TUNER
]=0x947fff;
3872 bttv_tvcards
[BTTV_BOARD_VOODOOTV_FM
].gpiomute
=0x947fff;
3873 dprintk("bttv_tda9880_setnorm to PAL\n");
3875 /* set GPIO according */
3876 gpio_bits(bttv_tvcards
[btv
->c
.type
].gpiomask
,
3877 bttv_tvcards
[btv
->c
.type
].gpiomux
[btv
->audio
]);
3882 * reset/enable the MSP on some Hauppauge cards
3883 * Thanks to Kyösti Mälkki (kmalkki@cc.hut.fi)!
3888 static void __devinit
boot_msp34xx(struct bttv
*btv
, int pin
)
3890 int mask
= (1 << pin
);
3892 gpio_inout(mask
,mask
);
3895 gpio_bits(mask
,mask
);
3898 bttv_gpio_tracking(btv
,"msp34xx");
3900 printk(KERN_INFO
"bttv%d: Hauppauge/Voodoo msp34xx: reset line "
3901 "init [%d]\n", btv
->c
.nr
, pin
);
3904 static void __devinit
boot_bt832(struct bttv
*btv
)
3908 /* ----------------------------------------------------------------------- */
3909 /* Imagenation L-Model PXC200 Framegrabber */
3910 /* This is basically the same procedure as
3911 * used by Alessandro Rubini in his pxc200
3912 * driver, but using BTTV functions */
3914 static void __devinit
init_PXC200(struct bttv
*btv
)
3916 static int vals
[] __devinitdata
= { 0x08, 0x09, 0x0a, 0x0b, 0x0d, 0x0d,
3917 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
3923 /* Initialise GPIO-connevted stuff */
3924 gpio_inout(0xffffff, (1<<13));
3928 /* GPIO inputs are pulled up, so no need to drive
3929 * reset pin any longer */
3930 gpio_bits(0xffffff, 0);
3932 bttv_gpio_tracking(btv
,"pxc200");
3934 /* we could/should try and reset/control the AD pots? but
3935 right now we simply turned off the crushing. Without
3936 this the AGC drifts drifts
3937 remember the EN is reverse logic -->
3938 setting BT848_ADC_AGC_EN disable the AGC
3939 tboult@eecs.lehigh.edu
3942 btwrite(BT848_ADC_RESERVED
|BT848_ADC_AGC_EN
, BT848_ADC
);
3944 /* Initialise MAX517 DAC */
3945 printk(KERN_INFO
"Setting DAC reference voltage level ...\n");
3946 bttv_I2CWrite(btv
,0x5E,0,0x80,1);
3948 /* Initialise 12C508 PIC */
3949 /* The I2CWrite and I2CRead commmands are actually to the
3950 * same chips - but the R/W bit is included in the address
3951 * argument so the numbers are different */
3954 printk(KERN_INFO
"Initialising 12C508 PIC chip ...\n");
3956 /* First of all, enable the clock line. This is used in the PXC200-F */
3957 val
= btread(BT848_GPIO_DMA_CTL
);
3958 val
|= BT848_GPIO_DMA_CTL_GPCLKMODE
;
3959 btwrite(val
, BT848_GPIO_DMA_CTL
);
3961 /* Then, push to 0 the reset pin long enough to reset the *
3962 * device same as above for the reset line, but not the same
3963 * value sent to the GPIO-connected stuff
3964 * which one is the good one? */
3965 gpio_inout(0xffffff,(1<<2));
3970 for (i
= 0; i
< ARRAY_SIZE(vals
); i
++) {
3971 tmp
=bttv_I2CWrite(btv
,0x1E,0,vals
[i
],1);
3974 "I2C Write(%2.2x) = %i\nI2C Read () = %2.2x\n\n",
3975 vals
[i
],tmp
,bttv_I2CRead(btv
,0x1F,NULL
));
3979 printk(KERN_INFO
"PXC200 Initialised.\n");
3984 /* ----------------------------------------------------------------------- */
3986 * The Adlink RTV-24 (aka Angelo) has some special initialisation to unlock
3987 * it. This apparently involves the following procedure for each 878 chip:
3989 * 1) write 0x00C3FEFF to the GPIO_OUT_EN register
3991 * 2) write to GPIO_DATA
3997 * read from GPIO_DATA into buf (uint_32)
3998 * - if ( data>>18 & 0x01 != 0) || ( buf>>19 & 0x01 != 1 )
3999 * error. ERROR_CPLD_Check_Failed stop.
4001 * 3) write to GPIO_DATA
4002 * - write 0x4400 + 0x0E
4004 * - write 0x4410 + 0x0E
4007 * read from GPIO_DATA into buf (uint_32)
4008 * - if ( buf>>18 & 0x01 ) || ( buf>>19 && 0x01 != 0 )
4009 * error. ERROR_CPLD_Check_Failed.
4011 /* ----------------------------------------------------------------------- */
4013 init_RTV24 (struct bttv
*btv
)
4015 uint32_t dataRead
= 0;
4016 long watchdog_value
= 0x0E;
4019 "bttv%d: Adlink RTV-24 initialisation in progress ...\n",
4022 btwrite (0x00c3feff, BT848_GPIO_OUT_EN
);
4024 btwrite (0 + watchdog_value
, BT848_GPIO_DATA
);
4026 btwrite (0x10 + watchdog_value
, BT848_GPIO_DATA
);
4028 btwrite (0 + watchdog_value
, BT848_GPIO_DATA
);
4030 dataRead
= btread (BT848_GPIO_DATA
);
4032 if ((((dataRead
>> 18) & 0x01) != 0) || (((dataRead
>> 19) & 0x01) != 1)) {
4034 "bttv%d: Adlink RTV-24 initialisation(1) ERROR_CPLD_Check_Failed (read %d)\n",
4035 btv
->c
.nr
, dataRead
);
4038 btwrite (0x4400 + watchdog_value
, BT848_GPIO_DATA
);
4040 btwrite (0x4410 + watchdog_value
, BT848_GPIO_DATA
);
4042 btwrite (watchdog_value
, BT848_GPIO_DATA
);
4044 dataRead
= btread (BT848_GPIO_DATA
);
4046 if ((((dataRead
>> 18) & 0x01) != 0) || (((dataRead
>> 19) & 0x01) != 0)) {
4048 "bttv%d: Adlink RTV-24 initialisation(2) ERROR_CPLD_Check_Failed (read %d)\n",
4049 btv
->c
.nr
, dataRead
);
4055 "bttv%d: Adlink RTV-24 initialisation complete.\n", btv
->c
.nr
);
4060 /* ----------------------------------------------------------------------- */
4061 /* Miro Pro radio stuff -- the tea5757 is connected to some GPIO ports */
4063 * Copyright (c) 1999 Csaba Halasz <qgehali@uni-miskolc.hu>
4064 * This code is placed under the terms of the GNU General Public License
4066 * Brutally hacked by Dan Sheridan <dan.sheridan@contact.org.uk> djs52 8/3/00
4069 static void bus_low(struct bttv
*btv
, int bit
)
4071 if (btv
->mbox_ior
) {
4072 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4073 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4080 if (btv
->mbox_ior
) {
4081 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4086 static void bus_high(struct bttv
*btv
, int bit
)
4088 if (btv
->mbox_ior
) {
4089 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4090 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4097 if (btv
->mbox_ior
) {
4098 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4103 static int bus_in(struct bttv
*btv
, int bit
)
4105 if (btv
->mbox_ior
) {
4106 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4107 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4110 gpio_bits(btv
->mbox_iow
| btv
->mbox_csel
, 0);
4113 return gpio_read() & (bit
);
4116 /* TEA5757 register bits */
4117 #define TEA_FREQ 0:14
4118 #define TEA_BUFFER 15:15
4120 #define TEA_SIGNAL_STRENGTH 16:17
4122 #define TEA_PORT1 18:18
4123 #define TEA_PORT0 19:19
4125 #define TEA_BAND 20:21
4126 #define TEA_BAND_FM 0
4127 #define TEA_BAND_MW 1
4128 #define TEA_BAND_LW 2
4129 #define TEA_BAND_SW 3
4131 #define TEA_MONO 22:22
4132 #define TEA_ALLOW_STEREO 0
4133 #define TEA_FORCE_MONO 1
4135 #define TEA_SEARCH_DIRECTION 23:23
4136 #define TEA_SEARCH_DOWN 0
4137 #define TEA_SEARCH_UP 1
4139 #define TEA_STATUS 24:24
4140 #define TEA_STATUS_TUNED 0
4141 #define TEA_STATUS_SEARCHING 1
4143 /* Low-level stuff */
4144 static int tea5757_read(struct bttv
*btv
)
4146 unsigned long timeout
;
4150 /* better safe than sorry */
4151 gpio_inout(btv
->mbox_mask
, btv
->mbox_clk
| btv
->mbox_we
);
4153 if (btv
->mbox_ior
) {
4154 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4155 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4160 bttv_gpio_tracking(btv
,"tea5757 read");
4162 bus_low(btv
,btv
->mbox_we
);
4163 bus_low(btv
,btv
->mbox_clk
);
4166 timeout
= jiffies
+ HZ
;
4168 /* wait for DATA line to go low; error if it doesn't */
4169 while (bus_in(btv
,btv
->mbox_data
) && time_before(jiffies
, timeout
))
4171 if (bus_in(btv
,btv
->mbox_data
)) {
4172 printk(KERN_WARNING
"bttv%d: tea5757: read timeout\n",btv
->c
.nr
);
4176 dprintk("bttv%d: tea5757:",btv
->c
.nr
);
4177 for(i
= 0; i
< 24; i
++)
4180 bus_high(btv
,btv
->mbox_clk
);
4182 dprintk("%c",(bus_in(btv
,btv
->mbox_most
) == 0)?'T':'-');
4183 bus_low(btv
,btv
->mbox_clk
);
4185 value
|= (bus_in(btv
,btv
->mbox_data
) == 0)?0:1; /* MSB first */
4186 dprintk("%c", (bus_in(btv
,btv
->mbox_most
) == 0)?'S':'M');
4188 dprintk("\nbttv%d: tea5757: read 0x%X\n", btv
->c
.nr
, value
);
4192 static int tea5757_write(struct bttv
*btv
, int value
)
4197 gpio_inout(btv
->mbox_mask
, btv
->mbox_clk
| btv
->mbox_we
| btv
->mbox_data
);
4199 if (btv
->mbox_ior
) {
4200 gpio_bits(btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
,
4201 btv
->mbox_ior
| btv
->mbox_iow
| btv
->mbox_csel
);
4205 bttv_gpio_tracking(btv
,"tea5757 write");
4207 dprintk("bttv%d: tea5757: write 0x%X\n", btv
->c
.nr
, value
);
4208 bus_low(btv
,btv
->mbox_clk
);
4209 bus_high(btv
,btv
->mbox_we
);
4210 for(i
= 0; i
< 25; i
++)
4212 if (reg
& 0x1000000)
4213 bus_high(btv
,btv
->mbox_data
);
4215 bus_low(btv
,btv
->mbox_data
);
4217 bus_high(btv
,btv
->mbox_clk
);
4219 bus_low(btv
,btv
->mbox_clk
);
4222 bus_low(btv
,btv
->mbox_we
); /* unmute !!! */
4226 void tea5757_set_freq(struct bttv
*btv
, unsigned short freq
)
4228 dprintk("tea5757_set_freq %d\n",freq
);
4229 tea5757_write(btv
, 5 * freq
+ 0x358); /* add 10.7MHz (see docs) */
4233 /* ----------------------------------------------------------------------- */
4236 static void winview_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4238 /* PT2254A programming Jon Tombs, jon@gte.esi.us.es */
4239 int bits_out
, loops
, vol
, data
;
4242 /* Fixed by Leandro Lucarella <luca@linuxmendoza.org.ar (07/31/01) */
4243 v
->flags
|= VIDEO_AUDIO_VOLUME
;
4247 /* 32 levels logarithmic */
4248 vol
= 32 - ((v
->volume
>>11));
4250 bits_out
= (PT2254_DBS_IN_2
>>(vol
%5));
4252 bits_out
|= (PT2254_DBS_IN_10
>>(vol
/5));
4253 bits_out
|= PT2254_L_CHANNEL
| PT2254_R_CHANNEL
;
4255 data
&= ~(WINVIEW_PT2254_CLK
| WINVIEW_PT2254_DATA
|
4256 WINVIEW_PT2254_STROBE
);
4257 for (loops
= 17; loops
>= 0 ; loops
--) {
4258 if (bits_out
& (1<<loops
))
4259 data
|= WINVIEW_PT2254_DATA
;
4261 data
&= ~WINVIEW_PT2254_DATA
;
4264 data
|= WINVIEW_PT2254_CLK
;
4267 data
&= ~WINVIEW_PT2254_CLK
;
4270 data
|= WINVIEW_PT2254_STROBE
;
4271 data
&= ~WINVIEW_PT2254_DATA
;
4274 data
&= ~WINVIEW_PT2254_STROBE
;
4278 /* ----------------------------------------------------------------------- */
4279 /* mono/stereo control for various cards (which don't use i2c chips but */
4280 /* connect something to the GPIO pins */
4283 gvbctv3pci_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4285 unsigned int con
= 0;
4288 gpio_inout(0x300, 0x300);
4289 if (v
->mode
& VIDEO_SOUND_LANG1
)
4291 if (v
->mode
& VIDEO_SOUND_LANG2
)
4293 if (v
->mode
& VIDEO_SOUND_STEREO
)
4295 /* if (v->mode & VIDEO_SOUND_MONO)
4297 gpio_bits(0x300, con
);
4299 v
->mode
= VIDEO_SOUND_STEREO
|
4300 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4305 gvbctv5pci_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4307 unsigned int val
, con
;
4309 if (btv
->radio_user
)
4315 if (v
->mode
& VIDEO_SOUND_LANG2
) {
4316 if (v
->mode
& VIDEO_SOUND_LANG1
) {
4325 if (con
!= (val
& 0x300)) {
4326 gpio_bits(0x300, con
);
4328 bttv_gpio_tracking(btv
,"gvbctv5pci");
4331 switch (val
& 0x70) {
4333 v
->mode
= VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4336 v
->mode
= VIDEO_SOUND_LANG2
;
4339 v
->mode
= VIDEO_SOUND_LANG1
;
4342 v
->mode
= VIDEO_SOUND_STEREO
;
4345 v
->mode
= VIDEO_SOUND_MONO
;
4348 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4349 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4355 * Mario Medina Nussbaum <medisoft@alohabbs.org.mx>
4356 * I discover that on BT848_GPIO_DATA address a byte 0xcce enable stereo,
4357 * 0xdde enables mono and 0xccd enables sap
4359 * Petr Vandrovec <VANDROVE@vc.cvut.cz>
4360 * P.S.: At least mask in line above is wrong - GPIO pins 3,2 select
4361 * input/output sound connection, so both must be set for output mode.
4363 * Looks like it's needed only for the "tvphone", the "tvphone 98"
4364 * handles this with a tda9840
4368 avermedia_tvphone_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4373 if (v
->mode
& VIDEO_SOUND_LANG2
) /* SAP */
4375 if (v
->mode
& VIDEO_SOUND_STEREO
)
4378 gpio_bits(0x03,val
);
4380 bttv_gpio_tracking(btv
,"avermedia");
4383 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4390 avermedia_tv_stereo_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4395 if (v
->mode
& VIDEO_SOUND_LANG2
) /* SAP */
4397 if (v
->mode
& VIDEO_SOUND_STEREO
) /* STEREO */
4399 btaor(val
, ~0x03, BT848_GPIO_DATA
);
4401 bttv_gpio_tracking(btv
,"avermedia");
4403 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4404 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4409 /* Lifetec 9415 handling */
4411 lt9415_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4415 if (gpio_read() & 0x4000) {
4416 v
->mode
= VIDEO_SOUND_MONO
;
4421 if (v
->mode
& VIDEO_SOUND_LANG2
) /* A2 SAP */
4423 if (v
->mode
& VIDEO_SOUND_STEREO
) /* A2 stereo */
4425 if ((v
->mode
& VIDEO_SOUND_LANG1
) ||
4426 (v
->mode
& VIDEO_SOUND_MONO
))
4428 gpio_bits(0x0880, val
);
4430 bttv_gpio_tracking(btv
,"lt9415");
4432 /* autodetect doesn't work with this card :-( */
4433 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4434 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4439 /* TDA9821 on TerraTV+ Bt848, Bt878 */
4441 terratv_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4443 unsigned int con
= 0;
4446 gpio_inout(0x180000,0x180000);
4447 if (v
->mode
& VIDEO_SOUND_LANG2
)
4449 if (v
->mode
& VIDEO_SOUND_STEREO
)
4451 gpio_bits(0x180000, con
);
4453 bttv_gpio_tracking(btv
,"terratv");
4455 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4456 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4461 winfast2000_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4463 unsigned long val
= 0;
4466 /*btor (0xc32000, BT848_GPIO_OUT_EN);*/
4467 if (v
->mode
& VIDEO_SOUND_MONO
) /* Mono */
4469 if (v
->mode
& VIDEO_SOUND_LANG1
) /* Mono */
4471 if (v
->mode
& VIDEO_SOUND_LANG2
) /* SAP */
4473 if (v
->mode
& VIDEO_SOUND_STEREO
) /* Stereo */
4476 gpio_bits(0x430000, val
);
4478 bttv_gpio_tracking(btv
,"winfast2000");
4481 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4482 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4487 * Dariusz Kowalewski <darekk@automex.pl>
4488 * sound control for Prolink PV-BT878P+9B (PixelView PlayTV Pro FM+NICAM
4489 * revision 9B has on-board TDA9874A sound decoder).
4491 * Note: There are card variants without tda9874a. Forcing the "stereo sound route"
4492 * will mute this cards.
4495 pvbt878p9b_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4497 unsigned int val
= 0;
4499 if (btv
->radio_user
)
4503 if (v
->mode
& VIDEO_SOUND_MONO
) {
4506 if ((v
->mode
& (VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
))
4507 || (v
->mode
& VIDEO_SOUND_STEREO
)) {
4511 gpio_bits(0x03,val
);
4513 bttv_gpio_tracking(btv
,"pvbt878p9b");
4516 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4517 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4522 * Dariusz Kowalewski <darekk@automex.pl>
4523 * sound control for FlyVideo 2000S (with tda9874 decoder)
4524 * based on pvbt878p9b_audio() - this is not tested, please fix!!!
4527 fv2000s_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4529 unsigned int val
= 0xffff;
4531 if (btv
->radio_user
)
4534 if (v
->mode
& VIDEO_SOUND_MONO
) {
4537 if ((v
->mode
& (VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
))
4538 || (v
->mode
& VIDEO_SOUND_STEREO
)) {
4539 val
= 0x1080; /*-dk-???: 0x0880, 0x0080, 0x1800 ... */
4541 if (val
!= 0xffff) {
4542 gpio_bits(0x1800, val
);
4544 bttv_gpio_tracking(btv
,"fv2000s");
4547 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4548 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4553 * sound control for Canopus WinDVR PCI
4554 * Masaki Suzuki <masaki@btree.org>
4557 windvr_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4559 unsigned long val
= 0;
4562 if (v
->mode
& VIDEO_SOUND_MONO
)
4564 if (v
->mode
& VIDEO_SOUND_LANG1
)
4566 if (v
->mode
& VIDEO_SOUND_LANG2
)
4568 if (v
->mode
& VIDEO_SOUND_STEREO
)
4571 gpio_bits(0x140000, val
);
4573 bttv_gpio_tracking(btv
,"windvr");
4576 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4577 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4582 * sound control for AD-TVK503
4583 * Hiroshi Takekawa <sian@big.or.jp>
4586 adtvk503_audio(struct bttv
*btv
, struct video_audio
*v
, int set
)
4588 unsigned int con
= 0xffffff;
4590 /* btaor(0x1e0000, ~0x1e0000, BT848_GPIO_OUT_EN); */
4593 /* btor(***, BT848_GPIO_OUT_EN); */
4594 if (v
->mode
& VIDEO_SOUND_LANG1
)
4596 if (v
->mode
& VIDEO_SOUND_LANG2
)
4598 if (v
->mode
& VIDEO_SOUND_STEREO
)
4600 if (v
->mode
& VIDEO_SOUND_MONO
)
4602 if (con
!= 0xffffff) {
4603 gpio_bits(0x1e0000,con
);
4605 bttv_gpio_tracking(btv
, "adtvk503");
4608 v
->mode
= VIDEO_SOUND_MONO
| VIDEO_SOUND_STEREO
|
4609 VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
4613 /* RemoteVision MX (rv605) muxsel helper [Miguel Freitas]
4615 * This is needed because rv605 don't use a normal multiplex, but a crosspoint
4616 * switch instead (CD22M3494E). This IC can have multiple active connections
4617 * between Xn (input) and Yn (output) pins. We need to clear any existing
4618 * connection prior to establish a new one, pulsing the STROBE pin.
4620 * The board hardwire Y0 (xpoint) to MUX1 and MUXOUT to Yin.
4621 * GPIO pins are wired as:
4622 * GPIO[0:3] - AX[0:3] (xpoint) - P1[0:3] (microcontroler)
4623 * GPIO[4:6] - AY[0:2] (xpoint) - P1[4:6] (microcontroler)
4624 * GPIO[7] - DATA (xpoint) - P1[7] (microcontroler)
4625 * GPIO[8] - - P3[5] (microcontroler)
4626 * GPIO[9] - RESET (xpoint) - P3[6] (microcontroler)
4627 * GPIO[10] - STROBE (xpoint) - P3[7] (microcontroler)
4628 * GPINTR - - P3[4] (microcontroler)
4630 * The microcontroler is a 80C32 like. It should be possible to change xpoint
4631 * configuration either directly (as we are doing) or using the microcontroler
4632 * which is also wired to I2C interface. I have no further info on the
4633 * microcontroler features, one would need to disassembly the firmware.
4634 * note: the vendor refused to give any information on this product, all
4635 * that stuff was found using a multimeter! :)
4637 static void rv605_muxsel(struct bttv
*btv
, unsigned int input
)
4639 /* reset all conections */
4640 gpio_bits(0x200,0x200);
4642 gpio_bits(0x200,0x000);
4645 /* create a new conection */
4646 gpio_bits(0x480,0x080);
4647 gpio_bits(0x480,0x480);
4649 gpio_bits(0x480,0x080);
4653 /* Tibet Systems 'Progress DVR' CS16 muxsel helper [Chris Fanning]
4655 * The CS16 (available on eBay cheap) is a PCI board with four Fusion
4656 * 878A chips, a PCI bridge, an Atmel microcontroller, four sync seperator
4657 * chips, ten eight input analog multiplexors, a not chip and a few
4660 * 16 inputs on a secondary bracket are provided and can be selected
4661 * from each of the four capture chips. Two of the eight input
4662 * multiplexors are used to select from any of the 16 input signals.
4664 * Unsupported hardware capabilities:
4665 * . A video output monitor on the secondary bracket can be selected from
4666 * one of the 878A chips.
4667 * . Another passthrough but I haven't spent any time investigating it.
4668 * . Digital I/O (logic level connected to GPIO) is available from an
4671 * The on chip input mux should always be set to 2.
4672 * GPIO[16:19] - Video input selection
4673 * GPIO[0:3] - Video output monitor select (only available from one 878A)
4674 * GPIO[?:?] - Digital I/O.
4676 * There is an ATMEL microcontroller with an 8031 core on board. I have not
4677 * determined what function (if any) it provides. With the microcontroller
4678 * and sync seperator chips a guess is that it might have to do with video
4679 * switching and maybe some digital I/O.
4681 static void tibetCS16_muxsel(struct bttv
*btv
, unsigned int input
)
4684 gpio_bits(0x0f0000, input
<< 16);
4687 static void tibetCS16_init(struct bttv
*btv
)
4689 /* enable gpio bits, mask obtained via btSpy */
4690 gpio_inout(0xffffff, 0x0f7fff);
4691 gpio_write(0x0f7fff);
4695 * The following routines for the Kodicom-4400r get a little mind-twisting.
4696 * There is a "master" controller and three "slave" controllers, together
4697 * an analog switch which connects any of 16 cameras to any of the BT87A's.
4698 * The analog switch is controlled by the "master", but the detection order
4699 * of the four BT878A chips is in an order which I just don't understand.
4700 * The "master" is actually the second controller to be detected. The
4701 * logic on the board uses logical numbers for the 4 controlers, but
4702 * those numbers are different from the detection sequence. When working
4703 * with the analog switch, we need to "map" from the detection sequence
4704 * over to the board's logical controller number. This mapping sequence
4705 * is {3, 0, 2, 1}, i.e. the first controller to be detected is logical
4706 * unit 3, the second (which is the master) is logical unit 0, etc.
4707 * We need to maintain the status of the analog switch (which of the 16
4708 * cameras is connected to which of the 4 controllers). Rather than
4709 * add to the bttv structure for this, we use the data reserved for
4710 * the mbox (unused for this card type).
4714 * First a routine to set the analog switch, which controls which camera
4715 * is routed to which controller. The switch comprises an X-address
4716 * (gpio bits 0-3, representing the camera, ranging from 0-15), and a
4717 * Y-address (gpio bits 4-6, representing the controller, ranging from 0-3).
4718 * A data value (gpio bit 7) of '1' enables the switch, and '0' disables
4719 * the switch. A STROBE bit (gpio bit 8) latches the data value into the
4720 * specified address. The idea is to set the address and data, then bring
4721 * STROBE high, and finally bring STROBE back to low.
4723 static void kodicom4400r_write(struct bttv
*btv
,
4724 unsigned char xaddr
,
4725 unsigned char yaddr
,
4726 unsigned char data
) {
4729 udata
= (data
<< 7) | ((yaddr
&3) << 4) | (xaddr
&0xf);
4730 gpio_bits(0x1ff, udata
); /* write ADDR and DAT */
4731 gpio_bits(0x1ff, udata
| (1 << 8)); /* strobe high */
4732 gpio_bits(0x1ff, udata
); /* strobe low */
4736 * Next the mux select. Both the "master" and "slave" 'cards' (controllers)
4737 * use this routine. The routine finds the "master" for the card, maps
4738 * the controller number from the detected position over to the logical
4739 * number, writes the appropriate data to the analog switch, and housekeeps
4740 * the local copy of the switch information. The parameter 'input' is the
4741 * requested camera number (0 - 15).
4743 static void kodicom4400r_muxsel(struct bttv
*btv
, unsigned int input
)
4748 static unsigned char map
[4] = {3, 0, 2, 1};
4750 mctlr
= master
[btv
->c
.nr
];
4751 if (mctlr
== NULL
) { /* ignore if master not yet detected */
4754 yaddr
= (btv
->c
.nr
- mctlr
->c
.nr
+ 1) & 3; /* the '&' is for safety */
4756 sw_status
= (char *)(&mctlr
->mbox_we
);
4757 xaddr
= input
& 0xf;
4758 /* Check if the controller/camera pair has changed, else ignore */
4759 if (sw_status
[yaddr
] != xaddr
)
4761 /* "open" the old switch, "close" the new one, save the new */
4762 kodicom4400r_write(mctlr
, sw_status
[yaddr
], yaddr
, 0);
4763 sw_status
[yaddr
] = xaddr
;
4764 kodicom4400r_write(mctlr
, xaddr
, yaddr
, 1);
4769 * During initialisation, we need to reset the analog switch. We
4770 * also preset the switch to map the 4 connectors on the card to the
4771 * *user's* (see above description of kodicom4400r_muxsel) channels
4774 static void kodicom4400r_init(struct bttv
*btv
)
4776 char *sw_status
= (char *)(&btv
->mbox_we
);
4779 gpio_inout(0x0003ff, 0x0003ff);
4780 gpio_write(1 << 9); /* reset MUX */
4782 /* Preset camera 0 to the 4 controllers */
4783 for (ix
=0; ix
<4; ix
++) {
4785 kodicom4400r_write(btv
, ix
, ix
, 1);
4788 * Since this is the "master", we need to set up the
4789 * other three controller chips' pointers to this structure
4790 * for later use in the muxsel routine.
4792 if ((btv
->c
.nr
<1) || (btv
->c
.nr
>BTTV_MAX
-3))
4794 master
[btv
->c
.nr
-1] = btv
;
4795 master
[btv
->c
.nr
] = btv
;
4796 master
[btv
->c
.nr
+1] = btv
;
4797 master
[btv
->c
.nr
+2] = btv
;
4800 /* The Grandtec X-Guard framegrabber card uses two Dual 4-channel
4801 * video multiplexers to provide up to 16 video inputs. These
4802 * multiplexers are controlled by the lower 8 GPIO pins of the
4803 * bt878. The multiplexers probably Pericom PI5V331Q or similar.
4805 * xxx0 is pin xxx of multiplexer U5,
4806 * yyy1 is pin yyy of multiplexer U2
4818 static void xguard_muxsel(struct bttv
*btv
, unsigned int input
)
4820 static const int masks
[] = {
4821 ENB0
, ENB0
|IN00
, ENB0
|IN10
, ENB0
|IN00
|IN10
,
4822 ENA0
, ENA0
|IN00
, ENA0
|IN10
, ENA0
|IN00
|IN10
,
4823 ENB1
, ENB1
|IN01
, ENB1
|IN11
, ENB1
|IN01
|IN11
,
4824 ENA1
, ENA1
|IN01
, ENA1
|IN11
, ENA1
|IN01
|IN11
,
4826 gpio_write(masks
[input
%16]);
4828 static void picolo_tetra_init(struct bttv
*btv
)
4830 /*This is the video input redirection fonctionality : I DID NOT USED IT. */
4831 btwrite (0x08<<16,BT848_GPIO_DATA
);/*GPIO[19] [==> 4053 B+C] set to 1 */
4832 btwrite (0x04<<16,BT848_GPIO_DATA
);/*GPIO[18] [==> 4053 A] set to 1*/
4834 static void picolo_tetra_muxsel (struct bttv
* btv
, unsigned int input
)
4837 dprintk (KERN_DEBUG
"bttv%d : picolo_tetra_muxsel => input = %d\n",btv
->c
.nr
,input
);
4838 /*Just set the right path in the analog multiplexers : channel 1 -> 4 ==> Analog Mux ==> MUX0*/
4839 /*GPIO[20]&GPIO[21] used to choose the right input*/
4840 btwrite (input
<<20,BT848_GPIO_DATA
);
4845 * ivc120_muxsel [Added by Alan Garfield <alan@fromorbit.com>]
4847 * The IVC120G security card has 4 i2c controlled TDA8540 matrix
4848 * swichers to provide 16 channels to MUX0. The TDA8540's have
4849 * 4 indepedant outputs and as such the IVC120G also has the
4850 * optional "Monitor Out" bus. This allows the card to be looking
4851 * at one input while the monitor is looking at another.
4853 * Since I've couldn't be bothered figuring out how to add an
4854 * independant muxsel for the monitor bus, I've just set it to
4855 * whatever the card is looking at.
4857 * OUT0 of the TDA8540's is connected to MUX0 (0x03)
4858 * OUT1 of the TDA8540's is connected to "Monitor Out" (0x0C)
4860 * TDA8540_ALT3 IN0-3 = Channel 13 - 16 (0x03)
4861 * TDA8540_ALT4 IN0-3 = Channel 1 - 4 (0x03)
4862 * TDA8540_ALT5 IN0-3 = Channel 5 - 8 (0x03)
4863 * TDA8540_ALT6 IN0-3 = Channel 9 - 12 (0x03)
4867 /* All 7 possible sub-ids for the TDA8540 Matrix Switcher */
4868 #define I2C_TDA8540 0x90
4869 #define I2C_TDA8540_ALT1 0x92
4870 #define I2C_TDA8540_ALT2 0x94
4871 #define I2C_TDA8540_ALT3 0x96
4872 #define I2C_TDA8540_ALT4 0x98
4873 #define I2C_TDA8540_ALT5 0x9a
4874 #define I2C_TDA8540_ALT6 0x9c
4876 static void ivc120_muxsel(struct bttv
*btv
, unsigned int input
)
4879 int key
= input
% 4;
4880 int matrix
= input
/ 4;
4882 dprintk("bttv%d: ivc120_muxsel: Input - %02d | TDA - %02d | In - %02d\n",
4883 btv
->c
.nr
, input
, matrix
, key
);
4885 /* Handles the input selection on the TDA8540's */
4886 bttv_I2CWrite(btv
, I2C_TDA8540_ALT3
, 0x00,
4887 ((matrix
== 3) ? (key
| key
<< 2) : 0x00), 1);
4888 bttv_I2CWrite(btv
, I2C_TDA8540_ALT4
, 0x00,
4889 ((matrix
== 0) ? (key
| key
<< 2) : 0x00), 1);
4890 bttv_I2CWrite(btv
, I2C_TDA8540_ALT5
, 0x00,
4891 ((matrix
== 1) ? (key
| key
<< 2) : 0x00), 1);
4892 bttv_I2CWrite(btv
, I2C_TDA8540_ALT6
, 0x00,
4893 ((matrix
== 2) ? (key
| key
<< 2) : 0x00), 1);
4895 /* Handles the output enables on the TDA8540's */
4896 bttv_I2CWrite(btv
, I2C_TDA8540_ALT3
, 0x02,
4897 ((matrix
== 3) ? 0x03 : 0x00), 1); /* 13 - 16 */
4898 bttv_I2CWrite(btv
, I2C_TDA8540_ALT4
, 0x02,
4899 ((matrix
== 0) ? 0x03 : 0x00), 1); /* 1-4 */
4900 bttv_I2CWrite(btv
, I2C_TDA8540_ALT5
, 0x02,
4901 ((matrix
== 1) ? 0x03 : 0x00), 1); /* 5-8 */
4902 bttv_I2CWrite(btv
, I2C_TDA8540_ALT6
, 0x02,
4903 ((matrix
== 2) ? 0x03 : 0x00), 1); /* 9-12 */
4905 /* Selects MUX0 for input on the 878 */
4906 btaor((0)<<5, ~(3<<5), BT848_IFORM
);
4910 /* PXC200 muxsel helper
4911 * luke@syseng.anu.edu.au
4912 * another transplant
4913 * from Alessandro Rubini (rubini@linux.it)
4915 * There are 4 kinds of cards:
4916 * PXC200L which is bt848
4917 * PXC200F which is bt848 with PIC controlling mux
4918 * PXC200AL which is bt878
4919 * PXC200AF which is bt878 with PIC controlling mux
4921 #define PX_CFG_PXC200F 0x01
4922 #define PX_FLAG_PXC200A 0x00001000 /* a pxc200A is bt-878 based */
4923 #define PX_I2C_PIC 0x0f
4924 #define PX_PXC200A_CARDID 0x200a1295
4925 #define PX_I2C_CMD_CFG 0x00
4927 static void PXC200_muxsel(struct bttv
*btv
, unsigned int input
)
4932 unsigned char buf
[2];
4934 /* Read PIC config to determine if this is a PXC200F */
4938 rc
=bttv_I2CWrite(btv
,(PX_I2C_PIC
<<1),buf
[0],buf
[1],1);
4940 printk(KERN_DEBUG
"bttv%d: PXC200_muxsel: pic cfg write failed:%d\n", btv
->c
.nr
,rc
);
4941 /* not PXC ? do nothing */
4945 rc
=bttv_I2CRead(btv
,(PX_I2C_PIC
<<1),NULL
);
4946 if (!(rc
& PX_CFG_PXC200F
)) {
4947 printk(KERN_DEBUG
"bttv%d: PXC200_muxsel: not PXC200F rc:%d \n", btv
->c
.nr
,rc
);
4952 /* The multiplexer in the 200F is handled by the GPIO port */
4953 /* get correct mapping between inputs */
4954 /* mux = bttv_tvcards[btv->type].muxsel[input] & 3; */
4955 /* ** not needed!? */
4958 /* make sure output pins are enabled */
4959 /* bitmask=0x30f; */
4961 /* check whether we have a PXC200A */
4962 if (btv
->cardid
== PX_PXC200A_CARDID
) {
4963 bitmask
^= 0x180; /* use 7 and 9, not 8 and 9 */
4964 bitmask
|= 7<<4; /* the DAC */
4966 btwrite(bitmask
, BT848_GPIO_OUT_EN
);
4968 bitmask
= btread(BT848_GPIO_DATA
);
4969 if (btv
->cardid
== PX_PXC200A_CARDID
)
4970 bitmask
= (bitmask
& ~0x280) | ((mux
& 2) << 8) | ((mux
& 1) << 7);
4971 else /* older device */
4972 bitmask
= (bitmask
& ~0x300) | ((mux
& 3) << 8);
4973 btwrite(bitmask
,BT848_GPIO_DATA
);
4976 * Was "to be safe, set the bt848 to input 0"
4977 * Actually, since it's ok at load time, better not messing
4978 * with these bits (on PXC200AF you need to set mux 2 here)
4980 * needed because bttv-driver sets mux before calling this function
4982 if (btv
->cardid
== PX_PXC200A_CARDID
)
4983 btaor(2<<5, ~BT848_IFORM_MUXSEL
, BT848_IFORM
);
4984 else /* older device */
4985 btand(~BT848_IFORM_MUXSEL
,BT848_IFORM
);
4987 printk(KERN_DEBUG
"bttv%d: setting input channel to:%d\n", btv
->c
.nr
,(int)mux
);
4990 /* ----------------------------------------------------------------------- */
4991 /* motherboard chipset specific stuff */
4993 void __devinit
bttv_check_chipset(void)
4995 int pcipci_fail
= 0;
4996 struct pci_dev
*dev
= NULL
;
4998 if (pci_pci_problems
& PCIPCI_FAIL
)
5000 if (pci_pci_problems
& (PCIPCI_TRITON
|PCIPCI_NATOMA
|PCIPCI_VIAETBF
))
5002 if (pci_pci_problems
& PCIPCI_VSFX
)
5004 #ifdef PCIPCI_ALIMAGIK
5005 if (pci_pci_problems
& PCIPCI_ALIMAGIK
)
5010 /* print warnings about any quirks found */
5012 printk(KERN_INFO
"bttv: Host bridge needs ETBF enabled.\n");
5014 printk(KERN_INFO
"bttv: Host bridge needs VSFX enabled.\n");
5016 printk(KERN_INFO
"bttv: bttv and your chipset may not work "
5019 printk(KERN_INFO
"bttv: overlay will be disabled.\n");
5022 printk(KERN_INFO
"bttv: overlay forced. Use this "
5023 "option at your own risk.\n");
5026 if (UNSET
!= latency
)
5027 printk(KERN_INFO
"bttv: pci latency fixup [%d]\n",latency
);
5028 while ((dev
= pci_get_device(PCI_VENDOR_ID_INTEL
,
5029 PCI_DEVICE_ID_INTEL_82441
, dev
))) {
5031 pci_read_config_byte(dev
, 0x53, &b
);
5033 printk(KERN_INFO
"bttv: Host bridge: 82441FX Natoma, "
5034 "bufcon=0x%02x\n",b
);
5038 int __devinit
bttv_handle_chipset(struct bttv
*btv
)
5040 unsigned char command
;
5042 if (!triton1
&& !vsfx
&& UNSET
== latency
)
5047 printk(KERN_INFO
"bttv%d: enabling ETBF (430FX/VP3 compatibilty)\n",btv
->c
.nr
);
5048 if (vsfx
&& btv
->id
>= 878)
5049 printk(KERN_INFO
"bttv%d: enabling VSFX\n",btv
->c
.nr
);
5050 if (UNSET
!= latency
)
5051 printk(KERN_INFO
"bttv%d: setting pci timer to %d\n",
5055 if (btv
->id
< 878) {
5056 /* bt848 (mis)uses a bit in the irq mask for etbf */
5058 btv
->triton1
= BT848_INT_ETBF
;
5060 /* bt878 has a bit in the pci config space for it */
5061 pci_read_config_byte(btv
->c
.pci
, BT878_DEVCTRL
, &command
);
5063 command
|= BT878_EN_TBFX
;
5065 command
|= BT878_EN_VSFX
;
5066 pci_write_config_byte(btv
->c
.pci
, BT878_DEVCTRL
, command
);
5068 if (UNSET
!= latency
)
5069 pci_write_config_byte(btv
->c
.pci
, PCI_LATENCY_TIMER
, latency
);