From patchwork Fri Mar 27 04:36:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 6103431 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E8E9BBF910 for ; Fri, 27 Mar 2015 04:41:57 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1CC662043C for ; Fri, 27 Mar 2015 04:41:57 +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 3C4E820439 for ; Fri, 27 Mar 2015 04:41:56 +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 1YbM2D-0000xx-CG; Fri, 27 Mar 2015 04:38:17 +0000 Received: from guitar.tcltek.co.il ([192.115.133.116] helo=mx.tkos.co.il) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YbM25-0000qQ-G8 for linux-arm-kernel@lists.infradead.org; Fri, 27 Mar 2015 04:38:11 +0000 Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPSA id D3B27440063; Fri, 27 Mar 2015 07:37:43 +0300 (IDT) From: Baruch Siach To: Kishon Vijay Abraham I Subject: [PATCH 1/2] phy: dt-binding: document Conexant Digicolor USB PHY Date: Fri, 27 Mar 2015 07:36:28 +0300 Message-Id: <6284a7672647d46100281959552f9787f98bb552.1427430989.git.baruch@tkos.co.il> X-Mailer: git-send-email 2.1.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150326_213809_798303_800812B2 X-CRM114-Status: UNSURE ( 8.60 ) X-CRM114-Notice: Please train this message. X-Spam-Score: 0.0 (/) Cc: devicetree@vger.kernel.org, Baruch Siach , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org 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=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, 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 Add a device tree binding documentation to the USB PHY hardware block on the Conexant CX92755 SoC. The CX92755 is one of the Digicolor SoCs series. Other SoCs in that series may share the same hardware block. Signed-off-by: Baruch Siach --- .../devicetree/bindings/phy/digicolor-usb-phy.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Documentation/devicetree/bindings/phy/digicolor-usb-phy.txt diff --git a/Documentation/devicetree/bindings/phy/digicolor-usb-phy.txt b/Documentation/devicetree/bindings/phy/digicolor-usb-phy.txt new file mode 100644 index 000000000000..089f218c59c9 --- /dev/null +++ b/Documentation/devicetree/bindings/phy/digicolor-usb-phy.txt @@ -0,0 +1,15 @@ +Conexant Digicolor USB2 PHY + +Required properties: + - compatible: cnxt,cx92755-usbphy + - reg: offset and length of the PHY registers + - #phy-cells: must be 0 +Refer to phy-bindings.txt for the generic PHY binding properties + +Example: + + usb_phy0: usb-phy@f0084000 { + compatible = "cnxt,cx92755-usbphy"; + reg = <0xf0084000 0x100>; + #phy-cells = <0>; + };