From patchwork Sat Nov 29 20:14:10 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steffen Trumtrar X-Patchwork-Id: 5407041 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 9AE929F301 for ; Sat, 29 Nov 2014 20:18:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DCB582016C for ; Sat, 29 Nov 2014 20:18:11 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 0D18020131 for ; Sat, 29 Nov 2014 20:18:11 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1XuoQ6-0003WA-3e; Sat, 29 Nov 2014 20:15:06 +0000 Received: from metis.ext.pengutronix.de ([2001:6f8:1178:4:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1XuoPu-0003Bs-6h for linux-arm-kernel@lists.infradead.org; Sat, 29 Nov 2014 20:14:55 +0000 Received: from dude.hi.pengutronix.de ([2001:67c:670:100:1d::7]) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1XuoPX-0007Vl-7h; Sat, 29 Nov 2014 21:14:31 +0100 Received: from str by dude.hi.pengutronix.de with local (Exim 4.84) (envelope-from ) id 1XuoPS-0003jP-W4; Sat, 29 Nov 2014 21:14:26 +0100 From: Steffen Trumtrar To: linux-arm-kernel@lists.infradead.org Subject: [PATCH v3 1/3] Documentation: dt: add Altera L3 NIC bindings Date: Sat, 29 Nov 2014 21:14:10 +0100 Message-Id: <1417292052-12974-2-git-send-email-s.trumtrar@pengutronix.de> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1417292052-12974-1-git-send-email-s.trumtrar@pengutronix.de> References: <1417292052-12974-1-git-send-email-s.trumtrar@pengutronix.de> X-SA-Exim-Connect-IP: 2001:67c:670:100:1d::7 X-SA-Exim-Mail-From: str@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-arm-kernel@lists.infradead.org X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20141129_121454_484788_1B3838CF X-CRM114-Status: GOOD ( 10.77 ) X-Spam-Score: -0.0 (/) Cc: Mark Rutland , Pawel Moll , Ian Campbell , Rob Herring , Kumar Gala , Dinh Nguyen , Steffen Trumtrar X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Documentation for the Altera L3 networked interconnect found on the SoCFPGA architecture. Signed-off-by: Steffen Trumtrar --- .../devicetree/bindings/soc/socfpga/altr,l3-nic.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Documentation/devicetree/bindings/soc/socfpga/altr,l3-nic.txt diff --git a/Documentation/devicetree/bindings/soc/socfpga/altr,l3-nic.txt b/Documentation/devicetree/bindings/soc/socfpga/altr,l3-nic.txt new file mode 100644 index 000000000000..d9491f14eed3 --- /dev/null +++ b/Documentation/devicetree/bindings/soc/socfpga/altr,l3-nic.txt @@ -0,0 +1,15 @@ +Altera SOCFPGA L3 Network Interconnect +-------------------------------------- + +The L3 NIC provides access to Global Programmer View (GPV) registers for all +AXI slaves and masters on the SoC. + +Required properties: +- compatible : "altr,l3-nic" +- reg : Should contain 1 register range (address and length) + +Example: + gpv@ff800000 { + compatible = "altr,l3-nic"; + reg = <0xff800000 0x100000>; + };