Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f220250 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: dts: msm: Add UFS support for SA8155"

parents 6da33421 24f8b6eb
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>

&ufsphy_mem {
	compatible = "qcom,ufs-phy-qmp-v4";

	vdda-pll-supply = <&pm8150_2_l8>;
	vdda-phy-max-microamp = <87100>;
	vdda-pll-max-microamp = <18300>;

	status = "ok";
};

&ufshc_mem {
	vdd-hba-supply = <&ufs_phy_gdsc>;
	vdd-hba-fixed-regulator;
	vcc-supply = <&pm8150_1_l10>;
	vcc-voltage-level = <2950000 2960000>;
	vccq2-supply = <&pm8150_1_s4>;
	vcc-max-microamp = <750000>;
	vccq2-max-microamp = <750000>;

	qcom,vddp-ref-clk-supply = <&pm8150_2_l5>;
	qcom,vddp-ref-clk-max-microamp = <100>;

	status = "ok";
};
+1 −0
Original line number Diff line number Diff line
@@ -344,6 +344,7 @@
	rpmh-regulator-gfxlvl {
		compatible = "qcom,rpmh-arc-regulator";
		qcom,resource-name = "gfx.lvl";
		VDD_GFX_LEVEL:
		S3C_LEVEL: pm8150_2_s3_level: regulator-pm8150-2-s3-level {
			regulator-name = "pm8150_2_s3_level";
			qcom,set = <RPMH_REGULATOR_SET_ALL>;
+20 −0
Original line number Diff line number Diff line
@@ -7,3 +7,23 @@
	qcom,msm-name = "SA8155 V1";
	qcom,msm-id = <362 0x10000>;
};

&scc {
	compatible = "qcom,sa8155-scc", "syscon";
};

&gcc {
	compatible = "qcom,sa8155-gcc", "syscon";
};

&videocc {
	compatible = "qcom,sa8155-videocc", "syscon";
};

&npucc {
	compatible = "qcom,sa8155-npucc", "syscon";
};

&camcc {
	compatible = "qcom,sa8155-camcc", "syscon";
};
+20 −0
Original line number Diff line number Diff line
@@ -6,3 +6,23 @@
	qcom,msm-name = "SA8155 V2";
	qcom,msm-id = <362 0x20000>;
};

&scc {
	compatible = "qcom,sa8155-scc-v2", "syscon";
};

&gcc {
	compatible = "qcom,sa8155-gcc-v2", "syscon";
};

&videocc {
	compatible = "qcom,sa8155-videocc-v2", "syscon";
};

&npucc {
	compatible = "qcom,sa8155-npucc-v2", "syscon";
};

&camcc {
	compatible = "qcom,sa8155-camcc-v2", "syscon";
};
+17 −0
Original line number Diff line number Diff line
@@ -55,3 +55,20 @@

/* Add regulator nodes specific to SA8155 */
#include "sa8155-regulator.dtsi"

&gpucc {
	compatible = "qcom,sa8155-gpucc", "syscon";
};

&scc {
	vdd_scc_cx-supply = <&VDD_CX_LEVEL>;
	status = "ok";
};

&gpu_gx_gdsc {
	parent-supply = <&VDD_GFX_LEVEL>;
};

&ufsphy_mem {
	vdda-phy-supply = <&pm8150_2_l18>;
};
Loading