Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[cascardo/linux.git] / drivers / media / common / tuners / tda8290.c
1 /*
2
3    i2c tv tuner chip device driver
4    controls the philips tda8290+75 tuner chip combo.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20    This "tda8290" module was split apart from the original "tuner" module.
21 */
22
23 #include <linux/i2c.h>
24 #include <linux/delay.h>
25 #include <linux/videodev2.h>
26 #include "tuner-i2c.h"
27 #include "tda8290.h"
28 #include "tda827x.h"
29 #include "tda18271.h"
30
31 static int debug;
32 module_param(debug, int, 0644);
33 MODULE_PARM_DESC(debug, "enable verbose debug messages");
34
35 static int deemphasis_50;
36 MODULE_PARM_DESC(deemphasis_50, "0 - 75us deemphasis; 1 - 50us deemphasis");
37
38 /* ---------------------------------------------------------------------- */
39
40 struct tda8290_priv {
41         struct tuner_i2c_props i2c_props;
42
43         unsigned char tda8290_easy_mode;
44
45         unsigned char tda827x_addr;
46
47         unsigned char ver;
48 #define TDA8290   1
49 #define TDA8295   2
50 #define TDA8275   4
51 #define TDA8275A  8
52 #define TDA18271 16
53
54         struct tda827x_config cfg;
55 };
56
57 /*---------------------------------------------------------------------*/
58
59 static int tda8290_i2c_bridge(struct dvb_frontend *fe, int close)
60 {
61         struct tda8290_priv *priv = fe->analog_demod_priv;
62
63         unsigned char  enable[2] = { 0x21, 0xC0 };
64         unsigned char disable[2] = { 0x21, 0x00 };
65         unsigned char *msg;
66
67         if (close) {
68                 msg = enable;
69                 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
70                 /* let the bridge stabilize */
71                 msleep(20);
72         } else {
73                 msg = disable;
74                 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
75         }
76
77         return 0;
78 }
79
80 static int tda8295_i2c_bridge(struct dvb_frontend *fe, int close)
81 {
82         struct tda8290_priv *priv = fe->analog_demod_priv;
83
84         unsigned char  enable[2] = { 0x45, 0xc1 };
85         unsigned char disable[2] = { 0x46, 0x00 };
86         unsigned char buf[3] = { 0x45, 0x01, 0x00 };
87         unsigned char *msg;
88
89         if (close) {
90                 msg = enable;
91                 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
92                 /* let the bridge stabilize */
93                 msleep(20);
94         } else {
95                 msg = disable;
96                 tuner_i2c_xfer_send(&priv->i2c_props, msg, 1);
97                 tuner_i2c_xfer_recv(&priv->i2c_props, &msg[1], 1);
98
99                 buf[2] = msg[1];
100                 buf[2] &= ~0x04;
101                 tuner_i2c_xfer_send(&priv->i2c_props, buf, 3);
102                 msleep(5);
103
104                 msg[1] |= 0x04;
105                 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
106         }
107
108         return 0;
109 }
110
111 /*---------------------------------------------------------------------*/
112
113 static void set_audio(struct dvb_frontend *fe,
114                       struct analog_parameters *params)
115 {
116         struct tda8290_priv *priv = fe->analog_demod_priv;
117         char* mode;
118
119         if (params->std & V4L2_STD_MN) {
120                 priv->tda8290_easy_mode = 0x01;
121                 mode = "MN";
122         } else if (params->std & V4L2_STD_B) {
123                 priv->tda8290_easy_mode = 0x02;
124                 mode = "B";
125         } else if (params->std & V4L2_STD_GH) {
126                 priv->tda8290_easy_mode = 0x04;
127                 mode = "GH";
128         } else if (params->std & V4L2_STD_PAL_I) {
129                 priv->tda8290_easy_mode = 0x08;
130                 mode = "I";
131         } else if (params->std & V4L2_STD_DK) {
132                 priv->tda8290_easy_mode = 0x10;
133                 mode = "DK";
134         } else if (params->std & V4L2_STD_SECAM_L) {
135                 priv->tda8290_easy_mode = 0x20;
136                 mode = "L";
137         } else if (params->std & V4L2_STD_SECAM_LC) {
138                 priv->tda8290_easy_mode = 0x40;
139                 mode = "LC";
140         } else {
141                 priv->tda8290_easy_mode = 0x10;
142                 mode = "xx";
143         }
144
145         if (params->mode == V4L2_TUNER_RADIO) {
146                 priv->tda8290_easy_mode = 0x01;         /* Start with MN values */
147                 tuner_dbg("setting to radio FM\n");
148         } else {
149                 tuner_dbg("setting tda829x to system %s\n", mode);
150         }
151 }
152
153 static struct {
154         unsigned char seq[2];
155 } fm_mode[] = {
156         { { 0x01, 0x81} },      /* Put device into expert mode */
157         { { 0x03, 0x48} },      /* Disable NOTCH and VIDEO filters */
158         { { 0x04, 0x04} },      /* Disable color carrier filter (SSIF) */
159         { { 0x05, 0x04} },      /* ADC headroom */
160         { { 0x06, 0x10} },      /* group delay flat */
161
162         { { 0x07, 0x00} },      /* use the same radio DTO values as a tda8295 */
163         { { 0x08, 0x00} },
164         { { 0x09, 0x80} },
165         { { 0x0a, 0xda} },
166         { { 0x0b, 0x4b} },
167         { { 0x0c, 0x68} },
168
169         { { 0x0d, 0x00} },      /* PLL off, no video carrier detect */
170         { { 0x14, 0x00} },      /* disable auto mute if no video */
171 };
172
173 static void tda8290_set_params(struct dvb_frontend *fe,
174                                struct analog_parameters *params)
175 {
176         struct tda8290_priv *priv = fe->analog_demod_priv;
177
178         unsigned char soft_reset[]  = { 0x00, 0x00 };
179         unsigned char easy_mode[]   = { 0x01, priv->tda8290_easy_mode };
180         unsigned char expert_mode[] = { 0x01, 0x80 };
181         unsigned char agc_out_on[]  = { 0x02, 0x00 };
182         unsigned char gainset_off[] = { 0x28, 0x14 };
183         unsigned char if_agc_spd[]  = { 0x0f, 0x88 };
184         unsigned char adc_head_6[]  = { 0x05, 0x04 };
185         unsigned char adc_head_9[]  = { 0x05, 0x02 };
186         unsigned char adc_head_12[] = { 0x05, 0x01 };
187         unsigned char pll_bw_nom[]  = { 0x0d, 0x47 };
188         unsigned char pll_bw_low[]  = { 0x0d, 0x27 };
189         unsigned char gainset_2[]   = { 0x28, 0x64 };
190         unsigned char agc_rst_on[]  = { 0x0e, 0x0b };
191         unsigned char agc_rst_off[] = { 0x0e, 0x09 };
192         unsigned char if_agc_set[]  = { 0x0f, 0x81 };
193         unsigned char addr_adc_sat  = 0x1a;
194         unsigned char addr_agc_stat = 0x1d;
195         unsigned char addr_pll_stat = 0x1b;
196         unsigned char adc_sat, agc_stat,
197                       pll_stat;
198         int i;
199
200         set_audio(fe, params);
201
202         if (priv->cfg.config)
203                 tuner_dbg("tda827xa config is 0x%02x\n", priv->cfg.config);
204         tuner_i2c_xfer_send(&priv->i2c_props, easy_mode, 2);
205         tuner_i2c_xfer_send(&priv->i2c_props, agc_out_on, 2);
206         tuner_i2c_xfer_send(&priv->i2c_props, soft_reset, 2);
207         msleep(1);
208
209         if (params->mode == V4L2_TUNER_RADIO) {
210                 unsigned char deemphasis[]  = { 0x13, 1 };
211
212                 /* FIXME: allow using a different deemphasis */
213
214                 if (deemphasis_50)
215                         deemphasis[1] = 2;
216
217                 for (i = 0; i < ARRAY_SIZE(fm_mode); i++)
218                         tuner_i2c_xfer_send(&priv->i2c_props, fm_mode[i].seq, 2);
219
220                 tuner_i2c_xfer_send(&priv->i2c_props, deemphasis, 2);
221         } else {
222                 expert_mode[1] = priv->tda8290_easy_mode + 0x80;
223                 tuner_i2c_xfer_send(&priv->i2c_props, expert_mode, 2);
224                 tuner_i2c_xfer_send(&priv->i2c_props, gainset_off, 2);
225                 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_spd, 2);
226                 if (priv->tda8290_easy_mode & 0x60)
227                         tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
228                 else
229                         tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
230                 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
231         }
232
233         tda8290_i2c_bridge(fe, 1);
234
235         if (fe->ops.tuner_ops.set_analog_params)
236                 fe->ops.tuner_ops.set_analog_params(fe, params);
237
238         for (i = 0; i < 3; i++) {
239                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
240                 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
241                 if (pll_stat & 0x80) {
242                         tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
243                         tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
244                         tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
245                         tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
246                         tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);
247                         break;
248                 } else {
249                         tuner_dbg("tda8290 not locked, no signal?\n");
250                         msleep(100);
251                 }
252         }
253         /* adjust headroom resp. gain */
254         if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) {
255                 tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",
256                            agc_stat, adc_sat, pll_stat & 0x80);
257                 tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);
258                 msleep(100);
259                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
260                 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
261                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
262                 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
263                 if ((agc_stat > 115) || !(pll_stat & 0x80)) {
264                         tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
265                                    agc_stat, pll_stat & 0x80);
266                         if (priv->cfg.agcf)
267                                 priv->cfg.agcf(fe);
268                         msleep(100);
269                         tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
270                         tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
271                         tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
272                         tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
273                         if((agc_stat > 115) || !(pll_stat & 0x80)) {
274                                 tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);
275                                 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);
276                                 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);
277                                 msleep(100);
278                         }
279                 }
280         }
281
282         /* l/ l' deadlock? */
283         if(priv->tda8290_easy_mode & 0x60) {
284                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
285                 tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
286                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
287                 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
288                 if ((adc_sat > 20) || !(pll_stat & 0x80)) {
289                         tuner_dbg("trying to resolve SECAM L deadlock\n");
290                         tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
291                         msleep(40);
292                         tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
293                 }
294         }
295
296         tda8290_i2c_bridge(fe, 0);
297         tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
298 }
299
300 /*---------------------------------------------------------------------*/
301
302 static void tda8295_power(struct dvb_frontend *fe, int enable)
303 {
304         struct tda8290_priv *priv = fe->analog_demod_priv;
305         unsigned char buf[] = { 0x30, 0x00 }; /* clb_stdbt */
306
307         tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
308         tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
309
310         if (enable)
311                 buf[1] = 0x01;
312         else
313                 buf[1] = 0x03;
314
315         tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
316 }
317
318 static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
319 {
320         struct tda8290_priv *priv = fe->analog_demod_priv;
321         unsigned char buf[] = { 0x01, 0x00 };
322
323         tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
324         tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
325
326         if (enable)
327                 buf[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
328         else
329                 buf[1] = 0x00; /* reset active bit */
330
331         tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
332 }
333
334 static void tda8295_set_video_std(struct dvb_frontend *fe)
335 {
336         struct tda8290_priv *priv = fe->analog_demod_priv;
337         unsigned char buf[] = { 0x00, priv->tda8290_easy_mode };
338
339         tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
340
341         tda8295_set_easy_mode(fe, 1);
342         msleep(20);
343         tda8295_set_easy_mode(fe, 0);
344 }
345
346 /*---------------------------------------------------------------------*/
347
348 static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
349 {
350         struct tda8290_priv *priv = fe->analog_demod_priv;
351         unsigned char buf[] = { 0x02, 0x00 }; /* DIV_FUNC */
352
353         tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
354         tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
355
356         if (enable)
357                 buf[1] &= ~0x40;
358         else
359                 buf[1] |= 0x40;
360
361         tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
362 }
363
364 static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
365 {
366         struct tda8290_priv *priv = fe->analog_demod_priv;
367         unsigned char set_gpio_cf[]    = { 0x44, 0x00 };
368         unsigned char set_gpio_val[]   = { 0x46, 0x00 };
369
370         tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_cf[0], 1);
371         tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_cf[1], 1);
372         tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_val[0], 1);
373         tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_val[1], 1);
374
375         set_gpio_cf[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */
376
377         if (enable) {
378                 set_gpio_cf[1]  |= 0x01; /* config GPIO_0 as Open Drain Out */
379                 set_gpio_val[1] &= 0xfe; /* set GPIO_0 pin low */
380         }
381         tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_cf, 2);
382         tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_val, 2);
383 }
384
385 static int tda8295_has_signal(struct dvb_frontend *fe)
386 {
387         struct tda8290_priv *priv = fe->analog_demod_priv;
388
389         unsigned char hvpll_stat = 0x26;
390         unsigned char ret;
391
392         tuner_i2c_xfer_send(&priv->i2c_props, &hvpll_stat, 1);
393         tuner_i2c_xfer_recv(&priv->i2c_props, &ret, 1);
394         return (ret & 0x01) ? 65535 : 0;
395 }
396
397 /*---------------------------------------------------------------------*/
398
399 static void tda8295_set_params(struct dvb_frontend *fe,
400                                struct analog_parameters *params)
401 {
402         struct tda8290_priv *priv = fe->analog_demod_priv;
403
404         unsigned char blanking_mode[]     = { 0x1d, 0x00 };
405
406         set_audio(fe, params);
407
408         tuner_dbg("%s: freq = %d\n", __func__, params->frequency);
409
410         tda8295_power(fe, 1);
411         tda8295_agc1_out(fe, 1);
412
413         tuner_i2c_xfer_send(&priv->i2c_props, &blanking_mode[0], 1);
414         tuner_i2c_xfer_recv(&priv->i2c_props, &blanking_mode[1], 1);
415
416         tda8295_set_video_std(fe);
417
418         blanking_mode[1] = 0x03;
419         tuner_i2c_xfer_send(&priv->i2c_props, blanking_mode, 2);
420         msleep(20);
421
422         tda8295_i2c_bridge(fe, 1);
423
424         if (fe->ops.tuner_ops.set_analog_params)
425                 fe->ops.tuner_ops.set_analog_params(fe, params);
426
427         if (priv->cfg.agcf)
428                 priv->cfg.agcf(fe);
429
430         if (tda8295_has_signal(fe))
431                 tuner_dbg("tda8295 is locked\n");
432         else
433                 tuner_dbg("tda8295 not locked, no signal?\n");
434
435         tda8295_i2c_bridge(fe, 0);
436 }
437
438 /*---------------------------------------------------------------------*/
439
440 static int tda8290_has_signal(struct dvb_frontend *fe)
441 {
442         struct tda8290_priv *priv = fe->analog_demod_priv;
443
444         unsigned char i2c_get_afc[1] = { 0x1B };
445         unsigned char afc = 0;
446
447         tuner_i2c_xfer_send(&priv->i2c_props, i2c_get_afc, ARRAY_SIZE(i2c_get_afc));
448         tuner_i2c_xfer_recv(&priv->i2c_props, &afc, 1);
449         return (afc & 0x80)? 65535:0;
450 }
451
452 /*---------------------------------------------------------------------*/
453
454 static void tda8290_standby(struct dvb_frontend *fe)
455 {
456         struct tda8290_priv *priv = fe->analog_demod_priv;
457
458         unsigned char cb1[] = { 0x30, 0xD0 };
459         unsigned char tda8290_standby[] = { 0x00, 0x02 };
460         unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };
461         struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};
462
463         tda8290_i2c_bridge(fe, 1);
464         if (priv->ver & TDA8275A)
465                 cb1[1] = 0x90;
466         i2c_transfer(priv->i2c_props.adap, &msg, 1);
467         tda8290_i2c_bridge(fe, 0);
468         tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);
469         tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);
470 }
471
472 static void tda8295_standby(struct dvb_frontend *fe)
473 {
474         tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
475
476         tda8295_power(fe, 0);
477 }
478
479 static void tda8290_init_if(struct dvb_frontend *fe)
480 {
481         struct tda8290_priv *priv = fe->analog_demod_priv;
482
483         unsigned char set_VS[] = { 0x30, 0x6F };
484         unsigned char set_GP00_CF[] = { 0x20, 0x01 };
485         unsigned char set_GP01_CF[] = { 0x20, 0x0B };
486
487         if ((priv->cfg.config == 1) || (priv->cfg.config == 2))
488                 tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
489         else
490                 tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
491         tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
492 }
493
494 static void tda8295_init_if(struct dvb_frontend *fe)
495 {
496         struct tda8290_priv *priv = fe->analog_demod_priv;
497
498         static unsigned char set_adc_ctl[]       = { 0x33, 0x14 };
499         static unsigned char set_adc_ctl2[]      = { 0x34, 0x00 };
500         static unsigned char set_pll_reg6[]      = { 0x3e, 0x63 };
501         static unsigned char set_pll_reg0[]      = { 0x38, 0x23 };
502         static unsigned char set_pll_reg7[]      = { 0x3f, 0x01 };
503         static unsigned char set_pll_reg10[]     = { 0x42, 0x61 };
504         static unsigned char set_gpio_reg0[]     = { 0x44, 0x0b };
505
506         tda8295_power(fe, 1);
507
508         tda8295_set_easy_mode(fe, 0);
509         tda8295_set_video_std(fe);
510
511         tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl, 2);
512         tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl2, 2);
513         tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg6, 2);
514         tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg0, 2);
515         tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg7, 2);
516         tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg10, 2);
517         tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_reg0, 2);
518
519         tda8295_agc1_out(fe, 0);
520         tda8295_agc2_out(fe, 0);
521 }
522
523 static void tda8290_init_tuner(struct dvb_frontend *fe)
524 {
525         struct tda8290_priv *priv = fe->analog_demod_priv;
526         unsigned char tda8275_init[]  = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
527                                           0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
528         unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
529                                           0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
530         struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,
531                               .buf=tda8275_init, .len = 14};
532         if (priv->ver & TDA8275A)
533                 msg.buf = tda8275a_init;
534
535         tda8290_i2c_bridge(fe, 1);
536         i2c_transfer(priv->i2c_props.adap, &msg, 1);
537         tda8290_i2c_bridge(fe, 0);
538 }
539
540 /*---------------------------------------------------------------------*/
541
542 static void tda829x_release(struct dvb_frontend *fe)
543 {
544         struct tda8290_priv *priv = fe->analog_demod_priv;
545
546         /* only try to release the tuner if we've
547          * attached it from within this module */
548         if (priv->ver & (TDA18271 | TDA8275 | TDA8275A))
549                 if (fe->ops.tuner_ops.release)
550                         fe->ops.tuner_ops.release(fe);
551
552         kfree(fe->analog_demod_priv);
553         fe->analog_demod_priv = NULL;
554 }
555
556 static struct tda18271_config tda829x_tda18271_config = {
557         .gate    = TDA18271_GATE_ANALOG,
558 };
559
560 static int tda829x_find_tuner(struct dvb_frontend *fe)
561 {
562         struct tda8290_priv *priv = fe->analog_demod_priv;
563         struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
564         int i, ret, tuners_found;
565         u32 tuner_addrs;
566         u8 data;
567         struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
568
569         if (!analog_ops->i2c_gate_ctrl) {
570                 printk(KERN_ERR "tda8290: no gate control were provided!\n");
571
572                 return -EINVAL;
573         }
574
575         analog_ops->i2c_gate_ctrl(fe, 1);
576
577         /* probe for tuner chip */
578         tuners_found = 0;
579         tuner_addrs = 0;
580         for (i = 0x60; i <= 0x63; i++) {
581                 msg.addr = i;
582                 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
583                 if (ret == 1) {
584                         tuners_found++;
585                         tuner_addrs = (tuner_addrs << 8) + i;
586                 }
587         }
588         /* if there is more than one tuner, we expect the right one is
589            behind the bridge and we choose the highest address that doesn't
590            give a response now
591          */
592
593         analog_ops->i2c_gate_ctrl(fe, 0);
594
595         if (tuners_found > 1)
596                 for (i = 0; i < tuners_found; i++) {
597                         msg.addr = tuner_addrs  & 0xff;
598                         ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
599                         if (ret == 1)
600                                 tuner_addrs = tuner_addrs >> 8;
601                         else
602                                 break;
603                 }
604
605         if (tuner_addrs == 0) {
606                 tuner_addrs = 0x60;
607                 tuner_info("could not clearly identify tuner address, "
608                            "defaulting to %x\n", tuner_addrs);
609         } else {
610                 tuner_addrs = tuner_addrs & 0xff;
611                 tuner_info("setting tuner address to %x\n", tuner_addrs);
612         }
613         priv->tda827x_addr = tuner_addrs;
614         msg.addr = tuner_addrs;
615
616         analog_ops->i2c_gate_ctrl(fe, 1);
617         ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
618
619         if (ret != 1) {
620                 tuner_warn("tuner access failed!\n");
621                 analog_ops->i2c_gate_ctrl(fe, 0);
622                 return -EREMOTEIO;
623         }
624
625         if ((data == 0x83) || (data == 0x84)) {
626                 priv->ver |= TDA18271;
627                 tda829x_tda18271_config.config = priv->cfg.config;
628                 dvb_attach(tda18271_attach, fe, priv->tda827x_addr,
629                            priv->i2c_props.adap, &tda829x_tda18271_config);
630         } else {
631                 if ((data & 0x3c) == 0)
632                         priv->ver |= TDA8275;
633                 else
634                         priv->ver |= TDA8275A;
635
636                 dvb_attach(tda827x_attach, fe, priv->tda827x_addr,
637                            priv->i2c_props.adap, &priv->cfg);
638                 priv->cfg.switch_addr = priv->i2c_props.addr;
639         }
640         if (fe->ops.tuner_ops.init)
641                 fe->ops.tuner_ops.init(fe);
642
643         if (fe->ops.tuner_ops.sleep)
644                 fe->ops.tuner_ops.sleep(fe);
645
646         analog_ops->i2c_gate_ctrl(fe, 0);
647
648         return 0;
649 }
650
651 static int tda8290_probe(struct tuner_i2c_props *i2c_props)
652 {
653 #define TDA8290_ID 0x89
654         unsigned char tda8290_id[] = { 0x1f, 0x00 };
655
656         /* detect tda8290 */
657         tuner_i2c_xfer_send(i2c_props, &tda8290_id[0], 1);
658         tuner_i2c_xfer_recv(i2c_props, &tda8290_id[1], 1);
659
660         if (tda8290_id[1] == TDA8290_ID) {
661                 if (debug)
662                         printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
663                                __func__, i2c_adapter_id(i2c_props->adap),
664                                i2c_props->addr);
665                 return 0;
666         }
667
668         return -ENODEV;
669 }
670
671 static int tda8295_probe(struct tuner_i2c_props *i2c_props)
672 {
673 #define TDA8295_ID 0x8a
674         unsigned char tda8295_id[] = { 0x2f, 0x00 };
675
676         /* detect tda8295 */
677         tuner_i2c_xfer_send(i2c_props, &tda8295_id[0], 1);
678         tuner_i2c_xfer_recv(i2c_props, &tda8295_id[1], 1);
679
680         if (tda8295_id[1] == TDA8295_ID) {
681                 if (debug)
682                         printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
683                                __func__, i2c_adapter_id(i2c_props->adap),
684                                i2c_props->addr);
685                 return 0;
686         }
687
688         return -ENODEV;
689 }
690
691 static struct analog_demod_ops tda8290_ops = {
692         .set_params     = tda8290_set_params,
693         .has_signal     = tda8290_has_signal,
694         .standby        = tda8290_standby,
695         .release        = tda829x_release,
696         .i2c_gate_ctrl  = tda8290_i2c_bridge,
697 };
698
699 static struct analog_demod_ops tda8295_ops = {
700         .set_params     = tda8295_set_params,
701         .has_signal     = tda8295_has_signal,
702         .standby        = tda8295_standby,
703         .release        = tda829x_release,
704         .i2c_gate_ctrl  = tda8295_i2c_bridge,
705 };
706
707 struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
708                                     struct i2c_adapter *i2c_adap, u8 i2c_addr,
709                                     struct tda829x_config *cfg)
710 {
711         struct tda8290_priv *priv = NULL;
712         char *name;
713
714         priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
715         if (priv == NULL)
716                 return NULL;
717         fe->analog_demod_priv = priv;
718
719         priv->i2c_props.addr     = i2c_addr;
720         priv->i2c_props.adap     = i2c_adap;
721         priv->i2c_props.name     = "tda829x";
722         if (cfg)
723                 priv->cfg.config         = cfg->lna_cfg;
724
725         if (tda8290_probe(&priv->i2c_props) == 0) {
726                 priv->ver = TDA8290;
727                 memcpy(&fe->ops.analog_ops, &tda8290_ops,
728                        sizeof(struct analog_demod_ops));
729         }
730
731         if (tda8295_probe(&priv->i2c_props) == 0) {
732                 priv->ver = TDA8295;
733                 memcpy(&fe->ops.analog_ops, &tda8295_ops,
734                        sizeof(struct analog_demod_ops));
735         }
736
737         if ((!(cfg) || (TDA829X_PROBE_TUNER == cfg->probe_tuner)) &&
738             (tda829x_find_tuner(fe) < 0))
739                 goto fail;
740
741         switch (priv->ver) {
742         case TDA8290:
743                 name = "tda8290";
744                 break;
745         case TDA8295:
746                 name = "tda8295";
747                 break;
748         case TDA8290 | TDA8275:
749                 name = "tda8290+75";
750                 break;
751         case TDA8295 | TDA8275:
752                 name = "tda8295+75";
753                 break;
754         case TDA8290 | TDA8275A:
755                 name = "tda8290+75a";
756                 break;
757         case TDA8295 | TDA8275A:
758                 name = "tda8295+75a";
759                 break;
760         case TDA8290 | TDA18271:
761                 name = "tda8290+18271";
762                 break;
763         case TDA8295 | TDA18271:
764                 name = "tda8295+18271";
765                 break;
766         default:
767                 goto fail;
768         }
769         tuner_info("type set to %s\n", name);
770
771         fe->ops.analog_ops.info.name = name;
772
773         if (priv->ver & TDA8290) {
774                 if (priv->ver & (TDA8275 | TDA8275A))
775                         tda8290_init_tuner(fe);
776                 tda8290_init_if(fe);
777         } else if (priv->ver & TDA8295)
778                 tda8295_init_if(fe);
779
780         return fe;
781
782 fail:
783         tda829x_release(fe);
784         return NULL;
785 }
786 EXPORT_SYMBOL_GPL(tda829x_attach);
787
788 int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
789 {
790         struct tuner_i2c_props i2c_props = {
791                 .adap = i2c_adap,
792                 .addr = i2c_addr,
793         };
794
795         unsigned char soft_reset[]   = { 0x00, 0x00 };
796         unsigned char easy_mode_b[]  = { 0x01, 0x02 };
797         unsigned char easy_mode_g[]  = { 0x01, 0x04 };
798         unsigned char restore_9886[] = { 0x00, 0xd6, 0x30 };
799         unsigned char addr_dto_lsb = 0x07;
800         unsigned char data;
801 #define PROBE_BUFFER_SIZE 8
802         unsigned char buf[PROBE_BUFFER_SIZE];
803         int i;
804
805         /* rule out tda9887, which would return the same byte repeatedly */
806         tuner_i2c_xfer_send(&i2c_props, soft_reset, 1);
807         tuner_i2c_xfer_recv(&i2c_props, buf, PROBE_BUFFER_SIZE);
808         for (i = 1; i < PROBE_BUFFER_SIZE; i++) {
809                 if (buf[i] != buf[0])
810                         break;
811         }
812
813         /* all bytes are equal, not a tda829x - probably a tda9887 */
814         if (i == PROBE_BUFFER_SIZE)
815                 return -ENODEV;
816
817         if ((tda8290_probe(&i2c_props) == 0) ||
818             (tda8295_probe(&i2c_props) == 0))
819                 return 0;
820
821         /* fall back to old probing method */
822         tuner_i2c_xfer_send(&i2c_props, easy_mode_b, 2);
823         tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
824         tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
825         tuner_i2c_xfer_recv(&i2c_props, &data, 1);
826         if (data == 0) {
827                 tuner_i2c_xfer_send(&i2c_props, easy_mode_g, 2);
828                 tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
829                 tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
830                 tuner_i2c_xfer_recv(&i2c_props, &data, 1);
831                 if (data == 0x7b) {
832                         return 0;
833                 }
834         }
835         tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
836         return -ENODEV;
837 }
838 EXPORT_SYMBOL_GPL(tda829x_probe);
839
840 MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
841 MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
842 MODULE_LICENSE("GPL");
843
844 /*
845  * Overrides for Emacs so that we follow Linus's tabbing style.
846  * ---------------------------------------------------------------------------
847  * Local variables:
848  * c-basic-offset: 8
849  * End:
850  */