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/slab.h>
25 #include <linux/delay.h>
26 #include <linux/videodev2.h>
27 #include "tuner-i2c.h"
33 module_param(debug
, int, 0644);
34 MODULE_PARM_DESC(debug
, "enable verbose debug messages");
36 static int deemphasis_50
;
37 module_param(deemphasis_50
, int, 0644);
38 MODULE_PARM_DESC(deemphasis_50
, "0 - 75us deemphasis; 1 - 50us deemphasis");
40 /* ---------------------------------------------------------------------- */
43 struct tuner_i2c_props i2c_props
;
45 unsigned char tda8290_easy_mode
;
47 unsigned char tda827x_addr
;
56 struct tda827x_config cfg
;
57 struct tda18271_std_map
*tda18271_std_map
;
60 /*---------------------------------------------------------------------*/
62 static int tda8290_i2c_bridge(struct dvb_frontend
*fe
, int close
)
64 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
66 static unsigned char enable
[2] = { 0x21, 0xC0 };
67 static unsigned char disable
[2] = { 0x21, 0x00 };
72 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 2);
73 /* let the bridge stabilize */
77 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 2);
83 static int tda8295_i2c_bridge(struct dvb_frontend
*fe
, int close
)
85 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
87 static unsigned char enable
[2] = { 0x45, 0xc1 };
88 static unsigned char disable
[2] = { 0x46, 0x00 };
89 static unsigned char buf
[3] = { 0x45, 0x01, 0x00 };
94 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 2);
95 /* let the bridge stabilize */
99 tuner_i2c_xfer_send_recv(&priv
->i2c_props
, msg
, 1, &msg
[1], 1);
103 tuner_i2c_xfer_send(&priv
->i2c_props
, buf
, 3);
107 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 2);
113 /*---------------------------------------------------------------------*/
115 static void set_audio(struct dvb_frontend
*fe
,
116 struct analog_parameters
*params
)
118 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
121 if (params
->std
& V4L2_STD_MN
) {
122 priv
->tda8290_easy_mode
= 0x01;
124 } else if (params
->std
& V4L2_STD_B
) {
125 priv
->tda8290_easy_mode
= 0x02;
127 } else if (params
->std
& V4L2_STD_GH
) {
128 priv
->tda8290_easy_mode
= 0x04;
130 } else if (params
->std
& V4L2_STD_PAL_I
) {
131 priv
->tda8290_easy_mode
= 0x08;
133 } else if (params
->std
& V4L2_STD_DK
) {
134 priv
->tda8290_easy_mode
= 0x10;
136 } else if (params
->std
& V4L2_STD_SECAM_L
) {
137 priv
->tda8290_easy_mode
= 0x20;
139 } else if (params
->std
& V4L2_STD_SECAM_LC
) {
140 priv
->tda8290_easy_mode
= 0x40;
143 priv
->tda8290_easy_mode
= 0x10;
147 if (params
->mode
== V4L2_TUNER_RADIO
) {
148 /* Set TDA8295 to FM radio; Start TDA8290 with MN values */
149 priv
->tda8290_easy_mode
= (priv
->ver
& TDA8295
) ? 0x80 : 0x01;
150 tuner_dbg("setting to radio FM\n");
152 tuner_dbg("setting tda829x to system %s\n", mode
);
157 unsigned char seq
[2];
159 { { 0x01, 0x81} }, /* Put device into expert mode */
160 { { 0x03, 0x48} }, /* Disable NOTCH and VIDEO filters */
161 { { 0x04, 0x04} }, /* Disable color carrier filter (SSIF) */
162 { { 0x05, 0x04} }, /* ADC headroom */
163 { { 0x06, 0x10} }, /* group delay flat */
165 { { 0x07, 0x00} }, /* use the same radio DTO values as a tda8295 */
172 { { 0x0d, 0x00} }, /* PLL off, no video carrier detect */
173 { { 0x14, 0x00} }, /* disable auto mute if no video */
176 static void tda8290_set_params(struct dvb_frontend
*fe
,
177 struct analog_parameters
*params
)
179 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
181 static unsigned char soft_reset
[] = { 0x00, 0x00 };
182 unsigned char easy_mode
[] = { 0x01, priv
->tda8290_easy_mode
};
183 static unsigned char expert_mode
[] = { 0x01, 0x80 };
184 static unsigned char agc_out_on
[] = { 0x02, 0x00 };
185 static unsigned char gainset_off
[] = { 0x28, 0x14 };
186 static unsigned char if_agc_spd
[] = { 0x0f, 0x88 };
187 static unsigned char adc_head_6
[] = { 0x05, 0x04 };
188 static unsigned char adc_head_9
[] = { 0x05, 0x02 };
189 static unsigned char adc_head_12
[] = { 0x05, 0x01 };
190 static unsigned char pll_bw_nom
[] = { 0x0d, 0x47 };
191 static unsigned char pll_bw_low
[] = { 0x0d, 0x27 };
192 static unsigned char gainset_2
[] = { 0x28, 0x64 };
193 static unsigned char agc_rst_on
[] = { 0x0e, 0x0b };
194 static unsigned char agc_rst_off
[] = { 0x0e, 0x09 };
195 static unsigned char if_agc_set
[] = { 0x0f, 0x81 };
196 static unsigned char addr_adc_sat
= 0x1a;
197 static unsigned char addr_agc_stat
= 0x1d;
198 static unsigned char addr_pll_stat
= 0x1b;
199 static unsigned char adc_sat
= 0, agc_stat
= 0,
203 set_audio(fe
, params
);
205 if (priv
->cfg
.config
)
206 tuner_dbg("tda827xa config is 0x%02x\n", priv
->cfg
.config
);
207 tuner_i2c_xfer_send(&priv
->i2c_props
, easy_mode
, 2);
208 tuner_i2c_xfer_send(&priv
->i2c_props
, agc_out_on
, 2);
209 tuner_i2c_xfer_send(&priv
->i2c_props
, soft_reset
, 2);
212 if (params
->mode
== V4L2_TUNER_RADIO
) {
213 unsigned char deemphasis
[] = { 0x13, 1 };
215 /* FIXME: allow using a different deemphasis */
220 for (i
= 0; i
< ARRAY_SIZE(fm_mode
); i
++)
221 tuner_i2c_xfer_send(&priv
->i2c_props
, fm_mode
[i
].seq
, 2);
223 tuner_i2c_xfer_send(&priv
->i2c_props
, deemphasis
, 2);
225 expert_mode
[1] = priv
->tda8290_easy_mode
+ 0x80;
226 tuner_i2c_xfer_send(&priv
->i2c_props
, expert_mode
, 2);
227 tuner_i2c_xfer_send(&priv
->i2c_props
, gainset_off
, 2);
228 tuner_i2c_xfer_send(&priv
->i2c_props
, if_agc_spd
, 2);
229 if (priv
->tda8290_easy_mode
& 0x60)
230 tuner_i2c_xfer_send(&priv
->i2c_props
, adc_head_9
, 2);
232 tuner_i2c_xfer_send(&priv
->i2c_props
, adc_head_6
, 2);
233 tuner_i2c_xfer_send(&priv
->i2c_props
, pll_bw_nom
, 2);
237 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
238 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 1);
240 if (fe
->ops
.tuner_ops
.set_analog_params
)
241 fe
->ops
.tuner_ops
.set_analog_params(fe
, params
);
243 for (i
= 0; i
< 3; i
++) {
244 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
245 &addr_pll_stat
, 1, &pll_stat
, 1);
246 if (pll_stat
& 0x80) {
247 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
250 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
253 tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat
);
256 tuner_dbg("tda8290 not locked, no signal?\n");
260 /* adjust headroom resp. gain */
261 if ((agc_stat
> 115) || (!(pll_stat
& 0x80) && (adc_sat
< 20))) {
262 tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",
263 agc_stat
, adc_sat
, pll_stat
& 0x80);
264 tuner_i2c_xfer_send(&priv
->i2c_props
, gainset_2
, 2);
266 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
267 &addr_agc_stat
, 1, &agc_stat
, 1);
268 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
269 &addr_pll_stat
, 1, &pll_stat
, 1);
270 if ((agc_stat
> 115) || !(pll_stat
& 0x80)) {
271 tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
272 agc_stat
, pll_stat
& 0x80);
276 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
279 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
282 if((agc_stat
> 115) || !(pll_stat
& 0x80)) {
283 tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat
);
284 tuner_i2c_xfer_send(&priv
->i2c_props
, adc_head_12
, 2);
285 tuner_i2c_xfer_send(&priv
->i2c_props
, pll_bw_low
, 2);
291 /* l/ l' deadlock? */
292 if(priv
->tda8290_easy_mode
& 0x60) {
293 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
296 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
299 if ((adc_sat
> 20) || !(pll_stat
& 0x80)) {
300 tuner_dbg("trying to resolve SECAM L deadlock\n");
301 tuner_i2c_xfer_send(&priv
->i2c_props
, agc_rst_on
, 2);
303 tuner_i2c_xfer_send(&priv
->i2c_props
, agc_rst_off
, 2);
307 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
308 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 0);
309 tuner_i2c_xfer_send(&priv
->i2c_props
, if_agc_set
, 2);
312 /*---------------------------------------------------------------------*/
314 static void tda8295_power(struct dvb_frontend
*fe
, int enable
)
316 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
317 unsigned char buf
[] = { 0x30, 0x00 }; /* clb_stdbt */
319 tuner_i2c_xfer_send_recv(&priv
->i2c_props
, &buf
[0], 1, &buf
[1], 1);
326 tuner_i2c_xfer_send(&priv
->i2c_props
, buf
, 2);
329 static void tda8295_set_easy_mode(struct dvb_frontend
*fe
, int enable
)
331 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
332 unsigned char buf
[] = { 0x01, 0x00 };
334 tuner_i2c_xfer_send_recv(&priv
->i2c_props
, &buf
[0], 1, &buf
[1], 1);
337 buf
[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
339 buf
[1] = 0x00; /* reset active bit */
341 tuner_i2c_xfer_send(&priv
->i2c_props
, buf
, 2);
344 static void tda8295_set_video_std(struct dvb_frontend
*fe
)
346 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
347 unsigned char buf
[] = { 0x00, priv
->tda8290_easy_mode
};
349 tuner_i2c_xfer_send(&priv
->i2c_props
, buf
, 2);
351 tda8295_set_easy_mode(fe
, 1);
353 tda8295_set_easy_mode(fe
, 0);
356 /*---------------------------------------------------------------------*/
358 static void tda8295_agc1_out(struct dvb_frontend
*fe
, int enable
)
360 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
361 unsigned char buf
[] = { 0x02, 0x00 }; /* DIV_FUNC */
363 tuner_i2c_xfer_send_recv(&priv
->i2c_props
, &buf
[0], 1, &buf
[1], 1);
370 tuner_i2c_xfer_send(&priv
->i2c_props
, buf
, 2);
373 static void tda8295_agc2_out(struct dvb_frontend
*fe
, int enable
)
375 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
376 unsigned char set_gpio_cf
[] = { 0x44, 0x00 };
377 unsigned char set_gpio_val
[] = { 0x46, 0x00 };
379 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
380 &set_gpio_cf
[0], 1, &set_gpio_cf
[1], 1);
381 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
382 &set_gpio_val
[0], 1, &set_gpio_val
[1], 1);
384 set_gpio_cf
[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */
387 set_gpio_cf
[1] |= 0x01; /* config GPIO_0 as Open Drain Out */
388 set_gpio_val
[1] &= 0xfe; /* set GPIO_0 pin low */
390 tuner_i2c_xfer_send(&priv
->i2c_props
, set_gpio_cf
, 2);
391 tuner_i2c_xfer_send(&priv
->i2c_props
, set_gpio_val
, 2);
394 static int tda8295_has_signal(struct dvb_frontend
*fe
, u16
*signal
)
396 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
398 unsigned char hvpll_stat
= 0x26;
401 tuner_i2c_xfer_send_recv(&priv
->i2c_props
, &hvpll_stat
, 1, &ret
, 1);
402 *signal
= (ret
& 0x01) ? 65535 : 0;
406 /*---------------------------------------------------------------------*/
408 static void tda8295_set_params(struct dvb_frontend
*fe
,
409 struct analog_parameters
*params
)
411 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
413 unsigned char blanking_mode
[] = { 0x1d, 0x00 };
415 set_audio(fe
, params
);
417 tuner_dbg("%s: freq = %d\n", __func__
, params
->frequency
);
419 tda8295_power(fe
, 1);
420 tda8295_agc1_out(fe
, 1);
422 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
423 &blanking_mode
[0], 1, &blanking_mode
[1], 1);
425 tda8295_set_video_std(fe
);
427 blanking_mode
[1] = 0x03;
428 tuner_i2c_xfer_send(&priv
->i2c_props
, blanking_mode
, 2);
431 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
432 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 1);
434 if (fe
->ops
.tuner_ops
.set_analog_params
)
435 fe
->ops
.tuner_ops
.set_analog_params(fe
, params
);
440 tda8295_has_signal(fe
, &signal
);
442 tuner_dbg("tda8295 is locked\n");
444 tuner_dbg("tda8295 not locked, no signal?\n");
446 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
447 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 0);
450 /*---------------------------------------------------------------------*/
452 static int tda8290_has_signal(struct dvb_frontend
*fe
, u16
*signal
)
454 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
456 unsigned char i2c_get_afc
[1] = { 0x1B };
457 unsigned char afc
= 0;
459 tuner_i2c_xfer_send_recv(&priv
->i2c_props
,
460 i2c_get_afc
, ARRAY_SIZE(i2c_get_afc
), &afc
, 1);
461 *signal
= (afc
& 0x80) ? 65535 : 0;
465 /*---------------------------------------------------------------------*/
467 static void tda8290_standby(struct dvb_frontend
*fe
)
469 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
471 static unsigned char cb1
[] = { 0x30, 0xD0 };
472 static unsigned char tda8290_standby
[] = { 0x00, 0x02 };
473 static unsigned char tda8290_agc_tri
[] = { 0x02, 0x20 };
474 struct i2c_msg msg
= {.addr
= priv
->tda827x_addr
, .flags
=0, .buf
=cb1
, .len
= 2};
476 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
477 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 1);
478 if (priv
->ver
& TDA8275A
)
480 i2c_transfer(priv
->i2c_props
.adap
, &msg
, 1);
481 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
482 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 0);
483 tuner_i2c_xfer_send(&priv
->i2c_props
, tda8290_agc_tri
, 2);
484 tuner_i2c_xfer_send(&priv
->i2c_props
, tda8290_standby
, 2);
487 static void tda8295_standby(struct dvb_frontend
*fe
)
489 tda8295_agc1_out(fe
, 0); /* Put AGC in tri-state */
491 tda8295_power(fe
, 0);
494 static void tda8290_init_if(struct dvb_frontend
*fe
)
496 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
498 static unsigned char set_VS
[] = { 0x30, 0x6F };
499 static unsigned char set_GP00_CF
[] = { 0x20, 0x01 };
500 static unsigned char set_GP01_CF
[] = { 0x20, 0x0B };
502 if ((priv
->cfg
.config
== TDA8290_LNA_GP0_HIGH_ON
) ||
503 (priv
->cfg
.config
== TDA8290_LNA_GP0_HIGH_OFF
))
504 tuner_i2c_xfer_send(&priv
->i2c_props
, set_GP00_CF
, 2);
506 tuner_i2c_xfer_send(&priv
->i2c_props
, set_GP01_CF
, 2);
507 tuner_i2c_xfer_send(&priv
->i2c_props
, set_VS
, 2);
510 static void tda8295_init_if(struct dvb_frontend
*fe
)
512 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
514 static unsigned char set_adc_ctl
[] = { 0x33, 0x14 };
515 static unsigned char set_adc_ctl2
[] = { 0x34, 0x00 };
516 static unsigned char set_pll_reg6
[] = { 0x3e, 0x63 };
517 static unsigned char set_pll_reg0
[] = { 0x38, 0x23 };
518 static unsigned char set_pll_reg7
[] = { 0x3f, 0x01 };
519 static unsigned char set_pll_reg10
[] = { 0x42, 0x61 };
520 static unsigned char set_gpio_reg0
[] = { 0x44, 0x0b };
522 tda8295_power(fe
, 1);
524 tda8295_set_easy_mode(fe
, 0);
525 tda8295_set_video_std(fe
);
527 tuner_i2c_xfer_send(&priv
->i2c_props
, set_adc_ctl
, 2);
528 tuner_i2c_xfer_send(&priv
->i2c_props
, set_adc_ctl2
, 2);
529 tuner_i2c_xfer_send(&priv
->i2c_props
, set_pll_reg6
, 2);
530 tuner_i2c_xfer_send(&priv
->i2c_props
, set_pll_reg0
, 2);
531 tuner_i2c_xfer_send(&priv
->i2c_props
, set_pll_reg7
, 2);
532 tuner_i2c_xfer_send(&priv
->i2c_props
, set_pll_reg10
, 2);
533 tuner_i2c_xfer_send(&priv
->i2c_props
, set_gpio_reg0
, 2);
535 tda8295_agc1_out(fe
, 0);
536 tda8295_agc2_out(fe
, 0);
539 static void tda8290_init_tuner(struct dvb_frontend
*fe
)
541 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
542 static unsigned char tda8275_init
[] =
543 { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
544 0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
545 static unsigned char tda8275a_init
[] =
546 { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
547 0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
548 struct i2c_msg msg
= {.addr
= priv
->tda827x_addr
, .flags
=0,
549 .buf
=tda8275_init
, .len
= 14};
550 if (priv
->ver
& TDA8275A
)
551 msg
.buf
= tda8275a_init
;
553 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
554 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 1);
555 i2c_transfer(priv
->i2c_props
.adap
, &msg
, 1);
556 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
557 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 0);
560 /*---------------------------------------------------------------------*/
562 static void tda829x_release(struct dvb_frontend
*fe
)
564 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
566 /* only try to release the tuner if we've
567 * attached it from within this module */
568 if (priv
->ver
& (TDA18271
| TDA8275
| TDA8275A
))
569 if (fe
->ops
.tuner_ops
.release
)
570 fe
->ops
.tuner_ops
.release(fe
);
572 kfree(fe
->analog_demod_priv
);
573 fe
->analog_demod_priv
= NULL
;
576 static struct tda18271_config tda829x_tda18271_config
= {
577 .gate
= TDA18271_GATE_ANALOG
,
580 static int tda829x_find_tuner(struct dvb_frontend
*fe
)
582 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
583 int i
, ret
, tuners_found
;
586 struct i2c_msg msg
= { .flags
= I2C_M_RD
, .buf
= &data
, .len
= 1 };
588 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
589 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 1);
591 /* probe for tuner chip */
594 for (i
= 0x60; i
<= 0x63; i
++) {
596 ret
= i2c_transfer(priv
->i2c_props
.adap
, &msg
, 1);
599 tuner_addrs
= (tuner_addrs
<< 8) + i
;
602 /* if there is more than one tuner, we expect the right one is
603 behind the bridge and we choose the highest address that doesn't
607 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
608 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 0);
610 if (tuners_found
> 1)
611 for (i
= 0; i
< tuners_found
; i
++) {
612 msg
.addr
= tuner_addrs
& 0xff;
613 ret
= i2c_transfer(priv
->i2c_props
.adap
, &msg
, 1);
615 tuner_addrs
= tuner_addrs
>> 8;
620 if (tuner_addrs
== 0) {
622 tuner_info("could not clearly identify tuner address, defaulting to %x\n",
625 tuner_addrs
= tuner_addrs
& 0xff;
626 tuner_info("setting tuner address to %x\n", tuner_addrs
);
628 priv
->tda827x_addr
= tuner_addrs
;
629 msg
.addr
= tuner_addrs
;
631 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
632 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 1);
633 ret
= i2c_transfer(priv
->i2c_props
.adap
, &msg
, 1);
636 tuner_warn("tuner access failed!\n");
637 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
638 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 0);
642 if ((data
== 0x83) || (data
== 0x84)) {
643 priv
->ver
|= TDA18271
;
644 tda829x_tda18271_config
.config
= priv
->cfg
.config
;
645 tda829x_tda18271_config
.std_map
= priv
->tda18271_std_map
;
646 dvb_attach(tda18271_attach
, fe
, priv
->tda827x_addr
,
647 priv
->i2c_props
.adap
, &tda829x_tda18271_config
);
649 if ((data
& 0x3c) == 0)
650 priv
->ver
|= TDA8275
;
652 priv
->ver
|= TDA8275A
;
654 dvb_attach(tda827x_attach
, fe
, priv
->tda827x_addr
,
655 priv
->i2c_props
.adap
, &priv
->cfg
);
656 priv
->cfg
.switch_addr
= priv
->i2c_props
.addr
;
658 if (fe
->ops
.tuner_ops
.init
)
659 fe
->ops
.tuner_ops
.init(fe
);
661 if (fe
->ops
.tuner_ops
.sleep
)
662 fe
->ops
.tuner_ops
.sleep(fe
);
664 if (fe
->ops
.analog_ops
.i2c_gate_ctrl
)
665 fe
->ops
.analog_ops
.i2c_gate_ctrl(fe
, 0);
670 static int tda8290_probe(struct tuner_i2c_props
*i2c_props
)
672 #define TDA8290_ID 0x89
674 struct i2c_msg msg_read
[] = {
675 { .addr
= i2c_props
->addr
, .flags
= 0, .len
= 1, .buf
= ®
},
676 { .addr
= i2c_props
->addr
, .flags
= I2C_M_RD
, .len
= 1, .buf
= &id
},
680 if (i2c_transfer(i2c_props
->adap
, msg_read
, 2) != 2) {
681 printk(KERN_WARNING
"%s: couldn't read register 0x%02x\n",
686 if (id
== TDA8290_ID
) {
688 printk(KERN_DEBUG
"%s: tda8290 detected @ %d-%04x\n",
689 __func__
, i2c_adapter_id(i2c_props
->adap
),
696 static int tda8295_probe(struct tuner_i2c_props
*i2c_props
)
698 #define TDA8295_ID 0x8a
699 #define TDA8295C2_ID 0x8b
701 struct i2c_msg msg_read
[] = {
702 { .addr
= i2c_props
->addr
, .flags
= 0, .len
= 1, .buf
= ®
},
703 { .addr
= i2c_props
->addr
, .flags
= I2C_M_RD
, .len
= 1, .buf
= &id
},
707 if (i2c_transfer(i2c_props
->adap
, msg_read
, 2) != 2) {
708 printk(KERN_WARNING
"%s: couldn't read register 0x%02x\n",
713 if ((id
& 0xfe) == TDA8295_ID
) {
715 printk(KERN_DEBUG
"%s: %s detected @ %d-%04x\n",
716 __func__
, (id
== TDA8295_ID
) ?
717 "tda8295c1" : "tda8295c2",
718 i2c_adapter_id(i2c_props
->adap
),
726 static const struct analog_demod_ops tda8290_ops
= {
727 .set_params
= tda8290_set_params
,
728 .has_signal
= tda8290_has_signal
,
729 .standby
= tda8290_standby
,
730 .release
= tda829x_release
,
731 .i2c_gate_ctrl
= tda8290_i2c_bridge
,
734 static const struct analog_demod_ops tda8295_ops
= {
735 .set_params
= tda8295_set_params
,
736 .has_signal
= tda8295_has_signal
,
737 .standby
= tda8295_standby
,
738 .release
= tda829x_release
,
739 .i2c_gate_ctrl
= tda8295_i2c_bridge
,
742 struct dvb_frontend
*tda829x_attach(struct dvb_frontend
*fe
,
743 struct i2c_adapter
*i2c_adap
, u8 i2c_addr
,
744 struct tda829x_config
*cfg
)
746 struct tda8290_priv
*priv
= NULL
;
749 priv
= kzalloc(sizeof(struct tda8290_priv
), GFP_KERNEL
);
752 fe
->analog_demod_priv
= priv
;
754 priv
->i2c_props
.addr
= i2c_addr
;
755 priv
->i2c_props
.adap
= i2c_adap
;
756 priv
->i2c_props
.name
= "tda829x";
758 priv
->cfg
.config
= cfg
->lna_cfg
;
759 priv
->tda18271_std_map
= cfg
->tda18271_std_map
;
762 if (tda8290_probe(&priv
->i2c_props
) == 0) {
764 memcpy(&fe
->ops
.analog_ops
, &tda8290_ops
,
765 sizeof(struct analog_demod_ops
));
768 if (tda8295_probe(&priv
->i2c_props
) == 0) {
770 memcpy(&fe
->ops
.analog_ops
, &tda8295_ops
,
771 sizeof(struct analog_demod_ops
));
774 if (cfg
&& cfg
->no_i2c_gate
)
775 fe
->ops
.analog_ops
.i2c_gate_ctrl
= NULL
;
777 if (!(cfg
) || (TDA829X_PROBE_TUNER
== cfg
->probe_tuner
)) {
778 tda8295_power(fe
, 1);
779 if (tda829x_find_tuner(fe
) < 0)
790 case TDA8290
| TDA8275
:
793 case TDA8295
| TDA8275
:
796 case TDA8290
| TDA8275A
:
797 name
= "tda8290+75a";
799 case TDA8295
| TDA8275A
:
800 name
= "tda8295+75a";
802 case TDA8290
| TDA18271
:
803 name
= "tda8290+18271";
805 case TDA8295
| TDA18271
:
806 name
= "tda8295+18271";
811 tuner_info("type set to %s\n", name
);
813 fe
->ops
.analog_ops
.info
.name
= name
;
815 if (priv
->ver
& TDA8290
) {
816 if (priv
->ver
& (TDA8275
| TDA8275A
))
817 tda8290_init_tuner(fe
);
819 } else if (priv
->ver
& TDA8295
)
825 memset(&fe
->ops
.analog_ops
, 0, sizeof(struct analog_demod_ops
));
830 EXPORT_SYMBOL_GPL(tda829x_attach
);
832 int tda829x_probe(struct i2c_adapter
*i2c_adap
, u8 i2c_addr
)
834 struct tuner_i2c_props i2c_props
= {
839 static unsigned char soft_reset
[] = { 0x00, 0x00 };
840 static unsigned char easy_mode_b
[] = { 0x01, 0x02 };
841 static unsigned char easy_mode_g
[] = { 0x01, 0x04 };
842 static unsigned char restore_9886
[] = { 0x00, 0xd6, 0x30 };
843 static unsigned char addr_dto_lsb
= 0x07;
845 #define PROBE_BUFFER_SIZE 8
846 unsigned char buf
[PROBE_BUFFER_SIZE
];
849 /* rule out tda9887, which would return the same byte repeatedly */
850 tuner_i2c_xfer_send_recv(&i2c_props
,
851 soft_reset
, 1, buf
, PROBE_BUFFER_SIZE
);
852 for (i
= 1; i
< PROBE_BUFFER_SIZE
; i
++) {
853 if (buf
[i
] != buf
[0])
857 /* all bytes are equal, not a tda829x - probably a tda9887 */
858 if (i
== PROBE_BUFFER_SIZE
)
861 if ((tda8290_probe(&i2c_props
) == 0) ||
862 (tda8295_probe(&i2c_props
) == 0))
865 /* fall back to old probing method */
866 tuner_i2c_xfer_send(&i2c_props
, easy_mode_b
, 2);
867 tuner_i2c_xfer_send(&i2c_props
, soft_reset
, 2);
868 tuner_i2c_xfer_send_recv(&i2c_props
, &addr_dto_lsb
, 1, &data
, 1);
870 tuner_i2c_xfer_send(&i2c_props
, easy_mode_g
, 2);
871 tuner_i2c_xfer_send(&i2c_props
, soft_reset
, 2);
872 tuner_i2c_xfer_send_recv(&i2c_props
,
873 &addr_dto_lsb
, 1, &data
, 1);
878 tuner_i2c_xfer_send(&i2c_props
, restore_9886
, 3);
881 EXPORT_SYMBOL_GPL(tda829x_probe
);
883 MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
884 MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
885 MODULE_LICENSE("GPL");