1 // SPDX-License-Identifier: GPL-2.0-only
4 * i2c tv tuner chip device type database.
9 #include <linux/module.h>
10 #include <media/tuner.h>
11 #include <media/tuner-types.h>
13 /* ---------------------------------------------------------------------- */
16 * The floats in the tuner struct are computed at compile time
17 * by gcc and cast back to integers. Thus we don't violate the
18 * "no float in kernel" rule.
20 * A tuner_range may be referenced by multiple tuner_params structs.
21 * There are many duplicates in here. Reusing tuner_range structs,
22 * rather than defining new ones for each tuner, will cut down on
23 * memory usage, and is preferred when possible.
25 * Each tuner_params array may contain one or more elements, one
26 * for each video standard.
28 * FIXME: tuner_params struct contains an element, tda988x. We must
29 * set this for all tuners that contain a tda988x chip, and then we
30 * can remove this setting from the various card structs.
32 * FIXME: Right now, all tuners are using the first tuner_params[]
33 * array element for analog mode. In the future, we will be merging
34 * similar tuner definitions together, such that each tuner definition
35 * will have a tuner_params struct for each available video standard.
36 * At that point, the tuner_params[] array element will be chosen
37 * based on the video standard in use.
40 /* The following was taken from dvb-pll.c: */
42 /* Set AGC TOP value to 103 dBuV:
44 * 0x40 = 250 uA charge pump (irrelevant)
45 * 0x18 = Aux Byte to follow
46 * 0x06 = 64.5 kHz divider (irrelevant)
47 * 0x01 = Disable Vt (aka sleep)
49 * 0x00 = AGC Time constant 2s Iagc = 300 nA (vs 0x80 = 9 nA)
50 * 0x50 = AGC Take over point = 103 dBuV
52 static u8 tua603x_agc103
[] = { 2, 0x80|0x40|0x18|0x06|0x01, 0x00|0x50 };
54 /* 0x04 = 166.67 kHz divider
56 * 0x80 = AGC Time constant 50ms Iagc = 9 uA
57 * 0x20 = AGC Take over point = 112 dBuV
59 static u8 tua603x_agc112
[] = { 2, 0x80|0x40|0x18|0x04|0x01, 0x80|0x20 };
62 /* ------------ TUNER_TEMIC_PAL - TEMIC PAL ------------ */
64 static struct tuner_range tuner_temic_pal_ranges
[] = {
65 { 16 * 140.25 /*MHz*/, 0x8e, 0x02, },
66 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
67 { 16 * 999.99 , 0x8e, 0x01, },
70 static struct tuner_params tuner_temic_pal_params
[] = {
72 .type
= TUNER_PARAM_TYPE_PAL
,
73 .ranges
= tuner_temic_pal_ranges
,
74 .count
= ARRAY_SIZE(tuner_temic_pal_ranges
),
78 /* ------------ TUNER_PHILIPS_PAL_I - Philips PAL_I ------------ */
80 static struct tuner_range tuner_philips_pal_i_ranges
[] = {
81 { 16 * 140.25 /*MHz*/, 0x8e, 0xa0, },
82 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
83 { 16 * 999.99 , 0x8e, 0x30, },
86 static struct tuner_params tuner_philips_pal_i_params
[] = {
88 .type
= TUNER_PARAM_TYPE_PAL
,
89 .ranges
= tuner_philips_pal_i_ranges
,
90 .count
= ARRAY_SIZE(tuner_philips_pal_i_ranges
),
94 /* ------------ TUNER_PHILIPS_NTSC - Philips NTSC ------------ */
96 static struct tuner_range tuner_philips_ntsc_ranges
[] = {
97 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
98 { 16 * 451.25 /*MHz*/, 0x8e, 0x90, },
99 { 16 * 999.99 , 0x8e, 0x30, },
102 static struct tuner_params tuner_philips_ntsc_params
[] = {
104 .type
= TUNER_PARAM_TYPE_NTSC
,
105 .ranges
= tuner_philips_ntsc_ranges
,
106 .count
= ARRAY_SIZE(tuner_philips_ntsc_ranges
),
107 .cb_first_if_lower_freq
= 1,
111 /* ------------ TUNER_PHILIPS_SECAM - Philips SECAM ------------ */
113 static struct tuner_range tuner_philips_secam_ranges
[] = {
114 { 16 * 168.25 /*MHz*/, 0x8e, 0xa7, },
115 { 16 * 447.25 /*MHz*/, 0x8e, 0x97, },
116 { 16 * 999.99 , 0x8e, 0x37, },
119 static struct tuner_params tuner_philips_secam_params
[] = {
121 .type
= TUNER_PARAM_TYPE_SECAM
,
122 .ranges
= tuner_philips_secam_ranges
,
123 .count
= ARRAY_SIZE(tuner_philips_secam_ranges
),
124 .cb_first_if_lower_freq
= 1,
128 /* ------------ TUNER_PHILIPS_PAL - Philips PAL ------------ */
130 static struct tuner_range tuner_philips_pal_ranges
[] = {
131 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
132 { 16 * 447.25 /*MHz*/, 0x8e, 0x90, },
133 { 16 * 999.99 , 0x8e, 0x30, },
136 static struct tuner_params tuner_philips_pal_params
[] = {
138 .type
= TUNER_PARAM_TYPE_PAL
,
139 .ranges
= tuner_philips_pal_ranges
,
140 .count
= ARRAY_SIZE(tuner_philips_pal_ranges
),
141 .cb_first_if_lower_freq
= 1,
145 /* ------------ TUNER_TEMIC_NTSC - TEMIC NTSC ------------ */
147 static struct tuner_range tuner_temic_ntsc_ranges
[] = {
148 { 16 * 157.25 /*MHz*/, 0x8e, 0x02, },
149 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
150 { 16 * 999.99 , 0x8e, 0x01, },
153 static struct tuner_params tuner_temic_ntsc_params
[] = {
155 .type
= TUNER_PARAM_TYPE_NTSC
,
156 .ranges
= tuner_temic_ntsc_ranges
,
157 .count
= ARRAY_SIZE(tuner_temic_ntsc_ranges
),
161 /* ------------ TUNER_TEMIC_PAL_I - TEMIC PAL_I ------------ */
163 static struct tuner_range tuner_temic_pal_i_ranges
[] = {
164 { 16 * 170.00 /*MHz*/, 0x8e, 0x02, },
165 { 16 * 450.00 /*MHz*/, 0x8e, 0x04, },
166 { 16 * 999.99 , 0x8e, 0x01, },
169 static struct tuner_params tuner_temic_pal_i_params
[] = {
171 .type
= TUNER_PARAM_TYPE_PAL
,
172 .ranges
= tuner_temic_pal_i_ranges
,
173 .count
= ARRAY_SIZE(tuner_temic_pal_i_ranges
),
177 /* ------------ TUNER_TEMIC_4036FY5_NTSC - TEMIC NTSC ------------ */
179 static struct tuner_range tuner_temic_4036fy5_ntsc_ranges
[] = {
180 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
181 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
182 { 16 * 999.99 , 0x8e, 0x30, },
185 static struct tuner_params tuner_temic_4036fy5_ntsc_params
[] = {
187 .type
= TUNER_PARAM_TYPE_NTSC
,
188 .ranges
= tuner_temic_4036fy5_ntsc_ranges
,
189 .count
= ARRAY_SIZE(tuner_temic_4036fy5_ntsc_ranges
),
193 /* ------------ TUNER_ALPS_TSBH1_NTSC - TEMIC NTSC ------------ */
195 static struct tuner_range tuner_alps_tsb_1_ranges
[] = {
196 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
197 { 16 * 385.25 /*MHz*/, 0x8e, 0x02, },
198 { 16 * 999.99 , 0x8e, 0x08, },
201 static struct tuner_params tuner_alps_tsbh1_ntsc_params
[] = {
203 .type
= TUNER_PARAM_TYPE_NTSC
,
204 .ranges
= tuner_alps_tsb_1_ranges
,
205 .count
= ARRAY_SIZE(tuner_alps_tsb_1_ranges
),
210 /* ------------ TUNER_ALPS_TSBE1_PAL - TEMIC PAL ------------ */
212 static struct tuner_params tuner_alps_tsb_1_params
[] = {
214 .type
= TUNER_PARAM_TYPE_PAL
,
215 .ranges
= tuner_alps_tsb_1_ranges
,
216 .count
= ARRAY_SIZE(tuner_alps_tsb_1_ranges
),
220 /* ------------ TUNER_ALPS_TSBB5_PAL_I - Alps PAL_I ------------ */
222 static struct tuner_range tuner_alps_tsb_5_pal_ranges
[] = {
223 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, },
224 { 16 * 351.25 /*MHz*/, 0x8e, 0x02, },
225 { 16 * 999.99 , 0x8e, 0x08, },
228 static struct tuner_params tuner_alps_tsbb5_params
[] = {
230 .type
= TUNER_PARAM_TYPE_PAL
,
231 .ranges
= tuner_alps_tsb_5_pal_ranges
,
232 .count
= ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges
),
236 /* ------------ TUNER_ALPS_TSBE5_PAL - Alps PAL ------------ */
238 static struct tuner_params tuner_alps_tsbe5_params
[] = {
240 .type
= TUNER_PARAM_TYPE_PAL
,
241 .ranges
= tuner_alps_tsb_5_pal_ranges
,
242 .count
= ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges
),
246 /* ------------ TUNER_ALPS_TSBC5_PAL - Alps PAL ------------ */
248 static struct tuner_params tuner_alps_tsbc5_params
[] = {
250 .type
= TUNER_PARAM_TYPE_PAL
,
251 .ranges
= tuner_alps_tsb_5_pal_ranges
,
252 .count
= ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges
),
256 /* ------------ TUNER_TEMIC_4006FH5_PAL - TEMIC PAL ------------ */
258 static struct tuner_range tuner_lg_pal_ranges
[] = {
259 { 16 * 170.00 /*MHz*/, 0x8e, 0xa0, },
260 { 16 * 450.00 /*MHz*/, 0x8e, 0x90, },
261 { 16 * 999.99 , 0x8e, 0x30, },
264 static struct tuner_params tuner_temic_4006fh5_params
[] = {
266 .type
= TUNER_PARAM_TYPE_PAL
,
267 .ranges
= tuner_lg_pal_ranges
,
268 .count
= ARRAY_SIZE(tuner_lg_pal_ranges
),
272 /* ------------ TUNER_ALPS_TSHC6_NTSC - Alps NTSC ------------ */
274 static struct tuner_range tuner_alps_tshc6_ntsc_ranges
[] = {
275 { 16 * 137.25 /*MHz*/, 0x8e, 0x14, },
276 { 16 * 385.25 /*MHz*/, 0x8e, 0x12, },
277 { 16 * 999.99 , 0x8e, 0x11, },
280 static struct tuner_params tuner_alps_tshc6_params
[] = {
282 .type
= TUNER_PARAM_TYPE_NTSC
,
283 .ranges
= tuner_alps_tshc6_ntsc_ranges
,
284 .count
= ARRAY_SIZE(tuner_alps_tshc6_ntsc_ranges
),
288 /* ------------ TUNER_TEMIC_PAL_DK - TEMIC PAL ------------ */
290 static struct tuner_range tuner_temic_pal_dk_ranges
[] = {
291 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
292 { 16 * 456.25 /*MHz*/, 0x8e, 0x90, },
293 { 16 * 999.99 , 0x8e, 0x30, },
296 static struct tuner_params tuner_temic_pal_dk_params
[] = {
298 .type
= TUNER_PARAM_TYPE_PAL
,
299 .ranges
= tuner_temic_pal_dk_ranges
,
300 .count
= ARRAY_SIZE(tuner_temic_pal_dk_ranges
),
304 /* ------------ TUNER_PHILIPS_NTSC_M - Philips NTSC ------------ */
306 static struct tuner_range tuner_philips_ntsc_m_ranges
[] = {
307 { 16 * 160.00 /*MHz*/, 0x8e, 0xa0, },
308 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
309 { 16 * 999.99 , 0x8e, 0x30, },
312 static struct tuner_params tuner_philips_ntsc_m_params
[] = {
314 .type
= TUNER_PARAM_TYPE_NTSC
,
315 .ranges
= tuner_philips_ntsc_m_ranges
,
316 .count
= ARRAY_SIZE(tuner_philips_ntsc_m_ranges
),
320 /* ------------ TUNER_TEMIC_4066FY5_PAL_I - TEMIC PAL_I ------------ */
322 static struct tuner_range tuner_temic_40x6f_5_pal_ranges
[] = {
323 { 16 * 169.00 /*MHz*/, 0x8e, 0xa0, },
324 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
325 { 16 * 999.99 , 0x8e, 0x30, },
328 static struct tuner_params tuner_temic_4066fy5_pal_i_params
[] = {
330 .type
= TUNER_PARAM_TYPE_PAL
,
331 .ranges
= tuner_temic_40x6f_5_pal_ranges
,
332 .count
= ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges
),
336 /* ------------ TUNER_TEMIC_4006FN5_MULTI_PAL - TEMIC PAL ------------ */
338 static struct tuner_params tuner_temic_4006fn5_multi_params
[] = {
340 .type
= TUNER_PARAM_TYPE_PAL
,
341 .ranges
= tuner_temic_40x6f_5_pal_ranges
,
342 .count
= ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges
),
347 /* ------------ TUNER_TEMIC_4009FR5_PAL - TEMIC PAL ------------ */
349 static struct tuner_range tuner_temic_4009f_5_pal_ranges
[] = {
350 { 16 * 141.00 /*MHz*/, 0x8e, 0xa0, },
351 { 16 * 464.00 /*MHz*/, 0x8e, 0x90, },
352 { 16 * 999.99 , 0x8e, 0x30, },
355 static struct tuner_params tuner_temic_4009f_5_params
[] = {
357 .type
= TUNER_PARAM_TYPE_PAL
,
358 .ranges
= tuner_temic_4009f_5_pal_ranges
,
359 .count
= ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges
),
363 /* ------------ TUNER_TEMIC_4039FR5_NTSC - TEMIC NTSC ------------ */
365 static struct tuner_range tuner_temic_4x3x_f_5_ntsc_ranges
[] = {
366 { 16 * 158.00 /*MHz*/, 0x8e, 0xa0, },
367 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
368 { 16 * 999.99 , 0x8e, 0x30, },
371 static struct tuner_params tuner_temic_4039fr5_params
[] = {
373 .type
= TUNER_PARAM_TYPE_NTSC
,
374 .ranges
= tuner_temic_4x3x_f_5_ntsc_ranges
,
375 .count
= ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges
),
379 /* ------------ TUNER_TEMIC_4046FM5 - TEMIC PAL ------------ */
381 static struct tuner_params tuner_temic_4046fm5_params
[] = {
383 .type
= TUNER_PARAM_TYPE_PAL
,
384 .ranges
= tuner_temic_40x6f_5_pal_ranges
,
385 .count
= ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges
),
389 /* ------------ TUNER_PHILIPS_PAL_DK - Philips PAL ------------ */
391 static struct tuner_params tuner_philips_pal_dk_params
[] = {
393 .type
= TUNER_PARAM_TYPE_PAL
,
394 .ranges
= tuner_lg_pal_ranges
,
395 .count
= ARRAY_SIZE(tuner_lg_pal_ranges
),
399 /* ------------ TUNER_PHILIPS_FQ1216ME - Philips PAL ------------ */
401 static struct tuner_params tuner_philips_fq1216me_params
[] = {
403 .type
= TUNER_PARAM_TYPE_PAL
,
404 .ranges
= tuner_lg_pal_ranges
,
405 .count
= ARRAY_SIZE(tuner_lg_pal_ranges
),
409 .port2_invert_for_secam_lc
= 1,
413 /* ------------ TUNER_LG_PAL_I_FM - LGINNOTEK PAL_I ------------ */
415 static struct tuner_params tuner_lg_pal_i_fm_params
[] = {
417 .type
= TUNER_PARAM_TYPE_PAL
,
418 .ranges
= tuner_lg_pal_ranges
,
419 .count
= ARRAY_SIZE(tuner_lg_pal_ranges
),
423 /* ------------ TUNER_LG_PAL_I - LGINNOTEK PAL_I ------------ */
425 static struct tuner_params tuner_lg_pal_i_params
[] = {
427 .type
= TUNER_PARAM_TYPE_PAL
,
428 .ranges
= tuner_lg_pal_ranges
,
429 .count
= ARRAY_SIZE(tuner_lg_pal_ranges
),
433 /* ------------ TUNER_LG_NTSC_FM - LGINNOTEK NTSC ------------ */
435 static struct tuner_range tuner_lg_ntsc_fm_ranges
[] = {
436 { 16 * 210.00 /*MHz*/, 0x8e, 0xa0, },
437 { 16 * 497.00 /*MHz*/, 0x8e, 0x90, },
438 { 16 * 999.99 , 0x8e, 0x30, },
441 static struct tuner_params tuner_lg_ntsc_fm_params
[] = {
443 .type
= TUNER_PARAM_TYPE_NTSC
,
444 .ranges
= tuner_lg_ntsc_fm_ranges
,
445 .count
= ARRAY_SIZE(tuner_lg_ntsc_fm_ranges
),
449 /* ------------ TUNER_LG_PAL_FM - LGINNOTEK PAL ------------ */
451 static struct tuner_params tuner_lg_pal_fm_params
[] = {
453 .type
= TUNER_PARAM_TYPE_PAL
,
454 .ranges
= tuner_lg_pal_ranges
,
455 .count
= ARRAY_SIZE(tuner_lg_pal_ranges
),
459 /* ------------ TUNER_LG_PAL - LGINNOTEK PAL ------------ */
461 static struct tuner_params tuner_lg_pal_params
[] = {
463 .type
= TUNER_PARAM_TYPE_PAL
,
464 .ranges
= tuner_lg_pal_ranges
,
465 .count
= ARRAY_SIZE(tuner_lg_pal_ranges
),
470 /* ------------ TUNER_TEMIC_4009FN5_MULTI_PAL_FM - TEMIC PAL ------------ */
472 static struct tuner_params tuner_temic_4009_fn5_multi_pal_fm_params
[] = {
474 .type
= TUNER_PARAM_TYPE_PAL
,
475 .ranges
= tuner_temic_4009f_5_pal_ranges
,
476 .count
= ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges
),
480 /* ------------ TUNER_SHARP_2U5JF5540_NTSC - SHARP NTSC ------------ */
482 static struct tuner_range tuner_sharp_2u5jf5540_ntsc_ranges
[] = {
483 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
484 { 16 * 317.25 /*MHz*/, 0x8e, 0x02, },
485 { 16 * 999.99 , 0x8e, 0x08, },
488 static struct tuner_params tuner_sharp_2u5jf5540_params
[] = {
490 .type
= TUNER_PARAM_TYPE_NTSC
,
491 .ranges
= tuner_sharp_2u5jf5540_ntsc_ranges
,
492 .count
= ARRAY_SIZE(tuner_sharp_2u5jf5540_ntsc_ranges
),
496 /* ------------ TUNER_Samsung_PAL_TCPM9091PD27 - Samsung PAL ------------ */
498 static struct tuner_range tuner_samsung_pal_tcpm9091pd27_ranges
[] = {
499 { 16 * 169 /*MHz*/, 0x8e, 0xa0, },
500 { 16 * 464 /*MHz*/, 0x8e, 0x90, },
501 { 16 * 999.99 , 0x8e, 0x30, },
504 static struct tuner_params tuner_samsung_pal_tcpm9091pd27_params
[] = {
506 .type
= TUNER_PARAM_TYPE_PAL
,
507 .ranges
= tuner_samsung_pal_tcpm9091pd27_ranges
,
508 .count
= ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_ranges
),
512 /* ------------ TUNER_TEMIC_4106FH5 - TEMIC PAL ------------ */
514 static struct tuner_params tuner_temic_4106fh5_params
[] = {
516 .type
= TUNER_PARAM_TYPE_PAL
,
517 .ranges
= tuner_temic_4009f_5_pal_ranges
,
518 .count
= ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges
),
522 /* ------------ TUNER_TEMIC_4012FY5 - TEMIC PAL ------------ */
524 static struct tuner_params tuner_temic_4012fy5_params
[] = {
526 .type
= TUNER_PARAM_TYPE_PAL
,
527 .ranges
= tuner_temic_pal_ranges
,
528 .count
= ARRAY_SIZE(tuner_temic_pal_ranges
),
532 /* ------------ TUNER_TEMIC_4136FY5 - TEMIC NTSC ------------ */
534 static struct tuner_params tuner_temic_4136_fy5_params
[] = {
536 .type
= TUNER_PARAM_TYPE_NTSC
,
537 .ranges
= tuner_temic_4x3x_f_5_ntsc_ranges
,
538 .count
= ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges
),
542 /* ------------ TUNER_LG_PAL_NEW_TAPC - LGINNOTEK PAL ------------ */
544 static struct tuner_range tuner_lg_new_tapc_ranges
[] = {
545 { 16 * 170.00 /*MHz*/, 0x8e, 0x01, },
546 { 16 * 450.00 /*MHz*/, 0x8e, 0x02, },
547 { 16 * 999.99 , 0x8e, 0x08, },
550 static struct tuner_params tuner_lg_pal_new_tapc_params
[] = {
552 .type
= TUNER_PARAM_TYPE_PAL
,
553 .ranges
= tuner_lg_new_tapc_ranges
,
554 .count
= ARRAY_SIZE(tuner_lg_new_tapc_ranges
),
558 /* ------------ TUNER_PHILIPS_FM1216ME_MK3 - Philips PAL ------------ */
560 static struct tuner_range tuner_fm1216me_mk3_pal_ranges
[] = {
561 { 16 * 158.00 /*MHz*/, 0x8e, 0x01, },
562 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
563 { 16 * 999.99 , 0x8e, 0x04, },
566 static struct tuner_params tuner_fm1216me_mk3_params
[] = {
568 .type
= TUNER_PARAM_TYPE_PAL
,
569 .ranges
= tuner_fm1216me_mk3_pal_ranges
,
570 .count
= ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges
),
571 .cb_first_if_lower_freq
= 1,
575 .port2_invert_for_secam_lc
= 1,
576 .port1_fm_high_sensitivity
= 1,
577 .default_top_mid
= -2,
578 .default_top_secam_mid
= -2,
579 .default_top_secam_high
= -2,
583 /* ------------ TUNER_PHILIPS_FM1216MK5 - Philips PAL ------------ */
585 static struct tuner_range tuner_fm1216mk5_pal_ranges
[] = {
586 { 16 * 158.00 /*MHz*/, 0xce, 0x01, },
587 { 16 * 441.00 /*MHz*/, 0xce, 0x02, },
588 { 16 * 864.00 , 0xce, 0x04, },
591 static struct tuner_params tuner_fm1216mk5_params
[] = {
593 .type
= TUNER_PARAM_TYPE_PAL
,
594 .ranges
= tuner_fm1216mk5_pal_ranges
,
595 .count
= ARRAY_SIZE(tuner_fm1216mk5_pal_ranges
),
596 .cb_first_if_lower_freq
= 1,
600 .port2_invert_for_secam_lc
= 1,
601 .port1_fm_high_sensitivity
= 1,
602 .default_top_mid
= -2,
603 .default_top_secam_mid
= -2,
604 .default_top_secam_high
= -2,
608 /* ------------ TUNER_LG_NTSC_NEW_TAPC - LGINNOTEK NTSC ------------ */
610 static struct tuner_params tuner_lg_ntsc_new_tapc_params
[] = {
612 .type
= TUNER_PARAM_TYPE_NTSC
,
613 .ranges
= tuner_lg_new_tapc_ranges
,
614 .count
= ARRAY_SIZE(tuner_lg_new_tapc_ranges
),
619 /* ------------ TUNER_HITACHI_NTSC - HITACHI NTSC ------------ */
621 static struct tuner_params tuner_hitachi_ntsc_params
[] = {
623 .type
= TUNER_PARAM_TYPE_NTSC
,
624 .ranges
= tuner_lg_new_tapc_ranges
,
625 .count
= ARRAY_SIZE(tuner_lg_new_tapc_ranges
),
629 /* ------------ TUNER_PHILIPS_PAL_MK - Philips PAL ------------ */
631 static struct tuner_range tuner_philips_pal_mk_pal_ranges
[] = {
632 { 16 * 140.25 /*MHz*/, 0x8e, 0x01, },
633 { 16 * 463.25 /*MHz*/, 0x8e, 0xc2, },
634 { 16 * 999.99 , 0x8e, 0xcf, },
637 static struct tuner_params tuner_philips_pal_mk_params
[] = {
639 .type
= TUNER_PARAM_TYPE_PAL
,
640 .ranges
= tuner_philips_pal_mk_pal_ranges
,
641 .count
= ARRAY_SIZE(tuner_philips_pal_mk_pal_ranges
),
645 /* ---- TUNER_PHILIPS_FCV1236D - Philips FCV1236D (ATSC/NTSC) ---- */
647 static struct tuner_range tuner_philips_fcv1236d_ntsc_ranges
[] = {
648 { 16 * 157.25 /*MHz*/, 0x8e, 0xa2, },
649 { 16 * 451.25 /*MHz*/, 0x8e, 0x92, },
650 { 16 * 999.99 , 0x8e, 0x32, },
653 static struct tuner_range tuner_philips_fcv1236d_atsc_ranges
[] = {
654 { 16 * 159.00 /*MHz*/, 0x8e, 0xa0, },
655 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
656 { 16 * 999.99 , 0x8e, 0x30, },
659 static struct tuner_params tuner_philips_fcv1236d_params
[] = {
661 .type
= TUNER_PARAM_TYPE_NTSC
,
662 .ranges
= tuner_philips_fcv1236d_ntsc_ranges
,
663 .count
= ARRAY_SIZE(tuner_philips_fcv1236d_ntsc_ranges
),
666 .type
= TUNER_PARAM_TYPE_DIGITAL
,
667 .ranges
= tuner_philips_fcv1236d_atsc_ranges
,
668 .count
= ARRAY_SIZE(tuner_philips_fcv1236d_atsc_ranges
),
669 .iffreq
= 16 * 44.00,
673 /* ------------ TUNER_PHILIPS_FM1236_MK3 - Philips NTSC ------------ */
675 static struct tuner_range tuner_fm1236_mk3_ntsc_ranges
[] = {
676 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
677 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
678 { 16 * 999.99 , 0x8e, 0x04, },
681 static struct tuner_params tuner_fm1236_mk3_params
[] = {
683 .type
= TUNER_PARAM_TYPE_NTSC
,
684 .ranges
= tuner_fm1236_mk3_ntsc_ranges
,
685 .count
= ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges
),
686 .cb_first_if_lower_freq
= 1,
690 .port1_fm_high_sensitivity
= 1,
694 /* ------------ TUNER_PHILIPS_4IN1 - Philips NTSC ------------ */
696 static struct tuner_params tuner_philips_4in1_params
[] = {
698 .type
= TUNER_PARAM_TYPE_NTSC
,
699 .ranges
= tuner_fm1236_mk3_ntsc_ranges
,
700 .count
= ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges
),
704 /* ------------ TUNER_MICROTUNE_4049FM5 - Microtune PAL ------------ */
706 static struct tuner_params tuner_microtune_4049_fm5_params
[] = {
708 .type
= TUNER_PARAM_TYPE_PAL
,
709 .ranges
= tuner_temic_4009f_5_pal_ranges
,
710 .count
= ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges
),
712 .port1_invert_for_secam_lc
= 1,
713 .default_pll_gating_18
= 1,
715 .radio_if
= 1, /* 33.3 MHz */
719 /* ------------ TUNER_PANASONIC_VP27 - Panasonic NTSC ------------ */
721 static struct tuner_range tuner_panasonic_vp27_ntsc_ranges
[] = {
722 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
723 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
724 { 16 * 999.99 , 0xce, 0x08, },
727 static struct tuner_params tuner_panasonic_vp27_params
[] = {
729 .type
= TUNER_PARAM_TYPE_NTSC
,
730 .ranges
= tuner_panasonic_vp27_ntsc_ranges
,
731 .count
= ARRAY_SIZE(tuner_panasonic_vp27_ntsc_ranges
),
733 .intercarrier_mode
= 1,
734 .default_top_low
= -3,
735 .default_top_mid
= -3,
736 .default_top_high
= -3,
740 /* ------------ TUNER_TNF_8831BGFF - Philips PAL ------------ */
742 static struct tuner_range tuner_tnf_8831bgff_pal_ranges
[] = {
743 { 16 * 161.25 /*MHz*/, 0x8e, 0xa0, },
744 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
745 { 16 * 999.99 , 0x8e, 0x30, },
748 static struct tuner_params tuner_tnf_8831bgff_params
[] = {
750 .type
= TUNER_PARAM_TYPE_PAL
,
751 .ranges
= tuner_tnf_8831bgff_pal_ranges
,
752 .count
= ARRAY_SIZE(tuner_tnf_8831bgff_pal_ranges
),
756 /* ------------ TUNER_MICROTUNE_4042FI5 - Microtune NTSC ------------ */
758 static struct tuner_range tuner_microtune_4042fi5_ntsc_ranges
[] = {
759 { 16 * 162.00 /*MHz*/, 0x8e, 0xa2, },
760 { 16 * 457.00 /*MHz*/, 0x8e, 0x94, },
761 { 16 * 999.99 , 0x8e, 0x31, },
764 static struct tuner_range tuner_microtune_4042fi5_atsc_ranges
[] = {
765 { 16 * 162.00 /*MHz*/, 0x8e, 0xa1, },
766 { 16 * 457.00 /*MHz*/, 0x8e, 0x91, },
767 { 16 * 999.99 , 0x8e, 0x31, },
770 static struct tuner_params tuner_microtune_4042fi5_params
[] = {
772 .type
= TUNER_PARAM_TYPE_NTSC
,
773 .ranges
= tuner_microtune_4042fi5_ntsc_ranges
,
774 .count
= ARRAY_SIZE(tuner_microtune_4042fi5_ntsc_ranges
),
777 .type
= TUNER_PARAM_TYPE_DIGITAL
,
778 .ranges
= tuner_microtune_4042fi5_atsc_ranges
,
779 .count
= ARRAY_SIZE(tuner_microtune_4042fi5_atsc_ranges
),
780 .iffreq
= 16 * 44.00 /*MHz*/,
785 /* ------------ TUNER_TCL_2002N - TCL NTSC ------------ */
787 static struct tuner_range tuner_tcl_2002n_ntsc_ranges
[] = {
788 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
789 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
790 { 16 * 999.99 , 0x8e, 0x08, },
793 static struct tuner_params tuner_tcl_2002n_params
[] = {
795 .type
= TUNER_PARAM_TYPE_NTSC
,
796 .ranges
= tuner_tcl_2002n_ntsc_ranges
,
797 .count
= ARRAY_SIZE(tuner_tcl_2002n_ntsc_ranges
),
798 .cb_first_if_lower_freq
= 1,
802 /* ------------ TUNER_PHILIPS_FM1256_IH3 - Philips PAL ------------ */
804 static struct tuner_params tuner_philips_fm1256_ih3_params
[] = {
806 .type
= TUNER_PARAM_TYPE_PAL
,
807 .ranges
= tuner_fm1236_mk3_ntsc_ranges
,
808 .count
= ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges
),
809 .radio_if
= 1, /* 33.3 MHz */
813 /* ------------ TUNER_THOMSON_DTT7610 - THOMSON ATSC ------------ */
815 /* single range used for both ntsc and atsc */
816 static struct tuner_range tuner_thomson_dtt7610_ntsc_ranges
[] = {
817 { 16 * 157.25 /*MHz*/, 0x8e, 0x39, },
818 { 16 * 454.00 /*MHz*/, 0x8e, 0x3a, },
819 { 16 * 999.99 , 0x8e, 0x3c, },
822 static struct tuner_params tuner_thomson_dtt7610_params
[] = {
824 .type
= TUNER_PARAM_TYPE_NTSC
,
825 .ranges
= tuner_thomson_dtt7610_ntsc_ranges
,
826 .count
= ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges
),
829 .type
= TUNER_PARAM_TYPE_DIGITAL
,
830 .ranges
= tuner_thomson_dtt7610_ntsc_ranges
,
831 .count
= ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges
),
832 .iffreq
= 16 * 44.00 /*MHz*/,
836 /* ------------ TUNER_PHILIPS_FQ1286 - Philips NTSC ------------ */
838 static struct tuner_range tuner_philips_fq1286_ntsc_ranges
[] = {
839 { 16 * 160.00 /*MHz*/, 0x8e, 0x41, },
840 { 16 * 454.00 /*MHz*/, 0x8e, 0x42, },
841 { 16 * 999.99 , 0x8e, 0x04, },
844 static struct tuner_params tuner_philips_fq1286_params
[] = {
846 .type
= TUNER_PARAM_TYPE_NTSC
,
847 .ranges
= tuner_philips_fq1286_ntsc_ranges
,
848 .count
= ARRAY_SIZE(tuner_philips_fq1286_ntsc_ranges
),
852 /* ------------ TUNER_TCL_2002MB - TCL PAL ------------ */
854 static struct tuner_range tuner_tcl_2002mb_pal_ranges
[] = {
855 { 16 * 170.00 /*MHz*/, 0xce, 0x01, },
856 { 16 * 450.00 /*MHz*/, 0xce, 0x02, },
857 { 16 * 999.99 , 0xce, 0x08, },
860 static struct tuner_params tuner_tcl_2002mb_params
[] = {
862 .type
= TUNER_PARAM_TYPE_PAL
,
863 .ranges
= tuner_tcl_2002mb_pal_ranges
,
864 .count
= ARRAY_SIZE(tuner_tcl_2002mb_pal_ranges
),
868 /* ------------ TUNER_PHILIPS_FQ1216AME_MK4 - Philips PAL ------------ */
870 static struct tuner_range tuner_philips_fq12_6a___mk4_pal_ranges
[] = {
871 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
872 { 16 * 442.00 /*MHz*/, 0xce, 0x02, },
873 { 16 * 999.99 , 0xce, 0x04, },
876 static struct tuner_params tuner_philips_fq1216ame_mk4_params
[] = {
878 .type
= TUNER_PARAM_TYPE_PAL
,
879 .ranges
= tuner_philips_fq12_6a___mk4_pal_ranges
,
880 .count
= ARRAY_SIZE(tuner_philips_fq12_6a___mk4_pal_ranges
),
883 .port2_invert_for_secam_lc
= 1,
884 .default_top_mid
= -2,
885 .default_top_secam_low
= -2,
886 .default_top_secam_mid
= -2,
887 .default_top_secam_high
= -2,
891 /* ------------ TUNER_PHILIPS_FQ1236A_MK4 - Philips NTSC ------------ */
893 static struct tuner_params tuner_philips_fq1236a_mk4_params
[] = {
895 .type
= TUNER_PARAM_TYPE_NTSC
,
896 .ranges
= tuner_fm1236_mk3_ntsc_ranges
,
897 .count
= ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges
),
901 /* ------------ TUNER_YMEC_TVF_8531MF - Philips NTSC ------------ */
903 static struct tuner_params tuner_ymec_tvf_8531mf_params
[] = {
905 .type
= TUNER_PARAM_TYPE_NTSC
,
906 .ranges
= tuner_philips_ntsc_m_ranges
,
907 .count
= ARRAY_SIZE(tuner_philips_ntsc_m_ranges
),
911 /* ------------ TUNER_YMEC_TVF_5533MF - Philips NTSC ------------ */
913 static struct tuner_range tuner_ymec_tvf_5533mf_ntsc_ranges
[] = {
914 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
915 { 16 * 454.00 /*MHz*/, 0x8e, 0x02, },
916 { 16 * 999.99 , 0x8e, 0x04, },
919 static struct tuner_params tuner_ymec_tvf_5533mf_params
[] = {
921 .type
= TUNER_PARAM_TYPE_NTSC
,
922 .ranges
= tuner_ymec_tvf_5533mf_ntsc_ranges
,
923 .count
= ARRAY_SIZE(tuner_ymec_tvf_5533mf_ntsc_ranges
),
928 /* ------------ TUNER_THOMSON_DTT761X - THOMSON ATSC ------------ */
929 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
931 static struct tuner_range tuner_thomson_dtt761x_ntsc_ranges
[] = {
932 { 16 * 145.25 /*MHz*/, 0x8e, 0x39, },
933 { 16 * 415.25 /*MHz*/, 0x8e, 0x3a, },
934 { 16 * 999.99 , 0x8e, 0x3c, },
937 static struct tuner_range tuner_thomson_dtt761x_atsc_ranges
[] = {
938 { 16 * 147.00 /*MHz*/, 0x8e, 0x39, },
939 { 16 * 417.00 /*MHz*/, 0x8e, 0x3a, },
940 { 16 * 999.99 , 0x8e, 0x3c, },
943 static struct tuner_params tuner_thomson_dtt761x_params
[] = {
945 .type
= TUNER_PARAM_TYPE_NTSC
,
946 .ranges
= tuner_thomson_dtt761x_ntsc_ranges
,
947 .count
= ARRAY_SIZE(tuner_thomson_dtt761x_ntsc_ranges
),
950 .radio_if
= 2, /* 41.3 MHz */
953 .type
= TUNER_PARAM_TYPE_DIGITAL
,
954 .ranges
= tuner_thomson_dtt761x_atsc_ranges
,
955 .count
= ARRAY_SIZE(tuner_thomson_dtt761x_atsc_ranges
),
956 .iffreq
= 16 * 44.00, /*MHz*/
960 /* ------------ TUNER_TENA_9533_DI - Philips PAL ------------ */
962 static struct tuner_range tuner_tena_9533_di_pal_ranges
[] = {
963 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
964 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
965 { 16 * 999.99 , 0x8e, 0x04, },
968 static struct tuner_params tuner_tena_9533_di_params
[] = {
970 .type
= TUNER_PARAM_TYPE_PAL
,
971 .ranges
= tuner_tena_9533_di_pal_ranges
,
972 .count
= ARRAY_SIZE(tuner_tena_9533_di_pal_ranges
),
976 /* ------------ TUNER_TENA_TNF_5337 - Tena tnf5337MFD STD M/N ------------ */
978 static struct tuner_range tuner_tena_tnf_5337_ntsc_ranges
[] = {
979 { 16 * 166.25 /*MHz*/, 0x86, 0x01, },
980 { 16 * 466.25 /*MHz*/, 0x86, 0x02, },
981 { 16 * 999.99 , 0x86, 0x08, },
984 static struct tuner_params tuner_tena_tnf_5337_params
[] = {
986 .type
= TUNER_PARAM_TYPE_NTSC
,
987 .ranges
= tuner_tena_tnf_5337_ntsc_ranges
,
988 .count
= ARRAY_SIZE(tuner_tena_tnf_5337_ntsc_ranges
),
992 /* ------------ TUNER_PHILIPS_FMD1216ME(X)_MK3 - Philips PAL ------------ */
994 static struct tuner_range tuner_philips_fmd1216me_mk3_pal_ranges
[] = {
995 { 16 * 160.00 /*MHz*/, 0x86, 0x51, },
996 { 16 * 442.00 /*MHz*/, 0x86, 0x52, },
997 { 16 * 999.99 , 0x86, 0x54, },
1000 static struct tuner_range tuner_philips_fmd1216me_mk3_dvb_ranges
[] = {
1001 { 16 * 143.87 /*MHz*/, 0xbc, 0x41 },
1002 { 16 * 158.87 /*MHz*/, 0xf4, 0x41 },
1003 { 16 * 329.87 /*MHz*/, 0xbc, 0x42 },
1004 { 16 * 441.87 /*MHz*/, 0xf4, 0x42 },
1005 { 16 * 625.87 /*MHz*/, 0xbc, 0x44 },
1006 { 16 * 803.87 /*MHz*/, 0xf4, 0x44 },
1007 { 16 * 999.99 , 0xfc, 0x44 },
1010 static struct tuner_params tuner_philips_fmd1216me_mk3_params
[] = {
1012 .type
= TUNER_PARAM_TYPE_PAL
,
1013 .ranges
= tuner_philips_fmd1216me_mk3_pal_ranges
,
1014 .count
= ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges
),
1018 .port2_fm_high_sensitivity
= 1,
1019 .port2_invert_for_secam_lc
= 1,
1020 .port1_set_for_fm_mono
= 1,
1023 .type
= TUNER_PARAM_TYPE_DIGITAL
,
1024 .ranges
= tuner_philips_fmd1216me_mk3_dvb_ranges
,
1025 .count
= ARRAY_SIZE(tuner_philips_fmd1216me_mk3_dvb_ranges
),
1026 .iffreq
= 16 * 36.125, /*MHz*/
1030 static struct tuner_params tuner_philips_fmd1216mex_mk3_params
[] = {
1032 .type
= TUNER_PARAM_TYPE_PAL
,
1033 .ranges
= tuner_philips_fmd1216me_mk3_pal_ranges
,
1034 .count
= ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges
),
1038 .port2_fm_high_sensitivity
= 1,
1039 .port2_invert_for_secam_lc
= 1,
1040 .port1_set_for_fm_mono
= 1,
1042 .fm_gain_normal
= 1,
1045 .type
= TUNER_PARAM_TYPE_DIGITAL
,
1046 .ranges
= tuner_philips_fmd1216me_mk3_dvb_ranges
,
1047 .count
= ARRAY_SIZE(tuner_philips_fmd1216me_mk3_dvb_ranges
),
1048 .iffreq
= 16 * 36.125, /*MHz*/
1052 /* ------ TUNER_LG_TDVS_H06XF - LG INNOTEK / INFINEON ATSC ----- */
1054 static struct tuner_range tuner_tua6034_ntsc_ranges
[] = {
1055 { 16 * 165.00 /*MHz*/, 0x8e, 0x01 },
1056 { 16 * 450.00 /*MHz*/, 0x8e, 0x02 },
1057 { 16 * 999.99 , 0x8e, 0x04 },
1060 static struct tuner_range tuner_tua6034_atsc_ranges
[] = {
1061 { 16 * 165.00 /*MHz*/, 0xce, 0x01 },
1062 { 16 * 450.00 /*MHz*/, 0xce, 0x02 },
1063 { 16 * 999.99 , 0xce, 0x04 },
1066 static struct tuner_params tuner_lg_tdvs_h06xf_params
[] = {
1068 .type
= TUNER_PARAM_TYPE_NTSC
,
1069 .ranges
= tuner_tua6034_ntsc_ranges
,
1070 .count
= ARRAY_SIZE(tuner_tua6034_ntsc_ranges
),
1073 .type
= TUNER_PARAM_TYPE_DIGITAL
,
1074 .ranges
= tuner_tua6034_atsc_ranges
,
1075 .count
= ARRAY_SIZE(tuner_tua6034_atsc_ranges
),
1076 .iffreq
= 16 * 44.00,
1080 /* ------------ TUNER_YMEC_TVF66T5_B_DFF - Philips PAL ------------ */
1082 static struct tuner_range tuner_ymec_tvf66t5_b_dff_pal_ranges
[] = {
1083 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
1084 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
1085 { 16 * 999.99 , 0x8e, 0x08, },
1088 static struct tuner_params tuner_ymec_tvf66t5_b_dff_params
[] = {
1090 .type
= TUNER_PARAM_TYPE_PAL
,
1091 .ranges
= tuner_ymec_tvf66t5_b_dff_pal_ranges
,
1092 .count
= ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_pal_ranges
),
1096 /* ------------ TUNER_LG_NTSC_TALN_MINI - LGINNOTEK NTSC ------------ */
1098 static struct tuner_range tuner_lg_taln_ntsc_ranges
[] = {
1099 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
1100 { 16 * 373.25 /*MHz*/, 0x8e, 0x02, },
1101 { 16 * 999.99 , 0x8e, 0x08, },
1104 static struct tuner_range tuner_lg_taln_pal_secam_ranges
[] = {
1105 { 16 * 150.00 /*MHz*/, 0x8e, 0x01, },
1106 { 16 * 425.00 /*MHz*/, 0x8e, 0x02, },
1107 { 16 * 999.99 , 0x8e, 0x08, },
1110 static struct tuner_params tuner_lg_taln_params
[] = {
1112 .type
= TUNER_PARAM_TYPE_NTSC
,
1113 .ranges
= tuner_lg_taln_ntsc_ranges
,
1114 .count
= ARRAY_SIZE(tuner_lg_taln_ntsc_ranges
),
1116 .type
= TUNER_PARAM_TYPE_PAL
,
1117 .ranges
= tuner_lg_taln_pal_secam_ranges
,
1118 .count
= ARRAY_SIZE(tuner_lg_taln_pal_secam_ranges
),
1122 /* ------------ TUNER_PHILIPS_TD1316 - Philips PAL ------------ */
1124 static struct tuner_range tuner_philips_td1316_pal_ranges
[] = {
1125 { 16 * 160.00 /*MHz*/, 0xc8, 0xa1, },
1126 { 16 * 442.00 /*MHz*/, 0xc8, 0xa2, },
1127 { 16 * 999.99 , 0xc8, 0xa4, },
1130 static struct tuner_range tuner_philips_td1316_dvb_ranges
[] = {
1131 { 16 * 93.834 /*MHz*/, 0xca, 0x60, },
1132 { 16 * 123.834 /*MHz*/, 0xca, 0xa0, },
1133 { 16 * 163.834 /*MHz*/, 0xca, 0xc0, },
1134 { 16 * 253.834 /*MHz*/, 0xca, 0x60, },
1135 { 16 * 383.834 /*MHz*/, 0xca, 0xa0, },
1136 { 16 * 443.834 /*MHz*/, 0xca, 0xc0, },
1137 { 16 * 583.834 /*MHz*/, 0xca, 0x60, },
1138 { 16 * 793.834 /*MHz*/, 0xca, 0xa0, },
1139 { 16 * 999.999 , 0xca, 0xe0, },
1142 static struct tuner_params tuner_philips_td1316_params
[] = {
1144 .type
= TUNER_PARAM_TYPE_PAL
,
1145 .ranges
= tuner_philips_td1316_pal_ranges
,
1146 .count
= ARRAY_SIZE(tuner_philips_td1316_pal_ranges
),
1149 .type
= TUNER_PARAM_TYPE_DIGITAL
,
1150 .ranges
= tuner_philips_td1316_dvb_ranges
,
1151 .count
= ARRAY_SIZE(tuner_philips_td1316_dvb_ranges
),
1152 .iffreq
= 16 * 36.166667 /*MHz*/,
1156 /* ------------ TUNER_PHILIPS_TUV1236D - Philips ATSC ------------ */
1158 static struct tuner_range tuner_tuv1236d_ntsc_ranges
[] = {
1159 { 16 * 157.25 /*MHz*/, 0xce, 0x01, },
1160 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
1161 { 16 * 999.99 , 0xce, 0x04, },
1164 static struct tuner_range tuner_tuv1236d_atsc_ranges
[] = {
1165 { 16 * 157.25 /*MHz*/, 0xc6, 0x41, },
1166 { 16 * 454.00 /*MHz*/, 0xc6, 0x42, },
1167 { 16 * 999.99 , 0xc6, 0x44, },
1170 static struct tuner_params tuner_tuv1236d_params
[] = {
1172 .type
= TUNER_PARAM_TYPE_NTSC
,
1173 .ranges
= tuner_tuv1236d_ntsc_ranges
,
1174 .count
= ARRAY_SIZE(tuner_tuv1236d_ntsc_ranges
),
1177 .type
= TUNER_PARAM_TYPE_DIGITAL
,
1178 .ranges
= tuner_tuv1236d_atsc_ranges
,
1179 .count
= ARRAY_SIZE(tuner_tuv1236d_atsc_ranges
),
1180 .iffreq
= 16 * 44.00,
1184 /* ------------ TUNER_TNF_xxx5 - Texas Instruments--------- */
1185 /* This is known to work with Tenna TVF58t5-MFF and TVF5835 MFF
1186 * but it is expected to work also with other Tenna/Ymec
1187 * models based on TI SN 761677 chip on both PAL and NTSC
1190 static struct tuner_range tuner_tnf_5335_d_if_pal_ranges
[] = {
1191 { 16 * 168.25 /*MHz*/, 0x8e, 0x01, },
1192 { 16 * 471.25 /*MHz*/, 0x8e, 0x02, },
1193 { 16 * 999.99 , 0x8e, 0x08, },
1196 static struct tuner_range tuner_tnf_5335mf_ntsc_ranges
[] = {
1197 { 16 * 169.25 /*MHz*/, 0x8e, 0x01, },
1198 { 16 * 469.25 /*MHz*/, 0x8e, 0x02, },
1199 { 16 * 999.99 , 0x8e, 0x08, },
1202 static struct tuner_params tuner_tnf_5335mf_params
[] = {
1204 .type
= TUNER_PARAM_TYPE_NTSC
,
1205 .ranges
= tuner_tnf_5335mf_ntsc_ranges
,
1206 .count
= ARRAY_SIZE(tuner_tnf_5335mf_ntsc_ranges
),
1209 .type
= TUNER_PARAM_TYPE_PAL
,
1210 .ranges
= tuner_tnf_5335_d_if_pal_ranges
,
1211 .count
= ARRAY_SIZE(tuner_tnf_5335_d_if_pal_ranges
),
1216 /* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */
1218 /* '+ 4' turns on the Low Noise Amplifier */
1219 static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges
[] = {
1220 { 16 * 130.00 /*MHz*/, 0xce, 0x01 + 4, },
1221 { 16 * 364.50 /*MHz*/, 0xce, 0x02 + 4, },
1222 { 16 * 999.99 , 0xce, 0x08 + 4, },
1225 static struct tuner_params tuner_samsung_tcpn_2121p30a_params
[] = {
1227 .type
= TUNER_PARAM_TYPE_NTSC
,
1228 .ranges
= tuner_samsung_tcpn_2121p30a_ntsc_ranges
,
1229 .count
= ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_ntsc_ranges
),
1233 /* ------------ TUNER_THOMSON_FE6600 - DViCO Hybrid PAL ------------ */
1235 static struct tuner_range tuner_thomson_fe6600_pal_ranges
[] = {
1236 { 16 * 160.00 /*MHz*/, 0xfe, 0x11, },
1237 { 16 * 442.00 /*MHz*/, 0xf6, 0x12, },
1238 { 16 * 999.99 , 0xf6, 0x18, },
1241 static struct tuner_range tuner_thomson_fe6600_dvb_ranges
[] = {
1242 { 16 * 250.00 /*MHz*/, 0xb4, 0x12, },
1243 { 16 * 455.00 /*MHz*/, 0xfe, 0x11, },
1244 { 16 * 775.50 /*MHz*/, 0xbc, 0x18, },
1245 { 16 * 999.99 , 0xf4, 0x18, },
1248 static struct tuner_params tuner_thomson_fe6600_params
[] = {
1250 .type
= TUNER_PARAM_TYPE_PAL
,
1251 .ranges
= tuner_thomson_fe6600_pal_ranges
,
1252 .count
= ARRAY_SIZE(tuner_thomson_fe6600_pal_ranges
),
1255 .type
= TUNER_PARAM_TYPE_DIGITAL
,
1256 .ranges
= tuner_thomson_fe6600_dvb_ranges
,
1257 .count
= ARRAY_SIZE(tuner_thomson_fe6600_dvb_ranges
),
1258 .iffreq
= 16 * 36.125 /*MHz*/,
1262 /* ------------ TUNER_SAMSUNG_TCPG_6121P30A - Samsung PAL ------------ */
1264 /* '+ 4' turns on the Low Noise Amplifier */
1265 static struct tuner_range tuner_samsung_tcpg_6121p30a_pal_ranges
[] = {
1266 { 16 * 146.25 /*MHz*/, 0xce, 0x01 + 4, },
1267 { 16 * 428.50 /*MHz*/, 0xce, 0x02 + 4, },
1268 { 16 * 999.99 , 0xce, 0x08 + 4, },
1271 static struct tuner_params tuner_samsung_tcpg_6121p30a_params
[] = {
1273 .type
= TUNER_PARAM_TYPE_PAL
,
1274 .ranges
= tuner_samsung_tcpg_6121p30a_pal_ranges
,
1275 .count
= ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_pal_ranges
),
1279 .port2_invert_for_secam_lc
= 1,
1283 /* ------------ TUNER_TCL_MF02GIP-5N-E - TCL MF02GIP-5N ------------ */
1285 static struct tuner_range tuner_tcl_mf02gip_5n_ntsc_ranges
[] = {
1286 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
1287 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
1288 { 16 * 999.99 , 0x8e, 0x04, },
1291 static struct tuner_params tuner_tcl_mf02gip_5n_params
[] = {
1293 .type
= TUNER_PARAM_TYPE_NTSC
,
1294 .ranges
= tuner_tcl_mf02gip_5n_ntsc_ranges
,
1295 .count
= ARRAY_SIZE(tuner_tcl_mf02gip_5n_ntsc_ranges
),
1296 .cb_first_if_lower_freq
= 1,
1301 /* --------- TUNER_PHILIPS_FQ1216LME_MK3 -- active loopthrough, no FM ------- */
1303 static struct tuner_params tuner_fq1216lme_mk3_params
[] = {
1305 .type
= TUNER_PARAM_TYPE_PAL
,
1306 .ranges
= tuner_fm1216me_mk3_pal_ranges
,
1307 .count
= ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges
),
1308 .cb_first_if_lower_freq
= 1, /* not specified, but safe to do */
1309 .has_tda9887
= 1, /* TDA9886 */
1312 .port2_invert_for_secam_lc
= 1,
1313 .default_top_low
= 4,
1314 .default_top_mid
= 4,
1315 .default_top_high
= 4,
1316 .default_top_secam_low
= 4,
1317 .default_top_secam_mid
= 4,
1318 .default_top_secam_high
= 4,
1322 /* ----- TUNER_PARTSNIC_PTI_5NF05 - Partsnic (Daewoo) PTI-5NF05 NTSC ----- */
1324 static struct tuner_range tuner_partsnic_pti_5nf05_ranges
[] = {
1325 /* The datasheet specified channel ranges and the bandswitch byte */
1326 /* The control byte value of 0x8e is just a guess */
1327 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, }, /* Channels 2 - B */
1328 { 16 * 367.25 /*MHz*/, 0x8e, 0x02, }, /* Channels C - W+11 */
1329 { 16 * 999.99 , 0x8e, 0x08, }, /* Channels W+12 - 69 */
1332 static struct tuner_params tuner_partsnic_pti_5nf05_params
[] = {
1334 .type
= TUNER_PARAM_TYPE_NTSC
,
1335 .ranges
= tuner_partsnic_pti_5nf05_ranges
,
1336 .count
= ARRAY_SIZE(tuner_partsnic_pti_5nf05_ranges
),
1337 .cb_first_if_lower_freq
= 1, /* not specified but safe to do */
1341 /* --------- TUNER_PHILIPS_CU1216L - DVB-C NIM ------------------------- */
1343 static struct tuner_range tuner_cu1216l_ranges
[] = {
1344 { 16 * 160.25 /*MHz*/, 0xce, 0x01 },
1345 { 16 * 444.25 /*MHz*/, 0xce, 0x02 },
1346 { 16 * 999.99 , 0xce, 0x04 },
1349 static struct tuner_params tuner_philips_cu1216l_params
[] = {
1351 .type
= TUNER_PARAM_TYPE_DIGITAL
,
1352 .ranges
= tuner_cu1216l_ranges
,
1353 .count
= ARRAY_SIZE(tuner_cu1216l_ranges
),
1354 .iffreq
= 16 * 36.125, /*MHz*/
1358 /* ---------------------- TUNER_SONY_BTF_PXN01Z ------------------------ */
1360 static struct tuner_range tuner_sony_btf_pxn01z_ranges
[] = {
1361 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
1362 { 16 * 367.25 /*MHz*/, 0x8e, 0x02, },
1363 { 16 * 999.99 , 0x8e, 0x04, },
1366 static struct tuner_params tuner_sony_btf_pxn01z_params
[] = {
1368 .type
= TUNER_PARAM_TYPE_NTSC
,
1369 .ranges
= tuner_sony_btf_pxn01z_ranges
,
1370 .count
= ARRAY_SIZE(tuner_sony_btf_pxn01z_ranges
),
1374 /* ------------ TUNER_PHILIPS_FQ1236_MK5 - Philips NTSC ------------ */
1376 static struct tuner_params tuner_philips_fq1236_mk5_params
[] = {
1378 .type
= TUNER_PARAM_TYPE_NTSC
,
1379 .ranges
= tuner_fm1236_mk3_ntsc_ranges
,
1380 .count
= ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges
),
1381 .has_tda9887
= 1, /* TDA9885, no FM radio */
1385 /* --------- Sony BTF-PG472Z PAL/SECAM ------- */
1387 static struct tuner_range tuner_sony_btf_pg472z_ranges
[] = {
1388 { 16 * 144.25 /*MHz*/, 0xc6, 0x01, },
1389 { 16 * 427.25 /*MHz*/, 0xc6, 0x02, },
1390 { 16 * 999.99 , 0xc6, 0x04, },
1393 static struct tuner_params tuner_sony_btf_pg472z_params
[] = {
1395 .type
= TUNER_PARAM_TYPE_PAL
,
1396 .ranges
= tuner_sony_btf_pg472z_ranges
,
1397 .count
= ARRAY_SIZE(tuner_sony_btf_pg472z_ranges
),
1400 .port2_invert_for_secam_lc
= 1,
1405 /* --------- Sony BTF-PG467Z NTSC-M-JP ------- */
1407 static struct tuner_range tuner_sony_btf_pg467z_ranges
[] = {
1408 { 16 * 220.25 /*MHz*/, 0xc6, 0x01, },
1409 { 16 * 467.25 /*MHz*/, 0xc6, 0x02, },
1410 { 16 * 999.99 , 0xc6, 0x04, },
1413 static struct tuner_params tuner_sony_btf_pg467z_params
[] = {
1415 .type
= TUNER_PARAM_TYPE_NTSC
,
1416 .ranges
= tuner_sony_btf_pg467z_ranges
,
1417 .count
= ARRAY_SIZE(tuner_sony_btf_pg467z_ranges
),
1421 /* --------- Sony BTF-PG463Z NTSC-M ------- */
1423 static struct tuner_range tuner_sony_btf_pg463z_ranges
[] = {
1424 { 16 * 130.25 /*MHz*/, 0xc6, 0x01, },
1425 { 16 * 364.25 /*MHz*/, 0xc6, 0x02, },
1426 { 16 * 999.99 , 0xc6, 0x04, },
1429 static struct tuner_params tuner_sony_btf_pg463z_params
[] = {
1431 .type
= TUNER_PARAM_TYPE_NTSC
,
1432 .ranges
= tuner_sony_btf_pg463z_ranges
,
1433 .count
= ARRAY_SIZE(tuner_sony_btf_pg463z_ranges
),
1437 /* ------------- TUNER_TENA_TNF_931D_DFDR1 - NXP TDA6509A ------------- */
1439 static struct tuner_range tuner_tena_tnf_931d_dfdr1_ranges
[] = {
1440 { 16 * 161.15 /*MHz*/, 0x8e, 0x01, },
1441 { 16 * 463.15 /*MHz*/, 0x8e, 0x02, },
1442 { 16 * 999.99 , 0x8e, 0x08, },
1445 static struct tuner_params tuner_tena_tnf_931d_dfdr1_params
[] = {
1447 .type
= TUNER_PARAM_TYPE_PAL
,
1448 .ranges
= tuner_tena_tnf_931d_dfdr1_ranges
,
1449 .count
= ARRAY_SIZE(tuner_tena_tnf_931d_dfdr1_ranges
),
1453 /* --------------------------------------------------------------------- */
1455 struct tunertype tuners
[] = {
1457 [TUNER_TEMIC_PAL
] = { /* TEMIC PAL */
1458 .name
= "Temic PAL (4002 FH5)",
1459 .params
= tuner_temic_pal_params
,
1460 .count
= ARRAY_SIZE(tuner_temic_pal_params
),
1462 [TUNER_PHILIPS_PAL_I
] = { /* Philips PAL_I */
1463 .name
= "Philips PAL_I (FI1246 and compatibles)",
1464 .params
= tuner_philips_pal_i_params
,
1465 .count
= ARRAY_SIZE(tuner_philips_pal_i_params
),
1467 [TUNER_PHILIPS_NTSC
] = { /* Philips NTSC */
1468 .name
= "Philips NTSC (FI1236,FM1236 and compatibles)",
1469 .params
= tuner_philips_ntsc_params
,
1470 .count
= ARRAY_SIZE(tuner_philips_ntsc_params
),
1472 [TUNER_PHILIPS_SECAM
] = { /* Philips SECAM */
1473 .name
= "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)",
1474 .params
= tuner_philips_secam_params
,
1475 .count
= ARRAY_SIZE(tuner_philips_secam_params
),
1477 [TUNER_ABSENT
] = { /* Tuner Absent */
1480 [TUNER_PHILIPS_PAL
] = { /* Philips PAL */
1481 .name
= "Philips PAL_BG (FI1216 and compatibles)",
1482 .params
= tuner_philips_pal_params
,
1483 .count
= ARRAY_SIZE(tuner_philips_pal_params
),
1485 [TUNER_TEMIC_NTSC
] = { /* TEMIC NTSC */
1486 .name
= "Temic NTSC (4032 FY5)",
1487 .params
= tuner_temic_ntsc_params
,
1488 .count
= ARRAY_SIZE(tuner_temic_ntsc_params
),
1490 [TUNER_TEMIC_PAL_I
] = { /* TEMIC PAL_I */
1491 .name
= "Temic PAL_I (4062 FY5)",
1492 .params
= tuner_temic_pal_i_params
,
1493 .count
= ARRAY_SIZE(tuner_temic_pal_i_params
),
1495 [TUNER_TEMIC_4036FY5_NTSC
] = { /* TEMIC NTSC */
1496 .name
= "Temic NTSC (4036 FY5)",
1497 .params
= tuner_temic_4036fy5_ntsc_params
,
1498 .count
= ARRAY_SIZE(tuner_temic_4036fy5_ntsc_params
),
1500 [TUNER_ALPS_TSBH1_NTSC
] = { /* TEMIC NTSC */
1501 .name
= "Alps HSBH1",
1502 .params
= tuner_alps_tsbh1_ntsc_params
,
1503 .count
= ARRAY_SIZE(tuner_alps_tsbh1_ntsc_params
),
1507 [TUNER_ALPS_TSBE1_PAL
] = { /* TEMIC PAL */
1508 .name
= "Alps TSBE1",
1509 .params
= tuner_alps_tsb_1_params
,
1510 .count
= ARRAY_SIZE(tuner_alps_tsb_1_params
),
1512 [TUNER_ALPS_TSBB5_PAL_I
] = { /* Alps PAL_I */
1513 .name
= "Alps TSBB5",
1514 .params
= tuner_alps_tsbb5_params
,
1515 .count
= ARRAY_SIZE(tuner_alps_tsbb5_params
),
1517 [TUNER_ALPS_TSBE5_PAL
] = { /* Alps PAL */
1518 .name
= "Alps TSBE5",
1519 .params
= tuner_alps_tsbe5_params
,
1520 .count
= ARRAY_SIZE(tuner_alps_tsbe5_params
),
1522 [TUNER_ALPS_TSBC5_PAL
] = { /* Alps PAL */
1523 .name
= "Alps TSBC5",
1524 .params
= tuner_alps_tsbc5_params
,
1525 .count
= ARRAY_SIZE(tuner_alps_tsbc5_params
),
1527 [TUNER_TEMIC_4006FH5_PAL
] = { /* TEMIC PAL */
1528 .name
= "Temic PAL_BG (4006FH5)",
1529 .params
= tuner_temic_4006fh5_params
,
1530 .count
= ARRAY_SIZE(tuner_temic_4006fh5_params
),
1532 [TUNER_ALPS_TSHC6_NTSC
] = { /* Alps NTSC */
1533 .name
= "Alps TSCH6",
1534 .params
= tuner_alps_tshc6_params
,
1535 .count
= ARRAY_SIZE(tuner_alps_tshc6_params
),
1537 [TUNER_TEMIC_PAL_DK
] = { /* TEMIC PAL */
1538 .name
= "Temic PAL_DK (4016 FY5)",
1539 .params
= tuner_temic_pal_dk_params
,
1540 .count
= ARRAY_SIZE(tuner_temic_pal_dk_params
),
1542 [TUNER_PHILIPS_NTSC_M
] = { /* Philips NTSC */
1543 .name
= "Philips NTSC_M (MK2)",
1544 .params
= tuner_philips_ntsc_m_params
,
1545 .count
= ARRAY_SIZE(tuner_philips_ntsc_m_params
),
1547 [TUNER_TEMIC_4066FY5_PAL_I
] = { /* TEMIC PAL_I */
1548 .name
= "Temic PAL_I (4066 FY5)",
1549 .params
= tuner_temic_4066fy5_pal_i_params
,
1550 .count
= ARRAY_SIZE(tuner_temic_4066fy5_pal_i_params
),
1552 [TUNER_TEMIC_4006FN5_MULTI_PAL
] = { /* TEMIC PAL */
1553 .name
= "Temic PAL* auto (4006 FN5)",
1554 .params
= tuner_temic_4006fn5_multi_params
,
1555 .count
= ARRAY_SIZE(tuner_temic_4006fn5_multi_params
),
1559 [TUNER_TEMIC_4009FR5_PAL
] = { /* TEMIC PAL */
1560 .name
= "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)",
1561 .params
= tuner_temic_4009f_5_params
,
1562 .count
= ARRAY_SIZE(tuner_temic_4009f_5_params
),
1564 [TUNER_TEMIC_4039FR5_NTSC
] = { /* TEMIC NTSC */
1565 .name
= "Temic NTSC (4039 FR5)",
1566 .params
= tuner_temic_4039fr5_params
,
1567 .count
= ARRAY_SIZE(tuner_temic_4039fr5_params
),
1569 [TUNER_TEMIC_4046FM5
] = { /* TEMIC PAL */
1570 .name
= "Temic PAL/SECAM multi (4046 FM5)",
1571 .params
= tuner_temic_4046fm5_params
,
1572 .count
= ARRAY_SIZE(tuner_temic_4046fm5_params
),
1574 [TUNER_PHILIPS_PAL_DK
] = { /* Philips PAL */
1575 .name
= "Philips PAL_DK (FI1256 and compatibles)",
1576 .params
= tuner_philips_pal_dk_params
,
1577 .count
= ARRAY_SIZE(tuner_philips_pal_dk_params
),
1579 [TUNER_PHILIPS_FQ1216ME
] = { /* Philips PAL */
1580 .name
= "Philips PAL/SECAM multi (FQ1216ME)",
1581 .params
= tuner_philips_fq1216me_params
,
1582 .count
= ARRAY_SIZE(tuner_philips_fq1216me_params
),
1584 [TUNER_LG_PAL_I_FM
] = { /* LGINNOTEK PAL_I */
1585 .name
= "LG PAL_I+FM (TAPC-I001D)",
1586 .params
= tuner_lg_pal_i_fm_params
,
1587 .count
= ARRAY_SIZE(tuner_lg_pal_i_fm_params
),
1589 [TUNER_LG_PAL_I
] = { /* LGINNOTEK PAL_I */
1590 .name
= "LG PAL_I (TAPC-I701D)",
1591 .params
= tuner_lg_pal_i_params
,
1592 .count
= ARRAY_SIZE(tuner_lg_pal_i_params
),
1594 [TUNER_LG_NTSC_FM
] = { /* LGINNOTEK NTSC */
1595 .name
= "LG NTSC+FM (TPI8NSR01F)",
1596 .params
= tuner_lg_ntsc_fm_params
,
1597 .count
= ARRAY_SIZE(tuner_lg_ntsc_fm_params
),
1599 [TUNER_LG_PAL_FM
] = { /* LGINNOTEK PAL */
1600 .name
= "LG PAL_BG+FM (TPI8PSB01D)",
1601 .params
= tuner_lg_pal_fm_params
,
1602 .count
= ARRAY_SIZE(tuner_lg_pal_fm_params
),
1604 [TUNER_LG_PAL
] = { /* LGINNOTEK PAL */
1605 .name
= "LG PAL_BG (TPI8PSB11D)",
1606 .params
= tuner_lg_pal_params
,
1607 .count
= ARRAY_SIZE(tuner_lg_pal_params
),
1611 [TUNER_TEMIC_4009FN5_MULTI_PAL_FM
] = { /* TEMIC PAL */
1612 .name
= "Temic PAL* auto + FM (4009 FN5)",
1613 .params
= tuner_temic_4009_fn5_multi_pal_fm_params
,
1614 .count
= ARRAY_SIZE(tuner_temic_4009_fn5_multi_pal_fm_params
),
1616 [TUNER_SHARP_2U5JF5540_NTSC
] = { /* SHARP NTSC */
1617 .name
= "SHARP NTSC_JP (2U5JF5540)",
1618 .params
= tuner_sharp_2u5jf5540_params
,
1619 .count
= ARRAY_SIZE(tuner_sharp_2u5jf5540_params
),
1621 [TUNER_Samsung_PAL_TCPM9091PD27
] = { /* Samsung PAL */
1622 .name
= "Samsung PAL TCPM9091PD27",
1623 .params
= tuner_samsung_pal_tcpm9091pd27_params
,
1624 .count
= ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_params
),
1626 [TUNER_MT2032
] = { /* Microtune PAL|NTSC */
1627 .name
= "MT20xx universal",
1628 /* see mt20xx.c for details */ },
1629 [TUNER_TEMIC_4106FH5
] = { /* TEMIC PAL */
1630 .name
= "Temic PAL_BG (4106 FH5)",
1631 .params
= tuner_temic_4106fh5_params
,
1632 .count
= ARRAY_SIZE(tuner_temic_4106fh5_params
),
1634 [TUNER_TEMIC_4012FY5
] = { /* TEMIC PAL */
1635 .name
= "Temic PAL_DK/SECAM_L (4012 FY5)",
1636 .params
= tuner_temic_4012fy5_params
,
1637 .count
= ARRAY_SIZE(tuner_temic_4012fy5_params
),
1639 [TUNER_TEMIC_4136FY5
] = { /* TEMIC NTSC */
1640 .name
= "Temic NTSC (4136 FY5)",
1641 .params
= tuner_temic_4136_fy5_params
,
1642 .count
= ARRAY_SIZE(tuner_temic_4136_fy5_params
),
1644 [TUNER_LG_PAL_NEW_TAPC
] = { /* LGINNOTEK PAL */
1645 .name
= "LG PAL (newer TAPC series)",
1646 .params
= tuner_lg_pal_new_tapc_params
,
1647 .count
= ARRAY_SIZE(tuner_lg_pal_new_tapc_params
),
1649 [TUNER_PHILIPS_FM1216ME_MK3
] = { /* Philips PAL */
1650 .name
= "Philips PAL/SECAM multi (FM1216ME MK3)",
1651 .params
= tuner_fm1216me_mk3_params
,
1652 .count
= ARRAY_SIZE(tuner_fm1216me_mk3_params
),
1654 [TUNER_LG_NTSC_NEW_TAPC
] = { /* LGINNOTEK NTSC */
1655 .name
= "LG NTSC (newer TAPC series)",
1656 .params
= tuner_lg_ntsc_new_tapc_params
,
1657 .count
= ARRAY_SIZE(tuner_lg_ntsc_new_tapc_params
),
1661 [TUNER_HITACHI_NTSC
] = { /* HITACHI NTSC */
1662 .name
= "HITACHI V7-J180AT",
1663 .params
= tuner_hitachi_ntsc_params
,
1664 .count
= ARRAY_SIZE(tuner_hitachi_ntsc_params
),
1666 [TUNER_PHILIPS_PAL_MK
] = { /* Philips PAL */
1667 .name
= "Philips PAL_MK (FI1216 MK)",
1668 .params
= tuner_philips_pal_mk_params
,
1669 .count
= ARRAY_SIZE(tuner_philips_pal_mk_params
),
1671 [TUNER_PHILIPS_FCV1236D
] = { /* Philips ATSC */
1672 .name
= "Philips FCV1236D ATSC/NTSC dual in",
1673 .params
= tuner_philips_fcv1236d_params
,
1674 .count
= ARRAY_SIZE(tuner_philips_fcv1236d_params
),
1679 [TUNER_PHILIPS_FM1236_MK3
] = { /* Philips NTSC */
1680 .name
= "Philips NTSC MK3 (FM1236MK3 or FM1236/F)",
1681 .params
= tuner_fm1236_mk3_params
,
1682 .count
= ARRAY_SIZE(tuner_fm1236_mk3_params
),
1684 [TUNER_PHILIPS_4IN1
] = { /* Philips NTSC */
1685 .name
= "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)",
1686 .params
= tuner_philips_4in1_params
,
1687 .count
= ARRAY_SIZE(tuner_philips_4in1_params
),
1689 [TUNER_MICROTUNE_4049FM5
] = { /* Microtune PAL */
1690 .name
= "Microtune 4049 FM5",
1691 .params
= tuner_microtune_4049_fm5_params
,
1692 .count
= ARRAY_SIZE(tuner_microtune_4049_fm5_params
),
1694 [TUNER_PANASONIC_VP27
] = { /* Panasonic NTSC */
1695 .name
= "Panasonic VP27s/ENGE4324D",
1696 .params
= tuner_panasonic_vp27_params
,
1697 .count
= ARRAY_SIZE(tuner_panasonic_vp27_params
),
1699 [TUNER_LG_NTSC_TAPE
] = { /* LGINNOTEK NTSC */
1700 .name
= "LG NTSC (TAPE series)",
1701 .params
= tuner_fm1236_mk3_params
,
1702 .count
= ARRAY_SIZE(tuner_fm1236_mk3_params
),
1704 [TUNER_TNF_8831BGFF
] = { /* Philips PAL */
1705 .name
= "Tenna TNF 8831 BGFF)",
1706 .params
= tuner_tnf_8831bgff_params
,
1707 .count
= ARRAY_SIZE(tuner_tnf_8831bgff_params
),
1709 [TUNER_MICROTUNE_4042FI5
] = { /* Microtune NTSC */
1710 .name
= "Microtune 4042 FI5 ATSC/NTSC dual in",
1711 .params
= tuner_microtune_4042fi5_params
,
1712 .count
= ARRAY_SIZE(tuner_microtune_4042fi5_params
),
1719 [TUNER_TCL_2002N
] = { /* TCL NTSC */
1720 .name
= "TCL 2002N",
1721 .params
= tuner_tcl_2002n_params
,
1722 .count
= ARRAY_SIZE(tuner_tcl_2002n_params
),
1724 [TUNER_PHILIPS_FM1256_IH3
] = { /* Philips PAL */
1725 .name
= "Philips PAL/SECAM_D (FM 1256 I-H3)",
1726 .params
= tuner_philips_fm1256_ih3_params
,
1727 .count
= ARRAY_SIZE(tuner_philips_fm1256_ih3_params
),
1729 [TUNER_THOMSON_DTT7610
] = { /* THOMSON ATSC */
1730 .name
= "Thomson DTT 7610 (ATSC/NTSC)",
1731 .params
= tuner_thomson_dtt7610_params
,
1732 .count
= ARRAY_SIZE(tuner_thomson_dtt7610_params
),
1737 [TUNER_PHILIPS_FQ1286
] = { /* Philips NTSC */
1738 .name
= "Philips FQ1286",
1739 .params
= tuner_philips_fq1286_params
,
1740 .count
= ARRAY_SIZE(tuner_philips_fq1286_params
),
1742 [TUNER_PHILIPS_TDA8290
] = { /* Philips PAL|NTSC */
1743 .name
= "Philips/NXP TDA 8290/8295 + 8275/8275A/18271",
1744 /* see tda8290.c for details */ },
1745 [TUNER_TCL_2002MB
] = { /* TCL PAL */
1746 .name
= "TCL 2002MB",
1747 .params
= tuner_tcl_2002mb_params
,
1748 .count
= ARRAY_SIZE(tuner_tcl_2002mb_params
),
1750 [TUNER_PHILIPS_FQ1216AME_MK4
] = { /* Philips PAL */
1751 .name
= "Philips PAL/SECAM multi (FQ1216AME MK4)",
1752 .params
= tuner_philips_fq1216ame_mk4_params
,
1753 .count
= ARRAY_SIZE(tuner_philips_fq1216ame_mk4_params
),
1755 [TUNER_PHILIPS_FQ1236A_MK4
] = { /* Philips NTSC */
1756 .name
= "Philips FQ1236A MK4",
1757 .params
= tuner_philips_fq1236a_mk4_params
,
1758 .count
= ARRAY_SIZE(tuner_philips_fq1236a_mk4_params
),
1760 [TUNER_YMEC_TVF_8531MF
] = { /* Philips NTSC */
1761 .name
= "Ymec TVision TVF-8531MF/8831MF/8731MF",
1762 .params
= tuner_ymec_tvf_8531mf_params
,
1763 .count
= ARRAY_SIZE(tuner_ymec_tvf_8531mf_params
),
1765 [TUNER_YMEC_TVF_5533MF
] = { /* Philips NTSC */
1766 .name
= "Ymec TVision TVF-5533MF",
1767 .params
= tuner_ymec_tvf_5533mf_params
,
1768 .count
= ARRAY_SIZE(tuner_ymec_tvf_5533mf_params
),
1772 [TUNER_THOMSON_DTT761X
] = { /* THOMSON ATSC */
1773 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
1774 .name
= "Thomson DTT 761X (ATSC/NTSC)",
1775 .params
= tuner_thomson_dtt761x_params
,
1776 .count
= ARRAY_SIZE(tuner_thomson_dtt761x_params
),
1780 .initdata
= tua603x_agc103
,
1782 [TUNER_TENA_9533_DI
] = { /* Philips PAL */
1783 .name
= "Tena TNF9533-D/IF/TNF9533-B/DF",
1784 .params
= tuner_tena_9533_di_params
,
1785 .count
= ARRAY_SIZE(tuner_tena_9533_di_params
),
1787 [TUNER_TEA5767
] = { /* Philips RADIO */
1788 .name
= "Philips TEA5767HN FM Radio",
1789 /* see tea5767.c for details */
1791 [TUNER_PHILIPS_FMD1216ME_MK3
] = { /* Philips PAL */
1792 .name
= "Philips FMD1216ME MK3 Hybrid Tuner",
1793 .params
= tuner_philips_fmd1216me_mk3_params
,
1794 .count
= ARRAY_SIZE(tuner_philips_fmd1216me_mk3_params
),
1798 .initdata
= tua603x_agc112
,
1799 .sleepdata
= (u8
[]){ 4, 0x9c, 0x60, 0x85, 0x54 },
1801 [TUNER_LG_TDVS_H06XF
] = { /* LGINNOTEK ATSC */
1802 .name
= "LG TDVS-H06xF", /* H061F, H062F & H064F */
1803 .params
= tuner_lg_tdvs_h06xf_params
,
1804 .count
= ARRAY_SIZE(tuner_lg_tdvs_h06xf_params
),
1808 .initdata
= tua603x_agc103
,
1810 [TUNER_YMEC_TVF66T5_B_DFF
] = { /* Philips PAL */
1811 .name
= "Ymec TVF66T5-B/DFF",
1812 .params
= tuner_ymec_tvf66t5_b_dff_params
,
1813 .count
= ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_params
),
1815 [TUNER_LG_TALN
] = { /* LGINNOTEK NTSC / PAL / SECAM */
1816 .name
= "LG TALN series",
1817 .params
= tuner_lg_taln_params
,
1818 .count
= ARRAY_SIZE(tuner_lg_taln_params
),
1820 [TUNER_PHILIPS_TD1316
] = { /* Philips PAL */
1821 .name
= "Philips TD1316 Hybrid Tuner",
1822 .params
= tuner_philips_td1316_params
,
1823 .count
= ARRAY_SIZE(tuner_philips_td1316_params
),
1828 [TUNER_PHILIPS_TUV1236D
] = { /* Philips ATSC */
1829 .name
= "Philips TUV1236D ATSC/NTSC dual in",
1830 .params
= tuner_tuv1236d_params
,
1831 .count
= ARRAY_SIZE(tuner_tuv1236d_params
),
1836 [TUNER_TNF_5335MF
] = { /* Tenna PAL/NTSC */
1837 .name
= "Tena TNF 5335 and similar models",
1838 .params
= tuner_tnf_5335mf_params
,
1839 .count
= ARRAY_SIZE(tuner_tnf_5335mf_params
),
1843 [TUNER_SAMSUNG_TCPN_2121P30A
] = { /* Samsung NTSC */
1844 .name
= "Samsung TCPN 2121P30A",
1845 .params
= tuner_samsung_tcpn_2121p30a_params
,
1846 .count
= ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params
),
1848 [TUNER_XC2028
] = { /* Xceive 2028 */
1849 .name
= "Xceive xc2028/xc3028 tuner",
1850 /* see xc2028.c for details */
1852 [TUNER_THOMSON_FE6600
] = { /* Thomson PAL / DVB-T */
1853 .name
= "Thomson FE6600",
1854 .params
= tuner_thomson_fe6600_params
,
1855 .count
= ARRAY_SIZE(tuner_thomson_fe6600_params
),
1860 [TUNER_SAMSUNG_TCPG_6121P30A
] = { /* Samsung PAL */
1861 .name
= "Samsung TCPG 6121P30A",
1862 .params
= tuner_samsung_tcpg_6121p30a_params
,
1863 .count
= ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_params
),
1865 [TUNER_TDA9887
] = { /* Philips TDA 9887 IF PLL Demodulator.
1866 This chip is part of some modern tuners */
1867 .name
= "Philips TDA988[5,6,7] IF PLL Demodulator",
1868 /* see tda9887.c for details */
1870 [TUNER_TEA5761
] = { /* Philips RADIO */
1871 .name
= "Philips TEA5761 FM Radio",
1872 /* see tea5767.c for details */
1874 [TUNER_XC5000
] = { /* Xceive 5000 */
1875 .name
= "Xceive 5000 tuner",
1876 /* see xc5000.c for details */
1878 [TUNER_XC4000
] = { /* Xceive 4000 */
1879 .name
= "Xceive 4000 tuner",
1880 /* see xc4000.c for details */
1882 [TUNER_TCL_MF02GIP_5N
] = { /* TCL tuner MF02GIP-5N-E */
1883 .name
= "TCL tuner MF02GIP-5N-E",
1884 .params
= tuner_tcl_mf02gip_5n_params
,
1885 .count
= ARRAY_SIZE(tuner_tcl_mf02gip_5n_params
),
1887 [TUNER_PHILIPS_FMD1216MEX_MK3
] = { /* Philips PAL */
1888 .name
= "Philips FMD1216MEX MK3 Hybrid Tuner",
1889 .params
= tuner_philips_fmd1216mex_mk3_params
,
1890 .count
= ARRAY_SIZE(tuner_philips_fmd1216mex_mk3_params
),
1894 .initdata
= tua603x_agc112
,
1895 .sleepdata
= (u8
[]){ 4, 0x9c, 0x60, 0x85, 0x54 },
1897 [TUNER_PHILIPS_FM1216MK5
] = { /* Philips PAL */
1898 .name
= "Philips PAL/SECAM multi (FM1216 MK5)",
1899 .params
= tuner_fm1216mk5_params
,
1900 .count
= ARRAY_SIZE(tuner_fm1216mk5_params
),
1904 [TUNER_PHILIPS_FQ1216LME_MK3
] = { /* PAL/SECAM, Loop-thru, no FM */
1905 .name
= "Philips FQ1216LME MK3 PAL/SECAM w/active loopthrough",
1906 .params
= tuner_fq1216lme_mk3_params
,
1907 .count
= ARRAY_SIZE(tuner_fq1216lme_mk3_params
),
1910 [TUNER_PARTSNIC_PTI_5NF05
] = {
1911 .name
= "Partsnic (Daewoo) PTI-5NF05",
1912 .params
= tuner_partsnic_pti_5nf05_params
,
1913 .count
= ARRAY_SIZE(tuner_partsnic_pti_5nf05_params
),
1915 [TUNER_PHILIPS_CU1216L
] = {
1916 .name
= "Philips CU1216L",
1917 .params
= tuner_philips_cu1216l_params
,
1918 .count
= ARRAY_SIZE(tuner_philips_cu1216l_params
),
1921 [TUNER_NXP_TDA18271
] = {
1922 .name
= "NXP TDA18271",
1923 /* see tda18271-fe.c for details */
1925 [TUNER_SONY_BTF_PXN01Z
] = {
1926 .name
= "Sony BTF-Pxn01Z",
1927 .params
= tuner_sony_btf_pxn01z_params
,
1928 .count
= ARRAY_SIZE(tuner_sony_btf_pxn01z_params
),
1930 [TUNER_PHILIPS_FQ1236_MK5
] = { /* NTSC, TDA9885, no FM radio */
1931 .name
= "Philips FQ1236 MK5",
1932 .params
= tuner_philips_fq1236_mk5_params
,
1933 .count
= ARRAY_SIZE(tuner_philips_fq1236_mk5_params
),
1935 [TUNER_TENA_TNF_5337
] = { /* Tena 5337 MFD */
1936 .name
= "Tena TNF5337 MFD",
1937 .params
= tuner_tena_tnf_5337_params
,
1938 .count
= ARRAY_SIZE(tuner_tena_tnf_5337_params
),
1940 [TUNER_XC5000C
] = { /* Xceive 5000C */
1941 .name
= "Xceive 5000C tuner",
1942 /* see xc5000.c for details */
1944 [TUNER_SONY_BTF_PG472Z
] = {
1945 .name
= "Sony BTF-PG472Z PAL/SECAM",
1946 .params
= tuner_sony_btf_pg472z_params
,
1947 .count
= ARRAY_SIZE(tuner_sony_btf_pg472z_params
),
1951 [TUNER_SONY_BTF_PK467Z
] = {
1952 .name
= "Sony BTF-PK467Z NTSC-M-JP",
1953 .params
= tuner_sony_btf_pg467z_params
,
1954 .count
= ARRAY_SIZE(tuner_sony_btf_pg467z_params
),
1956 [TUNER_SONY_BTF_PB463Z
] = {
1957 .name
= "Sony BTF-PB463Z NTSC-M",
1958 .params
= tuner_sony_btf_pg463z_params
,
1959 .count
= ARRAY_SIZE(tuner_sony_btf_pg463z_params
),
1962 .name
= "Silicon Labs Si2157 tuner",
1963 /* see si2157.c for details */
1965 [TUNER_TENA_TNF_931D_DFDR1
] = {
1966 .name
= "Tena TNF931D-DFDR1",
1967 .params
= tuner_tena_tnf_931d_dfdr1_params
,
1968 .count
= ARRAY_SIZE(tuner_tena_tnf_931d_dfdr1_params
),
1971 EXPORT_SYMBOL(tuners
);
1973 unsigned const int tuner_count
= ARRAY_SIZE(tuners
);
1974 EXPORT_SYMBOL(tuner_count
);
1976 MODULE_DESCRIPTION("Simple tuner device type database");
1977 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1978 MODULE_LICENSE("GPL");