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