The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: David Collins <quic_collinsd@quicinc.com>
To: <quic_fenglinw@quicinc.com>, Andy Gross <agross@kernel.org>,
	"Bjorn Andersson" <andersson@kernel.org>,
	Konrad Dybcio <konrad.dybcio@linaro.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>,
	"Rob Herring" <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>, <kernel@quicinc.com>
Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
	<linux-arm-msm@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<devicetree@vger.kernel.org>, <quic_subbaram@quicinc.com>,
	<quic_jprakash@quicinc.com>
Subject: Re: [PATCH 1/4] regulator: qcom-rpmh: extend to support multiple linear voltage ranges
Date: Mon, 11 Dec 2023 18:44:22 -0800	[thread overview]
Message-ID: <cd104cd4-de02-d7ae-13e2-5d45dad5bd49@quicinc.com> (raw)
In-Reply-To: <20231211-pm8010-regulator-v1-1-571e05fb4ecc@quicinc.com>

On 12/10/23 19:16, Fenglin Wu via B4 Relay wrote:
> From: Fenglin Wu <quic_fenglinw@quicinc.com>
> 
> Update rpmh_vreg_hw_data to support multiple linear voltage ranges for
> potential regulators which have discrete voltage program ranges.
> 
> Suggested-by: David Collins <quic_collinsd@quicinc.com>
> Signed-off-by: Fenglin Wu <quic_fenglinw@quicinc.com>

Reviewed-by: David Collins <quic_collinsd@quicinc.com>


> ---
>  drivers/regulator/qcom-rpmh-regulator.c | 115 ++++++++++++++++++++++++--------
>  1 file changed, 89 insertions(+), 26 deletions(-)
> 
> diff --git a/drivers/regulator/qcom-rpmh-regulator.c b/drivers/regulator/qcom-rpmh-regulator.c
> index cf502eec0915..43b45feb02e6 100644
> --- a/drivers/regulator/qcom-rpmh-regulator.c
> +++ b/drivers/regulator/qcom-rpmh-regulator.c
> @@ -1,5 +1,6 @@
>  // SPDX-License-Identifier: GPL-2.0
>  // Copyright (c) 2018-2021, The Linux Foundation. All rights reserved.
> +// Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
>  
>  #define pr_fmt(fmt) "%s: " fmt, __func__
>  
> @@ -68,10 +69,11 @@ enum rpmh_regulator_type {
>   * @regulator_type:		RPMh accelerator type used to manage this
>   *				regulator
>   * @ops:			Pointer to regulator ops callback structure
> - * @voltage_range:		The single range of voltages supported by this
> - *				PMIC regulator type
> + * @voltage_ranges:		The possible ranges of voltages supported by this
> + * 				PMIC regulator type
> + * @n_linear_ranges:		Number of entries in voltage_ranges
>   * @n_voltages:			The number of unique voltage set points defined
> - *				by voltage_range
> + *				by voltage_ranges
>   * @hpm_min_load_uA:		Minimum load current in microamps that requires
>   *				high power mode (HPM) operation.  This is used
>   *				for LDO hardware type regulators only.
> @@ -85,7 +87,8 @@ enum rpmh_regulator_type {
>  struct rpmh_vreg_hw_data {
>  	enum rpmh_regulator_type		regulator_type;
>  	const struct regulator_ops		*ops;
> -	const struct linear_range	voltage_range;
> +	const struct linear_range		*voltage_ranges;
> +	int					n_linear_ranges;
>  	int					n_voltages;
>  	int					hpm_min_load_uA;
>  	const int				*pmic_mode_map;
> @@ -449,8 +452,8 @@ static int rpmh_regulator_init_vreg(struct rpmh_vreg *vreg, struct device *dev,
>  	vreg->mode = REGULATOR_MODE_INVALID;
>  
>  	if (rpmh_data->hw_data->n_voltages) {
> -		vreg->rdesc.linear_ranges = &rpmh_data->hw_data->voltage_range;
> -		vreg->rdesc.n_linear_ranges = 1;
> +		vreg->rdesc.linear_ranges = rpmh_data->hw_data->voltage_ranges;
> +		vreg->rdesc.n_linear_ranges = rpmh_data->hw_data->n_linear_ranges;
>  		vreg->rdesc.n_voltages = rpmh_data->hw_data->n_voltages;
>  	}
>  
> @@ -613,7 +616,10 @@ static unsigned int rpmh_regulator_pmic4_bob_of_map_mode(unsigned int rpmh_mode)
>  static const struct rpmh_vreg_hw_data pmic4_pldo = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_drms_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(1664000, 0, 255, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(1664000, 0, 255, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 256,
>  	.hpm_min_load_uA = 10000,
>  	.pmic_mode_map = pmic_mode_map_pmic4_ldo,
> @@ -623,7 +629,10 @@ static const struct rpmh_vreg_hw_data pmic4_pldo = {
>  static const struct rpmh_vreg_hw_data pmic4_pldo_lv = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_drms_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(1256000, 0, 127, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +	       REGULATOR_LINEAR_RANGE(1256000, 0, 127, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 128,
>  	.hpm_min_load_uA = 10000,
>  	.pmic_mode_map = pmic_mode_map_pmic4_ldo,
> @@ -633,7 +642,10 @@ static const struct rpmh_vreg_hw_data pmic4_pldo_lv = {
>  static const struct rpmh_vreg_hw_data pmic4_nldo = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_drms_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(312000, 0, 127, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(312000, 0, 127, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 128,
>  	.hpm_min_load_uA = 30000,
>  	.pmic_mode_map = pmic_mode_map_pmic4_ldo,
> @@ -643,7 +655,10 @@ static const struct rpmh_vreg_hw_data pmic4_nldo = {
>  static const struct rpmh_vreg_hw_data pmic4_hfsmps3 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(320000, 0, 215, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(320000, 0, 215, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 216,
>  	.pmic_mode_map = pmic_mode_map_pmic4_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -652,7 +667,10 @@ static const struct rpmh_vreg_hw_data pmic4_hfsmps3 = {
>  static const struct rpmh_vreg_hw_data pmic4_ftsmps426 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(320000, 0, 258, 4000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(320000, 0, 258, 4000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 259,
>  	.pmic_mode_map = pmic_mode_map_pmic4_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -661,7 +679,10 @@ static const struct rpmh_vreg_hw_data pmic4_ftsmps426 = {
>  static const struct rpmh_vreg_hw_data pmic4_bob = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_bypass_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(1824000, 0, 83, 32000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(1824000, 0, 83, 32000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 84,
>  	.pmic_mode_map = pmic_mode_map_pmic4_bob,
>  	.of_map_mode = rpmh_regulator_pmic4_bob_of_map_mode,
> @@ -676,7 +697,10 @@ static const struct rpmh_vreg_hw_data pmic4_lvs = {
>  static const struct rpmh_vreg_hw_data pmic5_pldo = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_drms_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(1504000, 0, 255, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(1504000, 0, 255, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 256,
>  	.hpm_min_load_uA = 10000,
>  	.pmic_mode_map = pmic_mode_map_pmic5_ldo,
> @@ -686,7 +710,10 @@ static const struct rpmh_vreg_hw_data pmic5_pldo = {
>  static const struct rpmh_vreg_hw_data pmic5_pldo_lv = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_drms_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(1504000, 0, 62, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(1504000, 0, 62, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 63,
>  	.hpm_min_load_uA = 10000,
>  	.pmic_mode_map = pmic_mode_map_pmic5_ldo,
> @@ -696,7 +723,10 @@ static const struct rpmh_vreg_hw_data pmic5_pldo_lv = {
>  static const struct rpmh_vreg_hw_data pmic5_pldo515_mv = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_drms_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(1800000, 0, 187, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(1800000, 0, 187, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 188,
>  	.hpm_min_load_uA = 10000,
>  	.pmic_mode_map = pmic_mode_map_pmic5_ldo,
> @@ -706,7 +736,10 @@ static const struct rpmh_vreg_hw_data pmic5_pldo515_mv = {
>  static const struct rpmh_vreg_hw_data pmic5_nldo = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_drms_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(320000, 0, 123, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(320000, 0, 123, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 124,
>  	.hpm_min_load_uA = 30000,
>  	.pmic_mode_map = pmic_mode_map_pmic5_ldo,
> @@ -716,7 +749,10 @@ static const struct rpmh_vreg_hw_data pmic5_nldo = {
>  static const struct rpmh_vreg_hw_data pmic5_nldo515 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_drms_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(320000, 0, 210, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(320000, 0, 210, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 211,
>  	.hpm_min_load_uA = 30000,
>  	.pmic_mode_map = pmic_mode_map_pmic5_ldo,
> @@ -726,7 +762,10 @@ static const struct rpmh_vreg_hw_data pmic5_nldo515 = {
>  static const struct rpmh_vreg_hw_data pmic5_hfsmps510 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(320000, 0, 215, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(320000, 0, 215, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 216,
>  	.pmic_mode_map = pmic_mode_map_pmic5_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -735,7 +774,10 @@ static const struct rpmh_vreg_hw_data pmic5_hfsmps510 = {
>  static const struct rpmh_vreg_hw_data pmic5_ftsmps510 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(300000, 0, 263, 4000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(300000, 0, 263, 4000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 264,
>  	.pmic_mode_map = pmic_mode_map_pmic5_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -744,7 +786,10 @@ static const struct rpmh_vreg_hw_data pmic5_ftsmps510 = {
>  static const struct rpmh_vreg_hw_data pmic5_ftsmps520 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(300000, 0, 263, 4000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(300000, 0, 263, 4000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 264,
>  	.pmic_mode_map = pmic_mode_map_pmic5_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -753,7 +798,10 @@ static const struct rpmh_vreg_hw_data pmic5_ftsmps520 = {
>  static const struct rpmh_vreg_hw_data pmic5_ftsmps525_lv = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(300000, 0, 267, 4000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(300000, 0, 267, 4000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 268,
>  	.pmic_mode_map = pmic_mode_map_pmic5_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -762,7 +810,10 @@ static const struct rpmh_vreg_hw_data pmic5_ftsmps525_lv = {
>  static const struct rpmh_vreg_hw_data pmic5_ftsmps525_mv = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(600000, 0, 267, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(600000, 0, 267, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 268,
>  	.pmic_mode_map = pmic_mode_map_pmic5_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -771,7 +822,10 @@ static const struct rpmh_vreg_hw_data pmic5_ftsmps525_mv = {
>  static const struct rpmh_vreg_hw_data pmic5_ftsmps527 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(320000, 0, 215, 8000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(320000, 0, 215, 8000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 215,
>  	.pmic_mode_map = pmic_mode_map_pmic5_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -780,7 +834,10 @@ static const struct rpmh_vreg_hw_data pmic5_ftsmps527 = {
>  static const struct rpmh_vreg_hw_data pmic5_hfsmps515 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(320000, 0, 235, 16000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(320000, 0, 235, 16000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 236,
>  	.pmic_mode_map = pmic_mode_map_pmic5_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -789,7 +846,10 @@ static const struct rpmh_vreg_hw_data pmic5_hfsmps515 = {
>  static const struct rpmh_vreg_hw_data pmic5_hfsmps515_1 = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(900000, 0, 4, 16000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(900000, 0, 4, 16000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 5,
>  	.pmic_mode_map = pmic_mode_map_pmic5_smps,
>  	.of_map_mode = rpmh_regulator_pmic4_smps_of_map_mode,
> @@ -798,7 +858,10 @@ static const struct rpmh_vreg_hw_data pmic5_hfsmps515_1 = {
>  static const struct rpmh_vreg_hw_data pmic5_bob = {
>  	.regulator_type = VRM,
>  	.ops = &rpmh_regulator_vrm_bypass_ops,
> -	.voltage_range = REGULATOR_LINEAR_RANGE(3000000, 0, 31, 32000),
> +	.voltage_ranges = (struct linear_range[]) {
> +		REGULATOR_LINEAR_RANGE(3000000, 0, 31, 32000),
> +	},
> +	.n_linear_ranges = 1,
>  	.n_voltages = 32,
>  	.pmic_mode_map = pmic_mode_map_pmic5_bob,
>  	.of_map_mode = rpmh_regulator_pmic4_bob_of_map_mode,
> 


  reply	other threads:[~2023-12-12  2:44 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-11  3:16 [PATCH 0/4] Add pm8010 RPMH regulators for sm8550 boards Fenglin Wu via B4 Relay
2023-12-11  3:16 ` [PATCH 1/4] regulator: qcom-rpmh: extend to support multiple linear voltage ranges Fenglin Wu via B4 Relay
2023-12-12  2:44   ` David Collins [this message]
2023-12-11  3:17 ` [PATCH 2/4] regulator: qcom,rpmh: add compatible for pm8010 RPMH regultor Fenglin Wu via B4 Relay
2023-12-11  7:58   ` Krzysztof Kozlowski
2023-12-11  3:17 ` [PATCH 3/4] regulator: qcom-rpmh: add support for pm8010 regulators Fenglin Wu via B4 Relay
2023-12-12  2:44   ` David Collins
2023-12-11  3:17 ` [PATCH 4/4] arm64: dts: qcom: Add pm8010 regulators for sm8550 boards Fenglin Wu via B4 Relay
2023-12-11  9:29   ` Konrad Dybcio

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=cd104cd4-de02-d7ae-13e2-5d45dad5bd49@quicinc.com \
    --to=quic_collinsd@quicinc.com \
    --cc=agross@kernel.org \
    --cc=andersson@kernel.org \
    --cc=broonie@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=kernel@quicinc.com \
    --cc=konrad.dybcio@linaro.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=quic_fenglinw@quicinc.com \
    --cc=quic_jprakash@quicinc.com \
    --cc=quic_subbaram@quicinc.com \
    --cc=robh+dt@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