Commit 87ca44ab authored by Tingguo Cheng's avatar Tingguo Cheng Committed by Bjorn Andersson
Browse files

arm64: dts: qcom: move pon reboot-modes from pm8150.dtsi to board files



Reboot modes were originally managed by PMIC pon driver on mobile/IoT
platforms, such as sm8150,sm8250,qdu1000... But recently, QCS615 is
going to adopt PSCI to manage linux reboot modes, which involves firm
wares to co-work with. In this case, reboot-modes should be removed
from pon dts node to avoid conflicting. This implies that reboot modes
go with devices rather than PMICs as well.

Signed-off-by: default avatarTingguo Cheng <quic_tingguoc@quicinc.com>
Reviewed-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://lore.kernel.org/r/20241202-adds-spmi-pmic-peripherals-for-qcs615-v6-2-bdd306b4940d@quicinc.com


Signed-off-by: default avatarBjorn Andersson <andersson@kernel.org>
parent 27554e2b
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -49,8 +49,6 @@ pm8150_0: pmic@0 {
		pon: pon@800 {
			compatible = "qcom,pm8998-pon";
			reg = <0x0800>;
			mode-bootloader = <0x2>;
			mode-recovery = <0x1>;

			pon_pwrkey: pwrkey {
				compatible = "qcom,pm8941-pwrkey";
+5 −0
Original line number Diff line number Diff line
@@ -239,6 +239,11 @@ vreg_l18a_1p2: ldo18 {
	};
};

&pon {
	mode-bootloader = <0x2>;
	mode-recovery = <0x1>;
};

&qup_i2c1_data_clk {
	drive-strength = <2>;
	bias-pull-up;
+5 −0
Original line number Diff line number Diff line
@@ -964,6 +964,11 @@ led@3 {
	};
};

&pon {
	mode-bootloader = <0x2>;
	mode-recovery = <0x1>;
};

&pon_pwrkey {
	status = "okay";
};
+5 −0
Original line number Diff line number Diff line
@@ -239,6 +239,11 @@ vreg_l18a_1p2: ldo18 {
	};
};

&pon {
	mode-bootloader = <0x2>;
	mode-recovery = <0x1>;
};

&qup_i2c1_data_clk {
	drive-strength = <2>;
	bias-pull-up;
+5 −0
Original line number Diff line number Diff line
@@ -578,6 +578,11 @@ pm8150b_typec_sbu_out: endpoint {
	};
};

&pon {
	mode-bootloader = <0x2>;
	mode-recovery = <0x1>;
};

&pon_pwrkey {
	status = "okay";
};
Loading