From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnd Bergmann Subject: Re: [PATCH v7 4/7] ARM: dts: Enable Broadcom Cygnus SoC Date: Tue, 28 Oct 2014 17:10:24 +0100 Message-ID: <12464460.6zhqY1bzdG@wuerfel> References: <1414011474-11821-5-git-send-email-sbranden@broadcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: In-Reply-To: <1414011474-11821-5-git-send-email-sbranden@broadcom.com> Sender: linux-kernel-owner@vger.kernel.org To: linux-arm-kernel@lists.infradead.org Cc: Scott Branden , Christian Daudt , Matt Porter , Russell King , bcm-kernel-feedback-list@broadcom.com, Mike Turquette , Alex Elder , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Andrew Morton , "David S. Miller" , Greg Kroah-Hartman , Joe Perches , Mauro Carvalho Chehab , Antti Palosaari , devicetree@vger.kernel.org, Ray Jui , linux-kernel@vger.kernel.org, JD Zheng List-Id: devicetree@vger.kernel.org On Wednesday 22 October 2014 13:57:51 Scott Branden wrote: > + > + aliases { > + serial0 = &uart3; > + serial1 = &uart0; > + }; > + > + chosen { > + bootargs = "console=ttyS0,115200 earlyprintk debug"; > + }; > Please move the 'aliases' and 'chosen' node into the .dts files, these are board specific, not SoC specific. For chosen, please remove earlyprintk and debug, which don't normally make sense unless you are debugging, and which will break in a multiplatform kernel. Please also add an "stdout-path = &uart3" property in chosen so that earlycon can work. Note that earlycon is currently broken on arm32, but we'll get there. Arnd