saa7111.c 11.8 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 * saa7111 - Philips SAA7111A video decoder driver version 0.0.3
 *
 * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
 *
 * Slight changes for video timing and attachment output by
 * Wolfgang Scherr <scherr@net4you.net>
 *
 * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
 *    - moved over to linux>=2.4.x i2c protocol (1/1/2003)
 *
 * Changes by Michael Hunold <michael@mihu.de>
 *    - implemented DECODER_SET_GPIO, DECODER_INIT, DECODER_SET_VBI_BYPASS
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/module.h>
31
#include <linux/types.h>
32
#include <linux/ioctl.h>
33
#include <asm/uaccess.h>
34 35
#include <linux/i2c.h>
#include <linux/i2c-id.h>
L
Linus Torvalds 已提交
36
#include <linux/videodev.h>
37
#include <linux/video_decoder.h>
38 39
#include <media/v4l2-common.h>
#include <media/v4l2-i2c-drv-legacy.h>
L
Linus Torvalds 已提交
40 41 42 43 44

MODULE_DESCRIPTION("Philips SAA7111 video decoder driver");
MODULE_AUTHOR("Dave Perks");
MODULE_LICENSE("GPL");

45
static int debug;
L
Linus Torvalds 已提交
46 47 48 49 50
module_param(debug, int, 0644);
MODULE_PARM_DESC(debug, "Debug level (0-1)");

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

51 52
#define SAA7111_NR_REG		0x18

L
Linus Torvalds 已提交
53
struct saa7111 {
54
	unsigned char reg[SAA7111_NR_REG];
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62

	int norm;
	int input;
	int enable;
};

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

63
static inline int saa7111_write(struct i2c_client *client, u8 reg, u8 value)
L
Linus Torvalds 已提交
64 65 66 67 68 69 70
{
	struct saa7111 *decoder = i2c_get_clientdata(client);

	decoder->reg[reg] = value;
	return i2c_smbus_write_byte_data(client, reg, value);
}

71
static inline void saa7111_write_if_changed(struct i2c_client *client, u8 reg, u8 value)
72 73 74 75 76 77 78 79 80
{
	struct saa7111 *decoder = i2c_get_clientdata(client);

	if (decoder->reg[reg] != value) {
		decoder->reg[reg] = value;
		i2c_smbus_write_byte_data(client, reg, value);
	}
}

81
static int saa7111_write_block(struct i2c_client *client, const u8 *data, unsigned int len)
L
Linus Torvalds 已提交
82 83 84 85 86 87 88 89 90 91
{
	int ret = -1;
	u8 reg;

	/* the saa7111 has an autoincrement function, use it if
	 * the adapter understands raw I2C */
	if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
		/* do raw I2C, not smbus compatible */
		struct saa7111 *decoder = i2c_get_clientdata(client);
		u8 block_data[32];
92
		int block_len;
L
Linus Torvalds 已提交
93 94

		while (len >= 2) {
95 96
			block_len = 0;
			block_data[block_len++] = reg = data[0];
L
Linus Torvalds 已提交
97
			do {
98
				block_data[block_len++] =
L
Linus Torvalds 已提交
99 100 101
				    decoder->reg[reg++] = data[1];
				len -= 2;
				data += 2;
102 103 104
			} while (len >= 2 && data[0] == reg && block_len < 32);
			ret = i2c_master_send(client, block_data, block_len);
			if (ret < 0)
L
Linus Torvalds 已提交
105 106 107 108 109 110
				break;
		}
	} else {
		/* do some slow I2C emulation kind of thing */
		while (len >= 2) {
			reg = *data++;
111 112
			ret = saa7111_write(client, reg, *data++);
			if (ret < 0)
L
Linus Torvalds 已提交
113 114 115 116 117 118 119 120
				break;
			len -= 2;
		}
	}

	return ret;
}

121 122
static int saa7111_init_decoder(struct i2c_client *client,
		struct video_decoder_init *init)
L
Linus Torvalds 已提交
123 124 125 126
{
	return saa7111_write_block(client, init->data, init->len);
}

127
static inline int saa7111_read(struct i2c_client *client, u8 reg)
L
Linus Torvalds 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
{
	return i2c_smbus_read_byte_data(client, reg);
}

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

static const unsigned char saa7111_i2c_init[] = {
	0x00, 0x00,		/* 00 - ID byte */
	0x01, 0x00,		/* 01 - reserved */

	/*front end */
	0x02, 0xd0,		/* 02 - FUSE=3, GUDL=2, MODE=0 */
	0x03, 0x23,		/* 03 - HLNRS=0, VBSL=1, WPOFF=0,
				 * HOLDG=0, GAFIX=0, GAI1=256, GAI2=256 */
	0x04, 0x00,		/* 04 - GAI1=256 */
	0x05, 0x00,		/* 05 - GAI2=256 */

	/* decoder */
	0x06, 0xf3,		/* 06 - HSB at  13(50Hz) /  17(60Hz)
				 * pixels after end of last line */
	/*0x07, 0x13,     * 07 - HSS at 113(50Hz) / 117(60Hz) pixels
				 * after end of last line */
	0x07, 0xe8,		/* 07 - HSS seems to be needed to
				 * work with NTSC, too */
	0x08, 0xc8,		/* 08 - AUFD=1, FSEL=1, EXFIL=0,
				 * VTRC=1, HPLL=0, VNOI=0 */
	0x09, 0x01,		/* 09 - BYPS=0, PREF=0, BPSS=0,
				 * VBLB=0, UPTCV=0, APER=1 */
	0x0a, 0x80,		/* 0a - BRIG=128 */
	0x0b, 0x47,		/* 0b - CONT=1.109 */
	0x0c, 0x40,		/* 0c - SATN=1.0 */
	0x0d, 0x00,		/* 0d - HUE=0 */
	0x0e, 0x01,		/* 0e - CDTO=0, CSTD=0, DCCF=0,
				 * FCTC=0, CHBW=1 */
	0x0f, 0x00,		/* 0f - reserved */
	0x10, 0x48,		/* 10 - OFTS=1, HDEL=0, VRLN=1, YDEL=0 */
	0x11, 0x1c,		/* 11 - GPSW=0, CM99=0, FECO=0, COMPO=1,
				 * OEYC=1, OEHV=1, VIPB=0, COLO=0 */
	0x12, 0x00,		/* 12 - output control 2 */
	0x13, 0x00,		/* 13 - output control 3 */
	0x14, 0x00,		/* 14 - reserved */
	0x15, 0x00,		/* 15 - VBI */
	0x16, 0x00,		/* 16 - VBI */
	0x17, 0x00,		/* 17 - VBI */
};

174
static int saa7111_command(struct i2c_client *client, unsigned cmd, void *arg)
L
Linus Torvalds 已提交
175 176 177 178 179
{
	struct saa7111 *decoder = i2c_get_clientdata(client);

	switch (cmd) {
	case 0:
180
		break;
L
Linus Torvalds 已提交
181 182 183
	case DECODER_INIT:
	{
		struct video_decoder_init *init = arg;
184 185
		struct video_decoder_init vdi;

L
Linus Torvalds 已提交
186 187
		if (NULL != init)
			return saa7111_init_decoder(client, init);
188 189 190
		vdi.data = saa7111_i2c_init;
		vdi.len = sizeof(saa7111_i2c_init);
		return saa7111_init_decoder(client, &vdi);
L
Linus Torvalds 已提交
191 192 193 194 195 196
	}

	case DECODER_DUMP:
	{
		int i;

197
		for (i = 0; i < SAA7111_NR_REG; i += 16) {
L
Linus Torvalds 已提交
198 199
			int j;

200
			v4l_info(client, "%03x", i);
201
			for (j = 0; j < 16 && i + j < SAA7111_NR_REG; ++j) {
202
				printk(KERN_CONT " %02x",
L
Linus Torvalds 已提交
203 204
				       saa7111_read(client, i + j));
			}
205
			printk(KERN_CONT "\n");
L
Linus Torvalds 已提交
206 207
		}
		break;
208
	}
L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221

	case DECODER_GET_CAPABILITIES:
	{
		struct video_decoder_capability *cap = arg;

		cap->flags = VIDEO_DECODER_PAL |
			     VIDEO_DECODER_NTSC |
			     VIDEO_DECODER_SECAM |
			     VIDEO_DECODER_AUTO |
			     VIDEO_DECODER_CCIR;
		cap->inputs = 8;
		cap->outputs = 1;
		break;
222
	}
L
Linus Torvalds 已提交
223 224 225 226 227 228 229 230

	case DECODER_GET_STATUS:
	{
		int *iarg = arg;
		int status;
		int res;

		status = saa7111_read(client, 0x1f);
231
		v4l_dbg(1, debug, client, "status: 0x%02x\n", status);
L
Linus Torvalds 已提交
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
		res = 0;
		if ((status & (1 << 6)) == 0) {
			res |= DECODER_STATUS_GOOD;
		}
		switch (decoder->norm) {
		case VIDEO_MODE_NTSC:
			res |= DECODER_STATUS_NTSC;
			break;
		case VIDEO_MODE_PAL:
			res |= DECODER_STATUS_PAL;
			break;
		case VIDEO_MODE_SECAM:
			res |= DECODER_STATUS_SECAM;
			break;
		default:
		case VIDEO_MODE_AUTO:
			if ((status & (1 << 5)) != 0) {
				res |= DECODER_STATUS_NTSC;
			} else {
				res |= DECODER_STATUS_PAL;
			}
			break;
		}
		if ((status & (1 << 0)) != 0) {
			res |= DECODER_STATUS_COLOR;
		}
		*iarg = res;
		break;
260
	}
L
Linus Torvalds 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 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 321 322 323 324 325 326 327

	case DECODER_SET_GPIO:
	{
		int *iarg = arg;
		if (0 != *iarg) {
			saa7111_write(client, 0x11,
				(decoder->reg[0x11] | 0x80));
		} else {
			saa7111_write(client, 0x11,
				(decoder->reg[0x11] & 0x7f));
		}
		break;
	}

	case DECODER_SET_VBI_BYPASS:
	{
		int *iarg = arg;
		if (0 != *iarg) {
			saa7111_write(client, 0x13,
				(decoder->reg[0x13] & 0xf0) | 0x0a);
		} else {
			saa7111_write(client, 0x13,
				(decoder->reg[0x13] & 0xf0));
		}
		break;
	}

	case DECODER_SET_NORM:
	{
		int *iarg = arg;

		switch (*iarg) {

		case VIDEO_MODE_NTSC:
			saa7111_write(client, 0x08,
				      (decoder->reg[0x08] & 0x3f) | 0x40);
			saa7111_write(client, 0x0e,
				      (decoder->reg[0x0e] & 0x8f));
			break;

		case VIDEO_MODE_PAL:
			saa7111_write(client, 0x08,
				      (decoder->reg[0x08] & 0x3f) | 0x00);
			saa7111_write(client, 0x0e,
				      (decoder->reg[0x0e] & 0x8f));
			break;

		case VIDEO_MODE_SECAM:
			saa7111_write(client, 0x08,
				      (decoder->reg[0x08] & 0x3f) | 0x00);
			saa7111_write(client, 0x0e,
				      (decoder->reg[0x0e] & 0x8f) | 0x50);
			break;

		case VIDEO_MODE_AUTO:
			saa7111_write(client, 0x08,
				      (decoder->reg[0x08] & 0x3f) | 0x80);
			saa7111_write(client, 0x0e,
				      (decoder->reg[0x0e] & 0x8f));
			break;

		default:
			return -EINVAL;

		}
		decoder->norm = *iarg;
		break;
328
	}
L
Linus Torvalds 已提交
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352

	case DECODER_SET_INPUT:
	{
		int *iarg = arg;

		if (*iarg < 0 || *iarg > 7) {
			return -EINVAL;
		}

		if (decoder->input != *iarg) {
			decoder->input = *iarg;
			/* select mode */
			saa7111_write(client, 0x02,
				      (decoder->
				       reg[0x02] & 0xf8) | decoder->input);
			/* bypass chrominance trap for modes 4..7 */
			saa7111_write(client, 0x09,
				      (decoder->
				       reg[0x09] & 0x7f) | ((decoder->
							     input >
							     3) ? 0x80 :
							    0));
		}
		break;
353
	}
L
Linus Torvalds 已提交
354 355 356 357 358 359 360 361 362 363

	case DECODER_SET_OUTPUT:
	{
		int *iarg = arg;

		/* not much choice of outputs */
		if (*iarg != 0) {
			return -EINVAL;
		}
		break;
364
	}
L
Linus Torvalds 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404

	case DECODER_ENABLE_OUTPUT:
	{
		int *iarg = arg;
		int enable = (*iarg != 0);

		if (decoder->enable != enable) {
			decoder->enable = enable;

			/* RJ: If output should be disabled (for
			 * playing videos), we also need a open PLL.
			 * The input is set to 0 (where no input
			 * source is connected), although this
			 * is not necessary.
			 *
			 * If output should be enabled, we have to
			 * reverse the above.
			 */

			if (decoder->enable) {
				saa7111_write(client, 0x02,
					      (decoder->
					       reg[0x02] & 0xf8) |
					      decoder->input);
				saa7111_write(client, 0x08,
					      (decoder->reg[0x08] & 0xfb));
				saa7111_write(client, 0x11,
					      (decoder->
					       reg[0x11] & 0xf3) | 0x0c);
			} else {
				saa7111_write(client, 0x02,
					      (decoder->reg[0x02] & 0xf8));
				saa7111_write(client, 0x08,
					      (decoder->
					       reg[0x08] & 0xfb) | 0x04);
				saa7111_write(client, 0x11,
					      (decoder->reg[0x11] & 0xf3));
			}
		}
		break;
405
	}
L
Linus Torvalds 已提交
406 407 408 409 410

	case DECODER_SET_PICTURE:
	{
		struct video_picture *pic = arg;

411 412 413 414 415 416 417 418
		/* We want 0 to 255 we get 0-65535 */
		saa7111_write_if_changed(client, 0x0a, pic->brightness >> 8);
		/* We want 0 to 127 we get 0-65535 */
		saa7111_write(client, 0x0b, pic->contrast >> 9);
		/* We want 0 to 127 we get 0-65535 */
		saa7111_write(client, 0x0c, pic->colour >> 9);
		/* We want -128 to 127 we get 0-65535 */
		saa7111_write(client, 0x0d, (pic->hue - 32768) >> 8);
L
Linus Torvalds 已提交
419
		break;
420
	}
L
Linus Torvalds 已提交
421 422 423 424 425 426 427 428 429 430

	default:
		return -EINVAL;
	}

	return 0;
}

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

431
static unsigned short normal_i2c[] = { 0x48 >> 1, I2C_CLIENT_END };
L
Linus Torvalds 已提交
432

433
I2C_CLIENT_INSMOD;
L
Linus Torvalds 已提交
434

435 436
static int saa7111_probe(struct i2c_client *client,
			const struct i2c_device_id *id)
L
Linus Torvalds 已提交
437 438 439 440 441 442
{
	int i;
	struct saa7111 *decoder;
	struct video_decoder_init vdi;

	/* Check if the adapter supports the needed features */
443 444
	if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
		return -ENODEV;
L
Linus Torvalds 已提交
445

446 447
	v4l_info(client, "chip found @ 0x%x (%s)\n",
			client->addr << 1, client->adapter->name);
L
Linus Torvalds 已提交
448

P
 
Panagiotis Issaris 已提交
449
	decoder = kzalloc(sizeof(struct saa7111), GFP_KERNEL);
L
Linus Torvalds 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462
	if (decoder == NULL) {
		kfree(client);
		return -ENOMEM;
	}
	decoder->norm = VIDEO_MODE_NTSC;
	decoder->input = 0;
	decoder->enable = 1;
	i2c_set_clientdata(client, decoder);

	vdi.data = saa7111_i2c_init;
	vdi.len = sizeof(saa7111_i2c_init);
	i = saa7111_init_decoder(client, &vdi);
	if (i < 0) {
463
		v4l_dbg(1, debug, client, "init status %d\n", i);
L
Linus Torvalds 已提交
464
	} else {
465 466
		v4l_dbg(1, debug, client, "revision %x\n",
			saa7111_read(client, 0x00) >> 4);
L
Linus Torvalds 已提交
467 468 469 470
	}
	return 0;
}

471
static int saa7111_remove(struct i2c_client *client)
L
Linus Torvalds 已提交
472
{
473
	kfree(i2c_get_clientdata(client));
L
Linus Torvalds 已提交
474 475 476 477 478
	return 0;
}

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

479 480 481 482 483
static const struct i2c_device_id saa7111_id[] = {
	{ "saa7111_old", 0 },	/* "saa7111" maps to the saa7115 driver */
	{ }
};
MODULE_DEVICE_TABLE(i2c, saa7111_id);
L
Linus Torvalds 已提交
484

485 486 487
static struct v4l2_i2c_driver_data v4l2_i2c_data = {
	.name = "saa7111",
	.driverid = I2C_DRIVERID_SAA7111A,
L
Linus Torvalds 已提交
488
	.command = saa7111_command,
489 490 491
	.probe = saa7111_probe,
	.remove = saa7111_remove,
	.id_table = saa7111_id,
L
Linus Torvalds 已提交
492
};