]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/media/common/tuners/tuner-types.c
Merge branch 'next-queue' into next
[mirror_ubuntu-artful-kernel.git] / drivers / media / common / tuners / tuner-types.c
1 /*
2 *
3 * i2c tv tuner chip device type database.
4 *
5 */
6
7 #include <linux/i2c.h>
8 #include <media/tuner.h>
9 #include <media/tuner-types.h>
10
11 /* ---------------------------------------------------------------------- */
12
13 /*
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.
17 *
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.
22 *
23 * Each tuner_params array may contain one or more elements, one
24 * for each video standard.
25 *
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.
29 *
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.
36 */
37
38 /* The following was taken from dvb-pll.c: */
39
40 /* Set AGC TOP value to 103 dBuV:
41 * 0x80 = Control Byte
42 * 0x40 = 250 uA charge pump (irrelevant)
43 * 0x18 = Aux Byte to follow
44 * 0x06 = 64.5 kHz divider (irrelevant)
45 * 0x01 = Disable Vt (aka sleep)
46 *
47 * 0x00 = AGC Time constant 2s Iagc = 300 nA (vs 0x80 = 9 nA)
48 * 0x50 = AGC Take over point = 103 dBuV
49 */
50 static u8 tua603x_agc103[] = { 2, 0x80|0x40|0x18|0x06|0x01, 0x00|0x50 };
51
52 /* 0x04 = 166.67 kHz divider
53 *
54 * 0x80 = AGC Time constant 50ms Iagc = 9 uA
55 * 0x20 = AGC Take over point = 112 dBuV
56 */
57 static u8 tua603x_agc112[] = { 2, 0x80|0x40|0x18|0x04|0x01, 0x80|0x20 };
58
59 /* 0-9 */
60 /* ------------ TUNER_TEMIC_PAL - TEMIC PAL ------------ */
61
62 static struct tuner_range tuner_temic_pal_ranges[] = {
63 { 16 * 140.25 /*MHz*/, 0x8e, 0x02, },
64 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
65 { 16 * 999.99 , 0x8e, 0x01, },
66 };
67
68 static struct tuner_params tuner_temic_pal_params[] = {
69 {
70 .type = TUNER_PARAM_TYPE_PAL,
71 .ranges = tuner_temic_pal_ranges,
72 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
73 },
74 };
75
76 /* ------------ TUNER_PHILIPS_PAL_I - Philips PAL_I ------------ */
77
78 static struct tuner_range tuner_philips_pal_i_ranges[] = {
79 { 16 * 140.25 /*MHz*/, 0x8e, 0xa0, },
80 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
81 { 16 * 999.99 , 0x8e, 0x30, },
82 };
83
84 static struct tuner_params tuner_philips_pal_i_params[] = {
85 {
86 .type = TUNER_PARAM_TYPE_PAL,
87 .ranges = tuner_philips_pal_i_ranges,
88 .count = ARRAY_SIZE(tuner_philips_pal_i_ranges),
89 },
90 };
91
92 /* ------------ TUNER_PHILIPS_NTSC - Philips NTSC ------------ */
93
94 static struct tuner_range tuner_philips_ntsc_ranges[] = {
95 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
96 { 16 * 451.25 /*MHz*/, 0x8e, 0x90, },
97 { 16 * 999.99 , 0x8e, 0x30, },
98 };
99
100 static struct tuner_params tuner_philips_ntsc_params[] = {
101 {
102 .type = TUNER_PARAM_TYPE_NTSC,
103 .ranges = tuner_philips_ntsc_ranges,
104 .count = ARRAY_SIZE(tuner_philips_ntsc_ranges),
105 .cb_first_if_lower_freq = 1,
106 },
107 };
108
109 /* ------------ TUNER_PHILIPS_SECAM - Philips SECAM ------------ */
110
111 static struct tuner_range tuner_philips_secam_ranges[] = {
112 { 16 * 168.25 /*MHz*/, 0x8e, 0xa7, },
113 { 16 * 447.25 /*MHz*/, 0x8e, 0x97, },
114 { 16 * 999.99 , 0x8e, 0x37, },
115 };
116
117 static struct tuner_params tuner_philips_secam_params[] = {
118 {
119 .type = TUNER_PARAM_TYPE_SECAM,
120 .ranges = tuner_philips_secam_ranges,
121 .count = ARRAY_SIZE(tuner_philips_secam_ranges),
122 .cb_first_if_lower_freq = 1,
123 },
124 };
125
126 /* ------------ TUNER_PHILIPS_PAL - Philips PAL ------------ */
127
128 static struct tuner_range tuner_philips_pal_ranges[] = {
129 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
130 { 16 * 447.25 /*MHz*/, 0x8e, 0x90, },
131 { 16 * 999.99 , 0x8e, 0x30, },
132 };
133
134 static struct tuner_params tuner_philips_pal_params[] = {
135 {
136 .type = TUNER_PARAM_TYPE_PAL,
137 .ranges = tuner_philips_pal_ranges,
138 .count = ARRAY_SIZE(tuner_philips_pal_ranges),
139 .cb_first_if_lower_freq = 1,
140 },
141 };
142
143 /* ------------ TUNER_TEMIC_NTSC - TEMIC NTSC ------------ */
144
145 static struct tuner_range tuner_temic_ntsc_ranges[] = {
146 { 16 * 157.25 /*MHz*/, 0x8e, 0x02, },
147 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
148 { 16 * 999.99 , 0x8e, 0x01, },
149 };
150
151 static struct tuner_params tuner_temic_ntsc_params[] = {
152 {
153 .type = TUNER_PARAM_TYPE_NTSC,
154 .ranges = tuner_temic_ntsc_ranges,
155 .count = ARRAY_SIZE(tuner_temic_ntsc_ranges),
156 },
157 };
158
159 /* ------------ TUNER_TEMIC_PAL_I - TEMIC PAL_I ------------ */
160
161 static struct tuner_range tuner_temic_pal_i_ranges[] = {
162 { 16 * 170.00 /*MHz*/, 0x8e, 0x02, },
163 { 16 * 450.00 /*MHz*/, 0x8e, 0x04, },
164 { 16 * 999.99 , 0x8e, 0x01, },
165 };
166
167 static struct tuner_params tuner_temic_pal_i_params[] = {
168 {
169 .type = TUNER_PARAM_TYPE_PAL,
170 .ranges = tuner_temic_pal_i_ranges,
171 .count = ARRAY_SIZE(tuner_temic_pal_i_ranges),
172 },
173 };
174
175 /* ------------ TUNER_TEMIC_4036FY5_NTSC - TEMIC NTSC ------------ */
176
177 static struct tuner_range tuner_temic_4036fy5_ntsc_ranges[] = {
178 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
179 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
180 { 16 * 999.99 , 0x8e, 0x30, },
181 };
182
183 static struct tuner_params tuner_temic_4036fy5_ntsc_params[] = {
184 {
185 .type = TUNER_PARAM_TYPE_NTSC,
186 .ranges = tuner_temic_4036fy5_ntsc_ranges,
187 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_ranges),
188 },
189 };
190
191 /* ------------ TUNER_ALPS_TSBH1_NTSC - TEMIC NTSC ------------ */
192
193 static struct tuner_range tuner_alps_tsb_1_ranges[] = {
194 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
195 { 16 * 385.25 /*MHz*/, 0x8e, 0x02, },
196 { 16 * 999.99 , 0x8e, 0x08, },
197 };
198
199 static struct tuner_params tuner_alps_tsbh1_ntsc_params[] = {
200 {
201 .type = TUNER_PARAM_TYPE_NTSC,
202 .ranges = tuner_alps_tsb_1_ranges,
203 .count = ARRAY_SIZE(tuner_alps_tsb_1_ranges),
204 },
205 };
206
207 /* 10-19 */
208 /* ------------ TUNER_ALPS_TSBE1_PAL - TEMIC PAL ------------ */
209
210 static struct tuner_params tuner_alps_tsb_1_params[] = {
211 {
212 .type = TUNER_PARAM_TYPE_PAL,
213 .ranges = tuner_alps_tsb_1_ranges,
214 .count = ARRAY_SIZE(tuner_alps_tsb_1_ranges),
215 },
216 };
217
218 /* ------------ TUNER_ALPS_TSBB5_PAL_I - Alps PAL_I ------------ */
219
220 static struct tuner_range tuner_alps_tsb_5_pal_ranges[] = {
221 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, },
222 { 16 * 351.25 /*MHz*/, 0x8e, 0x02, },
223 { 16 * 999.99 , 0x8e, 0x08, },
224 };
225
226 static struct tuner_params tuner_alps_tsbb5_params[] = {
227 {
228 .type = TUNER_PARAM_TYPE_PAL,
229 .ranges = tuner_alps_tsb_5_pal_ranges,
230 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
231 },
232 };
233
234 /* ------------ TUNER_ALPS_TSBE5_PAL - Alps PAL ------------ */
235
236 static struct tuner_params tuner_alps_tsbe5_params[] = {
237 {
238 .type = TUNER_PARAM_TYPE_PAL,
239 .ranges = tuner_alps_tsb_5_pal_ranges,
240 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
241 },
242 };
243
244 /* ------------ TUNER_ALPS_TSBC5_PAL - Alps PAL ------------ */
245
246 static struct tuner_params tuner_alps_tsbc5_params[] = {
247 {
248 .type = TUNER_PARAM_TYPE_PAL,
249 .ranges = tuner_alps_tsb_5_pal_ranges,
250 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
251 },
252 };
253
254 /* ------------ TUNER_TEMIC_4006FH5_PAL - TEMIC PAL ------------ */
255
256 static struct tuner_range tuner_lg_pal_ranges[] = {
257 { 16 * 170.00 /*MHz*/, 0x8e, 0xa0, },
258 { 16 * 450.00 /*MHz*/, 0x8e, 0x90, },
259 { 16 * 999.99 , 0x8e, 0x30, },
260 };
261
262 static struct tuner_params tuner_temic_4006fh5_params[] = {
263 {
264 .type = TUNER_PARAM_TYPE_PAL,
265 .ranges = tuner_lg_pal_ranges,
266 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
267 },
268 };
269
270 /* ------------ TUNER_ALPS_TSHC6_NTSC - Alps NTSC ------------ */
271
272 static struct tuner_range tuner_alps_tshc6_ntsc_ranges[] = {
273 { 16 * 137.25 /*MHz*/, 0x8e, 0x14, },
274 { 16 * 385.25 /*MHz*/, 0x8e, 0x12, },
275 { 16 * 999.99 , 0x8e, 0x11, },
276 };
277
278 static struct tuner_params tuner_alps_tshc6_params[] = {
279 {
280 .type = TUNER_PARAM_TYPE_NTSC,
281 .ranges = tuner_alps_tshc6_ntsc_ranges,
282 .count = ARRAY_SIZE(tuner_alps_tshc6_ntsc_ranges),
283 },
284 };
285
286 /* ------------ TUNER_TEMIC_PAL_DK - TEMIC PAL ------------ */
287
288 static struct tuner_range tuner_temic_pal_dk_ranges[] = {
289 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
290 { 16 * 456.25 /*MHz*/, 0x8e, 0x90, },
291 { 16 * 999.99 , 0x8e, 0x30, },
292 };
293
294 static struct tuner_params tuner_temic_pal_dk_params[] = {
295 {
296 .type = TUNER_PARAM_TYPE_PAL,
297 .ranges = tuner_temic_pal_dk_ranges,
298 .count = ARRAY_SIZE(tuner_temic_pal_dk_ranges),
299 },
300 };
301
302 /* ------------ TUNER_PHILIPS_NTSC_M - Philips NTSC ------------ */
303
304 static struct tuner_range tuner_philips_ntsc_m_ranges[] = {
305 { 16 * 160.00 /*MHz*/, 0x8e, 0xa0, },
306 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
307 { 16 * 999.99 , 0x8e, 0x30, },
308 };
309
310 static struct tuner_params tuner_philips_ntsc_m_params[] = {
311 {
312 .type = TUNER_PARAM_TYPE_NTSC,
313 .ranges = tuner_philips_ntsc_m_ranges,
314 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
315 },
316 };
317
318 /* ------------ TUNER_TEMIC_4066FY5_PAL_I - TEMIC PAL_I ------------ */
319
320 static struct tuner_range tuner_temic_40x6f_5_pal_ranges[] = {
321 { 16 * 169.00 /*MHz*/, 0x8e, 0xa0, },
322 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
323 { 16 * 999.99 , 0x8e, 0x30, },
324 };
325
326 static struct tuner_params tuner_temic_4066fy5_pal_i_params[] = {
327 {
328 .type = TUNER_PARAM_TYPE_PAL,
329 .ranges = tuner_temic_40x6f_5_pal_ranges,
330 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
331 },
332 };
333
334 /* ------------ TUNER_TEMIC_4006FN5_MULTI_PAL - TEMIC PAL ------------ */
335
336 static struct tuner_params tuner_temic_4006fn5_multi_params[] = {
337 {
338 .type = TUNER_PARAM_TYPE_PAL,
339 .ranges = tuner_temic_40x6f_5_pal_ranges,
340 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
341 },
342 };
343
344 /* 20-29 */
345 /* ------------ TUNER_TEMIC_4009FR5_PAL - TEMIC PAL ------------ */
346
347 static struct tuner_range tuner_temic_4009f_5_pal_ranges[] = {
348 { 16 * 141.00 /*MHz*/, 0x8e, 0xa0, },
349 { 16 * 464.00 /*MHz*/, 0x8e, 0x90, },
350 { 16 * 999.99 , 0x8e, 0x30, },
351 };
352
353 static struct tuner_params tuner_temic_4009f_5_params[] = {
354 {
355 .type = TUNER_PARAM_TYPE_PAL,
356 .ranges = tuner_temic_4009f_5_pal_ranges,
357 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
358 },
359 };
360
361 /* ------------ TUNER_TEMIC_4039FR5_NTSC - TEMIC NTSC ------------ */
362
363 static struct tuner_range tuner_temic_4x3x_f_5_ntsc_ranges[] = {
364 { 16 * 158.00 /*MHz*/, 0x8e, 0xa0, },
365 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
366 { 16 * 999.99 , 0x8e, 0x30, },
367 };
368
369 static struct tuner_params tuner_temic_4039fr5_params[] = {
370 {
371 .type = TUNER_PARAM_TYPE_NTSC,
372 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
373 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
374 },
375 };
376
377 /* ------------ TUNER_TEMIC_4046FM5 - TEMIC PAL ------------ */
378
379 static struct tuner_params tuner_temic_4046fm5_params[] = {
380 {
381 .type = TUNER_PARAM_TYPE_PAL,
382 .ranges = tuner_temic_40x6f_5_pal_ranges,
383 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
384 },
385 };
386
387 /* ------------ TUNER_PHILIPS_PAL_DK - Philips PAL ------------ */
388
389 static struct tuner_params tuner_philips_pal_dk_params[] = {
390 {
391 .type = TUNER_PARAM_TYPE_PAL,
392 .ranges = tuner_lg_pal_ranges,
393 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
394 },
395 };
396
397 /* ------------ TUNER_PHILIPS_FQ1216ME - Philips PAL ------------ */
398
399 static struct tuner_params tuner_philips_fq1216me_params[] = {
400 {
401 .type = TUNER_PARAM_TYPE_PAL,
402 .ranges = tuner_lg_pal_ranges,
403 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
404 .has_tda9887 = 1,
405 .port1_active = 1,
406 .port2_active = 1,
407 .port2_invert_for_secam_lc = 1,
408 },
409 };
410
411 /* ------------ TUNER_LG_PAL_I_FM - LGINNOTEK PAL_I ------------ */
412
413 static struct tuner_params tuner_lg_pal_i_fm_params[] = {
414 {
415 .type = TUNER_PARAM_TYPE_PAL,
416 .ranges = tuner_lg_pal_ranges,
417 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
418 },
419 };
420
421 /* ------------ TUNER_LG_PAL_I - LGINNOTEK PAL_I ------------ */
422
423 static struct tuner_params tuner_lg_pal_i_params[] = {
424 {
425 .type = TUNER_PARAM_TYPE_PAL,
426 .ranges = tuner_lg_pal_ranges,
427 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
428 },
429 };
430
431 /* ------------ TUNER_LG_NTSC_FM - LGINNOTEK NTSC ------------ */
432
433 static struct tuner_range tuner_lg_ntsc_fm_ranges[] = {
434 { 16 * 210.00 /*MHz*/, 0x8e, 0xa0, },
435 { 16 * 497.00 /*MHz*/, 0x8e, 0x90, },
436 { 16 * 999.99 , 0x8e, 0x30, },
437 };
438
439 static struct tuner_params tuner_lg_ntsc_fm_params[] = {
440 {
441 .type = TUNER_PARAM_TYPE_NTSC,
442 .ranges = tuner_lg_ntsc_fm_ranges,
443 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_ranges),
444 },
445 };
446
447 /* ------------ TUNER_LG_PAL_FM - LGINNOTEK PAL ------------ */
448
449 static struct tuner_params tuner_lg_pal_fm_params[] = {
450 {
451 .type = TUNER_PARAM_TYPE_PAL,
452 .ranges = tuner_lg_pal_ranges,
453 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
454 },
455 };
456
457 /* ------------ TUNER_LG_PAL - LGINNOTEK PAL ------------ */
458
459 static struct tuner_params tuner_lg_pal_params[] = {
460 {
461 .type = TUNER_PARAM_TYPE_PAL,
462 .ranges = tuner_lg_pal_ranges,
463 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
464 },
465 };
466
467 /* 30-39 */
468 /* ------------ TUNER_TEMIC_4009FN5_MULTI_PAL_FM - TEMIC PAL ------------ */
469
470 static struct tuner_params tuner_temic_4009_fn5_multi_pal_fm_params[] = {
471 {
472 .type = TUNER_PARAM_TYPE_PAL,
473 .ranges = tuner_temic_4009f_5_pal_ranges,
474 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
475 },
476 };
477
478 /* ------------ TUNER_SHARP_2U5JF5540_NTSC - SHARP NTSC ------------ */
479
480 static struct tuner_range tuner_sharp_2u5jf5540_ntsc_ranges[] = {
481 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
482 { 16 * 317.25 /*MHz*/, 0x8e, 0x02, },
483 { 16 * 999.99 , 0x8e, 0x08, },
484 };
485
486 static struct tuner_params tuner_sharp_2u5jf5540_params[] = {
487 {
488 .type = TUNER_PARAM_TYPE_NTSC,
489 .ranges = tuner_sharp_2u5jf5540_ntsc_ranges,
490 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_ntsc_ranges),
491 },
492 };
493
494 /* ------------ TUNER_Samsung_PAL_TCPM9091PD27 - Samsung PAL ------------ */
495
496 static struct tuner_range tuner_samsung_pal_tcpm9091pd27_ranges[] = {
497 { 16 * 169 /*MHz*/, 0x8e, 0xa0, },
498 { 16 * 464 /*MHz*/, 0x8e, 0x90, },
499 { 16 * 999.99 , 0x8e, 0x30, },
500 };
501
502 static struct tuner_params tuner_samsung_pal_tcpm9091pd27_params[] = {
503 {
504 .type = TUNER_PARAM_TYPE_PAL,
505 .ranges = tuner_samsung_pal_tcpm9091pd27_ranges,
506 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_ranges),
507 },
508 };
509
510 /* ------------ TUNER_TEMIC_4106FH5 - TEMIC PAL ------------ */
511
512 static struct tuner_params tuner_temic_4106fh5_params[] = {
513 {
514 .type = TUNER_PARAM_TYPE_PAL,
515 .ranges = tuner_temic_4009f_5_pal_ranges,
516 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
517 },
518 };
519
520 /* ------------ TUNER_TEMIC_4012FY5 - TEMIC PAL ------------ */
521
522 static struct tuner_params tuner_temic_4012fy5_params[] = {
523 {
524 .type = TUNER_PARAM_TYPE_PAL,
525 .ranges = tuner_temic_pal_ranges,
526 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
527 },
528 };
529
530 /* ------------ TUNER_TEMIC_4136FY5 - TEMIC NTSC ------------ */
531
532 static struct tuner_params tuner_temic_4136_fy5_params[] = {
533 {
534 .type = TUNER_PARAM_TYPE_NTSC,
535 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
536 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
537 },
538 };
539
540 /* ------------ TUNER_LG_PAL_NEW_TAPC - LGINNOTEK PAL ------------ */
541
542 static struct tuner_range tuner_lg_new_tapc_ranges[] = {
543 { 16 * 170.00 /*MHz*/, 0x8e, 0x01, },
544 { 16 * 450.00 /*MHz*/, 0x8e, 0x02, },
545 { 16 * 999.99 , 0x8e, 0x08, },
546 };
547
548 static struct tuner_params tuner_lg_pal_new_tapc_params[] = {
549 {
550 .type = TUNER_PARAM_TYPE_PAL,
551 .ranges = tuner_lg_new_tapc_ranges,
552 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
553 },
554 };
555
556 /* ------------ TUNER_PHILIPS_FM1216ME_MK3 - Philips PAL ------------ */
557
558 static struct tuner_range tuner_fm1216me_mk3_pal_ranges[] = {
559 { 16 * 158.00 /*MHz*/, 0x8e, 0x01, },
560 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
561 { 16 * 999.99 , 0x8e, 0x04, },
562 };
563
564 static struct tuner_params tuner_fm1216me_mk3_params[] = {
565 {
566 .type = TUNER_PARAM_TYPE_PAL,
567 .ranges = tuner_fm1216me_mk3_pal_ranges,
568 .count = ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges),
569 .cb_first_if_lower_freq = 1,
570 .has_tda9887 = 1,
571 .port1_active = 1,
572 .port2_active = 1,
573 .port2_invert_for_secam_lc = 1,
574 .port1_fm_high_sensitivity = 1,
575 .default_top_mid = -2,
576 .default_top_secam_mid = -2,
577 .default_top_secam_high = -2,
578 },
579 };
580
581 /* ------------ TUNER_PHILIPS_FM1216MK5 - Philips PAL ------------ */
582
583 static struct tuner_range tuner_fm1216mk5_pal_ranges[] = {
584 { 16 * 158.00 /*MHz*/, 0xce, 0x01, },
585 { 16 * 441.00 /*MHz*/, 0xce, 0x02, },
586 { 16 * 864.00 , 0xce, 0x04, },
587 };
588
589 static struct tuner_params tuner_fm1216mk5_params[] = {
590 {
591 .type = TUNER_PARAM_TYPE_PAL,
592 .ranges = tuner_fm1216mk5_pal_ranges,
593 .count = ARRAY_SIZE(tuner_fm1216mk5_pal_ranges),
594 .cb_first_if_lower_freq = 1,
595 .has_tda9887 = 1,
596 .port1_active = 1,
597 .port2_active = 1,
598 .port2_invert_for_secam_lc = 1,
599 .port1_fm_high_sensitivity = 1,
600 .default_top_mid = -2,
601 .default_top_secam_mid = -2,
602 .default_top_secam_high = -2,
603 },
604 };
605
606 /* ------------ TUNER_LG_NTSC_NEW_TAPC - LGINNOTEK NTSC ------------ */
607
608 static struct tuner_params tuner_lg_ntsc_new_tapc_params[] = {
609 {
610 .type = TUNER_PARAM_TYPE_NTSC,
611 .ranges = tuner_lg_new_tapc_ranges,
612 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
613 },
614 };
615
616 /* 40-49 */
617 /* ------------ TUNER_HITACHI_NTSC - HITACHI NTSC ------------ */
618
619 static struct tuner_params tuner_hitachi_ntsc_params[] = {
620 {
621 .type = TUNER_PARAM_TYPE_NTSC,
622 .ranges = tuner_lg_new_tapc_ranges,
623 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
624 },
625 };
626
627 /* ------------ TUNER_PHILIPS_PAL_MK - Philips PAL ------------ */
628
629 static struct tuner_range tuner_philips_pal_mk_pal_ranges[] = {
630 { 16 * 140.25 /*MHz*/, 0x8e, 0x01, },
631 { 16 * 463.25 /*MHz*/, 0x8e, 0xc2, },
632 { 16 * 999.99 , 0x8e, 0xcf, },
633 };
634
635 static struct tuner_params tuner_philips_pal_mk_params[] = {
636 {
637 .type = TUNER_PARAM_TYPE_PAL,
638 .ranges = tuner_philips_pal_mk_pal_ranges,
639 .count = ARRAY_SIZE(tuner_philips_pal_mk_pal_ranges),
640 },
641 };
642
643 /* ---- TUNER_PHILIPS_FCV1236D - Philips FCV1236D (ATSC/NTSC) ---- */
644
645 static struct tuner_range tuner_philips_fcv1236d_ntsc_ranges[] = {
646 { 16 * 157.25 /*MHz*/, 0x8e, 0xa2, },
647 { 16 * 451.25 /*MHz*/, 0x8e, 0x92, },
648 { 16 * 999.99 , 0x8e, 0x32, },
649 };
650
651 static struct tuner_range tuner_philips_fcv1236d_atsc_ranges[] = {
652 { 16 * 159.00 /*MHz*/, 0x8e, 0xa0, },
653 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
654 { 16 * 999.99 , 0x8e, 0x30, },
655 };
656
657 static struct tuner_params tuner_philips_fcv1236d_params[] = {
658 {
659 .type = TUNER_PARAM_TYPE_NTSC,
660 .ranges = tuner_philips_fcv1236d_ntsc_ranges,
661 .count = ARRAY_SIZE(tuner_philips_fcv1236d_ntsc_ranges),
662 },
663 {
664 .type = TUNER_PARAM_TYPE_DIGITAL,
665 .ranges = tuner_philips_fcv1236d_atsc_ranges,
666 .count = ARRAY_SIZE(tuner_philips_fcv1236d_atsc_ranges),
667 .iffreq = 16 * 44.00,
668 },
669 };
670
671 /* ------------ TUNER_PHILIPS_FM1236_MK3 - Philips NTSC ------------ */
672
673 static struct tuner_range tuner_fm1236_mk3_ntsc_ranges[] = {
674 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
675 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
676 { 16 * 999.99 , 0x8e, 0x04, },
677 };
678
679 static struct tuner_params tuner_fm1236_mk3_params[] = {
680 {
681 .type = TUNER_PARAM_TYPE_NTSC,
682 .ranges = tuner_fm1236_mk3_ntsc_ranges,
683 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
684 .cb_first_if_lower_freq = 1,
685 .has_tda9887 = 1,
686 .port1_active = 1,
687 .port2_active = 1,
688 .port1_fm_high_sensitivity = 1,
689 },
690 };
691
692 /* ------------ TUNER_PHILIPS_4IN1 - Philips NTSC ------------ */
693
694 static struct tuner_params tuner_philips_4in1_params[] = {
695 {
696 .type = TUNER_PARAM_TYPE_NTSC,
697 .ranges = tuner_fm1236_mk3_ntsc_ranges,
698 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
699 },
700 };
701
702 /* ------------ TUNER_MICROTUNE_4049FM5 - Microtune PAL ------------ */
703
704 static struct tuner_params tuner_microtune_4049_fm5_params[] = {
705 {
706 .type = TUNER_PARAM_TYPE_PAL,
707 .ranges = tuner_temic_4009f_5_pal_ranges,
708 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
709 .has_tda9887 = 1,
710 .port1_invert_for_secam_lc = 1,
711 .default_pll_gating_18 = 1,
712 .fm_gain_normal=1,
713 .radio_if = 1, /* 33.3 MHz */
714 },
715 };
716
717 /* ------------ TUNER_PANASONIC_VP27 - Panasonic NTSC ------------ */
718
719 static struct tuner_range tuner_panasonic_vp27_ntsc_ranges[] = {
720 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
721 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
722 { 16 * 999.99 , 0xce, 0x08, },
723 };
724
725 static struct tuner_params tuner_panasonic_vp27_params[] = {
726 {
727 .type = TUNER_PARAM_TYPE_NTSC,
728 .ranges = tuner_panasonic_vp27_ntsc_ranges,
729 .count = ARRAY_SIZE(tuner_panasonic_vp27_ntsc_ranges),
730 .has_tda9887 = 1,
731 .intercarrier_mode = 1,
732 .default_top_low = -3,
733 .default_top_mid = -3,
734 .default_top_high = -3,
735 },
736 };
737
738 /* ------------ TUNER_TNF_8831BGFF - Philips PAL ------------ */
739
740 static struct tuner_range tuner_tnf_8831bgff_pal_ranges[] = {
741 { 16 * 161.25 /*MHz*/, 0x8e, 0xa0, },
742 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
743 { 16 * 999.99 , 0x8e, 0x30, },
744 };
745
746 static struct tuner_params tuner_tnf_8831bgff_params[] = {
747 {
748 .type = TUNER_PARAM_TYPE_PAL,
749 .ranges = tuner_tnf_8831bgff_pal_ranges,
750 .count = ARRAY_SIZE(tuner_tnf_8831bgff_pal_ranges),
751 },
752 };
753
754 /* ------------ TUNER_MICROTUNE_4042FI5 - Microtune NTSC ------------ */
755
756 static struct tuner_range tuner_microtune_4042fi5_ntsc_ranges[] = {
757 { 16 * 162.00 /*MHz*/, 0x8e, 0xa2, },
758 { 16 * 457.00 /*MHz*/, 0x8e, 0x94, },
759 { 16 * 999.99 , 0x8e, 0x31, },
760 };
761
762 static struct tuner_range tuner_microtune_4042fi5_atsc_ranges[] = {
763 { 16 * 162.00 /*MHz*/, 0x8e, 0xa1, },
764 { 16 * 457.00 /*MHz*/, 0x8e, 0x91, },
765 { 16 * 999.99 , 0x8e, 0x31, },
766 };
767
768 static struct tuner_params tuner_microtune_4042fi5_params[] = {
769 {
770 .type = TUNER_PARAM_TYPE_NTSC,
771 .ranges = tuner_microtune_4042fi5_ntsc_ranges,
772 .count = ARRAY_SIZE(tuner_microtune_4042fi5_ntsc_ranges),
773 },
774 {
775 .type = TUNER_PARAM_TYPE_DIGITAL,
776 .ranges = tuner_microtune_4042fi5_atsc_ranges,
777 .count = ARRAY_SIZE(tuner_microtune_4042fi5_atsc_ranges),
778 .iffreq = 16 * 44.00 /*MHz*/,
779 },
780 };
781
782 /* 50-59 */
783 /* ------------ TUNER_TCL_2002N - TCL NTSC ------------ */
784
785 static struct tuner_range tuner_tcl_2002n_ntsc_ranges[] = {
786 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
787 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
788 { 16 * 999.99 , 0x8e, 0x08, },
789 };
790
791 static struct tuner_params tuner_tcl_2002n_params[] = {
792 {
793 .type = TUNER_PARAM_TYPE_NTSC,
794 .ranges = tuner_tcl_2002n_ntsc_ranges,
795 .count = ARRAY_SIZE(tuner_tcl_2002n_ntsc_ranges),
796 .cb_first_if_lower_freq = 1,
797 },
798 };
799
800 /* ------------ TUNER_PHILIPS_FM1256_IH3 - Philips PAL ------------ */
801
802 static struct tuner_params tuner_philips_fm1256_ih3_params[] = {
803 {
804 .type = TUNER_PARAM_TYPE_PAL,
805 .ranges = tuner_fm1236_mk3_ntsc_ranges,
806 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
807 .radio_if = 1, /* 33.3 MHz */
808 },
809 };
810
811 /* ------------ TUNER_THOMSON_DTT7610 - THOMSON ATSC ------------ */
812
813 /* single range used for both ntsc and atsc */
814 static struct tuner_range tuner_thomson_dtt7610_ntsc_ranges[] = {
815 { 16 * 157.25 /*MHz*/, 0x8e, 0x39, },
816 { 16 * 454.00 /*MHz*/, 0x8e, 0x3a, },
817 { 16 * 999.99 , 0x8e, 0x3c, },
818 };
819
820 static struct tuner_params tuner_thomson_dtt7610_params[] = {
821 {
822 .type = TUNER_PARAM_TYPE_NTSC,
823 .ranges = tuner_thomson_dtt7610_ntsc_ranges,
824 .count = ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges),
825 },
826 {
827 .type = TUNER_PARAM_TYPE_DIGITAL,
828 .ranges = tuner_thomson_dtt7610_ntsc_ranges,
829 .count = ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges),
830 .iffreq = 16 * 44.00 /*MHz*/,
831 },
832 };
833
834 /* ------------ TUNER_PHILIPS_FQ1286 - Philips NTSC ------------ */
835
836 static struct tuner_range tuner_philips_fq1286_ntsc_ranges[] = {
837 { 16 * 160.00 /*MHz*/, 0x8e, 0x41, },
838 { 16 * 454.00 /*MHz*/, 0x8e, 0x42, },
839 { 16 * 999.99 , 0x8e, 0x04, },
840 };
841
842 static struct tuner_params tuner_philips_fq1286_params[] = {
843 {
844 .type = TUNER_PARAM_TYPE_NTSC,
845 .ranges = tuner_philips_fq1286_ntsc_ranges,
846 .count = ARRAY_SIZE(tuner_philips_fq1286_ntsc_ranges),
847 },
848 };
849
850 /* ------------ TUNER_TCL_2002MB - TCL PAL ------------ */
851
852 static struct tuner_range tuner_tcl_2002mb_pal_ranges[] = {
853 { 16 * 170.00 /*MHz*/, 0xce, 0x01, },
854 { 16 * 450.00 /*MHz*/, 0xce, 0x02, },
855 { 16 * 999.99 , 0xce, 0x08, },
856 };
857
858 static struct tuner_params tuner_tcl_2002mb_params[] = {
859 {
860 .type = TUNER_PARAM_TYPE_PAL,
861 .ranges = tuner_tcl_2002mb_pal_ranges,
862 .count = ARRAY_SIZE(tuner_tcl_2002mb_pal_ranges),
863 },
864 };
865
866 /* ------------ TUNER_PHILIPS_FQ1216AME_MK4 - Philips PAL ------------ */
867
868 static struct tuner_range tuner_philips_fq12_6a___mk4_pal_ranges[] = {
869 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
870 { 16 * 442.00 /*MHz*/, 0xce, 0x02, },
871 { 16 * 999.99 , 0xce, 0x04, },
872 };
873
874 static struct tuner_params tuner_philips_fq1216ame_mk4_params[] = {
875 {
876 .type = TUNER_PARAM_TYPE_PAL,
877 .ranges = tuner_philips_fq12_6a___mk4_pal_ranges,
878 .count = ARRAY_SIZE(tuner_philips_fq12_6a___mk4_pal_ranges),
879 .has_tda9887 = 1,
880 .port1_active = 1,
881 .port2_invert_for_secam_lc = 1,
882 .default_top_mid = -2,
883 .default_top_secam_low = -2,
884 .default_top_secam_mid = -2,
885 .default_top_secam_high = -2,
886 },
887 };
888
889 /* ------------ TUNER_PHILIPS_FQ1236A_MK4 - Philips NTSC ------------ */
890
891 static struct tuner_params tuner_philips_fq1236a_mk4_params[] = {
892 {
893 .type = TUNER_PARAM_TYPE_NTSC,
894 .ranges = tuner_fm1236_mk3_ntsc_ranges,
895 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
896 },
897 };
898
899 /* ------------ TUNER_YMEC_TVF_8531MF - Philips NTSC ------------ */
900
901 static struct tuner_params tuner_ymec_tvf_8531mf_params[] = {
902 {
903 .type = TUNER_PARAM_TYPE_NTSC,
904 .ranges = tuner_philips_ntsc_m_ranges,
905 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
906 },
907 };
908
909 /* ------------ TUNER_YMEC_TVF_5533MF - Philips NTSC ------------ */
910
911 static struct tuner_range tuner_ymec_tvf_5533mf_ntsc_ranges[] = {
912 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
913 { 16 * 454.00 /*MHz*/, 0x8e, 0x02, },
914 { 16 * 999.99 , 0x8e, 0x04, },
915 };
916
917 static struct tuner_params tuner_ymec_tvf_5533mf_params[] = {
918 {
919 .type = TUNER_PARAM_TYPE_NTSC,
920 .ranges = tuner_ymec_tvf_5533mf_ntsc_ranges,
921 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_ntsc_ranges),
922 },
923 };
924
925 /* 60-69 */
926 /* ------------ TUNER_THOMSON_DTT761X - THOMSON ATSC ------------ */
927 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
928
929 static struct tuner_range tuner_thomson_dtt761x_ntsc_ranges[] = {
930 { 16 * 145.25 /*MHz*/, 0x8e, 0x39, },
931 { 16 * 415.25 /*MHz*/, 0x8e, 0x3a, },
932 { 16 * 999.99 , 0x8e, 0x3c, },
933 };
934
935 static struct tuner_range tuner_thomson_dtt761x_atsc_ranges[] = {
936 { 16 * 147.00 /*MHz*/, 0x8e, 0x39, },
937 { 16 * 417.00 /*MHz*/, 0x8e, 0x3a, },
938 { 16 * 999.99 , 0x8e, 0x3c, },
939 };
940
941 static struct tuner_params tuner_thomson_dtt761x_params[] = {
942 {
943 .type = TUNER_PARAM_TYPE_NTSC,
944 .ranges = tuner_thomson_dtt761x_ntsc_ranges,
945 .count = ARRAY_SIZE(tuner_thomson_dtt761x_ntsc_ranges),
946 .has_tda9887 = 1,
947 .fm_gain_normal = 1,
948 .radio_if = 2, /* 41.3 MHz */
949 },
950 {
951 .type = TUNER_PARAM_TYPE_DIGITAL,
952 .ranges = tuner_thomson_dtt761x_atsc_ranges,
953 .count = ARRAY_SIZE(tuner_thomson_dtt761x_atsc_ranges),
954 .iffreq = 16 * 44.00, /*MHz*/
955 },
956 };
957
958 /* ------------ TUNER_TENA_9533_DI - Philips PAL ------------ */
959
960 static struct tuner_range tuner_tena_9533_di_pal_ranges[] = {
961 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
962 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
963 { 16 * 999.99 , 0x8e, 0x04, },
964 };
965
966 static struct tuner_params tuner_tena_9533_di_params[] = {
967 {
968 .type = TUNER_PARAM_TYPE_PAL,
969 .ranges = tuner_tena_9533_di_pal_ranges,
970 .count = ARRAY_SIZE(tuner_tena_9533_di_pal_ranges),
971 },
972 };
973
974 /* ------------ TUNER_TENA_TNF_5337 - Tena tnf5337MFD STD M/N ------------ */
975
976 static struct tuner_range tuner_tena_tnf_5337_ntsc_ranges[] = {
977 { 16 * 166.25 /*MHz*/, 0x86, 0x01, },
978 { 16 * 466.25 /*MHz*/, 0x86, 0x02, },
979 { 16 * 999.99 , 0x86, 0x08, },
980 };
981
982 static struct tuner_params tuner_tena_tnf_5337_params[] = {
983 {
984 .type = TUNER_PARAM_TYPE_NTSC,
985 .ranges = tuner_tena_tnf_5337_ntsc_ranges,
986 .count = ARRAY_SIZE(tuner_tena_tnf_5337_ntsc_ranges),
987 },
988 };
989
990 /* ------------ TUNER_PHILIPS_FMD1216ME(X)_MK3 - Philips PAL ------------ */
991
992 static struct tuner_range tuner_philips_fmd1216me_mk3_pal_ranges[] = {
993 { 16 * 160.00 /*MHz*/, 0x86, 0x51, },
994 { 16 * 442.00 /*MHz*/, 0x86, 0x52, },
995 { 16 * 999.99 , 0x86, 0x54, },
996 };
997
998 static struct tuner_range tuner_philips_fmd1216me_mk3_dvb_ranges[] = {
999 { 16 * 143.87 /*MHz*/, 0xbc, 0x41 },
1000 { 16 * 158.87 /*MHz*/, 0xf4, 0x41 },
1001 { 16 * 329.87 /*MHz*/, 0xbc, 0x42 },
1002 { 16 * 441.87 /*MHz*/, 0xf4, 0x42 },
1003 { 16 * 625.87 /*MHz*/, 0xbc, 0x44 },
1004 { 16 * 803.87 /*MHz*/, 0xf4, 0x44 },
1005 { 16 * 999.99 , 0xfc, 0x44 },
1006 };
1007
1008 static struct tuner_params tuner_philips_fmd1216me_mk3_params[] = {
1009 {
1010 .type = TUNER_PARAM_TYPE_PAL,
1011 .ranges = tuner_philips_fmd1216me_mk3_pal_ranges,
1012 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges),
1013 .has_tda9887 = 1,
1014 .port1_active = 1,
1015 .port2_active = 1,
1016 .port2_fm_high_sensitivity = 1,
1017 .port2_invert_for_secam_lc = 1,
1018 .port1_set_for_fm_mono = 1,
1019 },
1020 {
1021 .type = TUNER_PARAM_TYPE_DIGITAL,
1022 .ranges = tuner_philips_fmd1216me_mk3_dvb_ranges,
1023 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_dvb_ranges),
1024 .iffreq = 16 * 36.125, /*MHz*/
1025 },
1026 };
1027
1028 static struct tuner_params tuner_philips_fmd1216mex_mk3_params[] = {
1029 {
1030 .type = TUNER_PARAM_TYPE_PAL,
1031 .ranges = tuner_philips_fmd1216me_mk3_pal_ranges,
1032 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges),
1033 .has_tda9887 = 1,
1034 .port1_active = 1,
1035 .port2_active = 1,
1036 .port2_fm_high_sensitivity = 1,
1037 .port2_invert_for_secam_lc = 1,
1038 .port1_set_for_fm_mono = 1,
1039 .radio_if = 1,
1040 .fm_gain_normal = 1,
1041 },
1042 {
1043 .type = TUNER_PARAM_TYPE_DIGITAL,
1044 .ranges = tuner_philips_fmd1216me_mk3_dvb_ranges,
1045 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_dvb_ranges),
1046 .iffreq = 16 * 36.125, /*MHz*/
1047 },
1048 };
1049
1050 /* ------ TUNER_LG_TDVS_H06XF - LG INNOTEK / INFINEON ATSC ----- */
1051
1052 static struct tuner_range tuner_tua6034_ntsc_ranges[] = {
1053 { 16 * 165.00 /*MHz*/, 0x8e, 0x01 },
1054 { 16 * 450.00 /*MHz*/, 0x8e, 0x02 },
1055 { 16 * 999.99 , 0x8e, 0x04 },
1056 };
1057
1058 static struct tuner_range tuner_tua6034_atsc_ranges[] = {
1059 { 16 * 165.00 /*MHz*/, 0xce, 0x01 },
1060 { 16 * 450.00 /*MHz*/, 0xce, 0x02 },
1061 { 16 * 999.99 , 0xce, 0x04 },
1062 };
1063
1064 static struct tuner_params tuner_lg_tdvs_h06xf_params[] = {
1065 {
1066 .type = TUNER_PARAM_TYPE_NTSC,
1067 .ranges = tuner_tua6034_ntsc_ranges,
1068 .count = ARRAY_SIZE(tuner_tua6034_ntsc_ranges),
1069 },
1070 {
1071 .type = TUNER_PARAM_TYPE_DIGITAL,
1072 .ranges = tuner_tua6034_atsc_ranges,
1073 .count = ARRAY_SIZE(tuner_tua6034_atsc_ranges),
1074 .iffreq = 16 * 44.00,
1075 },
1076 };
1077
1078 /* ------------ TUNER_YMEC_TVF66T5_B_DFF - Philips PAL ------------ */
1079
1080 static struct tuner_range tuner_ymec_tvf66t5_b_dff_pal_ranges[] = {
1081 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
1082 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
1083 { 16 * 999.99 , 0x8e, 0x08, },
1084 };
1085
1086 static struct tuner_params tuner_ymec_tvf66t5_b_dff_params[] = {
1087 {
1088 .type = TUNER_PARAM_TYPE_PAL,
1089 .ranges = tuner_ymec_tvf66t5_b_dff_pal_ranges,
1090 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_pal_ranges),
1091 },
1092 };
1093
1094 /* ------------ TUNER_LG_NTSC_TALN_MINI - LGINNOTEK NTSC ------------ */
1095
1096 static struct tuner_range tuner_lg_taln_ntsc_ranges[] = {
1097 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
1098 { 16 * 373.25 /*MHz*/, 0x8e, 0x02, },
1099 { 16 * 999.99 , 0x8e, 0x08, },
1100 };
1101
1102 static struct tuner_range tuner_lg_taln_pal_secam_ranges[] = {
1103 { 16 * 150.00 /*MHz*/, 0x8e, 0x01, },
1104 { 16 * 425.00 /*MHz*/, 0x8e, 0x02, },
1105 { 16 * 999.99 , 0x8e, 0x08, },
1106 };
1107
1108 static struct tuner_params tuner_lg_taln_params[] = {
1109 {
1110 .type = TUNER_PARAM_TYPE_NTSC,
1111 .ranges = tuner_lg_taln_ntsc_ranges,
1112 .count = ARRAY_SIZE(tuner_lg_taln_ntsc_ranges),
1113 },{
1114 .type = TUNER_PARAM_TYPE_PAL,
1115 .ranges = tuner_lg_taln_pal_secam_ranges,
1116 .count = ARRAY_SIZE(tuner_lg_taln_pal_secam_ranges),
1117 },
1118 };
1119
1120 /* ------------ TUNER_PHILIPS_TD1316 - Philips PAL ------------ */
1121
1122 static struct tuner_range tuner_philips_td1316_pal_ranges[] = {
1123 { 16 * 160.00 /*MHz*/, 0xc8, 0xa1, },
1124 { 16 * 442.00 /*MHz*/, 0xc8, 0xa2, },
1125 { 16 * 999.99 , 0xc8, 0xa4, },
1126 };
1127
1128 static struct tuner_range tuner_philips_td1316_dvb_ranges[] = {
1129 { 16 * 93.834 /*MHz*/, 0xca, 0x60, },
1130 { 16 * 123.834 /*MHz*/, 0xca, 0xa0, },
1131 { 16 * 163.834 /*MHz*/, 0xca, 0xc0, },
1132 { 16 * 253.834 /*MHz*/, 0xca, 0x60, },
1133 { 16 * 383.834 /*MHz*/, 0xca, 0xa0, },
1134 { 16 * 443.834 /*MHz*/, 0xca, 0xc0, },
1135 { 16 * 583.834 /*MHz*/, 0xca, 0x60, },
1136 { 16 * 793.834 /*MHz*/, 0xca, 0xa0, },
1137 { 16 * 999.999 , 0xca, 0xe0, },
1138 };
1139
1140 static struct tuner_params tuner_philips_td1316_params[] = {
1141 {
1142 .type = TUNER_PARAM_TYPE_PAL,
1143 .ranges = tuner_philips_td1316_pal_ranges,
1144 .count = ARRAY_SIZE(tuner_philips_td1316_pal_ranges),
1145 },
1146 {
1147 .type = TUNER_PARAM_TYPE_DIGITAL,
1148 .ranges = tuner_philips_td1316_dvb_ranges,
1149 .count = ARRAY_SIZE(tuner_philips_td1316_dvb_ranges),
1150 .iffreq = 16 * 36.166667 /*MHz*/,
1151 },
1152 };
1153
1154 /* ------------ TUNER_PHILIPS_TUV1236D - Philips ATSC ------------ */
1155
1156 static struct tuner_range tuner_tuv1236d_ntsc_ranges[] = {
1157 { 16 * 157.25 /*MHz*/, 0xce, 0x01, },
1158 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
1159 { 16 * 999.99 , 0xce, 0x04, },
1160 };
1161
1162 static struct tuner_range tuner_tuv1236d_atsc_ranges[] = {
1163 { 16 * 157.25 /*MHz*/, 0xc6, 0x41, },
1164 { 16 * 454.00 /*MHz*/, 0xc6, 0x42, },
1165 { 16 * 999.99 , 0xc6, 0x44, },
1166 };
1167
1168 static struct tuner_params tuner_tuv1236d_params[] = {
1169 {
1170 .type = TUNER_PARAM_TYPE_NTSC,
1171 .ranges = tuner_tuv1236d_ntsc_ranges,
1172 .count = ARRAY_SIZE(tuner_tuv1236d_ntsc_ranges),
1173 },
1174 {
1175 .type = TUNER_PARAM_TYPE_DIGITAL,
1176 .ranges = tuner_tuv1236d_atsc_ranges,
1177 .count = ARRAY_SIZE(tuner_tuv1236d_atsc_ranges),
1178 .iffreq = 16 * 44.00,
1179 },
1180 };
1181
1182 /* ------------ TUNER_TNF_xxx5 - Texas Instruments--------- */
1183 /* This is known to work with Tenna TVF58t5-MFF and TVF5835 MFF
1184 * but it is expected to work also with other Tenna/Ymec
1185 * models based on TI SN 761677 chip on both PAL and NTSC
1186 */
1187
1188 static struct tuner_range tuner_tnf_5335_d_if_pal_ranges[] = {
1189 { 16 * 168.25 /*MHz*/, 0x8e, 0x01, },
1190 { 16 * 471.25 /*MHz*/, 0x8e, 0x02, },
1191 { 16 * 999.99 , 0x8e, 0x08, },
1192 };
1193
1194 static struct tuner_range tuner_tnf_5335mf_ntsc_ranges[] = {
1195 { 16 * 169.25 /*MHz*/, 0x8e, 0x01, },
1196 { 16 * 469.25 /*MHz*/, 0x8e, 0x02, },
1197 { 16 * 999.99 , 0x8e, 0x08, },
1198 };
1199
1200 static struct tuner_params tuner_tnf_5335mf_params[] = {
1201 {
1202 .type = TUNER_PARAM_TYPE_NTSC,
1203 .ranges = tuner_tnf_5335mf_ntsc_ranges,
1204 .count = ARRAY_SIZE(tuner_tnf_5335mf_ntsc_ranges),
1205 },
1206 {
1207 .type = TUNER_PARAM_TYPE_PAL,
1208 .ranges = tuner_tnf_5335_d_if_pal_ranges,
1209 .count = ARRAY_SIZE(tuner_tnf_5335_d_if_pal_ranges),
1210 },
1211 };
1212
1213 /* 70-79 */
1214 /* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */
1215
1216 /* '+ 4' turns on the Low Noise Amplifier */
1217 static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = {
1218 { 16 * 130.00 /*MHz*/, 0xce, 0x01 + 4, },
1219 { 16 * 364.50 /*MHz*/, 0xce, 0x02 + 4, },
1220 { 16 * 999.99 , 0xce, 0x08 + 4, },
1221 };
1222
1223 static struct tuner_params tuner_samsung_tcpn_2121p30a_params[] = {
1224 {
1225 .type = TUNER_PARAM_TYPE_NTSC,
1226 .ranges = tuner_samsung_tcpn_2121p30a_ntsc_ranges,
1227 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_ntsc_ranges),
1228 },
1229 };
1230
1231 /* ------------ TUNER_THOMSON_FE6600 - DViCO Hybrid PAL ------------ */
1232
1233 static struct tuner_range tuner_thomson_fe6600_pal_ranges[] = {
1234 { 16 * 160.00 /*MHz*/, 0xfe, 0x11, },
1235 { 16 * 442.00 /*MHz*/, 0xf6, 0x12, },
1236 { 16 * 999.99 , 0xf6, 0x18, },
1237 };
1238
1239 static struct tuner_range tuner_thomson_fe6600_dvb_ranges[] = {
1240 { 16 * 250.00 /*MHz*/, 0xb4, 0x12, },
1241 { 16 * 455.00 /*MHz*/, 0xfe, 0x11, },
1242 { 16 * 775.50 /*MHz*/, 0xbc, 0x18, },
1243 { 16 * 999.99 , 0xf4, 0x18, },
1244 };
1245
1246 static struct tuner_params tuner_thomson_fe6600_params[] = {
1247 {
1248 .type = TUNER_PARAM_TYPE_PAL,
1249 .ranges = tuner_thomson_fe6600_pal_ranges,
1250 .count = ARRAY_SIZE(tuner_thomson_fe6600_pal_ranges),
1251 },
1252 {
1253 .type = TUNER_PARAM_TYPE_DIGITAL,
1254 .ranges = tuner_thomson_fe6600_dvb_ranges,
1255 .count = ARRAY_SIZE(tuner_thomson_fe6600_dvb_ranges),
1256 .iffreq = 16 * 36.125 /*MHz*/,
1257 },
1258 };
1259
1260 /* ------------ TUNER_SAMSUNG_TCPG_6121P30A - Samsung PAL ------------ */
1261
1262 /* '+ 4' turns on the Low Noise Amplifier */
1263 static struct tuner_range tuner_samsung_tcpg_6121p30a_pal_ranges[] = {
1264 { 16 * 146.25 /*MHz*/, 0xce, 0x01 + 4, },
1265 { 16 * 428.50 /*MHz*/, 0xce, 0x02 + 4, },
1266 { 16 * 999.99 , 0xce, 0x08 + 4, },
1267 };
1268
1269 static struct tuner_params tuner_samsung_tcpg_6121p30a_params[] = {
1270 {
1271 .type = TUNER_PARAM_TYPE_PAL,
1272 .ranges = tuner_samsung_tcpg_6121p30a_pal_ranges,
1273 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_pal_ranges),
1274 .has_tda9887 = 1,
1275 .port1_active = 1,
1276 .port2_active = 1,
1277 .port2_invert_for_secam_lc = 1,
1278 },
1279 };
1280
1281 /* ------------ TUNER_TCL_MF02GIP-5N-E - TCL MF02GIP-5N ------------ */
1282
1283 static struct tuner_range tuner_tcl_mf02gip_5n_ntsc_ranges[] = {
1284 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
1285 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
1286 { 16 * 999.99 , 0x8e, 0x04, },
1287 };
1288
1289 static struct tuner_params tuner_tcl_mf02gip_5n_params[] = {
1290 {
1291 .type = TUNER_PARAM_TYPE_NTSC,
1292 .ranges = tuner_tcl_mf02gip_5n_ntsc_ranges,
1293 .count = ARRAY_SIZE(tuner_tcl_mf02gip_5n_ntsc_ranges),
1294 .cb_first_if_lower_freq = 1,
1295 },
1296 };
1297
1298 /* 80-89 */
1299 /* --------- TUNER_PHILIPS_FQ1216LME_MK3 -- active loopthrough, no FM ------- */
1300
1301 static struct tuner_params tuner_fq1216lme_mk3_params[] = {
1302 {
1303 .type = TUNER_PARAM_TYPE_PAL,
1304 .ranges = tuner_fm1216me_mk3_pal_ranges,
1305 .count = ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges),
1306 .cb_first_if_lower_freq = 1, /* not specified, but safe to do */
1307 .has_tda9887 = 1, /* TDA9886 */
1308 .port1_active = 1,
1309 .port2_active = 1,
1310 .port2_invert_for_secam_lc = 1,
1311 .default_top_low = 4,
1312 .default_top_mid = 4,
1313 .default_top_high = 4,
1314 .default_top_secam_low = 4,
1315 .default_top_secam_mid = 4,
1316 .default_top_secam_high = 4,
1317 },
1318 };
1319
1320 /* ----- TUNER_PARTSNIC_PTI_5NF05 - Partsnic (Daewoo) PTI-5NF05 NTSC ----- */
1321
1322 static struct tuner_range tuner_partsnic_pti_5nf05_ranges[] = {
1323 /* The datasheet specified channel ranges and the bandswitch byte */
1324 /* The control byte value of 0x8e is just a guess */
1325 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, }, /* Channels 2 - B */
1326 { 16 * 367.25 /*MHz*/, 0x8e, 0x02, }, /* Channels C - W+11 */
1327 { 16 * 999.99 , 0x8e, 0x08, }, /* Channels W+12 - 69 */
1328 };
1329
1330 static struct tuner_params tuner_partsnic_pti_5nf05_params[] = {
1331 {
1332 .type = TUNER_PARAM_TYPE_NTSC,
1333 .ranges = tuner_partsnic_pti_5nf05_ranges,
1334 .count = ARRAY_SIZE(tuner_partsnic_pti_5nf05_ranges),
1335 .cb_first_if_lower_freq = 1, /* not specified but safe to do */
1336 },
1337 };
1338
1339 /* --------- TUNER_PHILIPS_CU1216L - DVB-C NIM ------------------------- */
1340
1341 static struct tuner_range tuner_cu1216l_ranges[] = {
1342 { 16 * 160.25 /*MHz*/, 0xce, 0x01 },
1343 { 16 * 444.25 /*MHz*/, 0xce, 0x02 },
1344 { 16 * 999.99 , 0xce, 0x04 },
1345 };
1346
1347 static struct tuner_params tuner_philips_cu1216l_params[] = {
1348 {
1349 .type = TUNER_PARAM_TYPE_DIGITAL,
1350 .ranges = tuner_cu1216l_ranges,
1351 .count = ARRAY_SIZE(tuner_cu1216l_ranges),
1352 .iffreq = 16 * 36.125, /*MHz*/
1353 },
1354 };
1355
1356 /* ---------------------- TUNER_SONY_BTF_PXN01Z ------------------------ */
1357
1358 static struct tuner_range tuner_sony_btf_pxn01z_ranges[] = {
1359 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
1360 { 16 * 367.25 /*MHz*/, 0x8e, 0x02, },
1361 { 16 * 999.99 , 0x8e, 0x04, },
1362 };
1363
1364 static struct tuner_params tuner_sony_btf_pxn01z_params[] = {
1365 {
1366 .type = TUNER_PARAM_TYPE_NTSC,
1367 .ranges = tuner_sony_btf_pxn01z_ranges,
1368 .count = ARRAY_SIZE(tuner_sony_btf_pxn01z_ranges),
1369 },
1370 };
1371
1372 /* ------------ TUNER_PHILIPS_FQ1236_MK5 - Philips NTSC ------------ */
1373
1374 static struct tuner_params tuner_philips_fq1236_mk5_params[] = {
1375 {
1376 .type = TUNER_PARAM_TYPE_NTSC,
1377 .ranges = tuner_fm1236_mk3_ntsc_ranges,
1378 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
1379 .has_tda9887 = 1, /* TDA9885, no FM radio */
1380 },
1381 };
1382
1383 /* --------------------------------------------------------------------- */
1384
1385 struct tunertype tuners[] = {
1386 /* 0-9 */
1387 [TUNER_TEMIC_PAL] = { /* TEMIC PAL */
1388 .name = "Temic PAL (4002 FH5)",
1389 .params = tuner_temic_pal_params,
1390 .count = ARRAY_SIZE(tuner_temic_pal_params),
1391 },
1392 [TUNER_PHILIPS_PAL_I] = { /* Philips PAL_I */
1393 .name = "Philips PAL_I (FI1246 and compatibles)",
1394 .params = tuner_philips_pal_i_params,
1395 .count = ARRAY_SIZE(tuner_philips_pal_i_params),
1396 },
1397 [TUNER_PHILIPS_NTSC] = { /* Philips NTSC */
1398 .name = "Philips NTSC (FI1236,FM1236 and compatibles)",
1399 .params = tuner_philips_ntsc_params,
1400 .count = ARRAY_SIZE(tuner_philips_ntsc_params),
1401 },
1402 [TUNER_PHILIPS_SECAM] = { /* Philips SECAM */
1403 .name = "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)",
1404 .params = tuner_philips_secam_params,
1405 .count = ARRAY_SIZE(tuner_philips_secam_params),
1406 },
1407 [TUNER_ABSENT] = { /* Tuner Absent */
1408 .name = "NoTuner",
1409 },
1410 [TUNER_PHILIPS_PAL] = { /* Philips PAL */
1411 .name = "Philips PAL_BG (FI1216 and compatibles)",
1412 .params = tuner_philips_pal_params,
1413 .count = ARRAY_SIZE(tuner_philips_pal_params),
1414 },
1415 [TUNER_TEMIC_NTSC] = { /* TEMIC NTSC */
1416 .name = "Temic NTSC (4032 FY5)",
1417 .params = tuner_temic_ntsc_params,
1418 .count = ARRAY_SIZE(tuner_temic_ntsc_params),
1419 },
1420 [TUNER_TEMIC_PAL_I] = { /* TEMIC PAL_I */
1421 .name = "Temic PAL_I (4062 FY5)",
1422 .params = tuner_temic_pal_i_params,
1423 .count = ARRAY_SIZE(tuner_temic_pal_i_params),
1424 },
1425 [TUNER_TEMIC_4036FY5_NTSC] = { /* TEMIC NTSC */
1426 .name = "Temic NTSC (4036 FY5)",
1427 .params = tuner_temic_4036fy5_ntsc_params,
1428 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_params),
1429 },
1430 [TUNER_ALPS_TSBH1_NTSC] = { /* TEMIC NTSC */
1431 .name = "Alps HSBH1",
1432 .params = tuner_alps_tsbh1_ntsc_params,
1433 .count = ARRAY_SIZE(tuner_alps_tsbh1_ntsc_params),
1434 },
1435
1436 /* 10-19 */
1437 [TUNER_ALPS_TSBE1_PAL] = { /* TEMIC PAL */
1438 .name = "Alps TSBE1",
1439 .params = tuner_alps_tsb_1_params,
1440 .count = ARRAY_SIZE(tuner_alps_tsb_1_params),
1441 },
1442 [TUNER_ALPS_TSBB5_PAL_I] = { /* Alps PAL_I */
1443 .name = "Alps TSBB5",
1444 .params = tuner_alps_tsbb5_params,
1445 .count = ARRAY_SIZE(tuner_alps_tsbb5_params),
1446 },
1447 [TUNER_ALPS_TSBE5_PAL] = { /* Alps PAL */
1448 .name = "Alps TSBE5",
1449 .params = tuner_alps_tsbe5_params,
1450 .count = ARRAY_SIZE(tuner_alps_tsbe5_params),
1451 },
1452 [TUNER_ALPS_TSBC5_PAL] = { /* Alps PAL */
1453 .name = "Alps TSBC5",
1454 .params = tuner_alps_tsbc5_params,
1455 .count = ARRAY_SIZE(tuner_alps_tsbc5_params),
1456 },
1457 [TUNER_TEMIC_4006FH5_PAL] = { /* TEMIC PAL */
1458 .name = "Temic PAL_BG (4006FH5)",
1459 .params = tuner_temic_4006fh5_params,
1460 .count = ARRAY_SIZE(tuner_temic_4006fh5_params),
1461 },
1462 [TUNER_ALPS_TSHC6_NTSC] = { /* Alps NTSC */
1463 .name = "Alps TSCH6",
1464 .params = tuner_alps_tshc6_params,
1465 .count = ARRAY_SIZE(tuner_alps_tshc6_params),
1466 },
1467 [TUNER_TEMIC_PAL_DK] = { /* TEMIC PAL */
1468 .name = "Temic PAL_DK (4016 FY5)",
1469 .params = tuner_temic_pal_dk_params,
1470 .count = ARRAY_SIZE(tuner_temic_pal_dk_params),
1471 },
1472 [TUNER_PHILIPS_NTSC_M] = { /* Philips NTSC */
1473 .name = "Philips NTSC_M (MK2)",
1474 .params = tuner_philips_ntsc_m_params,
1475 .count = ARRAY_SIZE(tuner_philips_ntsc_m_params),
1476 },
1477 [TUNER_TEMIC_4066FY5_PAL_I] = { /* TEMIC PAL_I */
1478 .name = "Temic PAL_I (4066 FY5)",
1479 .params = tuner_temic_4066fy5_pal_i_params,
1480 .count = ARRAY_SIZE(tuner_temic_4066fy5_pal_i_params),
1481 },
1482 [TUNER_TEMIC_4006FN5_MULTI_PAL] = { /* TEMIC PAL */
1483 .name = "Temic PAL* auto (4006 FN5)",
1484 .params = tuner_temic_4006fn5_multi_params,
1485 .count = ARRAY_SIZE(tuner_temic_4006fn5_multi_params),
1486 },
1487
1488 /* 20-29 */
1489 [TUNER_TEMIC_4009FR5_PAL] = { /* TEMIC PAL */
1490 .name = "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)",
1491 .params = tuner_temic_4009f_5_params,
1492 .count = ARRAY_SIZE(tuner_temic_4009f_5_params),
1493 },
1494 [TUNER_TEMIC_4039FR5_NTSC] = { /* TEMIC NTSC */
1495 .name = "Temic NTSC (4039 FR5)",
1496 .params = tuner_temic_4039fr5_params,
1497 .count = ARRAY_SIZE(tuner_temic_4039fr5_params),
1498 },
1499 [TUNER_TEMIC_4046FM5] = { /* TEMIC PAL */
1500 .name = "Temic PAL/SECAM multi (4046 FM5)",
1501 .params = tuner_temic_4046fm5_params,
1502 .count = ARRAY_SIZE(tuner_temic_4046fm5_params),
1503 },
1504 [TUNER_PHILIPS_PAL_DK] = { /* Philips PAL */
1505 .name = "Philips PAL_DK (FI1256 and compatibles)",
1506 .params = tuner_philips_pal_dk_params,
1507 .count = ARRAY_SIZE(tuner_philips_pal_dk_params),
1508 },
1509 [TUNER_PHILIPS_FQ1216ME] = { /* Philips PAL */
1510 .name = "Philips PAL/SECAM multi (FQ1216ME)",
1511 .params = tuner_philips_fq1216me_params,
1512 .count = ARRAY_SIZE(tuner_philips_fq1216me_params),
1513 },
1514 [TUNER_LG_PAL_I_FM] = { /* LGINNOTEK PAL_I */
1515 .name = "LG PAL_I+FM (TAPC-I001D)",
1516 .params = tuner_lg_pal_i_fm_params,
1517 .count = ARRAY_SIZE(tuner_lg_pal_i_fm_params),
1518 },
1519 [TUNER_LG_PAL_I] = { /* LGINNOTEK PAL_I */
1520 .name = "LG PAL_I (TAPC-I701D)",
1521 .params = tuner_lg_pal_i_params,
1522 .count = ARRAY_SIZE(tuner_lg_pal_i_params),
1523 },
1524 [TUNER_LG_NTSC_FM] = { /* LGINNOTEK NTSC */
1525 .name = "LG NTSC+FM (TPI8NSR01F)",
1526 .params = tuner_lg_ntsc_fm_params,
1527 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_params),
1528 },
1529 [TUNER_LG_PAL_FM] = { /* LGINNOTEK PAL */
1530 .name = "LG PAL_BG+FM (TPI8PSB01D)",
1531 .params = tuner_lg_pal_fm_params,
1532 .count = ARRAY_SIZE(tuner_lg_pal_fm_params),
1533 },
1534 [TUNER_LG_PAL] = { /* LGINNOTEK PAL */
1535 .name = "LG PAL_BG (TPI8PSB11D)",
1536 .params = tuner_lg_pal_params,
1537 .count = ARRAY_SIZE(tuner_lg_pal_params),
1538 },
1539
1540 /* 30-39 */
1541 [TUNER_TEMIC_4009FN5_MULTI_PAL_FM] = { /* TEMIC PAL */
1542 .name = "Temic PAL* auto + FM (4009 FN5)",
1543 .params = tuner_temic_4009_fn5_multi_pal_fm_params,
1544 .count = ARRAY_SIZE(tuner_temic_4009_fn5_multi_pal_fm_params),
1545 },
1546 [TUNER_SHARP_2U5JF5540_NTSC] = { /* SHARP NTSC */
1547 .name = "SHARP NTSC_JP (2U5JF5540)",
1548 .params = tuner_sharp_2u5jf5540_params,
1549 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_params),
1550 },
1551 [TUNER_Samsung_PAL_TCPM9091PD27] = { /* Samsung PAL */
1552 .name = "Samsung PAL TCPM9091PD27",
1553 .params = tuner_samsung_pal_tcpm9091pd27_params,
1554 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_params),
1555 },
1556 [TUNER_MT2032] = { /* Microtune PAL|NTSC */
1557 .name = "MT20xx universal",
1558 /* see mt20xx.c for details */ },
1559 [TUNER_TEMIC_4106FH5] = { /* TEMIC PAL */
1560 .name = "Temic PAL_BG (4106 FH5)",
1561 .params = tuner_temic_4106fh5_params,
1562 .count = ARRAY_SIZE(tuner_temic_4106fh5_params),
1563 },
1564 [TUNER_TEMIC_4012FY5] = { /* TEMIC PAL */
1565 .name = "Temic PAL_DK/SECAM_L (4012 FY5)",
1566 .params = tuner_temic_4012fy5_params,
1567 .count = ARRAY_SIZE(tuner_temic_4012fy5_params),
1568 },
1569 [TUNER_TEMIC_4136FY5] = { /* TEMIC NTSC */
1570 .name = "Temic NTSC (4136 FY5)",
1571 .params = tuner_temic_4136_fy5_params,
1572 .count = ARRAY_SIZE(tuner_temic_4136_fy5_params),
1573 },
1574 [TUNER_LG_PAL_NEW_TAPC] = { /* LGINNOTEK PAL */
1575 .name = "LG PAL (newer TAPC series)",
1576 .params = tuner_lg_pal_new_tapc_params,
1577 .count = ARRAY_SIZE(tuner_lg_pal_new_tapc_params),
1578 },
1579 [TUNER_PHILIPS_FM1216ME_MK3] = { /* Philips PAL */
1580 .name = "Philips PAL/SECAM multi (FM1216ME MK3)",
1581 .params = tuner_fm1216me_mk3_params,
1582 .count = ARRAY_SIZE(tuner_fm1216me_mk3_params),
1583 },
1584 [TUNER_LG_NTSC_NEW_TAPC] = { /* LGINNOTEK NTSC */
1585 .name = "LG NTSC (newer TAPC series)",
1586 .params = tuner_lg_ntsc_new_tapc_params,
1587 .count = ARRAY_SIZE(tuner_lg_ntsc_new_tapc_params),
1588 },
1589
1590 /* 40-49 */
1591 [TUNER_HITACHI_NTSC] = { /* HITACHI NTSC */
1592 .name = "HITACHI V7-J180AT",
1593 .params = tuner_hitachi_ntsc_params,
1594 .count = ARRAY_SIZE(tuner_hitachi_ntsc_params),
1595 },
1596 [TUNER_PHILIPS_PAL_MK] = { /* Philips PAL */
1597 .name = "Philips PAL_MK (FI1216 MK)",
1598 .params = tuner_philips_pal_mk_params,
1599 .count = ARRAY_SIZE(tuner_philips_pal_mk_params),
1600 },
1601 [TUNER_PHILIPS_FCV1236D] = { /* Philips ATSC */
1602 .name = "Philips FCV1236D ATSC/NTSC dual in",
1603 .params = tuner_philips_fcv1236d_params,
1604 .count = ARRAY_SIZE(tuner_philips_fcv1236d_params),
1605 .min = 16 * 53.00,
1606 .max = 16 * 803.00,
1607 .stepsize = 62500,
1608 },
1609 [TUNER_PHILIPS_FM1236_MK3] = { /* Philips NTSC */
1610 .name = "Philips NTSC MK3 (FM1236MK3 or FM1236/F)",
1611 .params = tuner_fm1236_mk3_params,
1612 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
1613 },
1614 [TUNER_PHILIPS_4IN1] = { /* Philips NTSC */
1615 .name = "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)",
1616 .params = tuner_philips_4in1_params,
1617 .count = ARRAY_SIZE(tuner_philips_4in1_params),
1618 },
1619 [TUNER_MICROTUNE_4049FM5] = { /* Microtune PAL */
1620 .name = "Microtune 4049 FM5",
1621 .params = tuner_microtune_4049_fm5_params,
1622 .count = ARRAY_SIZE(tuner_microtune_4049_fm5_params),
1623 },
1624 [TUNER_PANASONIC_VP27] = { /* Panasonic NTSC */
1625 .name = "Panasonic VP27s/ENGE4324D",
1626 .params = tuner_panasonic_vp27_params,
1627 .count = ARRAY_SIZE(tuner_panasonic_vp27_params),
1628 },
1629 [TUNER_LG_NTSC_TAPE] = { /* LGINNOTEK NTSC */
1630 .name = "LG NTSC (TAPE series)",
1631 .params = tuner_fm1236_mk3_params,
1632 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
1633 },
1634 [TUNER_TNF_8831BGFF] = { /* Philips PAL */
1635 .name = "Tenna TNF 8831 BGFF)",
1636 .params = tuner_tnf_8831bgff_params,
1637 .count = ARRAY_SIZE(tuner_tnf_8831bgff_params),
1638 },
1639 [TUNER_MICROTUNE_4042FI5] = { /* Microtune NTSC */
1640 .name = "Microtune 4042 FI5 ATSC/NTSC dual in",
1641 .params = tuner_microtune_4042fi5_params,
1642 .count = ARRAY_SIZE(tuner_microtune_4042fi5_params),
1643 .min = 16 * 57.00,
1644 .max = 16 * 858.00,
1645 .stepsize = 62500,
1646 },
1647
1648 /* 50-59 */
1649 [TUNER_TCL_2002N] = { /* TCL NTSC */
1650 .name = "TCL 2002N",
1651 .params = tuner_tcl_2002n_params,
1652 .count = ARRAY_SIZE(tuner_tcl_2002n_params),
1653 },
1654 [TUNER_PHILIPS_FM1256_IH3] = { /* Philips PAL */
1655 .name = "Philips PAL/SECAM_D (FM 1256 I-H3)",
1656 .params = tuner_philips_fm1256_ih3_params,
1657 .count = ARRAY_SIZE(tuner_philips_fm1256_ih3_params),
1658 },
1659 [TUNER_THOMSON_DTT7610] = { /* THOMSON ATSC */
1660 .name = "Thomson DTT 7610 (ATSC/NTSC)",
1661 .params = tuner_thomson_dtt7610_params,
1662 .count = ARRAY_SIZE(tuner_thomson_dtt7610_params),
1663 .min = 16 * 44.00,
1664 .max = 16 * 958.00,
1665 .stepsize = 62500,
1666 },
1667 [TUNER_PHILIPS_FQ1286] = { /* Philips NTSC */
1668 .name = "Philips FQ1286",
1669 .params = tuner_philips_fq1286_params,
1670 .count = ARRAY_SIZE(tuner_philips_fq1286_params),
1671 },
1672 [TUNER_PHILIPS_TDA8290] = { /* Philips PAL|NTSC */
1673 .name = "Philips/NXP TDA 8290/8295 + 8275/8275A/18271",
1674 /* see tda8290.c for details */ },
1675 [TUNER_TCL_2002MB] = { /* TCL PAL */
1676 .name = "TCL 2002MB",
1677 .params = tuner_tcl_2002mb_params,
1678 .count = ARRAY_SIZE(tuner_tcl_2002mb_params),
1679 },
1680 [TUNER_PHILIPS_FQ1216AME_MK4] = { /* Philips PAL */
1681 .name = "Philips PAL/SECAM multi (FQ1216AME MK4)",
1682 .params = tuner_philips_fq1216ame_mk4_params,
1683 .count = ARRAY_SIZE(tuner_philips_fq1216ame_mk4_params),
1684 },
1685 [TUNER_PHILIPS_FQ1236A_MK4] = { /* Philips NTSC */
1686 .name = "Philips FQ1236A MK4",
1687 .params = tuner_philips_fq1236a_mk4_params,
1688 .count = ARRAY_SIZE(tuner_philips_fq1236a_mk4_params),
1689 },
1690 [TUNER_YMEC_TVF_8531MF] = { /* Philips NTSC */
1691 .name = "Ymec TVision TVF-8531MF/8831MF/8731MF",
1692 .params = tuner_ymec_tvf_8531mf_params,
1693 .count = ARRAY_SIZE(tuner_ymec_tvf_8531mf_params),
1694 },
1695 [TUNER_YMEC_TVF_5533MF] = { /* Philips NTSC */
1696 .name = "Ymec TVision TVF-5533MF",
1697 .params = tuner_ymec_tvf_5533mf_params,
1698 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_params),
1699 },
1700
1701 /* 60-69 */
1702 [TUNER_THOMSON_DTT761X] = { /* THOMSON ATSC */
1703 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
1704 .name = "Thomson DTT 761X (ATSC/NTSC)",
1705 .params = tuner_thomson_dtt761x_params,
1706 .count = ARRAY_SIZE(tuner_thomson_dtt761x_params),
1707 .min = 16 * 57.00,
1708 .max = 16 * 863.00,
1709 .stepsize = 62500,
1710 .initdata = tua603x_agc103,
1711 },
1712 [TUNER_TENA_9533_DI] = { /* Philips PAL */
1713 .name = "Tena TNF9533-D/IF/TNF9533-B/DF",
1714 .params = tuner_tena_9533_di_params,
1715 .count = ARRAY_SIZE(tuner_tena_9533_di_params),
1716 },
1717 [TUNER_TEA5767] = { /* Philips RADIO */
1718 .name = "Philips TEA5767HN FM Radio",
1719 /* see tea5767.c for details */
1720 },
1721 [TUNER_PHILIPS_FMD1216ME_MK3] = { /* Philips PAL */
1722 .name = "Philips FMD1216ME MK3 Hybrid Tuner",
1723 .params = tuner_philips_fmd1216me_mk3_params,
1724 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_params),
1725 .min = 16 * 50.87,
1726 .max = 16 * 858.00,
1727 .stepsize = 166667,
1728 .initdata = tua603x_agc112,
1729 .sleepdata = (u8[]){ 4, 0x9c, 0x60, 0x85, 0x54 },
1730 },
1731 [TUNER_LG_TDVS_H06XF] = { /* LGINNOTEK ATSC */
1732 .name = "LG TDVS-H06xF", /* H061F, H062F & H064F */
1733 .params = tuner_lg_tdvs_h06xf_params,
1734 .count = ARRAY_SIZE(tuner_lg_tdvs_h06xf_params),
1735 .min = 16 * 54.00,
1736 .max = 16 * 863.00,
1737 .stepsize = 62500,
1738 .initdata = tua603x_agc103,
1739 },
1740 [TUNER_YMEC_TVF66T5_B_DFF] = { /* Philips PAL */
1741 .name = "Ymec TVF66T5-B/DFF",
1742 .params = tuner_ymec_tvf66t5_b_dff_params,
1743 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_params),
1744 },
1745 [TUNER_LG_TALN] = { /* LGINNOTEK NTSC / PAL / SECAM */
1746 .name = "LG TALN series",
1747 .params = tuner_lg_taln_params,
1748 .count = ARRAY_SIZE(tuner_lg_taln_params),
1749 },
1750 [TUNER_PHILIPS_TD1316] = { /* Philips PAL */
1751 .name = "Philips TD1316 Hybrid Tuner",
1752 .params = tuner_philips_td1316_params,
1753 .count = ARRAY_SIZE(tuner_philips_td1316_params),
1754 .min = 16 * 87.00,
1755 .max = 16 * 895.00,
1756 .stepsize = 166667,
1757 },
1758 [TUNER_PHILIPS_TUV1236D] = { /* Philips ATSC */
1759 .name = "Philips TUV1236D ATSC/NTSC dual in",
1760 .params = tuner_tuv1236d_params,
1761 .count = ARRAY_SIZE(tuner_tuv1236d_params),
1762 .min = 16 * 54.00,
1763 .max = 16 * 864.00,
1764 .stepsize = 62500,
1765 },
1766 [TUNER_TNF_5335MF] = { /* Tenna PAL/NTSC */
1767 .name = "Tena TNF 5335 and similar models",
1768 .params = tuner_tnf_5335mf_params,
1769 .count = ARRAY_SIZE(tuner_tnf_5335mf_params),
1770 },
1771
1772 /* 70-79 */
1773 [TUNER_SAMSUNG_TCPN_2121P30A] = { /* Samsung NTSC */
1774 .name = "Samsung TCPN 2121P30A",
1775 .params = tuner_samsung_tcpn_2121p30a_params,
1776 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params),
1777 },
1778 [TUNER_XC2028] = { /* Xceive 2028 */
1779 .name = "Xceive xc2028/xc3028 tuner",
1780 /* see tuner-xc2028.c for details */
1781 },
1782 [TUNER_THOMSON_FE6600] = { /* Thomson PAL / DVB-T */
1783 .name = "Thomson FE6600",
1784 .params = tuner_thomson_fe6600_params,
1785 .count = ARRAY_SIZE(tuner_thomson_fe6600_params),
1786 .min = 16 * 44.25,
1787 .max = 16 * 858.00,
1788 .stepsize = 166667,
1789 },
1790 [TUNER_SAMSUNG_TCPG_6121P30A] = { /* Samsung PAL */
1791 .name = "Samsung TCPG 6121P30A",
1792 .params = tuner_samsung_tcpg_6121p30a_params,
1793 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_params),
1794 },
1795 [TUNER_TDA9887] = { /* Philips TDA 9887 IF PLL Demodulator.
1796 This chip is part of some modern tuners */
1797 .name = "Philips TDA988[5,6,7] IF PLL Demodulator",
1798 /* see tda9887.c for details */
1799 },
1800 [TUNER_TEA5761] = { /* Philips RADIO */
1801 .name = "Philips TEA5761 FM Radio",
1802 /* see tea5767.c for details */
1803 },
1804 [TUNER_XC5000] = { /* Xceive 5000 */
1805 .name = "Xceive 5000 tuner",
1806 /* see xc5000.c for details */
1807 },
1808 [TUNER_XC4000] = { /* Xceive 4000 */
1809 .name = "Xceive 4000 tuner",
1810 /* see xc4000.c for details */
1811 },
1812 [TUNER_TCL_MF02GIP_5N] = { /* TCL tuner MF02GIP-5N-E */
1813 .name = "TCL tuner MF02GIP-5N-E",
1814 .params = tuner_tcl_mf02gip_5n_params,
1815 .count = ARRAY_SIZE(tuner_tcl_mf02gip_5n_params),
1816 },
1817 [TUNER_PHILIPS_FMD1216MEX_MK3] = { /* Philips PAL */
1818 .name = "Philips FMD1216MEX MK3 Hybrid Tuner",
1819 .params = tuner_philips_fmd1216mex_mk3_params,
1820 .count = ARRAY_SIZE(tuner_philips_fmd1216mex_mk3_params),
1821 .min = 16 * 50.87,
1822 .max = 16 * 858.00,
1823 .stepsize = 166667,
1824 .initdata = tua603x_agc112,
1825 .sleepdata = (u8[]){ 4, 0x9c, 0x60, 0x85, 0x54 },
1826 },
1827 [TUNER_PHILIPS_FM1216MK5] = { /* Philips PAL */
1828 .name = "Philips PAL/SECAM multi (FM1216 MK5)",
1829 .params = tuner_fm1216mk5_params,
1830 .count = ARRAY_SIZE(tuner_fm1216mk5_params),
1831 },
1832
1833 /* 80-89 */
1834 [TUNER_PHILIPS_FQ1216LME_MK3] = { /* PAL/SECAM, Loop-thru, no FM */
1835 .name = "Philips FQ1216LME MK3 PAL/SECAM w/active loopthrough",
1836 .params = tuner_fq1216lme_mk3_params,
1837 .count = ARRAY_SIZE(tuner_fq1216lme_mk3_params),
1838 },
1839
1840 [TUNER_PARTSNIC_PTI_5NF05] = {
1841 .name = "Partsnic (Daewoo) PTI-5NF05",
1842 .params = tuner_partsnic_pti_5nf05_params,
1843 .count = ARRAY_SIZE(tuner_partsnic_pti_5nf05_params),
1844 },
1845 [TUNER_PHILIPS_CU1216L] = {
1846 .name = "Philips CU1216L",
1847 .params = tuner_philips_cu1216l_params,
1848 .count = ARRAY_SIZE(tuner_philips_cu1216l_params),
1849 .stepsize = 62500,
1850 },
1851 [TUNER_NXP_TDA18271] = {
1852 .name = "NXP TDA18271",
1853 /* see tda18271-fe.c for details */
1854 },
1855 [TUNER_SONY_BTF_PXN01Z] = {
1856 .name = "Sony BTF-Pxn01Z",
1857 .params = tuner_sony_btf_pxn01z_params,
1858 .count = ARRAY_SIZE(tuner_sony_btf_pxn01z_params),
1859 },
1860 [TUNER_PHILIPS_FQ1236_MK5] = { /* NTSC, TDA9885, no FM radio */
1861 .name = "Philips FQ1236 MK5",
1862 .params = tuner_philips_fq1236_mk5_params,
1863 .count = ARRAY_SIZE(tuner_philips_fq1236_mk5_params),
1864 },
1865 [TUNER_TENA_TNF_5337] = { /* Tena 5337 MFD */
1866 .name = "Tena TNF5337 MFD",
1867 .params = tuner_tena_tnf_5337_params,
1868 .count = ARRAY_SIZE(tuner_tena_tnf_5337_params),
1869 },
1870 };
1871 EXPORT_SYMBOL(tuners);
1872
1873 unsigned const int tuner_count = ARRAY_SIZE(tuners);
1874 EXPORT_SYMBOL(tuner_count);
1875
1876 MODULE_DESCRIPTION("Simple tuner device type database");
1877 MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1878 MODULE_LICENSE("GPL");