From patchwork Wed Nov 30 11:14:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Pawel Moll X-Patchwork-Id: 128481 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BD278B6F6B for ; Wed, 30 Nov 2011 22:16:32 +1100 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1RVi7C-00025G-WD; Wed, 30 Nov 2011 11:14:15 +0000 Received: from service87.mimecast.com ([91.220.42.44]) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1RVi7A-00024Y-1T for linux-arm-kernel@lists.infradead.org; Wed, 30 Nov 2011 11:14:12 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Wed, 30 Nov 2011 11:14:06 +0000 Received: from [10.1.206.166] ([10.1.255.212]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 30 Nov 2011 11:14:05 +0000 Subject: Re: [PATCH v3 0/5] Versatile Express DT support From: Pawel Moll To: Dave Martin In-Reply-To: <20111130104842.GA2045@localhost.localdomain> References: <1322579473-8804-1-git-send-email-pawel.moll@arm.com> <20111129170013.GD2829@localhost.localdomain> <1322587019.3164.111.camel@hornet.cambridge.arm.com> <20111130104842.GA2045@localhost.localdomain> Date: Wed, 30 Nov 2011 11:14:00 +0000 Message-ID: <1322651640.3164.135.camel@hornet.cambridge.arm.com> Mime-Version: 1.0 X-Mailer: Evolution 2.28.1 X-OriginalArrivalTime: 30 Nov 2011 11:14:05.0512 (UTC) FILETIME=[2C2ADC80:01CCAF51] X-MC-Unique: 111113011140610201 X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [91.220.42.44 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: "devicetree-discuss@lists.ozlabs.org" , "linux-arm-kernel@lists.infradead.org" X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org On Wed, 2011-11-30 at 10:48 +0000, Dave Martin wrote: > Attached. It's just vexpress_defconfig, plus ARCH_VEXPRESS_V2P_CA5S_CA9=y Could you try that? 8<---------------------------------------------- The OF is an effect of the USE_OF, not the other way round, sorry about the mistake. Of course I could go the "classic way" and make the ARCH_VEXPRESS_V2P_CA5S_CA9 dependant on the OF, but this means that the DT-powered tile would be invisible till one enables USE_OF. Any opinions? Cheers! Paweł diff --git a/arch/arm/mach-vexpress/Kconfig b/arch/arm/mach-vexpress/Kconfig index 9eb8161..ded66d0 100644 --- a/arch/arm/mach-vexpress/Kconfig +++ b/arch/arm/mach-vexpress/Kconfig @@ -11,7 +11,7 @@ config ARCH_VEXPRESS_CA9X4 config ARCH_VEXPRESS_DT bool - select OF + select USE_OF help VE platform *requiring* Flattened Device Tree to boot. 8<----------------------------------------------