Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1736064

Re: [PATCH] gpio: Wakeup gpio controller when it is used as IRQ controller

From Grygorii Strashko <grygorii.strashko@ti.com>
Newsgroups linux.kernel
Subject Re: [PATCH] gpio: Wakeup gpio controller when it is used as IRQ controller
Date 2017-09-20 22:10 +0200
Message-ID <urTtL-7M2-13@gated-at.bofh.it> (permalink)
References <urHsC-8f3-25@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw



On 09/20/2017 02:14 AM, Michal Simek wrote:
> From: Borsodi Petr <Petr.Borsodi@i.cz>
> 
> There is a problem with GPIO driver when used as IRQ controller.
> It is not working because the module is sleeping (clock is disabled).
> The patch enables clocks when IP is used as IRQ controller.

I think, it should be solved already in genirq core.
commit be45beb "genirq: Add runtime power management support for IRQ chips"


> 
> Signed-off-by: Borsodi Petr <Petr.Borsodi@i.cz>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
> 
> Based on discussion with Linus here https://lkml.org/lkml/2017/8/22/400
> ---
>   drivers/gpio/gpiolib.c | 9 +++++++++
>   1 file changed, 9 insertions(+)
> 
> diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
> index eb80dac4e26a..17258ad1fadb 100644
> --- a/drivers/gpio/gpiolib.c
> +++ b/drivers/gpio/gpiolib.c
> @@ -1676,14 +1676,22 @@ static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
>   static int gpiochip_irq_reqres(struct irq_data *d)
>   {
>   	struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
> +	int ret;
>   
>   	if (!try_module_get(chip->gpiodev->owner))
>   		return -ENODEV;
>   
> +	ret = pm_runtime_get_sync(chip->parent);
> +	if (ret < 0) {
> +		module_put(chip->gpiodev->owner);
> +		return ret;
> +	}
> +
>   	if (gpiochip_lock_as_irq(chip, d->hwirq)) {
>   		chip_err(chip,
>   			"unable to lock HW IRQ %lu for IRQ\n",
>   			d->hwirq);
> +		pm_runtime_put(chip->parent);
>   		module_put(chip->gpiodev->owner);
>   		return -EINVAL;
>   	}
> @@ -1695,6 +1703,7 @@ static void gpiochip_irq_relres(struct irq_data *d)
>   	struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
>   
>   	gpiochip_unlock_as_irq(chip, d->hwirq);
> +	pm_runtime_put(chip->parent);
>   	module_put(chip->gpiodev->owner);
>   }
>   
> 

-- 
regards,
-grygorii

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] gpio: Wakeup gpio controller when it is used as IRQ controller Michal Simek <michal.simek@xilinx.com> - 2017-09-20 09:20 +0200
  Re: [PATCH] gpio: Wakeup gpio controller when it is used as IRQ  controller Grygorii Strashko <grygorii.strashko@ti.com> - 2017-09-20 22:10 +0200
    Re: [PATCH] gpio: Wakeup gpio controller when it is used as IRQ controller Linus Walleij <linus.walleij@linaro.org> - 2017-09-21 14:20 +0200

csiph-web