blob: ac363f0192279db0ca1241a894bf33c3dcbf68d5 [file] [log] [blame]
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001/*
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 *
Michael Krufky99d33d52006-02-07 06:25:36 -020026 * 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.
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020029 *
Michael Krufky99d33d52006-02-07 06:25:36 -020030 * 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.
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020036 */
37
38/* 0-9 */
39/* ------------ TUNER_TEMIC_PAL - TEMIC PAL ------------ */
40
41static struct tuner_range tuner_temic_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -020042 { 16 * 140.25 /*MHz*/, 0x8e, 0x02, },
43 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
44 { 16 * 999.99 , 0x8e, 0x01, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020045};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020052 },
53};
54
55/* ------------ TUNER_PHILIPS_PAL_I - Philips PAL_I ------------ */
56
57static struct tuner_range tuner_philips_pal_i_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -020058 { 16 * 140.25 /*MHz*/, 0x8e, 0xa0, },
59 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
60 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020061};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020068 },
69};
70
71/* ------------ TUNER_PHILIPS_NTSC - Philips NTSC ------------ */
72
73static struct tuner_range tuner_philips_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -020074 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
75 { 16 * 451.25 /*MHz*/, 0x8e, 0x90, },
76 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020077};
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),
Hans Verkuil27487d42006-01-15 15:04:52 -020084 .cb_first_if_lower_freq = 1,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020085 },
86};
87
88/* ------------ TUNER_PHILIPS_SECAM - Philips SECAM ------------ */
89
90static struct tuner_range tuner_philips_secam_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -020091 { 16 * 168.25 /*MHz*/, 0x8e, 0xa7, },
92 { 16 * 447.25 /*MHz*/, 0x8e, 0x97, },
93 { 16 * 999.99 , 0x8e, 0x37, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020094};
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),
Hans Verkuil27487d42006-01-15 15:04:52 -0200101 .cb_first_if_lower_freq = 1,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200102 },
103};
104
105/* ------------ TUNER_PHILIPS_PAL - Philips PAL ------------ */
106
107static struct tuner_range tuner_philips_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200108 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
109 { 16 * 447.25 /*MHz*/, 0x8e, 0x90, },
110 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200111};
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),
Hans Verkuil27487d42006-01-15 15:04:52 -0200118 .cb_first_if_lower_freq = 1,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200119 },
120};
121
122/* ------------ TUNER_TEMIC_NTSC - TEMIC NTSC ------------ */
123
124static struct tuner_range tuner_temic_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200125 { 16 * 157.25 /*MHz*/, 0x8e, 0x02, },
126 { 16 * 463.25 /*MHz*/, 0x8e, 0x04, },
127 { 16 * 999.99 , 0x8e, 0x01, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200128};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200135 },
136};
137
138/* ------------ TUNER_TEMIC_PAL_I - TEMIC PAL_I ------------ */
139
140static struct tuner_range tuner_temic_pal_i_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200141 { 16 * 170.00 /*MHz*/, 0x8e, 0x02, },
142 { 16 * 450.00 /*MHz*/, 0x8e, 0x04, },
143 { 16 * 999.99 , 0x8e, 0x01, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200144};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200151 },
152};
153
154/* ------------ TUNER_TEMIC_4036FY5_NTSC - TEMIC NTSC ------------ */
155
156static struct tuner_range tuner_temic_4036fy5_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200157 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
158 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
159 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200160};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200167 },
168};
169
170/* ------------ TUNER_ALPS_TSBH1_NTSC - TEMIC NTSC ------------ */
171
172static struct tuner_range tuner_alps_tsb_1_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200173 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
174 { 16 * 385.25 /*MHz*/, 0x8e, 0x02, },
175 { 16 * 999.99 , 0x8e, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200176};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200183 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200194 },
195};
196
197/* ------------ TUNER_ALPS_TSBB5_PAL_I - Alps PAL_I ------------ */
198
199static struct tuner_range tuner_alps_tsb_5_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200200 { 16 * 133.25 /*MHz*/, 0x8e, 0x01, },
201 { 16 * 351.25 /*MHz*/, 0x8e, 0x02, },
202 { 16 * 999.99 , 0x8e, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200203};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200210 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200220 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200230 },
231};
232
233/* ------------ TUNER_TEMIC_4006FH5_PAL - TEMIC PAL ------------ */
234
Michael Krufkycc925bb2006-01-23 17:11:11 -0200235static struct tuner_range tuner_lg_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200236 { 16 * 170.00 /*MHz*/, 0x8e, 0xa0, },
237 { 16 * 450.00 /*MHz*/, 0x8e, 0x90, },
238 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200239};
240
241static struct tuner_params tuner_temic_4006fh5_params[] = {
242 {
243 .type = TUNER_PARAM_TYPE_PAL,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200244 .ranges = tuner_lg_pal_ranges,
245 .count = ARRAY_SIZE(tuner_lg_pal_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200246 },
247};
248
249/* ------------ TUNER_ALPS_TSHC6_NTSC - Alps NTSC ------------ */
250
251static struct tuner_range tuner_alps_tshc6_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200252 { 16 * 137.25 /*MHz*/, 0x8e, 0x14, },
253 { 16 * 385.25 /*MHz*/, 0x8e, 0x12, },
254 { 16 * 999.99 , 0x8e, 0x11, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200255};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200262 },
263};
264
265/* ------------ TUNER_TEMIC_PAL_DK - TEMIC PAL ------------ */
266
267static struct tuner_range tuner_temic_pal_dk_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200268 { 16 * 168.25 /*MHz*/, 0x8e, 0xa0, },
269 { 16 * 456.25 /*MHz*/, 0x8e, 0x90, },
270 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200271};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200278 },
279};
280
281/* ------------ TUNER_PHILIPS_NTSC_M - Philips NTSC ------------ */
282
283static struct tuner_range tuner_philips_ntsc_m_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200284 { 16 * 160.00 /*MHz*/, 0x8e, 0xa0, },
285 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
286 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200287};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200294 },
295};
296
297/* ------------ TUNER_TEMIC_4066FY5_PAL_I - TEMIC PAL_I ------------ */
298
299static struct tuner_range tuner_temic_40x6f_5_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200300 { 16 * 169.00 /*MHz*/, 0x8e, 0xa0, },
301 { 16 * 454.00 /*MHz*/, 0x8e, 0x90, },
302 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200303};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200310 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200320 },
321};
322
323/* 20-29 */
324/* ------------ TUNER_TEMIC_4009FR5_PAL - TEMIC PAL ------------ */
325
326static struct tuner_range tuner_temic_4009f_5_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200327 { 16 * 141.00 /*MHz*/, 0x8e, 0xa0, },
328 { 16 * 464.00 /*MHz*/, 0x8e, 0x90, },
329 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200330};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200337 },
338};
339
340/* ------------ TUNER_TEMIC_4039FR5_NTSC - TEMIC NTSC ------------ */
341
Michael Krufkycc925bb2006-01-23 17:11:11 -0200342static struct tuner_range tuner_temic_4x3x_f_5_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200343 { 16 * 158.00 /*MHz*/, 0x8e, 0xa0, },
344 { 16 * 453.00 /*MHz*/, 0x8e, 0x90, },
345 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200346};
347
348static struct tuner_params tuner_temic_4039fr5_params[] = {
349 {
350 .type = TUNER_PARAM_TYPE_NTSC,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200351 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
352 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200353 },
354};
355
356/* ------------ TUNER_TEMIC_4046FM5 - TEMIC PAL ------------ */
357
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200358static struct tuner_params tuner_temic_4046fm5_params[] = {
359 {
360 .type = TUNER_PARAM_TYPE_PAL,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200361 .ranges = tuner_temic_40x6f_5_pal_ranges,
362 .count = ARRAY_SIZE(tuner_temic_40x6f_5_pal_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200363 },
364};
365
366/* ------------ TUNER_PHILIPS_PAL_DK - Philips PAL ------------ */
367
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200368static 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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200373 },
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),
Hans Verkuilba8fc392006-06-25 15:34:39 -0300383 .has_tda9887 = 1,
384 .port1_active = 1,
385 .port2_active = 1,
386 .port2_invert_for_secam_lc = 1,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200387 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200397 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200407 },
408};
409
410/* ------------ TUNER_LG_NTSC_FM - LGINNOTEK NTSC ------------ */
411
412static struct tuner_range tuner_lg_ntsc_fm_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200413 { 16 * 210.00 /*MHz*/, 0x8e, 0xa0, },
414 { 16 * 497.00 /*MHz*/, 0x8e, 0x90, },
415 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200416};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200423 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200433 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200443 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200454 },
455};
456
457/* ------------ TUNER_SHARP_2U5JF5540_NTSC - SHARP NTSC ------------ */
458
459static struct tuner_range tuner_sharp_2u5jf5540_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200460 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
461 { 16 * 317.25 /*MHz*/, 0x8e, 0x02, },
462 { 16 * 999.99 , 0x8e, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200463};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200470 },
471};
472
473/* ------------ TUNER_Samsung_PAL_TCPM9091PD27 - Samsung PAL ------------ */
474
475static struct tuner_range tuner_samsung_pal_tcpm9091pd27_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200476 { 16 * 169 /*MHz*/, 0x8e, 0xa0, },
477 { 16 * 464 /*MHz*/, 0x8e, 0x90, },
478 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200479};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200486 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200496 },
497};
498
499/* ------------ TUNER_TEMIC_4012FY5 - TEMIC PAL ------------ */
500
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200501static struct tuner_params tuner_temic_4012fy5_params[] = {
502 {
503 .type = TUNER_PARAM_TYPE_PAL,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200504 .ranges = tuner_temic_pal_ranges,
505 .count = ARRAY_SIZE(tuner_temic_pal_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200506 },
507};
508
509/* ------------ TUNER_TEMIC_4136FY5 - TEMIC NTSC ------------ */
510
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200511static struct tuner_params tuner_temic_4136_fy5_params[] = {
512 {
513 .type = TUNER_PARAM_TYPE_NTSC,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200514 .ranges = tuner_temic_4x3x_f_5_ntsc_ranges,
515 .count = ARRAY_SIZE(tuner_temic_4x3x_f_5_ntsc_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200516 },
517};
518
519/* ------------ TUNER_LG_PAL_NEW_TAPC - LGINNOTEK PAL ------------ */
520
521static struct tuner_range tuner_lg_new_tapc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200522 { 16 * 170.00 /*MHz*/, 0x8e, 0x01, },
523 { 16 * 450.00 /*MHz*/, 0x8e, 0x02, },
524 { 16 * 999.99 , 0x8e, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200525};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200532 },
533};
534
535/* ------------ TUNER_PHILIPS_FM1216ME_MK3 - Philips PAL ------------ */
536
537static struct tuner_range tuner_fm1216me_mk3_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200538 { 16 * 158.00 /*MHz*/, 0x8e, 0x01, },
539 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
540 { 16 * 999.99 , 0x8e, 0x04, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200541};
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),
Hans Verkuil27487d42006-01-15 15:04:52 -0200548 .cb_first_if_lower_freq = 1,
Hans Verkuilba8fc392006-06-25 15:34:39 -0300549 .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,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200557 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200567 },
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200578 },
579};
580
581/* ------------ TUNER_PHILIPS_PAL_MK - Philips PAL ------------ */
582
583static struct tuner_range tuner_philips_pal_mk_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200584 { 16 * 140.25 /*MHz*/, 0x8e, 0x01, },
585 { 16 * 463.25 /*MHz*/, 0x8e, 0xc2, },
586 { 16 * 999.99 , 0x8e, 0xcf, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200587};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200594 },
595};
596
Michael Krufkyb8273632007-06-27 14:38:45 -0300597/* ---- TUNER_PHILIPS_ATSC - Philips FCV1236D (ATSC/NTSC) ---- */
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200598
Michael Krufkyb8273632007-06-27 14:38:45 -0300599static struct tuner_range tuner_philips_fcv1236d_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200600 { 16 * 157.25 /*MHz*/, 0x8e, 0xa0, },
Michael Krufkyc350f612007-06-27 16:26:32 -0300601 { 16 * 451.25 /*MHz*/, 0x8e, 0x90, },
Michael Krufky3fc46d32006-01-23 17:11:11 -0200602 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200603};
604
Michael Krufkyb8273632007-06-27 14:38:45 -0300605static struct tuner_params tuner_philips_fcv1236d_params[] = {
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200606 {
607 .type = TUNER_PARAM_TYPE_NTSC,
Michael Krufkyb8273632007-06-27 14:38:45 -0300608 .ranges = tuner_philips_fcv1236d_ranges,
609 .count = ARRAY_SIZE(tuner_philips_fcv1236d_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200610 },
611};
612
613/* ------------ TUNER_PHILIPS_FM1236_MK3 - Philips NTSC ------------ */
614
615static struct tuner_range tuner_fm1236_mk3_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200616 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
617 { 16 * 442.00 /*MHz*/, 0x8e, 0x02, },
618 { 16 * 999.99 , 0x8e, 0x04, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200619};
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),
Hans Verkuil27487d42006-01-15 15:04:52 -0200626 .cb_first_if_lower_freq = 1,
Hans Verkuilba8fc392006-06-25 15:34:39 -0300627 .has_tda9887 = 1,
628 .port1_active = 1,
629 .port2_active = 1,
630 .port1_fm_high_sensitivity = 1,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200631 },
632};
633
634/* ------------ TUNER_PHILIPS_4IN1 - Philips NTSC ------------ */
635
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200636static struct tuner_params tuner_philips_4in1_params[] = {
637 {
638 .type = TUNER_PARAM_TYPE_NTSC,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200639 .ranges = tuner_fm1236_mk3_ntsc_ranges,
640 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200641 },
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),
Hans Verkuilba8fc392006-06-25 15:34:39 -0300651 .has_tda9887 = 1,
652 .port1_invert_for_secam_lc = 1,
Trent Piephod7304de2006-08-24 22:43:45 -0300653 .default_pll_gating_18 = 1,
Thierry MERLEd8159a32006-12-04 08:31:42 -0300654 .fm_gain_normal=1,
Trent Piepho5e082f12007-08-03 18:32:38 -0300655 .radio_if = 1, /* 33.3 MHz */
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200656 },
657};
658
659/* ------------ TUNER_PANASONIC_VP27 - Panasonic NTSC ------------ */
660
661static struct tuner_range tuner_panasonic_vp27_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200662 { 16 * 160.00 /*MHz*/, 0xce, 0x01, },
663 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
664 { 16 * 999.99 , 0xce, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200665};
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),
Hans Verkuilba8fc392006-06-25 15:34:39 -0300672 .has_tda9887 = 1,
673 .intercarrier_mode = 1,
Hans Verkuilb4c85242007-07-20 06:53:23 -0300674 .default_top_low = -3,
675 .default_top_mid = -3,
676 .default_top_high = -3,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200677 },
678};
679
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200680/* ------------ TUNER_TNF_8831BGFF - Philips PAL ------------ */
681
682static struct tuner_range tuner_tnf_8831bgff_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200683 { 16 * 161.25 /*MHz*/, 0x8e, 0xa0, },
684 { 16 * 463.25 /*MHz*/, 0x8e, 0x90, },
685 { 16 * 999.99 , 0x8e, 0x30, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200686};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200693 },
694};
695
696/* ------------ TUNER_MICROTUNE_4042FI5 - Microtune NTSC ------------ */
697
698static struct tuner_range tuner_microtune_4042fi5_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200699 { 16 * 162.00 /*MHz*/, 0x8e, 0xa2, },
700 { 16 * 457.00 /*MHz*/, 0x8e, 0x94, },
701 { 16 * 999.99 , 0x8e, 0x31, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200702};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200709 },
710};
711
712/* 50-59 */
713/* ------------ TUNER_TCL_2002N - TCL NTSC ------------ */
714
715static struct tuner_range tuner_tcl_2002n_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200716 { 16 * 172.00 /*MHz*/, 0x8e, 0x01, },
717 { 16 * 448.00 /*MHz*/, 0x8e, 0x02, },
718 { 16 * 999.99 , 0x8e, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200719};
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),
Hans Verkuil27487d42006-01-15 15:04:52 -0200726 .cb_first_if_lower_freq = 1,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200727 },
728};
729
730/* ------------ TUNER_PHILIPS_FM1256_IH3 - Philips PAL ------------ */
731
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200732static struct tuner_params tuner_philips_fm1256_ih3_params[] = {
733 {
734 .type = TUNER_PARAM_TYPE_PAL,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200735 .ranges = tuner_fm1236_mk3_ntsc_ranges,
736 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
Trent Piepho5e082f12007-08-03 18:32:38 -0300737 .radio_if = 1, /* 33.3 MHz */
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200738 },
739};
740
741/* ------------ TUNER_THOMSON_DTT7610 - THOMSON ATSC ------------ */
742
743static struct tuner_range tuner_thomson_dtt7610_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200744 { 16 * 157.25 /*MHz*/, 0x8e, 0x39, },
745 { 16 * 454.00 /*MHz*/, 0x8e, 0x3a, },
746 { 16 * 999.99 , 0x8e, 0x3c, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200747};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200754 },
755};
756
757/* ------------ TUNER_PHILIPS_FQ1286 - Philips NTSC ------------ */
758
759static struct tuner_range tuner_philips_fq1286_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200760 { 16 * 160.00 /*MHz*/, 0x8e, 0x41, },
761 { 16 * 454.00 /*MHz*/, 0x8e, 0x42, },
762 { 16 * 999.99 , 0x8e, 0x04, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200763};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200770 },
771};
772
773/* ------------ TUNER_TCL_2002MB - TCL PAL ------------ */
774
775static struct tuner_range tuner_tcl_2002mb_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200776 { 16 * 170.00 /*MHz*/, 0xce, 0x01, },
777 { 16 * 450.00 /*MHz*/, 0xce, 0x02, },
778 { 16 * 999.99 , 0xce, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200779};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200786 },
787};
788
789/* ------------ TUNER_PHILIPS_FQ1216AME_MK4 - Philips PAL ------------ */
790
Michael Krufky3fc46d32006-01-23 17:11:11 -0200791static 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, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200795};
796
797static struct tuner_params tuner_philips_fq1216ame_mk4_params[] = {
798 {
799 .type = TUNER_PARAM_TYPE_PAL,
Michael Krufky3fc46d32006-01-23 17:11:11 -0200800 .ranges = tuner_philips_fq12_6a___mk4_pal_ranges,
801 .count = ARRAY_SIZE(tuner_philips_fq12_6a___mk4_pal_ranges),
Hans Verkuilba8fc392006-06-25 15:34:39 -0300802 .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,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200809 },
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,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200817 .ranges = tuner_fm1236_mk3_ntsc_ranges,
818 .count = ARRAY_SIZE(tuner_fm1236_mk3_ntsc_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200819 },
820};
821
822/* ------------ TUNER_YMEC_TVF_8531MF - Philips NTSC ------------ */
823
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200824static struct tuner_params tuner_ymec_tvf_8531mf_params[] = {
825 {
826 .type = TUNER_PARAM_TYPE_NTSC,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200827 .ranges = tuner_philips_ntsc_m_ranges,
828 .count = ARRAY_SIZE(tuner_philips_ntsc_m_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200829 },
830};
831
832/* ------------ TUNER_YMEC_TVF_5533MF - Philips NTSC ------------ */
833
834static struct tuner_range tuner_ymec_tvf_5533mf_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200835 { 16 * 160.00 /*MHz*/, 0x8e, 0x01, },
836 { 16 * 454.00 /*MHz*/, 0x8e, 0x02, },
837 { 16 * 999.99 , 0x8e, 0x04, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200838};
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),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200845 },
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[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200853 { 16 * 145.25 /*MHz*/, 0x8e, 0x39, },
854 { 16 * 415.25 /*MHz*/, 0x8e, 0x3a, },
855 { 16 * 999.99 , 0x8e, 0x3c, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200856};
857
858
859static struct tuner_params tuner_thomson_dtt761x_params[] = {
860 {
861 .type = TUNER_PARAM_TYPE_NTSC,
862 .ranges = tuner_thomson_dtt761x_ntsc_ranges,
863 .count = ARRAY_SIZE(tuner_thomson_dtt761x_ntsc_ranges),
Trent Piepho5e082f12007-08-03 18:32:38 -0300864 .has_tda9887 = 1,
865 .fm_gain_normal = 1,
866 .radio_if = 2, /* 41.3 MHz */
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200867 },
868};
869
870/* ------------ TUNER_TENA_9533_DI - Philips PAL ------------ */
871
Michael Krufkycc925bb2006-01-23 17:11:11 -0200872static struct tuner_range tuner_tena_9533_di_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200873 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
874 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
875 { 16 * 999.99 , 0x8e, 0x04, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200876};
877
878static struct tuner_params tuner_tena_9533_di_params[] = {
879 {
880 .type = TUNER_PARAM_TYPE_PAL,
Michael Krufkycc925bb2006-01-23 17:11:11 -0200881 .ranges = tuner_tena_9533_di_pal_ranges,
882 .count = ARRAY_SIZE(tuner_tena_9533_di_pal_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200883 },
884};
885
886/* ------------ TUNER_PHILIPS_FMD1216ME_MK3 - Philips PAL ------------ */
887
888static struct tuner_range tuner_philips_fmd1216me_mk3_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200889 { 16 * 160.00 /*MHz*/, 0x86, 0x51, },
890 { 16 * 442.00 /*MHz*/, 0x86, 0x52, },
891 { 16 * 999.99 , 0x86, 0x54, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200892};
893
894
Michael Krufkycc925bb2006-01-23 17:11:11 -0200895static struct tuner_params tuner_philips_fmd1216me_mk3_params[] = {
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200896 {
897 .type = TUNER_PARAM_TYPE_PAL,
898 .ranges = tuner_philips_fmd1216me_mk3_pal_ranges,
899 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_pal_ranges),
Hans Verkuilba8fc392006-06-25 15:34:39 -0300900 .has_tda9887 = 1,
901 .port1_active = 1,
902 .port2_active = 1,
903 .port2_fm_high_sensitivity = 1,
904 .port2_invert_for_secam_lc = 1,
905 .port1_set_for_fm_mono = 1,
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200906 },
907};
908
909
Michael Krufky9c26c8b2006-04-27 01:29:17 -0300910/* ------ TUNER_LG_TDVS_H06XF - LG INNOTEK / INFINEON ATSC ----- */
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200911
912static struct tuner_range tuner_tua6034_ntsc_ranges[] = {
Rusty Scottdd31d5ac2006-04-22 16:15:07 -0300913 { 16 * 165.00 /*MHz*/, 0x8e, 0x01 },
914 { 16 * 450.00 /*MHz*/, 0x8e, 0x02 },
Michael Krufky3fc46d32006-01-23 17:11:11 -0200915 { 16 * 999.99 , 0x8e, 0x04 },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200916};
917
918
Michael Krufky9c26c8b2006-04-27 01:29:17 -0300919static struct tuner_params tuner_lg_tdvs_h06xf_params[] = {
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200920 {
921 .type = TUNER_PARAM_TYPE_NTSC,
922 .ranges = tuner_tua6034_ntsc_ranges,
923 .count = ARRAY_SIZE(tuner_tua6034_ntsc_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200924 },
925};
926
927/* ------------ TUNER_YMEC_TVF66T5_B_DFF - Philips PAL ------------ */
928
Hermann Pittonc2d19232006-08-21 14:14:33 -0300929static struct tuner_range tuner_ymec_tvf66t5_b_dff_pal_ranges[] = {
930 { 16 * 160.25 /*MHz*/, 0x8e, 0x01, },
931 { 16 * 464.25 /*MHz*/, 0x8e, 0x02, },
932 { 16 * 999.99 , 0x8e, 0x08, },
933};
934
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200935static struct tuner_params tuner_ymec_tvf66t5_b_dff_params[] = {
936 {
937 .type = TUNER_PARAM_TYPE_PAL,
Hermann Pittonc2d19232006-08-21 14:14:33 -0300938 .ranges = tuner_ymec_tvf66t5_b_dff_pal_ranges,
939 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_pal_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200940 },
941};
942
943/* ------------ TUNER_LG_NTSC_TALN_MINI - LGINNOTEK NTSC ------------ */
944
Michael Krufkyf3629be2006-03-11 17:02:01 -0300945static struct tuner_range tuner_lg_taln_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200946 { 16 * 137.25 /*MHz*/, 0x8e, 0x01, },
947 { 16 * 373.25 /*MHz*/, 0x8e, 0x02, },
948 { 16 * 999.99 , 0x8e, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200949};
950
Michael Krufkyf3629be2006-03-11 17:02:01 -0300951static struct tuner_range tuner_lg_taln_pal_secam_ranges[] = {
952 { 16 * 150.00 /*MHz*/, 0x8e, 0x01, },
953 { 16 * 425.00 /*MHz*/, 0x8e, 0x02, },
954 { 16 * 999.99 , 0x8e, 0x08, },
955};
956
957static struct tuner_params tuner_lg_taln_params[] = {
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200958 {
959 .type = TUNER_PARAM_TYPE_NTSC,
Michael Krufkyf3629be2006-03-11 17:02:01 -0300960 .ranges = tuner_lg_taln_ntsc_ranges,
961 .count = ARRAY_SIZE(tuner_lg_taln_ntsc_ranges),
962 },{
963 .type = TUNER_PARAM_TYPE_PAL,
964 .ranges = tuner_lg_taln_pal_secam_ranges,
965 .count = ARRAY_SIZE(tuner_lg_taln_pal_secam_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200966 },
967};
968
969/* ------------ TUNER_PHILIPS_TD1316 - Philips PAL ------------ */
970
971static struct tuner_range tuner_philips_td1316_pal_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200972 { 16 * 160.00 /*MHz*/, 0xc8, 0xa1, },
973 { 16 * 442.00 /*MHz*/, 0xc8, 0xa2, },
974 { 16 * 999.99 , 0xc8, 0xa4, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200975};
976
977static struct tuner_params tuner_philips_td1316_params[] = {
978 {
979 .type = TUNER_PARAM_TYPE_PAL,
980 .ranges = tuner_philips_td1316_pal_ranges,
981 .count = ARRAY_SIZE(tuner_philips_td1316_pal_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200982 },
983};
984
985/* ------------ TUNER_PHILIPS_TUV1236D - Philips ATSC ------------ */
986
987static struct tuner_range tuner_tuv1236d_ntsc_ranges[] = {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200988 { 16 * 157.25 /*MHz*/, 0xce, 0x01, },
989 { 16 * 454.00 /*MHz*/, 0xce, 0x02, },
990 { 16 * 999.99 , 0xce, 0x04, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200991};
992
993
Michael Krufkycc925bb2006-01-23 17:11:11 -0200994static struct tuner_params tuner_tuv1236d_params[] = {
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200995 {
996 .type = TUNER_PARAM_TYPE_NTSC,
997 .ranges = tuner_tuv1236d_ntsc_ranges,
998 .count = ARRAY_SIZE(tuner_tuv1236d_ntsc_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200999 },
1000};
1001
Mauro Carvalho Chehabefcf55c2006-03-09 11:17:43 -03001002/* ------------ TUNER_TNF_xxx5 - Texas Instruments--------- */
1003/* This is known to work with Tenna TVF58t5-MFF and TVF5835 MFF
1004 * but it is expected to work also with other Tenna/Ymec
1005 * models based on TI SN 761677 chip on both PAL and NTSC
1006 */
1007
1008static struct tuner_range tuner_tnf_5335_d_if_pal_ranges[] = {
1009 { 16 * 168.25 /*MHz*/, 0x8e, 0x01, },
Mauro Carvalho Chehab7947a222006-03-09 16:09:20 -03001010 { 16 * 471.25 /*MHz*/, 0x8e, 0x02, },
1011 { 16 * 999.99 , 0x8e, 0x08, },
Mauro Carvalho Chehabefcf55c2006-03-09 11:17:43 -03001012};
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001013
1014static struct tuner_range tuner_tnf_5335mf_ntsc_ranges[] = {
Mauro Carvalho Chehabefcf55c2006-03-09 11:17:43 -03001015 { 16 * 169.25 /*MHz*/, 0x8e, 0x01, },
1016 { 16 * 469.25 /*MHz*/, 0x8e, 0x02, },
1017 { 16 * 999.99 , 0x8e, 0x08, },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001018};
1019
1020static struct tuner_params tuner_tnf_5335mf_params[] = {
1021 {
1022 .type = TUNER_PARAM_TYPE_NTSC,
1023 .ranges = tuner_tnf_5335mf_ntsc_ranges,
1024 .count = ARRAY_SIZE(tuner_tnf_5335mf_ntsc_ranges),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001025 },
Mauro Carvalho Chehabefcf55c2006-03-09 11:17:43 -03001026 {
1027 .type = TUNER_PARAM_TYPE_PAL,
1028 .ranges = tuner_tnf_5335_d_if_pal_ranges,
1029 .count = ARRAY_SIZE(tuner_tnf_5335_d_if_pal_ranges),
1030 },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001031};
1032
Hans Verkuilb3d37042006-01-13 14:10:25 -02001033/* 70-79 */
1034/* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */
1035
Hans Verkuil43c560f2006-08-08 09:10:15 -03001036/* '+ 4' turns on the Low Noise Amplifier */
Hans Verkuilb3d37042006-01-13 14:10:25 -02001037static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = {
Hans Verkuil43c560f2006-08-08 09:10:15 -03001038 { 16 * 130.00 /*MHz*/, 0xce, 0x01 + 4, },
1039 { 16 * 364.50 /*MHz*/, 0xce, 0x02 + 4, },
1040 { 16 * 999.99 , 0xce, 0x08 + 4, },
Hans Verkuilb3d37042006-01-13 14:10:25 -02001041};
1042
1043static struct tuner_params tuner_samsung_tcpn_2121p30a_params[] = {
1044 {
1045 .type = TUNER_PARAM_TYPE_NTSC,
1046 .ranges = tuner_samsung_tcpn_2121p30a_ntsc_ranges,
1047 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_ntsc_ranges),
Hans Verkuilb3d37042006-01-13 14:10:25 -02001048 },
1049};
1050
Michael Krufky91ae3292006-03-01 00:04:42 -03001051/* ------------ TUNER_THOMSON_FE6600 - DViCO Hybrid PAL ------------ */
Chris Pascoe780dfef2006-02-28 08:34:59 -03001052
Michael Krufky91ae3292006-03-01 00:04:42 -03001053static struct tuner_range tuner_thomson_fe6600_ranges[] = {
Chris Pascoe780dfef2006-02-28 08:34:59 -03001054 { 16 * 160.00 /*MHz*/, 0xfe, 0x11, },
1055 { 16 * 442.00 /*MHz*/, 0xf6, 0x12, },
1056 { 16 * 999.99 , 0xf6, 0x18, },
1057};
1058
Michael Krufky91ae3292006-03-01 00:04:42 -03001059static struct tuner_params tuner_thomson_fe6600_params[] = {
Chris Pascoe780dfef2006-02-28 08:34:59 -03001060 {
1061 .type = TUNER_PARAM_TYPE_PAL,
Michael Krufky91ae3292006-03-01 00:04:42 -03001062 .ranges = tuner_thomson_fe6600_ranges,
1063 .count = ARRAY_SIZE(tuner_thomson_fe6600_ranges),
Chris Pascoe780dfef2006-02-28 08:34:59 -03001064 },
1065};
1066
Hans Verkuilc3449332006-04-19 18:50:35 -03001067/* ------------ TUNER_SAMSUNG_TCPG_6121P30A - Samsung PAL ------------ */
1068
Hans Verkuil43c560f2006-08-08 09:10:15 -03001069/* '+ 4' turns on the Low Noise Amplifier */
Hans Verkuilc3449332006-04-19 18:50:35 -03001070static struct tuner_range tuner_samsung_tcpg_6121p30a_pal_ranges[] = {
Hans Verkuil43c560f2006-08-08 09:10:15 -03001071 { 16 * 146.25 /*MHz*/, 0xce, 0x01 + 4, },
1072 { 16 * 428.50 /*MHz*/, 0xce, 0x02 + 4, },
1073 { 16 * 999.99 , 0xce, 0x08 + 4, },
Hans Verkuilc3449332006-04-19 18:50:35 -03001074};
1075
1076static struct tuner_params tuner_samsung_tcpg_6121p30a_params[] = {
1077 {
1078 .type = TUNER_PARAM_TYPE_PAL,
1079 .ranges = tuner_samsung_tcpg_6121p30a_pal_ranges,
1080 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_pal_ranges),
Hans Verkuilba8fc392006-06-25 15:34:39 -03001081 .has_tda9887 = 1,
1082 .port1_active = 1,
1083 .port2_active = 1,
1084 .port2_invert_for_secam_lc = 1,
Hans Verkuilc3449332006-04-19 18:50:35 -03001085 },
1086};
1087
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001088/* --------------------------------------------------------------------- */
1089
1090struct tunertype tuners[] = {
1091 /* 0-9 */
1092 [TUNER_TEMIC_PAL] = { /* TEMIC PAL */
1093 .name = "Temic PAL (4002 FH5)",
1094 .params = tuner_temic_pal_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001095 .count = ARRAY_SIZE(tuner_temic_pal_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001096 },
1097 [TUNER_PHILIPS_PAL_I] = { /* Philips PAL_I */
1098 .name = "Philips PAL_I (FI1246 and compatibles)",
1099 .params = tuner_philips_pal_i_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001100 .count = ARRAY_SIZE(tuner_philips_pal_i_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001101 },
1102 [TUNER_PHILIPS_NTSC] = { /* Philips NTSC */
1103 .name = "Philips NTSC (FI1236,FM1236 and compatibles)",
1104 .params = tuner_philips_ntsc_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001105 .count = ARRAY_SIZE(tuner_philips_ntsc_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001106 },
1107 [TUNER_PHILIPS_SECAM] = { /* Philips SECAM */
1108 .name = "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)",
1109 .params = tuner_philips_secam_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001110 .count = ARRAY_SIZE(tuner_philips_secam_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001111 },
1112 [TUNER_ABSENT] = { /* Tuner Absent */
1113 .name = "NoTuner",
1114 },
1115 [TUNER_PHILIPS_PAL] = { /* Philips PAL */
1116 .name = "Philips PAL_BG (FI1216 and compatibles)",
1117 .params = tuner_philips_pal_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001118 .count = ARRAY_SIZE(tuner_philips_pal_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001119 },
1120 [TUNER_TEMIC_NTSC] = { /* TEMIC NTSC */
1121 .name = "Temic NTSC (4032 FY5)",
1122 .params = tuner_temic_ntsc_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001123 .count = ARRAY_SIZE(tuner_temic_ntsc_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001124 },
1125 [TUNER_TEMIC_PAL_I] = { /* TEMIC PAL_I */
1126 .name = "Temic PAL_I (4062 FY5)",
1127 .params = tuner_temic_pal_i_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001128 .count = ARRAY_SIZE(tuner_temic_pal_i_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001129 },
1130 [TUNER_TEMIC_4036FY5_NTSC] = { /* TEMIC NTSC */
1131 .name = "Temic NTSC (4036 FY5)",
1132 .params = tuner_temic_4036fy5_ntsc_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001133 .count = ARRAY_SIZE(tuner_temic_4036fy5_ntsc_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001134 },
1135 [TUNER_ALPS_TSBH1_NTSC] = { /* TEMIC NTSC */
1136 .name = "Alps HSBH1",
1137 .params = tuner_alps_tsbh1_ntsc_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001138 .count = ARRAY_SIZE(tuner_alps_tsbh1_ntsc_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001139 },
1140
1141 /* 10-19 */
1142 [TUNER_ALPS_TSBE1_PAL] = { /* TEMIC PAL */
1143 .name = "Alps TSBE1",
1144 .params = tuner_alps_tsb_1_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001145 .count = ARRAY_SIZE(tuner_alps_tsb_1_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001146 },
1147 [TUNER_ALPS_TSBB5_PAL_I] = { /* Alps PAL_I */
1148 .name = "Alps TSBB5",
1149 .params = tuner_alps_tsbb5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001150 .count = ARRAY_SIZE(tuner_alps_tsbb5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001151 },
1152 [TUNER_ALPS_TSBE5_PAL] = { /* Alps PAL */
1153 .name = "Alps TSBE5",
1154 .params = tuner_alps_tsbe5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001155 .count = ARRAY_SIZE(tuner_alps_tsbe5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001156 },
1157 [TUNER_ALPS_TSBC5_PAL] = { /* Alps PAL */
1158 .name = "Alps TSBC5",
1159 .params = tuner_alps_tsbc5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001160 .count = ARRAY_SIZE(tuner_alps_tsbc5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001161 },
1162 [TUNER_TEMIC_4006FH5_PAL] = { /* TEMIC PAL */
1163 .name = "Temic PAL_BG (4006FH5)",
1164 .params = tuner_temic_4006fh5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001165 .count = ARRAY_SIZE(tuner_temic_4006fh5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001166 },
1167 [TUNER_ALPS_TSHC6_NTSC] = { /* Alps NTSC */
1168 .name = "Alps TSCH6",
1169 .params = tuner_alps_tshc6_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001170 .count = ARRAY_SIZE(tuner_alps_tshc6_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001171 },
1172 [TUNER_TEMIC_PAL_DK] = { /* TEMIC PAL */
1173 .name = "Temic PAL_DK (4016 FY5)",
1174 .params = tuner_temic_pal_dk_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001175 .count = ARRAY_SIZE(tuner_temic_pal_dk_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001176 },
1177 [TUNER_PHILIPS_NTSC_M] = { /* Philips NTSC */
1178 .name = "Philips NTSC_M (MK2)",
1179 .params = tuner_philips_ntsc_m_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001180 .count = ARRAY_SIZE(tuner_philips_ntsc_m_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001181 },
1182 [TUNER_TEMIC_4066FY5_PAL_I] = { /* TEMIC PAL_I */
1183 .name = "Temic PAL_I (4066 FY5)",
1184 .params = tuner_temic_4066fy5_pal_i_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001185 .count = ARRAY_SIZE(tuner_temic_4066fy5_pal_i_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001186 },
1187 [TUNER_TEMIC_4006FN5_MULTI_PAL] = { /* TEMIC PAL */
1188 .name = "Temic PAL* auto (4006 FN5)",
1189 .params = tuner_temic_4006fn5_multi_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001190 .count = ARRAY_SIZE(tuner_temic_4006fn5_multi_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001191 },
1192
1193 /* 20-29 */
1194 [TUNER_TEMIC_4009FR5_PAL] = { /* TEMIC PAL */
1195 .name = "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)",
1196 .params = tuner_temic_4009f_5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001197 .count = ARRAY_SIZE(tuner_temic_4009f_5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001198 },
1199 [TUNER_TEMIC_4039FR5_NTSC] = { /* TEMIC NTSC */
1200 .name = "Temic NTSC (4039 FR5)",
1201 .params = tuner_temic_4039fr5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001202 .count = ARRAY_SIZE(tuner_temic_4039fr5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001203 },
1204 [TUNER_TEMIC_4046FM5] = { /* TEMIC PAL */
1205 .name = "Temic PAL/SECAM multi (4046 FM5)",
1206 .params = tuner_temic_4046fm5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001207 .count = ARRAY_SIZE(tuner_temic_4046fm5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001208 },
1209 [TUNER_PHILIPS_PAL_DK] = { /* Philips PAL */
1210 .name = "Philips PAL_DK (FI1256 and compatibles)",
1211 .params = tuner_philips_pal_dk_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001212 .count = ARRAY_SIZE(tuner_philips_pal_dk_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001213 },
1214 [TUNER_PHILIPS_FQ1216ME] = { /* Philips PAL */
1215 .name = "Philips PAL/SECAM multi (FQ1216ME)",
1216 .params = tuner_philips_fq1216me_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001217 .count = ARRAY_SIZE(tuner_philips_fq1216me_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001218 },
1219 [TUNER_LG_PAL_I_FM] = { /* LGINNOTEK PAL_I */
1220 .name = "LG PAL_I+FM (TAPC-I001D)",
1221 .params = tuner_lg_pal_i_fm_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001222 .count = ARRAY_SIZE(tuner_lg_pal_i_fm_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001223 },
1224 [TUNER_LG_PAL_I] = { /* LGINNOTEK PAL_I */
1225 .name = "LG PAL_I (TAPC-I701D)",
1226 .params = tuner_lg_pal_i_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001227 .count = ARRAY_SIZE(tuner_lg_pal_i_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001228 },
1229 [TUNER_LG_NTSC_FM] = { /* LGINNOTEK NTSC */
1230 .name = "LG NTSC+FM (TPI8NSR01F)",
1231 .params = tuner_lg_ntsc_fm_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001232 .count = ARRAY_SIZE(tuner_lg_ntsc_fm_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001233 },
1234 [TUNER_LG_PAL_FM] = { /* LGINNOTEK PAL */
1235 .name = "LG PAL_BG+FM (TPI8PSB01D)",
1236 .params = tuner_lg_pal_fm_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001237 .count = ARRAY_SIZE(tuner_lg_pal_fm_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001238 },
1239 [TUNER_LG_PAL] = { /* LGINNOTEK PAL */
1240 .name = "LG PAL_BG (TPI8PSB11D)",
1241 .params = tuner_lg_pal_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001242 .count = ARRAY_SIZE(tuner_lg_pal_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001243 },
1244
1245 /* 30-39 */
1246 [TUNER_TEMIC_4009FN5_MULTI_PAL_FM] = { /* TEMIC PAL */
1247 .name = "Temic PAL* auto + FM (4009 FN5)",
1248 .params = tuner_temic_4009_fn5_multi_pal_fm_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001249 .count = ARRAY_SIZE(tuner_temic_4009_fn5_multi_pal_fm_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001250 },
1251 [TUNER_SHARP_2U5JF5540_NTSC] = { /* SHARP NTSC */
1252 .name = "SHARP NTSC_JP (2U5JF5540)",
1253 .params = tuner_sharp_2u5jf5540_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001254 .count = ARRAY_SIZE(tuner_sharp_2u5jf5540_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001255 },
1256 [TUNER_Samsung_PAL_TCPM9091PD27] = { /* Samsung PAL */
1257 .name = "Samsung PAL TCPM9091PD27",
1258 .params = tuner_samsung_pal_tcpm9091pd27_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001259 .count = ARRAY_SIZE(tuner_samsung_pal_tcpm9091pd27_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001260 },
1261 [TUNER_MT2032] = { /* Microtune PAL|NTSC */
1262 .name = "MT20xx universal",
1263 /* see mt20xx.c for details */ },
1264 [TUNER_TEMIC_4106FH5] = { /* TEMIC PAL */
1265 .name = "Temic PAL_BG (4106 FH5)",
1266 .params = tuner_temic_4106fh5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001267 .count = ARRAY_SIZE(tuner_temic_4106fh5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001268 },
1269 [TUNER_TEMIC_4012FY5] = { /* TEMIC PAL */
1270 .name = "Temic PAL_DK/SECAM_L (4012 FY5)",
1271 .params = tuner_temic_4012fy5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001272 .count = ARRAY_SIZE(tuner_temic_4012fy5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001273 },
1274 [TUNER_TEMIC_4136FY5] = { /* TEMIC NTSC */
1275 .name = "Temic NTSC (4136 FY5)",
1276 .params = tuner_temic_4136_fy5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001277 .count = ARRAY_SIZE(tuner_temic_4136_fy5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001278 },
1279 [TUNER_LG_PAL_NEW_TAPC] = { /* LGINNOTEK PAL */
1280 .name = "LG PAL (newer TAPC series)",
1281 .params = tuner_lg_pal_new_tapc_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001282 .count = ARRAY_SIZE(tuner_lg_pal_new_tapc_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001283 },
1284 [TUNER_PHILIPS_FM1216ME_MK3] = { /* Philips PAL */
1285 .name = "Philips PAL/SECAM multi (FM1216ME MK3)",
1286 .params = tuner_fm1216me_mk3_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001287 .count = ARRAY_SIZE(tuner_fm1216me_mk3_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001288 },
1289 [TUNER_LG_NTSC_NEW_TAPC] = { /* LGINNOTEK NTSC */
1290 .name = "LG NTSC (newer TAPC series)",
1291 .params = tuner_lg_ntsc_new_tapc_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001292 .count = ARRAY_SIZE(tuner_lg_ntsc_new_tapc_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001293 },
1294
1295 /* 40-49 */
1296 [TUNER_HITACHI_NTSC] = { /* HITACHI NTSC */
1297 .name = "HITACHI V7-J180AT",
1298 .params = tuner_hitachi_ntsc_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001299 .count = ARRAY_SIZE(tuner_hitachi_ntsc_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001300 },
1301 [TUNER_PHILIPS_PAL_MK] = { /* Philips PAL */
1302 .name = "Philips PAL_MK (FI1216 MK)",
1303 .params = tuner_philips_pal_mk_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001304 .count = ARRAY_SIZE(tuner_philips_pal_mk_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001305 },
1306 [TUNER_PHILIPS_ATSC] = { /* Philips ATSC */
Michael Krufkyb8273632007-06-27 14:38:45 -03001307 .name = "Philips FCV1236D ATSC/NTSC dual in",
1308 .params = tuner_philips_fcv1236d_params,
1309 .count = ARRAY_SIZE(tuner_philips_fcv1236d_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001310 },
1311 [TUNER_PHILIPS_FM1236_MK3] = { /* Philips NTSC */
1312 .name = "Philips NTSC MK3 (FM1236MK3 or FM1236/F)",
1313 .params = tuner_fm1236_mk3_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001314 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001315 },
1316 [TUNER_PHILIPS_4IN1] = { /* Philips NTSC */
1317 .name = "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)",
1318 .params = tuner_philips_4in1_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001319 .count = ARRAY_SIZE(tuner_philips_4in1_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001320 },
1321 [TUNER_MICROTUNE_4049FM5] = { /* Microtune PAL */
1322 .name = "Microtune 4049 FM5",
1323 .params = tuner_microtune_4049_fm5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001324 .count = ARRAY_SIZE(tuner_microtune_4049_fm5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001325 },
1326 [TUNER_PANASONIC_VP27] = { /* Panasonic NTSC */
1327 .name = "Panasonic VP27s/ENGE4324D",
1328 .params = tuner_panasonic_vp27_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001329 .count = ARRAY_SIZE(tuner_panasonic_vp27_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001330 },
1331 [TUNER_LG_NTSC_TAPE] = { /* LGINNOTEK NTSC */
1332 .name = "LG NTSC (TAPE series)",
Hans Verkuil122b5db2006-12-03 06:45:07 -03001333 .params = tuner_fm1236_mk3_params,
1334 .count = ARRAY_SIZE(tuner_fm1236_mk3_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001335 },
1336 [TUNER_TNF_8831BGFF] = { /* Philips PAL */
1337 .name = "Tenna TNF 8831 BGFF)",
1338 .params = tuner_tnf_8831bgff_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001339 .count = ARRAY_SIZE(tuner_tnf_8831bgff_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001340 },
1341 [TUNER_MICROTUNE_4042FI5] = { /* Microtune NTSC */
1342 .name = "Microtune 4042 FI5 ATSC/NTSC dual in",
1343 .params = tuner_microtune_4042fi5_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001344 .count = ARRAY_SIZE(tuner_microtune_4042fi5_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001345 },
1346
1347 /* 50-59 */
1348 [TUNER_TCL_2002N] = { /* TCL NTSC */
1349 .name = "TCL 2002N",
1350 .params = tuner_tcl_2002n_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001351 .count = ARRAY_SIZE(tuner_tcl_2002n_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001352 },
1353 [TUNER_PHILIPS_FM1256_IH3] = { /* Philips PAL */
1354 .name = "Philips PAL/SECAM_D (FM 1256 I-H3)",
1355 .params = tuner_philips_fm1256_ih3_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001356 .count = ARRAY_SIZE(tuner_philips_fm1256_ih3_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001357 },
1358 [TUNER_THOMSON_DTT7610] = { /* THOMSON ATSC */
1359 .name = "Thomson DTT 7610 (ATSC/NTSC)",
1360 .params = tuner_thomson_dtt7610_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001361 .count = ARRAY_SIZE(tuner_thomson_dtt7610_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001362 },
1363 [TUNER_PHILIPS_FQ1286] = { /* Philips NTSC */
1364 .name = "Philips FQ1286",
1365 .params = tuner_philips_fq1286_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001366 .count = ARRAY_SIZE(tuner_philips_fq1286_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001367 },
1368 [TUNER_PHILIPS_TDA8290] = { /* Philips PAL|NTSC */
1369 .name = "tda8290+75",
1370 /* see tda8290.c for details */ },
1371 [TUNER_TCL_2002MB] = { /* TCL PAL */
1372 .name = "TCL 2002MB",
1373 .params = tuner_tcl_2002mb_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001374 .count = ARRAY_SIZE(tuner_tcl_2002mb_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001375 },
1376 [TUNER_PHILIPS_FQ1216AME_MK4] = { /* Philips PAL */
1377 .name = "Philips PAL/SECAM multi (FQ1216AME MK4)",
1378 .params = tuner_philips_fq1216ame_mk4_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001379 .count = ARRAY_SIZE(tuner_philips_fq1216ame_mk4_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001380 },
1381 [TUNER_PHILIPS_FQ1236A_MK4] = { /* Philips NTSC */
1382 .name = "Philips FQ1236A MK4",
1383 .params = tuner_philips_fq1236a_mk4_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001384 .count = ARRAY_SIZE(tuner_philips_fq1236a_mk4_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001385 },
1386 [TUNER_YMEC_TVF_8531MF] = { /* Philips NTSC */
1387 .name = "Ymec TVision TVF-8531MF/8831MF/8731MF",
1388 .params = tuner_ymec_tvf_8531mf_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001389 .count = ARRAY_SIZE(tuner_ymec_tvf_8531mf_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001390 },
1391 [TUNER_YMEC_TVF_5533MF] = { /* Philips NTSC */
1392 .name = "Ymec TVision TVF-5533MF",
1393 .params = tuner_ymec_tvf_5533mf_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001394 .count = ARRAY_SIZE(tuner_ymec_tvf_5533mf_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001395 },
1396
1397 /* 60-69 */
1398 [TUNER_THOMSON_DTT761X] = { /* THOMSON ATSC */
1399 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
1400 .name = "Thomson DTT 761X (ATSC/NTSC)",
1401 .params = tuner_thomson_dtt761x_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001402 .count = ARRAY_SIZE(tuner_thomson_dtt761x_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001403 },
1404 [TUNER_TENA_9533_DI] = { /* Philips PAL */
1405 .name = "Tena TNF9533-D/IF/TNF9533-B/DF",
1406 .params = tuner_tena_9533_di_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001407 .count = ARRAY_SIZE(tuner_tena_9533_di_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001408 },
1409 [TUNER_TEA5767] = { /* Philips RADIO */
1410 .name = "Philips TEA5767HN FM Radio",
1411 /* see tea5767.c for details */
1412 },
1413 [TUNER_PHILIPS_FMD1216ME_MK3] = { /* Philips PAL */
1414 .name = "Philips FMD1216ME MK3 Hybrid Tuner",
Michael Krufkycc925bb2006-01-23 17:11:11 -02001415 .params = tuner_philips_fmd1216me_mk3_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001416 .count = ARRAY_SIZE(tuner_philips_fmd1216me_mk3_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001417 },
Michael Krufky9c26c8b2006-04-27 01:29:17 -03001418 [TUNER_LG_TDVS_H06XF] = { /* LGINNOTEK ATSC */
Michael Krufkyd9e12f22006-04-22 16:15:11 -03001419 .name = "LG TDVS-H06xF", /* H061F, H062F & H064F */
Michael Krufky9c26c8b2006-04-27 01:29:17 -03001420 .params = tuner_lg_tdvs_h06xf_params,
1421 .count = ARRAY_SIZE(tuner_lg_tdvs_h06xf_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001422 },
1423 [TUNER_YMEC_TVF66T5_B_DFF] = { /* Philips PAL */
1424 .name = "Ymec TVF66T5-B/DFF",
1425 .params = tuner_ymec_tvf66t5_b_dff_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001426 .count = ARRAY_SIZE(tuner_ymec_tvf66t5_b_dff_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001427 },
Michael Krufkyf3629be2006-03-11 17:02:01 -03001428 [TUNER_LG_TALN] = { /* LGINNOTEK NTSC / PAL / SECAM */
1429 .name = "LG TALN series",
1430 .params = tuner_lg_taln_params,
1431 .count = ARRAY_SIZE(tuner_lg_taln_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001432 },
1433 [TUNER_PHILIPS_TD1316] = { /* Philips PAL */
1434 .name = "Philips TD1316 Hybrid Tuner",
1435 .params = tuner_philips_td1316_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001436 .count = ARRAY_SIZE(tuner_philips_td1316_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001437 },
1438 [TUNER_PHILIPS_TUV1236D] = { /* Philips ATSC */
1439 .name = "Philips TUV1236D ATSC/NTSC dual in",
Michael Krufkycc925bb2006-01-23 17:11:11 -02001440 .params = tuner_tuv1236d_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001441 .count = ARRAY_SIZE(tuner_tuv1236d_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001442 },
Mauro Carvalho Chehabefcf55c2006-03-09 11:17:43 -03001443 [TUNER_TNF_5335MF] = { /* Tenna PAL/NTSC */
1444 .name = "Tena TNF 5335 and similar models",
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001445 .params = tuner_tnf_5335mf_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001446 .count = ARRAY_SIZE(tuner_tnf_5335mf_params),
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001447 },
Hans Verkuilb3d37042006-01-13 14:10:25 -02001448
1449 /* 70-79 */
1450 [TUNER_SAMSUNG_TCPN_2121P30A] = { /* Samsung NTSC */
1451 .name = "Samsung TCPN 2121P30A",
1452 .params = tuner_samsung_tcpn_2121p30a_params,
Michael Krufkybbab6fd2006-02-06 09:15:11 -02001453 .count = ARRAY_SIZE(tuner_samsung_tcpn_2121p30a_params),
Hans Verkuilb3d37042006-01-13 14:10:25 -02001454 },
Mauro Carvalho Chehab12466572007-10-24 11:08:20 -03001455 [TUNER_XC2028] = { /* Xceive 2028 */
1456 .name = "Xceive xc2028/xc3028 tuner",
1457 /* see tuner-xc2028.c for details */
Markus Rechberger0004fd52006-02-27 00:07:27 -03001458 },
Michael Krufky91ae3292006-03-01 00:04:42 -03001459 [TUNER_THOMSON_FE6600] = { /* Thomson PAL / DVB-T */
1460 .name = "Thomson FE6600",
1461 .params = tuner_thomson_fe6600_params,
Michael Krufkyb1b168e2006-03-11 16:12:35 -03001462 .count = ARRAY_SIZE(tuner_thomson_fe6600_params),
Chris Pascoe780dfef2006-02-28 08:34:59 -03001463 },
Hans Verkuilc3449332006-04-19 18:50:35 -03001464 [TUNER_SAMSUNG_TCPG_6121P30A] = { /* Samsung PAL */
1465 .name = "Samsung TCPG 6121P30A",
1466 .params = tuner_samsung_tcpg_6121p30a_params,
1467 .count = ARRAY_SIZE(tuner_samsung_tcpg_6121p30a_params),
1468 },
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -03001469 [TUNER_TDA9887] = { /* Philips TDA 9887 IF PLL Demodulator.
1470 This chip is part of some modern tuners */
1471 .name = "Philips TDA988[5,6,7] IF PLL Demodulator",
1472 /* see tda9887.c for details */
1473 },
Mauro Carvalho Chehab8573a9e2007-04-08 01:09:11 -03001474 [TUNER_TEA5761] = { /* Philips RADIO */
1475 .name = "Philips TEA5761 FM Radio",
1476 /* see tea5767.c for details */
1477 },
Michael Krufky7b0ac9c2006-01-13 14:10:25 -02001478};
1479
1480unsigned const int tuner_count = ARRAY_SIZE(tuners);