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