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