blob: a3f8e83f53147fe3dd06f694837576f1a4a212d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07002 * $Id: tuner-simple.c,v 1.39 2005/07/07 01:49:30 mkrufky Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * i2c tv tuner chip device driver
5 * controls all those simple 4-control-bytes style tuners.
6 */
7#include <linux/delay.h>
8#include <linux/i2c.h>
9#include <linux/videodev.h>
10#include <media/tuner.h>
11
12/* ---------------------------------------------------------------------- */
13
14/* tv standard selection for Temic 4046 FM5
15 this value takes the low bits of control byte 2
16 from datasheet Rev.01, Feb.00
17 standard BG I L L2 D
18 picture IF 38.9 38.9 38.9 33.95 38.9
19 sound 1 33.4 32.9 32.4 40.45 32.4
20 sound 2 33.16
21 NICAM 33.05 32.348 33.05 33.05
22 */
23#define TEMIC_SET_PAL_I 0x05
24#define TEMIC_SET_PAL_DK 0x09
25#define TEMIC_SET_PAL_L 0x0a // SECAM ?
26#define TEMIC_SET_PAL_L2 0x0b // change IF !
27#define TEMIC_SET_PAL_BG 0x0c
28
29/* tv tuner system standard selection for Philips FQ1216ME
30 this value takes the low bits of control byte 2
31 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
32 standard BG DK I L L`
33 picture carrier 38.90 38.90 38.90 38.90 33.95
34 colour 34.47 34.47 34.47 34.47 38.38
35 sound 1 33.40 32.40 32.90 32.40 40.45
36 sound 2 33.16 - - - -
37 NICAM 33.05 33.05 32.35 33.05 39.80
38 */
39#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
40#define PHILIPS_SET_PAL_BGDK 0x09
41#define PHILIPS_SET_PAL_L2 0x0a
42#define PHILIPS_SET_PAL_L 0x0b
43
44/* system switching for Philips FI1216MF MK2
45 from datasheet "1996 Jul 09",
46 standard BG L L'
47 picture carrier 38.90 38.90 33.95
48 colour 34.47 34.37 38.38
49 sound 1 33.40 32.40 40.45
50 sound 2 33.16 - -
51 NICAM 33.05 33.05 39.80
52 */
53#define PHILIPS_MF_SET_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
54#define PHILIPS_MF_SET_PAL_L 0x03 // France
55#define PHILIPS_MF_SET_PAL_L2 0x02 // L'
56
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070057/* Control byte */
58
59#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
60#define TUNER_RATIO_SELECT_50 0x00
61#define TUNER_RATIO_SELECT_32 0x02
62#define TUNER_RATIO_SELECT_166 0x04
63#define TUNER_RATIO_SELECT_62 0x06
64
65#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
66
67/* Status byte */
68
69#define TUNER_POR 0x80
70#define TUNER_FL 0x40
71#define TUNER_MODE 0x38
72#define TUNER_AFC 0x07
73#define TUNER_SIGNAL 0x07
74#define TUNER_STEREO 0x10
75
76#define TUNER_PLL_LOCKED 0x40
77#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* ---------------------------------------------------------------------- */
80
81struct tunertype
82{
83 char *name;
84 unsigned char Vendor;
85 unsigned char Type;
86
87 unsigned short thresh1; /* band switch VHF_LO <=> VHF_HI */
88 unsigned short thresh2; /* band switch VHF_HI <=> UHF */
89 unsigned char VHF_L;
90 unsigned char VHF_H;
91 unsigned char UHF;
92 unsigned char config;
93 unsigned short IFPCoff; /* 622.4=16*38.90 MHz PAL,
94 732 =16*45.75 NTSCi,
95 940 =16*58.75 NTSC-Japan
96 704 =16*44 ATSC */
97};
98
99/*
100 * The floats in the tuner struct are computed at compile time
101 * by gcc and cast back to integers. Thus we don't violate the
102 * "no float in kernel" rule.
103 */
104static struct tunertype tuners[] = {
105 { "Temic PAL (4002 FH5)", TEMIC, PAL,
106 16*140.25,16*463.25,0x02,0x04,0x01,0x8e,623},
107 { "Philips PAL_I (FI1246 and compatibles)", Philips, PAL_I,
108 16*140.25,16*463.25,0xa0,0x90,0x30,0x8e,623},
109 { "Philips NTSC (FI1236,FM1236 and compatibles)", Philips, NTSC,
110 16*157.25,16*451.25,0xA0,0x90,0x30,0x8e,732},
111 { "Philips (SECAM+PAL_BG) (FI1216MF, FM1216MF, FR1216MF)", Philips, SECAM,
112 16*168.25,16*447.25,0xA7,0x97,0x37,0x8e,623},
113
114 { "NoTuner", NoTuner, NOTUNER,
115 0,0,0x00,0x00,0x00,0x00,0x00},
116 { "Philips PAL_BG (FI1216 and compatibles)", Philips, PAL,
117 16*168.25,16*447.25,0xA0,0x90,0x30,0x8e,623},
118 { "Temic NTSC (4032 FY5)", TEMIC, NTSC,
119 16*157.25,16*463.25,0x02,0x04,0x01,0x8e,732},
120 { "Temic PAL_I (4062 FY5)", TEMIC, PAL_I,
121 16*170.00,16*450.00,0x02,0x04,0x01,0x8e,623},
122
123 { "Temic NTSC (4036 FY5)", TEMIC, NTSC,
124 16*157.25,16*463.25,0xa0,0x90,0x30,0x8e,732},
125 { "Alps HSBH1", TEMIC, NTSC,
126 16*137.25,16*385.25,0x01,0x02,0x08,0x8e,732},
127 { "Alps TSBE1",TEMIC,PAL,
128 16*137.25,16*385.25,0x01,0x02,0x08,0x8e,732},
129 { "Alps TSBB5", Alps, PAL_I, /* tested (UK UHF) with Modulartech MM205 */
130 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,632},
131
132 { "Alps TSBE5", Alps, PAL, /* untested - data sheet guess. Only IF differs. */
133 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,622},
134 { "Alps TSBC5", Alps, PAL, /* untested - data sheet guess. Only IF differs. */
135 16*133.25,16*351.25,0x01,0x02,0x08,0x8e,608},
136 { "Temic PAL_BG (4006FH5)", TEMIC, PAL,
137 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
138 { "Alps TSCH6",Alps,NTSC,
139 16*137.25,16*385.25,0x14,0x12,0x11,0x8e,732},
140
141 { "Temic PAL_DK (4016 FY5)",TEMIC,PAL,
142 16*168.25,16*456.25,0xa0,0x90,0x30,0x8e,623},
143 { "Philips NTSC_M (MK2)",Philips,NTSC,
144 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732},
145 { "Temic PAL_I (4066 FY5)", TEMIC, PAL_I,
146 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
147 { "Temic PAL* auto (4006 FN5)", TEMIC, PAL,
148 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
149
150 { "Temic PAL_BG (4009 FR5) or PAL_I (4069 FR5)", TEMIC, PAL,
151 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
152 { "Temic NTSC (4039 FR5)", TEMIC, NTSC,
153 16*158.00, 16*453.00, 0xa0,0x90,0x30,0x8e,732},
154 { "Temic PAL/SECAM multi (4046 FM5)", TEMIC, PAL,
155 16*169.00, 16*454.00, 0xa0,0x90,0x30,0x8e,623},
156 { "Philips PAL_DK (FI1256 and compatibles)", Philips, PAL,
157 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
158
159 { "Philips PAL/SECAM multi (FQ1216ME)", Philips, PAL,
160 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
161 { "LG PAL_I+FM (TAPC-I001D)", LGINNOTEK, PAL_I,
162 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
163 { "LG PAL_I (TAPC-I701D)", LGINNOTEK, PAL_I,
164 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
165 { "LG NTSC+FM (TPI8NSR01F)", LGINNOTEK, NTSC,
166 16*210.00,16*497.00,0xa0,0x90,0x30,0x8e,732},
167
168 { "LG PAL_BG+FM (TPI8PSB01D)", LGINNOTEK, PAL,
169 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
170 { "LG PAL_BG (TPI8PSB11D)", LGINNOTEK, PAL,
171 16*170.00,16*450.00,0xa0,0x90,0x30,0x8e,623},
172 { "Temic PAL* auto + FM (4009 FN5)", TEMIC, PAL,
173 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
174 { "SHARP NTSC_JP (2U5JF5540)", SHARP, NTSC, /* 940=16*58.75 NTSC@Japan */
175 16*137.25,16*317.25,0x01,0x02,0x08,0x8e,940 },
176
177 { "Samsung PAL TCPM9091PD27", Samsung, PAL, /* from sourceforge v3tv */
178 16*169,16*464,0xA0,0x90,0x30,0x8e,623},
179 { "MT20xx universal", Microtune,PAL|NTSC,
180 /* see mt20xx.c for details */ },
181 { "Temic PAL_BG (4106 FH5)", TEMIC, PAL,
182 16*141.00, 16*464.00, 0xa0,0x90,0x30,0x8e,623},
183 { "Temic PAL_DK/SECAM_L (4012 FY5)", TEMIC, PAL,
184 16*140.25, 16*463.25, 0x02,0x04,0x01,0x8e,623},
185
186 { "Temic NTSC (4136 FY5)", TEMIC, NTSC,
187 16*158.00, 16*453.00, 0xa0,0x90,0x30,0x8e,732},
188 { "LG PAL (newer TAPC series)", LGINNOTEK, PAL,
189 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,623},
190 { "Philips PAL/SECAM multi (FM1216ME MK3)", Philips, PAL,
191 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,623 },
192 { "LG NTSC (newer TAPC series)", LGINNOTEK, NTSC,
193 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,732},
194
195 { "HITACHI V7-J180AT", HITACHI, NTSC,
196 16*170.00, 16*450.00, 0x01,0x02,0x08,0x8e,940 },
197 { "Philips PAL_MK (FI1216 MK)", Philips, PAL,
198 16*140.25,16*463.25,0x01,0xc2,0xcf,0x8e,623},
199 { "Philips 1236D ATSC/NTSC daul in",Philips,ATSC,
200 16*157.25,16*454.00,0xa0,0x90,0x30,0x8e,732},
201 { "Philips NTSC MK3 (FM1236MK3 or FM1236/F)", Philips, NTSC,
202 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732},
203
204 { "Philips 4 in 1 (ATI TV Wonder Pro/Conexant)", Philips, NTSC,
205 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732},
206 { "Microtune 4049 FM5",Microtune,PAL,
207 16*141.00,16*464.00,0xa0,0x90,0x30,0x8e,623},
208 { "Panasonic VP27s/ENGE4324D", Panasonic, NTSC,
209 16*160.00,16*454.00,0x01,0x02,0x08,0xce,940},
210 { "LG NTSC (TAPE series)", LGINNOTEK, NTSC,
211 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 },
212
213 { "Tenna TNF 8831 BGFF)", Philips, PAL,
214 16*161.25,16*463.25,0xa0,0x90,0x30,0x8e,623},
215 { "Microtune 4042 FI5 ATSC/NTSC dual in", Microtune, NTSC,
216 16*162.00,16*457.00,0xa2,0x94,0x31,0x8e,732},
217 { "TCL 2002N", TCL, NTSC,
218 16*172.00,16*448.00,0x01,0x02,0x08,0x8e,732},
219 { "Philips PAL/SECAM_D (FM 1256 I-H3)", Philips, PAL,
220 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,623 },
221
222 { "Thomson DDT 7610 (ATSC/NTSC)", THOMSON, ATSC,
223 16*157.25,16*454.00,0x39,0x3a,0x3c,0x8e,732},
224 { "Philips FQ1286", Philips, NTSC,
225 16*160.00,16*454.00,0x41,0x42,0x04,0x8e,940}, // UHF band untested
226 { "tda8290+75", Philips,PAL|NTSC,
227 /* see tda8290.c for details */ },
228 { "LG PAL (TAPE series)", LGINNOTEK, PAL,
229 16*170.00, 16*450.00, 0x01,0x02,0x08,0xce,623},
230
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700231 { "Philips PAL/SECAM multi (FQ1216AME MK4)", Philips, PAL,
232 16*160.00,16*442.00,0x01,0x02,0x04,0xce,623 },
233 { "Philips FQ1236A MK4", Philips, NTSC,
234 16*160.00,16*442.00,0x01,0x02,0x04,0x8e,732 },
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700235 { "Ymec TVision TVF-8531MF/8831MF/8731MF", Philips, NTSC,
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700236 16*160.00,16*454.00,0xa0,0x90,0x30,0x8e,732},
237 { "Ymec TVision TVF-5533MF", Philips, NTSC,
238 16*160.00,16*454.00,0x01,0x02,0x04,0x8e,732},
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700239
Michael Krufky3c1d0182005-06-23 22:04:56 -0700240 { "Thomson DDT 7611 (ATSC/NTSC)", THOMSON, ATSC,
241 16*157.25,16*454.00,0x39,0x3a,0x3c,0x8e,732},
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700242 { "Tena TNF9533-D/IF/TNF9533-B/DF", Philips, PAL,
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700243 16*160.25,16*464.25,0x01,0x02,0x04,0x8e,623},
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700244 { "Philips TEA5767HN FM Radio", Philips, RADIO,
245 /* see tea5767.c for details */},
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700246 { "Philips FMD1216ME MK3 Hybrid Tuner", Philips, PAL,
247 16*160.00,16*442.00,0x51,0x52,0x54,0x86,623 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248};
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250unsigned const int tuner_count = ARRAY_SIZE(tuners);
251
252/* ---------------------------------------------------------------------- */
253
254static int tuner_getstatus(struct i2c_client *c)
255{
256 unsigned char byte;
257
258 if (1 != i2c_master_recv(c,&byte,1))
259 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return byte;
262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264static int tuner_signal(struct i2c_client *c)
265{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700266 return (tuner_getstatus(c) & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269static int tuner_stereo(struct i2c_client *c)
270{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700271 int stereo, status;
272 struct tuner *t = i2c_get_clientdata(c);
273
274 status = tuner_getstatus (c);
275
276 switch (t->type) {
277 case TUNER_PHILIPS_FM1216ME_MK3:
278 case TUNER_PHILIPS_FM1236_MK3:
279 case TUNER_PHILIPS_FM1256_IH3:
280 stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
281 break;
282 default:
283 stereo = status & TUNER_STEREO;
284 }
285
286 return stereo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290/* ---------------------------------------------------------------------- */
291
292static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
293{
294 struct tuner *t = i2c_get_clientdata(c);
295 u8 config;
296 u16 div;
297 struct tunertype *tun;
298 unsigned char buffer[4];
299 int rc;
300
301 tun = &tuners[t->type];
302 if (freq < tun->thresh1) {
303 config = tun->VHF_L;
304 tuner_dbg("tv: VHF lowrange\n");
305 } else if (freq < tun->thresh2) {
306 config = tun->VHF_H;
307 tuner_dbg("tv: VHF high range\n");
308 } else {
309 config = tun->UHF;
310 tuner_dbg("tv: UHF range\n");
311 }
312
313
314 /* tv norm specific stuff for multi-norm tuners */
315 switch (t->type) {
316 case TUNER_PHILIPS_SECAM: // FI1216MF
317 /* 0x01 -> ??? no change ??? */
318 /* 0x02 -> PAL BDGHI / SECAM L */
319 /* 0x04 -> ??? PAL others / SECAM others ??? */
320 config &= ~0x02;
321 if (t->std & V4L2_STD_SECAM)
322 config |= 0x02;
323 break;
324
325 case TUNER_TEMIC_4046FM5:
326 config &= ~0x0f;
327
328 if (t->std & V4L2_STD_PAL_BG) {
329 config |= TEMIC_SET_PAL_BG;
330
331 } else if (t->std & V4L2_STD_PAL_I) {
332 config |= TEMIC_SET_PAL_I;
333
334 } else if (t->std & V4L2_STD_PAL_DK) {
335 config |= TEMIC_SET_PAL_DK;
336
337 } else if (t->std & V4L2_STD_SECAM_L) {
338 config |= TEMIC_SET_PAL_L;
339
340 }
341 break;
342
343 case TUNER_PHILIPS_FQ1216ME:
344 config &= ~0x0f;
345
346 if (t->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
347 config |= PHILIPS_SET_PAL_BGDK;
348
349 } else if (t->std & V4L2_STD_PAL_I) {
350 config |= PHILIPS_SET_PAL_I;
351
352 } else if (t->std & V4L2_STD_SECAM_L) {
353 config |= PHILIPS_SET_PAL_L;
354
355 }
356 break;
357
358 case TUNER_PHILIPS_ATSC:
359 /* 0x00 -> ATSC antenna input 1 */
360 /* 0x01 -> ATSC antenna input 2 */
361 /* 0x02 -> NTSC antenna input 1 */
362 /* 0x03 -> NTSC antenna input 2 */
363 config &= ~0x03;
364 if (!(t->std & V4L2_STD_ATSC))
365 config |= 2;
366 /* FIXME: input */
367 break;
368
369 case TUNER_MICROTUNE_4042FI5:
370 /* Set the charge pump for fast tuning */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700371 tun->config |= TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 break;
373 }
374
375 /*
376 * Philips FI1216MK2 remark from specification :
377 * for channel selection involving band switching, and to ensure
378 * smooth tuning to the desired channel without causing
379 * unnecessary charge pump action, it is recommended to consider
380 * the difference between wanted channel frequency and the
381 * current channel frequency. Unnecessary charge pump action
382 * will result in very low tuning voltage which may drive the
383 * oscillator to extreme conditions.
384 *
385 * Progfou: specification says to send config data before
386 * frequency in case (wanted frequency < current frequency).
387 */
388
389 div=freq + tun->IFPCoff;
390 if (t->type == TUNER_PHILIPS_SECAM && freq < t->freq) {
391 buffer[0] = tun->config;
392 buffer[1] = config;
393 buffer[2] = (div>>8) & 0x7f;
394 buffer[3] = div & 0xff;
395 } else {
396 buffer[0] = (div>>8) & 0x7f;
397 buffer[1] = div & 0xff;
398 buffer[2] = tun->config;
399 buffer[3] = config;
400 }
401 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
402 buffer[0],buffer[1],buffer[2],buffer[3]);
403
404 if (4 != (rc = i2c_master_send(c,buffer,4)))
405 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
406
407 if (t->type == TUNER_MICROTUNE_4042FI5) {
408 // FIXME - this may also work for other tuners
409 unsigned long timeout = jiffies + msecs_to_jiffies(1);
410 u8 status_byte = 0;
411
412 /* Wait until the PLL locks */
413 for (;;) {
414 if (time_after(jiffies,timeout))
415 return;
416 if (1 != (rc = i2c_master_recv(c,&status_byte,1))) {
417 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc);
418 break;
419 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700420 if (status_byte & TUNER_PLL_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 break;
422 udelay(10);
423 }
424
425 /* Set the charge pump for optimized phase noise figure */
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700426 tun->config &= ~TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 buffer[0] = (div>>8) & 0x7f;
428 buffer[1] = div & 0xff;
429 buffer[2] = tun->config;
430 buffer[3] = config;
431 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
432 buffer[0],buffer[1],buffer[2],buffer[3]);
433
434 if (4 != (rc = i2c_master_send(c,buffer,4)))
435 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
436 }
437}
438
439static void default_set_radio_freq(struct i2c_client *c, unsigned int freq)
440{
441 struct tunertype *tun;
442 struct tuner *t = i2c_get_clientdata(c);
443 unsigned char buffer[4];
444 unsigned div;
445 int rc;
446
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700447 tun = &tuners[t->type];
448 div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */
449 buffer[2] = (tun->config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 switch (t->type) {
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700452 case TUNER_TENA_9533_DI:
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700453 case TUNER_YMEC_TVF_5533MF:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700454 tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n");
455 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 case TUNER_PHILIPS_FM1216ME_MK3:
457 case TUNER_PHILIPS_FM1236_MK3:
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700458 case TUNER_PHILIPS_FMD1216ME_MK3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 buffer[3] = 0x19;
460 break;
461 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700462 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 buffer[3] = 0x19;
464 break;
465 case TUNER_LG_PAL_FM:
466 buffer[3] = 0xa5;
467 break;
468 default:
469 buffer[3] = 0xa4;
470 break;
471 }
472 buffer[0] = (div>>8) & 0x7f;
473 buffer[1] = div & 0xff;
474
475 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
476 buffer[0],buffer[1],buffer[2],buffer[3]);
477
478 if (4 != (rc = i2c_master_send(c,buffer,4)))
479 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
480}
481
482int default_tuner_init(struct i2c_client *c)
483{
484 struct tuner *t = i2c_get_clientdata(c);
485
486 tuner_info("type set to %d (%s)\n",
487 t->type, tuners[t->type].name);
488 strlcpy(c->name, tuners[t->type].name, sizeof(c->name));
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 t->tv_freq = default_set_tv_freq;
491 t->radio_freq = default_set_radio_freq;
492 t->has_signal = tuner_signal;
493 t->is_stereo = tuner_stereo;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return 0;
496}
497
498/*
499 * Overrides for Emacs so that we follow Linus's tabbing style.
500 * ---------------------------------------------------------------------------
501 * Local variables:
502 * c-basic-offset: 8
503 * End:
504 */