From: Grant Likely <grant.likely@secretlab.ca>
To: Peter Tyser <ptyser@xes-inc.com>
Cc: linux-kernel@vger.kernel.org, "Alek Du" <alek.du@intel.com>,
"Samuel Ortiz" <sameo@linux.intel.com>,
"David Brownell" <dbrownell@users.sourceforge.net>,
"Eric Miao" <eric.y.miao@gmail.com>,
"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
"Mark Brown" <broonie@opensource.wolfsonmicro.com>,
"Joe Perches" <joe@perches.com>,
"Alan Cox" <alan@lxorguk.ukuu.org.uk>
Subject: Re: [PATCH v5 2/4] gpiolib: Add ability to get GPIO direction
Date: Mon, 7 Mar 2011 00:08:16 -0700 [thread overview]
Message-ID: <20110307070816.GC29999@angua.secretlab.ca> (raw)
In-Reply-To: <1299467241.11719.145.camel@ptyser-laptop>
On Sun, Mar 06, 2011 at 09:07:21PM -0600, Peter Tyser wrote:
> On Sun, 2011-03-06 at 00:30 -0700, Grant Likely wrote:
> > On Tue, Mar 01, 2011 at 05:28:18PM -0600, Peter Tyser wrote:
> > > Add a new get_direction() function to the gpio_chip structure. This is
> > > useful so that the direction of a GPIO can be determined when its
> > > initially exported. Previously, the direction defaulted to "unknown"
> > > regardless of the actual configuration of the GPIO.
> > >
> > > If a GPIO driver implements get_direction(), it is called in
> > > gpio_request() to set the initial direction of the GPIO accurately.
> >
> > I don't like this approach. It effectively creates two methods for
> > determining the direction of a gpio; either ask the driver, or read
> > the flags value. Currently, only gpio_request() actually uses the
> > first option, but it still leaves the ambiguity.
> >
> > Instead, the driver should be able to preload the direction flag at or
> > shortly after gpiochip_add() time. No need for a new callback hook
> > from what I can see.
>
> The callback hook was used because the gpio_desc[] structure was local
> to gpiolib.c. The code would have to be restructured a bit to allow
> drivers to set the flags themselves. I can do that if you'd prefer, but
> don't think it'd be all that much cleaner.
Make it part of the gpiochip_add function, or add a function for
explicitly setting gpio directions. Should not require any
reorganization at all.
> Also, I thought it made sense to read the direction of the GPIO in
> gpio_request() because that's the point that the GPIO comes under the
> GPIO subsystem's control. Prior to that, there's a chance the direction
> could be changed by platform code, or another driver, etc, so reading
> the direction in gpiochip_add() may result in out-of-date directions.
That's the problem with gpiolib having sole responsibility of the
cache. It doesn't give the driver any recourse for changing things if
it needs to. The best solution might very well be to eliminate the
direction state flag entirely and force all gpiochip drivers to
populate a gpio_get_direction() callback, but that is a lot more work.
> The reading of the direction could also be put in chip drivers'
> request() function. That would get rid of the callback and still ensure
> the direction is up-to-date.
I don't object to a callback hook. My objection is how it is bodged
on to work around limitations to the direction being cached in the
flags variable. I want to see a solution that either depends entirely
on the callback, or completely fixes the problems with the cached
value by allowing the driver to update it.
> I think the current patch seems cleaner than the alternatives, but will
> change if you'd prefer.
Thanks,
g.
next prev parent reply other threads:[~2011-03-07 7:08 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-01 23:28 [PATCH v5 1/4] gpiolib: Add "unknown" direction support Peter Tyser
2011-03-01 23:28 ` [PATCH v5 2/4] gpiolib: Add ability to get GPIO direction Peter Tyser
2011-03-06 7:30 ` Grant Likely
2011-03-07 3:07 ` Peter Tyser
2011-03-07 7:08 ` Grant Likely [this message]
2011-03-08 0:38 ` Peter Tyser
2011-03-11 17:48 ` Peter Tyser
2011-03-12 9:18 ` Grant Likely
2011-04-20 22:17 ` Peter Tyser
2011-04-20 22:41 ` Mike Frysinger
2011-03-08 12:13 ` Alan Cox
2011-03-09 22:53 ` Peter Tyser
2011-03-12 9:19 ` Grant Likely
2011-03-01 23:28 ` [PATCH v5 3/4] gpio: pca953x: Implement get_direction() hook Peter Tyser
2011-03-01 23:28 ` [PATCH v5 4/4] gpio: Add support for Intel ICHx/3100/Series[56] GPIO Peter Tyser
2011-04-20 16:35 ` [PATCH v6] " Peter Tyser
2011-05-24 14:18 ` Peter Tyser
2011-05-27 6:42 ` Grant Likely
2011-05-27 9:01 ` Jean Delvare
2011-05-27 14:26 ` Peter Tyser
2011-05-27 20:55 ` Grant Likely
2011-05-27 21:29 ` Peter Tyser
2011-05-27 23:54 ` Grant Likely
2011-05-30 17:27 ` Peter Tyser
2011-06-03 16:43 ` Grant Likely
2011-03-06 7:25 ` [PATCH v5 1/4] gpiolib: Add "unknown" direction support Grant Likely
2011-03-06 20:19 ` Ryan Mallon
2011-03-07 2:48 ` Peter Tyser
2011-03-07 6:50 ` Grant Likely
2011-03-07 2:43 ` Peter Tyser
2011-03-07 6:52 ` Grant Likely
2011-03-08 0:28 ` Peter Tyser
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110307070816.GC29999@angua.secretlab.ca \
--to=grant.likely@secretlab.ca \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=alek.du@intel.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=dbrownell@users.sourceforge.net \
--cc=eric.y.miao@gmail.com \
--cc=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--cc=ptyser@xes-inc.com \
--cc=sameo@linux.intel.com \
--cc=u.kleine-koenig@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®