From patchwork Thu May 14 10:10:57 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joachim Eastwood X-Patchwork-Id: 472292 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id F289F140284 for ; Thu, 14 May 2015 20:11:51 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=IrbC3GnM; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932885AbbENKLr (ORCPT ); Thu, 14 May 2015 06:11:47 -0400 Received: from mail-la0-f51.google.com ([209.85.215.51]:33415 "EHLO mail-la0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932490AbbENKLm (ORCPT ); Thu, 14 May 2015 06:11:42 -0400 Received: by layy10 with SMTP id y10so60495843lay.0 for ; Thu, 14 May 2015 03:11:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=vZrUFHiNklNRTO122cEPoMe2FFWuKCBiELlurVvRNW8=; b=IrbC3GnMAeTwUdW6ey986+XvstDba9kDo6y56MF5fkTvXa7CMtciPyRZfEnRdDSmei oKGvcY+tKn2IGs3mJYBS9PRoQbE63QoCtdNfhsbhXMowWjWoUIPE0jgVsKgMAzLhNb1A 2hcrmFQV2ghJlJLa+6kDnQGuQKLvOpIE3yeSjvJOsxS/x1qekpMlwtywq5L9Sd/nECz9 N2wmqMxED3XT1LcT9GKDyJUBF8EQoHBcT9X7AAje5ecNtS5cNpM4MA/jnyjbqunq2SFX ctuUhRoqDN0IOcW6vYNXASs+szu2qMRXBD5eBsJ1du7tXiDf6gCRonfb/sPLriUJ9gtr d3DQ== X-Received: by 10.153.7.104 with SMTP id db8mr2639109lad.124.1431598301055; Thu, 14 May 2015 03:11:41 -0700 (PDT) Received: from localhost.localdomain (183.90-149-48.nextgentel.com. [90.149.48.183]) by mx.google.com with ESMTPSA id m8sm5978270lbs.17.2015.05.14.03.11.40 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 14 May 2015 03:11:40 -0700 (PDT) From: Joachim Eastwood To: arnd@arndb.de, peppe.cavallaro@st.com Cc: Joachim Eastwood , netdev@vger.kernel.org, davem@davemloft.net, linux-arm-kernel@lists.infradead.org Subject: [PATCH net-next 02/11] doc: dt: add documentation for nxp, lpc1850-dwmac Date: Thu, 14 May 2015 12:10:57 +0200 Message-Id: <1431598266-25736-3-git-send-email-manabian@gmail.com> X-Mailer: git-send-email 1.8.0 In-Reply-To: <1431598266-25736-1-git-send-email-manabian@gmail.com> References: <1431598266-25736-1-git-send-email-manabian@gmail.com> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Add device tree binding documentation for nxp,lpc1850-dwmac. Signed-off-by: Joachim Eastwood --- .../devicetree/bindings/net/nxp,lpc1850-dwmac.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Documentation/devicetree/bindings/net/nxp,lpc1850-dwmac.txt diff --git a/Documentation/devicetree/bindings/net/nxp,lpc1850-dwmac.txt b/Documentation/devicetree/bindings/net/nxp,lpc1850-dwmac.txt new file mode 100644 index 000000000000..7edba1264f6f --- /dev/null +++ b/Documentation/devicetree/bindings/net/nxp,lpc1850-dwmac.txt @@ -0,0 +1,20 @@ +* NXP LPC1850 GMAC ethernet controller + +This device is a platform glue layer for stmmac. +Please see stmmac.txt for the other unchanged properties. + +Required properties: + - compatible: Should contain "nxp,lpc1850-dwmac" + +Examples: + +mac: ethernet@40010000 { + compatible = "nxp,lpc1850-dwmac", "snps,dwmac-3.611", "snps,dwmac"; + reg = <0x40010000 0x2000>; + interrupts = <5>; + interrupt-names = "macirq"; + clocks = <&ccu1 CLK_CPU_ETHERNET>; + clock-names = "stmmaceth"; + resets = <&rgu 22>; + reset-names = "stmmaceth"; +}