m5602_ov9650.c 11.7 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 61 62 63
	{
		.ident = "ASUS A6Kt",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
		}
	},
	{ }
};

64 65
static void ov9650_dump_registers(struct sd *sd);

66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
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)
86
			m5602_write_sensor(sd,
87 88 89 90 91
					    preinit_ov9650[i][1], &data, 1);
		else
			m5602_write_bridge(sd, preinit_ov9650[i][1], data);
	}

92
	if (m5602_read_sensor(sd, OV9650_PID, &prod_id, 1))
93 94
		return -ENODEV;

95
	if (m5602_read_sensor(sd, OV9650_VER, &ver_id, 1))
96 97 98 99 100 101 102 103 104 105 106 107
		return -ENODEV;

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

	return -ENODEV;

sensor_found:
	sd->gspca_dev.cam.cam_mode = ov9650.modes;
	sd->gspca_dev.cam.nmodes = ov9650.nmodes;
108 109
	sd->desc->ctrls = ov9650.ctrls;
	sd->desc->nctrls = ov9650.nctrls;
110 111 112 113 114 115 116 117 118 119 120 121 122 123
	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)
124
			err = m5602_write_sensor(sd, init_ov9650[i][1],
125 126 127 128 129
						  &data, 1);
		else
			err = m5602_write_bridge(sd, init_ov9650[i][1], data);
	}

130
	if (dmi_check_system(ov9650_flip_dmi_table) && !err) {
131 132
		info("vflip quirk active");
		data = 0x30;
133
		err = m5602_write_sensor(sd, OV9650_MVFP, &data, 1);
134 135
	}

136
	return err;
137 138 139 140
}

int ov9650_power_down(struct sd *sd)
{
141 142
	int i, err = 0;
	for (i = 0; i < ARRAY_SIZE(power_down_ov9650) && !err; i++) {
143 144
		u8 data = power_down_ov9650[i][2];
		if (power_down_ov9650[i][0] == SENSOR)
145
			err = m5602_write_sensor(sd,
146 147
					    power_down_ov9650[i][1], &data, 1);
		else
148 149
			err = m5602_write_bridge(sd, power_down_ov9650[i][1],
						 data);
150 151
	}

152
	return err;
153 154 155 156 157 158 159 160
}

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

161
	err = m5602_read_sensor(sd, OV9650_COM1, &i2c_data, 1);
162 163 164 165
	if (err < 0)
		goto out;
	*val = i2c_data & 0x03;

166
	err = m5602_read_sensor(sd, OV9650_AECH, &i2c_data, 1);
167 168 169 170
	if (err < 0)
		goto out;
	*val |= (i2c_data << 2);

171
	err = m5602_read_sensor(sd, OV9650_AECHM, &i2c_data, 1);
172 173 174 175
	if (err < 0)
		goto out;
	*val |= (i2c_data & 0x3f) << 10;

176
	PDEBUG(D_V4L2, "Read exposure %d", *val);
177
out:
178
	return err;
179 180 181 182 183 184 185 186
}

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

187
	PDEBUG(D_V4L2, "Set exposure to %d",
188 189 190 191
	       val & 0xffff);

	/* The 6 MSBs */
	i2c_data = (val >> 10) & 0x3f;
192
	err = m5602_write_sensor(sd, OV9650_AECHM,
193 194 195 196 197 198
				  &i2c_data, 1);
	if (err < 0)
		goto out;

	/* The 8 middle bits */
	i2c_data = (val >> 2) & 0xff;
199
	err = m5602_write_sensor(sd, OV9650_AECH,
200 201 202 203 204 205
				  &i2c_data, 1);
	if (err < 0)
		goto out;

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

out:
209
	return err;
210 211 212 213 214 215 216 217
}

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

218
	m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
219 220
	*val = (i2c_data & 0x03) << 8;

221
	err = m5602_read_sensor(sd, OV9650_GAIN, &i2c_data, 1);
222
	*val |= i2c_data;
223
	PDEBUG(D_V4L2, "Read gain %d", *val);
224
	return err;
225 226 227 228 229 230 231 232 233 234 235
}

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 */
236
	m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
237 238 239
	/* Mask away all uninteresting bits */
	i2c_data = ((val & 0x0300) >> 2) |
			(i2c_data & 0x3F);
240
	err = m5602_write_sensor(sd, OV9650_VREF, &i2c_data, 1);
241 242 243

	/* The 8 LSBs */
	i2c_data = val & 0xff;
244
	err = m5602_write_sensor(sd, OV9650_GAIN, &i2c_data, 1);
245
	return err;
246 247 248 249 250 251 252 253
}

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

254
	err = m5602_read_sensor(sd, OV9650_RED, &i2c_data, 1);
255 256
	*val = i2c_data;

257
	PDEBUG(D_V4L2, "Read red gain %d", *val);
258

259
	return err;
260 261 262 263 264 265 266 267
}

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

268
	PDEBUG(D_V4L2, "Set red gain to %d",
269 270 271
			     val & 0xff);

	i2c_data = val & 0xff;
272
	err = m5602_write_sensor(sd, OV9650_RED, &i2c_data, 1);
273

274
	return err;
275 276 277 278 279 280 281 282
}

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

283
	err = m5602_read_sensor(sd, OV9650_BLUE, &i2c_data, 1);
284 285
	*val = i2c_data;

286
	PDEBUG(D_V4L2, "Read blue gain %d", *val);
287

288
	return err;
289 290 291 292 293 294 295 296
}

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

297
	PDEBUG(D_V4L2, "Set blue gain to %d",
298 299 300
	       val & 0xff);

	i2c_data = val & 0xff;
301
	err = m5602_write_sensor(sd, OV9650_BLUE, &i2c_data, 1);
302

303
	return err;
304 305 306 307 308 309 310 311
}

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

312
	err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
313 314 315 316
	if (dmi_check_system(ov9650_flip_dmi_table))
		*val = ((i2c_data & OV9650_HFLIP) >> 5) ? 0 : 1;
	else
		*val = (i2c_data & OV9650_HFLIP) >> 5;
317
	PDEBUG(D_V4L2, "Read horizontal flip %d", *val);
318

319
	return err;
320 321 322 323 324 325 326 327
}

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

328
	PDEBUG(D_V4L2, "Set horizontal flip to %d", val);
329
	err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
330 331 332 333 334
	if (err < 0)
		goto out;

	if (dmi_check_system(ov9650_flip_dmi_table))
		i2c_data = ((i2c_data & 0xdf) |
335
			   (((val ? 0 : 1) & 0x01) << 5));
336 337
	else
		i2c_data = ((i2c_data & 0xdf) |
338
			   ((val & 0x01) << 5));
339

340
	err = m5602_write_sensor(sd, OV9650_MVFP, &i2c_data, 1);
341
out:
342
	return err;
343 344 345 346 347 348 349 350
}

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

351
	err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
352 353 354 355
	if (dmi_check_system(ov9650_flip_dmi_table))
		*val = ((i2c_data & 0x10) >> 4) ? 0 : 1;
	else
		*val = (i2c_data & 0x10) >> 4;
356
	PDEBUG(D_V4L2, "Read vertical flip %d", *val);
357

358
	return err;
359 360 361 362 363 364 365 366
}

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

367
	PDEBUG(D_V4L2, "Set vertical flip to %d", val);
368
	err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
369 370 371 372 373 374 375 376 377 378
	if (err < 0)
		goto out;

	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));

379
	err = m5602_write_sensor(sd, OV9650_MVFP, &i2c_data, 1);
380
out:
381
	return err;
382 383 384 385 386 387 388 389
}

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

390
	err = m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
391 392 393 394
	if (err < 0)
		goto out;
	*val = (i2c_data & 0x03) << 8;

395
	err = m5602_read_sensor(sd, OV9650_GAIN, &i2c_data, 1);
396
	*val |= i2c_data;
397
	PDEBUG(D_V4L2, "Read gain %d", *val);
398
out:
399
	return err;
400 401 402 403 404 405 406 407
}

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

408
	PDEBUG(D_V4L2, "Set gain to %d", val & 0x3ff);
409 410 411

	/* Read the OV9650_VREF register first to avoid
		corrupting the VREF high and low bits */
412
	err = m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
413 414 415 416 417
	if (err < 0)
		goto out;

	/* Mask away all uninteresting bits */
	i2c_data = ((val & 0x0300) >> 2) | (i2c_data & 0x3F);
418
	err = m5602_write_sensor(sd, OV9650_VREF, &i2c_data, 1);
419 420 421 422 423
	if (err < 0)
		goto out;

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

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

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;

436
	err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
437
	*val = (i2c_data & OV9650_AWB_EN) >> 1;
438
	PDEBUG(D_V4L2, "Read auto white balance %d", *val);
439

440
	return err;
441 442 443 444 445 446 447 448
}

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;

449
	PDEBUG(D_V4L2, "Set auto white balance to %d", val);
450
	err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
451 452 453 454
	if (err < 0)
		goto out;

	i2c_data = ((i2c_data & 0xfd) | ((val & 0x01) << 1));
455
	err = m5602_write_sensor(sd, OV9650_COM8, &i2c_data, 1);
456
out:
457
	return err;
458 459 460 461 462 463 464 465
}

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

466
	err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
467
	*val = (i2c_data & OV9650_AGC_EN) >> 2;
468
	PDEBUG(D_V4L2, "Read auto gain control %d", *val);
469

470
	return err;
471 472 473 474 475 476 477 478
}

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

479
	PDEBUG(D_V4L2, "Set auto gain control to %d", val);
480
	err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
481 482 483 484
	if (err < 0)
		goto out;

	i2c_data = ((i2c_data & 0xfb) | ((val & 0x01) << 2));
485
	err = m5602_write_sensor(sd, OV9650_COM8, &i2c_data, 1);
486
out:
487
	return err;
488 489
}

490
static void ov9650_dump_registers(struct sd *sd)
491 492 493 494 495
{
	int address;
	info("Dumping the ov9650 register state");
	for (address = 0; address < 0xa9; address++) {
		u8 value;
496
		m5602_read_sensor(sd, address, &value, 1);
497 498 499 500 501 502 503 504 505 506 507
		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};

508
		m5602_read_sensor(sd, address, &old_value, 1);
509
		m5602_write_sensor(sd, address, test_value, 1);
510
		m5602_read_sensor(sd, address, &ctrl_value, 1);
511 512 513 514 515 516 517

		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 */
518
		m5602_write_sensor(sd, address, &old_value, 1);
519 520
	}
}