]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/media/video/cx88/cx88-cards.c
Merge branch 'for-linus' of git://git.open-osd.org/linux-open-osd
[karo-tx-linux.git] / 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 #include <linux/slab.h>
28
29 #include "cx88.h"
30 #include "tea5767.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 static int disable_ir;
49 module_param(disable_ir, int, 0444);
50 MODULE_PARM_DESC(latency, "Disable IR support");
51
52 #define info_printk(core, fmt, arg...) \
53         printk(KERN_INFO "%s: " fmt, core->name , ## arg)
54
55 #define warn_printk(core, fmt, arg...) \
56         printk(KERN_WARNING "%s: " fmt, core->name , ## arg)
57
58 #define err_printk(core, fmt, arg...) \
59         printk(KERN_ERR "%s: " fmt, core->name , ## arg)
60
61
62 /* ------------------------------------------------------------------ */
63 /* board config info                                                  */
64
65 /* If radio_type !=UNSET, radio_addr should be specified
66  */
67
68 static const struct cx88_board cx88_boards[] = {
69         [CX88_BOARD_UNKNOWN] = {
70                 .name           = "UNKNOWN/GENERIC",
71                 .tuner_type     = UNSET,
72                 .radio_type     = UNSET,
73                 .tuner_addr     = ADDR_UNSET,
74                 .radio_addr     = ADDR_UNSET,
75                 .input          = {{
76                         .type   = CX88_VMUX_COMPOSITE1,
77                         .vmux   = 0,
78                 },{
79                         .type   = CX88_VMUX_COMPOSITE2,
80                         .vmux   = 1,
81                 },{
82                         .type   = CX88_VMUX_COMPOSITE3,
83                         .vmux   = 2,
84                 },{
85                         .type   = CX88_VMUX_COMPOSITE4,
86                         .vmux   = 3,
87                 }},
88         },
89         [CX88_BOARD_HAUPPAUGE] = {
90                 .name           = "Hauppauge WinTV 34xxx models",
91                 .tuner_type     = UNSET,
92                 .radio_type     = UNSET,
93                 .tuner_addr     = ADDR_UNSET,
94                 .radio_addr     = ADDR_UNSET,
95                 .tda9887_conf   = TDA9887_PRESENT,
96                 .input          = {{
97                         .type   = CX88_VMUX_TELEVISION,
98                         .vmux   = 0,
99                         .gpio0  = 0xff00,  // internal decoder
100                 },{
101                         .type   = CX88_VMUX_DEBUG,
102                         .vmux   = 0,
103                         .gpio0  = 0xff01,  // mono from tuner chip
104                 },{
105                         .type   = CX88_VMUX_COMPOSITE1,
106                         .vmux   = 1,
107                         .gpio0  = 0xff02,
108                 },{
109                         .type   = CX88_VMUX_SVIDEO,
110                         .vmux   = 2,
111                         .gpio0  = 0xff02,
112                 }},
113                 .radio = {
114                         .type   = CX88_RADIO,
115                         .gpio0  = 0xff01,
116                 },
117         },
118         [CX88_BOARD_GDI] = {
119                 .name           = "GDI Black Gold",
120                 .tuner_type     = UNSET,
121                 .radio_type     = UNSET,
122                 .tuner_addr     = ADDR_UNSET,
123                 .radio_addr     = ADDR_UNSET,
124                 .input          = {{
125                         .type   = CX88_VMUX_TELEVISION,
126                         .vmux   = 0,
127                 },{
128                         .type   = CX88_VMUX_SVIDEO,
129                         .vmux   = 2,
130                 }},
131         },
132         [CX88_BOARD_PIXELVIEW] = {
133                 .name           = "PixelView",
134                 .tuner_type     = TUNER_PHILIPS_PAL,
135                 .radio_type     = UNSET,
136                 .tuner_addr     = ADDR_UNSET,
137                 .radio_addr     = ADDR_UNSET,
138                 .input          = {{
139                         .type   = CX88_VMUX_TELEVISION,
140                         .vmux   = 0,
141                         .gpio0  = 0xff00,  // internal decoder
142                 },{
143                         .type   = CX88_VMUX_COMPOSITE1,
144                         .vmux   = 1,
145                 },{
146                         .type   = CX88_VMUX_SVIDEO,
147                         .vmux   = 2,
148                 }},
149                 .radio = {
150                          .type  = CX88_RADIO,
151                          .gpio0 = 0xff10,
152                 },
153         },
154         [CX88_BOARD_ATI_WONDER_PRO] = {
155                 .name           = "ATI TV Wonder Pro",
156                 .tuner_type     = TUNER_PHILIPS_4IN1,
157                 .radio_type     = UNSET,
158                 .tuner_addr     = ADDR_UNSET,
159                 .radio_addr     = ADDR_UNSET,
160                 .tda9887_conf   = TDA9887_PRESENT | TDA9887_INTERCARRIER,
161                 .input          = {{
162                         .type   = CX88_VMUX_TELEVISION,
163                         .vmux   = 0,
164                         .gpio0  = 0x03ff,
165                 },{
166                         .type   = CX88_VMUX_COMPOSITE1,
167                         .vmux   = 1,
168                         .gpio0  = 0x03fe,
169                 },{
170                         .type   = CX88_VMUX_SVIDEO,
171                         .vmux   = 2,
172                         .gpio0  = 0x03fe,
173                 }},
174         },
175         [CX88_BOARD_WINFAST2000XP_EXPERT] = {
176                 .name           = "Leadtek Winfast 2000XP Expert",
177                 .tuner_type     = TUNER_PHILIPS_4IN1,
178                 .radio_type     = UNSET,
179                 .tuner_addr     = ADDR_UNSET,
180                 .radio_addr     = ADDR_UNSET,
181                 .tda9887_conf   = TDA9887_PRESENT,
182                 .input          = {{
183                         .type   = CX88_VMUX_TELEVISION,
184                         .vmux   = 0,
185                         .gpio0  = 0x00F5e700,
186                         .gpio1  = 0x00003004,
187                         .gpio2  = 0x00F5e700,
188                         .gpio3  = 0x02000000,
189                 },{
190                         .type   = CX88_VMUX_COMPOSITE1,
191                         .vmux   = 1,
192                         .gpio0  = 0x00F5c700,
193                         .gpio1  = 0x00003004,
194                         .gpio2  = 0x00F5c700,
195                         .gpio3  = 0x02000000,
196                 },{
197                         .type   = CX88_VMUX_SVIDEO,
198                         .vmux   = 2,
199                         .gpio0  = 0x00F5c700,
200                         .gpio1  = 0x00003004,
201                         .gpio2  = 0x00F5c700,
202                         .gpio3  = 0x02000000,
203                 }},
204                 .radio = {
205                         .type   = CX88_RADIO,
206                         .gpio0  = 0x00F5d700,
207                         .gpio1  = 0x00003004,
208                         .gpio2  = 0x00F5d700,
209                         .gpio3  = 0x02000000,
210                 },
211         },
212         [CX88_BOARD_AVERTV_STUDIO_303] = {
213                 .name           = "AverTV Studio 303 (M126)",
214                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
215                 .radio_type     = UNSET,
216                 .tuner_addr     = ADDR_UNSET,
217                 .radio_addr     = ADDR_UNSET,
218                 .tda9887_conf   = TDA9887_PRESENT,
219                 .input          = {{
220                         .type   = CX88_VMUX_TELEVISION,
221                         .vmux   = 0,
222                         .gpio1  = 0xe09f,
223                 },{
224                         .type   = CX88_VMUX_COMPOSITE1,
225                         .vmux   = 1,
226                         .gpio1  = 0xe05f,
227                 },{
228                         .type   = CX88_VMUX_SVIDEO,
229                         .vmux   = 2,
230                         .gpio1  = 0xe05f,
231                 }},
232                 .radio = {
233                         .gpio1  = 0xe0df,
234                         .type   = CX88_RADIO,
235                 },
236         },
237         [CX88_BOARD_MSI_TVANYWHERE_MASTER] = {
238                 // added gpio values thanks to Michal
239                 // values for PAL from DScaler
240                 .name           = "MSI TV-@nywhere Master",
241                 .tuner_type     = TUNER_MT2032,
242                 .radio_type     = UNSET,
243                 .tuner_addr     = ADDR_UNSET,
244                 .radio_addr     = ADDR_UNSET,
245                 .tda9887_conf   = TDA9887_PRESENT | TDA9887_INTERCARRIER_NTSC,
246                 .input          = {{
247                         .type   = CX88_VMUX_TELEVISION,
248                         .vmux   = 0,
249                         .gpio0  = 0x000040bf,
250                         .gpio1  = 0x000080c0,
251                         .gpio2  = 0x0000ff40,
252                 },{
253                         .type   = CX88_VMUX_COMPOSITE1,
254                         .vmux   = 1,
255                         .gpio0  = 0x000040bf,
256                         .gpio1  = 0x000080c0,
257                         .gpio2  = 0x0000ff40,
258                 },{
259                         .type   = CX88_VMUX_SVIDEO,
260                         .vmux   = 2,
261                         .gpio0  = 0x000040bf,
262                         .gpio1  = 0x000080c0,
263                         .gpio2  = 0x0000ff40,
264                 }},
265                 .radio = {
266                          .type   = CX88_RADIO,
267                          .vmux   = 3,
268                          .gpio0  = 0x000040bf,
269                          .gpio1  = 0x000080c0,
270                          .gpio2  = 0x0000ff20,
271                 },
272         },
273         [CX88_BOARD_WINFAST_DV2000] = {
274                 .name           = "Leadtek Winfast DV2000",
275                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
276                 .radio_type     = UNSET,
277                 .tuner_addr     = ADDR_UNSET,
278                 .radio_addr     = ADDR_UNSET,
279                 .tda9887_conf   = TDA9887_PRESENT,
280                 .input          = {{
281                         .type   = CX88_VMUX_TELEVISION,
282                         .vmux   = 0,
283                         .gpio0  = 0x0035e700,
284                         .gpio1  = 0x00003004,
285                         .gpio2  = 0x0035e700,
286                         .gpio3  = 0x02000000,
287                 },{
288
289                         .type   = CX88_VMUX_COMPOSITE1,
290                         .vmux   = 1,
291                         .gpio0  = 0x0035c700,
292                         .gpio1  = 0x00003004,
293                         .gpio2  = 0x0035c700,
294                         .gpio3  = 0x02000000,
295                 },{
296                         .type   = CX88_VMUX_SVIDEO,
297                         .vmux   = 2,
298                         .gpio0  = 0x0035c700,
299                         .gpio1  = 0x0035c700,
300                         .gpio2  = 0x02000000,
301                         .gpio3  = 0x02000000,
302                 }},
303                 .radio = {
304                         .type   = CX88_RADIO,
305                         .gpio0  = 0x0035d700,
306                         .gpio1  = 0x00007004,
307                         .gpio2  = 0x0035d700,
308                         .gpio3  = 0x02000000,
309                 },
310         },
311         [CX88_BOARD_LEADTEK_PVR2000] = {
312                 // gpio values for PAL version from regspy by DScaler
313                 .name           = "Leadtek PVR 2000",
314                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
315                 .radio_type     = UNSET,
316                 .tuner_addr     = ADDR_UNSET,
317                 .radio_addr     = ADDR_UNSET,
318                 .tda9887_conf   = TDA9887_PRESENT,
319                 .input          = {{
320                         .type   = CX88_VMUX_TELEVISION,
321                         .vmux   = 0,
322                         .gpio0  = 0x0000bde2,
323                         .audioroute = 1,
324                 },{
325                         .type   = CX88_VMUX_COMPOSITE1,
326                         .vmux   = 1,
327                         .gpio0  = 0x0000bde6,
328                         .audioroute = 1,
329                 },{
330                         .type   = CX88_VMUX_SVIDEO,
331                         .vmux   = 2,
332                         .gpio0  = 0x0000bde6,
333                         .audioroute = 1,
334                 }},
335                 .radio = {
336                         .type   = CX88_RADIO,
337                         .gpio0  = 0x0000bd62,
338                         .audioroute = 1,
339                 },
340                 .mpeg           = CX88_MPEG_BLACKBIRD,
341         },
342         [CX88_BOARD_IODATA_GVVCP3PCI] = {
343                 .name           = "IODATA GV-VCP3/PCI",
344                 .tuner_type     = TUNER_ABSENT,
345                 .radio_type     = UNSET,
346                 .tuner_addr     = ADDR_UNSET,
347                 .radio_addr     = ADDR_UNSET,
348                 .input          = {{
349                         .type   = CX88_VMUX_COMPOSITE1,
350                         .vmux   = 0,
351                 },{
352                         .type   = CX88_VMUX_COMPOSITE2,
353                         .vmux   = 1,
354                 },{
355                         .type   = CX88_VMUX_SVIDEO,
356                         .vmux   = 2,
357                 }},
358         },
359         [CX88_BOARD_PROLINK_PLAYTVPVR] = {
360                 .name           = "Prolink PlayTV PVR",
361                 .tuner_type     = TUNER_PHILIPS_FM1236_MK3,
362                 .radio_type     = UNSET,
363                 .tuner_addr     = ADDR_UNSET,
364                 .radio_addr     = ADDR_UNSET,
365                 .tda9887_conf   = TDA9887_PRESENT,
366                 .input          = {{
367                         .type   = CX88_VMUX_TELEVISION,
368                         .vmux   = 0,
369                         .gpio0  = 0xbff0,
370                 },{
371                         .type   = CX88_VMUX_COMPOSITE1,
372                         .vmux   = 1,
373                         .gpio0  = 0xbff3,
374                 },{
375                         .type   = CX88_VMUX_SVIDEO,
376                         .vmux   = 2,
377                         .gpio0  = 0xbff3,
378                 }},
379                 .radio = {
380                         .type   = CX88_RADIO,
381                         .gpio0  = 0xbff0,
382                 },
383         },
384         [CX88_BOARD_ASUS_PVR_416] = {
385                 .name           = "ASUS PVR-416",
386                 .tuner_type     = TUNER_PHILIPS_FM1236_MK3,
387                 .radio_type     = UNSET,
388                 .tuner_addr     = ADDR_UNSET,
389                 .radio_addr     = ADDR_UNSET,
390                 .tda9887_conf   = TDA9887_PRESENT,
391                 .input          = {{
392                         .type   = CX88_VMUX_TELEVISION,
393                         .vmux   = 0,
394                         .gpio0  = 0x0000fde6,
395                 },{
396                         .type   = CX88_VMUX_SVIDEO,
397                         .vmux   = 2,
398                         .gpio0  = 0x0000fde6, // 0x0000fda6 L,R RCA audio in?
399                         .audioroute = 1,
400                 }},
401                 .radio = {
402                         .type   = CX88_RADIO,
403                         .gpio0  = 0x0000fde2,
404                 },
405                 .mpeg           = CX88_MPEG_BLACKBIRD,
406         },
407         [CX88_BOARD_MSI_TVANYWHERE] = {
408                 .name           = "MSI TV-@nywhere",
409                 .tuner_type     = TUNER_MT2032,
410                 .radio_type     = UNSET,
411                 .tuner_addr     = ADDR_UNSET,
412                 .radio_addr     = ADDR_UNSET,
413                 .tda9887_conf   = TDA9887_PRESENT,
414                 .input          = {{
415                         .type   = CX88_VMUX_TELEVISION,
416                         .vmux   = 0,
417                         .gpio0  = 0x00000fbf,
418                         .gpio2  = 0x0000fc08,
419                 },{
420                         .type   = CX88_VMUX_COMPOSITE1,
421                         .vmux   = 1,
422                         .gpio0  = 0x00000fbf,
423                         .gpio2  = 0x0000fc68,
424                 },{
425                         .type   = CX88_VMUX_SVIDEO,
426                         .vmux   = 2,
427                         .gpio0  = 0x00000fbf,
428                         .gpio2  = 0x0000fc68,
429                 }},
430         },
431         [CX88_BOARD_KWORLD_DVB_T] = {
432                 .name           = "KWorld/VStream XPert DVB-T",
433                 .tuner_type     = TUNER_ABSENT,
434                 .radio_type     = UNSET,
435                 .tuner_addr     = ADDR_UNSET,
436                 .radio_addr     = ADDR_UNSET,
437                 .input          = {{
438                         .type   = CX88_VMUX_COMPOSITE1,
439                         .vmux   = 1,
440                         .gpio0  = 0x0700,
441                         .gpio2  = 0x0101,
442                 },{
443                         .type   = CX88_VMUX_SVIDEO,
444                         .vmux   = 2,
445                         .gpio0  = 0x0700,
446                         .gpio2  = 0x0101,
447                 }},
448                 .mpeg           = CX88_MPEG_DVB,
449         },
450         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1] = {
451                 .name           = "DViCO FusionHDTV DVB-T1",
452                 .tuner_type     = TUNER_ABSENT, /* No analog tuner */
453                 .radio_type     = UNSET,
454                 .tuner_addr     = ADDR_UNSET,
455                 .radio_addr     = ADDR_UNSET,
456                 .input          = {{
457                         .type   = CX88_VMUX_COMPOSITE1,
458                         .vmux   = 1,
459                         .gpio0  = 0x000027df,
460                 },{
461                         .type   = CX88_VMUX_SVIDEO,
462                         .vmux   = 2,
463                         .gpio0  = 0x000027df,
464                 }},
465                 .mpeg           = CX88_MPEG_DVB,
466         },
467         [CX88_BOARD_KWORLD_LTV883] = {
468                 .name           = "KWorld LTV883RF",
469                 .tuner_type     = TUNER_TNF_8831BGFF,
470                 .radio_type     = UNSET,
471                 .tuner_addr     = ADDR_UNSET,
472                 .radio_addr     = ADDR_UNSET,
473                 .input          = {{
474                         .type   = CX88_VMUX_TELEVISION,
475                         .vmux   = 0,
476                         .gpio0  = 0x07f8,
477                 },{
478                         .type   = CX88_VMUX_DEBUG,
479                         .vmux   = 0,
480                         .gpio0  = 0x07f9,  // mono from tuner chip
481                 },{
482                         .type   = CX88_VMUX_COMPOSITE1,
483                         .vmux   = 1,
484                         .gpio0  = 0x000007fa,
485                 },{
486                         .type   = CX88_VMUX_SVIDEO,
487                         .vmux   = 2,
488                         .gpio0  = 0x000007fa,
489                 }},
490                 .radio = {
491                         .type   = CX88_RADIO,
492                         .gpio0  = 0x000007f8,
493                 },
494         },
495         [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q] = {
496                 .name           = "DViCO FusionHDTV 3 Gold-Q",
497                 .tuner_type     = TUNER_MICROTUNE_4042FI5,
498                 .radio_type     = UNSET,
499                 .tuner_addr     = ADDR_UNSET,
500                 .radio_addr     = ADDR_UNSET,
501                 /*
502                    GPIO[0] resets DT3302 DTV receiver
503                     0 - reset asserted
504                     1 - normal operation
505                    GPIO[1] mutes analog audio output connector
506                     0 - enable selected source
507                     1 - mute
508                    GPIO[2] selects source for analog audio output connector
509                     0 - analog audio input connector on tab
510                     1 - analog DAC output from CX23881 chip
511                    GPIO[3] selects RF input connector on tuner module
512                     0 - RF connector labeled CABLE
513                     1 - RF connector labeled ANT
514                    GPIO[4] selects high RF for QAM256 mode
515                     0 - normal RF
516                     1 - high RF
517                 */
518                 .input          = {{
519                         .type   = CX88_VMUX_TELEVISION,
520                         .vmux   = 0,
521                         .gpio0  = 0x0f0d,
522                 },{
523                         .type   = CX88_VMUX_CABLE,
524                         .vmux   = 0,
525                         .gpio0  = 0x0f05,
526                 },{
527                         .type   = CX88_VMUX_COMPOSITE1,
528                         .vmux   = 1,
529                         .gpio0  = 0x0f00,
530                 },{
531                         .type   = CX88_VMUX_SVIDEO,
532                         .vmux   = 2,
533                         .gpio0  = 0x0f00,
534                 }},
535                 .mpeg           = CX88_MPEG_DVB,
536         },
537         [CX88_BOARD_HAUPPAUGE_DVB_T1] = {
538                 .name           = "Hauppauge Nova-T DVB-T",
539                 .tuner_type     = TUNER_ABSENT,
540                 .radio_type     = UNSET,
541                 .tuner_addr     = ADDR_UNSET,
542                 .radio_addr     = ADDR_UNSET,
543                 .input          = {{
544                         .type   = CX88_VMUX_DVB,
545                         .vmux   = 0,
546                 }},
547                 .mpeg           = CX88_MPEG_DVB,
548         },
549         [CX88_BOARD_CONEXANT_DVB_T1] = {
550                 .name           = "Conexant DVB-T reference design",
551                 .tuner_type     = TUNER_ABSENT,
552                 .radio_type     = UNSET,
553                 .tuner_addr     = ADDR_UNSET,
554                 .radio_addr     = ADDR_UNSET,
555                 .input          = {{
556                         .type   = CX88_VMUX_DVB,
557                         .vmux   = 0,
558                 }},
559                 .mpeg           = CX88_MPEG_DVB,
560         },
561         [CX88_BOARD_PROVIDEO_PV259] = {
562                 .name           = "Provideo PV259",
563                 .tuner_type     = TUNER_PHILIPS_FQ1216ME,
564                 .radio_type     = UNSET,
565                 .tuner_addr     = ADDR_UNSET,
566                 .radio_addr     = ADDR_UNSET,
567                 .input          = {{
568                         .type   = CX88_VMUX_TELEVISION,
569                         .vmux   = 0,
570                         .audioroute = 1,
571                 }},
572                 .mpeg           = CX88_MPEG_BLACKBIRD,
573         },
574         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS] = {
575                 .name           = "DViCO FusionHDTV DVB-T Plus",
576                 .tuner_type     = TUNER_ABSENT, /* No analog tuner */
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  = 0x000027df,
584                 },{
585                         .type   = CX88_VMUX_SVIDEO,
586                         .vmux   = 2,
587                         .gpio0  = 0x000027df,
588                 }},
589                 .mpeg           = CX88_MPEG_DVB,
590         },
591         [CX88_BOARD_DNTV_LIVE_DVB_T] = {
592                 .name           = "digitalnow DNTV Live! DVB-T",
593                 .tuner_type     = TUNER_ABSENT,
594                 .radio_type     = UNSET,
595                 .tuner_addr     = ADDR_UNSET,
596                 .radio_addr     = ADDR_UNSET,
597                 .input          = {{
598                         .type   = CX88_VMUX_COMPOSITE1,
599                         .vmux   = 1,
600                         .gpio0  = 0x00000700,
601                         .gpio2  = 0x00000101,
602                 },{
603                         .type   = CX88_VMUX_SVIDEO,
604                         .vmux   = 2,
605                         .gpio0  = 0x00000700,
606                         .gpio2  = 0x00000101,
607                 }},
608                 .mpeg           = CX88_MPEG_DVB,
609         },
610         [CX88_BOARD_PCHDTV_HD3000] = {
611                 .name           = "pcHDTV HD3000 HDTV",
612                 .tuner_type     = TUNER_THOMSON_DTT761X,
613                 .radio_type     = UNSET,
614                 .tuner_addr     = ADDR_UNSET,
615                 .radio_addr     = ADDR_UNSET,
616                 .tda9887_conf   = TDA9887_PRESENT,
617                 /* GPIO[2] = audio source for analog audio out connector
618                  *  0 = analog audio input connector
619                  *  1 = CX88 audio DACs
620                  *
621                  * GPIO[7] = input to CX88's audio/chroma ADC
622                  *  0 = FM 10.7 MHz IF
623                  *  1 = Sound 4.5 MHz IF
624                  *
625                  * GPIO[1,5,6] = Oren 51132 pins 27,35,28 respectively
626                  *
627                  * GPIO[16] = Remote control input
628                  */
629                 .input          = {{
630                         .type   = CX88_VMUX_TELEVISION,
631                         .vmux   = 0,
632                         .gpio0  = 0x00008484,
633                 },{
634                         .type   = CX88_VMUX_COMPOSITE1,
635                         .vmux   = 1,
636                         .gpio0  = 0x00008400,
637                 },{
638                         .type   = CX88_VMUX_SVIDEO,
639                         .vmux   = 2,
640                         .gpio0  = 0x00008400,
641                 }},
642                 .radio = {
643                         .type   = CX88_RADIO,
644                         .gpio0  = 0x00008404,
645                 },
646                 .mpeg           = CX88_MPEG_DVB,
647         },
648         [CX88_BOARD_HAUPPAUGE_ROSLYN] = {
649                 // entry added by Kaustubh D. Bhalerao <bhalerao.1@osu.edu>
650                 // GPIO values obtained from regspy, courtesy Sean Covel
651                 .name           = "Hauppauge WinTV 28xxx (Roslyn) models",
652                 .tuner_type     = UNSET,
653                 .radio_type     = UNSET,
654                 .tuner_addr     = ADDR_UNSET,
655                 .radio_addr     = ADDR_UNSET,
656                 .input          = {{
657                         .type   = CX88_VMUX_TELEVISION,
658                         .vmux   = 0,
659                         .gpio0  = 0xed1a,
660                         .gpio2  = 0x00ff,
661                 },{
662                         .type   = CX88_VMUX_DEBUG,
663                         .vmux   = 0,
664                         .gpio0  = 0xff01,
665                 },{
666                         .type   = CX88_VMUX_COMPOSITE1,
667                         .vmux   = 1,
668                         .gpio0  = 0xff02,
669                 },{
670                         .type   = CX88_VMUX_SVIDEO,
671                         .vmux   = 2,
672                         .gpio0  = 0xed92,
673                         .gpio2  = 0x00ff,
674                 }},
675                 .radio = {
676                          .type   = CX88_RADIO,
677                          .gpio0  = 0xed96,
678                          .gpio2  = 0x00ff,
679                  },
680                 .mpeg           = CX88_MPEG_BLACKBIRD,
681         },
682         [CX88_BOARD_DIGITALLOGIC_MEC] = {
683                 .name           = "Digital-Logic MICROSPACE Entertainment Center (MEC)",
684                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
685                 .radio_type     = UNSET,
686                 .tuner_addr     = ADDR_UNSET,
687                 .radio_addr     = ADDR_UNSET,
688                 .tda9887_conf   = TDA9887_PRESENT,
689                 .input          = {{
690                         .type   = CX88_VMUX_TELEVISION,
691                         .vmux   = 0,
692                         .gpio0  = 0x00009d80,
693                         .audioroute = 1,
694                 },{
695                         .type   = CX88_VMUX_COMPOSITE1,
696                         .vmux   = 1,
697                         .gpio0  = 0x00009d76,
698                         .audioroute = 1,
699                 },{
700                         .type   = CX88_VMUX_SVIDEO,
701                         .vmux   = 2,
702                         .gpio0  = 0x00009d76,
703                         .audioroute = 1,
704                 }},
705                 .radio = {
706                         .type   = CX88_RADIO,
707                         .gpio0  = 0x00009d00,
708                         .audioroute = 1,
709                 },
710                 .mpeg           = CX88_MPEG_BLACKBIRD,
711         },
712         [CX88_BOARD_IODATA_GVBCTV7E] = {
713                 .name           = "IODATA GV/BCTV7E",
714                 .tuner_type     = TUNER_PHILIPS_FQ1286,
715                 .radio_type     = UNSET,
716                 .tuner_addr     = ADDR_UNSET,
717                 .radio_addr     = ADDR_UNSET,
718                 .tda9887_conf   = TDA9887_PRESENT,
719                 .input          = {{
720                         .type   = CX88_VMUX_TELEVISION,
721                         .vmux   = 1,
722                         .gpio1  = 0x0000e03f,
723                 },{
724                         .type   = CX88_VMUX_COMPOSITE1,
725                         .vmux   = 2,
726                         .gpio1  = 0x0000e07f,
727                 },{
728                         .type   = CX88_VMUX_SVIDEO,
729                         .vmux   = 3,
730                         .gpio1  = 0x0000e07f,
731                 }}
732         },
733         [CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO] = {
734                 .name           = "PixelView PlayTV Ultra Pro (Stereo)",
735                 /* May be also TUNER_YMEC_TVF_5533MF for NTSC/M or PAL/M */
736                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
737                 .radio_type     = UNSET,
738                 .tuner_addr     = ADDR_UNSET,
739                 .radio_addr     = ADDR_UNSET,
740                 /* Some variants use a tda9874 and so need the tvaudio module. */
741                 .audio_chip     = V4L2_IDENT_TVAUDIO,
742                 .input          = {{
743                         .type   = CX88_VMUX_TELEVISION,
744                         .vmux   = 0,
745                         .gpio0  = 0xbf61,  /* internal decoder */
746                 },{
747                         .type   = CX88_VMUX_COMPOSITE1,
748                         .vmux   = 1,
749                         .gpio0  = 0xbf63,
750                 },{
751                         .type   = CX88_VMUX_SVIDEO,
752                         .vmux   = 2,
753                         .gpio0  = 0xbf63,
754                 }},
755                 .radio = {
756                          .type  = CX88_RADIO,
757                          .gpio0 = 0xbf60,
758                  },
759         },
760         [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = {
761                 .name           = "DViCO FusionHDTV 3 Gold-T",
762                 .tuner_type     = TUNER_THOMSON_DTT761X,
763                 .radio_type     = UNSET,
764                 .tuner_addr     = ADDR_UNSET,
765                 .radio_addr     = ADDR_UNSET,
766                 .tda9887_conf   = TDA9887_PRESENT,
767                 .input          = {{
768                         .type   = CX88_VMUX_TELEVISION,
769                         .vmux   = 0,
770                         .gpio0  = 0x97ed,
771                 },{
772                         .type   = CX88_VMUX_COMPOSITE1,
773                         .vmux   = 1,
774                         .gpio0  = 0x97e9,
775                 },{
776                         .type   = CX88_VMUX_SVIDEO,
777                         .vmux   = 2,
778                         .gpio0  = 0x97e9,
779                 }},
780                 .mpeg           = CX88_MPEG_DVB,
781         },
782         [CX88_BOARD_ADSTECH_DVB_T_PCI] = {
783                 .name           = "ADS Tech Instant TV DVB-T PCI",
784                 .tuner_type     = TUNER_ABSENT,
785                 .radio_type     = UNSET,
786                 .tuner_addr     = ADDR_UNSET,
787                 .radio_addr     = ADDR_UNSET,
788                 .input          = {{
789                         .type   = CX88_VMUX_COMPOSITE1,
790                         .vmux   = 1,
791                         .gpio0  = 0x0700,
792                         .gpio2  = 0x0101,
793                 },{
794                         .type   = CX88_VMUX_SVIDEO,
795                         .vmux   = 2,
796                         .gpio0  = 0x0700,
797                         .gpio2  = 0x0101,
798                 }},
799                 .mpeg           = CX88_MPEG_DVB,
800         },
801         [CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1] = {
802                 .name           = "TerraTec Cinergy 1400 DVB-T",
803                 .tuner_type     = TUNER_ABSENT,
804                 .input          = {{
805                         .type   = CX88_VMUX_DVB,
806                         .vmux   = 0,
807                 },{
808                         .type   = CX88_VMUX_COMPOSITE1,
809                         .vmux   = 2,
810                 },{
811                         .type   = CX88_VMUX_SVIDEO,
812                         .vmux   = 2,
813                 }},
814                 .mpeg           = CX88_MPEG_DVB,
815         },
816         [CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD] = {
817                 .name           = "DViCO FusionHDTV 5 Gold",
818                 .tuner_type     = TUNER_LG_TDVS_H06XF, /* TDVS-H062F */
819                 .radio_type     = UNSET,
820                 .tuner_addr     = ADDR_UNSET,
821                 .radio_addr     = ADDR_UNSET,
822                 .tda9887_conf   = TDA9887_PRESENT,
823                 .input          = {{
824                         .type   = CX88_VMUX_TELEVISION,
825                         .vmux   = 0,
826                         .gpio0  = 0x87fd,
827                 },{
828                         .type   = CX88_VMUX_COMPOSITE1,
829                         .vmux   = 1,
830                         .gpio0  = 0x87f9,
831                 },{
832                         .type   = CX88_VMUX_SVIDEO,
833                         .vmux   = 2,
834                         .gpio0  = 0x87f9,
835                 }},
836                 .mpeg           = CX88_MPEG_DVB,
837         },
838         [CX88_BOARD_AVERMEDIA_ULTRATV_MC_550] = {
839                 .name           = "AverMedia UltraTV Media Center PCI 550",
840                 .tuner_type     = TUNER_PHILIPS_FM1236_MK3,
841                 .radio_type     = UNSET,
842                 .tuner_addr     = ADDR_UNSET,
843                 .radio_addr     = ADDR_UNSET,
844                 .tda9887_conf   = TDA9887_PRESENT,
845                 .input          = {{
846                         .type   = CX88_VMUX_COMPOSITE1,
847                         .vmux   = 0,
848                         .gpio0  = 0x0000cd73,
849                         .audioroute = 1,
850                 },{
851                         .type   = CX88_VMUX_SVIDEO,
852                         .vmux   = 1,
853                         .gpio0  = 0x0000cd73,
854                         .audioroute = 1,
855                 },{
856                         .type   = CX88_VMUX_TELEVISION,
857                         .vmux   = 3,
858                         .gpio0  = 0x0000cdb3,
859                         .audioroute = 1,
860                 }},
861                 .radio = {
862                         .type   = CX88_RADIO,
863                         .vmux   = 2,
864                         .gpio0  = 0x0000cdf3,
865                         .audioroute = 1,
866                 },
867                 .mpeg           = CX88_MPEG_BLACKBIRD,
868         },
869         [CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD] = {
870                  /* Alexander Wold <awold@bigfoot.com> */
871                  .name           = "Kworld V-Stream Xpert DVD",
872                  .tuner_type     = UNSET,
873                  .input          = {{
874                          .type   = CX88_VMUX_COMPOSITE1,
875                          .vmux   = 1,
876                          .gpio0  = 0x03000000,
877                          .gpio1  = 0x01000000,
878                          .gpio2  = 0x02000000,
879                          .gpio3  = 0x00100000,
880                  },{
881                          .type   = CX88_VMUX_SVIDEO,
882                          .vmux   = 2,
883                          .gpio0  = 0x03000000,
884                          .gpio1  = 0x01000000,
885                          .gpio2  = 0x02000000,
886                          .gpio3  = 0x00100000,
887                  }},
888         },
889         [CX88_BOARD_ATI_HDTVWONDER] = {
890                 .name           = "ATI HDTV Wonder",
891                 .tuner_type     = TUNER_PHILIPS_TUV1236D,
892                 .radio_type     = UNSET,
893                 .tuner_addr     = ADDR_UNSET,
894                 .radio_addr     = ADDR_UNSET,
895                 .input          = {{
896                         .type   = CX88_VMUX_TELEVISION,
897                         .vmux   = 0,
898                         .gpio0  = 0x00000ff7,
899                         .gpio1  = 0x000000ff,
900                         .gpio2  = 0x00000001,
901                         .gpio3  = 0x00000000,
902                 },{
903                         .type   = CX88_VMUX_COMPOSITE1,
904                         .vmux   = 1,
905                         .gpio0  = 0x00000ffe,
906                         .gpio1  = 0x000000ff,
907                         .gpio2  = 0x00000001,
908                         .gpio3  = 0x00000000,
909                 },{
910                         .type   = CX88_VMUX_SVIDEO,
911                         .vmux   = 2,
912                         .gpio0  = 0x00000ffe,
913                         .gpio1  = 0x000000ff,
914                         .gpio2  = 0x00000001,
915                         .gpio3  = 0x00000000,
916                 }},
917                 .mpeg           = CX88_MPEG_DVB,
918         },
919         [CX88_BOARD_WINFAST_DTV1000] = {
920                 .name           = "WinFast DTV1000-T",
921                 .tuner_type     = TUNER_ABSENT,
922                 .radio_type     = UNSET,
923                 .tuner_addr     = ADDR_UNSET,
924                 .radio_addr     = ADDR_UNSET,
925                 .input          = {{
926                         .type   = CX88_VMUX_DVB,
927                         .vmux   = 0,
928                 },{
929                         .type   = CX88_VMUX_COMPOSITE1,
930                         .vmux   = 1,
931                 },{
932                         .type   = CX88_VMUX_SVIDEO,
933                         .vmux   = 2,
934                 }},
935                 .mpeg           = CX88_MPEG_DVB,
936         },
937         [CX88_BOARD_AVERTV_303] = {
938                 .name           = "AVerTV 303 (M126)",
939                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
940                 .radio_type     = UNSET,
941                 .tuner_addr     = ADDR_UNSET,
942                 .radio_addr     = ADDR_UNSET,
943                 .tda9887_conf   = TDA9887_PRESENT,
944                 .input          = {{
945                         .type   = CX88_VMUX_TELEVISION,
946                         .vmux   = 0,
947                         .gpio0  = 0x00ff,
948                         .gpio1  = 0xe09f,
949                         .gpio2  = 0x0010,
950                         .gpio3  = 0x0000,
951                 },{
952                         .type   = CX88_VMUX_COMPOSITE1,
953                         .vmux   = 1,
954                         .gpio0  = 0x00ff,
955                         .gpio1  = 0xe05f,
956                         .gpio2  = 0x0010,
957                         .gpio3  = 0x0000,
958                 },{
959                         .type   = CX88_VMUX_SVIDEO,
960                         .vmux   = 2,
961                         .gpio0  = 0x00ff,
962                         .gpio1  = 0xe05f,
963                         .gpio2  = 0x0010,
964                         .gpio3  = 0x0000,
965                 }},
966         },
967         [CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1] = {
968                 .name           = "Hauppauge Nova-S-Plus DVB-S",
969                 .tuner_type     = TUNER_ABSENT,
970                 .radio_type     = UNSET,
971                 .tuner_addr     = ADDR_UNSET,
972                 .radio_addr     = ADDR_UNSET,
973                 .input          = {{
974                         .type   = CX88_VMUX_DVB,
975                         .vmux   = 0,
976                 },{
977                         .type   = CX88_VMUX_COMPOSITE1,
978                         .vmux   = 1,
979                 },{
980                         .type   = CX88_VMUX_SVIDEO,
981                         .vmux   = 2,
982                 }},
983                 .mpeg           = CX88_MPEG_DVB,
984         },
985         [CX88_BOARD_HAUPPAUGE_NOVASE2_S1] = {
986                 .name           = "Hauppauge Nova-SE2 DVB-S",
987                 .tuner_type     = TUNER_ABSENT,
988                 .radio_type     = UNSET,
989                 .tuner_addr     = ADDR_UNSET,
990                 .radio_addr     = ADDR_UNSET,
991                 .input          = {{
992                         .type   = CX88_VMUX_DVB,
993                         .vmux   = 0,
994                 }},
995                 .mpeg           = CX88_MPEG_DVB,
996         },
997         [CX88_BOARD_KWORLD_DVBS_100] = {
998                 .name           = "KWorld DVB-S 100",
999                 .tuner_type     = TUNER_ABSENT,
1000                 .radio_type     = UNSET,
1001                 .tuner_addr     = ADDR_UNSET,
1002                 .radio_addr     = ADDR_UNSET,
1003                 .input          = {{
1004                         .type   = CX88_VMUX_DVB,
1005                         .vmux   = 0,
1006                 },{
1007                         .type   = CX88_VMUX_COMPOSITE1,
1008                         .vmux   = 1,
1009                 },{
1010                         .type   = CX88_VMUX_SVIDEO,
1011                         .vmux   = 2,
1012                 }},
1013                 .mpeg           = CX88_MPEG_DVB,
1014         },
1015         [CX88_BOARD_HAUPPAUGE_HVR1100] = {
1016                 .name           = "Hauppauge WinTV-HVR1100 DVB-T/Hybrid",
1017                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1018                 .radio_type     = UNSET,
1019                 .tuner_addr     = ADDR_UNSET,
1020                 .radio_addr     = ADDR_UNSET,
1021                 .tda9887_conf   = TDA9887_PRESENT,
1022                 .input          = {{
1023                         .type   = CX88_VMUX_TELEVISION,
1024                         .vmux   = 0,
1025                 },{
1026                         .type   = CX88_VMUX_COMPOSITE1,
1027                         .vmux   = 1,
1028                 },{
1029                         .type   = CX88_VMUX_SVIDEO,
1030                         .vmux   = 2,
1031                 }},
1032                 /* fixme: Add radio support */
1033                 .mpeg           = CX88_MPEG_DVB,
1034         },
1035         [CX88_BOARD_HAUPPAUGE_HVR1100LP] = {
1036                 .name           = "Hauppauge WinTV-HVR1100 DVB-T/Hybrid (Low Profile)",
1037                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1038                 .radio_type     = UNSET,
1039                 .tuner_addr     = ADDR_UNSET,
1040                 .radio_addr     = ADDR_UNSET,
1041                 .tda9887_conf   = TDA9887_PRESENT,
1042                 .input          = {{
1043                         .type   = CX88_VMUX_TELEVISION,
1044                         .vmux   = 0,
1045                 },{
1046                         .type   = CX88_VMUX_COMPOSITE1,
1047                         .vmux   = 1,
1048                 }},
1049                 /* fixme: Add radio support */
1050                 .mpeg           = CX88_MPEG_DVB,
1051         },
1052         [CX88_BOARD_DNTV_LIVE_DVB_T_PRO] = {
1053                 .name           = "digitalnow DNTV Live! DVB-T Pro",
1054                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1055                 .radio_type     = UNSET,
1056                 .tuner_addr     = ADDR_UNSET,
1057                 .radio_addr     = ADDR_UNSET,
1058                 .tda9887_conf   = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1059                                   TDA9887_PORT2_ACTIVE,
1060                 .input          = {{
1061                         .type   = CX88_VMUX_TELEVISION,
1062                         .vmux   = 0,
1063                         .gpio0  = 0xf80808,
1064                 },{
1065                         .type   = CX88_VMUX_COMPOSITE1,
1066                         .vmux   = 1,
1067                         .gpio0  = 0xf80808,
1068                 },{
1069                         .type   = CX88_VMUX_SVIDEO,
1070                         .vmux   = 2,
1071                         .gpio0  = 0xf80808,
1072                 }},
1073                 .radio = {
1074                          .type  = CX88_RADIO,
1075                          .gpio0 = 0xf80808,
1076                 },
1077                 .mpeg           = CX88_MPEG_DVB,
1078         },
1079         [CX88_BOARD_KWORLD_DVB_T_CX22702] = {
1080                 /* Kworld V-stream Xpert DVB-T with Thomson tuner */
1081                 /* DTT 7579 Conexant CX22702-19 Conexant CX2388x  */
1082                 /* Manenti Marco <marco_manenti@colman.it> */
1083                 .name           = "KWorld/VStream XPert DVB-T with cx22702",
1084                 .tuner_type     = TUNER_ABSENT,
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  = 0x0700,
1092                         .gpio2  = 0x0101,
1093                 },{
1094                         .type   = CX88_VMUX_SVIDEO,
1095                         .vmux   = 2,
1096                         .gpio0  = 0x0700,
1097                         .gpio2  = 0x0101,
1098                 }},
1099                 .mpeg           = CX88_MPEG_DVB,
1100         },
1101         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL] = {
1102                 .name           = "DViCO FusionHDTV DVB-T Dual Digital",
1103                 .tuner_type     = TUNER_ABSENT, /* No analog tuner */
1104                 .radio_type     = UNSET,
1105                 .tuner_addr     = ADDR_UNSET,
1106                 .radio_addr     = ADDR_UNSET,
1107                 .input          = {{
1108                         .type   = CX88_VMUX_COMPOSITE1,
1109                         .vmux   = 1,
1110                         .gpio0  = 0x000067df,
1111                  },{
1112                         .type   = CX88_VMUX_SVIDEO,
1113                         .vmux   = 2,
1114                         .gpio0  = 0x000067df,
1115                 }},
1116                 .mpeg           = CX88_MPEG_DVB,
1117         },
1118         [CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT] = {
1119                 .name           = "KWorld HardwareMpegTV XPert",
1120                 .tuner_type     = TUNER_PHILIPS_TDA8290,
1121                 .radio_type     = UNSET,
1122                 .tuner_addr     = ADDR_UNSET,
1123                 .radio_addr     = ADDR_UNSET,
1124                 .input          = {{
1125                         .type   = CX88_VMUX_TELEVISION,
1126                         .vmux   = 0,
1127                         .gpio0  = 0x3de2,
1128                         .gpio2  = 0x00ff,
1129                 },{
1130                         .type   = CX88_VMUX_COMPOSITE1,
1131                         .vmux   = 1,
1132                         .gpio0  = 0x3de6,
1133                         .audioroute = 1,
1134                 },{
1135                         .type   = CX88_VMUX_SVIDEO,
1136                         .vmux   = 2,
1137                         .gpio0  = 0x3de6,
1138                         .audioroute = 1,
1139                 }},
1140                 .radio = {
1141                         .type   = CX88_RADIO,
1142                         .gpio0  = 0x3de6,
1143                         .gpio2  = 0x00ff,
1144                 },
1145                 .mpeg           = CX88_MPEG_BLACKBIRD,
1146         },
1147         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID] = {
1148                 .name           = "DViCO FusionHDTV DVB-T Hybrid",
1149                 .tuner_type     = TUNER_THOMSON_FE6600,
1150                 .radio_type     = UNSET,
1151                 .tuner_addr     = ADDR_UNSET,
1152                 .radio_addr     = ADDR_UNSET,
1153                 .input          = {{
1154                         .type   = CX88_VMUX_TELEVISION,
1155                         .vmux   = 0,
1156                         .gpio0  = 0x0000a75f,
1157                 },{
1158                         .type   = CX88_VMUX_COMPOSITE1,
1159                         .vmux   = 1,
1160                         .gpio0  = 0x0000a75b,
1161                 },{
1162                         .type   = CX88_VMUX_SVIDEO,
1163                         .vmux   = 2,
1164                         .gpio0  = 0x0000a75b,
1165                 }},
1166                 .mpeg           = CX88_MPEG_DVB,
1167         },
1168         [CX88_BOARD_PCHDTV_HD5500] = {
1169                 .name           = "pcHDTV HD5500 HDTV",
1170                 .tuner_type     = TUNER_LG_TDVS_H06XF, /* TDVS-H064F */
1171                 .radio_type     = UNSET,
1172                 .tuner_addr     = ADDR_UNSET,
1173                 .radio_addr     = ADDR_UNSET,
1174                 .tda9887_conf   = TDA9887_PRESENT,
1175                 .input          = {{
1176                         .type   = CX88_VMUX_TELEVISION,
1177                         .vmux   = 0,
1178                         .gpio0  = 0x87fd,
1179                 },{
1180                         .type   = CX88_VMUX_COMPOSITE1,
1181                         .vmux   = 1,
1182                         .gpio0  = 0x87f9,
1183                 },{
1184                         .type   = CX88_VMUX_SVIDEO,
1185                         .vmux   = 2,
1186                         .gpio0  = 0x87f9,
1187                 }},
1188                 .mpeg           = CX88_MPEG_DVB,
1189         },
1190         [CX88_BOARD_KWORLD_MCE200_DELUXE] = {
1191                 /* FIXME: tested TV input only, disabled composite,
1192                    svideo and radio until they can be tested also. */
1193                 .name           = "Kworld MCE 200 Deluxe",
1194                 .tuner_type     = TUNER_TENA_9533_DI,
1195                 .radio_type     = UNSET,
1196                 .tda9887_conf   = TDA9887_PRESENT,
1197                 .tuner_addr     = ADDR_UNSET,
1198                 .radio_addr     = ADDR_UNSET,
1199                 .input          = {{
1200                         .type   = CX88_VMUX_TELEVISION,
1201                         .vmux   = 0,
1202                         .gpio0  = 0x0000BDE6
1203                 }},
1204                 .mpeg           = CX88_MPEG_BLACKBIRD,
1205         },
1206         [CX88_BOARD_PIXELVIEW_PLAYTV_P7000] = {
1207                 /* FIXME: SVideo, Composite and FM inputs are untested */
1208                 .name           = "PixelView PlayTV P7000",
1209                 .tuner_type     = TUNER_PHILIPS_FM1216ME_MK3,
1210                 .radio_type     = UNSET,
1211                 .tuner_addr     = ADDR_UNSET,
1212                 .radio_addr     = ADDR_UNSET,
1213                 .tda9887_conf   = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1214                                   TDA9887_PORT2_ACTIVE,
1215                 .input          = {{
1216                         .type   = CX88_VMUX_TELEVISION,
1217                         .vmux   = 0,
1218                         .gpio0  = 0x5da6,
1219                 }},
1220                 .mpeg           = CX88_MPEG_BLACKBIRD,
1221         },
1222         [CX88_BOARD_NPGTECH_REALTV_TOP10FM] = {
1223                 .name           = "NPG Tech Real TV FM Top 10",
1224                 .tuner_type     = TUNER_TNF_5335MF, /* Actually a TNF9535 */
1225                 .radio_type     = UNSET,
1226                 .tuner_addr     = ADDR_UNSET,
1227                 .radio_addr     = ADDR_UNSET,
1228                 .input          = {{
1229                         .type   = CX88_VMUX_TELEVISION,
1230                         .vmux   = 0,
1231                         .gpio0  = 0x0788,
1232                 },{
1233                         .type   = CX88_VMUX_COMPOSITE1,
1234                         .vmux   = 1,
1235                         .gpio0  = 0x078b,
1236                 },{
1237                         .type   = CX88_VMUX_SVIDEO,
1238                         .vmux   = 2,
1239                         .gpio0  = 0x078b,
1240                 }},
1241                 .radio = {
1242                          .type  = CX88_RADIO,
1243                          .gpio0 = 0x074a,
1244                 },
1245         },
1246         [CX88_BOARD_WINFAST_DTV2000H] = {
1247                 .name           = "WinFast DTV2000 H",
1248                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1249                 .radio_type     = UNSET,
1250                 .tuner_addr     = ADDR_UNSET,
1251                 .radio_addr     = ADDR_UNSET,
1252                 .tda9887_conf   = TDA9887_PRESENT,
1253                 .input          = {{
1254                         .type   = CX88_VMUX_TELEVISION,
1255                         .vmux   = 0,
1256                         .gpio0  = 0x00017304,
1257                         .gpio1  = 0x00008203,
1258                         .gpio2  = 0x00017304,
1259                         .gpio3  = 0x02000000,
1260                 }, {
1261                         .type   = CX88_VMUX_COMPOSITE1,
1262                         .vmux   = 1,
1263                         .gpio0  = 0x0001d701,
1264                         .gpio1  = 0x0000b207,
1265                         .gpio2  = 0x0001d701,
1266                         .gpio3  = 0x02000000,
1267                 }, {
1268                         .type   = CX88_VMUX_COMPOSITE2,
1269                         .vmux   = 2,
1270                         .gpio0  = 0x0001d503,
1271                         .gpio1  = 0x0000b207,
1272                         .gpio2  = 0x0001d503,
1273                         .gpio3  = 0x02000000,
1274                 }, {
1275                         .type   = CX88_VMUX_SVIDEO,
1276                         .vmux   = 3,
1277                         .gpio0  = 0x0001d701,
1278                         .gpio1  = 0x0000b207,
1279                         .gpio2  = 0x0001d701,
1280                         .gpio3  = 0x02000000,
1281                 }},
1282                 .radio = {
1283                          .type  = CX88_RADIO,
1284                          .gpio0 = 0x00015702,
1285                          .gpio1 = 0x0000f207,
1286                          .gpio2 = 0x00015702,
1287                          .gpio3 = 0x02000000,
1288                 },
1289                 .mpeg           = CX88_MPEG_DVB,
1290         },
1291         [CX88_BOARD_WINFAST_DTV2000H_J] = {
1292                 .name           = "WinFast DTV2000 H rev. J",
1293                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1294                 .radio_type     = UNSET,
1295                 .tuner_addr     = ADDR_UNSET,
1296                 .radio_addr     = ADDR_UNSET,
1297                 .tda9887_conf   = TDA9887_PRESENT,
1298                 .input          = {{
1299                         .type   = CX88_VMUX_TELEVISION,
1300                         .vmux   = 0,
1301                         .gpio0  = 0x00017300,
1302                         .gpio1  = 0x00008207,
1303                         .gpio2  = 0x00000000,
1304                         .gpio3  = 0x02000000,
1305                 },{
1306                         .type   = CX88_VMUX_TELEVISION,
1307                         .vmux   = 0,
1308                         .gpio0  = 0x00018300,
1309                         .gpio1  = 0x0000f207,
1310                         .gpio2  = 0x00017304,
1311                         .gpio3  = 0x02000000,
1312                 },{
1313                         .type   = CX88_VMUX_COMPOSITE1,
1314                         .vmux   = 1,
1315                         .gpio0  = 0x00018301,
1316                         .gpio1  = 0x0000f207,
1317                         .gpio2  = 0x00017304,
1318                         .gpio3  = 0x02000000,
1319                 },{
1320                         .type   = CX88_VMUX_SVIDEO,
1321                         .vmux   = 2,
1322                         .gpio0  = 0x00018301,
1323                         .gpio1  = 0x0000f207,
1324                         .gpio2  = 0x00017304,
1325                         .gpio3  = 0x02000000,
1326                 }},
1327                 .radio = {
1328                          .type  = CX88_RADIO,
1329                          .gpio0 = 0x00015702,
1330                          .gpio1 = 0x0000f207,
1331                          .gpio2 = 0x00015702,
1332                          .gpio3 = 0x02000000,
1333                 },
1334                 .mpeg           = CX88_MPEG_DVB,
1335         },
1336         [CX88_BOARD_GENIATECH_DVBS] = {
1337                 .name          = "Geniatech DVB-S",
1338                 .tuner_type    = TUNER_ABSENT,
1339                 .radio_type    = UNSET,
1340                 .tuner_addr    = ADDR_UNSET,
1341                 .radio_addr    = ADDR_UNSET,
1342                 .input  = {{
1343                         .type  = CX88_VMUX_DVB,
1344                         .vmux  = 0,
1345                 },{
1346                         .type  = CX88_VMUX_COMPOSITE1,
1347                         .vmux  = 1,
1348                 }},
1349                 .mpeg           = CX88_MPEG_DVB,
1350         },
1351         [CX88_BOARD_HAUPPAUGE_HVR3000] = {
1352                 .name           = "Hauppauge WinTV-HVR3000 TriMode Analog/DVB-S/DVB-T",
1353                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1354                 .radio_type     = UNSET,
1355                 .tuner_addr     = ADDR_UNSET,
1356                 .radio_addr     = ADDR_UNSET,
1357                 .tda9887_conf   = TDA9887_PRESENT,
1358                 .audio_chip     = V4L2_IDENT_WM8775,
1359                 .input          = {{
1360                         .type   = CX88_VMUX_TELEVISION,
1361                         .vmux   = 0,
1362                         .gpio0  = 0x84bf,
1363                         /* 1: TV Audio / FM Mono */
1364                         .audioroute = 1,
1365                 },{
1366                         .type   = CX88_VMUX_COMPOSITE1,
1367                         .vmux   = 1,
1368                         .gpio0  = 0x84bf,
1369                         /* 2: Line-In */
1370                         .audioroute = 2,
1371                 },{
1372                         .type   = CX88_VMUX_SVIDEO,
1373                         .vmux   = 2,
1374                         .gpio0  = 0x84bf,
1375                         /* 2: Line-In */
1376                         .audioroute = 2,
1377                 }},
1378                 .radio = {
1379                         .type   = CX88_RADIO,
1380                         .gpio0  = 0x84bf,
1381                         /* 4: FM Stereo (untested) */
1382                         .audioroute = 8,
1383                 },
1384                 .mpeg           = CX88_MPEG_DVB,
1385                 .num_frontends  = 2,
1386         },
1387         [CX88_BOARD_NORWOOD_MICRO] = {
1388                 .name           = "Norwood Micro TV Tuner",
1389                 .tuner_type     = TUNER_TNF_5335MF,
1390                 .radio_type     = UNSET,
1391                 .tuner_addr     = ADDR_UNSET,
1392                 .radio_addr     = ADDR_UNSET,
1393                 .input          = {{
1394                         .type   = CX88_VMUX_TELEVISION,
1395                         .vmux   = 0,
1396                         .gpio0  = 0x0709,
1397                 },{
1398                         .type   = CX88_VMUX_COMPOSITE1,
1399                         .vmux   = 1,
1400                         .gpio0  = 0x070b,
1401                 },{
1402                         .type   = CX88_VMUX_SVIDEO,
1403                         .vmux   = 2,
1404                         .gpio0  = 0x070b,
1405                 }},
1406         },
1407         [CX88_BOARD_TE_DTV_250_OEM_SWANN] = {
1408                 .name           = "Shenzhen Tungsten Ages Tech TE-DTV-250 / Swann OEM",
1409                 .tuner_type     = TUNER_LG_PAL_NEW_TAPC,
1410                 .radio_type     = UNSET,
1411                 .tuner_addr     = ADDR_UNSET,
1412                 .radio_addr     = ADDR_UNSET,
1413                 .input          = {{
1414                         .type   = CX88_VMUX_TELEVISION,
1415                         .vmux   = 0,
1416                         .gpio0  = 0x003fffff,
1417                         .gpio1  = 0x00e00000,
1418                         .gpio2  = 0x003fffff,
1419                         .gpio3  = 0x02000000,
1420                 },{
1421                         .type   = CX88_VMUX_COMPOSITE1,
1422                         .vmux   = 1,
1423                         .gpio0  = 0x003fffff,
1424                         .gpio1  = 0x00e00000,
1425                         .gpio2  = 0x003fffff,
1426                         .gpio3  = 0x02000000,
1427                 },{
1428                         .type   = CX88_VMUX_SVIDEO,
1429                         .vmux   = 2,
1430                         .gpio0  = 0x003fffff,
1431                         .gpio1  = 0x00e00000,
1432                         .gpio2  = 0x003fffff,
1433                         .gpio3  = 0x02000000,
1434                 }},
1435         },
1436         [CX88_BOARD_HAUPPAUGE_HVR1300] = {
1437                 .name           = "Hauppauge WinTV-HVR1300 DVB-T/Hybrid MPEG Encoder",
1438                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1439                 .radio_type     = UNSET,
1440                 .tuner_addr     = ADDR_UNSET,
1441                 .radio_addr     = ADDR_UNSET,
1442                 .tda9887_conf   = TDA9887_PRESENT,
1443                 .audio_chip     = V4L2_IDENT_WM8775,
1444                 /*
1445                  * gpio0 as reported by Mike Crash <mike AT mikecrash.com>
1446                  */
1447                 .input          = {{
1448                         .type   = CX88_VMUX_TELEVISION,
1449                         .vmux   = 0,
1450                         .gpio0  = 0xef88,
1451                         /* 1: TV Audio / FM Mono */
1452                         .audioroute = 1,
1453                 },{
1454                         .type   = CX88_VMUX_COMPOSITE1,
1455                         .vmux   = 1,
1456                         .gpio0  = 0xef88,
1457                         /* 2: Line-In */
1458                         .audioroute = 2,
1459                 },{
1460                         .type   = CX88_VMUX_SVIDEO,
1461                         .vmux   = 2,
1462                         .gpio0  = 0xef88,
1463                         /* 2: Line-In */
1464                         .audioroute = 2,
1465                 }},
1466                 .mpeg           = CX88_MPEG_DVB | CX88_MPEG_BLACKBIRD,
1467                 .radio = {
1468                         .type   = CX88_RADIO,
1469                         .gpio0  = 0xef88,
1470                         /* 4: FM Stereo (untested) */
1471                         .audioroute = 8,
1472                 },
1473         },
1474         [CX88_BOARD_SAMSUNG_SMT_7020] = {
1475                 .name           = "Samsung SMT 7020 DVB-S",
1476                 .tuner_type     = TUNER_ABSENT,
1477                 .radio_type     = UNSET,
1478                 .tuner_addr     = ADDR_UNSET,
1479                 .radio_addr     = ADDR_UNSET,
1480                 .input          = { {
1481                         .type   = CX88_VMUX_DVB,
1482                         .vmux   = 0,
1483                 } },
1484                 .mpeg           = CX88_MPEG_DVB,
1485         },
1486         [CX88_BOARD_ADSTECH_PTV_390] = {
1487                 .name           = "ADS Tech Instant Video PCI",
1488                 .tuner_type     = TUNER_ABSENT,
1489                 .radio_type     = UNSET,
1490                 .tuner_addr     = ADDR_UNSET,
1491                 .radio_addr     = ADDR_UNSET,
1492                 .input          = {{
1493                         .type   = CX88_VMUX_DEBUG,
1494                         .vmux   = 3,
1495                         .gpio0  = 0x04ff,
1496                 },{
1497                         .type   = CX88_VMUX_COMPOSITE1,
1498                         .vmux   = 1,
1499                         .gpio0  = 0x07fa,
1500                 },{
1501                         .type   = CX88_VMUX_SVIDEO,
1502                         .vmux   = 2,
1503                         .gpio0  = 0x07fa,
1504                 }},
1505         },
1506         [CX88_BOARD_PINNACLE_PCTV_HD_800i] = {
1507                 .name           = "Pinnacle PCTV HD 800i",
1508                 .tuner_type     = TUNER_XC5000,
1509                 .radio_type     = UNSET,
1510                 .tuner_addr     = ADDR_UNSET,
1511                 .radio_addr     = ADDR_UNSET,
1512                 .input          = {{
1513                         .type   = CX88_VMUX_TELEVISION,
1514                         .vmux   = 0,
1515                         .gpio0  = 0x04fb,
1516                         .gpio1  = 0x10ff,
1517                 },{
1518                         .type   = CX88_VMUX_COMPOSITE1,
1519                         .vmux   = 1,
1520                         .gpio0  = 0x04fb,
1521                         .gpio1  = 0x10ef,
1522                         .audioroute = 1,
1523                 },{
1524                         .type   = CX88_VMUX_SVIDEO,
1525                         .vmux   = 2,
1526                         .gpio0  = 0x04fb,
1527                         .gpio1  = 0x10ef,
1528                         .audioroute = 1,
1529                 }},
1530                 .mpeg           = CX88_MPEG_DVB,
1531         },
1532         [CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO] = {
1533                 .name           = "DViCO FusionHDTV 5 PCI nano",
1534                 /* xc3008 tuner, digital only for now */
1535                 .tuner_type     = TUNER_ABSENT,
1536                 .radio_type     = UNSET,
1537                 .tuner_addr     = ADDR_UNSET,
1538                 .radio_addr     = ADDR_UNSET,
1539                 .input          = {{
1540                         .type   = CX88_VMUX_TELEVISION,
1541                         .vmux   = 0,
1542                         .gpio0  = 0x000027df, /* Unconfirmed */
1543                 }, {
1544                         .type   = CX88_VMUX_COMPOSITE1,
1545                         .vmux   = 1,
1546                         .gpio0  = 0x000027df, /* Unconfirmed */
1547                         .audioroute = 1,
1548                 }, {
1549                         .type   = CX88_VMUX_SVIDEO,
1550                         .vmux   = 2,
1551                         .gpio0  = 0x000027df, /* Unconfirmed */
1552                         .audioroute = 1,
1553                 } },
1554                 .mpeg           = CX88_MPEG_DVB,
1555         },
1556         [CX88_BOARD_PINNACLE_HYBRID_PCTV] = {
1557                 .name           = "Pinnacle Hybrid PCTV",
1558                 .tuner_type     = TUNER_XC2028,
1559                 .tuner_addr     = 0x61,
1560                 .radio_type     = TUNER_XC2028,
1561                 .radio_addr     = 0x61,
1562                 .input          = { {
1563                         .type   = CX88_VMUX_TELEVISION,
1564                         .vmux   = 0,
1565                         .gpio0  = 0x004ff,
1566                         .gpio1  = 0x010ff,
1567                         .gpio2  = 0x00001,
1568                 }, {
1569                         .type   = CX88_VMUX_COMPOSITE1,
1570                         .vmux   = 1,
1571                         .gpio0  = 0x004fb,
1572                         .gpio1  = 0x010ef,
1573                         .audioroute = 1,
1574                 }, {
1575                         .type   = CX88_VMUX_SVIDEO,
1576                         .vmux   = 2,
1577                         .gpio0  = 0x004fb,
1578                         .gpio1  = 0x010ef,
1579                         .audioroute = 1,
1580                 } },
1581                 .radio = {
1582                         .type   = CX88_RADIO,
1583                         .gpio0  = 0x004ff,
1584                         .gpio1  = 0x010ff,
1585                         .gpio2  = 0x0ff,
1586                 },
1587                 .mpeg           = CX88_MPEG_DVB,
1588         },
1589         /* Terry Wu <terrywu2009@gmail.com> */
1590         /* TV Audio :      set GPIO 2, 18, 19 value to 0, 1, 0 */
1591         /* FM Audio :      set GPIO 2, 18, 19 value to 0, 0, 0 */
1592         /* Line-in Audio : set GPIO 2, 18, 19 value to 0, 1, 1 */
1593         /* Mute Audio :    set GPIO 2 value to 1               */
1594         [CX88_BOARD_WINFAST_TV2000_XP_GLOBAL] = {
1595                 .name           = "Leadtek TV2000 XP Global",
1596                 .tuner_type     = TUNER_XC2028,
1597                 .tuner_addr     = 0x61,
1598                 .radio_type     = TUNER_XC2028,
1599                 .radio_addr     = 0x61,
1600                 .input          = { {
1601                         .type   = CX88_VMUX_TELEVISION,
1602                         .vmux   = 0,
1603                         .gpio0  = 0x0400,       /* pin 2 = 0 */
1604                         .gpio1  = 0x0000,
1605                         .gpio2  = 0x0C04,       /* pin 18 = 1, pin 19 = 0 */
1606                         .gpio3  = 0x0000,
1607                 }, {
1608                         .type   = CX88_VMUX_COMPOSITE1,
1609                         .vmux   = 1,
1610                         .gpio0  = 0x0400,       /* pin 2 = 0 */
1611                         .gpio1  = 0x0000,
1612                         .gpio2  = 0x0C0C,       /* pin 18 = 1, pin 19 = 1 */
1613                         .gpio3  = 0x0000,
1614                 }, {
1615                         .type   = CX88_VMUX_SVIDEO,
1616                         .vmux   = 2,
1617                         .gpio0  = 0x0400,       /* pin 2 = 0 */
1618                         .gpio1  = 0x0000,
1619                         .gpio2  = 0x0C0C,       /* pin 18 = 1, pin 19 = 1 */
1620                         .gpio3  = 0x0000,
1621                 } },
1622                 .radio = {
1623                         .type   = CX88_RADIO,
1624                         .gpio0  = 0x0400,        /* pin 2 = 0 */
1625                         .gpio1  = 0x0000,
1626                         .gpio2  = 0x0C00,       /* pin 18 = 0, pin 19 = 0 */
1627                         .gpio3  = 0x0000,
1628                 },
1629         },
1630         [CX88_BOARD_POWERCOLOR_REAL_ANGEL] = {
1631                 .name           = "PowerColor RA330",   /* Long names may confuse LIRC. */
1632                 .tuner_type     = TUNER_XC2028,
1633                 .tuner_addr     = 0x61,
1634                 .input          = { {
1635                         .type   = CX88_VMUX_DEBUG,
1636                         .vmux   = 3,            /* Due to the way the cx88 driver is written,   */
1637                         .gpio0 = 0x00ff,        /* there is no way to deactivate audio pass-    */
1638                         .gpio1 = 0xf39d,        /* through without this entry. Furthermore, if  */
1639                         .gpio3 = 0x0000,        /* the TV mux entry is first, you get audio     */
1640                 }, {                            /* from the tuner on boot for a little while.   */
1641                         .type   = CX88_VMUX_TELEVISION,
1642                         .vmux   = 0,
1643                         .gpio0 = 0x00ff,
1644                         .gpio1 = 0xf35d,
1645                         .gpio3 = 0x0000,
1646                 }, {
1647                         .type   = CX88_VMUX_COMPOSITE1,
1648                         .vmux   = 1,
1649                         .gpio0 = 0x00ff,
1650                         .gpio1 = 0xf37d,
1651                         .gpio3 = 0x0000,
1652                 }, {
1653                         .type   = CX88_VMUX_SVIDEO,
1654                         .vmux   = 2,
1655                         .gpio0  = 0x000ff,
1656                         .gpio1  = 0x0f37d,
1657                         .gpio3  = 0x00000,
1658                 } },
1659                 .radio = {
1660                         .type   = CX88_RADIO,
1661                         .gpio0  = 0x000ff,
1662                         .gpio1  = 0x0f35d,
1663                         .gpio3  = 0x00000,
1664                 },
1665         },
1666         [CX88_BOARD_GENIATECH_X8000_MT] = {
1667                 /* Also PowerColor Real Angel 330 and Geniatech X800 OEM */
1668                 .name           = "Geniatech X8000-MT DVBT",
1669                 .tuner_type     = TUNER_XC2028,
1670                 .tuner_addr     = 0x61,
1671                 .input          = { {
1672                         .type   = CX88_VMUX_TELEVISION,
1673                         .vmux   = 0,
1674                         .gpio0  = 0x00000000,
1675                         .gpio1  = 0x00e3e341,
1676                         .gpio2  = 0x00000000,
1677                         .gpio3  = 0x00000000,
1678                 }, {
1679                         .type   = CX88_VMUX_COMPOSITE1,
1680                         .vmux   = 1,
1681                         .gpio0  = 0x00000000,
1682                         .gpio1  = 0x00e3e361,
1683                         .gpio2  = 0x00000000,
1684                         .gpio3  = 0x00000000,
1685                 }, {
1686                         .type   = CX88_VMUX_SVIDEO,
1687                         .vmux   = 2,
1688                         .gpio0  = 0x00000000,
1689                         .gpio1  = 0x00e3e361,
1690                         .gpio2  = 0x00000000,
1691                         .gpio3  = 0x00000000,
1692                 } },
1693                 .radio = {
1694                         .type   = CX88_RADIO,
1695                         .gpio0  = 0x00000000,
1696                         .gpio1  = 0x00e3e341,
1697                         .gpio2  = 0x00000000,
1698                         .gpio3  = 0x00000000,
1699                 },
1700                 .mpeg           = CX88_MPEG_DVB,
1701         },
1702         [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO] = {
1703                 .name           = "DViCO FusionHDTV DVB-T PRO",
1704                 .tuner_type     = TUNER_XC2028,
1705                 .tuner_addr     = 0x61,
1706                 .radio_type     = UNSET,
1707                 .radio_addr     = ADDR_UNSET,
1708                 .input          = { {
1709                         .type   = CX88_VMUX_COMPOSITE1,
1710                         .vmux   = 1,
1711                         .gpio0  = 0x000067df,
1712                 }, {
1713                         .type   = CX88_VMUX_SVIDEO,
1714                         .vmux   = 2,
1715                         .gpio0  = 0x000067df,
1716                 } },
1717                 .mpeg           = CX88_MPEG_DVB,
1718         },
1719         [CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD] = {
1720                 .name           = "DViCO FusionHDTV 7 Gold",
1721                 .tuner_type     = TUNER_XC5000,
1722                 .radio_type     = UNSET,
1723                 .tuner_addr     = ADDR_UNSET,
1724                 .radio_addr     = ADDR_UNSET,
1725                 .input          = {{
1726                         .type   = CX88_VMUX_TELEVISION,
1727                         .vmux   = 0,
1728                         .gpio0  = 0x10df,
1729                 },{
1730                         .type   = CX88_VMUX_COMPOSITE1,
1731                         .vmux   = 1,
1732                         .gpio0  = 0x16d9,
1733                 },{
1734                         .type   = CX88_VMUX_SVIDEO,
1735                         .vmux   = 2,
1736                         .gpio0  = 0x16d9,
1737                 }},
1738                 .mpeg           = CX88_MPEG_DVB,
1739         },
1740         [CX88_BOARD_PROLINK_PV_8000GT] = {
1741                 .name           = "Prolink Pixelview MPEG 8000GT",
1742                 .tuner_type     = TUNER_XC2028,
1743                 .tuner_addr     = 0x61,
1744                 .input          = { {
1745                         .type   = CX88_VMUX_TELEVISION,
1746                         .vmux   = 0,
1747                         .gpio0 = 0x0ff,
1748                         .gpio2 = 0x0cfb,
1749                 }, {
1750                         .type   = CX88_VMUX_COMPOSITE1,
1751                         .vmux   = 1,
1752                         .gpio2 = 0x0cfb,
1753                 }, {
1754                         .type   = CX88_VMUX_SVIDEO,
1755                         .vmux   = 2,
1756                         .gpio2 = 0x0cfb,
1757                 } },
1758                 .radio = {
1759                         .type   = CX88_RADIO,
1760                         .gpio2 = 0x0cfb,
1761                 },
1762         },
1763         [CX88_BOARD_PROLINK_PV_GLOBAL_XTREME] = {
1764                 .name           = "Prolink Pixelview Global Extreme",
1765                 .tuner_type     = TUNER_XC2028,
1766                 .tuner_addr     = 0x61,
1767                 .input          = { {
1768                         .type   = CX88_VMUX_TELEVISION,
1769                         .vmux   = 0,
1770                         .gpio0 = 0x04fb,
1771                         .gpio1 = 0x04080,
1772                         .gpio2 = 0x0cf7,
1773                 }, {
1774                         .type   = CX88_VMUX_COMPOSITE1,
1775                         .vmux   = 1,
1776                         .gpio0 = 0x04fb,
1777                         .gpio1 = 0x04080,
1778                         .gpio2 = 0x0cfb,
1779                 }, {
1780                         .type   = CX88_VMUX_SVIDEO,
1781                         .vmux   = 2,
1782                         .gpio0 = 0x04fb,
1783                         .gpio1 = 0x04080,
1784                         .gpio2 = 0x0cfb,
1785                 } },
1786                 .radio = {
1787                         .type   = CX88_RADIO,
1788                         .gpio0 = 0x04ff,
1789                         .gpio1 = 0x04080,
1790                         .gpio2 = 0x0cf7,
1791                 },
1792         },
1793         /* Both radio, analog and ATSC work with this board.
1794            However, for analog to work, s5h1409 gate should be open,
1795            otherwise, tuner-xc3028 won't be detected.
1796            A proper fix require using the newer i2c methods to add
1797            tuner-xc3028 without doing an i2c probe.
1798          */
1799         [CX88_BOARD_KWORLD_ATSC_120] = {
1800                 .name           = "Kworld PlusTV HD PCI 120 (ATSC 120)",
1801                 .tuner_type     = TUNER_XC2028,
1802                 .radio_type     = UNSET,
1803                 .tuner_addr     = ADDR_UNSET,
1804                 .radio_addr     = ADDR_UNSET,
1805                 .input          = { {
1806                         .type   = CX88_VMUX_TELEVISION,
1807                         .vmux   = 0,
1808                         .gpio0  = 0x000000ff,
1809                         .gpio1  = 0x0000f35d,
1810                         .gpio2  = 0x00000000,
1811                 }, {
1812                         .type   = CX88_VMUX_COMPOSITE1,
1813                         .vmux   = 1,
1814                         .gpio0  = 0x000000ff,
1815                         .gpio1  = 0x0000f37e,
1816                         .gpio2  = 0x00000000,
1817                 }, {
1818                         .type   = CX88_VMUX_SVIDEO,
1819                         .vmux   = 2,
1820                         .gpio0  = 0x000000ff,
1821                         .gpio1  = 0x0000f37e,
1822                         .gpio2  = 0x00000000,
1823                 } },
1824                 .radio = {
1825                         .type   = CX88_RADIO,
1826                         .gpio0  = 0x000000ff,
1827                         .gpio1  = 0x0000f35d,
1828                         .gpio2  = 0x00000000,
1829                 },
1830                 .mpeg           = CX88_MPEG_DVB,
1831         },
1832         [CX88_BOARD_HAUPPAUGE_HVR4000] = {
1833                 .name           = "Hauppauge WinTV-HVR4000 DVB-S/S2/T/Hybrid",
1834                 .tuner_type     = TUNER_PHILIPS_FMD1216ME_MK3,
1835                 .radio_type     = UNSET,
1836                 .tuner_addr     = ADDR_UNSET,
1837                 .radio_addr     = ADDR_UNSET,
1838                 .tda9887_conf   = TDA9887_PRESENT,
1839                 .audio_chip     = V4L2_IDENT_WM8775,
1840                 /*
1841                  * GPIO0 (WINTV2000)
1842                  *
1843                  * Analogue     SAT     DVB-T
1844                  * Antenna      0xc4bf  0xc4bb
1845                  * Composite    0xc4bf  0xc4bb
1846                  * S-Video      0xc4bf  0xc4bb
1847                  * Composite1   0xc4ff  0xc4fb
1848                  * S-Video1     0xc4ff  0xc4fb
1849                  *
1850                  * BIT  VALUE   FUNCTION GP{x}_IO
1851                  * 0    1       I:?
1852                  * 1    1       I:?
1853                  * 2    1       O:MPEG PORT 0=DVB-T 1=DVB-S
1854                  * 3    1       I:?
1855                  * 4    1       I:?
1856                  * 5    1       I:?
1857                  * 6    0       O:INPUT SELECTOR 0=INTERNAL 1=EXPANSION
1858                  * 7    1       O:DVB-T DEMOD RESET LOW
1859                  *
1860                  * BIT  VALUE   FUNCTION GP{x}_OE
1861                  * 8    0       I
1862                  * 9    0       I
1863                  * a    1       O
1864                  * b    0       I
1865                  * c    0       I
1866                  * d    0       I
1867                  * e    1       O
1868                  * f    1       O
1869                  *
1870                  * WM8775 ADC
1871                  *
1872                  * 1: TV Audio / FM Mono
1873                  * 2: Line-In
1874                  * 3: Line-In Expansion
1875                  * 4: FM Stereo
1876                  */
1877                 .input          = {{
1878                         .type   = CX88_VMUX_TELEVISION,
1879                         .vmux   = 0,
1880                         .gpio0  = 0xc4bf,
1881                         /* 1: TV Audio / FM Mono */
1882                         .audioroute = 1,
1883                 }, {
1884                         .type   = CX88_VMUX_COMPOSITE1,
1885                         .vmux   = 1,
1886                         .gpio0  = 0xc4bf,
1887                         /* 2: Line-In */
1888                         .audioroute = 2,
1889                 }, {
1890                         .type   = CX88_VMUX_SVIDEO,
1891                         .vmux   = 2,
1892                         .gpio0  = 0xc4bf,
1893                         /* 2: Line-In */
1894                         .audioroute = 2,
1895                 } },
1896                 .radio = {
1897                         .type   = CX88_RADIO,
1898                         .gpio0  = 0xc4bf,
1899                         /* 4: FM Stereo */
1900                         .audioroute = 8,
1901                 },
1902                 .mpeg           = CX88_MPEG_DVB,
1903                 .num_frontends  = 2,
1904         },
1905         [CX88_BOARD_HAUPPAUGE_HVR4000LITE] = {
1906                 .name           = "Hauppauge WinTV-HVR4000(Lite) DVB-S/S2",
1907                 .tuner_type     = UNSET,
1908                 .radio_type     = UNSET,
1909                 .tuner_addr     = ADDR_UNSET,
1910                 .radio_addr     = ADDR_UNSET,
1911                 .input          = {{
1912                         .type   = CX88_VMUX_DVB,
1913                         .vmux   = 0,
1914                 } },
1915                 .mpeg           = CX88_MPEG_DVB,
1916         },
1917         [CX88_BOARD_TEVII_S420] = {
1918                 .name           = "TeVii S420 DVB-S",
1919                 .tuner_type     = UNSET,
1920                 .radio_type     = UNSET,
1921                 .tuner_addr     = ADDR_UNSET,
1922                 .radio_addr     = ADDR_UNSET,
1923                 .input          = {{
1924                         .type   = CX88_VMUX_DVB,
1925                         .vmux   = 0,
1926                 } },
1927                 .mpeg           = CX88_MPEG_DVB,
1928         },
1929         [CX88_BOARD_TEVII_S460] = {
1930                 .name           = "TeVii S460 DVB-S/S2",
1931                 .tuner_type     = UNSET,
1932                 .radio_type     = UNSET,
1933                 .tuner_addr     = ADDR_UNSET,
1934                 .radio_addr     = ADDR_UNSET,
1935                 .input          = {{
1936                         .type   = CX88_VMUX_DVB,
1937                         .vmux   = 0,
1938                 } },
1939                 .mpeg           = CX88_MPEG_DVB,
1940         },
1941         [CX88_BOARD_OMICOM_SS4_PCI] = {
1942                 .name           = "Omicom SS4 DVB-S/S2 PCI",
1943                 .tuner_type     = UNSET,
1944                 .radio_type     = UNSET,
1945                 .tuner_addr     = ADDR_UNSET,
1946                 .radio_addr     = ADDR_UNSET,
1947                 .input          = {{
1948                         .type   = CX88_VMUX_DVB,
1949                         .vmux   = 0,
1950                 } },
1951                 .mpeg           = CX88_MPEG_DVB,
1952         },
1953         [CX88_BOARD_TBS_8910] = {
1954                 .name           = "TBS 8910 DVB-S",
1955                 .tuner_type     = UNSET,
1956                 .radio_type     = UNSET,
1957                 .tuner_addr     = ADDR_UNSET,
1958                 .radio_addr     = ADDR_UNSET,
1959                 .input          = {{
1960                         .type   = CX88_VMUX_DVB,
1961                         .vmux   = 0,
1962                 } },
1963                 .mpeg           = CX88_MPEG_DVB,
1964         },
1965         [CX88_BOARD_TBS_8920] = {
1966                 .name           = "TBS 8920 DVB-S/S2",
1967                 .tuner_type     = TUNER_ABSENT,
1968                 .radio_type     = UNSET,
1969                 .tuner_addr     = ADDR_UNSET,
1970                 .radio_addr     = ADDR_UNSET,
1971                 .input          = {{
1972                         .type   = CX88_VMUX_DVB,
1973                         .vmux   = 0,
1974                         .gpio0  = 0x8080,
1975                 } },
1976                 .mpeg           = CX88_MPEG_DVB,
1977         },
1978         [CX88_BOARD_PROF_6200] = {
1979                 .name           = "Prof 6200 DVB-S",
1980                 .tuner_type     = UNSET,
1981                 .radio_type     = UNSET,
1982                 .tuner_addr     = ADDR_UNSET,
1983                 .radio_addr     = ADDR_UNSET,
1984                 .input          = {{
1985                         .type   = CX88_VMUX_DVB,
1986                         .vmux   = 0,
1987                 } },
1988                 .mpeg           = CX88_MPEG_DVB,
1989         },
1990         [CX88_BOARD_PROF_7300] = {
1991                 .name           = "PROF 7300 DVB-S/S2",
1992                 .tuner_type     = UNSET,
1993                 .radio_type     = UNSET,
1994                 .tuner_addr     = ADDR_UNSET,
1995                 .radio_addr     = ADDR_UNSET,
1996                 .input          = {{
1997                         .type   = CX88_VMUX_DVB,
1998                         .vmux   = 0,
1999                 } },
2000                 .mpeg           = CX88_MPEG_DVB,
2001         },
2002         [CX88_BOARD_SATTRADE_ST4200] = {
2003                 .name           = "SATTRADE ST4200 DVB-S/S2",
2004                 .tuner_type     = UNSET,
2005                 .radio_type     = UNSET,
2006                 .tuner_addr     = ADDR_UNSET,
2007                 .radio_addr     = ADDR_UNSET,
2008                 .input          = {{
2009                         .type   = CX88_VMUX_DVB,
2010                         .vmux   = 0,
2011                 } },
2012                 .mpeg           = CX88_MPEG_DVB,
2013         },
2014         [CX88_BOARD_TERRATEC_CINERGY_HT_PCI_MKII] = {
2015                 .name           = "Terratec Cinergy HT PCI MKII",
2016                 .tuner_type     = TUNER_XC2028,
2017                 .tuner_addr     = 0x61,
2018                 .radio_type     = TUNER_XC2028,
2019                 .radio_addr     = 0x61,
2020                 .input          = { {
2021                         .type   = CX88_VMUX_TELEVISION,
2022                         .vmux   = 0,
2023                         .gpio0  = 0x004ff,
2024                         .gpio1  = 0x010ff,
2025                         .gpio2  = 0x00001,
2026                 }, {
2027                         .type   = CX88_VMUX_COMPOSITE1,
2028                         .vmux   = 1,
2029                         .gpio0  = 0x004fb,
2030                         .gpio1  = 0x010ef,
2031                         .audioroute = 1,
2032                 }, {
2033                         .type   = CX88_VMUX_SVIDEO,
2034                         .vmux   = 2,
2035                         .gpio0  = 0x004fb,
2036                         .gpio1  = 0x010ef,
2037                         .audioroute = 1,
2038                 } },
2039                 .radio = {
2040                         .type   = CX88_RADIO,
2041                         .gpio0  = 0x004ff,
2042                         .gpio1  = 0x010ff,
2043                         .gpio2  = 0x0ff,
2044                 },
2045                 .mpeg           = CX88_MPEG_DVB,
2046         },
2047         [CX88_BOARD_HAUPPAUGE_IRONLY] = {
2048                 .name           = "Hauppauge WinTV-IR Only",
2049                 .tuner_type     = UNSET,
2050                 .radio_type     = UNSET,
2051                 .tuner_addr     = ADDR_UNSET,
2052                 .radio_addr     = ADDR_UNSET,
2053         },
2054         [CX88_BOARD_WINFAST_DTV1800H] = {
2055                 .name           = "Leadtek WinFast DTV1800 Hybrid",
2056                 .tuner_type     = TUNER_XC2028,
2057                 .radio_type     = TUNER_XC2028,
2058                 .tuner_addr     = 0x61,
2059                 .radio_addr     = 0x61,
2060                 /*
2061                  * GPIO setting
2062                  *
2063                  *  2: mute (0=off,1=on)
2064                  * 12: tuner reset pin
2065                  * 13: audio source (0=tuner audio,1=line in)
2066                  * 14: FM (0=on,1=off ???)
2067                  */
2068                 .input          = {{
2069                         .type   = CX88_VMUX_TELEVISION,
2070                         .vmux   = 0,
2071                         .gpio0  = 0x0400,       /* pin 2 = 0 */
2072                         .gpio1  = 0x6040,       /* pin 13 = 0, pin 14 = 1 */
2073                         .gpio2  = 0x0000,
2074                 }, {
2075                         .type   = CX88_VMUX_COMPOSITE1,
2076                         .vmux   = 1,
2077                         .gpio0  = 0x0400,       /* pin 2 = 0 */
2078                         .gpio1  = 0x6060,       /* pin 13 = 1, pin 14 = 1 */
2079                         .gpio2  = 0x0000,
2080                 }, {
2081                         .type   = CX88_VMUX_SVIDEO,
2082                         .vmux   = 2,
2083                         .gpio0  = 0x0400,       /* pin 2 = 0 */
2084                         .gpio1  = 0x6060,       /* pin 13 = 1, pin 14 = 1 */
2085                         .gpio2  = 0x0000,
2086                 } },
2087                 .radio = {
2088                         .type   = CX88_RADIO,
2089                         .gpio0  = 0x0400,       /* pin 2 = 0 */
2090                         .gpio1  = 0x6000,       /* pin 13 = 0, pin 14 = 0 */
2091                         .gpio2  = 0x0000,
2092                 },
2093                 .mpeg           = CX88_MPEG_DVB,
2094         },
2095         [CX88_BOARD_PROF_7301] = {
2096                 .name           = "Prof 7301 DVB-S/S2",
2097                 .tuner_type     = UNSET,
2098                 .radio_type     = UNSET,
2099                 .tuner_addr     = ADDR_UNSET,
2100                 .radio_addr     = ADDR_UNSET,
2101                 .input          = { {
2102                         .type   = CX88_VMUX_DVB,
2103                         .vmux   = 0,
2104                 } },
2105                 .mpeg           = CX88_MPEG_DVB,
2106         },
2107 };
2108
2109 /* ------------------------------------------------------------------ */
2110 /* PCI subsystem IDs                                                  */
2111
2112 static const struct cx88_subid cx88_subids[] = {
2113         {
2114                 .subvendor = 0x0070,
2115                 .subdevice = 0x3400,
2116                 .card      = CX88_BOARD_HAUPPAUGE,
2117         },{
2118                 .subvendor = 0x0070,
2119                 .subdevice = 0x3401,
2120                 .card      = CX88_BOARD_HAUPPAUGE,
2121         },{
2122                 .subvendor = 0x14c7,
2123                 .subdevice = 0x0106,
2124                 .card      = CX88_BOARD_GDI,
2125         },{
2126                 .subvendor = 0x14c7,
2127                 .subdevice = 0x0107, /* with mpeg encoder */
2128                 .card      = CX88_BOARD_GDI,
2129         },{
2130                 .subvendor = PCI_VENDOR_ID_ATI,
2131                 .subdevice = 0x00f8,
2132                 .card      = CX88_BOARD_ATI_WONDER_PRO,
2133         }, {
2134                 .subvendor = PCI_VENDOR_ID_ATI,
2135                 .subdevice = 0x00f9,
2136                 .card      = CX88_BOARD_ATI_WONDER_PRO,
2137         }, {
2138                 .subvendor = 0x107d,
2139                 .subdevice = 0x6611,
2140                 .card      = CX88_BOARD_WINFAST2000XP_EXPERT,
2141         },{
2142                 .subvendor = 0x107d,
2143                 .subdevice = 0x6613,    /* NTSC */
2144                 .card      = CX88_BOARD_WINFAST2000XP_EXPERT,
2145         },{
2146                 .subvendor = 0x107d,
2147                 .subdevice = 0x6620,
2148                 .card      = CX88_BOARD_WINFAST_DV2000,
2149         },{
2150                 .subvendor = 0x107d,
2151                 .subdevice = 0x663b,
2152                 .card      = CX88_BOARD_LEADTEK_PVR2000,
2153         },{
2154                 .subvendor = 0x107d,
2155                 .subdevice = 0x663c,
2156                 .card      = CX88_BOARD_LEADTEK_PVR2000,
2157         },{
2158                 .subvendor = 0x1461,
2159                 .subdevice = 0x000b,
2160                 .card      = CX88_BOARD_AVERTV_STUDIO_303,
2161         },{
2162                 .subvendor = 0x1462,
2163                 .subdevice = 0x8606,
2164                 .card      = CX88_BOARD_MSI_TVANYWHERE_MASTER,
2165         },{
2166                 .subvendor = 0x10fc,
2167                 .subdevice = 0xd003,
2168                 .card      = CX88_BOARD_IODATA_GVVCP3PCI,
2169         },{
2170                 .subvendor = 0x1043,
2171                 .subdevice = 0x4823,  /* with mpeg encoder */
2172                 .card      = CX88_BOARD_ASUS_PVR_416,
2173         },{
2174                 .subvendor = 0x17de,
2175                 .subdevice = 0x08a6,
2176                 .card      = CX88_BOARD_KWORLD_DVB_T,
2177         },{
2178                 .subvendor = 0x18ac,
2179                 .subdevice = 0xd810,
2180                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
2181         },{
2182                 .subvendor = 0x18ac,
2183                 .subdevice = 0xd820,
2184                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T,
2185         },{
2186                 .subvendor = 0x18ac,
2187                 .subdevice = 0xdb00,
2188                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1,
2189         },{
2190                 .subvendor = 0x0070,
2191                 .subdevice = 0x9002,
2192                 .card      = CX88_BOARD_HAUPPAUGE_DVB_T1,
2193         },{
2194                 .subvendor = 0x14f1,
2195                 .subdevice = 0x0187,
2196                 .card      = CX88_BOARD_CONEXANT_DVB_T1,
2197         },{
2198                 .subvendor = 0x1540,
2199                 .subdevice = 0x2580,
2200                 .card      = CX88_BOARD_PROVIDEO_PV259,
2201         },{
2202                 .subvendor = 0x18ac,
2203                 .subdevice = 0xdb10,
2204                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
2205         },{
2206                 .subvendor = 0x1554,
2207                 .subdevice = 0x4811,
2208                 .card      = CX88_BOARD_PIXELVIEW,
2209         },{
2210                 .subvendor = 0x7063,
2211                 .subdevice = 0x3000, /* HD-3000 card */
2212                 .card      = CX88_BOARD_PCHDTV_HD3000,
2213         },{
2214                 .subvendor = 0x17de,
2215                 .subdevice = 0xa8a6,
2216                 .card      = CX88_BOARD_DNTV_LIVE_DVB_T,
2217         },{
2218                 .subvendor = 0x0070,
2219                 .subdevice = 0x2801,
2220                 .card      = CX88_BOARD_HAUPPAUGE_ROSLYN,
2221         },{
2222                 .subvendor = 0x14f1,
2223                 .subdevice = 0x0342,
2224                 .card      = CX88_BOARD_DIGITALLOGIC_MEC,
2225         },{
2226                 .subvendor = 0x10fc,
2227                 .subdevice = 0xd035,
2228                 .card      = CX88_BOARD_IODATA_GVBCTV7E,
2229         },{
2230                 .subvendor = 0x1421,
2231                 .subdevice = 0x0334,
2232                 .card      = CX88_BOARD_ADSTECH_DVB_T_PCI,
2233         },{
2234                 .subvendor = 0x153b,
2235                 .subdevice = 0x1166,
2236                 .card      = CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1,
2237         },{
2238                 .subvendor = 0x18ac,
2239                 .subdevice = 0xd500,
2240                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD,
2241         },{
2242                 .subvendor = 0x1461,
2243                 .subdevice = 0x8011,
2244                 .card      = CX88_BOARD_AVERMEDIA_ULTRATV_MC_550,
2245         },{
2246                 .subvendor = PCI_VENDOR_ID_ATI,
2247                 .subdevice = 0xa101,
2248                 .card      = CX88_BOARD_ATI_HDTVWONDER,
2249         },{
2250                 .subvendor = 0x107d,
2251                 .subdevice = 0x665f,
2252                 .card      = CX88_BOARD_WINFAST_DTV1000,
2253         },{
2254                 .subvendor = 0x1461,
2255                 .subdevice = 0x000a,
2256                 .card      = CX88_BOARD_AVERTV_303,
2257         },{
2258                 .subvendor = 0x0070,
2259                 .subdevice = 0x9200,
2260                 .card      = CX88_BOARD_HAUPPAUGE_NOVASE2_S1,
2261         },{
2262                 .subvendor = 0x0070,
2263                 .subdevice = 0x9201,
2264                 .card      = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
2265         },{
2266                 .subvendor = 0x0070,
2267                 .subdevice = 0x9202,
2268                 .card      = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
2269         },{
2270                 .subvendor = 0x17de,
2271                 .subdevice = 0x08b2,
2272                 .card      = CX88_BOARD_KWORLD_DVBS_100,
2273         },{
2274                 .subvendor = 0x0070,
2275                 .subdevice = 0x9400,
2276                 .card      = CX88_BOARD_HAUPPAUGE_HVR1100,
2277         },{
2278                 .subvendor = 0x0070,
2279                 .subdevice = 0x9402,
2280                 .card      = CX88_BOARD_HAUPPAUGE_HVR1100,
2281         },{
2282                 .subvendor = 0x0070,
2283                 .subdevice = 0x9800,
2284                 .card      = CX88_BOARD_HAUPPAUGE_HVR1100LP,
2285         },{
2286                 .subvendor = 0x0070,
2287                 .subdevice = 0x9802,
2288                 .card      = CX88_BOARD_HAUPPAUGE_HVR1100LP,
2289         },{
2290                 .subvendor = 0x0070,
2291                 .subdevice = 0x9001,
2292                 .card      = CX88_BOARD_HAUPPAUGE_DVB_T1,
2293         },{
2294                 .subvendor = 0x1822,
2295                 .subdevice = 0x0025,
2296                 .card      = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
2297         },{
2298                 .subvendor = 0x17de,
2299                 .subdevice = 0x08a1,
2300                 .card      = CX88_BOARD_KWORLD_DVB_T_CX22702,
2301         },{
2302                 .subvendor = 0x18ac,
2303                 .subdevice = 0xdb50,
2304                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL,
2305         },{
2306                 .subvendor = 0x18ac,
2307                 .subdevice = 0xdb54,
2308                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL,
2309                 /* Re-branded DViCO: DigitalNow DVB-T Dual */
2310         },{
2311                 .subvendor = 0x18ac,
2312                 .subdevice = 0xdb11,
2313                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
2314                 /* Re-branded DViCO: UltraView DVB-T Plus */
2315         }, {
2316                 .subvendor = 0x18ac,
2317                 .subdevice = 0xdb30,
2318                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO,
2319         }, {
2320                 .subvendor = 0x17de,
2321                 .subdevice = 0x0840,
2322                 .card      = CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT,
2323         },{
2324                 .subvendor = 0x1421,
2325                 .subdevice = 0x0305,
2326                 .card      = CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT,
2327         },{
2328                 .subvendor = 0x18ac,
2329                 .subdevice = 0xdb40,
2330                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID,
2331         },{
2332                 .subvendor = 0x18ac,
2333                 .subdevice = 0xdb44,
2334                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID,
2335         },{
2336                 .subvendor = 0x7063,
2337                 .subdevice = 0x5500,
2338                 .card      = CX88_BOARD_PCHDTV_HD5500,
2339         },{
2340                 .subvendor = 0x17de,
2341                 .subdevice = 0x0841,
2342                 .card      = CX88_BOARD_KWORLD_MCE200_DELUXE,
2343         },{
2344                 .subvendor = 0x1822,
2345                 .subdevice = 0x0019,
2346                 .card      = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
2347         },{
2348                 .subvendor = 0x1554,
2349                 .subdevice = 0x4813,
2350                 .card      = CX88_BOARD_PIXELVIEW_PLAYTV_P7000,
2351         },{
2352                 .subvendor = 0x14f1,
2353                 .subdevice = 0x0842,
2354                 .card      = CX88_BOARD_NPGTECH_REALTV_TOP10FM,
2355         },{
2356                 .subvendor = 0x107d,
2357                 .subdevice = 0x665e,
2358                 .card      = CX88_BOARD_WINFAST_DTV2000H,
2359         },{
2360                 .subvendor = 0x107d,
2361                 .subdevice = 0x6f2b,
2362                 .card      = CX88_BOARD_WINFAST_DTV2000H_J,
2363         },{
2364                 .subvendor = 0x18ac,
2365                 .subdevice = 0xd800, /* FusionHDTV 3 Gold (original revision) */
2366                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
2367         },{
2368                 .subvendor = 0x14f1,
2369                 .subdevice = 0x0084,
2370                 .card      = CX88_BOARD_GENIATECH_DVBS,
2371         },{
2372                 .subvendor = 0x0070,
2373                 .subdevice = 0x1404,
2374                 .card      = CX88_BOARD_HAUPPAUGE_HVR3000,
2375         }, {
2376                 .subvendor = 0x18ac,
2377                 .subdevice = 0xdc00,
2378                 .card      = CX88_BOARD_SAMSUNG_SMT_7020,
2379         }, {
2380                 .subvendor = 0x18ac,
2381                 .subdevice = 0xdccd,
2382                 .card      = CX88_BOARD_SAMSUNG_SMT_7020,
2383         },{
2384                 .subvendor = 0x1461,
2385                 .subdevice = 0xc111, /* AverMedia M150-D */
2386                 /* This board is known to work with the ASUS PVR416 config */
2387                 .card      = CX88_BOARD_ASUS_PVR_416,
2388         },{
2389                 .subvendor = 0xc180,
2390                 .subdevice = 0xc980,
2391                 .card      = CX88_BOARD_TE_DTV_250_OEM_SWANN,
2392         },{
2393                 .subvendor = 0x0070,
2394                 .subdevice = 0x9600,
2395                 .card      = CX88_BOARD_HAUPPAUGE_HVR1300,
2396         },{
2397                 .subvendor = 0x0070,
2398                 .subdevice = 0x9601,
2399                 .card      = CX88_BOARD_HAUPPAUGE_HVR1300,
2400         },{
2401                 .subvendor = 0x0070,
2402                 .subdevice = 0x9602,
2403                 .card      = CX88_BOARD_HAUPPAUGE_HVR1300,
2404         },{
2405                 .subvendor = 0x107d,
2406                 .subdevice = 0x6632,
2407                 .card      = CX88_BOARD_LEADTEK_PVR2000,
2408         },{
2409                 .subvendor = 0x12ab,
2410                 .subdevice = 0x2300, /* Club3D Zap TV2100 */
2411                 .card      = CX88_BOARD_KWORLD_DVB_T_CX22702,
2412         },{
2413                 .subvendor = 0x0070,
2414                 .subdevice = 0x9000,
2415                 .card      = CX88_BOARD_HAUPPAUGE_DVB_T1,
2416         },{
2417                 .subvendor = 0x0070,
2418                 .subdevice = 0x1400,
2419                 .card      = CX88_BOARD_HAUPPAUGE_HVR3000,
2420         },{
2421                 .subvendor = 0x0070,
2422                 .subdevice = 0x1401,
2423                 .card      = CX88_BOARD_HAUPPAUGE_HVR3000,
2424         },{
2425                 .subvendor = 0x0070,
2426                 .subdevice = 0x1402,
2427                 .card      = CX88_BOARD_HAUPPAUGE_HVR3000,
2428         },{
2429                 .subvendor = 0x1421,
2430                 .subdevice = 0x0341, /* ADS Tech InstantTV DVB-S */
2431                 .card      = CX88_BOARD_KWORLD_DVBS_100,
2432         },{
2433                 .subvendor = 0x1421,
2434                 .subdevice = 0x0390,
2435                 .card      = CX88_BOARD_ADSTECH_PTV_390,
2436         },{
2437                 .subvendor = 0x11bd,
2438                 .subdevice = 0x0051,
2439                 .card      = CX88_BOARD_PINNACLE_PCTV_HD_800i,
2440         }, {
2441                 .subvendor = 0x18ac,
2442                 .subdevice = 0xd530,
2443                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO,
2444         }, {
2445                 .subvendor = 0x12ab,
2446                 .subdevice = 0x1788,
2447                 .card      = CX88_BOARD_PINNACLE_HYBRID_PCTV,
2448         }, {
2449                 .subvendor = 0x14f1,
2450                 .subdevice = 0xea3d,
2451                 .card      = CX88_BOARD_POWERCOLOR_REAL_ANGEL,
2452         }, {
2453                 .subvendor = 0x107d,
2454                 .subdevice = 0x6f18,
2455                 .card      = CX88_BOARD_WINFAST_TV2000_XP_GLOBAL,
2456         }, {
2457                 .subvendor = 0x14f1,
2458                 .subdevice = 0x8852,
2459                 .card      = CX88_BOARD_GENIATECH_X8000_MT,
2460         }, {
2461                 .subvendor = 0x18ac,
2462                 .subdevice = 0xd610,
2463                 .card      = CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD,
2464         }, {
2465                 .subvendor = 0x1554,
2466                 .subdevice = 0x4935,
2467                 .card      = CX88_BOARD_PROLINK_PV_8000GT,
2468         }, {
2469                 .subvendor = 0x1554,
2470                 .subdevice = 0x4976,
2471                 .card      = CX88_BOARD_PROLINK_PV_GLOBAL_XTREME,
2472         }, {
2473                 .subvendor = 0x17de,
2474                 .subdevice = 0x08c1,
2475                 .card      = CX88_BOARD_KWORLD_ATSC_120,
2476         }, {
2477                 .subvendor = 0x0070,
2478                 .subdevice = 0x6900,
2479                 .card      = CX88_BOARD_HAUPPAUGE_HVR4000,
2480         }, {
2481                 .subvendor = 0x0070,
2482                 .subdevice = 0x6904,
2483                 .card      = CX88_BOARD_HAUPPAUGE_HVR4000,
2484         }, {
2485                 .subvendor = 0x0070,
2486                 .subdevice = 0x6902,
2487                 .card      = CX88_BOARD_HAUPPAUGE_HVR4000,
2488         }, {
2489                 .subvendor = 0x0070,
2490                 .subdevice = 0x6905,
2491                 .card      = CX88_BOARD_HAUPPAUGE_HVR4000LITE,
2492         }, {
2493                 .subvendor = 0x0070,
2494                 .subdevice = 0x6906,
2495                 .card      = CX88_BOARD_HAUPPAUGE_HVR4000LITE,
2496         }, {
2497                 .subvendor = 0xd420,
2498                 .subdevice = 0x9022,
2499                 .card      = CX88_BOARD_TEVII_S420,
2500         }, {
2501                 .subvendor = 0xd460,
2502                 .subdevice = 0x9022,
2503                 .card      = CX88_BOARD_TEVII_S460,
2504         }, {
2505                 .subvendor = 0xA044,
2506                 .subdevice = 0x2011,
2507                 .card      = CX88_BOARD_OMICOM_SS4_PCI,
2508         }, {
2509                 .subvendor = 0x8910,
2510                 .subdevice = 0x8888,
2511                 .card      = CX88_BOARD_TBS_8910,
2512         }, {
2513                 .subvendor = 0x8920,
2514                 .subdevice = 0x8888,
2515                 .card      = CX88_BOARD_TBS_8920,
2516         }, {
2517                 .subvendor = 0xb022,
2518                 .subdevice = 0x3022,
2519                 .card      = CX88_BOARD_PROF_6200,
2520         }, {
2521                 .subvendor = 0xB033,
2522                 .subdevice = 0x3033,
2523                 .card      = CX88_BOARD_PROF_7300,
2524         }, {
2525                 .subvendor = 0xb200,
2526                 .subdevice = 0x4200,
2527                 .card      = CX88_BOARD_SATTRADE_ST4200,
2528         }, {
2529                 .subvendor = 0x153b,
2530                 .subdevice = 0x1177,
2531                 .card      = CX88_BOARD_TERRATEC_CINERGY_HT_PCI_MKII,
2532         }, {
2533                 .subvendor = 0x0070,
2534                 .subdevice = 0x9290,
2535                 .card      = CX88_BOARD_HAUPPAUGE_IRONLY,
2536         }, {
2537                 .subvendor = 0x107d,
2538                 .subdevice = 0x6654,
2539                 .card      = CX88_BOARD_WINFAST_DTV1800H,
2540         }, {
2541                 /* PVR2000 PAL Model [107d:6630] */
2542                 .subvendor = 0x107d,
2543                 .subdevice = 0x6630,
2544                 .card      = CX88_BOARD_LEADTEK_PVR2000,
2545         }, {
2546                 /* PVR2000 PAL Model [107d:6638] */
2547                 .subvendor = 0x107d,
2548                 .subdevice = 0x6638,
2549                 .card      = CX88_BOARD_LEADTEK_PVR2000,
2550         }, {
2551                 /* PVR2000 NTSC Model [107d:6631] */
2552                 .subvendor = 0x107d,
2553                 .subdevice = 0x6631,
2554                 .card      = CX88_BOARD_LEADTEK_PVR2000,
2555         }, {
2556                 /* PVR2000 NTSC Model [107d:6637] */
2557                 .subvendor = 0x107d,
2558                 .subdevice = 0x6637,
2559                 .card      = CX88_BOARD_LEADTEK_PVR2000,
2560         }, {
2561                 /* PVR2000 NTSC Model [107d:663d] */
2562                 .subvendor = 0x107d,
2563                 .subdevice = 0x663d,
2564                 .card      = CX88_BOARD_LEADTEK_PVR2000,
2565         }, {
2566                 /* DV2000 NTSC Model [107d:6621] */
2567                 .subvendor = 0x107d,
2568                 .subdevice = 0x6621,
2569                 .card      = CX88_BOARD_WINFAST_DV2000,
2570         }, {
2571                 /* TV2000 XP Global [107d:6618]  */
2572                 .subvendor = 0x107d,
2573                 .subdevice = 0x6618,
2574                 .card      = CX88_BOARD_WINFAST_TV2000_XP_GLOBAL,
2575         }, {
2576                 .subvendor = 0xb034,
2577                 .subdevice = 0x3034,
2578                 .card      = CX88_BOARD_PROF_7301,
2579         },
2580 };
2581
2582 /* ----------------------------------------------------------------------- */
2583 /* some leadtek specific stuff                                             */
2584
2585 static void leadtek_eeprom(struct cx88_core *core, u8 *eeprom_data)
2586 {
2587         if (eeprom_data[4] != 0x7d ||
2588             eeprom_data[5] != 0x10 ||
2589             eeprom_data[7] != 0x66) {
2590                 warn_printk(core, "Leadtek eeprom invalid.\n");
2591                 return;
2592         }
2593
2594         /* Terry Wu <terrywu2009@gmail.com> */
2595         switch (eeprom_data[6]) {
2596         case 0x13: /* SSID 6613 for TV2000 XP Expert NTSC Model */
2597         case 0x21: /* SSID 6621 for DV2000 NTSC Model */
2598         case 0x31: /* SSID 6631 for PVR2000 NTSC Model */
2599         case 0x37: /* SSID 6637 for PVR2000 NTSC Model */
2600         case 0x3d: /* SSID 6637 for PVR2000 NTSC Model */
2601                 core->board.tuner_type = TUNER_PHILIPS_FM1236_MK3;
2602                 break;
2603         default:
2604                 core->board.tuner_type = TUNER_PHILIPS_FM1216ME_MK3;
2605                 break;
2606         }
2607
2608         info_printk(core, "Leadtek Winfast 2000XP Expert config: "
2609                     "tuner=%d, eeprom[0]=0x%02x\n",
2610                     core->board.tuner_type, eeprom_data[0]);
2611 }
2612
2613 static void hauppauge_eeprom(struct cx88_core *core, u8 *eeprom_data)
2614 {
2615         struct tveeprom tv;
2616
2617         tveeprom_hauppauge_analog(&core->i2c_client, &tv, eeprom_data);
2618         core->board.tuner_type = tv.tuner_type;
2619         core->tuner_formats = tv.tuner_formats;
2620         core->board.radio.type = tv.has_radio ? CX88_RADIO : 0;
2621
2622         /* Make sure we support the board model */
2623         switch (tv.model)
2624         {
2625         case 14009: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in) */
2626         case 14019: /* WinTV-HVR3000 (Retail, IR Blaster, b/panel video, 3.5mm audio in) */
2627         case 14029: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - 880 bridge) */
2628         case 14109: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - low profile) */
2629         case 14129: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - 880 bridge - LP) */
2630         case 14559: /* WinTV-HVR3000 (OEM, no IR, b/panel video, 3.5mm audio in) */
2631         case 14569: /* WinTV-HVR3000 (OEM, no IR, no back panel video) */
2632         case 14659: /* WinTV-HVR3000 (OEM, no IR, b/panel video, RCA audio in - Low profile) */
2633         case 14669: /* WinTV-HVR3000 (OEM, no IR, no b/panel video - Low profile) */
2634         case 28552: /* WinTV-PVR 'Roslyn' (No IR) */
2635         case 34519: /* WinTV-PCI-FM */
2636         case 69009:
2637                 /* WinTV-HVR4000 (DVBS/S2/T, Video and IR, back panel inputs) */
2638         case 69100: /* WinTV-HVR4000LITE (DVBS/S2, IR) */
2639         case 69500: /* WinTV-HVR4000LITE (DVBS/S2, No IR) */
2640         case 69559:
2641                 /* WinTV-HVR4000 (DVBS/S2/T, Video no IR, back panel inputs) */
2642         case 69569: /* WinTV-HVR4000 (DVBS/S2/T, Video no IR) */
2643         case 90002: /* Nova-T-PCI (9002) */
2644         case 92001: /* Nova-S-Plus (Video and IR) */
2645         case 92002: /* Nova-S-Plus (Video and IR) */
2646         case 90003: /* Nova-T-PCI (9002 No RF out) */
2647         case 90500: /* Nova-T-PCI (oem) */
2648         case 90501: /* Nova-T-PCI (oem/IR) */
2649         case 92000: /* Nova-SE2 (OEM, No Video or IR) */
2650         case 92900: /* WinTV-IROnly (No analog or digital Video inputs) */
2651         case 94009: /* WinTV-HVR1100 (Video and IR Retail) */
2652         case 94501: /* WinTV-HVR1100 (Video and IR OEM) */
2653         case 96009: /* WinTV-HVR1300 (PAL Video, MPEG Video and IR RX) */
2654         case 96019: /* WinTV-HVR1300 (PAL Video, MPEG Video and IR RX/TX) */
2655         case 96559: /* WinTV-HVR1300 (PAL Video, MPEG Video no IR) */
2656         case 96569: /* WinTV-HVR1300 () */
2657         case 96659: /* WinTV-HVR1300 () */
2658         case 98559: /* WinTV-HVR1100LP (Video no IR, Retail - Low Profile) */
2659                 /* known */
2660                 break;
2661         case CX88_BOARD_SAMSUNG_SMT_7020:
2662                 cx_set(MO_GP0_IO, 0x008989FF);
2663                 break;
2664         default:
2665                 warn_printk(core, "warning: unknown hauppauge model #%d\n",
2666                             tv.model);
2667                 break;
2668         }
2669
2670         info_printk(core, "hauppauge eeprom: model=%d\n", tv.model);
2671 }
2672
2673 /* ----------------------------------------------------------------------- */
2674 /* some GDI (was: Modular Technology) specific stuff                       */
2675
2676 static struct {
2677         int  id;
2678         int  fm;
2679         char *name;
2680 } gdi_tuner[] = {
2681         [ 0x01 ] = { .id   = TUNER_ABSENT,
2682                      .name = "NTSC_M" },
2683         [ 0x02 ] = { .id   = TUNER_ABSENT,
2684                      .name = "PAL_B" },
2685         [ 0x03 ] = { .id   = TUNER_ABSENT,
2686                      .name = "PAL_I" },
2687         [ 0x04 ] = { .id   = TUNER_ABSENT,
2688                      .name = "PAL_D" },
2689         [ 0x05 ] = { .id   = TUNER_ABSENT,
2690                      .name = "SECAM" },
2691
2692         [ 0x10 ] = { .id   = TUNER_ABSENT,
2693                      .fm   = 1,
2694                      .name = "TEMIC_4049" },
2695         [ 0x11 ] = { .id   = TUNER_TEMIC_4136FY5,
2696                      .name = "TEMIC_4136" },
2697         [ 0x12 ] = { .id   = TUNER_ABSENT,
2698                      .name = "TEMIC_4146" },
2699
2700         [ 0x20 ] = { .id   = TUNER_PHILIPS_FQ1216ME,
2701                      .fm   = 1,
2702                      .name = "PHILIPS_FQ1216_MK3" },
2703         [ 0x21 ] = { .id   = TUNER_ABSENT, .fm = 1,
2704                      .name = "PHILIPS_FQ1236_MK3" },
2705         [ 0x22 ] = { .id   = TUNER_ABSENT,
2706                      .name = "PHILIPS_FI1236_MK3" },
2707         [ 0x23 ] = { .id   = TUNER_ABSENT,
2708                      .name = "PHILIPS_FI1216_MK3" },
2709 };
2710
2711 static void gdi_eeprom(struct cx88_core *core, u8 *eeprom_data)
2712 {
2713         char *name = (eeprom_data[0x0d] < ARRAY_SIZE(gdi_tuner))
2714                 ? gdi_tuner[eeprom_data[0x0d]].name : NULL;
2715
2716         info_printk(core, "GDI: tuner=%s\n", name ? name : "unknown");
2717         if (NULL == name)
2718                 return;
2719         core->board.tuner_type = gdi_tuner[eeprom_data[0x0d]].id;
2720         core->board.radio.type = gdi_tuner[eeprom_data[0x0d]].fm ?
2721                 CX88_RADIO : 0;
2722 }
2723
2724 /* ------------------------------------------------------------------- */
2725 /* some Divco specific stuff                                           */
2726 static int cx88_dvico_xc2028_callback(struct cx88_core *core,
2727                                       int command, int arg)
2728 {
2729         switch (command) {
2730         case XC2028_TUNER_RESET:
2731                 switch (core->boardnr) {
2732                 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
2733                         /* GPIO-4 xc3028 tuner */
2734
2735                         cx_set(MO_GP0_IO, 0x00001000);
2736                         cx_clear(MO_GP0_IO, 0x00000010);
2737                         msleep(100);
2738                         cx_set(MO_GP0_IO, 0x00000010);
2739                         msleep(100);
2740                         break;
2741                 default:
2742                         cx_write(MO_GP0_IO, 0x101000);
2743                         mdelay(5);
2744                         cx_set(MO_GP0_IO, 0x101010);
2745                 }
2746                 break;
2747         default:
2748                 return -EINVAL;
2749         }
2750
2751         return 0;
2752 }
2753
2754
2755 /* ----------------------------------------------------------------------- */
2756 /* some Geniatech specific stuff                                           */
2757
2758 static int cx88_xc3028_geniatech_tuner_callback(struct cx88_core *core,
2759                                                 int command, int mode)
2760 {
2761         switch (command) {
2762         case XC2028_TUNER_RESET:
2763                 switch (INPUT(core->input).type) {
2764                 case CX88_RADIO:
2765                         break;
2766                 case CX88_VMUX_DVB:
2767                         cx_write(MO_GP1_IO, 0x030302);
2768                         mdelay(50);
2769                         break;
2770                 default:
2771                         cx_write(MO_GP1_IO, 0x030301);
2772                         mdelay(50);
2773                 }
2774                 cx_write(MO_GP1_IO, 0x101010);
2775                 mdelay(50);
2776                 cx_write(MO_GP1_IO, 0x101000);
2777                 mdelay(50);
2778                 cx_write(MO_GP1_IO, 0x101010);
2779                 mdelay(50);
2780                 return 0;
2781         }
2782         return -EINVAL;
2783 }
2784
2785 static int cx88_xc3028_winfast1800h_callback(struct cx88_core *core,
2786                                              int command, int arg)
2787 {
2788         switch (command) {
2789         case XC2028_TUNER_RESET:
2790                 /* GPIO 12 (xc3028 tuner reset) */
2791                 cx_set(MO_GP1_IO, 0x1010);
2792                 mdelay(50);
2793                 cx_clear(MO_GP1_IO, 0x10);
2794                 mdelay(50);
2795                 cx_set(MO_GP1_IO, 0x10);
2796                 mdelay(50);
2797                 return 0;
2798         }
2799         return -EINVAL;
2800 }
2801
2802 /* ------------------------------------------------------------------- */
2803 /* some Divco specific stuff                                           */
2804 static int cx88_pv_8000gt_callback(struct cx88_core *core,
2805                                    int command, int arg)
2806 {
2807         switch (command) {
2808         case XC2028_TUNER_RESET:
2809                 cx_write(MO_GP2_IO, 0xcf7);
2810                 mdelay(50);
2811                 cx_write(MO_GP2_IO, 0xef5);
2812                 mdelay(50);
2813                 cx_write(MO_GP2_IO, 0xcf7);
2814                 break;
2815         default:
2816                 return -EINVAL;
2817         }
2818
2819         return 0;
2820 }
2821
2822 /* ----------------------------------------------------------------------- */
2823 /* some DViCO specific stuff                                               */
2824
2825 static void dvico_fusionhdtv_hybrid_init(struct cx88_core *core)
2826 {
2827         struct i2c_msg msg = { .addr = 0x45, .flags = 0 };
2828         int i, err;
2829         static u8 init_bufs[13][5] = {
2830                 { 0x10, 0x00, 0x20, 0x01, 0x03 },
2831                 { 0x10, 0x10, 0x01, 0x00, 0x21 },
2832                 { 0x10, 0x10, 0x10, 0x00, 0xCA },
2833                 { 0x10, 0x10, 0x12, 0x00, 0x08 },
2834                 { 0x10, 0x10, 0x13, 0x00, 0x0A },
2835                 { 0x10, 0x10, 0x16, 0x01, 0xC0 },
2836                 { 0x10, 0x10, 0x22, 0x01, 0x3D },
2837                 { 0x10, 0x10, 0x73, 0x01, 0x2E },
2838                 { 0x10, 0x10, 0x72, 0x00, 0xC5 },
2839                 { 0x10, 0x10, 0x71, 0x01, 0x97 },
2840                 { 0x10, 0x10, 0x70, 0x00, 0x0F },
2841                 { 0x10, 0x10, 0xB0, 0x00, 0x01 },
2842                 { 0x03, 0x0C },
2843         };
2844
2845         for (i = 0; i < ARRAY_SIZE(init_bufs); i++) {
2846                 msg.buf = init_bufs[i];
2847                 msg.len = (i != 12 ? 5 : 2);
2848                 err = i2c_transfer(&core->i2c_adap, &msg, 1);
2849                 if (err != 1) {
2850                         warn_printk(core, "dvico_fusionhdtv_hybrid_init buf %d "
2851                                           "failed (err = %d)!\n", i, err);
2852                         return;
2853                 }
2854         }
2855 }
2856
2857 static int cx88_xc2028_tuner_callback(struct cx88_core *core,
2858                                       int command, int arg)
2859 {
2860         /* Board-specific callbacks */
2861         switch (core->boardnr) {
2862         case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
2863         case CX88_BOARD_GENIATECH_X8000_MT:
2864         case CX88_BOARD_KWORLD_ATSC_120:
2865                 return cx88_xc3028_geniatech_tuner_callback(core,
2866                                                         command, arg);
2867         case CX88_BOARD_PROLINK_PV_8000GT:
2868         case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
2869                 return cx88_pv_8000gt_callback(core, command, arg);
2870         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
2871         case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
2872                 return cx88_dvico_xc2028_callback(core, command, arg);
2873         case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
2874         case CX88_BOARD_WINFAST_DTV1800H:
2875                 return cx88_xc3028_winfast1800h_callback(core, command, arg);
2876         }
2877
2878         switch (command) {
2879         case XC2028_TUNER_RESET:
2880                 switch (INPUT(core->input).type) {
2881                 case CX88_RADIO:
2882                         info_printk(core, "setting GPIO to radio!\n");
2883                         cx_write(MO_GP0_IO, 0x4ff);
2884                         mdelay(250);
2885                         cx_write(MO_GP2_IO, 0xff);
2886                         mdelay(250);
2887                         break;
2888                 case CX88_VMUX_DVB:     /* Digital TV*/
2889                 default:                /* Analog TV */
2890                         info_printk(core, "setting GPIO to TV!\n");
2891                         break;
2892                 }
2893                 cx_write(MO_GP1_IO, 0x101010);
2894                 mdelay(250);
2895                 cx_write(MO_GP1_IO, 0x101000);
2896                 mdelay(250);
2897                 cx_write(MO_GP1_IO, 0x101010);
2898                 mdelay(250);
2899                 return 0;
2900         }
2901         return -EINVAL;
2902 }
2903
2904 /* ----------------------------------------------------------------------- */
2905 /* Tuner callback function. Currently only needed for the Pinnacle         *
2906  * PCTV HD 800i with an xc5000 sillicon tuner. This is used for both       *
2907  * analog tuner attach (tuner-core.c) and dvb tuner attach (cx88-dvb.c)    */
2908
2909 static int cx88_xc5000_tuner_callback(struct cx88_core *core,
2910                                       int command, int arg)
2911 {
2912         switch (core->boardnr) {
2913         case CX88_BOARD_PINNACLE_PCTV_HD_800i:
2914                 if (command == 0) { /* This is the reset command from xc5000 */
2915
2916                         /* djh - According to the engineer at PCTV Systems,
2917                            the xc5000 reset pin is supposed to be on GPIO12.
2918                            However, despite three nights of effort, pulling
2919                            that GPIO low didn't reset the xc5000.  While
2920                            pulling MO_SRST_IO low does reset the xc5000, this
2921                            also resets in the s5h1409 being reset as well.
2922                            This causes tuning to always fail since the internal
2923                            state of the s5h1409 does not match the driver's
2924                            state.  Given that the only two conditions in which
2925                            the driver performs a reset is during firmware load
2926                            and powering down the chip, I am taking out the
2927                            reset.  We know that the chip is being reset
2928                            when the cx88 comes online, and not being able to
2929                            do power management for this board is worse than
2930                            not having any tuning at all. */
2931                         return 0;
2932                 } else {
2933                         err_printk(core, "xc5000: unknown tuner "
2934                                    "callback command.\n");
2935                         return -EINVAL;
2936                 }
2937                 break;
2938         case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD:
2939                 if (command == 0) { /* This is the reset command from xc5000 */
2940                         cx_clear(MO_GP0_IO, 0x00000010);
2941                         msleep(10);
2942                         cx_set(MO_GP0_IO, 0x00000010);
2943                         return 0;
2944                 } else {
2945                         printk(KERN_ERR
2946                                 "xc5000: unknown tuner callback command.\n");
2947                         return -EINVAL;
2948                 }
2949                 break;
2950         }
2951         return 0; /* Should never be here */
2952 }
2953
2954 int cx88_tuner_callback(void *priv, int component, int command, int arg)
2955 {
2956         struct i2c_algo_bit_data *i2c_algo = priv;
2957         struct cx88_core *core;
2958
2959         if (!i2c_algo) {
2960                 printk(KERN_ERR "cx88: Error - i2c private data undefined.\n");
2961                 return -EINVAL;
2962         }
2963
2964         core = i2c_algo->data;
2965
2966         if (!core) {
2967                 printk(KERN_ERR "cx88: Error - device struct undefined.\n");
2968                 return -EINVAL;
2969         }
2970
2971         if (component != DVB_FRONTEND_COMPONENT_TUNER)
2972                 return -EINVAL;
2973
2974         switch (core->board.tuner_type) {
2975                 case TUNER_XC2028:
2976                         info_printk(core, "Calling XC2028/3028 callback\n");
2977                         return cx88_xc2028_tuner_callback(core, command, arg);
2978                 case TUNER_XC5000:
2979                         info_printk(core, "Calling XC5000 callback\n");
2980                         return cx88_xc5000_tuner_callback(core, command, arg);
2981         }
2982         err_printk(core, "Error: Calling callback for tuner %d\n",
2983                    core->board.tuner_type);
2984         return -EINVAL;
2985 }
2986 EXPORT_SYMBOL(cx88_tuner_callback);
2987
2988 /* ----------------------------------------------------------------------- */
2989
2990 static void cx88_card_list(struct cx88_core *core, struct pci_dev *pci)
2991 {
2992         int i;
2993
2994         if (0 == pci->subsystem_vendor &&
2995             0 == pci->subsystem_device) {
2996                 printk(KERN_ERR
2997                        "%s: Your board has no valid PCI Subsystem ID and thus can't\n"
2998                        "%s: be autodetected.  Please pass card=<n> insmod option to\n"
2999                        "%s: workaround that.  Redirect complaints to the vendor of\n"
3000                        "%s: the TV card.  Best regards,\n"
3001                        "%s:         -- tux\n",
3002                        core->name,core->name,core->name,core->name,core->name);
3003         } else {
3004                 printk(KERN_ERR
3005                        "%s: Your board isn't known (yet) to the driver.  You can\n"
3006                        "%s: try to pick one of the existing card configs via\n"
3007                        "%s: card=<n> insmod option.  Updating to the latest\n"
3008                        "%s: version might help as well.\n",
3009                        core->name,core->name,core->name,core->name);
3010         }
3011         err_printk(core, "Here is a list of valid choices for the card=<n> "
3012                    "insmod option:\n");
3013         for (i = 0; i < ARRAY_SIZE(cx88_boards); i++)
3014                 printk(KERN_ERR "%s:    card=%d -> %s\n",
3015                        core->name, i, cx88_boards[i].name);
3016 }
3017
3018 static void cx88_card_setup_pre_i2c(struct cx88_core *core)
3019 {
3020         switch (core->boardnr) {
3021         case CX88_BOARD_HAUPPAUGE_HVR1300:
3022                 /*
3023                  * Bring the 702 demod up before i2c scanning/attach or devices are hidden
3024                  * We leave here with the 702 on the bus
3025                  *
3026                  * "reset the IR receiver on GPIO[3]"
3027                  * Reported by Mike Crash <mike AT mikecrash.com>
3028                  */
3029                 cx_write(MO_GP0_IO, 0x0000ef88);
3030                 udelay(1000);
3031                 cx_clear(MO_GP0_IO, 0x00000088);
3032                 udelay(50);
3033                 cx_set(MO_GP0_IO, 0x00000088); /* 702 out of reset */
3034                 udelay(1000);
3035                 break;
3036
3037         case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
3038         case CX88_BOARD_PROLINK_PV_8000GT:
3039                 cx_write(MO_GP2_IO, 0xcf7);
3040                 mdelay(50);
3041                 cx_write(MO_GP2_IO, 0xef5);
3042                 mdelay(50);
3043                 cx_write(MO_GP2_IO, 0xcf7);
3044                 msleep(10);
3045                 break;
3046
3047         case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD:
3048                 /* Enable the xc5000 tuner */
3049                 cx_set(MO_GP0_IO, 0x00001010);
3050                 break;
3051
3052         case CX88_BOARD_HAUPPAUGE_HVR3000:
3053         case CX88_BOARD_HAUPPAUGE_HVR4000:
3054                 /* Init GPIO */
3055                 cx_write(MO_GP0_IO, core->board.input[0].gpio0);
3056                 udelay(1000);
3057                 cx_clear(MO_GP0_IO, 0x00000080);
3058                 udelay(50);
3059                 cx_set(MO_GP0_IO, 0x00000080); /* 702 out of reset */
3060                 udelay(1000);
3061                 break;
3062
3063         case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
3064         case CX88_BOARD_WINFAST_DTV1800H:
3065                 /* GPIO 12 (xc3028 tuner reset) */
3066                 cx_set(MO_GP1_IO, 0x1010);
3067                 mdelay(50);
3068                 cx_clear(MO_GP1_IO, 0x10);
3069                 mdelay(50);
3070                 cx_set(MO_GP1_IO, 0x10);
3071                 mdelay(50);
3072                 break;
3073         }
3074 }
3075
3076 /*
3077  * Sets board-dependent xc3028 configuration
3078  */
3079 void cx88_setup_xc3028(struct cx88_core *core, struct xc2028_ctrl *ctl)
3080 {
3081         memset(ctl, 0, sizeof(*ctl));
3082
3083         ctl->fname   = XC2028_DEFAULT_FIRMWARE;
3084         ctl->max_len = 64;
3085
3086         switch (core->boardnr) {
3087         case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
3088                 /* Now works with firmware version 2.7 */
3089                 if (core->i2c_algo.udelay < 16)
3090                         core->i2c_algo.udelay = 16;
3091                 break;
3092         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
3093         case CX88_BOARD_WINFAST_DTV1800H:
3094                 ctl->demod = XC3028_FE_ZARLINK456;
3095                 break;
3096         case CX88_BOARD_KWORLD_ATSC_120:
3097         case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
3098                 ctl->demod = XC3028_FE_OREN538;
3099                 break;
3100         case CX88_BOARD_GENIATECH_X8000_MT:
3101                 /* FIXME: For this board, the xc3028 never recovers after being
3102                    powered down (the reset GPIO probably is not set properly).
3103                    We don't have access to the hardware so we cannot determine
3104                    which GPIO is used for xc3028, so just disable power xc3028
3105                    power management for now */
3106                 ctl->disable_power_mgmt = 1;
3107                 break;
3108         case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
3109         case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
3110         case CX88_BOARD_PROLINK_PV_8000GT:
3111                 /*
3112                  * Those boards uses non-MTS firmware
3113                  */
3114                 break;
3115         case CX88_BOARD_PINNACLE_HYBRID_PCTV:
3116         case CX88_BOARD_TERRATEC_CINERGY_HT_PCI_MKII:
3117                 ctl->demod = XC3028_FE_ZARLINK456;
3118                 ctl->mts = 1;
3119                 break;
3120         default:
3121                 ctl->demod = XC3028_FE_OREN538;
3122                 ctl->mts = 1;
3123         }
3124 }
3125 EXPORT_SYMBOL_GPL(cx88_setup_xc3028);
3126
3127 static void cx88_card_setup(struct cx88_core *core)
3128 {
3129         static u8 eeprom[256];
3130         struct tuner_setup tun_setup;
3131         unsigned int mode_mask = T_RADIO     |
3132                                  T_ANALOG_TV |
3133                                  T_DIGITAL_TV;
3134
3135         memset(&tun_setup, 0, sizeof(tun_setup));
3136
3137         if (0 == core->i2c_rc) {
3138                 core->i2c_client.addr = 0xa0 >> 1;
3139                 tveeprom_read(&core->i2c_client, eeprom, sizeof(eeprom));
3140         }
3141
3142         switch (core->boardnr) {
3143         case CX88_BOARD_HAUPPAUGE:
3144         case CX88_BOARD_HAUPPAUGE_ROSLYN:
3145                 if (0 == core->i2c_rc)
3146                         hauppauge_eeprom(core, eeprom+8);
3147                 break;
3148         case CX88_BOARD_GDI:
3149                 if (0 == core->i2c_rc)
3150                         gdi_eeprom(core, eeprom);
3151                 break;
3152         case CX88_BOARD_LEADTEK_PVR2000:
3153         case CX88_BOARD_WINFAST_DV2000:
3154         case CX88_BOARD_WINFAST2000XP_EXPERT:
3155                 if (0 == core->i2c_rc)
3156                         leadtek_eeprom(core, eeprom);
3157                 break;
3158         case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
3159         case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
3160         case CX88_BOARD_HAUPPAUGE_DVB_T1:
3161         case CX88_BOARD_HAUPPAUGE_HVR1100:
3162         case CX88_BOARD_HAUPPAUGE_HVR1100LP:
3163         case CX88_BOARD_HAUPPAUGE_HVR3000:
3164         case CX88_BOARD_HAUPPAUGE_HVR1300:
3165         case CX88_BOARD_HAUPPAUGE_HVR4000:
3166         case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
3167         case CX88_BOARD_HAUPPAUGE_IRONLY:
3168                 if (0 == core->i2c_rc)
3169                         hauppauge_eeprom(core, eeprom);
3170                 break;
3171         case CX88_BOARD_KWORLD_DVBS_100:
3172                 cx_write(MO_GP0_IO, 0x000007f8);
3173                 cx_write(MO_GP1_IO, 0x00000001);
3174                 break;
3175         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
3176                 /* GPIO0:0 is hooked to demod reset */
3177                 /* GPIO0:4 is hooked to xc3028 reset */
3178                 cx_write(MO_GP0_IO, 0x00111100);
3179                 msleep(1);
3180                 cx_write(MO_GP0_IO, 0x00111111);
3181                 break;
3182         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL:
3183                 /* GPIO0:6 is hooked to FX2 reset pin */
3184                 cx_set(MO_GP0_IO, 0x00004040);
3185                 cx_clear(MO_GP0_IO, 0x00000040);
3186                 msleep(1000);
3187                 cx_set(MO_GP0_IO, 0x00004040);
3188                 /* FALLTHROUGH */
3189         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
3190         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
3191         case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID:
3192                 /* GPIO0:0 is hooked to mt352 reset pin */
3193                 cx_set(MO_GP0_IO, 0x00000101);
3194                 cx_clear(MO_GP0_IO, 0x00000001);
3195                 msleep(1);
3196                 cx_set(MO_GP0_IO, 0x00000101);
3197                 if (0 == core->i2c_rc &&
3198                     core->boardnr == CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID)
3199                         dvico_fusionhdtv_hybrid_init(core);
3200                 break;
3201         case CX88_BOARD_KWORLD_DVB_T:
3202         case CX88_BOARD_DNTV_LIVE_DVB_T:
3203                 cx_set(MO_GP0_IO, 0x00000707);
3204                 cx_set(MO_GP2_IO, 0x00000101);
3205                 cx_clear(MO_GP2_IO, 0x00000001);
3206                 msleep(1);
3207                 cx_clear(MO_GP0_IO, 0x00000007);
3208                 cx_set(MO_GP2_IO, 0x00000101);
3209                 break;
3210         case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
3211                 cx_write(MO_GP0_IO, 0x00080808);
3212                 break;
3213         case CX88_BOARD_ATI_HDTVWONDER:
3214                 if (0 == core->i2c_rc) {
3215                         /* enable tuner */
3216                         int i;
3217                         static const u8 buffer [][2] = {
3218                                 {0x10,0x12},
3219                                 {0x13,0x04},
3220                                 {0x16,0x00},
3221                                 {0x14,0x04},
3222                                 {0x17,0x00}
3223                         };
3224                         core->i2c_client.addr = 0x0a;
3225
3226                         for (i = 0; i < ARRAY_SIZE(buffer); i++)
3227                                 if (2 != i2c_master_send(&core->i2c_client,
3228                                                         buffer[i],2))
3229                                         warn_printk(core, "Unable to enable "
3230                                                     "tuner(%i).\n", i);
3231                 }
3232                 break;
3233         case CX88_BOARD_MSI_TVANYWHERE_MASTER:
3234         {
3235                 struct v4l2_priv_tun_config tea5767_cfg;
3236                 struct tea5767_ctrl ctl;
3237
3238                 memset(&ctl, 0, sizeof(ctl));
3239
3240                 ctl.high_cut  = 1;
3241                 ctl.st_noise  = 1;
3242                 ctl.deemph_75 = 1;
3243                 ctl.xtal_freq = TEA5767_HIGH_LO_13MHz;
3244
3245                 tea5767_cfg.tuner = TUNER_TEA5767;
3246                 tea5767_cfg.priv  = &ctl;
3247
3248                 call_all(core, tuner, s_config, &tea5767_cfg);
3249                 break;
3250         }
3251         case  CX88_BOARD_TEVII_S420:
3252         case  CX88_BOARD_TEVII_S460:
3253         case  CX88_BOARD_OMICOM_SS4_PCI:
3254         case  CX88_BOARD_TBS_8910:
3255         case  CX88_BOARD_TBS_8920:
3256         case  CX88_BOARD_PROF_6200:
3257         case  CX88_BOARD_PROF_7300:
3258         case  CX88_BOARD_PROF_7301:
3259         case  CX88_BOARD_SATTRADE_ST4200:
3260                 cx_write(MO_GP0_IO, 0x8000);
3261                 msleep(100);
3262                 cx_write(MO_SRST_IO, 0);
3263                 msleep(10);
3264                 cx_write(MO_GP0_IO, 0x8080);
3265                 msleep(100);
3266                 cx_write(MO_SRST_IO, 1);
3267                 msleep(100);
3268                 break;
3269         } /*end switch() */
3270
3271
3272         /* Setup tuners */
3273         if ((core->board.radio_type != UNSET)) {
3274                 tun_setup.mode_mask      = T_RADIO;
3275                 tun_setup.type           = core->board.radio_type;
3276                 tun_setup.addr           = core->board.radio_addr;
3277                 tun_setup.tuner_callback = cx88_tuner_callback;
3278                 call_all(core, tuner, s_type_addr, &tun_setup);
3279                 mode_mask &= ~T_RADIO;
3280         }
3281
3282         if (core->board.tuner_type != TUNER_ABSENT) {
3283                 tun_setup.mode_mask      = mode_mask;
3284                 tun_setup.type           = core->board.tuner_type;
3285                 tun_setup.addr           = core->board.tuner_addr;
3286                 tun_setup.tuner_callback = cx88_tuner_callback;
3287
3288                 call_all(core, tuner, s_type_addr, &tun_setup);
3289         }
3290
3291         if (core->board.tda9887_conf) {
3292                 struct v4l2_priv_tun_config tda9887_cfg;
3293
3294                 tda9887_cfg.tuner = TUNER_TDA9887;
3295                 tda9887_cfg.priv  = &core->board.tda9887_conf;
3296
3297                 call_all(core, tuner, s_config, &tda9887_cfg);
3298         }
3299
3300         if (core->board.tuner_type == TUNER_XC2028) {
3301                 struct v4l2_priv_tun_config  xc2028_cfg;
3302                 struct xc2028_ctrl           ctl;
3303
3304                 /* Fills device-dependent initialization parameters */
3305                 cx88_setup_xc3028(core, &ctl);
3306
3307                 /* Sends parameters to xc2028/3028 tuner */
3308                 memset(&xc2028_cfg, 0, sizeof(xc2028_cfg));
3309                 xc2028_cfg.tuner = TUNER_XC2028;
3310                 xc2028_cfg.priv  = &ctl;
3311                 info_printk(core, "Asking xc2028/3028 to load firmware %s\n",
3312                             ctl.fname);
3313                 call_all(core, tuner, s_config, &xc2028_cfg);
3314         }
3315         call_all(core, core, s_power, 0);
3316 }
3317
3318 /* ------------------------------------------------------------------ */
3319
3320 static int cx88_pci_quirks(const char *name, struct pci_dev *pci)
3321 {
3322         unsigned int lat = UNSET;
3323         u8 ctrl = 0;
3324         u8 value;
3325
3326         /* check pci quirks */
3327         if (pci_pci_problems & PCIPCI_TRITON) {
3328                 printk(KERN_INFO "%s: quirk: PCIPCI_TRITON -- set TBFX\n",
3329                        name);
3330                 ctrl |= CX88X_EN_TBFX;
3331         }
3332         if (pci_pci_problems & PCIPCI_NATOMA) {
3333                 printk(KERN_INFO "%s: quirk: PCIPCI_NATOMA -- set TBFX\n",
3334                        name);
3335                 ctrl |= CX88X_EN_TBFX;
3336         }
3337         if (pci_pci_problems & PCIPCI_VIAETBF) {
3338                 printk(KERN_INFO "%s: quirk: PCIPCI_VIAETBF -- set TBFX\n",
3339                        name);
3340                 ctrl |= CX88X_EN_TBFX;
3341         }
3342         if (pci_pci_problems & PCIPCI_VSFX) {
3343                 printk(KERN_INFO "%s: quirk: PCIPCI_VSFX -- set VSFX\n",
3344                        name);
3345                 ctrl |= CX88X_EN_VSFX;
3346         }
3347 #ifdef PCIPCI_ALIMAGIK
3348         if (pci_pci_problems & PCIPCI_ALIMAGIK) {
3349                 printk(KERN_INFO "%s: quirk: PCIPCI_ALIMAGIK -- latency fixup\n",
3350                        name);
3351                 lat = 0x0A;
3352         }
3353 #endif
3354
3355         /* check insmod options */
3356         if (UNSET != latency)
3357                 lat = latency;
3358
3359         /* apply stuff */
3360         if (ctrl) {
3361                 pci_read_config_byte(pci, CX88X_DEVCTRL, &value);
3362                 value |= ctrl;
3363                 pci_write_config_byte(pci, CX88X_DEVCTRL, value);
3364         }
3365         if (UNSET != lat) {
3366                 printk(KERN_INFO "%s: setting pci latency timer to %d\n",
3367                        name, latency);
3368                 pci_write_config_byte(pci, PCI_LATENCY_TIMER, latency);
3369         }
3370         return 0;
3371 }
3372
3373 int cx88_get_resources(const struct cx88_core *core, struct pci_dev *pci)
3374 {
3375         if (request_mem_region(pci_resource_start(pci,0),
3376                                pci_resource_len(pci,0),
3377                                core->name))
3378                 return 0;
3379         printk(KERN_ERR
3380                "%s/%d: Can't get MMIO memory @ 0x%llx, subsystem: %04x:%04x\n",
3381                core->name, PCI_FUNC(pci->devfn),
3382                (unsigned long long)pci_resource_start(pci, 0),
3383                pci->subsystem_vendor, pci->subsystem_device);
3384         return -EBUSY;
3385 }
3386
3387 /* Allocate and initialize the cx88 core struct.  One should hold the
3388  * devlist mutex before calling this.  */
3389 struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr)
3390 {
3391         struct cx88_core *core;
3392         int i;
3393
3394         core = kzalloc(sizeof(*core), GFP_KERNEL);
3395         if (core == NULL)
3396                 return NULL;
3397
3398         atomic_inc(&core->refcount);
3399         core->pci_bus  = pci->bus->number;
3400         core->pci_slot = PCI_SLOT(pci->devfn);
3401         core->pci_irqmask = PCI_INT_RISC_RD_BERRINT | PCI_INT_RISC_WR_BERRINT |
3402                             PCI_INT_BRDG_BERRINT | PCI_INT_SRC_DMA_BERRINT |
3403                             PCI_INT_DST_DMA_BERRINT | PCI_INT_IPB_DMA_BERRINT;
3404         mutex_init(&core->lock);
3405
3406         core->nr = nr;
3407         sprintf(core->name, "cx88[%d]", core->nr);
3408
3409         strcpy(core->v4l2_dev.name, core->name);
3410         if (v4l2_device_register(NULL, &core->v4l2_dev)) {
3411                 kfree(core);
3412                 return NULL;
3413         }
3414
3415         if (0 != cx88_get_resources(core, pci)) {
3416                 v4l2_device_unregister(&core->v4l2_dev);
3417                 kfree(core);
3418                 return NULL;
3419         }
3420
3421         /* PCI stuff */
3422         cx88_pci_quirks(core->name, pci);
3423         core->lmmio = ioremap(pci_resource_start(pci, 0),
3424                               pci_resource_len(pci, 0));
3425         core->bmmio = (u8 __iomem *)core->lmmio;
3426
3427         if (core->lmmio == NULL) {
3428                 kfree(core);
3429                 return NULL;
3430         }
3431
3432         /* board config */
3433         core->boardnr = UNSET;
3434         if (card[core->nr] < ARRAY_SIZE(cx88_boards))
3435                 core->boardnr = card[core->nr];
3436         for (i = 0; UNSET == core->boardnr && i < ARRAY_SIZE(cx88_subids); i++)
3437                 if (pci->subsystem_vendor == cx88_subids[i].subvendor &&
3438                     pci->subsystem_device == cx88_subids[i].subdevice)
3439                         core->boardnr = cx88_subids[i].card;
3440         if (UNSET == core->boardnr) {
3441                 core->boardnr = CX88_BOARD_UNKNOWN;
3442                 cx88_card_list(core, pci);
3443         }
3444
3445         memcpy(&core->board, &cx88_boards[core->boardnr], sizeof(core->board));
3446
3447         if (!core->board.num_frontends && (core->board.mpeg & CX88_MPEG_DVB))
3448                 core->board.num_frontends = 1;
3449
3450         info_printk(core, "subsystem: %04x:%04x, board: %s [card=%d,%s], frontend(s): %d\n",
3451                 pci->subsystem_vendor, pci->subsystem_device, core->board.name,
3452                 core->boardnr, card[core->nr] == core->boardnr ?
3453                 "insmod option" : "autodetected",
3454                 core->board.num_frontends);
3455
3456         if (tuner[core->nr] != UNSET)
3457                 core->board.tuner_type = tuner[core->nr];
3458         if (radio[core->nr] != UNSET)
3459                 core->board.radio_type = radio[core->nr];
3460
3461         info_printk(core, "TV tuner type %d, Radio tuner type %d\n",
3462                     core->board.tuner_type, core->board.radio_type);
3463
3464         /* init hardware */
3465         cx88_reset(core);
3466         cx88_card_setup_pre_i2c(core);
3467         cx88_i2c_init(core, pci);
3468
3469         /* load tuner module, if needed */
3470         if (TUNER_ABSENT != core->board.tuner_type) {
3471                 /* Ignore 0x6b and 0x6f on cx88 boards.
3472                  * FusionHDTV5 RT Gold has an ir receiver at 0x6b
3473                  * and an RTC at 0x6f which can get corrupted if probed. */
3474                 static const unsigned short tv_addrs[] = {
3475                         0x42, 0x43, 0x4a, 0x4b,         /* tda8290 */
3476                         0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
3477                         0x68, 0x69, 0x6a, 0x6c, 0x6d, 0x6e,
3478                         I2C_CLIENT_END
3479                 };
3480                 int has_demod = (core->board.tda9887_conf & TDA9887_PRESENT);
3481
3482                 /* I don't trust the radio_type as is stored in the card
3483                    definitions, so we just probe for it.
3484                    The radio_type is sometimes missing, or set to UNSET but
3485                    later code configures a tea5767.
3486                  */
3487                 v4l2_i2c_new_subdev(&core->v4l2_dev, &core->i2c_adap,
3488                                 "tuner", "tuner",
3489                                 0, v4l2_i2c_tuner_addrs(ADDRS_RADIO));
3490                 if (has_demod)
3491                         v4l2_i2c_new_subdev(&core->v4l2_dev,
3492                                 &core->i2c_adap, "tuner", "tuner",
3493                                 0, v4l2_i2c_tuner_addrs(ADDRS_DEMOD));
3494                 if (core->board.tuner_addr == ADDR_UNSET) {
3495                         v4l2_i2c_new_subdev(&core->v4l2_dev,
3496                                 &core->i2c_adap, "tuner", "tuner",
3497                                 0, has_demod ? tv_addrs + 4 : tv_addrs);
3498                 } else {
3499                         v4l2_i2c_new_subdev(&core->v4l2_dev, &core->i2c_adap,
3500                                 "tuner", "tuner", core->board.tuner_addr, NULL);
3501                 }
3502         }
3503
3504         cx88_card_setup(core);
3505         if (!disable_ir) {
3506                 cx88_i2c_init_ir(core);
3507                 cx88_ir_init(core, pci);
3508         }
3509
3510         return core;
3511 }