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/videodev2.h>
26 #include "tuner-i2c.h"
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 /* ---------------------------------------------------------------------- */
41 struct tuner_i2c_props i2c_props
;
43 unsigned char tda8290_easy_mode
;
45 unsigned char tda827x_addr
;
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 };
69 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 2);
70 /* let the bridge stabilize */
74 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 2);
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 };
91 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 2);
92 /* let the bridge stabilize */
96 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 1);
97 tuner_i2c_xfer_recv(&priv
->i2c_props
, &msg
[1], 1);
101 tuner_i2c_xfer_send(&priv
->i2c_props
, buf
, 3);
105 tuner_i2c_xfer_send(&priv
->i2c_props
, msg
, 2);
111 /*---------------------------------------------------------------------*/
113 static void set_audio(struct dvb_frontend
*fe
,
114 struct analog_parameters
*params
)
116 struct tda8290_priv
*priv
= fe
->analog_demod_priv
;
119 if (params
->std
& V4L2_STD_MN
) {
120 priv
->tda8290_easy_mode
= 0x01;
122 } else if (params
->std
& V4L2_STD_B
) {
123 priv
->tda8290_easy_mode
= 0x02;
125 } else if (params
->std
& V4L2_STD_GH
) {
126 priv
->tda8290_easy_mode
= 0x04;
128 } else if (params
->std
& V4L2_STD_PAL_I
) {
129 priv
->tda8290_easy_mode
= 0x08;
131 } else if (params
->std
& V4L2_STD_DK
) {
132 priv
->tda8290_easy_mode
= 0x10;
134 } else if (params
->std
& V4L2_STD_SECAM_L
) {
135 priv
->tda8290_easy_mode
= 0x20;
137 } else if (params
->std
& V4L2_STD_SECAM_LC
) {
138 priv
->tda8290_easy_mode
= 0x40;
141 priv
->tda8290_easy_mode
= 0x10;
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");
149 tuner_dbg("setting tda829x to system %s\n", mode
);
154 unsigned char seq
[2];
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 */
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
,
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);
209 if (params
->mode
== V4L2_TUNER_RADIO
) {
210 unsigned char deemphasis
[] = { 0x13, 1 };
212 /* FIXME: allow using a different deemphasis */
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);
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);
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
);
249 tuner_dbg("tda8290 not locked, no signal?\n");
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);
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);
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);
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);
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);
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);
327 buf
[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
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);
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);
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 */
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;
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);
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
);
430 if (tda8295_has_signal(fe
))
431 tuner_dbg("tda8295 is locked\n");
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
)
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);
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
;
567 struct i2c_msg msg
= { .flags
= I2C_M_RD
, .buf
= &data
, .len
= 1 };
569 if (!analog_ops
->i2c_gate_ctrl
) {
570 printk(KERN_ERR
"tda8290: no gate control were provided!\n");
575 analog_ops
->i2c_gate_ctrl(fe
, 1);
577 /* probe for tuner chip */
580 for (i
= 0x60; i
<= 0x63; i
++) {
582 ret
= i2c_transfer(priv
->i2c_props
.adap
, &msg
, 1);
585 tuner_addrs
= (tuner_addrs
<< 8) + i
;
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
593 analog_ops
->i2c_gate_ctrl(fe
, 0);
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);
600 tuner_addrs
= tuner_addrs
>> 8;
605 if (tuner_addrs
== 0) {
607 tuner_info("could not clearly identify tuner address, "
608 "defaulting to %x\n", tuner_addrs
);
610 tuner_addrs
= tuner_addrs
& 0xff;
611 tuner_info("setting tuner address to %x\n", tuner_addrs
);
613 priv
->tda827x_addr
= tuner_addrs
;
614 msg
.addr
= tuner_addrs
;
616 analog_ops
->i2c_gate_ctrl(fe
, 1);
617 ret
= i2c_transfer(priv
->i2c_props
.adap
, &msg
, 1);
620 tuner_warn("tuner access failed!\n");
621 analog_ops
->i2c_gate_ctrl(fe
, 0);
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
);
631 if ((data
& 0x3c) == 0)
632 priv
->ver
|= TDA8275
;
634 priv
->ver
|= TDA8275A
;
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
;
640 if (fe
->ops
.tuner_ops
.init
)
641 fe
->ops
.tuner_ops
.init(fe
);
643 if (fe
->ops
.tuner_ops
.sleep
)
644 fe
->ops
.tuner_ops
.sleep(fe
);
646 analog_ops
->i2c_gate_ctrl(fe
, 0);
651 static int tda8290_probe(struct tuner_i2c_props
*i2c_props
)
653 #define TDA8290_ID 0x89
654 unsigned char tda8290_id
[] = { 0x1f, 0x00 };
657 tuner_i2c_xfer_send(i2c_props
, &tda8290_id
[0], 1);
658 tuner_i2c_xfer_recv(i2c_props
, &tda8290_id
[1], 1);
660 if (tda8290_id
[1] == TDA8290_ID
) {
662 printk(KERN_DEBUG
"%s: tda8290 detected @ %d-%04x\n",
663 __func__
, i2c_adapter_id(i2c_props
->adap
),
671 static int tda8295_probe(struct tuner_i2c_props
*i2c_props
)
673 #define TDA8295_ID 0x8a
674 unsigned char tda8295_id
[] = { 0x2f, 0x00 };
677 tuner_i2c_xfer_send(i2c_props
, &tda8295_id
[0], 1);
678 tuner_i2c_xfer_recv(i2c_props
, &tda8295_id
[1], 1);
680 if (tda8295_id
[1] == TDA8295_ID
) {
682 printk(KERN_DEBUG
"%s: tda8295 detected @ %d-%04x\n",
683 __func__
, i2c_adapter_id(i2c_props
->adap
),
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
,
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
,
707 struct dvb_frontend
*tda829x_attach(struct dvb_frontend
*fe
,
708 struct i2c_adapter
*i2c_adap
, u8 i2c_addr
,
709 struct tda829x_config
*cfg
)
711 struct tda8290_priv
*priv
= NULL
;
714 priv
= kzalloc(sizeof(struct tda8290_priv
), GFP_KERNEL
);
717 fe
->analog_demod_priv
= priv
;
719 priv
->i2c_props
.addr
= i2c_addr
;
720 priv
->i2c_props
.adap
= i2c_adap
;
721 priv
->i2c_props
.name
= "tda829x";
723 priv
->cfg
.config
= cfg
->lna_cfg
;
725 if (tda8290_probe(&priv
->i2c_props
) == 0) {
727 memcpy(&fe
->ops
.analog_ops
, &tda8290_ops
,
728 sizeof(struct analog_demod_ops
));
731 if (tda8295_probe(&priv
->i2c_props
) == 0) {
733 memcpy(&fe
->ops
.analog_ops
, &tda8295_ops
,
734 sizeof(struct analog_demod_ops
));
737 if ((!(cfg
) || (TDA829X_PROBE_TUNER
== cfg
->probe_tuner
)) &&
738 (tda829x_find_tuner(fe
) < 0))
748 case TDA8290
| TDA8275
:
751 case TDA8295
| TDA8275
:
754 case TDA8290
| TDA8275A
:
755 name
= "tda8290+75a";
757 case TDA8295
| TDA8275A
:
758 name
= "tda8295+75a";
760 case TDA8290
| TDA18271
:
761 name
= "tda8290+18271";
763 case TDA8295
| TDA18271
:
764 name
= "tda8295+18271";
769 tuner_info("type set to %s\n", name
);
771 fe
->ops
.analog_ops
.info
.name
= name
;
773 if (priv
->ver
& TDA8290
) {
774 if (priv
->ver
& (TDA8275
| TDA8275A
))
775 tda8290_init_tuner(fe
);
777 } else if (priv
->ver
& TDA8295
)
786 EXPORT_SYMBOL_GPL(tda829x_attach
);
788 int tda829x_probe(struct i2c_adapter
*i2c_adap
, u8 i2c_addr
)
790 struct tuner_i2c_props i2c_props
= {
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;
801 #define PROBE_BUFFER_SIZE 8
802 unsigned char buf
[PROBE_BUFFER_SIZE
];
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])
813 /* all bytes are equal, not a tda829x - probably a tda9887 */
814 if (i
== PROBE_BUFFER_SIZE
)
817 if ((tda8290_probe(&i2c_props
) == 0) ||
818 (tda8295_probe(&i2c_props
) == 0))
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);
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);
835 tuner_i2c_xfer_send(&i2c_props
, restore_9886
, 3);
838 EXPORT_SYMBOL_GPL(tda829x_probe
);
840 MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
841 MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
842 MODULE_LICENSE("GPL");
845 * Overrides for Emacs so that we follow Linus's tabbing style.
846 * ---------------------------------------------------------------------------