init from v2.6.32.60
[mach-moxart.git] / drivers / media / common / tuners / tuner-types.c
blob2b876f3988c1f2a256525c7a0313b35466e6549e
1 /*
3 * i2c tv tuner chip device type database.
5 */
7 #include <linux/i2c.h>
8 #include <media/tuner.h>
9 #include <media/tuner-types.h>
11 /* ---------------------------------------------------------------------- */
14 * The floats in the tuner struct are computed at compile time
15 * by gcc and cast back to integers. Thus we don't violate the
16 * "no float in kernel" rule.
18 * A tuner_range may be referenced by multiple tuner_params structs.
19 * There are many duplicates in here. Reusing tuner_range structs,
20 * rather than defining new ones for each tuner, will cut down on
21 * memory usage, and is preferred when possible.
23 * Each tuner_params array may contain one or more elements, one
24 * for each video standard.
26 * FIXME: tuner_params struct contains an element, tda988x. We must
27 * set this for all tuners that contain a tda988x chip, and then we
28 * can remove this setting from the various card structs.
30 * FIXME: Right now, all tuners are using the first tuner_params[]
31 * array element for analog mode. In the future, we will be merging
32 * similar tuner definitions together, such that each tuner definition
33 * will have a tuner_params struct for each available video standard.
34 * At that point, the tuner_params[] array element will be chosen
35 * based on the video standard in use.
38 /* The following was taken from dvb-pll.c: */
40 /* Set AGC TOP value to 103 dBuV:
41 * 0x80 = Control Byte
42 * 0x40 = 250 uA charge pump (irrelevant)
43 * 0x18 = Aux Byte to follow
44 * 0x06 = 64.5 kHz divider (irrelevant)
45 * 0x01 = Disable Vt (aka sleep)
47 * 0x00 = AGC Time constant 2s Iagc = 300 nA (vs 0x80 = 9 nA)
48 * 0x50 = AGC Take over point = 103 dBuV
50 static u8 tua603x_agc103[] = { 2, 0x80|0x40|0x18|0x06|0x01, 0x00|0x50 };
52 /* 0x04 = 166.67 kHz divider
54 * 0x80 = AGC Time constant 50ms Iagc = 9 uA
55 * 0x20 = AGC Take over point = 112 dBuV
57 static u8 tua603x_agc112[] = { 2, 0x80|0x40|0x18|0x04|0x01, 0x80|0x20 };
59 /* 0-9 */
60 /* ------------ TUNER_TEMIC_PAL - TEMIC PAL ------------ */
62 static struct tuner_range tuner_temic_pal_ranges[] = {
63 { 16 * 140.25 /*MHz*/, 0x8e, 0x02, },
64 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
65 { 16 * 999.99 , 0x8e, 0x01, },
68 static struct tuner_params tuner_temic_pal_params[] = {
70 .type = TUNER_PARAM_TYPE_PAL,
71 .ranges = tuner_temic_pal_ranges,
72 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
76 /* ------------ TUNER_PHILIPS_PAL_I - Philips PAL_I ------------ */
78 static struct tuner_range tuner_philips_pal_i_ranges[] = {
79 { 16 * 140.25 /*MHz*/, 0x8e, 0xa0, },
80 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
81 { 16 * 999.99 , 0x8e, 0x30, },
84 static struct tuner_params tuner_philips_pal_i_params[] = {
86 .type = TUNER_PARAM_TYPE_PAL,
87 .ranges = tuner_philips_pal_i_ranges,
88 .count = ARRAY_SIZE(tuner_philips_pal_i_ranges),
92 /* ------------ TUNER_PHILIPS_NTSC - Philips NTSC ------------ */
94 static struct tuner_range tuner_philips_ntsc_ranges[] = {
95 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
96 { 16 * 451.25 /*MHz*/, 0x8e, 0x90, },
97 { 16 * 999.99 , 0x8e, 0x30, },
100 static struct tuner_params tuner_philips_ntsc_params[] = {
102 .type = TUNER_PARAM_TYPE_NTSC,
103 .ranges = tuner_philips_ntsc_ranges,
104 .count = ARRAY_SIZE(tuner_philips_ntsc_ranges),
105 .cb_first_if_lower_freq = 1,
109 /* ------------ TUNER_PHILIPS_SECAM - Philips SECAM ------------ */
111 static struct tuner_range tuner_philips_secam_ranges[] = {
112 { 16 * 168.25 /*MHz*/, 0x8e, 0xa7, },
113 { 16 * 447.25 /*MHz*/, 0x8e, 0x97, },
114 { 16 * 999.99 , 0x8e, 0x37, },
117 static struct tuner_params tuner_philips_secam_params[] = {
119 .type = TUNER_PARAM_TYPE_SECAM,
120 .ranges = tuner_philips_secam_ranges,
121 .count = ARRAY_SIZE(tuner_philips_secam_ranges),
122 .cb_first_if_lower_freq = 1,
126 /* ------------ TUNER_PHILIPS_PAL - Philips PAL ------------ */
128 static struct tuner_range tuner_philips_pal_ranges[] = {
129 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
130 { 16 * 447.25 /*MHz*/, 0x8e, 0x90, },
131 { 16 * 999.99 , 0x8e, 0x30, },
134 static struct tuner_params tuner_philips_pal_params[] = {
136 .type = TUNER_PARAM_TYPE_PAL,
137 .ranges = tuner_philips_pal_ranges,
138 .count = ARRAY_SIZE(tuner_philips_pal_ranges),
139 .cb_first_if_lower_freq = 1,
143 /* ------------ TUNER_TEMIC_NTSC - TEMIC NTSC ------------ */
145 static struct tuner_range tuner_temic_ntsc_ranges[] = {
146 { 16 * 157.25 /*MHz*/, 0x8e, 0x02, },
147 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
148 { 16 * 999.99 , 0x8e, 0x01, },
151 static struct tuner_params tuner_temic_ntsc_params[] = {
153 .type = TUNER_PARAM_TYPE_NTSC,
154 .ranges = tuner_temic_ntsc_ranges,
155 .count = ARRAY_SIZE(tuner_temic_ntsc_ranges),
159 /* ------------ TUNER_TEMIC_PAL_I - TEMIC PAL_I ------------ */
161 static struct tuner_range tuner_temic_pal_i_ranges[] = {
162 { 16 * 170.00 /*MHz*/, 0x8e, 0x02, },
163 { 16 * 450.00 /*MHz*/, 0x8e, 0x04, },
164 { 16 * 999.99 , 0x8e, 0x01, },
167 static struct tuner_params tuner_temic_pal_i_params[] = {
169 .type = TUNER_PARAM_TYPE_PAL,
170 .ranges = tuner_temic_pal_i_ranges,
171 .count = ARRAY_SIZE(tuner_temic_pal_i_ranges),
175 /* ------------ TUNER_TEMIC_4036FY5_NTSC - TEMIC NTSC ------------ */
177 static struct tuner_range tuner_temic_4036fy5_ntsc_ranges[] = {
178 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
179 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
180 { 16 * 999.99 , 0x8e, 0x30, },
183 static struct tuner_params tuner_temic_4036fy5_ntsc_params[] = {
185 .type = TUNER_PARAM_TYPE_NTSC,
186 .ranges = tuner_temic_4036fy5_ntsc_ranges,
187 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_ranges),
191 /* ------------ TUNER_ALPS_TSBH1_NTSC - TEMIC NTSC ------------ */
193 static struct tuner_range tuner_alps_tsb_1_ranges[] = {
194 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
195 { 16 * 385.25 /*MHz*/, 0x8e, 0x02, },
196 { 16 * 999.99 , 0x8e, 0x08, },
199 static struct tuner_params tuner_alps_tsbh1_ntsc_params[] = {
201 .type = TUNER_PARAM_TYPE_NTSC,
202 .ranges = tuner_alps_tsb_1_ranges,
203 .count = ARRAY_SIZE(tuner_alps_tsb_1_ranges),
207 /* 10-19 */
208 /* ------------ TUNER_ALPS_TSBE1_PAL - TEMIC PAL ------------ */
210 static struct tuner_params tuner_alps_tsb_1_params[] = {
212 .type = TUNER_PARAM_TYPE_PAL,
213 .ranges = tuner_alps_tsb_1_ranges,
214 .count = ARRAY_SIZE(tuner_alps_tsb_1_ranges),
218 /* ------------ TUNER_ALPS_TSBB5_PAL_I - Alps PAL_I ------------ */
220 static struct tuner_range tuner_alps_tsb_5_pal_ranges[] = {
221 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, },
222 { 16 * 351.25 /*MHz*/, 0x8e, 0x02, },
223 { 16 * 999.99 , 0x8e, 0x08, },
226 static struct tuner_params tuner_alps_tsbb5_params[] = {
228 .type = TUNER_PARAM_TYPE_PAL,
229 .ranges = tuner_alps_tsb_5_pal_ranges,
230 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
234 /* ------------ TUNER_ALPS_TSBE5_PAL - Alps PAL ------------ */
236 static struct tuner_params tuner_alps_tsbe5_params[] = {
238 .type = TUNER_PARAM_TYPE_PAL,
239 .ranges = tuner_alps_tsb_5_pal_ranges,
240 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
244 /* ------------ TUNER_ALPS_TSBC5_PAL - Alps PAL ------------ */
246 static struct tuner_params tuner_alps_tsbc5_params[] = {
248 .type = TUNER_PARAM_TYPE_PAL,
249 .ranges = tuner_alps_tsb_5_pal_ranges,
250 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
254 /* ------------ TUNER_TEMIC_4006FH5_PAL - TEMIC PAL ------------ */
256 static struct tuner_range tuner_lg_pal_ranges[] = {
257 { 16 * 170.00 /*MHz*/, 0x8e, 0xa0, },
258 { 16 * 450.00 /*MHz*/, 0x8e, 0x90, },
259 { 16 * 999.99 , 0x8e, 0x30, },
262 static struct tuner_params tuner_temic_4006fh5_params[] = {
264 .type = TUNER_PARAM_TYPE_PAL,
265 .ranges = tuner_lg_pal_ranges,
266 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
270 /* ------------ TUNER_ALPS_TSHC6_NTSC - Alps NTSC ------------ */
272 static struct tuner_range tuner_alps_tshc6_ntsc_ranges[] = {
273 { 16 * 137.25 /*MHz*/, 0x8e, 0x14, },
274 { 16 * 385.25 /*MHz*/, 0x8e, 0x12, },
275 { 16 * 999.99 , 0x8e, 0x11, },
278 static struct tuner_params tuner_alps_tshc6_params[] = {
280 .type = TUNER_PARAM_TYPE_NTSC,
281 .ranges = tuner_alps_tshc6_ntsc_ranges,
282 .count = ARRAY_SIZE(tuner_alps_tshc6_ntsc_ranges),
286 /* ------------ TUNER_TEMIC_PAL_DK - TEMIC PAL ------------ */
288 static struct tuner_range tuner_temic_pal_dk_ranges[] = {
289 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
290 { 16 * 456.25 /*MHz*/, 0x8e, 0x90, },
291 { 16 * 999.99 , 0x8e, 0x30, },
294 static struct tuner_params tuner_temic_pal_dk_params[] = {
296 .type = TUNER_PARAM_TYPE_PAL,
297 .ranges = tuner_temic_pal_dk_ranges,
298 .count = ARRAY_SIZE(tuner_temic_pal_dk_ranges),
302 /* ------------ TUNER_PHILIPS_NTSC_M - Philips NTSC ------------ */
304 static struct tuner_range tuner_philips_ntsc_m_ranges[] = {
305 { 16 * 160.00 /*MHz*/, 0x8e, 0xa0, },
306 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
307 { 16 * 999.99 , 0x8e, 0x30, },
310 static struct tuner_params tuner_philips_ntsc_m_params[] = {
312 .type = TUNER_PARAM_TYPE_NTSC,
313 .ranges = tuner_philips_ntsc_m_ranges,
314 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
318 /* ------------ TUNER_TEMIC_4066FY5_PAL_I - TEMIC PAL_I ------------ */
320 static struct tuner_range tuner_temic_40x6f_5_pal_ranges[] = {
321 { 16 * 169.00 /*MHz*/, 0x8e, 0xa0, },
322 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
323 { 16 * 999.99 , 0x8e, 0x30, },
326 static struct tuner_params tuner_temic_4066fy5_pal_i_params[] = {
328 .type = TUNER_PARAM_TYPE_PAL,
329 .ranges = tuner_temic_40x6f_5_pal_ranges,
330 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
334 /* ------------ TUNER_TEMIC_4006FN5_MULTI_PAL - TEMIC PAL ------------ */
336 static struct tuner_params tuner_temic_4006fn5_multi_params[] = {
338 .type = TUNER_PARAM_TYPE_PAL,
339 .ranges = tuner_temic_40x6f_5_pal_ranges,
340 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
344 /* 20-29 */
345 /* ------------ TUNER_TEMIC_4009FR5_PAL - TEMIC PAL ------------ */
347 static struct tuner_range tuner_temic_4009f_5_pal_ranges[] = {
348 { 16 * 141.00 /*MHz*/, 0x8e, 0xa0, },
349 { 16 * 464.00 /*MHz*/, 0x8e, 0x90, },
350 { 16 * 999.99 , 0x8e, 0x30, },
353 static struct tuner_params tuner_temic_4009f_5_params[] = {
355 .type = TUNER_PARAM_TYPE_PAL,
356 .ranges = tuner_temic_4009f_5_pal_ranges,
357 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
361 /* ------------ TUNER_TEMIC_4039FR5_NTSC - TEMIC NTSC ------------ */
363 static struct tuner_range tuner_temic_4x3x_f_5_ntsc_ranges[] = {
364 { 16 * 158.00 /*MHz*/, 0x8e, 0xa0, },
365 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
366 { 16 * 999.99 , 0x8e, 0x30, },
369 static struct tuner_params tuner_temic_4039fr5_params[] = {
371 .type = TUNER_PARAM_TYPE_NTSC,
372 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
373 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
377 /* ------------ TUNER_TEMIC_4046FM5 - TEMIC PAL ------------ */
379 static struct tuner_params tuner_temic_4046fm5_params[] = {
381 .type = TUNER_PARAM_TYPE_PAL,
382 .ranges = tuner_temic_40x6f_5_pal_ranges,
383 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
387 /* ------------ TUNER_PHILIPS_PAL_DK - Philips PAL ------------ */
389 static struct tuner_params tuner_philips_pal_dk_params[] = {
391 .type = TUNER_PARAM_TYPE_PAL,
392 .ranges = tuner_lg_pal_ranges,
393 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
397 /* ------------ TUNER_PHILIPS_FQ1216ME - Philips PAL ------------ */
399 static struct tuner_params tuner_philips_fq1216me_params[] = {
401 .type = TUNER_PARAM_TYPE_PAL,
402 .ranges = tuner_lg_pal_ranges,
403 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
404 .has_tda9887 = 1,
405 .port1_active = 1,
406 .port2_active = 1,
407 .port2_invert_for_secam_lc = 1,
411 /* ------------ TUNER_LG_PAL_I_FM - LGINNOTEK PAL_I ------------ */
413 static struct tuner_params tuner_lg_pal_i_fm_params[] = {
415 .type = TUNER_PARAM_TYPE_PAL,
416 .ranges = tuner_lg_pal_ranges,
417 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
421 /* ------------ TUNER_LG_PAL_I - LGINNOTEK PAL_I ------------ */
423 static struct tuner_params tuner_lg_pal_i_params[] = {
425 .type = TUNER_PARAM_TYPE_PAL,
426 .ranges = tuner_lg_pal_ranges,
427 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
431 /* ------------ TUNER_LG_NTSC_FM - LGINNOTEK NTSC ------------ */
433 static struct tuner_range tuner_lg_ntsc_fm_ranges[] = {
434 { 16 * 210.00 /*MHz*/, 0x8e, 0xa0, },
435 { 16 * 497.00 /*MHz*/, 0x8e, 0x90, },
436 { 16 * 999.99 , 0x8e, 0x30, },
439 static struct tuner_params tuner_lg_ntsc_fm_params[] = {
441 .type = TUNER_PARAM_TYPE_NTSC,
442 .ranges = tuner_lg_ntsc_fm_ranges,
443 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_ranges),
447 /* ------------ TUNER_LG_PAL_FM - LGINNOTEK PAL ------------ */
449 static struct tuner_params tuner_lg_pal_fm_params[] = {
451 .type = TUNER_PARAM_TYPE_PAL,
452 .ranges = tuner_lg_pal_ranges,
453 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
457 /* ------------ TUNER_LG_PAL - LGINNOTEK PAL ------------ */
459 static struct tuner_params tuner_lg_pal_params[] = {
461 .type = TUNER_PARAM_TYPE_PAL,
462 .ranges = tuner_lg_pal_ranges,
463 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
467 /* 30-39 */
468 /* ------------ TUNER_TEMIC_4009FN5_MULTI_PAL_FM - TEMIC PAL ------------ */
470 static struct tuner_params tuner_temic_4009_fn5_multi_pal_fm_params[] = {
472 .type = TUNER_PARAM_TYPE_PAL,
473 .ranges = tuner_temic_4009f_5_pal_ranges,
474 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
478 /* ------------ TUNER_SHARP_2U5JF5540_NTSC - SHARP NTSC ------------ */
480 static struct tuner_range tuner_sharp_2u5jf5540_ntsc_ranges[] = {
481 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
482 { 16 * 317.25 /*MHz*/, 0x8e, 0x02, },
483 { 16 * 999.99 , 0x8e, 0x08, },
486 static struct tuner_params tuner_sharp_2u5jf5540_params[] = {
488 .type = TUNER_PARAM_TYPE_NTSC,
489 .ranges = tuner_sharp_2u5jf5540_ntsc_ranges,
490 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_ntsc_ranges),
494 /* ------------ TUNER_Samsung_PAL_TCPM9091PD27 - Samsung PAL ------------ */
496 static struct tuner_range tuner_samsung_pal_tcpm9091pd27_ranges[] = {
497 { 16 * 169 /*MHz*/, 0x8e, 0xa0, },
498 { 16 * 464 /*MHz*/, 0x8e, 0x90, },
499 { 16 * 999.99 , 0x8e, 0x30, },
502 static struct tuner_params tuner_samsung_pal_tcpm9091pd27_params[] = {
504 .type = TUNER_PARAM_TYPE_PAL,
505 .ranges = tuner_samsung_pal_tcpm9091pd27_ranges,
506 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_ranges),
510 /* ------------ TUNER_TEMIC_4106FH5 - TEMIC PAL ------------ */
512 static struct tuner_params tuner_temic_4106fh5_params[] = {
514 .type = TUNER_PARAM_TYPE_PAL,
515 .ranges = tuner_temic_4009f_5_pal_ranges,
516 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
520 /* ------------ TUNER_TEMIC_4012FY5 - TEMIC PAL ------------ */
522 static struct tuner_params tuner_temic_4012fy5_params[] = {
524 .type = TUNER_PARAM_TYPE_PAL,
525 .ranges = tuner_temic_pal_ranges,
526 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
530 /* ------------ TUNER_TEMIC_4136FY5 - TEMIC NTSC ------------ */
532 static struct tuner_params tuner_temic_4136_fy5_params[] = {
534 .type = TUNER_PARAM_TYPE_NTSC,
535 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
536 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
540 /* ------------ TUNER_LG_PAL_NEW_TAPC - LGINNOTEK PAL ------------ */
542 static struct tuner_range tuner_lg_new_tapc_ranges[] = {
543 { 16 * 170.00 /*MHz*/, 0x8e, 0x01, },
544 { 16 * 450.00 /*MHz*/, 0x8e, 0x02, },
545 { 16 * 999.99 , 0x8e, 0x08, },
548 static struct tuner_params tuner_lg_pal_new_tapc_params[] = {
550 .type = TUNER_PARAM_TYPE_PAL,
551 .ranges = tuner_lg_new_tapc_ranges,
552 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
556 /* ------------ TUNER_PHILIPS_FM1216ME_MK3 - Philips PAL ------------ */
558 static struct tuner_range tuner_fm1216me_mk3_pal_ranges[] = {
559 { 16 * 158.00 /*MHz*/, 0x8e, 0x01, },
560 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
561 { 16 * 999.99 , 0x8e, 0x04, },
564 static struct tuner_params tuner_fm1216me_mk3_params[] = {
566 .type = TUNER_PARAM_TYPE_PAL,
567 .ranges = tuner_fm1216me_mk3_pal_ranges,
568 .count = ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges),
569 .cb_first_if_lower_freq = 1,
570 .has_tda9887 = 1,
571 .port1_active = 1,
572 .port2_active = 1,
573 .port2_invert_for_secam_lc = 1,
574 .port1_fm_high_sensitivity = 1,
575 .default_top_mid = -2,
576 .default_top_secam_mid = -2,
577 .default_top_secam_high = -2,
581 /* ------------ TUNER_PHILIPS_FM1216MK5 - Philips PAL ------------ */
583 static struct tuner_range tuner_fm1216mk5_pal_ranges[] = {
584 { 16 * 158.00 /*MHz*/, 0xce, 0x01, },
585 { 16 * 441.00 /*MHz*/, 0xce, 0x02, },
586 { 16 * 864.00 , 0xce, 0x04, },
589 static struct tuner_params tuner_fm1216mk5_params[] = {
591 .type = TUNER_PARAM_TYPE_PAL,
592 .ranges = tuner_fm1216mk5_pal_ranges,
593 .count = ARRAY_SIZE(tuner_fm1216mk5_pal_ranges),
594 .cb_first_if_lower_freq = 1,
595 .has_tda9887 = 1,
596 .port1_active = 1,
597 .port2_active = 1,
598 .port2_invert_for_secam_lc = 1,
599 .port1_fm_high_sensitivity = 1,
600 .default_top_mid = -2,
601 .default_top_secam_mid = -2,
602 .default_top_secam_high = -2,
606 /* ------------ TUNER_LG_NTSC_NEW_TAPC - LGINNOTEK NTSC ------------ */
608 static struct tuner_params tuner_lg_ntsc_new_tapc_params[] = {
610 .type = TUNER_PARAM_TYPE_NTSC,
611 .ranges = tuner_lg_new_tapc_ranges,
612 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
616 /* 40-49 */
617 /* ------------ TUNER_HITACHI_NTSC - HITACHI NTSC ------------ */
619 static struct tuner_params tuner_hitachi_ntsc_params[] = {
621 .type = TUNER_PARAM_TYPE_NTSC,
622 .ranges = tuner_lg_new_tapc_ranges,
623 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
627 /* ------------ TUNER_PHILIPS_PAL_MK - Philips PAL ------------ */
629 static struct tuner_range tuner_philips_pal_mk_pal_ranges[] = {
630 { 16 * 140.25 /*MHz*/, 0x8e, 0x01, },
631 { 16 * 463.25 /*MHz*/, 0x8e, 0xc2, },
632 { 16 * 999.99 , 0x8e, 0xcf, },
635 static struct tuner_params tuner_philips_pal_mk_params[] = {
637 .type = TUNER_PARAM_TYPE_PAL,
638 .ranges = tuner_philips_pal_mk_pal_ranges,
639 .count = ARRAY_SIZE(tuner_philips_pal_mk_pal_ranges),
643 /* ---- TUNER_PHILIPS_FCV1236D - Philips FCV1236D (ATSC/NTSC) ---- */
645 static struct tuner_range tuner_philips_fcv1236d_ntsc_ranges[] = {
646 { 16 * 157.25 /*MHz*/, 0x8e, 0xa2, },
647 { 16 * 451.25 /*MHz*/, 0x8e, 0x92, },
648 { 16 * 999.99 , 0x8e, 0x32, },
651 static struct tuner_range tuner_philips_fcv1236d_atsc_ranges[] = {
652 { 16 * 159.00 /*MHz*/, 0x8e, 0xa0, },
653 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
654 { 16 * 999.99 , 0x8e, 0x30, },
657 static struct tuner_params tuner_philips_fcv1236d_params[] = {
659 .type = TUNER_PARAM_TYPE_NTSC,
660 .ranges = tuner_philips_fcv1236d_ntsc_ranges,
661 .count = ARRAY_SIZE(tuner_philips_fcv1236d_ntsc_ranges),
664 .type = TUNER_PARAM_TYPE_DIGITAL,
665 .ranges = tuner_philips_fcv1236d_atsc_ranges,
666 .count = ARRAY_SIZE(tuner_philips_fcv1236d_atsc_ranges),
667 .iffreq = 16 * 44.00,
671 /* ------------ TUNER_PHILIPS_FM1236_MK3 - Philips NTSC ------------ */
673 static struct tuner_range tuner_fm1236_mk3_ntsc_ranges[] = {
674 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
675 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
676 { 16 * 999.99 , 0x8e, 0x04, },
679 static struct tuner_params tuner_fm1236_mk3_params[] = {
681 .type = TUNER_PARAM_TYPE_NTSC,
682 .ranges = tuner_fm1236_mk3_ntsc_ranges,
683 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
684 .cb_first_if_lower_freq = 1,
685 .has_tda9887 = 1,
686 .port1_active = 1,
687 .port2_active = 1,
688 .port1_fm_high_sensitivity = 1,
692 /* ------------ TUNER_PHILIPS_4IN1 - Philips NTSC ------------ */
694 static struct tuner_params tuner_philips_4in1_params[] = {
696 .type = TUNER_PARAM_TYPE_NTSC,
697 .ranges = tuner_fm1236_mk3_ntsc_ranges,
698 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
702 /* ------------ TUNER_MICROTUNE_4049FM5 - Microtune PAL ------------ */
704 static struct tuner_params tuner_microtune_4049_fm5_params[] = {
706 .type = TUNER_PARAM_TYPE_PAL,
707 .ranges = tuner_temic_4009f_5_pal_ranges,
708 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
709 .has_tda9887 = 1,
710 .port1_invert_for_secam_lc = 1,
711 .default_pll_gating_18 = 1,
712 .fm_gain_normal=1,
713 .radio_if = 1, /* 33.3 MHz */
717 /* ------------ TUNER_PANASONIC_VP27 - Panasonic NTSC ------------ */
719 static struct tuner_range tuner_panasonic_vp27_ntsc_ranges[] = {
720 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
721 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
722 { 16 * 999.99 , 0xce, 0x08, },
725 static struct tuner_params tuner_panasonic_vp27_params[] = {
727 .type = TUNER_PARAM_TYPE_NTSC,
728 .ranges = tuner_panasonic_vp27_ntsc_ranges,
729 .count = ARRAY_SIZE(tuner_panasonic_vp27_ntsc_ranges),
730 .has_tda9887 = 1,
731 .intercarrier_mode = 1,
732 .default_top_low = -3,
733 .default_top_mid = -3,
734 .default_top_high = -3,
738 /* ------------ TUNER_TNF_8831BGFF - Philips PAL ------------ */
740 static struct tuner_range tuner_tnf_8831bgff_pal_ranges[] = {
741 { 16 * 161.25 /*MHz*/, 0x8e, 0xa0, },
742 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
743 { 16 * 999.99 , 0x8e, 0x30, },
746 static struct tuner_params tuner_tnf_8831bgff_params[] = {
748 .type = TUNER_PARAM_TYPE_PAL,
749 .ranges = tuner_tnf_8831bgff_pal_ranges,
750 .count = ARRAY_SIZE(tuner_tnf_8831bgff_pal_ranges),
754 /* ------------ TUNER_MICROTUNE_4042FI5 - Microtune NTSC ------------ */
756 static struct tuner_range tuner_microtune_4042fi5_ntsc_ranges[] = {
757 { 16 * 162.00 /*MHz*/, 0x8e, 0xa2, },
758 { 16 * 457.00 /*MHz*/, 0x8e, 0x94, },
759 { 16 * 999.99 , 0x8e, 0x31, },
762 static struct tuner_range tuner_microtune_4042fi5_atsc_ranges[] = {
763 { 16 * 162.00 /*MHz*/, 0x8e, 0xa1, },
764 { 16 * 457.00 /*MHz*/, 0x8e, 0x91, },
765 { 16 * 999.99 , 0x8e, 0x31, },
768 static struct tuner_params tuner_microtune_4042fi5_params[] = {
770 .type = TUNER_PARAM_TYPE_NTSC,
771 .ranges = tuner_microtune_4042fi5_ntsc_ranges,
772 .count = ARRAY_SIZE(tuner_microtune_4042fi5_ntsc_ranges),
775 .type = TUNER_PARAM_TYPE_DIGITAL,
776 .ranges = tuner_microtune_4042fi5_atsc_ranges,
777 .count = ARRAY_SIZE(tuner_microtune_4042fi5_atsc_ranges),
778 .iffreq = 16 * 44.00 /*MHz*/,
782 /* 50-59 */
783 /* ------------ TUNER_TCL_2002N - TCL NTSC ------------ */
785 static struct tuner_range tuner_tcl_2002n_ntsc_ranges[] = {
786 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
787 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
788 { 16 * 999.99 , 0x8e, 0x08, },
791 static struct tuner_params tuner_tcl_2002n_params[] = {
793 .type = TUNER_PARAM_TYPE_NTSC,
794 .ranges = tuner_tcl_2002n_ntsc_ranges,
795 .count = ARRAY_SIZE(tuner_tcl_2002n_ntsc_ranges),
796 .cb_first_if_lower_freq = 1,
800 /* ------------ TUNER_PHILIPS_FM1256_IH3 - Philips PAL ------------ */
802 static struct tuner_params tuner_philips_fm1256_ih3_params[] = {
804 .type = TUNER_PARAM_TYPE_PAL,
805 .ranges = tuner_fm1236_mk3_ntsc_ranges,
806 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
807 .radio_if = 1, /* 33.3 MHz */
811 /* ------------ TUNER_THOMSON_DTT7610 - THOMSON ATSC ------------ */
813 /* single range used for both ntsc and atsc */
814 static struct tuner_range tuner_thomson_dtt7610_ntsc_ranges[] = {
815 { 16 * 157.25 /*MHz*/, 0x8e, 0x39, },
816 { 16 * 454.00 /*MHz*/, 0x8e, 0x3a, },
817 { 16 * 999.99 , 0x8e, 0x3c, },
820 static struct tuner_params tuner_thomson_dtt7610_params[] = {
822 .type = TUNER_PARAM_TYPE_NTSC,
823 .ranges = tuner_thomson_dtt7610_ntsc_ranges,
824 .count = ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges),
827 .type = TUNER_PARAM_TYPE_DIGITAL,
828 .ranges = tuner_thomson_dtt7610_ntsc_ranges,
829 .count = ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges),
830 .iffreq = 16 * 44.00 /*MHz*/,
834 /* ------------ TUNER_PHILIPS_FQ1286 - Philips NTSC ------------ */
836 static struct tuner_range tuner_philips_fq1286_ntsc_ranges[] = {
837 { 16 * 160.00 /*MHz*/, 0x8e, 0x41, },
838 { 16 * 454.00 /*MHz*/, 0x8e, 0x42, },
839 { 16 * 999.99 , 0x8e, 0x04, },
842 static struct tuner_params tuner_philips_fq1286_params[] = {
844 .type = TUNER_PARAM_TYPE_NTSC,
845 .ranges = tuner_philips_fq1286_ntsc_ranges,
846 .count = ARRAY_SIZE(tuner_philips_fq1286_ntsc_ranges),
850 /* ------------ TUNER_TCL_2002MB - TCL PAL ------------ */
852 static struct tuner_range tuner_tcl_2002mb_pal_ranges[] = {
853 { 16 * 170.00 /*MHz*/, 0xce, 0x01, },
854 { 16 * 450.00 /*MHz*/, 0xce, 0x02, },
855 { 16 * 999.99 , 0xce, 0x08, },
858 static struct tuner_params tuner_tcl_2002mb_params[] = {
860 .type = TUNER_PARAM_TYPE_PAL,
861 .ranges = tuner_tcl_2002mb_pal_ranges,
862 .count = ARRAY_SIZE(tuner_tcl_2002mb_pal_ranges),
866 /* ------------ TUNER_PHILIPS_FQ1216AME_MK4 - Philips PAL ------------ */
868 static struct tuner_range tuner_philips_fq12_6a___mk4_pal_ranges[] = {
869 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
870 { 16 * 442.00 /*MHz*/, 0xce, 0x02, },
871 { 16 * 999.99 , 0xce, 0x04, },
874 static struct tuner_params tuner_philips_fq1216ame_mk4_params[] = {
876 .type = TUNER_PARAM_TYPE_PAL,
877 .ranges = tuner_philips_fq12_6a___mk4_pal_ranges,
878 .count = ARRAY_SIZE(tuner_philips_fq12_6a___mk4_pal_ranges),
879 .has_tda9887 = 1,
880 .port1_active = 1,
881 .port2_invert_for_secam_lc = 1,
882 .default_top_mid = -2,
883 .default_top_secam_low = -2,
884 .default_top_secam_mid = -2,
885 .default_top_secam_high = -2,
889 /* ------------ TUNER_PHILIPS_FQ1236A_MK4 - Philips NTSC ------------ */
891 static struct tuner_params tuner_philips_fq1236a_mk4_params[] = {
893 .type = TUNER_PARAM_TYPE_NTSC,
894 .ranges = tuner_fm1236_mk3_ntsc_ranges,
895 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
899 /* ------------ TUNER_YMEC_TVF_8531MF - Philips NTSC ------------ */
901 static struct tuner_params tuner_ymec_tvf_8531mf_params[] = {
903 .type = TUNER_PARAM_TYPE_NTSC,
904 .ranges = tuner_philips_ntsc_m_ranges,
905 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
909 /* ------------ TUNER_YMEC_TVF_5533MF - Philips NTSC ------------ */
911 static struct tuner_range tuner_ymec_tvf_5533mf_ntsc_ranges[] = {
912 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
913 { 16 * 454.00 /*MHz*/, 0x8e, 0x02, },
914 { 16 * 999.99 , 0x8e, 0x04, },
917 static struct tuner_params tuner_ymec_tvf_5533mf_params[] = {
919 .type = TUNER_PARAM_TYPE_NTSC,
920 .ranges = tuner_ymec_tvf_5533mf_ntsc_ranges,
921 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_ntsc_ranges),
925 /* 60-69 */
926 /* ------------ TUNER_THOMSON_DTT761X - THOMSON ATSC ------------ */
927 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
929 static struct tuner_range tuner_thomson_dtt761x_ntsc_ranges[] = {
930 { 16 * 145.25 /*MHz*/, 0x8e, 0x39, },
931 { 16 * 415.25 /*MHz*/, 0x8e, 0x3a, },
932 { 16 * 999.99 , 0x8e, 0x3c, },
935 static struct tuner_range tuner_thomson_dtt761x_atsc_ranges[] = {
936 { 16 * 147.00 /*MHz*/, 0x8e, 0x39, },
937 { 16 * 417.00 /*MHz*/, 0x8e, 0x3a, },
938 { 16 * 999.99 , 0x8e, 0x3c, },
941 static struct tuner_params tuner_thomson_dtt761x_params[] = {
943 .type = TUNER_PARAM_TYPE_NTSC,
944 .ranges = tuner_thomson_dtt761x_ntsc_ranges,
945 .count = ARRAY_SIZE(tuner_thomson_dtt761x_ntsc_ranges),
946 .has_tda9887 = 1,
947 .fm_gain_normal = 1,
948 .radio_if = 2, /* 41.3 MHz */
951 .type = TUNER_PARAM_TYPE_DIGITAL,
952 .ranges = tuner_thomson_dtt761x_atsc_ranges,
953 .count = ARRAY_SIZE(tuner_thomson_dtt761x_atsc_ranges),
954 .iffreq = 16 * 44.00, /*MHz*/
958 /* ------------ TUNER_TENA_9533_DI - Philips PAL ------------ */
960 static struct tuner_range tuner_tena_9533_di_pal_ranges[] = {
961 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
962 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
963 { 16 * 999.99 , 0x8e, 0x04, },
966 static struct tuner_params tuner_tena_9533_di_params[] = {
968 .type = TUNER_PARAM_TYPE_PAL,
969 .ranges = tuner_tena_9533_di_pal_ranges,
970 .count = ARRAY_SIZE(tuner_tena_9533_di_pal_ranges),
974 /* ------------ TUNER_PHILIPS_FMD1216ME(X)_MK3 - Philips PAL ------------ */
976 static struct tuner_range tuner_philips_fmd1216me_mk3_pal_ranges[] = {
977 { 16 * 160.00 /*MHz*/, 0x86, 0x51, },
978 { 16 * 442.00 /*MHz*/, 0x86, 0x52, },
979 { 16 * 999.99 , 0x86, 0x54, },
982 static struct tuner_range tuner_philips_fmd1216me_mk3_dvb_ranges[] = {
983 { 16 * 143.87 /*MHz*/, 0xbc, 0x41 },
984 { 16 * 158.87 /*MHz*/, 0xf4, 0x41 },
985 { 16 * 329.87 /*MHz*/, 0xbc, 0x42 },
986 { 16 * 441.87 /*MHz*/, 0xf4, 0x42 },
987 { 16 * 625.87 /*MHz*/, 0xbc, 0x44 },
988 { 16 * 803.87 /*MHz*/, 0xf4, 0x44 },
989 { 16 * 999.99 , 0xfc, 0x44 },
992 static struct tuner_params tuner_philips_fmd1216me_mk3_params[] = {
994 .type = TUNER_PARAM_TYPE_PAL,
995 .ranges = tuner_philips_fmd1216me_mk3_pal_ranges,
996 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges),
997 .has_tda9887 = 1,
998 .port1_active = 1,
999 .port2_active = 1,
1000 .port2_fm_high_sensitivity = 1,
1001 .port2_invert_for_secam_lc = 1,
1002 .port1_set_for_fm_mono = 1,
1005 .type = TUNER_PARAM_TYPE_DIGITAL,
1006 .ranges = tuner_philips_fmd1216me_mk3_dvb_ranges,
1007 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_dvb_ranges),
1008 .iffreq = 16 * 36.125, /*MHz*/
1012 static struct tuner_params tuner_philips_fmd1216mex_mk3_params[] = {
1014 .type = TUNER_PARAM_TYPE_PAL,
1015 .ranges = tuner_philips_fmd1216me_mk3_pal_ranges,
1016 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges),
1017 .has_tda9887 = 1,
1018 .port1_active = 1,
1019 .port2_active = 1,
1020 .port2_fm_high_sensitivity = 1,
1021 .port2_invert_for_secam_lc = 1,
1022 .port1_set_for_fm_mono = 1,
1023 .radio_if = 1,
1024 .fm_gain_normal = 1,
1027 .type = TUNER_PARAM_TYPE_DIGITAL,
1028 .ranges = tuner_philips_fmd1216me_mk3_dvb_ranges,
1029 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_dvb_ranges),
1030 .iffreq = 16 * 36.125, /*MHz*/
1034 /* ------ TUNER_LG_TDVS_H06XF - LG INNOTEK / INFINEON ATSC ----- */
1036 static struct tuner_range tuner_tua6034_ntsc_ranges[] = {
1037 { 16 * 165.00 /*MHz*/, 0x8e, 0x01 },
1038 { 16 * 450.00 /*MHz*/, 0x8e, 0x02 },
1039 { 16 * 999.99 , 0x8e, 0x04 },
1042 static struct tuner_range tuner_tua6034_atsc_ranges[] = {
1043 { 16 * 165.00 /*MHz*/, 0xce, 0x01 },
1044 { 16 * 450.00 /*MHz*/, 0xce, 0x02 },
1045 { 16 * 999.99 , 0xce, 0x04 },
1048 static struct tuner_params tuner_lg_tdvs_h06xf_params[] = {
1050 .type = TUNER_PARAM_TYPE_NTSC,
1051 .ranges = tuner_tua6034_ntsc_ranges,
1052 .count = ARRAY_SIZE(tuner_tua6034_ntsc_ranges),
1055 .type = TUNER_PARAM_TYPE_DIGITAL,
1056 .ranges = tuner_tua6034_atsc_ranges,
1057 .count = ARRAY_SIZE(tuner_tua6034_atsc_ranges),
1058 .iffreq = 16 * 44.00,
1062 /* ------------ TUNER_YMEC_TVF66T5_B_DFF - Philips PAL ------------ */
1064 static struct tuner_range tuner_ymec_tvf66t5_b_dff_pal_ranges[] = {
1065 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
1066 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
1067 { 16 * 999.99 , 0x8e, 0x08, },
1070 static struct tuner_params tuner_ymec_tvf66t5_b_dff_params[] = {
1072 .type = TUNER_PARAM_TYPE_PAL,
1073 .ranges = tuner_ymec_tvf66t5_b_dff_pal_ranges,
1074 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_pal_ranges),
1078 /* ------------ TUNER_LG_NTSC_TALN_MINI - LGINNOTEK NTSC ------------ */
1080 static struct tuner_range tuner_lg_taln_ntsc_ranges[] = {
1081 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
1082 { 16 * 373.25 /*MHz*/, 0x8e, 0x02, },
1083 { 16 * 999.99 , 0x8e, 0x08, },
1086 static struct tuner_range tuner_lg_taln_pal_secam_ranges[] = {
1087 { 16 * 150.00 /*MHz*/, 0x8e, 0x01, },
1088 { 16 * 425.00 /*MHz*/, 0x8e, 0x02, },
1089 { 16 * 999.99 , 0x8e, 0x08, },
1092 static struct tuner_params tuner_lg_taln_params[] = {
1094 .type = TUNER_PARAM_TYPE_NTSC,
1095 .ranges = tuner_lg_taln_ntsc_ranges,
1096 .count = ARRAY_SIZE(tuner_lg_taln_ntsc_ranges),
1098 .type = TUNER_PARAM_TYPE_PAL,
1099 .ranges = tuner_lg_taln_pal_secam_ranges,
1100 .count = ARRAY_SIZE(tuner_lg_taln_pal_secam_ranges),
1104 /* ------------ TUNER_PHILIPS_TD1316 - Philips PAL ------------ */
1106 static struct tuner_range tuner_philips_td1316_pal_ranges[] = {
1107 { 16 * 160.00 /*MHz*/, 0xc8, 0xa1, },
1108 { 16 * 442.00 /*MHz*/, 0xc8, 0xa2, },
1109 { 16 * 999.99 , 0xc8, 0xa4, },
1112 static struct tuner_range tuner_philips_td1316_dvb_ranges[] = {
1113 { 16 * 93.834 /*MHz*/, 0xca, 0x60, },
1114 { 16 * 123.834 /*MHz*/, 0xca, 0xa0, },
1115 { 16 * 163.834 /*MHz*/, 0xca, 0xc0, },
1116 { 16 * 253.834 /*MHz*/, 0xca, 0x60, },
1117 { 16 * 383.834 /*MHz*/, 0xca, 0xa0, },
1118 { 16 * 443.834 /*MHz*/, 0xca, 0xc0, },
1119 { 16 * 583.834 /*MHz*/, 0xca, 0x60, },
1120 { 16 * 793.834 /*MHz*/, 0xca, 0xa0, },
1121 { 16 * 999.999 , 0xca, 0xe0, },
1124 static struct tuner_params tuner_philips_td1316_params[] = {
1126 .type = TUNER_PARAM_TYPE_PAL,
1127 .ranges = tuner_philips_td1316_pal_ranges,
1128 .count = ARRAY_SIZE(tuner_philips_td1316_pal_ranges),
1131 .type = TUNER_PARAM_TYPE_DIGITAL,
1132 .ranges = tuner_philips_td1316_dvb_ranges,
1133 .count = ARRAY_SIZE(tuner_philips_td1316_dvb_ranges),
1134 .iffreq = 16 * 36.166667 /*MHz*/,
1138 /* ------------ TUNER_PHILIPS_TUV1236D - Philips ATSC ------------ */
1140 static struct tuner_range tuner_tuv1236d_ntsc_ranges[] = {
1141 { 16 * 157.25 /*MHz*/, 0xce, 0x01, },
1142 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
1143 { 16 * 999.99 , 0xce, 0x04, },
1146 static struct tuner_range tuner_tuv1236d_atsc_ranges[] = {
1147 { 16 * 157.25 /*MHz*/, 0xc6, 0x41, },
1148 { 16 * 454.00 /*MHz*/, 0xc6, 0x42, },
1149 { 16 * 999.99 , 0xc6, 0x44, },
1152 static struct tuner_params tuner_tuv1236d_params[] = {
1154 .type = TUNER_PARAM_TYPE_NTSC,
1155 .ranges = tuner_tuv1236d_ntsc_ranges,
1156 .count = ARRAY_SIZE(tuner_tuv1236d_ntsc_ranges),
1159 .type = TUNER_PARAM_TYPE_DIGITAL,
1160 .ranges = tuner_tuv1236d_atsc_ranges,
1161 .count = ARRAY_SIZE(tuner_tuv1236d_atsc_ranges),
1162 .iffreq = 16 * 44.00,
1166 /* ------------ TUNER_TNF_xxx5 - Texas Instruments--------- */
1167 /* This is known to work with Tenna TVF58t5-MFF and TVF5835 MFF
1168 * but it is expected to work also with other Tenna/Ymec
1169 * models based on TI SN 761677 chip on both PAL and NTSC
1172 static struct tuner_range tuner_tnf_5335_d_if_pal_ranges[] = {
1173 { 16 * 168.25 /*MHz*/, 0x8e, 0x01, },
1174 { 16 * 471.25 /*MHz*/, 0x8e, 0x02, },
1175 { 16 * 999.99 , 0x8e, 0x08, },
1178 static struct tuner_range tuner_tnf_5335mf_ntsc_ranges[] = {
1179 { 16 * 169.25 /*MHz*/, 0x8e, 0x01, },
1180 { 16 * 469.25 /*MHz*/, 0x8e, 0x02, },
1181 { 16 * 999.99 , 0x8e, 0x08, },
1184 static struct tuner_params tuner_tnf_5335mf_params[] = {
1186 .type = TUNER_PARAM_TYPE_NTSC,
1187 .ranges = tuner_tnf_5335mf_ntsc_ranges,
1188 .count = ARRAY_SIZE(tuner_tnf_5335mf_ntsc_ranges),
1191 .type = TUNER_PARAM_TYPE_PAL,
1192 .ranges = tuner_tnf_5335_d_if_pal_ranges,
1193 .count = ARRAY_SIZE(tuner_tnf_5335_d_if_pal_ranges),
1197 /* 70-79 */
1198 /* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */
1200 /* '+ 4' turns on the Low Noise Amplifier */
1201 static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = {
1202 { 16 * 130.00 /*MHz*/, 0xce, 0x01 + 4, },
1203 { 16 * 364.50 /*MHz*/, 0xce, 0x02 + 4, },
1204 { 16 * 999.99 , 0xce, 0x08 + 4, },
1207 static struct tuner_params tuner_samsung_tcpn_2121p30a_params[] = {
1209 .type = TUNER_PARAM_TYPE_NTSC,
1210 .ranges = tuner_samsung_tcpn_2121p30a_ntsc_ranges,
1211 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_ntsc_ranges),
1215 /* ------------ TUNER_THOMSON_FE6600 - DViCO Hybrid PAL ------------ */
1217 static struct tuner_range tuner_thomson_fe6600_pal_ranges[] = {
1218 { 16 * 160.00 /*MHz*/, 0xfe, 0x11, },
1219 { 16 * 442.00 /*MHz*/, 0xf6, 0x12, },
1220 { 16 * 999.99 , 0xf6, 0x18, },
1223 static struct tuner_range tuner_thomson_fe6600_dvb_ranges[] = {
1224 { 16 * 250.00 /*MHz*/, 0xb4, 0x12, },
1225 { 16 * 455.00 /*MHz*/, 0xfe, 0x11, },
1226 { 16 * 775.50 /*MHz*/, 0xbc, 0x18, },
1227 { 16 * 999.99 , 0xf4, 0x18, },
1230 static struct tuner_params tuner_thomson_fe6600_params[] = {
1232 .type = TUNER_PARAM_TYPE_PAL,
1233 .ranges = tuner_thomson_fe6600_pal_ranges,
1234 .count = ARRAY_SIZE(tuner_thomson_fe6600_pal_ranges),
1237 .type = TUNER_PARAM_TYPE_DIGITAL,
1238 .ranges = tuner_thomson_fe6600_dvb_ranges,
1239 .count = ARRAY_SIZE(tuner_thomson_fe6600_dvb_ranges),
1240 .iffreq = 16 * 36.125 /*MHz*/,
1244 /* ------------ TUNER_SAMSUNG_TCPG_6121P30A - Samsung PAL ------------ */
1246 /* '+ 4' turns on the Low Noise Amplifier */
1247 static struct tuner_range tuner_samsung_tcpg_6121p30a_pal_ranges[] = {
1248 { 16 * 146.25 /*MHz*/, 0xce, 0x01 + 4, },
1249 { 16 * 428.50 /*MHz*/, 0xce, 0x02 + 4, },
1250 { 16 * 999.99 , 0xce, 0x08 + 4, },
1253 static struct tuner_params tuner_samsung_tcpg_6121p30a_params[] = {
1255 .type = TUNER_PARAM_TYPE_PAL,
1256 .ranges = tuner_samsung_tcpg_6121p30a_pal_ranges,
1257 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_pal_ranges),
1258 .has_tda9887 = 1,
1259 .port1_active = 1,
1260 .port2_active = 1,
1261 .port2_invert_for_secam_lc = 1,
1265 /* ------------ TUNER_TCL_MF02GIP-5N-E - TCL MF02GIP-5N ------------ */
1267 static struct tuner_range tuner_tcl_mf02gip_5n_ntsc_ranges[] = {
1268 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
1269 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
1270 { 16 * 999.99 , 0x8e, 0x04, },
1273 static struct tuner_params tuner_tcl_mf02gip_5n_params[] = {
1275 .type = TUNER_PARAM_TYPE_NTSC,
1276 .ranges = tuner_tcl_mf02gip_5n_ntsc_ranges,
1277 .count = ARRAY_SIZE(tuner_tcl_mf02gip_5n_ntsc_ranges),
1278 .cb_first_if_lower_freq = 1,
1282 /* 80-89 */
1283 /* --------- TUNER_PHILIPS_FQ1216LME_MK3 -- active loopthrough, no FM ------- */
1285 static struct tuner_params tuner_fq1216lme_mk3_params[] = {
1287 .type = TUNER_PARAM_TYPE_PAL,
1288 .ranges = tuner_fm1216me_mk3_pal_ranges,
1289 .count = ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges),
1290 .cb_first_if_lower_freq = 1, /* not specified, but safe to do */
1291 .has_tda9887 = 1, /* TDA9886 */
1292 .port1_active = 1,
1293 .port2_active = 1,
1294 .port2_invert_for_secam_lc = 1,
1295 .default_top_low = 4,
1296 .default_top_mid = 4,
1297 .default_top_high = 4,
1298 .default_top_secam_low = 4,
1299 .default_top_secam_mid = 4,
1300 .default_top_secam_high = 4,
1304 /* ----- TUNER_PARTSNIC_PTI_5NF05 - Partsnic (Daewoo) PTI-5NF05 NTSC ----- */
1306 static struct tuner_range tuner_partsnic_pti_5nf05_ranges[] = {
1307 /* The datasheet specified channel ranges and the bandswitch byte */
1308 /* The control byte value of 0x8e is just a guess */
1309 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, }, /* Channels 2 - B */
1310 { 16 * 367.25 /*MHz*/, 0x8e, 0x02, }, /* Channels C - W+11 */
1311 { 16 * 999.99 , 0x8e, 0x08, }, /* Channels W+12 - 69 */
1314 static struct tuner_params tuner_partsnic_pti_5nf05_params[] = {
1316 .type = TUNER_PARAM_TYPE_NTSC,
1317 .ranges = tuner_partsnic_pti_5nf05_ranges,
1318 .count = ARRAY_SIZE(tuner_partsnic_pti_5nf05_ranges),
1319 .cb_first_if_lower_freq = 1, /* not specified but safe to do */
1323 /* --------- TUNER_PHILIPS_CU1216L - DVB-C NIM ------------------------- */
1325 static struct tuner_range tuner_cu1216l_ranges[] = {
1326 { 16 * 160.25 /*MHz*/, 0xce, 0x01 },
1327 { 16 * 444.25 /*MHz*/, 0xce, 0x02 },
1328 { 16 * 999.99 , 0xce, 0x04 },
1331 static struct tuner_params tuner_philips_cu1216l_params[] = {
1333 .type = TUNER_PARAM_TYPE_DIGITAL,
1334 .ranges = tuner_cu1216l_ranges,
1335 .count = ARRAY_SIZE(tuner_cu1216l_ranges),
1336 .iffreq = 16 * 36.125, /*MHz*/
1340 /* --------------------------------------------------------------------- */
1342 struct tunertype tuners[] = {
1343 /* 0-9 */
1344 [TUNER_TEMIC_PAL] = { /* TEMIC PAL */
1345 .name = "Temic PAL (4002 FH5)",
1346 .params = tuner_temic_pal_params,
1347 .count = ARRAY_SIZE(tuner_temic_pal_params),
1349 [TUNER_PHILIPS_PAL_I] = { /* Philips PAL_I */
1350 .name = "Philips PAL_I (FI1246 and compatibles)",
1351 .params = tuner_philips_pal_i_params,
1352 .count = ARRAY_SIZE(tuner_philips_pal_i_params),
1354 [TUNER_PHILIPS_NTSC] = { /* Philips NTSC */
1355 .name = "Philips NTSC (FI1236,FM1236 and compatibles)",
1356 .params = tuner_philips_ntsc_params,
1357 .count = ARRAY_SIZE(tuner_philips_ntsc_params),
1359 [TUNER_PHILIPS_SECAM] = { /* Philips SECAM */
1360 .name = "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)",
1361 .params = tuner_philips_secam_params,
1362 .count = ARRAY_SIZE(tuner_philips_secam_params),
1364 [TUNER_ABSENT] = { /* Tuner Absent */
1365 .name = "NoTuner",
1367 [TUNER_PHILIPS_PAL] = { /* Philips PAL */
1368 .name = "Philips PAL_BG (FI1216 and compatibles)",
1369 .params = tuner_philips_pal_params,
1370 .count = ARRAY_SIZE(tuner_philips_pal_params),
1372 [TUNER_TEMIC_NTSC] = { /* TEMIC NTSC */
1373 .name = "Temic NTSC (4032 FY5)",
1374 .params = tuner_temic_ntsc_params,
1375 .count = ARRAY_SIZE(tuner_temic_ntsc_params),
1377 [TUNER_TEMIC_PAL_I] = { /* TEMIC PAL_I */
1378 .name = "Temic PAL_I (4062 FY5)",
1379 .params = tuner_temic_pal_i_params,
1380 .count = ARRAY_SIZE(tuner_temic_pal_i_params),
1382 [TUNER_TEMIC_4036FY5_NTSC] = { /* TEMIC NTSC */
1383 .name = "Temic NTSC (4036 FY5)",
1384 .params = tuner_temic_4036fy5_ntsc_params,
1385 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_params),
1387 [TUNER_ALPS_TSBH1_NTSC] = { /* TEMIC NTSC */
1388 .name = "Alps HSBH1",
1389 .params = tuner_alps_tsbh1_ntsc_params,
1390 .count = ARRAY_SIZE(tuner_alps_tsbh1_ntsc_params),
1393 /* 10-19 */
1394 [TUNER_ALPS_TSBE1_PAL] = { /* TEMIC PAL */
1395 .name = "Alps TSBE1",
1396 .params = tuner_alps_tsb_1_params,
1397 .count = ARRAY_SIZE(tuner_alps_tsb_1_params),
1399 [TUNER_ALPS_TSBB5_PAL_I] = { /* Alps PAL_I */
1400 .name = "Alps TSBB5",
1401 .params = tuner_alps_tsbb5_params,
1402 .count = ARRAY_SIZE(tuner_alps_tsbb5_params),
1404 [TUNER_ALPS_TSBE5_PAL] = { /* Alps PAL */
1405 .name = "Alps TSBE5",
1406 .params = tuner_alps_tsbe5_params,
1407 .count = ARRAY_SIZE(tuner_alps_tsbe5_params),
1409 [TUNER_ALPS_TSBC5_PAL] = { /* Alps PAL */
1410 .name = "Alps TSBC5",
1411 .params = tuner_alps_tsbc5_params,
1412 .count = ARRAY_SIZE(tuner_alps_tsbc5_params),
1414 [TUNER_TEMIC_4006FH5_PAL] = { /* TEMIC PAL */
1415 .name = "Temic PAL_BG (4006FH5)",
1416 .params = tuner_temic_4006fh5_params,
1417 .count = ARRAY_SIZE(tuner_temic_4006fh5_params),
1419 [TUNER_ALPS_TSHC6_NTSC] = { /* Alps NTSC */
1420 .name = "Alps TSCH6",
1421 .params = tuner_alps_tshc6_params,
1422 .count = ARRAY_SIZE(tuner_alps_tshc6_params),
1424 [TUNER_TEMIC_PAL_DK] = { /* TEMIC PAL */
1425 .name = "Temic PAL_DK (4016 FY5)",
1426 .params = tuner_temic_pal_dk_params,
1427 .count = ARRAY_SIZE(tuner_temic_pal_dk_params),
1429 [TUNER_PHILIPS_NTSC_M] = { /* Philips NTSC */
1430 .name = "Philips NTSC_M (MK2)",
1431 .params = tuner_philips_ntsc_m_params,
1432 .count = ARRAY_SIZE(tuner_philips_ntsc_m_params),
1434 [TUNER_TEMIC_4066FY5_PAL_I] = { /* TEMIC PAL_I */
1435 .name = "Temic PAL_I (4066 FY5)",
1436 .params = tuner_temic_4066fy5_pal_i_params,
1437 .count = ARRAY_SIZE(tuner_temic_4066fy5_pal_i_params),
1439 [TUNER_TEMIC_4006FN5_MULTI_PAL] = { /* TEMIC PAL */
1440 .name = "Temic PAL* auto (4006 FN5)",
1441 .params = tuner_temic_4006fn5_multi_params,
1442 .count = ARRAY_SIZE(tuner_temic_4006fn5_multi_params),
1445 /* 20-29 */
1446 [TUNER_TEMIC_4009FR5_PAL] = { /* TEMIC PAL */
1447 .name = "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)",
1448 .params = tuner_temic_4009f_5_params,
1449 .count = ARRAY_SIZE(tuner_temic_4009f_5_params),
1451 [TUNER_TEMIC_4039FR5_NTSC] = { /* TEMIC NTSC */
1452 .name = "Temic NTSC (4039 FR5)",
1453 .params = tuner_temic_4039fr5_params,
1454 .count = ARRAY_SIZE(tuner_temic_4039fr5_params),
1456 [TUNER_TEMIC_4046FM5] = { /* TEMIC PAL */
1457 .name = "Temic PAL/SECAM multi (4046 FM5)",
1458 .params = tuner_temic_4046fm5_params,
1459 .count = ARRAY_SIZE(tuner_temic_4046fm5_params),
1461 [TUNER_PHILIPS_PAL_DK] = { /* Philips PAL */
1462 .name = "Philips PAL_DK (FI1256 and compatibles)",
1463 .params = tuner_philips_pal_dk_params,
1464 .count = ARRAY_SIZE(tuner_philips_pal_dk_params),
1466 [TUNER_PHILIPS_FQ1216ME] = { /* Philips PAL */
1467 .name = "Philips PAL/SECAM multi (FQ1216ME)",
1468 .params = tuner_philips_fq1216me_params,
1469 .count = ARRAY_SIZE(tuner_philips_fq1216me_params),
1471 [TUNER_LG_PAL_I_FM] = { /* LGINNOTEK PAL_I */
1472 .name = "LG PAL_I+FM (TAPC-I001D)",
1473 .params = tuner_lg_pal_i_fm_params,
1474 .count = ARRAY_SIZE(tuner_lg_pal_i_fm_params),
1476 [TUNER_LG_PAL_I] = { /* LGINNOTEK PAL_I */
1477 .name = "LG PAL_I (TAPC-I701D)",
1478 .params = tuner_lg_pal_i_params,
1479 .count = ARRAY_SIZE(tuner_lg_pal_i_params),
1481 [TUNER_LG_NTSC_FM] = { /* LGINNOTEK NTSC */
1482 .name = "LG NTSC+FM (TPI8NSR01F)",
1483 .params = tuner_lg_ntsc_fm_params,
1484 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_params),
1486 [TUNER_LG_PAL_FM] = { /* LGINNOTEK PAL */
1487 .name = "LG PAL_BG+FM (TPI8PSB01D)",
1488 .params = tuner_lg_pal_fm_params,
1489 .count = ARRAY_SIZE(tuner_lg_pal_fm_params),
1491 [TUNER_LG_PAL] = { /* LGINNOTEK PAL */
1492 .name = "LG PAL_BG (TPI8PSB11D)",
1493 .params = tuner_lg_pal_params,
1494 .count = ARRAY_SIZE(tuner_lg_pal_params),
1497 /* 30-39 */
1498 [TUNER_TEMIC_4009FN5_MULTI_PAL_FM] = { /* TEMIC PAL */
1499 .name = "Temic PAL* auto + FM (4009 FN5)",
1500 .params = tuner_temic_4009_fn5_multi_pal_fm_params,
1501 .count = ARRAY_SIZE(tuner_temic_4009_fn5_multi_pal_fm_params),
1503 [TUNER_SHARP_2U5JF5540_NTSC] = { /* SHARP NTSC */
1504 .name = "SHARP NTSC_JP (2U5JF5540)",
1505 .params = tuner_sharp_2u5jf5540_params,
1506 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_params),
1508 [TUNER_Samsung_PAL_TCPM9091PD27] = { /* Samsung PAL */
1509 .name = "Samsung PAL TCPM9091PD27",
1510 .params = tuner_samsung_pal_tcpm9091pd27_params,
1511 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_params),
1513 [TUNER_MT2032] = { /* Microtune PAL|NTSC */
1514 .name = "MT20xx universal",
1515 /* see mt20xx.c for details */ },
1516 [TUNER_TEMIC_4106FH5] = { /* TEMIC PAL */
1517 .name = "Temic PAL_BG (4106 FH5)",
1518 .params = tuner_temic_4106fh5_params,
1519 .count = ARRAY_SIZE(tuner_temic_4106fh5_params),
1521 [TUNER_TEMIC_4012FY5] = { /* TEMIC PAL */
1522 .name = "Temic PAL_DK/SECAM_L (4012 FY5)",
1523 .params = tuner_temic_4012fy5_params,
1524 .count = ARRAY_SIZE(tuner_temic_4012fy5_params),
1526 [TUNER_TEMIC_4136FY5] = { /* TEMIC NTSC */
1527 .name = "Temic NTSC (4136 FY5)",
1528 .params = tuner_temic_4136_fy5_params,
1529 .count = ARRAY_SIZE(tuner_temic_4136_fy5_params),
1531 [TUNER_LG_PAL_NEW_TAPC] = { /* LGINNOTEK PAL */
1532 .name = "LG PAL (newer TAPC series)",
1533 .params = tuner_lg_pal_new_tapc_params,
1534 .count = ARRAY_SIZE(tuner_lg_pal_new_tapc_params),
1536 [TUNER_PHILIPS_FM1216ME_MK3] = { /* Philips PAL */
1537 .name = "Philips PAL/SECAM multi (FM1216ME MK3)",
1538 .params = tuner_fm1216me_mk3_params,
1539 .count = ARRAY_SIZE(tuner_fm1216me_mk3_params),
1541 [TUNER_LG_NTSC_NEW_TAPC] = { /* LGINNOTEK NTSC */
1542 .name = "LG NTSC (newer TAPC series)",
1543 .params = tuner_lg_ntsc_new_tapc_params,
1544 .count = ARRAY_SIZE(tuner_lg_ntsc_new_tapc_params),
1547 /* 40-49 */
1548 [TUNER_HITACHI_NTSC] = { /* HITACHI NTSC */
1549 .name = "HITACHI V7-J180AT",
1550 .params = tuner_hitachi_ntsc_params,
1551 .count = ARRAY_SIZE(tuner_hitachi_ntsc_params),
1553 [TUNER_PHILIPS_PAL_MK] = { /* Philips PAL */
1554 .name = "Philips PAL_MK (FI1216 MK)",
1555 .params = tuner_philips_pal_mk_params,
1556 .count = ARRAY_SIZE(tuner_philips_pal_mk_params),
1558 [TUNER_PHILIPS_FCV1236D] = { /* Philips ATSC */
1559 .name = "Philips FCV1236D ATSC/NTSC dual in",
1560 .params = tuner_philips_fcv1236d_params,
1561 .count = ARRAY_SIZE(tuner_philips_fcv1236d_params),
1562 .min = 16 * 53.00,
1563 .max = 16 * 803.00,
1564 .stepsize = 62500,
1566 [TUNER_PHILIPS_FM1236_MK3] = { /* Philips NTSC */
1567 .name = "Philips NTSC MK3 (FM1236MK3 or FM1236/F)",
1568 .params = tuner_fm1236_mk3_params,
1569 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
1571 [TUNER_PHILIPS_4IN1] = { /* Philips NTSC */
1572 .name = "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)",
1573 .params = tuner_philips_4in1_params,
1574 .count = ARRAY_SIZE(tuner_philips_4in1_params),
1576 [TUNER_MICROTUNE_4049FM5] = { /* Microtune PAL */
1577 .name = "Microtune 4049 FM5",
1578 .params = tuner_microtune_4049_fm5_params,
1579 .count = ARRAY_SIZE(tuner_microtune_4049_fm5_params),
1581 [TUNER_PANASONIC_VP27] = { /* Panasonic NTSC */
1582 .name = "Panasonic VP27s/ENGE4324D",
1583 .params = tuner_panasonic_vp27_params,
1584 .count = ARRAY_SIZE(tuner_panasonic_vp27_params),
1586 [TUNER_LG_NTSC_TAPE] = { /* LGINNOTEK NTSC */
1587 .name = "LG NTSC (TAPE series)",
1588 .params = tuner_fm1236_mk3_params,
1589 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
1591 [TUNER_TNF_8831BGFF] = { /* Philips PAL */
1592 .name = "Tenna TNF 8831 BGFF)",
1593 .params = tuner_tnf_8831bgff_params,
1594 .count = ARRAY_SIZE(tuner_tnf_8831bgff_params),
1596 [TUNER_MICROTUNE_4042FI5] = { /* Microtune NTSC */
1597 .name = "Microtune 4042 FI5 ATSC/NTSC dual in",
1598 .params = tuner_microtune_4042fi5_params,
1599 .count = ARRAY_SIZE(tuner_microtune_4042fi5_params),
1600 .min = 16 * 57.00,
1601 .max = 16 * 858.00,
1602 .stepsize = 62500,
1605 /* 50-59 */
1606 [TUNER_TCL_2002N] = { /* TCL NTSC */
1607 .name = "TCL 2002N",
1608 .params = tuner_tcl_2002n_params,
1609 .count = ARRAY_SIZE(tuner_tcl_2002n_params),
1611 [TUNER_PHILIPS_FM1256_IH3] = { /* Philips PAL */
1612 .name = "Philips PAL/SECAM_D (FM 1256 I-H3)",
1613 .params = tuner_philips_fm1256_ih3_params,
1614 .count = ARRAY_SIZE(tuner_philips_fm1256_ih3_params),
1616 [TUNER_THOMSON_DTT7610] = { /* THOMSON ATSC */
1617 .name = "Thomson DTT 7610 (ATSC/NTSC)",
1618 .params = tuner_thomson_dtt7610_params,
1619 .count = ARRAY_SIZE(tuner_thomson_dtt7610_params),
1620 .min = 16 * 44.00,
1621 .max = 16 * 958.00,
1622 .stepsize = 62500,
1624 [TUNER_PHILIPS_FQ1286] = { /* Philips NTSC */
1625 .name = "Philips FQ1286",
1626 .params = tuner_philips_fq1286_params,
1627 .count = ARRAY_SIZE(tuner_philips_fq1286_params),
1629 [TUNER_PHILIPS_TDA8290] = { /* Philips PAL|NTSC */
1630 .name = "Philips/NXP TDA 8290/8295 + 8275/8275A/18271",
1631 /* see tda8290.c for details */ },
1632 [TUNER_TCL_2002MB] = { /* TCL PAL */
1633 .name = "TCL 2002MB",
1634 .params = tuner_tcl_2002mb_params,
1635 .count = ARRAY_SIZE(tuner_tcl_2002mb_params),
1637 [TUNER_PHILIPS_FQ1216AME_MK4] = { /* Philips PAL */
1638 .name = "Philips PAL/SECAM multi (FQ1216AME MK4)",
1639 .params = tuner_philips_fq1216ame_mk4_params,
1640 .count = ARRAY_SIZE(tuner_philips_fq1216ame_mk4_params),
1642 [TUNER_PHILIPS_FQ1236A_MK4] = { /* Philips NTSC */
1643 .name = "Philips FQ1236A MK4",
1644 .params = tuner_philips_fq1236a_mk4_params,
1645 .count = ARRAY_SIZE(tuner_philips_fq1236a_mk4_params),
1647 [TUNER_YMEC_TVF_8531MF] = { /* Philips NTSC */
1648 .name = "Ymec TVision TVF-8531MF/8831MF/8731MF",
1649 .params = tuner_ymec_tvf_8531mf_params,
1650 .count = ARRAY_SIZE(tuner_ymec_tvf_8531mf_params),
1652 [TUNER_YMEC_TVF_5533MF] = { /* Philips NTSC */
1653 .name = "Ymec TVision TVF-5533MF",
1654 .params = tuner_ymec_tvf_5533mf_params,
1655 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_params),
1658 /* 60-69 */
1659 [TUNER_THOMSON_DTT761X] = { /* THOMSON ATSC */
1660 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
1661 .name = "Thomson DTT 761X (ATSC/NTSC)",
1662 .params = tuner_thomson_dtt761x_params,
1663 .count = ARRAY_SIZE(tuner_thomson_dtt761x_params),
1664 .min = 16 * 57.00,
1665 .max = 16 * 863.00,
1666 .stepsize = 62500,
1667 .initdata = tua603x_agc103,
1669 [TUNER_TENA_9533_DI] = { /* Philips PAL */
1670 .name = "Tena TNF9533-D/IF/TNF9533-B/DF",
1671 .params = tuner_tena_9533_di_params,
1672 .count = ARRAY_SIZE(tuner_tena_9533_di_params),
1674 [TUNER_TEA5767] = { /* Philips RADIO */
1675 .name = "Philips TEA5767HN FM Radio",
1676 /* see tea5767.c for details */
1678 [TUNER_PHILIPS_FMD1216ME_MK3] = { /* Philips PAL */
1679 .name = "Philips FMD1216ME MK3 Hybrid Tuner",
1680 .params = tuner_philips_fmd1216me_mk3_params,
1681 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_params),
1682 .min = 16 * 50.87,
1683 .max = 16 * 858.00,
1684 .stepsize = 166667,
1685 .initdata = tua603x_agc112,
1686 .sleepdata = (u8[]){ 4, 0x9c, 0x60, 0x85, 0x54 },
1688 [TUNER_LG_TDVS_H06XF] = { /* LGINNOTEK ATSC */
1689 .name = "LG TDVS-H06xF", /* H061F, H062F & H064F */
1690 .params = tuner_lg_tdvs_h06xf_params,
1691 .count = ARRAY_SIZE(tuner_lg_tdvs_h06xf_params),
1692 .min = 16 * 54.00,
1693 .max = 16 * 863.00,
1694 .stepsize = 62500,
1695 .initdata = tua603x_agc103,
1697 [TUNER_YMEC_TVF66T5_B_DFF] = { /* Philips PAL */
1698 .name = "Ymec TVF66T5-B/DFF",
1699 .params = tuner_ymec_tvf66t5_b_dff_params,
1700 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_params),
1702 [TUNER_LG_TALN] = { /* LGINNOTEK NTSC / PAL / SECAM */
1703 .name = "LG TALN series",
1704 .params = tuner_lg_taln_params,
1705 .count = ARRAY_SIZE(tuner_lg_taln_params),
1707 [TUNER_PHILIPS_TD1316] = { /* Philips PAL */
1708 .name = "Philips TD1316 Hybrid Tuner",
1709 .params = tuner_philips_td1316_params,
1710 .count = ARRAY_SIZE(tuner_philips_td1316_params),
1711 .min = 16 * 87.00,
1712 .max = 16 * 895.00,
1713 .stepsize = 166667,
1715 [TUNER_PHILIPS_TUV1236D] = { /* Philips ATSC */
1716 .name = "Philips TUV1236D ATSC/NTSC dual in",
1717 .params = tuner_tuv1236d_params,
1718 .count = ARRAY_SIZE(tuner_tuv1236d_params),
1719 .min = 16 * 54.00,
1720 .max = 16 * 864.00,
1721 .stepsize = 62500,
1723 [TUNER_TNF_5335MF] = { /* Tenna PAL/NTSC */
1724 .name = "Tena TNF 5335 and similar models",
1725 .params = tuner_tnf_5335mf_params,
1726 .count = ARRAY_SIZE(tuner_tnf_5335mf_params),
1729 /* 70-79 */
1730 [TUNER_SAMSUNG_TCPN_2121P30A] = { /* Samsung NTSC */
1731 .name = "Samsung TCPN 2121P30A",
1732 .params = tuner_samsung_tcpn_2121p30a_params,
1733 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params),
1735 [TUNER_XC2028] = { /* Xceive 2028 */
1736 .name = "Xceive xc2028/xc3028 tuner",
1737 /* see tuner-xc2028.c for details */
1739 [TUNER_THOMSON_FE6600] = { /* Thomson PAL / DVB-T */
1740 .name = "Thomson FE6600",
1741 .params = tuner_thomson_fe6600_params,
1742 .count = ARRAY_SIZE(tuner_thomson_fe6600_params),
1743 .min = 16 * 44.25,
1744 .max = 16 * 858.00,
1745 .stepsize = 166667,
1747 [TUNER_SAMSUNG_TCPG_6121P30A] = { /* Samsung PAL */
1748 .name = "Samsung TCPG 6121P30A",
1749 .params = tuner_samsung_tcpg_6121p30a_params,
1750 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_params),
1752 [TUNER_TDA9887] = { /* Philips TDA 9887 IF PLL Demodulator.
1753 This chip is part of some modern tuners */
1754 .name = "Philips TDA988[5,6,7] IF PLL Demodulator",
1755 /* see tda9887.c for details */
1757 [TUNER_TEA5761] = { /* Philips RADIO */
1758 .name = "Philips TEA5761 FM Radio",
1759 /* see tea5767.c for details */
1761 [TUNER_XC5000] = { /* Xceive 5000 */
1762 .name = "Xceive 5000 tuner",
1763 /* see xc5000.c for details */
1765 [TUNER_TCL_MF02GIP_5N] = { /* TCL tuner MF02GIP-5N-E */
1766 .name = "TCL tuner MF02GIP-5N-E",
1767 .params = tuner_tcl_mf02gip_5n_params,
1768 .count = ARRAY_SIZE(tuner_tcl_mf02gip_5n_params),
1770 [TUNER_PHILIPS_FMD1216MEX_MK3] = { /* Philips PAL */
1771 .name = "Philips FMD1216MEX MK3 Hybrid Tuner",
1772 .params = tuner_philips_fmd1216mex_mk3_params,
1773 .count = ARRAY_SIZE(tuner_philips_fmd1216mex_mk3_params),
1774 .min = 16 * 50.87,
1775 .max = 16 * 858.00,
1776 .stepsize = 166667,
1777 .initdata = tua603x_agc112,
1778 .sleepdata = (u8[]){ 4, 0x9c, 0x60, 0x85, 0x54 },
1780 [TUNER_PHILIPS_FM1216MK5] = { /* Philips PAL */
1781 .name = "Philips PAL/SECAM multi (FM1216 MK5)",
1782 .params = tuner_fm1216mk5_params,
1783 .count = ARRAY_SIZE(tuner_fm1216mk5_params),
1786 /* 80-89 */
1787 [TUNER_PHILIPS_FQ1216LME_MK3] = { /* PAL/SECAM, Loop-thru, no FM */
1788 .name = "Philips FQ1216LME MK3 PAL/SECAM w/active loopthrough",
1789 .params = tuner_fq1216lme_mk3_params,
1790 .count = ARRAY_SIZE(tuner_fq1216lme_mk3_params),
1793 [TUNER_PARTSNIC_PTI_5NF05] = {
1794 .name = "Partsnic (Daewoo) PTI-5NF05",
1795 .params = tuner_partsnic_pti_5nf05_params,
1796 .count = ARRAY_SIZE(tuner_partsnic_pti_5nf05_params),
1798 [TUNER_PHILIPS_CU1216L] = {
1799 .name = "Philips CU1216L",
1800 .params = tuner_philips_cu1216l_params,
1801 .count = ARRAY_SIZE(tuner_philips_cu1216l_params),
1802 .stepsize = 62500,
1804 [TUNER_NXP_TDA18271] = {
1805 .name = "NXP TDA18271",
1806 /* see tda18271-fe.c for details */
1809 EXPORT_SYMBOL(tuners);
1811 unsigned const int tuner_count = ARRAY_SIZE(tuners);
1812 EXPORT_SYMBOL(tuner_count);
1814 MODULE_DESCRIPTION("Simple tuner device type database");
1815 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1816 MODULE_LICENSE("GPL");