blob: 1b9b0742f753f53c181391b24eceac1b88d6e3c9 [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:
Hans Verkuil122b5db2006-12-03 06:45:07 -0300111 case TUNER_LG_NTSC_TAPE:
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700112 stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
113 break;
114 default:
115 stereo = status & TUNER_STEREO;
116 }
117
118 return stereo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122/* ---------------------------------------------------------------------- */
123
124static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
125{
126 struct tuner *t = i2c_get_clientdata(c);
Michael Krufky3fc46d32006-01-23 17:11:11 -0200127 u8 config, cb, tuneraddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 u16 div;
129 struct tunertype *tun;
Hans Verkuil27487d42006-01-15 15:04:52 -0200130 u8 buffer[4];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200131 int rc, IFPCoff, i, j;
Michael Krufky476d63d2006-02-07 06:25:34 -0200132 enum param_type desired_type;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300133 struct tuner_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 tun = &tuners[t->type];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200136
Michael Krufky5f594182006-02-07 06:25:33 -0200137 /* IFPCoff = Video Intermediate Frequency - Vif:
138 940 =16*58.75 NTSC/J (Japan)
139 732 =16*45.75 M/N STD
140 704 =16*44 ATSC (at DVB code)
141 632 =16*39.50 I U.K.
142 622.4=16*38.90 B/G D/K I, L STD
143 592 =16*37.00 D China
144 590 =16.36.875 B Australia
145 543.2=16*33.95 L' STD
146 171.2=16*10.70 FM Radio (at set_radio_freq)
147 */
148
149 if (t->std == V4L2_STD_NTSC_M_JP) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200150 IFPCoff = 940;
151 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky5f594182006-02-07 06:25:33 -0200152 } else if ((t->std & V4L2_STD_MN) &&
153 !(t->std & ~V4L2_STD_MN)) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200154 IFPCoff = 732;
155 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky5f594182006-02-07 06:25:33 -0200156 } else if (t->std == V4L2_STD_SECAM_LC) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200157 IFPCoff = 543;
158 desired_type = TUNER_PARAM_TYPE_SECAM;
Michael Krufky5f594182006-02-07 06:25:33 -0200159 } else {
Michael Krufky476d63d2006-02-07 06:25:34 -0200160 IFPCoff = 623;
161 desired_type = TUNER_PARAM_TYPE_PAL;
Michael Krufky5f594182006-02-07 06:25:33 -0200162 }
163
Michael Krufky476d63d2006-02-07 06:25:34 -0200164 for (j = 0; j < tun->count-1; j++) {
165 if (desired_type != tun->params[j].type)
166 continue;
167 break;
168 }
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200169 /* use default tuner_params if desired_type not available */
Michael Krufky15207b22006-02-07 06:25:40 -0200170 if (desired_type != tun->params[j].type) {
171 tuner_dbg("IFPCoff = %d: tuner_params undefined for tuner %d\n",
172 IFPCoff,t->type);
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200173 j = 0;
Michael Krufky15207b22006-02-07 06:25:40 -0200174 }
Hans Verkuilba8fc392006-06-25 15:34:39 -0300175 params = &tun->params[j];
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200176
Hans Verkuilba8fc392006-06-25 15:34:39 -0300177 for (i = 0; i < params->count; i++) {
178 if (freq > params->ranges[i].limit)
Michael Krufky90200d22006-01-09 15:25:38 -0200179 continue;
180 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Hans Verkuilba8fc392006-06-25 15:34:39 -0300182 if (i == params->count) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200183 tuner_dbg("TV frequency out of range (%d > %d)",
Hans Verkuilba8fc392006-06-25 15:34:39 -0300184 freq, params->ranges[i - 1].limit);
185 freq = params->ranges[--i].limit;
Hans Verkuil27487d42006-01-15 15:04:52 -0200186 }
Hans Verkuilba8fc392006-06-25 15:34:39 -0300187 config = params->ranges[i].config;
188 cb = params->ranges[i].cb;
Michael Krufky5f594182006-02-07 06:25:33 -0200189 /* i == 0 -> VHF_LO
190 * i == 1 -> VHF_HI
191 * i == 2 -> UHF */
Michael Krufkybd0d0f52006-02-07 06:25:35 -0200192 tuner_dbg("tv: param %d, range %d\n",j,i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Michael Krufky5f594182006-02-07 06:25:33 -0200194 div=freq + IFPCoff + offset;
195
196 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, Offset=%d.%02d MHz, div=%0d\n",
197 freq / 16, freq % 16 * 100 / 16,
198 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
199 offset / 16, offset % 16 * 100 / 16,
200 div);
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* tv norm specific stuff for multi-norm tuners */
203 switch (t->type) {
204 case TUNER_PHILIPS_SECAM: // FI1216MF
205 /* 0x01 -> ??? no change ??? */
206 /* 0x02 -> PAL BDGHI / SECAM L */
207 /* 0x04 -> ??? PAL others / SECAM others ??? */
Michael Krufkyab66b222006-01-23 17:11:11 -0200208 cb &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (t->std & V4L2_STD_SECAM)
Michael Krufkyab66b222006-01-23 17:11:11 -0200210 cb |= 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 break;
212
213 case TUNER_TEMIC_4046FM5:
Michael Krufkyab66b222006-01-23 17:11:11 -0200214 cb &= ~0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 if (t->std & V4L2_STD_PAL_BG) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200217 cb |= TEMIC_SET_PAL_BG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 } else if (t->std & V4L2_STD_PAL_I) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200220 cb |= TEMIC_SET_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 } else if (t->std & V4L2_STD_PAL_DK) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200223 cb |= TEMIC_SET_PAL_DK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 } else if (t->std & V4L2_STD_SECAM_L) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200226 cb |= TEMIC_SET_PAL_L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 }
229 break;
230
231 case TUNER_PHILIPS_FQ1216ME:
Michael Krufkyab66b222006-01-23 17:11:11 -0200232 cb &= ~0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if (t->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200235 cb |= PHILIPS_SET_PAL_BGDK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 } else if (t->std & V4L2_STD_PAL_I) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200238 cb |= PHILIPS_SET_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 } else if (t->std & V4L2_STD_SECAM_L) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200241 cb |= PHILIPS_SET_PAL_L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 }
244 break;
245
246 case TUNER_PHILIPS_ATSC:
247 /* 0x00 -> ATSC antenna input 1 */
248 /* 0x01 -> ATSC antenna input 2 */
249 /* 0x02 -> NTSC antenna input 1 */
250 /* 0x03 -> NTSC antenna input 2 */
Michael Krufkyab66b222006-01-23 17:11:11 -0200251 cb &= ~0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (!(t->std & V4L2_STD_ATSC))
Michael Krufkyab66b222006-01-23 17:11:11 -0200253 cb |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* FIXME: input */
255 break;
256
257 case TUNER_MICROTUNE_4042FI5:
258 /* Set the charge pump for fast tuning */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200259 config |= TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 break;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800261
262 case TUNER_PHILIPS_TUV1236D:
263 /* 0x40 -> ATSC antenna input 1 */
264 /* 0x48 -> ATSC antenna input 2 */
265 /* 0x00 -> NTSC antenna input 1 */
266 /* 0x08 -> NTSC antenna input 2 */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800267 buffer[0] = 0x14;
268 buffer[1] = 0x00;
269 buffer[2] = 0x17;
270 buffer[3] = 0x00;
Michael Krufkyab66b222006-01-23 17:11:11 -0200271 cb &= ~0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800272 if (t->std & V4L2_STD_ATSC) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200273 cb |= 0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800274 buffer[1] = 0x04;
275 }
276 /* set to the correct mode (analog or digital) */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800277 tuneraddr = c->addr;
278 c->addr = 0x0a;
279 if (2 != (rc = i2c_master_send(c,&buffer[0],2)))
280 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
281 if (2 != (rc = i2c_master_send(c,&buffer[2],2)))
282 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
283 c->addr = tuneraddr;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800284 /* FIXME: input */
285 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287
Hans Verkuilba8fc392006-06-25 15:34:39 -0300288 if (params->cb_first_if_lower_freq && div < t->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200289 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200290 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 buffer[2] = (div>>8) & 0x7f;
292 buffer[3] = div & 0xff;
293 } else {
294 buffer[0] = (div>>8) & 0x7f;
295 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200296 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200297 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200299 t->last_div = div;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300300 if (params->has_tda9887) {
301 int config = 0;
302 int is_secam_l = (t->std & (V4L2_STD_SECAM_L | V4L2_STD_SECAM_LC)) &&
303 !(t->std & ~(V4L2_STD_SECAM_L | V4L2_STD_SECAM_LC));
304
305 if (t->std == V4L2_STD_SECAM_LC) {
306 if (params->port1_active ^ params->port1_invert_for_secam_lc)
307 config |= TDA9887_PORT1_ACTIVE;
308 if (params->port2_active ^ params->port2_invert_for_secam_lc)
309 config |= TDA9887_PORT2_ACTIVE;
310 }
311 else {
312 if (params->port1_active)
313 config |= TDA9887_PORT1_ACTIVE;
314 if (params->port2_active)
315 config |= TDA9887_PORT2_ACTIVE;
316 }
317 if (params->intercarrier_mode)
318 config |= TDA9887_INTERCARRIER;
319 if (is_secam_l) {
320 if (i == 0 && params->default_top_secam_low)
321 config |= TDA9887_TOP(params->default_top_secam_low);
322 else if (i == 1 && params->default_top_secam_mid)
323 config |= TDA9887_TOP(params->default_top_secam_mid);
324 else if (params->default_top_secam_high)
325 config |= TDA9887_TOP(params->default_top_secam_high);
326 }
327 else {
328 if (i == 0 && params->default_top_low)
329 config |= TDA9887_TOP(params->default_top_low);
330 else if (i == 1 && params->default_top_mid)
331 config |= TDA9887_TOP(params->default_top_mid);
332 else if (params->default_top_high)
333 config |= TDA9887_TOP(params->default_top_high);
334 }
Trent Piephod7304de2006-08-24 22:43:45 -0300335 if (params->default_pll_gating_18)
336 config |= TDA9887_GATING_18;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300337 i2c_clients_command(c->adapter, TDA9887_SET_CONFIG, &config);
338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
340 buffer[0],buffer[1],buffer[2],buffer[3]);
341
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800342 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
344
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300345 switch (t->type) {
346 case TUNER_LG_TDVS_H06XF:
347 /* Set the Auxiliary Byte. */
348 buffer[0] = buffer[2];
349 buffer[0] &= ~0x20;
350 buffer[0] |= 0x18;
351 buffer[1] = 0x20;
352 tuner_dbg("tv 0x%02x 0x%02x\n",buffer[0],buffer[1]);
353
354 if (2 != (rc = i2c_master_send(c,buffer,2)))
355 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
356 break;
357 case TUNER_MICROTUNE_4042FI5:
358 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 // FIXME - this may also work for other tuners
360 unsigned long timeout = jiffies + msecs_to_jiffies(1);
361 u8 status_byte = 0;
362
363 /* Wait until the PLL locks */
364 for (;;) {
365 if (time_after(jiffies,timeout))
366 return;
367 if (1 != (rc = i2c_master_recv(c,&status_byte,1))) {
368 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc);
369 break;
370 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700371 if (status_byte & TUNER_PLL_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 break;
373 udelay(10);
374 }
375
376 /* Set the charge pump for optimized phase noise figure */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200377 config &= ~TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 buffer[0] = (div>>8) & 0x7f;
379 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200380 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200381 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300383 buffer[0],buffer[1],buffer[2],buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (4 != (rc = i2c_master_send(c,buffer,4)))
386 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300387 break;
388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390}
391
392static void default_set_radio_freq(struct i2c_client *c, unsigned int freq)
393{
394 struct tunertype *tun;
395 struct tuner *t = i2c_get_clientdata(c);
Hans Verkuil27487d42006-01-15 15:04:52 -0200396 u8 buffer[4];
397 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200398 int rc, j;
Michael Krufky476d63d2006-02-07 06:25:34 -0200399 enum param_type desired_type = TUNER_PARAM_TYPE_RADIO;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300400 struct tuner_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700402 tun = &tuners[t->type];
Michael Krufky476d63d2006-02-07 06:25:34 -0200403
404 for (j = 0; j < tun->count-1; j++) {
405 if (desired_type != tun->params[j].type)
406 continue;
407 break;
408 }
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200409 /* use default tuner_params if desired_type not available */
410 if (desired_type != tun->params[j].type)
411 j = 0;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200412
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700413 div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */
Hans Verkuilba8fc392006-06-25 15:34:39 -0300414 params = &tun->params[j];
415 buffer[2] = (params->ranges[0].config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 switch (t->type) {
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700418 case TUNER_TENA_9533_DI:
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700419 case TUNER_YMEC_TVF_5533MF:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700420 tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n");
421 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 case TUNER_PHILIPS_FM1216ME_MK3:
423 case TUNER_PHILIPS_FM1236_MK3:
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700424 case TUNER_PHILIPS_FMD1216ME_MK3:
Hans Verkuil122b5db2006-12-03 06:45:07 -0300425 case TUNER_LG_NTSC_TAPE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 buffer[3] = 0x19;
427 break;
Mauro Carvalho Chehabefcf55c2006-03-09 11:17:43 -0300428 case TUNER_TNF_5335MF:
429 buffer[3] = 0x11;
430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700432 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 buffer[3] = 0x19;
434 break;
435 case TUNER_LG_PAL_FM:
436 buffer[3] = 0xa5;
437 break;
Mauro Carvalho Chehab33ac6b52005-09-09 13:03:56 -0700438 case TUNER_MICROTUNE_4049FM5:
439 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
440 buffer[3] = 0xa4;
441 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 default:
443 buffer[3] = 0xa4;
444 break;
445 }
Hans Verkuilba8fc392006-06-25 15:34:39 -0300446 if (params->cb_first_if_lower_freq && div < t->last_div) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200447 buffer[0] = buffer[2];
448 buffer[1] = buffer[3];
449 buffer[2] = (div>>8) & 0x7f;
450 buffer[3] = div & 0xff;
451 } else {
452 buffer[0] = (div>>8) & 0x7f;
453 buffer[1] = div & 0xff;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
457 buffer[0],buffer[1],buffer[2],buffer[3]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200458 t->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Hans Verkuilba8fc392006-06-25 15:34:39 -0300460 if (params->has_tda9887) {
461 int config = 0;
462 if (params->port1_active && !params->port1_fm_high_sensitivity)
463 config |= TDA9887_PORT1_ACTIVE;
464 if (params->port2_active && !params->port2_fm_high_sensitivity)
465 config |= TDA9887_PORT2_ACTIVE;
466 if (params->intercarrier_mode)
467 config |= TDA9887_INTERCARRIER;
468/* if (params->port1_set_for_fm_mono)
469 config &= ~TDA9887_PORT1_ACTIVE;*/
Mauro Carvalho Chehab483deb02006-12-04 08:31:38 -0300470 if (params->fm_gain_normal)
471 config |= TDA9887_GAIN_NORMAL;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300472 i2c_clients_command(c->adapter, TDA9887_SET_CONFIG, &config);
473 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800474 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
476}
477
478int default_tuner_init(struct i2c_client *c)
479{
480 struct tuner *t = i2c_get_clientdata(c);
481
482 tuner_info("type set to %d (%s)\n",
483 t->type, tuners[t->type].name);
484 strlcpy(c->name, tuners[t->type].name, sizeof(c->name));
485
Hans Verkuil27487d42006-01-15 15:04:52 -0200486 t->set_tv_freq = default_set_tv_freq;
487 t->set_radio_freq = default_set_radio_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 t->has_signal = tuner_signal;
Hans Verkuil27487d42006-01-15 15:04:52 -0200489 t->is_stereo = tuner_stereo;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700490 t->standby = NULL;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return 0;
493}
494
495/*
496 * Overrides for Emacs so that we follow Linus's tabbing style.
497 * ---------------------------------------------------------------------------
498 * Local variables:
499 * c-basic-offset: 8
500 * End:
501 */