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: 455293 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 07E0F1400B7 for ; Fri, 27 Mar 2015 15:37:49 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750923AbbC0Ehr (ORCPT ); Fri, 27 Mar 2015 00:37:47 -0400 Received: from guitar.tcltek.co.il ([192.115.133.116]:56865 "EHLO mx.tkos.co.il" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750753AbbC0Ehq (ORCPT ); Fri, 27 Mar 2015 00:37:46 -0400 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 Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Baruch Siach 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 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org 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>; + };