]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - drivers/media/video/cx88/cx88-cards.c
Merge upstream (approx. 2.6.12-git8) into 'janitor' branch of netdev-2.6.
[mirror_ubuntu-zesty-kernel.git] / drivers / media / video / cx88 / cx88-cards.c
1 /*
2 * $Id: cx88-cards.c,v 1.76 2005/06/08 01:28:09 mchehab Exp $
3 *
4 * device driver for Conexant 2388x based TV cards
5 * card-specific stuff.
6 *
7 * (c) 2003 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include <linux/init.h>
25 #include <linux/module.h>
26 #include <linux/pci.h>
27 #include <linux/delay.h>
28
29 #include "cx88.h"
30
31 /* ------------------------------------------------------------------ */
32 /* board config info */
33
34 struct cx88_board cx88_boards[] = {
35 [CX88_BOARD_UNKNOWN] = {
36 .name = "UNKNOWN/GENERIC",
37 .tuner_type = UNSET,
38 .radio_type = UNSET,
39 .tuner_addr = ADDR_UNSET,
40 .radio_addr = ADDR_UNSET,
41 .input = {{
42 .type = CX88_VMUX_COMPOSITE1,
43 .vmux = 0,
44 },{
45 .type = CX88_VMUX_COMPOSITE2,
46 .vmux = 1,
47 },{
48 .type = CX88_VMUX_COMPOSITE3,
49 .vmux = 2,
50 },{
51 .type = CX88_VMUX_COMPOSITE4,
52 .vmux = 3,
53 }},
54 },
55 [CX88_BOARD_HAUPPAUGE] = {
56 .name = "Hauppauge WinTV 34xxx models",
57 .tuner_type = UNSET,
58 .radio_type = UNSET,
59 .tuner_addr = ADDR_UNSET,
60 .radio_addr = ADDR_UNSET,
61 .tda9887_conf = TDA9887_PRESENT,
62 .input = {{
63 .type = CX88_VMUX_TELEVISION,
64 .vmux = 0,
65 .gpio0 = 0xff00, // internal decoder
66 },{
67 .type = CX88_VMUX_DEBUG,
68 .vmux = 0,
69 .gpio0 = 0xff01, // mono from tuner chip
70 },{
71 .type = CX88_VMUX_COMPOSITE1,
72 .vmux = 1,
73 .gpio0 = 0xff02,
74 },{
75 .type = CX88_VMUX_SVIDEO,
76 .vmux = 2,
77 .gpio0 = 0xff02,
78 }},
79 .radio = {
80 .type = CX88_RADIO,
81 .gpio0 = 0xff01,
82 },
83 },
84 [CX88_BOARD_GDI] = {
85 .name = "GDI Black Gold",
86 .tuner_type = UNSET,
87 .radio_type = UNSET,
88 .tuner_addr = ADDR_UNSET,
89 .radio_addr = ADDR_UNSET,
90 .input = {{
91 .type = CX88_VMUX_TELEVISION,
92 .vmux = 0,
93 }},
94 },
95 [CX88_BOARD_PIXELVIEW] = {
96 .name = "PixelView",
97 .tuner_type = TUNER_PHILIPS_PAL,
98 .radio_type = UNSET,
99 .tuner_addr = ADDR_UNSET,
100 .radio_addr = ADDR_UNSET,
101 .input = {{
102 .type = CX88_VMUX_TELEVISION,
103 .vmux = 0,
104 .gpio0 = 0xff00, // internal decoder
105 },{
106 .type = CX88_VMUX_COMPOSITE1,
107 .vmux = 1,
108 },{
109 .type = CX88_VMUX_SVIDEO,
110 .vmux = 2,
111 }},
112 .radio = {
113 .type = CX88_RADIO,
114 .gpio0 = 0xff10,
115 },
116 },
117 [CX88_BOARD_ATI_WONDER_PRO] = {
118 .name = "ATI TV Wonder Pro",
119 .tuner_type = TUNER_PHILIPS_4IN1,
120 .radio_type = UNSET,
121 .tuner_addr = ADDR_UNSET,
122 .radio_addr = ADDR_UNSET,
123 .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER,
124 .input = {{
125 .type = CX88_VMUX_TELEVISION,
126 .vmux = 0,
127 .gpio0 = 0x03ff,
128 },{
129 .type = CX88_VMUX_COMPOSITE1,
130 .vmux = 1,
131 .gpio0 = 0x03fe,
132 },{
133 .type = CX88_VMUX_SVIDEO,
134 .vmux = 2,
135 .gpio0 = 0x03fe,
136 }},
137 },
138 [CX88_BOARD_WINFAST2000XP_EXPERT] = {
139 .name = "Leadtek Winfast 2000XP Expert",
140 .tuner_type = TUNER_PHILIPS_4IN1,
141 .radio_type = UNSET,
142 .tuner_addr = ADDR_UNSET,
143 .radio_addr = ADDR_UNSET,
144 .tda9887_conf = TDA9887_PRESENT,
145 .input = {{
146 .type = CX88_VMUX_TELEVISION,
147 .vmux = 0,
148 .gpio0 = 0x00F5e700,
149 .gpio1 = 0x00003004,
150 .gpio2 = 0x00F5e700,
151 .gpio3 = 0x02000000,
152 },{
153 .type = CX88_VMUX_COMPOSITE1,
154 .vmux = 1,
155 .gpio0 = 0x00F5c700,
156 .gpio1 = 0x00003004,
157 .gpio2 = 0x00F5c700,
158 .gpio3 = 0x02000000,
159 },{
160 .type = CX88_VMUX_SVIDEO,
161 .vmux = 2,
162 .gpio0 = 0x00F5c700,
163 .gpio1 = 0x00003004,
164 .gpio2 = 0x00F5c700,
165 .gpio3 = 0x02000000,
166 }},
167 .radio = {
168 .type = CX88_RADIO,
169 .gpio0 = 0x00F5d700,
170 .gpio1 = 0x00003004,
171 .gpio2 = 0x00F5d700,
172 .gpio3 = 0x02000000,
173 },
174 },
175 [CX88_BOARD_AVERTV_303] = {
176 .name = "AverTV Studio 303 (M126)",
177 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
178 .radio_type = UNSET,
179 .tuner_addr = ADDR_UNSET,
180 .radio_addr = ADDR_UNSET,
181 .tda9887_conf = TDA9887_PRESENT,
182 .input = {{
183 .type = CX88_VMUX_TELEVISION,
184 .vmux = 0,
185 .gpio1 = 0x309f,
186 },{
187 .type = CX88_VMUX_COMPOSITE1,
188 .vmux = 1,
189 .gpio1 = 0x305f,
190 },{
191 .type = CX88_VMUX_SVIDEO,
192 .vmux = 2,
193 .gpio1 = 0x305f,
194 }},
195 .radio = {
196 .type = CX88_RADIO,
197 },
198 },
199 [CX88_BOARD_MSI_TVANYWHERE_MASTER] = {
200 // added gpio values thanks to Michal
201 // values for PAL from DScaler
202 .name = "MSI TV-@nywhere Master",
203 .tuner_type = TUNER_MT2032,
204 .radio_type = UNSET,
205 .tuner_addr = ADDR_UNSET,
206 .radio_addr = ADDR_UNSET,
207 .tda9887_conf = TDA9887_PRESENT,
208 .input = {{
209 .type = CX88_VMUX_TELEVISION,
210 .vmux = 0,
211 .gpio0 = 0x000040bf,
212 .gpio1 = 0x000080c0,
213 .gpio2 = 0x0000ff40,
214 },{
215 .type = CX88_VMUX_COMPOSITE1,
216 .vmux = 1,
217 .gpio0 = 0x000040bf,
218 .gpio1 = 0x000080c0,
219 .gpio2 = 0x0000ff40,
220 },{
221 .type = CX88_VMUX_SVIDEO,
222 .vmux = 2,
223 .gpio0 = 0x000040bf,
224 .gpio1 = 0x000080c0,
225 .gpio2 = 0x0000ff40,
226 }},
227 .radio = {
228 .type = CX88_RADIO,
229 },
230 },
231 [CX88_BOARD_WINFAST_DV2000] = {
232 .name = "Leadtek Winfast DV2000",
233 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
234 .radio_type = UNSET,
235 .tuner_addr = ADDR_UNSET,
236 .radio_addr = ADDR_UNSET,
237 .tda9887_conf = TDA9887_PRESENT,
238 .input = {{
239 .type = CX88_VMUX_TELEVISION,
240 .vmux = 0,
241 .gpio0 = 0x0035e700,
242 .gpio1 = 0x00003004,
243 .gpio2 = 0x0035e700,
244 .gpio3 = 0x02000000,
245 },{
246
247 .type = CX88_VMUX_COMPOSITE1,
248 .vmux = 1,
249 .gpio0 = 0x0035c700,
250 .gpio1 = 0x00003004,
251 .gpio2 = 0x0035c700,
252 .gpio3 = 0x02000000,
253 },{
254 .type = CX88_VMUX_SVIDEO,
255 .vmux = 2,
256 .gpio0 = 0x0035c700,
257 .gpio1 = 0x0035c700,
258 .gpio2 = 0x02000000,
259 .gpio3 = 0x02000000,
260 }},
261 .radio = {
262 .type = CX88_RADIO,
263 .gpio0 = 0x0035d700,
264 .gpio1 = 0x00007004,
265 .gpio2 = 0x0035d700,
266 .gpio3 = 0x02000000,
267 },
268 },
269 [CX88_BOARD_LEADTEK_PVR2000] = {
270 // gpio values for PAL version from regspy by DScaler
271 .name = "Leadtek PVR 2000",
272 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
273 .radio_type = UNSET,
274 .tuner_addr = ADDR_UNSET,
275 .radio_addr = ADDR_UNSET,
276 .tda9887_conf = TDA9887_PRESENT,
277 .input = {{
278 .type = CX88_VMUX_TELEVISION,
279 .vmux = 0,
280 .gpio0 = 0x0000bde2,
281 },{
282 .type = CX88_VMUX_COMPOSITE1,
283 .vmux = 1,
284 .gpio0 = 0x0000bde6,
285 },{
286 .type = CX88_VMUX_SVIDEO,
287 .vmux = 2,
288 .gpio0 = 0x0000bde6,
289 }},
290 .radio = {
291 .type = CX88_RADIO,
292 .gpio0 = 0x0000bd62,
293 },
294 .blackbird = 1,
295 },
296 [CX88_BOARD_IODATA_GVVCP3PCI] = {
297 .name = "IODATA GV-VCP3/PCI",
298 .tuner_type = TUNER_ABSENT,
299 .radio_type = UNSET,
300 .tuner_addr = ADDR_UNSET,
301 .radio_addr = ADDR_UNSET,
302 .input = {{
303 .type = CX88_VMUX_COMPOSITE1,
304 .vmux = 0,
305 },{
306 .type = CX88_VMUX_COMPOSITE2,
307 .vmux = 1,
308 },{
309 .type = CX88_VMUX_SVIDEO,
310 .vmux = 2,
311 }},
312 },
313 [CX88_BOARD_PROLINK_PLAYTVPVR] = {
314 .name = "Prolink PlayTV PVR",
315 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
316 .radio_type = UNSET,
317 .tuner_addr = ADDR_UNSET,
318 .radio_addr = ADDR_UNSET,
319 .tda9887_conf = TDA9887_PRESENT,
320 .input = {{
321 .type = CX88_VMUX_TELEVISION,
322 .vmux = 0,
323 .gpio0 = 0xff00,
324 },{
325 .type = CX88_VMUX_COMPOSITE1,
326 .vmux = 1,
327 .gpio0 = 0xff03,
328 },{
329 .type = CX88_VMUX_SVIDEO,
330 .vmux = 2,
331 .gpio0 = 0xff03,
332 }},
333 .radio = {
334 .type = CX88_RADIO,
335 .gpio0 = 0xff00,
336 },
337 },
338 [CX88_BOARD_ASUS_PVR_416] = {
339 .name = "ASUS PVR-416",
340 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
341 .radio_type = UNSET,
342 .tuner_addr = ADDR_UNSET,
343 .radio_addr = ADDR_UNSET,
344 .tda9887_conf = TDA9887_PRESENT,
345 .input = {{
346 .type = CX88_VMUX_TELEVISION,
347 .vmux = 0,
348 .gpio0 = 0x0000fde6,
349 },{
350 .type = CX88_VMUX_SVIDEO,
351 .vmux = 2,
352 .gpio0 = 0x0000fde6, // 0x0000fda6 L,R RCA audio in?
353 }},
354 .radio = {
355 .type = CX88_RADIO,
356 .gpio0 = 0x0000fde2,
357 },
358 .blackbird = 1,
359 },
360 [CX88_BOARD_MSI_TVANYWHERE] = {
361 .name = "MSI TV-@nywhere",
362 .tuner_type = TUNER_MT2032,
363 .radio_type = UNSET,
364 .tuner_addr = ADDR_UNSET,
365 .radio_addr = ADDR_UNSET,
366 .tda9887_conf = TDA9887_PRESENT,
367 .input = {{
368 .type = CX88_VMUX_TELEVISION,
369 .vmux = 0,
370 .gpio0 = 0x00000fbf,
371 .gpio2 = 0x0000fc08,
372 },{
373 .type = CX88_VMUX_COMPOSITE1,
374 .vmux = 1,
375 .gpio0 = 0x00000fbf,
376 .gpio2 = 0x0000fc68,
377 },{
378 .type = CX88_VMUX_SVIDEO,
379 .vmux = 2,
380 .gpio0 = 0x00000fbf,
381 .gpio2 = 0x0000fc68,
382 }},
383 },
384 [CX88_BOARD_KWORLD_DVB_T] = {
385 .name = "KWorld/VStream XPert DVB-T",
386 .tuner_type = TUNER_ABSENT,
387 .radio_type = UNSET,
388 .tuner_addr = ADDR_UNSET,
389 .radio_addr = ADDR_UNSET,
390 .input = {{
391 .type = CX88_VMUX_COMPOSITE1,
392 .vmux = 1,
393 .gpio0 = 0x0700,
394 .gpio2 = 0x0101,
395 },{
396 .type = CX88_VMUX_SVIDEO,
397 .vmux = 2,
398 .gpio0 = 0x0700,
399 .gpio2 = 0x0101,
400 }},
401 .dvb = 1,
402 },
403 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1] = {
404 .name = "DVICO FusionHDTV DVB-T1",
405 .tuner_type = TUNER_ABSENT, /* No analog tuner */
406 .radio_type = UNSET,
407 .tuner_addr = ADDR_UNSET,
408 .radio_addr = ADDR_UNSET,
409 .input = {{
410 .type = CX88_VMUX_COMPOSITE1,
411 .vmux = 1,
412 .gpio0 = 0x000027df,
413 },{
414 .type = CX88_VMUX_SVIDEO,
415 .vmux = 2,
416 .gpio0 = 0x000027df,
417 }},
418 .dvb = 1,
419 },
420 [CX88_BOARD_KWORLD_LTV883] = {
421 .name = "KWorld LTV883RF",
422 .tuner_type = TUNER_TNF_8831BGFF,
423 .radio_type = UNSET,
424 .tuner_addr = ADDR_UNSET,
425 .radio_addr = ADDR_UNSET,
426 .input = {{
427 .type = CX88_VMUX_TELEVISION,
428 .vmux = 0,
429 .gpio0 = 0x07f8,
430 },{
431 .type = CX88_VMUX_DEBUG,
432 .vmux = 0,
433 .gpio0 = 0x07f9, // mono from tuner chip
434 },{
435 .type = CX88_VMUX_COMPOSITE1,
436 .vmux = 1,
437 .gpio0 = 0x000007fa,
438 },{
439 .type = CX88_VMUX_SVIDEO,
440 .vmux = 2,
441 .gpio0 = 0x000007fa,
442 }},
443 .radio = {
444 .type = CX88_RADIO,
445 .gpio0 = 0x000007f8,
446 },
447 },
448 [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD] = {
449 .name = "DViCO - FusionHDTV 3 Gold",
450 .tuner_type = TUNER_MICROTUNE_4042FI5,
451 .radio_type = UNSET,
452 .tuner_addr = ADDR_UNSET,
453 .radio_addr = ADDR_UNSET,
454 /*
455 GPIO[0] resets DT3302 DTV receiver
456 0 - reset asserted
457 1 - normal operation
458 GPIO[1] mutes analog audio output connector
459 0 - enable selected source
460 1 - mute
461 GPIO[2] selects source for analog audio output connector
462 0 - analog audio input connector on tab
463 1 - analog DAC output from CX23881 chip
464 GPIO[3] selects RF input connector on tuner module
465 0 - RF connector labeled CABLE
466 1 - RF connector labeled ANT
467 */
468 .input = {{
469 .type = CX88_VMUX_TELEVISION,
470 .vmux = 0,
471 .gpio0 = 0x0f0d,
472 },{
473 .type = CX88_VMUX_CABLE,
474 .vmux = 0,
475 .gpio0 = 0x0f05,
476 },{
477 .type = CX88_VMUX_COMPOSITE1,
478 .vmux = 1,
479 .gpio0 = 0x0f00,
480 },{
481 .type = CX88_VMUX_SVIDEO,
482 .vmux = 2,
483 .gpio0 = 0x0f00,
484 }},
485 },
486 [CX88_BOARD_HAUPPAUGE_DVB_T1] = {
487 .name = "Hauppauge Nova-T DVB-T",
488 .tuner_type = TUNER_ABSENT,
489 .radio_type = UNSET,
490 .tuner_addr = ADDR_UNSET,
491 .radio_addr = ADDR_UNSET,
492 .input = {{
493 .type = CX88_VMUX_DVB,
494 .vmux = 0,
495 }},
496 .dvb = 1,
497 },
498 [CX88_BOARD_CONEXANT_DVB_T1] = {
499 .name = "Conexant DVB-T reference design",
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 .dvb = 1,
509 },
510 [CX88_BOARD_PROVIDEO_PV259] = {
511 .name = "Provideo PV259",
512 .tuner_type = TUNER_PHILIPS_FQ1216ME,
513 .radio_type = UNSET,
514 .tuner_addr = ADDR_UNSET,
515 .radio_addr = ADDR_UNSET,
516 .input = {{
517 .type = CX88_VMUX_TELEVISION,
518 .vmux = 0,
519 }},
520 .blackbird = 1,
521 },
522 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS] = {
523 .name = "DVICO FusionHDTV DVB-T Plus",
524 .tuner_type = TUNER_ABSENT, /* No analog tuner */
525 .radio_type = UNSET,
526 .tuner_addr = ADDR_UNSET,
527 .radio_addr = ADDR_UNSET,
528 .input = {{
529 .type = CX88_VMUX_COMPOSITE1,
530 .vmux = 1,
531 .gpio0 = 0x000027df,
532 },{
533 .type = CX88_VMUX_SVIDEO,
534 .vmux = 2,
535 .gpio0 = 0x000027df,
536 }},
537 .dvb = 1,
538 },
539 [CX88_BOARD_DNTV_LIVE_DVB_T] = {
540 .name = "digitalnow DNTV Live! DVB-T",
541 .tuner_type = TUNER_ABSENT,
542 .radio_type = UNSET,
543 .tuner_addr = ADDR_UNSET,
544 .radio_addr = ADDR_UNSET,
545 .input = {{
546 .type = CX88_VMUX_COMPOSITE1,
547 .vmux = 1,
548 .gpio0 = 0x00000700,
549 .gpio2 = 0x00000101,
550 },{
551 .type = CX88_VMUX_SVIDEO,
552 .vmux = 2,
553 .gpio0 = 0x00000700,
554 .gpio2 = 0x00000101,
555 }},
556 .dvb = 1,
557 },
558 [CX88_BOARD_PCHDTV_HD3000] = {
559 .name = "pcHDTV HD3000 HDTV",
560 .tuner_type = TUNER_THOMSON_DTT7610,
561 .radio_type = UNSET,
562 .tuner_addr = ADDR_UNSET,
563 .radio_addr = ADDR_UNSET,
564 .input = {{
565 .type = CX88_VMUX_TELEVISION,
566 .vmux = 0,
567 .gpio0 = 0x00008484,
568 .gpio1 = 0x00000000,
569 .gpio2 = 0x00000000,
570 .gpio3 = 0x00000000,
571 },{
572 .type = CX88_VMUX_COMPOSITE1,
573 .vmux = 1,
574 .gpio0 = 0x00008400,
575 .gpio1 = 0x00000000,
576 .gpio2 = 0x00000000,
577 .gpio3 = 0x00000000,
578 },{
579 .type = CX88_VMUX_SVIDEO,
580 .vmux = 2,
581 .gpio0 = 0x00008400,
582 .gpio1 = 0x00000000,
583 .gpio2 = 0x00000000,
584 .gpio3 = 0x00000000,
585 }},
586 .radio = {
587 .type = CX88_RADIO,
588 .vmux = 2,
589 .gpio0 = 0x00008400,
590 .gpio1 = 0x00000000,
591 .gpio2 = 0x00000000,
592 .gpio3 = 0x00000000,
593 },
594 .dvb = 1,
595 },
596 [CX88_BOARD_HAUPPAUGE_ROSLYN] = {
597 // entry added by Kaustubh D. Bhalerao <bhalerao.1@osu.edu>
598 // GPIO values obtained from regspy, courtesy Sean Covel
599 .name = "Hauppauge WinTV 28xxx (Roslyn) models",
600 .tuner_type = UNSET,
601 .radio_type = UNSET,
602 .tuner_addr = ADDR_UNSET,
603 .radio_addr = ADDR_UNSET,
604 .input = {{
605 .type = CX88_VMUX_TELEVISION,
606 .vmux = 0,
607 .gpio0 = 0xed12, // internal decoder
608 .gpio2 = 0x00ff,
609 },{
610 .type = CX88_VMUX_DEBUG,
611 .vmux = 0,
612 .gpio0 = 0xff01, // mono from tuner chip
613 },{
614 .type = CX88_VMUX_COMPOSITE1,
615 .vmux = 1,
616 .gpio0 = 0xff02,
617 },{
618 .type = CX88_VMUX_SVIDEO,
619 .vmux = 2,
620 .gpio0 = 0xed92,
621 .gpio2 = 0x00ff,
622 }},
623 .radio = {
624 .type = CX88_RADIO,
625 .gpio0 = 0xed96,
626 .gpio2 = 0x00ff,
627 },
628 .blackbird = 1,
629 },
630 [CX88_BOARD_DIGITALLOGIC_MEC] = {
631 .name = "Digital-Logic MICROSPACE Entertainment Center (MEC)",
632 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
633 .radio_type = UNSET,
634 .tuner_addr = ADDR_UNSET,
635 .radio_addr = ADDR_UNSET,
636 .tda9887_conf = TDA9887_PRESENT,
637 .input = {{
638 .type = CX88_VMUX_TELEVISION,
639 .vmux = 0,
640 .gpio0 = 0x00009d80,
641 },{
642 .type = CX88_VMUX_COMPOSITE1,
643 .vmux = 1,
644 .gpio0 = 0x00009d76,
645 },{
646 .type = CX88_VMUX_SVIDEO,
647 .vmux = 2,
648 .gpio0 = 0x00009d76,
649 }},
650 .radio = {
651 .type = CX88_RADIO,
652 .gpio0 = 0x00009d00,
653 },
654 .blackbird = 1,
655 },
656 [CX88_BOARD_IODATA_GVBCTV7E] = {
657 .name = "IODATA GV/BCTV7E",
658 .tuner_type = TUNER_PHILIPS_FQ1286,
659 .radio_type = UNSET,
660 .tuner_addr = ADDR_UNSET,
661 .radio_addr = ADDR_UNSET,
662 .tda9887_conf = TDA9887_PRESENT,
663 .input = {{
664 .type = CX88_VMUX_TELEVISION,
665 .vmux = 1,
666 .gpio1 = 0x0000e03f,
667 },{
668 .type = CX88_VMUX_COMPOSITE1,
669 .vmux = 2,
670 .gpio1 = 0x0000e07f,
671 },{
672 .type = CX88_VMUX_SVIDEO,
673 .vmux = 3,
674 .gpio1 = 0x0000e07f,
675 }}
676 },
677 [CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO] = {
678 .name = "PixelView PlayTV Ultra Pro (Stereo)",
679 /* May be also TUNER_YMEC_TVF_5533MF for NTSC/M or PAL/M */
680 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
681 .radio_type = TUNER_TEA5767,
682 .tuner_addr = 0xc2>>1,
683 .radio_addr = 0xc0>>1,
684 .input = {{
685 .type = CX88_VMUX_TELEVISION,
686 .vmux = 0,
687 .gpio0 = 0xbf61, /* internal decoder */
688 },{
689 .type = CX88_VMUX_COMPOSITE1,
690 .vmux = 1,
691 .gpio0 = 0xbf63,
692 },{
693 .type = CX88_VMUX_SVIDEO,
694 .vmux = 2,
695 .gpio0 = 0xbf63,
696 }},
697 .radio = {
698 .type = CX88_RADIO,
699 .gpio0 = 0xbf60,
700 },
701 },
702 [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = {
703 .name = "DViCO - FusionHDTV 3 Gold-T",
704 .tuner_type = TUNER_THOMSON_DTT7611,
705 .radio_type = UNSET,
706 .tuner_addr = ADDR_UNSET,
707 .radio_addr = ADDR_UNSET,
708 /* See DViCO FusionHDTV 3 Gold for GPIO documentation. */
709 .input = {{
710 .type = CX88_VMUX_TELEVISION,
711 .vmux = 0,
712 .gpio0 = 0x0f0d,
713 },{
714 .type = CX88_VMUX_CABLE,
715 .vmux = 0,
716 .gpio0 = 0x0f05,
717 },{
718 .type = CX88_VMUX_COMPOSITE1,
719 .vmux = 1,
720 .gpio0 = 0x0f00,
721 },{
722 .type = CX88_VMUX_SVIDEO,
723 .vmux = 2,
724 .gpio0 = 0x0f00,
725 }},
726 },
727 };
728 const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards);
729
730 /* ------------------------------------------------------------------ */
731 /* PCI subsystem IDs */
732
733 struct cx88_subid cx88_subids[] = {
734 {
735 .subvendor = 0x0070,
736 .subdevice = 0x3400,
737 .card = CX88_BOARD_HAUPPAUGE,
738 },{
739 .subvendor = 0x0070,
740 .subdevice = 0x3401,
741 .card = CX88_BOARD_HAUPPAUGE,
742 },{
743 .subvendor = 0x14c7,
744 .subdevice = 0x0106,
745 .card = CX88_BOARD_GDI,
746 },{
747 .subvendor = 0x14c7,
748 .subdevice = 0x0107, /* with mpeg encoder */
749 .card = CX88_BOARD_GDI,
750 },{
751 .subvendor = PCI_VENDOR_ID_ATI,
752 .subdevice = 0x00f8,
753 .card = CX88_BOARD_ATI_WONDER_PRO,
754 },{
755 .subvendor = 0x107d,
756 .subdevice = 0x6611,
757 .card = CX88_BOARD_WINFAST2000XP_EXPERT,
758 },{
759 .subvendor = 0x107d,
760 .subdevice = 0x6613, /* NTSC */
761 .card = CX88_BOARD_WINFAST2000XP_EXPERT,
762 },{
763 .subvendor = 0x107d,
764 .subdevice = 0x6620,
765 .card = CX88_BOARD_WINFAST_DV2000,
766 },{
767 .subvendor = 0x107d,
768 .subdevice = 0x663b,
769 .card = CX88_BOARD_LEADTEK_PVR2000,
770 },{
771 .subvendor = 0x107d,
772 .subdevice = 0x663C,
773 .card = CX88_BOARD_LEADTEK_PVR2000,
774 },{
775 .subvendor = 0x1461,
776 .subdevice = 0x000b,
777 .card = CX88_BOARD_AVERTV_303,
778 },{
779 .subvendor = 0x1462,
780 .subdevice = 0x8606,
781 .card = CX88_BOARD_MSI_TVANYWHERE_MASTER,
782 },{
783 .subvendor = 0x10fc,
784 .subdevice = 0xd003,
785 .card = CX88_BOARD_IODATA_GVVCP3PCI,
786 },{
787 .subvendor = 0x1043,
788 .subdevice = 0x4823, /* with mpeg encoder */
789 .card = CX88_BOARD_ASUS_PVR_416,
790 },{
791 .subvendor = 0x17de,
792 .subdevice = 0x08a6,
793 .card = CX88_BOARD_KWORLD_DVB_T,
794 },{
795 .subvendor = 0x18ac,
796 .subdevice = 0xd810,
797 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD,
798 },{
799 .subvendor = 0x18ac,
800 .subdevice = 0xd820,
801 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T,
802 },{
803 .subvendor = 0x18AC,
804 .subdevice = 0xDB00,
805 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1,
806 },{
807 .subvendor = 0x0070,
808 .subdevice = 0x9002,
809 .card = CX88_BOARD_HAUPPAUGE_DVB_T1,
810 },{
811 .subvendor = 0x14f1,
812 .subdevice = 0x0187,
813 .card = CX88_BOARD_CONEXANT_DVB_T1,
814 },{
815 .subvendor = 0x1540,
816 .subdevice = 0x2580,
817 .card = CX88_BOARD_PROVIDEO_PV259,
818 },{
819 .subvendor = 0x18AC,
820 .subdevice = 0xDB10,
821 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
822 },{
823 .subvendor = 0x1554,
824 .subdevice = 0x4811,
825 .card = CX88_BOARD_PIXELVIEW,
826 },{
827 .subvendor = 0x7063,
828 .subdevice = 0x3000, /* HD-3000 card */
829 .card = CX88_BOARD_PCHDTV_HD3000,
830 },{
831 .subvendor = 0x17DE,
832 .subdevice = 0xA8A6,
833 .card = CX88_BOARD_DNTV_LIVE_DVB_T,
834 },{
835 .subvendor = 0x0070,
836 .subdevice = 0x2801,
837 .card = CX88_BOARD_HAUPPAUGE_ROSLYN,
838 },{
839 .subvendor = 0x14F1,
840 .subdevice = 0x0342,
841 .card = CX88_BOARD_DIGITALLOGIC_MEC,
842 },{
843 .subvendor = 0x10fc,
844 .subdevice = 0xd035,
845 .card = CX88_BOARD_IODATA_GVBCTV7E,
846 }
847 };
848 const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids);
849
850 /* ----------------------------------------------------------------------- */
851 /* some leadtek specific stuff */
852
853 static void __devinit leadtek_eeprom(struct cx88_core *core, u8 *eeprom_data)
854 {
855 /* This is just for the "Winfast 2000XP Expert" board ATM; I don't have data on
856 * any others.
857 *
858 * Byte 0 is 1 on the NTSC board.
859 */
860
861 if (eeprom_data[4] != 0x7d ||
862 eeprom_data[5] != 0x10 ||
863 eeprom_data[7] != 0x66) {
864 printk(KERN_WARNING "%s: Leadtek eeprom invalid.\n",
865 core->name);
866 return;
867 }
868
869 core->has_radio = 1;
870 core->tuner_type = (eeprom_data[6] == 0x13) ? 43 : 38;
871
872 printk(KERN_INFO "%s: Leadtek Winfast 2000XP Expert config: "
873 "tuner=%d, eeprom[0]=0x%02x\n",
874 core->name, core->tuner_type, eeprom_data[0]);
875 }
876
877
878 /* ----------------------------------------------------------------------- */
879
880 static void hauppauge_eeprom(struct cx88_core *core, u8 *eeprom_data)
881 {
882 struct tveeprom tv;
883
884 tveeprom_hauppauge_analog(&tv, eeprom_data);
885 core->tuner_type = tv.tuner_type;
886 core->has_radio = tv.has_radio;
887 }
888
889 static int hauppauge_eeprom_dvb(struct cx88_core *core, u8 *ee)
890 {
891 int model;
892 int tuner;
893
894 /* Make sure we support the board model */
895 model = ee[0x1f] << 24 | ee[0x1e] << 16 | ee[0x1d] << 8 | ee[0x1c];
896 switch(model) {
897 case 90002:
898 case 90500:
899 case 90501:
900 /* known */
901 break;
902 default:
903 printk("%s: warning: unknown hauppauge model #%d\n",
904 core->name, model);
905 break;
906 }
907
908 /* Make sure we support the tuner */
909 tuner = ee[0x2d];
910 switch(tuner) {
911 case 0x4B: /* dtt 7595 */
912 case 0x4C: /* dtt 7592 */
913 break;
914 default:
915 printk("%s: error: unknown hauppauge tuner 0x%02x\n",
916 core->name, tuner);
917 return -ENODEV;
918 }
919 printk(KERN_INFO "%s: hauppauge eeprom: model=%d, tuner=%d\n",
920 core->name, model, tuner);
921 return 0;
922 }
923
924 /* ----------------------------------------------------------------------- */
925 /* some GDI (was: Modular Technology) specific stuff */
926
927 static struct {
928 int id;
929 int fm;
930 char *name;
931 } gdi_tuner[] = {
932 [ 0x01 ] = { .id = TUNER_ABSENT,
933 .name = "NTSC_M" },
934 [ 0x02 ] = { .id = TUNER_ABSENT,
935 .name = "PAL_B" },
936 [ 0x03 ] = { .id = TUNER_ABSENT,
937 .name = "PAL_I" },
938 [ 0x04 ] = { .id = TUNER_ABSENT,
939 .name = "PAL_D" },
940 [ 0x05 ] = { .id = TUNER_ABSENT,
941 .name = "SECAM" },
942
943 [ 0x10 ] = { .id = TUNER_ABSENT,
944 .fm = 1,
945 .name = "TEMIC_4049" },
946 [ 0x11 ] = { .id = TUNER_TEMIC_4136FY5,
947 .name = "TEMIC_4136" },
948 [ 0x12 ] = { .id = TUNER_ABSENT,
949 .name = "TEMIC_4146" },
950
951 [ 0x20 ] = { .id = TUNER_PHILIPS_FQ1216ME,
952 .fm = 1,
953 .name = "PHILIPS_FQ1216_MK3" },
954 [ 0x21 ] = { .id = TUNER_ABSENT, .fm = 1,
955 .name = "PHILIPS_FQ1236_MK3" },
956 [ 0x22 ] = { .id = TUNER_ABSENT,
957 .name = "PHILIPS_FI1236_MK3" },
958 [ 0x23 ] = { .id = TUNER_ABSENT,
959 .name = "PHILIPS_FI1216_MK3" },
960 };
961
962 static void gdi_eeprom(struct cx88_core *core, u8 *eeprom_data)
963 {
964 char *name = (eeprom_data[0x0d] < ARRAY_SIZE(gdi_tuner))
965 ? gdi_tuner[eeprom_data[0x0d]].name : NULL;
966
967 printk(KERN_INFO "%s: GDI: tuner=%s\n", core->name,
968 name ? name : "unknown");
969 if (NULL == name)
970 return;
971 core->tuner_type = gdi_tuner[eeprom_data[0x0d]].id;
972 core->has_radio = gdi_tuner[eeprom_data[0x0d]].fm;
973 }
974
975 /* ----------------------------------------------------------------------- */
976
977 void cx88_card_list(struct cx88_core *core, struct pci_dev *pci)
978 {
979 int i;
980
981 if (0 == pci->subsystem_vendor &&
982 0 == pci->subsystem_device) {
983 printk("%s: Your board has no valid PCI Subsystem ID and thus can't\n"
984 "%s: be autodetected. Please pass card=<n> insmod option to\n"
985 "%s: workaround that. Redirect complaints to the vendor of\n"
986 "%s: the TV card. Best regards,\n"
987 "%s: -- tux\n",
988 core->name,core->name,core->name,core->name,core->name);
989 } else {
990 printk("%s: Your board isn't known (yet) to the driver. You can\n"
991 "%s: try to pick one of the existing card configs via\n"
992 "%s: card=<n> insmod option. Updating to the latest\n"
993 "%s: version might help as well.\n",
994 core->name,core->name,core->name,core->name);
995 }
996 printk("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
997 core->name);
998 for (i = 0; i < cx88_bcount; i++)
999 printk("%s: card=%d -> %s\n",
1000 core->name, i, cx88_boards[i].name);
1001 }
1002
1003 void cx88_card_setup(struct cx88_core *core)
1004 {
1005 static u8 eeprom[128];
1006
1007 if (0 == core->i2c_rc) {
1008 core->i2c_client.addr = 0xa0 >> 1;
1009 tveeprom_read(&core->i2c_client,eeprom,sizeof(eeprom));
1010 }
1011
1012 switch (core->board) {
1013 case CX88_BOARD_HAUPPAUGE:
1014 case CX88_BOARD_HAUPPAUGE_ROSLYN:
1015 if (0 == core->i2c_rc)
1016 hauppauge_eeprom(core,eeprom+8);
1017 break;
1018 case CX88_BOARD_GDI:
1019 if (0 == core->i2c_rc)
1020 gdi_eeprom(core,eeprom);
1021 break;
1022 case CX88_BOARD_WINFAST2000XP_EXPERT:
1023 if (0 == core->i2c_rc)
1024 leadtek_eeprom(core,eeprom);
1025 break;
1026 case CX88_BOARD_HAUPPAUGE_DVB_T1:
1027 if (0 == core->i2c_rc)
1028 hauppauge_eeprom_dvb(core,eeprom);
1029 break;
1030 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
1031 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
1032 /* GPIO0:0 is hooked to mt352 reset pin */
1033 cx_set(MO_GP0_IO, 0x00000101);
1034 cx_clear(MO_GP0_IO, 0x00000001);
1035 msleep(1);
1036 cx_set(MO_GP0_IO, 0x00000101);
1037 break;
1038 case CX88_BOARD_KWORLD_DVB_T:
1039 case CX88_BOARD_DNTV_LIVE_DVB_T:
1040 cx_set(MO_GP0_IO, 0x00000707);
1041 cx_set(MO_GP2_IO, 0x00000101);
1042 cx_clear(MO_GP2_IO, 0x00000001);
1043 msleep(1);
1044 cx_clear(MO_GP0_IO, 0x00000007);
1045 cx_set(MO_GP2_IO, 0x00000101);
1046 break;
1047 }
1048 if (cx88_boards[core->board].radio.type == CX88_RADIO)
1049 core->has_radio = 1;
1050 }
1051
1052 /* ------------------------------------------------------------------ */
1053
1054 EXPORT_SYMBOL(cx88_boards);
1055 EXPORT_SYMBOL(cx88_bcount);
1056 EXPORT_SYMBOL(cx88_subids);
1057 EXPORT_SYMBOL(cx88_idcount);
1058 EXPORT_SYMBOL(cx88_card_list);
1059 EXPORT_SYMBOL(cx88_card_setup);
1060
1061 /*
1062 * Local variables:
1063 * c-basic-offset: 8
1064 * End:
1065 * 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
1066 */