From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755216Ab3KZKUW (ORCPT ); Tue, 26 Nov 2013 05:20:22 -0500 Received: from bear.ext.ti.com ([192.94.94.41]:59273 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752983Ab3KZKUT (ORCPT ); Tue, 26 Nov 2013 05:20:19 -0500 Message-ID: <529475B2.9070202@ti.com> Date: Tue, 26 Nov 2013 15:49:30 +0530 From: Kishon Vijay Abraham I User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: Matt Porter , Felipe Balbi , Greg Kroah-Hartman , Rob Herring , Pawel Moll , Mark Rutland , Kumar Gala , Ian Campbell , Christian Daudt , Paul Zimmerman CC: Tomasz Figa , Kamil Debski , Kyungmin Park , Linux USB List , Linux ARM Kernel List , Linux Kernel Mailing List , Devicetree List , Linaro Patches Subject: Re: [PATCH v3 2/9] staging: dwc2: update DT binding to add generic clock/phy properties References: <1385403367-18144-1-git-send-email-matt.porter@linaro.org> <1385403367-18144-3-git-send-email-matt.porter@linaro.org> In-Reply-To: <1385403367-18144-3-git-send-email-matt.porter@linaro.org> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Monday 25 November 2013 11:46 PM, Matt Porter wrote: > dwc2/s3c-hsotg require a single clock to be specified and optionally > a generic phy. On the s3c-hsotg driver old style USB phy support is > present as a fallback so the generic phy properties are optional. > > Signed-off-by: Matt Porter > --- > Documentation/devicetree/bindings/staging/dwc2.txt | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/Documentation/devicetree/bindings/staging/dwc2.txt b/Documentation/devicetree/bindings/staging/dwc2.txt > index 1a1b7cf..b8b42b6 100644 > --- a/Documentation/devicetree/bindings/staging/dwc2.txt > +++ b/Documentation/devicetree/bindings/staging/dwc2.txt > @@ -5,6 +5,12 @@ Required properties: > - compatible : "snps,dwc2" > - reg : Should contain 1 register range (address and length) > - interrupts : Should contain 1 interrupt > +- clocks: clock provider specifier > +- clock-names: shall be "otg" > +- phys: phy provider specifier > +- phy-names: shall be "device" lets mention in the Documentation too that the phy properties are optional. apart from that.. Acked-by: Kishon Vijay Abraham I > +Refer to clk/clock-bindings.txt for generic clock consumer properties > +Refer to phy/phy-bindings.txt for generic phy consumer properties > > Example: > > @@ -12,4 +18,8 @@ Example: > compatible = "ralink,rt3050-usb, snps,dwc2"; > reg = <0x101c0000 40000>; > interrupts = <18>; > + clocks = <&usb_otg_ahb_clk>; > + clock-names = "otg"; > + phys = <&usbphy>; > + phy-names = "device"; > }; >