tda8290.c 23.7 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/videodev2.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");

35
static int deemphasis_50;
36
module_param(deemphasis_50, int, 0644);
37 38
MODULE_PARM_DESC(deemphasis_50, "0 - 75us deemphasis; 1 - 50us deemphasis");

L
Linus Torvalds 已提交
39 40
/* ---------------------------------------------------------------------- */

41
struct tda8290_priv {
42 43
	struct tuner_i2c_props i2c_props;

44
	unsigned char tda8290_easy_mode;
45

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

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

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

58
/*---------------------------------------------------------------------*/
L
Linus Torvalds 已提交
59

60
static int tda8290_i2c_bridge(struct dvb_frontend *fe, int close)
61
{
62
	struct tda8290_priv *priv = fe->analog_demod_priv;
63

64
	unsigned char  enable[2] = { 0x21, 0xC0 };
65
	unsigned char disable[2] = { 0x21, 0x00 };
66
	unsigned char *msg;
67 68

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

	return 0;
L
Linus Torvalds 已提交
79 80
}

81
static int tda8295_i2c_bridge(struct dvb_frontend *fe, int close)
82
{
83
	struct tda8290_priv *priv = fe->analog_demod_priv;
84 85 86 87 88

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

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
	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);
	}
108 109

	return 0;
110 111
}

112 113
/*---------------------------------------------------------------------*/

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

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

146 147 148 149 150 151
	if (params->mode == V4L2_TUNER_RADIO) {
		priv->tda8290_easy_mode = 0x01;		/* Start with MN values */
		tuner_dbg("setting to radio FM\n");
	} else {
		tuner_dbg("setting tda829x to system %s\n", mode);
	}
152 153
}

154
static struct {
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	unsigned char seq[2];
} fm_mode[] = {
	{ { 0x01, 0x81} },	/* Put device into expert mode */
	{ { 0x03, 0x48} },	/* Disable NOTCH and VIDEO filters */
	{ { 0x04, 0x04} },	/* Disable color carrier filter (SSIF) */
	{ { 0x05, 0x04} },	/* ADC headroom */
	{ { 0x06, 0x10} },	/* group delay flat */

	{ { 0x07, 0x00} },	/* use the same radio DTO values as a tda8295 */
	{ { 0x08, 0x00} },
	{ { 0x09, 0x80} },
	{ { 0x0a, 0xda} },
	{ { 0x0b, 0x4b} },
	{ { 0x0c, 0x68} },

	{ { 0x0d, 0x00} },	/* PLL off, no video carrier detect */
	{ { 0x14, 0x00} },	/* disable auto mute if no video */
};

174 175
static void tda8290_set_params(struct dvb_frontend *fe,
			       struct analog_parameters *params)
176
{
177 178
	struct tda8290_priv *priv = fe->analog_demod_priv;

179
	unsigned char soft_reset[]  = { 0x00, 0x00 };
180
	unsigned char easy_mode[]   = { 0x01, priv->tda8290_easy_mode };
181
	unsigned char expert_mode[] = { 0x01, 0x80 };
182
	unsigned char agc_out_on[]  = { 0x02, 0x00 };
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
	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,
198
		      pll_stat;
199
	int i;
200

201
	set_audio(fe, params);
202

203
	if (priv->cfg.config)
204
		tuner_dbg("tda827xa config is 0x%02x\n", priv->cfg.config);
205 206 207
	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);
208 209
	msleep(1);

210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
	if (params->mode == V4L2_TUNER_RADIO) {
		unsigned char deemphasis[]  = { 0x13, 1 };

		/* FIXME: allow using a different deemphasis */

		if (deemphasis_50)
			deemphasis[1] = 2;

		for (i = 0; i < ARRAY_SIZE(fm_mode); i++)
			tuner_i2c_xfer_send(&priv->i2c_props, fm_mode[i].seq, 2);

		tuner_i2c_xfer_send(&priv->i2c_props, deemphasis, 2);
	} else {
		expert_mode[1] = priv->tda8290_easy_mode + 0x80;
		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);
		if (priv->tda8290_easy_mode & 0x60)
			tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
		else
			tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
		tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
	}
233

234
	tda8290_i2c_bridge(fe, 1);
235

236
	if (fe->ops.tuner_ops.set_analog_params)
237
		fe->ops.tuner_ops.set_analog_params(fe, params);
238

239
	for (i = 0; i < 3; i++) {
240 241
		tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
		tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
242
		if (pll_stat & 0x80) {
243 244 245 246
			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);
247 248 249 250 251 252 253
			tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);
			break;
		} else {
			tuner_dbg("tda8290 not locked, no signal?\n");
			msleep(100);
		}
	}
254
	/* adjust headroom resp. gain */
255 256 257
	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);
258
		tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);
259
		msleep(100);
260 261 262 263
		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);
264
		if ((agc_stat > 115) || !(pll_stat & 0x80)) {
265 266
			tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
				   agc_stat, pll_stat & 0x80);
267
			if (priv->cfg.agcf)
268
				priv->cfg.agcf(fe);
269
			msleep(100);
270 271 272 273
			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);
274 275
			if((agc_stat > 115) || !(pll_stat & 0x80)) {
				tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);
276 277
				tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);
				tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);
278 279 280 281
				msleep(100);
			}
		}
	}
L
Linus Torvalds 已提交
282

283
	/* l/ l' deadlock? */
284
	if(priv->tda8290_easy_mode & 0x60) {
285 286 287 288
		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);
289
		if ((adc_sat > 20) || !(pll_stat & 0x80)) {
290
			tuner_dbg("trying to resolve SECAM L deadlock\n");
291
			tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
292
			msleep(40);
293
			tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
294 295
		}
	}
296

297
	tda8290_i2c_bridge(fe, 0);
298
	tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
L
Linus Torvalds 已提交
299 300
}

301 302
/*---------------------------------------------------------------------*/

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

319
static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
320
{
321
	struct tda8290_priv *priv = fe->analog_demod_priv;
322 323 324 325 326 327 328 329 330 331 332 333 334
	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);
}

335
static void tda8295_set_video_std(struct dvb_frontend *fe)
336
{
337
	struct tda8290_priv *priv = fe->analog_demod_priv;
338 339 340 341
	unsigned char buf[] = { 0x00, priv->tda8290_easy_mode };

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

342
	tda8295_set_easy_mode(fe, 1);
343
	msleep(20);
344
	tda8295_set_easy_mode(fe, 0);
345 346 347 348
}

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

349
static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
350
{
351
	struct tda8290_priv *priv = fe->analog_demod_priv;
352 353 354 355 356 357 358 359 360 361 362 363 364
	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);
}

365
static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
366
{
367
	struct tda8290_priv *priv = fe->analog_demod_priv;
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
	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);
}

386
static int tda8295_has_signal(struct dvb_frontend *fe)
387
{
388
	struct tda8290_priv *priv = fe->analog_demod_priv;
389 390 391 392 393 394 395 396 397 398 399

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

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

400 401
static void tda8295_set_params(struct dvb_frontend *fe,
			       struct analog_parameters *params)
402
{
403
	struct tda8290_priv *priv = fe->analog_demod_priv;
404 405 406

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

407
	set_audio(fe, params);
408

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

411 412
	tda8295_power(fe, 1);
	tda8295_agc1_out(fe, 1);
413 414 415 416

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

417
	tda8295_set_video_std(fe);
418 419 420 421 422

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

423
	tda8295_i2c_bridge(fe, 1);
424

425
	if (fe->ops.tuner_ops.set_analog_params)
426
		fe->ops.tuner_ops.set_analog_params(fe, params);
427 428

	if (priv->cfg.agcf)
429
		priv->cfg.agcf(fe);
430

431
	if (tda8295_has_signal(fe))
432 433 434 435
		tuner_dbg("tda8295 is locked\n");
	else
		tuner_dbg("tda8295 not locked, no signal?\n");

436
	tda8295_i2c_bridge(fe, 0);
437 438 439 440
}

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

441
static int tda8290_has_signal(struct dvb_frontend *fe)
L
Linus Torvalds 已提交
442
{
443
	struct tda8290_priv *priv = fe->analog_demod_priv;
L
Linus Torvalds 已提交
444

445 446
	unsigned char i2c_get_afc[1] = { 0x1B };
	unsigned char afc = 0;
L
Linus Torvalds 已提交
447

448 449
	tuner_i2c_xfer_send(&priv->i2c_props, i2c_get_afc, ARRAY_SIZE(i2c_get_afc));
	tuner_i2c_xfer_recv(&priv->i2c_props, &afc, 1);
450
	return (afc & 0x80)? 65535:0;
L
Linus Torvalds 已提交
451 452
}

453 454
/*---------------------------------------------------------------------*/

455
static void tda8290_standby(struct dvb_frontend *fe)
456
{
457 458
	struct tda8290_priv *priv = fe->analog_demod_priv;

459 460
	unsigned char cb1[] = { 0x30, 0xD0 };
	unsigned char tda8290_standby[] = { 0x00, 0x02 };
461
	unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };
462
	struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};
463

464
	tda8290_i2c_bridge(fe, 1);
465
	if (priv->ver & TDA8275A)
466
		cb1[1] = 0x90;
467
	i2c_transfer(priv->i2c_props.adap, &msg, 1);
468
	tda8290_i2c_bridge(fe, 0);
469 470
	tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);
471 472
}

473
static void tda8295_standby(struct dvb_frontend *fe)
474
{
475
	tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
476

477
	tda8295_power(fe, 0);
478 479
}

480
static void tda8290_init_if(struct dvb_frontend *fe)
481
{
482
	struct tda8290_priv *priv = fe->analog_demod_priv;
483

484
	unsigned char set_VS[] = { 0x30, 0x6F };
485
	unsigned char set_GP00_CF[] = { 0x20, 0x01 };
486 487
	unsigned char set_GP01_CF[] = { 0x20, 0x0B };

488
	if ((priv->cfg.config == 1) || (priv->cfg.config == 2))
489
		tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
490
	else
491 492
		tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
493 494
}

495
static void tda8295_init_if(struct dvb_frontend *fe)
496
{
497
	struct tda8290_priv *priv = fe->analog_demod_priv;
498 499 500 501 502 503 504 505 506

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

507
	tda8295_power(fe, 1);
508

509 510
	tda8295_set_easy_mode(fe, 0);
	tda8295_set_video_std(fe);
511 512 513 514 515 516 517 518 519

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

520 521
	tda8295_agc1_out(fe, 0);
	tda8295_agc2_out(fe, 0);
522 523
}

524
static void tda8290_init_tuner(struct dvb_frontend *fe)
L
Linus Torvalds 已提交
525
{
526
	struct tda8290_priv *priv = fe->analog_demod_priv;
527
	unsigned char tda8275_init[]  = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
528
					  0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
529
	unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
530
					  0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
531
	struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,
532
			      .buf=tda8275_init, .len = 14};
533
	if (priv->ver & TDA8275A)
534 535
		msg.buf = tda8275a_init;

536
	tda8290_i2c_bridge(fe, 1);
537
	i2c_transfer(priv->i2c_props.adap, &msg, 1);
538
	tda8290_i2c_bridge(fe, 0);
539 540 541
}

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

543
static void tda829x_release(struct dvb_frontend *fe)
544
{
545 546
	struct tda8290_priv *priv = fe->analog_demod_priv;

547 548 549
	/* only try to release the tuner if we've
	 * attached it from within this module */
	if (priv->ver & (TDA18271 | TDA8275 | TDA8275A))
550 551
		if (fe->ops.tuner_ops.release)
			fe->ops.tuner_ops.release(fe);
552

553 554
	kfree(fe->analog_demod_priv);
	fe->analog_demod_priv = NULL;
555 556
}

557 558 559 560
static struct tda18271_config tda829x_tda18271_config = {
	.gate    = TDA18271_GATE_ANALOG,
};

561
static int tda829x_find_tuner(struct dvb_frontend *fe)
562
{
563
	struct tda8290_priv *priv = fe->analog_demod_priv;
564
	struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
565 566
	int i, ret, tuners_found;
	u32 tuner_addrs;
567 568
	u8 data;
	struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
569

570 571 572
	if (!analog_ops->i2c_gate_ctrl) {
		printk(KERN_ERR "tda8290: no gate control were provided!\n");

573
		return -EINVAL;
574
	}
575

576
	analog_ops->i2c_gate_ctrl(fe, 1);
577

578 579 580
	/* probe for tuner chip */
	tuners_found = 0;
	tuner_addrs = 0;
581
	for (i = 0x60; i <= 0x63; i++) {
582
		msg.addr = i;
583
		ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
584 585 586 587 588 589 590 591 592
		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
	 */
593

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

	if (tuners_found > 1)
597 598
		for (i = 0; i < tuners_found; i++) {
			msg.addr = tuner_addrs  & 0xff;
599
			ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
600
			if (ret == 1)
601 602 603 604
				tuner_addrs = tuner_addrs >> 8;
			else
				break;
		}
605

606
	if (tuner_addrs == 0) {
607 608 609
		tuner_addrs = 0x60;
		tuner_info("could not clearly identify tuner address, "
			   "defaulting to %x\n", tuner_addrs);
610 611
	} else {
		tuner_addrs = tuner_addrs & 0xff;
612
		tuner_info("setting tuner address to %x\n", tuner_addrs);
613
	}
614
	priv->tda827x_addr = tuner_addrs;
615 616
	msg.addr = tuner_addrs;

617
	analog_ops->i2c_gate_ctrl(fe, 1);
618
	ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
619

620 621
	if (ret != 1) {
		tuner_warn("tuner access failed!\n");
622
		analog_ops->i2c_gate_ctrl(fe, 0);
623
		return -EREMOTEIO;
624
	}
625

626
	if ((data == 0x83) || (data == 0x84)) {
627
		priv->ver |= TDA18271;
628
		tda829x_tda18271_config.config = priv->cfg.config;
629 630
		dvb_attach(tda18271_attach, fe, priv->tda827x_addr,
			   priv->i2c_props.adap, &tda829x_tda18271_config);
631 632 633 634 635
	} else {
		if ((data & 0x3c) == 0)
			priv->ver |= TDA8275;
		else
			priv->ver |= TDA8275A;
636

637 638
		dvb_attach(tda827x_attach, fe, priv->tda827x_addr,
			   priv->i2c_props.adap, &priv->cfg);
639
		priv->cfg.switch_addr = priv->i2c_props.addr;
640
	}
641 642
	if (fe->ops.tuner_ops.init)
		fe->ops.tuner_ops.init(fe);
643

644 645
	if (fe->ops.tuner_ops.sleep)
		fe->ops.tuner_ops.sleep(fe);
646

647
	analog_ops->i2c_gate_ctrl(fe, 0);
648 649

	return 0;
L
Linus Torvalds 已提交
650
}
651

652 653 654 655 656 657 658 659 660 661
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) {
662
		if (debug)
663
			printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
664
			       __func__, i2c_adapter_id(i2c_props->adap),
665 666 667 668
			       i2c_props->addr);
		return 0;
	}

669
	return -ENODEV;
670 671 672 673 674 675 676 677 678 679 680 681
}

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) {
682
		if (debug)
683
			printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
684
			       __func__, i2c_adapter_id(i2c_props->adap),
685 686 687 688
			       i2c_props->addr);
		return 0;
	}

689
	return -ENODEV;
690 691
}

692
static struct analog_demod_ops tda8290_ops = {
693
	.set_params     = tda8290_set_params,
694 695 696 697 698 699
	.has_signal     = tda8290_has_signal,
	.standby        = tda8290_standby,
	.release        = tda829x_release,
	.i2c_gate_ctrl  = tda8290_i2c_bridge,
};

700
static struct analog_demod_ops tda8295_ops = {
701
	.set_params     = tda8295_set_params,
702 703 704 705 706 707
	.has_signal     = tda8295_has_signal,
	.standby        = tda8295_standby,
	.release        = tda829x_release,
	.i2c_gate_ctrl  = tda8295_i2c_bridge,
};

708 709 710
struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
				    struct i2c_adapter *i2c_adap, u8 i2c_addr,
				    struct tda829x_config *cfg)
711 712
{
	struct tda8290_priv *priv = NULL;
713
	char *name;
714

715 716
	priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
	if (priv == NULL)
717
		return NULL;
718
	fe->analog_demod_priv = priv;
719

720 721
	priv->i2c_props.addr     = i2c_addr;
	priv->i2c_props.adap     = i2c_adap;
722
	priv->i2c_props.name     = "tda829x";
723
	if (cfg)
724
		priv->cfg.config         = cfg->lna_cfg;
725

726
	if (tda8290_probe(&priv->i2c_props) == 0) {
727
		priv->ver = TDA8290;
728 729
		memcpy(&fe->ops.analog_ops, &tda8290_ops,
		       sizeof(struct analog_demod_ops));
730
	}
731

732
	if (tda8295_probe(&priv->i2c_props) == 0) {
733
		priv->ver = TDA8295;
734 735
		memcpy(&fe->ops.analog_ops, &tda8295_ops,
		       sizeof(struct analog_demod_ops));
736 737
	}

738 739
	if ((!(cfg) || (TDA829X_PROBE_TUNER == cfg->probe_tuner)) &&
	    (tda829x_find_tuner(fe) < 0))
740
		goto fail;
741

742
	switch (priv->ver) {
743 744 745 746 747 748
	case TDA8290:
		name = "tda8290";
		break;
	case TDA8295:
		name = "tda8295";
		break;
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
	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);

772 773
	fe->ops.analog_ops.info.name = name;

774
	if (priv->ver & TDA8290) {
775 776
		if (priv->ver & (TDA8275 | TDA8275A))
			tda8290_init_tuner(fe);
777 778 779
		tda8290_init_if(fe);
	} else if (priv->ver & TDA8295)
		tda8295_init_if(fe);
780

781
	return fe;
782 783 784

fail:
	tda829x_release(fe);
785
	return NULL;
786
}
787
EXPORT_SYMBOL_GPL(tda829x_attach);
L
Linus Torvalds 已提交
788

789
int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
790
{
791
	struct tuner_i2c_props i2c_props = {
792 793
		.adap = i2c_adap,
		.addr = i2c_addr,
794
	};
795

796 797 798 799
	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 };
800 801
	unsigned char addr_dto_lsb = 0x07;
	unsigned char data;
802 803 804 805 806 807 808 809
#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++) {
810 811
		if (buf[i] != buf[0])
			break;
812 813 814 815 816
	}

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

818 819 820 821 822
	if ((tda8290_probe(&i2c_props) == 0) ||
	    (tda8295_probe(&i2c_props) == 0))
		return 0;

	/* fall back to old probing method */
823 824 825 826
	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);
827
	if (data == 0) {
828 829 830 831
		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);
832 833 834 835
		if (data == 0x7b) {
			return 0;
		}
	}
836
	tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
837
	return -ENODEV;
838
}
839
EXPORT_SYMBOL_GPL(tda829x_probe);
840

841
MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
842
MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
843 844
MODULE_LICENSE("GPL");

L
Linus Torvalds 已提交
845 846 847 848 849 850 851
/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */