All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] irqchip/atmel-aic5: handle suspend to RAM
@ 2017-04-06 16:17 Alexandre Belloni
  2017-04-09 12:13 ` Marc Zyngier
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandre Belloni @ 2017-04-06 16:17 UTC (permalink / raw)
  To: Thomas Gleixner, Boris Brezillon
  Cc: Jason Cooper, Marc Zyngier, linux-kernel, Alexandre Belloni

On sama5d2, VDD core may be cut while suspending to RAM. This means the
AIC5 registers content is lost. Restore it at resume time.

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 drivers/irqchip/irq-atmel-aic5.c | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/drivers/irqchip/irq-atmel-aic5.c b/drivers/irqchip/irq-atmel-aic5.c
index 2a624d87a035..ddbf60251b0e 100644
--- a/drivers/irqchip/irq-atmel-aic5.c
+++ b/drivers/irqchip/irq-atmel-aic5.c
@@ -150,6 +150,8 @@ static int aic5_set_type(struct irq_data *d, unsigned type)
 }
 
 #ifdef CONFIG_PM
+u32 smr_cache[128];
+
 static void aic5_suspend(struct irq_data *d)
 {
 	struct irq_domain *domain = d->domain;
@@ -159,6 +161,11 @@ static void aic5_suspend(struct irq_data *d)
 	int i;
 	u32 mask;
 
+	for (i = 0; i < domain->revmap_size; i++) {
+		irq_reg_writel(bgc, i, AT91_AIC5_SSR);
+		smr_cache[i] = irq_reg_readl(bgc, AT91_AIC5_SMR);
+	}
+
 	irq_gc_lock(bgc);
 	for (i = 0; i < dgc->irqs_per_chip; i++) {
 		mask = 1 << i;
@@ -184,10 +191,16 @@ static void aic5_resume(struct irq_data *d)
 	u32 mask;
 
 	irq_gc_lock(bgc);
+
+	irq_reg_writel(bgc, 0xffffffff, AT91_AIC5_SPU);
+	for (i = 0; i < domain->revmap_size; i++) {
+		irq_reg_writel(bgc, i, AT91_AIC5_SSR);
+		irq_reg_writel(bgc, i, AT91_AIC5_SVR);
+		irq_reg_writel(bgc, smr_cache[i], AT91_AIC5_SMR);
+	}
+
 	for (i = 0; i < dgc->irqs_per_chip; i++) {
 		mask = 1 << i;
-		if ((mask & gc->mask_cache) == (mask & gc->wake_active))
-			continue;
 
 		irq_reg_writel(bgc, i + gc->irq_base, AT91_AIC5_SSR);
 		if (mask & gc->mask_cache)
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] irqchip/atmel-aic5: handle suspend to RAM
  2017-04-06 16:17 [PATCH] irqchip/atmel-aic5: handle suspend to RAM Alexandre Belloni
@ 2017-04-09 12:13 ` Marc Zyngier
  2017-04-10 12:30   ` Alexandre Belloni
  0 siblings, 1 reply; 3+ messages in thread
From: Marc Zyngier @ 2017-04-09 12:13 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Thomas Gleixner, Boris Brezillon, Jason Cooper, linux-kernel

On Thu, 6 Apr 2017 18:17:53 +0200
Alexandre Belloni <alexandre.belloni@free-electrons.com> wrote:

> On sama5d2, VDD core may be cut while suspending to RAM. This means the
> AIC5 registers content is lost. Restore it at resume time.
> 
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
>  drivers/irqchip/irq-atmel-aic5.c | 17 +++++++++++++++--
>  1 file changed, 15 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/irqchip/irq-atmel-aic5.c b/drivers/irqchip/irq-atmel-aic5.c
> index 2a624d87a035..ddbf60251b0e 100644
> --- a/drivers/irqchip/irq-atmel-aic5.c
> +++ b/drivers/irqchip/irq-atmel-aic5.c
> @@ -150,6 +150,8 @@ static int aic5_set_type(struct irq_data *d, unsigned type)
>  }
>  
>  #ifdef CONFIG_PM
> +u32 smr_cache[128];

Two things:

- Why isn't this array static?
- Why is the size hard-coded to 128, while the loops below are based on
  the domain revmap_size.

> +
>  static void aic5_suspend(struct irq_data *d)
>  {
>  	struct irq_domain *domain = d->domain;
> @@ -159,6 +161,11 @@ static void aic5_suspend(struct irq_data *d)
>  	int i;
>  	u32 mask;
>  
> +	for (i = 0; i < domain->revmap_size; i++) {
> +		irq_reg_writel(bgc, i, AT91_AIC5_SSR);
> +		smr_cache[i] = irq_reg_readl(bgc, AT91_AIC5_SMR);
> +	}
> +

This seem to affect more than just the sama5d2 part. Is that expected?

>  	irq_gc_lock(bgc);
>  	for (i = 0; i < dgc->irqs_per_chip; i++) {
>  		mask = 1 << i;
> @@ -184,10 +191,16 @@ static void aic5_resume(struct irq_data *d)
>  	u32 mask;
>  
>  	irq_gc_lock(bgc);
> +
> +	irq_reg_writel(bgc, 0xffffffff, AT91_AIC5_SPU);
> +	for (i = 0; i < domain->revmap_size; i++) {
> +		irq_reg_writel(bgc, i, AT91_AIC5_SSR);
> +		irq_reg_writel(bgc, i, AT91_AIC5_SVR);
> +		irq_reg_writel(bgc, smr_cache[i], AT91_AIC5_SMR);
> +	}
> +
>  	for (i = 0; i < dgc->irqs_per_chip; i++) {
>  		mask = 1 << i;
> -		if ((mask & gc->mask_cache) == (mask & gc->wake_active))
> -			continue;
>  
>  		irq_reg_writel(bgc, i + gc->irq_base, AT91_AIC5_SSR);
>  		if (mask & gc->mask_cache)


Thanks,

	M.
-- 
Without deviation from the norm, progress is not possible.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] irqchip/atmel-aic5: handle suspend to RAM
  2017-04-09 12:13 ` Marc Zyngier
@ 2017-04-10 12:30   ` Alexandre Belloni
  0 siblings, 0 replies; 3+ messages in thread
From: Alexandre Belloni @ 2017-04-10 12:30 UTC (permalink / raw)
  To: Marc Zyngier; +Cc: Thomas Gleixner, Boris Brezillon, Jason Cooper, linux-kernel

On 09/04/2017 at 13:13:33 +0100, Marc Zyngier wrote:
> On Thu, 6 Apr 2017 18:17:53 +0200
> Alexandre Belloni <alexandre.belloni@free-electrons.com> wrote:
> 
> > On sama5d2, VDD core may be cut while suspending to RAM. This means the
> > AIC5 registers content is lost. Restore it at resume time.
> > 
> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> > ---
> >  drivers/irqchip/irq-atmel-aic5.c | 17 +++++++++++++++--
> >  1 file changed, 15 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/irqchip/irq-atmel-aic5.c b/drivers/irqchip/irq-atmel-aic5.c
> > index 2a624d87a035..ddbf60251b0e 100644
> > --- a/drivers/irqchip/irq-atmel-aic5.c
> > +++ b/drivers/irqchip/irq-atmel-aic5.c
> > @@ -150,6 +150,8 @@ static int aic5_set_type(struct irq_data *d, unsigned type)
> >  }
> >  
> >  #ifdef CONFIG_PM
> > +u32 smr_cache[128];
> 
> Two things:
> 
> - Why isn't this array static?
> - Why is the size hard-coded to 128, while the loops below are based on
>   the domain revmap_size.
> 
> > +
> >  static void aic5_suspend(struct irq_data *d)
> >  {
> >  	struct irq_domain *domain = d->domain;
> > @@ -159,6 +161,11 @@ static void aic5_suspend(struct irq_data *d)
> >  	int i;
> >  	u32 mask;
> >  
> > +	for (i = 0; i < domain->revmap_size; i++) {
> > +		irq_reg_writel(bgc, i, AT91_AIC5_SSR);
> > +		smr_cache[i] = irq_reg_readl(bgc, AT91_AIC5_SMR);
> > +	}
> > +
> 
> This seem to affect more than just the sama5d2 part. Is that expected?
> 

I'll send v2 addressing your comments shortly. The answer is that it
works on all the SoCs. It was simply not needed before. I'll try to come
up with a solution only affecting sama5d2 anyway.

The best would be to be able to know whether will be cut or not but it
is not currently possible with the PM core.


-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-04-10 12:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-06 16:17 [PATCH] irqchip/atmel-aic5: handle suspend to RAM Alexandre Belloni
2017-04-09 12:13 ` Marc Zyngier
2017-04-10 12:30   ` Alexandre Belloni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.