Skip to content

Commit 5b30cb2

Browse files
stephan-ghbroonie
authored andcommitted
regulator: qcom_spmi: Add PM8019 regulators
Add the necessary definitions for the PM8019 PMIC to the qcom_spmi-regulator driver to allow reading the actual voltages applied to the hardware at runtime. This is mainly intended for debugging since the regulators are usually controlled through the RPM firmware (via qcom_smd-regulator). Signed-off-by: Stephan Gerhold <stephan@gerhold.net> Link: https://lore.kernel.org/r/20230912-spmi-pm8909-v1-4-ba4b3bfaf87d@gerhold.net Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 350aab7 commit 5b30cb2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

drivers/regulator/qcom_spmi-regulator.c

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2118,6 +2118,28 @@ static const struct spmi_regulator_data pm8005_regulators[] = {
21182118
{ }
21192119
};
21202120

2121+
static const struct spmi_regulator_data pm8019_regulators[] = {
2122+
{ "s1", 0x1400, "vdd_s1", },
2123+
{ "s2", 0x1700, "vdd_s2", },
2124+
{ "s3", 0x1a00, "vdd_s3", },
2125+
{ "s4", 0x1d00, "vdd_s4", },
2126+
{ "l1", 0x4000, "vdd_l1", },
2127+
{ "l2", 0x4100, "vdd_l2_l3", },
2128+
{ "l3", 0x4200, "vdd_l2_l3", },
2129+
{ "l4", 0x4300, "vdd_l4_l5_l6", },
2130+
{ "l5", 0x4400, "vdd_l4_l5_l6", },
2131+
{ "l6", 0x4500, "vdd_l4_l5_l6", },
2132+
{ "l7", 0x4600, "vdd_l7_l8_l11", },
2133+
{ "l8", 0x4700, "vdd_l7_l8_l11", },
2134+
{ "l9", 0x4800, "vdd_l9", },
2135+
{ "l10", 0x4900, "vdd_l10", },
2136+
{ "l11", 0x4a00, "vdd_l7_l8_l11", },
2137+
{ "l12", 0x4b00, "vdd_l12", },
2138+
{ "l13", 0x4c00, "vdd_l13_l14", },
2139+
{ "l14", 0x4d00, "vdd_l13_l14", },
2140+
{ }
2141+
};
2142+
21212143
static const struct spmi_regulator_data pm8226_regulators[] = {
21222144
{ "s1", 0x1400, "vdd_s1", },
21232145
{ "s2", 0x1700, "vdd_s2", },
@@ -2378,6 +2400,7 @@ static const struct of_device_id qcom_spmi_regulator_match[] = {
23782400
{ .compatible = "qcom,pm660l-regulators", .data = &pm660l_regulators },
23792401
{ .compatible = "qcom,pm8004-regulators", .data = &pm8004_regulators },
23802402
{ .compatible = "qcom,pm8005-regulators", .data = &pm8005_regulators },
2403+
{ .compatible = "qcom,pm8019-regulators", .data = &pm8019_regulators },
23812404
{ .compatible = "qcom,pm8226-regulators", .data = &pm8226_regulators },
23822405
{ .compatible = "qcom,pm8841-regulators", .data = &pm8841_regulators },
23832406
{ .compatible = "qcom,pm8909-regulators", .data = &pm8909_regulators },

0 commit comments

Comments
 (0)