Linux Hardware Monitor development
 help / color / mirror / Atom feed
* [PATCH] hwmon: (pmbus) Initialise page count in pmbus_identify()
@ 2025-02-27 22:24 Titus Rwantare
  2025-03-02 16:25 ` Guenter Roeck
  0 siblings, 1 reply; 2+ messages in thread
From: Titus Rwantare @ 2025-02-27 22:24 UTC (permalink / raw)
  To: linux, jdelvare; +Cc: linux-hwmon, Titus Rwantare

The `pmbus_identify()` function fails to correctly determine the number
of supported pages on PMBus devices. This occurs because `info->pages`
is implicitly zero-initialised, and `pmbus_set_page()` does not perform
writes to the page register if `info->pages` is not yet initialised.
Without this patch, `info->pages` is always set to the maximum after
scanning.

This patch initialises `info->pages` to `PMBUS_PAGES` before the probing
loop, enabling `pmbus_set_page()` writes to make it out onto the bus
correctly identifying the number of pages. `PMBUS_PAGES` seemed like a
reasonable non-zero number because that's the current result of the
identification process.

Testing was done with a PMBus device in QEMU.

Signed-off-by: Titus Rwantare <titusr@google.com>
---
 drivers/hwmon/pmbus/pmbus.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/hwmon/pmbus/pmbus.c b/drivers/hwmon/pmbus/pmbus.c
index 77cf268e7d2d..920cd5408141 100644
--- a/drivers/hwmon/pmbus/pmbus.c
+++ b/drivers/hwmon/pmbus/pmbus.c
@@ -103,6 +103,8 @@ static int pmbus_identify(struct i2c_client *client,
 		if (pmbus_check_byte_register(client, 0, PMBUS_PAGE)) {
 			int page;
 
+			info->pages = PMBUS_PAGES;
+
 			for (page = 1; page < PMBUS_PAGES; page++) {
 				if (pmbus_set_page(client, page, 0xff) < 0)
 					break;
-- 
2.48.1.711.g2feabab25a-goog


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] hwmon: (pmbus) Initialise page count in pmbus_identify()
  2025-02-27 22:24 [PATCH] hwmon: (pmbus) Initialise page count in pmbus_identify() Titus Rwantare
@ 2025-03-02 16:25 ` Guenter Roeck
  0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2025-03-02 16:25 UTC (permalink / raw)
  To: Titus Rwantare; +Cc: jdelvare, linux-hwmon

On Thu, Feb 27, 2025 at 10:24:55PM +0000, Titus Rwantare wrote:
> The `pmbus_identify()` function fails to correctly determine the number
> of supported pages on PMBus devices. This occurs because `info->pages`
> is implicitly zero-initialised, and `pmbus_set_page()` does not perform
> writes to the page register if `info->pages` is not yet initialised.
> Without this patch, `info->pages` is always set to the maximum after
> scanning.
> 
> This patch initialises `info->pages` to `PMBUS_PAGES` before the probing
> loop, enabling `pmbus_set_page()` writes to make it out onto the bus
> correctly identifying the number of pages. `PMBUS_PAGES` seemed like a
> reasonable non-zero number because that's the current result of the
> identification process.
> 
> Testing was done with a PMBus device in QEMU.
> 
> Signed-off-by: Titus Rwantare <titusr@google.com>

Applied.

Thanks,
Guenter

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-03-02 16:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-27 22:24 [PATCH] hwmon: (pmbus) Initialise page count in pmbus_identify() Titus Rwantare
2025-03-02 16:25 ` Guenter Roeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox