mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Mark Salter <msalter@redhat.com>
To: Felipe Balbi <balbi@ti.com>, Aurelien Jacquiot <a-jacquiot@ti.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	linux-c6x-dev@linux-c6x.org
Subject: Re: [PATCH] c67: irq: don't reimplement __handle_domain_irq()
Date: Thu, 25 Jun 2015 15:29:50 -0400	[thread overview]
Message-ID: <1435260590.2693.21.camel@redhat.com> (raw)
In-Reply-To: <1435096765-31873-1-git-send-email-balbi@ti.com>

On Tue, 2015-06-23 at 16:59 -0500, Felipe Balbi wrote:
> c6x_do_IRQ() had a reimplementation of
> __handle_domain_irq(), instead just call
> that.

Actually, the other way around. The __handle_domain_irq() function is
relatively recent compared to the c6x code.

Anyway, your patch needed a "select HANDLE_DOMAIN_IRQ" in c6x/Kconfig
to build. I'll add that myself and queue up your patch in the c6x tree.

Thanks!

> 
> Signed-off-by: Felipe Balbi <balbi@ti.com>
> ---
> 
> Patch wasn't even compile tested because I really don't
> have c6x GCC around. If someone could test the patch before
> applying, that would avoid regressions.
> 
>  arch/c6x/kernel/irq.c | 13 ++-----------
>  1 file changed, 2 insertions(+), 11 deletions(-)
> 
> diff --git a/arch/c6x/kernel/irq.c b/arch/c6x/kernel/irq.c
> index 247e0eb5e467..a7f73bc765ac 100644
> --- a/arch/c6x/kernel/irq.c
> +++ b/arch/c6x/kernel/irq.c
> @@ -58,22 +58,13 @@ static struct irq_chip core_chip = {
>  };
>  
>  static int prio_to_virq[NR_PRIORITY_IRQS];
> +static struct irq_domain *core_domain;
>  
>  asmlinkage void c6x_do_IRQ(unsigned int prio, struct pt_regs *regs)
>  {
> -	struct pt_regs *old_regs = set_irq_regs(regs);
> -
> -	irq_enter();
> -
> -	generic_handle_irq(prio_to_virq[prio]);
> -
> -	irq_exit();
> -
> -	set_irq_regs(old_regs);
> +	__handle_domain_irq(core_domain, prio, true, regs);
>  }
>  
> -static struct irq_domain *core_domain;
> -
>  static int core_domain_map(struct irq_domain *h, unsigned int virq,
>  			   irq_hw_number_t hw)
>  {

  reply	other threads:[~2015-06-25 19:30 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-23 21:59 Felipe Balbi
2015-06-25 19:29 ` Mark Salter [this message]
2015-06-25 19:35   ` Felipe Balbi

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=1435260590.2693.21.camel@redhat.com \
    --to=msalter@redhat.com \
    --cc=a-jacquiot@ti.com \
    --cc=balbi@ti.com \
    --cc=linux-c6x-dev@linux-c6x.org \
    --cc=linux-kernel@vger.kernel.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome