3 * i2c tv tuner chip device driver
4 * controls all those simple 4-control-bytes style tuners.
6 #include <linux/delay.h>
8 #include <linux/videodev.h>
9 #include <media/tuner.h>
11 static int offset = 0;
12 module_param(offset, int, 0666);
13 MODULE_PARM_DESC(offset,"Allows to specify an offset for tuner");
15 /* ---------------------------------------------------------------------- */
17 /* tv standard selection for Temic 4046 FM5
18 this value takes the low bits of control byte 2
19 from datasheet Rev.01, Feb.00
21 picture IF 38.9 38.9 38.9 33.95 38.9
22 sound 1 33.4 32.9 32.4 40.45 32.4
24 NICAM 33.05 32.348 33.05 33.05
26 #define TEMIC_SET_PAL_I 0x05
27 #define TEMIC_SET_PAL_DK 0x09
28 #define TEMIC_SET_PAL_L 0x0a // SECAM ?
29 #define TEMIC_SET_PAL_L2 0x0b // change IF !
30 #define TEMIC_SET_PAL_BG 0x0c
32 /* tv tuner system standard selection for Philips FQ1216ME
33 this value takes the low bits of control byte 2
34 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
36 picture carrier 38.90 38.90 38.90 38.90 33.95
37 colour 34.47 34.47 34.47 34.47 38.38
38 sound 1 33.40 32.40 32.90 32.40 40.45
40 NICAM 33.05 33.05 32.35 33.05 39.80
42 #define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
43 #define PHILIPS_SET_PAL_BGDK 0x09
44 #define PHILIPS_SET_PAL_L2 0x0a
45 #define PHILIPS_SET_PAL_L 0x0b
47 /* system switching for Philips FI1216MF MK2
48 from datasheet "1996 Jul 09",
50 picture carrier 38.90 38.90 33.95
51 colour 34.47 34.37 38.38
52 sound 1 33.40 32.40 40.45
54 NICAM 33.05 33.05 39.80
56 #define PHILIPS_MF_SET_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
57 #define PHILIPS_MF_SET_PAL_L 0x03 // France
58 #define PHILIPS_MF_SET_PAL_L2 0x02 // L'
62 #define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
63 #define TUNER_RATIO_SELECT_50 0x00
64 #define TUNER_RATIO_SELECT_32 0x02
65 #define TUNER_RATIO_SELECT_166 0x04
66 #define TUNER_RATIO_SELECT_62 0x06
68 #define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
72 #define TUNER_POR 0x80
74 #define TUNER_MODE 0x38
75 #define TUNER_AFC 0x07
76 #define TUNER_SIGNAL 0x07
77 #define TUNER_STEREO 0x10
79 #define TUNER_PLL_LOCKED 0x40
80 #define TUNER_STEREO_MK3 0x04
82 /* ---------------------------------------------------------------------- */
84 static int tuner_getstatus(struct i2c_client *c)
88 if (1 != i2c_master_recv(c,&byte,1))
94 static int tuner_signal(struct i2c_client *c)
96 return (tuner_getstatus(c) & TUNER_SIGNAL) << 13;
99 static int tuner_stereo(struct i2c_client *c)
102 struct tuner *t = i2c_get_clientdata(c);
104 status = tuner_getstatus (c);
107 case TUNER_PHILIPS_FM1216ME_MK3:
108 case TUNER_PHILIPS_FM1236_MK3:
109 case TUNER_PHILIPS_FM1256_IH3:
110 stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
113 stereo = status & TUNER_STEREO;
120 /* ---------------------------------------------------------------------- */
122 static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
124 struct tuner *t = i2c_get_clientdata(c);
125 u8 config, cb, tuneraddr;
127 struct tunertype *tun;
129 int rc, IFPCoff, i, j;
130 enum param_type desired_type;
132 tun = &tuners[t->type];
134 /* IFPCoff = Video Intermediate Frequency - Vif:
135 940 =16*58.75 NTSC/J (Japan)
136 732 =16*45.75 M/N STD
137 704 =16*44 ATSC (at DVB code)
139 622.4=16*38.90 B/G D/K I, L STD
140 592 =16*37.00 D China
141 590 =16.36.875 B Australia
142 543.2=16*33.95 L' STD
143 171.2=16*10.70 FM Radio (at set_radio_freq)
146 if (t->std == V4L2_STD_NTSC_M_JP) {
148 desired_type = TUNER_PARAM_TYPE_NTSC;
149 } else if ((t->std & V4L2_STD_MN) &&
150 !(t->std & ~V4L2_STD_MN)) {
152 desired_type = TUNER_PARAM_TYPE_NTSC;
153 } else if (t->std == V4L2_STD_SECAM_LC) {
155 desired_type = TUNER_PARAM_TYPE_SECAM;
158 desired_type = TUNER_PARAM_TYPE_PAL;
161 for (j = 0; j < tun->count-1; j++) {
162 if (desired_type != tun->params[j].type)
166 /* use default tuner_params if desired_type not available */
167 if (desired_type != tun->params[j].type) {
168 tuner_dbg("IFPCoff = %d: tuner_params undefined for tuner %d\n",
173 for (i = 0; i < tun->params[j].count; i++) {
174 if (freq > tun->params[j].ranges[i].limit)
178 if (i == tun->params[j].count) {
179 tuner_dbg("TV frequency out of range (%d > %d)",
180 freq, tun->params[j].ranges[i - 1].limit);
181 freq = tun->params[j].ranges[--i].limit;
183 config = tun->params[j].ranges[i].config;
184 cb = tun->params[j].ranges[i].cb;
188 tuner_dbg("tv: param %d, range %d\n",j,i);
190 div=freq + IFPCoff + offset;
192 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, Offset=%d.%02d MHz, div=%0d\n",
193 freq / 16, freq % 16 * 100 / 16,
194 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
195 offset / 16, offset % 16 * 100 / 16,
198 /* tv norm specific stuff for multi-norm tuners */
200 case TUNER_PHILIPS_SECAM: // FI1216MF
201 /* 0x01 -> ??? no change ??? */
202 /* 0x02 -> PAL BDGHI / SECAM L */
203 /* 0x04 -> ??? PAL others / SECAM others ??? */
205 if (t->std & V4L2_STD_SECAM)
209 case TUNER_TEMIC_4046FM5:
212 if (t->std & V4L2_STD_PAL_BG) {
213 cb |= TEMIC_SET_PAL_BG;
215 } else if (t->std & V4L2_STD_PAL_I) {
216 cb |= TEMIC_SET_PAL_I;
218 } else if (t->std & V4L2_STD_PAL_DK) {
219 cb |= TEMIC_SET_PAL_DK;
221 } else if (t->std & V4L2_STD_SECAM_L) {
222 cb |= TEMIC_SET_PAL_L;
227 case TUNER_PHILIPS_FQ1216ME:
230 if (t->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
231 cb |= PHILIPS_SET_PAL_BGDK;
233 } else if (t->std & V4L2_STD_PAL_I) {
234 cb |= PHILIPS_SET_PAL_I;
236 } else if (t->std & V4L2_STD_SECAM_L) {
237 cb |= PHILIPS_SET_PAL_L;
242 case TUNER_PHILIPS_ATSC:
243 /* 0x00 -> ATSC antenna input 1 */
244 /* 0x01 -> ATSC antenna input 2 */
245 /* 0x02 -> NTSC antenna input 1 */
246 /* 0x03 -> NTSC antenna input 2 */
248 if (!(t->std & V4L2_STD_ATSC))
253 case TUNER_MICROTUNE_4042FI5:
254 /* Set the charge pump for fast tuning */
255 config |= TUNER_CHARGE_PUMP;
258 case TUNER_PHILIPS_TUV1236D:
259 /* 0x40 -> ATSC antenna input 1 */
260 /* 0x48 -> ATSC antenna input 2 */
261 /* 0x00 -> NTSC antenna input 1 */
262 /* 0x08 -> NTSC antenna input 2 */
268 if (t->std & V4L2_STD_ATSC) {
272 /* set to the correct mode (analog or digital) */
275 if (2 != (rc = i2c_master_send(c,&buffer[0],2)))
276 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
277 if (2 != (rc = i2c_master_send(c,&buffer[2],2)))
278 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
284 if (tuners[t->type].params->cb_first_if_lower_freq && div < t->last_div) {
287 buffer[2] = (div>>8) & 0x7f;
288 buffer[3] = div & 0xff;
290 buffer[0] = (div>>8) & 0x7f;
291 buffer[1] = div & 0xff;
296 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
297 buffer[0],buffer[1],buffer[2],buffer[3]);
299 if (4 != (rc = i2c_master_send(c,buffer,4)))
300 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
302 if (t->type == TUNER_MICROTUNE_4042FI5) {
303 // FIXME - this may also work for other tuners
304 unsigned long timeout = jiffies + msecs_to_jiffies(1);
307 /* Wait until the PLL locks */
309 if (time_after(jiffies,timeout))
311 if (1 != (rc = i2c_master_recv(c,&status_byte,1))) {
312 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc);
315 if (status_byte & TUNER_PLL_LOCKED)
320 /* Set the charge pump for optimized phase noise figure */
321 config &= ~TUNER_CHARGE_PUMP;
322 buffer[0] = (div>>8) & 0x7f;
323 buffer[1] = div & 0xff;
326 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
327 buffer[0],buffer[1],buffer[2],buffer[3]);
329 if (4 != (rc = i2c_master_send(c,buffer,4)))
330 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
334 static void default_set_radio_freq(struct i2c_client *c, unsigned int freq)
336 struct tunertype *tun;
337 struct tuner *t = i2c_get_clientdata(c);
341 enum param_type desired_type = TUNER_PARAM_TYPE_RADIO;
343 tun = &tuners[t->type];
345 for (j = 0; j < tun->count-1; j++) {
346 if (desired_type != tun->params[j].type)
350 /* use default tuner_params if desired_type not available */
351 if (desired_type != tun->params[j].type)
354 div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */
355 buffer[2] = (tun->params[j].ranges[0].config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */
358 case TUNER_TENA_9533_DI:
359 case TUNER_YMEC_TVF_5533MF:
360 tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n");
362 case TUNER_PHILIPS_FM1216ME_MK3:
363 case TUNER_PHILIPS_FM1236_MK3:
364 case TUNER_PHILIPS_FMD1216ME_MK3:
367 case TUNER_TNF_5335MF:
370 case TUNER_PHILIPS_FM1256_IH3:
371 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
374 case TUNER_LG_PAL_FM:
377 case TUNER_MICROTUNE_4049FM5:
378 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
385 buffer[0] = (div>>8) & 0x7f;
386 buffer[1] = div & 0xff;
387 if (tuners[t->type].params->cb_first_if_lower_freq && div < t->last_div) {
388 buffer[0] = buffer[2];
389 buffer[1] = buffer[3];
390 buffer[2] = (div>>8) & 0x7f;
391 buffer[3] = div & 0xff;
393 buffer[0] = (div>>8) & 0x7f;
394 buffer[1] = div & 0xff;
397 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
398 buffer[0],buffer[1],buffer[2],buffer[3]);
401 if (4 != (rc = i2c_master_send(c,buffer,4)))
402 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
405 int default_tuner_init(struct i2c_client *c)
407 struct tuner *t = i2c_get_clientdata(c);
409 tuner_info("type set to %d (%s)\n",
410 t->type, tuners[t->type].name);
411 strlcpy(c->name, tuners[t->type].name, sizeof(c->name));
413 t->set_tv_freq = default_set_tv_freq;
414 t->set_radio_freq = default_set_radio_freq;
415 t->has_signal = tuner_signal;
416 t->is_stereo = tuner_stereo;
423 * Overrides for Emacs so that we follow Linus's tabbing style.
424 * ---------------------------------------------------------------------------