From patchwork Thu Oct 31 11:03:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Valentine Barshak X-Patchwork-Id: 287458 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 0CE812C009F for ; Thu, 31 Oct 2013 22:03:25 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753958Ab3JaLDX (ORCPT ); Thu, 31 Oct 2013 07:03:23 -0400 Received: from mail-lb0-f182.google.com ([209.85.217.182]:38098 "EHLO mail-lb0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753819Ab3JaLDV (ORCPT ); Thu, 31 Oct 2013 07:03:21 -0400 Received: by mail-lb0-f182.google.com with SMTP id w6so2205225lbh.41 for ; Thu, 31 Oct 2013 04:03:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=CaDh04xbmuNTHbKk5VwUXUordxOPhTbff6eGRWIj7P4=; b=aWuu68d+nOJ4X548HlglqO83v4CgH8YGjibkpxJwoiIgnJf5OhL82ZNjSfvpTgt2HR bXryIR6gEMYpd1voDb0E5fsnEfda7HMd3MuY0Fmn8PblTQDvZH6JtmPalUh7N+eeB/Rk 5eE+4Q2ARmDF0UU5cdZli6EeBbMQlVJVRLeplqBMwhH+CKKDbgfg+p3sU415yt7YNj7F kgH/Y1Njt1Z2DVcZ2OwFF24ztQgJnIwOTI8ZfWFOE68igRmY68wX5EwB6VG94vq3Jnoj OYx7ce7S9jdmS/ityZegooGhydSL3nQPWAmk/GT11VR1wGQUD8C1km9YMX/NUhBrQFaK uuYg== X-Gm-Message-State: ALoCoQl2LPOs5fHaiPpOi+I0rd0dVAFBYI4o/jzsSjq7Fz91CYaj41F/c6c4T9wzIXiD7N4JyPYe X-Received: by 10.152.5.69 with SMTP id q5mr767235laq.46.1383217400396; Thu, 31 Oct 2013 04:03:20 -0700 (PDT) Received: from black.localnet ([93.100.122.208]) by mx.google.com with ESMTPSA id o1sm2719423lah.8.2013.10.31.04.03.19 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 31 Oct 2013 04:03:19 -0700 (PDT) From: Valentine Barshak To: linux-sh@vger.kernel.org, linux-ide@vger.kernel.org, devicetree@vger.kernel.org Cc: Simon Horman , Magnus Damm , Kuninori Morimoto , Laurent Pinchart , Guennadi Liakhovetski , Kumar Gala , Tejun Heo , Vladimir Barinov , Sergei Shtylyov , Mark Rutland Subject: [PATCH 2/2] dt: Document sata_rcar bindings Date: Thu, 31 Oct 2013 15:03:14 +0400 Message-Id: <1383217394-18582-3-git-send-email-valentine.barshak@cogentembedded.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1383217394-18582-1-git-send-email-valentine.barshak@cogentembedded.com> References: <1383217394-18582-1-git-send-email-valentine.barshak@cogentembedded.com> Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org These bindings can be used to register SATA devices found on R-Car SoC. Signed-off-by: Valentine Barshak Acked-by: Kumar Gala --- Documentation/devicetree/bindings/ata/sata_rcar.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Documentation/devicetree/bindings/ata/sata_rcar.txt diff --git a/Documentation/devicetree/bindings/ata/sata_rcar.txt b/Documentation/devicetree/bindings/ata/sata_rcar.txt new file mode 100644 index 0000000..d6b20a6 --- /dev/null +++ b/Documentation/devicetree/bindings/ata/sata_rcar.txt @@ -0,0 +1,18 @@ +* Renesas R-Car SATA + +Required properties: +- compatible : should contain one of the following: + - "renesas,sata-r8a7779" for R-Car H1 + - "renesas,sata-r8a7790" for R-Car H2 + - "renesas,sata-r8a7791" for R-Car M2 +- reg : offset and length of the SATA registers; +- interrupts : must consist of one interrupt specifier. + +Example: + +sata: sata@fc600000 { + compatible = "renesas,sata-r8a7779"; + reg = <0xfc600000 0x2000>; + interrupt-parent = <&gic>; + interrupts = <0 100 0x4>; +};