From patchwork Wed Feb 27 20:34:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 2194541 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 73116DF2F2 for ; Wed, 27 Feb 2013 19:36:30 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UAmlP-0006kg-9O; Wed, 27 Feb 2013 19:34:03 +0000 Received: from mail-la0-x22b.google.com ([2a00:1450:4010:c03::22b]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UAmlL-0006jv-Rl for linux-arm-kernel@lists.infradead.org; Wed, 27 Feb 2013 19:34:00 +0000 Received: by mail-la0-f43.google.com with SMTP id ek20so974992lab.16 for ; Wed, 27 Feb 2013 11:33:57 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:to:subject:cc:from:organization:date:mime-version :content-type:content-transfer-encoding:message-id :x-gm-message-state; bh=xD4m7zotEjV+zhjj2xRUZFIEW5SGy6nYYM6Tm0Oo8mI=; b=fSeOov66heUmUdNUwSOwqDW2NsenyjVo031sO0z+JGZGd74ZWWWP1c7aLvfK/KFcLG pP5/AG938KV2wuCpvh/IwAH0bBvmuEw7nGJ2ZIiydmCquB8cFIH+sZWz/G953EexRe4E Y1HHZ/hxPrcuAxXpHsvYJ5hGN0FviJ8fWGCyJNd75jnxy+dLZSjdskMyMyn9DTuYi0kU WTPzEQnyDMPnpPnhx9tmlHgQyL6gDqAv463mVBJep0cZLb7K0zihM2Rj5Fyh1lpu8Rvp Znpqw7F4taJDD/VYdmn7R2U/uyA21hEu6CaNm3RIYlBW7mDq3WcxGbyZEbMdProQiDxB c1zA== X-Received: by 10.152.46.131 with SMTP id v3mr3015766lam.57.1361993637610; Wed, 27 Feb 2013 11:33:57 -0800 (PST) Received: from wasted.dev.rtsoft.ru (ppp91-79-66-50.pppoe.mtu-net.ru. [91.79.66.50]) by mx.google.com with ESMTPS id e9sm2118244lbz.1.2013.02.27.11.33.55 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 27 Feb 2013 11:33:56 -0800 (PST) To: linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org Subject: [PATCH v4 1/3] ARM: mach-shmobile: r8a7779: SATA DT configuration From: Sergei Shtylyov Organization: Cogent Embedded Date: Wed, 27 Feb 2013 23:34:36 +0300 MIME-Version: 1.0 Message-Id: <201302272334.36679.sergei.shtylyov@cogentembedded.com> X-Gm-Message-State: ALoCoQmCROAUFkl2xpBck8vVlrZHZNaH0jGRv/OmN0xCIx2nyCHZK7SahHQXXThR886LEwF0fZle X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130227_143400_059001_605D8CA8 X-CRM114-Status: UNSURE ( 8.40 ) X-CRM114-Notice: Please train this message. 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 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: vladimir.barinov@cogentembedded.com, linux-sh@vger.kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Vladimir Barinov Allow configuration of the r8a7779 SoC SATA controller using a flattened device tree. Signed-off-by: Vladimir Barinov Signed-off-by: Sergei Shtylyov --- Changes since v3: - refreshed against the recent 'next' branch. Changes since v1: - removed "0x" from the node name. arch/arm/boot/dts/r8a7779.dtsi | 7 +++++++ 1 file changed, 7 insertions(+) Index: renesas/arch/arm/boot/dts/r8a7779.dtsi =================================================================== --- renesas.orig/arch/arm/boot/dts/r8a7779.dtsi +++ renesas/arch/arm/boot/dts/r8a7779.dtsi @@ -83,4 +83,11 @@ interrupt-parent = <&gic>; interrupts = <0 81 0x4>; }; + + sata: sata@fc600000 { + compatible = "renesas,rcar-sata"; + reg = <0xfc600000 0x2000>; + interrupt-parent = <&gic>; + interrupts = <0 100 0x4>; + }; };