linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Linus Walleij <linus.walleij@linaro.org>
To: Michael Hennerich <michael.hennerich@analog.com>
Cc: Wolfram Sang <wsa@the-dreams.de>, Peter Rosin <peda@axentia.se>,
	Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	"linux-i2c@vger.kernel.org" <linux-i2c@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-gpio@vger.kernel.org" <linux-gpio@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v4 2/2] i2c: mux: ltc4306: LTC4306 and LTC4305 I2C multiplexer/switch
Date: Mon, 10 Apr 2017 22:04:04 +0200	[thread overview]
Message-ID: <CACRpkdbECyEpD7b4OFxwAo6USnK_DGEbASMdTzOO=FQ9BAzRQA@mail.gmail.com> (raw)
In-Reply-To: <1491397671-14675-2-git-send-email-michael.hennerich@analog.com>

On Wed, Apr 5, 2017 at 3:07 PM,  <michael.hennerich@analog.com> wrote:

> From: Michael Hennerich <michael.hennerich@analog.com>
>
> This patch adds support for the Analog Devices / Linear Technology
> LTC4306 and LTC4305 4/2 Channel I2C Bus Multiplexer/Switches.
> The LTC4306 optionally provides two general purpose input/output pins
> (GPIOs) that can be configured as logic inputs, opendrain outputs or
> push-pull outputs via the generic GPIOLIB framework.
>
> Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>

Okay!

> +#include <linux/device.h>
> +#include <linux/gpio.h>
> +#include <linux/gpio/consumer.h>
> +#include <linux/gpio/driver.h>

Why are you including all these?
Normally a GPIO driver should just include
<linux/gpio/driver.h>

> +#include <linux/i2c-mux.h>
> +#include <linux/i2c.h>
> +#include <linux/module.h>
> +#include <linux/of.h>
> +#include <linux/of_device.h>
> +#include <linux/regmap.h>
> +#include <linux/slab.h>

> +static int ltc4306_gpio_get(struct gpio_chip *chip, unsigned int offset)
> +{
> +       struct ltc4306 *data = gpiochip_get_data(chip);
> +       unsigned int val;
> +       int ret;
> +
> +       ret = regmap_read(data->regmap, LTC_REG_CONFIG, &val);
> +       if (ret < 0)
> +               return ret;
> +
> +       return (val & BIT(1 - offset));

Do this:

return !!(val & BIT(1 - offset));

So you clamp the return value to [0,1]

> +static int ltc4306_gpio_set_config(struct gpio_chip *chip,
> +                                  unsigned int offset, unsigned long config)
> +{
> +       struct ltc4306 *data = gpiochip_get_data(chip);
> +       unsigned int val;
> +
> +       switch (pinconf_to_config_param(config)) {
> +       case PIN_CONFIG_DRIVE_OPEN_DRAIN:
> +               val = 0;
> +               break;
> +       case PIN_CONFIG_DRIVE_PUSH_PULL:
> +               val = BIT(4 - offset);
> +               break;
> +       default:
> +               return -ENOTSUPP;
> +       }
> +
> +       return regmap_update_bits(data->regmap, LTC_REG_MODE,
> +                                 BIT(4 - offset), val);
> +}

Nice!

> +       data->gpiochip.label = dev_name(dev);
> +       data->gpiochip.base = -1;
> +       data->gpiochip.ngpio = data->chip->num_gpios;
> +       data->gpiochip.parent = dev;
> +       data->gpiochip.can_sleep = true;
> +       data->gpiochip.direction_input = ltc4306_gpio_direction_input;
> +       data->gpiochip.direction_output = ltc4306_gpio_direction_output;
> +       data->gpiochip.get = ltc4306_gpio_get;
> +       data->gpiochip.set = ltc4306_gpio_set;
> +       data->gpiochip.set_config = ltc4306_gpio_set_config;
> +       data->gpiochip.owner = THIS_MODULE;

Please implement .get_direction().
This is very helpful to userspace, have you tested to use tools/gpio/*
from the kernel? Like lsgpio?

Yours,
Linus Walleij

  parent reply	other threads:[~2017-04-10 20:04 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-05 13:07 [PATCH v4 1/2] dt-bindings: i2c: mux: ltc4306: Add dt-bindings for I2C multiplexer/switch michael.hennerich-OyLXuOCK7orQT0dZR+AlfA
     [not found] ` <1491397671-14675-1-git-send-email-michael.hennerich-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
2017-04-05 13:07   ` [PATCH v4 2/2] i2c: mux: ltc4306: LTC4306 and LTC4305 " michael.hennerich-OyLXuOCK7orQT0dZR+AlfA
     [not found]     ` <1491397671-14675-2-git-send-email-michael.hennerich-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
2017-04-06  8:39       ` Peter Rosin
2017-04-06 11:31         ` Michael Hennerich
     [not found]           ` <376f970f-9e0f-1d44-3813-93691c849b83-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
2017-04-06 20:03             ` Peter Rosin
2017-04-11  9:29               ` Michael Hennerich
2017-04-10 20:04     ` Linus Walleij [this message]
2017-04-11  8:46       ` Michael Hennerich

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='CACRpkdbECyEpD7b4OFxwAo6USnK_DGEbASMdTzOO=FQ9BAzRQA@mail.gmail.com' \
    --to=linus.walleij@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=michael.hennerich@analog.com \
    --cc=peda@axentia.se \
    --cc=robh+dt@kernel.org \
    --cc=wsa@the-dreams.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;
as well as URLs for NNTP newsgroup(s).