Skip to content

Commit

Permalink
gpiolib: separation of pin concerns
Browse files Browse the repository at this point in the history
The fact that of_gpiochip_add_pin_range() and
gpiochip_add_pin_range() share too much code is fragile and
will invariably mean that bugs need to be fixed in two places
instead of one.

So separate the concerns of gpiolib.c and gpiolib-of.c and
have the latter call the former as back-end. This is necessary
also when going forward with other device descriptions such
as ACPI.

This is done by:

- Adding a return code to gpiochip_add_pin_range() so we can
  reliably check whether this succeeds.

- Get rid of the custom of_pinctrl_add_gpio_range() from
  pinctrl. Instead create of_pinctrl_get() to just retrive the
  pin controller per se from an OF node. This composite
  function was just begging to be deleted, it was way to
  purpose-specific.

- Use pinctrl_dev_get_name() to get the name of the retrieved
  pin controller and use that to call back into the generic
  gpiochip_add_pin_range().

Now the pin range is only allocated and tied to a pin
controller from the core implementation in gpiolib.c.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Linus Walleij committed Nov 11, 2012
1 parent 9ef0d6f commit 1e63d7b
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 28 deletions.
23 changes: 9 additions & 14 deletions drivers/gpio/gpiolib-of.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ EXPORT_SYMBOL(of_mm_gpiochip_add);
static void of_gpiochip_add_pin_range(struct gpio_chip *chip)
{
struct device_node *np = chip->of_node;
struct gpio_pin_range *pin_range;
struct of_phandle_args pinspec;
struct pinctrl_dev *pctldev;
int index = 0, ret;

if (!np)
Expand All @@ -234,22 +234,17 @@ static void of_gpiochip_add_pin_range(struct gpio_chip *chip)
if (ret)
break;

pin_range = devm_kzalloc(chip->dev, sizeof(*pin_range),
GFP_KERNEL);
if (!pin_range) {
pr_err("%s: GPIO chip: failed to allocate pin ranges\n",
chip->label);
pctldev = of_pinctrl_get(pinspec.np);
if (!pctldev)
break;
}

pin_range->range.name = chip->label;
pin_range->range.base = chip->base;
pin_range->range.pin_base = pinspec.args[0];
pin_range->range.npins = pinspec.args[1];
pin_range->pctldev = of_pinctrl_add_gpio_range(pinspec.np,
&pin_range->range);
ret = gpiochip_add_pin_range(chip,
pinctrl_dev_get_name(pctldev),
pinspec.args[0],
pinspec.args[1]);

list_add_tail(&pin_range->node, &chip->pin_ranges);
if (ret)
break;

} while (index++);
}
Expand Down
8 changes: 5 additions & 3 deletions drivers/gpio/gpiolib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1187,16 +1187,16 @@ EXPORT_SYMBOL_GPL(gpiochip_find);

#ifdef CONFIG_PINCTRL

void gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
unsigned int pin_base, unsigned int npins)
int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
unsigned int pin_base, unsigned int npins)
{
struct gpio_pin_range *pin_range;

pin_range = devm_kzalloc(chip->dev, sizeof(*pin_range), GFP_KERNEL);
if (!pin_range) {
pr_err("%s: GPIO chip: failed to allocate pin ranges\n",
chip->label);
return;
return -ENOMEM;
}

pin_range->range.name = chip->label;
Expand All @@ -1207,6 +1207,8 @@ void gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
&pin_range->range);

list_add_tail(&pin_range->node, &chip->pin_ranges);

return 0;
}
EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);

Expand Down
4 changes: 1 addition & 3 deletions drivers/pinctrl/devicetree.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,14 @@ static struct pinctrl_dev *find_pinctrl_by_of_node(struct device_node *np)
return NULL;
}

struct pinctrl_dev *of_pinctrl_add_gpio_range(struct device_node *np,
struct pinctrl_gpio_range *range)
struct pinctrl_dev *of_pinctrl_get(struct device_node *np)
{
struct pinctrl_dev *pctldev;

pctldev = find_pinctrl_by_of_node(np);
if (!pctldev)
return NULL;

pinctrl_add_gpio_range(pctldev, range);
return pctldev;
}

Expand Down
4 changes: 2 additions & 2 deletions include/asm-generic/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ struct gpio_pin_range {
struct pinctrl_gpio_range range;
};

void gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
unsigned int pin_base, unsigned int npins);
int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
unsigned int pin_base, unsigned int npins);
void gpiochip_remove_pin_ranges(struct gpio_chip *chip);

#endif
Expand Down
2 changes: 1 addition & 1 deletion include/linux/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ static inline int irq_to_gpio(unsigned irq)

#ifdef CONFIG_PINCTRL

static inline void
static inline int
gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
unsigned int pin_base, unsigned int npins)
{
Expand Down
7 changes: 2 additions & 5 deletions include/linux/pinctrl/pinctrl.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,13 @@ extern struct pinctrl_dev *find_pinctrl_and_add_gpio_range(const char *devname,
struct pinctrl_gpio_range *range);

#ifdef CONFIG_OF
extern struct pinctrl_dev *of_pinctrl_add_gpio_range(struct device_node *np,
struct pinctrl_gpio_range *range);
extern struct pinctrl_dev *of_pinctrl_get(struct device_node *np);
#else
static inline
struct pinctrl_dev *of_pinctrl_add_gpio_range(struct device_node *np,
struct pinctrl_gpio_range *range)
struct pinctrl_dev *of_pinctrl_get(struct device_node *np)
{
return NULL;
}

#endif /* CONFIG_OF */

extern const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev);
Expand Down

0 comments on commit 1e63d7b

Please sign in to comment.