From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Cosmo Chou <chou.cosmo@gmail.com>,
linux@roeck-us.net, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org,
jdelvare@suse.com, corbet@lwn.net, broonie@kernel.org,
naresh.solanki@9elements.com, vincent@vtremblay.dev,
patrick.rudolph@9elements.com, luca.ceresoli@bootlin.com,
bhelgaas@google.com, festevam@denx.de,
alexander.stein@ew.tq-group.com, heiko@sntech.de,
jernej.skrabec@gmail.com, macromorgan@hotmail.com,
forbidden405@foxmail.com, sre@kernel.org,
linus.walleij@linaro.org
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-hwmon@vger.kernel.org, linux-doc@vger.kernel.org,
cosmo.chou@quantatw.com
Subject: Re: [PATCH v5 1/1] hwmon: Add driver for Astera Labs PT5161L retimer
Date: Mon, 5 Feb 2024 16:26:08 +0100 [thread overview]
Message-ID: <99a1a309-41d6-448f-b622-b62dbabb2c52@linaro.org> (raw)
In-Reply-To: <20240205152013.3833940-2-chou.cosmo@gmail.com>
On 05/02/2024 16:20, Cosmo Chou wrote:
> This driver implements support for temperature monitoring of Astera Labs
> PT5161L series PCIe retimer chips.
>
> This driver implementation originates from the CSDK available at
> Link: https://github.com/facebook/openbmc/tree/helium/common/recipes-lib/retimer-v2.14
> The communication protocol utilized is based on the I2C/SMBus standard.
>
> Signed-off-by: Cosmo Chou <chou.cosmo@gmail.com>
> ---
> Documentation/hwmon/index.rst | 1 +
> Documentation/hwmon/pt5161l.rst | 42 ++
> MAINTAINERS | 7 +
> drivers/hwmon/Kconfig | 10 +
....
> +
> +static int pt5161l_probe(struct i2c_client *client)
> +{
> + struct device *dev = &client->dev;
> + struct device *hwmon_dev;
> + struct pt5161l_data *data;
> +
> + data = devm_kzalloc(dev, sizeof(struct pt5161l_data), GFP_KERNEL);
sizeof(*)
> + if (!data)
> + return -ENOMEM;
> +
> + data->client = client;
> + mutex_init(&data->lock);
> + pt5161l_init_dev(data);
> + dev_set_drvdata(dev, data);
> +
> + hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
> + data,
> + &pt5161l_chip_info,
> + NULL);
> +
> + pt5161l_init_debugfs(data);
> +
> + return PTR_ERR_OR_ZERO(hwmon_dev);
> +}
> +
> +static void pt5161l_remove(struct i2c_client *client)
> +{
> + struct pt5161l_data *data = i2c_get_clientdata(client);
> +
> + debugfs_remove_recursive(data->debugfs);
> +}
> +
> +static const struct of_device_id __maybe_unused pt5161l_of_match[] = {
> + { .compatible = "asteralabs,pt5161l" },
Please run scripts/checkpatch.pl and fix reported warnings. Some
warnings can be ignored, but the code here looks like it needs a fix.
Feel free to get in touch if the warning is not clear.
> + {},
> +};
> +MODULE_DEVICE_TABLE(of, pt5161l_of_match);
> +
> +static const struct acpi_device_id __maybe_unused pt5161l_acpi_match[] = {
> + { "PT5161L", 0 },
> + {},
> +};
> +MODULE_DEVICE_TABLE(acpi, pt5161l_acpi_match);
> +
> +static const struct i2c_device_id pt5161l_id[] = {
> + { "pt5161l", 0 },
> + {}
> +};
> +MODULE_DEVICE_TABLE(i2c, pt5161l_id);
> +
> +static struct i2c_driver pt5161l_driver = {
> + .class = I2C_CLASS_HWMON,
> + .driver = {
> + .name = "pt5161l",
> + .of_match_table = of_match_ptr(pt5161l_of_match),
> + .acpi_match_table = ACPI_PTR(pt5161l_acpi_match),
> + },
> + .probe = pt5161l_probe,
> + .remove = pt5161l_remove,
> + .id_table = pt5161l_id,
> +};
> +
> +static int __init pt5161l_init(void)
> +{
> + pt5161l_debugfs_dir = debugfs_create_dir("pt5161l", NULL);
Drivers don't need initcalls. For sure any debugfs should not be handled
here but in probe.
Best regards,
Krzysztof
next prev parent reply other threads:[~2024-02-05 15:26 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-05 15:20 [PATCH v5 0/1] hwmon: Add driver for Astera Labs PT5161L retimer Cosmo Chou
2024-02-05 15:20 ` [PATCH v5 1/1] " Cosmo Chou
2024-02-05 15:26 ` Krzysztof Kozlowski [this message]
2024-02-05 16:15 ` Guenter Roeck
2024-02-06 7:33 ` Krzysztof Kozlowski
2024-02-06 15:19 ` Guenter Roeck
2024-02-05 19:43 ` Guenter Roeck
2024-02-06 3:05 ` Cosmo Chou
2024-02-06 3:26 ` Guenter Roeck
2024-02-06 3:53 ` Cosmo Chou
2024-02-06 4:02 ` Guenter Roeck
2024-02-06 4:16 ` Cosmo Chou
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=99a1a309-41d6-448f-b622-b62dbabb2c52@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=alexander.stein@ew.tq-group.com \
--cc=bhelgaas@google.com \
--cc=broonie@kernel.org \
--cc=chou.cosmo@gmail.com \
--cc=conor+dt@kernel.org \
--cc=corbet@lwn.net \
--cc=cosmo.chou@quantatw.com \
--cc=devicetree@vger.kernel.org \
--cc=festevam@denx.de \
--cc=forbidden405@foxmail.com \
--cc=heiko@sntech.de \
--cc=jdelvare@suse.com \
--cc=jernej.skrabec@gmail.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linus.walleij@linaro.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=luca.ceresoli@bootlin.com \
--cc=macromorgan@hotmail.com \
--cc=naresh.solanki@9elements.com \
--cc=patrick.rudolph@9elements.com \
--cc=robh+dt@kernel.org \
--cc=sre@kernel.org \
--cc=vincent@vtremblay.dev \
/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).