ipq807x: add Qualcomm Atheros IPQ807x target
[openwrt/staging/nbd.git] / target / linux / ipq807x / patches-5.15 / 0063-v6.0-regulator-qcom_spmi-add-support-for-PMP8074-regulato.patch
1 From 3e3da8da25f81fa3f0f3a37f60d10b17d1166864 Mon Sep 17 00:00:00 2001
2 From: Robert Marko <robimarko@gmail.com>
3 Date: Mon, 4 Jul 2022 23:23:57 +0200
4 Subject: [PATCH] regulator: qcom_spmi: add support for PMP8074 regulators
5
6 PMP8074 is a companion PMIC for the Qualcomm IPQ8074 WiSoC-s.
7
8 It features 5 HF-SMPS and 13 LDO regulators.
9
10 HF-SMPS regulators are Buck HFS430 regulators.
11 L1, L2 and L3 are HT_N1200_ST subtype LDO regulators.
12 L4 is HT_N300_ST subtype LDO regulator.
13 L5 and L6 are HT_P600 subtype LDO regulators.
14 L7, L11, L12 and L13 are HT_P150 subtype LDO regulators.
15 L10 is HT_P50 subtype LDO regulator.
16
17 This commit adds support for all of the buck regulators and LDO-s except
18 for L10 as I dont have documentation on its output voltage range.
19
20 S3 is the CPU cluster voltage supply, S4 supplies the UBI32 NPU cores
21 and L11 is the SDIO/eMMC I/O voltage regulator required for high speeds.
22
23 Signed-off-by: Robert Marko <robimarko@gmail.com>
24 Link: https://lore.kernel.org/r/20220704212402.1715182-7-robimarko@gmail.com
25 Signed-off-by: Mark Brown <broonie@kernel.org>
26 ---
27 drivers/regulator/qcom_spmi-regulator.c | 23 +++++++++++++++++++++++
28 1 file changed, 23 insertions(+)
29
30 --- a/drivers/regulator/qcom_spmi-regulator.c
31 +++ b/drivers/regulator/qcom_spmi-regulator.c
32 @@ -2101,6 +2101,28 @@ static const struct spmi_regulator_data
33 { }
34 };
35
36 +static const struct spmi_regulator_data pmp8074_regulators[] = {
37 + { "s1", 0x1400, "vdd_s1"},
38 + { "s2", 0x1700, "vdd_s2"},
39 + { "s3", 0x1a00, "vdd_s3"},
40 + { "s4", 0x1d00, "vdd_s4"},
41 + { "s5", 0x2000, "vdd_s5"},
42 + { "l1", 0x4000, "vdd_l1_l2"},
43 + { "l2", 0x4100, "vdd_l1_l2"},
44 + { "l3", 0x4200, "vdd_l3_l8"},
45 + { "l4", 0x4300, "vdd_l4"},
46 + { "l5", 0x4400, "vdd_l5_l6_l15"},
47 + { "l6", 0x4500, "vdd_l5_l6_l15"},
48 + { "l7", 0x4600, "vdd_l7"},
49 + { "l8", 0x4700, "vdd_l3_l8"},
50 + { "l9", 0x4800, "vdd_l9"},
51 + /* l10 is currently unsupported HT_P50 */
52 + { "l11", 0x4a00, "vdd_l10_l11_l12_l13"},
53 + { "l12", 0x4b00, "vdd_l10_l11_l12_l13"},
54 + { "l13", 0x4c00, "vdd_l10_l11_l12_l13"},
55 + { }
56 +};
57 +
58 static const struct spmi_regulator_data pms405_regulators[] = {
59 { "s3", 0x1a00, "vdd_s3"},
60 { }
61 @@ -2117,6 +2139,7 @@ static const struct of_device_id qcom_sp
62 { .compatible = "qcom,pmi8994-regulators", .data = &pmi8994_regulators },
63 { .compatible = "qcom,pm660-regulators", .data = &pm660_regulators },
64 { .compatible = "qcom,pm660l-regulators", .data = &pm660l_regulators },
65 + { .compatible = "qcom,pmp8074-regulators", .data = &pmp8074_regulators },
66 { .compatible = "qcom,pms405-regulators", .data = &pms405_regulators },
67 { }
68 };