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