added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / drivers / media / common / tuners / tda8290.c
blob4b8662edb7cb48d6b4e73833241bc8b88bacbef1
1 /*
3 i2c tv tuner chip device driver
4 controls the philips tda8290+75 tuner chip combo.
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.
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.
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.
20 This "tda8290" module was split apart from the original "tuner" module.
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"
31 static int debug;
32 module_param(debug, int, 0644);
33 MODULE_PARM_DESC(debug, "enable verbose debug messages");
35 static int deemphasis_50;
36 MODULE_PARM_DESC(deemphasis_50, "0 - 75us deemphasis; 1 - 50us deemphasis");
38 /* ---------------------------------------------------------------------- */
40 struct tda8290_priv {
41 struct tuner_i2c_props i2c_props;
43 unsigned char tda8290_easy_mode;
45 unsigned char tda827x_addr;
47 unsigned char ver;
48 #define TDA8290 1
49 #define TDA8295 2
50 #define TDA8275 4
51 #define TDA8275A 8
52 #define TDA18271 16
54 struct tda827x_config cfg;
57 /*---------------------------------------------------------------------*/
59 static int tda8290_i2c_bridge(struct dvb_frontend *fe, int close)
61 struct tda8290_priv *priv = fe->analog_demod_priv;
63 unsigned char enable[2] = { 0x21, 0xC0 };
64 unsigned char disable[2] = { 0x21, 0x00 };
65 unsigned char *msg;
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);
77 return 0;
80 static int tda8295_i2c_bridge(struct dvb_frontend *fe, int close)
82 struct tda8290_priv *priv = fe->analog_demod_priv;
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;
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);
99 buf[2] = msg[1];
100 buf[2] &= ~0x04;
101 tuner_i2c_xfer_send(&priv->i2c_props, buf, 3);
102 msleep(5);
104 msg[1] |= 0x04;
105 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
108 return 0;
111 /*---------------------------------------------------------------------*/
113 static void set_audio(struct dvb_frontend *fe,
114 struct analog_parameters *params)
116 struct tda8290_priv *priv = fe->analog_demod_priv;
117 char* mode;
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";
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);
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 */
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} },
169 { { 0x0d, 0x00} }, /* PLL off, no video carrier detect */
170 { { 0x14, 0x00} }, /* disable auto mute if no video */
173 static void tda8290_set_params(struct dvb_frontend *fe,
174 struct analog_parameters *params)
176 struct tda8290_priv *priv = fe->analog_demod_priv;
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;
200 set_audio(fe, params);
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);
209 if (params->mode == V4L2_TUNER_RADIO) {
210 unsigned char deemphasis[] = { 0x13, 1 };
212 /* FIXME: allow using a different deemphasis */
214 if (deemphasis_50)
215 deemphasis[1] = 2;
217 for (i = 0; i < ARRAY_SIZE(fm_mode); i++)
218 tuner_i2c_xfer_send(&priv->i2c_props, fm_mode[i].seq, 2);
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);
233 tda8290_i2c_bridge(fe, 1);
235 if (fe->ops.tuner_ops.set_analog_params)
236 fe->ops.tuner_ops.set_analog_params(fe, params);
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);
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);
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);
296 tda8290_i2c_bridge(fe, 0);
297 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
300 /*---------------------------------------------------------------------*/
302 static void tda8295_power(struct dvb_frontend *fe, int enable)
304 struct tda8290_priv *priv = fe->analog_demod_priv;
305 unsigned char buf[] = { 0x30, 0x00 }; /* clb_stdbt */
307 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
308 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
310 if (enable)
311 buf[1] = 0x01;
312 else
313 buf[1] = 0x03;
315 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
318 static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
320 struct tda8290_priv *priv = fe->analog_demod_priv;
321 unsigned char buf[] = { 0x01, 0x00 };
323 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
324 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
326 if (enable)
327 buf[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
328 else
329 buf[1] = 0x00; /* reset active bit */
331 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
334 static void tda8295_set_video_std(struct dvb_frontend *fe)
336 struct tda8290_priv *priv = fe->analog_demod_priv;
337 unsigned char buf[] = { 0x00, priv->tda8290_easy_mode };
339 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
341 tda8295_set_easy_mode(fe, 1);
342 msleep(20);
343 tda8295_set_easy_mode(fe, 0);
346 /*---------------------------------------------------------------------*/
348 static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
350 struct tda8290_priv *priv = fe->analog_demod_priv;
351 unsigned char buf[] = { 0x02, 0x00 }; /* DIV_FUNC */
353 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
354 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
356 if (enable)
357 buf[1] &= ~0x40;
358 else
359 buf[1] |= 0x40;
361 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
364 static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
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 };
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);
375 set_gpio_cf[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */
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 */
381 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_cf, 2);
382 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_val, 2);
385 static int tda8295_has_signal(struct dvb_frontend *fe)
387 struct tda8290_priv *priv = fe->analog_demod_priv;
389 unsigned char hvpll_stat = 0x26;
390 unsigned char ret;
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;
397 /*---------------------------------------------------------------------*/
399 static void tda8295_set_params(struct dvb_frontend *fe,
400 struct analog_parameters *params)
402 struct tda8290_priv *priv = fe->analog_demod_priv;
404 unsigned char blanking_mode[] = { 0x1d, 0x00 };
406 set_audio(fe, params);
408 tuner_dbg("%s: freq = %d\n", __func__, params->frequency);
410 tda8295_power(fe, 1);
411 tda8295_agc1_out(fe, 1);
413 tuner_i2c_xfer_send(&priv->i2c_props, &blanking_mode[0], 1);
414 tuner_i2c_xfer_recv(&priv->i2c_props, &blanking_mode[1], 1);
416 tda8295_set_video_std(fe);
418 blanking_mode[1] = 0x03;
419 tuner_i2c_xfer_send(&priv->i2c_props, blanking_mode, 2);
420 msleep(20);
422 tda8295_i2c_bridge(fe, 1);
424 if (fe->ops.tuner_ops.set_analog_params)
425 fe->ops.tuner_ops.set_analog_params(fe, params);
427 if (priv->cfg.agcf)
428 priv->cfg.agcf(fe);
430 if (tda8295_has_signal(fe))
431 tuner_dbg("tda8295 is locked\n");
432 else
433 tuner_dbg("tda8295 not locked, no signal?\n");
435 tda8295_i2c_bridge(fe, 0);
438 /*---------------------------------------------------------------------*/
440 static int tda8290_has_signal(struct dvb_frontend *fe)
442 struct tda8290_priv *priv = fe->analog_demod_priv;
444 unsigned char i2c_get_afc[1] = { 0x1B };
445 unsigned char afc = 0;
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;
452 /*---------------------------------------------------------------------*/
454 static void tda8290_standby(struct dvb_frontend *fe)
456 struct tda8290_priv *priv = fe->analog_demod_priv;
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};
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);
472 static void tda8295_standby(struct dvb_frontend *fe)
474 tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
476 tda8295_power(fe, 0);
479 static void tda8290_init_if(struct dvb_frontend *fe)
481 struct tda8290_priv *priv = fe->analog_demod_priv;
483 unsigned char set_VS[] = { 0x30, 0x6F };
484 unsigned char set_GP00_CF[] = { 0x20, 0x01 };
485 unsigned char set_GP01_CF[] = { 0x20, 0x0B };
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);
494 static void tda8295_init_if(struct dvb_frontend *fe)
496 struct tda8290_priv *priv = fe->analog_demod_priv;
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 };
506 tda8295_power(fe, 1);
508 tda8295_set_easy_mode(fe, 0);
509 tda8295_set_video_std(fe);
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);
519 tda8295_agc1_out(fe, 0);
520 tda8295_agc2_out(fe, 0);
523 static void tda8290_init_tuner(struct dvb_frontend *fe)
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;
535 tda8290_i2c_bridge(fe, 1);
536 i2c_transfer(priv->i2c_props.adap, &msg, 1);
537 tda8290_i2c_bridge(fe, 0);
540 /*---------------------------------------------------------------------*/
542 static void tda829x_release(struct dvb_frontend *fe)
544 struct tda8290_priv *priv = fe->analog_demod_priv;
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);
552 kfree(fe->analog_demod_priv);
553 fe->analog_demod_priv = NULL;
556 static struct tda18271_config tda829x_tda18271_config = {
557 .gate = TDA18271_GATE_ANALOG,
560 static int tda829x_find_tuner(struct dvb_frontend *fe)
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 };
569 if (NULL == analog_ops->i2c_gate_ctrl)
570 return -EINVAL;
572 analog_ops->i2c_gate_ctrl(fe, 1);
574 /* probe for tuner chip */
575 tuners_found = 0;
576 tuner_addrs = 0;
577 for (i = 0x60; i <= 0x63; i++) {
578 msg.addr = i;
579 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
580 if (ret == 1) {
581 tuners_found++;
582 tuner_addrs = (tuner_addrs << 8) + i;
585 /* if there is more than one tuner, we expect the right one is
586 behind the bridge and we choose the highest address that doesn't
587 give a response now
590 analog_ops->i2c_gate_ctrl(fe, 0);
592 if (tuners_found > 1)
593 for (i = 0; i < tuners_found; i++) {
594 msg.addr = tuner_addrs & 0xff;
595 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
596 if (ret == 1)
597 tuner_addrs = tuner_addrs >> 8;
598 else
599 break;
602 if (tuner_addrs == 0) {
603 tuner_addrs = 0x60;
604 tuner_info("could not clearly identify tuner address, "
605 "defaulting to %x\n", tuner_addrs);
606 } else {
607 tuner_addrs = tuner_addrs & 0xff;
608 tuner_info("setting tuner address to %x\n", tuner_addrs);
610 priv->tda827x_addr = tuner_addrs;
611 msg.addr = tuner_addrs;
613 analog_ops->i2c_gate_ctrl(fe, 1);
614 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
616 if (ret != 1) {
617 tuner_warn("tuner access failed!\n");
618 return -EREMOTEIO;
621 if ((data == 0x83) || (data == 0x84)) {
622 priv->ver |= TDA18271;
623 dvb_attach(tda18271_attach, fe, priv->tda827x_addr,
624 priv->i2c_props.adap, &tda829x_tda18271_config);
625 } else {
626 if ((data & 0x3c) == 0)
627 priv->ver |= TDA8275;
628 else
629 priv->ver |= TDA8275A;
631 dvb_attach(tda827x_attach, fe, priv->tda827x_addr,
632 priv->i2c_props.adap, &priv->cfg);
633 priv->cfg.switch_addr = priv->i2c_props.addr;
635 if (fe->ops.tuner_ops.init)
636 fe->ops.tuner_ops.init(fe);
638 if (fe->ops.tuner_ops.sleep)
639 fe->ops.tuner_ops.sleep(fe);
641 analog_ops->i2c_gate_ctrl(fe, 0);
643 return 0;
646 static int tda8290_probe(struct tuner_i2c_props *i2c_props)
648 #define TDA8290_ID 0x89
649 unsigned char tda8290_id[] = { 0x1f, 0x00 };
651 /* detect tda8290 */
652 tuner_i2c_xfer_send(i2c_props, &tda8290_id[0], 1);
653 tuner_i2c_xfer_recv(i2c_props, &tda8290_id[1], 1);
655 if (tda8290_id[1] == TDA8290_ID) {
656 if (debug)
657 printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
658 __func__, i2c_adapter_id(i2c_props->adap),
659 i2c_props->addr);
660 return 0;
663 return -ENODEV;
666 static int tda8295_probe(struct tuner_i2c_props *i2c_props)
668 #define TDA8295_ID 0x8a
669 unsigned char tda8295_id[] = { 0x2f, 0x00 };
671 /* detect tda8295 */
672 tuner_i2c_xfer_send(i2c_props, &tda8295_id[0], 1);
673 tuner_i2c_xfer_recv(i2c_props, &tda8295_id[1], 1);
675 if (tda8295_id[1] == TDA8295_ID) {
676 if (debug)
677 printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
678 __func__, i2c_adapter_id(i2c_props->adap),
679 i2c_props->addr);
680 return 0;
683 return -ENODEV;
686 static struct analog_demod_ops tda8290_ops = {
687 .set_params = tda8290_set_params,
688 .has_signal = tda8290_has_signal,
689 .standby = tda8290_standby,
690 .release = tda829x_release,
691 .i2c_gate_ctrl = tda8290_i2c_bridge,
694 static struct analog_demod_ops tda8295_ops = {
695 .set_params = tda8295_set_params,
696 .has_signal = tda8295_has_signal,
697 .standby = tda8295_standby,
698 .release = tda829x_release,
699 .i2c_gate_ctrl = tda8295_i2c_bridge,
702 struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
703 struct i2c_adapter *i2c_adap, u8 i2c_addr,
704 struct tda829x_config *cfg)
706 struct tda8290_priv *priv = NULL;
707 char *name;
709 priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
710 if (priv == NULL)
711 return NULL;
712 fe->analog_demod_priv = priv;
714 priv->i2c_props.addr = i2c_addr;
715 priv->i2c_props.adap = i2c_adap;
716 priv->i2c_props.name = "tda829x";
717 if (cfg)
718 priv->cfg.config = cfg->lna_cfg;
720 if (tda8290_probe(&priv->i2c_props) == 0) {
721 priv->ver = TDA8290;
722 memcpy(&fe->ops.analog_ops, &tda8290_ops,
723 sizeof(struct analog_demod_ops));
726 if (tda8295_probe(&priv->i2c_props) == 0) {
727 priv->ver = TDA8295;
728 memcpy(&fe->ops.analog_ops, &tda8295_ops,
729 sizeof(struct analog_demod_ops));
732 if ((!(cfg) || (TDA829X_PROBE_TUNER == cfg->probe_tuner)) &&
733 (tda829x_find_tuner(fe) < 0))
734 goto fail;
736 switch (priv->ver) {
737 case TDA8290:
738 name = "tda8290";
739 break;
740 case TDA8295:
741 name = "tda8295";
742 break;
743 case TDA8290 | TDA8275:
744 name = "tda8290+75";
745 break;
746 case TDA8295 | TDA8275:
747 name = "tda8295+75";
748 break;
749 case TDA8290 | TDA8275A:
750 name = "tda8290+75a";
751 break;
752 case TDA8295 | TDA8275A:
753 name = "tda8295+75a";
754 break;
755 case TDA8290 | TDA18271:
756 name = "tda8290+18271";
757 break;
758 case TDA8295 | TDA18271:
759 name = "tda8295+18271";
760 break;
761 default:
762 goto fail;
764 tuner_info("type set to %s\n", name);
766 fe->ops.analog_ops.info.name = name;
768 if (priv->ver & TDA8290) {
769 if (priv->ver & (TDA8275 | TDA8275A))
770 tda8290_init_tuner(fe);
771 tda8290_init_if(fe);
772 } else if (priv->ver & TDA8295)
773 tda8295_init_if(fe);
775 return fe;
777 fail:
778 tda829x_release(fe);
779 return NULL;
781 EXPORT_SYMBOL_GPL(tda829x_attach);
783 int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
785 struct tuner_i2c_props i2c_props = {
786 .adap = i2c_adap,
787 .addr = i2c_addr,
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;
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;
808 /* all bytes are equal, not a tda829x - probably a tda9887 */
809 if (i == PROBE_BUFFER_SIZE)
810 return -ENODEV;
812 if ((tda8290_probe(&i2c_props) == 0) ||
813 (tda8295_probe(&i2c_props) == 0))
814 return 0;
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;
830 tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
831 return -ENODEV;
833 EXPORT_SYMBOL_GPL(tda829x_probe);
835 MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
836 MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
837 MODULE_LICENSE("GPL");
840 * Overrides for Emacs so that we follow Linus's tabbing style.
841 * ---------------------------------------------------------------------------
842 * Local variables:
843 * c-basic-offset: 8
844 * End: