* [PATCH 3/5] media: ov2640: add primary dt support [not found] <1418038147-13221-1-git-send-email-josh.wu@atmel.com> @ 2014-12-08 11:29 ` Josh Wu 2014-12-08 18:39 ` Laurent Pinchart 2014-12-08 11:29 ` [PATCH 4/5] media: ov2640: add a master clock for sensor Josh Wu 2014-12-08 11:29 ` [PATCH 5/5] media: ov2640: dt: add the device tree binding document Josh Wu 2 siblings, 1 reply; 10+ messages in thread From: Josh Wu @ 2014-12-08 11:29 UTC (permalink / raw) To: linux-media, laurent.pinchart Cc: m.chehab, linux-arm-kernel, g.liakhovetski, Josh Wu, devicetree Add device tree support for ov2640. Cc: devicetree@vger.kernel.org Signed-off-by: Josh Wu <josh.wu@atmel.com> --- v1 -> v2: 1. use gpiod APIs. 2. change the gpio pin's name according to datasheet. 3. reduce the delay for .reset() function. drivers/media/i2c/soc_camera/ov2640.c | 86 ++++++++++++++++++++++++++++++++--- 1 file changed, 80 insertions(+), 6 deletions(-) diff --git a/drivers/media/i2c/soc_camera/ov2640.c b/drivers/media/i2c/soc_camera/ov2640.c index 9ee910d..2a57979 100644 --- a/drivers/media/i2c/soc_camera/ov2640.c +++ b/drivers/media/i2c/soc_camera/ov2640.c @@ -18,6 +18,8 @@ #include <linux/i2c.h> #include <linux/slab.h> #include <linux/delay.h> +#include <linux/gpio.h> +#include <linux/of_gpio.h> #include <linux/v4l2-mediabus.h> #include <linux/videodev2.h> @@ -283,6 +285,10 @@ struct ov2640_priv { u32 cfmt_code; struct v4l2_clk *clk; const struct ov2640_win_size *win; + + struct soc_camera_subdev_desc ssdd_dt; + struct gpio_desc *resetb_gpio; + struct gpio_desc *pwdn_gpio; }; /* @@ -1047,6 +1053,61 @@ static struct v4l2_subdev_ops ov2640_subdev_ops = { .video = &ov2640_subdev_video_ops, }; +/* OF probe functions */ +static int ov2640_hw_power(struct device *dev, int on) +{ + struct i2c_client *client = to_i2c_client(dev); + struct ov2640_priv *priv = to_ov2640(client); + + dev_dbg(&client->dev, "%s: %s the camera\n", + __func__, on ? "ENABLE" : "DISABLE"); + + if (priv->pwdn_gpio && !IS_ERR(priv->pwdn_gpio)) + gpiod_direction_output(priv->pwdn_gpio, !on); + + return 0; +} + +static int ov2640_hw_reset(struct device *dev) +{ + struct i2c_client *client = to_i2c_client(dev); + struct ov2640_priv *priv = to_ov2640(client); + + /* If enabled, give a reset impulse */ + if (priv->resetb_gpio && !IS_ERR(priv->resetb_gpio)) { + gpiod_direction_output(priv->resetb_gpio, 0); + usleep_range(3000, 5000); + gpiod_direction_output(priv->resetb_gpio, 1); + } + + return 0; +} + +static int ov2640_probe_dt(struct i2c_client *client, + struct ov2640_priv *priv) +{ + priv->resetb_gpio = devm_gpiod_get_optional(&client->dev, "resetb", + GPIOD_OUT_HIGH); + if (!priv->resetb_gpio) + dev_warn(&client->dev, "resetb gpio not found!\n"); + else if (IS_ERR(priv->resetb_gpio)) + return -EINVAL; + + priv->pwdn_gpio = devm_gpiod_get_optional(&client->dev, "pwdn", + GPIOD_OUT_HIGH); + if (!priv->pwdn_gpio) + dev_warn(&client->dev, "pwdn gpio not found!\n"); + else if (IS_ERR(priv->pwdn_gpio)) + return -EINVAL; + + /* Initialize the soc_camera_subdev_desc */ + priv->ssdd_dt.power = ov2640_hw_power; + priv->ssdd_dt.reset = ov2640_hw_reset; + client->dev.platform_data = &priv->ssdd_dt; + + return 0; +} + /* * i2c_driver functions */ @@ -1058,12 +1119,6 @@ static int ov2640_probe(struct i2c_client *client, struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); int ret; - if (!ssdd) { - dev_err(&adapter->dev, - "OV2640: Missing platform_data for driver\n"); - return -EINVAL; - } - if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { dev_err(&adapter->dev, "OV2640: I2C-Adapter doesn't support SMBUS\n"); @@ -1077,6 +1132,18 @@ static int ov2640_probe(struct i2c_client *client, return -ENOMEM; } + if (!ssdd) { + if (client->dev.of_node) { + ret = ov2640_probe_dt(client, priv); + if (ret) + return ret; + } else { + dev_err(&client->dev, + "Missing platform_data for driver\n"); + return -EINVAL; + } + } + v4l2_i2c_subdev_init(&priv->subdev, client, &ov2640_subdev_ops); v4l2_ctrl_handler_init(&priv->hdl, 2); v4l2_ctrl_new_std(&priv->hdl, &ov2640_ctrl_ops, @@ -1123,9 +1190,16 @@ static const struct i2c_device_id ov2640_id[] = { }; MODULE_DEVICE_TABLE(i2c, ov2640_id); +static const struct of_device_id ov2640_of_match[] = { + {.compatible = "ovti,ov2640", }, + {}, +}; +MODULE_DEVICE_TABLE(of, ov2640_of_match); + static struct i2c_driver ov2640_i2c_driver = { .driver = { .name = "ov2640", + .of_match_table = of_match_ptr(ov2640_of_match), }, .probe = ov2640_probe, .remove = ov2640_remove, -- 1.9.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 3/5] media: ov2640: add primary dt support 2014-12-08 11:29 ` [PATCH 3/5] media: ov2640: add primary dt support Josh Wu @ 2014-12-08 18:39 ` Laurent Pinchart 2014-12-09 3:10 ` Josh Wu 0 siblings, 1 reply; 10+ messages in thread From: Laurent Pinchart @ 2014-12-08 18:39 UTC (permalink / raw) To: Josh Wu; +Cc: linux-media, m.chehab, linux-arm-kernel, g.liakhovetski, devicetree Hi Josh, Thank you for the patch. On Monday 08 December 2014 19:29:05 Josh Wu wrote: > Add device tree support for ov2640. > > Cc: devicetree@vger.kernel.org > Signed-off-by: Josh Wu <josh.wu@atmel.com> > --- > v1 -> v2: > 1. use gpiod APIs. > 2. change the gpio pin's name according to datasheet. > 3. reduce the delay for .reset() function. > > drivers/media/i2c/soc_camera/ov2640.c | 86 +++++++++++++++++++++++++++++--- > 1 file changed, 80 insertions(+), 6 deletions(-) > > diff --git a/drivers/media/i2c/soc_camera/ov2640.c > b/drivers/media/i2c/soc_camera/ov2640.c index 9ee910d..2a57979 100644 > --- a/drivers/media/i2c/soc_camera/ov2640.c > +++ b/drivers/media/i2c/soc_camera/ov2640.c > @@ -18,6 +18,8 @@ > #include <linux/i2c.h> > #include <linux/slab.h> > #include <linux/delay.h> > +#include <linux/gpio.h> > +#include <linux/of_gpio.h> > #include <linux/v4l2-mediabus.h> > #include <linux/videodev2.h> > > @@ -283,6 +285,10 @@ struct ov2640_priv { > u32 cfmt_code; > struct v4l2_clk *clk; > const struct ov2640_win_size *win; > + > + struct soc_camera_subdev_desc ssdd_dt; > + struct gpio_desc *resetb_gpio; > + struct gpio_desc *pwdn_gpio; > }; > > /* > @@ -1047,6 +1053,61 @@ static struct v4l2_subdev_ops ov2640_subdev_ops = { > .video = &ov2640_subdev_video_ops, > }; > > +/* OF probe functions */ > +static int ov2640_hw_power(struct device *dev, int on) > +{ > + struct i2c_client *client = to_i2c_client(dev); > + struct ov2640_priv *priv = to_ov2640(client); > + > + dev_dbg(&client->dev, "%s: %s the camera\n", > + __func__, on ? "ENABLE" : "DISABLE"); > + > + if (priv->pwdn_gpio && !IS_ERR(priv->pwdn_gpio)) No need to test for IS_ERR, as the probe function would have failed in that case. > + gpiod_direction_output(priv->pwdn_gpio, !on); > + > + return 0; > +} > + > +static int ov2640_hw_reset(struct device *dev) > +{ > + struct i2c_client *client = to_i2c_client(dev); > + struct ov2640_priv *priv = to_ov2640(client); > + > + /* If enabled, give a reset impulse */ > + if (priv->resetb_gpio && !IS_ERR(priv->resetb_gpio)) { Same here. > + gpiod_direction_output(priv->resetb_gpio, 0); Given that your DT should specify the active low GPIO flag, and that the gpiod API inverts the value in that case, you should set the value to 1 here. > + usleep_range(3000, 5000); > + gpiod_direction_output(priv->resetb_gpio, 1); And to 0 here. > + } > + > + return 0; > +} > + > +static int ov2640_probe_dt(struct i2c_client *client, > + struct ov2640_priv *priv) > +{ > + priv->resetb_gpio = devm_gpiod_get_optional(&client->dev, "resetb", > + GPIOD_OUT_HIGH); > + if (!priv->resetb_gpio) > + dev_warn(&client->dev, "resetb gpio not found!\n"); No need to warn here, it's perfectly fine if the reset signal isn't connected to a GPIO. > + else if (IS_ERR(priv->resetb_gpio)) > + return -EINVAL; > + > + priv->pwdn_gpio = devm_gpiod_get_optional(&client->dev, "pwdn", > + GPIOD_OUT_HIGH); > + if (!priv->pwdn_gpio) > + dev_warn(&client->dev, "pwdn gpio not found!\n"); Same here. > + else if (IS_ERR(priv->pwdn_gpio)) > + return -EINVAL; > + > + /* Initialize the soc_camera_subdev_desc */ > + priv->ssdd_dt.power = ov2640_hw_power; > + priv->ssdd_dt.reset = ov2640_hw_reset; > + client->dev.platform_data = &priv->ssdd_dt; > + > + return 0; > +} > + > /* > * i2c_driver functions > */ > @@ -1058,12 +1119,6 @@ static int ov2640_probe(struct i2c_client *client, > struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); > int ret; > > - if (!ssdd) { > - dev_err(&adapter->dev, > - "OV2640: Missing platform_data for driver\n"); > - return -EINVAL; > - } > - > if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { > dev_err(&adapter->dev, > "OV2640: I2C-Adapter doesn't support SMBUS\n"); > @@ -1077,6 +1132,18 @@ static int ov2640_probe(struct i2c_client *client, > return -ENOMEM; > } > > + if (!ssdd) { > + if (client->dev.of_node) { > + ret = ov2640_probe_dt(client, priv); > + if (ret) > + return ret; > + } else { > + dev_err(&client->dev, > + "Missing platform_data for driver\n"); > + return -EINVAL; > + } I would test for !client->dev.of_node and return the error, you could then get rid of the else and lower the indentation level for the call to ov2640_probe_dt(). > + } > + > v4l2_i2c_subdev_init(&priv->subdev, client, &ov2640_subdev_ops); > v4l2_ctrl_handler_init(&priv->hdl, 2); > v4l2_ctrl_new_std(&priv->hdl, &ov2640_ctrl_ops, > @@ -1123,9 +1190,16 @@ static const struct i2c_device_id ov2640_id[] = { > }; > MODULE_DEVICE_TABLE(i2c, ov2640_id); > > +static const struct of_device_id ov2640_of_match[] = { > + {.compatible = "ovti,ov2640", }, > + {}, > +}; > +MODULE_DEVICE_TABLE(of, ov2640_of_match); > + > static struct i2c_driver ov2640_i2c_driver = { > .driver = { > .name = "ov2640", > + .of_match_table = of_match_ptr(ov2640_of_match), > }, > .probe = ov2640_probe, > .remove = ov2640_remove, -- Regards, Laurent Pinchart ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 3/5] media: ov2640: add primary dt support 2014-12-08 18:39 ` Laurent Pinchart @ 2014-12-09 3:10 ` Josh Wu [not found] ` <54866809.7020402-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 10+ messages in thread From: Josh Wu @ 2014-12-09 3:10 UTC (permalink / raw) To: Laurent Pinchart Cc: linux-media, m.chehab, linux-arm-kernel, g.liakhovetski, devicetree Hi, Laurent On 12/9/2014 2:39 AM, Laurent Pinchart wrote: > Hi Josh, > > Thank you for the patch. > > On Monday 08 December 2014 19:29:05 Josh Wu wrote: >> Add device tree support for ov2640. >> >> Cc: devicetree@vger.kernel.org >> Signed-off-by: Josh Wu <josh.wu@atmel.com> >> --- >> v1 -> v2: >> 1. use gpiod APIs. >> 2. change the gpio pin's name according to datasheet. >> 3. reduce the delay for .reset() function. >> >> drivers/media/i2c/soc_camera/ov2640.c | 86 +++++++++++++++++++++++++++++--- >> 1 file changed, 80 insertions(+), 6 deletions(-) >> >> diff --git a/drivers/media/i2c/soc_camera/ov2640.c >> b/drivers/media/i2c/soc_camera/ov2640.c index 9ee910d..2a57979 100644 >> --- a/drivers/media/i2c/soc_camera/ov2640.c >> +++ b/drivers/media/i2c/soc_camera/ov2640.c >> @@ -18,6 +18,8 @@ >> #include <linux/i2c.h> >> #include <linux/slab.h> >> #include <linux/delay.h> >> +#include <linux/gpio.h> >> +#include <linux/of_gpio.h> >> #include <linux/v4l2-mediabus.h> >> #include <linux/videodev2.h> >> >> @@ -283,6 +285,10 @@ struct ov2640_priv { >> u32 cfmt_code; >> struct v4l2_clk *clk; >> const struct ov2640_win_size *win; >> + >> + struct soc_camera_subdev_desc ssdd_dt; >> + struct gpio_desc *resetb_gpio; >> + struct gpio_desc *pwdn_gpio; >> }; >> >> /* >> @@ -1047,6 +1053,61 @@ static struct v4l2_subdev_ops ov2640_subdev_ops = { >> .video = &ov2640_subdev_video_ops, >> }; >> >> +/* OF probe functions */ >> +static int ov2640_hw_power(struct device *dev, int on) >> +{ >> + struct i2c_client *client = to_i2c_client(dev); >> + struct ov2640_priv *priv = to_ov2640(client); >> + >> + dev_dbg(&client->dev, "%s: %s the camera\n", >> + __func__, on ? "ENABLE" : "DISABLE"); >> + >> + if (priv->pwdn_gpio && !IS_ERR(priv->pwdn_gpio)) > No need to test for IS_ERR, as the probe function would have failed in that > case. right. I'll change it. > >> + gpiod_direction_output(priv->pwdn_gpio, !on); >> + >> + return 0; >> +} >> + >> +static int ov2640_hw_reset(struct device *dev) >> +{ >> + struct i2c_client *client = to_i2c_client(dev); >> + struct ov2640_priv *priv = to_ov2640(client); >> + >> + /* If enabled, give a reset impulse */ >> + if (priv->resetb_gpio && !IS_ERR(priv->resetb_gpio)) { > Same here. ditto. > >> + gpiod_direction_output(priv->resetb_gpio, 0); > Given that your DT should specify the active low GPIO flag, and that the gpiod > API inverts the value in that case, you should set the value to 1 here. Thanks for the information. I'll fix it. > >> + usleep_range(3000, 5000); >> + gpiod_direction_output(priv->resetb_gpio, 1); > And to 0 here. yes. > >> + } >> + >> + return 0; >> +} >> + >> +static int ov2640_probe_dt(struct i2c_client *client, >> + struct ov2640_priv *priv) >> +{ >> + priv->resetb_gpio = devm_gpiod_get_optional(&client->dev, "resetb", >> + GPIOD_OUT_HIGH); >> + if (!priv->resetb_gpio) >> + dev_warn(&client->dev, "resetb gpio not found!\n"); > No need to warn here, it's perfectly fine if the reset signal isn't connected > to a GPIO. I want to print some information if no GPIO is assigned. So I'd like use dev_dbg() here. What do you feel? > >> + else if (IS_ERR(priv->resetb_gpio)) >> + return -EINVAL; >> + >> + priv->pwdn_gpio = devm_gpiod_get_optional(&client->dev, "pwdn", >> + GPIOD_OUT_HIGH); >> + if (!priv->pwdn_gpio) >> + dev_warn(&client->dev, "pwdn gpio not found!\n"); > Same here. ditto. > >> + else if (IS_ERR(priv->pwdn_gpio)) >> + return -EINVAL; >> + >> + /* Initialize the soc_camera_subdev_desc */ >> + priv->ssdd_dt.power = ov2640_hw_power; >> + priv->ssdd_dt.reset = ov2640_hw_reset; >> + client->dev.platform_data = &priv->ssdd_dt; >> + >> + return 0; >> +} >> + >> /* >> * i2c_driver functions >> */ >> @@ -1058,12 +1119,6 @@ static int ov2640_probe(struct i2c_client *client, >> struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); >> int ret; >> >> - if (!ssdd) { >> - dev_err(&adapter->dev, >> - "OV2640: Missing platform_data for driver\n"); >> - return -EINVAL; >> - } >> - >> if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { >> dev_err(&adapter->dev, >> "OV2640: I2C-Adapter doesn't support SMBUS\n"); >> @@ -1077,6 +1132,18 @@ static int ov2640_probe(struct i2c_client *client, >> return -ENOMEM; >> } >> >> + if (!ssdd) { >> + if (client->dev.of_node) { >> + ret = ov2640_probe_dt(client, priv); >> + if (ret) >> + return ret; >> + } else { >> + dev_err(&client->dev, >> + "Missing platform_data for driver\n"); >> + return -EINVAL; >> + } > I would test for !client->dev.of_node and return the error, you could then get > rid of the else and lower the indentation level for the call to > ov2640_probe_dt(). Okay. I'll change it in next version. Best Regards, Josh Wu > >> + } >> + >> v4l2_i2c_subdev_init(&priv->subdev, client, &ov2640_subdev_ops); >> v4l2_ctrl_handler_init(&priv->hdl, 2); >> v4l2_ctrl_new_std(&priv->hdl, &ov2640_ctrl_ops, >> @@ -1123,9 +1190,16 @@ static const struct i2c_device_id ov2640_id[] = { >> }; >> MODULE_DEVICE_TABLE(i2c, ov2640_id); >> >> +static const struct of_device_id ov2640_of_match[] = { >> + {.compatible = "ovti,ov2640", }, >> + {}, >> +}; >> +MODULE_DEVICE_TABLE(of, ov2640_of_match); >> + >> static struct i2c_driver ov2640_i2c_driver = { >> .driver = { >> .name = "ov2640", >> + .of_match_table = of_match_ptr(ov2640_of_match), >> }, >> .probe = ov2640_probe, >> .remove = ov2640_remove, ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <54866809.7020402-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH 3/5] media: ov2640: add primary dt support [not found] ` <54866809.7020402-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org> @ 2014-12-09 8:07 ` Laurent Pinchart 0 siblings, 0 replies; 10+ messages in thread From: Laurent Pinchart @ 2014-12-09 8:07 UTC (permalink / raw) To: Josh Wu Cc: linux-media-u79uwXL29TY76Z2rM5mHXA, m.chehab-Sze3O3UU22JBDgjK7y7TUQ, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, g.liakhovetski-Mmb7MZpHnFY, devicetree-u79uwXL29TY76Z2rM5mHXA Hi Josh, On Tuesday 09 December 2014 11:10:01 Josh Wu wrote: > On 12/9/2014 2:39 AM, Laurent Pinchart wrote: > > Hi Josh, > > > > Thank you for the patch. > > > > On Monday 08 December 2014 19:29:05 Josh Wu wrote: > >> Add device tree support for ov2640. > >> > >> Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > >> Signed-off-by: Josh Wu <josh.wu-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org> > >> --- > >> > >> v1 -> v2: > >> 1. use gpiod APIs. > >> 2. change the gpio pin's name according to datasheet. > >> 3. reduce the delay for .reset() function. > >> > >> drivers/media/i2c/soc_camera/ov2640.c | 86 +++++++++++++++++++++++++--- > >> 1 file changed, 80 insertions(+), 6 deletions(-) > >> > >> diff --git a/drivers/media/i2c/soc_camera/ov2640.c > >> b/drivers/media/i2c/soc_camera/ov2640.c index 9ee910d..2a57979 100644 > >> --- a/drivers/media/i2c/soc_camera/ov2640.c > >> +++ b/drivers/media/i2c/soc_camera/ov2640.c [snip] > >> +static int ov2640_probe_dt(struct i2c_client *client, > >> + struct ov2640_priv *priv) > >> +{ > >> + priv->resetb_gpio = devm_gpiod_get_optional(&client->dev, "resetb", > >> + GPIOD_OUT_HIGH); > >> + if (!priv->resetb_gpio) > >> + dev_warn(&client->dev, "resetb gpio not found!\n"); > > > > No need to warn here, it's perfectly fine if the reset signal isn't > > connected to a GPIO. > > I want to print some information if no GPIO is assigned. So I'd like use > dev_dbg() here. > What do you feel? If you want to print a message in that case dev_dbg is the most appropriate log level. I would skip it completely, but that's up to you. > >> + else if (IS_ERR(priv->resetb_gpio)) > >> + return -EINVAL; > >> + > >> + priv->pwdn_gpio = devm_gpiod_get_optional(&client->dev, "pwdn", > >> + GPIOD_OUT_HIGH); > >> + if (!priv->pwdn_gpio) > >> + dev_warn(&client->dev, "pwdn gpio not found!\n"); > > > > Same here. > > ditto. > > >> + else if (IS_ERR(priv->pwdn_gpio)) > >> + return -EINVAL; > >> + > >> + /* Initialize the soc_camera_subdev_desc */ > >> + priv->ssdd_dt.power = ov2640_hw_power; > >> + priv->ssdd_dt.reset = ov2640_hw_reset; > >> + client->dev.platform_data = &priv->ssdd_dt; > >> + > >> + return 0; > >> +} > >> + > >> /* > >> * i2c_driver functions > >> */ -- Regards, Laurent Pinchart -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 4/5] media: ov2640: add a master clock for sensor [not found] <1418038147-13221-1-git-send-email-josh.wu@atmel.com> 2014-12-08 11:29 ` [PATCH 3/5] media: ov2640: add primary dt support Josh Wu @ 2014-12-08 11:29 ` Josh Wu 2014-12-08 15:10 ` Fabio Estevam 2014-12-08 11:29 ` [PATCH 5/5] media: ov2640: dt: add the device tree binding document Josh Wu 2 siblings, 1 reply; 10+ messages in thread From: Josh Wu @ 2014-12-08 11:29 UTC (permalink / raw) To: linux-media, laurent.pinchart Cc: m.chehab, linux-arm-kernel, g.liakhovetski, Josh Wu, devicetree The master clock (xvclk) is mandatory. It's a common clock framework clock. It can make sensor output a pixel clock to the camera interface. Cc: devicetree@vger.kernel.org Signed-off-by: Josh Wu <josh.wu@atmel.com> --- v1 -> v2: 1. change the clock's name. 2. Make the clock is mandatory. drivers/media/i2c/soc_camera/ov2640.c | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/drivers/media/i2c/soc_camera/ov2640.c b/drivers/media/i2c/soc_camera/ov2640.c index 2a57979..7cb61e2 100644 --- a/drivers/media/i2c/soc_camera/ov2640.c +++ b/drivers/media/i2c/soc_camera/ov2640.c @@ -13,6 +13,7 @@ * published by the Free Software Foundation. */ +#include <linux/clk.h> #include <linux/init.h> #include <linux/module.h> #include <linux/i2c.h> @@ -31,6 +32,7 @@ #define VAL_SET(x, mask, rshift, lshift) \ ((((x) >> rshift) & mask) << lshift) + /* * DSP registers * register offset for BANK_SEL == BANK_SEL_DSP @@ -284,6 +286,7 @@ struct ov2640_priv { struct v4l2_ctrl_handler hdl; u32 cfmt_code; struct v4l2_clk *clk; + struct clk *master_clk; const struct ov2640_win_size *win; struct soc_camera_subdev_desc ssdd_dt; @@ -746,6 +749,7 @@ static int ov2640_s_power(struct v4l2_subdev *sd, int on) struct soc_camera_subdev_desc *ssdd = soc_camera_i2c_to_desc(client); struct ov2640_priv *priv = to_ov2640(client); struct v4l2_clk *clk; + int ret; if (!priv->clk) { clk = v4l2_clk_get(&client->dev, "mclk"); @@ -755,7 +759,20 @@ static int ov2640_s_power(struct v4l2_subdev *sd, int on) priv->clk = clk; } - return soc_camera_set_power(&client->dev, ssdd, priv->clk, on); + if (on) { + ret = clk_prepare_enable(priv->master_clk); + if (ret) + return ret; + } else { + clk_disable_unprepare(priv->master_clk); + } + + ret = soc_camera_set_power(&client->dev, ssdd, priv->clk, on); + + if (ret && on) + clk_disable_unprepare(priv->master_clk); + + return ret; } /* Select the nearest higher resolution for capture */ @@ -1144,6 +1161,10 @@ static int ov2640_probe(struct i2c_client *client, } } + priv->master_clk = devm_clk_get(&client->dev, "xvclk"); + if (IS_ERR(priv->master_clk)) + return -EINVAL; + v4l2_i2c_subdev_init(&priv->subdev, client, &ov2640_subdev_ops); v4l2_ctrl_handler_init(&priv->hdl, 2); v4l2_ctrl_new_std(&priv->hdl, &ov2640_ctrl_ops, -- 1.9.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 4/5] media: ov2640: add a master clock for sensor 2014-12-08 11:29 ` [PATCH 4/5] media: ov2640: add a master clock for sensor Josh Wu @ 2014-12-08 15:10 ` Fabio Estevam 2014-12-09 3:03 ` Josh Wu 0 siblings, 1 reply; 10+ messages in thread From: Fabio Estevam @ 2014-12-08 15:10 UTC (permalink / raw) To: Josh Wu Cc: linux-media, Laurent Pinchart, Mauro Carvalho Chehab, linux-arm-kernel@lists.infradead.org, Guennadi Liakhovetski, devicetree@vger.kernel.org On Mon, Dec 8, 2014 at 9:29 AM, Josh Wu <josh.wu@atmel.com> wrote: > + priv->master_clk = devm_clk_get(&client->dev, "xvclk"); > + if (IS_ERR(priv->master_clk)) > + return -EINVAL; You should return PTR_ERR(priv->master_clk) instead. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 4/5] media: ov2640: add a master clock for sensor 2014-12-08 15:10 ` Fabio Estevam @ 2014-12-09 3:03 ` Josh Wu 0 siblings, 0 replies; 10+ messages in thread From: Josh Wu @ 2014-12-09 3:03 UTC (permalink / raw) To: Fabio Estevam Cc: linux-media, Laurent Pinchart, Mauro Carvalho Chehab, linux-arm-kernel@lists.infradead.org, Guennadi Liakhovetski, devicetree@vger.kernel.org Hi, Fabio On 12/8/2014 11:10 PM, Fabio Estevam wrote: > On Mon, Dec 8, 2014 at 9:29 AM, Josh Wu <josh.wu@atmel.com> wrote: > >> + priv->master_clk = devm_clk_get(&client->dev, "xvclk"); >> + if (IS_ERR(priv->master_clk)) >> + return -EINVAL; > You should return PTR_ERR(priv->master_clk) instead. sure. I'll fix it in next version. Thanks. Best Regards, Josh Wu ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 5/5] media: ov2640: dt: add the device tree binding document [not found] <1418038147-13221-1-git-send-email-josh.wu@atmel.com> 2014-12-08 11:29 ` [PATCH 3/5] media: ov2640: add primary dt support Josh Wu 2014-12-08 11:29 ` [PATCH 4/5] media: ov2640: add a master clock for sensor Josh Wu @ 2014-12-08 11:29 ` Josh Wu 2014-12-08 18:59 ` Laurent Pinchart 2 siblings, 1 reply; 10+ messages in thread From: Josh Wu @ 2014-12-08 11:29 UTC (permalink / raw) To: linux-media, laurent.pinchart Cc: m.chehab, linux-arm-kernel, g.liakhovetski, Josh Wu, devicetree Add the document for ov2640 dt. Cc: devicetree@vger.kernel.org Signed-off-by: Josh Wu <josh.wu@atmel.com> --- v1 -> v2: 1. change the compatible string to be consistent with verdor file. 2. change the clock and pins' name. 3. add missed pinctrl in example. .../devicetree/bindings/media/i2c/ov2640.txt | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov2640.txt diff --git a/Documentation/devicetree/bindings/media/i2c/ov2640.txt b/Documentation/devicetree/bindings/media/i2c/ov2640.txt new file mode 100644 index 0000000..15be3cb --- /dev/null +++ b/Documentation/devicetree/bindings/media/i2c/ov2640.txt @@ -0,0 +1,44 @@ +* Omnivision ov2640 CMOS sensor + +The Omnivision OV2640 sensor support multiple resolutions output, such as +CIF, SVGA, UXGA. It also can support YUV422/420, RGB565/555 or raw RGB +output format. + +Required Properties : +- compatible: Must be "ovti,ov2640" +- clocks: reference master clock, if using external fixed clock, you + no need to have such property. +- clock-names: Must be "xvclk", it means the master clock for ov2640. + +Optional Properties: +- resetb-gpios: reset pin +- pwdn-gpios: power down pin + +The device node must contain one 'port' child node for its digital output +video port, in accordance with the video interface bindings defined in +Documentation/devicetree/bindings/media/video-interfaces.txt. + +Example: + + i2c1: i2c@f0018000 { + ov2640: camera@0x30 { + compatible = "ovti,ov2640"; + reg = <0x30>; + + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_pck1 &pinctrl_ov2640_pwdn &pinctrl_ov2640_reset>; + + resetb-gpios = <&pioE 24 GPIO_ACTIVE_HIGH>; + pwdn-gpios = <&pioE 29 GPIO_ACTIVE_HIGH>; + + clocks = <&pck1>; + clock-names = "xvclk"; + + port { + ov2640_0: endpoint { + remote-endpoint = <&isi_0>; + bus-width = <8>; + }; + }; + }; + }; -- 1.9.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 5/5] media: ov2640: dt: add the device tree binding document 2014-12-08 11:29 ` [PATCH 5/5] media: ov2640: dt: add the device tree binding document Josh Wu @ 2014-12-08 18:59 ` Laurent Pinchart 2014-12-09 3:19 ` Josh Wu 0 siblings, 1 reply; 10+ messages in thread From: Laurent Pinchart @ 2014-12-08 18:59 UTC (permalink / raw) To: Josh Wu; +Cc: linux-media, m.chehab, linux-arm-kernel, g.liakhovetski, devicetree Hi Josh, Thank you for the patch. On Monday 08 December 2014 19:29:07 Josh Wu wrote: > Add the document for ov2640 dt. > > Cc: devicetree@vger.kernel.org > Signed-off-by: Josh Wu <josh.wu@atmel.com> > --- > v1 -> v2: > 1. change the compatible string to be consistent with verdor file. That's nice, but you still need to send a patch to add the ovti vendor prefix to Documentation/devicetree/bindings/vendor-prefixes.txt. It's not there yet. > 2. change the clock and pins' name. > 3. add missed pinctrl in example. > > .../devicetree/bindings/media/i2c/ov2640.txt | 44 +++++++++++++++++++ > 1 file changed, 44 insertions(+) > create mode 100644 Documentation/devicetree/bindings/media/i2c/ov2640.txt > > diff --git a/Documentation/devicetree/bindings/media/i2c/ov2640.txt > b/Documentation/devicetree/bindings/media/i2c/ov2640.txt new file mode > 100644 > index 0000000..15be3cb > --- /dev/null > +++ b/Documentation/devicetree/bindings/media/i2c/ov2640.txt > @@ -0,0 +1,44 @@ > +* Omnivision ov2640 CMOS sensor > + > +The Omnivision OV2640 sensor support multiple resolutions output, such as > +CIF, SVGA, UXGA. It also can support YUV422/420, RGB565/555 or raw RGB > +output format. > + > +Required Properties : > +- compatible: Must be "ovti,ov2640" > +- clocks: reference master clock, if using external fixed clock, you > + no need to have such property. That's not true anymore, the clocks property is mandatory in all cases. Just describe it as - clocks: reference to the xvclk input clock. > +- clock-names: Must be "xvclk", it means the master clock for ov2640. I would drop "it means the master clock for ov2640". > +Optional Properties: > +- resetb-gpios: reset pin - resetb-gpios: reference to the GPIO connected to the resetb pin, if any. > +- pwdn-gpios: power down pin - pwdn-gpios: reference to the GPIO connected to the pwdn pin, if any. > + > +The device node must contain one 'port' child node for its digital output > +video port, in accordance with the video interface bindings defined in > +Documentation/devicetree/bindings/media/video-interfaces.txt. > + > +Example: > + > + i2c1: i2c@f0018000 { > + ov2640: camera@0x30 { > + compatible = "ovti,ov2640"; > + reg = <0x30>; > + > + pinctrl-names = "default"; > + pinctrl-0 = <&pinctrl_pck1 &pinctrl_ov2640_pwdn &pinctrl_ov2640_reset>; > + > + resetb-gpios = <&pioE 24 GPIO_ACTIVE_HIGH>; > + pwdn-gpios = <&pioE 29 GPIO_ACTIVE_HIGH>; > + > + clocks = <&pck1>; > + clock-names = "xvclk"; > + > + port { > + ov2640_0: endpoint { > + remote-endpoint = <&isi_0>; > + bus-width = <8>; > + }; > + }; > + }; > + }; -- Regards, Laurent Pinchart ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 5/5] media: ov2640: dt: add the device tree binding document 2014-12-08 18:59 ` Laurent Pinchart @ 2014-12-09 3:19 ` Josh Wu 0 siblings, 0 replies; 10+ messages in thread From: Josh Wu @ 2014-12-09 3:19 UTC (permalink / raw) To: Laurent Pinchart Cc: linux-media, m.chehab, linux-arm-kernel, g.liakhovetski, devicetree Hi, Laurent On 12/9/2014 2:59 AM, Laurent Pinchart wrote: > Hi Josh, > > Thank you for the patch. > > On Monday 08 December 2014 19:29:07 Josh Wu wrote: >> Add the document for ov2640 dt. >> >> Cc: devicetree@vger.kernel.org >> Signed-off-by: Josh Wu <josh.wu@atmel.com> >> --- >> v1 -> v2: >> 1. change the compatible string to be consistent with verdor file. > That's nice, but you still need to send a patch to add the ovti vendor prefix > to Documentation/devicetree/bindings/vendor-prefixes.txt. It's not there yet. As Fabio already send a patch to fix the vendor file. See URL: http://patchwork.ozlabs.org/patch/416685/ I think it will go to mainline soon. > >> 2. change the clock and pins' name. >> 3. add missed pinctrl in example. >> >> .../devicetree/bindings/media/i2c/ov2640.txt | 44 +++++++++++++++++++ >> 1 file changed, 44 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/media/i2c/ov2640.txt >> >> diff --git a/Documentation/devicetree/bindings/media/i2c/ov2640.txt >> b/Documentation/devicetree/bindings/media/i2c/ov2640.txt new file mode >> 100644 >> index 0000000..15be3cb >> --- /dev/null >> +++ b/Documentation/devicetree/bindings/media/i2c/ov2640.txt >> @@ -0,0 +1,44 @@ >> +* Omnivision ov2640 CMOS sensor >> + >> +The Omnivision OV2640 sensor support multiple resolutions output, such as >> +CIF, SVGA, UXGA. It also can support YUV422/420, RGB565/555 or raw RGB >> +output format. >> + >> +Required Properties : >> +- compatible: Must be "ovti,ov2640" >> +- clocks: reference master clock, if using external fixed clock, you >> + no need to have such property. > That's not true anymore, the clocks property is mandatory in all cases. Just > describe it as > > - clocks: reference to the xvclk input clock. > >> +- clock-names: Must be "xvclk", it means the master clock for ov2640. > I would drop "it means the master clock for ov2640". > >> +Optional Properties: >> +- resetb-gpios: reset pin > - resetb-gpios: reference to the GPIO connected to the resetb pin, if any. > >> +- pwdn-gpios: power down pin > - pwdn-gpios: reference to the GPIO connected to the pwdn pin, if any. I'll fix all above that you mentioned in next version. Thank a lot for the review. Best Regards, Josh Wu > >> + >> +The device node must contain one 'port' child node for its digital output >> +video port, in accordance with the video interface bindings defined in >> +Documentation/devicetree/bindings/media/video-interfaces.txt. >> + >> +Example: >> + >> + i2c1: i2c@f0018000 { >> + ov2640: camera@0x30 { >> + compatible = "ovti,ov2640"; >> + reg = <0x30>; >> + >> + pinctrl-names = "default"; >> + pinctrl-0 = <&pinctrl_pck1 &pinctrl_ov2640_pwdn > &pinctrl_ov2640_reset>; >> + >> + resetb-gpios = <&pioE 24 GPIO_ACTIVE_HIGH>; >> + pwdn-gpios = <&pioE 29 GPIO_ACTIVE_HIGH>; >> + >> + clocks = <&pck1>; >> + clock-names = "xvclk"; >> + >> + port { >> + ov2640_0: endpoint { >> + remote-endpoint = <&isi_0>; >> + bus-width = <8>; >> + }; >> + }; >> + }; >> + }; ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2014-12-09 8:07 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <1418038147-13221-1-git-send-email-josh.wu@atmel.com> 2014-12-08 11:29 ` [PATCH 3/5] media: ov2640: add primary dt support Josh Wu 2014-12-08 18:39 ` Laurent Pinchart 2014-12-09 3:10 ` Josh Wu [not found] ` <54866809.7020402-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org> 2014-12-09 8:07 ` Laurent Pinchart 2014-12-08 11:29 ` [PATCH 4/5] media: ov2640: add a master clock for sensor Josh Wu 2014-12-08 15:10 ` Fabio Estevam 2014-12-09 3:03 ` Josh Wu 2014-12-08 11:29 ` [PATCH 5/5] media: ov2640: dt: add the device tree binding document Josh Wu 2014-12-08 18:59 ` Laurent Pinchart 2014-12-09 3:19 ` Josh Wu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).