pinctrl: ocelot: fix gpio direction
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 22 Mar 2018 12:35:00 +0000 (13:35 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 26 Mar 2018 09:04:48 +0000 (11:04 +0200)
Bits have to be cleared in DEVCPU_GCB:GPIO:GPIO_OE for input and set for
output. ocelot_gpio_set_direction() got it wrong and this went unnoticed
when the driver was reworked.

Reported-by: Gregory Clement <gregory.clement@bootlin.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Acked-by: Gregory CLEMENT <gregory.clement@bootlin.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-ocelot.c

index a942323..b5b3547 100644 (file)
@@ -252,7 +252,7 @@ static int ocelot_gpio_set_direction(struct pinctrl_dev *pctldev,
        struct ocelot_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
 
        regmap_update_bits(info->map, OCELOT_GPIO_OE, BIT(pin),
-                          input ? BIT(pin) : 0);
+                          input ? 0 : BIT(pin));
 
        return 0;
 }