public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Sebastian Reichel <sebastian.reichel@collabora.com>
To: Alexey Charkov <alchark@flipper.net>
Cc: Lee Jones <lee@kernel.org>, Rob Herring <robh@kernel.org>,
	 Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	 Chris Morgan <macromorgan@hotmail.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	 Mark Brown <broonie@kernel.org>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	 linux-pm@vger.kernel.org
Subject: Re: [PATCH v3 07/11] power: supply: bq257xx: Consistently use indirect get/set helpers
Date: Wed, 11 Mar 2026 08:09:04 +0100	[thread overview]
Message-ID: <abEVAER9eXX2EAL9@venus> (raw)
In-Reply-To: <20260310-bq25792-v3-7-02f8e232d63b@flipper.net>

[-- Attachment #1: Type: text/plain, Size: 3739 bytes --]

Hi,

On Tue, Mar 10, 2026 at 01:28:31PM +0400, Alexey Charkov wrote:
> Move the remaining get/set helper functions to indirect calls via the
> per-chip bq257xx_chip_info struct.
> 
> This improves the consistency of the code and prepares the driver to
> support multiple chip variants with different register layouts and bit
> definitions.
> 
> Tested-by: Chris Morgan <macromorgan@hotmail.com>
> Signed-off-by: Alexey Charkov <alchark@flipper.net>
> ---

Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com>

-- Sebastian

>  drivers/power/supply/bq257xx_charger.c | 24 ++++++++++++++++++------
>  1 file changed, 18 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/power/supply/bq257xx_charger.c b/drivers/power/supply/bq257xx_charger.c
> index e14dd16f9d08..deb60a9bd222 100644
> --- a/drivers/power/supply/bq257xx_charger.c
> +++ b/drivers/power/supply/bq257xx_charger.c
> @@ -30,9 +30,15 @@ struct bq257xx_chip_info {
>  	int (*bq257xx_hw_init)(struct bq257xx_chg *pdata);
>  	void (*bq257xx_hw_shutdown)(struct bq257xx_chg *pdata);
>  	int (*bq257xx_get_state)(struct bq257xx_chg *pdata);
> +	int (*bq257xx_get_ichg)(struct bq257xx_chg *pdata, int *intval);
>  	int (*bq257xx_set_ichg)(struct bq257xx_chg *pdata, int ichg);
> +	int (*bq257xx_get_vbatreg)(struct bq257xx_chg *pdata, int *intval);
>  	int (*bq257xx_set_vbatreg)(struct bq257xx_chg *pdata, int vbatreg);
> +	int (*bq257xx_get_iindpm)(struct bq257xx_chg *pdata, int *intval);
>  	int (*bq257xx_set_iindpm)(struct bq257xx_chg *pdata, int iindpm);
> +	int (*bq257xx_get_cur)(struct bq257xx_chg *pdata, int *intval);
> +	int (*bq257xx_get_vbat)(struct bq257xx_chg *pdata, int *intval);
> +	int (*bq257xx_get_min_vsys)(struct bq257xx_chg *pdata, int *intval);
>  };
>  
>  /**
> @@ -489,22 +495,22 @@ static int bq257xx_get_charger_property(struct power_supply *psy,
>  		break;
>  
>  	case POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT:
> -		return bq25703_get_iindpm(pdata, &val->intval);
> +		return pdata->chip->bq257xx_get_iindpm(pdata, &val->intval);
>  
>  	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX:
> -		return bq25703_get_chrg_volt(pdata, &val->intval);
> +		return pdata->chip->bq257xx_get_vbatreg(pdata, &val->intval);
>  
>  	case POWER_SUPPLY_PROP_CURRENT_NOW:
> -		return bq25703_get_cur(pdata, &val->intval);
> +		return pdata->chip->bq257xx_get_cur(pdata, &val->intval);
>  
>  	case POWER_SUPPLY_PROP_VOLTAGE_NOW:
> -		return bq25703_get_vbat(pdata, &val->intval);
> +		return pdata->chip->bq257xx_get_vbat(pdata, &val->intval);
>  
>  	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX:
> -		return bq25703_get_ichg_cur(pdata, &val->intval);
> +		return pdata->chip->bq257xx_get_ichg(pdata, &val->intval);
>  
>  	case POWER_SUPPLY_PROP_VOLTAGE_MIN:
> -		return bq25703_get_min_vsys(pdata, &val->intval);
> +		return pdata->chip->bq257xx_get_min_vsys(pdata, &val->intval);
>  
>  	case POWER_SUPPLY_PROP_USB_TYPE:
>  		val->intval = pdata->usb_type;
> @@ -632,9 +638,15 @@ static const struct bq257xx_chip_info bq25703_chip_info = {
>  		.bq257xx_hw_init = &bq25703_hw_init,
>  		.bq257xx_hw_shutdown = &bq25703_hw_shutdown,
>  		.bq257xx_get_state = &bq25703_get_state,
> +		.bq257xx_get_ichg = &bq25703_get_ichg_cur,
>  		.bq257xx_set_ichg = &bq25703_set_ichg_cur,
> +		.bq257xx_get_vbatreg = &bq25703_get_chrg_volt,
>  		.bq257xx_set_vbatreg = &bq25703_set_chrg_volt,
> +		.bq257xx_get_iindpm = &bq25703_get_iindpm,
>  		.bq257xx_set_iindpm = &bq25703_set_iindpm,
> +		.bq257xx_get_cur = &bq25703_get_cur,
> +		.bq257xx_get_vbat = &bq25703_get_vbat,
> +		.bq257xx_get_min_vsys = &bq25703_get_min_vsys,
>  };
>  
>  /**
> 
> -- 
> 2.52.0
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2026-03-11  7:09 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-10  9:28 [PATCH v3 00/11] Add support for the TI BQ25792 battery charger Alexey Charkov
2026-03-10  9:28 ` [PATCH v3 01/11] dt-bindings: mfd: ti,bq25703a: Expand to include BQ25792 Alexey Charkov
2026-03-10  9:28 ` [PATCH v3 02/11] regulator: bq257xx: Remove reference to the parent MFD's dev Alexey Charkov
2026-03-10  9:28 ` [PATCH v3 03/11] regulator: bq257xx: Drop the regulator_dev from the driver data Alexey Charkov
2026-03-10  9:28 ` [PATCH v3 04/11] regulator: bq257xx: Make OTG enable GPIO really optional Alexey Charkov
2026-03-10  9:28 ` [PATCH v3 05/11] power: supply: bq257xx: Fix VSYSMIN clamping logic Alexey Charkov
2026-03-11  7:08   ` Sebastian Reichel
2026-03-10  9:28 ` [PATCH v3 06/11] power: supply: bq257xx: Make the default current limit a per-chip attribute Alexey Charkov
2026-03-11  7:08   ` Sebastian Reichel
2026-03-10  9:28 ` [PATCH v3 07/11] power: supply: bq257xx: Consistently use indirect get/set helpers Alexey Charkov
2026-03-11  7:09   ` Sebastian Reichel [this message]
2026-03-10  9:28 ` [PATCH v3 08/11] power: supply: bq257xx: Add fields for 'charging' and 'overvoltage' states Alexey Charkov
2026-03-11  7:09   ` Sebastian Reichel
2026-03-10  9:28 ` [PATCH v3 09/11] mfd: bq257xx: Add BQ25792 support Alexey Charkov
2026-03-10 13:03   ` Lee Jones
2026-03-10 13:49     ` Alexey Charkov
2026-03-10  9:28 ` [PATCH v3 10/11] regulator: bq257xx: Add support for BQ25792 Alexey Charkov
2026-03-10  9:28 ` [PATCH v3 11/11] power: supply: " Alexey Charkov
2026-03-11  8:52   ` Sebastian Reichel
2026-03-11  9:22     ` Alexey Charkov

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=abEVAER9eXX2EAL9@venus \
    --to=sebastian.reichel@collabora.com \
    --cc=alchark@flipper.net \
    --cc=broonie@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=lee@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=macromorgan@hotmail.com \
    --cc=robh@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