linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: shmobile: Use DT for GIC
@ 2013-08-02  6:38 Kuninori Morimoto
  2013-08-02  6:42 ` Kuninori Morimoto
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2013-08-02  6:38 UTC (permalink / raw)
  To: linux-sh


Hi Simon, Magnus

1) - 2) patches replace C base .init_irq to DT base .init_irq
on armadillo800eva/marzen, because

 - armadillo800eva/marzen boards are using DT_MACHINE_START()
 - r8a7740/r8a7779 dtsi already has GIC settings

3) - 4) pathces move intc/gic code to setup.c
and remove intc-r8axxx.c

Kuninori Morimoto (4):
      1) ARM: shmobile: armadillo800eva: Use DT for GIC
      2) ARM: shmobile: marzen: Use DT for GIC
      3) ARM: shmobile: r8a7740: move r8a7740_init_irq_of() to setup
      4) ARM: shmobile: r8a7779: move r8a7779_init_irq_xxx() to setup

 arch/arm/mach-shmobile/Makefile                |    4 +-
 arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
 arch/arm/mach-shmobile/board-marzen.c          |    3 +-
 arch/arm/mach-shmobile/include/mach/r8a7740.h  |    1 -
 arch/arm/mach-shmobile/include/mach/r8a7779.h  |    1 -
 arch/arm/mach-shmobile/intc-r8a7740.c          |   68 -------------
 arch/arm/mach-shmobile/intc-r8a7779.c          |  130 ------------------------
 arch/arm/mach-shmobile/setup-r8a7740.c         |   32 ++++++
 arch/arm/mach-shmobile/setup-r8a7779.c         |   80 +++++++++++++++
 9 files changed, 116 insertions(+), 205 deletions(-)

Best regards
---
Kuninori Morimoto

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

* Re: [PATCH 0/2] ARM: shmobile: Use DT for GIC
  2013-08-02  6:38 [PATCH 0/2] ARM: shmobile: Use DT for GIC Kuninori Morimoto
@ 2013-08-02  6:42 ` Kuninori Morimoto
  2013-08-06  0:14 ` Simon Horman
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2013-08-02  6:42 UTC (permalink / raw)
  To: linux-sh


Hi

The Subject was wrong

- [PATCH 0/2] ARM: shmobile: Use DT for GIC
+ [PATCH 0/4] ARM: shmobile: Use DT for GIC

And, I didn't indicate base branch.
These are based on renesas-devel-20130801v2 tag

> Kuninori Morimoto (4):
>       1) ARM: shmobile: armadillo800eva: Use DT for GIC
>       2) ARM: shmobile: marzen: Use DT for GIC
>       3) ARM: shmobile: r8a7740: move r8a7740_init_irq_of() to setup
>       4) ARM: shmobile: r8a7779: move r8a7779_init_irq_xxx() to setup
> 
>  arch/arm/mach-shmobile/Makefile                |    4 +-
>  arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
>  arch/arm/mach-shmobile/board-marzen.c          |    3 +-
>  arch/arm/mach-shmobile/include/mach/r8a7740.h  |    1 -
>  arch/arm/mach-shmobile/include/mach/r8a7779.h  |    1 -
>  arch/arm/mach-shmobile/intc-r8a7740.c          |   68 -------------
>  arch/arm/mach-shmobile/intc-r8a7779.c          |  130 ------------------------
>  arch/arm/mach-shmobile/setup-r8a7740.c         |   32 ++++++
>  arch/arm/mach-shmobile/setup-r8a7779.c         |   80 +++++++++++++++
>  9 files changed, 116 insertions(+), 205 deletions(-)
> 
> Best regards
> ---
> Kuninori Morimoto

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

* Re: [PATCH 0/2] ARM: shmobile: Use DT for GIC
  2013-08-02  6:38 [PATCH 0/2] ARM: shmobile: Use DT for GIC Kuninori Morimoto
  2013-08-02  6:42 ` Kuninori Morimoto
@ 2013-08-06  0:14 ` Simon Horman
  2013-08-06  2:02 ` Magnus Damm
  2013-08-06  2:39 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-08-06  0:14 UTC (permalink / raw)
  To: linux-sh

On Thu, Aug 01, 2013 at 11:42:36PM -0700, Kuninori Morimoto wrote:
> 
> Hi
> 
> The Subject was wrong
> 
> - [PATCH 0/2] ARM: shmobile: Use DT for GIC
> + [PATCH 0/4] ARM: shmobile: Use DT for GIC
> 
> And, I didn't indicate base branch.
> These are based on renesas-devel-20130801v2 tag

Thanks.

Magnus, could you please review this series?

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

* Re: [PATCH 0/2] ARM: shmobile: Use DT for GIC
  2013-08-02  6:38 [PATCH 0/2] ARM: shmobile: Use DT for GIC Kuninori Morimoto
  2013-08-02  6:42 ` Kuninori Morimoto
  2013-08-06  0:14 ` Simon Horman
@ 2013-08-06  2:02 ` Magnus Damm
  2013-08-06  2:39 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Magnus Damm @ 2013-08-06  2:02 UTC (permalink / raw)
  To: linux-sh

On Tue, Aug 6, 2013 at 9:14 AM, Simon Horman <horms@verge.net.au> wrote:
> On Thu, Aug 01, 2013 at 11:42:36PM -0700, Kuninori Morimoto wrote:
>>
>> Hi
>>
>> The Subject was wrong
>>
>> - [PATCH 0/2] ARM: shmobile: Use DT for GIC
>> + [PATCH 0/4] ARM: shmobile: Use DT for GIC
>>
>> And, I didn't indicate base branch.
>> These are based on renesas-devel-20130801v2 tag
>
> Thanks.
>
> Magnus, could you please review this series?

The series looks good to me. Removes unneeded C setup code and also
reduces number of lines by moving code out of the intc files.

Acked-by: Magnus Damm <damm@opensource.se>

Thanks,

/ magnus

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

* Re: [PATCH 0/2] ARM: shmobile: Use DT for GIC
  2013-08-02  6:38 [PATCH 0/2] ARM: shmobile: Use DT for GIC Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2013-08-06  2:02 ` Magnus Damm
@ 2013-08-06  2:39 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-08-06  2:39 UTC (permalink / raw)
  To: linux-sh

On Thu, Aug 01, 2013 at 11:42:36PM -0700, Kuninori Morimoto wrote:
> 
> Hi
> 
> The Subject was wrong
> 
> - [PATCH 0/2] ARM: shmobile: Use DT for GIC
> + [PATCH 0/4] ARM: shmobile: Use DT for GIC
> 
> And, I didn't indicate base branch.
> These are based on renesas-devel-20130801v2 tag
> 
> > Kuninori Morimoto (4):
> >       1) ARM: shmobile: armadillo800eva: Use DT for GIC
> >       2) ARM: shmobile: marzen: Use DT for GIC
> >       3) ARM: shmobile: r8a7740: move r8a7740_init_irq_of() to setup
> >       4) ARM: shmobile: r8a7779: move r8a7779_init_irq_xxx() to setup

Thanks, I have queued these up for v3.12 with Magnus's Ack.

I have queued-up the first two patches in the dt2 branch.
And the second two patches in the cleanup3 branch.

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

end of thread, other threads:[~2013-08-06  2:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-02  6:38 [PATCH 0/2] ARM: shmobile: Use DT for GIC Kuninori Morimoto
2013-08-02  6:42 ` Kuninori Morimoto
2013-08-06  0:14 ` Simon Horman
2013-08-06  2:02 ` Magnus Damm
2013-08-06  2:39 ` Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).