locks: fix vfs_test_lock() comment
[deliverable/linux.git] / drivers / media / video / cx88 / cx88-cards.c
1 /*
2 *
3 * device driver for Conexant 2388x based TV cards
4 * card-specific stuff.
5 *
6 * (c) 2003 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include <linux/init.h>
24 #include <linux/module.h>
25 #include <linux/pci.h>
26 #include <linux/delay.h>
27
28 #include "cx88.h"
29
30 /* ------------------------------------------------------------------ */
31 /* board config info */
32
33 struct cx88_board cx88_boards[] = {
34 [CX88_BOARD_UNKNOWN] = {
35 .name = "UNKNOWN/GENERIC",
36 .tuner_type = UNSET,
37 .radio_type = UNSET,
38 .tuner_addr = ADDR_UNSET,
39 .radio_addr = ADDR_UNSET,
40 .input = {{
41 .type = CX88_VMUX_COMPOSITE1,
42 .vmux = 0,
43 },{
44 .type = CX88_VMUX_COMPOSITE2,
45 .vmux = 1,
46 },{
47 .type = CX88_VMUX_COMPOSITE3,
48 .vmux = 2,
49 },{
50 .type = CX88_VMUX_COMPOSITE4,
51 .vmux = 3,
52 }},
53 },
54 [CX88_BOARD_HAUPPAUGE] = {
55 .name = "Hauppauge WinTV 34xxx models",
56 .tuner_type = UNSET,
57 .radio_type = UNSET,
58 .tuner_addr = ADDR_UNSET,
59 .radio_addr = ADDR_UNSET,
60 .tda9887_conf = TDA9887_PRESENT,
61 .input = {{
62 .type = CX88_VMUX_TELEVISION,
63 .vmux = 0,
64 .gpio0 = 0xff00, // internal decoder
65 },{
66 .type = CX88_VMUX_DEBUG,
67 .vmux = 0,
68 .gpio0 = 0xff01, // mono from tuner chip
69 },{
70 .type = CX88_VMUX_COMPOSITE1,
71 .vmux = 1,
72 .gpio0 = 0xff02,
73 },{
74 .type = CX88_VMUX_SVIDEO,
75 .vmux = 2,
76 .gpio0 = 0xff02,
77 }},
78 .radio = {
79 .type = CX88_RADIO,
80 .gpio0 = 0xff01,
81 },
82 },
83 [CX88_BOARD_GDI] = {
84 .name = "GDI Black Gold",
85 .tuner_type = UNSET,
86 .radio_type = UNSET,
87 .tuner_addr = ADDR_UNSET,
88 .radio_addr = ADDR_UNSET,
89 .input = {{
90 .type = CX88_VMUX_TELEVISION,
91 .vmux = 0,
92 },{
93 .type = CX88_VMUX_SVIDEO,
94 .vmux = 2,
95 }},
96 },
97 [CX88_BOARD_PIXELVIEW] = {
98 .name = "PixelView",
99 .tuner_type = TUNER_PHILIPS_PAL,
100 .radio_type = UNSET,
101 .tuner_addr = ADDR_UNSET,
102 .radio_addr = ADDR_UNSET,
103 .input = {{
104 .type = CX88_VMUX_TELEVISION,
105 .vmux = 0,
106 .gpio0 = 0xff00, // internal decoder
107 },{
108 .type = CX88_VMUX_COMPOSITE1,
109 .vmux = 1,
110 },{
111 .type = CX88_VMUX_SVIDEO,
112 .vmux = 2,
113 }},
114 .radio = {
115 .type = CX88_RADIO,
116 .gpio0 = 0xff10,
117 },
118 },
119 [CX88_BOARD_ATI_WONDER_PRO] = {
120 .name = "ATI TV Wonder Pro",
121 .tuner_type = TUNER_PHILIPS_4IN1,
122 .radio_type = UNSET,
123 .tuner_addr = ADDR_UNSET,
124 .radio_addr = ADDR_UNSET,
125 .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER,
126 .input = {{
127 .type = CX88_VMUX_TELEVISION,
128 .vmux = 0,
129 .gpio0 = 0x03ff,
130 },{
131 .type = CX88_VMUX_COMPOSITE1,
132 .vmux = 1,
133 .gpio0 = 0x03fe,
134 },{
135 .type = CX88_VMUX_SVIDEO,
136 .vmux = 2,
137 .gpio0 = 0x03fe,
138 }},
139 },
140 [CX88_BOARD_WINFAST2000XP_EXPERT] = {
141 .name = "Leadtek Winfast 2000XP Expert",
142 .tuner_type = TUNER_PHILIPS_4IN1,
143 .radio_type = UNSET,
144 .tuner_addr = ADDR_UNSET,
145 .radio_addr = ADDR_UNSET,
146 .tda9887_conf = TDA9887_PRESENT,
147 .input = {{
148 .type = CX88_VMUX_TELEVISION,
149 .vmux = 0,
150 .gpio0 = 0x00F5e700,
151 .gpio1 = 0x00003004,
152 .gpio2 = 0x00F5e700,
153 .gpio3 = 0x02000000,
154 },{
155 .type = CX88_VMUX_COMPOSITE1,
156 .vmux = 1,
157 .gpio0 = 0x00F5c700,
158 .gpio1 = 0x00003004,
159 .gpio2 = 0x00F5c700,
160 .gpio3 = 0x02000000,
161 },{
162 .type = CX88_VMUX_SVIDEO,
163 .vmux = 2,
164 .gpio0 = 0x00F5c700,
165 .gpio1 = 0x00003004,
166 .gpio2 = 0x00F5c700,
167 .gpio3 = 0x02000000,
168 }},
169 .radio = {
170 .type = CX88_RADIO,
171 .gpio0 = 0x00F5d700,
172 .gpio1 = 0x00003004,
173 .gpio2 = 0x00F5d700,
174 .gpio3 = 0x02000000,
175 },
176 },
177 [CX88_BOARD_AVERTV_STUDIO_303] = {
178 .name = "AverTV Studio 303 (M126)",
179 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
180 .radio_type = UNSET,
181 .tuner_addr = ADDR_UNSET,
182 .radio_addr = ADDR_UNSET,
183 .tda9887_conf = TDA9887_PRESENT,
184 .input = {{
185 .type = CX88_VMUX_TELEVISION,
186 .vmux = 0,
187 .gpio1 = 0xe09f,
188 },{
189 .type = CX88_VMUX_COMPOSITE1,
190 .vmux = 1,
191 .gpio1 = 0xe05f,
192 },{
193 .type = CX88_VMUX_SVIDEO,
194 .vmux = 2,
195 .gpio1 = 0xe05f,
196 }},
197 .radio = {
198 .gpio1 = 0xe0df,
199 .type = CX88_RADIO,
200 },
201 },
202 [CX88_BOARD_MSI_TVANYWHERE_MASTER] = {
203 // added gpio values thanks to Michal
204 // values for PAL from DScaler
205 .name = "MSI TV-@nywhere Master",
206 .tuner_type = TUNER_MT2032,
207 .radio_type = UNSET,
208 .tuner_addr = ADDR_UNSET,
209 .radio_addr = ADDR_UNSET,
210 .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER_NTSC,
211 .input = {{
212 .type = CX88_VMUX_TELEVISION,
213 .vmux = 0,
214 .gpio0 = 0x000040bf,
215 .gpio1 = 0x000080c0,
216 .gpio2 = 0x0000ff40,
217 },{
218 .type = CX88_VMUX_COMPOSITE1,
219 .vmux = 1,
220 .gpio0 = 0x000040bf,
221 .gpio1 = 0x000080c0,
222 .gpio2 = 0x0000ff40,
223 },{
224 .type = CX88_VMUX_SVIDEO,
225 .vmux = 2,
226 .gpio0 = 0x000040bf,
227 .gpio1 = 0x000080c0,
228 .gpio2 = 0x0000ff40,
229 }},
230 .radio = {
231 .type = CX88_RADIO,
232 },
233 },
234 [CX88_BOARD_WINFAST_DV2000] = {
235 .name = "Leadtek Winfast DV2000",
236 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
237 .radio_type = UNSET,
238 .tuner_addr = ADDR_UNSET,
239 .radio_addr = ADDR_UNSET,
240 .tda9887_conf = TDA9887_PRESENT,
241 .input = {{
242 .type = CX88_VMUX_TELEVISION,
243 .vmux = 0,
244 .gpio0 = 0x0035e700,
245 .gpio1 = 0x00003004,
246 .gpio2 = 0x0035e700,
247 .gpio3 = 0x02000000,
248 },{
249
250 .type = CX88_VMUX_COMPOSITE1,
251 .vmux = 1,
252 .gpio0 = 0x0035c700,
253 .gpio1 = 0x00003004,
254 .gpio2 = 0x0035c700,
255 .gpio3 = 0x02000000,
256 },{
257 .type = CX88_VMUX_SVIDEO,
258 .vmux = 2,
259 .gpio0 = 0x0035c700,
260 .gpio1 = 0x0035c700,
261 .gpio2 = 0x02000000,
262 .gpio3 = 0x02000000,
263 }},
264 .radio = {
265 .type = CX88_RADIO,
266 .gpio0 = 0x0035d700,
267 .gpio1 = 0x00007004,
268 .gpio2 = 0x0035d700,
269 .gpio3 = 0x02000000,
270 },
271 },
272 [CX88_BOARD_LEADTEK_PVR2000] = {
273 // gpio values for PAL version from regspy by DScaler
274 .name = "Leadtek PVR 2000",
275 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
276 .radio_type = UNSET,
277 .tuner_addr = ADDR_UNSET,
278 .radio_addr = ADDR_UNSET,
279 .tda9887_conf = TDA9887_PRESENT,
280 .input = {{
281 .type = CX88_VMUX_TELEVISION,
282 .vmux = 0,
283 .gpio0 = 0x0000bde2,
284 .extadc = 1,
285 },{
286 .type = CX88_VMUX_COMPOSITE1,
287 .vmux = 1,
288 .gpio0 = 0x0000bde6,
289 .extadc = 1,
290 },{
291 .type = CX88_VMUX_SVIDEO,
292 .vmux = 2,
293 .gpio0 = 0x0000bde6,
294 .extadc = 1,
295 }},
296 .radio = {
297 .type = CX88_RADIO,
298 .gpio0 = 0x0000bd62,
299 .extadc = 1,
300 },
301 .mpeg = CX88_MPEG_BLACKBIRD,
302 },
303 [CX88_BOARD_IODATA_GVVCP3PCI] = {
304 .name = "IODATA GV-VCP3/PCI",
305 .tuner_type = TUNER_ABSENT,
306 .radio_type = UNSET,
307 .tuner_addr = ADDR_UNSET,
308 .radio_addr = ADDR_UNSET,
309 .input = {{
310 .type = CX88_VMUX_COMPOSITE1,
311 .vmux = 0,
312 },{
313 .type = CX88_VMUX_COMPOSITE2,
314 .vmux = 1,
315 },{
316 .type = CX88_VMUX_SVIDEO,
317 .vmux = 2,
318 }},
319 },
320 [CX88_BOARD_PROLINK_PLAYTVPVR] = {
321 .name = "Prolink PlayTV PVR",
322 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
323 .radio_type = UNSET,
324 .tuner_addr = ADDR_UNSET,
325 .radio_addr = ADDR_UNSET,
326 .tda9887_conf = TDA9887_PRESENT,
327 .input = {{
328 .type = CX88_VMUX_TELEVISION,
329 .vmux = 0,
330 .gpio0 = 0xbff0,
331 },{
332 .type = CX88_VMUX_COMPOSITE1,
333 .vmux = 1,
334 .gpio0 = 0xbff3,
335 },{
336 .type = CX88_VMUX_SVIDEO,
337 .vmux = 2,
338 .gpio0 = 0xbff3,
339 }},
340 .radio = {
341 .type = CX88_RADIO,
342 .gpio0 = 0xbff0,
343 },
344 },
345 [CX88_BOARD_ASUS_PVR_416] = {
346 .name = "ASUS PVR-416",
347 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
348 .radio_type = UNSET,
349 .tuner_addr = ADDR_UNSET,
350 .radio_addr = ADDR_UNSET,
351 .tda9887_conf = TDA9887_PRESENT,
352 .input = {{
353 .type = CX88_VMUX_TELEVISION,
354 .vmux = 0,
355 .gpio0 = 0x0000fde6,
356 },{
357 .type = CX88_VMUX_SVIDEO,
358 .vmux = 2,
359 .gpio0 = 0x0000fde6, // 0x0000fda6 L,R RCA audio in?
360 .extadc = 1,
361 }},
362 .radio = {
363 .type = CX88_RADIO,
364 .gpio0 = 0x0000fde2,
365 },
366 .mpeg = CX88_MPEG_BLACKBIRD,
367 },
368 [CX88_BOARD_MSI_TVANYWHERE] = {
369 .name = "MSI TV-@nywhere",
370 .tuner_type = TUNER_MT2032,
371 .radio_type = UNSET,
372 .tuner_addr = ADDR_UNSET,
373 .radio_addr = ADDR_UNSET,
374 .tda9887_conf = TDA9887_PRESENT,
375 .input = {{
376 .type = CX88_VMUX_TELEVISION,
377 .vmux = 0,
378 .gpio0 = 0x00000fbf,
379 .gpio2 = 0x0000fc08,
380 },{
381 .type = CX88_VMUX_COMPOSITE1,
382 .vmux = 1,
383 .gpio0 = 0x00000fbf,
384 .gpio2 = 0x0000fc68,
385 },{
386 .type = CX88_VMUX_SVIDEO,
387 .vmux = 2,
388 .gpio0 = 0x00000fbf,
389 .gpio2 = 0x0000fc68,
390 }},
391 },
392 [CX88_BOARD_KWORLD_DVB_T] = {
393 .name = "KWorld/VStream XPert DVB-T",
394 .tuner_type = TUNER_ABSENT,
395 .radio_type = UNSET,
396 .tuner_addr = ADDR_UNSET,
397 .radio_addr = ADDR_UNSET,
398 .input = {{
399 .type = CX88_VMUX_COMPOSITE1,
400 .vmux = 1,
401 .gpio0 = 0x0700,
402 .gpio2 = 0x0101,
403 },{
404 .type = CX88_VMUX_SVIDEO,
405 .vmux = 2,
406 .gpio0 = 0x0700,
407 .gpio2 = 0x0101,
408 }},
409 .mpeg = CX88_MPEG_DVB,
410 },
411 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1] = {
412 .name = "DViCO FusionHDTV DVB-T1",
413 .tuner_type = TUNER_ABSENT, /* No analog tuner */
414 .radio_type = UNSET,
415 .tuner_addr = ADDR_UNSET,
416 .radio_addr = ADDR_UNSET,
417 .input = {{
418 .type = CX88_VMUX_COMPOSITE1,
419 .vmux = 1,
420 .gpio0 = 0x000027df,
421 },{
422 .type = CX88_VMUX_SVIDEO,
423 .vmux = 2,
424 .gpio0 = 0x000027df,
425 }},
426 .mpeg = CX88_MPEG_DVB,
427 },
428 [CX88_BOARD_KWORLD_LTV883] = {
429 .name = "KWorld LTV883RF",
430 .tuner_type = TUNER_TNF_8831BGFF,
431 .radio_type = UNSET,
432 .tuner_addr = ADDR_UNSET,
433 .radio_addr = ADDR_UNSET,
434 .input = {{
435 .type = CX88_VMUX_TELEVISION,
436 .vmux = 0,
437 .gpio0 = 0x07f8,
438 },{
439 .type = CX88_VMUX_DEBUG,
440 .vmux = 0,
441 .gpio0 = 0x07f9, // mono from tuner chip
442 },{
443 .type = CX88_VMUX_COMPOSITE1,
444 .vmux = 1,
445 .gpio0 = 0x000007fa,
446 },{
447 .type = CX88_VMUX_SVIDEO,
448 .vmux = 2,
449 .gpio0 = 0x000007fa,
450 }},
451 .radio = {
452 .type = CX88_RADIO,
453 .gpio0 = 0x000007f8,
454 },
455 },
456 [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q] = {
457 .name = "DViCO FusionHDTV 3 Gold-Q",
458 .tuner_type = TUNER_MICROTUNE_4042FI5,
459 .radio_type = UNSET,
460 .tuner_addr = ADDR_UNSET,
461 .radio_addr = ADDR_UNSET,
462 /*
463 GPIO[0] resets DT3302 DTV receiver
464 0 - reset asserted
465 1 - normal operation
466 GPIO[1] mutes analog audio output connector
467 0 - enable selected source
468 1 - mute
469 GPIO[2] selects source for analog audio output connector
470 0 - analog audio input connector on tab
471 1 - analog DAC output from CX23881 chip
472 GPIO[3] selects RF input connector on tuner module
473 0 - RF connector labeled CABLE
474 1 - RF connector labeled ANT
475 GPIO[4] selects high RF for QAM256 mode
476 0 - normal RF
477 1 - high RF
478 */
479 .input = {{
480 .type = CX88_VMUX_TELEVISION,
481 .vmux = 0,
482 .gpio0 = 0x0f0d,
483 },{
484 .type = CX88_VMUX_CABLE,
485 .vmux = 0,
486 .gpio0 = 0x0f05,
487 },{
488 .type = CX88_VMUX_COMPOSITE1,
489 .vmux = 1,
490 .gpio0 = 0x0f00,
491 },{
492 .type = CX88_VMUX_SVIDEO,
493 .vmux = 2,
494 .gpio0 = 0x0f00,
495 }},
496 .mpeg = CX88_MPEG_DVB,
497 },
498 [CX88_BOARD_HAUPPAUGE_DVB_T1] = {
499 .name = "Hauppauge Nova-T DVB-T",
500 .tuner_type = TUNER_ABSENT,
501 .radio_type = UNSET,
502 .tuner_addr = ADDR_UNSET,
503 .radio_addr = ADDR_UNSET,
504 .input = {{
505 .type = CX88_VMUX_DVB,
506 .vmux = 0,
507 }},
508 .mpeg = CX88_MPEG_DVB,
509 },
510 [CX88_BOARD_CONEXANT_DVB_T1] = {
511 .name = "Conexant DVB-T reference design",
512 .tuner_type = TUNER_ABSENT,
513 .radio_type = UNSET,
514 .tuner_addr = ADDR_UNSET,
515 .radio_addr = ADDR_UNSET,
516 .input = {{
517 .type = CX88_VMUX_DVB,
518 .vmux = 0,
519 }},
520 .mpeg = CX88_MPEG_DVB,
521 },
522 [CX88_BOARD_PROVIDEO_PV259] = {
523 .name = "Provideo PV259",
524 .tuner_type = TUNER_PHILIPS_FQ1216ME,
525 .radio_type = UNSET,
526 .tuner_addr = ADDR_UNSET,
527 .radio_addr = ADDR_UNSET,
528 .input = {{
529 .type = CX88_VMUX_TELEVISION,
530 .vmux = 0,
531 .extadc = 1,
532 }},
533 .mpeg = CX88_MPEG_BLACKBIRD,
534 },
535 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS] = {
536 .name = "DViCO FusionHDTV DVB-T Plus",
537 .tuner_type = TUNER_ABSENT, /* No analog tuner */
538 .radio_type = UNSET,
539 .tuner_addr = ADDR_UNSET,
540 .radio_addr = ADDR_UNSET,
541 .input = {{
542 .type = CX88_VMUX_COMPOSITE1,
543 .vmux = 1,
544 .gpio0 = 0x000027df,
545 },{
546 .type = CX88_VMUX_SVIDEO,
547 .vmux = 2,
548 .gpio0 = 0x000027df,
549 }},
550 .mpeg = CX88_MPEG_DVB,
551 },
552 [CX88_BOARD_DNTV_LIVE_DVB_T] = {
553 .name = "digitalnow DNTV Live! DVB-T",
554 .tuner_type = TUNER_ABSENT,
555 .radio_type = UNSET,
556 .tuner_addr = ADDR_UNSET,
557 .radio_addr = ADDR_UNSET,
558 .input = {{
559 .type = CX88_VMUX_COMPOSITE1,
560 .vmux = 1,
561 .gpio0 = 0x00000700,
562 .gpio2 = 0x00000101,
563 },{
564 .type = CX88_VMUX_SVIDEO,
565 .vmux = 2,
566 .gpio0 = 0x00000700,
567 .gpio2 = 0x00000101,
568 }},
569 .mpeg = CX88_MPEG_DVB,
570 },
571 [CX88_BOARD_PCHDTV_HD3000] = {
572 .name = "pcHDTV HD3000 HDTV",
573 .tuner_type = TUNER_THOMSON_DTT761X,
574 .radio_type = UNSET,
575 .tuner_addr = ADDR_UNSET,
576 .radio_addr = ADDR_UNSET,
577 .tda9887_conf = TDA9887_PRESENT,
578 .input = {{
579 .type = CX88_VMUX_TELEVISION,
580 .vmux = 0,
581 .gpio0 = 0x00008484,
582 .gpio1 = 0x00000000,
583 .gpio2 = 0x00000000,
584 .gpio3 = 0x00000000,
585 },{
586 .type = CX88_VMUX_COMPOSITE1,
587 .vmux = 1,
588 .gpio0 = 0x00008400,
589 .gpio1 = 0x00000000,
590 .gpio2 = 0x00000000,
591 .gpio3 = 0x00000000,
592 },{
593 .type = CX88_VMUX_SVIDEO,
594 .vmux = 2,
595 .gpio0 = 0x00008400,
596 .gpio1 = 0x00000000,
597 .gpio2 = 0x00000000,
598 .gpio3 = 0x00000000,
599 }},
600 .radio = {
601 .type = CX88_RADIO,
602 .vmux = 2,
603 .gpio0 = 0x00008400,
604 .gpio1 = 0x00000000,
605 .gpio2 = 0x00000000,
606 .gpio3 = 0x00000000,
607 },
608 .mpeg = CX88_MPEG_DVB,
609 },
610 [CX88_BOARD_HAUPPAUGE_ROSLYN] = {
611 // entry added by Kaustubh D. Bhalerao <bhalerao.1@osu.edu>
612 // GPIO values obtained from regspy, courtesy Sean Covel
613 .name = "Hauppauge WinTV 28xxx (Roslyn) models",
614 .tuner_type = UNSET,
615 .radio_type = UNSET,
616 .tuner_addr = ADDR_UNSET,
617 .radio_addr = ADDR_UNSET,
618 .input = {{
619 .type = CX88_VMUX_TELEVISION,
620 .vmux = 0,
621 .gpio0 = 0xed1a,
622 .gpio2 = 0x00ff,
623 },{
624 .type = CX88_VMUX_DEBUG,
625 .vmux = 0,
626 .gpio0 = 0xff01,
627 },{
628 .type = CX88_VMUX_COMPOSITE1,
629 .vmux = 1,
630 .gpio0 = 0xff02,
631 },{
632 .type = CX88_VMUX_SVIDEO,
633 .vmux = 2,
634 .gpio0 = 0xed92,
635 .gpio2 = 0x00ff,
636 }},
637 .radio = {
638 .type = CX88_RADIO,
639 .gpio0 = 0xed96,
640 .gpio2 = 0x00ff,
641 },
642 .mpeg = CX88_MPEG_BLACKBIRD,
643 },
644 [CX88_BOARD_DIGITALLOGIC_MEC] = {
645 .name = "Digital-Logic MICROSPACE Entertainment Center (MEC)",
646 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
647 .radio_type = UNSET,
648 .tuner_addr = ADDR_UNSET,
649 .radio_addr = ADDR_UNSET,
650 .tda9887_conf = TDA9887_PRESENT,
651 .input = {{
652 .type = CX88_VMUX_TELEVISION,
653 .vmux = 0,
654 .gpio0 = 0x00009d80,
655 .extadc = 1,
656 },{
657 .type = CX88_VMUX_COMPOSITE1,
658 .vmux = 1,
659 .gpio0 = 0x00009d76,
660 .extadc = 1,
661 },{
662 .type = CX88_VMUX_SVIDEO,
663 .vmux = 2,
664 .gpio0 = 0x00009d76,
665 .extadc = 1,
666 }},
667 .radio = {
668 .type = CX88_RADIO,
669 .gpio0 = 0x00009d00,
670 .extadc = 1,
671 },
672 .mpeg = CX88_MPEG_BLACKBIRD,
673 },
674 [CX88_BOARD_IODATA_GVBCTV7E] = {
675 .name = "IODATA GV/BCTV7E",
676 .tuner_type = TUNER_PHILIPS_FQ1286,
677 .radio_type = UNSET,
678 .tuner_addr = ADDR_UNSET,
679 .radio_addr = ADDR_UNSET,
680 .tda9887_conf = TDA9887_PRESENT,
681 .input = {{
682 .type = CX88_VMUX_TELEVISION,
683 .vmux = 1,
684 .gpio1 = 0x0000e03f,
685 },{
686 .type = CX88_VMUX_COMPOSITE1,
687 .vmux = 2,
688 .gpio1 = 0x0000e07f,
689 },{
690 .type = CX88_VMUX_SVIDEO,
691 .vmux = 3,
692 .gpio1 = 0x0000e07f,
693 }}
694 },
695 [CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO] = {
696 .name = "PixelView PlayTV Ultra Pro (Stereo)",
697 /* May be also TUNER_YMEC_TVF_5533MF for NTSC/M or PAL/M */
698 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
699 .radio_type = UNSET,
700 .tuner_addr = ADDR_UNSET,
701 .radio_addr = ADDR_UNSET,
702 .input = {{
703 .type = CX88_VMUX_TELEVISION,
704 .vmux = 0,
705 .gpio0 = 0xbf61, /* internal decoder */
706 },{
707 .type = CX88_VMUX_COMPOSITE1,
708 .vmux = 1,
709 .gpio0 = 0xbf63,
710 },{
711 .type = CX88_VMUX_SVIDEO,
712 .vmux = 2,
713 .gpio0 = 0xbf63,
714 }},
715 .radio = {
716 .type = CX88_RADIO,
717 .gpio0 = 0xbf60,
718 },
719 },
720 [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = {
721 .name = "DViCO FusionHDTV 3 Gold-T",
722 .tuner_type = TUNER_THOMSON_DTT761X,
723 .radio_type = UNSET,
724 .tuner_addr = ADDR_UNSET,
725 .radio_addr = ADDR_UNSET,
726 .tda9887_conf = TDA9887_PRESENT,
727 .input = {{
728 .type = CX88_VMUX_TELEVISION,
729 .vmux = 0,
730 .gpio0 = 0x97ed,
731 },{
732 .type = CX88_VMUX_COMPOSITE1,
733 .vmux = 1,
734 .gpio0 = 0x97e9,
735 },{
736 .type = CX88_VMUX_SVIDEO,
737 .vmux = 2,
738 .gpio0 = 0x97e9,
739 }},
740 .mpeg = CX88_MPEG_DVB,
741 },
742 [CX88_BOARD_ADSTECH_DVB_T_PCI] = {
743 .name = "ADS Tech Instant TV DVB-T PCI",
744 .tuner_type = TUNER_ABSENT,
745 .radio_type = UNSET,
746 .tuner_addr = ADDR_UNSET,
747 .radio_addr = ADDR_UNSET,
748 .input = {{
749 .type = CX88_VMUX_COMPOSITE1,
750 .vmux = 1,
751 .gpio0 = 0x0700,
752 .gpio2 = 0x0101,
753 },{
754 .type = CX88_VMUX_SVIDEO,
755 .vmux = 2,
756 .gpio0 = 0x0700,
757 .gpio2 = 0x0101,
758 }},
759 .mpeg = CX88_MPEG_DVB,
760 },
761 [CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1] = {
762 .name = "TerraTec Cinergy 1400 DVB-T",
763 .tuner_type = TUNER_ABSENT,
764 .input = {{
765 .type = CX88_VMUX_DVB,
766 .vmux = 0,
767 },{
768 .type = CX88_VMUX_COMPOSITE1,
769 .vmux = 2,
770 },{
771 .type = CX88_VMUX_SVIDEO,
772 .vmux = 2,
773 }},
774 .mpeg = CX88_MPEG_DVB,
775 },
776 [CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD] = {
777 .name = "DViCO FusionHDTV 5 Gold",
778 .tuner_type = TUNER_LG_TDVS_H06XF, /* TDVS-H062F */
779 .radio_type = UNSET,
780 .tuner_addr = ADDR_UNSET,
781 .radio_addr = ADDR_UNSET,
782 .tda9887_conf = TDA9887_PRESENT,
783 .input = {{
784 .type = CX88_VMUX_TELEVISION,
785 .vmux = 0,
786 .gpio0 = 0x87fd,
787 },{
788 .type = CX88_VMUX_COMPOSITE1,
789 .vmux = 1,
790 .gpio0 = 0x87f9,
791 },{
792 .type = CX88_VMUX_SVIDEO,
793 .vmux = 2,
794 .gpio0 = 0x87f9,
795 }},
796 .mpeg = CX88_MPEG_DVB,
797 },
798 [CX88_BOARD_AVERMEDIA_ULTRATV_MC_550] = {
799 .name = "AverMedia UltraTV Media Center PCI 550",
800 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
801 .radio_type = UNSET,
802 .tuner_addr = ADDR_UNSET,
803 .radio_addr = ADDR_UNSET,
804 .tda9887_conf = TDA9887_PRESENT,
805 .input = {{
806 .type = CX88_VMUX_COMPOSITE1,
807 .vmux = 0,
808 .gpio0 = 0x0000cd73,
809 .extadc = 1,
810 },{
811 .type = CX88_VMUX_SVIDEO,
812 .vmux = 1,
813 .gpio0 = 0x0000cd73,
814 .extadc = 1,
815 },{
816 .type = CX88_VMUX_TELEVISION,
817 .vmux = 3,
818 .gpio0 = 0x0000cdb3,
819 .extadc = 1,
820 }},
821 .radio = {
822 .type = CX88_RADIO,
823 .vmux = 2,
824 .gpio0 = 0x0000cdf3,
825 .extadc = 1,
826 },
827 .mpeg = CX88_MPEG_BLACKBIRD,
828 },
829 [CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD] = {
830 /* Alexander Wold <awold@bigfoot.com> */
831 .name = "Kworld V-Stream Xpert DVD",
832 .tuner_type = UNSET,
833 .input = {{
834 .type = CX88_VMUX_COMPOSITE1,
835 .vmux = 1,
836 .gpio0 = 0x03000000,
837 .gpio1 = 0x01000000,
838 .gpio2 = 0x02000000,
839 .gpio3 = 0x00100000,
840 },{
841 .type = CX88_VMUX_SVIDEO,
842 .vmux = 2,
843 .gpio0 = 0x03000000,
844 .gpio1 = 0x01000000,
845 .gpio2 = 0x02000000,
846 .gpio3 = 0x00100000,
847 }},
848 },
849 [CX88_BOARD_ATI_HDTVWONDER] = {
850 .name = "ATI HDTV Wonder",
851 .tuner_type = TUNER_PHILIPS_TUV1236D,
852 .radio_type = UNSET,
853 .tuner_addr = ADDR_UNSET,
854 .radio_addr = ADDR_UNSET,
855 .input = {{
856 .type = CX88_VMUX_TELEVISION,
857 .vmux = 0,
858 .gpio0 = 0x00000ff7,
859 .gpio1 = 0x000000ff,
860 .gpio2 = 0x00000001,
861 .gpio3 = 0x00000000,
862 },{
863 .type = CX88_VMUX_COMPOSITE1,
864 .vmux = 1,
865 .gpio0 = 0x00000ffe,
866 .gpio1 = 0x000000ff,
867 .gpio2 = 0x00000001,
868 .gpio3 = 0x00000000,
869 },{
870 .type = CX88_VMUX_SVIDEO,
871 .vmux = 2,
872 .gpio0 = 0x00000ffe,
873 .gpio1 = 0x000000ff,
874 .gpio2 = 0x00000001,
875 .gpio3 = 0x00000000,
876 }},
877 .mpeg = CX88_MPEG_DVB,
878 },
879 [CX88_BOARD_WINFAST_DTV1000] = {
880 .name = "WinFast DTV1000-T",
881 .tuner_type = TUNER_ABSENT,
882 .radio_type = UNSET,
883 .tuner_addr = ADDR_UNSET,
884 .radio_addr = ADDR_UNSET,
885 .input = {{
886 .type = CX88_VMUX_DVB,
887 .vmux = 0,
888 },{
889 .type = CX88_VMUX_COMPOSITE1,
890 .vmux = 1,
891 },{
892 .type = CX88_VMUX_SVIDEO,
893 .vmux = 2,
894 }},
895 .mpeg = CX88_MPEG_DVB,
896 },
897 [CX88_BOARD_AVERTV_303] = {
898 .name = "AVerTV 303 (M126)",
899 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
900 .radio_type = UNSET,
901 .tuner_addr = ADDR_UNSET,
902 .radio_addr = ADDR_UNSET,
903 .tda9887_conf = TDA9887_PRESENT,
904 .input = {{
905 .type = CX88_VMUX_TELEVISION,
906 .vmux = 0,
907 .gpio0 = 0x00ff,
908 .gpio1 = 0xe09f,
909 .gpio2 = 0x0010,
910 .gpio3 = 0x0000,
911 },{
912 .type = CX88_VMUX_COMPOSITE1,
913 .vmux = 1,
914 .gpio0 = 0x00ff,
915 .gpio1 = 0xe05f,
916 .gpio2 = 0x0010,
917 .gpio3 = 0x0000,
918 },{
919 .type = CX88_VMUX_SVIDEO,
920 .vmux = 2,
921 .gpio0 = 0x00ff,
922 .gpio1 = 0xe05f,
923 .gpio2 = 0x0010,
924 .gpio3 = 0x0000,
925 }},
926 },
927 [CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1] = {
928 .name = "Hauppauge Nova-S-Plus DVB-S",
929 .tuner_type = TUNER_ABSENT,
930 .radio_type = UNSET,
931 .tuner_addr = ADDR_UNSET,
932 .radio_addr = ADDR_UNSET,
933 .input = {{
934 .type = CX88_VMUX_DVB,
935 .vmux = 0,
936 },{
937 .type = CX88_VMUX_COMPOSITE1,
938 .vmux = 1,
939 },{
940 .type = CX88_VMUX_SVIDEO,
941 .vmux = 2,
942 }},
943 .mpeg = CX88_MPEG_DVB,
944 },
945 [CX88_BOARD_HAUPPAUGE_NOVASE2_S1] = {
946 .name = "Hauppauge Nova-SE2 DVB-S",
947 .tuner_type = TUNER_ABSENT,
948 .radio_type = UNSET,
949 .tuner_addr = ADDR_UNSET,
950 .radio_addr = ADDR_UNSET,
951 .input = {{
952 .type = CX88_VMUX_DVB,
953 .vmux = 0,
954 }},
955 .mpeg = CX88_MPEG_DVB,
956 },
957 [CX88_BOARD_KWORLD_DVBS_100] = {
958 .name = "KWorld DVB-S 100",
959 .tuner_type = TUNER_ABSENT,
960 .radio_type = UNSET,
961 .tuner_addr = ADDR_UNSET,
962 .radio_addr = ADDR_UNSET,
963 .input = {{
964 .type = CX88_VMUX_DVB,
965 .vmux = 0,
966 },{
967 .type = CX88_VMUX_COMPOSITE1,
968 .vmux = 1,
969 },{
970 .type = CX88_VMUX_SVIDEO,
971 .vmux = 2,
972 }},
973 .mpeg = CX88_MPEG_DVB,
974 },
975 [CX88_BOARD_HAUPPAUGE_HVR1100] = {
976 .name = "Hauppauge WinTV-HVR1100 DVB-T/Hybrid",
977 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
978 .radio_type = UNSET,
979 .tuner_addr = ADDR_UNSET,
980 .radio_addr = ADDR_UNSET,
981 .tda9887_conf = TDA9887_PRESENT,
982 .input = {{
983 .type = CX88_VMUX_TELEVISION,
984 .vmux = 0,
985 },{
986 .type = CX88_VMUX_COMPOSITE1,
987 .vmux = 1,
988 },{
989 .type = CX88_VMUX_SVIDEO,
990 .vmux = 2,
991 }},
992 /* fixme: Add radio support */
993 .mpeg = CX88_MPEG_DVB,
994 },
995 [CX88_BOARD_HAUPPAUGE_HVR1100LP] = {
996 .name = "Hauppauge WinTV-HVR1100 DVB-T/Hybrid (Low Profile)",
997 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
998 .radio_type = UNSET,
999 .tuner_addr = ADDR_UNSET,
1000 .radio_addr = ADDR_UNSET,
1001 .tda9887_conf = TDA9887_PRESENT,
1002 .input = {{
1003 .type = CX88_VMUX_TELEVISION,
1004 .vmux = 0,
1005 },{
1006 .type = CX88_VMUX_COMPOSITE1,
1007 .vmux = 1,
1008 }},
1009 /* fixme: Add radio support */
1010 .mpeg = CX88_MPEG_DVB,
1011 },
1012 [CX88_BOARD_DNTV_LIVE_DVB_T_PRO] = {
1013 .name = "digitalnow DNTV Live! DVB-T Pro",
1014 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1015 .radio_type = UNSET,
1016 .tuner_addr = ADDR_UNSET,
1017 .radio_addr = ADDR_UNSET,
1018 .tda9887_conf = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1019 TDA9887_PORT2_ACTIVE,
1020 .input = {{
1021 .type = CX88_VMUX_TELEVISION,
1022 .vmux = 0,
1023 .gpio0 = 0xf80808,
1024 },{
1025 .type = CX88_VMUX_COMPOSITE1,
1026 .vmux = 1,
1027 .gpio0 = 0xf80808,
1028 },{
1029 .type = CX88_VMUX_SVIDEO,
1030 .vmux = 2,
1031 .gpio0 = 0xf80808,
1032 }},
1033 .radio = {
1034 .type = CX88_RADIO,
1035 .gpio0 = 0xf80808,
1036 },
1037 .mpeg = CX88_MPEG_DVB,
1038 },
1039 [CX88_BOARD_KWORLD_DVB_T_CX22702] = {
1040 /* Kworld V-stream Xpert DVB-T with Thomson tuner */
1041 /* DTT 7579 Conexant CX22702-19 Conexant CX2388x */
1042 /* Manenti Marco <marco_manenti@colman.it> */
1043 .name = "KWorld/VStream XPert DVB-T with cx22702",
1044 .tuner_type = TUNER_ABSENT,
1045 .radio_type = UNSET,
1046 .tuner_addr = ADDR_UNSET,
1047 .radio_addr = ADDR_UNSET,
1048 .input = {{
1049 .type = CX88_VMUX_COMPOSITE1,
1050 .vmux = 1,
1051 .gpio0 = 0x0700,
1052 .gpio2 = 0x0101,
1053 },{
1054 .type = CX88_VMUX_SVIDEO,
1055 .vmux = 2,
1056 .gpio0 = 0x0700,
1057 .gpio2 = 0x0101,
1058 }},
1059 .mpeg = CX88_MPEG_DVB,
1060 },
1061 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL] = {
1062 .name = "DViCO FusionHDTV DVB-T Dual Digital",
1063 .tuner_type = TUNER_ABSENT, /* No analog tuner */
1064 .radio_type = UNSET,
1065 .tuner_addr = ADDR_UNSET,
1066 .radio_addr = ADDR_UNSET,
1067 .input = {{
1068 .type = CX88_VMUX_COMPOSITE1,
1069 .vmux = 1,
1070 .gpio0 = 0x000067df,
1071 },{
1072 .type = CX88_VMUX_SVIDEO,
1073 .vmux = 2,
1074 .gpio0 = 0x000067df,
1075 }},
1076 .mpeg = CX88_MPEG_DVB,
1077 },
1078 [CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT] = {
1079 .name = "KWorld HardwareMpegTV XPert",
1080 .tuner_type = TUNER_PHILIPS_TDA8290,
1081 .radio_type = UNSET,
1082 .tuner_addr = ADDR_UNSET,
1083 .radio_addr = ADDR_UNSET,
1084 .input = {{
1085 .type = CX88_VMUX_TELEVISION,
1086 .vmux = 0,
1087 .gpio0 = 0x3de2,
1088 .gpio2 = 0x00ff,
1089 },{
1090 .type = CX88_VMUX_COMPOSITE1,
1091 .vmux = 1,
1092 .gpio0 = 0x3de6,
1093 .extadc = 1,
1094 },{
1095 .type = CX88_VMUX_SVIDEO,
1096 .vmux = 2,
1097 .gpio0 = 0x3de6,
1098 .extadc = 1,
1099 }},
1100 .radio = {
1101 .type = CX88_RADIO,
1102 .gpio0 = 0x3de6,
1103 .gpio2 = 0x00ff,
1104 },
1105 .mpeg = CX88_MPEG_BLACKBIRD,
1106 },
1107 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID] = {
1108 .name = "DViCO FusionHDTV DVB-T Hybrid",
1109 .tuner_type = TUNER_THOMSON_FE6600,
1110 .radio_type = UNSET,
1111 .tuner_addr = ADDR_UNSET,
1112 .radio_addr = ADDR_UNSET,
1113 .input = {{
1114 .type = CX88_VMUX_TELEVISION,
1115 .vmux = 0,
1116 .gpio0 = 0x0000a75f,
1117 },{
1118 .type = CX88_VMUX_COMPOSITE1,
1119 .vmux = 1,
1120 .gpio0 = 0x0000a75b,
1121 },{
1122 .type = CX88_VMUX_SVIDEO,
1123 .vmux = 2,
1124 .gpio0 = 0x0000a75b,
1125 }},
1126 .mpeg = CX88_MPEG_DVB,
1127 },
1128 [CX88_BOARD_PCHDTV_HD5500] = {
1129 .name = "pcHDTV HD5500 HDTV",
1130 .tuner_type = TUNER_LG_TDVS_H06XF, /* TDVS-H064F */
1131 .radio_type = UNSET,
1132 .tuner_addr = ADDR_UNSET,
1133 .radio_addr = ADDR_UNSET,
1134 .tda9887_conf = TDA9887_PRESENT,
1135 .input = {{
1136 .type = CX88_VMUX_TELEVISION,
1137 .vmux = 0,
1138 .gpio0 = 0x87fd,
1139 },{
1140 .type = CX88_VMUX_COMPOSITE1,
1141 .vmux = 1,
1142 .gpio0 = 0x87f9,
1143 },{
1144 .type = CX88_VMUX_SVIDEO,
1145 .vmux = 2,
1146 .gpio0 = 0x87f9,
1147 }},
1148 .mpeg = CX88_MPEG_DVB,
1149 },
1150 [CX88_BOARD_KWORLD_MCE200_DELUXE] = {
1151 /* FIXME: tested TV input only, disabled composite,
1152 svideo and radio until they can be tested also. */
1153 .name = "Kworld MCE 200 Deluxe",
1154 .tuner_type = TUNER_TENA_9533_DI,
1155 .radio_type = UNSET,
1156 .tda9887_conf = TDA9887_PRESENT,
1157 .tuner_addr = ADDR_UNSET,
1158 .radio_addr = ADDR_UNSET,
1159 .input = {{
1160 .type = CX88_VMUX_TELEVISION,
1161 .vmux = 0,
1162 .gpio0 = 0x0000BDE6
1163 }},
1164 .mpeg = CX88_MPEG_BLACKBIRD,
1165 },
1166 [CX88_BOARD_PIXELVIEW_PLAYTV_P7000] = {
1167 /* FIXME: SVideo, Composite and FM inputs are untested */
1168 .name = "PixelView PlayTV P7000",
1169 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
1170 .radio_type = UNSET,
1171 .tuner_addr = ADDR_UNSET,
1172 .radio_addr = ADDR_UNSET,
1173 .tda9887_conf = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1174 TDA9887_PORT2_ACTIVE,
1175 .input = {{
1176 .type = CX88_VMUX_TELEVISION,
1177 .vmux = 0,
1178 .gpio0 = 0x5da6,
1179 }},
1180 .mpeg = CX88_MPEG_BLACKBIRD,
1181 },
1182 [CX88_BOARD_NPGTECH_REALTV_TOP10FM] = {
1183 .name = "NPG Tech Real TV FM Top 10",
1184 .tuner_type = TUNER_TNF_5335MF, /* Actually a TNF9535 */
1185 .radio_type = UNSET,
1186 .tuner_addr = ADDR_UNSET,
1187 .radio_addr = ADDR_UNSET,
1188 .input = {{
1189 .type = CX88_VMUX_TELEVISION,
1190 .vmux = 0,
1191 .gpio0 = 0x0788,
1192 },{
1193 .type = CX88_VMUX_COMPOSITE1,
1194 .vmux = 1,
1195 .gpio0 = 0x078b,
1196 },{
1197 .type = CX88_VMUX_SVIDEO,
1198 .vmux = 2,
1199 .gpio0 = 0x078b,
1200 }},
1201 .radio = {
1202 .type = CX88_RADIO,
1203 .gpio0 = 0x074a,
1204 },
1205 },
1206 [CX88_BOARD_WINFAST_DTV2000H] = {
1207 /* video inputs and radio still in testing */
1208 .name = "WinFast DTV2000 H",
1209 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1210 .radio_type = UNSET,
1211 .tuner_addr = ADDR_UNSET,
1212 .radio_addr = ADDR_UNSET,
1213 .tda9887_conf = TDA9887_PRESENT,
1214 .input = {{
1215 .type = CX88_VMUX_TELEVISION,
1216 .vmux = 0,
1217 .gpio0 = 0x00017304,
1218 .gpio1 = 0x00008203,
1219 .gpio2 = 0x00017304,
1220 .gpio3 = 0x02000000,
1221 }},
1222 .mpeg = CX88_MPEG_DVB,
1223 },
1224 [CX88_BOARD_GENIATECH_DVBS] = {
1225 .name = "Geniatech DVB-S",
1226 .tuner_type = TUNER_ABSENT,
1227 .radio_type = UNSET,
1228 .tuner_addr = ADDR_UNSET,
1229 .radio_addr = ADDR_UNSET,
1230 .input = {{
1231 .type = CX88_VMUX_DVB,
1232 .vmux = 0,
1233 },{
1234 .type = CX88_VMUX_COMPOSITE1,
1235 .vmux = 1,
1236 }},
1237 .mpeg = CX88_MPEG_DVB,
1238 },
1239 [CX88_BOARD_HAUPPAUGE_HVR3000] = {
1240 /* FIXME: Add dvb & radio support */
1241 .name = "Hauppauge WinTV-HVR3000 TriMode Analog/DVB-S/DVB-T",
1242 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1243 .radio_type = UNSET,
1244 .tuner_addr = ADDR_UNSET,
1245 .radio_addr = ADDR_UNSET,
1246 .tda9887_conf = TDA9887_PRESENT,
1247 .input = {{
1248 .type = CX88_VMUX_TELEVISION,
1249 .vmux = 0,
1250 .gpio0 = 0x84bf,
1251 },{
1252 .type = CX88_VMUX_COMPOSITE1,
1253 .vmux = 1,
1254 .gpio0 = 0x84bf,
1255 },{
1256 .type = CX88_VMUX_SVIDEO,
1257 .vmux = 2,
1258 .gpio0 = 0x84bf,
1259 }},
1260 .mpeg = CX88_MPEG_DVB,
1261 },
1262 [CX88_BOARD_NORWOOD_MICRO] = {
1263 .name = "Norwood Micro TV Tuner",
1264 .tuner_type = TUNER_TNF_5335MF,
1265 .radio_type = UNSET,
1266 .tuner_addr = ADDR_UNSET,
1267 .radio_addr = ADDR_UNSET,
1268 .input = {{
1269 .type = CX88_VMUX_TELEVISION,
1270 .vmux = 0,
1271 .gpio0 = 0x0709,
1272 },{
1273 .type = CX88_VMUX_COMPOSITE1,
1274 .vmux = 1,
1275 .gpio0 = 0x070b,
1276 },{
1277 .type = CX88_VMUX_SVIDEO,
1278 .vmux = 2,
1279 .gpio0 = 0x070b,
1280 }},
1281 },
1282 [CX88_BOARD_TE_DTV_250_OEM_SWANN] = {
1283 .name = "Shenzhen Tungsten Ages Tech TE-DTV-250 / Swann OEM",
1284 .tuner_type = TUNER_LG_PAL_NEW_TAPC,
1285 .radio_type = UNSET,
1286 .tuner_addr = ADDR_UNSET,
1287 .radio_addr = ADDR_UNSET,
1288 .input = {{
1289 .type = CX88_VMUX_TELEVISION,
1290 .vmux = 0,
1291 .gpio0 = 0x003fffff,
1292 .gpio1 = 0x00e00000,
1293 .gpio2 = 0x003fffff,
1294 .gpio3 = 0x02000000,
1295 },{
1296 .type = CX88_VMUX_COMPOSITE1,
1297 .vmux = 1,
1298 .gpio0 = 0x003fffff,
1299 .gpio1 = 0x00e00000,
1300 .gpio2 = 0x003fffff,
1301 .gpio3 = 0x02000000,
1302 },{
1303 .type = CX88_VMUX_SVIDEO,
1304 .vmux = 2,
1305 .gpio0 = 0x003fffff,
1306 .gpio1 = 0x00e00000,
1307 .gpio2 = 0x003fffff,
1308 .gpio3 = 0x02000000,
1309 }},
1310 },
1311 [CX88_BOARD_HAUPPAUGE_HVR1300] = {
1312 .name = "Hauppauge WinTV-HVR1300 DVB-T/Hybrid MPEG Encoder",
1313 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1314 .radio_type = UNSET,
1315 .tuner_addr = ADDR_UNSET,
1316 .radio_addr = ADDR_UNSET,
1317 .tda9887_conf = TDA9887_PRESENT,
1318 .audio_chip = AUDIO_CHIP_WM8775,
1319 .input = {{
1320 .type = CX88_VMUX_TELEVISION,
1321 .vmux = 0,
1322 .gpio0 = 0xe780,
1323 .extadc = 1,
1324 },{
1325 .type = CX88_VMUX_COMPOSITE1,
1326 .vmux = 1,
1327 .gpio0 = 0xe780,
1328 .extadc = 1,
1329 },{
1330 .type = CX88_VMUX_SVIDEO,
1331 .vmux = 2,
1332 .gpio0 = 0xe780,
1333 .extadc = 1,
1334 }},
1335 /* fixme: Add radio support */
1336 .mpeg = CX88_MPEG_DVB | CX88_MPEG_BLACKBIRD,
1337 },
1338 };
1339 const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards);
1340
1341 /* ------------------------------------------------------------------ */
1342 /* PCI subsystem IDs */
1343
1344 struct cx88_subid cx88_subids[] = {
1345 {
1346 .subvendor = 0x0070,
1347 .subdevice = 0x3400,
1348 .card = CX88_BOARD_HAUPPAUGE,
1349 },{
1350 .subvendor = 0x0070,
1351 .subdevice = 0x3401,
1352 .card = CX88_BOARD_HAUPPAUGE,
1353 },{
1354 .subvendor = 0x14c7,
1355 .subdevice = 0x0106,
1356 .card = CX88_BOARD_GDI,
1357 },{
1358 .subvendor = 0x14c7,
1359 .subdevice = 0x0107, /* with mpeg encoder */
1360 .card = CX88_BOARD_GDI,
1361 },{
1362 .subvendor = PCI_VENDOR_ID_ATI,
1363 .subdevice = 0x00f8,
1364 .card = CX88_BOARD_ATI_WONDER_PRO,
1365 },{
1366 .subvendor = 0x107d,
1367 .subdevice = 0x6611,
1368 .card = CX88_BOARD_WINFAST2000XP_EXPERT,
1369 },{
1370 .subvendor = 0x107d,
1371 .subdevice = 0x6613, /* NTSC */
1372 .card = CX88_BOARD_WINFAST2000XP_EXPERT,
1373 },{
1374 .subvendor = 0x107d,
1375 .subdevice = 0x6620,
1376 .card = CX88_BOARD_WINFAST_DV2000,
1377 },{
1378 .subvendor = 0x107d,
1379 .subdevice = 0x663b,
1380 .card = CX88_BOARD_LEADTEK_PVR2000,
1381 },{
1382 .subvendor = 0x107d,
1383 .subdevice = 0x663c,
1384 .card = CX88_BOARD_LEADTEK_PVR2000,
1385 },{
1386 .subvendor = 0x1461,
1387 .subdevice = 0x000b,
1388 .card = CX88_BOARD_AVERTV_STUDIO_303,
1389 },{
1390 .subvendor = 0x1462,
1391 .subdevice = 0x8606,
1392 .card = CX88_BOARD_MSI_TVANYWHERE_MASTER,
1393 },{
1394 .subvendor = 0x10fc,
1395 .subdevice = 0xd003,
1396 .card = CX88_BOARD_IODATA_GVVCP3PCI,
1397 },{
1398 .subvendor = 0x1043,
1399 .subdevice = 0x4823, /* with mpeg encoder */
1400 .card = CX88_BOARD_ASUS_PVR_416,
1401 },{
1402 .subvendor = 0x17de,
1403 .subdevice = 0x08a6,
1404 .card = CX88_BOARD_KWORLD_DVB_T,
1405 },{
1406 .subvendor = 0x18ac,
1407 .subdevice = 0xd810,
1408 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
1409 },{
1410 .subvendor = 0x18ac,
1411 .subdevice = 0xd820,
1412 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T,
1413 },{
1414 .subvendor = 0x18ac,
1415 .subdevice = 0xdb00,
1416 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1,
1417 },{
1418 .subvendor = 0x0070,
1419 .subdevice = 0x9002,
1420 .card = CX88_BOARD_HAUPPAUGE_DVB_T1,
1421 },{
1422 .subvendor = 0x14f1,
1423 .subdevice = 0x0187,
1424 .card = CX88_BOARD_CONEXANT_DVB_T1,
1425 },{
1426 .subvendor = 0x1540,
1427 .subdevice = 0x2580,
1428 .card = CX88_BOARD_PROVIDEO_PV259,
1429 },{
1430 .subvendor = 0x18ac,
1431 .subdevice = 0xdb10,
1432 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
1433 },{
1434 .subvendor = 0x1554,
1435 .subdevice = 0x4811,
1436 .card = CX88_BOARD_PIXELVIEW,
1437 },{
1438 .subvendor = 0x7063,
1439 .subdevice = 0x3000, /* HD-3000 card */
1440 .card = CX88_BOARD_PCHDTV_HD3000,
1441 },{
1442 .subvendor = 0x17de,
1443 .subdevice = 0xa8a6,
1444 .card = CX88_BOARD_DNTV_LIVE_DVB_T,
1445 },{
1446 .subvendor = 0x0070,
1447 .subdevice = 0x2801,
1448 .card = CX88_BOARD_HAUPPAUGE_ROSLYN,
1449 },{
1450 .subvendor = 0x14f1,
1451 .subdevice = 0x0342,
1452 .card = CX88_BOARD_DIGITALLOGIC_MEC,
1453 },{
1454 .subvendor = 0x10fc,
1455 .subdevice = 0xd035,
1456 .card = CX88_BOARD_IODATA_GVBCTV7E,
1457 },{
1458 .subvendor = 0x1421,
1459 .subdevice = 0x0334,
1460 .card = CX88_BOARD_ADSTECH_DVB_T_PCI,
1461 },{
1462 .subvendor = 0x153b,
1463 .subdevice = 0x1166,
1464 .card = CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1,
1465 },{
1466 .subvendor = 0x18ac,
1467 .subdevice = 0xd500,
1468 .card = CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD,
1469 },{
1470 .subvendor = 0x1461,
1471 .subdevice = 0x8011,
1472 .card = CX88_BOARD_AVERMEDIA_ULTRATV_MC_550,
1473 },{
1474 .subvendor = PCI_VENDOR_ID_ATI,
1475 .subdevice = 0xa101,
1476 .card = CX88_BOARD_ATI_HDTVWONDER,
1477 },{
1478 .subvendor = 0x107d,
1479 .subdevice = 0x665f,
1480 .card = CX88_BOARD_WINFAST_DTV1000,
1481 },{
1482 .subvendor = 0x1461,
1483 .subdevice = 0x000a,
1484 .card = CX88_BOARD_AVERTV_303,
1485 },{
1486 .subvendor = 0x0070,
1487 .subdevice = 0x9200,
1488 .card = CX88_BOARD_HAUPPAUGE_NOVASE2_S1,
1489 },{
1490 .subvendor = 0x0070,
1491 .subdevice = 0x9201,
1492 .card = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
1493 },{
1494 .subvendor = 0x0070,
1495 .subdevice = 0x9202,
1496 .card = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
1497 },{
1498 .subvendor = 0x17de,
1499 .subdevice = 0x08b2,
1500 .card = CX88_BOARD_KWORLD_DVBS_100,
1501 },{
1502 .subvendor = 0x0070,
1503 .subdevice = 0x9400,
1504 .card = CX88_BOARD_HAUPPAUGE_HVR1100,
1505 },{
1506 .subvendor = 0x0070,
1507 .subdevice = 0x9402,
1508 .card = CX88_BOARD_HAUPPAUGE_HVR1100,
1509 },{
1510 .subvendor = 0x0070,
1511 .subdevice = 0x9800,
1512 .card = CX88_BOARD_HAUPPAUGE_HVR1100LP,
1513 },{
1514 .subvendor = 0x0070,
1515 .subdevice = 0x9802,
1516 .card = CX88_BOARD_HAUPPAUGE_HVR1100LP,
1517 },{
1518 .subvendor = 0x0070,
1519 .subdevice = 0x9001,
1520 .card = CX88_BOARD_HAUPPAUGE_DVB_T1,
1521 },{
1522 .subvendor = 0x1822,
1523 .subdevice = 0x0025,
1524 .card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
1525 },{
1526 .subvendor = 0x17de,
1527 .subdevice = 0x08a1,
1528 .card = CX88_BOARD_KWORLD_DVB_T_CX22702,
1529 },{
1530 .subvendor = 0x18ac,
1531 .subdevice = 0xdb50,
1532 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL,
1533 },{
1534 .subvendor = 0x18ac,
1535 .subdevice = 0xdb54,
1536 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL,
1537 /* Re-branded DViCO: DigitalNow DVB-T Dual */
1538 },{
1539 .subvendor = 0x18ac,
1540 .subdevice = 0xdb11,
1541 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
1542 /* Re-branded DViCO: UltraView DVB-T Plus */
1543 },{
1544 .subvendor = 0x17de,
1545 .subdevice = 0x0840,
1546 .card = CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT,
1547 },{
1548 .subvendor = 0x1421,
1549 .subdevice = 0x0305,
1550 .card = CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT,
1551 },{
1552 .subvendor = 0x18ac,
1553 .subdevice = 0xdb40,
1554 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID,
1555 },{
1556 .subvendor = 0x18ac,
1557 .subdevice = 0xdb44,
1558 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID,
1559 },{
1560 .subvendor = 0x7063,
1561 .subdevice = 0x5500,
1562 .card = CX88_BOARD_PCHDTV_HD5500,
1563 },{
1564 .subvendor = 0x17de,
1565 .subdevice = 0x0841,
1566 .card = CX88_BOARD_KWORLD_MCE200_DELUXE,
1567 },{
1568 .subvendor = 0x1822,
1569 .subdevice = 0x0019,
1570 .card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
1571 },{
1572 .subvendor = 0x1554,
1573 .subdevice = 0x4813,
1574 .card = CX88_BOARD_PIXELVIEW_PLAYTV_P7000,
1575 },{
1576 .subvendor = 0x14f1,
1577 .subdevice = 0x0842,
1578 .card = CX88_BOARD_NPGTECH_REALTV_TOP10FM,
1579 },{
1580 .subvendor = 0x107d,
1581 .subdevice = 0x665e,
1582 .card = CX88_BOARD_WINFAST_DTV2000H,
1583 },{
1584 .subvendor = 0x18ac,
1585 .subdevice = 0xd800, /* FusionHDTV 3 Gold (original revision) */
1586 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
1587 },{
1588 .subvendor = 0x14f1,
1589 .subdevice = 0x0084,
1590 .card = CX88_BOARD_GENIATECH_DVBS,
1591 },{
1592 .subvendor = 0x0070,
1593 .subdevice = 0x1404,
1594 .card = CX88_BOARD_HAUPPAUGE_HVR3000,
1595 },{
1596 .subvendor = 0x1461,
1597 .subdevice = 0xc111, /* AverMedia M150-D */
1598 /* This board is known to work with the ASUS PVR416 config */
1599 .card = CX88_BOARD_ASUS_PVR_416,
1600 },{
1601 .subvendor = 0xc180,
1602 .subdevice = 0xc980,
1603 .card = CX88_BOARD_TE_DTV_250_OEM_SWANN,
1604 },{
1605 .subvendor = 0x0070,
1606 .subdevice = 0x9600,
1607 .card = CX88_BOARD_HAUPPAUGE_HVR1300,
1608 },{
1609 .subvendor = 0x0070,
1610 .subdevice = 0x9601,
1611 .card = CX88_BOARD_HAUPPAUGE_HVR1300,
1612 },{
1613 .subvendor = 0x0070,
1614 .subdevice = 0x9602,
1615 .card = CX88_BOARD_HAUPPAUGE_HVR1300,
1616 },{
1617 .subvendor = 0x107d,
1618 .subdevice = 0x6632,
1619 .card = CX88_BOARD_LEADTEK_PVR2000,
1620 },{
1621 .subvendor = 0x12ab,
1622 .subdevice = 0x2300, /* Club3D Zap TV2100 */
1623 .card = CX88_BOARD_KWORLD_DVB_T_CX22702,
1624 },{
1625 .subvendor = 0x0070,
1626 .subdevice = 0x9000,
1627 .card = CX88_BOARD_HAUPPAUGE_DVB_T1,
1628 },{
1629 .subvendor = 0x0070,
1630 .subdevice = 0x1400,
1631 .card = CX88_BOARD_HAUPPAUGE_HVR3000,
1632 },{
1633 .subvendor = 0x0070,
1634 .subdevice = 0x1401,
1635 .card = CX88_BOARD_HAUPPAUGE_HVR3000,
1636 },{
1637 .subvendor = 0x0070,
1638 .subdevice = 0x1402,
1639 .card = CX88_BOARD_HAUPPAUGE_HVR3000,
1640 },{
1641 .subvendor = 0x1421,
1642 .subdevice = 0x0341, /* ADS Tech InstantTV DVB-S */
1643 .card = CX88_BOARD_KWORLD_DVBS_100,
1644 },
1645 };
1646 const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids);
1647
1648 /* ----------------------------------------------------------------------- */
1649 /* some leadtek specific stuff */
1650
1651 static void leadtek_eeprom(struct cx88_core *core, u8 *eeprom_data)
1652 {
1653 /* This is just for the "Winfast 2000XP Expert" board ATM; I don't have data on
1654 * any others.
1655 *
1656 * Byte 0 is 1 on the NTSC board.
1657 */
1658
1659 if (eeprom_data[4] != 0x7d ||
1660 eeprom_data[5] != 0x10 ||
1661 eeprom_data[7] != 0x66) {
1662 printk(KERN_WARNING "%s: Leadtek eeprom invalid.\n",
1663 core->name);
1664 return;
1665 }
1666
1667 core->has_radio = 1;
1668 core->tuner_type = (eeprom_data[6] == 0x13) ? 43 : 38;
1669
1670 printk(KERN_INFO "%s: Leadtek Winfast 2000XP Expert config: "
1671 "tuner=%d, eeprom[0]=0x%02x\n",
1672 core->name, core->tuner_type, eeprom_data[0]);
1673 }
1674
1675 static void hauppauge_eeprom(struct cx88_core *core, u8 *eeprom_data)
1676 {
1677 struct tveeprom tv;
1678
1679 tveeprom_hauppauge_analog(&core->i2c_client, &tv, eeprom_data);
1680 core->tuner_type = tv.tuner_type;
1681 core->tuner_formats = tv.tuner_formats;
1682 core->has_radio = tv.has_radio;
1683
1684 /* Make sure we support the board model */
1685 switch (tv.model)
1686 {
1687 case 14009: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in) */
1688 case 14019: /* WinTV-HVR3000 (Retail, IR Blaster, b/panel video, 3.5mm audio in) */
1689 case 14029: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - 880 bridge) */
1690 case 14109: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - low profile) */
1691 case 14129: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - 880 bridge - LP) */
1692 case 14559: /* WinTV-HVR3000 (OEM, no IR, b/panel video, 3.5mm audio in) */
1693 case 14569: /* WinTV-HVR3000 (OEM, no IR, no back panel video) */
1694 case 14659: /* WinTV-HVR3000 (OEM, no IR, b/panel video, RCA audio in - Low profile) */
1695 case 14669: /* WinTV-HVR3000 (OEM, no IR, no b/panel video - Low profile) */
1696 case 28552: /* WinTV-PVR 'Roslyn' (No IR) */
1697 case 34519: /* WinTV-PCI-FM */
1698 case 90002: /* Nova-T-PCI (9002) */
1699 case 92001: /* Nova-S-Plus (Video and IR) */
1700 case 92002: /* Nova-S-Plus (Video and IR) */
1701 case 90003: /* Nova-T-PCI (9002 No RF out) */
1702 case 90500: /* Nova-T-PCI (oem) */
1703 case 90501: /* Nova-T-PCI (oem/IR) */
1704 case 92000: /* Nova-SE2 (OEM, No Video or IR) */
1705 case 94009: /* WinTV-HVR1100 (Video and IR Retail) */
1706 case 94501: /* WinTV-HVR1100 (Video and IR OEM) */
1707 case 96009: /* WinTV-HVR1300 (PAL Video, MPEG Video and IR RX) */
1708 case 96019: /* WinTV-HVR1300 (PAL Video, MPEG Video and IR RX/TX) */
1709 case 96559: /* WinTV-HVR1300 (PAL Video, MPEG Video no IR) */
1710 case 96569: /* WinTV-HVR1300 () */
1711 case 96659: /* WinTV-HVR1300 () */
1712 case 98559: /* WinTV-HVR1100LP (Video no IR, Retail - Low Profile) */
1713 /* known */
1714 break;
1715 default:
1716 printk("%s: warning: unknown hauppauge model #%d\n",
1717 core->name, tv.model);
1718 break;
1719 }
1720
1721 printk(KERN_INFO "%s: hauppauge eeprom: model=%d\n",
1722 core->name, tv.model);
1723 }
1724
1725 /* ----------------------------------------------------------------------- */
1726 /* some GDI (was: Modular Technology) specific stuff */
1727
1728 static struct {
1729 int id;
1730 int fm;
1731 char *name;
1732 } gdi_tuner[] = {
1733 [ 0x01 ] = { .id = TUNER_ABSENT,
1734 .name = "NTSC_M" },
1735 [ 0x02 ] = { .id = TUNER_ABSENT,
1736 .name = "PAL_B" },
1737 [ 0x03 ] = { .id = TUNER_ABSENT,
1738 .name = "PAL_I" },
1739 [ 0x04 ] = { .id = TUNER_ABSENT,
1740 .name = "PAL_D" },
1741 [ 0x05 ] = { .id = TUNER_ABSENT,
1742 .name = "SECAM" },
1743
1744 [ 0x10 ] = { .id = TUNER_ABSENT,
1745 .fm = 1,
1746 .name = "TEMIC_4049" },
1747 [ 0x11 ] = { .id = TUNER_TEMIC_4136FY5,
1748 .name = "TEMIC_4136" },
1749 [ 0x12 ] = { .id = TUNER_ABSENT,
1750 .name = "TEMIC_4146" },
1751
1752 [ 0x20 ] = { .id = TUNER_PHILIPS_FQ1216ME,
1753 .fm = 1,
1754 .name = "PHILIPS_FQ1216_MK3" },
1755 [ 0x21 ] = { .id = TUNER_ABSENT, .fm = 1,
1756 .name = "PHILIPS_FQ1236_MK3" },
1757 [ 0x22 ] = { .id = TUNER_ABSENT,
1758 .name = "PHILIPS_FI1236_MK3" },
1759 [ 0x23 ] = { .id = TUNER_ABSENT,
1760 .name = "PHILIPS_FI1216_MK3" },
1761 };
1762
1763 static void gdi_eeprom(struct cx88_core *core, u8 *eeprom_data)
1764 {
1765 char *name = (eeprom_data[0x0d] < ARRAY_SIZE(gdi_tuner))
1766 ? gdi_tuner[eeprom_data[0x0d]].name : NULL;
1767
1768 printk(KERN_INFO "%s: GDI: tuner=%s\n", core->name,
1769 name ? name : "unknown");
1770 if (NULL == name)
1771 return;
1772 core->tuner_type = gdi_tuner[eeprom_data[0x0d]].id;
1773 core->has_radio = gdi_tuner[eeprom_data[0x0d]].fm;
1774 }
1775
1776 /* ----------------------------------------------------------------------- */
1777 /* some DViCO specific stuff */
1778
1779 static void dvico_fusionhdtv_hybrid_init(struct cx88_core *core)
1780 {
1781 struct i2c_msg msg = { .addr = 0x45, .flags = 0 };
1782 int i, err;
1783 static u8 init_bufs[13][5] = {
1784 { 0x10, 0x00, 0x20, 0x01, 0x03 },
1785 { 0x10, 0x10, 0x01, 0x00, 0x21 },
1786 { 0x10, 0x10, 0x10, 0x00, 0xCA },
1787 { 0x10, 0x10, 0x12, 0x00, 0x08 },
1788 { 0x10, 0x10, 0x13, 0x00, 0x0A },
1789 { 0x10, 0x10, 0x16, 0x01, 0xC0 },
1790 { 0x10, 0x10, 0x22, 0x01, 0x3D },
1791 { 0x10, 0x10, 0x73, 0x01, 0x2E },
1792 { 0x10, 0x10, 0x72, 0x00, 0xC5 },
1793 { 0x10, 0x10, 0x71, 0x01, 0x97 },
1794 { 0x10, 0x10, 0x70, 0x00, 0x0F },
1795 { 0x10, 0x10, 0xB0, 0x00, 0x01 },
1796 { 0x03, 0x0C },
1797 };
1798
1799 for (i = 0; i < ARRAY_SIZE(init_bufs); i++) {
1800 msg.buf = init_bufs[i];
1801 msg.len = (i != 12 ? 5 : 2);
1802 err = i2c_transfer(&core->i2c_adap, &msg, 1);
1803 if (err != 1) {
1804 printk("dvico_fusionhdtv_hybrid_init buf %d failed (err = %d)!\n", i, err);
1805 return;
1806 }
1807 }
1808 }
1809
1810 /* ----------------------------------------------------------------------- */
1811
1812 void cx88_card_list(struct cx88_core *core, struct pci_dev *pci)
1813 {
1814 int i;
1815
1816 if (0 == pci->subsystem_vendor &&
1817 0 == pci->subsystem_device) {
1818 printk("%s: Your board has no valid PCI Subsystem ID and thus can't\n"
1819 "%s: be autodetected. Please pass card=<n> insmod option to\n"
1820 "%s: workaround that. Redirect complaints to the vendor of\n"
1821 "%s: the TV card. Best regards,\n"
1822 "%s: -- tux\n",
1823 core->name,core->name,core->name,core->name,core->name);
1824 } else {
1825 printk("%s: Your board isn't known (yet) to the driver. You can\n"
1826 "%s: try to pick one of the existing card configs via\n"
1827 "%s: card=<n> insmod option. Updating to the latest\n"
1828 "%s: version might help as well.\n",
1829 core->name,core->name,core->name,core->name);
1830 }
1831 printk("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
1832 core->name);
1833 for (i = 0; i < cx88_bcount; i++)
1834 printk("%s: card=%d -> %s\n",
1835 core->name, i, cx88_boards[i].name);
1836 }
1837
1838 void cx88_card_setup_pre_i2c(struct cx88_core *core)
1839 {
1840 switch (core->board) {
1841 case CX88_BOARD_HAUPPAUGE_HVR1300:
1842 /* Bring the 702 demod up before i2c scanning/attach or devices are hidden */
1843 /* We leave here with the 702 on the bus */
1844 cx_write(MO_GP0_IO, 0x0000e780);
1845 udelay(1000);
1846 cx_clear(MO_GP0_IO, 0x00000080);
1847 udelay(50);
1848 cx_set(MO_GP0_IO, 0x00000080); /* 702 out of reset */
1849 udelay(1000);
1850 break;
1851 }
1852 }
1853
1854 void cx88_card_setup(struct cx88_core *core)
1855 {
1856 static u8 eeprom[256];
1857
1858 if (0 == core->i2c_rc) {
1859 core->i2c_client.addr = 0xa0 >> 1;
1860 tveeprom_read(&core->i2c_client,eeprom,sizeof(eeprom));
1861 }
1862
1863 switch (core->board) {
1864 case CX88_BOARD_HAUPPAUGE:
1865 case CX88_BOARD_HAUPPAUGE_ROSLYN:
1866 if (0 == core->i2c_rc)
1867 hauppauge_eeprom(core,eeprom+8);
1868 break;
1869 case CX88_BOARD_GDI:
1870 if (0 == core->i2c_rc)
1871 gdi_eeprom(core,eeprom);
1872 break;
1873 case CX88_BOARD_WINFAST2000XP_EXPERT:
1874 if (0 == core->i2c_rc)
1875 leadtek_eeprom(core,eeprom);
1876 break;
1877 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
1878 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
1879 case CX88_BOARD_HAUPPAUGE_DVB_T1:
1880 case CX88_BOARD_HAUPPAUGE_HVR1100:
1881 case CX88_BOARD_HAUPPAUGE_HVR1100LP:
1882 case CX88_BOARD_HAUPPAUGE_HVR3000:
1883 case CX88_BOARD_HAUPPAUGE_HVR1300:
1884 if (0 == core->i2c_rc)
1885 hauppauge_eeprom(core,eeprom);
1886 break;
1887 case CX88_BOARD_KWORLD_DVBS_100:
1888 cx_write(MO_GP0_IO, 0x000007f8);
1889 cx_write(MO_GP1_IO, 0x00000001);
1890 break;
1891 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL:
1892 /* GPIO0:6 is hooked to FX2 reset pin */
1893 cx_set(MO_GP0_IO, 0x00004040);
1894 cx_clear(MO_GP0_IO, 0x00000040);
1895 msleep(1000);
1896 cx_set(MO_GP0_IO, 0x00004040);
1897 /* FALLTHROUGH */
1898 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
1899 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
1900 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID:
1901 /* GPIO0:0 is hooked to mt352 reset pin */
1902 cx_set(MO_GP0_IO, 0x00000101);
1903 cx_clear(MO_GP0_IO, 0x00000001);
1904 msleep(1);
1905 cx_set(MO_GP0_IO, 0x00000101);
1906 if (0 == core->i2c_rc &&
1907 core->board == CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID)
1908 dvico_fusionhdtv_hybrid_init(core);
1909 break;
1910 case CX88_BOARD_KWORLD_DVB_T:
1911 case CX88_BOARD_DNTV_LIVE_DVB_T:
1912 cx_set(MO_GP0_IO, 0x00000707);
1913 cx_set(MO_GP2_IO, 0x00000101);
1914 cx_clear(MO_GP2_IO, 0x00000001);
1915 msleep(1);
1916 cx_clear(MO_GP0_IO, 0x00000007);
1917 cx_set(MO_GP2_IO, 0x00000101);
1918 break;
1919 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
1920 cx_write(MO_GP0_IO, 0x00080808);
1921 break;
1922 case CX88_BOARD_ATI_HDTVWONDER:
1923 if (0 == core->i2c_rc) {
1924 /* enable tuner */
1925 int i;
1926 static const u8 buffer [][2] = {
1927 {0x10,0x12},
1928 {0x13,0x04},
1929 {0x16,0x00},
1930 {0x14,0x04},
1931 {0x17,0x00}
1932 };
1933 core->i2c_client.addr = 0x0a;
1934
1935 for (i = 0; i < ARRAY_SIZE(buffer); i++)
1936 if (2 != i2c_master_send(&core->i2c_client,
1937 buffer[i],2))
1938 printk(KERN_WARNING
1939 "%s: Unable to enable "
1940 "tuner(%i).\n",
1941 core->name, i);
1942 }
1943 break;
1944 }
1945 if (cx88_boards[core->board].radio.type == CX88_RADIO)
1946 core->has_radio = 1;
1947 }
1948
1949 /* ------------------------------------------------------------------ */
1950
1951 EXPORT_SYMBOL(cx88_boards);
1952
1953 /*
1954 * Local variables:
1955 * c-basic-offset: 8
1956 * End:
1957 * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off
1958 */
This page took 0.074789 seconds and 5 git commands to generate.