All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Marc Zyngier <marc.zyngier@arm.com>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org,
	linux@lists.openrisc.net
Cc: mark.rutland@arm.com, tony@atomide.com, catalin.marinas@arm.com,
	will.deacon@arm.com, tglx@linutronix.de, jonas@southpole.se,
	lorenzo.pieralisi@arm.com, linux@arm.linux.org.uk,
	shc_work@mail.ru, khilman@linaro.org, jason@lakedaemon.net,
	stefan.kristiansson@saunalahti.fi, larry.bassel@linaro.org,
	shawn.guo@freescale.com, baohua@kernel.org, sboyd@codeaurora.org,
	kernel@pengutronix.de, sudeep.holla@arm.com,
	schwidefsky@de.ibm.com, maxime.ripard@free-electrons.com,
	vkale@apm.com
Subject: Re: [PATCH v2 19/26] irqchip: atmel-aic: convert to handle_domain_irq
Date: Mon, 1 Sep 2014 11:32:47 +0200	[thread overview]
Message-ID: <54043D3F.5000108@atmel.com> (raw)
In-Reply-To: <1409047421-27649-20-git-send-email-marc.zyngier@arm.com>

On 26/08/2014 12:03, Marc Zyngier :
> Use the new handle_domain_irq method to handle interrupts.
> 
> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>

Booting okay:

Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>

> ---
>  drivers/irqchip/irq-atmel-aic.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/irqchip/irq-atmel-aic.c b/drivers/irqchip/irq-atmel-aic.c
> index a82869e..9a2cf3c 100644
> --- a/drivers/irqchip/irq-atmel-aic.c
> +++ b/drivers/irqchip/irq-atmel-aic.c
> @@ -68,12 +68,10 @@ aic_handle(struct pt_regs *regs)
>  	irqnr = irq_reg_readl(gc->reg_base + AT91_AIC_IVR);
>  	irqstat = irq_reg_readl(gc->reg_base + AT91_AIC_ISR);
>  
> -	irqnr = irq_find_mapping(aic_domain, irqnr);
> -
>  	if (!irqstat)
>  		irq_reg_writel(0, gc->reg_base + AT91_AIC_EOICR);
>  	else
> -		handle_IRQ(irqnr, regs);
> +		handle_domain_irq(aic_domain, irqnr, regs);
>  }
>  
>  static int aic_retrigger(struct irq_data *d)
> 


-- 
Nicolas Ferre

WARNING: multiple messages have this Message-ID (diff)
From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 19/26] irqchip: atmel-aic: convert to handle_domain_irq
Date: Mon, 1 Sep 2014 11:32:47 +0200	[thread overview]
Message-ID: <54043D3F.5000108@atmel.com> (raw)
In-Reply-To: <1409047421-27649-20-git-send-email-marc.zyngier@arm.com>

On 26/08/2014 12:03, Marc Zyngier :
> Use the new handle_domain_irq method to handle interrupts.
> 
> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>

Booting okay:

Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>

> ---
>  drivers/irqchip/irq-atmel-aic.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/irqchip/irq-atmel-aic.c b/drivers/irqchip/irq-atmel-aic.c
> index a82869e..9a2cf3c 100644
> --- a/drivers/irqchip/irq-atmel-aic.c
> +++ b/drivers/irqchip/irq-atmel-aic.c
> @@ -68,12 +68,10 @@ aic_handle(struct pt_regs *regs)
>  	irqnr = irq_reg_readl(gc->reg_base + AT91_AIC_IVR);
>  	irqstat = irq_reg_readl(gc->reg_base + AT91_AIC_ISR);
>  
> -	irqnr = irq_find_mapping(aic_domain, irqnr);
> -
>  	if (!irqstat)
>  		irq_reg_writel(0, gc->reg_base + AT91_AIC_EOICR);
>  	else
> -		handle_IRQ(irqnr, regs);
> +		handle_domain_irq(aic_domain, irqnr, regs);
>  }
>  
>  static int aic_retrigger(struct irq_data *d)
> 


-- 
Nicolas Ferre

WARNING: multiple messages have this Message-ID (diff)
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Marc Zyngier <marc.zyngier@arm.com>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <linux-omap@vger.kernel.org>,
	<linux@openrisc.net>
Cc: <mark.rutland@arm.com>, <tony@atomide.com>,
	<catalin.marinas@arm.com>, <will.deacon@arm.com>,
	<tglx@linutronix.de>, <jonas@southpole.se>,
	<lorenzo.pieralisi@arm.com>, <linux@arm.linux.org.uk>,
	<shc_work@mail.ru>, <khilman@linaro.org>, <jason@lakedaemon.net>,
	<stefan.kristiansson@saunalahti.fi>, <larry.bassel@linaro.org>,
	<shawn.guo@freescale.com>, <baohua@kernel.org>,
	<sboyd@codeaurora.org>, <kernel@pengutronix.de>,
	<sudeep.holla@arm.com>, <schwidefsky@de.ibm.com>,
	<maxime.ripard@free-electrons.com>, <vkale@apm.com>
Subject: Re: [PATCH v2 19/26] irqchip: atmel-aic: convert to handle_domain_irq
Date: Mon, 1 Sep 2014 11:32:47 +0200	[thread overview]
Message-ID: <54043D3F.5000108@atmel.com> (raw)
In-Reply-To: <1409047421-27649-20-git-send-email-marc.zyngier@arm.com>

On 26/08/2014 12:03, Marc Zyngier :
> Use the new handle_domain_irq method to handle interrupts.
> 
> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>

Booting okay:

Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>

> ---
>  drivers/irqchip/irq-atmel-aic.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/irqchip/irq-atmel-aic.c b/drivers/irqchip/irq-atmel-aic.c
> index a82869e..9a2cf3c 100644
> --- a/drivers/irqchip/irq-atmel-aic.c
> +++ b/drivers/irqchip/irq-atmel-aic.c
> @@ -68,12 +68,10 @@ aic_handle(struct pt_regs *regs)
>  	irqnr = irq_reg_readl(gc->reg_base + AT91_AIC_IVR);
>  	irqstat = irq_reg_readl(gc->reg_base + AT91_AIC_ISR);
>  
> -	irqnr = irq_find_mapping(aic_domain, irqnr);
> -
>  	if (!irqstat)
>  		irq_reg_writel(0, gc->reg_base + AT91_AIC_EOICR);
>  	else
> -		handle_IRQ(irqnr, regs);
> +		handle_domain_irq(aic_domain, irqnr, regs);
>  }
>  
>  static int aic_retrigger(struct irq_data *d)
> 


-- 
Nicolas Ferre

  reply	other threads:[~2014-09-01  9:32 UTC|newest]

Thread overview: 162+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-26 10:03 [PATCH v2 00/26] genirq: fix use of irq_find_mapping outside of legal RCU context Marc Zyngier
2014-08-26 10:03 ` Marc Zyngier
2014-08-26 10:03 ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 01/26] genirq: add irq_domain-aware core IRQ handler Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 17:42   ` Stephen Boyd
2014-08-26 17:42     ` Stephen Boyd
2014-08-26 17:42     ` Stephen Boyd
2014-08-26 18:07     ` Marc Zyngier
2014-08-26 18:07       ` Marc Zyngier
2014-08-26 18:07       ` Marc Zyngier
2014-08-26 18:46       ` Stephen Boyd
2014-08-26 18:46         ` Stephen Boyd
2014-08-26 18:46         ` Stephen Boyd
2014-08-26 19:05         ` Stephen Boyd
2014-08-26 19:05           ` Stephen Boyd
2014-08-26 19:05           ` Stephen Boyd
2014-09-01 15:22         ` Russell King - ARM Linux
2014-09-01 15:22           ` Russell King - ARM Linux
2014-09-01 15:22           ` Russell King - ARM Linux
2014-08-26 10:03 ` [PATCH v2 02/26] arm64: convert handle_IRQ to use __handle_domain_irq Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 16:51   ` Catalin Marinas
2014-08-26 16:51     ` Catalin Marinas
2014-08-26 16:51     ` Catalin Marinas
2014-08-26 16:58     ` Marc Zyngier
2014-08-26 16:58       ` Marc Zyngier
2014-08-26 16:58       ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 03/26] ARM: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 04/26] openrisc: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 05/26] irqchip: GIC: convert to handle_domain_irq Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 06/26] irqchip: armada-370-xp: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 07/26] irqchip: clps711x: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 08/26] irqchip: mmp: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 09/26] irqchip: mxs: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-27  6:38   ` Shawn Guo
2014-08-27  6:38     ` Shawn Guo
2014-08-27  6:38     ` Shawn Guo
2014-08-26 10:03 ` [PATCH v2 10/26] irqchip: orion: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 11/26] irqchip: s3c24xx: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 12/26] irqchip: sirfsoc: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 13/26] irqchip: sun4i: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 14/26] irqchip: versatile-fpga: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 15/26] irqchip: vic: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 16/26] irqchip: vt8500: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 17/26] irqchip: zevio: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 18/26] irqchip: GICv3: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03 ` [PATCH v2 19/26] irqchip: atmel-aic: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-09-01  9:32   ` Nicolas Ferre [this message]
2014-09-01  9:32     ` Nicolas Ferre
2014-09-01  9:32     ` Nicolas Ferre
2014-09-01 10:16   ` Boris BREZILLON
2014-09-01 10:16     ` Boris BREZILLON
2014-09-01 10:16     ` Boris BREZILLON
2014-08-26 10:03 ` [PATCH v2 20/26] irqchip: atmel-aic5: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-09-01  9:33   ` Nicolas Ferre
2014-09-01  9:33     ` Nicolas Ferre
2014-09-01  9:33     ` Nicolas Ferre
2014-09-01  9:51   ` Boris BREZILLON
2014-09-01  9:51     ` Boris BREZILLON
2014-09-01  9:51     ` Boris BREZILLON
2014-08-26 10:03 ` [PATCH v2 21/26] irqchip: or1k-pic: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-27 17:09   ` Stefan Kristiansson
2014-08-27 17:09     ` Stefan Kristiansson
2014-08-27 17:09     ` Stefan Kristiansson
2014-08-26 10:03 ` [PATCH v2 22/26] ARM: imx: avic: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-27  6:40   ` Shawn Guo
2014-08-27  6:40     ` Shawn Guo
2014-08-27  6:40     ` Shawn Guo
2014-08-26 10:03 ` [PATCH v2 23/26] ARM: imx: tzic: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-27  6:40   ` Shawn Guo
2014-08-27  6:40     ` Shawn Guo
2014-08-27  6:40     ` Shawn Guo
2014-08-26 10:03 ` [PATCH v2 24/26] ARM: omap2: irq: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 20:57   ` Tony Lindgren
2014-08-26 20:57     ` Tony Lindgren
2014-08-26 20:57     ` Tony Lindgren
2014-08-26 10:03 ` [PATCH v2 25/26] arm64: get rid of handle_IRQ Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 16:53   ` Catalin Marinas
2014-08-26 16:53     ` Catalin Marinas
2014-08-26 16:53     ` Catalin Marinas
2014-08-26 10:03 ` [PATCH v2 26/26] openrisc: " Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 10:03   ` Marc Zyngier
2014-08-26 21:34 ` [PATCH v2 00/26] genirq: fix use of irq_find_mapping outside of legal RCU context Thomas Gleixner
2014-08-26 21:34   ` Thomas Gleixner
2014-08-26 21:34   ` Thomas Gleixner
2014-08-27  9:33   ` Marc Zyngier
2014-08-27  9:33     ` Marc Zyngier
2014-08-27  9:33     ` Marc Zyngier
2014-09-03 12:04     ` Jason Cooper
2014-09-03 12:04       ` Jason Cooper
2014-09-03 12:04       ` Jason Cooper
2014-09-03 12:09       ` Thomas Gleixner
2014-09-03 12:09         ` Thomas Gleixner
2014-09-03 12:09         ` Thomas Gleixner
2014-09-03 12:21         ` Marc Zyngier
2014-09-03 12:21           ` Marc Zyngier
2014-09-03 12:21           ` Marc Zyngier
2014-09-03 12:25           ` Thomas Gleixner
2014-09-03 12:25             ` Thomas Gleixner
2014-09-03 12:25             ` Thomas Gleixner
2014-09-03 12:37             ` Jason Cooper
2014-09-03 12:37               ` Jason Cooper
2014-09-03 12:37               ` Jason Cooper
2014-09-03 12:40               ` Marc Zyngier
2014-09-03 12:40                 ` Marc Zyngier
2014-09-03 12:40                 ` Marc Zyngier
2014-09-03 12:37             ` Marc Zyngier
2014-09-03 12:37               ` Marc Zyngier
2014-09-03 12:37               ` Marc Zyngier
2014-09-03 13:18 ` Jason Cooper
2014-09-03 13:18   ` Jason Cooper
2014-09-03 13:18   ` Jason Cooper

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54043D3F.5000108@atmel.com \
    --to=nicolas.ferre@atmel.com \
    --cc=baohua@kernel.org \
    --cc=catalin.marinas@arm.com \
    --cc=jason@lakedaemon.net \
    --cc=jonas@southpole.se \
    --cc=kernel@pengutronix.de \
    --cc=khilman@linaro.org \
    --cc=larry.bassel@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=linux@lists.openrisc.net \
    --cc=lorenzo.pieralisi@arm.com \
    --cc=marc.zyngier@arm.com \
    --cc=mark.rutland@arm.com \
    --cc=maxime.ripard@free-electrons.com \
    --cc=sboyd@codeaurora.org \
    --cc=schwidefsky@de.ibm.com \
    --cc=shawn.guo@freescale.com \
    --cc=shc_work@mail.ru \
    --cc=stefan.kristiansson@saunalahti.fi \
    --cc=sudeep.holla@arm.com \
    --cc=tglx@linutronix.de \
    --cc=tony@atomide.com \
    --cc=vkale@apm.com \
    --cc=will.deacon@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.