mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
V4L/DVB (10012): m5602: Start to unify read/write sensor functions
First step into unifying the read and write sensor functions Signed-off-by: Erik Andrén <erik.andren@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
d58626c21d
commit
4b8f393391
@ -80,6 +80,50 @@ int m5602_write_bridge(struct sd *sd, u8 address, u8 i2c_data)
|
||||
return (err < 0) ? err : 0;
|
||||
}
|
||||
|
||||
int m5602_write_sensor(struct sd *sd, const u8 address,
|
||||
u8 *i2c_data, const u8 len)
|
||||
{
|
||||
int err, i;
|
||||
u8 *p;
|
||||
struct usb_device *udev = sd->gspca_dev.dev;
|
||||
__u8 *buf = sd->gspca_dev.usb_buf;
|
||||
|
||||
/* No sensor with a data width larger than 16 bits has yet been seen */
|
||||
if (len > sd->sensor->i2c_regW || !len)
|
||||
return -EINVAL;
|
||||
|
||||
memcpy(buf, sensor_urb_skeleton,
|
||||
sizeof(sensor_urb_skeleton));
|
||||
|
||||
buf[11] = sd->sensor->i2c_slave_id;
|
||||
buf[15] = address;
|
||||
|
||||
/* Special case larger sensor writes */
|
||||
p = buf + 16;
|
||||
|
||||
/* Copy a four byte write sequence for each byte to be written to */
|
||||
for (i = 0; i < len; i++) {
|
||||
memcpy(p, sensor_urb_skeleton + 16, 4);
|
||||
p[3] = i2c_data[i];
|
||||
p += 4;
|
||||
PDEBUG(D_CONF, "Writing sensor register 0x%x with 0x%x",
|
||||
address, i2c_data[i]);
|
||||
}
|
||||
|
||||
/* Copy the tailer */
|
||||
memcpy(p, sensor_urb_skeleton + 20, 4);
|
||||
|
||||
/* Set the total length */
|
||||
p[3] = 0x10 + len;
|
||||
|
||||
err = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
|
||||
0x04, 0x40, 0x19,
|
||||
0x0000, buf,
|
||||
20 + len * 4, M5602_URB_MSG_TIMEOUT);
|
||||
|
||||
return (err < 0) ? err : 0;
|
||||
}
|
||||
|
||||
/* Dump all the registers of the m5602 bridge,
|
||||
unfortunately this breaks the camera until it's power cycled */
|
||||
static void m5602_dump_bridge(struct sd *sd)
|
||||
|
@ -104,6 +104,7 @@ static struct m5602_sensor mt9m111 = {
|
||||
.name = "MT9M111",
|
||||
|
||||
.i2c_slave_id = 0xba,
|
||||
.i2c_regW = 2,
|
||||
|
||||
.probe = mt9m111_probe,
|
||||
.init = mt9m111_init,
|
||||
|
@ -153,6 +153,7 @@ int ov9650_set_auto_gain(struct gspca_dev *gspca_dev, __s32 val);
|
||||
static struct m5602_sensor ov9650 = {
|
||||
.name = "OV9650",
|
||||
.i2c_slave_id = 0x60,
|
||||
.i2c_regW = 1,
|
||||
.probe = ov9650_probe,
|
||||
.init = ov9650_init,
|
||||
.power_down = ov9650_power_down,
|
||||
|
@ -150,6 +150,7 @@ static struct m5602_sensor po1030 = {
|
||||
.name = "PO1030",
|
||||
|
||||
.i2c_slave_id = 0xdc,
|
||||
.i2c_regW = 1,
|
||||
|
||||
.probe = po1030_probe,
|
||||
.init = po1030_init,
|
||||
|
@ -87,6 +87,7 @@ static struct m5602_sensor s5k4aa = {
|
||||
.init = s5k4aa_init,
|
||||
.power_down = s5k4aa_power_down,
|
||||
.i2c_slave_id = 0x5a,
|
||||
.i2c_regW = 2,
|
||||
.nctrls = 4,
|
||||
.ctrls = {
|
||||
{
|
||||
|
@ -69,6 +69,7 @@ static struct m5602_sensor s5k83a = {
|
||||
.init = s5k83a_init,
|
||||
.power_down = s5k83a_power_down,
|
||||
.i2c_slave_id = 0x5a,
|
||||
.i2c_regW = 2,
|
||||
.nctrls = 5,
|
||||
.ctrls = {
|
||||
{
|
||||
|
@ -49,6 +49,9 @@ struct m5602_sensor {
|
||||
/* What i2c address the sensor is connected to */
|
||||
u8 i2c_slave_id;
|
||||
|
||||
/* Width of each i2c register (in bytes) */
|
||||
u8 i2c_regW;
|
||||
|
||||
/* Probes if the sensor is connected */
|
||||
int (*probe)(struct sd *sd);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user