tda8290.c 22.3 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
#include "tuner-i2c.h"
27
#include "tda8290.h"
28
#include "tda827x.h"
29
#include "tda18271.h"
30

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

L
Linus Torvalds 已提交
35 36
/* ---------------------------------------------------------------------- */

37
struct tda8290_priv {
38 39
	struct tuner_i2c_props i2c_props;

40
	unsigned char tda8290_easy_mode;
41

42
	unsigned char tda827x_addr;
43 44 45 46 47 48 49

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

51
	struct tda827x_config cfg;
L
Linus Torvalds 已提交
52 53
};

54
/*---------------------------------------------------------------------*/
L
Linus Torvalds 已提交
55

56
static int tda8290_i2c_bridge(struct dvb_frontend *fe, int close)
57
{
58
	struct tda8290_priv *priv = fe->analog_demod_priv;
59

60
	unsigned char  enable[2] = { 0x21, 0xC0 };
61
	unsigned char disable[2] = { 0x21, 0x00 };
62
	unsigned char *msg;
63 64

	if (close) {
65
		msg = enable;
66
		tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
67 68 69 70
		/* let the bridge stabilize */
		msleep(20);
	} else {
		msg = disable;
71
		tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
72
	}
73 74

	return 0;
L
Linus Torvalds 已提交
75 76
}

77
static int tda8295_i2c_bridge(struct dvb_frontend *fe, int close)
78
{
79
	struct tda8290_priv *priv = fe->analog_demod_priv;
80 81 82 83 84

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

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	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);
	}
104 105

	return 0;
106 107
}

108 109
/*---------------------------------------------------------------------*/

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

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

142
	tuner_dbg("setting tda829x to system %s\n", mode);
143 144
}

145 146
static void tda8290_set_params(struct dvb_frontend *fe,
			       struct analog_parameters *params)
147
{
148 149
	struct tda8290_priv *priv = fe->analog_demod_priv;

150
	unsigned char soft_reset[]  = { 0x00, 0x00 };
151
	unsigned char easy_mode[]   = { 0x01, priv->tda8290_easy_mode };
152
	unsigned char expert_mode[] = { 0x01, 0x80 };
153
	unsigned char agc_out_on[]  = { 0x02, 0x00 };
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	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,
169
		      pll_stat;
170
	int i;
171

172
	set_audio(fe, params);
173

174
	if (priv->cfg.config)
175
		tuner_dbg("tda827xa config is 0x%02x\n", priv->cfg.config);
176 177 178
	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);
179 180
	msleep(1);

181
	expert_mode[1] = priv->tda8290_easy_mode + 0x80;
182 183 184
	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);
185
	if (priv->tda8290_easy_mode & 0x60)
186
		tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
187
	else
188 189
		tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
190

191
	tda8290_i2c_bridge(fe, 1);
192

193
	if (fe->ops.tuner_ops.set_analog_params)
194
		fe->ops.tuner_ops.set_analog_params(fe, params);
195

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

240
	/* l/ l' deadlock? */
241
	if(priv->tda8290_easy_mode & 0x60) {
242 243 244 245
		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);
246
		if ((adc_sat > 20) || !(pll_stat & 0x80)) {
247
			tuner_dbg("trying to resolve SECAM L deadlock\n");
248
			tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
249
			msleep(40);
250
			tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
251 252
		}
	}
253

254
	tda8290_i2c_bridge(fe, 0);
255
	tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
L
Linus Torvalds 已提交
256 257
}

258 259
/*---------------------------------------------------------------------*/

260
static void tda8295_power(struct dvb_frontend *fe, int enable)
261
{
262
	struct tda8290_priv *priv = fe->analog_demod_priv;
263 264 265 266 267 268 269 270 271 272 273 274 275
	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);
}

276
static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
277
{
278
	struct tda8290_priv *priv = fe->analog_demod_priv;
279 280 281 282 283 284 285 286 287 288 289 290 291
	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);
}

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

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

299
	tda8295_set_easy_mode(fe, 1);
300
	msleep(20);
301
	tda8295_set_easy_mode(fe, 0);
302 303 304 305
}

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

306
static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
307
{
308
	struct tda8290_priv *priv = fe->analog_demod_priv;
309 310 311 312 313 314 315 316 317 318 319 320 321
	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);
}

322
static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
323
{
324
	struct tda8290_priv *priv = fe->analog_demod_priv;
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
	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);
}

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

	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;
}

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

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

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

364
	set_audio(fe, params);
365

366
	tuner_dbg("%s: freq = %d\n", __func__, params->frequency);
367

368 369
	tda8295_power(fe, 1);
	tda8295_agc1_out(fe, 1);
370 371 372 373

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

374
	tda8295_set_video_std(fe);
375 376 377 378 379

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

380
	tda8295_i2c_bridge(fe, 1);
381

382
	if (fe->ops.tuner_ops.set_analog_params)
383
		fe->ops.tuner_ops.set_analog_params(fe, params);
384 385

	if (priv->cfg.agcf)
386
		priv->cfg.agcf(fe);
387

388
	if (tda8295_has_signal(fe))
389 390 391 392
		tuner_dbg("tda8295 is locked\n");
	else
		tuner_dbg("tda8295 not locked, no signal?\n");

393
	tda8295_i2c_bridge(fe, 0);
394 395 396 397
}

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

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

402 403
	unsigned char i2c_get_afc[1] = { 0x1B };
	unsigned char afc = 0;
L
Linus Torvalds 已提交
404

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

410 411
/*---------------------------------------------------------------------*/

412
static void tda8290_standby(struct dvb_frontend *fe)
413
{
414 415
	struct tda8290_priv *priv = fe->analog_demod_priv;

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

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

430
static void tda8295_standby(struct dvb_frontend *fe)
431
{
432
	tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
433

434
	tda8295_power(fe, 0);
435 436
}

437
static void tda8290_init_if(struct dvb_frontend *fe)
438
{
439
	struct tda8290_priv *priv = fe->analog_demod_priv;
440

441
	unsigned char set_VS[] = { 0x30, 0x6F };
442
	unsigned char set_GP00_CF[] = { 0x20, 0x01 };
443 444
	unsigned char set_GP01_CF[] = { 0x20, 0x0B };

445
	if ((priv->cfg.config == 1) || (priv->cfg.config == 2))
446
		tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
447
	else
448 449
		tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
450 451
}

452
static void tda8295_init_if(struct dvb_frontend *fe)
453
{
454
	struct tda8290_priv *priv = fe->analog_demod_priv;
455 456 457 458 459 460 461 462 463

	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 };

464
	tda8295_power(fe, 1);
465

466 467
	tda8295_set_easy_mode(fe, 0);
	tda8295_set_video_std(fe);
468 469 470 471 472 473 474 475 476

	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);

477 478
	tda8295_agc1_out(fe, 0);
	tda8295_agc2_out(fe, 0);
479 480
}

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

493
	tda8290_i2c_bridge(fe, 1);
494
	i2c_transfer(priv->i2c_props.adap, &msg, 1);
495
	tda8290_i2c_bridge(fe, 0);
496 497 498
}

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

500
static void tda829x_release(struct dvb_frontend *fe)
501
{
502 503
	struct tda8290_priv *priv = fe->analog_demod_priv;

504 505 506
	/* only try to release the tuner if we've
	 * attached it from within this module */
	if (priv->ver & (TDA18271 | TDA8275 | TDA8275A))
507 508
		if (fe->ops.tuner_ops.release)
			fe->ops.tuner_ops.release(fe);
509

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

514 515 516 517
static struct tda18271_config tda829x_tda18271_config = {
	.gate    = TDA18271_GATE_ANALOG,
};

518
static int tda829x_find_tuner(struct dvb_frontend *fe)
519
{
520
	struct tda8290_priv *priv = fe->analog_demod_priv;
521
	struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
522 523
	int i, ret, tuners_found;
	u32 tuner_addrs;
524 525
	u8 data;
	struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
526

527
	if (NULL == analog_ops->i2c_gate_ctrl)
528
		return -EINVAL;
529

530
	analog_ops->i2c_gate_ctrl(fe, 1);
531

532 533 534
	/* probe for tuner chip */
	tuners_found = 0;
	tuner_addrs = 0;
535
	for (i = 0x60; i <= 0x63; i++) {
536
		msg.addr = i;
537
		ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
538 539 540 541 542 543 544 545 546
		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
	 */
547

548
	analog_ops->i2c_gate_ctrl(fe, 0);
549 550

	if (tuners_found > 1)
551 552
		for (i = 0; i < tuners_found; i++) {
			msg.addr = tuner_addrs  & 0xff;
553
			ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
554
			if (ret == 1)
555 556 557 558
				tuner_addrs = tuner_addrs >> 8;
			else
				break;
		}
559

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

571
	analog_ops->i2c_gate_ctrl(fe, 1);
572
	ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
573

574 575 576
	if (ret != 1) {
		tuner_warn("tuner access failed!\n");
		return -EREMOTEIO;
577
	}
578

579
	if ((data == 0x83) || (data == 0x84)) {
580
		priv->ver |= TDA18271;
581
		tda18271_attach(fe, priv->tda827x_addr,
582
				priv->i2c_props.adap,
583
				&tda829x_tda18271_config);
584 585 586 587 588
	} else {
		if ((data & 0x3c) == 0)
			priv->ver |= TDA8275;
		else
			priv->ver |= TDA8275A;
589

590 591
		tda827x_attach(fe, priv->tda827x_addr, priv->i2c_props.adap, &priv->cfg);
		priv->cfg.switch_addr = priv->i2c_props.addr;
592
	}
593 594
	if (fe->ops.tuner_ops.init)
		fe->ops.tuner_ops.init(fe);
595

596 597
	if (fe->ops.tuner_ops.sleep)
		fe->ops.tuner_ops.sleep(fe);
598

599
	analog_ops->i2c_gate_ctrl(fe, 0);
600 601

	return 0;
L
Linus Torvalds 已提交
602
}
603

604 605 606 607 608 609 610 611 612 613
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) {
614
		if (debug)
615
			printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
616
			       __func__, i2c_adapter_id(i2c_props->adap),
617 618 619 620
			       i2c_props->addr);
		return 0;
	}

621
	return -ENODEV;
622 623 624 625 626 627 628 629 630 631 632 633
}

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) {
634
		if (debug)
635
			printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
636
			       __func__, i2c_adapter_id(i2c_props->adap),
637 638 639 640
			       i2c_props->addr);
		return 0;
	}

641
	return -ENODEV;
642 643
}

644
static struct analog_demod_ops tda8290_ops = {
645
	.set_params     = tda8290_set_params,
646 647 648 649 650 651
	.has_signal     = tda8290_has_signal,
	.standby        = tda8290_standby,
	.release        = tda829x_release,
	.i2c_gate_ctrl  = tda8290_i2c_bridge,
};

652
static struct analog_demod_ops tda8295_ops = {
653
	.set_params     = tda8295_set_params,
654 655 656 657 658 659
	.has_signal     = tda8295_has_signal,
	.standby        = tda8295_standby,
	.release        = tda829x_release,
	.i2c_gate_ctrl  = tda8295_i2c_bridge,
};

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

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

672 673
	priv->i2c_props.addr     = i2c_addr;
	priv->i2c_props.adap     = i2c_adap;
674
	priv->i2c_props.name     = "tda829x";
675 676 677 678
	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
		priv->ver = TDA8290;
682 683
		memcpy(&fe->ops.analog_ops, &tda8290_ops,
		       sizeof(struct analog_demod_ops));
684
	}
685

686
	if (tda8295_probe(&priv->i2c_props) == 0) {
687
		priv->ver = TDA8295;
688 689
		memcpy(&fe->ops.analog_ops, &tda8295_ops,
		       sizeof(struct analog_demod_ops));
690 691
	}

692 693
	if ((!(cfg) || (TDA829X_PROBE_TUNER == cfg->probe_tuner)) &&
	    (tda829x_find_tuner(fe) < 0))
694
		goto fail;
695

696
	switch (priv->ver) {
697 698 699 700 701 702
	case TDA8290:
		name = "tda8290";
		break;
	case TDA8295:
		name = "tda8295";
		break;
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
	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);

726 727
	fe->ops.analog_ops.info.name = name;

728 729 730 731 732
	if (priv->ver & TDA8290) {
		tda8290_init_tuner(fe);
		tda8290_init_if(fe);
	} else if (priv->ver & TDA8295)
		tda8295_init_if(fe);
733

734
	return fe;
735 736 737

fail:
	tda829x_release(fe);
738
	return NULL;
739
}
740
EXPORT_SYMBOL_GPL(tda829x_attach);
L
Linus Torvalds 已提交
741

742
int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
743
{
744
	struct tuner_i2c_props i2c_props = {
745 746
		.adap = i2c_adap,
		.addr = i2c_addr,
747
	};
748

749 750 751 752
	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 };
753 754
	unsigned char addr_dto_lsb = 0x07;
	unsigned char data;
755 756 757 758 759 760 761 762
#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++) {
763 764
		if (buf[i] != buf[0])
			break;
765 766 767 768 769
	}

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

771 772 773 774 775
	if ((tda8290_probe(&i2c_props) == 0) ||
	    (tda8295_probe(&i2c_props) == 0))
		return 0;

	/* fall back to old probing method */
776 777 778 779
	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);
780
	if (data == 0) {
781 782 783 784
		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);
785 786 787 788
		if (data == 0x7b) {
			return 0;
		}
	}
789
	tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
790
	return -ENODEV;
791
}
792
EXPORT_SYMBOL_GPL(tda829x_probe);
793

794
MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
795
MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
796 797
MODULE_LICENSE("GPL");

L
Linus Torvalds 已提交
798 799 800 801 802 803 804
/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */