2008-10-01 07:51:53 +00:00
|
|
|
/*
|
|
|
|
* Driver for the ov9650 sensor
|
|
|
|
*
|
2008-10-16 19:43:16 +00:00
|
|
|
* Copyright (C) 2008 Erik Andrén
|
2008-10-01 07:51:53 +00:00
|
|
|
* 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"
|
|
|
|
|
2008-11-18 17:36:53 +00:00
|
|
|
/* 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")
|
|
|
|
}
|
|
|
|
},
|
2008-11-25 06:15:15 +00:00
|
|
|
{
|
|
|
|
.ident = "ASUS A6Ja",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "A6J")
|
|
|
|
}
|
|
|
|
},
|
2008-11-18 17:36:53 +00:00
|
|
|
{
|
|
|
|
.ident = "ASUS A6Kt",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
|
|
|
|
}
|
|
|
|
},
|
2008-12-19 06:29:31 +00:00
|
|
|
{
|
|
|
|
.ident = "Alienware Aurora m9700",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "alienware"),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "Aurora m9700")
|
|
|
|
}
|
|
|
|
},
|
2008-11-18 17:36:53 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2008-12-30 20:06:55 +00:00
|
|
|
const static struct ctrl ov9650_ctrls[] = {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
.id = V4L2_CID_EXPOSURE,
|
|
|
|
.type = V4L2_CTRL_TYPE_INTEGER,
|
|
|
|
.name = "exposure",
|
|
|
|
.minimum = 0x00,
|
2008-12-31 10:25:42 +00:00
|
|
|
.maximum = 0x1ff,
|
|
|
|
.step = 0x4,
|
2008-12-30 20:06:55 +00:00
|
|
|
.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,
|
2008-12-31 09:36:52 +00:00
|
|
|
.default_value = 1
|
2008-12-30 20:06:55 +00:00
|
|
|
},
|
|
|
|
.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,
|
2008-12-31 07:49:33 +00:00
|
|
|
.default_value = 1
|
2008-12-30 20:06:55 +00:00
|
|
|
},
|
|
|
|
.set = ov9650_set_auto_gain,
|
|
|
|
.get = ov9650_get_auto_gain
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-12-30 19:48:42 +00:00
|
|
|
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,
|
2009-01-03 13:55:52 +00:00
|
|
|
.priv = 9
|
2008-12-30 19:48:42 +00:00
|
|
|
}, {
|
|
|
|
320,
|
|
|
|
240,
|
|
|
|
V4L2_PIX_FMT_SBGGR8,
|
|
|
|
V4L2_FIELD_NONE,
|
|
|
|
.sizeimage =
|
|
|
|
320 * 240,
|
|
|
|
.bytesperline = 320,
|
|
|
|
.colorspace = V4L2_COLORSPACE_SRGB,
|
2009-01-03 13:55:52 +00:00
|
|
|
.priv = 8
|
2008-12-30 19:48:42 +00:00
|
|
|
}, {
|
|
|
|
352,
|
|
|
|
288,
|
|
|
|
V4L2_PIX_FMT_SBGGR8,
|
|
|
|
V4L2_FIELD_NONE,
|
|
|
|
.sizeimage =
|
|
|
|
352 * 288,
|
|
|
|
.bytesperline = 352,
|
|
|
|
.colorspace = V4L2_COLORSPACE_SRGB,
|
2009-01-03 13:55:52 +00:00
|
|
|
.priv = 9
|
2008-12-30 19:48:42 +00:00
|
|
|
}, {
|
|
|
|
640,
|
|
|
|
480,
|
|
|
|
V4L2_PIX_FMT_SBGGR8,
|
|
|
|
V4L2_FIELD_NONE,
|
|
|
|
.sizeimage =
|
|
|
|
640 * 480,
|
|
|
|
.bytesperline = 640,
|
|
|
|
.colorspace = V4L2_COLORSPACE_SRGB,
|
2009-01-03 13:55:52 +00:00
|
|
|
.priv = 9
|
2008-12-30 19:48:42 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-11-24 17:21:29 +00:00
|
|
|
static void ov9650_dump_registers(struct sd *sd);
|
|
|
|
|
2008-10-01 07:51:53 +00:00
|
|
|
int ov9650_probe(struct sd *sd)
|
|
|
|
{
|
2009-01-02 20:58:08 +00:00
|
|
|
int err = 0;
|
2008-10-01 07:51:53 +00:00
|
|
|
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 */
|
2009-01-02 20:58:08 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(preinit_ov9650) && !err; i++) {
|
2008-10-01 07:51:53 +00:00
|
|
|
u8 data = preinit_ov9650[i][2];
|
|
|
|
if (preinit_ov9650[i][0] == SENSOR)
|
2009-01-02 20:58:08 +00:00
|
|
|
err = m5602_write_sensor(sd,
|
2008-10-01 07:51:53 +00:00
|
|
|
preinit_ov9650[i][1], &data, 1);
|
|
|
|
else
|
2009-01-02 20:58:08 +00:00
|
|
|
err = m5602_write_bridge(sd, preinit_ov9650[i][1], data);
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
2009-01-02 20:58:08 +00:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
if (m5602_read_sensor(sd, OV9650_PID, &prod_id, 1))
|
2008-10-01 07:51:53 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
if (m5602_read_sensor(sd, OV9650_VER, &ver_id, 1))
|
2008-10-01 07:51:53 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
if ((prod_id == 0x96) && (ver_id == 0x52)) {
|
|
|
|
info("Detected an ov9650 sensor");
|
|
|
|
goto sensor_found;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
sensor_found:
|
2008-12-30 19:48:42 +00:00
|
|
|
sd->gspca_dev.cam.cam_mode = ov9650_modes;
|
|
|
|
sd->gspca_dev.cam.nmodes = ARRAY_SIZE(ov9650_modes);
|
2008-12-30 20:06:55 +00:00
|
|
|
sd->desc->ctrls = ov9650_ctrls;
|
2008-12-30 18:27:17 +00:00
|
|
|
sd->desc->nctrls = ARRAY_SIZE(ov9650_ctrls);
|
2008-10-01 07:51:53 +00:00
|
|
|
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)
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, init_ov9650[i][1],
|
2008-10-01 07:51:53 +00:00
|
|
|
&data, 1);
|
|
|
|
else
|
|
|
|
err = m5602_write_bridge(sd, init_ov9650[i][1], data);
|
|
|
|
}
|
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
if (dmi_check_system(ov9650_flip_dmi_table) && !err) {
|
2008-10-01 07:51:53 +00:00
|
|
|
info("vflip quirk active");
|
|
|
|
data = 0x30;
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_MVFP, &data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
2008-12-30 10:47:11 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
2008-12-21 21:07:59 +00:00
|
|
|
int ov9650_start(struct sd *sd)
|
|
|
|
{
|
2009-01-03 13:55:52 +00:00
|
|
|
u8 data;
|
2008-12-21 21:07:59 +00:00
|
|
|
int i, err = 0;
|
|
|
|
struct cam *cam = &sd->gspca_dev.cam;
|
2009-01-03 13:55:52 +00:00
|
|
|
int width = cam->cam_mode[sd->gspca_dev.curr_mode].width;
|
|
|
|
int height = cam->cam_mode[sd->gspca_dev.curr_mode].height;
|
|
|
|
int ver_offs = cam->cam_mode[sd->gspca_dev.curr_mode].priv;
|
|
|
|
int hor_offs = OV9650_LEFT_OFFSET;
|
|
|
|
|
|
|
|
if (width <= 320)
|
|
|
|
hor_offs /= 2;
|
2008-12-21 21:07:59 +00:00
|
|
|
|
2008-12-30 10:47:11 +00:00
|
|
|
err = ov9650_init(sd);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
2009-01-03 13:55:52 +00:00
|
|
|
/* Synthesize the vsync/hsync setup */
|
2008-12-29 15:49:25 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(res_init_ov9650) && !err; i++) {
|
|
|
|
if (res_init_ov9650[i][0] == BRIDGE)
|
2008-12-30 18:29:48 +00:00
|
|
|
err = m5602_write_bridge(sd, res_init_ov9650[i][1],
|
|
|
|
res_init_ov9650[i][2]);
|
2008-12-29 15:49:25 +00:00
|
|
|
else if (res_init_ov9650[i][0] == SENSOR) {
|
|
|
|
u8 data = res_init_ov9650[i][2];
|
2008-12-30 18:29:48 +00:00
|
|
|
err = m5602_write_sensor(sd,
|
|
|
|
res_init_ov9650[i][1], &data, 1);
|
2008-12-29 15:49:25 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-23 21:06:37 +00:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
2009-01-03 13:55:52 +00:00
|
|
|
err = m5602_write_bridge(sd, M5602_XB_VSYNC_PARA, ((ver_offs >> 8) & 0xff));
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_VSYNC_PARA, (ver_offs & 0xff));
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_VSYNC_PARA, 0);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_VSYNC_PARA, (height >> 8) & 0xff);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_VSYNC_PARA, (height & 0xff));
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
for (i = 0; i < 2 && !err; i++) {
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_VSYNC_PARA, 0);
|
|
|
|
}
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_HSYNC_PARA, (hor_offs >> 8) & 0xff);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_HSYNC_PARA, hor_offs & 0xff);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_HSYNC_PARA, ((width + hor_offs) >> 8) & 0xff);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = m5602_write_bridge(sd, M5602_XB_HSYNC_PARA, ((width + hor_offs) & 0xff));
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
switch (width) {
|
2008-12-21 21:07:59 +00:00
|
|
|
case 640:
|
|
|
|
PDEBUG(D_V4L2, "Configuring camera for VGA mode");
|
|
|
|
|
2009-01-03 13:55:52 +00:00
|
|
|
data = OV9650_VGA_SELECT | OV9650_RGB_SELECT |
|
|
|
|
OV9650_RAW_RGB_SELECT;
|
|
|
|
|
|
|
|
err = m5602_write_sensor(sd, OV9650_COM7, &data, 1);
|
2008-12-27 17:06:06 +00:00
|
|
|
|
2008-12-21 21:07:59 +00:00
|
|
|
break;
|
2008-12-22 19:06:29 +00:00
|
|
|
|
2008-12-23 20:07:58 +00:00
|
|
|
case 352:
|
|
|
|
PDEBUG(D_V4L2, "Configuring camera for CIF mode");
|
|
|
|
|
2009-01-03 13:55:52 +00:00
|
|
|
data = OV9650_CIF_SELECT | OV9650_RGB_SELECT |
|
|
|
|
OV9650_RAW_RGB_SELECT;
|
|
|
|
|
|
|
|
err = m5602_write_sensor(sd, OV9650_COM7, &data, 1);
|
2008-12-27 17:06:06 +00:00
|
|
|
|
2008-12-23 20:07:58 +00:00
|
|
|
break;
|
|
|
|
|
2008-12-22 19:06:29 +00:00
|
|
|
case 320:
|
|
|
|
PDEBUG(D_V4L2, "Configuring camera for QVGA mode");
|
|
|
|
|
2009-01-03 13:55:52 +00:00
|
|
|
data = OV9650_QVGA_SELECT | OV9650_RGB_SELECT |
|
|
|
|
OV9650_RAW_RGB_SELECT;
|
|
|
|
|
|
|
|
err = m5602_write_sensor(sd, OV9650_COM7, &data, 1);
|
2008-12-27 17:06:06 +00:00
|
|
|
|
2008-12-22 19:06:29 +00:00
|
|
|
break;
|
2008-12-27 16:30:10 +00:00
|
|
|
|
|
|
|
case 176:
|
|
|
|
PDEBUG(D_V4L2, "Configuring camera for QCIF mode");
|
|
|
|
|
2009-01-03 13:55:52 +00:00
|
|
|
data = OV9650_QCIF_SELECT | OV9650_RGB_SELECT |
|
|
|
|
OV9650_RAW_RGB_SELECT;
|
2008-12-27 16:30:10 +00:00
|
|
|
|
2009-01-03 13:55:52 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_COM7, &data, 1);
|
|
|
|
break;
|
2008-12-21 21:07:59 +00:00
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2008-12-29 15:49:25 +00:00
|
|
|
int ov9650_stop(struct sd *sd)
|
|
|
|
{
|
|
|
|
u8 data = OV9650_SOFT_SLEEP | OV9650_OUTPUT_DRIVE_2X;
|
|
|
|
return m5602_write_sensor(sd, OV9650_COM2, &data, 1);
|
|
|
|
}
|
|
|
|
|
2008-10-01 07:51:53 +00:00
|
|
|
int ov9650_power_down(struct sd *sd)
|
|
|
|
{
|
2008-11-20 06:54:43 +00:00
|
|
|
int i, err = 0;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(power_down_ov9650) && !err; i++) {
|
2008-10-01 07:51:53 +00:00
|
|
|
u8 data = power_down_ov9650[i][2];
|
|
|
|
if (power_down_ov9650[i][0] == SENSOR)
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd,
|
2008-10-01 07:51:53 +00:00
|
|
|
power_down_ov9650[i][1], &data, 1);
|
|
|
|
else
|
2008-11-24 17:12:46 +00:00
|
|
|
err = m5602_write_bridge(sd, power_down_ov9650[i][1],
|
|
|
|
data);
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_get_exposure(struct gspca_dev *gspca_dev, __s32 *val)
|
|
|
|
{
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
u8 i2c_data;
|
|
|
|
int err;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_AECH, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
*val |= (i2c_data << 2);
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_AECHM, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
*val |= (i2c_data & 0x3f) << 10;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read exposure %d", *val);
|
2008-12-27 15:28:00 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_set_exposure(struct gspca_dev *gspca_dev, __s32 val)
|
|
|
|
{
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
u8 i2c_data;
|
|
|
|
int err;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Set exposure to %d",
|
2008-10-01 07:51:53 +00:00
|
|
|
val & 0xffff);
|
|
|
|
|
|
|
|
/* The 6 MSBs */
|
|
|
|
i2c_data = (val >> 10) & 0x3f;
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_AECHM,
|
2008-10-01 07:51:53 +00:00
|
|
|
&i2c_data, 1);
|
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
/* The 8 middle bits */
|
|
|
|
i2c_data = (val >> 2) & 0xff;
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_AECH,
|
2008-10-01 07:51:53 +00:00
|
|
|
&i2c_data, 1);
|
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
/* The 2 LSBs */
|
|
|
|
i2c_data = val & 0x03;
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_COM1, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_get_gain(struct gspca_dev *gspca_dev, __s32 *val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2009-01-02 20:58:08 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
2008-10-01 07:51:53 +00:00
|
|
|
*val = (i2c_data & 0x03) << 8;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_GAIN, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
*val |= i2c_data;
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read gain %d", *val);
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 */
|
2009-01-02 20:58:08 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
2008-10-01 07:51:53 +00:00
|
|
|
/* Mask away all uninteresting bits */
|
|
|
|
i2c_data = ((val & 0x0300) >> 2) |
|
|
|
|
(i2c_data & 0x3F);
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_VREF, &i2c_data, 1);
|
2009-01-02 20:58:08 +00:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
/* The 8 LSBs */
|
|
|
|
i2c_data = val & 0xff;
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_GAIN, &i2c_data, 1);
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_get_red_balance(struct gspca_dev *gspca_dev, __s32 *val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_RED, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
*val = i2c_data;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read red gain %d", *val);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_set_red_balance(struct gspca_dev *gspca_dev, __s32 val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Set red gain to %d",
|
2008-10-01 07:51:53 +00:00
|
|
|
val & 0xff);
|
|
|
|
|
|
|
|
i2c_data = val & 0xff;
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_RED, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_get_blue_balance(struct gspca_dev *gspca_dev, __s32 *val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_BLUE, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
*val = i2c_data;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read blue gain %d", *val);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_set_blue_balance(struct gspca_dev *gspca_dev, __s32 val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Set blue gain to %d",
|
2008-10-01 07:51:53 +00:00
|
|
|
val & 0xff);
|
|
|
|
|
|
|
|
i2c_data = val & 0xff;
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_BLUE, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_get_hflip(struct gspca_dev *gspca_dev, __s32 *val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (dmi_check_system(ov9650_flip_dmi_table))
|
|
|
|
*val = ((i2c_data & OV9650_HFLIP) >> 5) ? 0 : 1;
|
|
|
|
else
|
|
|
|
*val = (i2c_data & OV9650_HFLIP) >> 5;
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read horizontal flip %d", *val);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_set_hflip(struct gspca_dev *gspca_dev, __s32 val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Set horizontal flip to %d", val);
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
if (dmi_check_system(ov9650_flip_dmi_table))
|
|
|
|
i2c_data = ((i2c_data & 0xdf) |
|
2008-11-20 06:54:43 +00:00
|
|
|
(((val ? 0 : 1) & 0x01) << 5));
|
2008-10-01 07:51:53 +00:00
|
|
|
else
|
|
|
|
i2c_data = ((i2c_data & 0xdf) |
|
2008-11-20 06:54:43 +00:00
|
|
|
((val & 0x01) << 5));
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_MVFP, &i2c_data, 1);
|
2008-12-27 15:28:00 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_get_vflip(struct gspca_dev *gspca_dev, __s32 *val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (dmi_check_system(ov9650_flip_dmi_table))
|
|
|
|
*val = ((i2c_data & 0x10) >> 4) ? 0 : 1;
|
|
|
|
else
|
|
|
|
*val = (i2c_data & 0x10) >> 4;
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read vertical flip %d", *val);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_set_vflip(struct gspca_dev *gspca_dev, __s32 val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Set vertical flip to %d", val);
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
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));
|
|
|
|
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_MVFP, &i2c_data, 1);
|
2008-12-27 15:28:00 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_get_brightness(struct gspca_dev *gspca_dev, __s32 *val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
*val = (i2c_data & 0x03) << 8;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_GAIN, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
*val |= i2c_data;
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read gain %d", *val);
|
2008-12-27 15:28:00 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_set_brightness(struct gspca_dev *gspca_dev, __s32 val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Set gain to %d", val & 0x3ff);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
/* Read the OV9650_VREF register first to avoid
|
|
|
|
corrupting the VREF high and low bits */
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
/* Mask away all uninteresting bits */
|
|
|
|
i2c_data = ((val & 0x0300) >> 2) | (i2c_data & 0x3F);
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_VREF, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
/* The 8 LSBs */
|
|
|
|
i2c_data = val & 0xff;
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_GAIN, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
*val = (i2c_data & OV9650_AWB_EN) >> 1;
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read auto white balance %d", *val);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Set auto white balance to %d", val);
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
i2c_data = ((i2c_data & 0xfd) | ((val & 0x01) << 1));
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_COM8, &i2c_data, 1);
|
2008-12-27 15:28:00 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_get_auto_gain(struct gspca_dev *gspca_dev, __s32 *val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
*val = (i2c_data & OV9650_AGC_EN) >> 2;
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Read auto gain control %d", *val);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ov9650_set_auto_gain(struct gspca_dev *gspca_dev, __s32 val)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
u8 i2c_data;
|
|
|
|
struct sd *sd = (struct sd *) gspca_dev;
|
|
|
|
|
2008-10-16 19:46:07 +00:00
|
|
|
PDEBUG(D_V4L2, "Set auto gain control to %d", val);
|
2008-11-27 16:42:45 +00:00
|
|
|
err = m5602_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
if (err < 0)
|
2008-12-27 15:28:00 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
i2c_data = ((i2c_data & 0xfb) | ((val & 0x01) << 2));
|
2008-11-26 07:08:10 +00:00
|
|
|
err = m5602_write_sensor(sd, OV9650_COM8, &i2c_data, 1);
|
2008-12-27 15:28:00 +00:00
|
|
|
|
2008-11-20 06:54:43 +00:00
|
|
|
return err;
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
2008-11-24 17:21:29 +00:00
|
|
|
static void ov9650_dump_registers(struct sd *sd)
|
2008-10-01 07:51:53 +00:00
|
|
|
{
|
|
|
|
int address;
|
|
|
|
info("Dumping the ov9650 register state");
|
|
|
|
for (address = 0; address < 0xa9; address++) {
|
|
|
|
u8 value;
|
2008-11-27 16:42:45 +00:00
|
|
|
m5602_read_sensor(sd, address, &value, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
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};
|
|
|
|
|
2008-11-27 16:42:45 +00:00
|
|
|
m5602_read_sensor(sd, address, &old_value, 1);
|
2008-11-26 07:08:10 +00:00
|
|
|
m5602_write_sensor(sd, address, test_value, 1);
|
2008-11-27 16:42:45 +00:00
|
|
|
m5602_read_sensor(sd, address, &ctrl_value, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
|
|
|
|
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 */
|
2008-11-26 07:08:10 +00:00
|
|
|
m5602_write_sensor(sd, address, &old_value, 1);
|
2008-10-01 07:51:53 +00:00
|
|
|
}
|
|
|
|
}
|