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
#include "tda8290.h"
27
#include "tda827x.h"
28
#include "tda18271.h"
29

30
static int tuner_debug;
31
module_param_named(debug, tuner_debug, int, 0644);
32 33
MODULE_PARM_DESC(debug, "enable verbose debug messages");

34
#define PREFIX "tda8290"
L
Linus Torvalds 已提交
35 36 37

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

38
struct tda8290_priv {
39 40
	struct tuner_i2c_props i2c_props;

41
	unsigned char tda8290_easy_mode;
42

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

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

52
	struct tda827x_config cfg;
53 54

	struct tuner *t;
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 117
	struct tda8290_priv *priv = fe->analog_demod_priv;
	struct tuner *t = priv->t;
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
	tuner_dbg("setting tda829x to system %s\n", mode);
147 148
}

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

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

177
	set_audio(fe, params);
178

179
	tuner_dbg("tda827xa config is 0x%02x\n", t->config);
180 181 182
	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);
183 184
	msleep(1);

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

195
	tda8290_i2c_bridge(fe, 1);
196

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

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

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

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

262 263
/*---------------------------------------------------------------------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

369
	set_audio(fe, params);
370

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

373 374
	tda8295_power(fe, 1);
	tda8295_agc1_out(fe, 1);
375 376 377 378

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

379
	tda8295_set_video_std(fe);
380 381 382 383 384

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

385
	tda8295_i2c_bridge(fe, 1);
386

387
	if (fe->ops.tuner_ops.set_analog_params)
388
		fe->ops.tuner_ops.set_analog_params(fe, params);
389 390

	if (priv->cfg.agcf)
391
		priv->cfg.agcf(fe);
392

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

398
	tda8295_i2c_bridge(fe, 0);
399 400 401 402
}

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

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

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

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

415 416
/*---------------------------------------------------------------------*/

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

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

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

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

439
	tda8295_power(fe, 0);
440 441
}

442
static void tda8290_init_if(struct dvb_frontend *fe)
443
{
444 445
	struct tda8290_priv *priv = fe->analog_demod_priv;
	struct tuner *t = priv->t;
446

447
	unsigned char set_VS[] = { 0x30, 0x6F };
448
	unsigned char set_GP00_CF[] = { 0x20, 0x01 };
449 450
	unsigned char set_GP01_CF[] = { 0x20, 0x0B };

451
	if ((t->config == 1) || (t->config == 2))
452
		tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
453
	else
454 455
		tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
	tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
456 457
}

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

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

470
	tda8295_power(fe, 1);
471

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

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

483 484
	tda8295_agc1_out(fe, 0);
	tda8295_agc2_out(fe, 0);
485 486
}

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

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

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

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

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

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

525 526
	if (NULL == ops)
		return -EINVAL;
527

528
	ops->i2c_gate_ctrl(fe, 1);
529

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

	ops->i2c_gate_ctrl(fe, 0);

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

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

569
	ops->i2c_gate_ctrl(fe, 1);
570
	ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
571

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

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

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

593 594
	if (fe->ops.tuner_ops.sleep)
		fe->ops.tuner_ops.sleep(fe);
595

596
	ops->i2c_gate_ctrl(fe, 0);
597

598 599
	switch (priv->ver) {
	case TDA8290 | TDA8275:
600
		strlcpy(t->i2c->name, "tda8290+75", sizeof(t->i2c->name));
601 602
		break;
	case TDA8295 | TDA8275:
603
		strlcpy(t->i2c->name, "tda8295+75", sizeof(t->i2c->name));
604 605
		break;
	case TDA8290 | TDA8275A:
606
		strlcpy(t->i2c->name, "tda8290+75a", sizeof(t->i2c->name));
607 608
		break;
	case TDA8295 | TDA8275A:
609
		strlcpy(t->i2c->name, "tda8295+75a", sizeof(t->i2c->name));
610 611
		break;
	case TDA8290 | TDA18271:
612
		strlcpy(t->i2c->name, "tda8290+18271", sizeof(t->i2c->name));
613 614
		break;
	case TDA8295 | TDA18271:
615
		strlcpy(t->i2c->name, "tda8295+18271", sizeof(t->i2c->name));
616 617 618 619
		break;
	default:
		return -EINVAL;
	}
620 621

	return 0;
L
Linus Torvalds 已提交
622
}
623

624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
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) {
		if (tuner_debug)
			printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
			       __FUNCTION__, i2c_adapter_id(i2c_props->adap),
			       i2c_props->addr);
		return 0;
	}

641
	return -ENODEV;
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
}

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) {
		if (tuner_debug)
			printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
			       __FUNCTION__, i2c_adapter_id(i2c_props->adap),
			       i2c_props->addr);
		return 0;
	}

661
	return -ENODEV;
662 663
}

664
static struct analog_tuner_ops tda8290_tuner_ops = {
665
	.set_params     = tda8290_set_params,
666 667 668 669 670 671 672
	.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 = {
673
	.set_params     = tda8295_set_params,
674 675 676 677 678 679 680
	.has_signal     = tda8295_has_signal,
	.standby        = tda8295_standby,
	.release        = tda829x_release,
	.i2c_gate_ctrl  = tda8295_i2c_bridge,
};

int tda829x_attach(struct tuner *t)
681
{
682
	struct dvb_frontend *fe = &t->fe;
683
	struct tda8290_priv *priv = NULL;
684

685 686 687
	priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
	if (priv == NULL)
		return -ENOMEM;
688
	fe->analog_demod_priv = priv;
689

690 691
	priv->i2c_props.addr     = t->i2c->addr;
	priv->i2c_props.adap     = t->i2c->adapter;
692 693
	priv->cfg.config         = &t->config;
	priv->cfg.tuner_callback = t->tuner_callback;
694
	priv->t = t;
695

696
	if (tda8290_probe(&priv->i2c_props) == 0) {
697 698
		priv->ver = TDA8290;
		fe->ops.analog_demod_ops = &tda8290_tuner_ops;
699
	}
700

701
	if (tda8295_probe(&priv->i2c_props) == 0) {
702 703
		priv->ver = TDA8295;
		fe->ops.analog_demod_ops = &tda8295_tuner_ops;
704 705
	}

706 707
	if (tda829x_find_tuner(fe) < 0)
		return -EINVAL;
708

709 710 711 712 713
	if (priv->ver & TDA8290) {
		tda8290_init_tuner(fe);
		tda8290_init_if(fe);
	} else if (priv->ver & TDA8295)
		tda8295_init_if(fe);
714

715
	tuner_info("type set to %s\n", t->i2c->name);
716 717 718 719 720

	t->mode = V4L2_TUNER_ANALOG_TV;

	return 0;
}
721
EXPORT_SYMBOL_GPL(tda829x_attach);
L
Linus Torvalds 已提交
722

723
int tda829x_probe(struct tuner *t)
724
{
725
	struct tuner_i2c_props i2c_props = {
726 727
		.adap = t->i2c->adapter,
		.addr = t->i2c->addr
728
	};
729

730 731 732 733
	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 };
734 735
	unsigned char addr_dto_lsb = 0x07;
	unsigned char data;
736 737 738 739 740 741 742 743
#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++) {
744 745
		if (buf[i] != buf[0])
			break;
746 747 748 749 750
	}

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

752 753 754 755 756
	if ((tda8290_probe(&i2c_props) == 0) ||
	    (tda8295_probe(&i2c_props) == 0))
		return 0;

	/* fall back to old probing method */
757 758 759 760
	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);
761
	if (data == 0) {
762 763 764 765
		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);
766 767 768 769
		if (data == 0x7b) {
			return 0;
		}
	}
770
	tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
771
	return -ENODEV;
772
}
773
EXPORT_SYMBOL_GPL(tda829x_probe);
774

775
MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
776
MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
777 778
MODULE_LICENSE("GPL");

L
Linus Torvalds 已提交
779 780 781 782 783 784 785
/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */