[PATCH] v4l: 894: work around to allow hybrid dvb card to autoload the tda9887
[linux-2.6-block.git] / drivers / media / video / cx88 / cx88-cards.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 *
3 * device driver for Conexant 2388x based TV cards
4 * card-specific stuff.
5 *
6 * (c) 2003 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <linux/init.h>
24#include <linux/module.h>
25#include <linux/pci.h>
26#include <linux/delay.h>
27
28#include "cx88.h"
29
30/* ------------------------------------------------------------------ */
31/* board config info */
32
33struct cx88_board cx88_boards[] = {
34 [CX88_BOARD_UNKNOWN] = {
35 .name = "UNKNOWN/GENERIC",
36 .tuner_type = UNSET,
b45009b0
MCC
37 .radio_type = UNSET,
38 .tuner_addr = ADDR_UNSET,
39 .radio_addr = ADDR_UNSET,
1da177e4
LT
40 .input = {{
41 .type = CX88_VMUX_COMPOSITE1,
42 .vmux = 0,
43 },{
44 .type = CX88_VMUX_COMPOSITE2,
45 .vmux = 1,
46 },{
47 .type = CX88_VMUX_COMPOSITE3,
48 .vmux = 2,
49 },{
50 .type = CX88_VMUX_COMPOSITE4,
51 .vmux = 3,
52 }},
53 },
54 [CX88_BOARD_HAUPPAUGE] = {
55 .name = "Hauppauge WinTV 34xxx models",
56 .tuner_type = UNSET,
b45009b0
MCC
57 .radio_type = UNSET,
58 .tuner_addr = ADDR_UNSET,
59 .radio_addr = ADDR_UNSET,
1da177e4
LT
60 .tda9887_conf = TDA9887_PRESENT,
61 .input = {{
62 .type = CX88_VMUX_TELEVISION,
63 .vmux = 0,
64 .gpio0 = 0xff00, // internal decoder
65 },{
66 .type = CX88_VMUX_DEBUG,
67 .vmux = 0,
68 .gpio0 = 0xff01, // mono from tuner chip
69 },{
70 .type = CX88_VMUX_COMPOSITE1,
71 .vmux = 1,
72 .gpio0 = 0xff02,
73 },{
74 .type = CX88_VMUX_SVIDEO,
75 .vmux = 2,
76 .gpio0 = 0xff02,
77 }},
78 .radio = {
79 .type = CX88_RADIO,
80 .gpio0 = 0xff01,
81 },
82 },
83 [CX88_BOARD_GDI] = {
84 .name = "GDI Black Gold",
85 .tuner_type = UNSET,
b45009b0
MCC
86 .radio_type = UNSET,
87 .tuner_addr = ADDR_UNSET,
88 .radio_addr = ADDR_UNSET,
1da177e4
LT
89 .input = {{
90 .type = CX88_VMUX_TELEVISION,
91 .vmux = 0,
fd3113e8
MCC
92 },{
93 .type = CX88_VMUX_SVIDEO,
94 .vmux = 2,
1da177e4
LT
95 }},
96 },
97 [CX88_BOARD_PIXELVIEW] = {
98 .name = "PixelView",
b45009b0
MCC
99 .tuner_type = TUNER_PHILIPS_PAL,
100 .radio_type = UNSET,
101 .tuner_addr = ADDR_UNSET,
102 .radio_addr = ADDR_UNSET,
1da177e4
LT
103 .input = {{
104 .type = CX88_VMUX_TELEVISION,
105 .vmux = 0,
106 .gpio0 = 0xff00, // internal decoder
107 },{
108 .type = CX88_VMUX_COMPOSITE1,
109 .vmux = 1,
110 },{
111 .type = CX88_VMUX_SVIDEO,
112 .vmux = 2,
113 }},
114 .radio = {
115 .type = CX88_RADIO,
116 .gpio0 = 0xff10,
117 },
118 },
119 [CX88_BOARD_ATI_WONDER_PRO] = {
120 .name = "ATI TV Wonder Pro",
b45009b0
MCC
121 .tuner_type = TUNER_PHILIPS_4IN1,
122 .radio_type = UNSET,
123 .tuner_addr = ADDR_UNSET,
124 .radio_addr = ADDR_UNSET,
1da177e4
LT
125 .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER,
126 .input = {{
127 .type = CX88_VMUX_TELEVISION,
128 .vmux = 0,
4ac97914 129 .gpio0 = 0x03ff,
1da177e4
LT
130 },{
131 .type = CX88_VMUX_COMPOSITE1,
132 .vmux = 1,
4ac97914 133 .gpio0 = 0x03fe,
1da177e4
LT
134 },{
135 .type = CX88_VMUX_SVIDEO,
136 .vmux = 2,
4ac97914 137 .gpio0 = 0x03fe,
1da177e4
LT
138 }},
139 },
4ac97914
MCC
140 [CX88_BOARD_WINFAST2000XP_EXPERT] = {
141 .name = "Leadtek Winfast 2000XP Expert",
142 .tuner_type = TUNER_PHILIPS_4IN1,
b45009b0
MCC
143 .radio_type = UNSET,
144 .tuner_addr = ADDR_UNSET,
145 .radio_addr = ADDR_UNSET,
1da177e4 146 .tda9887_conf = TDA9887_PRESENT,
4ac97914
MCC
147 .input = {{
148 .type = CX88_VMUX_TELEVISION,
149 .vmux = 0,
1da177e4
LT
150 .gpio0 = 0x00F5e700,
151 .gpio1 = 0x00003004,
152 .gpio2 = 0x00F5e700,
153 .gpio3 = 0x02000000,
154 },{
155 .type = CX88_VMUX_COMPOSITE1,
156 .vmux = 1,
157 .gpio0 = 0x00F5c700,
158 .gpio1 = 0x00003004,
159 .gpio2 = 0x00F5c700,
160 .gpio3 = 0x02000000,
161 },{
162 .type = CX88_VMUX_SVIDEO,
163 .vmux = 2,
164 .gpio0 = 0x00F5c700,
165 .gpio1 = 0x00003004,
166 .gpio2 = 0x00F5c700,
167 .gpio3 = 0x02000000,
4ac97914
MCC
168 }},
169 .radio = {
170 .type = CX88_RADIO,
1da177e4
LT
171 .gpio0 = 0x00F5d700,
172 .gpio1 = 0x00003004,
173 .gpio2 = 0x00F5d700,
174 .gpio3 = 0x02000000,
4ac97914
MCC
175 },
176 },
1da177e4
LT
177 [CX88_BOARD_AVERTV_303] = {
178 .name = "AverTV Studio 303 (M126)",
b45009b0
MCC
179 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
180 .radio_type = UNSET,
181 .tuner_addr = ADDR_UNSET,
182 .radio_addr = ADDR_UNSET,
1da177e4
LT
183 .tda9887_conf = TDA9887_PRESENT,
184 .input = {{
185 .type = CX88_VMUX_TELEVISION,
186 .vmux = 0,
187 .gpio1 = 0x309f,
188 },{
189 .type = CX88_VMUX_COMPOSITE1,
190 .vmux = 1,
191 .gpio1 = 0x305f,
192 },{
193 .type = CX88_VMUX_SVIDEO,
194 .vmux = 2,
195 .gpio1 = 0x305f,
196 }},
197 .radio = {
198 .type = CX88_RADIO,
199 },
200 },
201 [CX88_BOARD_MSI_TVANYWHERE_MASTER] = {
202 // added gpio values thanks to Michal
203 // values for PAL from DScaler
204 .name = "MSI TV-@nywhere Master",
b45009b0
MCC
205 .tuner_type = TUNER_MT2032,
206 .radio_type = UNSET,
207 .tuner_addr = ADDR_UNSET,
208 .radio_addr = ADDR_UNSET,
3ae1adc6 209 .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER_NTSC,
1da177e4
LT
210 .input = {{
211 .type = CX88_VMUX_TELEVISION,
212 .vmux = 0,
213 .gpio0 = 0x000040bf,
214 .gpio1 = 0x000080c0,
215 .gpio2 = 0x0000ff40,
216 },{
4ac97914
MCC
217 .type = CX88_VMUX_COMPOSITE1,
218 .vmux = 1,
1da177e4
LT
219 .gpio0 = 0x000040bf,
220 .gpio1 = 0x000080c0,
221 .gpio2 = 0x0000ff40,
222 },{
4ac97914
MCC
223 .type = CX88_VMUX_SVIDEO,
224 .vmux = 2,
1da177e4
LT
225 .gpio0 = 0x000040bf,
226 .gpio1 = 0x000080c0,
227 .gpio2 = 0x0000ff40,
4ac97914
MCC
228 }},
229 .radio = {
1da177e4 230 .type = CX88_RADIO,
4ac97914 231 },
1da177e4
LT
232 },
233 [CX88_BOARD_WINFAST_DV2000] = {
4ac97914
MCC
234 .name = "Leadtek Winfast DV2000",
235 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
b45009b0
MCC
236 .radio_type = UNSET,
237 .tuner_addr = ADDR_UNSET,
238 .radio_addr = ADDR_UNSET,
1da177e4 239 .tda9887_conf = TDA9887_PRESENT,
4ac97914
MCC
240 .input = {{
241 .type = CX88_VMUX_TELEVISION,
242 .vmux = 0,
1da177e4
LT
243 .gpio0 = 0x0035e700,
244 .gpio1 = 0x00003004,
245 .gpio2 = 0x0035e700,
246 .gpio3 = 0x02000000,
247 },{
248
249 .type = CX88_VMUX_COMPOSITE1,
250 .vmux = 1,
251 .gpio0 = 0x0035c700,
252 .gpio1 = 0x00003004,
253 .gpio2 = 0x0035c700,
254 .gpio3 = 0x02000000,
255 },{
256 .type = CX88_VMUX_SVIDEO,
257 .vmux = 2,
258 .gpio0 = 0x0035c700,
259 .gpio1 = 0x0035c700,
260 .gpio2 = 0x02000000,
261 .gpio3 = 0x02000000,
262 }},
4ac97914 263 .radio = {
1da177e4
LT
264 .type = CX88_RADIO,
265 .gpio0 = 0x0035d700,
266 .gpio1 = 0x00007004,
267 .gpio2 = 0x0035d700,
268 .gpio3 = 0x02000000,
269 },
4ac97914 270 },
b45009b0 271 [CX88_BOARD_LEADTEK_PVR2000] = {
1da177e4 272 // gpio values for PAL version from regspy by DScaler
b45009b0
MCC
273 .name = "Leadtek PVR 2000",
274 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
275 .radio_type = UNSET,
276 .tuner_addr = ADDR_UNSET,
277 .radio_addr = ADDR_UNSET,
1da177e4 278 .tda9887_conf = TDA9887_PRESENT,
b45009b0
MCC
279 .input = {{
280 .type = CX88_VMUX_TELEVISION,
281 .vmux = 0,
282 .gpio0 = 0x0000bde2,
283 },{
284 .type = CX88_VMUX_COMPOSITE1,
285 .vmux = 1,
286 .gpio0 = 0x0000bde6,
287 },{
288 .type = CX88_VMUX_SVIDEO,
289 .vmux = 2,
290 .gpio0 = 0x0000bde6,
291 }},
292 .radio = {
293 .type = CX88_RADIO,
294 .gpio0 = 0x0000bd62,
295 },
1da177e4 296 .blackbird = 1,
b45009b0 297 },
1da177e4 298 [CX88_BOARD_IODATA_GVVCP3PCI] = {
4ac97914 299 .name = "IODATA GV-VCP3/PCI",
1da177e4 300 .tuner_type = TUNER_ABSENT,
4ac97914 301 .radio_type = UNSET,
b45009b0
MCC
302 .tuner_addr = ADDR_UNSET,
303 .radio_addr = ADDR_UNSET,
304 .input = {{
4ac97914
MCC
305 .type = CX88_VMUX_COMPOSITE1,
306 .vmux = 0,
307 },{
308 .type = CX88_VMUX_COMPOSITE2,
309 .vmux = 1,
310 },{
311 .type = CX88_VMUX_SVIDEO,
312 .vmux = 2,
313 }},
314 },
1da177e4 315 [CX88_BOARD_PROLINK_PLAYTVPVR] = {
4ac97914
MCC
316 .name = "Prolink PlayTV PVR",
317 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
b45009b0
MCC
318 .radio_type = UNSET,
319 .tuner_addr = ADDR_UNSET,
320 .radio_addr = ADDR_UNSET,
1da177e4
LT
321 .tda9887_conf = TDA9887_PRESENT,
322 .input = {{
323 .type = CX88_VMUX_TELEVISION,
324 .vmux = 0,
325 .gpio0 = 0xff00,
326 },{
327 .type = CX88_VMUX_COMPOSITE1,
328 .vmux = 1,
329 .gpio0 = 0xff03,
330 },{
331 .type = CX88_VMUX_SVIDEO,
332 .vmux = 2,
333 .gpio0 = 0xff03,
334 }},
335 .radio = {
336 .type = CX88_RADIO,
337 .gpio0 = 0xff00,
338 },
339 },
340 [CX88_BOARD_ASUS_PVR_416] = {
341 .name = "ASUS PVR-416",
b45009b0
MCC
342 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
343 .radio_type = UNSET,
344 .tuner_addr = ADDR_UNSET,
345 .radio_addr = ADDR_UNSET,
346 .tda9887_conf = TDA9887_PRESENT,
1da177e4
LT
347 .input = {{
348 .type = CX88_VMUX_TELEVISION,
349 .vmux = 0,
350 .gpio0 = 0x0000fde6,
4ac97914 351 },{
1da177e4
LT
352 .type = CX88_VMUX_SVIDEO,
353 .vmux = 2,
354 .gpio0 = 0x0000fde6, // 0x0000fda6 L,R RCA audio in?
355 }},
4ac97914
MCC
356 .radio = {
357 .type = CX88_RADIO,
1da177e4 358 .gpio0 = 0x0000fde2,
4ac97914 359 },
1da177e4
LT
360 .blackbird = 1,
361 },
362 [CX88_BOARD_MSI_TVANYWHERE] = {
363 .name = "MSI TV-@nywhere",
b45009b0
MCC
364 .tuner_type = TUNER_MT2032,
365 .radio_type = UNSET,
366 .tuner_addr = ADDR_UNSET,
367 .radio_addr = ADDR_UNSET,
1da177e4
LT
368 .tda9887_conf = TDA9887_PRESENT,
369 .input = {{
370 .type = CX88_VMUX_TELEVISION,
371 .vmux = 0,
372 .gpio0 = 0x00000fbf,
373 .gpio2 = 0x0000fc08,
374 },{
4ac97914
MCC
375 .type = CX88_VMUX_COMPOSITE1,
376 .vmux = 1,
1da177e4
LT
377 .gpio0 = 0x00000fbf,
378 .gpio2 = 0x0000fc68,
379 },{
4ac97914
MCC
380 .type = CX88_VMUX_SVIDEO,
381 .vmux = 2,
1da177e4
LT
382 .gpio0 = 0x00000fbf,
383 .gpio2 = 0x0000fc68,
4ac97914 384 }},
1da177e4 385 },
4ac97914
MCC
386 [CX88_BOARD_KWORLD_DVB_T] = {
387 .name = "KWorld/VStream XPert DVB-T",
1da177e4 388 .tuner_type = TUNER_ABSENT,
b45009b0
MCC
389 .radio_type = UNSET,
390 .tuner_addr = ADDR_UNSET,
391 .radio_addr = ADDR_UNSET,
4ac97914
MCC
392 .input = {{
393 .type = CX88_VMUX_COMPOSITE1,
394 .vmux = 1,
1da177e4
LT
395 .gpio0 = 0x0700,
396 .gpio2 = 0x0101,
4ac97914
MCC
397 },{
398 .type = CX88_VMUX_SVIDEO,
399 .vmux = 2,
1da177e4
LT
400 .gpio0 = 0x0700,
401 .gpio2 = 0x0101,
4ac97914 402 }},
1da177e4
LT
403 .dvb = 1,
404 },
405 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1] = {
a82decf6 406 .name = "DViCO FusionHDTV DVB-T1",
1da177e4 407 .tuner_type = TUNER_ABSENT, /* No analog tuner */
b45009b0
MCC
408 .radio_type = UNSET,
409 .tuner_addr = ADDR_UNSET,
410 .radio_addr = ADDR_UNSET,
1da177e4
LT
411 .input = {{
412 .type = CX88_VMUX_COMPOSITE1,
413 .vmux = 1,
414 .gpio0 = 0x000027df,
415 },{
416 .type = CX88_VMUX_SVIDEO,
417 .vmux = 2,
418 .gpio0 = 0x000027df,
419 }},
420 .dvb = 1,
421 },
422 [CX88_BOARD_KWORLD_LTV883] = {
423 .name = "KWorld LTV883RF",
b45009b0
MCC
424 .tuner_type = TUNER_TNF_8831BGFF,
425 .radio_type = UNSET,
426 .tuner_addr = ADDR_UNSET,
427 .radio_addr = ADDR_UNSET,
4ac97914
MCC
428 .input = {{
429 .type = CX88_VMUX_TELEVISION,
430 .vmux = 0,
431 .gpio0 = 0x07f8,
1da177e4
LT
432 },{
433 .type = CX88_VMUX_DEBUG,
434 .vmux = 0,
435 .gpio0 = 0x07f9, // mono from tuner chip
4ac97914
MCC
436 },{
437 .type = CX88_VMUX_COMPOSITE1,
438 .vmux = 1,
439 .gpio0 = 0x000007fa,
440 },{
441 .type = CX88_VMUX_SVIDEO,
442 .vmux = 2,
443 .gpio0 = 0x000007fa,
444 }},
445 .radio = {
446 .type = CX88_RADIO,
447 .gpio0 = 0x000007f8,
448 },
1da177e4 449 },
a82decf6
MCC
450 [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q] = {
451 .name = "DViCO FusionHDTV 3 Gold-Q",
1da177e4 452 .tuner_type = TUNER_MICROTUNE_4042FI5,
b45009b0
MCC
453 .radio_type = UNSET,
454 .tuner_addr = ADDR_UNSET,
455 .radio_addr = ADDR_UNSET,
1da177e4
LT
456 /*
457 GPIO[0] resets DT3302 DTV receiver
458 0 - reset asserted
459 1 - normal operation
460 GPIO[1] mutes analog audio output connector
461 0 - enable selected source
462 1 - mute
463 GPIO[2] selects source for analog audio output connector
464 0 - analog audio input connector on tab
465 1 - analog DAC output from CX23881 chip
466 GPIO[3] selects RF input connector on tuner module
467 0 - RF connector labeled CABLE
468 1 - RF connector labeled ANT
a82decf6
MCC
469 GPIO[4] selects high RF for QAM256 mode
470 0 - normal RF
471 1 - high RF
1da177e4
LT
472 */
473 .input = {{
474 .type = CX88_VMUX_TELEVISION,
475 .vmux = 0,
476 .gpio0 = 0x0f0d,
477 },{
478 .type = CX88_VMUX_CABLE,
479 .vmux = 0,
480 .gpio0 = 0x0f05,
481 },{
482 .type = CX88_VMUX_COMPOSITE1,
483 .vmux = 1,
484 .gpio0 = 0x0f00,
485 },{
486 .type = CX88_VMUX_SVIDEO,
487 .vmux = 2,
488 .gpio0 = 0x0f00,
489 }},
f1798495 490 .dvb = 1,
1da177e4 491 },
4ac97914 492 [CX88_BOARD_HAUPPAUGE_DVB_T1] = {
b45009b0 493 .name = "Hauppauge Nova-T DVB-T",
1da177e4 494 .tuner_type = TUNER_ABSENT,
b45009b0
MCC
495 .radio_type = UNSET,
496 .tuner_addr = ADDR_UNSET,
497 .radio_addr = ADDR_UNSET,
498 .input = {{
4ac97914
MCC
499 .type = CX88_VMUX_DVB,
500 .vmux = 0,
501 }},
1da177e4
LT
502 .dvb = 1,
503 },
4ac97914 504 [CX88_BOARD_CONEXANT_DVB_T1] = {
1da177e4
LT
505 .name = "Conexant DVB-T reference design",
506 .tuner_type = TUNER_ABSENT,
b45009b0
MCC
507 .radio_type = UNSET,
508 .tuner_addr = ADDR_UNSET,
509 .radio_addr = ADDR_UNSET,
4ac97914
MCC
510 .input = {{
511 .type = CX88_VMUX_DVB,
512 .vmux = 0,
513 }},
1da177e4
LT
514 .dvb = 1,
515 },
516 [CX88_BOARD_PROVIDEO_PV259] = {
517 .name = "Provideo PV259",
518 .tuner_type = TUNER_PHILIPS_FQ1216ME,
b45009b0
MCC
519 .radio_type = UNSET,
520 .tuner_addr = ADDR_UNSET,
521 .radio_addr = ADDR_UNSET,
1da177e4
LT
522 .input = {{
523 .type = CX88_VMUX_TELEVISION,
524 .vmux = 0,
525 }},
526 .blackbird = 1,
527 },
528 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS] = {
a82decf6 529 .name = "DViCO FusionHDTV DVB-T Plus",
1da177e4 530 .tuner_type = TUNER_ABSENT, /* No analog tuner */
b45009b0
MCC
531 .radio_type = UNSET,
532 .tuner_addr = ADDR_UNSET,
533 .radio_addr = ADDR_UNSET,
1da177e4
LT
534 .input = {{
535 .type = CX88_VMUX_COMPOSITE1,
536 .vmux = 1,
537 .gpio0 = 0x000027df,
538 },{
539 .type = CX88_VMUX_SVIDEO,
540 .vmux = 2,
541 .gpio0 = 0x000027df,
542 }},
543 .dvb = 1,
544 },
545 [CX88_BOARD_DNTV_LIVE_DVB_T] = {
4ac97914 546 .name = "digitalnow DNTV Live! DVB-T",
1da177e4 547 .tuner_type = TUNER_ABSENT,
b45009b0
MCC
548 .radio_type = UNSET,
549 .tuner_addr = ADDR_UNSET,
550 .radio_addr = ADDR_UNSET,
4ac97914 551 .input = {{
1da177e4
LT
552 .type = CX88_VMUX_COMPOSITE1,
553 .vmux = 1,
554 .gpio0 = 0x00000700,
555 .gpio2 = 0x00000101,
556 },{
557 .type = CX88_VMUX_SVIDEO,
558 .vmux = 2,
559 .gpio0 = 0x00000700,
560 .gpio2 = 0x00000101,
561 }},
562 .dvb = 1,
563 },
564 [CX88_BOARD_PCHDTV_HD3000] = {
565 .name = "pcHDTV HD3000 HDTV",
566 .tuner_type = TUNER_THOMSON_DTT7610,
b45009b0
MCC
567 .radio_type = UNSET,
568 .tuner_addr = ADDR_UNSET,
569 .radio_addr = ADDR_UNSET,
1da177e4
LT
570 .input = {{
571 .type = CX88_VMUX_TELEVISION,
572 .vmux = 0,
573 .gpio0 = 0x00008484,
574 .gpio1 = 0x00000000,
575 .gpio2 = 0x00000000,
576 .gpio3 = 0x00000000,
577 },{
578 .type = CX88_VMUX_COMPOSITE1,
579 .vmux = 1,
580 .gpio0 = 0x00008400,
581 .gpio1 = 0x00000000,
582 .gpio2 = 0x00000000,
583 .gpio3 = 0x00000000,
584 },{
585 .type = CX88_VMUX_SVIDEO,
586 .vmux = 2,
587 .gpio0 = 0x00008400,
588 .gpio1 = 0x00000000,
589 .gpio2 = 0x00000000,
590 .gpio3 = 0x00000000,
591 }},
592 .radio = {
593 .type = CX88_RADIO,
594 .vmux = 2,
595 .gpio0 = 0x00008400,
596 .gpio1 = 0x00000000,
597 .gpio2 = 0x00000000,
598 .gpio3 = 0x00000000,
599 },
600 .dvb = 1,
601 },
602 [CX88_BOARD_HAUPPAUGE_ROSLYN] = {
603 // entry added by Kaustubh D. Bhalerao <bhalerao.1@osu.edu>
604 // GPIO values obtained from regspy, courtesy Sean Covel
b45009b0
MCC
605 .name = "Hauppauge WinTV 28xxx (Roslyn) models",
606 .tuner_type = UNSET,
607 .radio_type = UNSET,
608 .tuner_addr = ADDR_UNSET,
609 .radio_addr = ADDR_UNSET,
1da177e4
LT
610 .input = {{
611 .type = CX88_VMUX_TELEVISION,
612 .vmux = 0,
e52e98a7 613 .gpio0 = 0xed12, /* internal decoder */
1da177e4
LT
614 .gpio2 = 0x00ff,
615 },{
616 .type = CX88_VMUX_DEBUG,
617 .vmux = 0,
e52e98a7 618 .gpio0 = 0xff01, /* mono from tuner chip */
1da177e4
LT
619 },{
620 .type = CX88_VMUX_COMPOSITE1,
621 .vmux = 1,
622 .gpio0 = 0xff02,
623 },{
624 .type = CX88_VMUX_SVIDEO,
625 .vmux = 2,
626 .gpio0 = 0xed92,
627 .gpio2 = 0x00ff,
628 }},
629 .radio = {
630 .type = CX88_RADIO,
631 .gpio0 = 0xed96,
632 .gpio2 = 0x00ff,
633 },
634 .blackbird = 1,
635 },
636 [CX88_BOARD_DIGITALLOGIC_MEC] = {
1da177e4 637 .name = "Digital-Logic MICROSPACE Entertainment Center (MEC)",
b45009b0
MCC
638 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
639 .radio_type = UNSET,
640 .tuner_addr = ADDR_UNSET,
641 .radio_addr = ADDR_UNSET,
1da177e4
LT
642 .tda9887_conf = TDA9887_PRESENT,
643 .input = {{
644 .type = CX88_VMUX_TELEVISION,
645 .vmux = 0,
b45009b0 646 .gpio0 = 0x00009d80,
1da177e4
LT
647 },{
648 .type = CX88_VMUX_COMPOSITE1,
649 .vmux = 1,
b45009b0 650 .gpio0 = 0x00009d76,
1da177e4
LT
651 },{
652 .type = CX88_VMUX_SVIDEO,
653 .vmux = 2,
b45009b0 654 .gpio0 = 0x00009d76,
1da177e4
LT
655 }},
656 .radio = {
657 .type = CX88_RADIO,
b45009b0 658 .gpio0 = 0x00009d00,
1da177e4
LT
659 },
660 .blackbird = 1,
661 },
662 [CX88_BOARD_IODATA_GVBCTV7E] = {
663 .name = "IODATA GV/BCTV7E",
664 .tuner_type = TUNER_PHILIPS_FQ1286,
b45009b0
MCC
665 .radio_type = UNSET,
666 .tuner_addr = ADDR_UNSET,
667 .radio_addr = ADDR_UNSET,
1da177e4
LT
668 .tda9887_conf = TDA9887_PRESENT,
669 .input = {{
670 .type = CX88_VMUX_TELEVISION,
671 .vmux = 1,
672 .gpio1 = 0x0000e03f,
673 },{
674 .type = CX88_VMUX_COMPOSITE1,
675 .vmux = 2,
676 .gpio1 = 0x0000e07f,
677 },{
678 .type = CX88_VMUX_SVIDEO,
679 .vmux = 3,
680 .gpio1 = 0x0000e07f,
681 }}
682 },
239df2e2
MC
683 [CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO] = {
684 .name = "PixelView PlayTV Ultra Pro (Stereo)",
b45009b0
MCC
685 /* May be also TUNER_YMEC_TVF_5533MF for NTSC/M or PAL/M */
686 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
c5287ba1
MCC
687 .radio_type = UNSET,
688 .tuner_addr = ADDR_UNSET,
689 .radio_addr = ADDR_UNSET,
239df2e2
MC
690 .input = {{
691 .type = CX88_VMUX_TELEVISION,
692 .vmux = 0,
b45009b0 693 .gpio0 = 0xbf61, /* internal decoder */
239df2e2
MC
694 },{
695 .type = CX88_VMUX_COMPOSITE1,
696 .vmux = 1,
b45009b0 697 .gpio0 = 0xbf63,
239df2e2
MC
698 },{
699 .type = CX88_VMUX_SVIDEO,
700 .vmux = 2,
b45009b0 701 .gpio0 = 0xbf63,
239df2e2
MC
702 }},
703 .radio = {
b45009b0
MCC
704 .type = CX88_RADIO,
705 .gpio0 = 0xbf60,
706 },
239df2e2 707 },
4ac97914 708 [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = {
a82decf6 709 .name = "DViCO FusionHDTV 3 Gold-T",
b45009b0
MCC
710 .tuner_type = TUNER_THOMSON_DTT7611,
711 .radio_type = UNSET,
712 .tuner_addr = ADDR_UNSET,
713 .radio_addr = ADDR_UNSET,
a82decf6 714 .input = {{
4ac97914
MCC
715 .type = CX88_VMUX_TELEVISION,
716 .vmux = 0,
717 .gpio0 = 0x97ed,
718 },{
719 .type = CX88_VMUX_COMPOSITE1,
720 .vmux = 1,
721 .gpio0 = 0x97e9,
722 },{
723 .type = CX88_VMUX_SVIDEO,
724 .vmux = 2,
725 .gpio0 = 0x97e9,
726 }},
0d723c09 727 .dvb = 1,
4ac97914
MCC
728 },
729 [CX88_BOARD_ADSTECH_DVB_T_PCI] = {
730 .name = "ADS Tech Instant TV DVB-T PCI",
a82decf6
MCC
731 .tuner_type = TUNER_ABSENT,
732 .radio_type = UNSET,
733 .tuner_addr = ADDR_UNSET,
734 .radio_addr = ADDR_UNSET,
735 .input = {{
4ac97914
MCC
736 .type = CX88_VMUX_COMPOSITE1,
737 .vmux = 1,
a82decf6
MCC
738 .gpio0 = 0x0700,
739 .gpio2 = 0x0101,
4ac97914
MCC
740 },{
741 .type = CX88_VMUX_SVIDEO,
742 .vmux = 2,
a82decf6
MCC
743 .gpio0 = 0x0700,
744 .gpio2 = 0x0101,
4ac97914 745 }},
a82decf6
MCC
746 .dvb = 1,
747 },
e057ee11
MK
748 [CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1] = {
749 .name = "TerraTec Cinergy 1400 DVB-T",
750 .tuner_type = TUNER_ABSENT,
751 .input = {{
752 .type = CX88_VMUX_DVB,
753 .vmux = 0,
754 }},
755 .dvb = 1,
756 },
9fef07ca
MK
757 [CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD] = {
758 .name = "DViCO FusionHDTV 5 Gold",
759 .tuner_type = TUNER_LG_TDVS_H062F,
760 .radio_type = UNSET,
761 .tuner_addr = ADDR_UNSET,
762 .radio_addr = ADDR_UNSET,
e52e98a7 763 .tda9887_conf = TDA9887_PRESENT,
9fef07ca 764 .input = {{
4ac97914
MCC
765 .type = CX88_VMUX_TELEVISION,
766 .vmux = 0,
767 .gpio0 = 0x87fd,
768 },{
769 .type = CX88_VMUX_COMPOSITE1,
770 .vmux = 1,
771 .gpio0 = 0x87f9,
772 },{
773 .type = CX88_VMUX_SVIDEO,
774 .vmux = 2,
775 .gpio0 = 0x87f9,
776 }},
e52e98a7 777 .dvb = 1,
9fef07ca 778 },
d45170ed
NS
779 [CX88_BOARD_AVERMEDIA_ULTRATV_MC_550] = {
780 .name = "AverMedia UltraTV Media Center PCI 550",
781 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
782 .radio_type = UNSET,
783 .tuner_addr = ADDR_UNSET,
784 .radio_addr = ADDR_UNSET,
785 .tda9887_conf = TDA9887_PRESENT,
786 .blackbird = 1,
787 .input = {{
788 .type = CX88_VMUX_COMPOSITE1,
789 .vmux = 0,
790 .gpio0 = 0x0000cd73,
791 },{
792 .type = CX88_VMUX_SVIDEO,
793 .vmux = 1,
794 .gpio0 = 0x0000cd73,
795 },{
796 .type = CX88_VMUX_TELEVISION,
797 .vmux = 3,
798 .gpio0 = 0x0000cdb3,
799 }},
800 .radio = {
801 .type = CX88_RADIO,
802 .vmux = 2,
803 .gpio0 = 0x0000cdf3,
804 },
805 },
0bcc37c3
AW
806 [CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD] = {
807 /* Alexander Wold <awold@bigfoot.com> */
4ac97914
MCC
808 .name = "Kworld V-Stream Xpert DVD",
809 .tuner_type = UNSET,
810 .input = {{
811 .type = CX88_VMUX_COMPOSITE1,
812 .vmux = 1,
813 .gpio0 = 0x03000000,
0bcc37c3
AW
814 .gpio1 = 0x01000000,
815 .gpio2 = 0x02000000,
816 .gpio3 = 0x00100000,
4ac97914
MCC
817 },{
818 .type = CX88_VMUX_SVIDEO,
819 .vmux = 2,
820 .gpio0 = 0x03000000,
821 .gpio1 = 0x01000000,
822 .gpio2 = 0x02000000,
823 .gpio3 = 0x00100000,
824 }},
0bcc37c3 825 },
e976f937
KL
826 [CX88_BOARD_ATI_HDTVWONDER] = {
827 .name = "ATI HDTV Wonder",
828 .tuner_type = TUNER_PHILIPS_TUV1236D,
829 .radio_type = UNSET,
830 .tuner_addr = ADDR_UNSET,
831 .radio_addr = ADDR_UNSET,
832 .input = {{
833 .type = CX88_VMUX_TELEVISION,
834 .vmux = 0,
835 .gpio0 = 0x00000ff7,
836 .gpio1 = 0x000000ff,
837 .gpio2 = 0x00000001,
838 .gpio3 = 0x00000000,
839 },{
840 .type = CX88_VMUX_COMPOSITE1,
841 .vmux = 1,
842 .gpio0 = 0x00000ffe,
843 .gpio1 = 0x000000ff,
844 .gpio2 = 0x00000001,
845 .gpio3 = 0x00000000,
846 },{
847 .type = CX88_VMUX_SVIDEO,
848 .vmux = 2,
849 .gpio0 = 0x00000ffe,
850 .gpio1 = 0x000000ff,
851 .gpio2 = 0x00000001,
852 .gpio3 = 0x00000000,
853 }},
fde6d31e 854 .dvb = 1,
e976f937 855 },
2b5200a7
DS
856 [CX88_BOARD_WINFAST_DTV1000] = {
857 .name = "WinFast DTV1000-T",
858 .tuner_type = TUNER_ABSENT,
859 .radio_type = UNSET,
860 .tuner_addr = ADDR_UNSET,
861 .radio_addr = ADDR_UNSET,
862 .input = {{
863 .type = CX88_VMUX_DVB,
864 .vmux = 0,
865 }},
866 .dvb = 1,
867 },
1da177e4
LT
868};
869const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards);
870
871/* ------------------------------------------------------------------ */
872/* PCI subsystem IDs */
873
874struct cx88_subid cx88_subids[] = {
875 {
876 .subvendor = 0x0070,
877 .subdevice = 0x3400,
878 .card = CX88_BOARD_HAUPPAUGE,
879 },{
880 .subvendor = 0x0070,
881 .subdevice = 0x3401,
882 .card = CX88_BOARD_HAUPPAUGE,
883 },{
884 .subvendor = 0x14c7,
885 .subdevice = 0x0106,
886 .card = CX88_BOARD_GDI,
887 },{
888 .subvendor = 0x14c7,
889 .subdevice = 0x0107, /* with mpeg encoder */
890 .card = CX88_BOARD_GDI,
891 },{
892 .subvendor = PCI_VENDOR_ID_ATI,
893 .subdevice = 0x00f8,
894 .card = CX88_BOARD_ATI_WONDER_PRO,
895 },{
4ac97914
MCC
896 .subvendor = 0x107d,
897 .subdevice = 0x6611,
898 .card = CX88_BOARD_WINFAST2000XP_EXPERT,
899 },{
900 .subvendor = 0x107d,
901 .subdevice = 0x6613, /* NTSC */
902 .card = CX88_BOARD_WINFAST2000XP_EXPERT,
903 },{
904 .subvendor = 0x107d,
905 .subdevice = 0x6620,
906 .card = CX88_BOARD_WINFAST_DV2000,
1da177e4 907 },{
4ac97914
MCC
908 .subvendor = 0x107d,
909 .subdevice = 0x663b,
910 .card = CX88_BOARD_LEADTEK_PVR2000,
1da177e4
LT
911 },{
912 .subvendor = 0x107d,
4ac97914
MCC
913 .subdevice = 0x663C,
914 .card = CX88_BOARD_LEADTEK_PVR2000,
915 },{
1da177e4
LT
916 .subvendor = 0x1461,
917 .subdevice = 0x000b,
918 .card = CX88_BOARD_AVERTV_303,
919 },{
920 .subvendor = 0x1462,
921 .subdevice = 0x8606,
922 .card = CX88_BOARD_MSI_TVANYWHERE_MASTER,
923 },{
4ac97914
MCC
924 .subvendor = 0x10fc,
925 .subdevice = 0xd003,
926 .card = CX88_BOARD_IODATA_GVVCP3PCI,
1da177e4 927 },{
4ac97914
MCC
928 .subvendor = 0x1043,
929 .subdevice = 0x4823, /* with mpeg encoder */
930 .card = CX88_BOARD_ASUS_PVR_416,
1da177e4
LT
931 },{
932 .subvendor = 0x17de,
933 .subdevice = 0x08a6,
934 .card = CX88_BOARD_KWORLD_DVB_T,
935 },{
936 .subvendor = 0x18ac,
937 .subdevice = 0xd810,
a82decf6 938 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
097b750e
MK
939 },{
940 .subvendor = 0x18ac,
941 .subdevice = 0xd820,
80d34362 942 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T,
1da177e4 943 },{
7df64e8c
MK
944 .subvendor = 0x18ac,
945 .subdevice = 0xdb00,
1da177e4 946 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1,
4ac97914 947 },{
1da177e4
LT
948 .subvendor = 0x0070,
949 .subdevice = 0x9002,
950 .card = CX88_BOARD_HAUPPAUGE_DVB_T1,
4ac97914 951 },{
1da177e4
LT
952 .subvendor = 0x14f1,
953 .subdevice = 0x0187,
954 .card = CX88_BOARD_CONEXANT_DVB_T1,
4ac97914 955 },{
1da177e4
LT
956 .subvendor = 0x1540,
957 .subdevice = 0x2580,
958 .card = CX88_BOARD_PROVIDEO_PV259,
959 },{
7df64e8c
MK
960 .subvendor = 0x18ac,
961 .subdevice = 0xdb10,
1da177e4
LT
962 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
963 },{
4ac97914
MCC
964 .subvendor = 0x1554,
965 .subdevice = 0x4811,
966 .card = CX88_BOARD_PIXELVIEW,
1da177e4
LT
967 },{
968 .subvendor = 0x7063,
969 .subdevice = 0x3000, /* HD-3000 card */
970 .card = CX88_BOARD_PCHDTV_HD3000,
971 },{
7df64e8c
MK
972 .subvendor = 0x17de,
973 .subdevice = 0xa8a6,
1da177e4
LT
974 .card = CX88_BOARD_DNTV_LIVE_DVB_T,
975 },{
976 .subvendor = 0x0070,
977 .subdevice = 0x2801,
978 .card = CX88_BOARD_HAUPPAUGE_ROSLYN,
979 },{
7df64e8c 980 .subvendor = 0x14f1,
1da177e4
LT
981 .subdevice = 0x0342,
982 .card = CX88_BOARD_DIGITALLOGIC_MEC,
983 },{
984 .subvendor = 0x10fc,
985 .subdevice = 0xd035,
986 .card = CX88_BOARD_IODATA_GVBCTV7E,
a82decf6
MCC
987 },{
988 .subvendor = 0x1421,
989 .subdevice = 0x0334,
990 .card = CX88_BOARD_ADSTECH_DVB_T_PCI,
4ac97914 991 },{
e057ee11
MK
992 .subvendor = 0x153b,
993 .subdevice = 0x1166,
994 .card = CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1,
4ac97914 995 },{
9fef07ca
MK
996 .subvendor = 0x18ac,
997 .subdevice = 0xd500,
998 .card = CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD,
4ac97914 999 },{
d45170ed
NS
1000 .subvendor = 0x1461,
1001 .subdevice = 0x8011,
1002 .card = CX88_BOARD_AVERMEDIA_ULTRATV_MC_550,
4ac97914 1003 },{
e976f937
KL
1004 .subvendor = PCI_VENDOR_ID_ATI,
1005 .subdevice = 0xa101,
1006 .card = CX88_BOARD_ATI_HDTVWONDER,
4ac97914 1007 },{
2b5200a7
DS
1008 .subvendor = 0x107d,
1009 .subdevice = 0x665f,
1010 .card = CX88_BOARD_WINFAST_DTV1000,
a82decf6 1011 },
1da177e4
LT
1012};
1013const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids);
1014
1015/* ----------------------------------------------------------------------- */
1016/* some leadtek specific stuff */
1017
1018static void __devinit leadtek_eeprom(struct cx88_core *core, u8 *eeprom_data)
1019{
1020 /* This is just for the "Winfast 2000XP Expert" board ATM; I don't have data on
1021 * any others.
1022 *
1023 * Byte 0 is 1 on the NTSC board.
1024 */
1025
1026 if (eeprom_data[4] != 0x7d ||
1027 eeprom_data[5] != 0x10 ||
1028 eeprom_data[7] != 0x66) {
1029 printk(KERN_WARNING "%s: Leadtek eeprom invalid.\n",
1030 core->name);
1031 return;
1032 }
1033
1034 core->has_radio = 1;
1035 core->tuner_type = (eeprom_data[6] == 0x13) ? 43 : 38;
1036
1037 printk(KERN_INFO "%s: Leadtek Winfast 2000XP Expert config: "
1038 "tuner=%d, eeprom[0]=0x%02x\n",
1039 core->name, core->tuner_type, eeprom_data[0]);
1040}
1041
1042
1043/* ----------------------------------------------------------------------- */
1044
1045static void hauppauge_eeprom(struct cx88_core *core, u8 *eeprom_data)
1046{
1047 struct tveeprom tv;
1048
0f97a931 1049 tveeprom_hauppauge_analog(&core->i2c_client, &tv, eeprom_data);
1da177e4
LT
1050 core->tuner_type = tv.tuner_type;
1051 core->has_radio = tv.has_radio;
1052}
1053
1054static int hauppauge_eeprom_dvb(struct cx88_core *core, u8 *ee)
1055{
1056 int model;
1057 int tuner;
1058
1059 /* Make sure we support the board model */
1060 model = ee[0x1f] << 24 | ee[0x1e] << 16 | ee[0x1d] << 8 | ee[0x1c];
1061 switch(model) {
1062 case 90002:
1063 case 90500:
1064 case 90501:
1065 /* known */
1066 break;
1067 default:
1068 printk("%s: warning: unknown hauppauge model #%d\n",
1069 core->name, model);
1070 break;
1071 }
1072
1073 /* Make sure we support the tuner */
1074 tuner = ee[0x2d];
1075 switch(tuner) {
1076 case 0x4B: /* dtt 7595 */
1077 case 0x4C: /* dtt 7592 */
1078 break;
1079 default:
1080 printk("%s: error: unknown hauppauge tuner 0x%02x\n",
1081 core->name, tuner);
1082 return -ENODEV;
1083 }
1084 printk(KERN_INFO "%s: hauppauge eeprom: model=%d, tuner=%d\n",
1085 core->name, model, tuner);
1086 return 0;
1087}
1088
1089/* ----------------------------------------------------------------------- */
1090/* some GDI (was: Modular Technology) specific stuff */
1091
1092static struct {
1093 int id;
1094 int fm;
1095 char *name;
1096} gdi_tuner[] = {
1097 [ 0x01 ] = { .id = TUNER_ABSENT,
1098 .name = "NTSC_M" },
1099 [ 0x02 ] = { .id = TUNER_ABSENT,
1100 .name = "PAL_B" },
1101 [ 0x03 ] = { .id = TUNER_ABSENT,
1102 .name = "PAL_I" },
1103 [ 0x04 ] = { .id = TUNER_ABSENT,
1104 .name = "PAL_D" },
1105 [ 0x05 ] = { .id = TUNER_ABSENT,
1106 .name = "SECAM" },
1107
1108 [ 0x10 ] = { .id = TUNER_ABSENT,
1109 .fm = 1,
1110 .name = "TEMIC_4049" },
1111 [ 0x11 ] = { .id = TUNER_TEMIC_4136FY5,
1112 .name = "TEMIC_4136" },
1113 [ 0x12 ] = { .id = TUNER_ABSENT,
1114 .name = "TEMIC_4146" },
1115
1116 [ 0x20 ] = { .id = TUNER_PHILIPS_FQ1216ME,
1117 .fm = 1,
1118 .name = "PHILIPS_FQ1216_MK3" },
1119 [ 0x21 ] = { .id = TUNER_ABSENT, .fm = 1,
1120 .name = "PHILIPS_FQ1236_MK3" },
1121 [ 0x22 ] = { .id = TUNER_ABSENT,
1122 .name = "PHILIPS_FI1236_MK3" },
1123 [ 0x23 ] = { .id = TUNER_ABSENT,
1124 .name = "PHILIPS_FI1216_MK3" },
1125};
1126
1127static void gdi_eeprom(struct cx88_core *core, u8 *eeprom_data)
1128{
1129 char *name = (eeprom_data[0x0d] < ARRAY_SIZE(gdi_tuner))
1130 ? gdi_tuner[eeprom_data[0x0d]].name : NULL;
1131
1132 printk(KERN_INFO "%s: GDI: tuner=%s\n", core->name,
1133 name ? name : "unknown");
1134 if (NULL == name)
1135 return;
1136 core->tuner_type = gdi_tuner[eeprom_data[0x0d]].id;
1137 core->has_radio = gdi_tuner[eeprom_data[0x0d]].fm;
1138}
1139
1140/* ----------------------------------------------------------------------- */
1141
1142void cx88_card_list(struct cx88_core *core, struct pci_dev *pci)
1143{
1144 int i;
1145
1146 if (0 == pci->subsystem_vendor &&
1147 0 == pci->subsystem_device) {
1148 printk("%s: Your board has no valid PCI Subsystem ID and thus can't\n"
1149 "%s: be autodetected. Please pass card=<n> insmod option to\n"
1150 "%s: workaround that. Redirect complaints to the vendor of\n"
1151 "%s: the TV card. Best regards,\n"
1152 "%s: -- tux\n",
1153 core->name,core->name,core->name,core->name,core->name);
1154 } else {
1155 printk("%s: Your board isn't known (yet) to the driver. You can\n"
1156 "%s: try to pick one of the existing card configs via\n"
1157 "%s: card=<n> insmod option. Updating to the latest\n"
1158 "%s: version might help as well.\n",
1159 core->name,core->name,core->name,core->name);
1160 }
1161 printk("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
1162 core->name);
1163 for (i = 0; i < cx88_bcount; i++)
1164 printk("%s: card=%d -> %s\n",
1165 core->name, i, cx88_boards[i].name);
1166}
1167
1168void cx88_card_setup(struct cx88_core *core)
1169{
1170 static u8 eeprom[128];
1171
1172 if (0 == core->i2c_rc) {
1173 core->i2c_client.addr = 0xa0 >> 1;
1174 tveeprom_read(&core->i2c_client,eeprom,sizeof(eeprom));
1175 }
1176
1177 switch (core->board) {
1178 case CX88_BOARD_HAUPPAUGE:
1179 case CX88_BOARD_HAUPPAUGE_ROSLYN:
1180 if (0 == core->i2c_rc)
1181 hauppauge_eeprom(core,eeprom+8);
1182 break;
1183 case CX88_BOARD_GDI:
1184 if (0 == core->i2c_rc)
1185 gdi_eeprom(core,eeprom);
1186 break;
1187 case CX88_BOARD_WINFAST2000XP_EXPERT:
1188 if (0 == core->i2c_rc)
1189 leadtek_eeprom(core,eeprom);
1190 break;
1191 case CX88_BOARD_HAUPPAUGE_DVB_T1:
1192 if (0 == core->i2c_rc)
1193 hauppauge_eeprom_dvb(core,eeprom);
1194 break;
1195 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
1196 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
1197 /* GPIO0:0 is hooked to mt352 reset pin */
1198 cx_set(MO_GP0_IO, 0x00000101);
1199 cx_clear(MO_GP0_IO, 0x00000001);
1200 msleep(1);
1201 cx_set(MO_GP0_IO, 0x00000101);
1202 break;
1203 case CX88_BOARD_KWORLD_DVB_T:
1204 case CX88_BOARD_DNTV_LIVE_DVB_T:
1205 cx_set(MO_GP0_IO, 0x00000707);
1206 cx_set(MO_GP2_IO, 0x00000101);
1207 cx_clear(MO_GP2_IO, 0x00000001);
1208 msleep(1);
1209 cx_clear(MO_GP0_IO, 0x00000007);
1210 cx_set(MO_GP2_IO, 0x00000101);
1211 break;
e976f937
KL
1212 case CX88_BOARD_ATI_HDTVWONDER:
1213 if (0 == core->i2c_rc) {
1214 /* enable tuner */
1215 int i;
fde6d31e 1216 u8 buffer [] = { 0x10,0x12,0x13,0x04,0x16,0x00,0x14,0x04,0x017,0x00 };
e976f937 1217 core->i2c_client.addr = 0x0a;
e976f937 1218
fde6d31e 1219 for (i = 0; i < 5; i++)
e976f937
KL
1220 if (2 != i2c_master_send(&core->i2c_client,&buffer[i*2],2))
1221 printk(KERN_WARNING "%s: Unable to enable tuner(%i).\n",
1222 core->name, i);
1223 }
1224 break;
1da177e4
LT
1225 }
1226 if (cx88_boards[core->board].radio.type == CX88_RADIO)
1227 core->has_radio = 1;
1228}
1229
1230/* ------------------------------------------------------------------ */
1231
1232EXPORT_SYMBOL(cx88_boards);
1233EXPORT_SYMBOL(cx88_bcount);
1234EXPORT_SYMBOL(cx88_subids);
1235EXPORT_SYMBOL(cx88_idcount);
1236EXPORT_SYMBOL(cx88_card_list);
1237EXPORT_SYMBOL(cx88_card_setup);
1238
1239/*
1240 * Local variables:
1241 * c-basic-offset: 8
1242 * End:
b45009b0 1243 * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off
1da177e4 1244 */