tvaudio.c 62.8 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Driver for simple i2c audio chips.
L
Linus Torvalds 已提交
3 4 5 6 7 8 9
 *
 * Copyright (c) 2000 Gerd Knorr
 * based on code by:
 *   Eric Sandeen (eric_sandeen@bigfoot.com)
 *   Steve VanDeBogart (vandebo@uclink.berkeley.edu)
 *   Greg Alexander (galexand@acm.org)
 *
10 11 12 13
 * For the TDA9875 part:
 * Copyright (c) 2000 Guillaume Delvit based on Gerd Knorr source
 * and Eric Sandeen
 *
14 15 16 17
 * Copyright(c) 2005-2008 Mauro Carvalho Chehab
 *	- Some cleanups, code fixes, etc
 *	- Convert it to V4L2 API
 *
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
 * This code is placed under the terms of the GNU General Public License
 *
 * OPTIONS:
 *   debug - set to 1 if you'd like to see debug messages
 *
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/timer.h>
#include <linux/delay.h>
#include <linux/errno.h>
#include <linux/slab.h>
33
#include <linux/videodev2.h>
L
Linus Torvalds 已提交
34 35
#include <linux/i2c.h>
#include <linux/init.h>
36
#include <linux/kthread.h>
37
#include <linux/freezer.h>
L
Linus Torvalds 已提交
38

39
#include <media/tvaudio.h>
40
#include <media/v4l2-device.h>
41
#include <media/v4l2-chip-ident.h>
L
Linus Torvalds 已提交
42

43
#include <media/i2c-addr.h>
L
Linus Torvalds 已提交
44 45 46 47

/* ---------------------------------------------------------------------- */
/* insmod args                                                            */

48
static int debug;	/* insmod parameter */
L
Linus Torvalds 已提交
49 50 51 52 53 54 55
module_param(debug, int, 0644);

MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips");
MODULE_AUTHOR("Eric Sandeen, Steve VanDeBogart, Greg Alexander, Gerd Knorr");
MODULE_LICENSE("GPL");

#define UNSET    (-1U)
56

L
Linus Torvalds 已提交
57 58 59
/* ---------------------------------------------------------------------- */
/* our structs                                                            */

60
#define MAXREGS 256
L
Linus Torvalds 已提交
61 62 63 64 65

struct CHIPSTATE;
typedef int  (*getvalue)(int);
typedef int  (*checkit)(struct CHIPSTATE*);
typedef int  (*initialize)(struct CHIPSTATE*);
66 67
typedef int  (*getrxsubchans)(struct CHIPSTATE *);
typedef void (*setaudmode)(struct CHIPSTATE*, int mode);
L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

/* i2c command */
typedef struct AUDIOCMD {
	int             count;             /* # of bytes to send */
	unsigned char   bytes[MAXREGS+1];  /* addr, data, data, ... */
} audiocmd;

/* chip description */
struct CHIPDESC {
	char       *name;             /* chip name         */
	int        addr_lo, addr_hi;  /* i2c address range */
	int        registers;         /* # of registers    */

	int        *insmodopt;
	checkit    checkit;
	initialize initialize;
	int        flags;
#define CHIP_HAS_VOLUME      1
#define CHIP_HAS_BASSTREBLE  2
#define CHIP_HAS_INPUTSEL    4
88
#define CHIP_NEED_CHECKMODE  8
L
Linus Torvalds 已提交
89 90 91 92 93 94 95

	/* various i2c command sequences */
	audiocmd   init;

	/* which register has which value */
	int    leftreg,rightreg,treblereg,bassreg;

96 97
	/* initialize with (defaults to 65535/32768/32768 */
	int    volinit, trebleinit, bassinit;
L
Linus Torvalds 已提交
98 99 100 101 102

	/* functions to convert the values (v4l -> chip) */
	getvalue volfunc,treblefunc,bassfunc;

	/* get/set mode */
103 104
	getrxsubchans	getrxsubchans;
	setaudmode	setaudmode;
L
Linus Torvalds 已提交
105 106 107

	/* input switch register + values for v4l inputs */
	int  inputreg;
108
	int  inputmap[4];
L
Linus Torvalds 已提交
109 110 111 112 113 114
	int  inputmute;
	int  inputmask;
};

/* current state of the chip */
struct CHIPSTATE {
115
	struct v4l2_subdev sd;
L
Linus Torvalds 已提交
116

117 118 119
	/* chip-specific description - should point to
	   an entry at CHIPDESC table */
	struct CHIPDESC *desc;
L
Linus Torvalds 已提交
120 121 122 123 124

	/* shadow register set */
	audiocmd   shadow;

	/* current settings */
125
	u16 volume, balance, treble, bass, muted;
L
Linus Torvalds 已提交
126
	int prevmode;
127
	int radio;
128
	int input;
L
Linus Torvalds 已提交
129 130

	/* thread */
131
	struct task_struct   *thread;
L
Linus Torvalds 已提交
132
	struct timer_list    wt;
133
	int 		     audmode;
L
Linus Torvalds 已提交
134 135
};

136 137 138 139 140
static inline struct CHIPSTATE *to_state(struct v4l2_subdev *sd)
{
	return container_of(sd, struct CHIPSTATE, sd);
}

L
Linus Torvalds 已提交
141 142 143 144 145 146

/* ---------------------------------------------------------------------- */
/* i2c I/O functions                                                      */

static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
{
147 148
	struct v4l2_subdev *sd = &chip->sd;
	struct i2c_client *c = v4l2_get_subdevdata(sd);
L
Linus Torvalds 已提交
149 150
	unsigned char buffer[2];

151
	if (subaddr < 0) {
152
		v4l2_dbg(1, debug, sd, "chip_write: 0x%x\n", val);
L
Linus Torvalds 已提交
153 154
		chip->shadow.bytes[1] = val;
		buffer[0] = val;
155 156
		if (1 != i2c_master_send(c, buffer, 1)) {
			v4l2_warn(sd, "I/O error (write 0x%x)\n", val);
L
Linus Torvalds 已提交
157 158 159
			return -1;
		}
	} else {
160
		if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
161
			v4l2_info(sd,
162 163 164 165 166
				"Tried to access a non-existent register: %d\n",
				subaddr);
			return -EINVAL;
		}

167 168
		v4l2_dbg(1, debug, sd, "chip_write: reg%d=0x%x\n",
			subaddr, val);
L
Linus Torvalds 已提交
169 170 171
		chip->shadow.bytes[subaddr+1] = val;
		buffer[0] = subaddr;
		buffer[1] = val;
172 173 174
		if (2 != i2c_master_send(c, buffer, 2)) {
			v4l2_warn(sd, "I/O error (write reg%d=0x%x)\n",
				subaddr, val);
L
Linus Torvalds 已提交
175 176 177 178 179 180
			return -1;
		}
	}
	return 0;
}

181 182
static int chip_write_masked(struct CHIPSTATE *chip,
			     int subaddr, int val, int mask)
L
Linus Torvalds 已提交
183
{
184 185
	struct v4l2_subdev *sd = &chip->sd;

L
Linus Torvalds 已提交
186
	if (mask != 0) {
187
		if (subaddr < 0) {
L
Linus Torvalds 已提交
188 189
			val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
		} else {
190
			if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
191
				v4l2_info(sd,
192 193 194 195 196
					"Tried to access a non-existent register: %d\n",
					subaddr);
				return -EINVAL;
			}

L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204
			val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
		}
	}
	return chip_write(chip, subaddr, val);
}

static int chip_read(struct CHIPSTATE *chip)
{
205 206
	struct v4l2_subdev *sd = &chip->sd;
	struct i2c_client *c = v4l2_get_subdevdata(sd);
L
Linus Torvalds 已提交
207 208
	unsigned char buffer;

209 210
	if (1 != i2c_master_recv(c, &buffer, 1)) {
		v4l2_warn(sd, "I/O error (read)\n");
L
Linus Torvalds 已提交
211 212
		return -1;
	}
213
	v4l2_dbg(1, debug, sd, "chip_read: 0x%x\n", buffer);
L
Linus Torvalds 已提交
214 215 216 217 218
	return buffer;
}

static int chip_read2(struct CHIPSTATE *chip, int subaddr)
{
219 220
	struct v4l2_subdev *sd = &chip->sd;
	struct i2c_client *c = v4l2_get_subdevdata(sd);
221 222 223
	unsigned char write[1];
	unsigned char read[1];
	struct i2c_msg msgs[2] = {
224 225 226 227 228 229 230 231 232 233 234
		{
			.addr = c->addr,
			.len = 1,
			.buf = write
		},
		{
			.addr = c->addr,
			.flags = I2C_M_RD,
			.len = 1,
			.buf = read
		}
235
	};
236

237
	write[0] = subaddr;
L
Linus Torvalds 已提交
238

239 240
	if (2 != i2c_transfer(c->adapter, msgs, 2)) {
		v4l2_warn(sd, "I/O error (read2)\n");
L
Linus Torvalds 已提交
241 242
		return -1;
	}
243 244
	v4l2_dbg(1, debug, sd, "chip_read2: reg%d=0x%x\n",
		subaddr, read[0]);
L
Linus Torvalds 已提交
245 246 247 248 249
	return read[0];
}

static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
{
250 251
	struct v4l2_subdev *sd = &chip->sd;
	struct i2c_client *c = v4l2_get_subdevdata(sd);
L
Linus Torvalds 已提交
252 253 254 255 256
	int i;

	if (0 == cmd->count)
		return 0;

257
	if (cmd->count + cmd->bytes[0] - 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
258
		v4l2_info(sd,
259 260 261 262 263 264 265
			 "Tried to access a non-existent register range: %d to %d\n",
			 cmd->bytes[0] + 1, cmd->bytes[0] + cmd->count - 1);
		return -EINVAL;
	}

	/* FIXME: it seems that the shadow bytes are wrong bellow !*/

L
Linus Torvalds 已提交
266
	/* update our shadow register set; print bytes if (debug > 0) */
267 268
	v4l2_dbg(1, debug, sd, "chip_cmd(%s): reg=%d, data:",
		name, cmd->bytes[0]);
L
Linus Torvalds 已提交
269
	for (i = 1; i < cmd->count; i++) {
270
		if (debug)
271
			printk(KERN_CONT " 0x%x", cmd->bytes[i]);
L
Linus Torvalds 已提交
272 273
		chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
	}
274
	if (debug)
275
		printk(KERN_CONT "\n");
L
Linus Torvalds 已提交
276 277

	/* send data to the chip */
278 279
	if (cmd->count != i2c_master_send(c, cmd->bytes, cmd->count)) {
		v4l2_warn(sd, "I/O error (%s)\n", name);
L
Linus Torvalds 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292 293
		return -1;
	}
	return 0;
}

/* ---------------------------------------------------------------------- */
/* kernel thread for doing i2c stuff asyncronly
 *   right now it is used only to check the audio mode (mono/stereo/whatever)
 *   some time after switching to another TV channel, then turn on stereo
 *   if available, ...
 */

static void chip_thread_wake(unsigned long data)
{
294
	struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
295
	wake_up_process(chip->thread);
L
Linus Torvalds 已提交
296 297 298 299
}

static int chip_thread(void *data)
{
300
	struct CHIPSTATE *chip = data;
301
	struct CHIPDESC  *desc = chip->desc;
302
	struct v4l2_subdev *sd = &chip->sd;
303
	int mode, selected;
L
Linus Torvalds 已提交
304

305
	v4l2_dbg(1, debug, sd, "thread started\n");
306
	set_freezable();
L
Linus Torvalds 已提交
307
	for (;;) {
308 309
		set_current_state(TASK_INTERRUPTIBLE);
		if (!kthread_should_stop())
L
Linus Torvalds 已提交
310
			schedule();
311
		set_current_state(TASK_RUNNING);
312
		try_to_freeze();
313
		if (kthread_should_stop())
L
Linus Torvalds 已提交
314
			break;
315
		v4l2_dbg(1, debug, sd, "thread wakeup\n");
L
Linus Torvalds 已提交
316

317 318
		/* don't do anything for radio */
		if (chip->radio)
L
Linus Torvalds 已提交
319 320 321
			continue;

		/* have a look what's going on */
322
		mode = desc->getrxsubchans(chip);
323 324 325 326
		if (mode == chip->prevmode)
			continue;

		/* chip detected a new audio mode - set it */
327
		v4l2_dbg(1, debug, sd, "thread checkmode\n");
328 329 330

		chip->prevmode = mode;

331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
		selected = V4L2_TUNER_MODE_MONO;
		switch (chip->audmode) {
		case V4L2_TUNER_MODE_MONO:
			if (mode & V4L2_TUNER_SUB_LANG1)
				selected = V4L2_TUNER_MODE_LANG1;
			break;
		case V4L2_TUNER_MODE_STEREO:
		case V4L2_TUNER_MODE_LANG1:
			if (mode & V4L2_TUNER_SUB_LANG1)
				selected = V4L2_TUNER_MODE_LANG1;
			else if (mode & V4L2_TUNER_SUB_STEREO)
				selected = V4L2_TUNER_MODE_STEREO;
			break;
		case V4L2_TUNER_MODE_LANG2:
			if (mode & V4L2_TUNER_SUB_LANG2)
				selected = V4L2_TUNER_MODE_LANG2;
			else if (mode & V4L2_TUNER_SUB_STEREO)
				selected = V4L2_TUNER_MODE_STEREO;
			break;
350 351 352 353 354
		case V4L2_TUNER_MODE_LANG1_LANG2:
			if (mode & V4L2_TUNER_SUB_LANG2)
				selected = V4L2_TUNER_MODE_LANG1_LANG2;
			else if (mode & V4L2_TUNER_SUB_STEREO)
				selected = V4L2_TUNER_MODE_STEREO;
355
		}
356
		desc->setaudmode(chip, selected);
L
Linus Torvalds 已提交
357 358

		/* schedule next check */
359
		mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
L
Linus Torvalds 已提交
360 361
	}

362
	v4l2_dbg(1, debug, sd, "thread exiting\n");
L
Linus Torvalds 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
	return 0;
}

/* ---------------------------------------------------------------------- */
/* audio chip descriptions - defines+functions for tda9840                */

#define TDA9840_SW         0x00
#define TDA9840_LVADJ      0x02
#define TDA9840_STADJ      0x03
#define TDA9840_TEST       0x04

#define TDA9840_MONO       0x10
#define TDA9840_STEREO     0x2a
#define TDA9840_DUALA      0x12
#define TDA9840_DUALB      0x1e
#define TDA9840_DUALAB     0x1a
#define TDA9840_DUALBA     0x16
#define TDA9840_EXTERNAL   0x7a

#define TDA9840_DS_DUAL    0x20 /* Dual sound identified          */
#define TDA9840_ST_STEREO  0x40 /* Stereo sound identified        */
#define TDA9840_PONRES     0x80 /* Power-on reset detected if = 1 */

#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */

389
static int tda9840_getrxsubchans(struct CHIPSTATE *chip)
L
Linus Torvalds 已提交
390
{
391
	struct v4l2_subdev *sd = &chip->sd;
L
Linus Torvalds 已提交
392 393 394
	int val, mode;

	val = chip_read(chip);
395
	mode = V4L2_TUNER_SUB_MONO;
L
Linus Torvalds 已提交
396
	if (val & TDA9840_DS_DUAL)
397
		mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
L
Linus Torvalds 已提交
398
	if (val & TDA9840_ST_STEREO)
399
		mode = V4L2_TUNER_SUB_STEREO;
L
Linus Torvalds 已提交
400

401 402
	v4l2_dbg(1, debug, sd,
		"tda9840_getrxsubchans(): raw chip read: %d, return: %d\n",
403
		val, mode);
L
Linus Torvalds 已提交
404 405 406
	return mode;
}

407
static void tda9840_setaudmode(struct CHIPSTATE *chip, int mode)
L
Linus Torvalds 已提交
408 409 410 411 412
{
	int update = 1;
	int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;

	switch (mode) {
413
	case V4L2_TUNER_MODE_MONO:
L
Linus Torvalds 已提交
414 415
		t |= TDA9840_MONO;
		break;
416
	case V4L2_TUNER_MODE_STEREO:
L
Linus Torvalds 已提交
417 418
		t |= TDA9840_STEREO;
		break;
419
	case V4L2_TUNER_MODE_LANG1:
L
Linus Torvalds 已提交
420 421
		t |= TDA9840_DUALA;
		break;
422
	case V4L2_TUNER_MODE_LANG2:
L
Linus Torvalds 已提交
423 424
		t |= TDA9840_DUALB;
		break;
425 426 427
	case V4L2_TUNER_MODE_LANG1_LANG2:
		t |= TDA9840_DUALAB;
		break;
L
Linus Torvalds 已提交
428 429 430 431 432 433 434 435
	default:
		update = 0;
	}

	if (update)
		chip_write(chip, TDA9840_SW, t);
}

436 437 438 439 440 441 442 443
static int tda9840_checkit(struct CHIPSTATE *chip)
{
	int rc;
	rc = chip_read(chip);
	/* lower 5 bits should be 0 */
	return ((rc & 0x1f) == 0) ? 1 : 0;
}

L
Linus Torvalds 已提交
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
/* ---------------------------------------------------------------------- */
/* audio chip descriptions - defines+functions for tda985x                */

/* subaddresses for TDA9855 */
#define TDA9855_VR	0x00 /* Volume, right */
#define TDA9855_VL	0x01 /* Volume, left */
#define TDA9855_BA	0x02 /* Bass */
#define TDA9855_TR	0x03 /* Treble */
#define TDA9855_SW	0x04 /* Subwoofer - not connected on DTV2000 */

/* subaddresses for TDA9850 */
#define TDA9850_C4	0x04 /* Control 1 for TDA9850 */

/* subaddesses for both chips */
#define TDA985x_C5	0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
#define TDA985x_C6	0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
#define TDA985x_C7	0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
#define TDA985x_A1	0x08 /* Alignment 1 for both chips */
#define TDA985x_A2	0x09 /* Alignment 2 for both chips */
#define TDA985x_A3	0x0a /* Alignment 3 for both chips */

/* Masks for bits in TDA9855 subaddresses */
/* 0x00 - VR in TDA9855 */
/* 0x01 - VL in TDA9855 */
/* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
 * in 1dB steps - mute is 0x27 */


/* 0x02 - BA in TDA9855 */
/* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
 * in .5dB steps - 0 is 0x0E */


/* 0x03 - TR in TDA9855 */
/* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
 * in 3dB steps - 0 is 0x7 */

/* Masks for bits in both chips' subaddresses */
/* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
/* Unique to TDA9855: */
/* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
 * in 3dB steps - mute is 0x0 */

/* Unique to TDA9850: */
/* lower 4 bits control stereo noise threshold, over which stereo turns off
 * set to values of 0x00 through 0x0f for Ster1 through Ster16 */


/* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
/* Unique to TDA9855: */
#define TDA9855_MUTE	1<<7 /* GMU, Mute at outputs */
#define TDA9855_AVL	1<<6 /* AVL, Automatic Volume Level */
#define TDA9855_LOUD	1<<5 /* Loudness, 1==off */
#define TDA9855_SUR	1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
			     /* Bits 0 to 3 select various combinations
499 500
			      * of line in and line out, only the
			      * interesting ones are defined */
L
Linus Torvalds 已提交
501 502 503 504 505 506 507 508 509 510 511
#define TDA9855_EXT	1<<2 /* Selects inputs LIR and LIL.  Pins 41 & 12 */
#define TDA9855_INT	0    /* Selects inputs LOR and LOL.  (internal) */

/* Unique to TDA9850:  */
/* lower 4 bits contol SAP noise threshold, over which SAP turns off
 * set to values of 0x00 through 0x0f for SAP1 through SAP16 */


/* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
/* Common to TDA9855 and TDA9850: */
#define TDA985x_SAP	3<<6 /* Selects SAP output, mute if not received */
512
#define TDA985x_MONOSAP	2<<6 /* Selects Mono on left, SAP on right */
L
Linus Torvalds 已提交
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
#define TDA985x_STEREO	1<<6 /* Selects Stereo ouput, mono if not received */
#define TDA985x_MONO	0    /* Forces Mono output */
#define TDA985x_LMU	1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */

/* Unique to TDA9855: */
#define TDA9855_TZCM	1<<5 /* If set, don't mute till zero crossing */
#define TDA9855_VZCM	1<<4 /* If set, don't change volume till zero crossing*/
#define TDA9855_LINEAR	0    /* Linear Stereo */
#define TDA9855_PSEUDO	1    /* Pseudo Stereo */
#define TDA9855_SPAT_30	2    /* Spatial Stereo, 30% anti-phase crosstalk */
#define TDA9855_SPAT_50	3    /* Spatial Stereo, 52% anti-phase crosstalk */
#define TDA9855_E_MONO	7    /* Forced mono - mono select elseware, so useless*/

/* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
/* Common to both TDA9855 and TDA9850: */
/* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
 * in .5dB steps -  0dB is 0x7 */

/* 0x08, 0x09 - A1 and A2 (read/write) */
/* Common to both TDA9855 and TDA9850: */
/* lower 5 bites are wideband and spectral expander alignment
 * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
#define TDA985x_STP	1<<5 /* Stereo Pilot/detect (read-only) */
#define TDA985x_SAPP	1<<6 /* SAP Pilot/detect (read-only) */
#define TDA985x_STS	1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/

/* 0x0a - A3 */
/* Common to both TDA9855 and TDA9850: */
/* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
 * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
#define TDA985x_ADJ	1<<7 /* Stereo adjust on/off (wideband and spectral */

static int tda9855_volume(int val) { return val/0x2e8+0x27; }
static int tda9855_bass(int val)   { return val/0xccc+0x06; }
static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }

549
static int  tda985x_getrxsubchans(struct CHIPSTATE *chip)
L
Linus Torvalds 已提交
550
{
551
	int mode, val;
L
Linus Torvalds 已提交
552 553 554

	/* Add mono mode regardless of SAP and stereo */
	/* Allows forced mono */
555 556 557
	mode = V4L2_TUNER_SUB_MONO;
	val = chip_read(chip);
	if (val & TDA985x_STP)
558
		mode = V4L2_TUNER_SUB_STEREO;
559 560 561
	if (val & TDA985x_SAPP)
		mode |= V4L2_TUNER_SUB_SAP;
	return mode;
L
Linus Torvalds 已提交
562 563
}

564
static void tda985x_setaudmode(struct CHIPSTATE *chip, int mode)
L
Linus Torvalds 已提交
565 566 567 568 569
{
	int update = 1;
	int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;

	switch (mode) {
570
	case V4L2_TUNER_MODE_MONO:
L
Linus Torvalds 已提交
571 572
		c6 |= TDA985x_MONO;
		break;
573
	case V4L2_TUNER_MODE_STEREO:
574
	case V4L2_TUNER_MODE_LANG1:
L
Linus Torvalds 已提交
575 576
		c6 |= TDA985x_STEREO;
		break;
577
	case V4L2_TUNER_MODE_SAP:
L
Linus Torvalds 已提交
578 579
		c6 |= TDA985x_SAP;
		break;
580 581 582
	case V4L2_TUNER_MODE_LANG1_LANG2:
		c6 |= TDA985x_MONOSAP;
		break;
L
Linus Torvalds 已提交
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
	default:
		update = 0;
	}
	if (update)
		chip_write(chip,TDA985x_C6,c6);
}


/* ---------------------------------------------------------------------- */
/* audio chip descriptions - defines+functions for tda9873h               */

/* Subaddresses for TDA9873H */

#define TDA9873_SW	0x00 /* Switching                    */
#define TDA9873_AD	0x01 /* Adjust                       */
#define TDA9873_PT	0x02 /* Port                         */

/* Subaddress 0x00: Switching Data
 * B7..B0:
 *
 * B1, B0: Input source selection
 *  0,  0  internal
 *  1,  0  external stereo
 *  0,  1  external mono
 */
#define TDA9873_INP_MASK    3
#define TDA9873_INTERNAL    0
#define TDA9873_EXT_STEREO  2
#define TDA9873_EXT_MONO    1

/*    B3, B2: output signal select
 * B4    : transmission mode
 *  0, 0, 1   Mono
 *  1, 0, 0   Stereo
 *  1, 1, 1   Stereo (reversed channel)
 *  0, 0, 0   Dual AB
 *  0, 0, 1   Dual AA
 *  0, 1, 0   Dual BB
 *  0, 1, 1   Dual BA
 */

#define TDA9873_TR_MASK     (7 << 2)
#define TDA9873_TR_MONO     4
#define TDA9873_TR_STEREO   1 << 4
627
#define TDA9873_TR_REVERSE  ((1 << 3) | (1 << 2))
L
Linus Torvalds 已提交
628 629
#define TDA9873_TR_DUALA    1 << 2
#define TDA9873_TR_DUALB    1 << 3
630
#define TDA9873_TR_DUALAB   0
L
Linus Torvalds 已提交
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697

/* output level controls
 * B5:  output level switch (0 = reduced gain, 1 = normal gain)
 * B6:  mute                (1 = muted)
 * B7:  auto-mute           (1 = auto-mute enabled)
 */

#define TDA9873_GAIN_NORMAL 1 << 5
#define TDA9873_MUTE        1 << 6
#define TDA9873_AUTOMUTE    1 << 7

/* Subaddress 0x01:  Adjust/standard */

/* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
 * Recommended value is +0 dB
 */

#define	TDA9873_STEREO_ADJ	0x06 /* 0dB gain */

/* Bits C6..C4 control FM stantard
 * C6, C5, C4
 *  0,  0,  0   B/G (PAL FM)
 *  0,  0,  1   M
 *  0,  1,  0   D/K(1)
 *  0,  1,  1   D/K(2)
 *  1,  0,  0   D/K(3)
 *  1,  0,  1   I
 */
#define TDA9873_BG		0
#define TDA9873_M       1
#define TDA9873_DK1     2
#define TDA9873_DK2     3
#define TDA9873_DK3     4
#define TDA9873_I       5

/* C7 controls identification response time (1=fast/0=normal)
 */
#define TDA9873_IDR_NORM 0
#define TDA9873_IDR_FAST 1 << 7


/* Subaddress 0x02: Port data */

/* E1, E0   free programmable ports P1/P2
    0,  0   both ports low
    0,  1   P1 high
    1,  0   P2 high
    1,  1   both ports high
*/

#define TDA9873_PORTS    3

/* E2: test port */
#define TDA9873_TST_PORT 1 << 2

/* E5..E3 control mono output channel (together with transmission mode bit B4)
 *
 * E5 E4 E3 B4     OUTM
 *  0  0  0  0     mono
 *  0  0  1  0     DUAL B
 *  0  1  0  1     mono (from stereo decoder)
 */
#define TDA9873_MOUT_MONO   0
#define TDA9873_MOUT_FMONO  0
#define TDA9873_MOUT_DUALA  0
#define TDA9873_MOUT_DUALB  1 << 3
#define TDA9873_MOUT_ST     1 << 4
698
#define TDA9873_MOUT_EXTM   ((1 << 4) | (1 << 3))
L
Linus Torvalds 已提交
699
#define TDA9873_MOUT_EXTL   1 << 5
700 701 702
#define TDA9873_MOUT_EXTR   ((1 << 5) | (1 << 3))
#define TDA9873_MOUT_EXTLR  ((1 << 5) | (1 << 4))
#define TDA9873_MOUT_MUTE   ((1 << 5) | (1 << 4) | (1 << 3))
L
Linus Torvalds 已提交
703 704 705 706 707 708

/* Status bits: (chip read) */
#define TDA9873_PONR        0 /* Power-on reset detected if = 1 */
#define TDA9873_STEREO      2 /* Stereo sound is identified     */
#define TDA9873_DUAL        4 /* Dual sound is identified       */

709
static int tda9873_getrxsubchans(struct CHIPSTATE *chip)
L
Linus Torvalds 已提交
710
{
711
	struct v4l2_subdev *sd = &chip->sd;
L
Linus Torvalds 已提交
712 713 714
	int val,mode;

	val = chip_read(chip);
715
	mode = V4L2_TUNER_SUB_MONO;
L
Linus Torvalds 已提交
716
	if (val & TDA9873_STEREO)
717
		mode = V4L2_TUNER_SUB_STEREO;
L
Linus Torvalds 已提交
718
	if (val & TDA9873_DUAL)
719
		mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
720 721
	v4l2_dbg(1, debug, sd,
		"tda9873_getrxsubchans(): raw chip read: %d, return: %d\n",
722
		val, mode);
L
Linus Torvalds 已提交
723 724 725
	return mode;
}

726
static void tda9873_setaudmode(struct CHIPSTATE *chip, int mode)
L
Linus Torvalds 已提交
727
{
728
	struct v4l2_subdev *sd = &chip->sd;
L
Linus Torvalds 已提交
729 730 731 732
	int sw_data  = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
	/*	int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */

	if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
733 734
		v4l2_dbg(1, debug, sd,
			 "tda9873_setaudmode(): external input\n");
L
Linus Torvalds 已提交
735 736 737
		return;
	}

738 739 740 741 742
	v4l2_dbg(1, debug, sd,
		 "tda9873_setaudmode(): chip->shadow.bytes[%d] = %d\n",
		 TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
	v4l2_dbg(1, debug, sd, "tda9873_setaudmode(): sw_data  = %d\n",
		 sw_data);
L
Linus Torvalds 已提交
743 744

	switch (mode) {
745
	case V4L2_TUNER_MODE_MONO:
L
Linus Torvalds 已提交
746 747
		sw_data |= TDA9873_TR_MONO;
		break;
748
	case V4L2_TUNER_MODE_STEREO:
L
Linus Torvalds 已提交
749 750
		sw_data |= TDA9873_TR_STEREO;
		break;
751
	case V4L2_TUNER_MODE_LANG1:
L
Linus Torvalds 已提交
752 753
		sw_data |= TDA9873_TR_DUALA;
		break;
754
	case V4L2_TUNER_MODE_LANG2:
L
Linus Torvalds 已提交
755 756
		sw_data |= TDA9873_TR_DUALB;
		break;
757 758 759
	case V4L2_TUNER_MODE_LANG1_LANG2:
		sw_data |= TDA9873_TR_DUALAB;
		break;
L
Linus Torvalds 已提交
760 761 762 763 764
	default:
		return;
	}

	chip_write(chip, TDA9873_SW, sw_data);
765 766
	v4l2_dbg(1, debug, sd,
		"tda9873_setaudmode(): req. mode %d; chip_write: %d\n",
L
Linus Torvalds 已提交
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
		mode, sw_data);
}

static int tda9873_checkit(struct CHIPSTATE *chip)
{
	int rc;

	if (-1 == (rc = chip_read2(chip,254)))
		return 0;
	return (rc & ~0x1f) == 0x80;
}


/* ---------------------------------------------------------------------- */
/* audio chip description - defines+functions for tda9874h and tda9874a   */
/* Dariusz Kowalewski <darekk@automex.pl>                                 */

/* Subaddresses for TDA9874H and TDA9874A (slave rx) */
#define TDA9874A_AGCGR		0x00	/* AGC gain */
#define TDA9874A_GCONR		0x01	/* general config */
#define TDA9874A_MSR		0x02	/* monitor select */
#define TDA9874A_C1FRA		0x03	/* carrier 1 freq. */
#define TDA9874A_C1FRB		0x04	/* carrier 1 freq. */
#define TDA9874A_C1FRC		0x05	/* carrier 1 freq. */
#define TDA9874A_C2FRA		0x06	/* carrier 2 freq. */
#define TDA9874A_C2FRB		0x07	/* carrier 2 freq. */
#define TDA9874A_C2FRC		0x08	/* carrier 2 freq. */
#define TDA9874A_DCR		0x09	/* demodulator config */
#define TDA9874A_FMER		0x0a	/* FM de-emphasis */
#define TDA9874A_FMMR		0x0b	/* FM dematrix */
#define TDA9874A_C1OLAR		0x0c	/* ch.1 output level adj. */
#define TDA9874A_C2OLAR		0x0d	/* ch.2 output level adj. */
#define TDA9874A_NCONR		0x0e	/* NICAM config */
#define TDA9874A_NOLAR		0x0f	/* NICAM output level adj. */
#define TDA9874A_NLELR		0x10	/* NICAM lower error limit */
#define TDA9874A_NUELR		0x11	/* NICAM upper error limit */
#define TDA9874A_AMCONR		0x12	/* audio mute control */
#define TDA9874A_SDACOSR	0x13	/* stereo DAC output select */
#define TDA9874A_AOSR		0x14	/* analog output select */
#define TDA9874A_DAICONR	0x15	/* digital audio interface config */
#define TDA9874A_I2SOSR		0x16	/* I2S-bus output select */
#define TDA9874A_I2SOLAR	0x17	/* I2S-bus output level adj. */
#define TDA9874A_MDACOSR	0x18	/* mono DAC output select (tda9874a) */
#define TDA9874A_ESP		0xFF	/* easy standard progr. (tda9874a) */

/* Subaddresses for TDA9874H and TDA9874A (slave tx) */
#define TDA9874A_DSR		0x00	/* device status */
#define TDA9874A_NSR		0x01	/* NICAM status */
#define TDA9874A_NECR		0x02	/* NICAM error count */
#define TDA9874A_DR1		0x03	/* add. data LSB */
#define TDA9874A_DR2		0x04	/* add. data MSB */
#define TDA9874A_LLRA		0x05	/* monitor level read-out LSB */
#define TDA9874A_LLRB		0x06	/* monitor level read-out MSB */
#define TDA9874A_SIFLR		0x07	/* SIF level */
#define TDA9874A_TR2		252	/* test reg. 2 */
#define TDA9874A_TR1		253	/* test reg. 1 */
#define TDA9874A_DIC		254	/* device id. code */
#define TDA9874A_SIC		255	/* software id. code */


static int tda9874a_mode = 1;		/* 0: A2, 1: NICAM */
static int tda9874a_GCONR = 0xc0;	/* default config. input pin: SIFSEL=0 */
static int tda9874a_NCONR = 0x01;	/* default NICAM config.: AMSEL=0,AMUTE=1 */
static int tda9874a_ESP = 0x07;		/* default standard: NICAM D/K */
static int tda9874a_dic = -1;		/* device id. code */

/* insmod options for tda9874a */
static unsigned int tda9874a_SIF   = UNSET;
static unsigned int tda9874a_AMSEL = UNSET;
static unsigned int tda9874a_STD   = UNSET;
module_param(tda9874a_SIF, int, 0444);
module_param(tda9874a_AMSEL, int, 0444);
module_param(tda9874a_STD, int, 0444);

/*
 * initialization table for tda9874 decoder:
 *  - carrier 1 freq. registers (3 bytes)
 *  - carrier 2 freq. registers (3 bytes)
 *  - demudulator config register
 *  - FM de-emphasis register (slow identification mode)
 * Note: frequency registers must be written in single i2c transfer.
 */
static struct tda9874a_MODES {
	char *name;
	audiocmd cmd;
} tda9874a_modelist[9] = {
853
  {	"A2, B/G", /* default */
L
Linus Torvalds 已提交
854 855 856 857 858 859 860 861 862 863 864 865 866
	{ 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
  {	"A2, M (Korea)",
	{ 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
  {	"A2, D/K (1)",
	{ 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
  {	"A2, D/K (2)",
	{ 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
  {	"A2, D/K (3)",
	{ 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
  {	"NICAM, I",
	{ 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
  {	"NICAM, B/G",
	{ 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
867
  {	"NICAM, D/K",
L
Linus Torvalds 已提交
868 869 870 871 872 873 874
	{ 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
  {	"NICAM, L",
	{ 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
};

static int tda9874a_setup(struct CHIPSTATE *chip)
{
875 876
	struct v4l2_subdev *sd = &chip->sd;

L
Linus Torvalds 已提交
877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
	chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
	chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
	chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
	if(tda9874a_dic == 0x11) {
		chip_write(chip, TDA9874A_FMMR, 0x80);
	} else { /* dic == 0x07 */
		chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
		chip_write(chip, TDA9874A_FMMR, 0x00);
	}
	chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
	chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
	chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
	chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
	/* Note: If signal quality is poor you may want to change NICAM */
	/* error limit registers (NLELR and NUELR) to some greater values. */
	/* Then the sound would remain stereo, but won't be so clear. */
	chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
	chip_write(chip, TDA9874A_NUELR, 0x50); /* default */

	if(tda9874a_dic == 0x11) {
		chip_write(chip, TDA9874A_AMCONR, 0xf9);
		chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
		chip_write(chip, TDA9874A_AOSR, 0x80);
		chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
		chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
	} else { /* dic == 0x07 */
		chip_write(chip, TDA9874A_AMCONR, 0xfb);
		chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
905
		chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
L
Linus Torvalds 已提交
906
	}
907
	v4l2_dbg(1, debug, sd, "tda9874a_setup(): %s [0x%02X].\n",
L
Linus Torvalds 已提交
908 909 910 911
		tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
	return 1;
}

912
static int tda9874a_getrxsubchans(struct CHIPSTATE *chip)
L
Linus Torvalds 已提交
913
{
914
	struct v4l2_subdev *sd = &chip->sd;
L
Linus Torvalds 已提交
915 916 917
	int dsr,nsr,mode;
	int necr; /* just for debugging */

918
	mode = V4L2_TUNER_SUB_MONO;
L
Linus Torvalds 已提交
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936

	if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
		return mode;
	if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
		return mode;
	if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
		return mode;

	/* need to store dsr/nsr somewhere */
	chip->shadow.bytes[MAXREGS-2] = dsr;
	chip->shadow.bytes[MAXREGS-1] = nsr;

	if(tda9874a_mode) {
		/* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
		 * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
		 * that sound has (temporarily) switched from NICAM to
		 * mono FM (or AM) on 1st sound carrier due to high NICAM bit
		 * error count. So in fact there is no stereo in this case :-(
937
		 * But changing the mode to V4L2_TUNER_MODE_MONO would switch
L
Linus Torvalds 已提交
938 939 940
		 * external 4052 multiplexer in audio_hook().
		 */
		if(nsr & 0x02) /* NSR.S/MB=1 */
941
			mode = V4L2_TUNER_SUB_STEREO;
L
Linus Torvalds 已提交
942
		if(nsr & 0x01) /* NSR.D/SB=1 */
943
			mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
L
Linus Torvalds 已提交
944 945
	} else {
		if(dsr & 0x02) /* DSR.IDSTE=1 */
946
			mode = V4L2_TUNER_SUB_STEREO;
L
Linus Torvalds 已提交
947
		if(dsr & 0x04) /* DSR.IDDUA=1 */
948
			mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
L
Linus Torvalds 已提交
949 950
	}

951 952
	v4l2_dbg(1, debug, sd,
		 "tda9874a_getrxsubchans(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.\n",
L
Linus Torvalds 已提交
953 954 955 956
		 dsr, nsr, necr, mode);
	return mode;
}

957
static void tda9874a_setaudmode(struct CHIPSTATE *chip, int mode)
L
Linus Torvalds 已提交
958
{
959 960
	struct v4l2_subdev *sd = &chip->sd;

L
Linus Torvalds 已提交
961 962
	/* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
	/* If auto-muting is disabled, we can hear a signal of degrading quality. */
963
	if (tda9874a_mode) {
L
Linus Torvalds 已提交
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
		if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
			tda9874a_NCONR &= 0xfe; /* enable */
		else
			tda9874a_NCONR |= 0x01; /* disable */
		chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
	}

	/* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
	 * and has auto-select function for audio output (AOSR register).
	 * Old TDA9874H doesn't support these features.
	 * TDA9874A also has additional mono output pin (OUTM), which
	 * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
	 */
	if(tda9874a_dic == 0x11) {
		int aosr = 0x80;
		int mdacosr = (tda9874a_mode) ? 0x82:0x80;

		switch(mode) {
982 983
		case V4L2_TUNER_MODE_MONO:
		case V4L2_TUNER_MODE_STEREO:
L
Linus Torvalds 已提交
984
			break;
985
		case V4L2_TUNER_MODE_LANG1:
L
Linus Torvalds 已提交
986 987 988
			aosr = 0x80; /* auto-select, dual A/A */
			mdacosr = (tda9874a_mode) ? 0x82:0x80;
			break;
989
		case V4L2_TUNER_MODE_LANG2:
L
Linus Torvalds 已提交
990 991 992
			aosr = 0xa0; /* auto-select, dual B/B */
			mdacosr = (tda9874a_mode) ? 0x83:0x81;
			break;
993 994 995 996
		case V4L2_TUNER_MODE_LANG1_LANG2:
			aosr = 0x00; /* always route L to L and R to R */
			mdacosr = (tda9874a_mode) ? 0x82:0x80;
			break;
L
Linus Torvalds 已提交
997 998 999 1000 1001 1002
		default:
			return;
		}
		chip_write(chip, TDA9874A_AOSR, aosr);
		chip_write(chip, TDA9874A_MDACOSR, mdacosr);

1003 1004
		v4l2_dbg(1, debug, sd,
			"tda9874a_setaudmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.\n",
L
Linus Torvalds 已提交
1005 1006 1007 1008 1009 1010
			mode, aosr, mdacosr);

	} else { /* dic == 0x07 */
		int fmmr,aosr;

		switch(mode) {
1011
		case V4L2_TUNER_MODE_MONO:
L
Linus Torvalds 已提交
1012 1013 1014
			fmmr = 0x00; /* mono */
			aosr = 0x10; /* A/A */
			break;
1015
		case V4L2_TUNER_MODE_STEREO:
L
Linus Torvalds 已提交
1016 1017 1018 1019 1020 1021 1022 1023
			if(tda9874a_mode) {
				fmmr = 0x00;
				aosr = 0x00; /* handled by NICAM auto-mute */
			} else {
				fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
				aosr = 0x00;
			}
			break;
1024
		case V4L2_TUNER_MODE_LANG1:
L
Linus Torvalds 已提交
1025 1026 1027
			fmmr = 0x02; /* dual */
			aosr = 0x10; /* dual A/A */
			break;
1028
		case V4L2_TUNER_MODE_LANG2:
L
Linus Torvalds 已提交
1029 1030 1031
			fmmr = 0x02; /* dual */
			aosr = 0x20; /* dual B/B */
			break;
1032 1033 1034 1035
		case V4L2_TUNER_MODE_LANG1_LANG2:
			fmmr = 0x02; /* dual */
			aosr = 0x00; /* dual A/B */
			break;
L
Linus Torvalds 已提交
1036 1037 1038 1039 1040 1041
		default:
			return;
		}
		chip_write(chip, TDA9874A_FMMR, fmmr);
		chip_write(chip, TDA9874A_AOSR, aosr);

1042 1043
		v4l2_dbg(1, debug, sd,
			"tda9874a_setaudmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.\n",
L
Linus Torvalds 已提交
1044 1045 1046 1047 1048 1049
			mode, fmmr, aosr);
	}
}

static int tda9874a_checkit(struct CHIPSTATE *chip)
{
1050
	struct v4l2_subdev *sd = &chip->sd;
L
Linus Torvalds 已提交
1051 1052 1053 1054 1055 1056 1057
	int dic,sic;	/* device id. and software id. codes */

	if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
		return 0;
	if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
		return 0;

1058
	v4l2_dbg(1, debug, sd, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
L
Linus Torvalds 已提交
1059 1060

	if((dic == 0x11)||(dic == 0x07)) {
1061
		v4l2_info(sd, "found tda9874%s.\n", (dic == 0x11) ? "a" : "h");
L
Linus Torvalds 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
		tda9874a_dic = dic;	/* remember device id. */
		return 1;
	}
	return 0;	/* not found */
}

static int tda9874a_initialize(struct CHIPSTATE *chip)
{
	if (tda9874a_SIF > 2)
		tda9874a_SIF = 1;
1072
	if (tda9874a_STD >= ARRAY_SIZE(tda9874a_modelist))
L
Linus Torvalds 已提交
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
		tda9874a_STD = 0;
	if(tda9874a_AMSEL > 1)
		tda9874a_AMSEL = 0;

	if(tda9874a_SIF == 1)
		tda9874a_GCONR = 0xc0;	/* sound IF input 1 */
	else
		tda9874a_GCONR = 0xc1;	/* sound IF input 2 */

	tda9874a_ESP = tda9874a_STD;
	tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;

	if(tda9874a_AMSEL == 0)
		tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
	else
		tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */

	tda9874a_setup(chip);
	return 0;
}

1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
/* ---------------------------------------------------------------------- */
/* audio chip description - defines+functions for tda9875                 */
/* The TDA9875 is made by Philips Semiconductor
 * http://www.semiconductors.philips.com
 * TDA9875: I2C-bus controlled DSP audio processor, FM demodulator
 *
 */

/* subaddresses for TDA9875 */
#define TDA9875_MUT         0x12  /*General mute  (value --> 0b11001100*/
#define TDA9875_CFG         0x01  /* Config register (value --> 0b00000000 */
#define TDA9875_DACOS       0x13  /*DAC i/o select (ADC) 0b0000100*/
#define TDA9875_LOSR        0x16  /*Line output select regirter 0b0100 0001*/

#define TDA9875_CH1V        0x0c  /*Channel 1 volume (mute)*/
#define TDA9875_CH2V        0x0d  /*Channel 2 volume (mute)*/
#define TDA9875_SC1         0x14  /*SCART 1 in (mono)*/
#define TDA9875_SC2         0x15  /*SCART 2 in (mono)*/

#define TDA9875_ADCIS       0x17  /*ADC input select (mono) 0b0110 000*/
#define TDA9875_AER         0x19  /*Audio effect (AVL+Pseudo) 0b0000 0110*/
#define TDA9875_MCS         0x18  /*Main channel select (DAC) 0b0000100*/
#define TDA9875_MVL         0x1a  /* Main volume gauche */
#define TDA9875_MVR         0x1b  /* Main volume droite */
#define TDA9875_MBA         0x1d  /* Main Basse */
#define TDA9875_MTR         0x1e  /* Main treble */
L
Lucas De Marchi 已提交
1120 1121 1122 1123 1124
#define TDA9875_ACS         0x1f  /* Auxiliary channel select (FM) 0b0000000*/
#define TDA9875_AVL         0x20  /* Auxiliary volume gauche */
#define TDA9875_AVR         0x21  /* Auxiliary volume droite */
#define TDA9875_ABA         0x22  /* Auxiliary Basse */
#define TDA9875_ATR         0x23  /* Auxiliary treble */
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203

#define TDA9875_MSR         0x02  /* Monitor select register */
#define TDA9875_C1MSB       0x03  /* Carrier 1 (FM) frequency register MSB */
#define TDA9875_C1MIB       0x04  /* Carrier 1 (FM) frequency register (16-8]b */
#define TDA9875_C1LSB       0x05  /* Carrier 1 (FM) frequency register LSB */
#define TDA9875_C2MSB       0x06  /* Carrier 2 (nicam) frequency register MSB */
#define TDA9875_C2MIB       0x07  /* Carrier 2 (nicam) frequency register (16-8]b */
#define TDA9875_C2LSB       0x08  /* Carrier 2 (nicam) frequency register LSB */
#define TDA9875_DCR         0x09  /* Demodulateur configuration regirter*/
#define TDA9875_DEEM        0x0a  /* FM de-emphasis regirter*/
#define TDA9875_FMAT        0x0b  /* FM Matrix regirter*/

/* values */
#define TDA9875_MUTE_ON	    0xff /* general mute */
#define TDA9875_MUTE_OFF    0xcc /* general no mute */

static int tda9875_initialize(struct CHIPSTATE *chip)
{
	chip_write(chip, TDA9875_CFG, 0xd0); /*reg de config 0 (reset)*/
	chip_write(chip, TDA9875_MSR, 0x03);    /* Monitor 0b00000XXX*/
	chip_write(chip, TDA9875_C1MSB, 0x00);  /*Car1(FM) MSB XMHz*/
	chip_write(chip, TDA9875_C1MIB, 0x00);  /*Car1(FM) MIB XMHz*/
	chip_write(chip, TDA9875_C1LSB, 0x00);  /*Car1(FM) LSB XMHz*/
	chip_write(chip, TDA9875_C2MSB, 0x00);  /*Car2(NICAM) MSB XMHz*/
	chip_write(chip, TDA9875_C2MIB, 0x00);  /*Car2(NICAM) MIB XMHz*/
	chip_write(chip, TDA9875_C2LSB, 0x00);  /*Car2(NICAM) LSB XMHz*/
	chip_write(chip, TDA9875_DCR, 0x00);    /*Demod config 0x00*/
	chip_write(chip, TDA9875_DEEM, 0x44);   /*DE-Emph 0b0100 0100*/
	chip_write(chip, TDA9875_FMAT, 0x00);   /*FM Matrix reg 0x00*/
	chip_write(chip, TDA9875_SC1, 0x00);    /* SCART 1 (SC1)*/
	chip_write(chip, TDA9875_SC2, 0x01);    /* SCART 2 (sc2)*/

	chip_write(chip, TDA9875_CH1V, 0x10);  /* Channel volume 1 mute*/
	chip_write(chip, TDA9875_CH2V, 0x10);  /* Channel volume 2 mute */
	chip_write(chip, TDA9875_DACOS, 0x02); /* sig DAC i/o(in:nicam)*/
	chip_write(chip, TDA9875_ADCIS, 0x6f); /* sig ADC input(in:mono)*/
	chip_write(chip, TDA9875_LOSR, 0x00);  /* line out (in:mono)*/
	chip_write(chip, TDA9875_AER, 0x00);   /*06 Effect (AVL+PSEUDO) */
	chip_write(chip, TDA9875_MCS, 0x44);   /* Main ch select (DAC) */
	chip_write(chip, TDA9875_MVL, 0x03);   /* Vol Main left 10dB */
	chip_write(chip, TDA9875_MVR, 0x03);   /* Vol Main right 10dB*/
	chip_write(chip, TDA9875_MBA, 0x00);   /* Main Bass Main 0dB*/
	chip_write(chip, TDA9875_MTR, 0x00);   /* Main Treble Main 0dB*/
	chip_write(chip, TDA9875_ACS, 0x44);   /* Aux chan select (dac)*/
	chip_write(chip, TDA9875_AVL, 0x00);   /* Vol Aux left 0dB*/
	chip_write(chip, TDA9875_AVR, 0x00);   /* Vol Aux right 0dB*/
	chip_write(chip, TDA9875_ABA, 0x00);   /* Aux Bass Main 0dB*/
	chip_write(chip, TDA9875_ATR, 0x00);   /* Aux Aigus Main 0dB*/

	chip_write(chip, TDA9875_MUT, 0xcc);   /* General mute  */
	return 0;
}

static int tda9875_volume(int val) { return (unsigned char)(val / 602 - 84); }
static int tda9875_bass(int val) { return (unsigned char)(max(-12, val / 2115 - 15)); }
static int tda9875_treble(int val) { return (unsigned char)(val / 2622 - 12); }

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


/* *********************** *
 * i2c interface functions *
 * *********************** */

static int tda9875_checkit(struct CHIPSTATE *chip)
{
	struct v4l2_subdev *sd = &chip->sd;
	int dic, rev;

	dic = chip_read2(chip, 254);
	rev = chip_read2(chip, 255);

	if (dic == 0 || dic == 2) { /* tda9875 and tda9875A */
		v4l2_info(sd, "found tda9875%s rev. %d.\n",
			dic == 0 ? "" : "A", rev);
		return 1;
	}
	return 0;
}
L
Linus Torvalds 已提交
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213

/* ---------------------------------------------------------------------- */
/* audio chip descriptions - defines+functions for tea6420                */

#define TEA6300_VL         0x00  /* volume left */
#define TEA6300_VR         0x01  /* volume right */
#define TEA6300_BA         0x02  /* bass */
#define TEA6300_TR         0x03  /* treble */
#define TEA6300_FA         0x04  /* fader control */
#define TEA6300_S          0x05  /* switch register */
1214
				 /* values for those registers: */
L
Linus Torvalds 已提交
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
#define TEA6300_S_SA       0x01  /* stereo A input */
#define TEA6300_S_SB       0x02  /* stereo B */
#define TEA6300_S_SC       0x04  /* stereo C */
#define TEA6300_S_GMU      0x80  /* general mute */

#define TEA6320_V          0x00  /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
#define TEA6320_FFR        0x01  /* fader front right (0-5) */
#define TEA6320_FFL        0x02  /* fader front left (0-5) */
#define TEA6320_FRR        0x03  /* fader rear right (0-5) */
#define TEA6320_FRL        0x04  /* fader rear left (0-5) */
#define TEA6320_BA         0x05  /* bass (0-4) */
#define TEA6320_TR         0x06  /* treble (0-4) */
#define TEA6320_S          0x07  /* switch register */
1228
				 /* values for those registers: */
L
Linus Torvalds 已提交
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
#define TEA6320_S_SA       0x07  /* stereo A input */
#define TEA6320_S_SB       0x06  /* stereo B */
#define TEA6320_S_SC       0x05  /* stereo C */
#define TEA6320_S_SD       0x04  /* stereo D */
#define TEA6320_S_GMU      0x80  /* general mute */

#define TEA6420_S_SA       0x00  /* stereo A input */
#define TEA6420_S_SB       0x01  /* stereo B */
#define TEA6420_S_SC       0x02  /* stereo C */
#define TEA6420_S_SD       0x03  /* stereo D */
#define TEA6420_S_SE       0x04  /* stereo E */
#define TEA6420_S_GMU      0x05  /* general mute */

static int tea6300_shift10(int val) { return val >> 10; }
static int tea6300_shift12(int val) { return val >> 12; }

/* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
/* 0x0c mirror those immediately higher) */
static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
static int tea6320_shift11(int val) { return val >> 11; }
static int tea6320_initialize(struct CHIPSTATE * chip)
{
	chip_write(chip, TEA6320_FFR, 0x3f);
	chip_write(chip, TEA6320_FFL, 0x3f);
	chip_write(chip, TEA6320_FRR, 0x3f);
	chip_write(chip, TEA6320_FRL, 0x3f);

	return 0;
}


/* ---------------------------------------------------------------------- */
/* audio chip descriptions - defines+functions for tda8425                */

#define TDA8425_VL         0x00  /* volume left */
#define TDA8425_VR         0x01  /* volume right */
#define TDA8425_BA         0x02  /* bass */
#define TDA8425_TR         0x03  /* treble */
#define TDA8425_S1         0x08  /* switch functions */
1268
				 /* values for those registers: */
L
Linus Torvalds 已提交
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287
#define TDA8425_S1_OFF     0xEE  /* audio off (mute on) */
#define TDA8425_S1_CH1     0xCE  /* audio channel 1 (mute off) - "linear stereo" mode */
#define TDA8425_S1_CH2     0xCF  /* audio channel 2 (mute off) - "linear stereo" mode */
#define TDA8425_S1_MU      0x20  /* mute bit */
#define TDA8425_S1_STEREO  0x18  /* stereo bits */
#define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
#define TDA8425_S1_STEREO_LINEAR  0x08 /* linear stereo */
#define TDA8425_S1_STEREO_PSEUDO  0x10 /* pseudo stereo */
#define TDA8425_S1_STEREO_MONO    0x00 /* forced mono */
#define TDA8425_S1_ML      0x06        /* language selector */
#define TDA8425_S1_ML_SOUND_A 0x02     /* sound a */
#define TDA8425_S1_ML_SOUND_B 0x04     /* sound b */
#define TDA8425_S1_ML_STEREO  0x06     /* stereo */
#define TDA8425_S1_IS      0x01        /* channel selector */


static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }

1288
static void tda8425_setaudmode(struct CHIPSTATE *chip, int mode)
L
Linus Torvalds 已提交
1289 1290 1291
{
	int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;

1292 1293
	switch (mode) {
	case V4L2_TUNER_MODE_LANG1:
L
Linus Torvalds 已提交
1294 1295
		s1 |= TDA8425_S1_ML_SOUND_A;
		s1 |= TDA8425_S1_STEREO_PSEUDO;
1296 1297
		break;
	case V4L2_TUNER_MODE_LANG2:
L
Linus Torvalds 已提交
1298 1299
		s1 |= TDA8425_S1_ML_SOUND_B;
		s1 |= TDA8425_S1_STEREO_PSEUDO;
1300
		break;
1301 1302 1303 1304
	case V4L2_TUNER_MODE_LANG1_LANG2:
		s1 |= TDA8425_S1_ML_STEREO;
		s1 |= TDA8425_S1_STEREO_LINEAR;
		break;
1305
	case V4L2_TUNER_MODE_MONO:
L
Linus Torvalds 已提交
1306
		s1 |= TDA8425_S1_ML_STEREO;
1307 1308 1309 1310 1311 1312 1313 1314
		s1 |= TDA8425_S1_STEREO_MONO;
		break;
	case V4L2_TUNER_MODE_STEREO:
		s1 |= TDA8425_S1_ML_STEREO;
		s1 |= TDA8425_S1_STEREO_SPATIAL;
		break;
	default:
		return;
L
Linus Torvalds 已提交
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
	}
	chip_write(chip,TDA8425_S1,s1);
}


/* ---------------------------------------------------------------------- */
/* audio chip descriptions - defines+functions for pic16c54 (PV951)       */

/* the registers of 16C54, I2C sub address. */
#define PIC16C54_REG_KEY_CODE     0x01	       /* Not use. */
#define PIC16C54_REG_MISC         0x02

/* bit definition of the RESET register, I2C data. */
#define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
1329
					    /*        code of remote controller */
L
Linus Torvalds 已提交
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
#define PIC16C54_MISC_MTS_MAIN         0x02 /* bit 1 */
#define PIC16C54_MISC_MTS_SAP          0x04 /* bit 2 */
#define PIC16C54_MISC_MTS_BOTH         0x08 /* bit 3 */
#define PIC16C54_MISC_SND_MUTE         0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
#define PIC16C54_MISC_SND_NOTMUTE      0x20 /* bit 5 */
#define PIC16C54_MISC_SWITCH_TUNER     0x40 /* bit 6	, Switch to Line-in */
#define PIC16C54_MISC_SWITCH_LINE      0x80 /* bit 7	, Switch to Tuner */

/* ---------------------------------------------------------------------- */
/* audio chip descriptions - defines+functions for TA8874Z                */

1341
/* write 1st byte */
L
Linus Torvalds 已提交
1342 1343 1344 1345 1346 1347 1348 1349 1350
#define TA8874Z_LED_STE	0x80
#define TA8874Z_LED_BIL	0x40
#define TA8874Z_LED_EXT	0x20
#define TA8874Z_MONO_SET	0x10
#define TA8874Z_MUTE	0x08
#define TA8874Z_F_MONO	0x04
#define TA8874Z_MODE_SUB	0x02
#define TA8874Z_MODE_MAIN	0x01

1351 1352
/* write 2nd byte */
/*#define TA8874Z_TI	0x80  */ /* test mode */
L
Linus Torvalds 已提交
1353 1354 1355
#define TA8874Z_SEPARATION	0x3f
#define TA8874Z_SEPARATION_DEFAULT	0x10

1356
/* read */
L
Linus Torvalds 已提交
1357 1358 1359 1360
#define TA8874Z_B1	0x80
#define TA8874Z_B0	0x40
#define TA8874Z_CHAG_FLAG	0x20

1361 1362 1363 1364 1365 1366
/*
 *        B1 B0
 * mono    L  H
 * stereo  L  L
 * BIL     H  L
 */
1367
static int ta8874z_getrxsubchans(struct CHIPSTATE *chip)
L
Linus Torvalds 已提交
1368 1369 1370 1371
{
	int val, mode;

	val = chip_read(chip);
1372
	mode = V4L2_TUNER_SUB_MONO;
L
Linus Torvalds 已提交
1373
	if (val & TA8874Z_B1){
1374
		mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
L
Linus Torvalds 已提交
1375
	}else if (!(val & TA8874Z_B0)){
1376
		mode = V4L2_TUNER_SUB_STEREO;
L
Linus Torvalds 已提交
1377
	}
1378 1379 1380
	/* v4l2_dbg(1, debug, &chip->sd,
		 "ta8874z_getrxsubchans(): raw chip read: 0x%02x, return: 0x%02x\n",
		 val, mode); */
L
Linus Torvalds 已提交
1381 1382 1383 1384 1385 1386 1387
	return mode;
}

static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
1388
static audiocmd ta8874z_both = {2, { TA8874Z_MODE_MAIN | TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
L
Linus Torvalds 已提交
1389

1390
static void ta8874z_setaudmode(struct CHIPSTATE *chip, int mode)
L
Linus Torvalds 已提交
1391
{
1392
	struct v4l2_subdev *sd = &chip->sd;
L
Linus Torvalds 已提交
1393 1394
	int update = 1;
	audiocmd *t = NULL;
1395

1396
	v4l2_dbg(1, debug, sd, "ta8874z_setaudmode(): mode: 0x%02x\n", mode);
L
Linus Torvalds 已提交
1397 1398

	switch(mode){
1399
	case V4L2_TUNER_MODE_MONO:
L
Linus Torvalds 已提交
1400 1401
		t = &ta8874z_mono;
		break;
1402
	case V4L2_TUNER_MODE_STEREO:
L
Linus Torvalds 已提交
1403 1404
		t = &ta8874z_stereo;
		break;
1405
	case V4L2_TUNER_MODE_LANG1:
L
Linus Torvalds 已提交
1406 1407
		t = &ta8874z_main;
		break;
1408
	case V4L2_TUNER_MODE_LANG2:
L
Linus Torvalds 已提交
1409 1410
		t = &ta8874z_sub;
		break;
1411 1412 1413
	case V4L2_TUNER_MODE_LANG1_LANG2:
		t = &ta8874z_both;
		break;
L
Linus Torvalds 已提交
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432
	default:
		update = 0;
	}

	if(update)
		chip_cmd(chip, "TA8874Z", t);
}

static int ta8874z_checkit(struct CHIPSTATE *chip)
{
	int rc;
	rc = chip_read(chip);
	return ((rc & 0x1f) == 0x1f) ? 1 : 0;
}

/* ---------------------------------------------------------------------- */
/* audio chip descriptions - struct CHIPDESC                              */

/* insmod options to enable/disable individual audio chips */
A
Adrian Bunk 已提交
1433 1434 1435 1436 1437 1438
static int tda8425  = 1;
static int tda9840  = 1;
static int tda9850  = 1;
static int tda9855  = 1;
static int tda9873  = 1;
static int tda9874a = 1;
1439
static int tda9875  = 1;
1440 1441
static int tea6300;	/* default 0 - address clash with msp34xx */
static int tea6320;	/* default 0 - address clash with msp34xx */
A
Adrian Bunk 已提交
1442 1443
static int tea6420  = 1;
static int pic16c54 = 1;
1444
static int ta8874z;	/* default 0 - address clash with tda9840 */
L
Linus Torvalds 已提交
1445 1446 1447 1448 1449 1450 1451

module_param(tda8425, int, 0444);
module_param(tda9840, int, 0444);
module_param(tda9850, int, 0444);
module_param(tda9855, int, 0444);
module_param(tda9873, int, 0444);
module_param(tda9874a, int, 0444);
1452
module_param(tda9875, int, 0444);
L
Linus Torvalds 已提交
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
module_param(tea6300, int, 0444);
module_param(tea6320, int, 0444);
module_param(tea6420, int, 0444);
module_param(pic16c54, int, 0444);
module_param(ta8874z, int, 0444);

static struct CHIPDESC chiplist[] = {
	{
		.name       = "tda9840",
		.insmodopt  = &tda9840,
1463 1464
		.addr_lo    = I2C_ADDR_TDA9840 >> 1,
		.addr_hi    = I2C_ADDR_TDA9840 >> 1,
L
Linus Torvalds 已提交
1465
		.registers  = 5,
1466
		.flags      = CHIP_NEED_CHECKMODE,
L
Linus Torvalds 已提交
1467

1468
		/* callbacks */
1469
		.checkit    = tda9840_checkit,
1470 1471
		.getrxsubchans = tda9840_getrxsubchans,
		.setaudmode = tda9840_setaudmode,
L
Linus Torvalds 已提交
1472

1473
		.init       = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
L
Linus Torvalds 已提交
1474 1475 1476 1477 1478
				/* ,TDA9840_SW, TDA9840_MONO */} }
	},
	{
		.name       = "tda9873h",
		.insmodopt  = &tda9873,
1479 1480
		.addr_lo    = I2C_ADDR_TDA985x_L >> 1,
		.addr_hi    = I2C_ADDR_TDA985x_H >> 1,
L
Linus Torvalds 已提交
1481
		.registers  = 3,
1482
		.flags      = CHIP_HAS_INPUTSEL | CHIP_NEED_CHECKMODE,
L
Linus Torvalds 已提交
1483

1484 1485
		/* callbacks */
		.checkit    = tda9873_checkit,
1486 1487
		.getrxsubchans = tda9873_getrxsubchans,
		.setaudmode = tda9873_setaudmode,
L
Linus Torvalds 已提交
1488 1489 1490 1491

		.init       = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
		.inputreg   = TDA9873_SW,
		.inputmute  = TDA9873_MUTE | TDA9873_AUTOMUTE,
1492
		.inputmap   = {0xa0, 0xa2, 0xa0, 0xa0},
L
Linus Torvalds 已提交
1493 1494 1495 1496 1497 1498
		.inputmask  = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,

	},
	{
		.name       = "tda9874h/a",
		.insmodopt  = &tda9874a,
1499 1500
		.addr_lo    = I2C_ADDR_TDA9874 >> 1,
		.addr_hi    = I2C_ADDR_TDA9874 >> 1,
1501
		.flags      = CHIP_NEED_CHECKMODE,
L
Linus Torvalds 已提交
1502

1503 1504 1505
		/* callbacks */
		.initialize = tda9874a_initialize,
		.checkit    = tda9874a_checkit,
1506 1507
		.getrxsubchans = tda9874a_getrxsubchans,
		.setaudmode = tda9874a_setaudmode,
L
Linus Torvalds 已提交
1508
	},
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
	{
		.name       = "tda9875",
		.insmodopt  = &tda9875,
		.addr_lo    = I2C_ADDR_TDA9875 >> 1,
		.addr_hi    = I2C_ADDR_TDA9875 >> 1,
		.flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,

		/* callbacks */
		.initialize = tda9875_initialize,
		.checkit    = tda9875_checkit,
		.volfunc    = tda9875_volume,
		.bassfunc   = tda9875_bass,
		.treblefunc = tda9875_treble,
		.leftreg    = TDA9875_MVL,
		.rightreg   = TDA9875_MVR,
		.bassreg    = TDA9875_MBA,
		.treblereg  = TDA9875_MTR,
1526
		.volinit    = 58880,
1527
	},
L
Linus Torvalds 已提交
1528 1529 1530
	{
		.name       = "tda9850",
		.insmodopt  = &tda9850,
1531 1532
		.addr_lo    = I2C_ADDR_TDA985x_L >> 1,
		.addr_hi    = I2C_ADDR_TDA985x_H >> 1,
L
Linus Torvalds 已提交
1533 1534
		.registers  = 11,

1535 1536
		.getrxsubchans = tda985x_getrxsubchans,
		.setaudmode = tda985x_setaudmode,
L
Linus Torvalds 已提交
1537 1538 1539 1540 1541 1542

		.init       = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
	},
	{
		.name       = "tda9855",
		.insmodopt  = &tda9855,
1543 1544
		.addr_lo    = I2C_ADDR_TDA985x_L >> 1,
		.addr_hi    = I2C_ADDR_TDA985x_H >> 1,
L
Linus Torvalds 已提交
1545 1546 1547 1548 1549 1550 1551
		.registers  = 11,
		.flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,

		.leftreg    = TDA9855_VL,
		.rightreg   = TDA9855_VR,
		.bassreg    = TDA9855_BA,
		.treblereg  = TDA9855_TR,
1552 1553

		/* callbacks */
L
Linus Torvalds 已提交
1554 1555 1556
		.volfunc    = tda9855_volume,
		.bassfunc   = tda9855_bass,
		.treblefunc = tda9855_treble,
1557 1558
		.getrxsubchans = tda985x_getrxsubchans,
		.setaudmode = tda985x_setaudmode,
L
Linus Torvalds 已提交
1559 1560 1561 1562 1563 1564 1565 1566 1567

		.init       = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
				    TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
				    TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
				    0x07, 0x10, 0x10, 0x03 }}
	},
	{
		.name       = "tea6300",
		.insmodopt  = &tea6300,
1568 1569
		.addr_lo    = I2C_ADDR_TEA6300 >> 1,
		.addr_hi    = I2C_ADDR_TEA6300 >> 1,
L
Linus Torvalds 已提交
1570 1571 1572 1573 1574 1575 1576
		.registers  = 6,
		.flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,

		.leftreg    = TEA6300_VR,
		.rightreg   = TEA6300_VL,
		.bassreg    = TEA6300_BA,
		.treblereg  = TEA6300_TR,
1577 1578

		/* callbacks */
L
Linus Torvalds 已提交
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589
		.volfunc    = tea6300_shift10,
		.bassfunc   = tea6300_shift12,
		.treblefunc = tea6300_shift12,

		.inputreg   = TEA6300_S,
		.inputmap   = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
		.inputmute  = TEA6300_S_GMU,
	},
	{
		.name       = "tea6320",
		.insmodopt  = &tea6320,
1590 1591
		.addr_lo    = I2C_ADDR_TEA6300 >> 1,
		.addr_hi    = I2C_ADDR_TEA6300 >> 1,
L
Linus Torvalds 已提交
1592 1593 1594 1595 1596 1597 1598
		.registers  = 8,
		.flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,

		.leftreg    = TEA6320_V,
		.rightreg   = TEA6320_V,
		.bassreg    = TEA6320_BA,
		.treblereg  = TEA6320_TR,
1599 1600 1601

		/* callbacks */
		.initialize = tea6320_initialize,
L
Linus Torvalds 已提交
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
		.volfunc    = tea6320_volume,
		.bassfunc   = tea6320_shift11,
		.treblefunc = tea6320_shift11,

		.inputreg   = TEA6320_S,
		.inputmap   = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
		.inputmute  = TEA6300_S_GMU,
	},
	{
		.name       = "tea6420",
		.insmodopt  = &tea6420,
1613 1614
		.addr_lo    = I2C_ADDR_TEA6420 >> 1,
		.addr_hi    = I2C_ADDR_TEA6420 >> 1,
L
Linus Torvalds 已提交
1615 1616 1617 1618 1619
		.registers  = 1,
		.flags      = CHIP_HAS_INPUTSEL,

		.inputreg   = -1,
		.inputmap   = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1620 1621
		.inputmute  = TEA6420_S_GMU,
		.inputmask  = 0x07,
L
Linus Torvalds 已提交
1622 1623 1624 1625
	},
	{
		.name       = "tda8425",
		.insmodopt  = &tda8425,
1626 1627
		.addr_lo    = I2C_ADDR_TDA8425 >> 1,
		.addr_hi    = I2C_ADDR_TDA8425 >> 1,
L
Linus Torvalds 已提交
1628 1629 1630 1631 1632 1633 1634
		.registers  = 9,
		.flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,

		.leftreg    = TDA8425_VL,
		.rightreg   = TDA8425_VR,
		.bassreg    = TDA8425_BA,
		.treblereg  = TDA8425_TR,
1635 1636

		/* callbacks */
L
Linus Torvalds 已提交
1637 1638 1639
		.volfunc    = tda8425_shift10,
		.bassfunc   = tda8425_shift12,
		.treblefunc = tda8425_shift12,
1640
		.setaudmode = tda8425_setaudmode,
L
Linus Torvalds 已提交
1641 1642 1643 1644 1645 1646 1647 1648 1649

		.inputreg   = TDA8425_S1,
		.inputmap   = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
		.inputmute  = TDA8425_S1_OFF,

	},
	{
		.name       = "pic16c54 (PV951)",
		.insmodopt  = &pic16c54,
1650 1651
		.addr_lo    = I2C_ADDR_PIC16C54 >> 1,
		.addr_hi    = I2C_ADDR_PIC16C54>> 1,
L
Linus Torvalds 已提交
1652 1653 1654 1655 1656 1657 1658
		.registers  = 2,
		.flags      = CHIP_HAS_INPUTSEL,

		.inputreg   = PIC16C54_REG_MISC,
		.inputmap   = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
			     PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
			     PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1659
			     PIC16C54_MISC_SND_MUTE},
L
Linus Torvalds 已提交
1660 1661 1662 1663 1664 1665
		.inputmute  = PIC16C54_MISC_SND_MUTE,
	},
	{
		.name       = "ta8874z",
		.checkit    = ta8874z_checkit,
		.insmodopt  = &ta8874z,
1666 1667
		.addr_lo    = I2C_ADDR_TDA9840 >> 1,
		.addr_hi    = I2C_ADDR_TDA9840 >> 1,
L
Linus Torvalds 已提交
1668 1669
		.registers  = 2,

1670
		/* callbacks */
1671 1672
		.getrxsubchans = ta8874z_getrxsubchans,
		.setaudmode = ta8874z_setaudmode,
L
Linus Torvalds 已提交
1673

1674
		.init       = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
L
Linus Torvalds 已提交
1675 1676 1677 1678 1679 1680 1681
	},
	{ .name = NULL } /* EOF */
};


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

1682
static int tvaudio_g_ctrl(struct v4l2_subdev *sd,
1683 1684
			    struct v4l2_control *ctrl)
{
1685
	struct CHIPSTATE *chip = to_state(sd);
1686
	struct CHIPDESC *desc = chip->desc;
1687 1688 1689

	switch (ctrl->id) {
	case V4L2_CID_AUDIO_MUTE:
1690 1691
		if (!(desc->flags & CHIP_HAS_INPUTSEL))
			break;
1692 1693 1694
		ctrl->value=chip->muted;
		return 0;
	case V4L2_CID_AUDIO_VOLUME:
R
Roel Kluin 已提交
1695
		if (!(desc->flags & CHIP_HAS_VOLUME))
1696
			break;
1697
		ctrl->value = chip->volume;
1698 1699
		return 0;
	case V4L2_CID_AUDIO_BALANCE:
R
Roel Kluin 已提交
1700
		if (!(desc->flags & CHIP_HAS_VOLUME))
1701
			break;
1702
		ctrl->value = chip->balance;
1703 1704
		return 0;
	case V4L2_CID_AUDIO_BASS:
1705
		if (!(desc->flags & CHIP_HAS_BASSTREBLE))
1706 1707 1708 1709
			break;
		ctrl->value = chip->bass;
		return 0;
	case V4L2_CID_AUDIO_TREBLE:
1710 1711
		if (!(desc->flags & CHIP_HAS_BASSTREBLE))
			break;
1712 1713 1714 1715 1716 1717
		ctrl->value = chip->treble;
		return 0;
	}
	return -EINVAL;
}

1718
static int tvaudio_s_ctrl(struct v4l2_subdev *sd,
1719
			    struct v4l2_control *ctrl)
1720
{
1721
	struct CHIPSTATE *chip = to_state(sd);
1722
	struct CHIPDESC *desc = chip->desc;
1723 1724 1725

	switch (ctrl->id) {
	case V4L2_CID_AUDIO_MUTE:
1726 1727 1728
		if (!(desc->flags & CHIP_HAS_INPUTSEL))
			break;

1729 1730 1731 1732 1733 1734 1735 1736
		if (ctrl->value < 0 || ctrl->value >= 2)
			return -ERANGE;
		chip->muted = ctrl->value;
		if (chip->muted)
			chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
		else
			chip_write_masked(chip,desc->inputreg,
					desc->inputmap[chip->input],desc->inputmask);
1737 1738 1739
		return 0;
	case V4L2_CID_AUDIO_VOLUME:
	{
1740 1741
		u32 volume, balance;
		u32 left, right;
1742

R
Roel Kluin 已提交
1743
		if (!(desc->flags & CHIP_HAS_VOLUME))
1744 1745
			break;

1746 1747 1748 1749 1750
		volume = ctrl->value;
		chip->volume = volume;
		balance = chip->balance;
		left = (min(65536U - balance, 32768U) * volume) / 32768U;
		right = (min(balance, 32768U) * volume) / 32768U;
1751

1752 1753
		chip_write(chip, desc->leftreg, desc->volfunc(left));
		chip_write(chip, desc->rightreg, desc->volfunc(right));
1754
		return 0;
1755
	}
1756 1757
	case V4L2_CID_AUDIO_BALANCE:
	{
1758 1759
		u32 volume, balance;
		u32 left, right;
1760

R
Roel Kluin 已提交
1761
		if (!(desc->flags & CHIP_HAS_VOLUME))
1762 1763 1764
			break;

		balance = ctrl->value;
1765 1766 1767 1768
		chip->balance = balance;
		volume = chip->volume;
		left = (min(65536U - balance, 32768U) * volume) / 32768U;
		right = (min(balance, 32768U) * volume) / 32768U;
1769

1770 1771
		chip_write(chip, desc->leftreg, desc->volfunc(left));
		chip_write(chip, desc->rightreg, desc->volfunc(right));
1772 1773 1774
		return 0;
	}
	case V4L2_CID_AUDIO_BASS:
1775
		if (!(desc->flags & CHIP_HAS_BASSTREBLE))
1776 1777 1778 1779 1780 1781
			break;
		chip->bass = ctrl->value;
		chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));

		return 0;
	case V4L2_CID_AUDIO_TREBLE:
1782 1783
		if (!(desc->flags & CHIP_HAS_BASSTREBLE))
			break;
1784 1785 1786 1787 1788 1789
		chip->treble = ctrl->value;
		chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));

		return 0;
	}
	return -EINVAL;
1790 1791 1792
}


L
Linus Torvalds 已提交
1793 1794 1795
/* ---------------------------------------------------------------------- */
/* video4linux interface                                                  */

1796
static int tvaudio_s_radio(struct v4l2_subdev *sd)
L
Linus Torvalds 已提交
1797
{
1798
	struct CHIPSTATE *chip = to_state(sd);
L
Linus Torvalds 已提交
1799

1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811
	chip->radio = 1;
	/* del_timer(&chip->wt); */
	return 0;
}

static int tvaudio_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc)
{
	struct CHIPSTATE *chip = to_state(sd);
	struct CHIPDESC *desc = chip->desc;

	switch (qc->id) {
	case V4L2_CID_AUDIO_MUTE:
1812 1813 1814
		if (desc->flags & CHIP_HAS_INPUTSEL)
			return v4l2_ctrl_query_fill(qc, 0, 1, 1, 0);
		break;
1815
	case V4L2_CID_AUDIO_VOLUME:
1816 1817 1818
		if (desc->flags & CHIP_HAS_VOLUME)
			return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 58880);
		break;
1819
	case V4L2_CID_AUDIO_BALANCE:
1820 1821
		if (desc->flags & CHIP_HAS_VOLUME)
			return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768);
1822 1823 1824
		break;
	case V4L2_CID_AUDIO_BASS:
	case V4L2_CID_AUDIO_TREBLE:
1825 1826
		if (desc->flags & CHIP_HAS_BASSTREBLE)
			return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768);
1827 1828
		break;
	default:
1829
		break;
1830
	}
1831
	return -EINVAL;
1832 1833
}

1834 1835
static int tvaudio_s_routing(struct v4l2_subdev *sd,
			     u32 input, u32 output, u32 config)
1836 1837 1838
{
	struct CHIPSTATE *chip = to_state(sd);
	struct CHIPDESC *desc = chip->desc;
L
Linus Torvalds 已提交
1839

1840 1841
	if (!(desc->flags & CHIP_HAS_INPUTSEL))
		return 0;
1842
	if (input >= 4)
1843 1844
		return -EINVAL;
	/* There are four inputs: tuner, radio, extern and intern. */
1845
	chip->input = input;
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857
	if (chip->muted)
		return 0;
	chip_write_masked(chip, desc->inputreg,
			desc->inputmap[chip->input], desc->inputmask);
	return 0;
}

static int tvaudio_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
{
	struct CHIPSTATE *chip = to_state(sd);
	struct CHIPDESC *desc = chip->desc;

1858
	if (!desc->setaudmode)
1859
		return 0;
1860 1861
	if (chip->radio)
		return 0;
1862

1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874
	switch (vt->audmode) {
	case V4L2_TUNER_MODE_MONO:
	case V4L2_TUNER_MODE_STEREO:
	case V4L2_TUNER_MODE_LANG1:
	case V4L2_TUNER_MODE_LANG2:
	case V4L2_TUNER_MODE_LANG1_LANG2:
		break;
	default:
		return -EINVAL;
	}
	chip->audmode = vt->audmode;

1875 1876 1877
	if (chip->thread)
		wake_up_process(chip->thread);
	else
1878
		desc->setaudmode(chip, vt->audmode);
1879

1880 1881
	return 0;
}
1882

1883 1884 1885 1886
static int tvaudio_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
{
	struct CHIPSTATE *chip = to_state(sd);
	struct CHIPDESC *desc = chip->desc;
1887

1888
	if (!desc->getrxsubchans)
1889
		return 0;
1890 1891
	if (chip->radio)
		return 0;
1892

1893
	vt->audmode = chip->audmode;
1894
	vt->rxsubchans = desc->getrxsubchans(chip);
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
	vt->capability = V4L2_TUNER_CAP_STEREO |
		V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;

	return 0;
}

static int tvaudio_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
{
	struct CHIPSTATE *chip = to_state(sd);

	chip->radio = 0;
	return 0;
}

static int tvaudio_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *freq)
{
	struct CHIPSTATE *chip = to_state(sd);
	struct CHIPDESC *desc = chip->desc;

1914
	/* For chips that provide getrxsubchans and setaudmode, and doesn't
1915 1916 1917 1918 1919 1920 1921 1922
	   automatically follows the stereo carrier, a kthread is
	   created to set the audio standard. In this case, when then
	   the video channel is changed, tvaudio starts on MONO mode.
	   After waiting for 2 seconds, the kernel thread is called,
	   to follow whatever audio standard is pointed by the
	   audio carrier.
	 */
	if (chip->thread) {
1923
		desc->setaudmode(chip, V4L2_TUNER_MODE_MONO);
1924
		chip->prevmode = -1; /* reset previous mode */
1925
		mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
1926
	}
1927 1928
	return 0;
}
1929

1930
static int tvaudio_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943
{
	struct i2c_client *client = v4l2_get_subdevdata(sd);

	return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_TVAUDIO, 0);
}

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

static const struct v4l2_subdev_core_ops tvaudio_core_ops = {
	.g_chip_ident = tvaudio_g_chip_ident,
	.queryctrl = tvaudio_queryctrl,
	.g_ctrl = tvaudio_g_ctrl,
	.s_ctrl = tvaudio_s_ctrl,
1944
	.s_std = tvaudio_s_std,
1945 1946 1947 1948 1949 1950
};

static const struct v4l2_subdev_tuner_ops tvaudio_tuner_ops = {
	.s_radio = tvaudio_s_radio,
	.s_frequency = tvaudio_s_frequency,
	.s_tuner = tvaudio_s_tuner,
1951
	.g_tuner = tvaudio_g_tuner,
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980
};

static const struct v4l2_subdev_audio_ops tvaudio_audio_ops = {
	.s_routing = tvaudio_s_routing,
};

static const struct v4l2_subdev_ops tvaudio_ops = {
	.core = &tvaudio_core_ops,
	.tuner = &tvaudio_tuner_ops,
	.audio = &tvaudio_audio_ops,
};

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


/* i2c registration                                                       */

static int tvaudio_probe(struct i2c_client *client, const struct i2c_device_id *id)
{
	struct CHIPSTATE *chip;
	struct CHIPDESC  *desc;
	struct v4l2_subdev *sd;

	if (debug) {
		printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
		printk(KERN_INFO "tvaudio: known chips: ");
		for (desc = chiplist; desc->name != NULL; desc++)
			printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
		printk("\n");
1981
	}
L
Linus Torvalds 已提交
1982

1983 1984 1985 1986 1987
	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
	if (!chip)
		return -ENOMEM;
	sd = &chip->sd;
	v4l2_i2c_subdev_init(sd, client, &tvaudio_ops);
1988

1989 1990 1991 1992 1993 1994 1995 1996 1997 1998
	/* find description for the chip */
	v4l2_dbg(1, debug, sd, "chip found @ 0x%x\n", client->addr<<1);
	for (desc = chiplist; desc->name != NULL; desc++) {
		if (0 == *(desc->insmodopt))
			continue;
		if (client->addr < desc->addr_lo ||
		    client->addr > desc->addr_hi)
			continue;
		if (desc->checkit && !desc->checkit(chip))
			continue;
L
Linus Torvalds 已提交
1999 2000
		break;
	}
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012
	if (desc->name == NULL) {
		v4l2_dbg(1, debug, sd, "no matching chip description found\n");
		kfree(chip);
		return -EIO;
	}
	v4l2_info(sd, "%s found @ 0x%x (%s)\n", desc->name, client->addr<<1, client->adapter->name);
	if (desc->flags) {
		v4l2_dbg(1, debug, sd, "matches:%s%s%s.\n",
			(desc->flags & CHIP_HAS_VOLUME)     ? " volume"      : "",
			(desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
			(desc->flags & CHIP_HAS_INPUTSEL)   ? " audiomux"    : "");
	}
2013

2014 2015 2016 2017 2018 2019 2020
	/* fill required data structures */
	if (!id)
		strlcpy(client->name, desc->name, I2C_NAME_SIZE);
	chip->desc = desc;
	chip->shadow.count = desc->registers+1;
	chip->prevmode = -1;
	chip->audmode = V4L2_TUNER_MODE_LANG1;
2021

2022 2023 2024 2025 2026
	/* initialization  */
	if (desc->initialize != NULL)
		desc->initialize(chip);
	else
		chip_cmd(chip, "init", &desc->init);
2027

2028 2029 2030 2031 2032 2033 2034 2035
	if (desc->flags & CHIP_HAS_VOLUME) {
		if (!desc->volfunc) {
			/* This shouldn't be happen. Warn user, but keep working
			   without volume controls
			 */
			v4l2_info(sd, "volume callback undefined!\n");
			desc->flags &= ~CHIP_HAS_VOLUME;
		} else {
2036 2037
			chip->volume = desc->volinit ? desc->volinit : 65535;
			chip->balance = 32768;
2038
			chip_write(chip, desc->leftreg,
2039
				   desc->volfunc(chip->volume));
2040
			chip_write(chip, desc->rightreg,
2041
				   desc->volfunc(chip->volume));
2042
		}
2043
	}
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059
	if (desc->flags & CHIP_HAS_BASSTREBLE) {
		if (!desc->bassfunc || !desc->treblefunc) {
			/* This shouldn't be happen. Warn user, but keep working
			   without bass/treble controls
			 */
			v4l2_info(sd, "bass/treble callbacks undefined!\n");
			desc->flags &= ~CHIP_HAS_BASSTREBLE;
		} else {
			chip->treble = desc->trebleinit ?
						desc->trebleinit : 32768;
			chip->bass   = desc->bassinit   ?
						desc->bassinit   : 32768;
			chip_write(chip, desc->bassreg,
				   desc->bassfunc(chip->bass));
			chip_write(chip, desc->treblereg,
				   desc->treblefunc(chip->treble));
L
Linus Torvalds 已提交
2060
		}
2061
	}
2062

2063
	chip->thread = NULL;
2064
	init_timer(&chip->wt);
2065
	if (desc->flags & CHIP_NEED_CHECKMODE) {
2066
		if (!desc->getrxsubchans || !desc->setaudmode) {
2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080
			/* This shouldn't be happen. Warn user, but keep working
			   without kthread
			 */
			v4l2_info(sd, "set/get mode callbacks undefined!\n");
			return 0;
		}
		/* start async thread */
		chip->wt.function = chip_thread_wake;
		chip->wt.data     = (unsigned long)chip;
		chip->thread = kthread_run(chip_thread, chip, client->name);
		if (IS_ERR(chip->thread)) {
			v4l2_warn(sd, "failed to create kthread\n");
			chip->thread = NULL;
		}
L
Linus Torvalds 已提交
2081 2082 2083 2084
	}
	return 0;
}

2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101
static int tvaudio_remove(struct i2c_client *client)
{
	struct v4l2_subdev *sd = i2c_get_clientdata(client);
	struct CHIPSTATE *chip = to_state(sd);

	del_timer_sync(&chip->wt);
	if (chip->thread) {
		/* shutdown async thread */
		kthread_stop(chip->thread);
		chip->thread = NULL;
	}

	v4l2_device_unregister_subdev(sd);
	kfree(chip);
	return 0;
}

2102 2103 2104
/* This driver supports many devices and the idea is to let the driver
   detect which device is present. So rather than listing all supported
   devices here, we pretend to support a single, fake device type. */
2105
static const struct i2c_device_id tvaudio_id[] = {
2106 2107 2108
	{ "tvaudio", 0 },
	{ }
};
2109
MODULE_DEVICE_TABLE(i2c, tvaudio_id);
2110

2111 2112 2113 2114 2115 2116 2117 2118
static struct i2c_driver tvaudio_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "tvaudio",
	},
	.probe		= tvaudio_probe,
	.remove		= tvaudio_remove,
	.id_table	= tvaudio_id,
2119
};
2120

2121
module_i2c_driver(tvaudio_driver);