From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnd Bergmann Subject: Re: [PATCH v2 7/9] ARM: bcm2835: Add devicetree for the Raspberry Pi 3. Date: Fri, 03 Jun 2016 10:55:17 +0200 Message-ID: <3885625.kWfxlR3OJi@wuerfel> References: <1464934708-24769-1-git-send-email-kraxel@redhat.com> <5490184.9quKRk1Imx@wuerfel> <1464943546.24775.131.camel@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1464943546.24775.131.camel@redhat.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Gerd Hoffmann Cc: Mark Rutland , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" , Florian Fainelli , Pawel Moll , Scott Branden , Ian Campbell , Catalin Marinas , Kumar Gala , Will Deacon , Russell King , open list , Eric Anholt , Rob Herring , "open list:BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITE..." , linux-rpi-kernel@lists.infradead.org, Ray Jui , linux-arm-kernel@lists.infradead.org List-Id: devicetree@vger.kernel.org On Friday, June 3, 2016 10:45:46 AM CEST Gerd Hoffmann wrote: > On Fr, 2016-06-03 at 09:38 +0200, Arnd Bergmann wrote: > > On Friday, June 3, 2016 8:18:26 AM CEST Gerd Hoffmann wrote: > > > diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile > > > index 06b6c2d..71e2d36 100644 > > > --- a/arch/arm/boot/dts/Makefile > > > +++ b/arch/arm/boot/dts/Makefile > > > @@ -66,7 +66,8 @@ dtb-$(CONFIG_ARCH_BCM2835) += \ > > > bcm2835-rpi-b-rev2.dtb \ > > > bcm2835-rpi-b-plus.dtb \ > > > bcm2835-rpi-a-plus.dtb \ > > > - bcm2836-rpi-2-b.dtb > > > + bcm2836-rpi-2-b.dtb \ > > > + ../../../arm64/boot/dts/broadcom/bcm2837-rpi-3-b.dtb > > > dtb-$(CONFIG_ARCH_BCM_5301X) += \ > > > bcm4708-asus-rt-ac56u.dtb \ > > > bcm4708-asus-rt-ac68u.dtb \ > > > > Let's make this hunk a separate patch so we can discuss it on its > > own. > > Hmm, I through we where in agreement to do it this way ... I think it's ok in principle, this is about the specific syntax. > > I'm not really happy about the way it looks (in general, using ../../../ > > anywhere in the kernel looks hacky. > > > > How about a separate > > > > dtb-$(CONFIG_ARCH_BCM2835) += > > ../../../arm64/boot/dts/broadcom/ > > Not working. > > Tried "subdir-$(CONFIG_ARCH_BCM) += ...". Didn't work either. > Same for "dts-dirs += ...". > > Running out of ideas. Guess I have to leave this to someone who knows > kbuild better than me. I tried subdir-y += ../../../arm64/boot/dts/broadcom and it seemed to work fine, I got DTC arch/arm/boot/dts/../../../arm64/boot/dts/broadcom/ns2-svk.dtb in an allmodconfig build, which also includes CONFIG_ARCH_BCM_IPROC. Arnd