From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 3/4] ARM: shmobile: marzen-reference: Initialise irqpin
Date: Wed, 15 May 2013 09:28:15 +0000 [thread overview]
Message-ID: <1482970.xQCySsLs8z@avalon> (raw)
In-Reply-To: <1368586650-26263-4-git-send-email-horms+renesas@verge.net.au>
Hi Simon,
Thanks for the patch.
On Wednesday 15 May 2013 11:57:29 Simon Horman wrote:
> Empirically it appears to be necessary to call r8a7779_init_irq_extpin(1)
> in order to initialise irqpin for use with IRQ1. This is already done in
> the marzen board code. This adds the call to the marzen-reference board
> code.
>
> The motivation for this is to allow use of SMSC LAN, which uses IRQ1, with
> marzen-reference.
This is an acceptable workaround for now, but in the not-so-long term we want
to move that code to the irqpin driver.
I've had a brief look at the irq-renesas-intc-irqpin driver, and it definitely
looks like some love is needed there. I don't have any free time for that at
the moment, but I could provide pointers if anyone wants to work on moving
irqpin-related arch code to the driver.
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> ---
> arch/arm/mach-shmobile/board-marzen-reference.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-shmobile/board-marzen-reference.c
> b/arch/arm/mach-shmobile/board-marzen-reference.c index 5332e89..f83b6d1
> 100644
> --- a/arch/arm/mach-shmobile/board-marzen-reference.c
> +++ b/arch/arm/mach-shmobile/board-marzen-reference.c
> @@ -63,12 +63,18 @@ static const char *marzen_boards_compat_dt[] __initdata
> = { NULL,
> };
>
> +void __init marzen_init_irq(void)
> +{
> + r8a7779_init_irq_extpin(1); /* IRQ1 as individual interrupt */
> + r8a7779_init_irq_dt();
> +}
> +
> DT_MACHINE_START(MARZEN, "marzen")
> .smp = smp_ops(r8a7779_smp_ops),
> .map_io = r8a7779_map_io,
> .init_early = r8a7779_init_delay,
> .nr_irqs = NR_IRQS_LEGACY,
> - .init_irq = r8a7779_init_irq_dt,
> + .init_irq = marzen_init_irq,
> .init_machine = marzen_init,
> .init_time = shmobile_timer_init,
> .dt_compat = marzen_boards_compat_dt,
--
Regards,
Laurent Pinchart
WARNING: multiple messages have this Message-ID (diff)
From: laurent.pinchart@ideasonboard.com (Laurent Pinchart)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 3/4] ARM: shmobile: marzen-reference: Initialise irqpin
Date: Wed, 15 May 2013 11:28:15 +0200 [thread overview]
Message-ID: <1482970.xQCySsLs8z@avalon> (raw)
In-Reply-To: <1368586650-26263-4-git-send-email-horms+renesas@verge.net.au>
Hi Simon,
Thanks for the patch.
On Wednesday 15 May 2013 11:57:29 Simon Horman wrote:
> Empirically it appears to be necessary to call r8a7779_init_irq_extpin(1)
> in order to initialise irqpin for use with IRQ1. This is already done in
> the marzen board code. This adds the call to the marzen-reference board
> code.
>
> The motivation for this is to allow use of SMSC LAN, which uses IRQ1, with
> marzen-reference.
This is an acceptable workaround for now, but in the not-so-long term we want
to move that code to the irqpin driver.
I've had a brief look at the irq-renesas-intc-irqpin driver, and it definitely
looks like some love is needed there. I don't have any free time for that at
the moment, but I could provide pointers if anyone wants to work on moving
irqpin-related arch code to the driver.
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> ---
> arch/arm/mach-shmobile/board-marzen-reference.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-shmobile/board-marzen-reference.c
> b/arch/arm/mach-shmobile/board-marzen-reference.c index 5332e89..f83b6d1
> 100644
> --- a/arch/arm/mach-shmobile/board-marzen-reference.c
> +++ b/arch/arm/mach-shmobile/board-marzen-reference.c
> @@ -63,12 +63,18 @@ static const char *marzen_boards_compat_dt[] __initdata
> = { NULL,
> };
>
> +void __init marzen_init_irq(void)
> +{
> + r8a7779_init_irq_extpin(1); /* IRQ1 as individual interrupt */
> + r8a7779_init_irq_dt();
> +}
> +
> DT_MACHINE_START(MARZEN, "marzen")
> .smp = smp_ops(r8a7779_smp_ops),
> .map_io = r8a7779_map_io,
> .init_early = r8a7779_init_delay,
> .nr_irqs = NR_IRQS_LEGACY,
> - .init_irq = r8a7779_init_irq_dt,
> + .init_irq = marzen_init_irq,
> .init_machine = marzen_init,
> .init_time = shmobile_timer_init,
> .dt_compat = marzen_boards_compat_dt,
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2013-05-15 9:28 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-15 2:57 [PATCH v2 0/4] marzen-reference ethernet patches Simon Horman
2013-05-15 2:57 ` Simon Horman
2013-05-15 2:57 ` [PATCH v2 1/4] ARM: shmobile: marzen-reference: Reference the correct IRQ for ethernet Simon Horman
2013-05-15 2:57 ` Simon Horman
2013-05-15 2:57 ` [PATCH v2 2/4] ARM: shmobile: marzen-reference: Update lan device name in pinctrl maps Simon Horman
2013-05-15 2:57 ` Simon Horman
2013-05-15 2:57 ` [PATCH v2 3/4] ARM: shmobile: marzen-reference: Initialise irqpin Simon Horman
2013-05-15 2:57 ` Simon Horman
2013-05-15 9:28 ` Laurent Pinchart [this message]
2013-05-15 9:28 ` Laurent Pinchart
2013-05-15 23:56 ` Simon Horman
2013-05-15 23:56 ` Simon Horman
2013-05-15 2:57 ` [PATCH v2 4/4] ARM: shmobile: marzen-reference: Set SMSC lan to use irq-push-pull Simon Horman
2013-05-15 2:57 ` Simon Horman
2013-05-15 9:15 ` Laurent Pinchart
2013-05-15 9:15 ` Laurent Pinchart
2014-05-12 22:26 ` Laurent Pinchart
2014-05-12 22:26 ` Laurent Pinchart
2014-05-13 1:11 ` Simon Horman
2014-05-13 1:11 ` Simon Horman
2014-05-13 7:07 ` Simon Horman
2014-05-13 7:07 ` Simon Horman
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=1482970.xQCySsLs8z@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.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 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.