From patchwork Thu Aug 2 15:56:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= X-Patchwork-Id: 174775 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from merlin.infradead.org (unknown [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 518EE2C0356 for ; Fri, 3 Aug 2012 02:00:29 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1SwxlZ-0002Mt-4Y; Thu, 02 Aug 2012 15:56:49 +0000 Received: from metis.ext.pengutronix.de ([2001:6f8:1178:4:290:27ff:fe1d:cc33]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1SwxlO-0002K5-Go for linux-arm-kernel@lists.infradead.org; Thu, 02 Aug 2012 15:56:39 +0000 Received: from dude.hi.pengutronix.de ([2001:6f8:1178:2:21e:67ff:fe11:9c5c]) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1SwxlL-0000dw-Vu; Thu, 02 Aug 2012 17:56:35 +0200 Received: from ukl by dude.hi.pengutronix.de with local (Exim 4.80) (envelope-from ) id 1SwxlL-0008T4-UP; Thu, 02 Aug 2012 17:56:35 +0200 From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= To: kernel@pengutronix.de Subject: [PATCH 2/2] ARM: imx/pcm043: add oftree support Date: Thu, 2 Aug 2012 17:56:26 +0200 Message-Id: <1343922986-32469-2-git-send-email-u.kleine-koenig@pengutronix.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1343922986-32469-1-git-send-email-u.kleine-koenig@pengutronix.de> References: <1343922986-32469-1-git-send-email-u.kleine-koenig@pengutronix.de> MIME-Version: 1.0 X-SA-Exim-Connect-IP: 2001:6f8:1178:2:21e:67ff:fe11:9c5c X-SA-Exim-Mail-From: ukl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-arm-kernel@lists.infradead.org X-Spam-Note: CRM114 invocation failed X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Shawn Guo , 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 Signed-off-by: Uwe Kleine-König --- arch/arm/boot/dts/phytec-pcm043.dtsi | 49 ++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 arch/arm/boot/dts/phytec-pcm043.dtsi diff --git a/arch/arm/boot/dts/phytec-pcm043.dtsi b/arch/arm/boot/dts/phytec-pcm043.dtsi new file mode 100644 index 0000000..420627c --- /dev/null +++ b/arch/arm/boot/dts/phytec-pcm043.dtsi @@ -0,0 +1,49 @@ +/include/ "imx35.dtsi" + +/ { + soc { + aips@40000000 { /* AIPS1 */ + i2c@43f80000 { + status = "okay"; + + tempsens@4a { + compatible = "maxim,ds75"; + reg = <0x4a>; + }; + rtc8564@51 { + compatible = "nxp,pcf8563"; + reg = <0x51>; + }; + at24@52 { + compatible = "at,24c32"; + reg = <0x52>; + pagesize = <32>; + }; + }; + uart@43f90000 { + status = "okay"; + }; + uart@43f94000 { + status = "okay"; + }; + }; + spba@50000000 { + uart@5000c000 { + status = "okay"; + }; + fec@50038000 { + status = "okay"; + }; + }; + + nor@a0000000 { + compatible = "cfi-flash"; + reg = <0xa0000000 0x2000000>; + bank-width = <2>; + }; + + nand@bb000000 { + status = "okay"; + }; + }; +};