From patchwork Thu Dec 15 21:37:22 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Lindgren X-Patchwork-Id: 5790 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 5FF8323E16 for ; Thu, 15 Dec 2011 21:37:34 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 4EC9DA18159 for ; Thu, 15 Dec 2011 21:37:34 +0000 (UTC) Received: by eaak10 with SMTP id k10so2870963eaa.11 for ; Thu, 15 Dec 2011 13:37:34 -0800 (PST) Received: by 10.204.156.208 with SMTP id y16mr2395775bkw.72.1323985054009; Thu, 15 Dec 2011 13:37:34 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.129.2 with SMTP id hg2cs54099bkc; Thu, 15 Dec 2011 13:37:31 -0800 (PST) Received: by 10.224.183.65 with SMTP id cf1mr8138257qab.55.1323985050174; Thu, 15 Dec 2011 13:37:30 -0800 (PST) Received: from mho-02-ewr.mailhop.org (mho-02-ewr.mailhop.org. [204.13.248.72]) by mx.google.com with ESMTPS id s1si297550qca.76.2011.12.15.13.37.29 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 15 Dec 2011 13:37:30 -0800 (PST) Received-SPF: neutral (google.com: 204.13.248.72 is neither permitted nor denied by best guess record for domain of tony@atomide.com) client-ip=204.13.248.72; Authentication-Results: mx.google.com; spf=neutral (google.com: 204.13.248.72 is neither permitted nor denied by best guess record for domain of tony@atomide.com) smtp.mail=tony@atomide.com Received: from c-98-234-237-12.hsd1.ca.comcast.net ([98.234.237.12] helo=localhost.localdomain) by mho-02-ewr.mailhop.org with esmtpa (Exim 4.72) (envelope-from ) id 1RbIzV-000DGi-Rw; Thu, 15 Dec 2011 21:37:26 +0000 Received: from Mutt by mutt-smtp-wrapper.pl 1.2 (www.zdo.com/articles/mutt-smtp-wrapper.shtml) X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 98.234.237.12 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18qV8V3FUVt3HDDHNV0vq01 Date: Thu, 15 Dec 2011 13:37:22 -0800 From: Tony Lindgren To: "Cousson, Benoit" Cc: Rajendra Nayak , linux-serial@vger.kernel.org, linux-omap@vger.kernel.org, devicetree-discuss@lists.ozlabs.org, khilman@ti.com, govindraj.raja@ti.com, linux-arm-kernel@lists.infradead.org, linaro-dev@lists.linaro.org, patches@linaro.org, robherring2@gmail.com Subject: Re: [PATCH v3 4/4] ARM: omap: pass minimal SoC/board data for UART from dt Message-ID: <20111215213722.GV32251@atomide.com> References: <1323863746-18145-1-git-send-email-rnayak@ti.com> <1323863746-18145-5-git-send-email-rnayak@ti.com> <20111214192509.GH32251@atomide.com> <4EE99923.4030902@ti.com> <4EE9C697.4010604@ti.com> <20111215211320.GU32251@atomide.com> <4EEA6686.3010504@ti.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <4EEA6686.3010504@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) * Cousson, Benoit [111215 12:56]: > > Nit: The convention is without the 0x prefix. OK will post an updated version as a reply to this email. > Beside that, that looks good top me. But I'll not be able to try it :-) Boots fine with the following n8x0.dts patch. Currently MMC of course won't mount and the file should be separate for n800 and and n810.. So this patch is not yet quite ready to go. Regards, Tony From: Tony Lindgren Date: Thu, 15 Dec 2011 13:04:31 -0800 Subject: [PATCH] arm/dts: Add minimal n8x0 device tree support Add minimal n8x0 device tree support Not-Signed-off-by: Tony Lindgren --- /dev/null +++ b/arch/arm/boot/dts/nokia-n8x0.dts @@ -0,0 +1,17 @@ +/dts-v1/; + +/include/ "omap2.dtsi" + +/ { + model = "Nokia N8x0"; + compatible = "nokia,n8x0", "ti,omap2420", "ti,omap2"; + + chosen { + bootargs = "root=/dev/mmcblk2p2 rw console=ttyO2,115200n8 debug earlyprintk"; + }; + + memory { + device_type = "memory"; + reg = <0x80000000 0x08000000>; /* 128 MB */ + }; +};