From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Dominik Kobinski <dominikkobinski314@gmail.com>
Cc: agross@kernel.org, lgirdwood@gmail.com, broonie@kernel.org,
linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
Subject: Re: [PATCH 4/4] regulator: qcom_spmi: Add pm8226 regulators
Date: Tue, 23 Nov 2021 19:17:58 -0800 [thread overview]
Message-ID: <YZ2u5hHmiNOyuGtr@ripper> (raw)
In-Reply-To: <20211123181119.2897-1-dominikkobinski314@gmail.com>
On Tue 23 Nov 10:11 PST 2021, Dominik Kobinski wrote:
> The PM8226 PMIC is very often seen on
> MSM8x26 boards.
The appropriate width of a commit message is 72 chars, so there's no
need to break this line.
>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Regards,
Bjorn
> Suggested-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
> Signed-off-by: Dominik Kobinski <dominikkobinski314@gmail.com>
> ---
> drivers/regulator/qcom_spmi-regulator.c | 39 +++++++++++++++++++++++++
> 1 file changed, 39 insertions(+)
>
> diff --git a/drivers/regulator/qcom_spmi-regulator.c b/drivers/regulator/qcom_spmi-regulator.c
> index 41424a3366d0..02bfce981150 100644
> --- a/drivers/regulator/qcom_spmi-regulator.c
> +++ b/drivers/regulator/qcom_spmi-regulator.c
> @@ -1895,6 +1895,44 @@ static const struct spmi_regulator_data pm8941_regulators[] = {
> { }
> };
>
> +static const struct spmi_regulator_data pm8226_regulators[] = {
> + { "s1", 0x1400, "vdd_s1", },
> + { "s2", 0x1700, "vdd_s2", },
> + { "s3", 0x1a00, "vdd_s3", },
> + { "s4", 0x1d00, "vdd_s4", },
> + { "s5", 0x2000, "vdd_s5", },
> + { "l1", 0x4000, "vdd_l1_l2_l4_l5", },
> + { "l2", 0x4100, "vdd_l1_l2_l4_l5", },
> + { "l3", 0x4200, "vdd_l3_l24_l26", },
> + { "l4", 0x4300, "vdd_l1_l2_l4_l5", },
> + { "l5", 0x4400, "vdd_l1_l2_l4_l5", },
> + { "l6", 0x4500, "vdd_l6_l7_l8_l9_l27", },
> + { "l7", 0x4600, "vdd_l6_l7_l8_l9_l27", },
> + { "l8", 0x4700, "vdd_l6_l7_l8_l9_l27", },
> + { "l9", 0x4800, "vdd_l6_l7_l8_l9_l27", },
> + { "l10", 0x4900, "vdd_l10_l11_l13", },
> + { "l11", 0x4a00, "vdd_l10_l11_l13", },
> + { "l12", 0x4b00, "vdd_l12_l14", },
> + { "l13", 0x4c00, "vdd_l10_l11_l13", },
> + { "l14", 0x4d00, "vdd_l12_l14", },
> + { "l15", 0x4e00, "vdd_l15_l16_l17_l18", },
> + { "l16", 0x4f00, "vdd_l15_l16_l17_l18", },
> + { "l17", 0x5000, "vdd_l15_l16_l17_l18", },
> + { "l18", 0x5100, "vdd_l15_l16_l17_l18", },
> + { "l19", 0x5200, "vdd_l19_l20_l21_l22_l23_l28", },
> + { "l20", 0x5300, "vdd_l19_l20_l21_l22_l23_l28", },
> + { "l21", 0x5400, "vdd_l19_l20_l21_l22_l23_l28", },
> + { "l22", 0x5500, "vdd_l19_l20_l21_l22_l23_l28", },
> + { "l23", 0x5600, "vdd_l19_l20_l21_l22_l23_l28", },
> + { "l24", 0x5700, "vdd_l3_l24_l26", },
> + { "l25", 0x5800, "vdd_l25", },
> + { "l26", 0x5900, "vdd_l3_l24_l26", },
> + { "l27", 0x5a00, "vdd_l6_l7_l8_l9_l27", },
> + { "l28", 0x5b00, "vdd_l19_l20_l21_l22_l23_l28", },
> + { "lvs1", 0x8000, "vdd_lvs1", },
> + { }
> +};
> +
> static const struct spmi_regulator_data pm8841_regulators[] = {
> { "s1", 0x1400, "vdd_s1", },
> { "s2", 0x1700, "vdd_s2", NULL, 0x1c08 },
> @@ -2095,6 +2133,7 @@ static const struct spmi_regulator_data pms405_regulators[] = {
> static const struct of_device_id qcom_spmi_regulator_match[] = {
> { .compatible = "qcom,pm8004-regulators", .data = &pm8004_regulators },
> { .compatible = "qcom,pm8005-regulators", .data = &pm8005_regulators },
> + { .compatible = "qcom,pm8226-regulators", .data = &pm8226_regulators },
> { .compatible = "qcom,pm8841-regulators", .data = &pm8841_regulators },
> { .compatible = "qcom,pm8916-regulators", .data = &pm8916_regulators },
> { .compatible = "qcom,pm8941-regulators", .data = &pm8941_regulators },
> --
> 2.34.0
>
next prev parent reply other threads:[~2021-11-24 3:16 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-23 17:41 [PATCH 1/4] pinctrl: qcom: spmi-gpio: Add pm8226 compatibility Dominik Kobinski
2021-11-23 18:02 ` [PATCH 2/4] dt-bindings: pinctrl: qcom: pmic-gpio: Document pm8226 compatible Dominik Kobinski
2021-11-23 18:08 ` [PATCH 3/4] dt-bindings: regulator: qcom: spmi-regulator: " Dominik Kobinski
2021-11-23 18:11 ` [PATCH 4/4] regulator: qcom_spmi: Add pm8226 regulators Dominik Kobinski
2021-11-24 3:17 ` Bjorn Andersson [this message]
2021-11-24 3:13 ` [PATCH 1/4] pinctrl: qcom: spmi-gpio: Add pm8226 compatibility Bjorn Andersson
2021-11-27 1:30 ` (subset) " Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YZ2u5hHmiNOyuGtr@ripper \
--to=bjorn.andersson@linaro.org \
--cc=agross@kernel.org \
--cc=broonie@kernel.org \
--cc=dominikkobinski314@gmail.com \
--cc=ivo.ivanov.ivanov1@gmail.com \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox