From patchwork Mon Feb 18 20:30:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 2160101 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 45D8C3FCFC for ; Mon, 18 Feb 2013 19:32:38 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1U7WPu-0005r9-Qf; Mon, 18 Feb 2013 19:30:22 +0000 Received: from mail-lb0-f170.google.com ([209.85.217.170]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1U7WPs-0005qa-8h for linux-arm-kernel@lists.infradead.org; Mon, 18 Feb 2013 19:30:20 +0000 Received: by mail-lb0-f170.google.com with SMTP id ge1so4571659lbb.1 for ; Mon, 18 Feb 2013 11:30:18 -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=YH14Ht8CskHd868hGuxl1bvXUNQGvPYDgCim7+DXLec=; b=Rz68gg6d1i1W70R7z3qtJTm6hZrHEuvaCt5tM9Tki/TefakdPHcceWetVn4i4xY+55 EQxWaIeWKIbxMjowU3Se2fT9X8aIxHmqak3PmQ6BKoXBLSZ+or10oJ7OcTYaja0+FT0D pWaK4JD8CwdlwK7RvwyYOfpmAe7RrnXA1YNPT1SLDObf55hgc2aZlYgYkWAHZGVWpxWN cKdigZFCKkR3egijrX6Av12OPyKW2/Bf/FnGexI8t/CHghbSVT82goS0iA/QJlbxqFRD JDzTAtxsVJdKoPEiXci3UtreFwzJGVGRT1EIhNRVNNljo4yAWsru3sE6O+fcBVZ4jWnO JhCg== X-Received: by 10.112.100.103 with SMTP id ex7mr6081042lbb.80.1361215818089; Mon, 18 Feb 2013 11:30:18 -0800 (PST) Received: from wasted.dev.rtsoft.ru (ppp91-79-66-25.pppoe.mtu-net.ru. [91.79.66.25]) by mx.google.com with ESMTPS id xw14sm20135796lab.6.2013.02.18.11.30.15 (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 18 Feb 2013 11:30:17 -0800 (PST) To: linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org Subject: [PATCH v2 2/4] ARM: mach-shmobile: r8a7779: SATA DT configuration From: Sergei Shtylyov Organization: Cogent Embedded Date: Mon, 18 Feb 2013 23:30:44 +0300 MIME-Version: 1.0 Message-Id: <201302182330.44542.sergei.shtylyov@cogentembedded.com> X-Gm-Message-State: ALoCoQmmsr88XDRVvoxKgDqwjL0degm2GR9B3i13RUgEP4euPN3IfY5ODUGAIoSrS3uzVFje/yTb X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130218_143020_450952_858306A7 X-CRM114-Status: UNSURE ( 8.55 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.217.170 listed in list.dnswl.org] -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.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org 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 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 @@ -92,4 +92,11 @@ interrupts = <0 28 0x4>; reg-io-width = <4>; }; + + sata: sata@fc600000 { + compatible = "renesas,rcar-sata"; + reg = <0xfc600000 0x2000>; + interrupt-parent = <&gic>; + interrupts = <0 100 0x4>; + }; };