V4L/DVB (7271): cx88-cards: Fix powerangel gpio1
[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 #include "tea5767.h"
30 #include "tuner-xc2028.h"
31
32 static unsigned int tuner[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
33 static unsigned int radio[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
34 static unsigned int card[]  = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
35
36 module_param_array(tuner, int, NULL, 0444);
37 module_param_array(radio, int, NULL, 0444);
38 module_param_array(card,  int, NULL, 0444);
39
40 MODULE_PARM_DESC(tuner,"tuner type");
41 MODULE_PARM_DESC(radio,"radio tuner type");
42 MODULE_PARM_DESC(card,"card type");
43
44 static unsigned int latency = UNSET;
45 module_param(latency,int,0444);
46 MODULE_PARM_DESC(latency,"pci latency timer");
47
48 #define info_printk(core, fmt, arg...) \
49         printk(KERN_INFO "%s: " fmt, core->name , ## arg)
50
51 #define warn_printk(core, fmt, arg...) \
52         printk(KERN_WARNING "%s: " fmt, core->name , ## arg)
53
54 #define err_printk(core, fmt, arg...) \
55         printk(KERN_ERR "%s: " fmt, core->name , ## arg)
56
57
58 /* ------------------------------------------------------------------ */
59 /* board config info                                                  */
60
61 static const struct cx88_board cx88_boards[] = {
62         [CX88_BOARD_UNKNOWN] = {
63                 .name           = "UNKNOWN/GENERIC",
64                 .tuner_type     = UNSET,
65                 .radio_type     = UNSET,
66                 .tuner_addr     = ADDR_UNSET,
67                 .radio_addr     = ADDR_UNSET,
68                 .input          = {{
69                         .type   = CX88_VMUX_COMPOSITE1,
70                         .vmux   = 0,
71                 },{
72                         .type   = CX88_VMUX_COMPOSITE2,
73                         .vmux   = 1,
74                 },{
75                         .type   = CX88_VMUX_COMPOSITE3,
76                         .vmux   = 2,
77                 },{
78                         .type   = CX88_VMUX_COMPOSITE4,
79                         .vmux   = 3,
80                 }},
81         },
82         [CX88_BOARD_HAUPPAUGE] = {
83                 .name           = "Hauppauge WinTV 34xxx models",
84                 .tuner_type     = UNSET,
85                 .radio_type     = UNSET,
86                 .tuner_addr     = ADDR_UNSET,
87                 .radio_addr     = ADDR_UNSET,
88                 .tda9887_conf   = TDA9887_PRESENT,
89                 .input          = {{
90                         .type   = CX88_VMUX_TELEVISION,
91                         .vmux   = 0,
92                         .gpio0  = 0xff00,  // internal decoder
93                 },{
94                         .type   = CX88_VMUX_DEBUG,
95                         .vmux   = 0,
96                         .gpio0  = 0xff01,  // mono from tuner chip
97                 },{
98                         .type   = CX88_VMUX_COMPOSITE1,
99                         .vmux   = 1,
100                         .gpio0  = 0xff02,
101                 },{
102                         .type   = CX88_VMUX_SVIDEO,
103                         .vmux   = 2,
104                         .gpio0  = 0xff02,
105                 }},
106                 .radio = {
107                         .type   = CX88_RADIO,
108                         .gpio0  = 0xff01,
109                 },
110         },
111         [CX88_BOARD_GDI] = {
112                 .name           = "GDI Black Gold",
113                 .tuner_type     = UNSET,
114                 .radio_type     = UNSET,
115                 .tuner_addr     = ADDR_UNSET,
116                 .radio_addr     = ADDR_UNSET,
117                 .input          = {{
118                         .type   = CX88_VMUX_TELEVISION,
119                         .vmux   = 0,
120                 },{
121                         .type   = CX88_VMUX_SVIDEO,
122                         .vmux   = 2,
123                 }},
124         },
125         [CX88_BOARD_PIXELVIEW] = {
126                 .name           = "PixelView",
127                 .tuner_type     = TUNER_PHILIPS_PAL,
128                 .radio_type     = UNSET,
129                 .tuner_addr     = ADDR_UNSET,
130                 .radio_addr     = ADDR_UNSET,
131                 .input          = {{
132                         .type   = CX88_VMUX_TELEVISION,
133                         .vmux   = 0,
134                         .gpio0  = 0xff00,  // internal decoder
135                 },{
136                         .type   = CX88_VMUX_COMPOSITE1,
137                         .vmux   = 1,
138                 },{
139                         .type   = CX88_VMUX_SVIDEO,
140                         .vmux   = 2,
141                 }},
142                 .radio = {
143                          .type  = CX88_RADIO,
144                          .gpio0 = 0xff10,
145                 },
146         },
147         [CX88_BOARD_ATI_WONDER_PRO] = {
148                 .name           = "ATI TV Wonder Pro",
149                 .tuner_type     = TUNER_PHILIPS_4IN1,
150                 .radio_type     = UNSET,
151                 .tuner_addr     = ADDR_UNSET,
152                 .radio_addr     = ADDR_UNSET,
153                 .tda9887_conf   = TDA9887_PRESENT | TDA9887_INTERCARRIER,
154                 .input          = {{
155                         .type   = CX88_VMUX_TELEVISION,
156                         .vmux   = 0,
157                         .gpio0  = 0x03ff,
158                 },{
159                         .type   = CX88_VMUX_COMPOSITE1,
160                         .vmux   = 1,
161                         .gpio0  = 0x03fe,
162                 },{
163                         .type   = CX88_VMUX_SVIDEO,
164                         .vmux   = 2,
165                         .gpio0  = 0x03fe,
166                 }},
167         },
168         [CX88_BOARD_WINFAST2000XP_EXPERT] = {
169                 .name           = "Leadtek Winfast 2000XP Expert",
170                 .tuner_type     = TUNER_PHILIPS_4IN1,
171                 .radio_type     = UNSET,
172                 .tuner_addr     = ADDR_UNSET,
173                 .radio_addr     = ADDR_UNSET,
174                 .tda9887_conf   = TDA9887_PRESENT,
175                 .input          = {{
176                         .type   = CX88_VMUX_TELEVISION,
177                         .vmux   = 0,
178                         .gpio0  = 0x00F5e700,
179                         .gpio1  = 0x00003004,
180                         .gpio2  = 0x00F5e700,
181                         .gpio3  = 0x02000000,
182                 },{
183                         .type   = CX88_VMUX_COMPOSITE1,
184                         .vmux   = 1,
185                         .gpio0  = 0x00F5c700,
186                         .gpio1  = 0x00003004,
187                         .gpio2  = 0x00F5c700,
188                         .gpio3  = 0x02000000,
189                 },{
190                         .type   = CX88_VMUX_SVIDEO,
191                         .vmux   = 2,
192                         .gpio0  = 0x00F5c700,
193                         .gpio1  = 0x00003004,
194                         .gpio2  = 0x00F5c700,
195                         .gpio3  = 0x02000000,
196                 }},
197                 .radio = {
198                         .type   = CX88_RADIO,
199                         .gpio0  = 0x00F5d700,
200                         .gpio1  = 0x00003004,
201                         .gpio2  = 0x00F5d700,
202                         .gpio3  = 0x02000000,
203                 },
204         },
205         [CX88_BOARD_AVERTV_STUDIO_303] = {
206                 .name           = "AverTV Studio 303 (M126)",
207                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
208                 .radio_type     = UNSET,
209                 .tuner_addr     = ADDR_UNSET,
210                 .radio_addr     = ADDR_UNSET,
211                 .tda9887_conf   = TDA9887_PRESENT,
212                 .input          = {{
213                         .type   = CX88_VMUX_TELEVISION,
214                         .vmux   = 0,
215                         .gpio1  = 0xe09f,
216                 },{
217                         .type   = CX88_VMUX_COMPOSITE1,
218                         .vmux   = 1,
219                         .gpio1  = 0xe05f,
220                 },{
221                         .type   = CX88_VMUX_SVIDEO,
222                         .vmux   = 2,
223                         .gpio1  = 0xe05f,
224                 }},
225                 .radio = {
226                         .gpio1  = 0xe0df,
227                         .type   = CX88_RADIO,
228                 },
229         },
230         [CX88_BOARD_MSI_TVANYWHERE_MASTER] = {
231                 // added gpio values thanks to Michal
232                 // values for PAL from DScaler
233                 .name           = "MSI TV-@nywhere Master",
234                 .tuner_type     = TUNER_MT2032,
235                 .radio_type     = UNSET,
236                 .tuner_addr     = ADDR_UNSET,
237                 .radio_addr     = ADDR_UNSET,
238                 .tda9887_conf   = TDA9887_PRESENT | TDA9887_INTERCARRIER_NTSC,
239                 .input          = {{
240                         .type   = CX88_VMUX_TELEVISION,
241                         .vmux   = 0,
242                         .gpio0  = 0x000040bf,
243                         .gpio1  = 0x000080c0,
244                         .gpio2  = 0x0000ff40,
245                 },{
246                         .type   = CX88_VMUX_COMPOSITE1,
247                         .vmux   = 1,
248                         .gpio0  = 0x000040bf,
249                         .gpio1  = 0x000080c0,
250                         .gpio2  = 0x0000ff40,
251                 },{
252                         .type   = CX88_VMUX_SVIDEO,
253                         .vmux   = 2,
254                         .gpio0  = 0x000040bf,
255                         .gpio1  = 0x000080c0,
256                         .gpio2  = 0x0000ff40,
257                 }},
258                 .radio = {
259                          .type   = CX88_RADIO,
260                          .vmux   = 3,
261                          .gpio0  = 0x000040bf,
262                          .gpio1  = 0x000080c0,
263                          .gpio2  = 0x0000ff20,
264                 },
265         },
266         [CX88_BOARD_WINFAST_DV2000] = {
267                 .name           = "Leadtek Winfast DV2000",
268                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
269                 .radio_type     = UNSET,
270                 .tuner_addr     = ADDR_UNSET,
271                 .radio_addr     = ADDR_UNSET,
272                 .tda9887_conf   = TDA9887_PRESENT,
273                 .input          = {{
274                         .type   = CX88_VMUX_TELEVISION,
275                         .vmux   = 0,
276                         .gpio0  = 0x0035e700,
277                         .gpio1  = 0x00003004,
278                         .gpio2  = 0x0035e700,
279                         .gpio3  = 0x02000000,
280                 },{
281
282                         .type   = CX88_VMUX_COMPOSITE1,
283                         .vmux   = 1,
284                         .gpio0  = 0x0035c700,
285                         .gpio1  = 0x00003004,
286                         .gpio2  = 0x0035c700,
287                         .gpio3  = 0x02000000,
288                 },{
289                         .type   = CX88_VMUX_SVIDEO,
290                         .vmux   = 2,
291                         .gpio0  = 0x0035c700,
292                         .gpio1  = 0x0035c700,
293                         .gpio2  = 0x02000000,
294                         .gpio3  = 0x02000000,
295                 }},
296                 .radio = {
297                         .type   = CX88_RADIO,
298                         .gpio0  = 0x0035d700,
299                         .gpio1  = 0x00007004,
300                         .gpio2  = 0x0035d700,
301                         .gpio3  = 0x02000000,
302                 },
303         },
304         [CX88_BOARD_LEADTEK_PVR2000] = {
305                 // gpio values for PAL version from regspy by DScaler
306                 .name           = "Leadtek PVR 2000",
307                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
308                 .radio_type     = UNSET,
309                 .tuner_addr     = ADDR_UNSET,
310                 .radio_addr     = ADDR_UNSET,
311                 .tda9887_conf   = TDA9887_PRESENT,
312                 .input          = {{
313                         .type   = CX88_VMUX_TELEVISION,
314                         .vmux   = 0,
315                         .gpio0  = 0x0000bde2,
316                         .audioroute = 1,
317                 },{
318                         .type   = CX88_VMUX_COMPOSITE1,
319                         .vmux   = 1,
320                         .gpio0  = 0x0000bde6,
321                         .audioroute = 1,
322                 },{
323                         .type   = CX88_VMUX_SVIDEO,
324                         .vmux   = 2,
325                         .gpio0  = 0x0000bde6,
326                         .audioroute = 1,
327                 }},
328                 .radio = {
329                         .type   = CX88_RADIO,
330                         .gpio0  = 0x0000bd62,
331                         .audioroute = 1,
332                 },
333                 .mpeg           = CX88_MPEG_BLACKBIRD,
334         },
335         [CX88_BOARD_IODATA_GVVCP3PCI] = {
336                 .name           = "IODATA GV-VCP3/PCI",
337                 .tuner_type     = TUNER_ABSENT,
338                 .radio_type     = UNSET,
339                 .tuner_addr     = ADDR_UNSET,
340                 .radio_addr     = ADDR_UNSET,
341                 .input          = {{
342                         .type   = CX88_VMUX_COMPOSITE1,
343                         .vmux   = 0,
344                 },{
345                         .type   = CX88_VMUX_COMPOSITE2,
346                         .vmux   = 1,
347                 },{
348                         .type   = CX88_VMUX_SVIDEO,
349                         .vmux   = 2,
350                 }},
351         },
352         [CX88_BOARD_PROLINK_PLAYTVPVR] = {
353                 .name           = "Prolink PlayTV PVR",
354                 .tuner_type     = TUNER_PHILIPS_FM1236_MK3,
355                 .radio_type     = UNSET,
356                 .tuner_addr     = ADDR_UNSET,
357                 .radio_addr     = ADDR_UNSET,
358                 .tda9887_conf   = TDA9887_PRESENT,
359                 .input          = {{
360                         .type   = CX88_VMUX_TELEVISION,
361                         .vmux   = 0,
362                         .gpio0  = 0xbff0,
363                 },{
364                         .type   = CX88_VMUX_COMPOSITE1,
365                         .vmux   = 1,
366                         .gpio0  = 0xbff3,
367                 },{
368                         .type   = CX88_VMUX_SVIDEO,
369                         .vmux   = 2,
370                         .gpio0  = 0xbff3,
371                 }},
372                 .radio = {
373                         .type   = CX88_RADIO,
374                         .gpio0  = 0xbff0,
375                 },
376         },
377         [CX88_BOARD_ASUS_PVR_416] = {
378                 .name           = "ASUS PVR-416",
379                 .tuner_type     = TUNER_PHILIPS_FM1236_MK3,
380                 .radio_type     = UNSET,
381                 .tuner_addr     = ADDR_UNSET,
382                 .radio_addr     = ADDR_UNSET,
383                 .tda9887_conf   = TDA9887_PRESENT,
384                 .input          = {{
385                         .type   = CX88_VMUX_TELEVISION,
386                         .vmux   = 0,
387                         .gpio0  = 0x0000fde6,
388                 },{
389                         .type   = CX88_VMUX_SVIDEO,
390                         .vmux   = 2,
391                         .gpio0  = 0x0000fde6, // 0x0000fda6 L,R RCA audio in?
392                         .audioroute = 1,
393                 }},
394                 .radio = {
395                         .type   = CX88_RADIO,
396                         .gpio0  = 0x0000fde2,
397                 },
398                 .mpeg           = CX88_MPEG_BLACKBIRD,
399         },
400         [CX88_BOARD_MSI_TVANYWHERE] = {
401                 .name           = "MSI TV-@nywhere",
402                 .tuner_type     = TUNER_MT2032,
403                 .radio_type     = UNSET,
404                 .tuner_addr     = ADDR_UNSET,
405                 .radio_addr     = ADDR_UNSET,
406                 .tda9887_conf   = TDA9887_PRESENT,
407                 .input          = {{
408                         .type   = CX88_VMUX_TELEVISION,
409                         .vmux   = 0,
410                         .gpio0  = 0x00000fbf,
411                         .gpio2  = 0x0000fc08,
412                 },{
413                         .type   = CX88_VMUX_COMPOSITE1,
414                         .vmux   = 1,
415                         .gpio0  = 0x00000fbf,
416                         .gpio2  = 0x0000fc68,
417                 },{
418                         .type   = CX88_VMUX_SVIDEO,
419                         .vmux   = 2,
420                         .gpio0  = 0x00000fbf,
421                         .gpio2  = 0x0000fc68,
422                 }},
423         },
424         [CX88_BOARD_KWORLD_DVB_T] = {
425                 .name           = "KWorld/VStream XPert DVB-T",
426                 .tuner_type     = TUNER_ABSENT,
427                 .radio_type     = UNSET,
428                 .tuner_addr     = ADDR_UNSET,
429                 .radio_addr     = ADDR_UNSET,
430                 .input          = {{
431                         .type   = CX88_VMUX_COMPOSITE1,
432                         .vmux   = 1,
433                         .gpio0  = 0x0700,
434                         .gpio2  = 0x0101,
435                 },{
436                         .type   = CX88_VMUX_SVIDEO,
437                         .vmux   = 2,
438                         .gpio0  = 0x0700,
439                         .gpio2  = 0x0101,
440                 }},
441                 .mpeg           = CX88_MPEG_DVB,
442         },
443         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1] = {
444                 .name           = "DViCO FusionHDTV DVB-T1",
445                 .tuner_type     = TUNER_ABSENT, /* No analog tuner */
446                 .radio_type     = UNSET,
447                 .tuner_addr     = ADDR_UNSET,
448                 .radio_addr     = ADDR_UNSET,
449                 .input          = {{
450                         .type   = CX88_VMUX_COMPOSITE1,
451                         .vmux   = 1,
452                         .gpio0  = 0x000027df,
453                 },{
454                         .type   = CX88_VMUX_SVIDEO,
455                         .vmux   = 2,
456                         .gpio0  = 0x000027df,
457                 }},
458                 .mpeg           = CX88_MPEG_DVB,
459         },
460         [CX88_BOARD_KWORLD_LTV883] = {
461                 .name           = "KWorld LTV883RF",
462                 .tuner_type     = TUNER_TNF_8831BGFF,
463                 .radio_type     = UNSET,
464                 .tuner_addr     = ADDR_UNSET,
465                 .radio_addr     = ADDR_UNSET,
466                 .input          = {{
467                         .type   = CX88_VMUX_TELEVISION,
468                         .vmux   = 0,
469                         .gpio0  = 0x07f8,
470                 },{
471                         .type   = CX88_VMUX_DEBUG,
472                         .vmux   = 0,
473                         .gpio0  = 0x07f9,  // mono from tuner chip
474                 },{
475                         .type   = CX88_VMUX_COMPOSITE1,
476                         .vmux   = 1,
477                         .gpio0  = 0x000007fa,
478                 },{
479                         .type   = CX88_VMUX_SVIDEO,
480                         .vmux   = 2,
481                         .gpio0  = 0x000007fa,
482                 }},
483                 .radio = {
484                         .type   = CX88_RADIO,
485                         .gpio0  = 0x000007f8,
486                 },
487         },
488         [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q] = {
489                 .name           = "DViCO FusionHDTV 3 Gold-Q",
490                 .tuner_type     = TUNER_MICROTUNE_4042FI5,
491                 .radio_type     = UNSET,
492                 .tuner_addr     = ADDR_UNSET,
493                 .radio_addr     = ADDR_UNSET,
494                 /*
495                    GPIO[0] resets DT3302 DTV receiver
496                     0 - reset asserted
497                     1 - normal operation
498                    GPIO[1] mutes analog audio output connector
499                     0 - enable selected source
500                     1 - mute
501                    GPIO[2] selects source for analog audio output connector
502                     0 - analog audio input connector on tab
503                     1 - analog DAC output from CX23881 chip
504                    GPIO[3] selects RF input connector on tuner module
505                     0 - RF connector labeled CABLE
506                     1 - RF connector labeled ANT
507                    GPIO[4] selects high RF for QAM256 mode
508                     0 - normal RF
509                     1 - high RF
510                 */
511                 .input          = {{
512                         .type   = CX88_VMUX_TELEVISION,
513                         .vmux   = 0,
514                         .gpio0  = 0x0f0d,
515                 },{
516                         .type   = CX88_VMUX_CABLE,
517                         .vmux   = 0,
518                         .gpio0  = 0x0f05,
519                 },{
520                         .type   = CX88_VMUX_COMPOSITE1,
521                         .vmux   = 1,
522                         .gpio0  = 0x0f00,
523                 },{
524                         .type   = CX88_VMUX_SVIDEO,
525                         .vmux   = 2,
526                         .gpio0  = 0x0f00,
527                 }},
528                 .mpeg           = CX88_MPEG_DVB,
529         },
530         [CX88_BOARD_HAUPPAUGE_DVB_T1] = {
531                 .name           = "Hauppauge Nova-T DVB-T",
532                 .tuner_type     = TUNER_ABSENT,
533                 .radio_type     = UNSET,
534                 .tuner_addr     = ADDR_UNSET,
535                 .radio_addr     = ADDR_UNSET,
536                 .input          = {{
537                         .type   = CX88_VMUX_DVB,
538                         .vmux   = 0,
539                 }},
540                 .mpeg           = CX88_MPEG_DVB,
541         },
542         [CX88_BOARD_CONEXANT_DVB_T1] = {
543                 .name           = "Conexant DVB-T reference design",
544                 .tuner_type     = TUNER_ABSENT,
545                 .radio_type     = UNSET,
546                 .tuner_addr     = ADDR_UNSET,
547                 .radio_addr     = ADDR_UNSET,
548                 .input          = {{
549                         .type   = CX88_VMUX_DVB,
550                         .vmux   = 0,
551                 }},
552                 .mpeg           = CX88_MPEG_DVB,
553         },
554         [CX88_BOARD_PROVIDEO_PV259] = {
555                 .name           = "Provideo PV259",
556                 .tuner_type     = TUNER_PHILIPS_FQ1216ME,
557                 .radio_type     = UNSET,
558                 .tuner_addr     = ADDR_UNSET,
559                 .radio_addr     = ADDR_UNSET,
560                 .input          = {{
561                         .type   = CX88_VMUX_TELEVISION,
562                         .vmux   = 0,
563                         .audioroute = 1,
564                 }},
565                 .mpeg           = CX88_MPEG_BLACKBIRD,
566         },
567         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS] = {
568                 .name           = "DViCO FusionHDTV DVB-T Plus",
569                 .tuner_type     = TUNER_ABSENT, /* No analog tuner */
570                 .radio_type     = UNSET,
571                 .tuner_addr     = ADDR_UNSET,
572                 .radio_addr     = ADDR_UNSET,
573                 .input          = {{
574                         .type   = CX88_VMUX_COMPOSITE1,
575                         .vmux   = 1,
576                         .gpio0  = 0x000027df,
577                 },{
578                         .type   = CX88_VMUX_SVIDEO,
579                         .vmux   = 2,
580                         .gpio0  = 0x000027df,
581                 }},
582                 .mpeg           = CX88_MPEG_DVB,
583         },
584         [CX88_BOARD_DNTV_LIVE_DVB_T] = {
585                 .name           = "digitalnow DNTV Live! DVB-T",
586                 .tuner_type     = TUNER_ABSENT,
587                 .radio_type     = UNSET,
588                 .tuner_addr     = ADDR_UNSET,
589                 .radio_addr     = ADDR_UNSET,
590                 .input          = {{
591                         .type   = CX88_VMUX_COMPOSITE1,
592                         .vmux   = 1,
593                         .gpio0  = 0x00000700,
594                         .gpio2  = 0x00000101,
595                 },{
596                         .type   = CX88_VMUX_SVIDEO,
597                         .vmux   = 2,
598                         .gpio0  = 0x00000700,
599                         .gpio2  = 0x00000101,
600                 }},
601                 .mpeg           = CX88_MPEG_DVB,
602         },
603         [CX88_BOARD_PCHDTV_HD3000] = {
604                 .name           = "pcHDTV HD3000 HDTV",
605                 .tuner_type     = TUNER_THOMSON_DTT761X,
606                 .radio_type     = UNSET,
607                 .tuner_addr     = ADDR_UNSET,
608                 .radio_addr     = ADDR_UNSET,
609                 .tda9887_conf   = TDA9887_PRESENT,
610                 /* GPIO[2] = audio source for analog audio out connector
611                  *  0 = analog audio input connector
612                  *  1 = CX88 audio DACs
613                  *
614                  * GPIO[7] = input to CX88's audio/chroma ADC
615                  *  0 = FM 10.7 MHz IF
616                  *  1 = Sound 4.5 MHz IF
617                  *
618                  * GPIO[1,5,6] = Oren 51132 pins 27,35,28 respectively
619                  *
620                  * GPIO[16] = Remote control input
621                  */
622                 .input          = {{
623                         .type   = CX88_VMUX_TELEVISION,
624                         .vmux   = 0,
625                         .gpio0  = 0x00008484,
626                 },{
627                         .type   = CX88_VMUX_COMPOSITE1,
628                         .vmux   = 1,
629                         .gpio0  = 0x00008400,
630                 },{
631                         .type   = CX88_VMUX_SVIDEO,
632                         .vmux   = 2,
633                         .gpio0  = 0x00008400,
634                 }},
635                 .radio = {
636                         .type   = CX88_RADIO,
637                         .gpio0  = 0x00008404,
638                 },
639                 .mpeg           = CX88_MPEG_DVB,
640         },
641         [CX88_BOARD_HAUPPAUGE_ROSLYN] = {
642                 // entry added by Kaustubh D. Bhalerao <bhalerao.1@osu.edu>
643                 // GPIO values obtained from regspy, courtesy Sean Covel
644                 .name           = "Hauppauge WinTV 28xxx (Roslyn) models",
645                 .tuner_type     = UNSET,
646                 .radio_type     = UNSET,
647                 .tuner_addr     = ADDR_UNSET,
648                 .radio_addr     = ADDR_UNSET,
649                 .input          = {{
650                         .type   = CX88_VMUX_TELEVISION,
651                         .vmux   = 0,
652                         .gpio0  = 0xed1a,
653                         .gpio2  = 0x00ff,
654                 },{
655                         .type   = CX88_VMUX_DEBUG,
656                         .vmux   = 0,
657                         .gpio0  = 0xff01,
658                 },{
659                         .type   = CX88_VMUX_COMPOSITE1,
660                         .vmux   = 1,
661                         .gpio0  = 0xff02,
662                 },{
663                         .type   = CX88_VMUX_SVIDEO,
664                         .vmux   = 2,
665                         .gpio0  = 0xed92,
666                         .gpio2  = 0x00ff,
667                 }},
668                 .radio = {
669                          .type   = CX88_RADIO,
670                          .gpio0  = 0xed96,
671                          .gpio2  = 0x00ff,
672                  },
673                 .mpeg           = CX88_MPEG_BLACKBIRD,
674         },
675         [CX88_BOARD_DIGITALLOGIC_MEC] = {
676                 .name           = "Digital-Logic MICROSPACE Entertainment Center (MEC)",
677                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
678                 .radio_type     = UNSET,
679                 .tuner_addr     = ADDR_UNSET,
680                 .radio_addr     = ADDR_UNSET,
681                 .tda9887_conf   = TDA9887_PRESENT,
682                 .input          = {{
683                         .type   = CX88_VMUX_TELEVISION,
684                         .vmux   = 0,
685                         .gpio0  = 0x00009d80,
686                         .audioroute = 1,
687                 },{
688                         .type   = CX88_VMUX_COMPOSITE1,
689                         .vmux   = 1,
690                         .gpio0  = 0x00009d76,
691                         .audioroute = 1,
692                 },{
693                         .type   = CX88_VMUX_SVIDEO,
694                         .vmux   = 2,
695                         .gpio0  = 0x00009d76,
696                         .audioroute = 1,
697                 }},
698                 .radio = {
699                         .type   = CX88_RADIO,
700                         .gpio0  = 0x00009d00,
701                         .audioroute = 1,
702                 },
703                 .mpeg           = CX88_MPEG_BLACKBIRD,
704         },
705         [CX88_BOARD_IODATA_GVBCTV7E] = {
706                 .name           = "IODATA GV/BCTV7E",
707                 .tuner_type     = TUNER_PHILIPS_FQ1286,
708                 .radio_type     = UNSET,
709                 .tuner_addr     = ADDR_UNSET,
710                 .radio_addr     = ADDR_UNSET,
711                 .tda9887_conf   = TDA9887_PRESENT,
712                 .input          = {{
713                         .type   = CX88_VMUX_TELEVISION,
714                         .vmux   = 1,
715                         .gpio1  = 0x0000e03f,
716                 },{
717                         .type   = CX88_VMUX_COMPOSITE1,
718                         .vmux   = 2,
719                         .gpio1  = 0x0000e07f,
720                 },{
721                         .type   = CX88_VMUX_SVIDEO,
722                         .vmux   = 3,
723                         .gpio1  = 0x0000e07f,
724                 }}
725         },
726         [CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO] = {
727                 .name           = "PixelView PlayTV Ultra Pro (Stereo)",
728                 /* May be also TUNER_YMEC_TVF_5533MF for NTSC/M or PAL/M */
729                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
730                 .radio_type     = UNSET,
731                 .tuner_addr     = ADDR_UNSET,
732                 .radio_addr     = ADDR_UNSET,
733                 .input          = {{
734                         .type   = CX88_VMUX_TELEVISION,
735                         .vmux   = 0,
736                         .gpio0  = 0xbf61,  /* internal decoder */
737                 },{
738                         .type   = CX88_VMUX_COMPOSITE1,
739                         .vmux   = 1,
740                         .gpio0  = 0xbf63,
741                 },{
742                         .type   = CX88_VMUX_SVIDEO,
743                         .vmux   = 2,
744                         .gpio0  = 0xbf63,
745                 }},
746                 .radio = {
747                          .type  = CX88_RADIO,
748                          .gpio0 = 0xbf60,
749                  },
750         },
751         [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = {
752                 .name           = "DViCO FusionHDTV 3 Gold-T",
753                 .tuner_type     = TUNER_THOMSON_DTT761X,
754                 .radio_type     = UNSET,
755                 .tuner_addr     = ADDR_UNSET,
756                 .radio_addr     = ADDR_UNSET,
757                 .tda9887_conf   = TDA9887_PRESENT,
758                 .input          = {{
759                         .type   = CX88_VMUX_TELEVISION,
760                         .vmux   = 0,
761                         .gpio0  = 0x97ed,
762                 },{
763                         .type   = CX88_VMUX_COMPOSITE1,
764                         .vmux   = 1,
765                         .gpio0  = 0x97e9,
766                 },{
767                         .type   = CX88_VMUX_SVIDEO,
768                         .vmux   = 2,
769                         .gpio0  = 0x97e9,
770                 }},
771                 .mpeg           = CX88_MPEG_DVB,
772         },
773         [CX88_BOARD_ADSTECH_DVB_T_PCI] = {
774                 .name           = "ADS Tech Instant TV DVB-T PCI",
775                 .tuner_type     = TUNER_ABSENT,
776                 .radio_type     = UNSET,
777                 .tuner_addr     = ADDR_UNSET,
778                 .radio_addr     = ADDR_UNSET,
779                 .input          = {{
780                         .type   = CX88_VMUX_COMPOSITE1,
781                         .vmux   = 1,
782                         .gpio0  = 0x0700,
783                         .gpio2  = 0x0101,
784                 },{
785                         .type   = CX88_VMUX_SVIDEO,
786                         .vmux   = 2,
787                         .gpio0  = 0x0700,
788                         .gpio2  = 0x0101,
789                 }},
790                 .mpeg           = CX88_MPEG_DVB,
791         },
792         [CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1] = {
793                 .name           = "TerraTec Cinergy 1400 DVB-T",
794                 .tuner_type     = TUNER_ABSENT,
795                 .input          = {{
796                         .type   = CX88_VMUX_DVB,
797                         .vmux   = 0,
798                 },{
799                         .type   = CX88_VMUX_COMPOSITE1,
800                         .vmux   = 2,
801                 },{
802                         .type   = CX88_VMUX_SVIDEO,
803                         .vmux   = 2,
804                 }},
805                 .mpeg           = CX88_MPEG_DVB,
806         },
807         [CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD] = {
808                 .name           = "DViCO FusionHDTV 5 Gold",
809                 .tuner_type     = TUNER_LG_TDVS_H06XF, /* TDVS-H062F */
810                 .radio_type     = UNSET,
811                 .tuner_addr     = ADDR_UNSET,
812                 .radio_addr     = ADDR_UNSET,
813                 .tda9887_conf   = TDA9887_PRESENT,
814                 .input          = {{
815                         .type   = CX88_VMUX_TELEVISION,
816                         .vmux   = 0,
817                         .gpio0  = 0x87fd,
818                 },{
819                         .type   = CX88_VMUX_COMPOSITE1,
820                         .vmux   = 1,
821                         .gpio0  = 0x87f9,
822                 },{
823                         .type   = CX88_VMUX_SVIDEO,
824                         .vmux   = 2,
825                         .gpio0  = 0x87f9,
826                 }},
827                 .mpeg           = CX88_MPEG_DVB,
828         },
829         [CX88_BOARD_AVERMEDIA_ULTRATV_MC_550] = {
830                 .name           = "AverMedia UltraTV Media Center PCI 550",
831                 .tuner_type     = TUNER_PHILIPS_FM1236_MK3,
832                 .radio_type     = UNSET,
833                 .tuner_addr     = ADDR_UNSET,
834                 .radio_addr     = ADDR_UNSET,
835                 .tda9887_conf   = TDA9887_PRESENT,
836                 .input          = {{
837                         .type   = CX88_VMUX_COMPOSITE1,
838                         .vmux   = 0,
839                         .gpio0  = 0x0000cd73,
840                         .audioroute = 1,
841                 },{
842                         .type   = CX88_VMUX_SVIDEO,
843                         .vmux   = 1,
844                         .gpio0  = 0x0000cd73,
845                         .audioroute = 1,
846                 },{
847                         .type   = CX88_VMUX_TELEVISION,
848                         .vmux   = 3,
849                         .gpio0  = 0x0000cdb3,
850                         .audioroute = 1,
851                 }},
852                 .radio = {
853                         .type   = CX88_RADIO,
854                         .vmux   = 2,
855                         .gpio0  = 0x0000cdf3,
856                         .audioroute = 1,
857                 },
858                 .mpeg           = CX88_MPEG_BLACKBIRD,
859         },
860         [CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD] = {
861                  /* Alexander Wold <awold@bigfoot.com> */
862                  .name           = "Kworld V-Stream Xpert DVD",
863                  .tuner_type     = UNSET,
864                  .input          = {{
865                          .type   = CX88_VMUX_COMPOSITE1,
866                          .vmux   = 1,
867                          .gpio0  = 0x03000000,
868                          .gpio1  = 0x01000000,
869                          .gpio2  = 0x02000000,
870                          .gpio3  = 0x00100000,
871                  },{
872                          .type   = CX88_VMUX_SVIDEO,
873                          .vmux   = 2,
874                          .gpio0  = 0x03000000,
875                          .gpio1  = 0x01000000,
876                          .gpio2  = 0x02000000,
877                          .gpio3  = 0x00100000,
878                  }},
879         },
880         [CX88_BOARD_ATI_HDTVWONDER] = {
881                 .name           = "ATI HDTV Wonder",
882                 .tuner_type     = TUNER_PHILIPS_TUV1236D,
883                 .radio_type     = UNSET,
884                 .tuner_addr     = ADDR_UNSET,
885                 .radio_addr     = ADDR_UNSET,
886                 .input          = {{
887                         .type   = CX88_VMUX_TELEVISION,
888                         .vmux   = 0,
889                         .gpio0  = 0x00000ff7,
890                         .gpio1  = 0x000000ff,
891                         .gpio2  = 0x00000001,
892                         .gpio3  = 0x00000000,
893                 },{
894                         .type   = CX88_VMUX_COMPOSITE1,
895                         .vmux   = 1,
896                         .gpio0  = 0x00000ffe,
897                         .gpio1  = 0x000000ff,
898                         .gpio2  = 0x00000001,
899                         .gpio3  = 0x00000000,
900                 },{
901                         .type   = CX88_VMUX_SVIDEO,
902                         .vmux   = 2,
903                         .gpio0  = 0x00000ffe,
904                         .gpio1  = 0x000000ff,
905                         .gpio2  = 0x00000001,
906                         .gpio3  = 0x00000000,
907                 }},
908                 .mpeg           = CX88_MPEG_DVB,
909         },
910         [CX88_BOARD_WINFAST_DTV1000] = {
911                 .name           = "WinFast DTV1000-T",
912                 .tuner_type     = TUNER_ABSENT,
913                 .radio_type     = UNSET,
914                 .tuner_addr     = ADDR_UNSET,
915                 .radio_addr     = ADDR_UNSET,
916                 .input          = {{
917                         .type   = CX88_VMUX_DVB,
918                         .vmux   = 0,
919                 },{
920                         .type   = CX88_VMUX_COMPOSITE1,
921                         .vmux   = 1,
922                 },{
923                         .type   = CX88_VMUX_SVIDEO,
924                         .vmux   = 2,
925                 }},
926                 .mpeg           = CX88_MPEG_DVB,
927         },
928         [CX88_BOARD_AVERTV_303] = {
929                 .name           = "AVerTV 303 (M126)",
930                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
931                 .radio_type     = UNSET,
932                 .tuner_addr     = ADDR_UNSET,
933                 .radio_addr     = ADDR_UNSET,
934                 .tda9887_conf   = TDA9887_PRESENT,
935                 .input          = {{
936                         .type   = CX88_VMUX_TELEVISION,
937                         .vmux   = 0,
938                         .gpio0  = 0x00ff,
939                         .gpio1  = 0xe09f,
940                         .gpio2  = 0x0010,
941                         .gpio3  = 0x0000,
942                 },{
943                         .type   = CX88_VMUX_COMPOSITE1,
944                         .vmux   = 1,
945                         .gpio0  = 0x00ff,
946                         .gpio1  = 0xe05f,
947                         .gpio2  = 0x0010,
948                         .gpio3  = 0x0000,
949                 },{
950                         .type   = CX88_VMUX_SVIDEO,
951                         .vmux   = 2,
952                         .gpio0  = 0x00ff,
953                         .gpio1  = 0xe05f,
954                         .gpio2  = 0x0010,
955                         .gpio3  = 0x0000,
956                 }},
957         },
958         [CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1] = {
959                 .name           = "Hauppauge Nova-S-Plus DVB-S",
960                 .tuner_type     = TUNER_ABSENT,
961                 .radio_type     = UNSET,
962                 .tuner_addr     = ADDR_UNSET,
963                 .radio_addr     = ADDR_UNSET,
964                 .input          = {{
965                         .type   = CX88_VMUX_DVB,
966                         .vmux   = 0,
967                 },{
968                         .type   = CX88_VMUX_COMPOSITE1,
969                         .vmux   = 1,
970                 },{
971                         .type   = CX88_VMUX_SVIDEO,
972                         .vmux   = 2,
973                 }},
974                 .mpeg           = CX88_MPEG_DVB,
975         },
976         [CX88_BOARD_HAUPPAUGE_NOVASE2_S1] = {
977                 .name           = "Hauppauge Nova-SE2 DVB-S",
978                 .tuner_type     = TUNER_ABSENT,
979                 .radio_type     = UNSET,
980                 .tuner_addr     = ADDR_UNSET,
981                 .radio_addr     = ADDR_UNSET,
982                 .input          = {{
983                         .type   = CX88_VMUX_DVB,
984                         .vmux   = 0,
985                 }},
986                 .mpeg           = CX88_MPEG_DVB,
987         },
988         [CX88_BOARD_KWORLD_DVBS_100] = {
989                 .name           = "KWorld DVB-S 100",
990                 .tuner_type     = TUNER_ABSENT,
991                 .radio_type     = UNSET,
992                 .tuner_addr     = ADDR_UNSET,
993                 .radio_addr     = ADDR_UNSET,
994                 .input          = {{
995                         .type   = CX88_VMUX_DVB,
996                         .vmux   = 0,
997                 },{
998                         .type   = CX88_VMUX_COMPOSITE1,
999                         .vmux   = 1,
1000                 },{
1001                         .type   = CX88_VMUX_SVIDEO,
1002                         .vmux   = 2,
1003                 }},
1004                 .mpeg           = CX88_MPEG_DVB,
1005         },
1006         [CX88_BOARD_HAUPPAUGE_HVR1100] = {
1007                 .name           = "Hauppauge WinTV-HVR1100 DVB-T/Hybrid",
1008                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1009                 .radio_type     = UNSET,
1010                 .tuner_addr     = ADDR_UNSET,
1011                 .radio_addr     = ADDR_UNSET,
1012                 .tda9887_conf   = TDA9887_PRESENT,
1013                 .input          = {{
1014                         .type   = CX88_VMUX_TELEVISION,
1015                         .vmux   = 0,
1016                 },{
1017                         .type   = CX88_VMUX_COMPOSITE1,
1018                         .vmux   = 1,
1019                 },{
1020                         .type   = CX88_VMUX_SVIDEO,
1021                         .vmux   = 2,
1022                 }},
1023                 /* fixme: Add radio support */
1024                 .mpeg           = CX88_MPEG_DVB,
1025         },
1026         [CX88_BOARD_HAUPPAUGE_HVR1100LP] = {
1027                 .name           = "Hauppauge WinTV-HVR1100 DVB-T/Hybrid (Low Profile)",
1028                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1029                 .radio_type     = UNSET,
1030                 .tuner_addr     = ADDR_UNSET,
1031                 .radio_addr     = ADDR_UNSET,
1032                 .tda9887_conf   = TDA9887_PRESENT,
1033                 .input          = {{
1034                         .type   = CX88_VMUX_TELEVISION,
1035                         .vmux   = 0,
1036                 },{
1037                         .type   = CX88_VMUX_COMPOSITE1,
1038                         .vmux   = 1,
1039                 }},
1040                 /* fixme: Add radio support */
1041                 .mpeg           = CX88_MPEG_DVB,
1042         },
1043         [CX88_BOARD_DNTV_LIVE_DVB_T_PRO] = {
1044                 .name           = "digitalnow DNTV Live! DVB-T Pro",
1045                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1046                 .radio_type     = UNSET,
1047                 .tuner_addr     = ADDR_UNSET,
1048                 .radio_addr     = ADDR_UNSET,
1049                 .tda9887_conf   = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1050                                   TDA9887_PORT2_ACTIVE,
1051                 .input          = {{
1052                         .type   = CX88_VMUX_TELEVISION,
1053                         .vmux   = 0,
1054                         .gpio0  = 0xf80808,
1055                 },{
1056                         .type   = CX88_VMUX_COMPOSITE1,
1057                         .vmux   = 1,
1058                         .gpio0  = 0xf80808,
1059                 },{
1060                         .type   = CX88_VMUX_SVIDEO,
1061                         .vmux   = 2,
1062                         .gpio0  = 0xf80808,
1063                 }},
1064                 .radio = {
1065                          .type  = CX88_RADIO,
1066                          .gpio0 = 0xf80808,
1067                 },
1068                 .mpeg           = CX88_MPEG_DVB,
1069         },
1070         [CX88_BOARD_KWORLD_DVB_T_CX22702] = {
1071                 /* Kworld V-stream Xpert DVB-T with Thomson tuner */
1072                 /* DTT 7579 Conexant CX22702-19 Conexant CX2388x  */
1073                 /* Manenti Marco <marco_manenti@colman.it> */
1074                 .name           = "KWorld/VStream XPert DVB-T with cx22702",
1075                 .tuner_type     = TUNER_ABSENT,
1076                 .radio_type     = UNSET,
1077                 .tuner_addr     = ADDR_UNSET,
1078                 .radio_addr     = ADDR_UNSET,
1079                 .input          = {{
1080                         .type   = CX88_VMUX_COMPOSITE1,
1081                         .vmux   = 1,
1082                         .gpio0  = 0x0700,
1083                         .gpio2  = 0x0101,
1084                 },{
1085                         .type   = CX88_VMUX_SVIDEO,
1086                         .vmux   = 2,
1087                         .gpio0  = 0x0700,
1088                         .gpio2  = 0x0101,
1089                 }},
1090                 .mpeg           = CX88_MPEG_DVB,
1091         },
1092         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL] = {
1093                 .name           = "DViCO FusionHDTV DVB-T Dual Digital",
1094                 .tuner_type     = TUNER_ABSENT, /* No analog tuner */
1095                 .radio_type     = UNSET,
1096                 .tuner_addr     = ADDR_UNSET,
1097                 .radio_addr     = ADDR_UNSET,
1098                 .input          = {{
1099                         .type   = CX88_VMUX_COMPOSITE1,
1100                         .vmux   = 1,
1101                         .gpio0  = 0x000067df,
1102                  },{
1103                         .type   = CX88_VMUX_SVIDEO,
1104                         .vmux   = 2,
1105                         .gpio0  = 0x000067df,
1106                 }},
1107                 .mpeg           = CX88_MPEG_DVB,
1108         },
1109         [CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT] = {
1110                 .name           = "KWorld HardwareMpegTV XPert",
1111                 .tuner_type     = TUNER_PHILIPS_TDA8290,
1112                 .radio_type     = UNSET,
1113                 .tuner_addr     = ADDR_UNSET,
1114                 .radio_addr     = ADDR_UNSET,
1115                 .input          = {{
1116                         .type   = CX88_VMUX_TELEVISION,
1117                         .vmux   = 0,
1118                         .gpio0  = 0x3de2,
1119                         .gpio2  = 0x00ff,
1120                 },{
1121                         .type   = CX88_VMUX_COMPOSITE1,
1122                         .vmux   = 1,
1123                         .gpio0  = 0x3de6,
1124                         .audioroute = 1,
1125                 },{
1126                         .type   = CX88_VMUX_SVIDEO,
1127                         .vmux   = 2,
1128                         .gpio0  = 0x3de6,
1129                         .audioroute = 1,
1130                 }},
1131                 .radio = {
1132                         .type   = CX88_RADIO,
1133                         .gpio0  = 0x3de6,
1134                         .gpio2  = 0x00ff,
1135                 },
1136                 .mpeg           = CX88_MPEG_BLACKBIRD,
1137         },
1138         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID] = {
1139                 .name           = "DViCO FusionHDTV DVB-T Hybrid",
1140                 .tuner_type     = TUNER_THOMSON_FE6600,
1141                 .radio_type     = UNSET,
1142                 .tuner_addr     = ADDR_UNSET,
1143                 .radio_addr     = ADDR_UNSET,
1144                 .input          = {{
1145                         .type   = CX88_VMUX_TELEVISION,
1146                         .vmux   = 0,
1147                         .gpio0  = 0x0000a75f,
1148                 },{
1149                         .type   = CX88_VMUX_COMPOSITE1,
1150                         .vmux   = 1,
1151                         .gpio0  = 0x0000a75b,
1152                 },{
1153                         .type   = CX88_VMUX_SVIDEO,
1154                         .vmux   = 2,
1155                         .gpio0  = 0x0000a75b,
1156                 }},
1157                 .mpeg           = CX88_MPEG_DVB,
1158         },
1159         [CX88_BOARD_PCHDTV_HD5500] = {
1160                 .name           = "pcHDTV HD5500 HDTV",
1161                 .tuner_type     = TUNER_LG_TDVS_H06XF, /* TDVS-H064F */
1162                 .radio_type     = UNSET,
1163                 .tuner_addr     = ADDR_UNSET,
1164                 .radio_addr     = ADDR_UNSET,
1165                 .tda9887_conf   = TDA9887_PRESENT,
1166                 .input          = {{
1167                         .type   = CX88_VMUX_TELEVISION,
1168                         .vmux   = 0,
1169                         .gpio0  = 0x87fd,
1170                 },{
1171                         .type   = CX88_VMUX_COMPOSITE1,
1172                         .vmux   = 1,
1173                         .gpio0  = 0x87f9,
1174                 },{
1175                         .type   = CX88_VMUX_SVIDEO,
1176                         .vmux   = 2,
1177                         .gpio0  = 0x87f9,
1178                 }},
1179                 .mpeg           = CX88_MPEG_DVB,
1180         },
1181         [CX88_BOARD_KWORLD_MCE200_DELUXE] = {
1182                 /* FIXME: tested TV input only, disabled composite,
1183                    svideo and radio until they can be tested also. */
1184                 .name           = "Kworld MCE 200 Deluxe",
1185                 .tuner_type     = TUNER_TENA_9533_DI,
1186                 .radio_type     = UNSET,
1187                 .tda9887_conf   = TDA9887_PRESENT,
1188                 .tuner_addr     = ADDR_UNSET,
1189                 .radio_addr     = ADDR_UNSET,
1190                 .input          = {{
1191                         .type   = CX88_VMUX_TELEVISION,
1192                         .vmux   = 0,
1193                         .gpio0  = 0x0000BDE6
1194                 }},
1195                 .mpeg           = CX88_MPEG_BLACKBIRD,
1196         },
1197         [CX88_BOARD_PIXELVIEW_PLAYTV_P7000] = {
1198                 /* FIXME: SVideo, Composite and FM inputs are untested */
1199                 .name           = "PixelView PlayTV P7000",
1200                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
1201                 .radio_type     = UNSET,
1202                 .tuner_addr     = ADDR_UNSET,
1203                 .radio_addr     = ADDR_UNSET,
1204                 .tda9887_conf   = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1205                                   TDA9887_PORT2_ACTIVE,
1206                 .input          = {{
1207                         .type   = CX88_VMUX_TELEVISION,
1208                         .vmux   = 0,
1209                         .gpio0  = 0x5da6,
1210                 }},
1211                 .mpeg           = CX88_MPEG_BLACKBIRD,
1212         },
1213         [CX88_BOARD_NPGTECH_REALTV_TOP10FM] = {
1214                 .name           = "NPG Tech Real TV FM Top 10",
1215                 .tuner_type     = TUNER_TNF_5335MF, /* Actually a TNF9535 */
1216                 .radio_type     = UNSET,
1217                 .tuner_addr     = ADDR_UNSET,
1218                 .radio_addr     = ADDR_UNSET,
1219                 .input          = {{
1220                         .type   = CX88_VMUX_TELEVISION,
1221                         .vmux   = 0,
1222                         .gpio0  = 0x0788,
1223                 },{
1224                         .type   = CX88_VMUX_COMPOSITE1,
1225                         .vmux   = 1,
1226                         .gpio0  = 0x078b,
1227                 },{
1228                         .type   = CX88_VMUX_SVIDEO,
1229                         .vmux   = 2,
1230                         .gpio0  = 0x078b,
1231                 }},
1232                 .radio = {
1233                          .type  = CX88_RADIO,
1234                          .gpio0 = 0x074a,
1235                 },
1236         },
1237         [CX88_BOARD_WINFAST_DTV2000H] = {
1238                 /* video inputs and radio still in testing */
1239                 .name           = "WinFast DTV2000 H",
1240                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1241                 .radio_type     = UNSET,
1242                 .tuner_addr     = ADDR_UNSET,
1243                 .radio_addr     = ADDR_UNSET,
1244                 .tda9887_conf   = TDA9887_PRESENT,
1245                 .input          = {{
1246                         .type   = CX88_VMUX_TELEVISION,
1247                         .vmux   = 0,
1248                         .gpio0  = 0x00017304,
1249                         .gpio1  = 0x00008203,
1250                         .gpio2  = 0x00017304,
1251                         .gpio3  = 0x02000000,
1252                 }},
1253                 .mpeg           = CX88_MPEG_DVB,
1254         },
1255         [CX88_BOARD_GENIATECH_DVBS] = {
1256                 .name          = "Geniatech DVB-S",
1257                 .tuner_type    = TUNER_ABSENT,
1258                 .radio_type    = UNSET,
1259                 .tuner_addr    = ADDR_UNSET,
1260                 .radio_addr    = ADDR_UNSET,
1261                 .input  = {{
1262                         .type  = CX88_VMUX_DVB,
1263                         .vmux  = 0,
1264                 },{
1265                         .type  = CX88_VMUX_COMPOSITE1,
1266                         .vmux  = 1,
1267                 }},
1268                 .mpeg           = CX88_MPEG_DVB,
1269         },
1270         [CX88_BOARD_HAUPPAUGE_HVR3000] = {
1271                 /* FIXME: Add dvb & radio support */
1272                 .name           = "Hauppauge WinTV-HVR3000 TriMode Analog/DVB-S/DVB-T",
1273                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1274                 .radio_type     = UNSET,
1275                 .tuner_addr     = ADDR_UNSET,
1276                 .radio_addr     = ADDR_UNSET,
1277                 .tda9887_conf   = TDA9887_PRESENT,
1278                 .input          = {{
1279                         .type   = CX88_VMUX_TELEVISION,
1280                         .vmux   = 0,
1281                         .gpio0  = 0x84bf,
1282                 },{
1283                         .type   = CX88_VMUX_COMPOSITE1,
1284                         .vmux   = 1,
1285                         .gpio0  = 0x84bf,
1286                 },{
1287                         .type   = CX88_VMUX_SVIDEO,
1288                         .vmux   = 2,
1289                         .gpio0  = 0x84bf,
1290                 }},
1291                 .mpeg           = CX88_MPEG_DVB,
1292         },
1293         [CX88_BOARD_NORWOOD_MICRO] = {
1294                 .name           = "Norwood Micro TV Tuner",
1295                 .tuner_type     = TUNER_TNF_5335MF,
1296                 .radio_type     = UNSET,
1297                 .tuner_addr     = ADDR_UNSET,
1298                 .radio_addr     = ADDR_UNSET,
1299                 .input          = {{
1300                         .type   = CX88_VMUX_TELEVISION,
1301                         .vmux   = 0,
1302                         .gpio0  = 0x0709,
1303                 },{
1304                         .type   = CX88_VMUX_COMPOSITE1,
1305                         .vmux   = 1,
1306                         .gpio0  = 0x070b,
1307                 },{
1308                         .type   = CX88_VMUX_SVIDEO,
1309                         .vmux   = 2,
1310                         .gpio0  = 0x070b,
1311                 }},
1312         },
1313         [CX88_BOARD_TE_DTV_250_OEM_SWANN] = {
1314                 .name           = "Shenzhen Tungsten Ages Tech TE-DTV-250 / Swann OEM",
1315                 .tuner_type     = TUNER_LG_PAL_NEW_TAPC,
1316                 .radio_type     = UNSET,
1317                 .tuner_addr     = ADDR_UNSET,
1318                 .radio_addr     = ADDR_UNSET,
1319                 .input          = {{
1320                         .type   = CX88_VMUX_TELEVISION,
1321                         .vmux   = 0,
1322                         .gpio0  = 0x003fffff,
1323                         .gpio1  = 0x00e00000,
1324                         .gpio2  = 0x003fffff,
1325                         .gpio3  = 0x02000000,
1326                 },{
1327                         .type   = CX88_VMUX_COMPOSITE1,
1328                         .vmux   = 1,
1329                         .gpio0  = 0x003fffff,
1330                         .gpio1  = 0x00e00000,
1331                         .gpio2  = 0x003fffff,
1332                         .gpio3  = 0x02000000,
1333                 },{
1334                         .type   = CX88_VMUX_SVIDEO,
1335                         .vmux   = 2,
1336                         .gpio0  = 0x003fffff,
1337                         .gpio1  = 0x00e00000,
1338                         .gpio2  = 0x003fffff,
1339                         .gpio3  = 0x02000000,
1340                 }},
1341         },
1342         [CX88_BOARD_HAUPPAUGE_HVR1300] = {
1343                 .name           = "Hauppauge WinTV-HVR1300 DVB-T/Hybrid MPEG Encoder",
1344                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1345                 .radio_type     = UNSET,
1346                 .tuner_addr     = ADDR_UNSET,
1347                 .radio_addr     = ADDR_UNSET,
1348                 .tda9887_conf   = TDA9887_PRESENT,
1349                 .audio_chip     = AUDIO_CHIP_WM8775,
1350                 .input          = {{
1351                         .type   = CX88_VMUX_TELEVISION,
1352                         .vmux   = 0,
1353                         .gpio0  = 0xe780,
1354                         .audioroute = 1,
1355                 },{
1356                         .type   = CX88_VMUX_COMPOSITE1,
1357                         .vmux   = 1,
1358                         .gpio0  = 0xe780,
1359                         .audioroute = 2,
1360                 },{
1361                         .type   = CX88_VMUX_SVIDEO,
1362                         .vmux   = 2,
1363                         .gpio0  = 0xe780,
1364                         .audioroute = 2,
1365                 }},
1366                 /* fixme: Add radio support */
1367                 .mpeg           = CX88_MPEG_DVB | CX88_MPEG_BLACKBIRD,
1368         },
1369         [CX88_BOARD_ADSTECH_PTV_390] = {
1370                 .name           = "ADS Tech Instant Video PCI",
1371                 .tuner_type     = TUNER_ABSENT,
1372                 .radio_type     = UNSET,
1373                 .tuner_addr     = ADDR_UNSET,
1374                 .radio_addr     = ADDR_UNSET,
1375                 .input          = {{
1376                         .type   = CX88_VMUX_DEBUG,
1377                         .vmux   = 3,
1378                         .gpio0  = 0x04ff,
1379                 },{
1380                         .type   = CX88_VMUX_COMPOSITE1,
1381                         .vmux   = 1,
1382                         .gpio0  = 0x07fa,
1383                 },{
1384                         .type   = CX88_VMUX_SVIDEO,
1385                         .vmux   = 2,
1386                         .gpio0  = 0x07fa,
1387                 }},
1388         },
1389         [CX88_BOARD_PINNACLE_PCTV_HD_800i] = {
1390                 .name           = "Pinnacle PCTV HD 800i",
1391                 .tuner_type     = TUNER_XC5000,
1392                 .radio_type     = UNSET,
1393                 .tuner_addr     = ADDR_UNSET,
1394                 .radio_addr     = ADDR_UNSET,
1395                 .input          = {{
1396                         .type   = CX88_VMUX_TELEVISION,
1397                         .vmux   = 0,
1398                         .gpio0  = 0x04fb,
1399                         .gpio1  = 0x10ff,
1400                 },{
1401                         .type   = CX88_VMUX_COMPOSITE1,
1402                         .vmux   = 1,
1403                         .gpio0  = 0x04fb,
1404                         .gpio1  = 0x10ef,
1405                         .audioroute = 1,
1406                 },{
1407                         .type   = CX88_VMUX_SVIDEO,
1408                         .vmux   = 2,
1409                         .gpio0  = 0x04fb,
1410                         .gpio1  = 0x10ef,
1411                         .audioroute = 1,
1412                 }},
1413                 .mpeg           = CX88_MPEG_DVB,
1414         },
1415         [CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO] = {
1416                 .name           = "DViCO FusionHDTV 5 PCI nano",
1417                 /* xc3008 tuner, digital only for now */
1418                 .tuner_type     = TUNER_ABSENT,
1419                 .radio_type     = UNSET,
1420                 .tuner_addr     = ADDR_UNSET,
1421                 .radio_addr     = ADDR_UNSET,
1422                 .input          = {{
1423                         .type   = CX88_VMUX_TELEVISION,
1424                         .vmux   = 0,
1425                         .gpio0  = 0x000027df, /* Unconfirmed */
1426                 }, {
1427                         .type   = CX88_VMUX_COMPOSITE1,
1428                         .vmux   = 1,
1429                         .gpio0  = 0x000027df, /* Unconfirmed */
1430                         .audioroute = 1,
1431                 }, {
1432                         .type   = CX88_VMUX_SVIDEO,
1433                         .vmux   = 2,
1434                         .gpio0  = 0x000027df, /* Unconfirmed */
1435                         .audioroute = 1,
1436                 } },
1437                 .mpeg           = CX88_MPEG_DVB,
1438         },
1439         [CX88_BOARD_PINNACLE_HYBRID_PCTV] = {
1440                .name           = "Pinnacle Hybrid PCTV",
1441                .tuner_type     = TUNER_XC2028,
1442                .tuner_addr     = 0x61,
1443                .input          = { {
1444                        .type   = CX88_VMUX_TELEVISION,
1445                        .vmux   = 0,
1446                }, {
1447                        .type   = CX88_VMUX_COMPOSITE1,
1448                        .vmux   = 1,
1449                }, {
1450                        .type   = CX88_VMUX_SVIDEO,
1451                        .vmux   = 2,
1452                } },
1453                .radio = {
1454                        .type   = CX88_RADIO,
1455                        .gpio0  = 0x004ff,
1456                        .gpio1  = 0x010ff,
1457                        .gpio2  = 0x0ff,
1458                },
1459        },
1460        [CX88_BOARD_WINFAST_TV2000_XP_GLOBAL] = {
1461                .name           = "Winfast TV2000 XP Global",
1462                .tuner_type     = TUNER_XC2028,
1463                .tuner_addr     = 0x61,
1464                .input          = { {
1465                        .type   = CX88_VMUX_TELEVISION,
1466                        .vmux   = 0,
1467                        .gpio0  = 0x0400, /* pin 2:mute = 0 (off?) */
1468                        .gpio1  = 0x0000,
1469                        .gpio2  = 0x0800, /* pin 19:audio = 0 (tv) */
1470
1471                }, {
1472                        .type   = CX88_VMUX_COMPOSITE1,
1473                        .vmux   = 1,
1474                        .gpio0  = 0x0400, /* probably?  or 0x0404 to turn mute on */
1475                        .gpio1  = 0x0000,
1476                        .gpio2  = 0x0808, /* pin 19:audio = 1 (line) */
1477
1478                }, {
1479                        .type   = CX88_VMUX_SVIDEO,
1480                        .vmux   = 2,
1481                } },
1482                .radio = {
1483                        .type   = CX88_RADIO,
1484                        .gpio0  = 0x004ff,
1485                        .gpio1  = 0x010ff,
1486                        .gpio2  = 0x0ff,
1487                },
1488        },
1489        [CX88_BOARD_POWERCOLOR_REAL_ANGEL] = {
1490                .name           = "PowerColor Real Angel 330",
1491                .tuner_type     = TUNER_XC2028,
1492                .tuner_addr     = 0x61,
1493                .input          = { {
1494                        .type   = CX88_VMUX_TELEVISION,
1495                        .vmux   = 0,
1496                        .gpio0 = 0x0400, /* pin 2:mute = 0 (off?) */
1497                        .gpio1 = 0xf35d,
1498                        .gpio2 = 0x0800, /* pin 19:audio = 0 (tv) */
1499                }, {
1500                        .type   = CX88_VMUX_COMPOSITE1,
1501                        .vmux   = 1,
1502                        .gpio0 = 0x0400, /* probably?  or 0x0404 to turn mute on */
1503                        .gpio1 = 0x0000,
1504                        .gpio2 = 0x0808, /* pin 19:audio = 1 (line) */
1505                }, {
1506                        .type   = CX88_VMUX_SVIDEO,
1507                        .vmux   = 2,
1508                        .gpio0  = 0x000ff,
1509                        .gpio1  = 0x0f37d,
1510                        .gpio2  = 0x00019,
1511                        .gpio3  = 0x00000,
1512                } },
1513                .radio = {
1514                        .type   = CX88_RADIO,
1515                        .gpio0  = 0x000ff,
1516                        .gpio1  = 0x0f35d,
1517                        .gpio2  = 0x00019,
1518                        .gpio3  = 0x00000,
1519                },
1520        },
1521        [CX88_BOARD_GENIATECH_X8000_MT] = {
1522                 /* Also PowerColor Real Angel 330 and Geniatech X800 OEM */
1523                .name           = "Geniatech X8000-MT DVBT",
1524                .tuner_type     = TUNER_XC2028,
1525                .tuner_addr     = 0x61,
1526                .input          = { {
1527                        .type   = CX88_VMUX_TELEVISION,
1528                        .vmux   = 0,
1529                        .gpio0  = 0x00000000,
1530                        .gpio1  = 0x00e3e341,
1531                        .gpio2  = 0x00000000,
1532                        .gpio3  = 0x00000000,
1533                }, {
1534                        .type   = CX88_VMUX_COMPOSITE1,
1535                        .vmux   = 1,
1536                        .gpio0  = 0x00000000,
1537                        .gpio1  = 0x00e3e361,
1538                        .gpio2  = 0x00000000,
1539                        .gpio3  = 0x00000000,
1540                }, {
1541                        .type   = CX88_VMUX_SVIDEO,
1542                        .vmux   = 2,
1543                        .gpio0  = 0x00000000,
1544                        .gpio1  = 0x00e3e361,
1545                        .gpio2  = 0x00000000,
1546                        .gpio3  = 0x00000000,
1547                } },
1548                .radio = {
1549                        .type   = CX88_RADIO,
1550                        .gpio0  = 0x00000000,
1551                        .gpio1  = 0x00e3e341,
1552                        .gpio2  = 0x00000000,
1553                        .gpio3  = 0x00000000,
1554                },
1555                .mpeg           = CX88_MPEG_DVB,
1556        },
1557        [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO] = {
1558                .name           = "DViCO FusionHDTV DVB-T PRO",
1559                .tuner_type     = TUNER_ABSENT, /* XXX: Has XC3028 */
1560                .radio_type     = UNSET,
1561                .tuner_addr     = ADDR_UNSET,
1562                .radio_addr     = ADDR_UNSET,
1563                .input          = { {
1564                        .type   = CX88_VMUX_COMPOSITE1,
1565                        .vmux   = 1,
1566                        .gpio0  = 0x000067df,
1567                 }, {
1568                        .type   = CX88_VMUX_SVIDEO,
1569                        .vmux   = 2,
1570                        .gpio0  = 0x000067df,
1571                } },
1572                .mpeg           = CX88_MPEG_DVB,
1573        },
1574 };
1575
1576 /* ------------------------------------------------------------------ */
1577 /* PCI subsystem IDs                                                  */
1578
1579 static const struct cx88_subid cx88_subids[] = {
1580         {
1581                 .subvendor = 0x0070,
1582                 .subdevice = 0x3400,
1583                 .card      = CX88_BOARD_HAUPPAUGE,
1584         },{
1585                 .subvendor = 0x0070,
1586                 .subdevice = 0x3401,
1587                 .card      = CX88_BOARD_HAUPPAUGE,
1588         },{
1589                 .subvendor = 0x14c7,
1590                 .subdevice = 0x0106,
1591                 .card      = CX88_BOARD_GDI,
1592         },{
1593                 .subvendor = 0x14c7,
1594                 .subdevice = 0x0107, /* with mpeg encoder */
1595                 .card      = CX88_BOARD_GDI,
1596         },{
1597                 .subvendor = PCI_VENDOR_ID_ATI,
1598                 .subdevice = 0x00f8,
1599                 .card      = CX88_BOARD_ATI_WONDER_PRO,
1600         },{
1601                 .subvendor = 0x107d,
1602                 .subdevice = 0x6611,
1603                 .card      = CX88_BOARD_WINFAST2000XP_EXPERT,
1604         },{
1605                 .subvendor = 0x107d,
1606                 .subdevice = 0x6613,    /* NTSC */
1607                 .card      = CX88_BOARD_WINFAST2000XP_EXPERT,
1608         },{
1609                 .subvendor = 0x107d,
1610                 .subdevice = 0x6620,
1611                 .card      = CX88_BOARD_WINFAST_DV2000,
1612         },{
1613                 .subvendor = 0x107d,
1614                 .subdevice = 0x663b,
1615                 .card      = CX88_BOARD_LEADTEK_PVR2000,
1616         },{
1617                 .subvendor = 0x107d,
1618                 .subdevice = 0x663c,
1619                 .card      = CX88_BOARD_LEADTEK_PVR2000,
1620         },{
1621                 .subvendor = 0x1461,
1622                 .subdevice = 0x000b,
1623                 .card      = CX88_BOARD_AVERTV_STUDIO_303,
1624         },{
1625                 .subvendor = 0x1462,
1626                 .subdevice = 0x8606,
1627                 .card      = CX88_BOARD_MSI_TVANYWHERE_MASTER,
1628         },{
1629                 .subvendor = 0x10fc,
1630                 .subdevice = 0xd003,
1631                 .card      = CX88_BOARD_IODATA_GVVCP3PCI,
1632         },{
1633                 .subvendor = 0x1043,
1634                 .subdevice = 0x4823,  /* with mpeg encoder */
1635                 .card      = CX88_BOARD_ASUS_PVR_416,
1636         },{
1637                 .subvendor = 0x17de,
1638                 .subdevice = 0x08a6,
1639                 .card      = CX88_BOARD_KWORLD_DVB_T,
1640         },{
1641                 .subvendor = 0x18ac,
1642                 .subdevice = 0xd810,
1643                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
1644         },{
1645                 .subvendor = 0x18ac,
1646                 .subdevice = 0xd820,
1647                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T,
1648         },{
1649                 .subvendor = 0x18ac,
1650                 .subdevice = 0xdb00,
1651                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1,
1652         },{
1653                 .subvendor = 0x0070,
1654                 .subdevice = 0x9002,
1655                 .card      = CX88_BOARD_HAUPPAUGE_DVB_T1,
1656         },{
1657                 .subvendor = 0x14f1,
1658                 .subdevice = 0x0187,
1659                 .card      = CX88_BOARD_CONEXANT_DVB_T1,
1660         },{
1661                 .subvendor = 0x1540,
1662                 .subdevice = 0x2580,
1663                 .card      = CX88_BOARD_PROVIDEO_PV259,
1664         },{
1665                 .subvendor = 0x18ac,
1666                 .subdevice = 0xdb10,
1667                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
1668         },{
1669                 .subvendor = 0x1554,
1670                 .subdevice = 0x4811,
1671                 .card      = CX88_BOARD_PIXELVIEW,
1672         },{
1673                 .subvendor = 0x7063,
1674                 .subdevice = 0x3000, /* HD-3000 card */
1675                 .card      = CX88_BOARD_PCHDTV_HD3000,
1676         },{
1677                 .subvendor = 0x17de,
1678                 .subdevice = 0xa8a6,
1679                 .card      = CX88_BOARD_DNTV_LIVE_DVB_T,
1680         },{
1681                 .subvendor = 0x0070,
1682                 .subdevice = 0x2801,
1683                 .card      = CX88_BOARD_HAUPPAUGE_ROSLYN,
1684         },{
1685                 .subvendor = 0x14f1,
1686                 .subdevice = 0x0342,
1687                 .card      = CX88_BOARD_DIGITALLOGIC_MEC,
1688         },{
1689                 .subvendor = 0x10fc,
1690                 .subdevice = 0xd035,
1691                 .card      = CX88_BOARD_IODATA_GVBCTV7E,
1692         },{
1693                 .subvendor = 0x1421,
1694                 .subdevice = 0x0334,
1695                 .card      = CX88_BOARD_ADSTECH_DVB_T_PCI,
1696         },{
1697                 .subvendor = 0x153b,
1698                 .subdevice = 0x1166,
1699                 .card      = CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1,
1700         },{
1701                 .subvendor = 0x18ac,
1702                 .subdevice = 0xd500,
1703                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD,
1704         },{
1705                 .subvendor = 0x1461,
1706                 .subdevice = 0x8011,
1707                 .card      = CX88_BOARD_AVERMEDIA_ULTRATV_MC_550,
1708         },{
1709                 .subvendor = PCI_VENDOR_ID_ATI,
1710                 .subdevice = 0xa101,
1711                 .card      = CX88_BOARD_ATI_HDTVWONDER,
1712         },{
1713                 .subvendor = 0x107d,
1714                 .subdevice = 0x665f,
1715                 .card      = CX88_BOARD_WINFAST_DTV1000,
1716         },{
1717                 .subvendor = 0x1461,
1718                 .subdevice = 0x000a,
1719                 .card      = CX88_BOARD_AVERTV_303,
1720         },{
1721                 .subvendor = 0x0070,
1722                 .subdevice = 0x9200,
1723                 .card      = CX88_BOARD_HAUPPAUGE_NOVASE2_S1,
1724         },{
1725                 .subvendor = 0x0070,
1726                 .subdevice = 0x9201,
1727                 .card      = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
1728         },{
1729                 .subvendor = 0x0070,
1730                 .subdevice = 0x9202,
1731                 .card      = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
1732         },{
1733                 .subvendor = 0x17de,
1734                 .subdevice = 0x08b2,
1735                 .card      = CX88_BOARD_KWORLD_DVBS_100,
1736         },{
1737                 .subvendor = 0x0070,
1738                 .subdevice = 0x9400,
1739                 .card      = CX88_BOARD_HAUPPAUGE_HVR1100,
1740         },{
1741                 .subvendor = 0x0070,
1742                 .subdevice = 0x9402,
1743                 .card      = CX88_BOARD_HAUPPAUGE_HVR1100,
1744         },{
1745                 .subvendor = 0x0070,
1746                 .subdevice = 0x9800,
1747                 .card      = CX88_BOARD_HAUPPAUGE_HVR1100LP,
1748         },{
1749                 .subvendor = 0x0070,
1750                 .subdevice = 0x9802,
1751                 .card      = CX88_BOARD_HAUPPAUGE_HVR1100LP,
1752         },{
1753                 .subvendor = 0x0070,
1754                 .subdevice = 0x9001,
1755                 .card      = CX88_BOARD_HAUPPAUGE_DVB_T1,
1756         },{
1757                 .subvendor = 0x1822,
1758                 .subdevice = 0x0025,
1759                 .card      = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
1760         },{
1761                 .subvendor = 0x17de,
1762                 .subdevice = 0x08a1,
1763                 .card      = CX88_BOARD_KWORLD_DVB_T_CX22702,
1764         },{
1765                 .subvendor = 0x18ac,
1766                 .subdevice = 0xdb50,
1767                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL,
1768         },{
1769                 .subvendor = 0x18ac,
1770                 .subdevice = 0xdb54,
1771                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL,
1772                 /* Re-branded DViCO: DigitalNow DVB-T Dual */
1773         },{
1774                 .subvendor = 0x18ac,
1775                 .subdevice = 0xdb11,
1776                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
1777                 /* Re-branded DViCO: UltraView DVB-T Plus */
1778         }, {
1779                 .subvendor = 0x18ac,
1780                 .subdevice = 0xdb30,
1781                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO,
1782         }, {
1783                 .subvendor = 0x17de,
1784                 .subdevice = 0x0840,
1785                 .card      = CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT,
1786         },{
1787                 .subvendor = 0x1421,
1788                 .subdevice = 0x0305,
1789                 .card      = CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT,
1790         },{
1791                 .subvendor = 0x18ac,
1792                 .subdevice = 0xdb40,
1793                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID,
1794         },{
1795                 .subvendor = 0x18ac,
1796                 .subdevice = 0xdb44,
1797                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID,
1798         },{
1799                 .subvendor = 0x7063,
1800                 .subdevice = 0x5500,
1801                 .card      = CX88_BOARD_PCHDTV_HD5500,
1802         },{
1803                 .subvendor = 0x17de,
1804                 .subdevice = 0x0841,
1805                 .card      = CX88_BOARD_KWORLD_MCE200_DELUXE,
1806         },{
1807                 .subvendor = 0x1822,
1808                 .subdevice = 0x0019,
1809                 .card      = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
1810         },{
1811                 .subvendor = 0x1554,
1812                 .subdevice = 0x4813,
1813                 .card      = CX88_BOARD_PIXELVIEW_PLAYTV_P7000,
1814         },{
1815                 .subvendor = 0x14f1,
1816                 .subdevice = 0x0842,
1817                 .card      = CX88_BOARD_NPGTECH_REALTV_TOP10FM,
1818         },{
1819                 .subvendor = 0x107d,
1820                 .subdevice = 0x665e,
1821                 .card      = CX88_BOARD_WINFAST_DTV2000H,
1822         },{
1823                 .subvendor = 0x18ac,
1824                 .subdevice = 0xd800, /* FusionHDTV 3 Gold (original revision) */
1825                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
1826         },{
1827                 .subvendor = 0x14f1,
1828                 .subdevice = 0x0084,
1829                 .card      = CX88_BOARD_GENIATECH_DVBS,
1830         },{
1831                 .subvendor = 0x0070,
1832                 .subdevice = 0x1404,
1833                 .card      = CX88_BOARD_HAUPPAUGE_HVR3000,
1834         },{
1835                 .subvendor = 0x1461,
1836                 .subdevice = 0xc111, /* AverMedia M150-D */
1837                 /* This board is known to work with the ASUS PVR416 config */
1838                 .card      = CX88_BOARD_ASUS_PVR_416,
1839         },{
1840                 .subvendor = 0xc180,
1841                 .subdevice = 0xc980,
1842                 .card      = CX88_BOARD_TE_DTV_250_OEM_SWANN,
1843         },{
1844                 .subvendor = 0x0070,
1845                 .subdevice = 0x9600,
1846                 .card      = CX88_BOARD_HAUPPAUGE_HVR1300,
1847         },{
1848                 .subvendor = 0x0070,
1849                 .subdevice = 0x9601,
1850                 .card      = CX88_BOARD_HAUPPAUGE_HVR1300,
1851         },{
1852                 .subvendor = 0x0070,
1853                 .subdevice = 0x9602,
1854                 .card      = CX88_BOARD_HAUPPAUGE_HVR1300,
1855         },{
1856                 .subvendor = 0x107d,
1857                 .subdevice = 0x6632,
1858                 .card      = CX88_BOARD_LEADTEK_PVR2000,
1859         },{
1860                 .subvendor = 0x12ab,
1861                 .subdevice = 0x2300, /* Club3D Zap TV2100 */
1862                 .card      = CX88_BOARD_KWORLD_DVB_T_CX22702,
1863         },{
1864                 .subvendor = 0x0070,
1865                 .subdevice = 0x9000,
1866                 .card      = CX88_BOARD_HAUPPAUGE_DVB_T1,
1867         },{
1868                 .subvendor = 0x0070,
1869                 .subdevice = 0x1400,
1870                 .card      = CX88_BOARD_HAUPPAUGE_HVR3000,
1871         },{
1872                 .subvendor = 0x0070,
1873                 .subdevice = 0x1401,
1874                 .card      = CX88_BOARD_HAUPPAUGE_HVR3000,
1875         },{
1876                 .subvendor = 0x0070,
1877                 .subdevice = 0x1402,
1878                 .card      = CX88_BOARD_HAUPPAUGE_HVR3000,
1879         },{
1880                 .subvendor = 0x1421,
1881                 .subdevice = 0x0341, /* ADS Tech InstantTV DVB-S */
1882                 .card      = CX88_BOARD_KWORLD_DVBS_100,
1883         },{
1884                 .subvendor = 0x1421,
1885                 .subdevice = 0x0390,
1886                 .card      = CX88_BOARD_ADSTECH_PTV_390,
1887         },{
1888                 .subvendor = 0x11bd,
1889                 .subdevice = 0x0051,
1890                 .card      = CX88_BOARD_PINNACLE_PCTV_HD_800i,
1891         }, {
1892                 .subvendor = 0x18ac,
1893                 .subdevice = 0xd530,
1894                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO,
1895         }, {
1896                 .subvendor = 0x12ab,
1897                 .subdevice = 0x1788,
1898                 .card      = CX88_BOARD_PINNACLE_HYBRID_PCTV,
1899         }, {
1900                 .subvendor = 0x14f1,
1901                 .subdevice = 0xea3d,
1902                 .card      = CX88_BOARD_POWERCOLOR_REAL_ANGEL,
1903         }, {
1904                 .subvendor = 0x107d,
1905                 .subdevice = 0x6f18,
1906                 .card      = CX88_BOARD_WINFAST_TV2000_XP_GLOBAL,
1907         }, {
1908                 .subvendor = 0x14f1,
1909                 .subdevice = 0x8852,
1910                 .card      = CX88_BOARD_GENIATECH_X8000_MT,
1911         }
1912 };
1913
1914 /* ----------------------------------------------------------------------- */
1915 /* some leadtek specific stuff                                             */
1916
1917 static void leadtek_eeprom(struct cx88_core *core, u8 *eeprom_data)
1918 {
1919         /* This is just for the "Winfast 2000XP Expert" board ATM; I don't have data on
1920          * any others.
1921          *
1922          * Byte 0 is 1 on the NTSC board.
1923          */
1924
1925         if (eeprom_data[4] != 0x7d ||
1926             eeprom_data[5] != 0x10 ||
1927             eeprom_data[7] != 0x66) {
1928                 warn_printk(core, "Leadtek eeprom invalid.\n");
1929                 return;
1930         }
1931
1932         core->board.tuner_type = (eeprom_data[6] == 0x13) ?
1933                 TUNER_PHILIPS_FM1236_MK3 : TUNER_PHILIPS_FM1216ME_MK3;
1934
1935         info_printk(core, "Leadtek Winfast 2000XP Expert config: "
1936                     "tuner=%d, eeprom[0]=0x%02x\n",
1937                     core->board.tuner_type, eeprom_data[0]);
1938 }
1939
1940 static void hauppauge_eeprom(struct cx88_core *core, u8 *eeprom_data)
1941 {
1942         struct tveeprom tv;
1943
1944         tveeprom_hauppauge_analog(&core->i2c_client, &tv, eeprom_data);
1945         core->board.tuner_type = tv.tuner_type;
1946         core->tuner_formats = tv.tuner_formats;
1947         core->board.radio.type = tv.has_radio ? CX88_RADIO : 0;
1948
1949         /* Make sure we support the board model */
1950         switch (tv.model)
1951         {
1952         case 14009: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in) */
1953         case 14019: /* WinTV-HVR3000 (Retail, IR Blaster, b/panel video, 3.5mm audio in) */
1954         case 14029: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - 880 bridge) */
1955         case 14109: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - low profile) */
1956         case 14129: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - 880 bridge - LP) */
1957         case 14559: /* WinTV-HVR3000 (OEM, no IR, b/panel video, 3.5mm audio in) */
1958         case 14569: /* WinTV-HVR3000 (OEM, no IR, no back panel video) */
1959         case 14659: /* WinTV-HVR3000 (OEM, no IR, b/panel video, RCA audio in - Low profile) */
1960         case 14669: /* WinTV-HVR3000 (OEM, no IR, no b/panel video - Low profile) */
1961         case 28552: /* WinTV-PVR 'Roslyn' (No IR) */
1962         case 34519: /* WinTV-PCI-FM */
1963         case 90002: /* Nova-T-PCI (9002) */
1964         case 92001: /* Nova-S-Plus (Video and IR) */
1965         case 92002: /* Nova-S-Plus (Video and IR) */
1966         case 90003: /* Nova-T-PCI (9002 No RF out) */
1967         case 90500: /* Nova-T-PCI (oem) */
1968         case 90501: /* Nova-T-PCI (oem/IR) */
1969         case 92000: /* Nova-SE2 (OEM, No Video or IR) */
1970         case 94009: /* WinTV-HVR1100 (Video and IR Retail) */
1971         case 94501: /* WinTV-HVR1100 (Video and IR OEM) */
1972         case 96009: /* WinTV-HVR1300 (PAL Video, MPEG Video and IR RX) */
1973         case 96019: /* WinTV-HVR1300 (PAL Video, MPEG Video and IR RX/TX) */
1974         case 96559: /* WinTV-HVR1300 (PAL Video, MPEG Video no IR) */
1975         case 96569: /* WinTV-HVR1300 () */
1976         case 96659: /* WinTV-HVR1300 () */
1977         case 98559: /* WinTV-HVR1100LP (Video no IR, Retail - Low Profile) */
1978                 /* known */
1979                 break;
1980         default:
1981                 warn_printk(core, "warning: unknown hauppauge model #%d\n",
1982                             tv.model);
1983                 break;
1984         }
1985
1986         info_printk(core, "hauppauge eeprom: model=%d\n", tv.model);
1987 }
1988
1989 /* ----------------------------------------------------------------------- */
1990 /* some GDI (was: Modular Technology) specific stuff                       */
1991
1992 static struct {
1993         int  id;
1994         int  fm;
1995         char *name;
1996 } gdi_tuner[] = {
1997         [ 0x01 ] = { .id   = TUNER_ABSENT,
1998                      .name = "NTSC_M" },
1999         [ 0x02 ] = { .id   = TUNER_ABSENT,
2000                      .name = "PAL_B" },
2001         [ 0x03 ] = { .id   = TUNER_ABSENT,
2002                      .name = "PAL_I" },
2003         [ 0x04 ] = { .id   = TUNER_ABSENT,
2004                      .name = "PAL_D" },
2005         [ 0x05 ] = { .id   = TUNER_ABSENT,
2006                      .name = "SECAM" },
2007
2008         [ 0x10 ] = { .id   = TUNER_ABSENT,
2009                      .fm   = 1,
2010                      .name = "TEMIC_4049" },
2011         [ 0x11 ] = { .id   = TUNER_TEMIC_4136FY5,
2012                      .name = "TEMIC_4136" },
2013         [ 0x12 ] = { .id   = TUNER_ABSENT,
2014                      .name = "TEMIC_4146" },
2015
2016         [ 0x20 ] = { .id   = TUNER_PHILIPS_FQ1216ME,
2017                      .fm   = 1,
2018                      .name = "PHILIPS_FQ1216_MK3" },
2019         [ 0x21 ] = { .id   = TUNER_ABSENT, .fm = 1,
2020                      .name = "PHILIPS_FQ1236_MK3" },
2021         [ 0x22 ] = { .id   = TUNER_ABSENT,
2022                      .name = "PHILIPS_FI1236_MK3" },
2023         [ 0x23 ] = { .id   = TUNER_ABSENT,
2024                      .name = "PHILIPS_FI1216_MK3" },
2025 };
2026
2027 static void gdi_eeprom(struct cx88_core *core, u8 *eeprom_data)
2028 {
2029         char *name = (eeprom_data[0x0d] < ARRAY_SIZE(gdi_tuner))
2030                 ? gdi_tuner[eeprom_data[0x0d]].name : NULL;
2031
2032         info_printk(core, "GDI: tuner=%s\n", name ? name : "unknown");
2033         if (NULL == name)
2034                 return;
2035         core->board.tuner_type = gdi_tuner[eeprom_data[0x0d]].id;
2036         core->board.radio.type = gdi_tuner[eeprom_data[0x0d]].fm ?
2037                 CX88_RADIO : 0;
2038 }
2039
2040 /* ------------------------------------------------------------------- */
2041 /* some Divco specific stuff                                           */
2042 static int cx88_dvico_xc2028_callback(void *ptr, int command, int arg)
2043 {
2044         struct cx88_core *core = ptr;
2045
2046         switch (command) {
2047         case XC2028_TUNER_RESET:
2048                 cx_write(MO_GP0_IO, 0x101000);
2049                 mdelay(5);
2050                 cx_set(MO_GP0_IO, 0x101010);
2051                 break;
2052         default:
2053                 return -EINVAL;
2054         }
2055
2056         return 0;
2057 }
2058
2059
2060 /* ----------------------------------------------------------------------- */
2061 /* some Geniatech specific stuff                                           */
2062
2063 static int cx88_xc3028_geniatech_tuner_callback(void *priv, int command, int mode)
2064 {
2065         struct i2c_algo_bit_data *i2c_algo = priv;
2066         struct cx88_core *core = i2c_algo->data;
2067
2068         switch (command) {
2069         case XC2028_TUNER_RESET:
2070                 switch (INPUT(core->input).type) {
2071                 case CX88_RADIO:
2072                         break;
2073                 case CX88_VMUX_DVB:
2074                         cx_write(MO_GP1_IO, 0x030302);
2075                         mdelay(50);
2076                         break;
2077                 default:
2078                         cx_write(MO_GP1_IO, 0x030301);
2079                         mdelay(50);
2080                 }
2081                 cx_write(MO_GP1_IO, 0x101010);
2082                 mdelay(50);
2083                 cx_write(MO_GP1_IO, 0x101000);
2084                 mdelay(50);
2085                 cx_write(MO_GP1_IO, 0x101010);
2086                 mdelay(50);
2087                 return 0;
2088         }
2089         return -EINVAL;
2090 }
2091
2092 /* ----------------------------------------------------------------------- */
2093 /* some DViCO specific stuff                                               */
2094
2095 static void dvico_fusionhdtv_hybrid_init(struct cx88_core *core)
2096 {
2097         struct i2c_msg msg = { .addr = 0x45, .flags = 0 };
2098         int i, err;
2099         static u8 init_bufs[13][5] = {
2100                 { 0x10, 0x00, 0x20, 0x01, 0x03 },
2101                 { 0x10, 0x10, 0x01, 0x00, 0x21 },
2102                 { 0x10, 0x10, 0x10, 0x00, 0xCA },
2103                 { 0x10, 0x10, 0x12, 0x00, 0x08 },
2104                 { 0x10, 0x10, 0x13, 0x00, 0x0A },
2105                 { 0x10, 0x10, 0x16, 0x01, 0xC0 },
2106                 { 0x10, 0x10, 0x22, 0x01, 0x3D },
2107                 { 0x10, 0x10, 0x73, 0x01, 0x2E },
2108                 { 0x10, 0x10, 0x72, 0x00, 0xC5 },
2109                 { 0x10, 0x10, 0x71, 0x01, 0x97 },
2110                 { 0x10, 0x10, 0x70, 0x00, 0x0F },
2111                 { 0x10, 0x10, 0xB0, 0x00, 0x01 },
2112                 { 0x03, 0x0C },
2113         };
2114
2115         for (i = 0; i < ARRAY_SIZE(init_bufs); i++) {
2116                 msg.buf = init_bufs[i];
2117                 msg.len = (i != 12 ? 5 : 2);
2118                 err = i2c_transfer(&core->i2c_adap, &msg, 1);
2119                 if (err != 1) {
2120                         warn_printk(core, "dvico_fusionhdtv_hybrid_init buf %d "
2121                                           "failed (err = %d)!\n", i, err);
2122                         return;
2123                 }
2124         }
2125 }
2126
2127 static int cx88_xc2028_tuner_callback(void *priv, int command, int arg)
2128 {
2129         struct i2c_algo_bit_data *i2c_algo = priv;
2130         struct cx88_core *core = i2c_algo->data;
2131
2132         /* Board-specific callbacks */
2133         switch (core->boardnr) {
2134         case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
2135         case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
2136         case CX88_BOARD_GENIATECH_X8000_MT:
2137                 return cx88_xc3028_geniatech_tuner_callback(priv, command, arg);
2138         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
2139                 return cx88_dvico_xc2028_callback(priv, command, arg);
2140         }
2141
2142         switch (command) {
2143         case XC2028_TUNER_RESET:
2144                 switch (INPUT(core->input).type) {
2145                 case CX88_RADIO:
2146                         info_printk(core, "setting GPIO to radio!\n");
2147                         cx_write(MO_GP0_IO, 0x4ff);
2148                         mdelay(250);
2149                         cx_write(MO_GP2_IO, 0xff);
2150                         mdelay(250);
2151                         break;
2152                 case CX88_VMUX_DVB:     /* Digital TV*/
2153                 default:                /* Analog TV */
2154                         info_printk(core, "setting GPIO to TV!\n");
2155                         break;
2156                 }
2157                 cx_write(MO_GP1_IO, 0x101010);
2158                 mdelay(250);
2159                 cx_write(MO_GP1_IO, 0x101000);
2160                 mdelay(250);
2161                 cx_write(MO_GP1_IO, 0x101010);
2162                 mdelay(250);
2163                 return 0;
2164         }
2165         return -EINVAL;
2166 }
2167
2168 /* ----------------------------------------------------------------------- */
2169 /* Tuner callback function. Currently only needed for the Pinnacle         *
2170  * PCTV HD 800i with an xc5000 sillicon tuner. This is used for both       *
2171  * analog tuner attach (tuner-core.c) and dvb tuner attach (cx88-dvb.c)    */
2172
2173 static int cx88_xc5000_tuner_callback(void *priv, int command, int arg)
2174 {
2175         struct i2c_algo_bit_data *i2c_algo = priv;
2176         struct cx88_core *core = i2c_algo->data;
2177
2178         switch (core->boardnr) {
2179         case CX88_BOARD_PINNACLE_PCTV_HD_800i:
2180                 if (command == 0) { /* This is the reset command from xc5000 */
2181                         /* Reset XC5000 tuner via SYS_RSTO_pin */
2182                         cx_write(MO_SRST_IO, 0);
2183                         msleep(10);
2184                         cx_write(MO_SRST_IO, 1);
2185                         return 0;
2186                 } else {
2187                         err_printk(core, "xc5000: unknown tuner "
2188                                    "callback command.\n");
2189                         return -EINVAL;
2190                 }
2191                 break;
2192         }
2193         return 0; /* Should never be here */
2194 }
2195
2196 int cx88_tuner_callback(void *priv, int command, int arg)
2197 {
2198         struct i2c_algo_bit_data *i2c_algo = priv;
2199         struct cx88_core *core = i2c_algo->data;
2200
2201         switch (core->board.tuner_type) {
2202                 case TUNER_XC2028:
2203                         info_printk(core, "Calling XC2028/3028 callback\n");
2204                         return cx88_xc2028_tuner_callback(priv, command, arg);
2205                 case TUNER_XC5000:
2206                         info_printk(core, "Calling XC5000 callback\n");
2207                         return cx88_xc5000_tuner_callback(priv, command, arg);
2208         }
2209         err_printk(core, "Error: Calling callback for tuner %d\n",
2210                    core->board.tuner_type);
2211         return -EINVAL;
2212 }
2213 EXPORT_SYMBOL(cx88_tuner_callback);
2214
2215 /* ----------------------------------------------------------------------- */
2216
2217 static void cx88_card_list(struct cx88_core *core, struct pci_dev *pci)
2218 {
2219         int i;
2220
2221         if (0 == pci->subsystem_vendor &&
2222             0 == pci->subsystem_device) {
2223                 printk(KERN_ERR
2224                        "%s: Your board has no valid PCI Subsystem ID and thus can't\n"
2225                        "%s: be autodetected.  Please pass card=<n> insmod option to\n"
2226                        "%s: workaround that.  Redirect complaints to the vendor of\n"
2227                        "%s: the TV card.  Best regards,\n"
2228                        "%s:         -- tux\n",
2229                        core->name,core->name,core->name,core->name,core->name);
2230         } else {
2231                 printk(KERN_ERR
2232                        "%s: Your board isn't known (yet) to the driver.  You can\n"
2233                        "%s: try to pick one of the existing card configs via\n"
2234                        "%s: card=<n> insmod option.  Updating to the latest\n"
2235                        "%s: version might help as well.\n",
2236                        core->name,core->name,core->name,core->name);
2237         }
2238         err_printk(core, "Here is a list of valid choices for the card=<n> "
2239                    "insmod option:\n");
2240         for (i = 0; i < ARRAY_SIZE(cx88_boards); i++)
2241                 printk(KERN_ERR "%s:    card=%d -> %s\n",
2242                        core->name, i, cx88_boards[i].name);
2243 }
2244
2245 static void cx88_card_setup_pre_i2c(struct cx88_core *core)
2246 {
2247         switch (core->boardnr) {
2248         case CX88_BOARD_HAUPPAUGE_HVR1300:
2249                 /* Bring the 702 demod up before i2c scanning/attach or devices are hidden */
2250                 /* We leave here with the 702 on the bus */
2251                 cx_write(MO_GP0_IO, 0x0000e780);
2252                 udelay(1000);
2253                 cx_clear(MO_GP0_IO, 0x00000080);
2254                 udelay(50);
2255                 cx_set(MO_GP0_IO, 0x00000080); /* 702 out of reset */
2256                 udelay(1000);
2257                 break;
2258         }
2259 }
2260
2261 static void cx88_card_setup(struct cx88_core *core)
2262 {
2263         static u8 eeprom[256];
2264
2265         if (0 == core->i2c_rc) {
2266                 core->i2c_client.addr = 0xa0 >> 1;
2267                 tveeprom_read(&core->i2c_client,eeprom,sizeof(eeprom));
2268         }
2269
2270         switch (core->boardnr) {
2271         case CX88_BOARD_HAUPPAUGE:
2272         case CX88_BOARD_HAUPPAUGE_ROSLYN:
2273                 if (0 == core->i2c_rc)
2274                         hauppauge_eeprom(core,eeprom+8);
2275                 break;
2276         case CX88_BOARD_GDI:
2277                 if (0 == core->i2c_rc)
2278                         gdi_eeprom(core,eeprom);
2279                 break;
2280         case CX88_BOARD_WINFAST2000XP_EXPERT:
2281                 if (0 == core->i2c_rc)
2282                         leadtek_eeprom(core,eeprom);
2283                 break;
2284         case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
2285         case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
2286         case CX88_BOARD_HAUPPAUGE_DVB_T1:
2287         case CX88_BOARD_HAUPPAUGE_HVR1100:
2288         case CX88_BOARD_HAUPPAUGE_HVR1100LP:
2289         case CX88_BOARD_HAUPPAUGE_HVR3000:
2290         case CX88_BOARD_HAUPPAUGE_HVR1300:
2291                 if (0 == core->i2c_rc)
2292                         hauppauge_eeprom(core,eeprom);
2293                 break;
2294         case CX88_BOARD_KWORLD_DVBS_100:
2295                 cx_write(MO_GP0_IO, 0x000007f8);
2296                 cx_write(MO_GP1_IO, 0x00000001);
2297                 break;
2298         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
2299                 /* GPIO0:0 is hooked to demod reset */
2300                 /* GPIO0:4 is hooked to xc3028 reset */
2301                 cx_write(MO_GP0_IO, 0x00111100);
2302                 msleep(1);
2303                 cx_write(MO_GP0_IO, 0x00111111);
2304                 break;
2305         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL:
2306                 /* GPIO0:6 is hooked to FX2 reset pin */
2307                 cx_set(MO_GP0_IO, 0x00004040);
2308                 cx_clear(MO_GP0_IO, 0x00000040);
2309                 msleep(1000);
2310                 cx_set(MO_GP0_IO, 0x00004040);
2311                 /* FALLTHROUGH */
2312         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
2313         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
2314         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID:
2315                 /* GPIO0:0 is hooked to mt352 reset pin */
2316                 cx_set(MO_GP0_IO, 0x00000101);
2317                 cx_clear(MO_GP0_IO, 0x00000001);
2318                 msleep(1);
2319                 cx_set(MO_GP0_IO, 0x00000101);
2320                 if (0 == core->i2c_rc &&
2321                     core->boardnr == CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID)
2322                         dvico_fusionhdtv_hybrid_init(core);
2323                 break;
2324         case CX88_BOARD_KWORLD_DVB_T:
2325         case CX88_BOARD_DNTV_LIVE_DVB_T:
2326                 cx_set(MO_GP0_IO, 0x00000707);
2327                 cx_set(MO_GP2_IO, 0x00000101);
2328                 cx_clear(MO_GP2_IO, 0x00000001);
2329                 msleep(1);
2330                 cx_clear(MO_GP0_IO, 0x00000007);
2331                 cx_set(MO_GP2_IO, 0x00000101);
2332                 break;
2333         case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
2334                 cx_write(MO_GP0_IO, 0x00080808);
2335                 break;
2336         case CX88_BOARD_ATI_HDTVWONDER:
2337                 if (0 == core->i2c_rc) {
2338                         /* enable tuner */
2339                         int i;
2340                         static const u8 buffer [][2] = {
2341                                 {0x10,0x12},
2342                                 {0x13,0x04},
2343                                 {0x16,0x00},
2344                                 {0x14,0x04},
2345                                 {0x17,0x00}
2346                         };
2347                         core->i2c_client.addr = 0x0a;
2348
2349                         for (i = 0; i < ARRAY_SIZE(buffer); i++)
2350                                 if (2 != i2c_master_send(&core->i2c_client,
2351                                                         buffer[i],2))
2352                                         warn_printk(core, "Unable to enable "
2353                                                     "tuner(%i).\n", i);
2354                 }
2355                 break;
2356         case CX88_BOARD_MSI_TVANYWHERE_MASTER:
2357         {
2358                 struct v4l2_priv_tun_config tea5767_cfg;
2359                 struct tea5767_ctrl ctl;
2360
2361                 memset(&ctl, 0, sizeof(ctl));
2362
2363                 ctl.high_cut  = 1;
2364                 ctl.st_noise  = 1;
2365                 ctl.deemph_75 = 1;
2366                 ctl.xtal_freq = TEA5767_HIGH_LO_13MHz;
2367
2368                 tea5767_cfg.tuner = TUNER_TEA5767;
2369                 tea5767_cfg.priv  = &ctl;
2370
2371                 cx88_call_i2c_clients(core, TUNER_SET_CONFIG, &tea5767_cfg);
2372         }
2373         }
2374
2375         if (core->board.tuner_type == TUNER_XC2028) {
2376                 struct v4l2_priv_tun_config  xc2028_cfg;
2377                 struct xc2028_ctrl           ctl;
2378
2379                 memset(&xc2028_cfg, 0, sizeof(ctl));
2380                 memset(&ctl, 0, sizeof(ctl));
2381
2382                 ctl.fname   = XC2028_DEFAULT_FIRMWARE;
2383                 ctl.max_len = 64;
2384
2385                 switch (core->boardnr) {
2386                 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
2387                         /* Doesn't work with firmware version 2.7 */
2388                         ctl.fname = "xc3028-v25.fw";
2389                         break;
2390                 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
2391                         ctl.scode_table = XC3028_FE_ZARLINK456;
2392                         break;
2393                 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
2394                         ctl.demod = XC3028_FE_OREN538;
2395                         break;
2396                 default:
2397                         ctl.demod = XC3028_FE_OREN538;
2398                         ctl.mts = 1;
2399                 }
2400
2401                 xc2028_cfg.tuner = TUNER_XC2028;
2402                 xc2028_cfg.priv  = &ctl;
2403
2404                 info_printk(core, "Asking xc2028/3028 to load firmware %s\n",
2405                             ctl.fname);
2406                 cx88_call_i2c_clients(core, TUNER_SET_CONFIG, &xc2028_cfg);
2407         }
2408 }
2409
2410 /* ------------------------------------------------------------------ */
2411
2412 static int cx88_pci_quirks(const char *name, struct pci_dev *pci)
2413 {
2414         unsigned int lat = UNSET;
2415         u8 ctrl = 0;
2416         u8 value;
2417
2418         /* check pci quirks */
2419         if (pci_pci_problems & PCIPCI_TRITON) {
2420                 printk(KERN_INFO "%s: quirk: PCIPCI_TRITON -- set TBFX\n",
2421                        name);
2422                 ctrl |= CX88X_EN_TBFX;
2423         }
2424         if (pci_pci_problems & PCIPCI_NATOMA) {
2425                 printk(KERN_INFO "%s: quirk: PCIPCI_NATOMA -- set TBFX\n",
2426                        name);
2427                 ctrl |= CX88X_EN_TBFX;
2428         }
2429         if (pci_pci_problems & PCIPCI_VIAETBF) {
2430                 printk(KERN_INFO "%s: quirk: PCIPCI_VIAETBF -- set TBFX\n",
2431                        name);
2432                 ctrl |= CX88X_EN_TBFX;
2433         }
2434         if (pci_pci_problems & PCIPCI_VSFX) {
2435                 printk(KERN_INFO "%s: quirk: PCIPCI_VSFX -- set VSFX\n",
2436                        name);
2437                 ctrl |= CX88X_EN_VSFX;
2438         }
2439 #ifdef PCIPCI_ALIMAGIK
2440         if (pci_pci_problems & PCIPCI_ALIMAGIK) {
2441                 printk(KERN_INFO "%s: quirk: PCIPCI_ALIMAGIK -- latency fixup\n",
2442                        name);
2443                 lat = 0x0A;
2444         }
2445 #endif
2446
2447         /* check insmod options */
2448         if (UNSET != latency)
2449                 lat = latency;
2450
2451         /* apply stuff */
2452         if (ctrl) {
2453                 pci_read_config_byte(pci, CX88X_DEVCTRL, &value);
2454                 value |= ctrl;
2455                 pci_write_config_byte(pci, CX88X_DEVCTRL, value);
2456         }
2457         if (UNSET != lat) {
2458                 printk(KERN_INFO "%s: setting pci latency timer to %d\n",
2459                        name, latency);
2460                 pci_write_config_byte(pci, PCI_LATENCY_TIMER, latency);
2461         }
2462         return 0;
2463 }
2464
2465 int cx88_get_resources(const struct cx88_core *core, struct pci_dev *pci)
2466 {
2467         if (request_mem_region(pci_resource_start(pci,0),
2468                                pci_resource_len(pci,0),
2469                                core->name))
2470                 return 0;
2471         printk(KERN_ERR
2472                "%s/%d: Can't get MMIO memory @ 0x%llx, subsystem: %04x:%04x\n",
2473                core->name, PCI_FUNC(pci->devfn),
2474                (unsigned long long)pci_resource_start(pci, 0),
2475                pci->subsystem_vendor, pci->subsystem_device);
2476         return -EBUSY;
2477 }
2478
2479 /* Allocate and initialize the cx88 core struct.  One should hold the
2480  * devlist mutex before calling this.  */
2481 struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr)
2482 {
2483         struct cx88_core *core;
2484         int i;
2485
2486         core = kzalloc(sizeof(*core), GFP_KERNEL);
2487
2488         atomic_inc(&core->refcount);
2489         core->pci_bus  = pci->bus->number;
2490         core->pci_slot = PCI_SLOT(pci->devfn);
2491         core->pci_irqmask = PCI_INT_RISC_RD_BERRINT | PCI_INT_RISC_WR_BERRINT |
2492                             PCI_INT_BRDG_BERRINT | PCI_INT_SRC_DMA_BERRINT |
2493                             PCI_INT_DST_DMA_BERRINT | PCI_INT_IPB_DMA_BERRINT;
2494         mutex_init(&core->lock);
2495
2496         core->nr = nr;
2497         sprintf(core->name, "cx88[%d]", core->nr);
2498         if (0 != cx88_get_resources(core, pci)) {
2499                 kfree(core);
2500                 return NULL;
2501         }
2502
2503         /* PCI stuff */
2504         cx88_pci_quirks(core->name, pci);
2505         core->lmmio = ioremap(pci_resource_start(pci, 0),
2506                               pci_resource_len(pci, 0));
2507         core->bmmio = (u8 __iomem *)core->lmmio;
2508
2509         /* board config */
2510         core->boardnr = UNSET;
2511         if (card[core->nr] < ARRAY_SIZE(cx88_boards))
2512                 core->boardnr = card[core->nr];
2513         for (i = 0; UNSET == core->boardnr && i < ARRAY_SIZE(cx88_subids); i++)
2514                 if (pci->subsystem_vendor == cx88_subids[i].subvendor &&
2515                     pci->subsystem_device == cx88_subids[i].subdevice)
2516                         core->boardnr = cx88_subids[i].card;
2517         if (UNSET == core->boardnr) {
2518                 core->boardnr = CX88_BOARD_UNKNOWN;
2519                 cx88_card_list(core, pci);
2520         }
2521
2522         memcpy(&core->board, &cx88_boards[core->boardnr], sizeof(core->board));
2523
2524         info_printk(core, "subsystem: %04x:%04x, board: %s [card=%d,%s]\n",
2525                 pci->subsystem_vendor, pci->subsystem_device, core->board.name,
2526                 core->boardnr, card[core->nr] == core->boardnr ?
2527                 "insmod option" : "autodetected");
2528
2529         if (tuner[core->nr] != UNSET)
2530                 core->board.tuner_type = tuner[core->nr];
2531         if (radio[core->nr] != UNSET)
2532                 core->board.radio_type = radio[core->nr];
2533
2534         info_printk(core, "TV tuner type %d, Radio tuner type %d\n",
2535                     core->board.tuner_type, core->board.radio_type);
2536
2537         /* init hardware */
2538         cx88_reset(core);
2539         cx88_card_setup_pre_i2c(core);
2540         cx88_i2c_init(core, pci);
2541
2542         /* load tuner module, if needed */
2543         if (TUNER_ABSENT != core->board.tuner_type)
2544                 request_module("tuner");
2545
2546         cx88_call_i2c_clients (core, TUNER_SET_STANDBY, NULL);
2547         cx88_card_setup(core);
2548         cx88_ir_init(core, pci);
2549
2550         return core;
2551 }