From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1459DC54FD0 for ; Thu, 23 Apr 2020 07:47:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F193D20781 for ; Thu, 23 Apr 2020 07:47:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726953AbgDWHr3 (ORCPT ); Thu, 23 Apr 2020 03:47:29 -0400 Received: from mga07.intel.com ([134.134.136.100]:64699 "EHLO mga07.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726322AbgDWHr2 (ORCPT ); Thu, 23 Apr 2020 03:47:28 -0400 IronPort-SDR: 4OUUcQHIIKsiOGwvPAP8zmx8ioWZllOaiYAW/wJPNjjCRI5CEWTu/g28Ya0NtD7sznzisg/B6l KWb0Z0TAV8LA== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Apr 2020 00:47:27 -0700 IronPort-SDR: xebuX4Zqh2Fzs8VKrVMTXlJ1UMcv1KriaDNTvXrXAHOnRuQgYvCSjXW9IpM+PKHsaq1g09075h aWGqFgg+JwGw== X-IronPort-AV: E=Sophos;i="5.73,306,1583222400"; d="scan'208";a="255903604" Received: from paasikivi.fi.intel.com ([10.237.72.42]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Apr 2020 00:47:16 -0700 Received: by paasikivi.fi.intel.com (Postfix, from userid 1000) id B6BA22080B; Thu, 23 Apr 2020 10:47:13 +0300 (EEST) Date: Thu, 23 Apr 2020 10:47:13 +0300 From: Sakari Ailus To: Roman Kovalivskyi Cc: linux-kernel@vger.kernel.org, linux-media@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Luis Oliveira , Niklas =?iso-8859-1?Q?S=F6derlund?= , Jacopo Mondi , Michael Rodin , Mauro Carvalho Chehab , Hugues Fruchet , Maxime Ripard , Adam Ford , Todor Tomov , Suresh Udipi , Andrew Gabbasov , Eugeniu Rosca , Dave Stevenson Subject: Re: [PATCH 3/4] media: ov5647: Add support for non-continuous clock mode Message-ID: <20200423074713.GK5381@paasikivi.fi.intel.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Roman, On Mon, Apr 13, 2020 at 12:17:46PM +0300, Roman Kovalivskyi wrote: > From: Dave Stevenson > > The driver was only supporting continuous clock mode > although this was not stated anywhere. > Non-continuous clock saves a small amount of power and > on some SoCs is easier to interface with. > > Signed-off-by: Dave Stevenson > Signed-off-by: Roman Kovalivskyi > --- > drivers/media/i2c/ov5647.c | 17 ++++++++++++++--- > 1 file changed, 14 insertions(+), 3 deletions(-) > > diff --git a/drivers/media/i2c/ov5647.c b/drivers/media/i2c/ov5647.c > index c39e3d20e3ef..8a1a515388e0 100644 > --- a/drivers/media/i2c/ov5647.c > +++ b/drivers/media/i2c/ov5647.c > @@ -44,6 +44,7 @@ > #define PWDN_ACTIVE_DELAY_MS 20 > > #define MIPI_CTRL00_CLOCK_LANE_GATE BIT(5) > +#define MIPI_CTRL00_LINE_SYNC_ENABLE BIT(4) > #define MIPI_CTRL00_BUS_IDLE BIT(2) > #define MIPI_CTRL00_CLOCK_LANE_DISABLE BIT(0) > > @@ -95,6 +96,7 @@ struct ov5647 { > int power_count; > struct clk *xclk; > struct gpio_desc *pwdn; > + unsigned int flags; > }; > > static inline struct ov5647 *to_state(struct v4l2_subdev *sd) > @@ -269,9 +271,15 @@ static int ov5647_set_virtual_channel(struct v4l2_subdev *sd, int channel) > > static int ov5647_stream_on(struct v4l2_subdev *sd) > { > + struct ov5647 *ov5647 = to_state(sd); > + u8 val = MIPI_CTRL00_BUS_IDLE; > int ret; > > - ret = ov5647_write(sd, OV5647_REG_MIPI_CTRL00, MIPI_CTRL00_BUS_IDLE); > + if (ov5647->flags & V4L2_MBUS_CSI2_NONCONTINUOUS_CLOCK) > + val |= MIPI_CTRL00_CLOCK_LANE_GATE | > + MIPI_CTRL00_LINE_SYNC_ENABLE; > + > + ret = ov5647_write(sd, OV5647_REG_MIPI_CTRL00, val); > if (ret < 0) > return ret; > > @@ -568,7 +576,7 @@ static const struct v4l2_subdev_internal_ops ov5647_subdev_internal_ops = { > .open = ov5647_open, > }; > > -static int ov5647_parse_dt(struct device_node *np) > +static int ov5647_parse_dt(struct device_node *np, struct ov5647 *sensor) > { > struct v4l2_fwnode_endpoint bus_cfg = { .bus_type = 0 }; The bus type should be set to V4L2_MBUS_CSI2_DPHY here; 0 is just for compatibility with the old heuristics. > struct device_node *ep; > @@ -581,6 +589,9 @@ static int ov5647_parse_dt(struct device_node *np) > > ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(ep), &bus_cfg); > > + if (!ret) > + sensor->flags = bus_cfg.bus.mipi_csi2.flags; > + > of_node_put(ep); > return ret; > } > @@ -599,7 +610,7 @@ static int ov5647_probe(struct i2c_client *client) > return -ENOMEM; > > if (IS_ENABLED(CONFIG_OF) && np) { > - ret = ov5647_parse_dt(np); > + ret = ov5647_parse_dt(np, sensor); > if (ret) { > dev_err(dev, "DT parsing error: %d\n", ret); > return ret; -- Kind regards, Sakari Ailus