zoran_card.c 40.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * Zoran zr36057/zr36067 PCI controller driver, for the
 * Pinnacle/Miro DC10/DC10+/DC30/DC30+, Iomega Buz, Linux
 * Media Labs LML33/LML33R10.
 *
 * This part handles card-specific data and detection
7
 *
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
 *
 * Currently maintained by:
 *   Ronald Bultje    <rbultje@ronald.bitfreak.net>
 *   Laurent Pinchart <laurent.pinchart@skynet.be>
 *   Mailinglist      <mjpeg-users@lists.sf.net>
 *
 * 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.
 */

30 31
#include <linux/delay.h>

L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/vmalloc.h>

#include <linux/proc_fs.h>
#include <linux/i2c.h>
#include <linux/i2c-algo-bit.h>
41
#include <linux/videodev2.h>
L
Linus Torvalds 已提交
42 43 44 45 46 47 48
#include <linux/spinlock.h>
#include <linux/sem.h>
#include <linux/kmod.h>
#include <linux/wait.h>

#include <linux/pci.h>
#include <linux/interrupt.h>
I
Ingo Molnar 已提交
49
#include <linux/mutex.h>
50 51 52
#include <linux/io.h>
#include <media/v4l2-common.h>
#include <media/bt819.h>
L
Linus Torvalds 已提交
53 54 55 56 57 58 59 60 61

#include "videocodec.h"
#include "zoran.h"
#include "zoran_card.h"
#include "zoran_device.h"
#include "zoran_procfs.h"

extern const struct zoran_format zoran_formats[];

62
static int card[BUZ_MAX] = { [0 ... (BUZ_MAX-1)] = -1 };
63
module_param_array(card, int, NULL, 0444);
64
MODULE_PARM_DESC(card, "Card type");
L
Linus Torvalds 已提交
65

66
static int encoder[BUZ_MAX] = { [0 ... (BUZ_MAX-1)] = -1 };
67
module_param_array(encoder, int, NULL, 0444);
68
MODULE_PARM_DESC(encoder, "Video encoder chip");
L
Linus Torvalds 已提交
69

70
static int decoder[BUZ_MAX] = { [0 ... (BUZ_MAX-1)] = -1 };
71
module_param_array(decoder, int, NULL, 0444);
72
MODULE_PARM_DESC(decoder, "Video decoder chip");
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81

/*
   The video mem address of the video card.
   The driver has a little database for some videocards
   to determine it from there. If your video card is not in there
   you have either to give it to the driver as a parameter
   or set in in a VIDIOCSFBUF ioctl
 */

82
static unsigned long vidmem;	/* default = 0 - Video memory base address */
83 84
module_param(vidmem, ulong, 0444);
MODULE_PARM_DESC(vidmem, "Default video memory base address");
L
Linus Torvalds 已提交
85 86 87 88 89

/*
   Default input and video norm at startup of the driver.
*/

90
static unsigned int default_input;	/* default 0 = Composite, 1 = S-Video */
91
module_param(default_input, uint, 0444);
L
Linus Torvalds 已提交
92 93 94
MODULE_PARM_DESC(default_input,
		 "Default input (0=Composite, 1=S-Video, 2=Internal)");

95
static int default_mux = 1;	/* 6 Eyes input selection */
96
module_param(default_mux, int, 0644);
97 98 99
MODULE_PARM_DESC(default_mux,
		 "Default 6 Eyes mux setting (Input selection)");

100
static int default_norm;	/* default 0 = PAL, 1 = NTSC 2 = SECAM */
101
module_param(default_norm, int, 0444);
L
Linus Torvalds 已提交
102 103
MODULE_PARM_DESC(default_norm, "Default norm (0=PAL, 1=NTSC, 2=SECAM)");

104
/* /dev/videoN, -1 for autodetect */
105
static int video_nr[BUZ_MAX] = { [0 ... (BUZ_MAX-1)] = -1 };
106
module_param_array(video_nr, int, NULL, 0444);
107
MODULE_PARM_DESC(video_nr, "Video device number (-1=Auto)");
L
Linus Torvalds 已提交
108

109
int v4l_nbufs = 4;
110
int v4l_bufsize = 864;		/* Everybody should be able to work with this setting */
111
module_param(v4l_nbufs, int, 0644);
L
Linus Torvalds 已提交
112
MODULE_PARM_DESC(v4l_nbufs, "Maximum number of V4L buffers to use");
113
module_param(v4l_bufsize, int, 0644);
L
Linus Torvalds 已提交
114 115 116 117
MODULE_PARM_DESC(v4l_bufsize, "Maximum size per V4L buffer (in kB)");

int jpg_nbufs = 32;
int jpg_bufsize = 512;		/* max size for 100% quality full-PAL frame */
118
module_param(jpg_nbufs, int, 0644);
L
Linus Torvalds 已提交
119
MODULE_PARM_DESC(jpg_nbufs, "Maximum number of JPG buffers to use");
120
module_param(jpg_bufsize, int, 0644);
L
Linus Torvalds 已提交
121 122 123 124
MODULE_PARM_DESC(jpg_bufsize, "Maximum size per JPG buffer (in kB)");

int pass_through = 0;		/* 1=Pass through TV signal when device is not used */
				/* 0=Show color bar when device is not used (LML33: only if lml33dpath=1) */
125
module_param(pass_through, int, 0644);
L
Linus Torvalds 已提交
126 127 128
MODULE_PARM_DESC(pass_through,
		 "Pass TV signal through to TV-out when idling");

129 130 131
int zr36067_debug = 1;
module_param_named(debug, zr36067_debug, int, 0644);
MODULE_PARM_DESC(debug, "Debug level (0-5)");
L
Linus Torvalds 已提交
132 133 134 135 136

MODULE_DESCRIPTION("Zoran-36057/36067 JPEG codec driver");
MODULE_AUTHOR("Serguei Miridonov");
MODULE_LICENSE("GPL");

137 138 139 140
#define ZR_DEVICE(subven, subdev, data)	{ \
	.vendor = PCI_VENDOR_ID_ZORAN, .device = PCI_DEVICE_ID_ZORAN_36057, \
	.subvendor = (subven), .subdevice = (subdev), .driver_data = (data) }

141
static struct pci_device_id zr36067_pci_tbl[] = {
142 143 144 145 146
	ZR_DEVICE(PCI_VENDOR_ID_MIRO, PCI_DEVICE_ID_MIRO_DC10PLUS, DC10plus),
	ZR_DEVICE(PCI_VENDOR_ID_MIRO, PCI_DEVICE_ID_MIRO_DC30PLUS, DC30plus),
	ZR_DEVICE(PCI_VENDOR_ID_ELECTRONICDESIGNGMBH, PCI_DEVICE_ID_LML_33R10, LML33R10),
	ZR_DEVICE(PCI_VENDOR_ID_IOMEGA, PCI_DEVICE_ID_IOMEGA_BUZ, BUZ),
	ZR_DEVICE(PCI_ANY_ID, PCI_ANY_ID, NUM_CARDS),
147 148 149
	{0}
};
MODULE_DEVICE_TABLE(pci, zr36067_pci_tbl);
L
Linus Torvalds 已提交
150

151
static unsigned int zoran_num;		/* number of cards found */
L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 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

/* videocodec bus functions ZR36060 */
static u32
zr36060_read (struct videocodec *codec,
	      u16                reg)
{
	struct zoran *zr = (struct zoran *) codec->master_data->data;
	__u32 data;

	if (post_office_wait(zr)
	    || post_office_write(zr, 0, 1, reg >> 8)
	    || post_office_write(zr, 0, 2, reg & 0xff)) {
		return -1;
	}

	data = post_office_read(zr, 0, 3) & 0xff;
	return data;
}

static void
zr36060_write (struct videocodec *codec,
	       u16                reg,
	       u32                val)
{
	struct zoran *zr = (struct zoran *) codec->master_data->data;

	if (post_office_wait(zr)
	    || post_office_write(zr, 0, 1, reg >> 8)
	    || post_office_write(zr, 0, 2, reg & 0xff)) {
		return;
	}

	post_office_write(zr, 0, 3, val & 0xff);
}

/* videocodec bus functions ZR36050 */
static u32
zr36050_read (struct videocodec *codec,
	      u16                reg)
{
	struct zoran *zr = (struct zoran *) codec->master_data->data;
	__u32 data;

	if (post_office_wait(zr)
	    || post_office_write(zr, 1, 0, reg >> 2)) {	// reg. HIGHBYTES
		return -1;
	}

	data = post_office_read(zr, 0, reg & 0x03) & 0xff;	// reg. LOWBYTES + read
	return data;
}

static void
zr36050_write (struct videocodec *codec,
	       u16                reg,
	       u32                val)
{
	struct zoran *zr = (struct zoran *) codec->master_data->data;

	if (post_office_wait(zr)
	    || post_office_write(zr, 1, 0, reg >> 2)) {	// reg. HIGHBYTES
		return;
	}

	post_office_write(zr, 0, reg & 0x03, val & 0xff);	// reg. LOWBYTES + wr. data
}

/* videocodec bus functions ZR36016 */
static u32
zr36016_read (struct videocodec *codec,
	      u16                reg)
{
	struct zoran *zr = (struct zoran *) codec->master_data->data;
	__u32 data;

	if (post_office_wait(zr)) {
		return -1;
	}

	data = post_office_read(zr, 2, reg & 0x03) & 0xff;	// read
	return data;
}

/* hack for in zoran_device.c */
void
zr36016_write (struct videocodec *codec,
	       u16                reg,
	       u32                val)
{
	struct zoran *zr = (struct zoran *) codec->master_data->data;

	if (post_office_wait(zr)) {
		return;
	}

	post_office_write(zr, 2, reg & 0x03, val & 0x0ff);	// wr. data
}

/*
 * Board specific information
 */

static void
dc10_init (struct zoran *zr)
{
257
	dprintk(3, KERN_DEBUG "%s: %s\n", ZR_DEVNAME(zr), __func__);
L
Linus Torvalds 已提交
258 259 260 261 262 263 264 265 266 267 268

	/* Pixel clock selection */
	GPIO(zr, 4, 0);
	GPIO(zr, 5, 1);
	/* Enable the video bus sync signals */
	GPIO(zr, 7, 0);
}

static void
dc10plus_init (struct zoran *zr)
{
269
	dprintk(3, KERN_DEBUG "%s: %s\n", ZR_DEVNAME(zr), __func__);
L
Linus Torvalds 已提交
270 271 272 273 274
}

static void
buz_init (struct zoran *zr)
{
275
	dprintk(3, KERN_DEBUG "%s: %s\n", ZR_DEVNAME(zr), __func__);
L
Linus Torvalds 已提交
276 277 278 279 280 281 282 283 284 285

	/* some stuff from Iomega */
	pci_write_config_dword(zr->pci_dev, 0xfc, 0x90680f15);
	pci_write_config_dword(zr->pci_dev, 0x0c, 0x00012020);
	pci_write_config_dword(zr->pci_dev, 0xe8, 0xc0200000);
}

static void
lml33_init (struct zoran *zr)
{
286
	dprintk(3, KERN_DEBUG "%s: %s\n", ZR_DEVNAME(zr), __func__);
L
Linus Torvalds 已提交
287 288 289 290

	GPIO(zr, 2, 1);		// Set Composite input/output
}

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
static void
avs6eyes_init (struct zoran *zr)
{
	// AverMedia 6-Eyes original driver by Christer Weinigel

	// Lifted straight from Christer's old driver and
	// modified slightly by Martin Samuelsson.

	int mux = default_mux; /* 1 = BT866, 7 = VID1 */

	GPIO(zr, 4, 1); /* Bt866 SLEEP on */
	udelay(2);

	GPIO(zr, 0, 1); /* ZR36060 /RESET on */
	GPIO(zr, 1, 0); /* ZR36060 /SLEEP on */
	GPIO(zr, 2, mux & 1);   /* MUX S0 */
	GPIO(zr, 3, 0); /* /FRAME on */
	GPIO(zr, 4, 0); /* Bt866 SLEEP off */
	GPIO(zr, 5, mux & 2);   /* MUX S1 */
	GPIO(zr, 6, 0); /* ? */
	GPIO(zr, 7, mux & 4);   /* MUX S2 */

}

L
Linus Torvalds 已提交
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
static char *
codecid_to_modulename (u16 codecid)
{
	char *name = NULL;

	switch (codecid) {
	case CODEC_TYPE_ZR36060:
		name = "zr36060";
		break;
	case CODEC_TYPE_ZR36050:
		name = "zr36050";
		break;
	case CODEC_TYPE_ZR36016:
		name = "zr36016";
		break;
	}

	return name;
}

// struct tvnorm {
//      u16 Wt, Wa, HStart, HSyncStart, Ht, Ha, VStart;
// };

static struct tvnorm f50sqpixel = { 944, 768, 83, 880, 625, 576, 16 };
static struct tvnorm f60sqpixel = { 780, 640, 51, 716, 525, 480, 12 };
static struct tvnorm f50ccir601 = { 864, 720, 75, 804, 625, 576, 18 };
static struct tvnorm f60ccir601 = { 858, 720, 57, 788, 525, 480, 16 };

static struct tvnorm f50ccir601_lml33 = { 864, 720, 75+34, 804, 625, 576, 18 };
static struct tvnorm f60ccir601_lml33 = { 858, 720, 57+34, 788, 525, 480, 16 };

/* The DC10 (57/16/50) uses VActive as HSync, so HStart must be 0 */
static struct tvnorm f50sqpixel_dc10 = { 944, 768, 0, 880, 625, 576, 0 };
static struct tvnorm f60sqpixel_dc10 = { 780, 640, 0, 716, 525, 480, 12 };

/* FIXME: I cannot swap U and V in saa7114, so i do one
 * pixel left shift in zoran (75 -> 74)
 * (Maxim Yevtyushkin <max@linuxmedialabs.com>) */
static struct tvnorm f50ccir601_lm33r10 = { 864, 720, 74+54, 804, 625, 576, 18 };
static struct tvnorm f60ccir601_lm33r10 = { 858, 720, 56+54, 788, 525, 480, 16 };

357 358 359 360 361 362 363 364
/* FIXME: The ks0127 seem incapable of swapping U and V, too, which is why I
 * copy Maxim's left shift hack for the 6 Eyes.
 *
 * Christer's driver used the unshifted norms, though...
 * /Sam  */
static struct tvnorm f50ccir601_avs6eyes = { 864, 720, 74, 804, 625, 576, 18 };
static struct tvnorm f60ccir601_avs6eyes = { 858, 720, 56, 788, 525, 480, 16 };

365 366 367 368 369 370 371 372 373 374 375
static const unsigned short vpx3220_addrs[] = { 0x43, 0x47, I2C_CLIENT_END };
static const unsigned short saa7110_addrs[] = { 0x4e, 0x4f, I2C_CLIENT_END };
static const unsigned short saa7111_addrs[] = { 0x25, 0x24, I2C_CLIENT_END };
static const unsigned short saa7114_addrs[] = { 0x21, 0x20, I2C_CLIENT_END };
static const unsigned short adv717x_addrs[] = { 0x6a, 0x6b, 0x2a, 0x2b, I2C_CLIENT_END };
static const unsigned short ks0127_addrs[] = { 0x6c, 0x6d, I2C_CLIENT_END };
static const unsigned short saa7185_addrs[] = { 0x44, I2C_CLIENT_END };
static const unsigned short bt819_addrs[] = { 0x45, I2C_CLIENT_END };
static const unsigned short bt856_addrs[] = { 0x44, I2C_CLIENT_END };
static const unsigned short bt866_addrs[] = { 0x44, I2C_CLIENT_END };

L
Linus Torvalds 已提交
376 377 378 379
static struct card_info zoran_cards[NUM_CARDS] __devinitdata = {
	{
		.type = DC10_old,
		.name = "DC10(old)",
380 381 382
		.i2c_decoder = "vpx3220a",
		.mod_decoder = "vpx3220",
		.addrs_decoder = vpx3220_addrs,
L
Linus Torvalds 已提交
383 384 385 386 387 388 389 390 391
		.video_codec = CODEC_TYPE_ZR36050,
		.video_vfe = CODEC_TYPE_ZR36016,

		.inputs = 3,
		.input = {
			{ 1, "Composite" },
			{ 2, "S-Video" },
			{ 0, "Internal/comp" }
		},
392
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL|V4L2_STD_SECAM,
L
Linus Torvalds 已提交
393 394 395 396 397 398 399 400 401 402 403 404
		.tvn = {
			&f50sqpixel_dc10,
			&f60sqpixel_dc10,
			&f50sqpixel_dc10
		},
		.jpeg_int = 0,
		.vsync_int = ZR36057_ISR_GIRQ1,
		.gpio = { 2, 1, -1, 3, 7, 0, 4, 5 },
		.gpio_pol = { 0, 0, 0, 1, 0, 0, 0, 0 },
		.gpcs = { -1, 0 },
		.vfe_pol = { 0, 0, 0, 0, 0, 0, 0, 0 },
		.gws_not_connected = 0,
405
		.input_mux = 0,
L
Linus Torvalds 已提交
406 407 408 409
		.init = &dc10_init,
	}, {
		.type = DC10_new,
		.name = "DC10(new)",
410 411 412 413 414 415
		.i2c_decoder = "saa7110",
		.mod_decoder = "saa7110",
		.addrs_decoder = saa7110_addrs,
		.i2c_encoder = "adv7175",
		.mod_encoder = "adv7175",
		.addrs_encoder = adv717x_addrs,
L
Linus Torvalds 已提交
416 417 418 419 420 421 422 423
		.video_codec = CODEC_TYPE_ZR36060,

		.inputs = 3,
		.input = {
				{ 0, "Composite" },
				{ 7, "S-Video" },
				{ 5, "Internal/comp" }
			},
424
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL|V4L2_STD_SECAM,
L
Linus Torvalds 已提交
425 426 427 428 429 430 431 432 433 434 435
		.tvn = {
				&f50sqpixel,
				&f60sqpixel,
				&f50sqpixel},
		.jpeg_int = ZR36057_ISR_GIRQ0,
		.vsync_int = ZR36057_ISR_GIRQ1,
		.gpio = { 3, 0, 6, 1, 2, -1, 4, 5 },
		.gpio_pol = { 0, 0, 0, 0, 0, 0, 0, 0 },
		.gpcs = { -1, 1},
		.vfe_pol = { 1, 1, 1, 1, 0, 0, 0, 0 },
		.gws_not_connected = 0,
436
		.input_mux = 0,
L
Linus Torvalds 已提交
437 438 439 440
		.init = &dc10plus_init,
	}, {
		.type = DC10plus,
		.name = "DC10plus",
441 442 443 444 445 446
		.i2c_decoder = "saa7110",
		.mod_decoder = "saa7110",
		.addrs_decoder = saa7110_addrs,
		.i2c_encoder = "adv7175",
		.mod_encoder = "adv7175",
		.addrs_encoder = adv717x_addrs,
L
Linus Torvalds 已提交
447 448 449 450 451 452 453 454
		.video_codec = CODEC_TYPE_ZR36060,

		.inputs = 3,
		.input = {
			{ 0, "Composite" },
			{ 7, "S-Video" },
			{ 5, "Internal/comp" }
		},
455
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL|V4L2_STD_SECAM,
L
Linus Torvalds 已提交
456 457 458 459 460 461 462 463 464 465 466 467
		.tvn = {
			&f50sqpixel,
			&f60sqpixel,
			&f50sqpixel
		},
		.jpeg_int = ZR36057_ISR_GIRQ0,
		.vsync_int = ZR36057_ISR_GIRQ1,
		.gpio = { 3, 0, 6, 1, 2, -1, 4, 5 },
		.gpio_pol = { 0, 0, 0, 0, 0, 0, 0, 0 },
		.gpcs = { -1, 1 },
		.vfe_pol = { 1, 1, 1, 1, 0, 0, 0, 0 },
		.gws_not_connected = 0,
468
		.input_mux = 0,
L
Linus Torvalds 已提交
469 470 471 472
		.init = &dc10plus_init,
	}, {
		.type = DC30,
		.name = "DC30",
473 474 475 476 477 478
		.i2c_decoder = "vpx3220a",
		.mod_decoder = "vpx3220",
		.addrs_decoder = vpx3220_addrs,
		.i2c_encoder = "adv7175",
		.mod_encoder = "adv7175",
		.addrs_encoder = adv717x_addrs,
L
Linus Torvalds 已提交
479 480 481 482 483 484 485 486 487
		.video_codec = CODEC_TYPE_ZR36050,
		.video_vfe = CODEC_TYPE_ZR36016,

		.inputs = 3,
		.input = {
			{ 1, "Composite" },
			{ 2, "S-Video" },
			{ 0, "Internal/comp" }
		},
488
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL|V4L2_STD_SECAM,
L
Linus Torvalds 已提交
489 490 491 492 493 494 495 496 497 498 499 500
		.tvn = {
			&f50sqpixel_dc10,
			&f60sqpixel_dc10,
			&f50sqpixel_dc10
		},
		.jpeg_int = 0,
		.vsync_int = ZR36057_ISR_GIRQ1,
		.gpio = { 2, 1, -1, 3, 7, 0, 4, 5 },
		.gpio_pol = { 0, 0, 0, 1, 0, 0, 0, 0 },
		.gpcs = { -1, 0 },
		.vfe_pol = { 0, 0, 0, 0, 0, 0, 0, 0 },
		.gws_not_connected = 0,
501
		.input_mux = 0,
L
Linus Torvalds 已提交
502 503 504 505
		.init = &dc10_init,
	}, {
		.type = DC30plus,
		.name = "DC30plus",
506 507 508 509 510 511
		.i2c_decoder = "vpx3220a",
		.mod_decoder = "vpx3220",
		.addrs_decoder = vpx3220_addrs,
		.i2c_encoder = "adv7175",
		.mod_encoder = "adv7175",
		.addrs_encoder = adv717x_addrs,
L
Linus Torvalds 已提交
512 513 514 515 516 517 518 519 520
		.video_codec = CODEC_TYPE_ZR36050,
		.video_vfe = CODEC_TYPE_ZR36016,

		.inputs = 3,
		.input = {
			{ 1, "Composite" },
			{ 2, "S-Video" },
			{ 0, "Internal/comp" }
		},
521
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL|V4L2_STD_SECAM,
L
Linus Torvalds 已提交
522 523 524 525 526 527 528 529 530 531 532 533
		.tvn = {
			&f50sqpixel_dc10,
			&f60sqpixel_dc10,
			&f50sqpixel_dc10
		},
		.jpeg_int = 0,
		.vsync_int = ZR36057_ISR_GIRQ1,
		.gpio = { 2, 1, -1, 3, 7, 0, 4, 5 },
		.gpio_pol = { 0, 0, 0, 1, 0, 0, 0, 0 },
		.gpcs = { -1, 0 },
		.vfe_pol = { 0, 0, 0, 0, 0, 0, 0, 0 },
		.gws_not_connected = 0,
534
		.input_mux = 0,
L
Linus Torvalds 已提交
535 536 537 538
		.init = &dc10_init,
	}, {
		.type = LML33,
		.name = "LML33",
539 540 541 542 543 544
		.i2c_decoder = "bt819a",
		.mod_decoder = "bt819",
		.addrs_decoder = bt819_addrs,
		.i2c_encoder = "bt856",
		.mod_encoder = "bt856",
		.addrs_encoder = bt856_addrs,
L
Linus Torvalds 已提交
545 546 547 548 549 550 551
		.video_codec = CODEC_TYPE_ZR36060,

		.inputs = 2,
		.input = {
			{ 0, "Composite" },
			{ 7, "S-Video" }
		},
552
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL,
L
Linus Torvalds 已提交
553 554 555 556 557 558 559 560 561 562 563 564
		.tvn = {
			&f50ccir601_lml33,
			&f60ccir601_lml33,
			NULL
		},
		.jpeg_int = ZR36057_ISR_GIRQ1,
		.vsync_int = ZR36057_ISR_GIRQ0,
		.gpio = { 1, -1, 3, 5, 7, -1, -1, -1 },
		.gpio_pol = { 0, 0, 0, 0, 1, 0, 0, 0 },
		.gpcs = { 3, 1 },
		.vfe_pol = { 1, 1, 0, 0, 0, 1, 0, 0 },
		.gws_not_connected = 1,
565
		.input_mux = 0,
L
Linus Torvalds 已提交
566 567 568 569
		.init = &lml33_init,
	}, {
		.type = LML33R10,
		.name = "LML33R10",
570 571 572 573 574 575
		.i2c_decoder = "saa7114",
		.mod_decoder = "saa7115",
		.addrs_decoder = saa7114_addrs,
		.i2c_encoder = "adv7170",
		.mod_encoder = "adv7170",
		.addrs_encoder = adv717x_addrs,
L
Linus Torvalds 已提交
576 577 578 579 580 581 582
		.video_codec = CODEC_TYPE_ZR36060,

		.inputs = 2,
		.input = {
			{ 0, "Composite" },
			{ 7, "S-Video" }
		},
583
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL,
L
Linus Torvalds 已提交
584 585 586 587 588 589 590 591 592 593 594 595
		.tvn = {
			&f50ccir601_lm33r10,
			&f60ccir601_lm33r10,
			NULL
		},
		.jpeg_int = ZR36057_ISR_GIRQ1,
		.vsync_int = ZR36057_ISR_GIRQ0,
		.gpio = { 1, -1, 3, 5, 7, -1, -1, -1 },
		.gpio_pol = { 0, 0, 0, 0, 1, 0, 0, 0 },
		.gpcs = { 3, 1 },
		.vfe_pol = { 1, 1, 0, 0, 0, 1, 0, 0 },
		.gws_not_connected = 1,
596
		.input_mux = 0,
L
Linus Torvalds 已提交
597 598 599 600
		.init = &lml33_init,
	}, {
		.type = BUZ,
		.name = "Buz",
601 602 603 604 605 606
		.i2c_decoder = "saa7111",
		.mod_decoder = "saa7115",
		.addrs_decoder = saa7111_addrs,
		.i2c_encoder = "saa7185",
		.mod_encoder = "saa7185",
		.addrs_encoder = saa7185_addrs,
L
Linus Torvalds 已提交
607 608 609 610 611 612 613
		.video_codec = CODEC_TYPE_ZR36060,

		.inputs = 2,
		.input = {
			{ 3, "Composite" },
			{ 7, "S-Video" }
		},
614
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL|V4L2_STD_SECAM,
L
Linus Torvalds 已提交
615 616 617 618 619 620 621 622 623 624 625 626
		.tvn = {
			&f50ccir601,
			&f60ccir601,
			&f50ccir601
		},
		.jpeg_int = ZR36057_ISR_GIRQ1,
		.vsync_int = ZR36057_ISR_GIRQ0,
		.gpio = { 1, -1, 3, -1, -1, -1, -1, -1 },
		.gpio_pol = { 0, 0, 0, 0, 0, 0, 0, 0 },
		.gpcs = { 3, 1 },
		.vfe_pol = { 1, 1, 0, 0, 0, 1, 0, 0 },
		.gws_not_connected = 1,
627
		.input_mux = 0,
L
Linus Torvalds 已提交
628
		.init = &buz_init,
629 630 631 632 633
	}, {
		.type = AVS6EYES,
		.name = "6-Eyes",
		/* AverMedia chose not to brand the 6-Eyes. Thus it
		   can't be autodetected, and requires card=x. */
634 635 636 637 638 639
		.i2c_decoder = "ks0127",
		.mod_decoder = "ks0127",
		.addrs_decoder = ks0127_addrs,
		.i2c_encoder = "bt866",
		.mod_encoder = "bt866",
		.addrs_encoder = bt866_addrs,
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
		.video_codec = CODEC_TYPE_ZR36060,

		.inputs = 10,
		.input = {
			{ 0, "Composite 1" },
			{ 1, "Composite 2" },
			{ 2, "Composite 3" },
			{ 4, "Composite 4" },
			{ 5, "Composite 5" },
			{ 6, "Composite 6" },
			{ 8, "S-Video 1" },
			{ 9, "S-Video 2" },
			{10, "S-Video 3" },
			{15, "YCbCr" }
		},
655
		.norms = V4L2_STD_NTSC|V4L2_STD_PAL,
656 657 658 659 660 661 662 663 664 665 666 667 668 669
		.tvn = {
			&f50ccir601_avs6eyes,
			&f60ccir601_avs6eyes,
			NULL
		},
		.jpeg_int = ZR36057_ISR_GIRQ1,
		.vsync_int = ZR36057_ISR_GIRQ0,
		.gpio = { 1, 0, 3, -1, -1, -1, -1, -1 },// Validity unknown /Sam
		.gpio_pol = { 0, 0, 0, 0, 0, 0, 0, 0 }, // Validity unknown /Sam
		.gpcs = { 3, 1 },			// Validity unknown /Sam
		.vfe_pol = { 1, 0, 0, 0, 0, 1, 0, 0 },  // Validity unknown /Sam
		.gws_not_connected = 1,
		.input_mux = 1,
		.init = &avs6eyes_init,
L
Linus Torvalds 已提交
670
	}
671

L
Linus Torvalds 已提交
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 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
};

/*
 * I2C functions
 */
/* software I2C functions */
static int
zoran_i2c_getsda (void *data)
{
	struct zoran *zr = (struct zoran *) data;

	return (btread(ZR36057_I2CBR) >> 1) & 1;
}

static int
zoran_i2c_getscl (void *data)
{
	struct zoran *zr = (struct zoran *) data;

	return btread(ZR36057_I2CBR) & 1;
}

static void
zoran_i2c_setsda (void *data,
		  int   state)
{
	struct zoran *zr = (struct zoran *) data;

	if (state)
		zr->i2cbr |= 2;
	else
		zr->i2cbr &= ~2;
	btwrite(zr->i2cbr, ZR36057_I2CBR);
}

static void
zoran_i2c_setscl (void *data,
		  int   state)
{
	struct zoran *zr = (struct zoran *) data;

	if (state)
		zr->i2cbr |= 1;
	else
		zr->i2cbr &= ~1;
	btwrite(zr->i2cbr, ZR36057_I2CBR);
}

720
static const struct i2c_algo_bit_data zoran_i2c_bit_data_template = {
L
Linus Torvalds 已提交
721 722 723 724 725 726 727 728 729 730 731 732 733 734
	.setsda = zoran_i2c_setsda,
	.setscl = zoran_i2c_setscl,
	.getsda = zoran_i2c_getsda,
	.getscl = zoran_i2c_getscl,
	.udelay = 10,
	.timeout = 100,
};

static int
zoran_register_i2c (struct zoran *zr)
{
	memcpy(&zr->i2c_algo, &zoran_i2c_bit_data_template,
	       sizeof(struct i2c_algo_bit_data));
	zr->i2c_algo.data = zr;
735 736 737
	zr->i2c_adapter.id = I2C_HW_B_ZR36067;
	strlcpy(zr->i2c_adapter.name, ZR_DEVNAME(zr),
		sizeof(zr->i2c_adapter.name));
738
	i2c_set_adapdata(&zr->i2c_adapter, &zr->v4l2_dev);
L
Linus Torvalds 已提交
739
	zr->i2c_adapter.algo_data = &zr->i2c_algo;
740
	zr->i2c_adapter.dev.parent = &zr->pci_dev->dev;
L
Linus Torvalds 已提交
741 742 743 744 745 746
	return i2c_bit_add_bus(&zr->i2c_adapter);
}

static void
zoran_unregister_i2c (struct zoran *zr)
{
747
	i2c_del_adapter(&zr->i2c_adapter);
L
Linus Torvalds 已提交
748 749 750 751 752 753
}

/* Check a zoran_params struct for correctness, insert default params */

int
zoran_check_jpg_settings (struct zoran              *zr,
754 755
			  struct zoran_jpg_settings *settings,
			  int try)
L
Linus Torvalds 已提交
756 757 758 759 760
{
	int err = 0, err0 = 0;

	dprintk(4,
		KERN_DEBUG
761 762
		"%s: %s - dec: %d, Hdcm: %d, Vdcm: %d, Tdcm: %d\n",
		ZR_DEVNAME(zr), __func__, settings->decimation, settings->HorDcm,
L
Linus Torvalds 已提交
763 764 765
		settings->VerDcm, settings->TmpDcm);
	dprintk(4,
		KERN_DEBUG
766 767
		"%s: %s - x: %d, y: %d, w: %d, y: %d\n",
		ZR_DEVNAME(zr), __func__, settings->img_x, settings->img_y,
L
Linus Torvalds 已提交
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
		settings->img_width, settings->img_height);
	/* Check decimation, set default values for decimation = 1, 2, 4 */
	switch (settings->decimation) {
	case 1:

		settings->HorDcm = 1;
		settings->VerDcm = 1;
		settings->TmpDcm = 1;
		settings->field_per_buff = 2;
		settings->img_x = 0;
		settings->img_y = 0;
		settings->img_width = BUZ_MAX_WIDTH;
		settings->img_height = BUZ_MAX_HEIGHT / 2;
		break;
	case 2:

		settings->HorDcm = 2;
		settings->VerDcm = 1;
		settings->TmpDcm = 2;
		settings->field_per_buff = 1;
		settings->img_x = (BUZ_MAX_WIDTH == 720) ? 8 : 0;
		settings->img_y = 0;
		settings->img_width =
		    (BUZ_MAX_WIDTH == 720) ? 704 : BUZ_MAX_WIDTH;
		settings->img_height = BUZ_MAX_HEIGHT / 2;
		break;
	case 4:

		if (zr->card.type == DC10_new) {
			dprintk(1,
				KERN_DEBUG
799 800
				"%s: %s - HDec by 4 is not supported on the DC10\n",
				ZR_DEVNAME(zr), __func__);
L
Linus Torvalds 已提交
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
			err0++;
			break;
		}

		settings->HorDcm = 4;
		settings->VerDcm = 2;
		settings->TmpDcm = 2;
		settings->field_per_buff = 1;
		settings->img_x = (BUZ_MAX_WIDTH == 720) ? 8 : 0;
		settings->img_y = 0;
		settings->img_width =
		    (BUZ_MAX_WIDTH == 720) ? 704 : BUZ_MAX_WIDTH;
		settings->img_height = BUZ_MAX_HEIGHT / 2;
		break;
	case 0:

		/* We have to check the data the user has set */

		if (settings->HorDcm != 1 && settings->HorDcm != 2 &&
820 821
		    (zr->card.type == DC10_new || settings->HorDcm != 4)) {
			settings->HorDcm = clamp(settings->HorDcm, 1, 2);
L
Linus Torvalds 已提交
822
			err0++;
823 824 825
		}
		if (settings->VerDcm != 1 && settings->VerDcm != 2) {
			settings->VerDcm = clamp(settings->VerDcm, 1, 2);
L
Linus Torvalds 已提交
826
			err0++;
827 828 829
		}
		if (settings->TmpDcm != 1 && settings->TmpDcm != 2) {
			settings->TmpDcm = clamp(settings->TmpDcm, 1, 2);
L
Linus Torvalds 已提交
830
			err0++;
831
		}
L
Linus Torvalds 已提交
832
		if (settings->field_per_buff != 1 &&
833 834
		    settings->field_per_buff != 2) {
			settings->field_per_buff = clamp(settings->field_per_buff, 1, 2);
L
Linus Torvalds 已提交
835
			err0++;
836 837 838
		}
		if (settings->img_x < 0) {
			settings->img_x = 0;
L
Linus Torvalds 已提交
839
			err0++;
840 841 842
		}
		if (settings->img_y < 0) {
			settings->img_y = 0;
L
Linus Torvalds 已提交
843
			err0++;
844 845 846
		}
		if (settings->img_width < 0 || settings->img_width > BUZ_MAX_WIDTH) {
			settings->img_width = clamp(settings->img_width, 0, (int)BUZ_MAX_WIDTH);
L
Linus Torvalds 已提交
847
			err0++;
848 849 850
		}
		if (settings->img_height < 0 || settings->img_height > BUZ_MAX_HEIGHT / 2) {
			settings->img_height = clamp(settings->img_height, 0, BUZ_MAX_HEIGHT / 2);
L
Linus Torvalds 已提交
851
			err0++;
852 853 854 855 856 857 858
		}
		if (settings->img_x + settings->img_width > BUZ_MAX_WIDTH) {
			settings->img_x = BUZ_MAX_WIDTH - settings->img_width;
			err0++;
		}
		if (settings->img_y + settings->img_height > BUZ_MAX_HEIGHT / 2) {
			settings->img_y = BUZ_MAX_HEIGHT / 2 - settings->img_height;
L
Linus Torvalds 已提交
859
			err0++;
860 861 862 863 864 865 866 867 868 869 870
		}
		if (settings->img_width % (16 * settings->HorDcm) != 0) {
			settings->img_width -= settings->img_width % (16 * settings->HorDcm);
			if (settings->img_width == 0)
				settings->img_width = 16 * settings->HorDcm;
			err0++;
		}
		if (settings->img_height % (8 * settings->VerDcm) != 0) {
			settings->img_height -= settings->img_height % (8 * settings->VerDcm);
			if (settings->img_height == 0)
				settings->img_height = 8 * settings->VerDcm;
L
Linus Torvalds 已提交
871 872 873
			err0++;
		}

874
		if (!try && err0) {
L
Linus Torvalds 已提交
875 876
			dprintk(1,
				KERN_ERR
877 878
				"%s: %s - error in params for decimation = 0\n",
				ZR_DEVNAME(zr), __func__);
L
Linus Torvalds 已提交
879 880 881 882 883 884
			err++;
		}
		break;
	default:
		dprintk(1,
			KERN_ERR
885 886
			"%s: %s - decimation = %d, must be 0, 1, 2 or 4\n",
			ZR_DEVNAME(zr), __func__, settings->decimation);
L
Linus Torvalds 已提交
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
		err++;
		break;
	}

	if (settings->jpg_comp.quality > 100)
		settings->jpg_comp.quality = 100;
	if (settings->jpg_comp.quality < 5)
		settings->jpg_comp.quality = 5;
	if (settings->jpg_comp.APPn < 0)
		settings->jpg_comp.APPn = 0;
	if (settings->jpg_comp.APPn > 15)
		settings->jpg_comp.APPn = 15;
	if (settings->jpg_comp.APP_len < 0)
		settings->jpg_comp.APP_len = 0;
	if (settings->jpg_comp.APP_len > 60)
		settings->jpg_comp.APP_len = 60;
	if (settings->jpg_comp.COM_len < 0)
		settings->jpg_comp.COM_len = 0;
	if (settings->jpg_comp.COM_len > 60)
		settings->jpg_comp.COM_len = 60;
	if (err)
		return -EINVAL;
	return 0;
}

void
zoran_open_init_params (struct zoran *zr)
{
	int i;

	/* User must explicitly set a window */
	zr->overlay_settings.is_set = 0;
	zr->overlay_mask = NULL;
	zr->overlay_active = ZORAN_FREE;

	zr->v4l_memgrab_active = 0;
	zr->v4l_overlay_active = 0;
	zr->v4l_grab_frame = NO_GRAB_ACTIVE;
	zr->v4l_grab_seq = 0;
	zr->v4l_settings.width = 192;
	zr->v4l_settings.height = 144;
928
	zr->v4l_settings.format = &zoran_formats[7];	/* YUY2 - YUV-4:2:2 packed */
L
Linus Torvalds 已提交
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
	zr->v4l_settings.bytesperline =
	    zr->v4l_settings.width *
	    ((zr->v4l_settings.format->depth + 7) / 8);

	/* DMA ring stuff for V4L */
	zr->v4l_pend_tail = 0;
	zr->v4l_pend_head = 0;
	zr->v4l_sync_tail = 0;
	zr->v4l_buffers.active = ZORAN_FREE;
	for (i = 0; i < VIDEO_MAX_FRAME; i++) {
		zr->v4l_buffers.buffer[i].state = BUZ_STATE_USER;	/* nothing going on */
	}
	zr->v4l_buffers.allocated = 0;

	for (i = 0; i < BUZ_MAX_FRAME; i++) {
		zr->jpg_buffers.buffer[i].state = BUZ_STATE_USER;	/* nothing going on */
	}
	zr->jpg_buffers.active = ZORAN_FREE;
	zr->jpg_buffers.allocated = 0;
	/* Set necessary params and call zoran_check_jpg_settings to set the defaults */
	zr->jpg_settings.decimation = 1;
	zr->jpg_settings.jpg_comp.quality = 50;	/* default compression factor 8 */
	if (zr->card.type != BUZ)
		zr->jpg_settings.odd_even = 1;
	else
		zr->jpg_settings.odd_even = 0;
	zr->jpg_settings.jpg_comp.APPn = 0;
	zr->jpg_settings.jpg_comp.APP_len = 0;	/* No APPn marker */
	memset(zr->jpg_settings.jpg_comp.APP_data, 0,
	       sizeof(zr->jpg_settings.jpg_comp.APP_data));
	zr->jpg_settings.jpg_comp.COM_len = 0;	/* No COM marker */
	memset(zr->jpg_settings.jpg_comp.COM_data, 0,
	       sizeof(zr->jpg_settings.jpg_comp.COM_data));
	zr->jpg_settings.jpg_comp.jpeg_markers =
	    JPEG_MARKER_DHT | JPEG_MARKER_DQT;
964
	i = zoran_check_jpg_settings(zr, &zr->jpg_settings, 0);
L
Linus Torvalds 已提交
965
	if (i)
966 967
		dprintk(1, KERN_ERR "%s: %s internal error\n",
			ZR_DEVNAME(zr), __func__);
L
Linus Torvalds 已提交
968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993

	clear_interrupt_counters(zr);
	zr->testing = 0;
}

static void __devinit
test_interrupts (struct zoran *zr)
{
	DEFINE_WAIT(wait);
	int timeout, icr;

	clear_interrupt_counters(zr);

	zr->testing = 1;
	icr = btread(ZR36057_ICR);
	btwrite(0x78000000 | ZR36057_ICR_IntPinEn, ZR36057_ICR);
	prepare_to_wait(&zr->test_q, &wait, TASK_INTERRUPTIBLE);
	timeout = schedule_timeout(HZ);
	finish_wait(&zr->test_q, &wait);
	btwrite(0, ZR36057_ICR);
	btwrite(0x78000000, ZR36057_ISR);
	zr->testing = 0;
	dprintk(5, KERN_INFO "%s: Testing interrupts...\n", ZR_DEVNAME(zr));
	if (timeout) {
		dprintk(1, ": time spent: %d\n", 1 * HZ - timeout);
	}
994
	if (zr36067_debug > 1)
L
Linus Torvalds 已提交
995 996 997 998 999 1000 1001
		print_interrupts(zr);
	btwrite(icr, ZR36057_ICR);
}

static int __devinit
zr36057_init (struct zoran *zr)
{
1002
	int j, err;
L
Linus Torvalds 已提交
1003 1004 1005

	dprintk(1,
		KERN_INFO
1006 1007
		"%s: %s - initializing card[%d], zr=%p\n",
		ZR_DEVNAME(zr), __func__, zr->id, zr);
L
Linus Torvalds 已提交
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017

	/* default setup of all parameters which will persist between opens */
	zr->user = 0;

	init_waitqueue_head(&zr->v4l_capq);
	init_waitqueue_head(&zr->jpg_capq);
	init_waitqueue_head(&zr->test_q);
	zr->jpg_buffers.allocated = 0;
	zr->v4l_buffers.allocated = 0;

1018 1019 1020 1021 1022
	zr->vbuf_base = (void *) vidmem;
	zr->vbuf_width = 0;
	zr->vbuf_height = 0;
	zr->vbuf_depth = 0;
	zr->vbuf_bytesperline = 0;
L
Linus Torvalds 已提交
1023 1024

	/* Avoid nonsense settings from user for default input/norm */
1025 1026 1027
	if (default_norm < 0 && default_norm > 2)
		default_norm = 0;
	if (default_norm == 0) {
1028 1029
		zr->norm = V4L2_STD_PAL;
		zr->timing = zr->card.tvn[0];
1030
	} else if (default_norm == 1) {
1031 1032 1033 1034 1035 1036 1037
		zr->norm = V4L2_STD_NTSC;
		zr->timing = zr->card.tvn[1];
	} else {
		zr->norm = V4L2_STD_SECAM;
		zr->timing = zr->card.tvn[2];
	}
	if (zr->timing == NULL) {
L
Linus Torvalds 已提交
1038 1039
		dprintk(1,
			KERN_WARNING
1040 1041
			"%s: %s - default TV standard not supported by hardware. PAL will be used.\n",
			ZR_DEVNAME(zr), __func__);
1042 1043
		zr->norm = V4L2_STD_PAL;
		zr->timing = zr->card.tvn[0];
L
Linus Torvalds 已提交
1044 1045
	}

1046 1047 1048 1049 1050 1051 1052 1053
	if (default_input > zr->card.inputs-1) {
		dprintk(1,
			KERN_WARNING
			"%s: default_input value %d out of range (0-%d)\n",
			ZR_DEVNAME(zr), default_input, zr->card.inputs-1);
		default_input = 0;
	}
	zr->input = default_input;
L
Linus Torvalds 已提交
1054 1055 1056 1057 1058 1059

	/* default setup (will be repeated at every open) */
	zoran_open_init_params(zr);

	/* allocate memory *before* doing anything to the hardware
	 * in case allocation fails */
1060 1061 1062
	zr->stat_com = kzalloc(BUZ_NUM_STAT_COM * 4, GFP_KERNEL);
	zr->video_dev = kmalloc(sizeof(struct video_device), GFP_KERNEL);
	if (!zr->stat_com || !zr->video_dev) {
L
Linus Torvalds 已提交
1063 1064
		dprintk(1,
			KERN_ERR
1065 1066
			"%s: %s - kmalloc (STAT_COM) failed\n",
			ZR_DEVNAME(zr), __func__);
1067 1068
		err = -ENOMEM;
		goto exit_free;
L
Linus Torvalds 已提交
1069 1070
	}
	for (j = 0; j < BUZ_NUM_STAT_COM; j++) {
1071
		zr->stat_com[j] = cpu_to_le32(1); /* mark as unavailable to zr36057 */
L
Linus Torvalds 已提交
1072 1073 1074 1075 1076 1077
	}

	/*
	 *   Now add the template and register the device unit.
	 */
	memcpy(zr->video_dev, &zoran_template, sizeof(zoran_template));
1078
	zr->video_dev->parent = &zr->pci_dev->dev;
L
Linus Torvalds 已提交
1079
	strcpy(zr->video_dev->name, ZR_DEVNAME(zr));
1080
	err = video_register_device(zr->video_dev, VFL_TYPE_GRABBER, video_nr[zr->id]);
1081
	if (err < 0)
1082
		goto exit_free;
1083
	video_set_drvdata(zr->video_dev, zr);
L
Linus Torvalds 已提交
1084 1085

	zoran_init_hardware(zr);
1086
	if (zr36067_debug > 2)
L
Linus Torvalds 已提交
1087 1088 1089
		detect_guest_activity(zr);
	test_interrupts(zr);
	if (!pass_through) {
1090 1091
		struct v4l2_routing route = { 2, 0 };

1092 1093
		decoder_call(zr, video, s_stream, 0);
		encoder_call(zr, video, s_routing, &route);
L
Linus Torvalds 已提交
1094 1095 1096 1097 1098
	}

	zr->zoran_proc = NULL;
	zr->initialized = 1;
	return 0;
1099 1100 1101 1102 1103

exit_free:
	kfree(zr->stat_com);
	kfree(zr->video_dev);
	return err;
L
Linus Torvalds 已提交
1104 1105
}

1106
static void __devexit zoran_remove(struct pci_dev *pdev)
L
Linus Torvalds 已提交
1107
{
1108 1109
	struct v4l2_device *v4l2_dev = dev_get_drvdata(&pdev->dev);
	struct zoran *zr = to_zoran(v4l2_dev);
1110

L
Linus Torvalds 已提交
1111
	if (!zr->initialized)
1112
		goto exit_free;
1113

L
Linus Torvalds 已提交
1114 1115 1116
	/* unregister videocodec bus */
	if (zr->codec) {
		struct videocodec_master *master = zr->codec->master_data;
J
Jesper Juhl 已提交
1117

L
Linus Torvalds 已提交
1118
		videocodec_detach(zr->codec);
J
Jesper Juhl 已提交
1119
		kfree(master);
L
Linus Torvalds 已提交
1120 1121 1122
	}
	if (zr->vfe) {
		struct videocodec_master *master = zr->vfe->master_data;
J
Jesper Juhl 已提交
1123

L
Linus Torvalds 已提交
1124
		videocodec_detach(zr->vfe);
J
Jesper Juhl 已提交
1125
		kfree(master);
L
Linus Torvalds 已提交
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
	}

	/* unregister i2c bus */
	zoran_unregister_i2c(zr);
	/* disable PCI bus-mastering */
	zoran_set_pci_master(zr, 0);
	/* put chip into reset */
	btwrite(0, ZR36057_SPGPPCR);
	free_irq(zr->pci_dev->irq, zr);
	/* unmap and free memory */
1136
	kfree(zr->stat_com);
L
Linus Torvalds 已提交
1137 1138 1139 1140
	zoran_proc_cleanup(zr);
	iounmap(zr->zr36057_mem);
	pci_disable_device(zr->pci_dev);
	video_unregister_device(zr->video_dev);
1141
exit_free:
1142
	v4l2_device_unregister(&zr->v4l2_dev);
1143
	kfree(zr);
L
Linus Torvalds 已提交
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
}

void
zoran_vdev_release (struct video_device *vdev)
{
	kfree(vdev);
}

static struct videocodec_master * __devinit
zoran_setup_videocodec (struct zoran *zr,
			int           type)
{
	struct videocodec_master *m = NULL;

	m = kmalloc(sizeof(struct videocodec_master), GFP_KERNEL);
	if (!m) {
1160 1161
		dprintk(1, KERN_ERR "%s: %s - no memory\n",
			ZR_DEVNAME(zr), __func__);
L
Linus Torvalds 已提交
1162 1163 1164
		return m;
	}

1165 1166 1167 1168 1169 1170 1171 1172
	/* magic and type are unused for master struct. Makes sense only at
	   codec structs.
	   In the past, .type were initialized to the old V4L1 .hardware
	   value, as VID_HARDWARE_ZR36067
	 */
	m->magic = 0L;
	m->type = 0;

L
Linus Torvalds 已提交
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
	m->flags = CODEC_FLAG_ENCODER | CODEC_FLAG_DECODER;
	strncpy(m->name, ZR_DEVNAME(zr), sizeof(m->name));
	m->data = zr;

	switch (type)
	{
	case CODEC_TYPE_ZR36060:
		m->readreg = zr36060_read;
		m->writereg = zr36060_write;
		m->flags |= CODEC_FLAG_JPEG | CODEC_FLAG_VFE;
		break;
	case CODEC_TYPE_ZR36050:
		m->readreg = zr36050_read;
		m->writereg = zr36050_write;
		m->flags |= CODEC_FLAG_JPEG;
		break;
	case CODEC_TYPE_ZR36016:
		m->readreg = zr36016_read;
		m->writereg = zr36016_write;
		m->flags |= CODEC_FLAG_VFE;
		break;
	}

	return m;
}

1199
static void zoran_subdev_notify(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
{
	struct zoran *zr = to_zoran(sd->v4l2_dev);

	/* Bt819 needs to reset its FIFO buffer using #FRST pin and
	   LML33 card uses GPIO(7) for that. */
	if (cmd == BT819_FIFO_RESET_LOW)
		GPIO(zr, 7, 0);
	else if (cmd == BT819_FIFO_RESET_HIGH)
		GPIO(zr, 7, 1);
}

L
Linus Torvalds 已提交
1211
/*
J
Joe Perches 已提交
1212
 *   Scan for a Buz card (actually for the PCI controller ZR36057),
L
Linus Torvalds 已提交
1213 1214
 *   request the irq and map the io memory
 */
1215 1216
static int __devinit zoran_probe(struct pci_dev *pdev,
				 const struct pci_device_id *ent)
L
Linus Torvalds 已提交
1217 1218 1219 1220 1221 1222 1223
{
	unsigned char latency, need_latency;
	struct zoran *zr;
	int result;
	struct videocodec_master *master_vfe = NULL;
	struct videocodec_master *master_codec = NULL;
	int card_num;
1224
	char *codec_name, *vfe_name;
1225
	unsigned int nr;
L
Linus Torvalds 已提交
1226 1227


1228
	nr = zoran_num++;
1229
	if (nr >= BUZ_MAX) {
1230
		dprintk(1, KERN_ERR "%s: driver limited to %d card(s) maximum\n",
1231 1232 1233
			ZORAN_NAME, BUZ_MAX);
		return -ENOENT;
	}
L
Linus Torvalds 已提交
1234

1235 1236
	zr = kzalloc(sizeof(struct zoran), GFP_KERNEL);
	if (!zr) {
1237 1238
		dprintk(1, KERN_ERR "%s: %s - kzalloc failed\n",
			ZORAN_NAME, __func__);
1239 1240
		return -ENOMEM;
	}
1241
	zr->v4l2_dev.notify = zoran_subdev_notify;
1242 1243
	if (v4l2_device_register(&pdev->dev, &zr->v4l2_dev))
		goto zr_free_mem;
1244 1245 1246 1247 1248 1249
	zr->pci_dev = pdev;
	zr->id = nr;
	snprintf(ZR_DEVNAME(zr), sizeof(ZR_DEVNAME(zr)), "MJPEG[%u]", zr->id);
	spin_lock_init(&zr->spinlock);
	mutex_init(&zr->resource_lock);
	if (pci_enable_device(pdev))
1250
		goto zr_unreg;
1251
	pci_read_config_byte(zr->pci_dev, PCI_CLASS_REVISION, &zr->revision);
1252 1253 1254

	dprintk(1,
		KERN_INFO
1255
		"%s: Zoran ZR360%c7 (rev %d), irq: %d, memory: 0x%08llx\n",
1256
		ZR_DEVNAME(zr), zr->revision < 2 ? '5' : '6', zr->revision,
1257
		zr->pci_dev->irq, (uint64_t)pci_resource_start(zr->pci_dev, 0));
1258
	if (zr->revision >= 2) {
1259 1260
		dprintk(1,
			KERN_INFO
1261 1262 1263 1264
			"%s: Subsystem vendor=0x%04x id=0x%04x\n",
			ZR_DEVNAME(zr), zr->pci_dev->subsystem_vendor,
			zr->pci_dev->subsystem_device);
	}
L
Linus Torvalds 已提交
1265

1266 1267 1268
	/* Use auto-detected card type? */
	if (card[nr] == -1) {
		if (zr->revision < 2) {
L
Linus Torvalds 已提交
1269 1270
			dprintk(1,
				KERN_ERR
1271 1272 1273 1274 1275
				"%s: No card type specified, please use the card=X module parameter\n",
				ZR_DEVNAME(zr));
			dprintk(1,
				KERN_ERR
				"%s: It is not possible to auto-detect ZR36057 based cards\n",
L
Linus Torvalds 已提交
1276
				ZR_DEVNAME(zr));
1277
			goto zr_unreg;
L
Linus Torvalds 已提交
1278 1279
		}

1280 1281 1282 1283 1284
		card_num = ent->driver_data;
		if (card_num >= NUM_CARDS) {
			dprintk(1,
				KERN_ERR
				"%s: Unknown card, try specifying card=X module parameter\n",
1285
				ZR_DEVNAME(zr));
1286
			goto zr_unreg;
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
		}
		dprintk(3,
			KERN_DEBUG
			"%s: %s() - card %s detected\n",
			ZR_DEVNAME(zr), __func__, zoran_cards[card_num].name);
	} else {
		card_num = card[nr];
		if (card_num >= NUM_CARDS || card_num < 0) {
			dprintk(1,
				KERN_ERR
				"%s: User specified card type %d out of range (0 .. %d)\n",
				ZR_DEVNAME(zr), card_num, NUM_CARDS - 1);
1299
			goto zr_unreg;
L
Linus Torvalds 已提交
1300
		}
1301
	}
L
Linus Torvalds 已提交
1302

1303 1304 1305 1306 1307 1308 1309 1310 1311
	/* even though we make this a non pointer and thus
	 * theoretically allow for making changes to this struct
	 * on a per-individual card basis at runtime, this is
	 * strongly discouraged. This structure is intended to
	 * keep general card information, no settings or anything */
	zr->card = zoran_cards[card_num];
	snprintf(ZR_DEVNAME(zr), sizeof(ZR_DEVNAME(zr)),
		 "%s[%u]", zr->card.name, zr->id);

1312
	zr->zr36057_mem = pci_ioremap_bar(zr->pci_dev, 0);
1313
	if (!zr->zr36057_mem) {
1314
		dprintk(1, KERN_ERR "%s: %s() - ioremap failed\n",
1315
			ZR_DEVNAME(zr), __func__);
1316
		goto zr_unreg;
1317
	}
L
Linus Torvalds 已提交
1318

1319 1320 1321 1322 1323 1324
	result = request_irq(zr->pci_dev->irq, zoran_irq,
			     IRQF_SHARED | IRQF_DISABLED, ZR_DEVNAME(zr), zr);
	if (result < 0) {
		if (result == -EINVAL) {
			dprintk(1,
				KERN_ERR
1325 1326
				"%s: %s - bad irq number or handler\n",
				ZR_DEVNAME(zr), __func__);
1327 1328 1329
		} else if (result == -EBUSY) {
			dprintk(1,
				KERN_ERR
1330 1331
				"%s: %s - IRQ %d busy, change your PnP config in BIOS\n",
				ZR_DEVNAME(zr), __func__, zr->pci_dev->irq);
L
Linus Torvalds 已提交
1332
		} else {
1333 1334
			dprintk(1,
				KERN_ERR
1335 1336
				"%s: %s - can't assign irq, error code %d\n",
				ZR_DEVNAME(zr), __func__, result);
L
Linus Torvalds 已提交
1337
		}
1338 1339
		goto zr_unmap;
	}
L
Linus Torvalds 已提交
1340

1341 1342 1343 1344 1345
	/* set PCI latency timer */
	pci_read_config_byte(zr->pci_dev, PCI_LATENCY_TIMER,
			     &latency);
	need_latency = zr->revision > 1 ? 32 : 48;
	if (latency != need_latency) {
1346
		dprintk(2, KERN_INFO "%s: Changing PCI latency from %d to %d\n",
1347 1348 1349 1350
			ZR_DEVNAME(zr), latency, need_latency);
		pci_write_config_byte(zr->pci_dev, PCI_LATENCY_TIMER,
				      need_latency);
	}
L
Linus Torvalds 已提交
1351

1352 1353 1354 1355 1356 1357
	zr36057_restart(zr);
	/* i2c */
	dprintk(2, KERN_INFO "%s: Initializing i2c bus...\n",
		ZR_DEVNAME(zr));

	if (zoran_register_i2c(zr) < 0) {
1358 1359
		dprintk(1, KERN_ERR "%s: %s - can't initialize i2c bus\n",
			ZR_DEVNAME(zr), __func__);
1360 1361
		goto zr_free_irq;
	}
L
Linus Torvalds 已提交
1362

1363 1364 1365 1366 1367 1368 1369 1370
	zr->decoder = v4l2_i2c_new_probed_subdev(&zr->i2c_adapter,
		zr->card.mod_decoder, zr->card.i2c_decoder, zr->card.addrs_decoder);

	if (zr->card.mod_encoder)
		zr->encoder = v4l2_i2c_new_probed_subdev(&zr->i2c_adapter,
			zr->card.mod_encoder, zr->card.i2c_encoder,
			zr->card.addrs_encoder);

1371 1372 1373 1374 1375 1376 1377 1378 1379
	dprintk(2,
		KERN_INFO "%s: Initializing videocodec bus...\n",
		ZR_DEVNAME(zr));

	if (zr->card.video_codec) {
		codec_name = codecid_to_modulename(zr->card.video_codec);
		if (codec_name) {
			result = request_module(codec_name);
			if (result) {
L
Linus Torvalds 已提交
1380 1381 1382 1383 1384 1385
				dprintk(1,
					KERN_ERR
					"%s: failed to load modules %s: %d\n",
					ZR_DEVNAME(zr), codec_name, result);
			}
		}
1386 1387 1388 1389 1390 1391
	}
	if (zr->card.video_vfe) {
		vfe_name = codecid_to_modulename(zr->card.video_vfe);
		if (vfe_name) {
			result = request_module(vfe_name);
			if (result < 0) {
L
Linus Torvalds 已提交
1392 1393 1394 1395 1396 1397
				dprintk(1,
					KERN_ERR
					"%s: failed to load modules %s: %d\n",
					ZR_DEVNAME(zr), vfe_name, result);
			}
		}
1398
	}
L
Linus Torvalds 已提交
1399

1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
	/* reset JPEG codec */
	jpeg_codec_sleep(zr, 1);
	jpeg_codec_reset(zr);
	/* video bus enabled */
	/* display codec revision */
	if (zr->card.video_codec != 0) {
		master_codec = zoran_setup_videocodec(zr, zr->card.video_codec);
		if (!master_codec)
			goto zr_unreg_i2c;
		zr->codec = videocodec_attach(master_codec);
		if (!zr->codec) {
1411 1412
			dprintk(1, KERN_ERR "%s: %s - no codec found\n",
				ZR_DEVNAME(zr), __func__);
1413
			goto zr_free_codec;
L
Linus Torvalds 已提交
1414
		}
1415
		if (zr->codec->type != zr->card.video_codec) {
1416 1417
			dprintk(1, KERN_ERR "%s: %s - wrong codec\n",
				ZR_DEVNAME(zr), __func__);
1418
			goto zr_detach_codec;
L
Linus Torvalds 已提交
1419 1420
		}
	}
1421 1422 1423 1424 1425 1426
	if (zr->card.video_vfe != 0) {
		master_vfe = zoran_setup_videocodec(zr, zr->card.video_vfe);
		if (!master_vfe)
			goto zr_detach_codec;
		zr->vfe = videocodec_attach(master_vfe);
		if (!zr->vfe) {
1427 1428
			dprintk(1, KERN_ERR "%s: %s - no VFE found\n",
				ZR_DEVNAME(zr), __func__);
1429 1430 1431
			goto zr_free_vfe;
		}
		if (zr->vfe->type != zr->card.video_vfe) {
1432 1433
			dprintk(1, KERN_ERR "%s: %s = wrong VFE\n",
				ZR_DEVNAME(zr), __func__);
1434 1435 1436
			goto zr_detach_vfe;
		}
	}
1437

1438 1439 1440
	/* take care of Natoma chipset and a revision 1 zr36057 */
	if ((pci_pci_problems & PCIPCI_NATOMA) && zr->revision <= 1) {
		zr->jpg_buffers.need_contiguous = 1;
1441
		dprintk(1, KERN_INFO
1442 1443
			"%s: ZR36057/Natoma bug, max. buffer size is 128K\n",
			ZR_DEVNAME(zr));
L
Linus Torvalds 已提交
1444
	}
1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467

	if (zr36057_init(zr) < 0)
		goto zr_detach_vfe;

	zoran_proc_init(zr);

	return 0;

zr_detach_vfe:
	videocodec_detach(zr->vfe);
zr_free_vfe:
	kfree(master_vfe);
zr_detach_codec:
	videocodec_detach(zr->codec);
zr_free_codec:
	kfree(master_codec);
zr_unreg_i2c:
	zoran_unregister_i2c(zr);
zr_free_irq:
	btwrite(0, ZR36057_SPGPPCR);
	free_irq(zr->pci_dev->irq, zr);
zr_unmap:
	iounmap(zr->zr36057_mem);
1468 1469
zr_unreg:
	v4l2_device_unregister(&zr->v4l2_dev);
1470 1471 1472 1473
zr_free_mem:
	kfree(zr);

	return -ENODEV;
L
Linus Torvalds 已提交
1474 1475
}

1476 1477 1478 1479 1480 1481 1482 1483
static struct pci_driver zoran_driver = {
	.name = "zr36067",
	.id_table = zr36067_pci_tbl,
	.probe = zoran_probe,
	.remove = zoran_remove,
};

static int __init zoran_init(void)
L
Linus Torvalds 已提交
1484
{
1485
	int res;
L
Linus Torvalds 已提交
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520

	printk(KERN_INFO "Zoran MJPEG board driver version %d.%d.%d\n",
	       MAJOR_VERSION, MINOR_VERSION, RELEASE_VERSION);

	/* check the parameters we have been given, adjust if necessary */
	if (v4l_nbufs < 2)
		v4l_nbufs = 2;
	if (v4l_nbufs > VIDEO_MAX_FRAME)
		v4l_nbufs = VIDEO_MAX_FRAME;
	/* The user specfies the in KB, we want them in byte
	 * (and page aligned) */
	v4l_bufsize = PAGE_ALIGN(v4l_bufsize * 1024);
	if (v4l_bufsize < 32768)
		v4l_bufsize = 32768;
	/* 2 MB is arbitrary but sufficient for the maximum possible images */
	if (v4l_bufsize > 2048 * 1024)
		v4l_bufsize = 2048 * 1024;
	if (jpg_nbufs < 4)
		jpg_nbufs = 4;
	if (jpg_nbufs > BUZ_MAX_FRAME)
		jpg_nbufs = BUZ_MAX_FRAME;
	jpg_bufsize = PAGE_ALIGN(jpg_bufsize * 1024);
	if (jpg_bufsize < 8192)
		jpg_bufsize = 8192;
	if (jpg_bufsize > (512 * 1024))
		jpg_bufsize = 512 * 1024;
	/* Use parameter for vidmem or try to find a video card */
	if (vidmem) {
		dprintk(1,
			KERN_INFO
			"%s: Using supplied video memory base address @ 0x%lx\n",
			ZORAN_NAME, vidmem);
	}

	/* some mainboards might not do PCI-PCI data transfer well */
1521
	if (pci_pci_problems & (PCIPCI_FAIL|PCIAGP_FAIL|PCIPCI_ALIMAGIK)) {
L
Linus Torvalds 已提交
1522 1523
		dprintk(1,
			KERN_WARNING
1524
			"%s: chipset does not support reliable PCI-PCI DMA\n",
L
Linus Torvalds 已提交
1525 1526 1527
			ZORAN_NAME);
	}

1528 1529 1530 1531 1532 1533 1534
	res = pci_register_driver(&zoran_driver);
	if (res) {
		dprintk(1,
			KERN_ERR
			"%s: Unable to register ZR36057 driver\n",
			ZORAN_NAME);
		return res;
L
Linus Torvalds 已提交
1535 1536 1537 1538 1539
	}

	return 0;
}

1540
static void __exit zoran_exit(void)
L
Linus Torvalds 已提交
1541
{
1542
	pci_unregister_driver(&zoran_driver);
L
Linus Torvalds 已提交
1543 1544
}

1545 1546
module_init(zoran_init);
module_exit(zoran_exit);