]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/media/video/tuner-types.c
V4L/DVB (3916): AverMedia 6 Eyes AVS6EYES support
[net-next-2.6.git] / drivers / media / video / tuner-types.c
CommitLineData
7b0ac9cd
MK
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 *
99d33d50
MK
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.
7b0ac9cd 29 *
99d33d50
MK
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.
7b0ac9cd
MK
36 */
37
38/* 0-9 */
39/* ------------ TUNER_TEMIC_PAL - TEMIC PAL ------------ */
40
41static struct tuner_range tuner_temic_pal_ranges[] = {
3fc46d35
MK
42 { 16 * 140.25 /*MHz*/, 0x8e, 0x02, },
43 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
44 { 16 * 999.99 , 0x8e, 0x01, },
7b0ac9cd
MK
45};
46
47static struct tuner_params tuner_temic_pal_params[] = {
48 {
49 .type = TUNER_PARAM_TYPE_PAL,
50 .ranges = tuner_temic_pal_ranges,
51 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
7b0ac9cd
MK
52 },
53};
54
55/* ------------ TUNER_PHILIPS_PAL_I - Philips PAL_I ------------ */
56
57static struct tuner_range tuner_philips_pal_i_ranges[] = {
3fc46d35
MK
58 { 16 * 140.25 /*MHz*/, 0x8e, 0xa0, },
59 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
60 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
61};
62
63static struct tuner_params tuner_philips_pal_i_params[] = {
64 {
65 .type = TUNER_PARAM_TYPE_PAL,
66 .ranges = tuner_philips_pal_i_ranges,
67 .count = ARRAY_SIZE(tuner_philips_pal_i_ranges),
7b0ac9cd
MK
68 },
69};
70
71/* ------------ TUNER_PHILIPS_NTSC - Philips NTSC ------------ */
72
73static struct tuner_range tuner_philips_ntsc_ranges[] = {
3fc46d35
MK
74 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
75 { 16 * 451.25 /*MHz*/, 0x8e, 0x90, },
76 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
77};
78
79static struct tuner_params tuner_philips_ntsc_params[] = {
80 {
81 .type = TUNER_PARAM_TYPE_NTSC,
82 .ranges = tuner_philips_ntsc_ranges,
83 .count = ARRAY_SIZE(tuner_philips_ntsc_ranges),
27487d44 84 .cb_first_if_lower_freq = 1,
7b0ac9cd
MK
85 },
86};
87
88/* ------------ TUNER_PHILIPS_SECAM - Philips SECAM ------------ */
89
90static struct tuner_range tuner_philips_secam_ranges[] = {
3fc46d35
MK
91 { 16 * 168.25 /*MHz*/, 0x8e, 0xa7, },
92 { 16 * 447.25 /*MHz*/, 0x8e, 0x97, },
93 { 16 * 999.99 , 0x8e, 0x37, },
7b0ac9cd
MK
94};
95
96static struct tuner_params tuner_philips_secam_params[] = {
97 {
98 .type = TUNER_PARAM_TYPE_SECAM,
99 .ranges = tuner_philips_secam_ranges,
100 .count = ARRAY_SIZE(tuner_philips_secam_ranges),
27487d44 101 .cb_first_if_lower_freq = 1,
7b0ac9cd
MK
102 },
103};
104
105/* ------------ TUNER_PHILIPS_PAL - Philips PAL ------------ */
106
107static struct tuner_range tuner_philips_pal_ranges[] = {
3fc46d35
MK
108 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
109 { 16 * 447.25 /*MHz*/, 0x8e, 0x90, },
110 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
111};
112
113static struct tuner_params tuner_philips_pal_params[] = {
114 {
115 .type = TUNER_PARAM_TYPE_PAL,
116 .ranges = tuner_philips_pal_ranges,
117 .count = ARRAY_SIZE(tuner_philips_pal_ranges),
27487d44 118 .cb_first_if_lower_freq = 1,
7b0ac9cd
MK
119 },
120};
121
122/* ------------ TUNER_TEMIC_NTSC - TEMIC NTSC ------------ */
123
124static struct tuner_range tuner_temic_ntsc_ranges[] = {
3fc46d35
MK
125 { 16 * 157.25 /*MHz*/, 0x8e, 0x02, },
126 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
127 { 16 * 999.99 , 0x8e, 0x01, },
7b0ac9cd
MK
128};
129
130static struct tuner_params tuner_temic_ntsc_params[] = {
131 {
132 .type = TUNER_PARAM_TYPE_NTSC,
133 .ranges = tuner_temic_ntsc_ranges,
134 .count = ARRAY_SIZE(tuner_temic_ntsc_ranges),
7b0ac9cd
MK
135 },
136};
137
138/* ------------ TUNER_TEMIC_PAL_I - TEMIC PAL_I ------------ */
139
140static struct tuner_range tuner_temic_pal_i_ranges[] = {
3fc46d35
MK
141 { 16 * 170.00 /*MHz*/, 0x8e, 0x02, },
142 { 16 * 450.00 /*MHz*/, 0x8e, 0x04, },
143 { 16 * 999.99 , 0x8e, 0x01, },
7b0ac9cd
MK
144};
145
146static struct tuner_params tuner_temic_pal_i_params[] = {
147 {
148 .type = TUNER_PARAM_TYPE_PAL,
149 .ranges = tuner_temic_pal_i_ranges,
150 .count = ARRAY_SIZE(tuner_temic_pal_i_ranges),
7b0ac9cd
MK
151 },
152};
153
154/* ------------ TUNER_TEMIC_4036FY5_NTSC - TEMIC NTSC ------------ */
155
156static struct tuner_range tuner_temic_4036fy5_ntsc_ranges[] = {
3fc46d35
MK
157 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
158 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
159 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
160};
161
162static struct tuner_params tuner_temic_4036fy5_ntsc_params[] = {
163 {
164 .type = TUNER_PARAM_TYPE_NTSC,
165 .ranges = tuner_temic_4036fy5_ntsc_ranges,
166 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_ranges),
7b0ac9cd
MK
167 },
168};
169
170/* ------------ TUNER_ALPS_TSBH1_NTSC - TEMIC NTSC ------------ */
171
172static struct tuner_range tuner_alps_tsb_1_ranges[] = {
3fc46d35
MK
173 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
174 { 16 * 385.25 /*MHz*/, 0x8e, 0x02, },
175 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
176};
177
178static struct tuner_params tuner_alps_tsbh1_ntsc_params[] = {
179 {
180 .type = TUNER_PARAM_TYPE_NTSC,
181 .ranges = tuner_alps_tsb_1_ranges,
182 .count = ARRAY_SIZE(tuner_alps_tsb_1_ranges),
7b0ac9cd
MK
183 },
184};
185
186/* 10-19 */
187/* ------------ TUNER_ALPS_TSBE1_PAL - TEMIC PAL ------------ */
188
189static struct tuner_params tuner_alps_tsb_1_params[] = {
190 {
191 .type = TUNER_PARAM_TYPE_PAL,
192 .ranges = tuner_alps_tsb_1_ranges,
193 .count = ARRAY_SIZE(tuner_alps_tsb_1_ranges),
7b0ac9cd
MK
194 },
195};
196
197/* ------------ TUNER_ALPS_TSBB5_PAL_I - Alps PAL_I ------------ */
198
199static struct tuner_range tuner_alps_tsb_5_pal_ranges[] = {
3fc46d35
MK
200 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, },
201 { 16 * 351.25 /*MHz*/, 0x8e, 0x02, },
202 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
203};
204
205static struct tuner_params tuner_alps_tsbb5_params[] = {
206 {
207 .type = TUNER_PARAM_TYPE_PAL,
208 .ranges = tuner_alps_tsb_5_pal_ranges,
209 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
7b0ac9cd
MK
210 },
211};
212
213/* ------------ TUNER_ALPS_TSBE5_PAL - Alps PAL ------------ */
214
215static struct tuner_params tuner_alps_tsbe5_params[] = {
216 {
217 .type = TUNER_PARAM_TYPE_PAL,
218 .ranges = tuner_alps_tsb_5_pal_ranges,
219 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
7b0ac9cd
MK
220 },
221};
222
223/* ------------ TUNER_ALPS_TSBC5_PAL - Alps PAL ------------ */
224
225static struct tuner_params tuner_alps_tsbc5_params[] = {
226 {
227 .type = TUNER_PARAM_TYPE_PAL,
228 .ranges = tuner_alps_tsb_5_pal_ranges,
229 .count = ARRAY_SIZE(tuner_alps_tsb_5_pal_ranges),
7b0ac9cd
MK
230 },
231};
232
233/* ------------ TUNER_TEMIC_4006FH5_PAL - TEMIC PAL ------------ */
234
cc925bbe 235static struct tuner_range tuner_lg_pal_ranges[] = {
3fc46d35
MK
236 { 16 * 170.00 /*MHz*/, 0x8e, 0xa0, },
237 { 16 * 450.00 /*MHz*/, 0x8e, 0x90, },
238 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
239};
240
241static struct tuner_params tuner_temic_4006fh5_params[] = {
242 {
243 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
244 .ranges = tuner_lg_pal_ranges,
245 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
246 },
247};
248
249/* ------------ TUNER_ALPS_TSHC6_NTSC - Alps NTSC ------------ */
250
251static struct tuner_range tuner_alps_tshc6_ntsc_ranges[] = {
3fc46d35
MK
252 { 16 * 137.25 /*MHz*/, 0x8e, 0x14, },
253 { 16 * 385.25 /*MHz*/, 0x8e, 0x12, },
254 { 16 * 999.99 , 0x8e, 0x11, },
7b0ac9cd
MK
255};
256
257static struct tuner_params tuner_alps_tshc6_params[] = {
258 {
259 .type = TUNER_PARAM_TYPE_NTSC,
260 .ranges = tuner_alps_tshc6_ntsc_ranges,
261 .count = ARRAY_SIZE(tuner_alps_tshc6_ntsc_ranges),
7b0ac9cd
MK
262 },
263};
264
265/* ------------ TUNER_TEMIC_PAL_DK - TEMIC PAL ------------ */
266
267static struct tuner_range tuner_temic_pal_dk_ranges[] = {
3fc46d35
MK
268 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
269 { 16 * 456.25 /*MHz*/, 0x8e, 0x90, },
270 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
271};
272
273static struct tuner_params tuner_temic_pal_dk_params[] = {
274 {
275 .type = TUNER_PARAM_TYPE_PAL,
276 .ranges = tuner_temic_pal_dk_ranges,
277 .count = ARRAY_SIZE(tuner_temic_pal_dk_ranges),
7b0ac9cd
MK
278 },
279};
280
281/* ------------ TUNER_PHILIPS_NTSC_M - Philips NTSC ------------ */
282
283static struct tuner_range tuner_philips_ntsc_m_ranges[] = {
3fc46d35
MK
284 { 16 * 160.00 /*MHz*/, 0x8e, 0xa0, },
285 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
286 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
287};
288
289static struct tuner_params tuner_philips_ntsc_m_params[] = {
290 {
291 .type = TUNER_PARAM_TYPE_NTSC,
292 .ranges = tuner_philips_ntsc_m_ranges,
293 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
7b0ac9cd
MK
294 },
295};
296
297/* ------------ TUNER_TEMIC_4066FY5_PAL_I - TEMIC PAL_I ------------ */
298
299static struct tuner_range tuner_temic_40x6f_5_pal_ranges[] = {
3fc46d35
MK
300 { 16 * 169.00 /*MHz*/, 0x8e, 0xa0, },
301 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
302 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
303};
304
305static struct tuner_params tuner_temic_4066fy5_pal_i_params[] = {
306 {
307 .type = TUNER_PARAM_TYPE_PAL,
308 .ranges = tuner_temic_40x6f_5_pal_ranges,
309 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
7b0ac9cd
MK
310 },
311};
312
313/* ------------ TUNER_TEMIC_4006FN5_MULTI_PAL - TEMIC PAL ------------ */
314
315static struct tuner_params tuner_temic_4006fn5_multi_params[] = {
316 {
317 .type = TUNER_PARAM_TYPE_PAL,
318 .ranges = tuner_temic_40x6f_5_pal_ranges,
319 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
7b0ac9cd
MK
320 },
321};
322
323/* 20-29 */
324/* ------------ TUNER_TEMIC_4009FR5_PAL - TEMIC PAL ------------ */
325
326static struct tuner_range tuner_temic_4009f_5_pal_ranges[] = {
3fc46d35
MK
327 { 16 * 141.00 /*MHz*/, 0x8e, 0xa0, },
328 { 16 * 464.00 /*MHz*/, 0x8e, 0x90, },
329 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
330};
331
332static struct tuner_params tuner_temic_4009f_5_params[] = {
333 {
334 .type = TUNER_PARAM_TYPE_PAL,
335 .ranges = tuner_temic_4009f_5_pal_ranges,
336 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
7b0ac9cd
MK
337 },
338};
339
340/* ------------ TUNER_TEMIC_4039FR5_NTSC - TEMIC NTSC ------------ */
341
cc925bbe 342static struct tuner_range tuner_temic_4x3x_f_5_ntsc_ranges[] = {
3fc46d35
MK
343 { 16 * 158.00 /*MHz*/, 0x8e, 0xa0, },
344 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
345 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
346};
347
348static struct tuner_params tuner_temic_4039fr5_params[] = {
349 {
350 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
351 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
352 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
7b0ac9cd
MK
353 },
354};
355
356/* ------------ TUNER_TEMIC_4046FM5 - TEMIC PAL ------------ */
357
7b0ac9cd
MK
358static struct tuner_params tuner_temic_4046fm5_params[] = {
359 {
360 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
361 .ranges = tuner_temic_40x6f_5_pal_ranges,
362 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
7b0ac9cd
MK
363 },
364};
365
366/* ------------ TUNER_PHILIPS_PAL_DK - Philips PAL ------------ */
367
7b0ac9cd
MK
368static struct tuner_params tuner_philips_pal_dk_params[] = {
369 {
370 .type = TUNER_PARAM_TYPE_PAL,
371 .ranges = tuner_lg_pal_ranges,
372 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
373 },
374};
375
376/* ------------ TUNER_PHILIPS_FQ1216ME - Philips PAL ------------ */
377
378static struct tuner_params tuner_philips_fq1216me_params[] = {
379 {
380 .type = TUNER_PARAM_TYPE_PAL,
381 .ranges = tuner_lg_pal_ranges,
382 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
383 },
384};
385
386/* ------------ TUNER_LG_PAL_I_FM - LGINNOTEK PAL_I ------------ */
387
388static struct tuner_params tuner_lg_pal_i_fm_params[] = {
389 {
390 .type = TUNER_PARAM_TYPE_PAL,
391 .ranges = tuner_lg_pal_ranges,
392 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
393 },
394};
395
396/* ------------ TUNER_LG_PAL_I - LGINNOTEK PAL_I ------------ */
397
398static struct tuner_params tuner_lg_pal_i_params[] = {
399 {
400 .type = TUNER_PARAM_TYPE_PAL,
401 .ranges = tuner_lg_pal_ranges,
402 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
403 },
404};
405
406/* ------------ TUNER_LG_NTSC_FM - LGINNOTEK NTSC ------------ */
407
408static struct tuner_range tuner_lg_ntsc_fm_ranges[] = {
3fc46d35
MK
409 { 16 * 210.00 /*MHz*/, 0x8e, 0xa0, },
410 { 16 * 497.00 /*MHz*/, 0x8e, 0x90, },
411 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
412};
413
414static struct tuner_params tuner_lg_ntsc_fm_params[] = {
415 {
416 .type = TUNER_PARAM_TYPE_NTSC,
417 .ranges = tuner_lg_ntsc_fm_ranges,
418 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_ranges),
7b0ac9cd
MK
419 },
420};
421
422/* ------------ TUNER_LG_PAL_FM - LGINNOTEK PAL ------------ */
423
424static struct tuner_params tuner_lg_pal_fm_params[] = {
425 {
426 .type = TUNER_PARAM_TYPE_PAL,
427 .ranges = tuner_lg_pal_ranges,
428 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
429 },
430};
431
432/* ------------ TUNER_LG_PAL - LGINNOTEK PAL ------------ */
433
434static struct tuner_params tuner_lg_pal_params[] = {
435 {
436 .type = TUNER_PARAM_TYPE_PAL,
437 .ranges = tuner_lg_pal_ranges,
438 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
439 },
440};
441
442/* 30-39 */
443/* ------------ TUNER_TEMIC_4009FN5_MULTI_PAL_FM - TEMIC PAL ------------ */
444
445static struct tuner_params tuner_temic_4009_fn5_multi_pal_fm_params[] = {
446 {
447 .type = TUNER_PARAM_TYPE_PAL,
448 .ranges = tuner_temic_4009f_5_pal_ranges,
449 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
7b0ac9cd
MK
450 },
451};
452
453/* ------------ TUNER_SHARP_2U5JF5540_NTSC - SHARP NTSC ------------ */
454
455static struct tuner_range tuner_sharp_2u5jf5540_ntsc_ranges[] = {
3fc46d35
MK
456 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
457 { 16 * 317.25 /*MHz*/, 0x8e, 0x02, },
458 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
459};
460
461static struct tuner_params tuner_sharp_2u5jf5540_params[] = {
462 {
463 .type = TUNER_PARAM_TYPE_NTSC,
464 .ranges = tuner_sharp_2u5jf5540_ntsc_ranges,
465 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_ntsc_ranges),
7b0ac9cd
MK
466 },
467};
468
469/* ------------ TUNER_Samsung_PAL_TCPM9091PD27 - Samsung PAL ------------ */
470
471static struct tuner_range tuner_samsung_pal_tcpm9091pd27_ranges[] = {
3fc46d35
MK
472 { 16 * 169 /*MHz*/, 0x8e, 0xa0, },
473 { 16 * 464 /*MHz*/, 0x8e, 0x90, },
474 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
475};
476
477static struct tuner_params tuner_samsung_pal_tcpm9091pd27_params[] = {
478 {
479 .type = TUNER_PARAM_TYPE_PAL,
480 .ranges = tuner_samsung_pal_tcpm9091pd27_ranges,
481 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_ranges),
7b0ac9cd
MK
482 },
483};
484
485/* ------------ TUNER_TEMIC_4106FH5 - TEMIC PAL ------------ */
486
487static struct tuner_params tuner_temic_4106fh5_params[] = {
488 {
489 .type = TUNER_PARAM_TYPE_PAL,
490 .ranges = tuner_temic_4009f_5_pal_ranges,
491 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
7b0ac9cd
MK
492 },
493};
494
495/* ------------ TUNER_TEMIC_4012FY5 - TEMIC PAL ------------ */
496
7b0ac9cd
MK
497static struct tuner_params tuner_temic_4012fy5_params[] = {
498 {
499 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
500 .ranges = tuner_temic_pal_ranges,
501 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
7b0ac9cd
MK
502 },
503};
504
505/* ------------ TUNER_TEMIC_4136FY5 - TEMIC NTSC ------------ */
506
7b0ac9cd
MK
507static struct tuner_params tuner_temic_4136_fy5_params[] = {
508 {
509 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
510 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
511 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
7b0ac9cd
MK
512 },
513};
514
515/* ------------ TUNER_LG_PAL_NEW_TAPC - LGINNOTEK PAL ------------ */
516
517static struct tuner_range tuner_lg_new_tapc_ranges[] = {
3fc46d35
MK
518 { 16 * 170.00 /*MHz*/, 0x8e, 0x01, },
519 { 16 * 450.00 /*MHz*/, 0x8e, 0x02, },
520 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
521};
522
523static struct tuner_params tuner_lg_pal_new_tapc_params[] = {
524 {
525 .type = TUNER_PARAM_TYPE_PAL,
526 .ranges = tuner_lg_new_tapc_ranges,
527 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
7b0ac9cd
MK
528 },
529};
530
531/* ------------ TUNER_PHILIPS_FM1216ME_MK3 - Philips PAL ------------ */
532
533static struct tuner_range tuner_fm1216me_mk3_pal_ranges[] = {
3fc46d35
MK
534 { 16 * 158.00 /*MHz*/, 0x8e, 0x01, },
535 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
536 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
537};
538
539static struct tuner_params tuner_fm1216me_mk3_params[] = {
540 {
541 .type = TUNER_PARAM_TYPE_PAL,
542 .ranges = tuner_fm1216me_mk3_pal_ranges,
543 .count = ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges),
27487d44 544 .cb_first_if_lower_freq = 1,
7b0ac9cd
MK
545 },
546};
547
548/* ------------ TUNER_LG_NTSC_NEW_TAPC - LGINNOTEK NTSC ------------ */
549
550static struct tuner_params tuner_lg_ntsc_new_tapc_params[] = {
551 {
552 .type = TUNER_PARAM_TYPE_NTSC,
553 .ranges = tuner_lg_new_tapc_ranges,
554 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
7b0ac9cd
MK
555 },
556};
557
558/* 40-49 */
559/* ------------ TUNER_HITACHI_NTSC - HITACHI NTSC ------------ */
560
561static struct tuner_params tuner_hitachi_ntsc_params[] = {
562 {
563 .type = TUNER_PARAM_TYPE_NTSC,
564 .ranges = tuner_lg_new_tapc_ranges,
565 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
7b0ac9cd
MK
566 },
567};
568
569/* ------------ TUNER_PHILIPS_PAL_MK - Philips PAL ------------ */
570
571static struct tuner_range tuner_philips_pal_mk_pal_ranges[] = {
3fc46d35
MK
572 { 16 * 140.25 /*MHz*/, 0x8e, 0x01, },
573 { 16 * 463.25 /*MHz*/, 0x8e, 0xc2, },
574 { 16 * 999.99 , 0x8e, 0xcf, },
7b0ac9cd
MK
575};
576
577static struct tuner_params tuner_philips_pal_mk_params[] = {
578 {
579 .type = TUNER_PARAM_TYPE_PAL,
580 .ranges = tuner_philips_pal_mk_pal_ranges,
581 .count = ARRAY_SIZE(tuner_philips_pal_mk_pal_ranges),
7b0ac9cd
MK
582 },
583};
584
585/* ------------ TUNER_PHILIPS_ATSC - Philips ATSC ------------ */
586
587static struct tuner_range tuner_philips_atsc_ranges[] = {
3fc46d35
MK
588 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
589 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
590 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
591};
592
593static struct tuner_params tuner_philips_atsc_params[] = {
594 {
595 .type = TUNER_PARAM_TYPE_NTSC,
596 .ranges = tuner_philips_atsc_ranges,
597 .count = ARRAY_SIZE(tuner_philips_atsc_ranges),
7b0ac9cd
MK
598 },
599};
600
601/* ------------ TUNER_PHILIPS_FM1236_MK3 - Philips NTSC ------------ */
602
603static struct tuner_range tuner_fm1236_mk3_ntsc_ranges[] = {
3fc46d35
MK
604 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
605 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
606 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
607};
608
609static struct tuner_params tuner_fm1236_mk3_params[] = {
610 {
611 .type = TUNER_PARAM_TYPE_NTSC,
612 .ranges = tuner_fm1236_mk3_ntsc_ranges,
613 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
27487d44 614 .cb_first_if_lower_freq = 1,
7b0ac9cd
MK
615 },
616};
617
618/* ------------ TUNER_PHILIPS_4IN1 - Philips NTSC ------------ */
619
7b0ac9cd
MK
620static struct tuner_params tuner_philips_4in1_params[] = {
621 {
622 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
623 .ranges = tuner_fm1236_mk3_ntsc_ranges,
624 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
7b0ac9cd
MK
625 },
626};
627
628/* ------------ TUNER_MICROTUNE_4049FM5 - Microtune PAL ------------ */
629
630static struct tuner_params tuner_microtune_4049_fm5_params[] = {
631 {
632 .type = TUNER_PARAM_TYPE_PAL,
633 .ranges = tuner_temic_4009f_5_pal_ranges,
634 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
7b0ac9cd
MK
635 },
636};
637
638/* ------------ TUNER_PANASONIC_VP27 - Panasonic NTSC ------------ */
639
640static struct tuner_range tuner_panasonic_vp27_ntsc_ranges[] = {
3fc46d35
MK
641 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
642 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
643 { 16 * 999.99 , 0xce, 0x08, },
7b0ac9cd
MK
644};
645
646static struct tuner_params tuner_panasonic_vp27_params[] = {
647 {
648 .type = TUNER_PARAM_TYPE_NTSC,
649 .ranges = tuner_panasonic_vp27_ntsc_ranges,
650 .count = ARRAY_SIZE(tuner_panasonic_vp27_ntsc_ranges),
7b0ac9cd
MK
651 },
652};
653
654/* ------------ TUNER_LG_NTSC_TAPE - LGINNOTEK NTSC ------------ */
655
7b0ac9cd
MK
656static struct tuner_params tuner_lg_ntsc_tape_params[] = {
657 {
658 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
659 .ranges = tuner_fm1236_mk3_ntsc_ranges,
660 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
7b0ac9cd
MK
661 },
662};
663
664/* ------------ TUNER_TNF_8831BGFF - Philips PAL ------------ */
665
666static struct tuner_range tuner_tnf_8831bgff_pal_ranges[] = {
3fc46d35
MK
667 { 16 * 161.25 /*MHz*/, 0x8e, 0xa0, },
668 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
669 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
670};
671
672static struct tuner_params tuner_tnf_8831bgff_params[] = {
673 {
674 .type = TUNER_PARAM_TYPE_PAL,
675 .ranges = tuner_tnf_8831bgff_pal_ranges,
676 .count = ARRAY_SIZE(tuner_tnf_8831bgff_pal_ranges),
7b0ac9cd
MK
677 },
678};
679
680/* ------------ TUNER_MICROTUNE_4042FI5 - Microtune NTSC ------------ */
681
682static struct tuner_range tuner_microtune_4042fi5_ntsc_ranges[] = {
3fc46d35
MK
683 { 16 * 162.00 /*MHz*/, 0x8e, 0xa2, },
684 { 16 * 457.00 /*MHz*/, 0x8e, 0x94, },
685 { 16 * 999.99 , 0x8e, 0x31, },
7b0ac9cd
MK
686};
687
688static struct tuner_params tuner_microtune_4042fi5_params[] = {
689 {
690 .type = TUNER_PARAM_TYPE_NTSC,
691 .ranges = tuner_microtune_4042fi5_ntsc_ranges,
692 .count = ARRAY_SIZE(tuner_microtune_4042fi5_ntsc_ranges),
7b0ac9cd
MK
693 },
694};
695
696/* 50-59 */
697/* ------------ TUNER_TCL_2002N - TCL NTSC ------------ */
698
699static struct tuner_range tuner_tcl_2002n_ntsc_ranges[] = {
3fc46d35
MK
700 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
701 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
702 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
703};
704
705static struct tuner_params tuner_tcl_2002n_params[] = {
706 {
707 .type = TUNER_PARAM_TYPE_NTSC,
708 .ranges = tuner_tcl_2002n_ntsc_ranges,
709 .count = ARRAY_SIZE(tuner_tcl_2002n_ntsc_ranges),
27487d44 710 .cb_first_if_lower_freq = 1,
7b0ac9cd
MK
711 },
712};
713
714/* ------------ TUNER_PHILIPS_FM1256_IH3 - Philips PAL ------------ */
715
7b0ac9cd
MK
716static struct tuner_params tuner_philips_fm1256_ih3_params[] = {
717 {
718 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
719 .ranges = tuner_fm1236_mk3_ntsc_ranges,
720 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
7b0ac9cd
MK
721 },
722};
723
724/* ------------ TUNER_THOMSON_DTT7610 - THOMSON ATSC ------------ */
725
726static struct tuner_range tuner_thomson_dtt7610_ntsc_ranges[] = {
3fc46d35
MK
727 { 16 * 157.25 /*MHz*/, 0x8e, 0x39, },
728 { 16 * 454.00 /*MHz*/, 0x8e, 0x3a, },
729 { 16 * 999.99 , 0x8e, 0x3c, },
7b0ac9cd
MK
730};
731
732static struct tuner_params tuner_thomson_dtt7610_params[] = {
733 {
734 .type = TUNER_PARAM_TYPE_NTSC,
735 .ranges = tuner_thomson_dtt7610_ntsc_ranges,
736 .count = ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges),
7b0ac9cd
MK
737 },
738};
739
740/* ------------ TUNER_PHILIPS_FQ1286 - Philips NTSC ------------ */
741
742static struct tuner_range tuner_philips_fq1286_ntsc_ranges[] = {
3fc46d35
MK
743 { 16 * 160.00 /*MHz*/, 0x8e, 0x41, },
744 { 16 * 454.00 /*MHz*/, 0x8e, 0x42, },
745 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
746};
747
748static struct tuner_params tuner_philips_fq1286_params[] = {
749 {
750 .type = TUNER_PARAM_TYPE_NTSC,
751 .ranges = tuner_philips_fq1286_ntsc_ranges,
752 .count = ARRAY_SIZE(tuner_philips_fq1286_ntsc_ranges),
7b0ac9cd
MK
753 },
754};
755
756/* ------------ TUNER_TCL_2002MB - TCL PAL ------------ */
757
758static struct tuner_range tuner_tcl_2002mb_pal_ranges[] = {
3fc46d35
MK
759 { 16 * 170.00 /*MHz*/, 0xce, 0x01, },
760 { 16 * 450.00 /*MHz*/, 0xce, 0x02, },
761 { 16 * 999.99 , 0xce, 0x08, },
7b0ac9cd
MK
762};
763
764static struct tuner_params tuner_tcl_2002mb_params[] = {
765 {
766 .type = TUNER_PARAM_TYPE_PAL,
767 .ranges = tuner_tcl_2002mb_pal_ranges,
768 .count = ARRAY_SIZE(tuner_tcl_2002mb_pal_ranges),
7b0ac9cd
MK
769 },
770};
771
772/* ------------ TUNER_PHILIPS_FQ1216AME_MK4 - Philips PAL ------------ */
773
3fc46d35
MK
774static 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, },
7b0ac9cd
MK
778};
779
780static struct tuner_params tuner_philips_fq1216ame_mk4_params[] = {
781 {
782 .type = TUNER_PARAM_TYPE_PAL,
3fc46d35
MK
783 .ranges = tuner_philips_fq12_6a___mk4_pal_ranges,
784 .count = ARRAY_SIZE(tuner_philips_fq12_6a___mk4_pal_ranges),
7b0ac9cd
MK
785 },
786};
787
788/* ------------ TUNER_PHILIPS_FQ1236A_MK4 - Philips NTSC ------------ */
789
790static struct tuner_params tuner_philips_fq1236a_mk4_params[] = {
791 {
792 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
793 .ranges = tuner_fm1236_mk3_ntsc_ranges,
794 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
7b0ac9cd
MK
795 },
796};
797
798/* ------------ TUNER_YMEC_TVF_8531MF - Philips NTSC ------------ */
799
7b0ac9cd
MK
800static struct tuner_params tuner_ymec_tvf_8531mf_params[] = {
801 {
802 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
803 .ranges = tuner_philips_ntsc_m_ranges,
804 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
7b0ac9cd
MK
805 },
806};
807
808/* ------------ TUNER_YMEC_TVF_5533MF - Philips NTSC ------------ */
809
810static struct tuner_range tuner_ymec_tvf_5533mf_ntsc_ranges[] = {
3fc46d35
MK
811 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
812 { 16 * 454.00 /*MHz*/, 0x8e, 0x02, },
813 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
814};
815
816static struct tuner_params tuner_ymec_tvf_5533mf_params[] = {
817 {
818 .type = TUNER_PARAM_TYPE_NTSC,
819 .ranges = tuner_ymec_tvf_5533mf_ntsc_ranges,
820 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_ntsc_ranges),
7b0ac9cd
MK
821 },
822};
823
824/* 60-69 */
825/* ------------ TUNER_THOMSON_DTT761X - THOMSON ATSC ------------ */
826/* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
827
828static struct tuner_range tuner_thomson_dtt761x_ntsc_ranges[] = {
3fc46d35
MK
829 { 16 * 145.25 /*MHz*/, 0x8e, 0x39, },
830 { 16 * 415.25 /*MHz*/, 0x8e, 0x3a, },
831 { 16 * 999.99 , 0x8e, 0x3c, },
7b0ac9cd
MK
832};
833
834
835static struct tuner_params tuner_thomson_dtt761x_params[] = {
836 {
837 .type = TUNER_PARAM_TYPE_NTSC,
838 .ranges = tuner_thomson_dtt761x_ntsc_ranges,
839 .count = ARRAY_SIZE(tuner_thomson_dtt761x_ntsc_ranges),
7b0ac9cd
MK
840 },
841};
842
843/* ------------ TUNER_TENA_9533_DI - Philips PAL ------------ */
844
cc925bbe 845static struct tuner_range tuner_tena_9533_di_pal_ranges[] = {
3fc46d35
MK
846 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
847 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
848 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
849};
850
851static struct tuner_params tuner_tena_9533_di_params[] = {
852 {
853 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
854 .ranges = tuner_tena_9533_di_pal_ranges,
855 .count = ARRAY_SIZE(tuner_tena_9533_di_pal_ranges),
7b0ac9cd
MK
856 },
857};
858
859/* ------------ TUNER_PHILIPS_FMD1216ME_MK3 - Philips PAL ------------ */
860
861static struct tuner_range tuner_philips_fmd1216me_mk3_pal_ranges[] = {
3fc46d35
MK
862 { 16 * 160.00 /*MHz*/, 0x86, 0x51, },
863 { 16 * 442.00 /*MHz*/, 0x86, 0x52, },
864 { 16 * 999.99 , 0x86, 0x54, },
7b0ac9cd
MK
865};
866
867
cc925bbe 868static struct tuner_params tuner_philips_fmd1216me_mk3_params[] = {
7b0ac9cd
MK
869 {
870 .type = TUNER_PARAM_TYPE_PAL,
871 .ranges = tuner_philips_fmd1216me_mk3_pal_ranges,
872 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges),
7b0ac9cd
MK
873 },
874};
875
876
877/* ------------ TUNER_LG_TDVS_H062F - INFINEON ATSC ------------ */
878
879static struct tuner_range tuner_tua6034_ntsc_ranges[] = {
dd31d5ac
RS
880 { 16 * 165.00 /*MHz*/, 0x8e, 0x01 },
881 { 16 * 450.00 /*MHz*/, 0x8e, 0x02 },
3fc46d35 882 { 16 * 999.99 , 0x8e, 0x04 },
7b0ac9cd
MK
883};
884
885
886static struct tuner_params tuner_tua6034_params[] = {
887 {
888 .type = TUNER_PARAM_TYPE_NTSC,
889 .ranges = tuner_tua6034_ntsc_ranges,
890 .count = ARRAY_SIZE(tuner_tua6034_ntsc_ranges),
7b0ac9cd
MK
891 },
892};
893
894/* ------------ TUNER_YMEC_TVF66T5_B_DFF - Philips PAL ------------ */
895
7b0ac9cd
MK
896static struct tuner_params tuner_ymec_tvf66t5_b_dff_params[] = {
897 {
898 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
899 .ranges = tuner_tena_9533_di_pal_ranges,
900 .count = ARRAY_SIZE(tuner_tena_9533_di_pal_ranges),
7b0ac9cd
MK
901 },
902};
903
904/* ------------ TUNER_LG_NTSC_TALN_MINI - LGINNOTEK NTSC ------------ */
905
f3629be8 906static struct tuner_range tuner_lg_taln_ntsc_ranges[] = {
3fc46d35
MK
907 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
908 { 16 * 373.25 /*MHz*/, 0x8e, 0x02, },
909 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
910};
911
f3629be8
MK
912static struct tuner_range tuner_lg_taln_pal_secam_ranges[] = {
913 { 16 * 150.00 /*MHz*/, 0x8e, 0x01, },
914 { 16 * 425.00 /*MHz*/, 0x8e, 0x02, },
915 { 16 * 999.99 , 0x8e, 0x08, },
916};
917
918static struct tuner_params tuner_lg_taln_params[] = {
7b0ac9cd
MK
919 {
920 .type = TUNER_PARAM_TYPE_NTSC,
f3629be8
MK
921 .ranges = tuner_lg_taln_ntsc_ranges,
922 .count = ARRAY_SIZE(tuner_lg_taln_ntsc_ranges),
923 },{
924 .type = TUNER_PARAM_TYPE_PAL,
925 .ranges = tuner_lg_taln_pal_secam_ranges,
926 .count = ARRAY_SIZE(tuner_lg_taln_pal_secam_ranges),
7b0ac9cd
MK
927 },
928};
929
930/* ------------ TUNER_PHILIPS_TD1316 - Philips PAL ------------ */
931
932static struct tuner_range tuner_philips_td1316_pal_ranges[] = {
3fc46d35
MK
933 { 16 * 160.00 /*MHz*/, 0xc8, 0xa1, },
934 { 16 * 442.00 /*MHz*/, 0xc8, 0xa2, },
935 { 16 * 999.99 , 0xc8, 0xa4, },
7b0ac9cd
MK
936};
937
938static struct tuner_params tuner_philips_td1316_params[] = {
939 {
940 .type = TUNER_PARAM_TYPE_PAL,
941 .ranges = tuner_philips_td1316_pal_ranges,
942 .count = ARRAY_SIZE(tuner_philips_td1316_pal_ranges),
7b0ac9cd
MK
943 },
944};
945
946/* ------------ TUNER_PHILIPS_TUV1236D - Philips ATSC ------------ */
947
948static struct tuner_range tuner_tuv1236d_ntsc_ranges[] = {
3fc46d35
MK
949 { 16 * 157.25 /*MHz*/, 0xce, 0x01, },
950 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
951 { 16 * 999.99 , 0xce, 0x04, },
7b0ac9cd
MK
952};
953
954
cc925bbe 955static struct tuner_params tuner_tuv1236d_params[] = {
7b0ac9cd
MK
956 {
957 .type = TUNER_PARAM_TYPE_NTSC,
958 .ranges = tuner_tuv1236d_ntsc_ranges,
959 .count = ARRAY_SIZE(tuner_tuv1236d_ntsc_ranges),
7b0ac9cd
MK
960 },
961};
962
efcf55cb
MCC
963/* ------------ TUNER_TNF_xxx5 - Texas Instruments--------- */
964/* This is known to work with Tenna TVF58t5-MFF and TVF5835 MFF
965 * but it is expected to work also with other Tenna/Ymec
966 * models based on TI SN 761677 chip on both PAL and NTSC
967 */
968
969static struct tuner_range tuner_tnf_5335_d_if_pal_ranges[] = {
970 { 16 * 168.25 /*MHz*/, 0x8e, 0x01, },
7947a220
MCC
971 { 16 * 471.25 /*MHz*/, 0x8e, 0x02, },
972 { 16 * 999.99 , 0x8e, 0x08, },
efcf55cb 973};
7b0ac9cd
MK
974
975static struct tuner_range tuner_tnf_5335mf_ntsc_ranges[] = {
efcf55cb
MCC
976 { 16 * 169.25 /*MHz*/, 0x8e, 0x01, },
977 { 16 * 469.25 /*MHz*/, 0x8e, 0x02, },
978 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
979};
980
981static struct tuner_params tuner_tnf_5335mf_params[] = {
982 {
983 .type = TUNER_PARAM_TYPE_NTSC,
984 .ranges = tuner_tnf_5335mf_ntsc_ranges,
985 .count = ARRAY_SIZE(tuner_tnf_5335mf_ntsc_ranges),
7b0ac9cd 986 },
efcf55cb
MCC
987 {
988 .type = TUNER_PARAM_TYPE_PAL,
989 .ranges = tuner_tnf_5335_d_if_pal_ranges,
990 .count = ARRAY_SIZE(tuner_tnf_5335_d_if_pal_ranges),
991 },
7b0ac9cd
MK
992};
993
b3d37042
HV
994/* 70-79 */
995/* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */
996
997static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = {
df821f75
HV
998 { 16 * 130.00 /*MHz*/, 0xce, 0x01, },
999 { 16 * 364.50 /*MHz*/, 0xce, 0x02, },
3fc46d35 1000 { 16 * 999.99 , 0xce, 0x08, },
b3d37042
HV
1001};
1002
1003static struct tuner_params tuner_samsung_tcpn_2121p30a_params[] = {
1004 {
1005 .type = TUNER_PARAM_TYPE_NTSC,
1006 .ranges = tuner_samsung_tcpn_2121p30a_ntsc_ranges,
1007 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_ntsc_ranges),
b3d37042
HV
1008 },
1009};
1010
91ae3299 1011/* ------------ TUNER_THOMSON_FE6600 - DViCO Hybrid PAL ------------ */
780dfef3 1012
91ae3299 1013static struct tuner_range tuner_thomson_fe6600_ranges[] = {
780dfef3
CP
1014 { 16 * 160.00 /*MHz*/, 0xfe, 0x11, },
1015 { 16 * 442.00 /*MHz*/, 0xf6, 0x12, },
1016 { 16 * 999.99 , 0xf6, 0x18, },
1017};
1018
91ae3299 1019static struct tuner_params tuner_thomson_fe6600_params[] = {
780dfef3
CP
1020 {
1021 .type = TUNER_PARAM_TYPE_PAL,
91ae3299
MK
1022 .ranges = tuner_thomson_fe6600_ranges,
1023 .count = ARRAY_SIZE(tuner_thomson_fe6600_ranges),
780dfef3
CP
1024 },
1025};
1026
c344933a
HV
1027/* ------------ TUNER_SAMSUNG_TCPG_6121P30A - Samsung PAL ------------ */
1028
1029static struct tuner_range tuner_samsung_tcpg_6121p30a_pal_ranges[] = {
1030 { 16 * 146.25 /*MHz*/, 0xce, 0x01, },
1031 { 16 * 428.50 /*MHz*/, 0xce, 0x02, },
1032 { 16 * 999.99 , 0xce, 0x08, },
1033};
1034
1035static struct tuner_params tuner_samsung_tcpg_6121p30a_params[] = {
1036 {
1037 .type = TUNER_PARAM_TYPE_PAL,
1038 .ranges = tuner_samsung_tcpg_6121p30a_pal_ranges,
1039 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_pal_ranges),
1040 },
1041};
1042
7b0ac9cd
MK
1043/* --------------------------------------------------------------------- */
1044
1045struct tunertype tuners[] = {
1046 /* 0-9 */
1047 [TUNER_TEMIC_PAL] = { /* TEMIC PAL */
1048 .name = "Temic PAL (4002 FH5)",
1049 .params = tuner_temic_pal_params,
bbab6fd8 1050 .count = ARRAY_SIZE(tuner_temic_pal_params),
7b0ac9cd
MK
1051 },
1052 [TUNER_PHILIPS_PAL_I] = { /* Philips PAL_I */
1053 .name = "Philips PAL_I (FI1246 and compatibles)",
1054 .params = tuner_philips_pal_i_params,
bbab6fd8 1055 .count = ARRAY_SIZE(tuner_philips_pal_i_params),
7b0ac9cd
MK
1056 },
1057 [TUNER_PHILIPS_NTSC] = { /* Philips NTSC */
1058 .name = "Philips NTSC (FI1236,FM1236 and compatibles)",
1059 .params = tuner_philips_ntsc_params,
bbab6fd8 1060 .count = ARRAY_SIZE(tuner_philips_ntsc_params),
7b0ac9cd
MK
1061 },
1062 [TUNER_PHILIPS_SECAM] = { /* Philips SECAM */
1063 .name = "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)",
1064 .params = tuner_philips_secam_params,
bbab6fd8 1065 .count = ARRAY_SIZE(tuner_philips_secam_params),
7b0ac9cd
MK
1066 },
1067 [TUNER_ABSENT] = { /* Tuner Absent */
1068 .name = "NoTuner",
1069 },
1070 [TUNER_PHILIPS_PAL] = { /* Philips PAL */
1071 .name = "Philips PAL_BG (FI1216 and compatibles)",
1072 .params = tuner_philips_pal_params,
bbab6fd8 1073 .count = ARRAY_SIZE(tuner_philips_pal_params),
7b0ac9cd
MK
1074 },
1075 [TUNER_TEMIC_NTSC] = { /* TEMIC NTSC */
1076 .name = "Temic NTSC (4032 FY5)",
1077 .params = tuner_temic_ntsc_params,
bbab6fd8 1078 .count = ARRAY_SIZE(tuner_temic_ntsc_params),
7b0ac9cd
MK
1079 },
1080 [TUNER_TEMIC_PAL_I] = { /* TEMIC PAL_I */
1081 .name = "Temic PAL_I (4062 FY5)",
1082 .params = tuner_temic_pal_i_params,
bbab6fd8 1083 .count = ARRAY_SIZE(tuner_temic_pal_i_params),
7b0ac9cd
MK
1084 },
1085 [TUNER_TEMIC_4036FY5_NTSC] = { /* TEMIC NTSC */
1086 .name = "Temic NTSC (4036 FY5)",
1087 .params = tuner_temic_4036fy5_ntsc_params,
bbab6fd8 1088 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_params),
7b0ac9cd
MK
1089 },
1090 [TUNER_ALPS_TSBH1_NTSC] = { /* TEMIC NTSC */
1091 .name = "Alps HSBH1",
1092 .params = tuner_alps_tsbh1_ntsc_params,
bbab6fd8 1093 .count = ARRAY_SIZE(tuner_alps_tsbh1_ntsc_params),
7b0ac9cd
MK
1094 },
1095
1096 /* 10-19 */
1097 [TUNER_ALPS_TSBE1_PAL] = { /* TEMIC PAL */
1098 .name = "Alps TSBE1",
1099 .params = tuner_alps_tsb_1_params,
bbab6fd8 1100 .count = ARRAY_SIZE(tuner_alps_tsb_1_params),
7b0ac9cd
MK
1101 },
1102 [TUNER_ALPS_TSBB5_PAL_I] = { /* Alps PAL_I */
1103 .name = "Alps TSBB5",
1104 .params = tuner_alps_tsbb5_params,
bbab6fd8 1105 .count = ARRAY_SIZE(tuner_alps_tsbb5_params),
7b0ac9cd
MK
1106 },
1107 [TUNER_ALPS_TSBE5_PAL] = { /* Alps PAL */
1108 .name = "Alps TSBE5",
1109 .params = tuner_alps_tsbe5_params,
bbab6fd8 1110 .count = ARRAY_SIZE(tuner_alps_tsbe5_params),
7b0ac9cd
MK
1111 },
1112 [TUNER_ALPS_TSBC5_PAL] = { /* Alps PAL */
1113 .name = "Alps TSBC5",
1114 .params = tuner_alps_tsbc5_params,
bbab6fd8 1115 .count = ARRAY_SIZE(tuner_alps_tsbc5_params),
7b0ac9cd
MK
1116 },
1117 [TUNER_TEMIC_4006FH5_PAL] = { /* TEMIC PAL */
1118 .name = "Temic PAL_BG (4006FH5)",
1119 .params = tuner_temic_4006fh5_params,
bbab6fd8 1120 .count = ARRAY_SIZE(tuner_temic_4006fh5_params),
7b0ac9cd
MK
1121 },
1122 [TUNER_ALPS_TSHC6_NTSC] = { /* Alps NTSC */
1123 .name = "Alps TSCH6",
1124 .params = tuner_alps_tshc6_params,
bbab6fd8 1125 .count = ARRAY_SIZE(tuner_alps_tshc6_params),
7b0ac9cd
MK
1126 },
1127 [TUNER_TEMIC_PAL_DK] = { /* TEMIC PAL */
1128 .name = "Temic PAL_DK (4016 FY5)",
1129 .params = tuner_temic_pal_dk_params,
bbab6fd8 1130 .count = ARRAY_SIZE(tuner_temic_pal_dk_params),
7b0ac9cd
MK
1131 },
1132 [TUNER_PHILIPS_NTSC_M] = { /* Philips NTSC */
1133 .name = "Philips NTSC_M (MK2)",
1134 .params = tuner_philips_ntsc_m_params,
bbab6fd8 1135 .count = ARRAY_SIZE(tuner_philips_ntsc_m_params),
7b0ac9cd
MK
1136 },
1137 [TUNER_TEMIC_4066FY5_PAL_I] = { /* TEMIC PAL_I */
1138 .name = "Temic PAL_I (4066 FY5)",
1139 .params = tuner_temic_4066fy5_pal_i_params,
bbab6fd8 1140 .count = ARRAY_SIZE(tuner_temic_4066fy5_pal_i_params),
7b0ac9cd
MK
1141 },
1142 [TUNER_TEMIC_4006FN5_MULTI_PAL] = { /* TEMIC PAL */
1143 .name = "Temic PAL* auto (4006 FN5)",
1144 .params = tuner_temic_4006fn5_multi_params,
bbab6fd8 1145 .count = ARRAY_SIZE(tuner_temic_4006fn5_multi_params),
7b0ac9cd
MK
1146 },
1147
1148 /* 20-29 */
1149 [TUNER_TEMIC_4009FR5_PAL] = { /* TEMIC PAL */
1150 .name = "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)",
1151 .params = tuner_temic_4009f_5_params,
bbab6fd8 1152 .count = ARRAY_SIZE(tuner_temic_4009f_5_params),
7b0ac9cd
MK
1153 },
1154 [TUNER_TEMIC_4039FR5_NTSC] = { /* TEMIC NTSC */
1155 .name = "Temic NTSC (4039 FR5)",
1156 .params = tuner_temic_4039fr5_params,
bbab6fd8 1157 .count = ARRAY_SIZE(tuner_temic_4039fr5_params),
7b0ac9cd
MK
1158 },
1159 [TUNER_TEMIC_4046FM5] = { /* TEMIC PAL */
1160 .name = "Temic PAL/SECAM multi (4046 FM5)",
1161 .params = tuner_temic_4046fm5_params,
bbab6fd8 1162 .count = ARRAY_SIZE(tuner_temic_4046fm5_params),
7b0ac9cd
MK
1163 },
1164 [TUNER_PHILIPS_PAL_DK] = { /* Philips PAL */
1165 .name = "Philips PAL_DK (FI1256 and compatibles)",
1166 .params = tuner_philips_pal_dk_params,
bbab6fd8 1167 .count = ARRAY_SIZE(tuner_philips_pal_dk_params),
7b0ac9cd
MK
1168 },
1169 [TUNER_PHILIPS_FQ1216ME] = { /* Philips PAL */
1170 .name = "Philips PAL/SECAM multi (FQ1216ME)",
1171 .params = tuner_philips_fq1216me_params,
bbab6fd8 1172 .count = ARRAY_SIZE(tuner_philips_fq1216me_params),
7b0ac9cd
MK
1173 },
1174 [TUNER_LG_PAL_I_FM] = { /* LGINNOTEK PAL_I */
1175 .name = "LG PAL_I+FM (TAPC-I001D)",
1176 .params = tuner_lg_pal_i_fm_params,
bbab6fd8 1177 .count = ARRAY_SIZE(tuner_lg_pal_i_fm_params),
7b0ac9cd
MK
1178 },
1179 [TUNER_LG_PAL_I] = { /* LGINNOTEK PAL_I */
1180 .name = "LG PAL_I (TAPC-I701D)",
1181 .params = tuner_lg_pal_i_params,
bbab6fd8 1182 .count = ARRAY_SIZE(tuner_lg_pal_i_params),
7b0ac9cd
MK
1183 },
1184 [TUNER_LG_NTSC_FM] = { /* LGINNOTEK NTSC */
1185 .name = "LG NTSC+FM (TPI8NSR01F)",
1186 .params = tuner_lg_ntsc_fm_params,
bbab6fd8 1187 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_params),
7b0ac9cd
MK
1188 },
1189 [TUNER_LG_PAL_FM] = { /* LGINNOTEK PAL */
1190 .name = "LG PAL_BG+FM (TPI8PSB01D)",
1191 .params = tuner_lg_pal_fm_params,
bbab6fd8 1192 .count = ARRAY_SIZE(tuner_lg_pal_fm_params),
7b0ac9cd
MK
1193 },
1194 [TUNER_LG_PAL] = { /* LGINNOTEK PAL */
1195 .name = "LG PAL_BG (TPI8PSB11D)",
1196 .params = tuner_lg_pal_params,
bbab6fd8 1197 .count = ARRAY_SIZE(tuner_lg_pal_params),
7b0ac9cd
MK
1198 },
1199
1200 /* 30-39 */
1201 [TUNER_TEMIC_4009FN5_MULTI_PAL_FM] = { /* TEMIC PAL */
1202 .name = "Temic PAL* auto + FM (4009 FN5)",
1203 .params = tuner_temic_4009_fn5_multi_pal_fm_params,
bbab6fd8 1204 .count = ARRAY_SIZE(tuner_temic_4009_fn5_multi_pal_fm_params),
7b0ac9cd
MK
1205 },
1206 [TUNER_SHARP_2U5JF5540_NTSC] = { /* SHARP NTSC */
1207 .name = "SHARP NTSC_JP (2U5JF5540)",
1208 .params = tuner_sharp_2u5jf5540_params,
bbab6fd8 1209 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_params),
7b0ac9cd
MK
1210 },
1211 [TUNER_Samsung_PAL_TCPM9091PD27] = { /* Samsung PAL */
1212 .name = "Samsung PAL TCPM9091PD27",
1213 .params = tuner_samsung_pal_tcpm9091pd27_params,
bbab6fd8 1214 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_params),
7b0ac9cd
MK
1215 },
1216 [TUNER_MT2032] = { /* Microtune PAL|NTSC */
1217 .name = "MT20xx universal",
1218 /* see mt20xx.c for details */ },
1219 [TUNER_TEMIC_4106FH5] = { /* TEMIC PAL */
1220 .name = "Temic PAL_BG (4106 FH5)",
1221 .params = tuner_temic_4106fh5_params,
bbab6fd8 1222 .count = ARRAY_SIZE(tuner_temic_4106fh5_params),
7b0ac9cd
MK
1223 },
1224 [TUNER_TEMIC_4012FY5] = { /* TEMIC PAL */
1225 .name = "Temic PAL_DK/SECAM_L (4012 FY5)",
1226 .params = tuner_temic_4012fy5_params,
bbab6fd8 1227 .count = ARRAY_SIZE(tuner_temic_4012fy5_params),
7b0ac9cd
MK
1228 },
1229 [TUNER_TEMIC_4136FY5] = { /* TEMIC NTSC */
1230 .name = "Temic NTSC (4136 FY5)",
1231 .params = tuner_temic_4136_fy5_params,
bbab6fd8 1232 .count = ARRAY_SIZE(tuner_temic_4136_fy5_params),
7b0ac9cd
MK
1233 },
1234 [TUNER_LG_PAL_NEW_TAPC] = { /* LGINNOTEK PAL */
1235 .name = "LG PAL (newer TAPC series)",
1236 .params = tuner_lg_pal_new_tapc_params,
bbab6fd8 1237 .count = ARRAY_SIZE(tuner_lg_pal_new_tapc_params),
7b0ac9cd
MK
1238 },
1239 [TUNER_PHILIPS_FM1216ME_MK3] = { /* Philips PAL */
1240 .name = "Philips PAL/SECAM multi (FM1216ME MK3)",
1241 .params = tuner_fm1216me_mk3_params,
bbab6fd8 1242 .count = ARRAY_SIZE(tuner_fm1216me_mk3_params),
7b0ac9cd
MK
1243 },
1244 [TUNER_LG_NTSC_NEW_TAPC] = { /* LGINNOTEK NTSC */
1245 .name = "LG NTSC (newer TAPC series)",
1246 .params = tuner_lg_ntsc_new_tapc_params,
bbab6fd8 1247 .count = ARRAY_SIZE(tuner_lg_ntsc_new_tapc_params),
7b0ac9cd
MK
1248 },
1249
1250 /* 40-49 */
1251 [TUNER_HITACHI_NTSC] = { /* HITACHI NTSC */
1252 .name = "HITACHI V7-J180AT",
1253 .params = tuner_hitachi_ntsc_params,
bbab6fd8 1254 .count = ARRAY_SIZE(tuner_hitachi_ntsc_params),
7b0ac9cd
MK
1255 },
1256 [TUNER_PHILIPS_PAL_MK] = { /* Philips PAL */
1257 .name = "Philips PAL_MK (FI1216 MK)",
1258 .params = tuner_philips_pal_mk_params,
bbab6fd8 1259 .count = ARRAY_SIZE(tuner_philips_pal_mk_params),
7b0ac9cd
MK
1260 },
1261 [TUNER_PHILIPS_ATSC] = { /* Philips ATSC */
1262 .name = "Philips 1236D ATSC/NTSC dual in",
1263 .params = tuner_philips_atsc_params,
bbab6fd8 1264 .count = ARRAY_SIZE(tuner_philips_atsc_params),
7b0ac9cd
MK
1265 },
1266 [TUNER_PHILIPS_FM1236_MK3] = { /* Philips NTSC */
1267 .name = "Philips NTSC MK3 (FM1236MK3 or FM1236/F)",
1268 .params = tuner_fm1236_mk3_params,
bbab6fd8 1269 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
7b0ac9cd
MK
1270 },
1271 [TUNER_PHILIPS_4IN1] = { /* Philips NTSC */
1272 .name = "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)",
1273 .params = tuner_philips_4in1_params,
bbab6fd8 1274 .count = ARRAY_SIZE(tuner_philips_4in1_params),
7b0ac9cd
MK
1275 },
1276 [TUNER_MICROTUNE_4049FM5] = { /* Microtune PAL */
1277 .name = "Microtune 4049 FM5",
1278 .params = tuner_microtune_4049_fm5_params,
bbab6fd8 1279 .count = ARRAY_SIZE(tuner_microtune_4049_fm5_params),
7b0ac9cd
MK
1280 },
1281 [TUNER_PANASONIC_VP27] = { /* Panasonic NTSC */
1282 .name = "Panasonic VP27s/ENGE4324D",
1283 .params = tuner_panasonic_vp27_params,
bbab6fd8 1284 .count = ARRAY_SIZE(tuner_panasonic_vp27_params),
7b0ac9cd
MK
1285 },
1286 [TUNER_LG_NTSC_TAPE] = { /* LGINNOTEK NTSC */
1287 .name = "LG NTSC (TAPE series)",
1288 .params = tuner_lg_ntsc_tape_params,
bbab6fd8 1289 .count = ARRAY_SIZE(tuner_lg_ntsc_tape_params),
7b0ac9cd
MK
1290 },
1291 [TUNER_TNF_8831BGFF] = { /* Philips PAL */
1292 .name = "Tenna TNF 8831 BGFF)",
1293 .params = tuner_tnf_8831bgff_params,
bbab6fd8 1294 .count = ARRAY_SIZE(tuner_tnf_8831bgff_params),
7b0ac9cd
MK
1295 },
1296 [TUNER_MICROTUNE_4042FI5] = { /* Microtune NTSC */
1297 .name = "Microtune 4042 FI5 ATSC/NTSC dual in",
1298 .params = tuner_microtune_4042fi5_params,
bbab6fd8 1299 .count = ARRAY_SIZE(tuner_microtune_4042fi5_params),
7b0ac9cd
MK
1300 },
1301
1302 /* 50-59 */
1303 [TUNER_TCL_2002N] = { /* TCL NTSC */
1304 .name = "TCL 2002N",
1305 .params = tuner_tcl_2002n_params,
bbab6fd8 1306 .count = ARRAY_SIZE(tuner_tcl_2002n_params),
7b0ac9cd
MK
1307 },
1308 [TUNER_PHILIPS_FM1256_IH3] = { /* Philips PAL */
1309 .name = "Philips PAL/SECAM_D (FM 1256 I-H3)",
1310 .params = tuner_philips_fm1256_ih3_params,
bbab6fd8 1311 .count = ARRAY_SIZE(tuner_philips_fm1256_ih3_params),
7b0ac9cd
MK
1312 },
1313 [TUNER_THOMSON_DTT7610] = { /* THOMSON ATSC */
1314 .name = "Thomson DTT 7610 (ATSC/NTSC)",
1315 .params = tuner_thomson_dtt7610_params,
bbab6fd8 1316 .count = ARRAY_SIZE(tuner_thomson_dtt7610_params),
7b0ac9cd
MK
1317 },
1318 [TUNER_PHILIPS_FQ1286] = { /* Philips NTSC */
1319 .name = "Philips FQ1286",
1320 .params = tuner_philips_fq1286_params,
bbab6fd8 1321 .count = ARRAY_SIZE(tuner_philips_fq1286_params),
7b0ac9cd
MK
1322 },
1323 [TUNER_PHILIPS_TDA8290] = { /* Philips PAL|NTSC */
1324 .name = "tda8290+75",
1325 /* see tda8290.c for details */ },
1326 [TUNER_TCL_2002MB] = { /* TCL PAL */
1327 .name = "TCL 2002MB",
1328 .params = tuner_tcl_2002mb_params,
bbab6fd8 1329 .count = ARRAY_SIZE(tuner_tcl_2002mb_params),
7b0ac9cd
MK
1330 },
1331 [TUNER_PHILIPS_FQ1216AME_MK4] = { /* Philips PAL */
1332 .name = "Philips PAL/SECAM multi (FQ1216AME MK4)",
1333 .params = tuner_philips_fq1216ame_mk4_params,
bbab6fd8 1334 .count = ARRAY_SIZE(tuner_philips_fq1216ame_mk4_params),
7b0ac9cd
MK
1335 },
1336 [TUNER_PHILIPS_FQ1236A_MK4] = { /* Philips NTSC */
1337 .name = "Philips FQ1236A MK4",
1338 .params = tuner_philips_fq1236a_mk4_params,
bbab6fd8 1339 .count = ARRAY_SIZE(tuner_philips_fq1236a_mk4_params),
7b0ac9cd
MK
1340 },
1341 [TUNER_YMEC_TVF_8531MF] = { /* Philips NTSC */
1342 .name = "Ymec TVision TVF-8531MF/8831MF/8731MF",
1343 .params = tuner_ymec_tvf_8531mf_params,
bbab6fd8 1344 .count = ARRAY_SIZE(tuner_ymec_tvf_8531mf_params),
7b0ac9cd
MK
1345 },
1346 [TUNER_YMEC_TVF_5533MF] = { /* Philips NTSC */
1347 .name = "Ymec TVision TVF-5533MF",
1348 .params = tuner_ymec_tvf_5533mf_params,
bbab6fd8 1349 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_params),
7b0ac9cd
MK
1350 },
1351
1352 /* 60-69 */
1353 [TUNER_THOMSON_DTT761X] = { /* THOMSON ATSC */
1354 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
1355 .name = "Thomson DTT 761X (ATSC/NTSC)",
1356 .params = tuner_thomson_dtt761x_params,
bbab6fd8 1357 .count = ARRAY_SIZE(tuner_thomson_dtt761x_params),
7b0ac9cd
MK
1358 },
1359 [TUNER_TENA_9533_DI] = { /* Philips PAL */
1360 .name = "Tena TNF9533-D/IF/TNF9533-B/DF",
1361 .params = tuner_tena_9533_di_params,
bbab6fd8 1362 .count = ARRAY_SIZE(tuner_tena_9533_di_params),
7b0ac9cd
MK
1363 },
1364 [TUNER_TEA5767] = { /* Philips RADIO */
1365 .name = "Philips TEA5767HN FM Radio",
1366 /* see tea5767.c for details */
1367 },
1368 [TUNER_PHILIPS_FMD1216ME_MK3] = { /* Philips PAL */
1369 .name = "Philips FMD1216ME MK3 Hybrid Tuner",
cc925bbe 1370 .params = tuner_philips_fmd1216me_mk3_params,
bbab6fd8 1371 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_params),
7b0ac9cd
MK
1372 },
1373 [TUNER_LG_TDVS_H062F] = { /* LGINNOTEK ATSC */
d9e12f25 1374 .name = "LG TDVS-H06xF", /* H061F, H062F & H064F */
7b0ac9cd 1375 .params = tuner_tua6034_params,
bbab6fd8 1376 .count = ARRAY_SIZE(tuner_tua6034_params),
7b0ac9cd
MK
1377 },
1378 [TUNER_YMEC_TVF66T5_B_DFF] = { /* Philips PAL */
1379 .name = "Ymec TVF66T5-B/DFF",
1380 .params = tuner_ymec_tvf66t5_b_dff_params,
bbab6fd8 1381 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_params),
7b0ac9cd 1382 },
f3629be8
MK
1383 [TUNER_LG_TALN] = { /* LGINNOTEK NTSC / PAL / SECAM */
1384 .name = "LG TALN series",
1385 .params = tuner_lg_taln_params,
1386 .count = ARRAY_SIZE(tuner_lg_taln_params),
7b0ac9cd
MK
1387 },
1388 [TUNER_PHILIPS_TD1316] = { /* Philips PAL */
1389 .name = "Philips TD1316 Hybrid Tuner",
1390 .params = tuner_philips_td1316_params,
bbab6fd8 1391 .count = ARRAY_SIZE(tuner_philips_td1316_params),
7b0ac9cd
MK
1392 },
1393 [TUNER_PHILIPS_TUV1236D] = { /* Philips ATSC */
1394 .name = "Philips TUV1236D ATSC/NTSC dual in",
cc925bbe 1395 .params = tuner_tuv1236d_params,
bbab6fd8 1396 .count = ARRAY_SIZE(tuner_tuv1236d_params),
7b0ac9cd 1397 },
efcf55cb
MCC
1398 [TUNER_TNF_5335MF] = { /* Tenna PAL/NTSC */
1399 .name = "Tena TNF 5335 and similar models",
7b0ac9cd 1400 .params = tuner_tnf_5335mf_params,
bbab6fd8 1401 .count = ARRAY_SIZE(tuner_tnf_5335mf_params),
7b0ac9cd 1402 },
b3d37042
HV
1403
1404 /* 70-79 */
1405 [TUNER_SAMSUNG_TCPN_2121P30A] = { /* Samsung NTSC */
1406 .name = "Samsung TCPN 2121P30A",
1407 .params = tuner_samsung_tcpn_2121p30a_params,
bbab6fd8 1408 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params),
b3d37042 1409 },
0004fd59
MR
1410 [TUNER_XCEIVE_XC3028] = { /* Xceive 3028 */
1411 .name = "Xceive xc3028",
cfcd718d 1412 /* see xc3028.c for details */
0004fd59 1413 },
91ae3299
MK
1414 [TUNER_THOMSON_FE6600] = { /* Thomson PAL / DVB-T */
1415 .name = "Thomson FE6600",
1416 .params = tuner_thomson_fe6600_params,
b1b168e6 1417 .count = ARRAY_SIZE(tuner_thomson_fe6600_params),
780dfef3 1418 },
c344933a
HV
1419 [TUNER_SAMSUNG_TCPG_6121P30A] = { /* Samsung PAL */
1420 .name = "Samsung TCPG 6121P30A",
1421 .params = tuner_samsung_tcpg_6121p30a_params,
1422 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_params),
1423 },
7b0ac9cd
MK
1424};
1425
1426unsigned const int tuner_count = ARRAY_SIZE(tuners);