From patchwork Thu Feb 14 03:51:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vikas C Sajjan X-Patchwork-Id: 14784 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 CDAF823E2E for ; Thu, 14 Feb 2013 03:51:23 +0000 (UTC) Received: from mail-vb0-f51.google.com (mail-vb0-f51.google.com [209.85.212.51]) by fiordland.canonical.com (Postfix) with ESMTP id 82BC5A1850B for ; Thu, 14 Feb 2013 03:51:23 +0000 (UTC) Received: by mail-vb0-f51.google.com with SMTP id fq11so1194473vbb.38 for ; Wed, 13 Feb 2013 19:51:23 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:subject:date:message-id:x-mailer :in-reply-to:references:x-gm-message-state; bh=g2GXta6Ef9QqmIL/suSmf8EL2XepwuC8CRAlv64DQZ4=; b=mav8nPi5fPP41fftxKf358LaWkAJ7LSla/Qf9twcDFPrbY5+iobF8J+xxs5uK3DhYp G3buxI82DFL4GN2NN6SAjM3yeHvCt0URSC3lrZ2Rurjqd/1kuZ9CRvK9xyL2S6wPaoum nlM7qb/QqD6WR8gCIXJn+mtI55AOSShnsNGjMYbSg5oi4N0FsO7+LjkFL3w5RvubXoi+ iAvrVcz279MW2NPVfcA3lA91lKu9jz7U65ZYP9i+Tvpb41FB4UMtmtB/mzu9fsY345G1 fBnrVUagFF3m33gLxnNHiAvvjwShW/trpEit65zdtevxYyeXYmjWveiNOPZsXrk5UeXW sokw== X-Received: by 10.52.38.163 with SMTP id h3mr28625808vdk.35.1360813883002; Wed, 13 Feb 2013 19:51:23 -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.221.4.5 with SMTP id oa5csp237035vcb; Wed, 13 Feb 2013 19:51:22 -0800 (PST) X-Received: by 10.50.214.68 with SMTP id ny4mr16316664igc.65.1360813882418; Wed, 13 Feb 2013 19:51:22 -0800 (PST) Received: from mail-da0-f50.google.com (mail-da0-f50.google.com [209.85.210.50]) by mx.google.com with ESMTPS id cf3si17019926igb.36.2013.02.13.19.51.22 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 13 Feb 2013 19:51:22 -0800 (PST) Received-SPF: neutral (google.com: 209.85.210.50 is neither permitted nor denied by best guess record for domain of vikas.sajjan@linaro.org) client-ip=209.85.210.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.50 is neither permitted nor denied by best guess record for domain of vikas.sajjan@linaro.org) smtp.mail=vikas.sajjan@linaro.org Received: by mail-da0-f50.google.com with SMTP id h15so872110dan.37 for ; Wed, 13 Feb 2013 19:51:21 -0800 (PST) X-Received: by 10.66.84.232 with SMTP id c8mr37094paz.8.1360813881598; Wed, 13 Feb 2013 19:51:21 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id t6sm88453703paz.11.2013.02.13.19.51.18 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 13 Feb 2013 19:51:20 -0800 (PST) From: Vikas Sajjan To: patches@linaro.org Subject: [PATCH v3 1/5] ARM: dts: Add FIMD node to exynos4 Date: Thu, 14 Feb 2013 09:21:05 +0530 Message-Id: <1360813869-7200-2-git-send-email-vikas.sajjan@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1360813869-7200-1-git-send-email-vikas.sajjan@linaro.org> References: <1360813869-7200-1-git-send-email-vikas.sajjan@linaro.org> X-Gm-Message-State: ALoCoQltneZgLUGNw3KLfhOPl5WQ2E6rN3wBnWCyH/+tCEr8hw9xTZnQnBYk1tcSqEYW6goDKEVe This adds common FIMD device node for all Exynos4 SoCs. Signed-off-by: Vikas Sajjan --- arch/arm/boot/dts/exynos4.dtsi | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi index e1347fc..57744d6 100644 --- a/arch/arm/boot/dts/exynos4.dtsi +++ b/arch/arm/boot/dts/exynos4.dtsi @@ -289,4 +289,11 @@ interrupts = <0 34 0>; }; }; + + fimd: fimd@11c00000 { + compatible = "samsung,exynos4-fimd"; + interrupt-parent = <&combiner>; + reg = <0x11c00000 0x20000>; + interrupts = <11 1>, <11 0>, <11 2>; + }; };