mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 14:13:39 +00:00

Add LDOA2 regulator from MP5496 to support SDCC voltage scaling. Suggested-by: Robert Marko <robimarko@gmail.com> Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn> Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> Link: https://lore.kernel.org/r/20250210070122.208842-6-amadeus@jmu.edu.cn Signed-off-by: Bjorn Andersson <andersson@kernel.org>
45 lines
752 B
Plaintext
45 lines
752 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
|
|
/*
|
|
* ipq6018-mp5496.dtsi describes common properties (e.g. regulators) that
|
|
* apply to most devices that make use of the IPQ6018 SoC and MP5496 PMIC.
|
|
*/
|
|
|
|
#include "ipq6018.dtsi"
|
|
|
|
&cpu0 {
|
|
cpu-supply = <&mp5496_s2>;
|
|
};
|
|
|
|
&cpu1 {
|
|
cpu-supply = <&mp5496_s2>;
|
|
};
|
|
|
|
&cpu2 {
|
|
cpu-supply = <&mp5496_s2>;
|
|
};
|
|
|
|
&cpu3 {
|
|
cpu-supply = <&mp5496_s2>;
|
|
};
|
|
|
|
&rpm_requests {
|
|
regulators {
|
|
compatible = "qcom,rpm-mp5496-regulators";
|
|
|
|
mp5496_s2: s2 {
|
|
regulator-min-microvolt = <725000>;
|
|
regulator-max-microvolt = <1062500>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
mp5496_l2: l2 {
|
|
regulator-min-microvolt = <1800000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&sdhc {
|
|
vqmmc-supply = <&mp5496_l2>;
|
|
};
|