From patchwork Wed May 20 02:10:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Rob Herring (Arm)" X-Patchwork-Id: 474125 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 127B2140D47 for ; Wed, 20 May 2015 12:12:31 +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=QEi9x41f; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751261AbbETCM3 (ORCPT ); Tue, 19 May 2015 22:12:29 -0400 Received: from mail-oi0-f45.google.com ([209.85.218.45]:36017 "EHLO mail-oi0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751866AbbETCKP (ORCPT ); Tue, 19 May 2015 22:10:15 -0400 Received: by oihb9 with SMTP id b9so25458407oih.3; Tue, 19 May 2015 19:10:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=hWB3I5n2SAYMXmHnMkNTtpmqe0Z3M4wCDIzh1plkW9Q=; b=QEi9x41faj84WJKxJHSdiUz+OO/ccDpfwZTjfsJ8chkytUgWltExjlqPWEdrou54G0 RoiwSiJPZc6Rc33F9RtSn0Myqop8QNLTV/u6Nu+woa0KqavQEz5fq0WZ4yejnughq9gq DLA8Arj70haJCzEsGR6yRixGfKuFLp7F/RLwAXbht7re8LhT8jjZg/Sy7WSWUonABHar HJfyjbx7RNC28ycaH2f1Vx3c+P5OErRUc8DFFeDenWAgbxX+OqV0t+1TrIQ9Ta1l2Shn ZLQfVqi8hrsKCQKfqzy6si1l1k3EiwaFEZrHZZvHxhAy1Ex7LvLn1d7//hVJD7dbtgdz T0Mg== X-Received: by 10.60.35.42 with SMTP id e10mr26525829oej.26.1432087814655; Tue, 19 May 2015 19:10:14 -0700 (PDT) Received: from rob-hp-laptop.herring.priv (72-48-98-129.dyn.grandenetworks.net. [72.48.98.129]) by mx.google.com with ESMTPSA id z19sm9286313obp.17.2015.05.19.19.10.13 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 19 May 2015 19:10:14 -0700 (PDT) From: Rob Herring To: Greg Kroah-Hartman , Peter Chen , Kishon Vijay Abraham I Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Arnd Bergmann , Alan Stern , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala Subject: [PATCH v2 1/6] dt-bindings: Add Marvell PXA1928 USB and HSIC PHY bindings Date: Tue, 19 May 2015 21:10:00 -0500 Message-Id: <1432087805-16671-2-git-send-email-robh@kernel.org> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1432087805-16671-1-git-send-email-robh@kernel.org> References: <1432087805-16671-1-git-send-email-robh@kernel.org> Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add PHY binding for Marvell PXA1928 SOC's USB and HSIC PHYs. Signed-off-by: Rob Herring Cc: Pawel Moll Cc: Mark Rutland Cc: Ian Campbell Cc: Kumar Gala Cc: devicetree@vger.kernel.org --- .../devicetree/bindings/phy/pxa1928-usb-phy.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Documentation/devicetree/bindings/phy/pxa1928-usb-phy.txt diff --git a/Documentation/devicetree/bindings/phy/pxa1928-usb-phy.txt b/Documentation/devicetree/bindings/phy/pxa1928-usb-phy.txt new file mode 100644 index 0000000..660a13c --- /dev/null +++ b/Documentation/devicetree/bindings/phy/pxa1928-usb-phy.txt @@ -0,0 +1,18 @@ +* Marvell PXA1928 USB and HSIC PHYs + +Required properties: +- compatible: "marvell,pxa1928-usb-phy" or "marvell,pxa1928-hsic-phy" +- reg: base address and length of the registers +- clocks - A single clock. From common clock binding. +- #phys-cells: should be 0. From commmon phy binding. +- resets: reference to the reset controller + +Example: + + usbphy: phy@7000 { + compatible = "marvell,pxa1928-usb-phy"; + reg = <0x7000 0xe0>; + clocks = <&apmu_clocks PXA1928_CLK_USB>; + #phy-cells = <0>; + }; +