Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751265AbeACTeY (ORCPT + 1 other); Wed, 3 Jan 2018 14:34:24 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:55311 "EHLO relay3-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750865AbeACTeW (ORCPT ); Wed, 3 Jan 2018 14:34:22 -0500 Date: Wed, 3 Jan 2018 20:34:15 +0100 From: jacopo mondi To: Fabio Estevam Cc: Jacopo Mondi , Laurent Pinchart , Magnus Damm , geert@glider.be, Mauro Carvalho Chehab , Hans Verkuil , Rob Herring , Mark Rutland , linux-renesas-soc@vger.kernel.org, linux-media , linux-sh@vger.kernel.org, "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" , linux-kernel Subject: Re: [PATCH v2 9/9] media: i2c: tw9910: Remove soc_camera dependencies Message-ID: <20180103193415.GI9493@w540> References: <1514469681-15602-1-git-send-email-jacopo+renesas@jmondi.org> <1514469681-15602-10-git-send-email-jacopo+renesas@jmondi.org> <20180103171347.GF9493@w540> <20180103173726.GH9493@w540> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: Hi Fabio, On Wed, Jan 03, 2018 at 04:14:35PM -0200, Fabio Estevam wrote: > On Wed, Jan 3, 2018 at 3:37 PM, jacopo mondi wrote: > > >> Initially the rest GPIO was doing: > >> > >> - gpio_set_value(GPIO_PTT3, 0); > >> - mdelay(10); > >> - gpio_set_value(GPIO_PTT3, 1); > >> - mdelay(10); /* wait to let chip come out of reset */ > > > > And that's what my driver code does :) > > No, on 5/9 you converted the original code to: > > GPIO_LOOKUP("sh7722_pfc", GPIO_PTT3, "rstb", GPIO_ACTIVE_HIGH) > > It should be GPIO_ACTIVE_LOW instead. > > > My point is that if I read the manual and I see an active low gpio (0 > > is reset state) then the driver code uses it as and active high one (1 > > is the reset state), that would be weird to me. > > Then on this patch you should do: > > gpiod_set_value(priv->rstb_gpio, 1); ---> This tells the GPIO to go > to its active state (In this case active == logic level 0) > usleep_range(500, 1000); > gpiod_set_value(priv->rstb_gpio, 0); ---> This tells the GPIO to go to > its inactive state (In this case inactive == logic level 1) > > You can also look at Documentation/gpio/consumer.txt where the usage > of the gpiod_xxx API is described. > > It seems you are confusing it with the legacy gpio_set_value() API > (Documentation/gpio/gpio-legacy.txt) It took you 3 email messages, but maybe I finally got it. So, 1 and 0 do not actually represent the line level but the active or inactive states, that's fine. This seems to me a bit inconsistent with the existence of flags like GPIOD_OUT_HIGH/LOW meant to be used at gpiod_get() time, where the actual line level has to be used instead, but that's a discussion surely not pertinent to this series. Thanks for your patience. j > > Hope this helps.