[PATCH 3/6] pinctrl: armada-37xx: Add gpio support
Linus Walleij
linus.walleij at linaro.org
Fri Dec 30 00:51:51 PST 2016
On Thu, Dec 22, 2016 at 6:24 PM, Gregory CLEMENT
<gregory.clement at free-electrons.com> wrote:
> GPIO management is pretty simple and is part of the same IP than the pin
> controller for the Armada 37xx SoCs. This patch adds the GPIO support to
> the pinctrl-armada-37xx.c file, it also allows sharing common functions
> between the gpiolib and the pinctrl drivers.
>
> Signed-off-by: Gregory CLEMENT <gregory.clement at free-electrons.com>
Some remarks:
> +static int armada_37xx_gpio_get_direction(struct gpio_chip *chip,
> + unsigned int offset)
> +{
> + struct armada_37xx_pinctrl *info = gpiochip_get_data(chip);
> + unsigned int reg = OUTPUT_EN;
> + unsigned int val, mask;
> +
> + if (offset >= GPIO_PER_REG) {
> + offset -= GPIO_PER_REG;
> + reg += sizeof(u32);
> + }
Add a comment saying we never have more than two registers?
If there would be three registers this would fail, right?
> + mask = BIT(offset);
> +
> + regmap_read(info->regmap, reg, &val);
>
> + return (val & mask) == 0;
Use this:
return !(val & mask);
> +static int armada_37xx_gpio_get(struct gpio_chip *chip, unsigned int offset)
> +{
> + struct armada_37xx_pinctrl *info = gpiochip_get_data(chip);
> + unsigned int reg = INPUT_VAL;
> + unsigned int val, mask;
> +
> + if (offset >= GPIO_PER_REG) {
> + offset -= GPIO_PER_REG;
> + reg += sizeof(u32);
> + }
> + mask = BIT(offset);
This code is repeating. Break out a static (inline?) helper to do this.
> +static int armada_37xx_gpiolib_register(struct platform_device *pdev,
> + struct armada_37xx_pinctrl *info)
Nit: gpiochip_register or so is more to the point.
> + ret = gpiochip_add_pin_range(&info->gpio_chip, dev_name(dev), 0,
> + pinbase, info->data->nr_pins);
> + if (ret)
> + return ret;
Why do you do this?
Why not just put the ranges into the device tree? We already support
this in the gpiolib core and it is helpful.
See Documentation/devicetree/bindings/gpio/gpio.txt
and other DTS files for gpio-ranges.
Yours,
Linus Walleij
More information about the linux-arm-kernel
mailing list