tda9887.c 16.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/i2c.h>
#include <linux/types.h>
#include <linux/videodev.h>
#include <linux/init.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/delay.h>

12
#include <media/v4l2-common.h>
L
Linus Torvalds 已提交
13 14
#include <media/tuner.h>

15

L
Linus Torvalds 已提交
16 17 18 19 20
/* Chips:
   TDA9885 (PAL, NTSC)
   TDA9886 (PAL, SECAM, NTSC)
   TDA9887 (PAL, SECAM, NTSC, FM Radio)

21
   Used as part of several tuners
L
Linus Torvalds 已提交
22 23
*/

24 25 26 27 28 29 30
#define tda9887_info(fmt, arg...) do {\
	printk(KERN_INFO "%s %d-%04x (tda9887): " fmt, t->i2c.name, \
			i2c_adapter_id(t->i2c.adapter), t->i2c.addr , ##arg); } while (0)
#define tda9887_dbg(fmt, arg...) do {\
	if (tuner_debug) \
		printk(KERN_INFO "%s %d-%04x (tda9887): " fmt, t->i2c.name, \
			i2c_adapter_id(t->i2c.adapter), t->i2c.addr , ##arg); } while (0)
L
Linus Torvalds 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85


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

#define UNSET       (-1U)

struct tvnorm {
	v4l2_std_id       std;
	char              *name;
	unsigned char     b;
	unsigned char     c;
	unsigned char     e;
};

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

//
// TDA defines
//

//// first reg (b)
#define cVideoTrapBypassOFF     0x00    // bit b0
#define cVideoTrapBypassON      0x01    // bit b0

#define cAutoMuteFmInactive     0x00    // bit b1
#define cAutoMuteFmActive       0x02    // bit b1

#define cIntercarrier           0x00    // bit b2
#define cQSS                    0x04    // bit b2

#define cPositiveAmTV           0x00    // bit b3:4
#define cFmRadio                0x08    // bit b3:4
#define cNegativeFmTV           0x10    // bit b3:4


#define cForcedMuteAudioON      0x20    // bit b5
#define cForcedMuteAudioOFF     0x00    // bit b5

#define cOutputPort1Active      0x00    // bit b6
#define cOutputPort1Inactive    0x40    // bit b6

#define cOutputPort2Active      0x00    // bit b7
#define cOutputPort2Inactive    0x80    // bit b7


//// second reg (c)
#define cDeemphasisOFF          0x00    // bit c5
#define cDeemphasisON           0x20    // bit c5

#define cDeemphasis75           0x00    // bit c6
#define cDeemphasis50           0x40    // bit c6

#define cAudioGain0             0x00    // bit c7
#define cAudioGain6             0x80    // bit c7

86 87 88
#define cTopMask                0x1f    // bit c0:4
#define cTopPalSecamDefault	0x14 	// bit c0:4
#define cTopNtscRadioDefault 	0x10 	// bit c0:4
L
Linus Torvalds 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

//// third reg (e)
#define cAudioIF_4_5             0x00    // bit e0:1
#define cAudioIF_5_5             0x01    // bit e0:1
#define cAudioIF_6_0             0x02    // bit e0:1
#define cAudioIF_6_5             0x03    // bit e0:1


#define cVideoIF_58_75           0x00    // bit e2:4
#define cVideoIF_45_75           0x04    // bit e2:4
#define cVideoIF_38_90           0x08    // bit e2:4
#define cVideoIF_38_00           0x0C    // bit e2:4
#define cVideoIF_33_90           0x10    // bit e2:4
#define cVideoIF_33_40           0x14    // bit e2:4
#define cRadioIF_45_75           0x18    // bit e2:4
#define cRadioIF_38_90           0x1C    // bit e2:4


#define cTunerGainNormal         0x00    // bit e5
#define cTunerGainLow            0x20    // bit e5

#define cGating_18               0x00    // bit e6
#define cGating_36               0x40    // bit e6

#define cAgcOutON                0x80    // bit e7
#define cAgcOutOFF               0x00    // bit e7

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

static struct tvnorm tvnorms[] = {
	{
120 121
		.std   = V4L2_STD_PAL_BG | V4L2_STD_PAL_H | V4L2_STD_PAL_N,
		.name  = "PAL-BGHN",
L
Linus Torvalds 已提交
122 123 124
		.b     = ( cNegativeFmTV  |
			   cQSS           ),
		.c     = ( cDeemphasisON  |
125 126 127 128
			   cDeemphasis50  |
			   cTopPalSecamDefault),
		.e     = ( cGating_36     |
			   cAudioIF_5_5   |
L
Linus Torvalds 已提交
129 130 131 132 133 134 135
			   cVideoIF_38_90 ),
	},{
		.std   = V4L2_STD_PAL_I,
		.name  = "PAL-I",
		.b     = ( cNegativeFmTV  |
			   cQSS           ),
		.c     = ( cDeemphasisON  |
136 137 138 139
			   cDeemphasis50  |
			   cTopPalSecamDefault),
		.e     = ( cGating_36     |
			   cAudioIF_6_0   |
L
Linus Torvalds 已提交
140 141 142 143 144 145 146
			   cVideoIF_38_90 ),
	},{
		.std   = V4L2_STD_PAL_DK,
		.name  = "PAL-DK",
		.b     = ( cNegativeFmTV  |
			   cQSS           ),
		.c     = ( cDeemphasisON  |
147 148 149 150 151
			   cDeemphasis50  |
			   cTopPalSecamDefault),
		.e     = ( cGating_36     |
			   cAudioIF_6_5   |
			   cVideoIF_38_90 ),
L
Linus Torvalds 已提交
152
	},{
153 154
		.std   = V4L2_STD_PAL_M | V4L2_STD_PAL_Nc,
		.name  = "PAL-M/Nc",
L
Linus Torvalds 已提交
155 156 157
		.b     = ( cNegativeFmTV  |
			   cQSS           ),
		.c     = ( cDeemphasisON  |
158 159 160 161
			   cDeemphasis75  |
			   cTopNtscRadioDefault),
		.e     = ( cGating_36     |
			   cAudioIF_4_5   |
L
Linus Torvalds 已提交
162
			   cVideoIF_45_75 ),
163 164 165 166 167 168 169 170 171
	},{
		.std   = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H,
		.name  = "SECAM-BGH",
		.b     = ( cPositiveAmTV  |
			   cQSS           ),
		.c     = ( cTopPalSecamDefault),
		.e     = ( cGating_36	  |
			   cAudioIF_5_5   |
			   cVideoIF_38_90 ),
L
Linus Torvalds 已提交
172 173 174 175 176
	},{
		.std   = V4L2_STD_SECAM_L,
		.name  = "SECAM-L",
		.b     = ( cPositiveAmTV  |
			   cQSS           ),
177
		.c     = ( cTopPalSecamDefault),
N
Nickolay V. Shmyrev 已提交
178
		.e     = ( cGating_36	  |
179
			   cAudioIF_6_5   |
L
Linus Torvalds 已提交
180
			   cVideoIF_38_90 ),
181 182 183 184 185 186
	},{
		.std   = V4L2_STD_SECAM_LC,
		.name  = "SECAM-L'",
		.b     = ( cOutputPort2Inactive |
			   cPositiveAmTV  |
			   cQSS           ),
187
		.c     = ( cTopPalSecamDefault),
188 189 190
		.e     = ( cGating_36	  |
			   cAudioIF_6_5   |
			   cVideoIF_33_90 ),
L
Linus Torvalds 已提交
191 192 193 194 195 196
	},{
		.std   = V4L2_STD_SECAM_DK,
		.name  = "SECAM-DK",
		.b     = ( cNegativeFmTV  |
			   cQSS           ),
		.c     = ( cDeemphasisON  |
197 198 199 200 201
			   cDeemphasis50  |
			   cTopPalSecamDefault),
		.e     = ( cGating_36     |
			   cAudioIF_6_5   |
			   cVideoIF_38_90 ),
L
Linus Torvalds 已提交
202
	},{
203
		.std   = V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_KR,
L
Linus Torvalds 已提交
204 205 206 207
		.name  = "NTSC-M",
		.b     = ( cNegativeFmTV  |
			   cQSS           ),
		.c     = ( cDeemphasisON  |
208 209
			   cDeemphasis75  |
			   cTopNtscRadioDefault),
L
Linus Torvalds 已提交
210 211 212 213 214
		.e     = ( cGating_36     |
			   cAudioIF_4_5   |
			   cVideoIF_45_75 ),
	},{
		.std   = V4L2_STD_NTSC_M_JP,
215
		.name  = "NTSC-M-JP",
L
Linus Torvalds 已提交
216 217 218
		.b     = ( cNegativeFmTV  |
			   cQSS           ),
		.c     = ( cDeemphasisON  |
219 220
			   cDeemphasis50  |
			   cTopNtscRadioDefault),
L
Linus Torvalds 已提交
221 222 223 224 225 226
		.e     = ( cGating_36     |
			   cAudioIF_4_5   |
			   cVideoIF_58_75 ),
	}
};

227 228 229 230 231
static struct tvnorm radio_stereo = {
	.name = "Radio Stereo",
	.b    = ( cFmRadio       |
		  cQSS           ),
	.c    = ( cDeemphasisOFF |
232 233 234 235
		  cAudioGain6    |
		  cTopNtscRadioDefault),
	.e    = ( cTunerGainLow  |
		  cAudioIF_5_5   |
236 237 238 239 240
		  cRadioIF_38_90 ),
};

static struct tvnorm radio_mono = {
	.name = "Radio Mono",
L
Linus Torvalds 已提交
241 242 243
	.b    = ( cFmRadio       |
		  cQSS           ),
	.c    = ( cDeemphasisON  |
244 245 246 247
		  cDeemphasis75  |
		  cTopNtscRadioDefault),
	.e    = ( cTunerGainLow  |
		  cAudioIF_5_5   |
L
Linus Torvalds 已提交
248 249 250 251 252
		  cRadioIF_38_90 ),
};

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

253
static void dump_read_message(struct tuner *t, unsigned char *buf)
L
Linus Torvalds 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
{
	static char *afc[16] = {
		"- 12.5 kHz",
		"- 37.5 kHz",
		"- 62.5 kHz",
		"- 87.5 kHz",
		"-112.5 kHz",
		"-137.5 kHz",
		"-162.5 kHz",
		"-187.5 kHz [min]",
		"+187.5 kHz [max]",
		"+162.5 kHz",
		"+137.5 kHz",
		"+112.5 kHz",
		"+ 87.5 kHz",
		"+ 62.5 kHz",
		"+ 37.5 kHz",
		"+ 12.5 kHz",
	};
273 274 275 276 277 278
	tda9887_info("read: 0x%2x\n", buf[0]);
	tda9887_info("  after power on : %s\n", (buf[0] & 0x01) ? "yes" : "no");
	tda9887_info("  afc            : %s\n", afc[(buf[0] >> 1) & 0x0f]);
	tda9887_info("  fmif level     : %s\n", (buf[0] & 0x20) ? "high" : "low");
	tda9887_info("  afc window     : %s\n", (buf[0] & 0x40) ? "in" : "out");
	tda9887_info("  vfi level      : %s\n", (buf[0] & 0x80) ? "high" : "low");
L
Linus Torvalds 已提交
279 280
}

281
static void dump_write_message(struct tuner *t, unsigned char *buf)
L
Linus Torvalds 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
{
	static char *sound[4] = {
		"AM/TV",
		"FM/radio",
		"FM/TV",
		"FM/radio"
	};
	static char *adjust[32] = {
		"-16", "-15", "-14", "-13", "-12", "-11", "-10", "-9",
		"-8",  "-7",  "-6",  "-5",  "-4",  "-3",  "-2",  "-1",
		"0",   "+1",  "+2",  "+3",  "+4",  "+5",  "+6",  "+7",
		"+8",  "+9",  "+10", "+11", "+12", "+13", "+14", "+15"
	};
	static char *deemph[4] = {
		"no", "no", "75", "50"
	};
	static char *carrier[4] = {
		"4.5 MHz",
		"5.5 MHz",
		"6.0 MHz",
		"6.5 MHz / AM"
	};
	static char *vif[8] = {
		"58.75 MHz",
		"45.75 MHz",
		"38.9 MHz",
		"38.0 MHz",
		"33.9 MHz",
		"33.4 MHz",
		"45.75 MHz + pin13",
		"38.9 MHz + pin13",
	};
	static char *rif[4] = {
		"44 MHz",
		"52 MHz",
		"52 MHz",
		"44 MHz",
	};

321 322
	tda9887_info("write: byte B 0x%02x\n",buf[1]);
	tda9887_info("  B0   video mode      : %s\n",
L
Linus Torvalds 已提交
323
	       (buf[1] & 0x01) ? "video trap" : "sound trap");
324
	tda9887_info("  B1   auto mute fm    : %s\n",
L
Linus Torvalds 已提交
325
	       (buf[1] & 0x02) ? "yes" : "no");
326
	tda9887_info("  B2   carrier mode    : %s\n",
L
Linus Torvalds 已提交
327
	       (buf[1] & 0x04) ? "QSS" : "Intercarrier");
328
	tda9887_info("  B3-4 tv sound/radio  : %s\n",
L
Linus Torvalds 已提交
329
	       sound[(buf[1] & 0x18) >> 3]);
330
	tda9887_info("  B5   force mute audio: %s\n",
L
Linus Torvalds 已提交
331
	       (buf[1] & 0x20) ? "yes" : "no");
332
	tda9887_info("  B6   output port 1   : %s\n",
L
Linus Torvalds 已提交
333
	       (buf[1] & 0x40) ? "high (inactive)" : "low (active)");
334
	tda9887_info("  B7   output port 2   : %s\n",
L
Linus Torvalds 已提交
335 336
	       (buf[1] & 0x80) ? "high (inactive)" : "low (active)");

337 338 339 340
	tda9887_info("write: byte C 0x%02x\n",buf[2]);
	tda9887_info("  C0-4 top adjustment  : %s dB\n", adjust[buf[2] & 0x1f]);
	tda9887_info("  C5-6 de-emphasis     : %s\n", deemph[(buf[2] & 0x60) >> 5]);
	tda9887_info("  C7   audio gain      : %s\n",
L
Linus Torvalds 已提交
341 342
	       (buf[2] & 0x80) ? "-6" : "0");

343 344
	tda9887_info("write: byte E 0x%02x\n",buf[3]);
	tda9887_info("  E0-1 sound carrier   : %s\n",
L
Linus Torvalds 已提交
345
	       carrier[(buf[3] & 0x03)]);
346
	tda9887_info("  E6   l pll gating   : %s\n",
L
Linus Torvalds 已提交
347 348 349 350
	       (buf[3] & 0x40) ? "36" : "13");

	if (buf[1] & 0x08) {
		/* radio */
351
		tda9887_info("  E2-4 video if        : %s\n",
L
Linus Torvalds 已提交
352
		       rif[(buf[3] & 0x0c) >> 2]);
353
		tda9887_info("  E7   vif agc output  : %s\n",
L
Linus Torvalds 已提交
354 355 356 357 358
		       (buf[3] & 0x80)
		       ? ((buf[3] & 0x10) ? "fm-agc radio" : "sif-agc radio")
		       : "fm radio carrier afc");
	} else {
		/* video */
359
		tda9887_info("  E2-4 video if        : %s\n",
L
Linus Torvalds 已提交
360
		       vif[(buf[3] & 0x1c) >> 2]);
361
		tda9887_info("  E5   tuner gain      : %s\n",
L
Linus Torvalds 已提交
362 363 364
		       (buf[3] & 0x80)
		       ? ((buf[3] & 0x20) ? "external" : "normal")
		       : ((buf[3] & 0x20) ? "minimum"  : "normal"));
365
		tda9887_info("  E7   vif agc output  : %s\n",
L
Linus Torvalds 已提交
366 367 368 369 370 371
		       (buf[3] & 0x80)
		       ? ((buf[3] & 0x20)
			  ? "pin3 port, pin22 vif agc out"
			  : "pin22 port, pin3 vif acg ext in")
		       : "pin3+pin22 port");
	}
372
	tda9887_info("--\n");
L
Linus Torvalds 已提交
373 374 375 376
}

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

377
static int tda9887_set_tvnorm(struct tuner *t, char *buf)
L
Linus Torvalds 已提交
378 379 380 381
{
	struct tvnorm *norm = NULL;
	int i;

382 383
	if (t->mode == V4L2_TUNER_RADIO) {
		if (t->audmode == V4L2_TUNER_MODE_MONO)
384 385
			norm = &radio_mono;
		else
386
			norm = &radio_stereo;
L
Linus Torvalds 已提交
387 388 389 390 391 392 393 394 395
	} else {
		for (i = 0; i < ARRAY_SIZE(tvnorms); i++) {
			if (tvnorms[i].std & t->std) {
				norm = tvnorms+i;
				break;
			}
		}
	}
	if (NULL == norm) {
396
		tda9887_dbg("Unsupported tvnorm entry - audio muted\n");
L
Linus Torvalds 已提交
397 398 399
		return -1;
	}

400
	tda9887_dbg("configure for: %s\n",norm->name);
L
Linus Torvalds 已提交
401 402 403 404 405 406 407 408 409
	buf[1] = norm->b;
	buf[2] = norm->c;
	buf[3] = norm->e;
	return 0;
}

static unsigned int port1  = UNSET;
static unsigned int port2  = UNSET;
static unsigned int qss    = UNSET;
410 411
static unsigned int adjust = UNSET;

L
Linus Torvalds 已提交
412 413 414 415 416
module_param(port1, int, 0644);
module_param(port2, int, 0644);
module_param(qss, int, 0644);
module_param(adjust, int, 0644);

417
static int tda9887_set_insmod(struct tuner *t, char *buf)
L
Linus Torvalds 已提交
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
{
	if (UNSET != port1) {
		if (port1)
			buf[1] |= cOutputPort1Inactive;
		else
			buf[1] &= ~cOutputPort1Inactive;
	}
	if (UNSET != port2) {
		if (port2)
			buf[1] |= cOutputPort2Inactive;
		else
			buf[1] &= ~cOutputPort2Inactive;
	}

	if (UNSET != qss) {
		if (qss)
			buf[1] |= cQSS;
		else
			buf[1] &= ~cQSS;
	}

439 440
	if (adjust >= 0x00 && adjust < 0x20) {
		buf[2] &= ~cTopMask;
L
Linus Torvalds 已提交
441
		buf[2] |= adjust;
442
	}
L
Linus Torvalds 已提交
443 444 445
	return 0;
}

446
static int tda9887_set_config(struct tuner *t, char *buf)
L
Linus Torvalds 已提交
447
{
448
	if (t->tda9887_config & TDA9887_PORT1_ACTIVE)
L
Linus Torvalds 已提交
449
		buf[1] &= ~cOutputPort1Inactive;
450
	if (t->tda9887_config & TDA9887_PORT1_INACTIVE)
L
Linus Torvalds 已提交
451
		buf[1] |= cOutputPort1Inactive;
452
	if (t->tda9887_config & TDA9887_PORT2_ACTIVE)
L
Linus Torvalds 已提交
453
		buf[1] &= ~cOutputPort2Inactive;
454
	if (t->tda9887_config & TDA9887_PORT2_INACTIVE)
L
Linus Torvalds 已提交
455 456
		buf[1] |= cOutputPort2Inactive;

457
	if (t->tda9887_config & TDA9887_QSS)
L
Linus Torvalds 已提交
458
		buf[1] |= cQSS;
459
	if (t->tda9887_config & TDA9887_INTERCARRIER)
L
Linus Torvalds 已提交
460 461
		buf[1] &= ~cQSS;

462
	if (t->tda9887_config & TDA9887_AUTOMUTE)
L
Linus Torvalds 已提交
463
		buf[1] |= cAutoMuteFmActive;
464
	if (t->tda9887_config & TDA9887_DEEMPHASIS_MASK) {
L
Linus Torvalds 已提交
465
		buf[2] &= ~0x60;
466
		switch (t->tda9887_config & TDA9887_DEEMPHASIS_MASK) {
L
Linus Torvalds 已提交
467 468 469 470 471 472 473 474 475 476 477
		case TDA9887_DEEMPHASIS_NONE:
			buf[2] |= cDeemphasisOFF;
			break;
		case TDA9887_DEEMPHASIS_50:
			buf[2] |= cDeemphasisON | cDeemphasis50;
			break;
		case TDA9887_DEEMPHASIS_75:
			buf[2] |= cDeemphasisON | cDeemphasis75;
			break;
		}
	}
478
	if (t->tda9887_config & TDA9887_TOP_SET) {
479
		buf[2] &= ~cTopMask;
480
		buf[2] |= (t->tda9887_config >> 8) & cTopMask;
481
	}
482
	if ((t->tda9887_config & TDA9887_INTERCARRIER_NTSC) && (t->std & V4L2_STD_NTSC))
483
		buf[1] &= ~cQSS;
L
Linus Torvalds 已提交
484 485 486 487 488
	return 0;
}

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

489
static int tda9887_status(struct tuner *t)
L
Linus Torvalds 已提交
490 491 492 493 494
{
	unsigned char buf[1];
	int rc;

	memset(buf,0,sizeof(buf));
495
	if (1 != (rc = i2c_master_recv(&t->i2c,buf,1)))
496
		tda9887_info("i2c i/o error: rc == %d (should be 1)\n",rc);
497
	dump_read_message(t, buf);
L
Linus Torvalds 已提交
498 499 500
	return 0;
}

501
static void tda9887_configure(struct i2c_client *client)
L
Linus Torvalds 已提交
502
{
503
	struct tuner *t = i2c_get_clientdata(client);
L
Linus Torvalds 已提交
504 505
	int rc;

506 507
	memset(t->tda9887_data,0,sizeof(t->tda9887_data));
	tda9887_set_tvnorm(t,t->tda9887_data);
508

509 510 511 512 513 514 515 516 517 518 519 520 521
	/* A note on the port settings:
	   These settings tend to depend on the specifics of the board.
	   By default they are set to inactive (bit value 1) by this driver,
	   overwriting any changes made by the tvnorm. This means that it
	   is the responsibility of the module using the tda9887 to set
	   these values in case of changes in the tvnorm.
	   In many cases port 2 should be made active (0) when selecting
	   SECAM-L, and port 2 should remain inactive (1) for SECAM-L'.

	   For the other standards the tda9887 application note says that
	   the ports should be set to active (0), but, again, that may
	   differ depending on the precise hardware configuration.
	 */
522 523
	t->tda9887_data[1] |= cOutputPort1Inactive;
	t->tda9887_data[1] |= cOutputPort2Inactive;
524

525 526
	tda9887_set_config(t,t->tda9887_data);
	tda9887_set_insmod(t,t->tda9887_data);
L
Linus Torvalds 已提交
527

528
	if (t->mode == T_STANDBY) {
529
		t->tda9887_data[1] |= cForcedMuteAudioON;
530 531
	}

532
	tda9887_dbg("writing: b=0x%02x c=0x%02x e=0x%02x\n",
533 534 535
		t->tda9887_data[1],t->tda9887_data[2],t->tda9887_data[3]);
	if (tuner_debug > 1)
		dump_write_message(t, t->tda9887_data);
L
Linus Torvalds 已提交
536

537
	if (4 != (rc = i2c_master_send(&t->i2c,t->tda9887_data,4)))
538
		tda9887_info("i2c i/o error: rc == %d (should be 4)\n",rc);
L
Linus Torvalds 已提交
539

540
	if (tuner_debug > 2) {
L
Linus Torvalds 已提交
541 542 543 544 545 546 547
		msleep_interruptible(1000);
		tda9887_status(t);
	}
}

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

548
static void tda9887_tuner_status(struct i2c_client *client)
L
Linus Torvalds 已提交
549
{
550 551
	struct tuner *t = i2c_get_clientdata(client);
	tda9887_info("Data bytes: b=0x%02x c=0x%02x e=0x%02x\n", t->tda9887_data[1], t->tda9887_data[2], t->tda9887_data[3]);
L
Linus Torvalds 已提交
552 553
}

554
static int tda9887_get_afc(struct i2c_client *client)
L
Linus Torvalds 已提交
555
{
556 557 558 559 560 561 562 563 564
	struct tuner *t = i2c_get_clientdata(client);
	static int AFC_BITS_2_kHz[] = {
		-12500,  -37500,  -62500,  -97500,
		-112500, -137500, -162500, -187500,
		187500,  162500,  137500,  112500,
		97500 ,  62500,   37500 ,  12500
	};
	int afc=0;
	__u8 reg = 0;
L
Linus Torvalds 已提交
565

566 567
	if (1 == i2c_master_recv(&t->i2c,&reg,1))
		afc = AFC_BITS_2_kHz[(reg>>1)&0x0f];
L
Linus Torvalds 已提交
568

569
	return afc;
L
Linus Torvalds 已提交
570 571
}

572
static void tda9887_standby(struct i2c_client *client)
L
Linus Torvalds 已提交
573
{
574
	tda9887_configure(client);
L
Linus Torvalds 已提交
575 576
}

577
static void tda9887_set_freq(struct i2c_client *client, unsigned int freq)
L
Linus Torvalds 已提交
578
{
579
	tda9887_configure(client);
L
Linus Torvalds 已提交
580 581
}

582
int tda9887_tuner_init(struct i2c_client *c)
L
Linus Torvalds 已提交
583
{
584
	struct tuner *t = i2c_get_clientdata(c);
L
Linus Torvalds 已提交
585

586
	strlcpy(c->name, "tda9887", sizeof(c->name));
L
Linus Torvalds 已提交
587

588 589
	tda9887_info("tda988[5/6/7] found @ 0x%x (%s)\n", t->i2c.addr,
						t->i2c.driver->driver.name);
L
Linus Torvalds 已提交
590

591 592 593 594 595
	t->set_tv_freq = tda9887_set_freq;
	t->set_radio_freq = tda9887_set_freq;
	t->standby = tda9887_standby;
	t->tuner_status=tda9887_tuner_status;
	t->get_afc=tda9887_get_afc;
L
Linus Torvalds 已提交
596

597
	return 0;
L
Linus Torvalds 已提交
598 599 600 601 602 603 604 605 606
}

/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */