Re: [RFC PATCH] gpiolib: add gpio get direction support

2012-10-23 Thread Linus Walleij
On Tue, Oct 23, 2012 at 1:06 PM, Mathias Nyman
 wrote:
> [Me]
>> Anyway, if the callback is only called internally in the GPIOlib
>> why are you making the function public to the entire
>> kernel
>
> Thought I'd do it the same was as gpio_direction_output() and
> gpio_direction_input(), but if there is no need for getting the direction
> outside gpiolob then it can be skipped. Main motivation was to get correct
> direction values in debug and sysfs after boot.

OK then keep them static til the day they are needed.

> gpiolib currently uses cached values of gpio_direction_output/input() in
> sysfs. If the .get_direction callback exists it is used to refresh the
> cached values.

OK! (I'm not yet familiar enough with gpiolib as you can see ...)

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [RFC PATCH] gpiolib: add gpio get direction support

2012-10-23 Thread Mathias Nyman

On 10/23/2012 01:23 AM, Linus Walleij wrote:

On Mon, Oct 22, 2012 at 3:44 PM, Mathias Nyman
  wrote:


If the .get_direction callback is set, then gpiolib will use it
for showing correct gpio direction in sysfs and debug. If not set
then it will work the old way; e.g. guessing everything is input
until direction is set.


If the driver cannot report the direction setting you *could*
cache the result of all calls to gpio_direction_output()
and gpio_direction_input() somewhere. But I don't know
if it's a good idea.

Anyway, if the callback is only called internally in the GPIOlib
why are you making the function public to the entire
kernel


Thought I'd do it the same was as gpio_direction_output() and 
gpio_direction_input(), but if there is no need for getting the 
direction outside gpiolob then it can be skipped. Main motivation was to 
get correct direction values in debug and sysfs after boot.


gpiolib currently uses cached values of gpio_direction_output/input() in 
sysfs. If the .get_direction callback exists it is used to refresh the 
cached values.


I'll write a new patch without the public gpio_get_direction().

-Mathias
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [RFC PATCH] gpiolib: add gpio get direction support

2012-10-22 Thread Linus Walleij
On Mon, Oct 22, 2012 at 3:44 PM, Mathias Nyman
 wrote:

> Add gpio_get_direction() for checking the current direction of a gpio.
> Returns 1 for input, 0 for output, or negative error.
> Gpio drivers need to set the gpio_chip .get_direction callback for this
> functionality, otherwise gpio_get_direction() returns error.

OK...

> If the .get_direction callback is set, then gpiolib will use it
> for showing correct gpio direction in sysfs and debug. If not set
> then it will work the old way; e.g. guessing everything is input
> until direction is set.

If the driver cannot report the direction setting you *could*
cache the result of all calls to gpio_direction_output()
and gpio_direction_input() somewhere. But I don't know
if it's a good idea.

Anyway, if the callback is only called internally in the GPIOlib
why are you making the function public to the entire
kernel like this?

> include/asm-generic/gpio.h
> +extern int gpio_get_direction(unsigned gpio);

> include/linux/gpio.h
> +static inline int gpio_get_direction(unsigned gpio)
> +{
> +   return -ENOSYS;
> +}
> +

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[RFC PATCH] gpiolib: add gpio get direction support

2012-10-22 Thread Mathias Nyman
Add gpio_get_direction() for checking the current direction of a gpio.
Returns 1 for input, 0 for output, or negative error.
Gpio drivers need to set the gpio_chip .get_direction callback for this
functionality, otherwise gpio_get_direction() returns error.

If the .get_direction callback is set, then gpiolib will use it
for showing correct gpio direction in sysfs and debug. If not set
then it will work the old way; e.g. guessing everything is input
until direction is set.

Signed-off-by: Mathias Nyman 
---
 drivers/gpio/gpiolib.c |   64 ++-
 include/asm-generic/gpio.h |6 +++-
 include/linux/gpio.h   |5 +++
 3 files changed, 72 insertions(+), 3 deletions(-)

diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index de0213c..28deb86 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -223,6 +223,7 @@ static ssize_t gpio_direction_show(struct device *dev,
struct device_attribute *attr, char *buf)
 {
const struct gpio_desc  *desc = dev_get_drvdata(dev);
+   unsignedgpio = desc - gpio_desc;
ssize_t status;
 
mutex_lock(&sysfs_lock);
@@ -230,6 +231,7 @@ static ssize_t gpio_direction_show(struct device *dev,
if (!test_bit(FLAG_EXPORT, &desc->flags))
status = -EIO;
else
+   gpio_get_direction(gpio);
status = sprintf(buf, "%s\n",
test_bit(FLAG_IS_OUT, &desc->flags)
? "out" : "in");
@@ -1073,6 +1075,7 @@ int gpiochip_add(struct gpio_chip *chip)
 * inputs (often with pullups enabled) so power
 * usage is minimized.  Linux code should set the
 * gpio direction first thing; but until it does,
+* and in case chip->get_direction is not set,
 * we may expose the wrong direction in sysfs.
 */
gpio_desc[id].flags = !chip->direction_input
@@ -1392,6 +1395,62 @@ EXPORT_SYMBOL_GPL(gpiochip_is_requested);
  * rely on gpio_request() having been called beforehand.
  */
 
+int gpio_get_direction(unsigned gpio)
+{
+   unsigned long   flags;
+   struct gpio_chip*chip;
+   struct gpio_desc*desc = &gpio_desc[gpio];
+   int status = -EINVAL;
+
+   spin_lock_irqsave(&gpio_lock, flags);
+
+   if (!gpio_is_valid(gpio))
+   goto fail;
+   chip = desc->chip;
+   if (!chip || !chip->get_direction)
+   goto fail;
+   gpio -= chip->base;
+   if (gpio >= chip->ngpio)
+   goto fail;
+   status = gpio_ensure_requested(desc, gpio);
+   if (status < 0)
+   goto fail;
+
+   /* now we know the gpio is valid and chip won't vanish */
+
+   spin_unlock_irqrestore(&gpio_lock, flags);
+
+   might_sleep_if(chip->can_sleep);
+
+   if (status) {
+   status = chip->request(chip, gpio);
+   if (status < 0) {
+   pr_debug("GPIO-%d: chip request fail, %d\n",
+   chip->base + gpio, status);
+   /* and it's not available to anyone else ...
+* gpio_request() is the fully clean solution.
+*/
+   return status;
+   }
+   }
+
+   status = chip->get_direction(chip, gpio);
+   if (status > 0) {
+   /* GPIOF_DIR_IN, or other positive */
+   status = 1;
+   clear_bit(FLAG_IS_OUT, &desc->flags);
+   }
+   if (status == 0) {
+   /* GPIOF_DIR_OUT */
+   set_bit(FLAG_IS_OUT, &desc->flags);
+   }
+   return status;
+fail:
+   spin_unlock_irqrestore(&gpio_lock, flags);
+   return status;
+}
+EXPORT_SYMBOL_GPL(gpio_get_direction);
+
 int gpio_direction_input(unsigned gpio)
 {
unsigned long   flags;
@@ -1761,8 +1820,9 @@ static void gpiolib_dbg_show(struct seq_file *s, struct 
gpio_chip *chip)
for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) {
if (!test_bit(FLAG_REQUESTED, &gdesc->flags))
continue;
-
-   is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
+   chip->get_direction
+   ? (is_out = !chip->get_direction(chip, i))
+   : (is_out = test_bit(FLAG_IS_OUT, &gdesc->flags));
seq_printf(s, " gpio-%-3d (%-20.20s) %s %s",
gpio, gdesc->label,
is_out ? "out" : "in ",
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h
index 365ea09..4e58743 100644
--- a/include/asm-generic/gpio.h
+++ b/include/asm-generic/gpio.h
@@ -56,6 +56,8 @@ struct device_node;
  * enabling module power and clock; may sleep
  * @free: optional hook for c