mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jerome Brunet <jbrunet@baylibre.com>
To: Lee Jones <lee@kernel.org>
Cc: Andre Przywara <andre.przywara@arm.com>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Chen-Yu Tsai <wens@kernel.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>, Hans de Goede <hansg@kernel.org>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	mfd@lists.linux.dev, linux-sunxi@lists.linux.dev,
	Sashiko <sashiko-bot@kernel.org>
Subject: Re: [PATCH v8 2/5] mfd: axp20x-i2c: Fix i2c instantiation
Date: Thu, 24 Sep 2026 15:10:17 +0200	[thread overview]
Message-ID: <1jy0cq94na.fsf@starbuckisacylon.baylibre.com> (raw)
In-Reply-To: <20260924082705.GO3864833@google.com>

On jeu. 24 sept. 2026 at 09:27, Lee Jones <lee@kernel.org> wrote:

> On Thu, 10 Sep 2026, Jerome Brunet wrote:
>
>> Apparently this device never really supported i2c instantiation via
>> sysfs, because the driver does not even look at the i2c device data,
>> which are not set. It would only probe if the device matched through DT.
>> 
>> Fix that for correctness, even-though it is probably useless.
>> Add the missing AXP323 while at it.
>> 
>> Reported-by: Sashiko <sashiko-bot@kernel.org>
>> Closes: https://lore.kernel.org/r/20260717090209.2A09B1F000E9@smtp.kernel.org
>> Fixes: 41751b033aaa ("mfd: axp20x-i2c: Add i2c-ids to fix module auto-loading")
>> Acked-by: Chen-Yu Tsai <wens@kernel.org>
>> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
>> ---
>>  drivers/mfd/axp20x-i2c.c   | 24 +++++++++++++-----------
>>  drivers/mfd/axp20x-rsb.c   |  1 +
>>  drivers/mfd/axp20x.c       |  1 -
>>  include/linux/mfd/axp20x.h |  3 +--
>>  4 files changed, 15 insertions(+), 14 deletions(-)
>> 
>> diff --git a/drivers/mfd/axp20x-i2c.c b/drivers/mfd/axp20x-i2c.c
>> index 5c93136f977e..a76bec5604c4 100644
>> --- a/drivers/mfd/axp20x-i2c.c
>> +++ b/drivers/mfd/axp20x-i2c.c
>> @@ -35,6 +35,7 @@ static int axp20x_i2c_probe(struct i2c_client *i2c)
>>  	axp20x->irq = i2c->irq;
>>  	dev_set_drvdata(axp20x->dev, axp20x);
>>  
>> +	axp20x->variant = (kernel_ulong_t)i2c_get_match_data(i2c);
>
> device_get_match_data() is bus agnostic and should still work from the
> core driver.  What's the purpose of splitting it out and adding
> additional call-sites?

Hi,

device_get_match_data() works when the data comes through that path,
which is generally the case.

i2c_get_match_data() calls device_get_match_data() then fallback to the
i2c_device_ids. It covers the instanciation from sysfs mainly, not
something usual.

As explained in the description, this changes plugs a hole identified by
sashiko that technically exists but I highly doubt anyone will
instanciate the PMIC through that interface. Those things do not really
come as breakout boards ... That being said, it is cheap to fix.

>
>>  	ret = axp20x_match_device(axp20x);
>>  	if (ret)
>>  		return ret;
>> @@ -76,17 +77,18 @@ MODULE_DEVICE_TABLE(of, axp20x_i2c_of_match);
>>  #endif
>>  
>>  static const struct i2c_device_id axp20x_i2c_id[] = {
>> -	{ "axp152" },
>> -	{ "axp192" },
>> -	{ "axp202" },
>> -	{ "axp209" },
>> -	{ "axp221" },
>> -	{ "axp223" },
>> -	{ "axp313a" },
>> -	{ "axp717" },
>> -	{ "axp803" },
>> -	{ "axp806" },
>> -	{ "axp15060" },
>> +	{ .name = "axp152",	.driver_data = AXP152_ID },
>> +	{ .name = "axp192",	.driver_data = AXP192_ID },
>> +	{ .name = "axp202",	.driver_data = AXP202_ID },
>> +	{ .name = "axp209",	.driver_data = AXP209_ID },
>> +	{ .name = "axp221",	.driver_data = AXP221_ID },
>> +	{ .name = "axp223",	.driver_data = AXP223_ID },
>> +	{ .name = "axp313a",	.driver_data = AXP313A_ID },
>> +	{ .name = "axp323",	.driver_data = AXP323_ID },
>> +	{ .name = "axp717",	.driver_data = AXP717_ID },
>> +	{ .name = "axp803",	.driver_data = AXP803_ID },
>> +	{ .name = "axp806",	.driver_data = AXP806_ID },
>> +	{ .name = "axp15060",	.driver_data = AXP15060_ID },
>>  	{ }
>>  };
>>  MODULE_DEVICE_TABLE(i2c, axp20x_i2c_id);
>> diff --git a/drivers/mfd/axp20x-rsb.c b/drivers/mfd/axp20x-rsb.c
>> index 059656f2a1bd..8fdc870c1fe4 100644
>> --- a/drivers/mfd/axp20x-rsb.c
>> +++ b/drivers/mfd/axp20x-rsb.c
>> @@ -35,6 +35,7 @@ static int axp20x_rsb_probe(struct sunxi_rsb_device *rdev)
>>  	axp20x->irq = rdev->irq;
>>  	dev_set_drvdata(&rdev->dev, axp20x);
>>  
>> +	axp20x->variant = (kernel_ulong_t)device_get_match_data(axp20x->dev);
>>  	ret = axp20x_match_device(axp20x);
>>  	if (ret)
>>  		return ret;
>> diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c
>> index 4d770e718716..de6946d4bb13 100644
>> --- a/drivers/mfd/axp20x.c
>> +++ b/drivers/mfd/axp20x.c
>> @@ -1267,7 +1267,6 @@ int axp20x_match_device(struct axp20x_dev *axp20x)
>>  	const struct mfd_cell *cells_no_irq = NULL;
>>  	int nr_cells_no_irq = 0;
>>  
>> -	axp20x->variant = (long)device_get_match_data(dev);
>>  	switch (axp20x->variant) {
>>  	case AXP152_ID:
>>  		axp20x->nr_cells = ARRAY_SIZE(axp152_cells);
>> diff --git a/include/linux/mfd/axp20x.h b/include/linux/mfd/axp20x.h
>> index b352661d99a1..1badb4868d17 100644
>> --- a/include/linux/mfd/axp20x.h
>> +++ b/include/linux/mfd/axp20x.h
>> @@ -997,8 +997,7 @@ static inline int axp20x_read_variable_width(struct regmap *regmap,
>>  /**
>>   * axp20x_match_device(): Setup axp20x variant related fields
>>   *
>> - * @axp20x: axp20x device to setup (.dev field must be set)
>> - * @dev: device associated with this axp20x device
>> + * @axp20x: axp20x device to setup (.dev and variant fields must be set)
>>   *
>>   * This lets the axp20x core configure the mfd cells and register maps
>>   * for later use.
>> 
>> -- 
>> 2.53.0
>> 
>
> -- 
> Lee Jones

-- 
Jerome

  reply	other threads:[~2026-09-24 13:10 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-10 10:44 [PATCH v8 0/5] regulator: Add X-Powers AXP318W PMIC support Jerome Brunet
2026-09-10 10:44 ` [PATCH v8 1/5] mfd: axp20x: Constify axp313 and axp717 cells Jerome Brunet
2026-09-10 10:44 ` [PATCH v8 2/5] mfd: axp20x-i2c: Fix i2c instantiation Jerome Brunet
2026-09-24  8:27   ` Lee Jones
2026-09-24 13:10     ` Jerome Brunet [this message]
2026-09-10 10:44 ` [PATCH v8 3/5] dt-bindings: mfd: x-powers,axp152: Document AXP318W Jerome Brunet
2026-09-10 10:44 ` [PATCH v8 4/5] mfd: axp20x: Add support for AXP318W PMIC Jerome Brunet
2026-09-10 10:44 ` [PATCH v8 5/5] regulator: axp20x: add support for the AXP318W Jerome Brunet
2026-09-20 10:04 ` [PATCH v8 0/5] regulator: Add X-Powers AXP318W PMIC support Chen-Yu Tsai

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=1jy0cq94na.fsf@starbuckisacylon.baylibre.com \
    --to=jbrunet@baylibre.com \
    --cc=andre.przywara@arm.com \
    --cc=broonie@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=hansg@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=lee@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=mfd@lists.linux.dev \
    --cc=robh@kernel.org \
    --cc=sashiko-bot@kernel.org \
    --cc=wens@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

all inboxes | Powered by JetHome®