Message ID | 1411982100-7964-1-git-send-email-srinivas.kandagatla@linaro.org |
---|---|
State | New |
Headers | show |
On Mon 29 Sep 02:15 PDT 2014, Srinivas Kandagatla wrote: > This patch adds device tree nodes to support two usb hosts on APQ8064 > SOC. > Sorry for not looking at the entire series before answering patch 1. I still think you should add all the regulators in the first patch anyways. > +++ b/arch/arm/boot/dts/qcom-apq8064.dtsi > @@ -263,6 +263,91 @@ > #address-cells = <1>; > #size-cells = <0>; > > + pm8921_s3: pm8921-s3 { > + compatible = "qcom,rpm-pm8921-smps"; > + reg = <QCOM_RPM_PM8921_SMPS3>; > + > + regulator-min-microvolt = <1000000>; > + regulator-max-microvolt = <1400000>; > + qcom,boot-load = <49360>; As it was unclear how to handle load in the driver I dropped boot-load for now. Please leave it out until someone have added it to the driver. > + qcom,switch-mode-frequency = <3200000>; > + regulator-always-on; > + }; > + > + pm8921_l3: pm8921-l3 { > + compatible = "qcom,rpm-pm8921-pldo"; > + reg = <QCOM_RPM_PM8921_LDO3>; > + > + regulator-min-microvolt = <3050000>; > + regulator-max-microvolt = <3300000>; > + regulator-always-on; > + qcom,boot-load = <50000>; Dito > + }; > + > + pm8921_l23: pm8921-l23 { > + compatible = "qcom,rpm-pm8921-pldo"; > + reg = <QCOM_RPM_PM8921_LDO23>; > + > + regulator-min-microvolt = <1000000>; > + regulator-max-microvolt = <1800000>; > + qcom,boot-load = <50000>; Dito > + regulator-always-on; Why are all these "always-on"? > + }; > + > + }; > + > > /* Temporary fixed regulator */ > -- > 1.9.1 > -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 30/09/14 06:17, Bjorn Andersson wrote: > On Mon 29 Sep 02:15 PDT 2014, Srinivas Kandagatla wrote: > >> This patch adds device tree nodes to support two usb hosts on APQ8064 >> SOC. >> + compatible = "qcom,rpm-pm8921-smps"; >> + reg = <QCOM_RPM_PM8921_SMPS3>; >> + >> + regulator-min-microvolt = <1000000>; >> + regulator-max-microvolt = <1400000>; >> + qcom,boot-load = <49360>; > > As it was unclear how to handle load in the driver I dropped boot-load for now. > Please leave it out until someone have added it to the driver. Ok, will drop this in next version. > >> + regulator-always-on; > > Why are all these "always-on"? I added this for a regulator which was shared between hdmi and sata, I think for other regualtors this was just a copy paste error. I will recheck it once again and send a new version. thanks, srini > >> + }; >> + >> + }; >> + >> >> /* Temporary fixed regulator */ >> -- >> 1.9.1 >> -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts index b396c83..d6036b8 100644 --- a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts +++ b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts @@ -40,6 +40,22 @@ }; }; + usb3_phy:phy@12520000 { + status = "ok"; + }; + + usb4_phy:phy@12530000 { + status = "ok"; + }; + + usb3: usb@12520000 { + status = "ok"; + }; + + usb4: usb@12530000 { + status = "ok"; + }; + amba { /* eMMC */ sdcc1: sdcc@12400000 { diff --git a/arch/arm/boot/dts/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom-apq8064.dtsi index 9c2c8e6..491a136 100644 --- a/arch/arm/boot/dts/qcom-apq8064.dtsi +++ b/arch/arm/boot/dts/qcom-apq8064.dtsi @@ -263,6 +263,91 @@ #address-cells = <1>; #size-cells = <0>; + pm8921_s3: pm8921-s3 { + compatible = "qcom,rpm-pm8921-smps"; + reg = <QCOM_RPM_PM8921_SMPS3>; + + regulator-min-microvolt = <1000000>; + regulator-max-microvolt = <1400000>; + qcom,boot-load = <49360>; + qcom,switch-mode-frequency = <3200000>; + regulator-always-on; + }; + + pm8921_l3: pm8921-l3 { + compatible = "qcom,rpm-pm8921-pldo"; + reg = <QCOM_RPM_PM8921_LDO3>; + + regulator-min-microvolt = <3050000>; + regulator-max-microvolt = <3300000>; + regulator-always-on; + qcom,boot-load = <50000>; + }; + + pm8921_l23: pm8921-l23 { + compatible = "qcom,rpm-pm8921-pldo"; + reg = <QCOM_RPM_PM8921_LDO23>; + + regulator-min-microvolt = <1000000>; + regulator-max-microvolt = <1800000>; + qcom,boot-load = <50000>; + regulator-always-on; + }; + + }; + + usb3_phy:phy@12520000 { + compatible = "qcom,usb-otg-ci"; + reg = <0x12520000 0x400>; + interrupts = <0 188 0>; + status = "disabled"; + dr_mode = "host"; + + clocks = <&gcc USB_HS3_XCVR_CLK>, + <&gcc USB_HS3_H_CLK>; + clock-names = "core", "iface"; + + vddcx-supply = <&pm8921_s3>; + v3p3-supply = <&pm8921_l3>; + v1p8-supply = <&pm8921_l23>; + + resets = <&gcc USB_HS3_RESET>; + reset-names = "link"; + }; + + usb4_phy:phy@12530000 { + compatible = "qcom,usb-otg-ci"; + reg = <0x12530000 0x400>; + interrupts = <0 215 0>; + status = "disabled"; + dr_mode = "host"; + + clocks = <&gcc USB_HS4_XCVR_CLK>, + <&gcc USB_HS4_H_CLK>; + clock-names = "core", "iface"; + + vddcx-supply = <&pm8921_s3>; + v3p3-supply = <&pm8921_l3>; + v1p8-supply = <&pm8921_l23>; + + resets = <&gcc USB_HS4_RESET>; + reset-names = "link"; + }; + + usb3: usb@12520000 { + compatible = "qcom,ehci-host"; + reg = <0x12520000 0x400>; + interrupts = <0 188 0>; + status = "disabled"; + usb-phy = <&usb3_phy>; + }; + + usb4: usb@12530000 { + compatible = "qcom,ehci-host"; + reg = <0x12530000 0x400>; + interrupts = <0 215 0>; + status = "disabled"; + usb-phy = <&usb4_phy>; }; /* Temporary fixed regulator */
This patch adds device tree nodes to support two usb hosts on APQ8064 SOC. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> --- arch/arm/boot/dts/qcom-apq8064-ifc6410.dts | 16 ++++++ arch/arm/boot/dts/qcom-apq8064.dtsi | 85 ++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+)