Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-11-04 Thread Robert Richter
On 03.11.14 20:47:17, Olof Johansson wrote:
> > > Robert Richter (6):
> > >   dts, arm64: Add dtbs_install make target
> > >   dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
> > >   dts, arm/arm64: Remove dtbs build rules in sub-makes
> > >   dts, kbuild: Implement support for dtb vendor subdirs
> > >   dts, arm64: Move dts files to vendor subdirs
> > >   dts, arm: Remove $(MACHINE) variable from dtbs make recipes
> > 
> > please pull this series for inclusion into v3.19 from:
> > 
> >  git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git 
> > dts-subdirs-for-arm-soc-v3.19
> > 
> > I have updated and rebased the patches to v3.18-rc1. No changes except
> > conflict resolution of patch 5/6.
> 
> Pulled, and I added the description from 0/6 as the merge text -- feel free to
> add it to the tag if you do something like this in the future.

Thanks for pulling and the hint on the tag description (I was
wondering what to put in there).

-Robert
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-11-04 Thread Robert Richter
On 03.11.14 20:47:17, Olof Johansson wrote:
   Robert Richter (6):
 dts, arm64: Add dtbs_install make target
 dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
 dts, arm/arm64: Remove dtbs build rules in sub-makes
 dts, kbuild: Implement support for dtb vendor subdirs
 dts, arm64: Move dts files to vendor subdirs
 dts, arm: Remove $(MACHINE) variable from dtbs make recipes
  
  please pull this series for inclusion into v3.19 from:
  
   git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git 
  dts-subdirs-for-arm-soc-v3.19
  
  I have updated and rebased the patches to v3.18-rc1. No changes except
  conflict resolution of patch 5/6.
 
 Pulled, and I added the description from 0/6 as the merge text -- feel free to
 add it to the tag if you do something like this in the future.

Thanks for pulling and the hint on the tag description (I was
wondering what to put in there).

-Robert
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-11-03 Thread Olof Johansson
On Tue, Oct 21, 2014 at 08:15:04PM +0200, Robert Richter wrote:
> Arnd,
> 
> On 05.09.14 08:48:06, Robert Richter wrote:
> > From: Robert Richter 
> > 
> > For arm64 we want to put dts files into vendor's subdirectories from
> > the beginning. This patch set implements this. As this is a generic
> > kbuild implementation, vendor subdirs will be also available for
> > arch/arm and other architectures. The subdirectory tree is also
> > reflected in the install path.
> > 
> > A new makefile variable dts-dirs is introduced to point to dts
> > subdirs. This variable is used by kbuild for building and installation
> > of dtb files.
> > 
> > A dts Makefile looks now as follows:
> > 
> > 
> > dtb-$(CONFIG_...) += some_file_1.dtb
> > dtb-$(CONFIG_...) += some_file_2.dtb
> > 
> > dts-dirs  += dir_vendor_a
> > dts-dirs  += dir_vendor_b
> > 
> > # come always afterwards:
> > always := $(dtb-y)
> > subdir-y   := $(dts-dirs)
> > clean-files:= *.dtb
> > 
> > 
> > This patches also introduces the dtbs_install make target for
> > arm64. Install rules are moved to Makefile.dtbinst using the same
> > style and calling convention like for modinst and fwinst.
> > 
> > Robert Richter (6):
> >   dts, arm64: Add dtbs_install make target
> >   dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
> >   dts, arm/arm64: Remove dtbs build rules in sub-makes
> >   dts, kbuild: Implement support for dtb vendor subdirs
> >   dts, arm64: Move dts files to vendor subdirs
> >   dts, arm: Remove $(MACHINE) variable from dtbs make recipes
> 
> please pull this series for inclusion into v3.19 from:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git 
> dts-subdirs-for-arm-soc-v3.19
> 
> I have updated and rebased the patches to v3.18-rc1. No changes except
> conflict resolution of patch 5/6.

Pulled, and I added the description from 0/6 as the merge text -- feel free to
add it to the tag if you do something like this in the future.


-Olof
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-11-03 Thread Olof Johansson
On Tue, Oct 21, 2014 at 08:15:04PM +0200, Robert Richter wrote:
 Arnd,
 
 On 05.09.14 08:48:06, Robert Richter wrote:
  From: Robert Richter rrich...@cavium.com
  
  For arm64 we want to put dts files into vendor's subdirectories from
  the beginning. This patch set implements this. As this is a generic
  kbuild implementation, vendor subdirs will be also available for
  arch/arm and other architectures. The subdirectory tree is also
  reflected in the install path.
  
  A new makefile variable dts-dirs is introduced to point to dts
  subdirs. This variable is used by kbuild for building and installation
  of dtb files.
  
  A dts Makefile looks now as follows:
  
  
  dtb-$(CONFIG_...) += some_file_1.dtb
  dtb-$(CONFIG_...) += some_file_2.dtb
  
  dts-dirs  += dir_vendor_a
  dts-dirs  += dir_vendor_b
  
  # come always afterwards:
  always := $(dtb-y)
  subdir-y   := $(dts-dirs)
  clean-files:= *.dtb
  
  
  This patches also introduces the dtbs_install make target for
  arm64. Install rules are moved to Makefile.dtbinst using the same
  style and calling convention like for modinst and fwinst.
  
  Robert Richter (6):
dts, arm64: Add dtbs_install make target
dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
dts, arm/arm64: Remove dtbs build rules in sub-makes
dts, kbuild: Implement support for dtb vendor subdirs
dts, arm64: Move dts files to vendor subdirs
dts, arm: Remove $(MACHINE) variable from dtbs make recipes
 
 please pull this series for inclusion into v3.19 from:
 
  git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git 
 dts-subdirs-for-arm-soc-v3.19
 
 I have updated and rebased the patches to v3.18-rc1. No changes except
 conflict resolution of patch 5/6.

Pulled, and I added the description from 0/6 as the merge text -- feel free to
add it to the tag if you do something like this in the future.


-Olof
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-10-30 Thread Robert Richter
Arnd,

On 21.10.14 20:15:04, Robert Richter wrote:
> please pull this series for inclusion into v3.19 from:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git 
> dts-subdirs-for-arm-soc-v3.19
> 
> I have updated and rebased the patches to v3.18-rc1. No changes except
> conflict resolution of patch 5/6.

have you had the chance to look at this?

Thanks,

-Robert
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-10-30 Thread Robert Richter
Arnd,

On 21.10.14 20:15:04, Robert Richter wrote:
 please pull this series for inclusion into v3.19 from:
 
  git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git 
 dts-subdirs-for-arm-soc-v3.19
 
 I have updated and rebased the patches to v3.18-rc1. No changes except
 conflict resolution of patch 5/6.

have you had the chance to look at this?

Thanks,

-Robert
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-10-20 Thread Robert Richter
On 20.10.14 19:26:32, Abhilash Kesavan wrote:

> >> > > > > Robert Richter (6):
> >> > > > >   dts, arm64: Add dtbs_install make target
> >> > > > >   dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
> >> > > > >   dts, arm/arm64: Remove dtbs build rules in sub-makes
> >> > > > >   dts, kbuild: Implement support for dtb vendor subdirs
> >> > > > >   dts, arm64: Move dts files to vendor subdirs
> >> > > > >   dts, arm: Remove $(MACHINE) variable from dtbs make recipes

> > you may want to pull from here alternatively.
> 
> I have been using your patchset as the base for my new arm64 SoC
> support (http://www.spinics.net/lists/linux-samsung-soc/msg37047.html).
> Are you planning to rebase and send this again as some of the patches
> did not apply cleanly for me on linux-next.

Yes, I will rebase it and resend the pull request this week.

-Robert
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-10-20 Thread Abhilash Kesavan
Hello Robert,

On Thu, Oct 2, 2014 at 8:38 PM, Robert Richter  wrote:
> On 23.09.14 13:26:19, Robert Richter wrote:
>> On 19.09.14 15:08:56, Catalin Marinas wrote:
>> > On Fri, Sep 19, 2014 at 01:30:56PM +0100, Robert Richter wrote:
>> > > On 16.09.14 20:49:18, Andrew Bresticker wrote:
>> > > > > Robert Richter (6):
>> > > > >   dts, arm64: Add dtbs_install make target
>> > > > >   dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
>> > > > >   dts, arm/arm64: Remove dtbs build rules in sub-makes
>> > > > >   dts, kbuild: Implement support for dtb vendor subdirs
>> > > > >   dts, arm64: Move dts files to vendor subdirs
>> > > > >   dts, arm: Remove $(MACHINE) variable from dtbs make recipes
>> > > >
>> > > > I've tested this for arm64 and by adding a vendor sub-directory
>> > > > locally for arm.  This series is also the base for my MIPS DT vendor
>> > > > sub-directory series
>> > > > (http://www.linux-mips.org/archives/linux-mips/2014-09/msg00217.html).
>> > > > So, for the entire series,
>> > > >
>> > > > Tested-by: Andrew Bresticker 
>> > >
>> > > Andrew, thanks for testing and great this also works on mips.
>> > >
>> > > Anyone willing to take the patches for 3.18? Are any further acks
>> > > needed?
>> >
>> > For the arm64 bits in this series:
>> >
>> > Acked-by: Catalin Marinas 
>> >
>> > I think the patches can be merged via arm-soc.
>>
>> Olof,
>>
>> please apply the patches.
>
> Olof, Arnd,
>
> you may want to pull from here alternatively.

I have been using your patchset as the base for my new arm64 SoC
support (http://www.spinics.net/lists/linux-samsung-soc/msg37047.html).
Are you planning to rebase and send this again as some of the patches
did not apply cleanly for me on linux-next.

Regards,
Abhilash
>
> Thanks,
>
> -Robert
>
>
> The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:
>
>   Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git 
> tags/dts-subdirs-for-arm-soc-v3.18
>
> for you to fetch changes up to 87bdf4d8625e50d99b56aa2590a2261049a5fd48:
>
>   dts, arm: Remove $(MACHINE) variable from dtbs make recipes (2014-09-03 
> 21:46:49 +0200)
>
> 
> dts, kbuild: Implement support for dtb vendor subdirs
>
> 
> Robert Richter (6):
>   dts, arm64: Add dtbs_install make target
>   dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
>   dts, arm/arm64: Remove dtbs build rules in sub-makes
>   dts, kbuild: Implement support for dtb vendor subdirs
>   dts, arm64: Move dts files to vendor subdirs
>   dts, arm: Remove $(MACHINE) variable from dtbs make recipes
>
>  arch/arm/Makefile  |  8 +++-
>  arch/arm/boot/dts/Makefile | 12 +-
>  arch/arm64/Makefile| 10 -
>  arch/arm64/boot/dts/Makefile   | 13 +++---
>  arch/arm64/boot/dts/apm/Makefile   |  5 +++
>  arch/arm64/boot/dts/{ => apm}/apm-mustang.dts  |  0
>  arch/arm64/boot/dts/{ => apm}/apm-storm.dtsi   |  0
>  arch/arm64/boot/dts/arm/Makefile   |  6 +++
>  arch/arm64/boot/dts/{ => arm}/foundation-v8.dts|  0
>  arch/arm64/boot/dts/{ => arm}/rtsm_ve-aemv8a.dts   |  0
>  .../boot/dts/{ => arm}/rtsm_ve-motherboard.dtsi|  0
>  scripts/Kbuild.include |  6 +++
>  scripts/Makefile.dtbinst   | 50 
> ++
>  scripts/Makefile.lib   | 12 --
>  14 files changed, 88 insertions(+), 34 deletions(-)
>  create mode 100644 arch/arm64/boot/dts/apm/Makefile
>  rename arch/arm64/boot/dts/{ => apm}/apm-mustang.dts (100%)
>  rename arch/arm64/boot/dts/{ => apm}/apm-storm.dtsi (100%)
>  create mode 100644 arch/arm64/boot/dts/arm/Makefile
>  rename arch/arm64/boot/dts/{ => arm}/foundation-v8.dts (100%)
>  rename arch/arm64/boot/dts/{ => arm}/rtsm_ve-aemv8a.dts (100%)
>  rename arch/arm64/boot/dts/{ => arm}/rtsm_ve-motherboard.dtsi (100%)
>  create mode 100644 scripts/Makefile.dtbinst
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-10-20 Thread Abhilash Kesavan
Hello Robert,

On Thu, Oct 2, 2014 at 8:38 PM, Robert Richter r...@kernel.org wrote:
 On 23.09.14 13:26:19, Robert Richter wrote:
 On 19.09.14 15:08:56, Catalin Marinas wrote:
  On Fri, Sep 19, 2014 at 01:30:56PM +0100, Robert Richter wrote:
   On 16.09.14 20:49:18, Andrew Bresticker wrote:
 Robert Richter (6):
   dts, arm64: Add dtbs_install make target
   dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
   dts, arm/arm64: Remove dtbs build rules in sub-makes
   dts, kbuild: Implement support for dtb vendor subdirs
   dts, arm64: Move dts files to vendor subdirs
   dts, arm: Remove $(MACHINE) variable from dtbs make recipes
   
I've tested this for arm64 and by adding a vendor sub-directory
locally for arm.  This series is also the base for my MIPS DT vendor
sub-directory series
(http://www.linux-mips.org/archives/linux-mips/2014-09/msg00217.html).
So, for the entire series,
   
Tested-by: Andrew Bresticker abres...@chromium.org
  
   Andrew, thanks for testing and great this also works on mips.
  
   Anyone willing to take the patches for 3.18? Are any further acks
   needed?
 
  For the arm64 bits in this series:
 
  Acked-by: Catalin Marinas catalin.mari...@arm.com
 
  I think the patches can be merged via arm-soc.

 Olof,

 please apply the patches.

 Olof, Arnd,

 you may want to pull from here alternatively.

I have been using your patchset as the base for my new arm64 SoC
support (http://www.spinics.net/lists/linux-samsung-soc/msg37047.html).
Are you planning to rebase and send this again as some of the patches
did not apply cleanly for me on linux-next.

Regards,
Abhilash

 Thanks,

 -Robert


 The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:

   Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)

 are available in the git repository at:

   git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git 
 tags/dts-subdirs-for-arm-soc-v3.18

 for you to fetch changes up to 87bdf4d8625e50d99b56aa2590a2261049a5fd48:

   dts, arm: Remove $(MACHINE) variable from dtbs make recipes (2014-09-03 
 21:46:49 +0200)

 
 dts, kbuild: Implement support for dtb vendor subdirs

 
 Robert Richter (6):
   dts, arm64: Add dtbs_install make target
   dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
   dts, arm/arm64: Remove dtbs build rules in sub-makes
   dts, kbuild: Implement support for dtb vendor subdirs
   dts, arm64: Move dts files to vendor subdirs
   dts, arm: Remove $(MACHINE) variable from dtbs make recipes

  arch/arm/Makefile  |  8 +++-
  arch/arm/boot/dts/Makefile | 12 +-
  arch/arm64/Makefile| 10 -
  arch/arm64/boot/dts/Makefile   | 13 +++---
  arch/arm64/boot/dts/apm/Makefile   |  5 +++
  arch/arm64/boot/dts/{ = apm}/apm-mustang.dts  |  0
  arch/arm64/boot/dts/{ = apm}/apm-storm.dtsi   |  0
  arch/arm64/boot/dts/arm/Makefile   |  6 +++
  arch/arm64/boot/dts/{ = arm}/foundation-v8.dts|  0
  arch/arm64/boot/dts/{ = arm}/rtsm_ve-aemv8a.dts   |  0
  .../boot/dts/{ = arm}/rtsm_ve-motherboard.dtsi|  0
  scripts/Kbuild.include |  6 +++
  scripts/Makefile.dtbinst   | 50 
 ++
  scripts/Makefile.lib   | 12 --
  14 files changed, 88 insertions(+), 34 deletions(-)
  create mode 100644 arch/arm64/boot/dts/apm/Makefile
  rename arch/arm64/boot/dts/{ = apm}/apm-mustang.dts (100%)
  rename arch/arm64/boot/dts/{ = apm}/apm-storm.dtsi (100%)
  create mode 100644 arch/arm64/boot/dts/arm/Makefile
  rename arch/arm64/boot/dts/{ = arm}/foundation-v8.dts (100%)
  rename arch/arm64/boot/dts/{ = arm}/rtsm_ve-aemv8a.dts (100%)
  rename arch/arm64/boot/dts/{ = arm}/rtsm_ve-motherboard.dtsi (100%)
  create mode 100644 scripts/Makefile.dtbinst
 --
 To unsubscribe from this list: send the line unsubscribe linux-kernel in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html
 Please read the FAQ at  http://www.tux.org/lkml/
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs

2014-10-20 Thread Robert Richter
On 20.10.14 19:26:32, Abhilash Kesavan wrote:

  Robert Richter (6):
dts, arm64: Add dtbs_install make target
dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
dts, arm/arm64: Remove dtbs build rules in sub-makes
dts, kbuild: Implement support for dtb vendor subdirs
dts, arm64: Move dts files to vendor subdirs
dts, arm: Remove $(MACHINE) variable from dtbs make recipes

  you may want to pull from here alternatively.
 
 I have been using your patchset as the base for my new arm64 SoC
 support (http://www.spinics.net/lists/linux-samsung-soc/msg37047.html).
 Are you planning to rebase and send this again as some of the patches
 did not apply cleanly for me on linux-next.

Yes, I will rebase it and resend the pull request this week.

-Robert
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/