Merge branch 'cpus4096-for-linus-2' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6] / 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/videodev.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 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                 int i;
211                 unsigned char deemphasis[]  = { 0x13, 1 };
212
213                 /* FIXME: allow using a different deemphasis */
214
215                 if (deemphasis_50)
216                         deemphasis[1] = 2;
217
218                 for (i = 0; i < ARRAY_SIZE(fm_mode); i++)
219                         tuner_i2c_xfer_send(&priv->i2c_props, fm_mode[i].seq, 2);
220
221                 tuner_i2c_xfer_send(&priv->i2c_props, deemphasis, 2);
222         } else {
223                 expert_mode[1] = priv->tda8290_easy_mode + 0x80;
224                 tuner_i2c_xfer_send(&priv->i2c_props, expert_mode, 2);
225                 tuner_i2c_xfer_send(&priv->i2c_props, gainset_off, 2);
226                 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_spd, 2);
227                 if (priv->tda8290_easy_mode & 0x60)
228                         tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
229                 else
230                         tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
231                 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
232         }
233
234         tda8290_i2c_bridge(fe, 1);
235
236         if (fe->ops.tuner_ops.set_analog_params)
237                 fe->ops.tuner_ops.set_analog_params(fe, params);
238
239         for (i = 0; i < 3; i++) {
240                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
241                 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
242                 if (pll_stat & 0x80) {
243                         tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
244                         tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
245                         tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
246                         tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
247                         tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);
248                         break;
249                 } else {
250                         tuner_dbg("tda8290 not locked, no signal?\n");
251                         msleep(100);
252                 }
253         }
254         /* adjust headroom resp. gain */
255         if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) {
256                 tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",
257                            agc_stat, adc_sat, pll_stat & 0x80);
258                 tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);
259                 msleep(100);
260                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
261                 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
262                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
263                 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
264                 if ((agc_stat > 115) || !(pll_stat & 0x80)) {
265                         tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
266                                    agc_stat, pll_stat & 0x80);
267                         if (priv->cfg.agcf)
268                                 priv->cfg.agcf(fe);
269                         msleep(100);
270                         tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
271                         tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
272                         tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
273                         tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
274                         if((agc_stat > 115) || !(pll_stat & 0x80)) {
275                                 tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);
276                                 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);
277                                 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);
278                                 msleep(100);
279                         }
280                 }
281         }
282
283         /* l/ l' deadlock? */
284         if(priv->tda8290_easy_mode & 0x60) {
285                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
286                 tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
287                 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
288                 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
289                 if ((adc_sat > 20) || !(pll_stat & 0x80)) {
290                         tuner_dbg("trying to resolve SECAM L deadlock\n");
291                         tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
292                         msleep(40);
293                         tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
294                 }
295         }
296
297         tda8290_i2c_bridge(fe, 0);
298         tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
299 }
300
301 /*---------------------------------------------------------------------*/
302
303 static void tda8295_power(struct dvb_frontend *fe, int enable)
304 {
305         struct tda8290_priv *priv = fe->analog_demod_priv;
306         unsigned char buf[] = { 0x30, 0x00 }; /* clb_stdbt */
307
308         tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
309         tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
310
311         if (enable)
312                 buf[1] = 0x01;
313         else
314                 buf[1] = 0x03;
315
316         tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
317 }
318
319 static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
320 {
321         struct tda8290_priv *priv = fe->analog_demod_priv;
322         unsigned char buf[] = { 0x01, 0x00 };
323
324         tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
325         tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
326
327         if (enable)
328                 buf[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
329         else
330                 buf[1] = 0x00; /* reset active bit */
331
332         tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
333 }
334
335 static void tda8295_set_video_std(struct dvb_frontend *fe)
336 {
337         struct tda8290_priv *priv = fe->analog_demod_priv;
338         unsigned char buf[] = { 0x00, priv->tda8290_easy_mode };
339
340         tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
341
342         tda8295_set_easy_mode(fe, 1);
343         msleep(20);
344         tda8295_set_easy_mode(fe, 0);
345 }
346
347 /*---------------------------------------------------------------------*/
348
349 static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
350 {
351         struct tda8290_priv *priv = fe->analog_demod_priv;
352         unsigned char buf[] = { 0x02, 0x00 }; /* DIV_FUNC */
353
354         tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
355         tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
356
357         if (enable)
358                 buf[1] &= ~0x40;
359         else
360                 buf[1] |= 0x40;
361
362         tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
363 }
364
365 static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
366 {
367         struct tda8290_priv *priv = fe->analog_demod_priv;
368         unsigned char set_gpio_cf[]    = { 0x44, 0x00 };
369         unsigned char set_gpio_val[]   = { 0x46, 0x00 };
370
371         tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_cf[0], 1);
372         tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_cf[1], 1);
373         tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_val[0], 1);
374         tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_val[1], 1);
375
376         set_gpio_cf[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */
377
378         if (enable) {
379                 set_gpio_cf[1]  |= 0x01; /* config GPIO_0 as Open Drain Out */
380                 set_gpio_val[1] &= 0xfe; /* set GPIO_0 pin low */
381         }
382         tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_cf, 2);
383         tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_val, 2);
384 }
385
386 static int tda8295_has_signal(struct dvb_frontend *fe)
387 {
388         struct tda8290_priv *priv = fe->analog_demod_priv;
389
390         unsigned char hvpll_stat = 0x26;
391         unsigned char ret;
392
393         tuner_i2c_xfer_send(&priv->i2c_props, &hvpll_stat, 1);
394         tuner_i2c_xfer_recv(&priv->i2c_props, &ret, 1);
395         return (ret & 0x01) ? 65535 : 0;
396 }
397
398 /*---------------------------------------------------------------------*/
399
400 static void tda8295_set_params(struct dvb_frontend *fe,
401                                struct analog_parameters *params)
402 {
403         struct tda8290_priv *priv = fe->analog_demod_priv;
404
405         unsigned char blanking_mode[]     = { 0x1d, 0x00 };
406
407         set_audio(fe, params);
408
409         tuner_dbg("%s: freq = %d\n", __func__, params->frequency);
410
411         tda8295_power(fe, 1);
412         tda8295_agc1_out(fe, 1);
413
414         tuner_i2c_xfer_send(&priv->i2c_props, &blanking_mode[0], 1);
415         tuner_i2c_xfer_recv(&priv->i2c_props, &blanking_mode[1], 1);
416
417         tda8295_set_video_std(fe);
418
419         blanking_mode[1] = 0x03;
420         tuner_i2c_xfer_send(&priv->i2c_props, blanking_mode, 2);
421         msleep(20);
422
423         tda8295_i2c_bridge(fe, 1);
424
425         if (fe->ops.tuner_ops.set_analog_params)
426                 fe->ops.tuner_ops.set_analog_params(fe, params);
427
428         if (priv->cfg.agcf)
429                 priv->cfg.agcf(fe);
430
431         if (tda8295_has_signal(fe))
432                 tuner_dbg("tda8295 is locked\n");
433         else
434                 tuner_dbg("tda8295 not locked, no signal?\n");
435
436         tda8295_i2c_bridge(fe, 0);
437 }
438
439 /*---------------------------------------------------------------------*/
440
441 static int tda8290_has_signal(struct dvb_frontend *fe)
442 {
443         struct tda8290_priv *priv = fe->analog_demod_priv;
444
445         unsigned char i2c_get_afc[1] = { 0x1B };
446         unsigned char afc = 0;
447
448         tuner_i2c_xfer_send(&priv->i2c_props, i2c_get_afc, ARRAY_SIZE(i2c_get_afc));
449         tuner_i2c_xfer_recv(&priv->i2c_props, &afc, 1);
450         return (afc & 0x80)? 65535:0;
451 }
452
453 /*---------------------------------------------------------------------*/
454
455 static void tda8290_standby(struct dvb_frontend *fe)
456 {
457         struct tda8290_priv *priv = fe->analog_demod_priv;
458
459         unsigned char cb1[] = { 0x30, 0xD0 };
460         unsigned char tda8290_standby[] = { 0x00, 0x02 };
461         unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };
462         struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};
463
464         tda8290_i2c_bridge(fe, 1);
465         if (priv->ver & TDA8275A)
466                 cb1[1] = 0x90;
467         i2c_transfer(priv->i2c_props.adap, &msg, 1);
468         tda8290_i2c_bridge(fe, 0);
469         tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);
470         tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);
471 }
472
473 static void tda8295_standby(struct dvb_frontend *fe)
474 {
475         tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
476
477         tda8295_power(fe, 0);
478 }
479
480 static void tda8290_init_if(struct dvb_frontend *fe)
481 {
482         struct tda8290_priv *priv = fe->analog_demod_priv;
483
484         unsigned char set_VS[] = { 0x30, 0x6F };
485         unsigned char set_GP00_CF[] = { 0x20, 0x01 };
486         unsigned char set_GP01_CF[] = { 0x20, 0x0B };
487
488         if ((priv->cfg.config == 1) || (priv->cfg.config == 2))
489                 tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
490         else
491                 tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
492         tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
493 }
494
495 static void tda8295_init_if(struct dvb_frontend *fe)
496 {
497         struct tda8290_priv *priv = fe->analog_demod_priv;
498
499         static unsigned char set_adc_ctl[]       = { 0x33, 0x14 };
500         static unsigned char set_adc_ctl2[]      = { 0x34, 0x00 };
501         static unsigned char set_pll_reg6[]      = { 0x3e, 0x63 };
502         static unsigned char set_pll_reg0[]      = { 0x38, 0x23 };
503         static unsigned char set_pll_reg7[]      = { 0x3f, 0x01 };
504         static unsigned char set_pll_reg10[]     = { 0x42, 0x61 };
505         static unsigned char set_gpio_reg0[]     = { 0x44, 0x0b };
506
507         tda8295_power(fe, 1);
508
509         tda8295_set_easy_mode(fe, 0);
510         tda8295_set_video_std(fe);
511
512         tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl, 2);
513         tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl2, 2);
514         tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg6, 2);
515         tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg0, 2);
516         tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg7, 2);
517         tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg10, 2);
518         tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_reg0, 2);
519
520         tda8295_agc1_out(fe, 0);
521         tda8295_agc2_out(fe, 0);
522 }
523
524 static void tda8290_init_tuner(struct dvb_frontend *fe)
525 {
526         struct tda8290_priv *priv = fe->analog_demod_priv;
527         unsigned char tda8275_init[]  = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
528                                           0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
529         unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
530                                           0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
531         struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,
532                               .buf=tda8275_init, .len = 14};
533         if (priv->ver & TDA8275A)
534                 msg.buf = tda8275a_init;
535
536         tda8290_i2c_bridge(fe, 1);
537         i2c_transfer(priv->i2c_props.adap, &msg, 1);
538         tda8290_i2c_bridge(fe, 0);
539 }
540
541 /*---------------------------------------------------------------------*/
542
543 static void tda829x_release(struct dvb_frontend *fe)
544 {
545         struct tda8290_priv *priv = fe->analog_demod_priv;
546
547         /* only try to release the tuner if we've
548          * attached it from within this module */
549         if (priv->ver & (TDA18271 | TDA8275 | TDA8275A))
550                 if (fe->ops.tuner_ops.release)
551                         fe->ops.tuner_ops.release(fe);
552
553         kfree(fe->analog_demod_priv);
554         fe->analog_demod_priv = NULL;
555 }
556
557 static struct tda18271_config tda829x_tda18271_config = {
558         .gate    = TDA18271_GATE_ANALOG,
559 };
560
561 static int tda829x_find_tuner(struct dvb_frontend *fe)
562 {
563         struct tda8290_priv *priv = fe->analog_demod_priv;
564         struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
565         int i, ret, tuners_found;
566         u32 tuner_addrs;
567         u8 data;
568         struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
569
570         if (NULL == analog_ops->i2c_gate_ctrl)
571                 return -EINVAL;
572
573         analog_ops->i2c_gate_ctrl(fe, 1);
574
575         /* probe for tuner chip */
576         tuners_found = 0;
577         tuner_addrs = 0;
578         for (i = 0x60; i <= 0x63; i++) {
579                 msg.addr = i;
580                 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
581                 if (ret == 1) {
582                         tuners_found++;
583                         tuner_addrs = (tuner_addrs << 8) + i;
584                 }
585         }
586         /* if there is more than one tuner, we expect the right one is
587            behind the bridge and we choose the highest address that doesn't
588            give a response now
589          */
590
591         analog_ops->i2c_gate_ctrl(fe, 0);
592
593         if (tuners_found > 1)
594                 for (i = 0; i < tuners_found; i++) {
595                         msg.addr = tuner_addrs  & 0xff;
596                         ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
597                         if (ret == 1)
598                                 tuner_addrs = tuner_addrs >> 8;
599                         else
600                                 break;
601                 }
602
603         if (tuner_addrs == 0) {
604                 tuner_addrs = 0x60;
605                 tuner_info("could not clearly identify tuner address, "
606                            "defaulting to %x\n", tuner_addrs);
607         } else {
608                 tuner_addrs = tuner_addrs & 0xff;
609                 tuner_info("setting tuner address to %x\n", tuner_addrs);
610         }
611         priv->tda827x_addr = tuner_addrs;
612         msg.addr = tuner_addrs;
613
614         analog_ops->i2c_gate_ctrl(fe, 1);
615         ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
616
617         if (ret != 1) {
618                 tuner_warn("tuner access failed!\n");
619                 return -EREMOTEIO;
620         }
621
622         if ((data == 0x83) || (data == 0x84)) {
623                 priv->ver |= TDA18271;
624                 dvb_attach(tda18271_attach, fe, priv->tda827x_addr,
625                            priv->i2c_props.adap, &tda829x_tda18271_config);
626         } else {
627                 if ((data & 0x3c) == 0)
628                         priv->ver |= TDA8275;
629                 else
630                         priv->ver |= TDA8275A;
631
632                 dvb_attach(tda827x_attach, fe, priv->tda827x_addr,
633                            priv->i2c_props.adap, &priv->cfg);
634                 priv->cfg.switch_addr = priv->i2c_props.addr;
635         }
636         if (fe->ops.tuner_ops.init)
637                 fe->ops.tuner_ops.init(fe);
638
639         if (fe->ops.tuner_ops.sleep)
640                 fe->ops.tuner_ops.sleep(fe);
641
642         analog_ops->i2c_gate_ctrl(fe, 0);
643
644         return 0;
645 }
646
647 static int tda8290_probe(struct tuner_i2c_props *i2c_props)
648 {
649 #define TDA8290_ID 0x89
650         unsigned char tda8290_id[] = { 0x1f, 0x00 };
651
652         /* detect tda8290 */
653         tuner_i2c_xfer_send(i2c_props, &tda8290_id[0], 1);
654         tuner_i2c_xfer_recv(i2c_props, &tda8290_id[1], 1);
655
656         if (tda8290_id[1] == TDA8290_ID) {
657                 if (debug)
658                         printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
659                                __func__, i2c_adapter_id(i2c_props->adap),
660                                i2c_props->addr);
661                 return 0;
662         }
663
664         return -ENODEV;
665 }
666
667 static int tda8295_probe(struct tuner_i2c_props *i2c_props)
668 {
669 #define TDA8295_ID 0x8a
670         unsigned char tda8295_id[] = { 0x2f, 0x00 };
671
672         /* detect tda8295 */
673         tuner_i2c_xfer_send(i2c_props, &tda8295_id[0], 1);
674         tuner_i2c_xfer_recv(i2c_props, &tda8295_id[1], 1);
675
676         if (tda8295_id[1] == TDA8295_ID) {
677                 if (debug)
678                         printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
679                                __func__, i2c_adapter_id(i2c_props->adap),
680                                i2c_props->addr);
681                 return 0;
682         }
683
684         return -ENODEV;
685 }
686
687 static struct analog_demod_ops tda8290_ops = {
688         .set_params     = tda8290_set_params,
689         .has_signal     = tda8290_has_signal,
690         .standby        = tda8290_standby,
691         .release        = tda829x_release,
692         .i2c_gate_ctrl  = tda8290_i2c_bridge,
693 };
694
695 static struct analog_demod_ops tda8295_ops = {
696         .set_params     = tda8295_set_params,
697         .has_signal     = tda8295_has_signal,
698         .standby        = tda8295_standby,
699         .release        = tda829x_release,
700         .i2c_gate_ctrl  = tda8295_i2c_bridge,
701 };
702
703 struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
704                                     struct i2c_adapter *i2c_adap, u8 i2c_addr,
705                                     struct tda829x_config *cfg)
706 {
707         struct tda8290_priv *priv = NULL;
708         char *name;
709
710         priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
711         if (priv == NULL)
712                 return NULL;
713         fe->analog_demod_priv = priv;
714
715         priv->i2c_props.addr     = i2c_addr;
716         priv->i2c_props.adap     = i2c_adap;
717         priv->i2c_props.name     = "tda829x";
718         if (cfg)
719                 priv->cfg.config         = cfg->lna_cfg;
720
721         if (tda8290_probe(&priv->i2c_props) == 0) {
722                 priv->ver = TDA8290;
723                 memcpy(&fe->ops.analog_ops, &tda8290_ops,
724                        sizeof(struct analog_demod_ops));
725         }
726
727         if (tda8295_probe(&priv->i2c_props) == 0) {
728                 priv->ver = TDA8295;
729                 memcpy(&fe->ops.analog_ops, &tda8295_ops,
730                        sizeof(struct analog_demod_ops));
731         }
732
733         if ((!(cfg) || (TDA829X_PROBE_TUNER == cfg->probe_tuner)) &&
734             (tda829x_find_tuner(fe) < 0))
735                 goto fail;
736
737         switch (priv->ver) {
738         case TDA8290:
739                 name = "tda8290";
740                 break;
741         case TDA8295:
742                 name = "tda8295";
743                 break;
744         case TDA8290 | TDA8275:
745                 name = "tda8290+75";
746                 break;
747         case TDA8295 | TDA8275:
748                 name = "tda8295+75";
749                 break;
750         case TDA8290 | TDA8275A:
751                 name = "tda8290+75a";
752                 break;
753         case TDA8295 | TDA8275A:
754                 name = "tda8295+75a";
755                 break;
756         case TDA8290 | TDA18271:
757                 name = "tda8290+18271";
758                 break;
759         case TDA8295 | TDA18271:
760                 name = "tda8295+18271";
761                 break;
762         default:
763                 goto fail;
764         }
765         tuner_info("type set to %s\n", name);
766
767         fe->ops.analog_ops.info.name = name;
768
769         if (priv->ver & TDA8290) {
770                 tda8290_init_tuner(fe);
771                 tda8290_init_if(fe);
772         } else if (priv->ver & TDA8295)
773                 tda8295_init_if(fe);
774
775         return fe;
776
777 fail:
778         tda829x_release(fe);
779         return NULL;
780 }
781 EXPORT_SYMBOL_GPL(tda829x_attach);
782
783 int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
784 {
785         struct tuner_i2c_props i2c_props = {
786                 .adap = i2c_adap,
787                 .addr = i2c_addr,
788         };
789
790         unsigned char soft_reset[]   = { 0x00, 0x00 };
791         unsigned char easy_mode_b[]  = { 0x01, 0x02 };
792         unsigned char easy_mode_g[]  = { 0x01, 0x04 };
793         unsigned char restore_9886[] = { 0x00, 0xd6, 0x30 };
794         unsigned char addr_dto_lsb = 0x07;
795         unsigned char data;
796 #define PROBE_BUFFER_SIZE 8
797         unsigned char buf[PROBE_BUFFER_SIZE];
798         int i;
799
800         /* rule out tda9887, which would return the same byte repeatedly */
801         tuner_i2c_xfer_send(&i2c_props, soft_reset, 1);
802         tuner_i2c_xfer_recv(&i2c_props, buf, PROBE_BUFFER_SIZE);
803         for (i = 1; i < PROBE_BUFFER_SIZE; i++) {
804                 if (buf[i] != buf[0])
805                         break;
806         }
807
808         /* all bytes are equal, not a tda829x - probably a tda9887 */
809         if (i == PROBE_BUFFER_SIZE)
810                 return -ENODEV;
811
812         if ((tda8290_probe(&i2c_props) == 0) ||
813             (tda8295_probe(&i2c_props) == 0))
814                 return 0;
815
816         /* fall back to old probing method */
817         tuner_i2c_xfer_send(&i2c_props, easy_mode_b, 2);
818         tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
819         tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
820         tuner_i2c_xfer_recv(&i2c_props, &data, 1);
821         if (data == 0) {
822                 tuner_i2c_xfer_send(&i2c_props, easy_mode_g, 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 == 0x7b) {
827                         return 0;
828                 }
829         }
830         tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
831         return -ENODEV;
832 }
833 EXPORT_SYMBOL_GPL(tda829x_probe);
834
835 MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
836 MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
837 MODULE_LICENSE("GPL");
838
839 /*
840  * Overrides for Emacs so that we follow Linus's tabbing style.
841  * ---------------------------------------------------------------------------
842  * Local variables:
843  * c-basic-offset: 8
844  * End:
845  */