All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tushar Behera <tushar.behera@linaro.org>
To: Vivek Gautam <gautam.vivek@samsung.com>,
	linux-usb@vger.kernel.org, linux-samsung-soc@vger.kernel.org,
	devicetree@vger.kernel.org
Cc: kgene.kim@samsung.com, gregkh@linuxfoundation.org,
	t.figa@samsung.com, jg1.han@samsung.com,
	linux-kernel@vger.kernel.org, balbi@ti.com, robh+dt@kernel.org,
	olof@lixom.net, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v5 1/9] dt: exynos5420: Enable support for USB 3.0 PHY controller
Date: Fri, 25 Apr 2014 11:57:05 +0530	[thread overview]
Message-ID: <535A0039.3040307@linaro.org> (raw)
In-Reply-To: <1398263451-18023-2-git-send-email-gautam.vivek@samsung.com>

On 04/23/2014 08:00 PM, Vivek Gautam wrote:
> Add device tree nodes for USB 3.0 PHY present alongwith
> USB 3.0 controller Exynos 5420 SoC. This phy driver is
> based on generic phy framework.
> 
> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
> ---
>  arch/arm/boot/dts/exynos5420.dtsi |   20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
> index c3a9a66..f69745f 100644
> --- a/arch/arm/boot/dts/exynos5420.dtsi
> +++ b/arch/arm/boot/dts/exynos5420.dtsi
> @@ -732,4 +732,24 @@
>  		clock-names = "secss";
>  		samsung,power-domain = <&g2d_pd>;
>  	};
> +
> +	usbdrd_phy0: phy@12100000 {
> +		compatible = "samsung,exynos5420-usbdrd-phy";
> +		reg = <0x12100000 0x100>;
> +		clocks = <&clock CLK_USBD300>, <&clock CLK_SCLK_USBPHY300>;
> +		clock-names = "phy", "ref";
> +		samsung,pmu-syscon = <&pmu_system_controller>;

Should the property name be samsung,syscon-phandle as used elsewhere?

samsung,syscon-phandle = <&pmu_system_controller>;

> +		samsung,pmu-offset = <0x704>;
> +		#phy-cells = <1>;
> +	};
> +
> +	usbdrd_phy1: phy@12500000 {
> +		compatible = "samsung,exynos5420-usbdrd-phy";
> +		reg = <0x12500000 0x100>;
> +		clocks = <&clock CLK_USBD301>, <&clock CLK_SCLK_USBPHY301>;
> +		clock-names = "phy", "ref";
> +		samsung,pmu-syscon = <&pmu_system_controller>;

ditto

> +		samsung,pmu-offset = <0x708>;
> +		#phy-cells = <1>;
> +	};
>  };
> 


-- 
Tushar Behera

WARNING: multiple messages have this Message-ID (diff)
From: tushar.behera@linaro.org (Tushar Behera)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 1/9] dt: exynos5420: Enable support for USB 3.0 PHY controller
Date: Fri, 25 Apr 2014 11:57:05 +0530	[thread overview]
Message-ID: <535A0039.3040307@linaro.org> (raw)
In-Reply-To: <1398263451-18023-2-git-send-email-gautam.vivek@samsung.com>

On 04/23/2014 08:00 PM, Vivek Gautam wrote:
> Add device tree nodes for USB 3.0 PHY present alongwith
> USB 3.0 controller Exynos 5420 SoC. This phy driver is
> based on generic phy framework.
> 
> Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
> ---
>  arch/arm/boot/dts/exynos5420.dtsi |   20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi
> index c3a9a66..f69745f 100644
> --- a/arch/arm/boot/dts/exynos5420.dtsi
> +++ b/arch/arm/boot/dts/exynos5420.dtsi
> @@ -732,4 +732,24 @@
>  		clock-names = "secss";
>  		samsung,power-domain = <&g2d_pd>;
>  	};
> +
> +	usbdrd_phy0: phy at 12100000 {
> +		compatible = "samsung,exynos5420-usbdrd-phy";
> +		reg = <0x12100000 0x100>;
> +		clocks = <&clock CLK_USBD300>, <&clock CLK_SCLK_USBPHY300>;
> +		clock-names = "phy", "ref";
> +		samsung,pmu-syscon = <&pmu_system_controller>;

Should the property name be samsung,syscon-phandle as used elsewhere?

samsung,syscon-phandle = <&pmu_system_controller>;

> +		samsung,pmu-offset = <0x704>;
> +		#phy-cells = <1>;
> +	};
> +
> +	usbdrd_phy1: phy at 12500000 {
> +		compatible = "samsung,exynos5420-usbdrd-phy";
> +		reg = <0x12500000 0x100>;
> +		clocks = <&clock CLK_USBD301>, <&clock CLK_SCLK_USBPHY301>;
> +		clock-names = "phy", "ref";
> +		samsung,pmu-syscon = <&pmu_system_controller>;

ditto

> +		samsung,pmu-offset = <0x708>;
> +		#phy-cells = <1>;
> +	};
>  };
> 


-- 
Tushar Behera

  reply	other threads:[~2014-04-25  6:27 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-23 14:30 [PATCH 0/9] Enable USB 3.0 support on Exynos5 systems Vivek Gautam
2014-04-23 14:30 ` Vivek Gautam
2014-04-23 14:30 ` [PATCH v5 1/9] dt: exynos5420: Enable support for USB 3.0 PHY controller Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-25  6:27   ` Tushar Behera [this message]
2014-04-25  6:27     ` Tushar Behera
2014-04-23 14:30 ` [PATCH v5 2/9] dt: exynos5420: Enable support for DWC3 controller Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-23 14:30 ` [PATCH v5 3/9] dt: exynos5250: Enable support for generic USB DRD phy Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-25  6:31   ` Tushar Behera
2014-04-25  6:31     ` Tushar Behera
2014-04-23 14:30 ` [PATCH v5 4/9] dts: exynos5250: Update DWC3 usb controller to use new phy driver Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
     [not found] ` <1398263451-18023-1-git-send-email-gautam.vivek-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-04-23 14:30   ` [PATCH v5 5/9] dts: exynos5250-snow: Add Vbus regulator for USB 3.0 Vivek Gautam
2014-04-23 14:30     ` Vivek Gautam
2014-04-23 14:30     ` Vivek Gautam
2014-04-23 14:30 ` [PATCH v5 6/9] dts: exynos5420-peach-pit: " Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-23 14:30 ` [PATCH v5 7/9] dts: exynos5420-smdk5420: " Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-23 14:30 ` [PATCH v5 8/9] usb-phy: samsung-usb3: Remove older phy-samsung-usb3 driver Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam
2014-04-23 14:30 ` [PATCH v5 9/9] ARM: exynos_defconfig: Remove SAMSUNG_USB3PHY config Vivek Gautam
2014-04-23 14:30   ` Vivek Gautam

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=535A0039.3040307@linaro.org \
    --to=tushar.behera@linaro.org \
    --cc=balbi@ti.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gautam.vivek@samsung.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jg1.han@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=olof@lixom.net \
    --cc=robh+dt@kernel.org \
    --cc=t.figa@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.