[PATCH v2 2/4] hwmon: (pmbus/core) Add mapping function to pmbus_read_block_data()
From: Nuno Sá
Date: Fri Sep 11 2026 - 10:02:36 EST
This is in preparation for adding support to a device which needs to
use it's own read_block implementation.
The MAX20826 family is one such device. When not in PMBus page mode, each
of its two rails sits at a different I2C address, so selecting the rail
cannot be done through pmbus_set_page() and has to be handled by the
driver.
Signed-off-by: Nuno Sá <nuno.sa@xxxxxxxxxx>
---
drivers/hwmon/pmbus/pmbus.h | 7 +++++++
drivers/hwmon/pmbus/pmbus_core.c | 24 ++++++++++++++++++++++--
2 files changed, 29 insertions(+), 2 deletions(-)
diff --git a/drivers/hwmon/pmbus/pmbus.h b/drivers/hwmon/pmbus/pmbus.h
index 920c1102ab6d..5525c048a810 100644
--- a/drivers/hwmon/pmbus/pmbus.h
+++ b/drivers/hwmon/pmbus/pmbus.h
@@ -461,6 +461,13 @@ struct pmbus_driver_info {
int (*read_byte_data)(struct i2c_client *client, int page, int reg);
int (*read_word_data)(struct i2c_client *client, int page, int phase,
int reg);
+ /*
+ * data_buf is at least I2C_SMBUS_BLOCK_MAX bytes long. The callback
+ * must never return more than I2C_SMBUS_BLOCK_MAX bytes of data and
+ * returns the number of bytes written into data_buf.
+ */
+ int (*read_block_data)(struct i2c_client *client, int page, u8 reg,
+ char *data_buf);
int (*write_byte_data)(struct i2c_client *client, int page, int reg,
u8 byte);
int (*write_word_data)(struct i2c_client *client, int page, int reg,
diff --git a/drivers/hwmon/pmbus/pmbus_core.c b/drivers/hwmon/pmbus/pmbus_core.c
index 5f69c1420b4e..5104fd29307b 100644
--- a/drivers/hwmon/pmbus/pmbus_core.c
+++ b/drivers/hwmon/pmbus/pmbus_core.c
@@ -616,6 +616,26 @@ static int pmbus_read_block_data(struct i2c_client *client, int page, u8 reg,
return pmbus_read_smbus_i2c_block_data(client, reg, data_buf);
}
+/*
+ * _pmbus_read_block_data() is similar to pmbus_read_block_data(), but checks if
+ * a device specific mapping function exists and calls it if necessary.
+ */
+static int _pmbus_read_block_data(struct i2c_client *client, int page, u8 reg,
+ char *data_buf)
+{
+ struct pmbus_data *data = i2c_get_clientdata(client);
+ const struct pmbus_driver_info *info = data->info;
+ int status;
+
+ if (info->read_block_data) {
+ status = info->read_block_data(client, page, reg, data_buf);
+ if (status != -ENODATA)
+ return status;
+ }
+
+ return pmbus_read_block_data(client, page, reg, data_buf);
+}
+
static struct pmbus_sensor *pmbus_find_sensor(struct pmbus_data *data, int page,
int reg)
{
@@ -761,7 +781,7 @@ static bool __maybe_unused pmbus_check_block_register(struct i2c_client *client,
struct pmbus_data *data = i2c_get_clientdata(client);
char data_buf[I2C_SMBUS_BLOCK_MAX + 2];
- rv = pmbus_read_block_data(client, page, reg, data_buf);
+ rv = _pmbus_read_block_data(client, page, reg, data_buf);
if (rv >= 0 && !(data->flags & PMBUS_SKIP_STATUS_CHECK))
rv = pmbus_check_status_cml(client);
if (rv < 0 && (data->flags & PMBUS_READ_STATUS_AFTER_FAILED_CHECK))
@@ -3679,7 +3699,7 @@ static ssize_t pmbus_debugfs_block_read(struct file *file, char __user *buf,
char data[I2C_SMBUS_BLOCK_MAX + 2] = { 0 };
scoped_guard(pmbus_lock, client) {
- rc = pmbus_read_block_data(client, entry->page, entry->reg, data);
+ rc = _pmbus_read_block_data(client, entry->page, entry->reg, data);
if (rc < 0)
return rc;
}
--
2.55.0