blob: 63db4e97ae6ce57a6003d55b0b0c6a187cc46e6e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * i2c tv tuner chip device driver
4 * controls all those simple 4-control-bytes style tuners.
5 */
6#include <linux/delay.h>
7#include <linux/i2c.h>
8#include <linux/videodev.h>
9#include <media/tuner.h>
Hans Verkuilba8fc392006-06-25 15:34:39 -030010#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -020012static int offset = 0;
Mauro Carvalho Chehab4d988162006-08-12 21:59:19 -030013module_param(offset, int, 0664);
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -020014MODULE_PARM_DESC(offset,"Allows to specify an offset for tuner");
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016/* ---------------------------------------------------------------------- */
17
18/* tv standard selection for Temic 4046 FM5
19 this value takes the low bits of control byte 2
20 from datasheet Rev.01, Feb.00
21 standard BG I L L2 D
22 picture IF 38.9 38.9 38.9 33.95 38.9
23 sound 1 33.4 32.9 32.4 40.45 32.4
24 sound 2 33.16
25 NICAM 33.05 32.348 33.05 33.05
26 */
27#define TEMIC_SET_PAL_I 0x05
28#define TEMIC_SET_PAL_DK 0x09
29#define TEMIC_SET_PAL_L 0x0a // SECAM ?
30#define TEMIC_SET_PAL_L2 0x0b // change IF !
31#define TEMIC_SET_PAL_BG 0x0c
32
33/* tv tuner system standard selection for Philips FQ1216ME
34 this value takes the low bits of control byte 2
35 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
36 standard BG DK I L L`
37 picture carrier 38.90 38.90 38.90 38.90 33.95
38 colour 34.47 34.47 34.47 34.47 38.38
39 sound 1 33.40 32.40 32.90 32.40 40.45
40 sound 2 33.16 - - - -
41 NICAM 33.05 33.05 32.35 33.05 39.80
42 */
43#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
44#define PHILIPS_SET_PAL_BGDK 0x09
45#define PHILIPS_SET_PAL_L2 0x0a
46#define PHILIPS_SET_PAL_L 0x0b
47
48/* system switching for Philips FI1216MF MK2
49 from datasheet "1996 Jul 09",
50 standard BG L L'
51 picture carrier 38.90 38.90 33.95
52 colour 34.47 34.37 38.38
53 sound 1 33.40 32.40 40.45
54 sound 2 33.16 - -
55 NICAM 33.05 33.05 39.80
56 */
57#define PHILIPS_MF_SET_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
58#define PHILIPS_MF_SET_PAL_L 0x03 // France
59#define PHILIPS_MF_SET_PAL_L2 0x02 // L'
60
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070061/* Control byte */
62
63#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
64#define TUNER_RATIO_SELECT_50 0x00
65#define TUNER_RATIO_SELECT_32 0x02
66#define TUNER_RATIO_SELECT_166 0x04
67#define TUNER_RATIO_SELECT_62 0x06
68
69#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
70
71/* Status byte */
72
73#define TUNER_POR 0x80
74#define TUNER_FL 0x40
75#define TUNER_MODE 0x38
76#define TUNER_AFC 0x07
77#define TUNER_SIGNAL 0x07
78#define TUNER_STEREO 0x10
79
80#define TUNER_PLL_LOCKED 0x40
81#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* ---------------------------------------------------------------------- */
84
85static int tuner_getstatus(struct i2c_client *c)
86{
87 unsigned char byte;
88
89 if (1 != i2c_master_recv(c,&byte,1))
90 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return byte;
93}
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static int tuner_signal(struct i2c_client *c)
96{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -070097 return (tuner_getstatus(c) & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static int tuner_stereo(struct i2c_client *c)
101{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700102 int stereo, status;
103 struct tuner *t = i2c_get_clientdata(c);
104
105 status = tuner_getstatus (c);
106
107 switch (t->type) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800108 case TUNER_PHILIPS_FM1216ME_MK3:
Trent Piepho657de3c2006-06-20 00:30:57 -0300109 case TUNER_PHILIPS_FM1236_MK3:
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700110 case TUNER_PHILIPS_FM1256_IH3:
111 stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
112 break;
113 default:
114 stereo = status & TUNER_STEREO;
115 }
116
117 return stereo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/* ---------------------------------------------------------------------- */
122
123static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
124{
125 struct tuner *t = i2c_get_clientdata(c);
Michael Krufky3fc46d32006-01-23 17:11:11 -0200126 u8 config, cb, tuneraddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 u16 div;
128 struct tunertype *tun;
Hans Verkuil27487d42006-01-15 15:04:52 -0200129 u8 buffer[4];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200130 int rc, IFPCoff, i, j;
Michael Krufky476d63d2006-02-07 06:25:34 -0200131 enum param_type desired_type;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300132 struct tuner_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 tun = &tuners[t->type];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200135
Michael Krufky5f594182006-02-07 06:25:33 -0200136 /* IFPCoff = Video Intermediate Frequency - Vif:
137 940 =16*58.75 NTSC/J (Japan)
138 732 =16*45.75 M/N STD
139 704 =16*44 ATSC (at DVB code)
140 632 =16*39.50 I U.K.
141 622.4=16*38.90 B/G D/K I, L STD
142 592 =16*37.00 D China
143 590 =16.36.875 B Australia
144 543.2=16*33.95 L' STD
145 171.2=16*10.70 FM Radio (at set_radio_freq)
146 */
147
148 if (t->std == V4L2_STD_NTSC_M_JP) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200149 IFPCoff = 940;
150 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky5f594182006-02-07 06:25:33 -0200151 } else if ((t->std & V4L2_STD_MN) &&
152 !(t->std & ~V4L2_STD_MN)) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200153 IFPCoff = 732;
154 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky5f594182006-02-07 06:25:33 -0200155 } else if (t->std == V4L2_STD_SECAM_LC) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200156 IFPCoff = 543;
157 desired_type = TUNER_PARAM_TYPE_SECAM;
Michael Krufky5f594182006-02-07 06:25:33 -0200158 } else {
Michael Krufky476d63d2006-02-07 06:25:34 -0200159 IFPCoff = 623;
160 desired_type = TUNER_PARAM_TYPE_PAL;
Michael Krufky5f594182006-02-07 06:25:33 -0200161 }
162
Michael Krufky476d63d2006-02-07 06:25:34 -0200163 for (j = 0; j < tun->count-1; j++) {
164 if (desired_type != tun->params[j].type)
165 continue;
166 break;
167 }
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200168 /* use default tuner_params if desired_type not available */
Michael Krufky15207b22006-02-07 06:25:40 -0200169 if (desired_type != tun->params[j].type) {
170 tuner_dbg("IFPCoff = %d: tuner_params undefined for tuner %d\n",
171 IFPCoff,t->type);
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200172 j = 0;
Michael Krufky15207b22006-02-07 06:25:40 -0200173 }
Hans Verkuilba8fc392006-06-25 15:34:39 -0300174 params = &tun->params[j];
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200175
Hans Verkuilba8fc392006-06-25 15:34:39 -0300176 for (i = 0; i < params->count; i++) {
177 if (freq > params->ranges[i].limit)
Michael Krufky90200d22006-01-09 15:25:38 -0200178 continue;
179 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
Hans Verkuilba8fc392006-06-25 15:34:39 -0300181 if (i == params->count) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200182 tuner_dbg("TV frequency out of range (%d > %d)",
Hans Verkuilba8fc392006-06-25 15:34:39 -0300183 freq, params->ranges[i - 1].limit);
184 freq = params->ranges[--i].limit;
Hans Verkuil27487d42006-01-15 15:04:52 -0200185 }
Hans Verkuilba8fc392006-06-25 15:34:39 -0300186 config = params->ranges[i].config;
187 cb = params->ranges[i].cb;
Michael Krufky5f594182006-02-07 06:25:33 -0200188 /* i == 0 -> VHF_LO
189 * i == 1 -> VHF_HI
190 * i == 2 -> UHF */
Michael Krufkybd0d0f52006-02-07 06:25:35 -0200191 tuner_dbg("tv: param %d, range %d\n",j,i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Michael Krufky5f594182006-02-07 06:25:33 -0200193 div=freq + IFPCoff + offset;
194
195 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, Offset=%d.%02d MHz, div=%0d\n",
196 freq / 16, freq % 16 * 100 / 16,
197 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
198 offset / 16, offset % 16 * 100 / 16,
199 div);
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* tv norm specific stuff for multi-norm tuners */
202 switch (t->type) {
203 case TUNER_PHILIPS_SECAM: // FI1216MF
204 /* 0x01 -> ??? no change ??? */
205 /* 0x02 -> PAL BDGHI / SECAM L */
206 /* 0x04 -> ??? PAL others / SECAM others ??? */
Michael Krufkyab66b222006-01-23 17:11:11 -0200207 cb &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (t->std & V4L2_STD_SECAM)
Michael Krufkyab66b222006-01-23 17:11:11 -0200209 cb |= 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211
212 case TUNER_TEMIC_4046FM5:
Michael Krufkyab66b222006-01-23 17:11:11 -0200213 cb &= ~0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 if (t->std & V4L2_STD_PAL_BG) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200216 cb |= TEMIC_SET_PAL_BG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 } else if (t->std & V4L2_STD_PAL_I) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200219 cb |= TEMIC_SET_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 } else if (t->std & V4L2_STD_PAL_DK) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200222 cb |= TEMIC_SET_PAL_DK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 } else if (t->std & V4L2_STD_SECAM_L) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200225 cb |= TEMIC_SET_PAL_L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 }
228 break;
229
230 case TUNER_PHILIPS_FQ1216ME:
Michael Krufkyab66b222006-01-23 17:11:11 -0200231 cb &= ~0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 if (t->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200234 cb |= PHILIPS_SET_PAL_BGDK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 } else if (t->std & V4L2_STD_PAL_I) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200237 cb |= PHILIPS_SET_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 } else if (t->std & V4L2_STD_SECAM_L) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200240 cb |= PHILIPS_SET_PAL_L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 }
243 break;
244
245 case TUNER_PHILIPS_ATSC:
246 /* 0x00 -> ATSC antenna input 1 */
247 /* 0x01 -> ATSC antenna input 2 */
248 /* 0x02 -> NTSC antenna input 1 */
249 /* 0x03 -> NTSC antenna input 2 */
Michael Krufkyab66b222006-01-23 17:11:11 -0200250 cb &= ~0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (!(t->std & V4L2_STD_ATSC))
Michael Krufkyab66b222006-01-23 17:11:11 -0200252 cb |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* FIXME: input */
254 break;
255
256 case TUNER_MICROTUNE_4042FI5:
257 /* Set the charge pump for fast tuning */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200258 config |= TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 break;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800260
261 case TUNER_PHILIPS_TUV1236D:
262 /* 0x40 -> ATSC antenna input 1 */
263 /* 0x48 -> ATSC antenna input 2 */
264 /* 0x00 -> NTSC antenna input 1 */
265 /* 0x08 -> NTSC antenna input 2 */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800266 buffer[0] = 0x14;
267 buffer[1] = 0x00;
268 buffer[2] = 0x17;
269 buffer[3] = 0x00;
Michael Krufkyab66b222006-01-23 17:11:11 -0200270 cb &= ~0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800271 if (t->std & V4L2_STD_ATSC) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200272 cb |= 0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800273 buffer[1] = 0x04;
274 }
275 /* set to the correct mode (analog or digital) */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800276 tuneraddr = c->addr;
277 c->addr = 0x0a;
278 if (2 != (rc = i2c_master_send(c,&buffer[0],2)))
279 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
280 if (2 != (rc = i2c_master_send(c,&buffer[2],2)))
281 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
282 c->addr = tuneraddr;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800283 /* FIXME: input */
284 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
Hans Verkuilba8fc392006-06-25 15:34:39 -0300287 if (params->cb_first_if_lower_freq && div < t->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200288 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200289 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 buffer[2] = (div>>8) & 0x7f;
291 buffer[3] = div & 0xff;
292 } else {
293 buffer[0] = (div>>8) & 0x7f;
294 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200295 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200296 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200298 t->last_div = div;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300299 if (params->has_tda9887) {
300 int config = 0;
301 int is_secam_l = (t->std & (V4L2_STD_SECAM_L | V4L2_STD_SECAM_LC)) &&
302 !(t->std & ~(V4L2_STD_SECAM_L | V4L2_STD_SECAM_LC));
303
304 if (t->std == V4L2_STD_SECAM_LC) {
305 if (params->port1_active ^ params->port1_invert_for_secam_lc)
306 config |= TDA9887_PORT1_ACTIVE;
307 if (params->port2_active ^ params->port2_invert_for_secam_lc)
308 config |= TDA9887_PORT2_ACTIVE;
309 }
310 else {
311 if (params->port1_active)
312 config |= TDA9887_PORT1_ACTIVE;
313 if (params->port2_active)
314 config |= TDA9887_PORT2_ACTIVE;
315 }
316 if (params->intercarrier_mode)
317 config |= TDA9887_INTERCARRIER;
318 if (is_secam_l) {
319 if (i == 0 && params->default_top_secam_low)
320 config |= TDA9887_TOP(params->default_top_secam_low);
321 else if (i == 1 && params->default_top_secam_mid)
322 config |= TDA9887_TOP(params->default_top_secam_mid);
323 else if (params->default_top_secam_high)
324 config |= TDA9887_TOP(params->default_top_secam_high);
325 }
326 else {
327 if (i == 0 && params->default_top_low)
328 config |= TDA9887_TOP(params->default_top_low);
329 else if (i == 1 && params->default_top_mid)
330 config |= TDA9887_TOP(params->default_top_mid);
331 else if (params->default_top_high)
332 config |= TDA9887_TOP(params->default_top_high);
333 }
Trent Piephod7304de2006-08-24 22:43:45 -0300334 if (params->default_pll_gating_18)
335 config |= TDA9887_GATING_18;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300336 i2c_clients_command(c->adapter, TDA9887_SET_CONFIG, &config);
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
339 buffer[0],buffer[1],buffer[2],buffer[3]);
340
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800341 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
343
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300344 switch (t->type) {
345 case TUNER_LG_TDVS_H06XF:
346 /* Set the Auxiliary Byte. */
347 buffer[0] = buffer[2];
348 buffer[0] &= ~0x20;
349 buffer[0] |= 0x18;
350 buffer[1] = 0x20;
351 tuner_dbg("tv 0x%02x 0x%02x\n",buffer[0],buffer[1]);
352
353 if (2 != (rc = i2c_master_send(c,buffer,2)))
354 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
355 break;
356 case TUNER_MICROTUNE_4042FI5:
357 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 // FIXME - this may also work for other tuners
359 unsigned long timeout = jiffies + msecs_to_jiffies(1);
360 u8 status_byte = 0;
361
362 /* Wait until the PLL locks */
363 for (;;) {
364 if (time_after(jiffies,timeout))
365 return;
366 if (1 != (rc = i2c_master_recv(c,&status_byte,1))) {
367 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc);
368 break;
369 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700370 if (status_byte & TUNER_PLL_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 break;
372 udelay(10);
373 }
374
375 /* Set the charge pump for optimized phase noise figure */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200376 config &= ~TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 buffer[0] = (div>>8) & 0x7f;
378 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200379 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200380 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300382 buffer[0],buffer[1],buffer[2],buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 if (4 != (rc = i2c_master_send(c,buffer,4)))
385 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300386 break;
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389}
390
391static void default_set_radio_freq(struct i2c_client *c, unsigned int freq)
392{
393 struct tunertype *tun;
394 struct tuner *t = i2c_get_clientdata(c);
Hans Verkuil27487d42006-01-15 15:04:52 -0200395 u8 buffer[4];
396 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200397 int rc, j;
Michael Krufky476d63d2006-02-07 06:25:34 -0200398 enum param_type desired_type = TUNER_PARAM_TYPE_RADIO;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300399 struct tuner_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700401 tun = &tuners[t->type];
Michael Krufky476d63d2006-02-07 06:25:34 -0200402
403 for (j = 0; j < tun->count-1; j++) {
404 if (desired_type != tun->params[j].type)
405 continue;
406 break;
407 }
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200408 /* use default tuner_params if desired_type not available */
409 if (desired_type != tun->params[j].type)
410 j = 0;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200411
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700412 div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */
Hans Verkuilba8fc392006-06-25 15:34:39 -0300413 params = &tun->params[j];
414 buffer[2] = (params->ranges[0].config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 switch (t->type) {
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700417 case TUNER_TENA_9533_DI:
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700418 case TUNER_YMEC_TVF_5533MF:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700419 tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n");
420 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 case TUNER_PHILIPS_FM1216ME_MK3:
422 case TUNER_PHILIPS_FM1236_MK3:
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700423 case TUNER_PHILIPS_FMD1216ME_MK3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 buffer[3] = 0x19;
425 break;
Mauro Carvalho Chehabefcf55c2006-03-09 11:17:43 -0300426 case TUNER_TNF_5335MF:
427 buffer[3] = 0x11;
428 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700430 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 buffer[3] = 0x19;
432 break;
433 case TUNER_LG_PAL_FM:
434 buffer[3] = 0xa5;
435 break;
Mauro Carvalho Chehab33ac6b52005-09-09 13:03:56 -0700436 case TUNER_MICROTUNE_4049FM5:
437 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
438 buffer[3] = 0xa4;
439 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 default:
441 buffer[3] = 0xa4;
442 break;
443 }
Hans Verkuilba8fc392006-06-25 15:34:39 -0300444 if (params->cb_first_if_lower_freq && div < t->last_div) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200445 buffer[0] = buffer[2];
446 buffer[1] = buffer[3];
447 buffer[2] = (div>>8) & 0x7f;
448 buffer[3] = div & 0xff;
449 } else {
450 buffer[0] = (div>>8) & 0x7f;
451 buffer[1] = div & 0xff;
452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
455 buffer[0],buffer[1],buffer[2],buffer[3]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200456 t->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Hans Verkuilba8fc392006-06-25 15:34:39 -0300458 if (params->has_tda9887) {
459 int config = 0;
460 if (params->port1_active && !params->port1_fm_high_sensitivity)
461 config |= TDA9887_PORT1_ACTIVE;
462 if (params->port2_active && !params->port2_fm_high_sensitivity)
463 config |= TDA9887_PORT2_ACTIVE;
464 if (params->intercarrier_mode)
465 config |= TDA9887_INTERCARRIER;
466/* if (params->port1_set_for_fm_mono)
467 config &= ~TDA9887_PORT1_ACTIVE;*/
468 i2c_clients_command(c->adapter, TDA9887_SET_CONFIG, &config);
469 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800470 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
472}
473
474int default_tuner_init(struct i2c_client *c)
475{
476 struct tuner *t = i2c_get_clientdata(c);
477
478 tuner_info("type set to %d (%s)\n",
479 t->type, tuners[t->type].name);
480 strlcpy(c->name, tuners[t->type].name, sizeof(c->name));
481
Hans Verkuil27487d42006-01-15 15:04:52 -0200482 t->set_tv_freq = default_set_tv_freq;
483 t->set_radio_freq = default_set_radio_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 t->has_signal = tuner_signal;
Hans Verkuil27487d42006-01-15 15:04:52 -0200485 t->is_stereo = tuner_stereo;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700486 t->standby = NULL;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return 0;
489}
490
491/*
492 * Overrides for Emacs so that we follow Linus's tabbing style.
493 * ---------------------------------------------------------------------------
494 * Local variables:
495 * c-basic-offset: 8
496 * End:
497 */