V4L/DVB (3332): XC3028 code marked with an special define option
[linux-2.6/btrfs-unstable.git] / drivers / media / video / tuner-types.c
blob15761dd8607d6a59de5b124286f7633729a7c23e
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 /* 0-9 */
39 /* ------------ TUNER_TEMIC_PAL - TEMIC PAL ------------ */
41 static struct tuner_range tuner_temic_pal_ranges[] = {
42 { 16 * 140.25 /*MHz*/, 0x8e, 0x02, },
43 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
44 { 16 * 999.99 , 0x8e, 0x01, },
47 static struct tuner_params tuner_temic_pal_params[] = {
49 .type = TUNER_PARAM_TYPE_PAL,
50 .ranges = tuner_temic_pal_ranges,
51 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
55 /* ------------ TUNER_PHILIPS_PAL_I - Philips PAL_I ------------ */
57 static struct tuner_range tuner_philips_pal_i_ranges[] = {
58 { 16 * 140.25 /*MHz*/, 0x8e, 0xa0, },
59 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
60 { 16 * 999.99 , 0x8e, 0x30, },
63 static struct tuner_params tuner_philips_pal_i_params[] = {
65 .type = TUNER_PARAM_TYPE_PAL,
66 .ranges = tuner_philips_pal_i_ranges,
67 .count = ARRAY_SIZE(tuner_philips_pal_i_ranges),
71 /* ------------ TUNER_PHILIPS_NTSC - Philips NTSC ------------ */
73 static struct tuner_range tuner_philips_ntsc_ranges[] = {
74 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
75 { 16 * 451.25 /*MHz*/, 0x8e, 0x90, },
76 { 16 * 999.99 , 0x8e, 0x30, },
79 static struct tuner_params tuner_philips_ntsc_params[] = {
81 .type = TUNER_PARAM_TYPE_NTSC,
82 .ranges = tuner_philips_ntsc_ranges,
83 .count = ARRAY_SIZE(tuner_philips_ntsc_ranges),
84 .cb_first_if_lower_freq = 1,
88 /* ------------ TUNER_PHILIPS_SECAM - Philips SECAM ------------ */
90 static struct tuner_range tuner_philips_secam_ranges[] = {
91 { 16 * 168.25 /*MHz*/, 0x8e, 0xa7, },
92 { 16 * 447.25 /*MHz*/, 0x8e, 0x97, },
93 { 16 * 999.99 , 0x8e, 0x37, },
96 static struct tuner_params tuner_philips_secam_params[] = {
98 .type = TUNER_PARAM_TYPE_SECAM,
99 .ranges = tuner_philips_secam_ranges,
100 .count = ARRAY_SIZE(tuner_philips_secam_ranges),
101 .cb_first_if_lower_freq = 1,
105 /* ------------ TUNER_PHILIPS_PAL - Philips PAL ------------ */
107 static struct tuner_range tuner_philips_pal_ranges[] = {
108 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
109 { 16 * 447.25 /*MHz*/, 0x8e, 0x90, },
110 { 16 * 999.99 , 0x8e, 0x30, },
113 static struct tuner_params tuner_philips_pal_params[] = {
115 .type = TUNER_PARAM_TYPE_PAL,
116 .ranges = tuner_philips_pal_ranges,
117 .count = ARRAY_SIZE(tuner_philips_pal_ranges),
118 .cb_first_if_lower_freq = 1,
122 /* ------------ TUNER_TEMIC_NTSC - TEMIC NTSC ------------ */
124 static struct tuner_range tuner_temic_ntsc_ranges[] = {
125 { 16 * 157.25 /*MHz*/, 0x8e, 0x02, },
126 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
127 { 16 * 999.99 , 0x8e, 0x01, },
130 static struct tuner_params tuner_temic_ntsc_params[] = {
132 .type = TUNER_PARAM_TYPE_NTSC,
133 .ranges = tuner_temic_ntsc_ranges,
134 .count = ARRAY_SIZE(tuner_temic_ntsc_ranges),
138 /* ------------ TUNER_TEMIC_PAL_I - TEMIC PAL_I ------------ */
140 static struct tuner_range tuner_temic_pal_i_ranges[] = {
141 { 16 * 170.00 /*MHz*/, 0x8e, 0x02, },
142 { 16 * 450.00 /*MHz*/, 0x8e, 0x04, },
143 { 16 * 999.99 , 0x8e, 0x01, },
146 static struct tuner_params tuner_temic_pal_i_params[] = {
148 .type = TUNER_PARAM_TYPE_PAL,
149 .ranges = tuner_temic_pal_i_ranges,
150 .count = ARRAY_SIZE(tuner_temic_pal_i_ranges),
154 /* ------------ TUNER_TEMIC_4036FY5_NTSC - TEMIC NTSC ------------ */
156 static struct tuner_range tuner_temic_4036fy5_ntsc_ranges[] = {
157 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
158 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
159 { 16 * 999.99 , 0x8e, 0x30, },
162 static struct tuner_params tuner_temic_4036fy5_ntsc_params[] = {
164 .type = TUNER_PARAM_TYPE_NTSC,
165 .ranges = tuner_temic_4036fy5_ntsc_ranges,
166 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_ranges),
170 /* ------------ TUNER_ALPS_TSBH1_NTSC - TEMIC NTSC ------------ */
172 static struct tuner_range tuner_alps_tsb_1_ranges[] = {
173 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
174 { 16 * 385.25 /*MHz*/, 0x8e, 0x02, },
175 { 16 * 999.99 , 0x8e, 0x08, },
178 static struct tuner_params tuner_alps_tsbh1_ntsc_params[] = {
180 .type = TUNER_PARAM_TYPE_NTSC,
181 .ranges = tuner_alps_tsb_1_ranges,
182 .count = ARRAY_SIZE(tuner_alps_tsb_1_ranges),
186 /* 10-19 */
187 /* ------------ TUNER_ALPS_TSBE1_PAL - TEMIC PAL ------------ */
189 static struct tuner_params tuner_alps_tsb_1_params[] = {
191 .type = TUNER_PARAM_TYPE_PAL,
192 .ranges = tuner_alps_tsb_1_ranges,
193 .count = ARRAY_SIZE(tuner_alps_tsb_1_ranges),
197 /* ------------ TUNER_ALPS_TSBB5_PAL_I - Alps PAL_I ------------ */
199 static struct tuner_range tuner_alps_tsb_5_pal_ranges[] = {
200 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, },
201 { 16 * 351.25 /*MHz*/, 0x8e, 0x02, },
202 { 16 * 999.99 , 0x8e, 0x08, },
205 static struct tuner_params tuner_alps_tsbb5_params[] = {
207 .type = TUNER_PARAM_TYPE_PAL,
208 .ranges = tuner_alps_tsb_5_pal_ranges,
209 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
213 /* ------------ TUNER_ALPS_TSBE5_PAL - Alps PAL ------------ */
215 static struct tuner_params tuner_alps_tsbe5_params[] = {
217 .type = TUNER_PARAM_TYPE_PAL,
218 .ranges = tuner_alps_tsb_5_pal_ranges,
219 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
223 /* ------------ TUNER_ALPS_TSBC5_PAL - Alps PAL ------------ */
225 static struct tuner_params tuner_alps_tsbc5_params[] = {
227 .type = TUNER_PARAM_TYPE_PAL,
228 .ranges = tuner_alps_tsb_5_pal_ranges,
229 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
233 /* ------------ TUNER_TEMIC_4006FH5_PAL - TEMIC PAL ------------ */
235 static struct tuner_range tuner_lg_pal_ranges[] = {
236 { 16 * 170.00 /*MHz*/, 0x8e, 0xa0, },
237 { 16 * 450.00 /*MHz*/, 0x8e, 0x90, },
238 { 16 * 999.99 , 0x8e, 0x30, },
241 static struct tuner_params tuner_temic_4006fh5_params[] = {
243 .type = TUNER_PARAM_TYPE_PAL,
244 .ranges = tuner_lg_pal_ranges,
245 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
249 /* ------------ TUNER_ALPS_TSHC6_NTSC - Alps NTSC ------------ */
251 static struct tuner_range tuner_alps_tshc6_ntsc_ranges[] = {
252 { 16 * 137.25 /*MHz*/, 0x8e, 0x14, },
253 { 16 * 385.25 /*MHz*/, 0x8e, 0x12, },
254 { 16 * 999.99 , 0x8e, 0x11, },
257 static struct tuner_params tuner_alps_tshc6_params[] = {
259 .type = TUNER_PARAM_TYPE_NTSC,
260 .ranges = tuner_alps_tshc6_ntsc_ranges,
261 .count = ARRAY_SIZE(tuner_alps_tshc6_ntsc_ranges),
265 /* ------------ TUNER_TEMIC_PAL_DK - TEMIC PAL ------------ */
267 static struct tuner_range tuner_temic_pal_dk_ranges[] = {
268 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
269 { 16 * 456.25 /*MHz*/, 0x8e, 0x90, },
270 { 16 * 999.99 , 0x8e, 0x30, },
273 static struct tuner_params tuner_temic_pal_dk_params[] = {
275 .type = TUNER_PARAM_TYPE_PAL,
276 .ranges = tuner_temic_pal_dk_ranges,
277 .count = ARRAY_SIZE(tuner_temic_pal_dk_ranges),
281 /* ------------ TUNER_PHILIPS_NTSC_M - Philips NTSC ------------ */
283 static struct tuner_range tuner_philips_ntsc_m_ranges[] = {
284 { 16 * 160.00 /*MHz*/, 0x8e, 0xa0, },
285 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
286 { 16 * 999.99 , 0x8e, 0x30, },
289 static struct tuner_params tuner_philips_ntsc_m_params[] = {
291 .type = TUNER_PARAM_TYPE_NTSC,
292 .ranges = tuner_philips_ntsc_m_ranges,
293 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
297 /* ------------ TUNER_TEMIC_4066FY5_PAL_I - TEMIC PAL_I ------------ */
299 static struct tuner_range tuner_temic_40x6f_5_pal_ranges[] = {
300 { 16 * 169.00 /*MHz*/, 0x8e, 0xa0, },
301 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
302 { 16 * 999.99 , 0x8e, 0x30, },
305 static struct tuner_params tuner_temic_4066fy5_pal_i_params[] = {
307 .type = TUNER_PARAM_TYPE_PAL,
308 .ranges = tuner_temic_40x6f_5_pal_ranges,
309 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
313 /* ------------ TUNER_TEMIC_4006FN5_MULTI_PAL - TEMIC PAL ------------ */
315 static struct tuner_params tuner_temic_4006fn5_multi_params[] = {
317 .type = TUNER_PARAM_TYPE_PAL,
318 .ranges = tuner_temic_40x6f_5_pal_ranges,
319 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
323 /* 20-29 */
324 /* ------------ TUNER_TEMIC_4009FR5_PAL - TEMIC PAL ------------ */
326 static struct tuner_range tuner_temic_4009f_5_pal_ranges[] = {
327 { 16 * 141.00 /*MHz*/, 0x8e, 0xa0, },
328 { 16 * 464.00 /*MHz*/, 0x8e, 0x90, },
329 { 16 * 999.99 , 0x8e, 0x30, },
332 static struct tuner_params tuner_temic_4009f_5_params[] = {
334 .type = TUNER_PARAM_TYPE_PAL,
335 .ranges = tuner_temic_4009f_5_pal_ranges,
336 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
340 /* ------------ TUNER_TEMIC_4039FR5_NTSC - TEMIC NTSC ------------ */
342 static struct tuner_range tuner_temic_4x3x_f_5_ntsc_ranges[] = {
343 { 16 * 158.00 /*MHz*/, 0x8e, 0xa0, },
344 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
345 { 16 * 999.99 , 0x8e, 0x30, },
348 static struct tuner_params tuner_temic_4039fr5_params[] = {
350 .type = TUNER_PARAM_TYPE_NTSC,
351 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
352 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
356 /* ------------ TUNER_TEMIC_4046FM5 - TEMIC PAL ------------ */
358 static struct tuner_params tuner_temic_4046fm5_params[] = {
360 .type = TUNER_PARAM_TYPE_PAL,
361 .ranges = tuner_temic_40x6f_5_pal_ranges,
362 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
366 /* ------------ TUNER_PHILIPS_PAL_DK - Philips PAL ------------ */
368 static struct tuner_params tuner_philips_pal_dk_params[] = {
370 .type = TUNER_PARAM_TYPE_PAL,
371 .ranges = tuner_lg_pal_ranges,
372 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
376 /* ------------ TUNER_PHILIPS_FQ1216ME - Philips PAL ------------ */
378 static struct tuner_params tuner_philips_fq1216me_params[] = {
380 .type = TUNER_PARAM_TYPE_PAL,
381 .ranges = tuner_lg_pal_ranges,
382 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
386 /* ------------ TUNER_LG_PAL_I_FM - LGINNOTEK PAL_I ------------ */
388 static struct tuner_params tuner_lg_pal_i_fm_params[] = {
390 .type = TUNER_PARAM_TYPE_PAL,
391 .ranges = tuner_lg_pal_ranges,
392 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
396 /* ------------ TUNER_LG_PAL_I - LGINNOTEK PAL_I ------------ */
398 static struct tuner_params tuner_lg_pal_i_params[] = {
400 .type = TUNER_PARAM_TYPE_PAL,
401 .ranges = tuner_lg_pal_ranges,
402 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
406 /* ------------ TUNER_LG_NTSC_FM - LGINNOTEK NTSC ------------ */
408 static struct tuner_range tuner_lg_ntsc_fm_ranges[] = {
409 { 16 * 210.00 /*MHz*/, 0x8e, 0xa0, },
410 { 16 * 497.00 /*MHz*/, 0x8e, 0x90, },
411 { 16 * 999.99 , 0x8e, 0x30, },
414 static struct tuner_params tuner_lg_ntsc_fm_params[] = {
416 .type = TUNER_PARAM_TYPE_NTSC,
417 .ranges = tuner_lg_ntsc_fm_ranges,
418 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_ranges),
422 /* ------------ TUNER_LG_PAL_FM - LGINNOTEK PAL ------------ */
424 static struct tuner_params tuner_lg_pal_fm_params[] = {
426 .type = TUNER_PARAM_TYPE_PAL,
427 .ranges = tuner_lg_pal_ranges,
428 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
432 /* ------------ TUNER_LG_PAL - LGINNOTEK PAL ------------ */
434 static struct tuner_params tuner_lg_pal_params[] = {
436 .type = TUNER_PARAM_TYPE_PAL,
437 .ranges = tuner_lg_pal_ranges,
438 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
442 /* 30-39 */
443 /* ------------ TUNER_TEMIC_4009FN5_MULTI_PAL_FM - TEMIC PAL ------------ */
445 static struct tuner_params tuner_temic_4009_fn5_multi_pal_fm_params[] = {
447 .type = TUNER_PARAM_TYPE_PAL,
448 .ranges = tuner_temic_4009f_5_pal_ranges,
449 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
453 /* ------------ TUNER_SHARP_2U5JF5540_NTSC - SHARP NTSC ------------ */
455 static struct tuner_range tuner_sharp_2u5jf5540_ntsc_ranges[] = {
456 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
457 { 16 * 317.25 /*MHz*/, 0x8e, 0x02, },
458 { 16 * 999.99 , 0x8e, 0x08, },
461 static struct tuner_params tuner_sharp_2u5jf5540_params[] = {
463 .type = TUNER_PARAM_TYPE_NTSC,
464 .ranges = tuner_sharp_2u5jf5540_ntsc_ranges,
465 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_ntsc_ranges),
469 /* ------------ TUNER_Samsung_PAL_TCPM9091PD27 - Samsung PAL ------------ */
471 static struct tuner_range tuner_samsung_pal_tcpm9091pd27_ranges[] = {
472 { 16 * 169 /*MHz*/, 0x8e, 0xa0, },
473 { 16 * 464 /*MHz*/, 0x8e, 0x90, },
474 { 16 * 999.99 , 0x8e, 0x30, },
477 static struct tuner_params tuner_samsung_pal_tcpm9091pd27_params[] = {
479 .type = TUNER_PARAM_TYPE_PAL,
480 .ranges = tuner_samsung_pal_tcpm9091pd27_ranges,
481 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_ranges),
485 /* ------------ TUNER_TEMIC_4106FH5 - TEMIC PAL ------------ */
487 static struct tuner_params tuner_temic_4106fh5_params[] = {
489 .type = TUNER_PARAM_TYPE_PAL,
490 .ranges = tuner_temic_4009f_5_pal_ranges,
491 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
495 /* ------------ TUNER_TEMIC_4012FY5 - TEMIC PAL ------------ */
497 static struct tuner_params tuner_temic_4012fy5_params[] = {
499 .type = TUNER_PARAM_TYPE_PAL,
500 .ranges = tuner_temic_pal_ranges,
501 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
505 /* ------------ TUNER_TEMIC_4136FY5 - TEMIC NTSC ------------ */
507 static struct tuner_params tuner_temic_4136_fy5_params[] = {
509 .type = TUNER_PARAM_TYPE_NTSC,
510 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
511 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
515 /* ------------ TUNER_LG_PAL_NEW_TAPC - LGINNOTEK PAL ------------ */
517 static struct tuner_range tuner_lg_new_tapc_ranges[] = {
518 { 16 * 170.00 /*MHz*/, 0x8e, 0x01, },
519 { 16 * 450.00 /*MHz*/, 0x8e, 0x02, },
520 { 16 * 999.99 , 0x8e, 0x08, },
523 static struct tuner_params tuner_lg_pal_new_tapc_params[] = {
525 .type = TUNER_PARAM_TYPE_PAL,
526 .ranges = tuner_lg_new_tapc_ranges,
527 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
531 /* ------------ TUNER_PHILIPS_FM1216ME_MK3 - Philips PAL ------------ */
533 static struct tuner_range tuner_fm1216me_mk3_pal_ranges[] = {
534 { 16 * 158.00 /*MHz*/, 0x8e, 0x01, },
535 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
536 { 16 * 999.99 , 0x8e, 0x04, },
539 static struct tuner_params tuner_fm1216me_mk3_params[] = {
541 .type = TUNER_PARAM_TYPE_PAL,
542 .ranges = tuner_fm1216me_mk3_pal_ranges,
543 .count = ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges),
544 .cb_first_if_lower_freq = 1,
548 /* ------------ TUNER_LG_NTSC_NEW_TAPC - LGINNOTEK NTSC ------------ */
550 static struct tuner_params tuner_lg_ntsc_new_tapc_params[] = {
552 .type = TUNER_PARAM_TYPE_NTSC,
553 .ranges = tuner_lg_new_tapc_ranges,
554 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
558 /* 40-49 */
559 /* ------------ TUNER_HITACHI_NTSC - HITACHI NTSC ------------ */
561 static struct tuner_params tuner_hitachi_ntsc_params[] = {
563 .type = TUNER_PARAM_TYPE_NTSC,
564 .ranges = tuner_lg_new_tapc_ranges,
565 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
569 /* ------------ TUNER_PHILIPS_PAL_MK - Philips PAL ------------ */
571 static struct tuner_range tuner_philips_pal_mk_pal_ranges[] = {
572 { 16 * 140.25 /*MHz*/, 0x8e, 0x01, },
573 { 16 * 463.25 /*MHz*/, 0x8e, 0xc2, },
574 { 16 * 999.99 , 0x8e, 0xcf, },
577 static struct tuner_params tuner_philips_pal_mk_params[] = {
579 .type = TUNER_PARAM_TYPE_PAL,
580 .ranges = tuner_philips_pal_mk_pal_ranges,
581 .count = ARRAY_SIZE(tuner_philips_pal_mk_pal_ranges),
585 /* ------------ TUNER_PHILIPS_ATSC - Philips ATSC ------------ */
587 static struct tuner_range tuner_philips_atsc_ranges[] = {
588 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
589 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
590 { 16 * 999.99 , 0x8e, 0x30, },
593 static struct tuner_params tuner_philips_atsc_params[] = {
595 .type = TUNER_PARAM_TYPE_NTSC,
596 .ranges = tuner_philips_atsc_ranges,
597 .count = ARRAY_SIZE(tuner_philips_atsc_ranges),
601 /* ------------ TUNER_PHILIPS_FM1236_MK3 - Philips NTSC ------------ */
603 static struct tuner_range tuner_fm1236_mk3_ntsc_ranges[] = {
604 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
605 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
606 { 16 * 999.99 , 0x8e, 0x04, },
609 static struct tuner_params tuner_fm1236_mk3_params[] = {
611 .type = TUNER_PARAM_TYPE_NTSC,
612 .ranges = tuner_fm1236_mk3_ntsc_ranges,
613 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
614 .cb_first_if_lower_freq = 1,
618 /* ------------ TUNER_PHILIPS_4IN1 - Philips NTSC ------------ */
620 static struct tuner_params tuner_philips_4in1_params[] = {
622 .type = TUNER_PARAM_TYPE_NTSC,
623 .ranges = tuner_fm1236_mk3_ntsc_ranges,
624 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
628 /* ------------ TUNER_MICROTUNE_4049FM5 - Microtune PAL ------------ */
630 static struct tuner_params tuner_microtune_4049_fm5_params[] = {
632 .type = TUNER_PARAM_TYPE_PAL,
633 .ranges = tuner_temic_4009f_5_pal_ranges,
634 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
638 /* ------------ TUNER_PANASONIC_VP27 - Panasonic NTSC ------------ */
640 static struct tuner_range tuner_panasonic_vp27_ntsc_ranges[] = {
641 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
642 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
643 { 16 * 999.99 , 0xce, 0x08, },
646 static struct tuner_params tuner_panasonic_vp27_params[] = {
648 .type = TUNER_PARAM_TYPE_NTSC,
649 .ranges = tuner_panasonic_vp27_ntsc_ranges,
650 .count = ARRAY_SIZE(tuner_panasonic_vp27_ntsc_ranges),
654 /* ------------ TUNER_LG_NTSC_TAPE - LGINNOTEK NTSC ------------ */
656 static struct tuner_params tuner_lg_ntsc_tape_params[] = {
658 .type = TUNER_PARAM_TYPE_NTSC,
659 .ranges = tuner_fm1236_mk3_ntsc_ranges,
660 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
664 /* ------------ TUNER_TNF_8831BGFF - Philips PAL ------------ */
666 static struct tuner_range tuner_tnf_8831bgff_pal_ranges[] = {
667 { 16 * 161.25 /*MHz*/, 0x8e, 0xa0, },
668 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
669 { 16 * 999.99 , 0x8e, 0x30, },
672 static struct tuner_params tuner_tnf_8831bgff_params[] = {
674 .type = TUNER_PARAM_TYPE_PAL,
675 .ranges = tuner_tnf_8831bgff_pal_ranges,
676 .count = ARRAY_SIZE(tuner_tnf_8831bgff_pal_ranges),
680 /* ------------ TUNER_MICROTUNE_4042FI5 - Microtune NTSC ------------ */
682 static struct tuner_range tuner_microtune_4042fi5_ntsc_ranges[] = {
683 { 16 * 162.00 /*MHz*/, 0x8e, 0xa2, },
684 { 16 * 457.00 /*MHz*/, 0x8e, 0x94, },
685 { 16 * 999.99 , 0x8e, 0x31, },
688 static struct tuner_params tuner_microtune_4042fi5_params[] = {
690 .type = TUNER_PARAM_TYPE_NTSC,
691 .ranges = tuner_microtune_4042fi5_ntsc_ranges,
692 .count = ARRAY_SIZE(tuner_microtune_4042fi5_ntsc_ranges),
696 /* 50-59 */
697 /* ------------ TUNER_TCL_2002N - TCL NTSC ------------ */
699 static struct tuner_range tuner_tcl_2002n_ntsc_ranges[] = {
700 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
701 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
702 { 16 * 999.99 , 0x8e, 0x08, },
705 static struct tuner_params tuner_tcl_2002n_params[] = {
707 .type = TUNER_PARAM_TYPE_NTSC,
708 .ranges = tuner_tcl_2002n_ntsc_ranges,
709 .count = ARRAY_SIZE(tuner_tcl_2002n_ntsc_ranges),
710 .cb_first_if_lower_freq = 1,
714 /* ------------ TUNER_PHILIPS_FM1256_IH3 - Philips PAL ------------ */
716 static struct tuner_params tuner_philips_fm1256_ih3_params[] = {
718 .type = TUNER_PARAM_TYPE_PAL,
719 .ranges = tuner_fm1236_mk3_ntsc_ranges,
720 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
724 /* ------------ TUNER_THOMSON_DTT7610 - THOMSON ATSC ------------ */
726 static struct tuner_range tuner_thomson_dtt7610_ntsc_ranges[] = {
727 { 16 * 157.25 /*MHz*/, 0x8e, 0x39, },
728 { 16 * 454.00 /*MHz*/, 0x8e, 0x3a, },
729 { 16 * 999.99 , 0x8e, 0x3c, },
732 static struct tuner_params tuner_thomson_dtt7610_params[] = {
734 .type = TUNER_PARAM_TYPE_NTSC,
735 .ranges = tuner_thomson_dtt7610_ntsc_ranges,
736 .count = ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges),
740 /* ------------ TUNER_PHILIPS_FQ1286 - Philips NTSC ------------ */
742 static struct tuner_range tuner_philips_fq1286_ntsc_ranges[] = {
743 { 16 * 160.00 /*MHz*/, 0x8e, 0x41, },
744 { 16 * 454.00 /*MHz*/, 0x8e, 0x42, },
745 { 16 * 999.99 , 0x8e, 0x04, },
748 static struct tuner_params tuner_philips_fq1286_params[] = {
750 .type = TUNER_PARAM_TYPE_NTSC,
751 .ranges = tuner_philips_fq1286_ntsc_ranges,
752 .count = ARRAY_SIZE(tuner_philips_fq1286_ntsc_ranges),
756 /* ------------ TUNER_TCL_2002MB - TCL PAL ------------ */
758 static struct tuner_range tuner_tcl_2002mb_pal_ranges[] = {
759 { 16 * 170.00 /*MHz*/, 0xce, 0x01, },
760 { 16 * 450.00 /*MHz*/, 0xce, 0x02, },
761 { 16 * 999.99 , 0xce, 0x08, },
764 static struct tuner_params tuner_tcl_2002mb_params[] = {
766 .type = TUNER_PARAM_TYPE_PAL,
767 .ranges = tuner_tcl_2002mb_pal_ranges,
768 .count = ARRAY_SIZE(tuner_tcl_2002mb_pal_ranges),
772 /* ------------ TUNER_PHILIPS_FQ1216AME_MK4 - Philips PAL ------------ */
774 static struct tuner_range tuner_philips_fq12_6a___mk4_pal_ranges[] = {
775 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
776 { 16 * 442.00 /*MHz*/, 0xce, 0x02, },
777 { 16 * 999.99 , 0xce, 0x04, },
780 static struct tuner_params tuner_philips_fq1216ame_mk4_params[] = {
782 .type = TUNER_PARAM_TYPE_PAL,
783 .ranges = tuner_philips_fq12_6a___mk4_pal_ranges,
784 .count = ARRAY_SIZE(tuner_philips_fq12_6a___mk4_pal_ranges),
788 /* ------------ TUNER_PHILIPS_FQ1236A_MK4 - Philips NTSC ------------ */
790 static struct tuner_params tuner_philips_fq1236a_mk4_params[] = {
792 .type = TUNER_PARAM_TYPE_NTSC,
793 .ranges = tuner_fm1236_mk3_ntsc_ranges,
794 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
798 /* ------------ TUNER_YMEC_TVF_8531MF - Philips NTSC ------------ */
800 static struct tuner_params tuner_ymec_tvf_8531mf_params[] = {
802 .type = TUNER_PARAM_TYPE_NTSC,
803 .ranges = tuner_philips_ntsc_m_ranges,
804 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
808 /* ------------ TUNER_YMEC_TVF_5533MF - Philips NTSC ------------ */
810 static struct tuner_range tuner_ymec_tvf_5533mf_ntsc_ranges[] = {
811 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
812 { 16 * 454.00 /*MHz*/, 0x8e, 0x02, },
813 { 16 * 999.99 , 0x8e, 0x04, },
816 static struct tuner_params tuner_ymec_tvf_5533mf_params[] = {
818 .type = TUNER_PARAM_TYPE_NTSC,
819 .ranges = tuner_ymec_tvf_5533mf_ntsc_ranges,
820 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_ntsc_ranges),
824 /* 60-69 */
825 /* ------------ TUNER_THOMSON_DTT761X - THOMSON ATSC ------------ */
826 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
828 static struct tuner_range tuner_thomson_dtt761x_ntsc_ranges[] = {
829 { 16 * 145.25 /*MHz*/, 0x8e, 0x39, },
830 { 16 * 415.25 /*MHz*/, 0x8e, 0x3a, },
831 { 16 * 999.99 , 0x8e, 0x3c, },
835 static struct tuner_params tuner_thomson_dtt761x_params[] = {
837 .type = TUNER_PARAM_TYPE_NTSC,
838 .ranges = tuner_thomson_dtt761x_ntsc_ranges,
839 .count = ARRAY_SIZE(tuner_thomson_dtt761x_ntsc_ranges),
843 /* ------------ TUNER_TENA_9533_DI - Philips PAL ------------ */
845 static struct tuner_range tuner_tena_9533_di_pal_ranges[] = {
846 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
847 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
848 { 16 * 999.99 , 0x8e, 0x04, },
851 static struct tuner_params tuner_tena_9533_di_params[] = {
853 .type = TUNER_PARAM_TYPE_PAL,
854 .ranges = tuner_tena_9533_di_pal_ranges,
855 .count = ARRAY_SIZE(tuner_tena_9533_di_pal_ranges),
859 /* ------------ TUNER_PHILIPS_FMD1216ME_MK3 - Philips PAL ------------ */
861 static struct tuner_range tuner_philips_fmd1216me_mk3_pal_ranges[] = {
862 { 16 * 160.00 /*MHz*/, 0x86, 0x51, },
863 { 16 * 442.00 /*MHz*/, 0x86, 0x52, },
864 { 16 * 999.99 , 0x86, 0x54, },
868 static struct tuner_params tuner_philips_fmd1216me_mk3_params[] = {
870 .type = TUNER_PARAM_TYPE_PAL,
871 .ranges = tuner_philips_fmd1216me_mk3_pal_ranges,
872 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges),
877 /* ------------ TUNER_LG_TDVS_H062F - INFINEON ATSC ------------ */
879 static struct tuner_range tuner_tua6034_ntsc_ranges[] = {
880 { 16 * 160.00 /*MHz*/, 0x8e, 0x01 },
881 { 16 * 455.00 /*MHz*/, 0x8e, 0x02 },
882 { 16 * 999.99 , 0x8e, 0x04 },
886 static struct tuner_params tuner_tua6034_params[] = {
888 .type = TUNER_PARAM_TYPE_NTSC,
889 .ranges = tuner_tua6034_ntsc_ranges,
890 .count = ARRAY_SIZE(tuner_tua6034_ntsc_ranges),
894 /* ------------ TUNER_YMEC_TVF66T5_B_DFF - Philips PAL ------------ */
896 static struct tuner_params tuner_ymec_tvf66t5_b_dff_params[] = {
898 .type = TUNER_PARAM_TYPE_PAL,
899 .ranges = tuner_tena_9533_di_pal_ranges,
900 .count = ARRAY_SIZE(tuner_tena_9533_di_pal_ranges),
904 /* ------------ TUNER_LG_NTSC_TALN_MINI - LGINNOTEK NTSC ------------ */
906 static struct tuner_range tuner_lg_taln_mini_ntsc_ranges[] = {
907 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
908 { 16 * 373.25 /*MHz*/, 0x8e, 0x02, },
909 { 16 * 999.99 , 0x8e, 0x08, },
912 static struct tuner_params tuner_lg_taln_mini_params[] = {
914 .type = TUNER_PARAM_TYPE_NTSC,
915 .ranges = tuner_lg_taln_mini_ntsc_ranges,
916 .count = ARRAY_SIZE(tuner_lg_taln_mini_ntsc_ranges),
920 /* ------------ TUNER_PHILIPS_TD1316 - Philips PAL ------------ */
922 static struct tuner_range tuner_philips_td1316_pal_ranges[] = {
923 { 16 * 160.00 /*MHz*/, 0xc8, 0xa1, },
924 { 16 * 442.00 /*MHz*/, 0xc8, 0xa2, },
925 { 16 * 999.99 , 0xc8, 0xa4, },
928 static struct tuner_params tuner_philips_td1316_params[] = {
930 .type = TUNER_PARAM_TYPE_PAL,
931 .ranges = tuner_philips_td1316_pal_ranges,
932 .count = ARRAY_SIZE(tuner_philips_td1316_pal_ranges),
936 /* ------------ TUNER_PHILIPS_TUV1236D - Philips ATSC ------------ */
938 static struct tuner_range tuner_tuv1236d_ntsc_ranges[] = {
939 { 16 * 157.25 /*MHz*/, 0xce, 0x01, },
940 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
941 { 16 * 999.99 , 0xce, 0x04, },
945 static struct tuner_params tuner_tuv1236d_params[] = {
947 .type = TUNER_PARAM_TYPE_NTSC,
948 .ranges = tuner_tuv1236d_ntsc_ranges,
949 .count = ARRAY_SIZE(tuner_tuv1236d_ntsc_ranges),
953 /* ------------ TUNER_TNF_5335MF - Philips NTSC ------------ */
955 static struct tuner_range tuner_tnf_5335mf_ntsc_ranges[] = {
956 { 16 * 157.25 /*MHz*/, 0x8e, 0x01, },
957 { 16 * 454.00 /*MHz*/, 0x8e, 0x02, },
958 { 16 * 999.99 , 0x8e, 0x04, },
961 static struct tuner_params tuner_tnf_5335mf_params[] = {
963 .type = TUNER_PARAM_TYPE_NTSC,
964 .ranges = tuner_tnf_5335mf_ntsc_ranges,
965 .count = ARRAY_SIZE(tuner_tnf_5335mf_ntsc_ranges),
969 /* 70-79 */
970 /* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */
972 static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = {
973 { 16 * 130.00 /*MHz*/, 0xce, 0x01, },
974 { 16 * 364.50 /*MHz*/, 0xce, 0x02, },
975 { 16 * 999.99 , 0xce, 0x08, },
978 static struct tuner_params tuner_samsung_tcpn_2121p30a_params[] = {
980 .type = TUNER_PARAM_TYPE_NTSC,
981 .ranges = tuner_samsung_tcpn_2121p30a_ntsc_ranges,
982 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_ntsc_ranges),
986 /* --------------------------------------------------------------------- */
988 struct tunertype tuners[] = {
989 /* 0-9 */
990 [TUNER_TEMIC_PAL] = { /* TEMIC PAL */
991 .name = "Temic PAL (4002 FH5)",
992 .params = tuner_temic_pal_params,
993 .count = ARRAY_SIZE(tuner_temic_pal_params),
995 [TUNER_PHILIPS_PAL_I] = { /* Philips PAL_I */
996 .name = "Philips PAL_I (FI1246 and compatibles)",
997 .params = tuner_philips_pal_i_params,
998 .count = ARRAY_SIZE(tuner_philips_pal_i_params),
1000 [TUNER_PHILIPS_NTSC] = { /* Philips NTSC */
1001 .name = "Philips NTSC (FI1236,FM1236 and compatibles)",
1002 .params = tuner_philips_ntsc_params,
1003 .count = ARRAY_SIZE(tuner_philips_ntsc_params),
1005 [TUNER_PHILIPS_SECAM] = { /* Philips SECAM */
1006 .name = "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)",
1007 .params = tuner_philips_secam_params,
1008 .count = ARRAY_SIZE(tuner_philips_secam_params),
1010 [TUNER_ABSENT] = { /* Tuner Absent */
1011 .name = "NoTuner",
1013 [TUNER_PHILIPS_PAL] = { /* Philips PAL */
1014 .name = "Philips PAL_BG (FI1216 and compatibles)",
1015 .params = tuner_philips_pal_params,
1016 .count = ARRAY_SIZE(tuner_philips_pal_params),
1018 [TUNER_TEMIC_NTSC] = { /* TEMIC NTSC */
1019 .name = "Temic NTSC (4032 FY5)",
1020 .params = tuner_temic_ntsc_params,
1021 .count = ARRAY_SIZE(tuner_temic_ntsc_params),
1023 [TUNER_TEMIC_PAL_I] = { /* TEMIC PAL_I */
1024 .name = "Temic PAL_I (4062 FY5)",
1025 .params = tuner_temic_pal_i_params,
1026 .count = ARRAY_SIZE(tuner_temic_pal_i_params),
1028 [TUNER_TEMIC_4036FY5_NTSC] = { /* TEMIC NTSC */
1029 .name = "Temic NTSC (4036 FY5)",
1030 .params = tuner_temic_4036fy5_ntsc_params,
1031 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_params),
1033 [TUNER_ALPS_TSBH1_NTSC] = { /* TEMIC NTSC */
1034 .name = "Alps HSBH1",
1035 .params = tuner_alps_tsbh1_ntsc_params,
1036 .count = ARRAY_SIZE(tuner_alps_tsbh1_ntsc_params),
1039 /* 10-19 */
1040 [TUNER_ALPS_TSBE1_PAL] = { /* TEMIC PAL */
1041 .name = "Alps TSBE1",
1042 .params = tuner_alps_tsb_1_params,
1043 .count = ARRAY_SIZE(tuner_alps_tsb_1_params),
1045 [TUNER_ALPS_TSBB5_PAL_I] = { /* Alps PAL_I */
1046 .name = "Alps TSBB5",
1047 .params = tuner_alps_tsbb5_params,
1048 .count = ARRAY_SIZE(tuner_alps_tsbb5_params),
1050 [TUNER_ALPS_TSBE5_PAL] = { /* Alps PAL */
1051 .name = "Alps TSBE5",
1052 .params = tuner_alps_tsbe5_params,
1053 .count = ARRAY_SIZE(tuner_alps_tsbe5_params),
1055 [TUNER_ALPS_TSBC5_PAL] = { /* Alps PAL */
1056 .name = "Alps TSBC5",
1057 .params = tuner_alps_tsbc5_params,
1058 .count = ARRAY_SIZE(tuner_alps_tsbc5_params),
1060 [TUNER_TEMIC_4006FH5_PAL] = { /* TEMIC PAL */
1061 .name = "Temic PAL_BG (4006FH5)",
1062 .params = tuner_temic_4006fh5_params,
1063 .count = ARRAY_SIZE(tuner_temic_4006fh5_params),
1065 [TUNER_ALPS_TSHC6_NTSC] = { /* Alps NTSC */
1066 .name = "Alps TSCH6",
1067 .params = tuner_alps_tshc6_params,
1068 .count = ARRAY_SIZE(tuner_alps_tshc6_params),
1070 [TUNER_TEMIC_PAL_DK] = { /* TEMIC PAL */
1071 .name = "Temic PAL_DK (4016 FY5)",
1072 .params = tuner_temic_pal_dk_params,
1073 .count = ARRAY_SIZE(tuner_temic_pal_dk_params),
1075 [TUNER_PHILIPS_NTSC_M] = { /* Philips NTSC */
1076 .name = "Philips NTSC_M (MK2)",
1077 .params = tuner_philips_ntsc_m_params,
1078 .count = ARRAY_SIZE(tuner_philips_ntsc_m_params),
1080 [TUNER_TEMIC_4066FY5_PAL_I] = { /* TEMIC PAL_I */
1081 .name = "Temic PAL_I (4066 FY5)",
1082 .params = tuner_temic_4066fy5_pal_i_params,
1083 .count = ARRAY_SIZE(tuner_temic_4066fy5_pal_i_params),
1085 [TUNER_TEMIC_4006FN5_MULTI_PAL] = { /* TEMIC PAL */
1086 .name = "Temic PAL* auto (4006 FN5)",
1087 .params = tuner_temic_4006fn5_multi_params,
1088 .count = ARRAY_SIZE(tuner_temic_4006fn5_multi_params),
1091 /* 20-29 */
1092 [TUNER_TEMIC_4009FR5_PAL] = { /* TEMIC PAL */
1093 .name = "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)",
1094 .params = tuner_temic_4009f_5_params,
1095 .count = ARRAY_SIZE(tuner_temic_4009f_5_params),
1097 [TUNER_TEMIC_4039FR5_NTSC] = { /* TEMIC NTSC */
1098 .name = "Temic NTSC (4039 FR5)",
1099 .params = tuner_temic_4039fr5_params,
1100 .count = ARRAY_SIZE(tuner_temic_4039fr5_params),
1102 [TUNER_TEMIC_4046FM5] = { /* TEMIC PAL */
1103 .name = "Temic PAL/SECAM multi (4046 FM5)",
1104 .params = tuner_temic_4046fm5_params,
1105 .count = ARRAY_SIZE(tuner_temic_4046fm5_params),
1107 [TUNER_PHILIPS_PAL_DK] = { /* Philips PAL */
1108 .name = "Philips PAL_DK (FI1256 and compatibles)",
1109 .params = tuner_philips_pal_dk_params,
1110 .count = ARRAY_SIZE(tuner_philips_pal_dk_params),
1112 [TUNER_PHILIPS_FQ1216ME] = { /* Philips PAL */
1113 .name = "Philips PAL/SECAM multi (FQ1216ME)",
1114 .params = tuner_philips_fq1216me_params,
1115 .count = ARRAY_SIZE(tuner_philips_fq1216me_params),
1117 [TUNER_LG_PAL_I_FM] = { /* LGINNOTEK PAL_I */
1118 .name = "LG PAL_I+FM (TAPC-I001D)",
1119 .params = tuner_lg_pal_i_fm_params,
1120 .count = ARRAY_SIZE(tuner_lg_pal_i_fm_params),
1122 [TUNER_LG_PAL_I] = { /* LGINNOTEK PAL_I */
1123 .name = "LG PAL_I (TAPC-I701D)",
1124 .params = tuner_lg_pal_i_params,
1125 .count = ARRAY_SIZE(tuner_lg_pal_i_params),
1127 [TUNER_LG_NTSC_FM] = { /* LGINNOTEK NTSC */
1128 .name = "LG NTSC+FM (TPI8NSR01F)",
1129 .params = tuner_lg_ntsc_fm_params,
1130 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_params),
1132 [TUNER_LG_PAL_FM] = { /* LGINNOTEK PAL */
1133 .name = "LG PAL_BG+FM (TPI8PSB01D)",
1134 .params = tuner_lg_pal_fm_params,
1135 .count = ARRAY_SIZE(tuner_lg_pal_fm_params),
1137 [TUNER_LG_PAL] = { /* LGINNOTEK PAL */
1138 .name = "LG PAL_BG (TPI8PSB11D)",
1139 .params = tuner_lg_pal_params,
1140 .count = ARRAY_SIZE(tuner_lg_pal_params),
1143 /* 30-39 */
1144 [TUNER_TEMIC_4009FN5_MULTI_PAL_FM] = { /* TEMIC PAL */
1145 .name = "Temic PAL* auto + FM (4009 FN5)",
1146 .params = tuner_temic_4009_fn5_multi_pal_fm_params,
1147 .count = ARRAY_SIZE(tuner_temic_4009_fn5_multi_pal_fm_params),
1149 [TUNER_SHARP_2U5JF5540_NTSC] = { /* SHARP NTSC */
1150 .name = "SHARP NTSC_JP (2U5JF5540)",
1151 .params = tuner_sharp_2u5jf5540_params,
1152 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_params),
1154 [TUNER_Samsung_PAL_TCPM9091PD27] = { /* Samsung PAL */
1155 .name = "Samsung PAL TCPM9091PD27",
1156 .params = tuner_samsung_pal_tcpm9091pd27_params,
1157 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_params),
1159 [TUNER_MT2032] = { /* Microtune PAL|NTSC */
1160 .name = "MT20xx universal",
1161 /* see mt20xx.c for details */ },
1162 [TUNER_TEMIC_4106FH5] = { /* TEMIC PAL */
1163 .name = "Temic PAL_BG (4106 FH5)",
1164 .params = tuner_temic_4106fh5_params,
1165 .count = ARRAY_SIZE(tuner_temic_4106fh5_params),
1167 [TUNER_TEMIC_4012FY5] = { /* TEMIC PAL */
1168 .name = "Temic PAL_DK/SECAM_L (4012 FY5)",
1169 .params = tuner_temic_4012fy5_params,
1170 .count = ARRAY_SIZE(tuner_temic_4012fy5_params),
1172 [TUNER_TEMIC_4136FY5] = { /* TEMIC NTSC */
1173 .name = "Temic NTSC (4136 FY5)",
1174 .params = tuner_temic_4136_fy5_params,
1175 .count = ARRAY_SIZE(tuner_temic_4136_fy5_params),
1177 [TUNER_LG_PAL_NEW_TAPC] = { /* LGINNOTEK PAL */
1178 .name = "LG PAL (newer TAPC series)",
1179 .params = tuner_lg_pal_new_tapc_params,
1180 .count = ARRAY_SIZE(tuner_lg_pal_new_tapc_params),
1182 [TUNER_PHILIPS_FM1216ME_MK3] = { /* Philips PAL */
1183 .name = "Philips PAL/SECAM multi (FM1216ME MK3)",
1184 .params = tuner_fm1216me_mk3_params,
1185 .count = ARRAY_SIZE(tuner_fm1216me_mk3_params),
1187 [TUNER_LG_NTSC_NEW_TAPC] = { /* LGINNOTEK NTSC */
1188 .name = "LG NTSC (newer TAPC series)",
1189 .params = tuner_lg_ntsc_new_tapc_params,
1190 .count = ARRAY_SIZE(tuner_lg_ntsc_new_tapc_params),
1193 /* 40-49 */
1194 [TUNER_HITACHI_NTSC] = { /* HITACHI NTSC */
1195 .name = "HITACHI V7-J180AT",
1196 .params = tuner_hitachi_ntsc_params,
1197 .count = ARRAY_SIZE(tuner_hitachi_ntsc_params),
1199 [TUNER_PHILIPS_PAL_MK] = { /* Philips PAL */
1200 .name = "Philips PAL_MK (FI1216 MK)",
1201 .params = tuner_philips_pal_mk_params,
1202 .count = ARRAY_SIZE(tuner_philips_pal_mk_params),
1204 [TUNER_PHILIPS_ATSC] = { /* Philips ATSC */
1205 .name = "Philips 1236D ATSC/NTSC dual in",
1206 .params = tuner_philips_atsc_params,
1207 .count = ARRAY_SIZE(tuner_philips_atsc_params),
1209 [TUNER_PHILIPS_FM1236_MK3] = { /* Philips NTSC */
1210 .name = "Philips NTSC MK3 (FM1236MK3 or FM1236/F)",
1211 .params = tuner_fm1236_mk3_params,
1212 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
1214 [TUNER_PHILIPS_4IN1] = { /* Philips NTSC */
1215 .name = "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)",
1216 .params = tuner_philips_4in1_params,
1217 .count = ARRAY_SIZE(tuner_philips_4in1_params),
1219 [TUNER_MICROTUNE_4049FM5] = { /* Microtune PAL */
1220 .name = "Microtune 4049 FM5",
1221 .params = tuner_microtune_4049_fm5_params,
1222 .count = ARRAY_SIZE(tuner_microtune_4049_fm5_params),
1224 [TUNER_PANASONIC_VP27] = { /* Panasonic NTSC */
1225 .name = "Panasonic VP27s/ENGE4324D",
1226 .params = tuner_panasonic_vp27_params,
1227 .count = ARRAY_SIZE(tuner_panasonic_vp27_params),
1229 [TUNER_LG_NTSC_TAPE] = { /* LGINNOTEK NTSC */
1230 .name = "LG NTSC (TAPE series)",
1231 .params = tuner_lg_ntsc_tape_params,
1232 .count = ARRAY_SIZE(tuner_lg_ntsc_tape_params),
1234 [TUNER_TNF_8831BGFF] = { /* Philips PAL */
1235 .name = "Tenna TNF 8831 BGFF)",
1236 .params = tuner_tnf_8831bgff_params,
1237 .count = ARRAY_SIZE(tuner_tnf_8831bgff_params),
1239 [TUNER_MICROTUNE_4042FI5] = { /* Microtune NTSC */
1240 .name = "Microtune 4042 FI5 ATSC/NTSC dual in",
1241 .params = tuner_microtune_4042fi5_params,
1242 .count = ARRAY_SIZE(tuner_microtune_4042fi5_params),
1245 /* 50-59 */
1246 [TUNER_TCL_2002N] = { /* TCL NTSC */
1247 .name = "TCL 2002N",
1248 .params = tuner_tcl_2002n_params,
1249 .count = ARRAY_SIZE(tuner_tcl_2002n_params),
1251 [TUNER_PHILIPS_FM1256_IH3] = { /* Philips PAL */
1252 .name = "Philips PAL/SECAM_D (FM 1256 I-H3)",
1253 .params = tuner_philips_fm1256_ih3_params,
1254 .count = ARRAY_SIZE(tuner_philips_fm1256_ih3_params),
1256 [TUNER_THOMSON_DTT7610] = { /* THOMSON ATSC */
1257 .name = "Thomson DTT 7610 (ATSC/NTSC)",
1258 .params = tuner_thomson_dtt7610_params,
1259 .count = ARRAY_SIZE(tuner_thomson_dtt7610_params),
1261 [TUNER_PHILIPS_FQ1286] = { /* Philips NTSC */
1262 .name = "Philips FQ1286",
1263 .params = tuner_philips_fq1286_params,
1264 .count = ARRAY_SIZE(tuner_philips_fq1286_params),
1266 [TUNER_PHILIPS_TDA8290] = { /* Philips PAL|NTSC */
1267 .name = "tda8290+75",
1268 /* see tda8290.c for details */ },
1269 [TUNER_TCL_2002MB] = { /* TCL PAL */
1270 .name = "TCL 2002MB",
1271 .params = tuner_tcl_2002mb_params,
1272 .count = ARRAY_SIZE(tuner_tcl_2002mb_params),
1274 [TUNER_PHILIPS_FQ1216AME_MK4] = { /* Philips PAL */
1275 .name = "Philips PAL/SECAM multi (FQ1216AME MK4)",
1276 .params = tuner_philips_fq1216ame_mk4_params,
1277 .count = ARRAY_SIZE(tuner_philips_fq1216ame_mk4_params),
1279 [TUNER_PHILIPS_FQ1236A_MK4] = { /* Philips NTSC */
1280 .name = "Philips FQ1236A MK4",
1281 .params = tuner_philips_fq1236a_mk4_params,
1282 .count = ARRAY_SIZE(tuner_philips_fq1236a_mk4_params),
1284 [TUNER_YMEC_TVF_8531MF] = { /* Philips NTSC */
1285 .name = "Ymec TVision TVF-8531MF/8831MF/8731MF",
1286 .params = tuner_ymec_tvf_8531mf_params,
1287 .count = ARRAY_SIZE(tuner_ymec_tvf_8531mf_params),
1289 [TUNER_YMEC_TVF_5533MF] = { /* Philips NTSC */
1290 .name = "Ymec TVision TVF-5533MF",
1291 .params = tuner_ymec_tvf_5533mf_params,
1292 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_params),
1295 /* 60-69 */
1296 [TUNER_THOMSON_DTT761X] = { /* THOMSON ATSC */
1297 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
1298 .name = "Thomson DTT 761X (ATSC/NTSC)",
1299 .params = tuner_thomson_dtt761x_params,
1300 .count = ARRAY_SIZE(tuner_thomson_dtt761x_params),
1302 [TUNER_TENA_9533_DI] = { /* Philips PAL */
1303 .name = "Tena TNF9533-D/IF/TNF9533-B/DF",
1304 .params = tuner_tena_9533_di_params,
1305 .count = ARRAY_SIZE(tuner_tena_9533_di_params),
1307 [TUNER_TEA5767] = { /* Philips RADIO */
1308 .name = "Philips TEA5767HN FM Radio",
1309 /* see tea5767.c for details */
1311 [TUNER_PHILIPS_FMD1216ME_MK3] = { /* Philips PAL */
1312 .name = "Philips FMD1216ME MK3 Hybrid Tuner",
1313 .params = tuner_philips_fmd1216me_mk3_params,
1314 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_params),
1316 [TUNER_LG_TDVS_H062F] = { /* LGINNOTEK ATSC */
1317 .name = "LG TDVS-H062F/TUA6034",
1318 .params = tuner_tua6034_params,
1319 .count = ARRAY_SIZE(tuner_tua6034_params),
1321 [TUNER_YMEC_TVF66T5_B_DFF] = { /* Philips PAL */
1322 .name = "Ymec TVF66T5-B/DFF",
1323 .params = tuner_ymec_tvf66t5_b_dff_params,
1324 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_params),
1326 [TUNER_LG_NTSC_TALN_MINI] = { /* LGINNOTEK NTSC */
1327 .name = "LG NTSC (TALN mini series)",
1328 .params = tuner_lg_taln_mini_params,
1329 .count = ARRAY_SIZE(tuner_lg_taln_mini_params),
1331 [TUNER_PHILIPS_TD1316] = { /* Philips PAL */
1332 .name = "Philips TD1316 Hybrid Tuner",
1333 .params = tuner_philips_td1316_params,
1334 .count = ARRAY_SIZE(tuner_philips_td1316_params),
1336 [TUNER_PHILIPS_TUV1236D] = { /* Philips ATSC */
1337 .name = "Philips TUV1236D ATSC/NTSC dual in",
1338 .params = tuner_tuv1236d_params,
1339 .count = ARRAY_SIZE(tuner_tuv1236d_params),
1341 [TUNER_TNF_5335MF] = { /* Philips NTSC */
1342 .name = "Tena TNF 5335 MF",
1343 .params = tuner_tnf_5335mf_params,
1344 .count = ARRAY_SIZE(tuner_tnf_5335mf_params),
1347 /* 70-79 */
1348 [TUNER_SAMSUNG_TCPN_2121P30A] = { /* Samsung NTSC */
1349 .name = "Samsung TCPN 2121P30A",
1350 .params = tuner_samsung_tcpn_2121p30a_params,
1351 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params),
1353 [TUNER_XCEIVE_XC3028] = { /* Xceive 3028 */
1354 .name = "Xceive xc3028",
1355 /* see xc3028.c for details */
1359 unsigned const int tuner_count = ARRAY_SIZE(tuners);