Skip to content

Commit

Permalink
ov5645: I2C address change
Browse files Browse the repository at this point in the history
As soon as the sensor is powered on, change the I2C address to the one
specified in DT. This allows to use multiple physical sensors connected
to the same I2C bus.

Signed-off-by: Todor Tomov <todor.tomov@linaro.org>
  • Loading branch information
todortomov authored and 0day robot committed Oct 3, 2017
1 parent d5426f4 commit c222075
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions drivers/media/i2c/ov5645.c
Expand Up @@ -33,6 +33,7 @@
#include <linux/i2c.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/of.h>
#include <linux/of_graph.h>
#include <linux/regulator/consumer.h>
Expand All @@ -42,6 +43,8 @@
#include <media/v4l2-fwnode.h>
#include <media/v4l2-subdev.h>

static DEFINE_MUTEX(ov5645_lock);

#define OV5645_VOLTAGE_ANALOG 2800000
#define OV5645_VOLTAGE_DIGITAL_CORE 1500000
#define OV5645_VOLTAGE_DIGITAL_IO 1800000
Expand Down Expand Up @@ -590,6 +593,31 @@ static void ov5645_regulators_disable(struct ov5645 *ov5645)
dev_err(ov5645->dev, "io regulator disable failed\n");
}

static int ov5645_write_reg_to(struct ov5645 *ov5645, u16 reg, u8 val,
u16 i2c_addr)
{
u8 regbuf[3] = {
reg >> 8,
reg & 0xff,
val
};
struct i2c_msg msgs = {
.addr = i2c_addr,
.flags = 0,
.len = 3,
.buf = regbuf
};
int ret;

ret = i2c_transfer(ov5645->i2c_client->adapter, &msgs, 1);
if (ret < 0)
dev_err(ov5645->dev,
"%s: write reg error %d on addr 0x%x: reg=0x%x, val=0x%x\n",
__func__, ret, i2c_addr, reg, val);

return ret;
}

static int ov5645_write_reg(struct ov5645 *ov5645, u16 reg, u8 val)
{
u8 regbuf[3];
Expand Down Expand Up @@ -729,10 +757,24 @@ static int ov5645_s_power(struct v4l2_subdev *sd, int on)
*/
if (ov5645->power_count == !on) {
if (on) {
mutex_lock(&ov5645_lock);

ret = ov5645_set_power_on(ov5645);
if (ret < 0)
goto exit;

ret = ov5645_write_reg_to(ov5645, 0x3100,
ov5645->i2c_client->addr, 0x78);
if (ret < 0) {
dev_err(ov5645->dev,
"could not change i2c address\n");
ov5645_set_power_off(ov5645);
mutex_unlock(&ov5645_lock);
goto exit;
}

mutex_unlock(&ov5645_lock);

ret = ov5645_set_register_array(ov5645,
ov5645_global_init_setting,
ARRAY_SIZE(ov5645_global_init_setting));
Expand Down

0 comments on commit c222075

Please sign in to comment.