From patchwork Sun Feb 6 13:17:28 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: thomas.abraham@linaro.org X-Patchwork-Id: 80 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:39:46 -0000 Delivered-To: patches@linaro.org Received: by 10.147.124.5 with SMTP id b5cs7737yan; Sun, 6 Feb 2011 05:19:07 -0800 (PST) Received: by 10.142.212.10 with SMTP id k10mr3102308wfg.70.1296998346928; Sun, 06 Feb 2011 05:19:06 -0800 (PST) Received: from mailout1.samsung.com (mailout1.samsung.com [203.254.224.24]) by mx.google.com with ESMTP id d34si6446692wfj.75.2011.02.06.05.19.06; Sun, 06 Feb 2011 05:19:06 -0800 (PST) Received-SPF: neutral (google.com: 203.254.224.24 is neither permitted nor denied by best guess record for domain of thomas.abraham@linaro.org) client-ip=203.254.224.24; Authentication-Results: mx.google.com; spf=neutral (google.com: 203.254.224.24 is neither permitted nor denied by best guess record for domain of thomas.abraham@linaro.org) smtp.mail=thomas.abraham@linaro.org Received: from epmmp2 (mailout1.samsung.com [203.254.224.24]) by mailout1.samsung.com (Oracle Communications Messaging Exchange Server 7u4-19.01 64bit (built Sep 7 2010)) with ESMTP id <0LG7004KA6BTS970@mailout1.samsung.com> for patches@linaro.org; Sun, 06 Feb 2011 22:19:05 +0900 (KST) Received: from localhost.localdomain ([107.108.73.37]) by mmp2.samsung.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTPA id <0LG700IIC6BL0I@mmp2.samsung.com> for patches@linaro.org; Sun, 06 Feb 2011 22:19:06 +0900 (KST) Date: Sun, 06 Feb 2011 18:47:28 +0530 From: Thomas Abraham Subject: [PATCH 2/4] ARM: DT: Add a basic dts file for SMDKV310 machine In-reply-to: <1296998250-21856-1-git-send-email-thomas.abraham@linaro.org> To: devicetree-discuss@lists.ozlabs.org Cc: linaro-dev@lists.linaro.org, patches@linaro.org, kgene.kim@samsung.com Message-id: <1296998250-21856-3-git-send-email-thomas.abraham@linaro.org> X-Mailer: git-send-email 1.6.6.rc2 Content-transfer-encoding: 7BIT References: <1296998250-21856-1-git-send-email-thomas.abraham@linaro.org> This patch adds a basic dts file for Samsung's SMDKV310 machine. Signed-off-by: Thomas Abraham --- arch/arm/mach-s5pv310/mach-smdkv310.dts | 38 +++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) create mode 100755 arch/arm/mach-s5pv310/mach-smdkv310.dts diff --git a/arch/arm/mach-s5pv310/mach-smdkv310.dts b/arch/arm/mach-s5pv310/mach-smdkv310.dts new file mode 100755 index 0000000..74d80bf --- /dev/null +++ b/arch/arm/mach-s5pv310/mach-smdkv310.dts @@ -0,0 +1,38 @@ +/dts-v1/; + +/ { + model = "smdkv310"; + compatible = "samsung,smdkv310"; + #address-cells = <1>; + #size-cells = <1>; + + memory { + device_type = "memory"; + reg = <0x40000000 0x08000000>; + }; + + chosen { + bootargs = "root=/dev/ram0 rw ramdisk=8192 initrd=0x41000000,8M console=ttySAC1,115200 init=/linuxrc"; + }; + + soc { + #address-cells = <1>; + #size-cells = <1>; + compatible = "simple-bus"; + ranges = <0x00000000 0x00000000 0xFFFFFFFF>; + + GIC:gic@0x10500000 { + #interrupt-cells = <1>; + interrupt-controller; + reg = <0x10500000 0x1000>; + compatible = "arm,gic"; + }; + + watchdog@0x10060000 { + reg = <0x10060000 0x400>; + interrupts = <552>; + interrupt-parent = <&GIC>; + compatible = "samsung,s3c2410-wdt"; + }; + }; +};