]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/media/video/tuner-types.c
V4L/DVB (7350): tuner-simple: enable digital tuning support for Thomson DTT 761X
[mirror_ubuntu-bionic-kernel.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),
ba8fc399
HV
383 .has_tda9887 = 1,
384 .port1_active = 1,
385 .port2_active = 1,
386 .port2_invert_for_secam_lc = 1,
7b0ac9cd
MK
387 },
388};
389
390/* ------------ TUNER_LG_PAL_I_FM - LGINNOTEK PAL_I ------------ */
391
392static struct tuner_params tuner_lg_pal_i_fm_params[] = {
393 {
394 .type = TUNER_PARAM_TYPE_PAL,
395 .ranges = tuner_lg_pal_ranges,
396 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
397 },
398};
399
400/* ------------ TUNER_LG_PAL_I - LGINNOTEK PAL_I ------------ */
401
402static struct tuner_params tuner_lg_pal_i_params[] = {
403 {
404 .type = TUNER_PARAM_TYPE_PAL,
405 .ranges = tuner_lg_pal_ranges,
406 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
407 },
408};
409
410/* ------------ TUNER_LG_NTSC_FM - LGINNOTEK NTSC ------------ */
411
412static struct tuner_range tuner_lg_ntsc_fm_ranges[] = {
3fc46d35
MK
413 { 16 * 210.00 /*MHz*/, 0x8e, 0xa0, },
414 { 16 * 497.00 /*MHz*/, 0x8e, 0x90, },
415 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
416};
417
418static struct tuner_params tuner_lg_ntsc_fm_params[] = {
419 {
420 .type = TUNER_PARAM_TYPE_NTSC,
421 .ranges = tuner_lg_ntsc_fm_ranges,
422 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_ranges),
7b0ac9cd
MK
423 },
424};
425
426/* ------------ TUNER_LG_PAL_FM - LGINNOTEK PAL ------------ */
427
428static struct tuner_params tuner_lg_pal_fm_params[] = {
429 {
430 .type = TUNER_PARAM_TYPE_PAL,
431 .ranges = tuner_lg_pal_ranges,
432 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
433 },
434};
435
436/* ------------ TUNER_LG_PAL - LGINNOTEK PAL ------------ */
437
438static struct tuner_params tuner_lg_pal_params[] = {
439 {
440 .type = TUNER_PARAM_TYPE_PAL,
441 .ranges = tuner_lg_pal_ranges,
442 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
7b0ac9cd
MK
443 },
444};
445
446/* 30-39 */
447/* ------------ TUNER_TEMIC_4009FN5_MULTI_PAL_FM - TEMIC PAL ------------ */
448
449static struct tuner_params tuner_temic_4009_fn5_multi_pal_fm_params[] = {
450 {
451 .type = TUNER_PARAM_TYPE_PAL,
452 .ranges = tuner_temic_4009f_5_pal_ranges,
453 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
7b0ac9cd
MK
454 },
455};
456
457/* ------------ TUNER_SHARP_2U5JF5540_NTSC - SHARP NTSC ------------ */
458
459static struct tuner_range tuner_sharp_2u5jf5540_ntsc_ranges[] = {
3fc46d35
MK
460 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
461 { 16 * 317.25 /*MHz*/, 0x8e, 0x02, },
462 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
463};
464
465static struct tuner_params tuner_sharp_2u5jf5540_params[] = {
466 {
467 .type = TUNER_PARAM_TYPE_NTSC,
468 .ranges = tuner_sharp_2u5jf5540_ntsc_ranges,
469 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_ntsc_ranges),
7b0ac9cd
MK
470 },
471};
472
473/* ------------ TUNER_Samsung_PAL_TCPM9091PD27 - Samsung PAL ------------ */
474
475static struct tuner_range tuner_samsung_pal_tcpm9091pd27_ranges[] = {
3fc46d35
MK
476 { 16 * 169 /*MHz*/, 0x8e, 0xa0, },
477 { 16 * 464 /*MHz*/, 0x8e, 0x90, },
478 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
479};
480
481static struct tuner_params tuner_samsung_pal_tcpm9091pd27_params[] = {
482 {
483 .type = TUNER_PARAM_TYPE_PAL,
484 .ranges = tuner_samsung_pal_tcpm9091pd27_ranges,
485 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_ranges),
7b0ac9cd
MK
486 },
487};
488
489/* ------------ TUNER_TEMIC_4106FH5 - TEMIC PAL ------------ */
490
491static struct tuner_params tuner_temic_4106fh5_params[] = {
492 {
493 .type = TUNER_PARAM_TYPE_PAL,
494 .ranges = tuner_temic_4009f_5_pal_ranges,
495 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
7b0ac9cd
MK
496 },
497};
498
499/* ------------ TUNER_TEMIC_4012FY5 - TEMIC PAL ------------ */
500
7b0ac9cd
MK
501static struct tuner_params tuner_temic_4012fy5_params[] = {
502 {
503 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
504 .ranges = tuner_temic_pal_ranges,
505 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
7b0ac9cd
MK
506 },
507};
508
509/* ------------ TUNER_TEMIC_4136FY5 - TEMIC NTSC ------------ */
510
7b0ac9cd
MK
511static struct tuner_params tuner_temic_4136_fy5_params[] = {
512 {
513 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
514 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
515 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
7b0ac9cd
MK
516 },
517};
518
519/* ------------ TUNER_LG_PAL_NEW_TAPC - LGINNOTEK PAL ------------ */
520
521static struct tuner_range tuner_lg_new_tapc_ranges[] = {
3fc46d35
MK
522 { 16 * 170.00 /*MHz*/, 0x8e, 0x01, },
523 { 16 * 450.00 /*MHz*/, 0x8e, 0x02, },
524 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
525};
526
527static struct tuner_params tuner_lg_pal_new_tapc_params[] = {
528 {
529 .type = TUNER_PARAM_TYPE_PAL,
530 .ranges = tuner_lg_new_tapc_ranges,
531 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
7b0ac9cd
MK
532 },
533};
534
535/* ------------ TUNER_PHILIPS_FM1216ME_MK3 - Philips PAL ------------ */
536
537static struct tuner_range tuner_fm1216me_mk3_pal_ranges[] = {
3fc46d35
MK
538 { 16 * 158.00 /*MHz*/, 0x8e, 0x01, },
539 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
540 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
541};
542
543static struct tuner_params tuner_fm1216me_mk3_params[] = {
544 {
545 .type = TUNER_PARAM_TYPE_PAL,
546 .ranges = tuner_fm1216me_mk3_pal_ranges,
547 .count = ARRAY_SIZE(tuner_fm1216me_mk3_pal_ranges),
27487d44 548 .cb_first_if_lower_freq = 1,
ba8fc399
HV
549 .has_tda9887 = 1,
550 .port1_active = 1,
551 .port2_active = 1,
552 .port2_invert_for_secam_lc = 1,
553 .port1_fm_high_sensitivity = 1,
554 .default_top_mid = -2,
555 .default_top_secam_mid = -2,
556 .default_top_secam_high = -2,
7b0ac9cd
MK
557 },
558};
559
560/* ------------ TUNER_LG_NTSC_NEW_TAPC - LGINNOTEK NTSC ------------ */
561
562static struct tuner_params tuner_lg_ntsc_new_tapc_params[] = {
563 {
564 .type = TUNER_PARAM_TYPE_NTSC,
565 .ranges = tuner_lg_new_tapc_ranges,
566 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
7b0ac9cd
MK
567 },
568};
569
570/* 40-49 */
571/* ------------ TUNER_HITACHI_NTSC - HITACHI NTSC ------------ */
572
573static struct tuner_params tuner_hitachi_ntsc_params[] = {
574 {
575 .type = TUNER_PARAM_TYPE_NTSC,
576 .ranges = tuner_lg_new_tapc_ranges,
577 .count = ARRAY_SIZE(tuner_lg_new_tapc_ranges),
7b0ac9cd
MK
578 },
579};
580
581/* ------------ TUNER_PHILIPS_PAL_MK - Philips PAL ------------ */
582
583static struct tuner_range tuner_philips_pal_mk_pal_ranges[] = {
3fc46d35
MK
584 { 16 * 140.25 /*MHz*/, 0x8e, 0x01, },
585 { 16 * 463.25 /*MHz*/, 0x8e, 0xc2, },
586 { 16 * 999.99 , 0x8e, 0xcf, },
7b0ac9cd
MK
587};
588
589static struct tuner_params tuner_philips_pal_mk_params[] = {
590 {
591 .type = TUNER_PARAM_TYPE_PAL,
592 .ranges = tuner_philips_pal_mk_pal_ranges,
593 .count = ARRAY_SIZE(tuner_philips_pal_mk_pal_ranges),
7b0ac9cd
MK
594 },
595};
596
b8273636 597/* ---- TUNER_PHILIPS_ATSC - Philips FCV1236D (ATSC/NTSC) ---- */
7b0ac9cd 598
b8273636 599static struct tuner_range tuner_philips_fcv1236d_ranges[] = {
3fc46d35 600 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
c350f617 601 { 16 * 451.25 /*MHz*/, 0x8e, 0x90, },
3fc46d35 602 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
603};
604
b8273636 605static struct tuner_params tuner_philips_fcv1236d_params[] = {
7b0ac9cd
MK
606 {
607 .type = TUNER_PARAM_TYPE_NTSC,
b8273636
MK
608 .ranges = tuner_philips_fcv1236d_ranges,
609 .count = ARRAY_SIZE(tuner_philips_fcv1236d_ranges),
7b0ac9cd
MK
610 },
611};
612
613/* ------------ TUNER_PHILIPS_FM1236_MK3 - Philips NTSC ------------ */
614
615static struct tuner_range tuner_fm1236_mk3_ntsc_ranges[] = {
3fc46d35
MK
616 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
617 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
618 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
619};
620
621static struct tuner_params tuner_fm1236_mk3_params[] = {
622 {
623 .type = TUNER_PARAM_TYPE_NTSC,
624 .ranges = tuner_fm1236_mk3_ntsc_ranges,
625 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
27487d44 626 .cb_first_if_lower_freq = 1,
ba8fc399
HV
627 .has_tda9887 = 1,
628 .port1_active = 1,
629 .port2_active = 1,
630 .port1_fm_high_sensitivity = 1,
7b0ac9cd
MK
631 },
632};
633
634/* ------------ TUNER_PHILIPS_4IN1 - Philips NTSC ------------ */
635
7b0ac9cd
MK
636static struct tuner_params tuner_philips_4in1_params[] = {
637 {
638 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
639 .ranges = tuner_fm1236_mk3_ntsc_ranges,
640 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
7b0ac9cd
MK
641 },
642};
643
644/* ------------ TUNER_MICROTUNE_4049FM5 - Microtune PAL ------------ */
645
646static struct tuner_params tuner_microtune_4049_fm5_params[] = {
647 {
648 .type = TUNER_PARAM_TYPE_PAL,
649 .ranges = tuner_temic_4009f_5_pal_ranges,
650 .count = ARRAY_SIZE(tuner_temic_4009f_5_pal_ranges),
ba8fc399
HV
651 .has_tda9887 = 1,
652 .port1_invert_for_secam_lc = 1,
d7304dee 653 .default_pll_gating_18 = 1,
d8159a36 654 .fm_gain_normal=1,
5e082f15 655 .radio_if = 1, /* 33.3 MHz */
7b0ac9cd
MK
656 },
657};
658
659/* ------------ TUNER_PANASONIC_VP27 - Panasonic NTSC ------------ */
660
661static struct tuner_range tuner_panasonic_vp27_ntsc_ranges[] = {
3fc46d35
MK
662 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
663 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
664 { 16 * 999.99 , 0xce, 0x08, },
7b0ac9cd
MK
665};
666
667static struct tuner_params tuner_panasonic_vp27_params[] = {
668 {
669 .type = TUNER_PARAM_TYPE_NTSC,
670 .ranges = tuner_panasonic_vp27_ntsc_ranges,
671 .count = ARRAY_SIZE(tuner_panasonic_vp27_ntsc_ranges),
ba8fc399
HV
672 .has_tda9887 = 1,
673 .intercarrier_mode = 1,
b4c85248
HV
674 .default_top_low = -3,
675 .default_top_mid = -3,
676 .default_top_high = -3,
7b0ac9cd
MK
677 },
678};
679
7b0ac9cd
MK
680/* ------------ TUNER_TNF_8831BGFF - Philips PAL ------------ */
681
682static struct tuner_range tuner_tnf_8831bgff_pal_ranges[] = {
3fc46d35
MK
683 { 16 * 161.25 /*MHz*/, 0x8e, 0xa0, },
684 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
685 { 16 * 999.99 , 0x8e, 0x30, },
7b0ac9cd
MK
686};
687
688static struct tuner_params tuner_tnf_8831bgff_params[] = {
689 {
690 .type = TUNER_PARAM_TYPE_PAL,
691 .ranges = tuner_tnf_8831bgff_pal_ranges,
692 .count = ARRAY_SIZE(tuner_tnf_8831bgff_pal_ranges),
7b0ac9cd
MK
693 },
694};
695
696/* ------------ TUNER_MICROTUNE_4042FI5 - Microtune NTSC ------------ */
697
698static struct tuner_range tuner_microtune_4042fi5_ntsc_ranges[] = {
3fc46d35
MK
699 { 16 * 162.00 /*MHz*/, 0x8e, 0xa2, },
700 { 16 * 457.00 /*MHz*/, 0x8e, 0x94, },
701 { 16 * 999.99 , 0x8e, 0x31, },
7b0ac9cd
MK
702};
703
704static struct tuner_params tuner_microtune_4042fi5_params[] = {
705 {
706 .type = TUNER_PARAM_TYPE_NTSC,
707 .ranges = tuner_microtune_4042fi5_ntsc_ranges,
708 .count = ARRAY_SIZE(tuner_microtune_4042fi5_ntsc_ranges),
7b0ac9cd
MK
709 },
710};
711
712/* 50-59 */
713/* ------------ TUNER_TCL_2002N - TCL NTSC ------------ */
714
715static struct tuner_range tuner_tcl_2002n_ntsc_ranges[] = {
3fc46d35
MK
716 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
717 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
718 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
719};
720
721static struct tuner_params tuner_tcl_2002n_params[] = {
722 {
723 .type = TUNER_PARAM_TYPE_NTSC,
724 .ranges = tuner_tcl_2002n_ntsc_ranges,
725 .count = ARRAY_SIZE(tuner_tcl_2002n_ntsc_ranges),
27487d44 726 .cb_first_if_lower_freq = 1,
7b0ac9cd
MK
727 },
728};
729
730/* ------------ TUNER_PHILIPS_FM1256_IH3 - Philips PAL ------------ */
731
7b0ac9cd
MK
732static struct tuner_params tuner_philips_fm1256_ih3_params[] = {
733 {
734 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
735 .ranges = tuner_fm1236_mk3_ntsc_ranges,
736 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
5e082f15 737 .radio_if = 1, /* 33.3 MHz */
7b0ac9cd
MK
738 },
739};
740
741/* ------------ TUNER_THOMSON_DTT7610 - THOMSON ATSC ------------ */
742
743static struct tuner_range tuner_thomson_dtt7610_ntsc_ranges[] = {
3fc46d35
MK
744 { 16 * 157.25 /*MHz*/, 0x8e, 0x39, },
745 { 16 * 454.00 /*MHz*/, 0x8e, 0x3a, },
746 { 16 * 999.99 , 0x8e, 0x3c, },
7b0ac9cd
MK
747};
748
749static struct tuner_params tuner_thomson_dtt7610_params[] = {
750 {
751 .type = TUNER_PARAM_TYPE_NTSC,
752 .ranges = tuner_thomson_dtt7610_ntsc_ranges,
753 .count = ARRAY_SIZE(tuner_thomson_dtt7610_ntsc_ranges),
7b0ac9cd
MK
754 },
755};
756
757/* ------------ TUNER_PHILIPS_FQ1286 - Philips NTSC ------------ */
758
759static struct tuner_range tuner_philips_fq1286_ntsc_ranges[] = {
3fc46d35
MK
760 { 16 * 160.00 /*MHz*/, 0x8e, 0x41, },
761 { 16 * 454.00 /*MHz*/, 0x8e, 0x42, },
762 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
763};
764
765static struct tuner_params tuner_philips_fq1286_params[] = {
766 {
767 .type = TUNER_PARAM_TYPE_NTSC,
768 .ranges = tuner_philips_fq1286_ntsc_ranges,
769 .count = ARRAY_SIZE(tuner_philips_fq1286_ntsc_ranges),
7b0ac9cd
MK
770 },
771};
772
773/* ------------ TUNER_TCL_2002MB - TCL PAL ------------ */
774
775static struct tuner_range tuner_tcl_2002mb_pal_ranges[] = {
3fc46d35
MK
776 { 16 * 170.00 /*MHz*/, 0xce, 0x01, },
777 { 16 * 450.00 /*MHz*/, 0xce, 0x02, },
778 { 16 * 999.99 , 0xce, 0x08, },
7b0ac9cd
MK
779};
780
781static struct tuner_params tuner_tcl_2002mb_params[] = {
782 {
783 .type = TUNER_PARAM_TYPE_PAL,
784 .ranges = tuner_tcl_2002mb_pal_ranges,
785 .count = ARRAY_SIZE(tuner_tcl_2002mb_pal_ranges),
7b0ac9cd
MK
786 },
787};
788
789/* ------------ TUNER_PHILIPS_FQ1216AME_MK4 - Philips PAL ------------ */
790
3fc46d35
MK
791static struct tuner_range tuner_philips_fq12_6a___mk4_pal_ranges[] = {
792 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
793 { 16 * 442.00 /*MHz*/, 0xce, 0x02, },
794 { 16 * 999.99 , 0xce, 0x04, },
7b0ac9cd
MK
795};
796
797static struct tuner_params tuner_philips_fq1216ame_mk4_params[] = {
798 {
799 .type = TUNER_PARAM_TYPE_PAL,
3fc46d35
MK
800 .ranges = tuner_philips_fq12_6a___mk4_pal_ranges,
801 .count = ARRAY_SIZE(tuner_philips_fq12_6a___mk4_pal_ranges),
ba8fc399
HV
802 .has_tda9887 = 1,
803 .port1_active = 1,
804 .port2_invert_for_secam_lc = 1,
805 .default_top_mid = -2,
806 .default_top_secam_low = -2,
807 .default_top_secam_mid = -2,
808 .default_top_secam_high = -2,
7b0ac9cd
MK
809 },
810};
811
812/* ------------ TUNER_PHILIPS_FQ1236A_MK4 - Philips NTSC ------------ */
813
814static struct tuner_params tuner_philips_fq1236a_mk4_params[] = {
815 {
816 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
817 .ranges = tuner_fm1236_mk3_ntsc_ranges,
818 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
7b0ac9cd
MK
819 },
820};
821
822/* ------------ TUNER_YMEC_TVF_8531MF - Philips NTSC ------------ */
823
7b0ac9cd
MK
824static struct tuner_params tuner_ymec_tvf_8531mf_params[] = {
825 {
826 .type = TUNER_PARAM_TYPE_NTSC,
cc925bbe
MK
827 .ranges = tuner_philips_ntsc_m_ranges,
828 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
7b0ac9cd
MK
829 },
830};
831
832/* ------------ TUNER_YMEC_TVF_5533MF - Philips NTSC ------------ */
833
834static struct tuner_range tuner_ymec_tvf_5533mf_ntsc_ranges[] = {
3fc46d35
MK
835 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
836 { 16 * 454.00 /*MHz*/, 0x8e, 0x02, },
837 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
838};
839
840static struct tuner_params tuner_ymec_tvf_5533mf_params[] = {
841 {
842 .type = TUNER_PARAM_TYPE_NTSC,
843 .ranges = tuner_ymec_tvf_5533mf_ntsc_ranges,
844 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_ntsc_ranges),
7b0ac9cd
MK
845 },
846};
847
848/* 60-69 */
849/* ------------ TUNER_THOMSON_DTT761X - THOMSON ATSC ------------ */
850/* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
851
852static struct tuner_range tuner_thomson_dtt761x_ntsc_ranges[] = {
3fc46d35
MK
853 { 16 * 145.25 /*MHz*/, 0x8e, 0x39, },
854 { 16 * 415.25 /*MHz*/, 0x8e, 0x3a, },
855 { 16 * 999.99 , 0x8e, 0x3c, },
7b0ac9cd
MK
856};
857
22ef8fc9
MK
858static struct tuner_range tuner_thomson_dtt761x_atsc_ranges[] = {
859 { 16 * 147.00 /*MHz*/, 0x8e, 0x39, },
860 { 16 * 417.00 /*MHz*/, 0x8e, 0x3a, },
861 { 16 * 999.99 , 0x8e, 0x3c, },
862};
7b0ac9cd
MK
863
864static struct tuner_params tuner_thomson_dtt761x_params[] = {
865 {
866 .type = TUNER_PARAM_TYPE_NTSC,
867 .ranges = tuner_thomson_dtt761x_ntsc_ranges,
868 .count = ARRAY_SIZE(tuner_thomson_dtt761x_ntsc_ranges),
5e082f15
TP
869 .has_tda9887 = 1,
870 .fm_gain_normal = 1,
871 .radio_if = 2, /* 41.3 MHz */
7b0ac9cd 872 },
22ef8fc9
MK
873 {
874 .type = TUNER_PARAM_TYPE_DIGITAL,
875 .ranges = tuner_thomson_dtt761x_atsc_ranges,
876 .count = ARRAY_SIZE(tuner_thomson_dtt761x_atsc_ranges),
877 .iffreq = 16 * 44.00, /*MHz*/
878 },
7b0ac9cd
MK
879};
880
881/* ------------ TUNER_TENA_9533_DI - Philips PAL ------------ */
882
cc925bbe 883static struct tuner_range tuner_tena_9533_di_pal_ranges[] = {
3fc46d35
MK
884 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
885 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
886 { 16 * 999.99 , 0x8e, 0x04, },
7b0ac9cd
MK
887};
888
889static struct tuner_params tuner_tena_9533_di_params[] = {
890 {
891 .type = TUNER_PARAM_TYPE_PAL,
cc925bbe
MK
892 .ranges = tuner_tena_9533_di_pal_ranges,
893 .count = ARRAY_SIZE(tuner_tena_9533_di_pal_ranges),
7b0ac9cd
MK
894 },
895};
896
897/* ------------ TUNER_PHILIPS_FMD1216ME_MK3 - Philips PAL ------------ */
898
899static struct tuner_range tuner_philips_fmd1216me_mk3_pal_ranges[] = {
3fc46d35
MK
900 { 16 * 160.00 /*MHz*/, 0x86, 0x51, },
901 { 16 * 442.00 /*MHz*/, 0x86, 0x52, },
902 { 16 * 999.99 , 0x86, 0x54, },
7b0ac9cd
MK
903};
904
905
cc925bbe 906static struct tuner_params tuner_philips_fmd1216me_mk3_params[] = {
7b0ac9cd
MK
907 {
908 .type = TUNER_PARAM_TYPE_PAL,
909 .ranges = tuner_philips_fmd1216me_mk3_pal_ranges,
910 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges),
ba8fc399
HV
911 .has_tda9887 = 1,
912 .port1_active = 1,
913 .port2_active = 1,
914 .port2_fm_high_sensitivity = 1,
915 .port2_invert_for_secam_lc = 1,
916 .port1_set_for_fm_mono = 1,
7b0ac9cd
MK
917 },
918};
919
920
9c26c8b1 921/* ------ TUNER_LG_TDVS_H06XF - LG INNOTEK / INFINEON ATSC ----- */
7b0ac9cd
MK
922
923static struct tuner_range tuner_tua6034_ntsc_ranges[] = {
dd31d5ac
RS
924 { 16 * 165.00 /*MHz*/, 0x8e, 0x01 },
925 { 16 * 450.00 /*MHz*/, 0x8e, 0x02 },
3fc46d35 926 { 16 * 999.99 , 0x8e, 0x04 },
7b0ac9cd
MK
927};
928
bed6d189
MK
929static struct tuner_range tuner_tua6034_atsc_ranges[] = {
930 { 16 * 165.00 /*MHz*/, 0xce, 0x01 },
931 { 16 * 450.00 /*MHz*/, 0xce, 0x02 },
932 { 16 * 999.99 , 0xce, 0x04 },
933};
7b0ac9cd 934
9c26c8b1 935static struct tuner_params tuner_lg_tdvs_h06xf_params[] = {
7b0ac9cd
MK
936 {
937 .type = TUNER_PARAM_TYPE_NTSC,
938 .ranges = tuner_tua6034_ntsc_ranges,
939 .count = ARRAY_SIZE(tuner_tua6034_ntsc_ranges),
7b0ac9cd 940 },
bed6d189
MK
941 {
942 .type = TUNER_PARAM_TYPE_DIGITAL,
943 .ranges = tuner_tua6034_atsc_ranges,
944 .count = ARRAY_SIZE(tuner_tua6034_atsc_ranges),
945 .iffreq = 16 * 44.00,
946 },
7b0ac9cd
MK
947};
948
949/* ------------ TUNER_YMEC_TVF66T5_B_DFF - Philips PAL ------------ */
950
c2d19233
HP
951static struct tuner_range tuner_ymec_tvf66t5_b_dff_pal_ranges[] = {
952 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
953 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
954 { 16 * 999.99 , 0x8e, 0x08, },
955};
956
7b0ac9cd
MK
957static struct tuner_params tuner_ymec_tvf66t5_b_dff_params[] = {
958 {
959 .type = TUNER_PARAM_TYPE_PAL,
c2d19233
HP
960 .ranges = tuner_ymec_tvf66t5_b_dff_pal_ranges,
961 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_pal_ranges),
7b0ac9cd
MK
962 },
963};
964
965/* ------------ TUNER_LG_NTSC_TALN_MINI - LGINNOTEK NTSC ------------ */
966
f3629be8 967static struct tuner_range tuner_lg_taln_ntsc_ranges[] = {
3fc46d35
MK
968 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
969 { 16 * 373.25 /*MHz*/, 0x8e, 0x02, },
970 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
971};
972
f3629be8
MK
973static struct tuner_range tuner_lg_taln_pal_secam_ranges[] = {
974 { 16 * 150.00 /*MHz*/, 0x8e, 0x01, },
975 { 16 * 425.00 /*MHz*/, 0x8e, 0x02, },
976 { 16 * 999.99 , 0x8e, 0x08, },
977};
978
979static struct tuner_params tuner_lg_taln_params[] = {
7b0ac9cd
MK
980 {
981 .type = TUNER_PARAM_TYPE_NTSC,
f3629be8
MK
982 .ranges = tuner_lg_taln_ntsc_ranges,
983 .count = ARRAY_SIZE(tuner_lg_taln_ntsc_ranges),
984 },{
985 .type = TUNER_PARAM_TYPE_PAL,
986 .ranges = tuner_lg_taln_pal_secam_ranges,
987 .count = ARRAY_SIZE(tuner_lg_taln_pal_secam_ranges),
7b0ac9cd
MK
988 },
989};
990
991/* ------------ TUNER_PHILIPS_TD1316 - Philips PAL ------------ */
992
993static struct tuner_range tuner_philips_td1316_pal_ranges[] = {
3fc46d35
MK
994 { 16 * 160.00 /*MHz*/, 0xc8, 0xa1, },
995 { 16 * 442.00 /*MHz*/, 0xc8, 0xa2, },
996 { 16 * 999.99 , 0xc8, 0xa4, },
7b0ac9cd
MK
997};
998
999static struct tuner_params tuner_philips_td1316_params[] = {
1000 {
1001 .type = TUNER_PARAM_TYPE_PAL,
1002 .ranges = tuner_philips_td1316_pal_ranges,
1003 .count = ARRAY_SIZE(tuner_philips_td1316_pal_ranges),
7b0ac9cd
MK
1004 },
1005};
1006
1007/* ------------ TUNER_PHILIPS_TUV1236D - Philips ATSC ------------ */
1008
1009static struct tuner_range tuner_tuv1236d_ntsc_ranges[] = {
3fc46d35
MK
1010 { 16 * 157.25 /*MHz*/, 0xce, 0x01, },
1011 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
1012 { 16 * 999.99 , 0xce, 0x04, },
7b0ac9cd
MK
1013};
1014
1015
cc925bbe 1016static struct tuner_params tuner_tuv1236d_params[] = {
7b0ac9cd
MK
1017 {
1018 .type = TUNER_PARAM_TYPE_NTSC,
1019 .ranges = tuner_tuv1236d_ntsc_ranges,
1020 .count = ARRAY_SIZE(tuner_tuv1236d_ntsc_ranges),
7b0ac9cd
MK
1021 },
1022};
1023
efcf55cb
MCC
1024/* ------------ TUNER_TNF_xxx5 - Texas Instruments--------- */
1025/* This is known to work with Tenna TVF58t5-MFF and TVF5835 MFF
1026 * but it is expected to work also with other Tenna/Ymec
1027 * models based on TI SN 761677 chip on both PAL and NTSC
1028 */
1029
1030static struct tuner_range tuner_tnf_5335_d_if_pal_ranges[] = {
1031 { 16 * 168.25 /*MHz*/, 0x8e, 0x01, },
7947a220
MCC
1032 { 16 * 471.25 /*MHz*/, 0x8e, 0x02, },
1033 { 16 * 999.99 , 0x8e, 0x08, },
efcf55cb 1034};
7b0ac9cd
MK
1035
1036static struct tuner_range tuner_tnf_5335mf_ntsc_ranges[] = {
efcf55cb
MCC
1037 { 16 * 169.25 /*MHz*/, 0x8e, 0x01, },
1038 { 16 * 469.25 /*MHz*/, 0x8e, 0x02, },
1039 { 16 * 999.99 , 0x8e, 0x08, },
7b0ac9cd
MK
1040};
1041
1042static struct tuner_params tuner_tnf_5335mf_params[] = {
1043 {
1044 .type = TUNER_PARAM_TYPE_NTSC,
1045 .ranges = tuner_tnf_5335mf_ntsc_ranges,
1046 .count = ARRAY_SIZE(tuner_tnf_5335mf_ntsc_ranges),
7b0ac9cd 1047 },
efcf55cb
MCC
1048 {
1049 .type = TUNER_PARAM_TYPE_PAL,
1050 .ranges = tuner_tnf_5335_d_if_pal_ranges,
1051 .count = ARRAY_SIZE(tuner_tnf_5335_d_if_pal_ranges),
1052 },
7b0ac9cd
MK
1053};
1054
b3d37042
HV
1055/* 70-79 */
1056/* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */
1057
43c560fa 1058/* '+ 4' turns on the Low Noise Amplifier */
b3d37042 1059static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = {
43c560fa
HV
1060 { 16 * 130.00 /*MHz*/, 0xce, 0x01 + 4, },
1061 { 16 * 364.50 /*MHz*/, 0xce, 0x02 + 4, },
1062 { 16 * 999.99 , 0xce, 0x08 + 4, },
b3d37042
HV
1063};
1064
1065static struct tuner_params tuner_samsung_tcpn_2121p30a_params[] = {
1066 {
1067 .type = TUNER_PARAM_TYPE_NTSC,
1068 .ranges = tuner_samsung_tcpn_2121p30a_ntsc_ranges,
1069 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_ntsc_ranges),
b3d37042
HV
1070 },
1071};
1072
91ae3299 1073/* ------------ TUNER_THOMSON_FE6600 - DViCO Hybrid PAL ------------ */
780dfef3 1074
91ae3299 1075static struct tuner_range tuner_thomson_fe6600_ranges[] = {
780dfef3
CP
1076 { 16 * 160.00 /*MHz*/, 0xfe, 0x11, },
1077 { 16 * 442.00 /*MHz*/, 0xf6, 0x12, },
1078 { 16 * 999.99 , 0xf6, 0x18, },
1079};
1080
91ae3299 1081static struct tuner_params tuner_thomson_fe6600_params[] = {
780dfef3
CP
1082 {
1083 .type = TUNER_PARAM_TYPE_PAL,
91ae3299
MK
1084 .ranges = tuner_thomson_fe6600_ranges,
1085 .count = ARRAY_SIZE(tuner_thomson_fe6600_ranges),
780dfef3
CP
1086 },
1087};
1088
c344933a
HV
1089/* ------------ TUNER_SAMSUNG_TCPG_6121P30A - Samsung PAL ------------ */
1090
43c560fa 1091/* '+ 4' turns on the Low Noise Amplifier */
c344933a 1092static struct tuner_range tuner_samsung_tcpg_6121p30a_pal_ranges[] = {
43c560fa
HV
1093 { 16 * 146.25 /*MHz*/, 0xce, 0x01 + 4, },
1094 { 16 * 428.50 /*MHz*/, 0xce, 0x02 + 4, },
1095 { 16 * 999.99 , 0xce, 0x08 + 4, },
c344933a
HV
1096};
1097
1098static struct tuner_params tuner_samsung_tcpg_6121p30a_params[] = {
1099 {
1100 .type = TUNER_PARAM_TYPE_PAL,
1101 .ranges = tuner_samsung_tcpg_6121p30a_pal_ranges,
1102 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_pal_ranges),
ba8fc399
HV
1103 .has_tda9887 = 1,
1104 .port1_active = 1,
1105 .port2_active = 1,
1106 .port2_invert_for_secam_lc = 1,
c344933a
HV
1107 },
1108};
1109
7b0ac9cd
MK
1110/* --------------------------------------------------------------------- */
1111
1112struct tunertype tuners[] = {
1113 /* 0-9 */
1114 [TUNER_TEMIC_PAL] = { /* TEMIC PAL */
1115 .name = "Temic PAL (4002 FH5)",
1116 .params = tuner_temic_pal_params,
bbab6fd8 1117 .count = ARRAY_SIZE(tuner_temic_pal_params),
7b0ac9cd
MK
1118 },
1119 [TUNER_PHILIPS_PAL_I] = { /* Philips PAL_I */
1120 .name = "Philips PAL_I (FI1246 and compatibles)",
1121 .params = tuner_philips_pal_i_params,
bbab6fd8 1122 .count = ARRAY_SIZE(tuner_philips_pal_i_params),
7b0ac9cd
MK
1123 },
1124 [TUNER_PHILIPS_NTSC] = { /* Philips NTSC */
1125 .name = "Philips NTSC (FI1236,FM1236 and compatibles)",
1126 .params = tuner_philips_ntsc_params,
bbab6fd8 1127 .count = ARRAY_SIZE(tuner_philips_ntsc_params),
7b0ac9cd
MK
1128 },
1129 [TUNER_PHILIPS_SECAM] = { /* Philips SECAM */
1130 .name = "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)",
1131 .params = tuner_philips_secam_params,
bbab6fd8 1132 .count = ARRAY_SIZE(tuner_philips_secam_params),
7b0ac9cd
MK
1133 },
1134 [TUNER_ABSENT] = { /* Tuner Absent */
1135 .name = "NoTuner",
1136 },
1137 [TUNER_PHILIPS_PAL] = { /* Philips PAL */
1138 .name = "Philips PAL_BG (FI1216 and compatibles)",
1139 .params = tuner_philips_pal_params,
bbab6fd8 1140 .count = ARRAY_SIZE(tuner_philips_pal_params),
7b0ac9cd
MK
1141 },
1142 [TUNER_TEMIC_NTSC] = { /* TEMIC NTSC */
1143 .name = "Temic NTSC (4032 FY5)",
1144 .params = tuner_temic_ntsc_params,
bbab6fd8 1145 .count = ARRAY_SIZE(tuner_temic_ntsc_params),
7b0ac9cd
MK
1146 },
1147 [TUNER_TEMIC_PAL_I] = { /* TEMIC PAL_I */
1148 .name = "Temic PAL_I (4062 FY5)",
1149 .params = tuner_temic_pal_i_params,
bbab6fd8 1150 .count = ARRAY_SIZE(tuner_temic_pal_i_params),
7b0ac9cd
MK
1151 },
1152 [TUNER_TEMIC_4036FY5_NTSC] = { /* TEMIC NTSC */
1153 .name = "Temic NTSC (4036 FY5)",
1154 .params = tuner_temic_4036fy5_ntsc_params,
bbab6fd8 1155 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_params),
7b0ac9cd
MK
1156 },
1157 [TUNER_ALPS_TSBH1_NTSC] = { /* TEMIC NTSC */
1158 .name = "Alps HSBH1",
1159 .params = tuner_alps_tsbh1_ntsc_params,
bbab6fd8 1160 .count = ARRAY_SIZE(tuner_alps_tsbh1_ntsc_params),
7b0ac9cd
MK
1161 },
1162
1163 /* 10-19 */
1164 [TUNER_ALPS_TSBE1_PAL] = { /* TEMIC PAL */
1165 .name = "Alps TSBE1",
1166 .params = tuner_alps_tsb_1_params,
bbab6fd8 1167 .count = ARRAY_SIZE(tuner_alps_tsb_1_params),
7b0ac9cd
MK
1168 },
1169 [TUNER_ALPS_TSBB5_PAL_I] = { /* Alps PAL_I */
1170 .name = "Alps TSBB5",
1171 .params = tuner_alps_tsbb5_params,
bbab6fd8 1172 .count = ARRAY_SIZE(tuner_alps_tsbb5_params),
7b0ac9cd
MK
1173 },
1174 [TUNER_ALPS_TSBE5_PAL] = { /* Alps PAL */
1175 .name = "Alps TSBE5",
1176 .params = tuner_alps_tsbe5_params,
bbab6fd8 1177 .count = ARRAY_SIZE(tuner_alps_tsbe5_params),
7b0ac9cd
MK
1178 },
1179 [TUNER_ALPS_TSBC5_PAL] = { /* Alps PAL */
1180 .name = "Alps TSBC5",
1181 .params = tuner_alps_tsbc5_params,
bbab6fd8 1182 .count = ARRAY_SIZE(tuner_alps_tsbc5_params),
7b0ac9cd
MK
1183 },
1184 [TUNER_TEMIC_4006FH5_PAL] = { /* TEMIC PAL */
1185 .name = "Temic PAL_BG (4006FH5)",
1186 .params = tuner_temic_4006fh5_params,
bbab6fd8 1187 .count = ARRAY_SIZE(tuner_temic_4006fh5_params),
7b0ac9cd
MK
1188 },
1189 [TUNER_ALPS_TSHC6_NTSC] = { /* Alps NTSC */
1190 .name = "Alps TSCH6",
1191 .params = tuner_alps_tshc6_params,
bbab6fd8 1192 .count = ARRAY_SIZE(tuner_alps_tshc6_params),
7b0ac9cd
MK
1193 },
1194 [TUNER_TEMIC_PAL_DK] = { /* TEMIC PAL */
1195 .name = "Temic PAL_DK (4016 FY5)",
1196 .params = tuner_temic_pal_dk_params,
bbab6fd8 1197 .count = ARRAY_SIZE(tuner_temic_pal_dk_params),
7b0ac9cd
MK
1198 },
1199 [TUNER_PHILIPS_NTSC_M] = { /* Philips NTSC */
1200 .name = "Philips NTSC_M (MK2)",
1201 .params = tuner_philips_ntsc_m_params,
bbab6fd8 1202 .count = ARRAY_SIZE(tuner_philips_ntsc_m_params),
7b0ac9cd
MK
1203 },
1204 [TUNER_TEMIC_4066FY5_PAL_I] = { /* TEMIC PAL_I */
1205 .name = "Temic PAL_I (4066 FY5)",
1206 .params = tuner_temic_4066fy5_pal_i_params,
bbab6fd8 1207 .count = ARRAY_SIZE(tuner_temic_4066fy5_pal_i_params),
7b0ac9cd
MK
1208 },
1209 [TUNER_TEMIC_4006FN5_MULTI_PAL] = { /* TEMIC PAL */
1210 .name = "Temic PAL* auto (4006 FN5)",
1211 .params = tuner_temic_4006fn5_multi_params,
bbab6fd8 1212 .count = ARRAY_SIZE(tuner_temic_4006fn5_multi_params),
7b0ac9cd
MK
1213 },
1214
1215 /* 20-29 */
1216 [TUNER_TEMIC_4009FR5_PAL] = { /* TEMIC PAL */
1217 .name = "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)",
1218 .params = tuner_temic_4009f_5_params,
bbab6fd8 1219 .count = ARRAY_SIZE(tuner_temic_4009f_5_params),
7b0ac9cd
MK
1220 },
1221 [TUNER_TEMIC_4039FR5_NTSC] = { /* TEMIC NTSC */
1222 .name = "Temic NTSC (4039 FR5)",
1223 .params = tuner_temic_4039fr5_params,
bbab6fd8 1224 .count = ARRAY_SIZE(tuner_temic_4039fr5_params),
7b0ac9cd
MK
1225 },
1226 [TUNER_TEMIC_4046FM5] = { /* TEMIC PAL */
1227 .name = "Temic PAL/SECAM multi (4046 FM5)",
1228 .params = tuner_temic_4046fm5_params,
bbab6fd8 1229 .count = ARRAY_SIZE(tuner_temic_4046fm5_params),
7b0ac9cd
MK
1230 },
1231 [TUNER_PHILIPS_PAL_DK] = { /* Philips PAL */
1232 .name = "Philips PAL_DK (FI1256 and compatibles)",
1233 .params = tuner_philips_pal_dk_params,
bbab6fd8 1234 .count = ARRAY_SIZE(tuner_philips_pal_dk_params),
7b0ac9cd
MK
1235 },
1236 [TUNER_PHILIPS_FQ1216ME] = { /* Philips PAL */
1237 .name = "Philips PAL/SECAM multi (FQ1216ME)",
1238 .params = tuner_philips_fq1216me_params,
bbab6fd8 1239 .count = ARRAY_SIZE(tuner_philips_fq1216me_params),
7b0ac9cd
MK
1240 },
1241 [TUNER_LG_PAL_I_FM] = { /* LGINNOTEK PAL_I */
1242 .name = "LG PAL_I+FM (TAPC-I001D)",
1243 .params = tuner_lg_pal_i_fm_params,
bbab6fd8 1244 .count = ARRAY_SIZE(tuner_lg_pal_i_fm_params),
7b0ac9cd
MK
1245 },
1246 [TUNER_LG_PAL_I] = { /* LGINNOTEK PAL_I */
1247 .name = "LG PAL_I (TAPC-I701D)",
1248 .params = tuner_lg_pal_i_params,
bbab6fd8 1249 .count = ARRAY_SIZE(tuner_lg_pal_i_params),
7b0ac9cd
MK
1250 },
1251 [TUNER_LG_NTSC_FM] = { /* LGINNOTEK NTSC */
1252 .name = "LG NTSC+FM (TPI8NSR01F)",
1253 .params = tuner_lg_ntsc_fm_params,
bbab6fd8 1254 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_params),
7b0ac9cd
MK
1255 },
1256 [TUNER_LG_PAL_FM] = { /* LGINNOTEK PAL */
1257 .name = "LG PAL_BG+FM (TPI8PSB01D)",
1258 .params = tuner_lg_pal_fm_params,
bbab6fd8 1259 .count = ARRAY_SIZE(tuner_lg_pal_fm_params),
7b0ac9cd
MK
1260 },
1261 [TUNER_LG_PAL] = { /* LGINNOTEK PAL */
1262 .name = "LG PAL_BG (TPI8PSB11D)",
1263 .params = tuner_lg_pal_params,
bbab6fd8 1264 .count = ARRAY_SIZE(tuner_lg_pal_params),
7b0ac9cd
MK
1265 },
1266
1267 /* 30-39 */
1268 [TUNER_TEMIC_4009FN5_MULTI_PAL_FM] = { /* TEMIC PAL */
1269 .name = "Temic PAL* auto + FM (4009 FN5)",
1270 .params = tuner_temic_4009_fn5_multi_pal_fm_params,
bbab6fd8 1271 .count = ARRAY_SIZE(tuner_temic_4009_fn5_multi_pal_fm_params),
7b0ac9cd
MK
1272 },
1273 [TUNER_SHARP_2U5JF5540_NTSC] = { /* SHARP NTSC */
1274 .name = "SHARP NTSC_JP (2U5JF5540)",
1275 .params = tuner_sharp_2u5jf5540_params,
bbab6fd8 1276 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_params),
7b0ac9cd
MK
1277 },
1278 [TUNER_Samsung_PAL_TCPM9091PD27] = { /* Samsung PAL */
1279 .name = "Samsung PAL TCPM9091PD27",
1280 .params = tuner_samsung_pal_tcpm9091pd27_params,
bbab6fd8 1281 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_params),
7b0ac9cd
MK
1282 },
1283 [TUNER_MT2032] = { /* Microtune PAL|NTSC */
1284 .name = "MT20xx universal",
1285 /* see mt20xx.c for details */ },
1286 [TUNER_TEMIC_4106FH5] = { /* TEMIC PAL */
1287 .name = "Temic PAL_BG (4106 FH5)",
1288 .params = tuner_temic_4106fh5_params,
bbab6fd8 1289 .count = ARRAY_SIZE(tuner_temic_4106fh5_params),
7b0ac9cd
MK
1290 },
1291 [TUNER_TEMIC_4012FY5] = { /* TEMIC PAL */
1292 .name = "Temic PAL_DK/SECAM_L (4012 FY5)",
1293 .params = tuner_temic_4012fy5_params,
bbab6fd8 1294 .count = ARRAY_SIZE(tuner_temic_4012fy5_params),
7b0ac9cd
MK
1295 },
1296 [TUNER_TEMIC_4136FY5] = { /* TEMIC NTSC */
1297 .name = "Temic NTSC (4136 FY5)",
1298 .params = tuner_temic_4136_fy5_params,
bbab6fd8 1299 .count = ARRAY_SIZE(tuner_temic_4136_fy5_params),
7b0ac9cd
MK
1300 },
1301 [TUNER_LG_PAL_NEW_TAPC] = { /* LGINNOTEK PAL */
1302 .name = "LG PAL (newer TAPC series)",
1303 .params = tuner_lg_pal_new_tapc_params,
bbab6fd8 1304 .count = ARRAY_SIZE(tuner_lg_pal_new_tapc_params),
7b0ac9cd
MK
1305 },
1306 [TUNER_PHILIPS_FM1216ME_MK3] = { /* Philips PAL */
1307 .name = "Philips PAL/SECAM multi (FM1216ME MK3)",
1308 .params = tuner_fm1216me_mk3_params,
bbab6fd8 1309 .count = ARRAY_SIZE(tuner_fm1216me_mk3_params),
7b0ac9cd
MK
1310 },
1311 [TUNER_LG_NTSC_NEW_TAPC] = { /* LGINNOTEK NTSC */
1312 .name = "LG NTSC (newer TAPC series)",
1313 .params = tuner_lg_ntsc_new_tapc_params,
bbab6fd8 1314 .count = ARRAY_SIZE(tuner_lg_ntsc_new_tapc_params),
7b0ac9cd
MK
1315 },
1316
1317 /* 40-49 */
1318 [TUNER_HITACHI_NTSC] = { /* HITACHI NTSC */
1319 .name = "HITACHI V7-J180AT",
1320 .params = tuner_hitachi_ntsc_params,
bbab6fd8 1321 .count = ARRAY_SIZE(tuner_hitachi_ntsc_params),
7b0ac9cd
MK
1322 },
1323 [TUNER_PHILIPS_PAL_MK] = { /* Philips PAL */
1324 .name = "Philips PAL_MK (FI1216 MK)",
1325 .params = tuner_philips_pal_mk_params,
bbab6fd8 1326 .count = ARRAY_SIZE(tuner_philips_pal_mk_params),
7b0ac9cd
MK
1327 },
1328 [TUNER_PHILIPS_ATSC] = { /* Philips ATSC */
b8273636
MK
1329 .name = "Philips FCV1236D ATSC/NTSC dual in",
1330 .params = tuner_philips_fcv1236d_params,
1331 .count = ARRAY_SIZE(tuner_philips_fcv1236d_params),
7b0ac9cd
MK
1332 },
1333 [TUNER_PHILIPS_FM1236_MK3] = { /* Philips NTSC */
1334 .name = "Philips NTSC MK3 (FM1236MK3 or FM1236/F)",
1335 .params = tuner_fm1236_mk3_params,
bbab6fd8 1336 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
7b0ac9cd
MK
1337 },
1338 [TUNER_PHILIPS_4IN1] = { /* Philips NTSC */
1339 .name = "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)",
1340 .params = tuner_philips_4in1_params,
bbab6fd8 1341 .count = ARRAY_SIZE(tuner_philips_4in1_params),
7b0ac9cd
MK
1342 },
1343 [TUNER_MICROTUNE_4049FM5] = { /* Microtune PAL */
1344 .name = "Microtune 4049 FM5",
1345 .params = tuner_microtune_4049_fm5_params,
bbab6fd8 1346 .count = ARRAY_SIZE(tuner_microtune_4049_fm5_params),
7b0ac9cd
MK
1347 },
1348 [TUNER_PANASONIC_VP27] = { /* Panasonic NTSC */
1349 .name = "Panasonic VP27s/ENGE4324D",
1350 .params = tuner_panasonic_vp27_params,
bbab6fd8 1351 .count = ARRAY_SIZE(tuner_panasonic_vp27_params),
7b0ac9cd
MK
1352 },
1353 [TUNER_LG_NTSC_TAPE] = { /* LGINNOTEK NTSC */
1354 .name = "LG NTSC (TAPE series)",
122b5dbe
HV
1355 .params = tuner_fm1236_mk3_params,
1356 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
7b0ac9cd
MK
1357 },
1358 [TUNER_TNF_8831BGFF] = { /* Philips PAL */
1359 .name = "Tenna TNF 8831 BGFF)",
1360 .params = tuner_tnf_8831bgff_params,
bbab6fd8 1361 .count = ARRAY_SIZE(tuner_tnf_8831bgff_params),
7b0ac9cd
MK
1362 },
1363 [TUNER_MICROTUNE_4042FI5] = { /* Microtune NTSC */
1364 .name = "Microtune 4042 FI5 ATSC/NTSC dual in",
1365 .params = tuner_microtune_4042fi5_params,
bbab6fd8 1366 .count = ARRAY_SIZE(tuner_microtune_4042fi5_params),
7b0ac9cd
MK
1367 },
1368
1369 /* 50-59 */
1370 [TUNER_TCL_2002N] = { /* TCL NTSC */
1371 .name = "TCL 2002N",
1372 .params = tuner_tcl_2002n_params,
bbab6fd8 1373 .count = ARRAY_SIZE(tuner_tcl_2002n_params),
7b0ac9cd
MK
1374 },
1375 [TUNER_PHILIPS_FM1256_IH3] = { /* Philips PAL */
1376 .name = "Philips PAL/SECAM_D (FM 1256 I-H3)",
1377 .params = tuner_philips_fm1256_ih3_params,
bbab6fd8 1378 .count = ARRAY_SIZE(tuner_philips_fm1256_ih3_params),
7b0ac9cd
MK
1379 },
1380 [TUNER_THOMSON_DTT7610] = { /* THOMSON ATSC */
1381 .name = "Thomson DTT 7610 (ATSC/NTSC)",
1382 .params = tuner_thomson_dtt7610_params,
bbab6fd8 1383 .count = ARRAY_SIZE(tuner_thomson_dtt7610_params),
7b0ac9cd
MK
1384 },
1385 [TUNER_PHILIPS_FQ1286] = { /* Philips NTSC */
1386 .name = "Philips FQ1286",
1387 .params = tuner_philips_fq1286_params,
bbab6fd8 1388 .count = ARRAY_SIZE(tuner_philips_fq1286_params),
7b0ac9cd
MK
1389 },
1390 [TUNER_PHILIPS_TDA8290] = { /* Philips PAL|NTSC */
0b5f4a12 1391 .name = "Philips/NXP TDA 8290/8295 + 8275/8275A/18271",
7b0ac9cd
MK
1392 /* see tda8290.c for details */ },
1393 [TUNER_TCL_2002MB] = { /* TCL PAL */
1394 .name = "TCL 2002MB",
1395 .params = tuner_tcl_2002mb_params,
bbab6fd8 1396 .count = ARRAY_SIZE(tuner_tcl_2002mb_params),
7b0ac9cd
MK
1397 },
1398 [TUNER_PHILIPS_FQ1216AME_MK4] = { /* Philips PAL */
1399 .name = "Philips PAL/SECAM multi (FQ1216AME MK4)",
1400 .params = tuner_philips_fq1216ame_mk4_params,
bbab6fd8 1401 .count = ARRAY_SIZE(tuner_philips_fq1216ame_mk4_params),
7b0ac9cd
MK
1402 },
1403 [TUNER_PHILIPS_FQ1236A_MK4] = { /* Philips NTSC */
1404 .name = "Philips FQ1236A MK4",
1405 .params = tuner_philips_fq1236a_mk4_params,
bbab6fd8 1406 .count = ARRAY_SIZE(tuner_philips_fq1236a_mk4_params),
7b0ac9cd
MK
1407 },
1408 [TUNER_YMEC_TVF_8531MF] = { /* Philips NTSC */
1409 .name = "Ymec TVision TVF-8531MF/8831MF/8731MF",
1410 .params = tuner_ymec_tvf_8531mf_params,
bbab6fd8 1411 .count = ARRAY_SIZE(tuner_ymec_tvf_8531mf_params),
7b0ac9cd
MK
1412 },
1413 [TUNER_YMEC_TVF_5533MF] = { /* Philips NTSC */
1414 .name = "Ymec TVision TVF-5533MF",
1415 .params = tuner_ymec_tvf_5533mf_params,
bbab6fd8 1416 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_params),
7b0ac9cd
MK
1417 },
1418
1419 /* 60-69 */
1420 [TUNER_THOMSON_DTT761X] = { /* THOMSON ATSC */
1421 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
1422 .name = "Thomson DTT 761X (ATSC/NTSC)",
1423 .params = tuner_thomson_dtt761x_params,
bbab6fd8 1424 .count = ARRAY_SIZE(tuner_thomson_dtt761x_params),
22ef8fc9
MK
1425 .min = 16 * 57.00,
1426 .max = 16 * 863.00,
1427 .stepsize = 62500,
7b0ac9cd
MK
1428 },
1429 [TUNER_TENA_9533_DI] = { /* Philips PAL */
1430 .name = "Tena TNF9533-D/IF/TNF9533-B/DF",
1431 .params = tuner_tena_9533_di_params,
bbab6fd8 1432 .count = ARRAY_SIZE(tuner_tena_9533_di_params),
7b0ac9cd
MK
1433 },
1434 [TUNER_TEA5767] = { /* Philips RADIO */
1435 .name = "Philips TEA5767HN FM Radio",
1436 /* see tea5767.c for details */
1437 },
1438 [TUNER_PHILIPS_FMD1216ME_MK3] = { /* Philips PAL */
1439 .name = "Philips FMD1216ME MK3 Hybrid Tuner",
cc925bbe 1440 .params = tuner_philips_fmd1216me_mk3_params,
bbab6fd8 1441 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_params),
7b0ac9cd 1442 },
9c26c8b1 1443 [TUNER_LG_TDVS_H06XF] = { /* LGINNOTEK ATSC */
d9e12f25 1444 .name = "LG TDVS-H06xF", /* H061F, H062F & H064F */
9c26c8b1
MK
1445 .params = tuner_lg_tdvs_h06xf_params,
1446 .count = ARRAY_SIZE(tuner_lg_tdvs_h06xf_params),
bed6d189
MK
1447 .min = 16 * 54.00,
1448 .max = 16 * 863.00,
1449 .stepsize = 62500,
7b0ac9cd
MK
1450 },
1451 [TUNER_YMEC_TVF66T5_B_DFF] = { /* Philips PAL */
1452 .name = "Ymec TVF66T5-B/DFF",
1453 .params = tuner_ymec_tvf66t5_b_dff_params,
bbab6fd8 1454 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_params),
7b0ac9cd 1455 },
f3629be8
MK
1456 [TUNER_LG_TALN] = { /* LGINNOTEK NTSC / PAL / SECAM */
1457 .name = "LG TALN series",
1458 .params = tuner_lg_taln_params,
1459 .count = ARRAY_SIZE(tuner_lg_taln_params),
7b0ac9cd
MK
1460 },
1461 [TUNER_PHILIPS_TD1316] = { /* Philips PAL */
1462 .name = "Philips TD1316 Hybrid Tuner",
1463 .params = tuner_philips_td1316_params,
bbab6fd8 1464 .count = ARRAY_SIZE(tuner_philips_td1316_params),
7b0ac9cd
MK
1465 },
1466 [TUNER_PHILIPS_TUV1236D] = { /* Philips ATSC */
1467 .name = "Philips TUV1236D ATSC/NTSC dual in",
cc925bbe 1468 .params = tuner_tuv1236d_params,
bbab6fd8 1469 .count = ARRAY_SIZE(tuner_tuv1236d_params),
7b0ac9cd 1470 },
efcf55cb
MCC
1471 [TUNER_TNF_5335MF] = { /* Tenna PAL/NTSC */
1472 .name = "Tena TNF 5335 and similar models",
7b0ac9cd 1473 .params = tuner_tnf_5335mf_params,
bbab6fd8 1474 .count = ARRAY_SIZE(tuner_tnf_5335mf_params),
7b0ac9cd 1475 },
b3d37042
HV
1476
1477 /* 70-79 */
1478 [TUNER_SAMSUNG_TCPN_2121P30A] = { /* Samsung NTSC */
1479 .name = "Samsung TCPN 2121P30A",
1480 .params = tuner_samsung_tcpn_2121p30a_params,
bbab6fd8 1481 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params),
b3d37042 1482 },
12466577
MCC
1483 [TUNER_XC2028] = { /* Xceive 2028 */
1484 .name = "Xceive xc2028/xc3028 tuner",
1485 /* see tuner-xc2028.c for details */
0004fd59 1486 },
91ae3299
MK
1487 [TUNER_THOMSON_FE6600] = { /* Thomson PAL / DVB-T */
1488 .name = "Thomson FE6600",
1489 .params = tuner_thomson_fe6600_params,
b1b168e6 1490 .count = ARRAY_SIZE(tuner_thomson_fe6600_params),
780dfef3 1491 },
c344933a
HV
1492 [TUNER_SAMSUNG_TCPG_6121P30A] = { /* Samsung PAL */
1493 .name = "Samsung TCPG 6121P30A",
1494 .params = tuner_samsung_tcpg_6121p30a_params,
1495 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_params),
1496 },
15396236
MCC
1497 [TUNER_TDA9887] = { /* Philips TDA 9887 IF PLL Demodulator.
1498 This chip is part of some modern tuners */
1499 .name = "Philips TDA988[5,6,7] IF PLL Demodulator",
1500 /* see tda9887.c for details */
1501 },
8573a9e6
MCC
1502 [TUNER_TEA5761] = { /* Philips RADIO */
1503 .name = "Philips TEA5761 FM Radio",
1504 /* see tea5767.c for details */
1505 },
27c685a4
ST
1506 [TUNER_XC5000] = { /* Xceive 5000 */
1507 .name = "Xceive 5000 tuner",
1508 /* see xc5000.c for details */
1509 },
7b0ac9cd 1510};
82b3083d 1511EXPORT_SYMBOL(tuners);
7b0ac9cd
MK
1512
1513unsigned const int tuner_count = ARRAY_SIZE(tuners);
82b3083d
MK
1514EXPORT_SYMBOL(tuner_count);
1515
1516MODULE_DESCRIPTION("Simple tuner device type database");
1517MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1518MODULE_LICENSE("GPL");