* [PATCH] mfd: arizona: Propagate irq_wake through to parent IRQ
@ 2014-09-01 14:29 Charles Keepax
2014-09-01 15:48 ` Lee Jones
0 siblings, 1 reply; 2+ messages in thread
From: Charles Keepax @ 2014-09-01 14:29 UTC (permalink / raw)
To: lee.jones; +Cc: sameo, patches, linux-kernel
If one of the internal Arizona IRQs is set as a wake source this needs
to be propogated back to the actual IRQ line that the Arizona device is
attached to.
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
drivers/mfd/arizona-irq.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
Hi,
Just thought I would resend this one on its own as it is a good
bug fix and didn't need to depend on the other extra callbacks patch.
And it would be good to get it in whilst I work on the IRQ stuff.
Thanks,
Charles
diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c
index 9133d51..5e2f450 100644
--- a/drivers/mfd/arizona-irq.c
+++ b/drivers/mfd/arizona-irq.c
@@ -152,10 +152,18 @@ static void arizona_irq_disable(struct irq_data *data)
{
}
+static int arizona_irq_set_wake(struct irq_data *data, unsigned int on)
+{
+ struct arizona *arizona = irq_data_get_irq_chip_data(data);
+
+ return irq_set_irq_wake(arizona->irq, on);
+}
+
static struct irq_chip arizona_irq_chip = {
.name = "arizona",
.irq_disable = arizona_irq_disable,
.irq_enable = arizona_irq_enable,
+ .irq_set_wake = arizona_irq_set_wake,
};
static int arizona_irq_map(struct irq_domain *h, unsigned int virq,
--
1.7.2.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] mfd: arizona: Propagate irq_wake through to parent IRQ
2014-09-01 14:29 [PATCH] mfd: arizona: Propagate irq_wake through to parent IRQ Charles Keepax
@ 2014-09-01 15:48 ` Lee Jones
0 siblings, 0 replies; 2+ messages in thread
From: Lee Jones @ 2014-09-01 15:48 UTC (permalink / raw)
To: Charles Keepax; +Cc: sameo, patches, linux-kernel
On Mon, 01 Sep 2014, Charles Keepax wrote:
> If one of the internal Arizona IRQs is set as a wake source this needs
> to be propogated back to the actual IRQ line that the Arizona device is
> attached to.
>
> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
> ---
> drivers/mfd/arizona-irq.c | 8 ++++++++
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> Hi,
>
> Just thought I would resend this one on its own as it is a good
> bug fix and didn't need to depend on the other extra callbacks patch.
> And it would be good to get it in whilst I work on the IRQ stuff.
>
> Thanks,
> Charles
Applied, thanks.
> diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c
> index 9133d51..5e2f450 100644
> --- a/drivers/mfd/arizona-irq.c
> +++ b/drivers/mfd/arizona-irq.c
> @@ -152,10 +152,18 @@ static void arizona_irq_disable(struct irq_data *data)
> {
> }
>
> +static int arizona_irq_set_wake(struct irq_data *data, unsigned int on)
> +{
> + struct arizona *arizona = irq_data_get_irq_chip_data(data);
> +
> + return irq_set_irq_wake(arizona->irq, on);
> +}
> +
> static struct irq_chip arizona_irq_chip = {
> .name = "arizona",
> .irq_disable = arizona_irq_disable,
> .irq_enable = arizona_irq_enable,
> + .irq_set_wake = arizona_irq_set_wake,
> };
>
> static int arizona_irq_map(struct irq_domain *h, unsigned int virq,
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-09-01 15:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-01 14:29 [PATCH] mfd: arizona: Propagate irq_wake through to parent IRQ Charles Keepax
2014-09-01 15:48 ` Lee Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox