* [PATCH 00/10] Lager multiplatform support
@ 2013-10-29 15:04 Laurent Pinchart
2013-10-31 5:27 ` Simon Horman
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Laurent Pinchart @ 2013-10-29 15:04 UTC (permalink / raw)
To: linux-sh
Hello,
This patch set moves the lager-reference board over to multiplatform kernel.
It starts by syncing the Lager DTS with the Lager reference DTS (01/10),
instantiates clocks in DT using the R8A7790 CCF drivers previously posted
(02/10 to 04/10), switches lager-reference over to multiplatform (05/10 to
06/10) and cleans up unneeded leftovers (07/10 to 10/10).
The net result is a multiplatform-only lager-reference board with a single DTS
shared by the lager and lager-reference boards.
The code is available in my git tree at
git://linuxtv.org/pinchartl/fbdev.git clocks/ccf/lager
The branch is based on a merge of renesas-devel-20131016, v3.12-rc7 and
multiarch drivers, clk-prepare and r8a7790 CCF patches I've posted earlier
today.
Laurent Pinchart (10):
ARM: shmobile: Sync Lager DTS with Lager reference DTS
ARM: shmobile: r8a7790: Add clocks
ARM: shmobile: r8a7790: Reference clocks
ARM: shmobile: lager: Specify external clock frequency in DT
ARM: shmobile: lager-reference: Switch to multiplaform
ARM: shmobile: lager-reference: Instantiate clkdevs for SCIF and CMT
ARM: shmobile: Remove non-multiplatform Lager reference support
ARM: shmobile: Let Lager multiplatform boot with Lager DTB
ARM: shmobile: Remove Lager reference DTS
ARM: shmobile: r8a7790: Remove legacy clock aliases for DT devices
arch/arm/boot/dts/Makefile | 1 -
arch/arm/boot/dts/r8a7790-lager-reference.dts | 84 -------
arch/arm/boot/dts/r8a7790-lager.dts | 59 ++++-
arch/arm/boot/dts/r8a7790.dtsi | 309 +++++++++++++++++++++++++
arch/arm/mach-shmobile/Kconfig | 18 +-
arch/arm/mach-shmobile/Makefile | 2 +-
arch/arm/mach-shmobile/Makefile.boot | 1 -
arch/arm/mach-shmobile/board-lager-reference.c | 40 +++-
arch/arm/mach-shmobile/clock-r8a7790.c | 10 -
9 files changed, 412 insertions(+), 112 deletions(-)
delete mode 100644 arch/arm/boot/dts/r8a7790-lager-reference.dts
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 00/10] Lager multiplatform support
2013-10-29 15:04 [PATCH 00/10] Lager multiplatform support Laurent Pinchart
@ 2013-10-31 5:27 ` Simon Horman
2013-10-31 12:24 ` Laurent Pinchart
2013-11-01 0:16 ` Simon Horman
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2013-10-31 5:27 UTC (permalink / raw)
To: linux-sh
On Tue, Oct 29, 2013 at 04:04:32PM +0100, Laurent Pinchart wrote:
> Hello,
>
> This patch set moves the lager-reference board over to multiplatform kernel.
> It starts by syncing the Lager DTS with the Lager reference DTS (01/10),
> instantiates clocks in DT using the R8A7790 CCF drivers previously posted
> (02/10 to 04/10), switches lager-reference over to multiplatform (05/10 to
> 06/10) and cleans up unneeded leftovers (07/10 to 10/10).
>
> The net result is a multiplatform-only lager-reference board with a single DTS
> shared by the lager and lager-reference boards.
>
> The code is available in my git tree at
>
> git://linuxtv.org/pinchartl/fbdev.git clocks/ccf/lager
>
> The branch is based on a merge of renesas-devel-20131016, v3.12-rc7 and
> multiarch drivers, clk-prepare and r8a7790 CCF patches I've posted earlier
> today.
Thanks Laurent.
I would like to ask you to re-post these patches once the required
dependencies have been merged. I will also need a stable branch
or branches on which to base any application of these changes.
If there are patches in this series which you would like me to apply
now please let me know, I am more than happy to do so.
>
> Laurent Pinchart (10):
> ARM: shmobile: Sync Lager DTS with Lager reference DTS
> ARM: shmobile: r8a7790: Add clocks
> ARM: shmobile: r8a7790: Reference clocks
> ARM: shmobile: lager: Specify external clock frequency in DT
> ARM: shmobile: lager-reference: Switch to multiplaform
> ARM: shmobile: lager-reference: Instantiate clkdevs for SCIF and CMT
> ARM: shmobile: Remove non-multiplatform Lager reference support
> ARM: shmobile: Let Lager multiplatform boot with Lager DTB
> ARM: shmobile: Remove Lager reference DTS
> ARM: shmobile: r8a7790: Remove legacy clock aliases for DT devices
>
> arch/arm/boot/dts/Makefile | 1 -
> arch/arm/boot/dts/r8a7790-lager-reference.dts | 84 -------
> arch/arm/boot/dts/r8a7790-lager.dts | 59 ++++-
> arch/arm/boot/dts/r8a7790.dtsi | 309 +++++++++++++++++++++++++
> arch/arm/mach-shmobile/Kconfig | 18 +-
> arch/arm/mach-shmobile/Makefile | 2 +-
> arch/arm/mach-shmobile/Makefile.boot | 1 -
> arch/arm/mach-shmobile/board-lager-reference.c | 40 +++-
> arch/arm/mach-shmobile/clock-r8a7790.c | 10 -
> 9 files changed, 412 insertions(+), 112 deletions(-)
> delete mode 100644 arch/arm/boot/dts/r8a7790-lager-reference.dts
>
> --
> Regards,
>
> Laurent Pinchart
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 00/10] Lager multiplatform support
2013-10-29 15:04 [PATCH 00/10] Lager multiplatform support Laurent Pinchart
2013-10-31 5:27 ` Simon Horman
@ 2013-10-31 12:24 ` Laurent Pinchart
2013-11-01 0:16 ` Simon Horman
2 siblings, 0 replies; 4+ messages in thread
From: Laurent Pinchart @ 2013-10-31 12:24 UTC (permalink / raw)
To: linux-sh
Hi Simon,
On Thursday 31 October 2013 14:27:47 Simon Horman wrote:
> On Tue, Oct 29, 2013 at 04:04:32PM +0100, Laurent Pinchart wrote:
> > Hello,
> >
> > This patch set moves the lager-reference board over to multiplatform
> > kernel. It starts by syncing the Lager DTS with the Lager reference DTS
> > (01/10), instantiates clocks in DT using the R8A7790 CCF drivers
> > previously posted (02/10 to 04/10), switches lager-reference over to
> > multiplatform (05/10 to 06/10) and cleans up unneeded leftovers (07/10 to
> > 10/10).
> >
> > The net result is a multiplatform-only lager-reference board with a single
> > DTS shared by the lager and lager-reference boards.
> >
> > The code is available in my git tree at
> >
> > git://linuxtv.org/pinchartl/fbdev.git clocks/ccf/lager
> >
> > The branch is based on a merge of renesas-devel-20131016, v3.12-rc7 and
> > multiarch drivers, clk-prepare and r8a7790 CCF patches I've posted earlier
> > today.
>
> Thanks Laurent.
>
> I would like to ask you to re-post these patches once the required
> dependencies have been merged.
Sure.
> I will also need a stable branch or branches on which to base any
> application of these changes.
That will be the hard part :-) some of the patches should get merged in v3.13-
rc1. I'll try to request stable branches for the others.
> If there are patches in this series which you would like me to apply
> now please let me know, I am more than happy to do so.
They can all wait.
> > Laurent Pinchart (10):
> > ARM: shmobile: Sync Lager DTS with Lager reference DTS
> > ARM: shmobile: r8a7790: Add clocks
> > ARM: shmobile: r8a7790: Reference clocks
> > ARM: shmobile: lager: Specify external clock frequency in DT
> > ARM: shmobile: lager-reference: Switch to multiplaform
> > ARM: shmobile: lager-reference: Instantiate clkdevs for SCIF and CMT
> > ARM: shmobile: Remove non-multiplatform Lager reference support
> > ARM: shmobile: Let Lager multiplatform boot with Lager DTB
> > ARM: shmobile: Remove Lager reference DTS
> > ARM: shmobile: r8a7790: Remove legacy clock aliases for DT devices
> >
> > arch/arm/boot/dts/Makefile | 1 -
> > arch/arm/boot/dts/r8a7790-lager-reference.dts | 84 -------
> > arch/arm/boot/dts/r8a7790-lager.dts | 59 ++++-
> > arch/arm/boot/dts/r8a7790.dtsi | 309 ++++++++++++++++++++
> > arch/arm/mach-shmobile/Kconfig | 18 +-
> > arch/arm/mach-shmobile/Makefile | 2 +-
> > arch/arm/mach-shmobile/Makefile.boot | 1 -
> > arch/arm/mach-shmobile/board-lager-reference.c | 40 +++-
> > arch/arm/mach-shmobile/clock-r8a7790.c | 10 -
> > 9 files changed, 412 insertions(+), 112 deletions(-)
> > delete mode 100644 arch/arm/boot/dts/r8a7790-lager-reference.dts
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 00/10] Lager multiplatform support
2013-10-29 15:04 [PATCH 00/10] Lager multiplatform support Laurent Pinchart
2013-10-31 5:27 ` Simon Horman
2013-10-31 12:24 ` Laurent Pinchart
@ 2013-11-01 0:16 ` Simon Horman
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2013-11-01 0:16 UTC (permalink / raw)
To: linux-sh
On Thu, Oct 31, 2013 at 01:24:28PM +0100, Laurent Pinchart wrote:
> Hi Simon,
>
> On Thursday 31 October 2013 14:27:47 Simon Horman wrote:
> > On Tue, Oct 29, 2013 at 04:04:32PM +0100, Laurent Pinchart wrote:
> > > Hello,
> > >
> > > This patch set moves the lager-reference board over to multiplatform
> > > kernel. It starts by syncing the Lager DTS with the Lager reference DTS
> > > (01/10), instantiates clocks in DT using the R8A7790 CCF drivers
> > > previously posted (02/10 to 04/10), switches lager-reference over to
> > > multiplatform (05/10 to 06/10) and cleans up unneeded leftovers (07/10 to
> > > 10/10).
> > >
> > > The net result is a multiplatform-only lager-reference board with a single
> > > DTS shared by the lager and lager-reference boards.
> > >
> > > The code is available in my git tree at
> > >
> > > git://linuxtv.org/pinchartl/fbdev.git clocks/ccf/lager
> > >
> > > The branch is based on a merge of renesas-devel-20131016, v3.12-rc7 and
> > > multiarch drivers, clk-prepare and r8a7790 CCF patches I've posted earlier
> > > today.
> >
> > Thanks Laurent.
> >
> > I would like to ask you to re-post these patches once the required
> > dependencies have been merged.
>
> Sure.
>
> > I will also need a stable branch or branches on which to base any
> > application of these changes.
>
> That will be the hard part :-) some of the patches should get merged in v3.13-
> rc1. I'll try to request stable branches for the others.
Yes, that will be the hard part :-)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-11-01 0:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-29 15:04 [PATCH 00/10] Lager multiplatform support Laurent Pinchart
2013-10-31 5:27 ` Simon Horman
2013-10-31 12:24 ` Laurent Pinchart
2013-11-01 0:16 ` 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).