mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
gpio: rcar: Implement .get_direction() callback
Allow gpiolib to read back the current I/O direction configuration by implementing the .get_direction() callback. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Tested-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Simon Horman <horms+renesas@verge.net.au> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
1c22a252b3
commit
ad81729741
@ -278,6 +278,13 @@ static void gpio_rcar_free(struct gpio_chip *chip, unsigned offset)
|
|||||||
pm_runtime_put(&p->pdev->dev);
|
pm_runtime_put(&p->pdev->dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int gpio_rcar_get_direction(struct gpio_chip *chip, unsigned int offset)
|
||||||
|
{
|
||||||
|
struct gpio_rcar_priv *p = gpiochip_get_data(chip);
|
||||||
|
|
||||||
|
return !(gpio_rcar_read(p, INOUTSEL) & BIT(offset));
|
||||||
|
}
|
||||||
|
|
||||||
static int gpio_rcar_direction_input(struct gpio_chip *chip, unsigned offset)
|
static int gpio_rcar_direction_input(struct gpio_chip *chip, unsigned offset)
|
||||||
{
|
{
|
||||||
gpio_rcar_config_general_input_output_mode(chip, offset, false);
|
gpio_rcar_config_general_input_output_mode(chip, offset, false);
|
||||||
@ -461,6 +468,7 @@ static int gpio_rcar_probe(struct platform_device *pdev)
|
|||||||
gpio_chip = &p->gpio_chip;
|
gpio_chip = &p->gpio_chip;
|
||||||
gpio_chip->request = gpio_rcar_request;
|
gpio_chip->request = gpio_rcar_request;
|
||||||
gpio_chip->free = gpio_rcar_free;
|
gpio_chip->free = gpio_rcar_free;
|
||||||
|
gpio_chip->get_direction = gpio_rcar_get_direction;
|
||||||
gpio_chip->direction_input = gpio_rcar_direction_input;
|
gpio_chip->direction_input = gpio_rcar_direction_input;
|
||||||
gpio_chip->get = gpio_rcar_get;
|
gpio_chip->get = gpio_rcar_get;
|
||||||
gpio_chip->direction_output = gpio_rcar_direction_output;
|
gpio_chip->direction_output = gpio_rcar_direction_output;
|
||||||
|
Loading…
Reference in New Issue
Block a user