m5602_ov9650.c 16.9 KB
Newer Older
1 2 3
/*
 * Driver for the ov9650 sensor
 *
4
 * Copyright (C) 2008 Erik Andrén
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * Copyright (C) 2007 Ilyes Gouta. Based on the m5603x Linux Driver Project.
 * Copyright (C) 2005 m5603x Linux Driver Project <m5602@x3ng.com.br>
 *
 * Portions of code to USB interface and ALi driver software,
 * Copyright (c) 2006 Willem Duinker
 * v4l2 interface modeled after the V4L2 driver
 * for SN9C10x PC Camera Controllers
 *
 * 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, version 2.
 *
 */

#include "m5602_ov9650.h"

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
/* Vertically and horizontally flips the image if matched, needed for machines
   where the sensor is mounted upside down */
static
    const
	struct dmi_system_id ov9650_flip_dmi_table[] = {
	{
		.ident = "ASUS A6VC",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "A6VC")
		}
	},
	{
		.ident = "ASUS A6VM",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "A6VM")
		}
	},
	{
		.ident = "ASUS A6JC",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "A6JC")
		}
	},
47 48 49 50 51 52 53
	{
		.ident = "ASUS A6Ja",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "A6J")
		}
	},
54 55 56 57 58 59 60
	{
		.ident = "ASUS A6Kt",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
		}
	},
61 62 63 64 65 66 67
	{
		.ident = "Alienware Aurora m9700",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "alienware"),
			DMI_MATCH(DMI_PRODUCT_NAME, "Aurora m9700")
		}
	},
68 69 70
	{ }
};

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 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
const static struct ctrl ov9650_ctrls[] = {
	{
		{
			.id		= V4L2_CID_EXPOSURE,
			.type		= V4L2_CTRL_TYPE_INTEGER,
			.name		= "exposure",
			.minimum	= 0x00,
			.maximum	= 0xffff,
			.step		= 0x1,
			.default_value 	= EXPOSURE_DEFAULT,
			.flags         	= V4L2_CTRL_FLAG_SLIDER
		},
		.set = ov9650_set_exposure,
		.get = ov9650_get_exposure
	}, {
		{
			.id		= V4L2_CID_GAIN,
			.type		= V4L2_CTRL_TYPE_INTEGER,
			.name		= "gain",
			.minimum	= 0x00,
			.maximum	= 0x3ff,
			.step		= 0x1,
			.default_value	= GAIN_DEFAULT,
			.flags		= V4L2_CTRL_FLAG_SLIDER
		},
		.set = ov9650_set_gain,
		.get = ov9650_get_gain
	}, {
		{
			.type 		= V4L2_CTRL_TYPE_INTEGER,
			.name 		= "red balance",
			.minimum 	= 0x00,
			.maximum 	= 0xff,
			.step 		= 0x1,
			.default_value 	= RED_GAIN_DEFAULT,
			.flags         	= V4L2_CTRL_FLAG_SLIDER
		},
		.set = ov9650_set_red_balance,
		.get = ov9650_get_red_balance
	}, {
		{
			.type 		= V4L2_CTRL_TYPE_INTEGER,
			.name 		= "blue balance",
			.minimum 	= 0x00,
			.maximum 	= 0xff,
			.step 		= 0x1,
			.default_value 	= BLUE_GAIN_DEFAULT,
			.flags         	= V4L2_CTRL_FLAG_SLIDER
		},
		.set = ov9650_set_blue_balance,
		.get = ov9650_get_blue_balance
	}, {
		{
			.id 		= V4L2_CID_HFLIP,
			.type 		= V4L2_CTRL_TYPE_BOOLEAN,
			.name 		= "horizontal flip",
			.minimum 	= 0,
			.maximum 	= 1,
			.step 		= 1,
			.default_value 	= 0
		},
		.set = ov9650_set_hflip,
		.get = ov9650_get_hflip
	}, {
		{
			.id 		= V4L2_CID_VFLIP,
			.type 		= V4L2_CTRL_TYPE_BOOLEAN,
			.name 		= "vertical flip",
			.minimum 	= 0,
			.maximum 	= 1,
			.step 		= 1,
			.default_value 	= 0
		},
		.set = ov9650_set_vflip,
		.get = ov9650_get_vflip
	}, {
		{
			.id 		= V4L2_CID_AUTO_WHITE_BALANCE,
			.type 		= V4L2_CTRL_TYPE_BOOLEAN,
			.name 		= "auto white balance",
			.minimum 	= 0,
			.maximum 	= 1,
			.step 		= 1,
			.default_value 	= 0
		},
		.set = ov9650_set_auto_white_balance,
		.get = ov9650_get_auto_white_balance
	}, {
		{
			.id 		= V4L2_CID_AUTOGAIN,
			.type 		= V4L2_CTRL_TYPE_BOOLEAN,
			.name 		= "auto gain control",
			.minimum 	= 0,
			.maximum 	= 1,
			.step 		= 1,
166
			.default_value 	= 1
167 168 169 170 171 172
		},
		.set = ov9650_set_auto_gain,
		.get = ov9650_get_auto_gain
	}
};

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
static struct v4l2_pix_format ov9650_modes[] = {
	{
		176,
		144,
		V4L2_PIX_FMT_SBGGR8,
		V4L2_FIELD_NONE,
		.sizeimage =
			176 * 144,
		.bytesperline = 176,
		.colorspace = V4L2_COLORSPACE_SRGB,
		.priv = 0
	}, {
		320,
		240,
		V4L2_PIX_FMT_SBGGR8,
		V4L2_FIELD_NONE,
		.sizeimage =
			320 * 240,
		.bytesperline = 320,
		.colorspace = V4L2_COLORSPACE_SRGB,
		.priv = 0
	}, {
		352,
		288,
		V4L2_PIX_FMT_SBGGR8,
		V4L2_FIELD_NONE,
		.sizeimage =
			352 * 288,
		.bytesperline = 352,
		.colorspace = V4L2_COLORSPACE_SRGB,
		.priv = 0
	}, {
		640,
		480,
		V4L2_PIX_FMT_SBGGR8,
		V4L2_FIELD_NONE,
		.sizeimage =
			640 * 480,
		.bytesperline = 640,
		.colorspace = V4L2_COLORSPACE_SRGB,
		.priv = 0
	}
};

217 218
static void ov9650_dump_registers(struct sd *sd);

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
int ov9650_probe(struct sd *sd)
{
	u8 prod_id = 0, ver_id = 0, i;

	if (force_sensor) {
		if (force_sensor == OV9650_SENSOR) {
			info("Forcing an %s sensor", ov9650.name);
			goto sensor_found;
		}
		/* If we want to force another sensor,
		   don't try to probe this one */
		return -ENODEV;
	}

	info("Probing for an ov9650 sensor");

	/* Run the pre-init to actually probe the unit */
	for (i = 0; i < ARRAY_SIZE(preinit_ov9650); i++) {
		u8 data = preinit_ov9650[i][2];
		if (preinit_ov9650[i][0] == SENSOR)
239
			m5602_write_sensor(sd,
240 241 242 243 244
					    preinit_ov9650[i][1], &data, 1);
		else
			m5602_write_bridge(sd, preinit_ov9650[i][1], data);
	}

245
	if (m5602_read_sensor(sd, OV9650_PID, &prod_id, 1))
246 247
		return -ENODEV;

248
	if (m5602_read_sensor(sd, OV9650_VER, &ver_id, 1))
249 250 251 252 253 254 255 256 257 258
		return -ENODEV;

	if ((prod_id == 0x96) && (ver_id == 0x52)) {
		info("Detected an ov9650 sensor");
		goto sensor_found;
	}

	return -ENODEV;

sensor_found:
259 260
	sd->gspca_dev.cam.cam_mode = ov9650_modes;
	sd->gspca_dev.cam.nmodes = ARRAY_SIZE(ov9650_modes);
261
	sd->desc->ctrls = ov9650_ctrls;
262
	sd->desc->nctrls = ARRAY_SIZE(ov9650_ctrls);
263 264 265 266 267 268 269 270 271 272 273 274 275 276
	return 0;
}

int ov9650_init(struct sd *sd)
{
	int i, err = 0;
	u8 data;

	if (dump_sensor)
		ov9650_dump_registers(sd);

	for (i = 0; i < ARRAY_SIZE(init_ov9650) && !err; i++) {
		data = init_ov9650[i][2];
		if (init_ov9650[i][0] == SENSOR)
277
			err = m5602_write_sensor(sd, init_ov9650[i][1],
278 279 280 281 282
						  &data, 1);
		else
			err = m5602_write_bridge(sd, init_ov9650[i][1], data);
	}

283
	if (dmi_check_system(ov9650_flip_dmi_table) && !err) {
284 285
		info("vflip quirk active");
		data = 0x30;
286
		err = m5602_write_sensor(sd, OV9650_MVFP, &data, 1);
287
	}
288

289
	return err;
290 291
}

292 293 294 295 296
int ov9650_start(struct sd *sd)
{
	int i, err = 0;
	struct cam *cam = &sd->gspca_dev.cam;

297 298 299 300
	err = ov9650_init(sd);
	if (err < 0)
		return err;

301 302
	for (i = 0; i < ARRAY_SIZE(res_init_ov9650) && !err; i++) {
		if (res_init_ov9650[i][0] == BRIDGE)
303 304
			err = m5602_write_bridge(sd, res_init_ov9650[i][1],
				res_init_ov9650[i][2]);
305 306
		else if (res_init_ov9650[i][0] == SENSOR) {
			u8 data = res_init_ov9650[i][2];
307 308
			err = m5602_write_sensor(sd,
				res_init_ov9650[i][1], &data, 1);
309 310
		}
	}
311 312 313
	if (err < 0)
		return err;

314
	switch (cam->cam_mode[sd->gspca_dev.curr_mode].width) {
315 316 317 318
	case 640:
		PDEBUG(D_V4L2, "Configuring camera for VGA mode");

		for (i = 0; i < ARRAY_SIZE(VGA_ov9650) && !err; i++) {
319 320 321
			if (VGA_ov9650[i][0] == SENSOR) {
				u8 data = VGA_ov9650[i][2];

322 323
				err = m5602_write_sensor(sd,
					VGA_ov9650[i][1], &data, 1);
324
			} else {
325 326
				err = m5602_write_bridge(sd, VGA_ov9650[i][1],
						VGA_ov9650[i][2]);
327
			}
328 329
		}
		break;
330

331 332 333 334
	case 352:
		PDEBUG(D_V4L2, "Configuring camera for CIF mode");

		for (i = 0; i < ARRAY_SIZE(CIF_ov9650) && !err; i++) {
335 336 337
			if (CIF_ov9650[i][0] == SENSOR) {
				u8 data = CIF_ov9650[i][2];

338 339
				err = m5602_write_sensor(sd,
					CIF_ov9650[i][1], &data, 1);
340
			} else {
341 342
				err = m5602_write_bridge(sd, CIF_ov9650[i][1],
						CIF_ov9650[i][2]);
343
			}
344 345 346
		}
		break;

347 348 349 350
	case 320:
		PDEBUG(D_V4L2, "Configuring camera for QVGA mode");

		for (i = 0; i < ARRAY_SIZE(QVGA_ov9650) && !err; i++) {
351 352 353
			if (QVGA_ov9650[i][0] == SENSOR) {
				u8 data = QVGA_ov9650[i][2];

354 355
				err = m5602_write_sensor(sd,
					QVGA_ov9650[i][1], &data, 1);
356
			} else {
357 358
				err = m5602_write_bridge(sd, QVGA_ov9650[i][1],
						QVGA_ov9650[i][2]);
359
			}
360 361
		}
		break;
362 363 364 365 366

	case 176:
		PDEBUG(D_V4L2, "Configuring camera for QCIF mode");

		for (i = 0; i < ARRAY_SIZE(QCIF_ov9650) && !err; i++) {
367 368
			if (QCIF_ov9650[i][0] == SENSOR) {
				u8 data = QCIF_ov9650[i][2];
369 370
				err = m5602_write_sensor(sd,
					QCIF_ov9650[i][1], &data, 1);
371
			} else {
372 373
				err = m5602_write_bridge(sd, QCIF_ov9650[i][1],
						QCIF_ov9650[i][2]);
374
			}
375 376 377
		}
		break;

378 379 380 381
	}
	return err;
}

382 383 384 385 386 387
int ov9650_stop(struct sd *sd)
{
	u8 data = OV9650_SOFT_SLEEP | OV9650_OUTPUT_DRIVE_2X;
	return m5602_write_sensor(sd, OV9650_COM2, &data, 1);
}

388 389
int ov9650_power_down(struct sd *sd)
{
390 391
	int i, err = 0;
	for (i = 0; i < ARRAY_SIZE(power_down_ov9650) && !err; i++) {
392 393
		u8 data = power_down_ov9650[i][2];
		if (power_down_ov9650[i][0] == SENSOR)
394
			err = m5602_write_sensor(sd,
395 396
					    power_down_ov9650[i][1], &data, 1);
		else
397 398
			err = m5602_write_bridge(sd, power_down_ov9650[i][1],
						 data);
399 400
	}

401
	return err;
402 403 404 405 406 407 408 409
}

int ov9650_get_exposure(struct gspca_dev *gspca_dev, __s32 *val)
{
	struct sd *sd = (struct sd *) gspca_dev;
	u8 i2c_data;
	int err;

410
	err = m5602_read_sensor(sd, OV9650_COM1, &i2c_data, 1);
411
	if (err < 0)
412
		return err;
413 414
	*val = i2c_data & 0x03;

415
	err = m5602_read_sensor(sd, OV9650_AECH, &i2c_data, 1);
416
	if (err < 0)
417
		return err;
418 419
	*val |= (i2c_data << 2);

420
	err = m5602_read_sensor(sd, OV9650_AECHM, &i2c_data, 1);
421
	if (err < 0)
422
		return err;
423 424
	*val |= (i2c_data & 0x3f) << 10;

425
	PDEBUG(D_V4L2, "Read exposure %d", *val);
426

427
	return err;
428 429 430 431 432 433 434 435
}

int ov9650_set_exposure(struct gspca_dev *gspca_dev, __s32 val)
{
	struct sd *sd = (struct sd *) gspca_dev;
	u8 i2c_data;
	int err;

436
	PDEBUG(D_V4L2, "Set exposure to %d",
437 438 439 440
	       val & 0xffff);

	/* The 6 MSBs */
	i2c_data = (val >> 10) & 0x3f;
441
	err = m5602_write_sensor(sd, OV9650_AECHM,
442 443
				  &i2c_data, 1);
	if (err < 0)
444
		return err;
445 446 447

	/* The 8 middle bits */
	i2c_data = (val >> 2) & 0xff;
448
	err = m5602_write_sensor(sd, OV9650_AECH,
449 450
				  &i2c_data, 1);
	if (err < 0)
451
		return err;
452 453 454

	/* The 2 LSBs */
	i2c_data = val & 0x03;
455
	err = m5602_write_sensor(sd, OV9650_COM1, &i2c_data, 1);
456

457
	return err;
458 459 460 461 462 463 464 465
}

int ov9650_get_gain(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

466
	m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
467 468
	*val = (i2c_data & 0x03) << 8;

469
	err = m5602_read_sensor(sd, OV9650_GAIN, &i2c_data, 1);
470
	*val |= i2c_data;
471
	PDEBUG(D_V4L2, "Read gain %d", *val);
472
	return err;
473 474 475 476 477 478 479 480 481 482 483
}

int ov9650_set_gain(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

	/* The 2 MSB */
	/* Read the OV9650_VREF register first to avoid
	   corrupting the VREF high and low bits */
484
	m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
485 486 487
	/* Mask away all uninteresting bits */
	i2c_data = ((val & 0x0300) >> 2) |
			(i2c_data & 0x3F);
488
	err = m5602_write_sensor(sd, OV9650_VREF, &i2c_data, 1);
489 490 491

	/* The 8 LSBs */
	i2c_data = val & 0xff;
492
	err = m5602_write_sensor(sd, OV9650_GAIN, &i2c_data, 1);
493
	return err;
494 495 496 497 498 499 500 501
}

int ov9650_get_red_balance(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

502
	err = m5602_read_sensor(sd, OV9650_RED, &i2c_data, 1);
503 504
	*val = i2c_data;

505
	PDEBUG(D_V4L2, "Read red gain %d", *val);
506

507
	return err;
508 509 510 511 512 513 514 515
}

int ov9650_set_red_balance(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

516
	PDEBUG(D_V4L2, "Set red gain to %d",
517 518 519
			     val & 0xff);

	i2c_data = val & 0xff;
520
	err = m5602_write_sensor(sd, OV9650_RED, &i2c_data, 1);
521

522
	return err;
523 524 525 526 527 528 529 530
}

int ov9650_get_blue_balance(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

531
	err = m5602_read_sensor(sd, OV9650_BLUE, &i2c_data, 1);
532 533
	*val = i2c_data;

534
	PDEBUG(D_V4L2, "Read blue gain %d", *val);
535

536
	return err;
537 538 539 540 541 542 543 544
}

int ov9650_set_blue_balance(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

545
	PDEBUG(D_V4L2, "Set blue gain to %d",
546 547 548
	       val & 0xff);

	i2c_data = val & 0xff;
549
	err = m5602_write_sensor(sd, OV9650_BLUE, &i2c_data, 1);
550

551
	return err;
552 553 554 555 556 557 558 559
}

int ov9650_get_hflip(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

560
	err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
561 562 563 564
	if (dmi_check_system(ov9650_flip_dmi_table))
		*val = ((i2c_data & OV9650_HFLIP) >> 5) ? 0 : 1;
	else
		*val = (i2c_data & OV9650_HFLIP) >> 5;
565
	PDEBUG(D_V4L2, "Read horizontal flip %d", *val);
566

567
	return err;
568 569 570 571 572 573 574 575
}

int ov9650_set_hflip(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

576
	PDEBUG(D_V4L2, "Set horizontal flip to %d", val);
577
	err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
578
	if (err < 0)
579
		return err;
580 581 582

	if (dmi_check_system(ov9650_flip_dmi_table))
		i2c_data = ((i2c_data & 0xdf) |
583
			   (((val ? 0 : 1) & 0x01) << 5));
584 585
	else
		i2c_data = ((i2c_data & 0xdf) |
586
			   ((val & 0x01) << 5));
587

588
	err = m5602_write_sensor(sd, OV9650_MVFP, &i2c_data, 1);
589

590
	return err;
591 592 593 594 595 596 597 598
}

int ov9650_get_vflip(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

599
	err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
600 601 602 603
	if (dmi_check_system(ov9650_flip_dmi_table))
		*val = ((i2c_data & 0x10) >> 4) ? 0 : 1;
	else
		*val = (i2c_data & 0x10) >> 4;
604
	PDEBUG(D_V4L2, "Read vertical flip %d", *val);
605

606
	return err;
607 608 609 610 611 612 613 614
}

int ov9650_set_vflip(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

615
	PDEBUG(D_V4L2, "Set vertical flip to %d", val);
616
	err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
617
	if (err < 0)
618
		return err;
619 620 621 622 623 624 625 626

	if (dmi_check_system(ov9650_flip_dmi_table))
		i2c_data = ((i2c_data & 0xef) |
				(((val ? 0 : 1) & 0x01) << 4));
	else
		i2c_data = ((i2c_data & 0xef) |
				((val & 0x01) << 4));

627
	err = m5602_write_sensor(sd, OV9650_MVFP, &i2c_data, 1);
628

629
	return err;
630 631 632 633 634 635 636 637
}

int ov9650_get_brightness(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

638
	err = m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
639
	if (err < 0)
640
		return err;
641 642
	*val = (i2c_data & 0x03) << 8;

643
	err = m5602_read_sensor(sd, OV9650_GAIN, &i2c_data, 1);
644
	*val |= i2c_data;
645
	PDEBUG(D_V4L2, "Read gain %d", *val);
646

647
	return err;
648 649 650 651 652 653 654 655
}

int ov9650_set_brightness(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

656
	PDEBUG(D_V4L2, "Set gain to %d", val & 0x3ff);
657 658 659

	/* Read the OV9650_VREF register first to avoid
		corrupting the VREF high and low bits */
660
	err = m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
661
	if (err < 0)
662
		return err;
663 664 665

	/* Mask away all uninteresting bits */
	i2c_data = ((val & 0x0300) >> 2) | (i2c_data & 0x3F);
666
	err = m5602_write_sensor(sd, OV9650_VREF, &i2c_data, 1);
667
	if (err < 0)
668
		return err;
669 670 671

	/* The 8 LSBs */
	i2c_data = val & 0xff;
672
	err = m5602_write_sensor(sd, OV9650_GAIN, &i2c_data, 1);
673

674
	return err;
675 676 677 678 679 680 681 682
}

int ov9650_get_auto_white_balance(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

683
	err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
684
	*val = (i2c_data & OV9650_AWB_EN) >> 1;
685
	PDEBUG(D_V4L2, "Read auto white balance %d", *val);
686

687
	return err;
688 689 690 691 692 693 694 695
}

int ov9650_set_auto_white_balance(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

696
	PDEBUG(D_V4L2, "Set auto white balance to %d", val);
697
	err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
698
	if (err < 0)
699
		return err;
700 701

	i2c_data = ((i2c_data & 0xfd) | ((val & 0x01) << 1));
702
	err = m5602_write_sensor(sd, OV9650_COM8, &i2c_data, 1);
703

704
	return err;
705 706 707 708 709 710 711 712
}

int ov9650_get_auto_gain(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

713
	err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
714
	*val = (i2c_data & OV9650_AGC_EN) >> 2;
715
	PDEBUG(D_V4L2, "Read auto gain control %d", *val);
716

717
	return err;
718 719 720 721 722 723 724 725
}

int ov9650_set_auto_gain(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 i2c_data;
	struct sd *sd = (struct sd *) gspca_dev;

726
	PDEBUG(D_V4L2, "Set auto gain control to %d", val);
727
	err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
728
	if (err < 0)
729
		return err;
730 731

	i2c_data = ((i2c_data & 0xfb) | ((val & 0x01) << 2));
732
	err = m5602_write_sensor(sd, OV9650_COM8, &i2c_data, 1);
733

734
	return err;
735 736
}

737
static void ov9650_dump_registers(struct sd *sd)
738 739 740 741 742
{
	int address;
	info("Dumping the ov9650 register state");
	for (address = 0; address < 0xa9; address++) {
		u8 value;
743
		m5602_read_sensor(sd, address, &value, 1);
744 745 746 747 748 749 750 751 752 753 754
		info("register 0x%x contains 0x%x",
		     address, value);
	}

	info("ov9650 register state dump complete");

	info("Probing for which registers that are read/write");
	for (address = 0; address < 0xff; address++) {
		u8 old_value, ctrl_value;
		u8 test_value[2] = {0xff, 0xff};

755
		m5602_read_sensor(sd, address, &old_value, 1);
756
		m5602_write_sensor(sd, address, test_value, 1);
757
		m5602_read_sensor(sd, address, &ctrl_value, 1);
758 759 760 761 762 763 764

		if (ctrl_value == test_value[0])
			info("register 0x%x is writeable", address);
		else
			info("register 0x%x is read only", address);

		/* Restore original value */
765
		m5602_write_sensor(sd, address, &old_value, 1);
766 767
	}
}