From patchwork Mon Jun 11 19:58:36 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Avi Fishman X-Patchwork-Id: 927890 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 414P7N3Sxgz9rxs for ; Tue, 12 Jun 2018 06:02:24 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=gmail.com Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 414P7N1jzrzF3dW for ; Tue, 12 Jun 2018 06:02:24 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=fail (p=none dis=none) header.from=gmail.com X-Original-To: openbmc@lists.ozlabs.org Delivered-To: openbmc@lists.ozlabs.org Authentication-Results: lists.ozlabs.org; spf=none (mailfrom) smtp.mailfrom=nuvoton.com (client-ip=212.199.177.27; helo=herzl.nuvoton.co.il; envelope-from=avi.fishman@nuvoton.com; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=fail (p=none dis=none) header.from=gmail.com Received: from herzl.nuvoton.co.il (212.199.177.27.static.012.net.il [212.199.177.27]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 414P6P2VSzzF3cJ for ; Tue, 12 Jun 2018 06:01:32 +1000 (AEST) Received: from taln60.nuvoton.co.il (ntil-fw [212.199.177.25]) by herzl.nuvoton.co.il (8.13.8/8.13.8) with ESMTP id w5BJwgmt007862; Mon, 11 Jun 2018 22:58:43 +0300 Received: by taln60.nuvoton.co.il (Postfix, from userid 8441) id A948E62E50; Mon, 11 Jun 2018 22:58:42 +0300 (IDT) From: avifishman70@gmail.com To: gregkh@linuxfoundation.org, stern@rowland.harvard.edu Subject: [PATCH v5 2/3] dt-bindings: usb: new ehci-npcm7xx dt Date: Mon, 11 Jun 2018 22:58:36 +0300 Message-Id: <20180611195837.251551-3-avifishman70@gmail.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20180611195837.251551-1-avifishman70@gmail.com> References: <20180611195837.251551-1-avifishman70@gmail.com> X-BeenThere: openbmc@lists.ozlabs.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Development list for OpenBMC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: kstewart@linuxfoundation.org, mark.rutland@arm.com, tmaimon77@gmail.com, tony@atomide.com, jhogan@kernel.org, brendanhiggins@google.com, bjorn.andersson@linaro.org, albeu@free.fr, digetx@gmail.com, openbmc@lists.ozlabs.org, elder@linaro.org, chunfeng.yun@mediatek.com, devicetree@vger.kernel.org, hdegoede@redhat.com, robh+dt@kernel.org, mathias.nyman@linux.intel.com, Avi Fishman , venture@google.com, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, baolu.lu@linux.intel.com Errors-To: openbmc-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "openbmc" From: Avi Fishman Device Tree documentation for Nuvoton npcm7xx EHCI. Signed-off-by: Avi Fishman Reviewed-by: Rob Herring --- Documentation/devicetree/bindings/usb/npcm7xx-usb.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Documentation/devicetree/bindings/usb/npcm7xx-usb.txt diff --git a/Documentation/devicetree/bindings/usb/npcm7xx-usb.txt b/Documentation/devicetree/bindings/usb/npcm7xx-usb.txt new file mode 100644 index 000000000000..b682bec103f9 --- /dev/null +++ b/Documentation/devicetree/bindings/usb/npcm7xx-usb.txt @@ -0,0 +1,17 @@ +Nuvoton NPCM7XX SoC USB controllers: +----------------------------- + +EHCI: +----- + +Required properties: +- compatible: "nuvoton,npcm750-ehci" +- interrupts: Should contain the EHCI interrupt + +Example: + + ehci1: usb@f0806000 { + compatible = "nuvoton,npcm750-ehci"; + reg = <0xf0806000 0x1000>; + interrupts = <0 61 4>; + };