mbox

[GIT,PULL] Renesas ARM Based SoC Koelsch Board Removal Updates for v3.19

Message ID cover.1415059146.git.horms+renesas@verge.net.au
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-koelsch-board-removal-for-v3.19

Message

Simon Horman Nov. 4, 2014, 1:50 a.m. UTC
Hi Olof, Hi Kevin, Hi Arnd,

Please consider these Renesas ARM based SoC koelsch board removal updates for v3.19.

This pull request is based on a merge of:

* "Renesas ARM Based SoC DT DU Updates for v3.19",
  tagged as renesas-dt-du-for-v3.19.

* "Renesas ARM Based SoC DT Cleanups Updates for v3.19",
  tagged as renesas-dt-cleanups-for-v3.19.

Both of which I have also sent a pull-request for.


The following changes since commit 11886d1158e0dc123283891b662381f629ab47a0:

  Merge tag 'renesas-dt-cleanups-for-v3.19' into koelsch-board-removal-for-v3.19.base (2014-10-30 10:14:38 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-koelsch-board-removal-for-v3.19

for you to fetch changes up to 79e69d179cb3391040a3693fca8bc12ec03c05fc:

  ARM: shmobile: koelsch dts: Drop console= bootargs parameter (2014-10-30 10:18:31 +0900)

----------------------------------------------------------------
Renesas ARM Based SoC Koelsch Board Removal Updates for v3.19

* Remove lecacy C koelsh board support

----------------------------------------------------------------
Geert Uytterhoeven (3):
      MAINTAINERS: Remove reference to shmobile / koelsch_defconfig
      ARM: dts: koelsch: Stop building r8a7791-koelsch.dtb in legacy builds
      ARM: shmobile: koelsch dts: Drop console= bootargs parameter

Laurent Pinchart (4):
      ARM: shmobile: Remove shmobile_clk_workaround() implementation
      ARM: shmobile: koelsch: Remove legacy C board code
      ARM: shmobile: r8a7791: Remove legacy code
      ARM: shmobile: koelsch: Remove reference board code

 MAINTAINERS                                      |   1 -
 arch/arm/boot/dts/Makefile                       |   1 -
 arch/arm/boot/dts/r8a7791-koelsch.dts            |   2 +-
 arch/arm/configs/koelsch_defconfig               | 113 -----
 arch/arm/configs/shmobile_defconfig              |   1 -
 arch/arm/mach-shmobile/Kconfig                   |  19 -
 arch/arm/mach-shmobile/Makefile                  |   5 +-
 arch/arm/mach-shmobile/Makefile.boot             |   1 -
 arch/arm/mach-shmobile/board-koelsch-reference.c |  40 --
 arch/arm/mach-shmobile/board-koelsch.c           | 523 -----------------------
 arch/arm/mach-shmobile/clock-r8a7791.c           | 338 ---------------
 arch/arm/mach-shmobile/clock.c                   |  32 +-
 arch/arm/mach-shmobile/clock.h                   |  14 -
 arch/arm/mach-shmobile/r8a7791.h                 |   3 -
 arch/arm/mach-shmobile/setup-r8a7791.c           | 181 +-------
 15 files changed, 6 insertions(+), 1268 deletions(-)
 delete mode 100644 arch/arm/configs/koelsch_defconfig
 delete mode 100644 arch/arm/mach-shmobile/board-koelsch-reference.c
 delete mode 100644 arch/arm/mach-shmobile/board-koelsch.c
 delete mode 100644 arch/arm/mach-shmobile/clock-r8a7791.c

Comments

Arnd Bergmann Nov. 19, 2014, 10:06 p.m. UTC | #1
On Tuesday 04 November 2014, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
> 
> Please consider these Renesas ARM based SoC koelsch board removal updates for v3.19.
> 
> This pull request is based on a merge of:
> 
> * "Renesas ARM Based SoC DT DU Updates for v3.19",
>   tagged as renesas-dt-du-for-v3.19.
> 
> * "Renesas ARM Based SoC DT Cleanups Updates for v3.19",
>   tagged as renesas-dt-cleanups-for-v3.19.
> 
> Both of which I have also sent a pull-request for.
> 
> 
> The following changes since commit 11886d1158e0dc123283891b662381f629ab47a0:
> 
>   Merge tag 'renesas-dt-cleanups-for-v3.19' into koelsch-board-removal-for-v3.19.base (2014-10-30 10:14:38 +0900)
> 
> are available in the git repository at:
> 	
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-koelsch-board-removal-for-v3.19
> 
> for you to fetch changes up to 79e69d179cb3391040a3693fca8bc12ec03c05fc:
> 
>   ARM: shmobile: koelsch dts: Drop console= bootargs parameter (2014-10-30 10:18:31 +0900)
> 
> ----------------------------------------------------------------
> Renesas ARM Based SoC Koelsch Board Removal Updates for v3.19
> 
> * Remove lecacy C koelsh board support

I've tried merging this one in two ways, but I'm not too happy about either one:

- we could put it into next/boards, but I don't think there will be anything
  else in that branch and I was considering not to have one at all.

- it would also fit into next/cleanup, but then we already have
  renesas-dt-cleanups-for-v3.19 categorized as "next/dt" rather than
  "next/cleanup". Moving that one into cleanups solves the problem
  nicely, but it's rather large and my feeling is that Olof's decision
  to put it into next/dt was better.

I think you are trying too hard to avoid merge conflicts, as I can't see any
true dependency on renesas-dt-cleanups-for-v3.19, and I'd be happier if
you could rebase it onto renesas-dt-du-for-v3.19 by itself. There is
a trivial merge conflict that I have to resolve, but it seems more
sensible that way.

Any other thoughts?

Clearly the changes in this branch are great and I definitely want to have
them in 3.19.

	Arnd
Simon Horman Nov. 20, 2014, 12:40 a.m. UTC | #2
On Wed, Nov 19, 2014 at 11:06:43PM +0100, Arnd Bergmann wrote:
> On Tuesday 04 November 2014, Simon Horman wrote:
> > Hi Olof, Hi Kevin, Hi Arnd,
> > 
> > Please consider these Renesas ARM based SoC koelsch board removal updates for v3.19.
> > 
> > This pull request is based on a merge of:
> > 
> > * "Renesas ARM Based SoC DT DU Updates for v3.19",
> >   tagged as renesas-dt-du-for-v3.19.
> > 
> > * "Renesas ARM Based SoC DT Cleanups Updates for v3.19",
> >   tagged as renesas-dt-cleanups-for-v3.19.
> > 
> > Both of which I have also sent a pull-request for.
> > 
> > 
> > The following changes since commit 11886d1158e0dc123283891b662381f629ab47a0:
> > 
> >   Merge tag 'renesas-dt-cleanups-for-v3.19' into koelsch-board-removal-for-v3.19.base (2014-10-30 10:14:38 +0900)
> > 
> > are available in the git repository at:
> > 	
> >   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-koelsch-board-removal-for-v3.19
> > 
> > for you to fetch changes up to 79e69d179cb3391040a3693fca8bc12ec03c05fc:
> > 
> >   ARM: shmobile: koelsch dts: Drop console= bootargs parameter (2014-10-30 10:18:31 +0900)
> > 
> > ----------------------------------------------------------------
> > Renesas ARM Based SoC Koelsch Board Removal Updates for v3.19
> > 
> > * Remove lecacy C koelsh board support
> 
> I've tried merging this one in two ways, but I'm not too happy about either one:
> 
> - we could put it into next/boards, but I don't think there will be anything
>   else in that branch and I was considering not to have one at all.
> 
> - it would also fit into next/cleanup, but then we already have
>   renesas-dt-cleanups-for-v3.19 categorized as "next/dt" rather than
>   "next/cleanup". Moving that one into cleanups solves the problem
>   nicely, but it's rather large and my feeling is that Olof's decision
>   to put it into next/dt was better.

My assumption was that it is reasonable to base something on a cleanup
and that as the other base for this is next/dt the this pull request
would also end up in next/dt.

> I think you are trying too hard to avoid merge conflicts, as I can't see any
> true dependency on renesas-dt-cleanups-for-v3.19, and I'd be happier if
> you could rebase it onto renesas-dt-du-for-v3.19 by itself. There is
> a trivial merge conflict that I have to resolve, but it seems more
> sensible that way.
> 
> Any other thoughts?

Unfortunately its not quite so simple. The patch

"ARM: shmobile: koelsch dts: Drop console= bootargs parameter"
in renesas-koelsch-board-removal-for-v3.19 depends on 
"ARM: shmobile: kzm9g-reference dts: Add chosen/stdout-path"
which is on renesas-dt-cleanups-for-v3.19.

Perhaps it would be better if the latter had not been classified as a
cleanup. On that topic I must say that I find splitting out
some patches as cleanups to not be a very useful classification for me.

A possibility would be to duplicate "ARM: shmobile: kzm9g-reference dts:
Add chosen/stdout-path" in a revised renesas-koelsch-board-removal-for-v3.19.
I believe that would leave us with only a trivial conflict in
arch/arm/boot/dts/Makefile.

> Clearly the changes in this branch are great and I definitely want to have
> them in 3.19.
> 
> 	Arnd
> --
> 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
>
Arnd Bergmann Nov. 20, 2014, 7:33 a.m. UTC | #3
On Thursday 20 November 2014 09:40:03 Simon Horman wrote:
> On Wed, Nov 19, 2014 at 11:06:43PM +0100, Arnd Bergmann wrote:
> > On Tuesday 04 November 2014, Simon Horman wrote:

> > > ----------------------------------------------------------------
> > > Renesas ARM Based SoC Koelsch Board Removal Updates for v3.19
> > > 
> > > * Remove lecacy C koelsh board support
> > 
> > I've tried merging this one in two ways, but I'm not too happy about either one:
> > 
> > - we could put it into next/boards, but I don't think there will be anything
> >   else in that branch and I was considering not to have one at all.
> > 
> > - it would also fit into next/cleanup, but then we already have
> >   renesas-dt-cleanups-for-v3.19 categorized as "next/dt" rather than
> >   "next/cleanup". Moving that one into cleanups solves the problem
> >   nicely, but it's rather large and my feeling is that Olof's decision
> >   to put it into next/dt was better.
> 
> My assumption was that it is reasonable to base something on a cleanup
> and that as the other base for this is next/dt the this pull request
> would also end up in next/dt.

Correct in principle. Sometimes however we decide to put things into
a different branch than what you had planned, and this is what happened
here when Olof put the dt-cleanup into next/dt, which we normally do
for pull requests that only touch the dts files.

> > I think you are trying too hard to avoid merge conflicts, as I can't see any
> > true dependency on renesas-dt-cleanups-for-v3.19, and I'd be happier if
> > you could rebase it onto renesas-dt-du-for-v3.19 by itself. There is
> > a trivial merge conflict that I have to resolve, but it seems more
> > sensible that way.
> > 
> > Any other thoughts?
> 
> Unfortunately its not quite so simple. The patch
> 
> "ARM: shmobile: koelsch dts: Drop console= bootargs parameter"
> in renesas-koelsch-board-removal-for-v3.19 depends on 
> "ARM: shmobile: kzm9g-reference dts: Add chosen/stdout-path"
> which is on renesas-dt-cleanups-for-v3.19.
> 
> Perhaps it would be better if the latter had not been classified as a
> cleanup. On that topic I must say that I find splitting out
> some patches as cleanups to not be a very useful classification for me.
> 
> A possibility would be to duplicate "ARM: shmobile: kzm9g-reference dts:
> Add chosen/stdout-path" in a revised renesas-koelsch-board-removal-for-v3.19.
> I believe that would leave us with only a trivial conflict in
> arch/arm/boot/dts/Makefile.

Thanks for the explanation. I think the best way forward is to just
classify both renesas-dt-cleanups-for-v3.19 and renesas-koelsch-board-removal-for-v3.19
as cleanups then, which I've done. The dt-cleanup is now in both
next/cleanup and next/dt, while dt-cleanup2 and dt-cleanup3 remain
just in next/dt.

	Arnd
Simon Horman Nov. 20, 2014, 9:24 a.m. UTC | #4
On Thu, Nov 20, 2014 at 08:33:48AM +0100, Arnd Bergmann wrote:
> On Thursday 20 November 2014 09:40:03 Simon Horman wrote:
> > On Wed, Nov 19, 2014 at 11:06:43PM +0100, Arnd Bergmann wrote:
> > > On Tuesday 04 November 2014, Simon Horman wrote:
> 
> > > > ----------------------------------------------------------------
> > > > Renesas ARM Based SoC Koelsch Board Removal Updates for v3.19
> > > > 
> > > > * Remove lecacy C koelsh board support
> > > 
> > > I've tried merging this one in two ways, but I'm not too happy about either one:
> > > 
> > > - we could put it into next/boards, but I don't think there will be anything
> > >   else in that branch and I was considering not to have one at all.
> > > 
> > > - it would also fit into next/cleanup, but then we already have
> > >   renesas-dt-cleanups-for-v3.19 categorized as "next/dt" rather than
> > >   "next/cleanup". Moving that one into cleanups solves the problem
> > >   nicely, but it's rather large and my feeling is that Olof's decision
> > >   to put it into next/dt was better.
> > 
> > My assumption was that it is reasonable to base something on a cleanup
> > and that as the other base for this is next/dt the this pull request
> > would also end up in next/dt.
> 
> Correct in principle. Sometimes however we decide to put things into
> a different branch than what you had planned, and this is what happened
> here when Olof put the dt-cleanup into next/dt, which we normally do
> for pull requests that only touch the dts files.

Thanks for the clarification.

> > > I think you are trying too hard to avoid merge conflicts, as I can't see any
> > > true dependency on renesas-dt-cleanups-for-v3.19, and I'd be happier if
> > > you could rebase it onto renesas-dt-du-for-v3.19 by itself. There is
> > > a trivial merge conflict that I have to resolve, but it seems more
> > > sensible that way.
> > > 
> > > Any other thoughts?
> > 
> > Unfortunately its not quite so simple. The patch
> > 
> > "ARM: shmobile: koelsch dts: Drop console= bootargs parameter"
> > in renesas-koelsch-board-removal-for-v3.19 depends on 
> > "ARM: shmobile: kzm9g-reference dts: Add chosen/stdout-path"
> > which is on renesas-dt-cleanups-for-v3.19.
> > 
> > Perhaps it would be better if the latter had not been classified as a
> > cleanup. On that topic I must say that I find splitting out
> > some patches as cleanups to not be a very useful classification for me.
> > 
> > A possibility would be to duplicate "ARM: shmobile: kzm9g-reference dts:
> > Add chosen/stdout-path" in a revised renesas-koelsch-board-removal-for-v3.19.
> > I believe that would leave us with only a trivial conflict in
> > arch/arm/boot/dts/Makefile.
> 
> Thanks for the explanation. I think the best way forward is to just
> classify both renesas-dt-cleanups-for-v3.19 and renesas-koelsch-board-removal-for-v3.19
> as cleanups then, which I've done. The dt-cleanup is now in both
> next/cleanup and next/dt, while dt-cleanup2 and dt-cleanup3 remain
> just in next/dt.

Thanks, I appreciate it.
Its nice to get these changes into (and some legacy code out of) v3.19.