From: Thomas Richard <thomas.richard@bootlin.com>
To: Lee Jones <lee@kernel.org>
Cc: Andi Shyti <andi.shyti@kernel.org>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
Werner Gartner <Werner.Gartner@congatec.com>,
mfd@lists.linux.dev, linux-kernel@vger.kernel.org,
linux-i2c@vger.kernel.org
Subject: Re: [PATCH v3 2/9] mfd: cgbc: Add I2C platform data
Date: Wed, 23 Sep 2026 17:42:00 +0200 [thread overview]
Message-ID: <6f8bdbc3-6184-4165-8e5b-83e98e67e70c@bootlin.com> (raw)
In-Reply-To: <20260923150254.GH3864833@google.com>
On 9/23/26 5:02 PM, Lee Jones wrote:
> On Fri, 11 Sep 2026, Thomas Richard (congatec GmbH) wrote:
>
>> Define I2C platform data for each I2C bus in the cgbc MFD driver. Platform
>> data passes per-bus parameters to the I2C driver, rather than being defined
>> inside the i2c-cgbc driver itself. This makes the i2c-cgbc driver more
>> generic.
>>
>> Signed-off-by: Thomas Richard (congatec GmbH) <thomas.richard@bootlin.com>
>> ---
>> MAINTAINERS | 1 +
>> drivers/mfd/cgbc-core.c | 39 ++++++++++++++++++++++++++--------
>> include/linux/platform_data/i2c-cgbc.h | 22 +++++++++++++++++++
>> 3 files changed, 53 insertions(+), 9 deletions(-)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index 6215fcb07770..561f102c2541 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -6621,6 +6621,7 @@ F: drivers/mfd/cgbc-core.c
>> F: drivers/video/backlight/cgbc_bl.c
>> F: drivers/watchdog/cgbc_wdt.c
>> F: include/linux/mfd/cgbc.h
>> +F: include/linux/platform_data/i2c-cgbc.h
>>
>> CONSOLE SUBSYSTEM
>> M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> diff --git a/drivers/mfd/cgbc-core.c b/drivers/mfd/cgbc-core.c
>> index 4a409234e66c..321fa3fff2ac 100644
>> --- a/drivers/mfd/cgbc-core.c
>> +++ b/drivers/mfd/cgbc-core.c
>> @@ -16,6 +16,7 @@
>> #include <linux/mfd/cgbc.h>
>> #include <linux/mfd/core.h>
>> #include <linux/module.h>
>> +#include <linux/platform_data/i2c-cgbc.h>
>> #include <linux/platform_device.h>
>> #include <linux/sysfs.h>
>>
>> @@ -55,6 +56,35 @@
>>
>> static struct platform_device *cgbc_pdev;
>>
>> +static const struct cgbc_i2c_platform_data cgbc_i2c_gp_pdata = {
>> + .name = "Congatec General Purpose I2C adapter",
>> + .cgbc_bus_id = 0,
>> +};
>> +
>> +static const struct cgbc_i2c_platform_data cgbc_i2c_pm_pdata = {
>> + .name = "Congatec Power Management I2C adapter",
>> + .cgbc_bus_id = 4,
>> +};
>> +
>> +static const struct mfd_cell cgbc_devs[] = {
>> + { .name = "cgbc-backlight" },
>
> MFD_CELL_*
>
>> + { .name = "cgbc-gpio" },
>> + { .name = "cgbc-hwmon" },
>> + {
>> + .name = "cgbc-i2c",
>> + .id = 1,
>
> Why does PLATFORM_DEVID_AUTO not work for you?
Path 2, 3 and 4 do the transition to PLATFORM_DEVID_AUTO.
But at this point I2C driver uses cell id to identify the bus.
Patch 2: adds cgbc_bus_id (in cgbc_i2c_platform_data) to identify the bus.
Patch 3: modifies I2C driver to use cgbc_i2c_platform_data.
Patch 4: now I2C driver doesn't rely on cell id, so switch to
PLATFORM_DEVID_AUTO
>
>> + .platform_data = &cgbc_i2c_gp_pdata,
>> + .pdata_size = sizeof(cgbc_i2c_gp_pdata),
>> + },
>> + {
>> + .name = "cgbc-i2c",
>> + .id = 2,
>> + .platform_data = &cgbc_i2c_pm_pdata,
>> + .pdata_size = sizeof(cgbc_i2c_pm_pdata),
>> + },
>> + { .name = "cgbc-wdt" },
>> +};
>> +
>> /* Wait the Board Controller is ready to receive some session commands */
>> static int cgbc_wait_device(struct cgbc_device_data *cgbc)
>> {
>> @@ -235,15 +265,6 @@ int cgbc_command(struct cgbc_device_data *cgbc, void *cmd, unsigned int cmd_size
>> }
>> EXPORT_SYMBOL_GPL(cgbc_command);
>>
>> -static struct mfd_cell cgbc_devs[] = {
>> - { .name = "cgbc-wdt" },
>> - { .name = "cgbc-gpio" },
>> - { .name = "cgbc-i2c", .id = 1 },
>> - { .name = "cgbc-i2c", .id = 2 },
>> - { .name = "cgbc-hwmon" },
>> - { .name = "cgbc-backlight" },
>> -};
>> -
>> static int cgbc_map(struct cgbc_device_data *cgbc)
>> {
>> struct device *dev = cgbc->dev;
>> diff --git a/include/linux/platform_data/i2c-cgbc.h b/include/linux/platform_data/i2c-cgbc.h
>> new file mode 100644
>> index 000000000000..4465e8a7b40e
>> --- /dev/null
>> +++ b/include/linux/platform_data/i2c-cgbc.h
>
> I think this area is mainly used to share data with OF.
>
> Did you consider include/linux/mfd?
I thought it was the right place. But I can move the struct to
include/linux/mfd/cgbc.h if you prefer.
Best Regards,
Thomas
next prev parent reply other threads:[~2026-09-23 15:42 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-11 18:48 [PATCH v3 0/9] Congatec Board Controller: Add storage devices support Thomas Richard (congatec GmbH)
2026-09-11 18:48 ` [PATCH v3 1/9] mfd: cgbc: Fix use of negative error code as valid session handle Thomas Richard (congatec GmbH)
2026-09-11 18:48 ` [PATCH v3 2/9] mfd: cgbc: Add I2C platform data Thomas Richard (congatec GmbH)
2026-09-23 15:02 ` Lee Jones
2026-09-23 15:42 ` Thomas Richard [this message]
2026-09-11 18:48 ` [PATCH v3 3/9] i2c: cgbc: Use plateform data to get bus ID and adapter name Thomas Richard (congatec GmbH)
2026-09-11 18:48 ` [PATCH v3 4/9] mfd: cgbc: Use PLATFORM_DEVID_AUTO for child device registration Thomas Richard (congatec GmbH)
2026-09-11 18:48 ` [PATCH v3 5/9] mfd: cgbc: Use real I2C bus names Thomas Richard (congatec GmbH)
2026-09-11 18:48 ` [PATCH v3 6/9] i2c: cgbc: Add support for fixed frequency buses Thomas Richard (congatec GmbH)
2026-09-11 18:48 ` [PATCH v3 7/9] mfd: cgbc: Add virtual I2C bus support Thomas Richard (congatec GmbH)
2026-09-11 18:48 ` [PATCH v3 8/9] mfd: cgbc: Add virtual storage devices on the virtual I2C bus Thomas Richard (congatec GmbH)
2026-09-11 18:48 ` [PATCH v3 9/9] i2c: cgbc: Register known I2C devices on the bus Thomas Richard (congatec GmbH)
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=6f8bdbc3-6184-4165-8e5b-83e98e67e70c@bootlin.com \
--to=thomas.richard@bootlin.com \
--cc=Werner.Gartner@congatec.com \
--cc=andi.shyti@kernel.org \
--cc=lee@kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mfd@lists.linux.dev \
--cc=thomas.petazzoni@bootlin.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
all inboxes | Powered by JetHome®