devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "André Draszik" <andre.draszik@linaro.org>
To: Lee Jones <lee@kernel.org>
Cc: Tudor Ambarus <tudor.ambarus@linaro.org>,
	Rob Herring <robh@kernel.org>, Conor Dooley <conor+dt@kernel.org>,
	Krzysztof Kozlowski <krzk@kernel.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	 Mark Brown <broonie@kernel.org>,
	Linus Walleij <linus.walleij@linaro.org>,
	Bartosz Golaszewski	 <brgl@bgdev.pl>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Peter Griffin	 <peter.griffin@linaro.org>,
	Will McVicker <willmcvicker@google.com>,
	 kernel-team@android.com, linux-kernel@vger.kernel.org,
	 linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org,
	 linux-gpio@vger.kernel.org
Subject: Re: [PATCH v3 09/20] mfd: sec: Add support for S2MPG11 PMIC via ACPM
Date: Thu, 13 Nov 2025 21:43:29 +0000	[thread overview]
Message-ID: <45ce203c03ec34631a0170baa7e4cf26c98b9cd3.camel@linaro.org> (raw)
In-Reply-To: <20251113162534.GO1949330@google.com>

Hi Lee,

Thanks for your review.

On Thu, 2025-11-13 at 16:25 +0000, Lee Jones wrote:
> Mark, something for you below.
> 
> > Add support for Samsung's S2MPG11 PMIC, which is a Power Management IC
> > for mobile applications with buck converters, various LDOs, power
> > meters, NTC thermistor inputs, and additional GPIO interfaces. It
> > typically complements an S2MPG10 PMIC in a main/sub configuration as
> > the sub-PMIC.
> > 
> > Like S2MPG10, communication is not via I2C, but via the Samsung ACPM
> > firmware.
> > 
> > Also like S2MPG10, the regulator rails will need to be instantiated
> > individually to allow probe to succeed due to rails being used as
> > supplies for S2MPG10, and to avoid supply rails from being disabled
> > unexpectedly due to probe deferral.
> > 
> > Note: The firmware uses the ACPM channel ID and the Speedy channel ID
> > to select the PMIC address. Since these are firmware properties, they
> > can not be retrieved from DT, but instead are deducted from the
> > compatible for now.
> > 
> > Signed-off-by: André Draszik <andre.draszik@linaro.org>
> > 
> > ---
> > Note: checkpatch suggests to update MAINTAINERS, but the new file is
> > covered already due to using a wildcard.
> > 
> > v3:
> > - mention NTC thermistor inputs in commit message
> > - one instance per actual rail, not per rail type (LDO or buck)
> > 
> > v2:
> > - mention GPIOs in commit message
> > ---
> >  drivers/mfd/sec-acpm.c              | 213 +++++++++++++++++-
> >  drivers/mfd/sec-common.c            |  45 +++-
> >  drivers/mfd/sec-irq.c               |  67 +++++-
> >  include/linux/mfd/samsung/core.h    |   1 +
> >  include/linux/mfd/samsung/irq.h     |  99 ++++++++
> >  include/linux/mfd/samsung/s2mpg11.h | 434 ++++++++++++++++++++++++++++++++++++
> >  6 files changed, 848 insertions(+), 11 deletions(-)
> > 
> > diff --git a/drivers/mfd/sec-acpm.c b/drivers/mfd/sec-acpm.c
> > index 8b31c816d65b86c54a108fa994384abfac0e7da4..b44af6f8b1cdfcb75cf9d4c55c9d973a88fd510c 100644
> > --- a/drivers/mfd/sec-acpm.c
> > +++ b/drivers/mfd/sec-acpm.c
> > @@ -13,6 +13,7 @@
> >  #include <linux/mfd/samsung/core.h>
> >  #include <linux/mfd/samsung/rtc.h>
> >  #include <linux/mfd/samsung/s2mpg10.h>
> > +#include <linux/mfd/samsung/s2mpg11.h>
> >  #include <linux/mod_devicetable.h>
> >  #include <linux/module.h>
> >  #include <linux/of.h>
> > @@ -216,6 +217,155 @@ static const struct regmap_config s2mpg10_regmap_config_meter = {
> >  	.cache_type = REGCACHE_FLAT,
> >  };
> >  
> > +static const struct regmap_range s2mpg11_common_registers[] = {
> > +	regmap_reg_range(0x00, 0x02), /* CHIP_ID_S, INT, INT_MASK */
> > +	regmap_reg_range(0x0a, 0x0c), /* Speedy control */
> > +	regmap_reg_range(0x1a, 0x27), /* Debug */
> 
> These numbers are usually defined, and rightfully so.

We already had this discussion when S2MPG10 core support was added, so
I used the same approach again for consistency.

> 
> > +};
> > +
> > +static const struct regmap_range s2mpg11_common_ro_registers[] = {
> > +	regmap_reg_range(0x00, 0x01), /* CHIP_ID_S, INT */
> > +	regmap_reg_range(0x25, 0x27), /* Debug */
> > +};
> > +
> > +static const struct regmap_range s2mpg11_common_nonvolatile_registers[] = {
> > +	regmap_reg_range(0x00, 0x00), /* CHIP_ID_S */
> > +	regmap_reg_range(0x02, 0x02), /* INT_MASK */
> > +	regmap_reg_range(0x0a, 0x0c), /* Speedy control */
> > +};
> > +
> > +static const struct regmap_range s2mpg11_common_precious_registers[] = {
> > +	regmap_reg_range(0x01, 0x01), /* INT */
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_common_wr_table = {
> > +	.yes_ranges = s2mpg11_common_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_common_registers),
> > +	.no_ranges = s2mpg11_common_ro_registers,
> > +	.n_no_ranges = ARRAY_SIZE(s2mpg11_common_ro_registers),
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_common_rd_table = {
> > +	.yes_ranges = s2mpg11_common_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_common_registers),
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_common_volatile_table = {
> > +	.no_ranges = s2mpg11_common_nonvolatile_registers,
> > +	.n_no_ranges = ARRAY_SIZE(s2mpg11_common_nonvolatile_registers),
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_common_precious_table = {
> > +	.yes_ranges = s2mpg11_common_precious_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_common_precious_registers),
> > +};
> > +
> > +static const struct regmap_config s2mpg11_regmap_config_common = {
> > +	.name = "common",
> > +	.reg_bits = ACPM_ADDR_BITS,
> > +	.val_bits = 8,
> > +	.max_register = S2MPG11_COMMON_SPD_DEBUG4,
> > +	.wr_table = &s2mpg11_common_wr_table,
> > +	.rd_table = &s2mpg11_common_rd_table,
> > +	.volatile_table = &s2mpg11_common_volatile_table,
> > +	.precious_table = &s2mpg11_common_precious_table,
> > +	.num_reg_defaults_raw = S2MPG11_COMMON_SPD_DEBUG4 + 1,
> > +	.cache_type = REGCACHE_FLAT,
> > +};
> > +
> > +static const struct regmap_range s2mpg11_pmic_registers[] = {
> > +	regmap_reg_range(0x00, 0x5a), /* All PMIC registers */
> > +	regmap_reg_range(0x5c, 0xb7), /* All PMIC registers */
> > +};
> > +
> > +static const struct regmap_range s2mpg11_pmic_ro_registers[] = {
> > +	regmap_reg_range(0x00, 0x05), /* INTx */
> > +	regmap_reg_range(0x0c, 0x0d), /* STATUS OFFSRC */
> > +	regmap_reg_range(0x98, 0x98), /* GPIO input */
> > +};
> > +
> > +static const struct regmap_range s2mpg11_pmic_nonvolatile_registers[] = {
> > +	regmap_reg_range(0x06, 0x0b), /* INTxM */
> > +};
> > +
> > +static const struct regmap_range s2mpg11_pmic_precious_registers[] = {
> > +	regmap_reg_range(0x00, 0x05), /* INTx */
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_pmic_wr_table = {
> > +	.yes_ranges = s2mpg11_pmic_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_pmic_registers),
> > +	.no_ranges = s2mpg11_pmic_ro_registers,
> > +	.n_no_ranges = ARRAY_SIZE(s2mpg11_pmic_ro_registers),
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_pmic_rd_table = {
> > +	.yes_ranges = s2mpg11_pmic_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_pmic_registers),
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_pmic_volatile_table = {
> > +	.no_ranges = s2mpg11_pmic_nonvolatile_registers,
> > +	.n_no_ranges = ARRAY_SIZE(s2mpg11_pmic_nonvolatile_registers),
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_pmic_precious_table = {
> > +	.yes_ranges = s2mpg11_pmic_precious_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_pmic_precious_registers),
> > +};
> > +
> > +static const struct regmap_config s2mpg11_regmap_config_pmic = {
> > +	.name = "pmic",
> > +	.reg_bits = ACPM_ADDR_BITS,
> > +	.val_bits = 8,
> > +	.max_register = S2MPG11_PMIC_LDO_SENSE2,
> > +	.wr_table = &s2mpg11_pmic_wr_table,
> > +	.rd_table = &s2mpg11_pmic_rd_table,
> > +	.volatile_table = &s2mpg11_pmic_volatile_table,
> > +	.precious_table = &s2mpg11_pmic_precious_table,
> > +	.num_reg_defaults_raw = S2MPG11_PMIC_LDO_SENSE2 + 1,
> > +	.cache_type = REGCACHE_FLAT,
> > +};
> > +
> > +static const struct regmap_range s2mpg11_meter_registers[] = {
> > +	regmap_reg_range(0x00, 0x3e), /* Meter config */
> > +	regmap_reg_range(0x40, 0x8a), /* Meter data */
> > +	regmap_reg_range(0x8d, 0x9c), /* Meter data */
> > +};
> > +
> > +static const struct regmap_range s2mpg11_meter_ro_registers[] = {
> > +	regmap_reg_range(0x40, 0x9c), /* Meter data */
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_meter_wr_table = {
> > +	.yes_ranges = s2mpg11_meter_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_meter_registers),
> > +	.no_ranges = s2mpg11_meter_ro_registers,
> > +	.n_no_ranges = ARRAY_SIZE(s2mpg11_meter_ro_registers),
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_meter_rd_table = {
> > +	.yes_ranges = s2mpg11_meter_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_meter_registers),
> > +};
> > +
> > +static const struct regmap_access_table s2mpg11_meter_volatile_table = {
> > +	.yes_ranges = s2mpg11_meter_ro_registers,
> > +	.n_yes_ranges = ARRAY_SIZE(s2mpg11_meter_ro_registers),
> > +};
> > +
> > +static const struct regmap_config s2mpg11_regmap_config_meter = {
> > +	.name = "meter",
> > +	.reg_bits = ACPM_ADDR_BITS,
> > +	.val_bits = 8,
> > +	.max_register = S2MPG11_METER_LPF_DATA_NTC7_2,
> > +	.wr_table = &s2mpg11_meter_wr_table,
> > +	.rd_table = &s2mpg11_meter_rd_table,
> > +	.volatile_table = &s2mpg11_meter_volatile_table,
> > +	.num_reg_defaults_raw = S2MPG11_METER_LPF_DATA_NTC7_2 + 1,
> > +	.cache_type = REGCACHE_FLAT,
> > +};
> > +
> >  struct sec_pmic_acpm_shared_bus_context {
> >  	const struct acpm_handle *acpm;
> >  	unsigned int acpm_chan_id;
> > @@ -325,16 +475,22 @@ static struct regmap *sec_pmic_acpm_regmap_init(struct device *dev,
> >  	return regmap;
> >  }
> >  
> > -static void sec_pmic_acpm_mask_common_irqs(void *regmap_common)
> > +static void sec_pmic_acpm_mask_common_s2mpg10_irqs(void *regmap_common)
> >  {
> >  	regmap_write(regmap_common, S2MPG10_COMMON_INT_MASK, S2MPG10_COMMON_INT_SRC);
> >  }
> >  
> > +static void sec_pmic_acpm_mask_common_s2mpg11_irqs(void *regmap_common)
> > +{
> > +	regmap_write(regmap_common, S2MPG11_COMMON_INT_MASK, S2MPG11_COMMON_INT_SRC);
> > +}
> > +
> >  static int sec_pmic_acpm_probe(struct platform_device *pdev)
> >  {
> >  	struct regmap *regmap_common, *regmap_pmic, *regmap;
> >  	const struct sec_pmic_acpm_platform_data *pdata;
> >  	struct sec_pmic_acpm_shared_bus_context *shared_ctx;
> > +	void (*masq_irqs_handler)(void *data);
> >  	const struct acpm_handle *acpm;
> >  	struct device *dev = &pdev->dev;
> >  	int ret, irq;
> > @@ -365,7 +521,19 @@ static int sec_pmic_acpm_probe(struct platform_device *pdev)
> >  		return PTR_ERR(regmap_common);
> >  
> >  	/* Mask all interrupts from 'common' block, until successful init */
> > -	ret = regmap_write(regmap_common, S2MPG10_COMMON_INT_MASK, S2MPG10_COMMON_INT_SRC);
> > +	switch (pdata->device_type) {
> > +	case S2MPG10:
> > +		ret = regmap_write(regmap_common, S2MPG10_COMMON_INT_MASK, S2MPG10_COMMON_INT_SRC);
> > +		break;
> > +
> > +	case S2MPG11:
> > +		ret = regmap_write(regmap_common, S2MPG11_COMMON_INT_MASK, S2MPG11_COMMON_INT_SRC);
> > +		break;
> > +
> > +	default:
> > +		return dev_err_probe(dev, -EINVAL, "Unsupported device type %d\n",
> > +				     pdata->device_type);
> > +	}
> >  	if (ret)
> >  		return dev_err_probe(dev, ret, "failed to mask common block interrupts\n");
> >  
> > @@ -374,10 +542,12 @@ static int sec_pmic_acpm_probe(struct platform_device *pdev)
> >  	if (IS_ERR(regmap_pmic))
> >  		return PTR_ERR(regmap_pmic);
> >  
> > -	regmap = sec_pmic_acpm_regmap_init(dev, shared_ctx, SEC_PMIC_ACPM_ACCESSTYPE_RTC,
> > -					   pdata->regmap_cfg_rtc, true);
> > -	if (IS_ERR(regmap))
> > -		return PTR_ERR(regmap);
> > +	if (pdata->regmap_cfg_rtc) {
> > +		regmap = sec_pmic_acpm_regmap_init(dev, shared_ctx, SEC_PMIC_ACPM_ACCESSTYPE_RTC,
> > +						   pdata->regmap_cfg_rtc, true);
> > +		if (IS_ERR(regmap))
> > +			return PTR_ERR(regmap);
> > +	}
> >  
> >  	regmap = sec_pmic_acpm_regmap_init(dev, shared_ctx, SEC_PMIC_ACPM_ACCESSTYPE_METER,
> >  					   pdata->regmap_cfg_meter, true);
> > @@ -392,13 +562,28 @@ static int sec_pmic_acpm_probe(struct platform_device *pdev)
> >  		devm_device_init_wakeup(dev);
> >  
> >  	/* Unmask PMIC interrupt from 'common' block, now that everything is in place. */
> > -	ret = regmap_clear_bits(regmap_common, S2MPG10_COMMON_INT_MASK,
> > -				S2MPG10_COMMON_INT_SRC_PMIC);
> > +	switch (pdata->device_type) {
> > +	case S2MPG10:
> > +		ret = regmap_clear_bits(regmap_common, S2MPG10_COMMON_INT_MASK,
> > +					S2MPG10_COMMON_INT_SRC_PMIC);
> > +		masq_irqs_handler = sec_pmic_acpm_mask_common_s2mpg10_irqs;
> > +		break;
> > +
> > +	case S2MPG11:
> > +		ret = regmap_clear_bits(regmap_common, S2MPG11_COMMON_INT_MASK,
> > +					S2MPG11_COMMON_INT_SRC_PMIC);
> > +		masq_irqs_handler = sec_pmic_acpm_mask_common_s2mpg11_irqs;
> > +		break;
> > +
> > +	default:
> > +		return dev_err_probe(dev, -EINVAL, "Unsupported device type %d\n",
> > +				     pdata->device_type);
> > +	}
> >  	if (ret)
> >  		return dev_err_probe(dev, ret, "failed to unmask PMIC interrupt\n");
> >  
> >  	/* Mask all interrupts from 'common' block on shutdown */
> > -	ret = devm_add_action_or_reset(dev, sec_pmic_acpm_mask_common_irqs, regmap_common);
> > +	ret = devm_add_action_or_reset(dev, masq_irqs_handler, regmap_common);
> >  	if (ret)
> >  		return ret;
> >  
> > @@ -420,8 +605,18 @@ static const struct sec_pmic_acpm_platform_data s2mpg10_data = {
> >  	.regmap_cfg_meter = &s2mpg10_regmap_config_meter,
> >  };
> >  
> > +static const struct sec_pmic_acpm_platform_data s2mpg11_data = {
> > +	.device_type = S2MPG11,
> > +	.acpm_chan_id = 2,
> > +	.speedy_channel = 1,
> > +	.regmap_cfg_common = &s2mpg11_regmap_config_common,
> > +	.regmap_cfg_pmic = &s2mpg11_regmap_config_pmic,
> > +	.regmap_cfg_meter = &s2mpg11_regmap_config_meter,
> > +};
> > +
> >  static const struct of_device_id sec_pmic_acpm_of_match[] = {
> >  	{ .compatible = "samsung,s2mpg10-pmic", .data = &s2mpg10_data, },
> > +	{ .compatible = "samsung,s2mpg11-pmic", .data = &s2mpg11_data, },
> >  	{ },
> >  };
> >  MODULE_DEVICE_TABLE(of, sec_pmic_acpm_of_match);
> > diff --git a/drivers/mfd/sec-common.c b/drivers/mfd/sec-common.c
> > index b722481594801e545d24014af6afd5e1e39d7522..4daa0ece91dc783560dfad499f11193b689c2fd1 100644
> > --- a/drivers/mfd/sec-common.c
> > +++ b/drivers/mfd/sec-common.c
> > @@ -15,6 +15,7 @@
> >  #include <linux/mfd/samsung/core.h>
> >  #include <linux/mfd/samsung/irq.h>
> >  #include <linux/mfd/samsung/s2mpg10.h>
> > +#include <linux/mfd/samsung/s2mpg11.h>
> >  #include <linux/mfd/samsung/s2mps11.h>
> >  #include <linux/mfd/samsung/s2mps13.h>
> >  #include <linux/module.h>
> > @@ -82,6 +83,39 @@ static const struct mfd_cell s2mpg10_devs[] = {
> >  	MFD_CELL_OF("s2mpg10-gpio", NULL, NULL, 0, 0, "samsung,s2mpg10-gpio"),
> >  };
> >  
> > +static const struct mfd_cell s2mpg11_devs[] = {
> > +	MFD_CELL_NAME("s2mpg11-meter"),
> > +	MFD_CELL_BASIC("s2mpg11-regulator", NULL, NULL, 0, S2MPG11_BUCKBOOST),
> 
> This is highly irregular - in that, we've never done this before.
> 
> We're going to need to have Mark look at this.

I did see this in at least one other driver, ah yes at least
drivers/mfd/88pm860x-core.c is doing something similar, maybe others, too
(I stopped there).

Cheers,
Andre'

  reply	other threads:[~2025-11-13 21:43 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-03 19:14 [PATCH v3 00/20] Samsung S2MPG10 regulator and S2MPG11 PMIC drivers André Draszik
2025-11-03 19:14 ` [PATCH v3 01/20] dt-bindings: firmware: google,gs101-acpm-ipc: convert regulators to lowercase André Draszik
2025-11-03 19:14 ` [PATCH v3 02/20] dt-bindings: mfd: samsung,s2mps11: split s2mpg10 into separate file André Draszik
2025-11-04  8:26   ` Krzysztof Kozlowski
2025-11-07 11:01     ` André Draszik
2025-11-09 18:59       ` Krzysztof Kozlowski
2025-11-03 19:14 ` [PATCH v3 03/20] regulator: dt-bindings: add s2mpg10-pmic regulators André Draszik
2025-11-03 19:14 ` [PATCH v3 04/20] regulator: dt-bindings: add s2mpg11-pmic regulators André Draszik
2025-11-04  9:39   ` Krzysztof Kozlowski
2025-11-07 11:14     ` André Draszik
2025-11-09 19:00       ` Krzysztof Kozlowski
2025-11-10  6:30         ` André Draszik
2025-11-03 19:14 ` [PATCH v3 05/20] dt-bindings: mfd: samsung,s2mpg10: Link s2mpg10-pmic to its regulators André Draszik
2025-11-04  8:28   ` Krzysztof Kozlowski
2025-11-08 13:48     ` André Draszik
2025-11-03 19:14 ` [PATCH v3 06/20] dt-bindings: mfd: samsung,s2mpg10: Add s2mpg11-pmic André Draszik
2025-11-04  8:37   ` Krzysztof Kozlowski
2025-11-03 19:14 ` [PATCH v3 07/20] dt-bindings: firmware: google,gs101-acpm-ipc: update PMIC examples André Draszik
2025-11-04  8:31   ` Krzysztof Kozlowski
2025-11-08 14:08     ` André Draszik
2025-11-09 19:02       ` Krzysztof Kozlowski
2025-11-04  9:46   ` Krzysztof Kozlowski
2025-11-03 19:14 ` [PATCH v3 08/20] mfd: sec-common: Instantiate s2mpg10 bucks and ldos separately André Draszik
2025-11-03 19:14 ` [PATCH v3 09/20] mfd: sec: Add support for S2MPG11 PMIC via ACPM André Draszik
2025-11-13 16:25   ` Lee Jones
2025-11-13 21:43     ` André Draszik [this message]
2025-11-14 16:46       ` Mark Brown
2025-11-14 21:56         ` André Draszik
2025-11-16  1:14           ` Mark Brown
2025-11-16 12:49             ` André Draszik
2025-11-16 16:46               ` Mark Brown
2025-11-17  6:44                 ` André Draszik
2025-11-03 19:14 ` [PATCH v3 10/20] regulator: add REGULATOR_LINEAR_VRANGE macro André Draszik
2025-11-04 14:27   ` Mark Brown
2025-11-05 16:15     ` André Draszik
2025-11-03 19:14 ` [PATCH v3 11/20] regulator: s2mps11: drop two needless variable initialisations André Draszik
2025-11-04  8:41   ` Krzysztof Kozlowski
2025-11-03 19:14 ` [PATCH v3 12/20] regulator: s2mps11: use dev_err_probe() where appropriate André Draszik
2025-11-04  8:41   ` Krzysztof Kozlowski
2025-11-03 19:14 ` [PATCH v3 13/20] regulator: s2mps11: place constants on right side of comparison tests André Draszik
2025-11-04  8:40   ` Krzysztof Kozlowski
2025-11-03 19:14 ` [PATCH v3 14/20] regulator: s2mps11: update node parsing (allow -supply properties) André Draszik
2025-11-03 19:14 ` [PATCH v3 15/20] regulator: s2mps11: refactor handling of external rail control André Draszik
2025-11-03 19:14 ` [PATCH v3 16/20] regulator: s2mps11: add S2MPG10 regulator André Draszik
2025-11-03 19:14 ` [PATCH v3 17/20] regulator: s2mps11: refactor S2MPG10 ::set_voltage_time() for S2MPG11 reuse André Draszik
2025-11-03 19:14 ` [PATCH v3 18/20] regulator: s2mps11: refactor S2MPG10 regulator macros " André Draszik
2025-11-03 19:14 ` [PATCH v3 19/20] regulator: s2mps11: add S2MPG11 regulator André Draszik
2025-11-03 19:14 ` [PATCH v3 20/20] regulator: s2mps11: more descriptive gpio consumer name André Draszik

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=45ce203c03ec34631a0170baa7e4cf26c98b9cd3.camel@linaro.org \
    --to=andre.draszik@linaro.org \
    --cc=brgl@bgdev.pl \
    --cc=broonie@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=kernel-team@android.com \
    --cc=krzk+dt@kernel.org \
    --cc=krzk@kernel.org \
    --cc=lee@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=peter.griffin@linaro.org \
    --cc=robh@kernel.org \
    --cc=tudor.ambarus@linaro.org \
    --cc=willmcvicker@google.com \
    /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;
as well as URLs for NNTP newsgroup(s).