tda8290.c 21.9 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

   i2c tv tuner chip device driver
   controls the philips tda8290+75 tuner chip combo.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 20

   This "tda8290" module was split apart from the original "tuner" module.
21 22
*/

L
Linus Torvalds 已提交
23 24
#include <linux/i2c.h>
#include <linux/delay.h>
25
#include <linux/videodev.h>
26 27
#include "tuner-driver.h"
#include "tuner-i2c.h"
28
#include "tda8290.h"
29
#include "tda827x.h"
30
#include "tda18271.h"
31

32 33
static int debug;
module_param(debug, int, 0644);
34 35
MODULE_PARM_DESC(debug, "enable verbose debug messages");

36
#define PREFIX "tda8290"
L
Linus Torvalds 已提交
37 38 39

/* ---------------------------------------------------------------------- */

40
struct tda8290_priv {
41 42
	struct tuner_i2c_props i2c_props;

43
	unsigned char tda8290_easy_mode;
44

45
	unsigned char tda827x_addr;
46 47 48 49 50 51 52

	unsigned char ver;
#define TDA8290   1
#define TDA8295   2
#define TDA8275   4
#define TDA8275A  8
#define TDA18271 16
L
Linus Torvalds 已提交
53

54
	struct tda827x_config cfg;
L
Linus Torvalds 已提交
55 56
};

57
/*---------------------------------------------------------------------*/
L
Linus Torvalds 已提交
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 71 72 73
		/* let the bridge stabilize */
		msleep(20);
	} else {
		msg = disable;
74
		tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
75
	}
76 77

	return 0;
L
Linus Torvalds 已提交
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 85 86 87

	unsigned char  enable[2] = { 0x45, 0xc1 };
	unsigned char disable[2] = { 0x46, 0x00 };
	unsigned char buf[3] = { 0x45, 0x01, 0x00 };
	unsigned char *msg;
88

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
	if (close) {
		msg = enable;
		tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
		/* let the bridge stabilize */
		msleep(20);
	} else {
		msg = disable;
		tuner_i2c_xfer_send(&priv->i2c_props, msg, 1);
		tuner_i2c_xfer_recv(&priv->i2c_props, &msg[1], 1);

		buf[2] = msg[1];
		buf[2] &= ~0x04;
		tuner_i2c_xfer_send(&priv->i2c_props, buf, 3);
		msleep(5);

		msg[1] |= 0x04;
		tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
	}
107 108

	return 0;
109 110
}

111 112
/*---------------------------------------------------------------------*/

113 114
static void set_audio(struct dvb_frontend *fe,
		      struct analog_parameters *params)
L
Linus Torvalds 已提交
115
{
116
	struct tda8290_priv *priv = fe->analog_demod_priv;
117 118
	char* mode;

119
	if (params->std & V4L2_STD_MN) {
120 121
		priv->tda8290_easy_mode = 0x01;
		mode = "MN";
122
	} else if (params->std & V4L2_STD_B) {
123 124
		priv->tda8290_easy_mode = 0x02;
		mode = "B";
125
	} else if (params->std & V4L2_STD_GH) {
126 127
		priv->tda8290_easy_mode = 0x04;
		mode = "GH";
128
	} else if (params->std & V4L2_STD_PAL_I) {
129 130
		priv->tda8290_easy_mode = 0x08;
		mode = "I";
131
	} else if (params->std & V4L2_STD_DK) {
132 133
		priv->tda8290_easy_mode = 0x10;
		mode = "DK";
134
	} else if (params->std & V4L2_STD_SECAM_L) {
135 136
		priv->tda8290_easy_mode = 0x20;
		mode = "L";
137
	} else if (params->std & V4L2_STD_SECAM_LC) {
138 139 140 141 142 143 144
		priv->tda8290_easy_mode = 0x40;
		mode = "LC";
	} else {
		priv->tda8290_easy_mode = 0x10;
		mode = "xx";
	}

145
	tuner_dbg("setting tda829x to system %s\n", mode);
146 147
}

148 149
static void tda8290_set_params(struct dvb_frontend *fe,
			       struct analog_parameters *params)
150
{
151 152
	struct tda8290_priv *priv = fe->analog_demod_priv;

153
	unsigned char soft_reset[]  = { 0x00, 0x00 };
154
	unsigned char easy_mode[]   = { 0x01, priv->tda8290_easy_mode };
155
	unsigned char expert_mode[] = { 0x01, 0x80 };
156
	unsigned char agc_out_on[]  = { 0x02, 0x00 };
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
	unsigned char gainset_off[] = { 0x28, 0x14 };
	unsigned char if_agc_spd[]  = { 0x0f, 0x88 };
	unsigned char adc_head_6[]  = { 0x05, 0x04 };
	unsigned char adc_head_9[]  = { 0x05, 0x02 };
	unsigned char adc_head_12[] = { 0x05, 0x01 };
	unsigned char pll_bw_nom[]  = { 0x0d, 0x47 };
	unsigned char pll_bw_low[]  = { 0x0d, 0x27 };
	unsigned char gainset_2[]   = { 0x28, 0x64 };
	unsigned char agc_rst_on[]  = { 0x0e, 0x0b };
	unsigned char agc_rst_off[] = { 0x0e, 0x09 };
	unsigned char if_agc_set[]  = { 0x0f, 0x81 };
	unsigned char addr_adc_sat  = 0x1a;
	unsigned char addr_agc_stat = 0x1d;
	unsigned char addr_pll_stat = 0x1b;
	unsigned char adc_sat, agc_stat,
172
		      pll_stat;
173
	int i;
174

175
	set_audio(fe, params);
176

177 178
	if (priv->cfg.config)
		tuner_dbg("tda827xa config is 0x%02x\n", *priv->cfg.config);
179 180 181
	tuner_i2c_xfer_send(&priv->i2c_props, easy_mode, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, agc_out_on, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, soft_reset, 2);
182 183
	msleep(1);

184
	expert_mode[1] = priv->tda8290_easy_mode + 0x80;
185 186 187
	tuner_i2c_xfer_send(&priv->i2c_props, expert_mode, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, gainset_off, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, if_agc_spd, 2);
188
	if (priv->tda8290_easy_mode & 0x60)
189
		tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
190
	else
191 192
		tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
193

194
	tda8290_i2c_bridge(fe, 1);
195

196
	if (fe->ops.tuner_ops.set_analog_params)
197
		fe->ops.tuner_ops.set_analog_params(fe, params);
198

199
	for (i = 0; i < 3; i++) {
200 201
		tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
		tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
202
		if (pll_stat & 0x80) {
203 204 205 206
			tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
			tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
			tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
			tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
207 208 209 210 211 212 213
			tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);
			break;
		} else {
			tuner_dbg("tda8290 not locked, no signal?\n");
			msleep(100);
		}
	}
214
	/* adjust headroom resp. gain */
215 216 217
	if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) {
		tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",
			   agc_stat, adc_sat, pll_stat & 0x80);
218
		tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);
219
		msleep(100);
220 221 222 223
		tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
		tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
		tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
		tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
224
		if ((agc_stat > 115) || !(pll_stat & 0x80)) {
225 226
			tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
				   agc_stat, pll_stat & 0x80);
227
			if (priv->cfg.agcf)
228
				priv->cfg.agcf(fe);
229
			msleep(100);
230 231 232 233
			tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
			tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
			tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
			tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
234 235
			if((agc_stat > 115) || !(pll_stat & 0x80)) {
				tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);
236 237
				tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);
				tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);
238 239 240 241
				msleep(100);
			}
		}
	}
L
Linus Torvalds 已提交
242

243
	/* l/ l' deadlock? */
244
	if(priv->tda8290_easy_mode & 0x60) {
245 246 247 248
		tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
		tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
		tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
		tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
249
		if ((adc_sat > 20) || !(pll_stat & 0x80)) {
250
			tuner_dbg("trying to resolve SECAM L deadlock\n");
251
			tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
252
			msleep(40);
253
			tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
254 255
		}
	}
256

257
	tda8290_i2c_bridge(fe, 0);
258
	tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
L
Linus Torvalds 已提交
259 260
}

261 262
/*---------------------------------------------------------------------*/

263
static void tda8295_power(struct dvb_frontend *fe, int enable)
264
{
265
	struct tda8290_priv *priv = fe->analog_demod_priv;
266 267 268 269 270 271 272 273 274 275 276 277 278
	unsigned char buf[] = { 0x30, 0x00 }; /* clb_stdbt */

	tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
	tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);

	if (enable)
		buf[1] = 0x01;
	else
		buf[1] = 0x03;

	tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
}

279
static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
280
{
281
	struct tda8290_priv *priv = fe->analog_demod_priv;
282 283 284 285 286 287 288 289 290 291 292 293 294
	unsigned char buf[] = { 0x01, 0x00 };

	tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
	tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);

	if (enable)
		buf[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
	else
		buf[1] = 0x00; /* reset active bit */

	tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
}

295
static void tda8295_set_video_std(struct dvb_frontend *fe)
296
{
297
	struct tda8290_priv *priv = fe->analog_demod_priv;
298 299 300 301
	unsigned char buf[] = { 0x00, priv->tda8290_easy_mode };

	tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);

302
	tda8295_set_easy_mode(fe, 1);
303
	msleep(20);
304
	tda8295_set_easy_mode(fe, 0);
305 306 307 308
}

/*---------------------------------------------------------------------*/

309
static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
310
{
311
	struct tda8290_priv *priv = fe->analog_demod_priv;
312 313 314 315 316 317 318 319 320 321 322 323 324
	unsigned char buf[] = { 0x02, 0x00 }; /* DIV_FUNC */

	tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
	tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);

	if (enable)
		buf[1] &= ~0x40;
	else
		buf[1] |= 0x40;

	tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
}

325
static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
326
{
327
	struct tda8290_priv *priv = fe->analog_demod_priv;
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
	unsigned char set_gpio_cf[]    = { 0x44, 0x00 };
	unsigned char set_gpio_val[]   = { 0x46, 0x00 };

	tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_cf[0], 1);
	tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_cf[1], 1);
	tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_val[0], 1);
	tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_val[1], 1);

	set_gpio_cf[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */

	if (enable) {
		set_gpio_cf[1]  |= 0x01; /* config GPIO_0 as Open Drain Out */
		set_gpio_val[1] &= 0xfe; /* set GPIO_0 pin low */
	}
	tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_cf, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_val, 2);
}

346
static int tda8295_has_signal(struct dvb_frontend *fe)
347
{
348
	struct tda8290_priv *priv = fe->analog_demod_priv;
349 350 351 352 353 354 355 356 357 358 359

	unsigned char hvpll_stat = 0x26;
	unsigned char ret;

	tuner_i2c_xfer_send(&priv->i2c_props, &hvpll_stat, 1);
	tuner_i2c_xfer_recv(&priv->i2c_props, &ret, 1);
	return (ret & 0x01) ? 65535 : 0;
}

/*---------------------------------------------------------------------*/

360 361
static void tda8295_set_params(struct dvb_frontend *fe,
			       struct analog_parameters *params)
362
{
363
	struct tda8290_priv *priv = fe->analog_demod_priv;
364 365 366

	unsigned char blanking_mode[]     = { 0x1d, 0x00 };

367
	set_audio(fe, params);
368

369
	tuner_dbg("%s: freq = %d\n", __FUNCTION__, params->frequency);
370

371 372
	tda8295_power(fe, 1);
	tda8295_agc1_out(fe, 1);
373 374 375 376

	tuner_i2c_xfer_send(&priv->i2c_props, &blanking_mode[0], 1);
	tuner_i2c_xfer_recv(&priv->i2c_props, &blanking_mode[1], 1);

377
	tda8295_set_video_std(fe);
378 379 380 381 382

	blanking_mode[1] = 0x03;
	tuner_i2c_xfer_send(&priv->i2c_props, blanking_mode, 2);
	msleep(20);

383
	tda8295_i2c_bridge(fe, 1);
384

385
	if (fe->ops.tuner_ops.set_analog_params)
386
		fe->ops.tuner_ops.set_analog_params(fe, params);
387 388

	if (priv->cfg.agcf)
389
		priv->cfg.agcf(fe);
390

391
	if (tda8295_has_signal(fe))
392 393 394 395
		tuner_dbg("tda8295 is locked\n");
	else
		tuner_dbg("tda8295 not locked, no signal?\n");

396
	tda8295_i2c_bridge(fe, 0);
397 398 399 400
}

/*---------------------------------------------------------------------*/

401
static int tda8290_has_signal(struct dvb_frontend *fe)
L
Linus Torvalds 已提交
402
{
403
	struct tda8290_priv *priv = fe->analog_demod_priv;
L
Linus Torvalds 已提交
404

405 406
	unsigned char i2c_get_afc[1] = { 0x1B };
	unsigned char afc = 0;
L
Linus Torvalds 已提交
407

408 409
	tuner_i2c_xfer_send(&priv->i2c_props, i2c_get_afc, ARRAY_SIZE(i2c_get_afc));
	tuner_i2c_xfer_recv(&priv->i2c_props, &afc, 1);
410
	return (afc & 0x80)? 65535:0;
L
Linus Torvalds 已提交
411 412
}

413 414
/*---------------------------------------------------------------------*/

415
static void tda8290_standby(struct dvb_frontend *fe)
416
{
417 418
	struct tda8290_priv *priv = fe->analog_demod_priv;

419 420
	unsigned char cb1[] = { 0x30, 0xD0 };
	unsigned char tda8290_standby[] = { 0x00, 0x02 };
421
	unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };
422
	struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};
423

424
	tda8290_i2c_bridge(fe, 1);
425
	if (priv->ver & TDA8275A)
426
		cb1[1] = 0x90;
427
	i2c_transfer(priv->i2c_props.adap, &msg, 1);
428
	tda8290_i2c_bridge(fe, 0);
429 430
	tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);
431 432
}

433
static void tda8295_standby(struct dvb_frontend *fe)
434
{
435
	tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
436

437
	tda8295_power(fe, 0);
438 439
}

440
static void tda8290_init_if(struct dvb_frontend *fe)
441
{
442
	struct tda8290_priv *priv = fe->analog_demod_priv;
443

444
	unsigned char set_VS[] = { 0x30, 0x6F };
445
	unsigned char set_GP00_CF[] = { 0x20, 0x01 };
446 447
	unsigned char set_GP01_CF[] = { 0x20, 0x0B };

448 449
	if ((priv->cfg.config) &&
	    ((*priv->cfg.config == 1) || (*priv->cfg.config == 2)))
450
		tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
451
	else
452 453
		tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
454 455
}

456
static void tda8295_init_if(struct dvb_frontend *fe)
457
{
458
	struct tda8290_priv *priv = fe->analog_demod_priv;
459 460 461 462 463 464 465 466 467

	static unsigned char set_adc_ctl[]       = { 0x33, 0x14 };
	static unsigned char set_adc_ctl2[]      = { 0x34, 0x00 };
	static unsigned char set_pll_reg6[]      = { 0x3e, 0x63 };
	static unsigned char set_pll_reg0[]      = { 0x38, 0x23 };
	static unsigned char set_pll_reg7[]      = { 0x3f, 0x01 };
	static unsigned char set_pll_reg10[]     = { 0x42, 0x61 };
	static unsigned char set_gpio_reg0[]     = { 0x44, 0x0b };

468
	tda8295_power(fe, 1);
469

470 471
	tda8295_set_easy_mode(fe, 0);
	tda8295_set_video_std(fe);
472 473 474 475 476 477 478 479 480

	tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl2, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg6, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg0, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg7, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg10, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_reg0, 2);

481 482
	tda8295_agc1_out(fe, 0);
	tda8295_agc2_out(fe, 0);
483 484
}

485
static void tda8290_init_tuner(struct dvb_frontend *fe)
L
Linus Torvalds 已提交
486
{
487
	struct tda8290_priv *priv = fe->analog_demod_priv;
488
	unsigned char tda8275_init[]  = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
489
					  0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
490
	unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
491
					  0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
492
	struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,
493
			      .buf=tda8275_init, .len = 14};
494
	if (priv->ver & TDA8275A)
495 496
		msg.buf = tda8275a_init;

497
	tda8290_i2c_bridge(fe, 1);
498
	i2c_transfer(priv->i2c_props.adap, &msg, 1);
499
	tda8290_i2c_bridge(fe, 0);
500 501 502
}

/*---------------------------------------------------------------------*/
L
Linus Torvalds 已提交
503

504
static void tda829x_release(struct dvb_frontend *fe)
505
{
506 507
	if (fe->ops.tuner_ops.release)
		fe->ops.tuner_ops.release(fe);
508

509 510
	kfree(fe->analog_demod_priv);
	fe->analog_demod_priv = NULL;
511 512
}

513
static int tda829x_find_tuner(struct dvb_frontend *fe)
514
{
515 516
	struct tda8290_priv *priv = fe->analog_demod_priv;
	struct analog_tuner_ops *ops = fe->ops.analog_demod_ops;
517 518
	int i, ret, tuners_found;
	u32 tuner_addrs;
519 520
	u8 data;
	struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
521

522 523
	if (NULL == ops)
		return -EINVAL;
524

525
	ops->i2c_gate_ctrl(fe, 1);
526

527 528 529
	/* probe for tuner chip */
	tuners_found = 0;
	tuner_addrs = 0;
530
	for (i = 0x60; i <= 0x63; i++) {
531
		msg.addr = i;
532
		ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
533 534 535 536 537 538 539 540 541
		if (ret == 1) {
			tuners_found++;
			tuner_addrs = (tuner_addrs << 8) + i;
		}
	}
	/* if there is more than one tuner, we expect the right one is
	   behind the bridge and we choose the highest address that doesn't
	   give a response now
	 */
542 543 544 545

	ops->i2c_gate_ctrl(fe, 0);

	if (tuners_found > 1)
546 547
		for (i = 0; i < tuners_found; i++) {
			msg.addr = tuner_addrs  & 0xff;
548
			ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
549
			if (ret == 1)
550 551 552 553
				tuner_addrs = tuner_addrs >> 8;
			else
				break;
		}
554

555
	if (tuner_addrs == 0) {
556 557 558
		tuner_addrs = 0x60;
		tuner_info("could not clearly identify tuner address, "
			   "defaulting to %x\n", tuner_addrs);
559 560
	} else {
		tuner_addrs = tuner_addrs & 0xff;
561
		tuner_info("setting tuner address to %x\n", tuner_addrs);
562
	}
563
	priv->tda827x_addr = tuner_addrs;
564 565
	msg.addr = tuner_addrs;

566
	ops->i2c_gate_ctrl(fe, 1);
567
	ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
568

569 570 571
	if (ret != 1) {
		tuner_warn("tuner access failed!\n");
		return -EREMOTEIO;
572
	}
573

574 575
	if (data == 0x83) {
		priv->ver |= TDA18271;
576
		tda18271_attach(fe, priv->tda827x_addr,
577 578
				priv->i2c_props.adap,
				TDA18271_GATE_ANALOG);
579 580 581 582 583
	} else {
		if ((data & 0x3c) == 0)
			priv->ver |= TDA8275;
		else
			priv->ver |= TDA8275A;
584

585
		tda827x_attach(fe, priv->tda827x_addr,
586 587
			       priv->i2c_props.adap, &priv->cfg);
	}
588 589
	if (fe->ops.tuner_ops.init)
		fe->ops.tuner_ops.init(fe);
590

591 592
	if (fe->ops.tuner_ops.sleep)
		fe->ops.tuner_ops.sleep(fe);
593

594
	ops->i2c_gate_ctrl(fe, 0);
595 596

	return 0;
L
Linus Torvalds 已提交
597
}
598

599 600 601 602 603 604 605 606 607 608
static int tda8290_probe(struct tuner_i2c_props *i2c_props)
{
#define TDA8290_ID 0x89
	unsigned char tda8290_id[] = { 0x1f, 0x00 };

	/* detect tda8290 */
	tuner_i2c_xfer_send(i2c_props, &tda8290_id[0], 1);
	tuner_i2c_xfer_recv(i2c_props, &tda8290_id[1], 1);

	if (tda8290_id[1] == TDA8290_ID) {
609
		if (debug)
610 611 612 613 614 615
			printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
			       __FUNCTION__, i2c_adapter_id(i2c_props->adap),
			       i2c_props->addr);
		return 0;
	}

616
	return -ENODEV;
617 618 619 620 621 622 623 624 625 626 627 628
}

static int tda8295_probe(struct tuner_i2c_props *i2c_props)
{
#define TDA8295_ID 0x8a
	unsigned char tda8295_id[] = { 0x2f, 0x00 };

	/* detect tda8295 */
	tuner_i2c_xfer_send(i2c_props, &tda8295_id[0], 1);
	tuner_i2c_xfer_recv(i2c_props, &tda8295_id[1], 1);

	if (tda8295_id[1] == TDA8295_ID) {
629
		if (debug)
630 631 632 633 634 635
			printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
			       __FUNCTION__, i2c_adapter_id(i2c_props->adap),
			       i2c_props->addr);
		return 0;
	}

636
	return -ENODEV;
637 638
}

639
static struct analog_tuner_ops tda8290_tuner_ops = {
640 641 642
	.info		= {
		.name	= "TDA8290",
	},
643
	.set_params     = tda8290_set_params,
644 645 646 647 648 649 650
	.has_signal     = tda8290_has_signal,
	.standby        = tda8290_standby,
	.release        = tda829x_release,
	.i2c_gate_ctrl  = tda8290_i2c_bridge,
};

static struct analog_tuner_ops tda8295_tuner_ops = {
651 652 653
	.info		= {
		.name	= "TDA8295",
	},
654
	.set_params     = tda8295_set_params,
655 656 657 658 659 660
	.has_signal     = tda8295_has_signal,
	.standby        = tda8295_standby,
	.release        = tda829x_release,
	.i2c_gate_ctrl  = tda8295_i2c_bridge,
};

661 662 663
struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
				    struct i2c_adapter *i2c_adap, u8 i2c_addr,
				    struct tda829x_config *cfg)
664 665
{
	struct tda8290_priv *priv = NULL;
666
	char *name;
667

668 669
	priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
	if (priv == NULL)
670
		return NULL;
671
	fe->analog_demod_priv = priv;
672

673 674 675 676 677 678
	priv->i2c_props.addr     = i2c_addr;
	priv->i2c_props.adap     = i2c_adap;
	if (cfg) {
		priv->cfg.config         = cfg->lna_cfg;
		priv->cfg.tuner_callback = cfg->tuner_callback;
	}
679

680
	if (tda8290_probe(&priv->i2c_props) == 0) {
681 682
		priv->ver = TDA8290;
		fe->ops.analog_demod_ops = &tda8290_tuner_ops;
683
	}
684

685
	if (tda8295_probe(&priv->i2c_props) == 0) {
686 687
		priv->ver = TDA8295;
		fe->ops.analog_demod_ops = &tda8295_tuner_ops;
688 689
	}

690
	if (tda829x_find_tuner(fe) < 0)
691
		goto fail;
692

693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
	switch (priv->ver) {
	case TDA8290 | TDA8275:
		name = "tda8290+75";
		break;
	case TDA8295 | TDA8275:
		name = "tda8295+75";
		break;
	case TDA8290 | TDA8275A:
		name = "tda8290+75a";
		break;
	case TDA8295 | TDA8275A:
		name = "tda8295+75a";
		break;
	case TDA8290 | TDA18271:
		name = "tda8290+18271";
		break;
	case TDA8295 | TDA18271:
		name = "tda8295+18271";
		break;
	default:
		goto fail;
	}
	tuner_info("type set to %s\n", name);

717 718 719 720 721
	if (priv->ver & TDA8290) {
		tda8290_init_tuner(fe);
		tda8290_init_if(fe);
	} else if (priv->ver & TDA8295)
		tda8295_init_if(fe);
722

723
	return fe;
724 725 726 727

fail:
	tda829x_release(fe);
	fe->ops.analog_demod_ops = NULL;
728
	return NULL;
729
}
730
EXPORT_SYMBOL_GPL(tda829x_attach);
L
Linus Torvalds 已提交
731

732
int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
733
{
734
	struct tuner_i2c_props i2c_props = {
735 736
		.adap = i2c_adap,
		.addr = i2c_addr,
737
	};
738

739 740 741 742
	unsigned char soft_reset[]   = { 0x00, 0x00 };
	unsigned char easy_mode_b[]  = { 0x01, 0x02 };
	unsigned char easy_mode_g[]  = { 0x01, 0x04 };
	unsigned char restore_9886[] = { 0x00, 0xd6, 0x30 };
743 744
	unsigned char addr_dto_lsb = 0x07;
	unsigned char data;
745 746 747 748 749 750 751 752
#define PROBE_BUFFER_SIZE 8
	unsigned char buf[PROBE_BUFFER_SIZE];
	int i;

	/* rule out tda9887, which would return the same byte repeatedly */
	tuner_i2c_xfer_send(&i2c_props, soft_reset, 1);
	tuner_i2c_xfer_recv(&i2c_props, buf, PROBE_BUFFER_SIZE);
	for (i = 1; i < PROBE_BUFFER_SIZE; i++) {
753 754
		if (buf[i] != buf[0])
			break;
755 756 757 758 759
	}

	/* all bytes are equal, not a tda829x - probably a tda9887 */
	if (i == PROBE_BUFFER_SIZE)
		return -ENODEV;
760

761 762 763 764 765
	if ((tda8290_probe(&i2c_props) == 0) ||
	    (tda8295_probe(&i2c_props) == 0))
		return 0;

	/* fall back to old probing method */
766 767 768 769
	tuner_i2c_xfer_send(&i2c_props, easy_mode_b, 2);
	tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
	tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
	tuner_i2c_xfer_recv(&i2c_props, &data, 1);
770
	if (data == 0) {
771 772 773 774
		tuner_i2c_xfer_send(&i2c_props, easy_mode_g, 2);
		tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
		tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
		tuner_i2c_xfer_recv(&i2c_props, &data, 1);
775 776 777 778
		if (data == 0x7b) {
			return 0;
		}
	}
779
	tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
780
	return -ENODEV;
781
}
782
EXPORT_SYMBOL_GPL(tda829x_probe);
783

784
MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
785
MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
786 787
MODULE_LICENSE("GPL");

L
Linus Torvalds 已提交
788 789 790 791 792 793 794
/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */