Linux Hardware Monitor development
 help / color / mirror / Atom feed
* [PATCH v2 1/2] hwmon: (pmbus) add a function to check the presence of a block register
@ 2022-05-24 10:43 Adam Wujek
  2022-05-24 10:44 ` [PATCH v2 2/2] hwmon: (pmbus) add MFR_* registers to debugfs Adam Wujek
  2022-05-24 13:32 ` [PATCH v2 1/2] hwmon: (pmbus) add a function to check the presence of a block register Guenter Roeck
  0 siblings, 2 replies; 4+ messages in thread
From: Adam Wujek @ 2022-05-24 10:43 UTC (permalink / raw)
  Cc: Adam Wujek, Guenter Roeck, Jean Delvare, linux-hwmon,
	linux-kernel

Other functions (like pmbus_check_byte_register) cannot be used to check
the presence of a block register, because it will generate error when PEC
is used.

Signed-off-by: Adam Wujek <dev_public@wujek.eu>
---
Notes:
  Changes in v2:
    - Use Phase 0xff when setting the page

 drivers/hwmon/pmbus/pmbus_core.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/drivers/hwmon/pmbus/pmbus_core.c b/drivers/hwmon/pmbus/pmbus_core.c
index acf78d0829d9..2ff66f133d95 100644
--- a/drivers/hwmon/pmbus/pmbus_core.c
+++ b/drivers/hwmon/pmbus/pmbus_core.c
@@ -421,6 +421,18 @@ static int _pmbus_read_byte_data(struct i2c_client *client, int page, int reg)
 	return pmbus_read_byte_data(client, page, reg);
 }

+static int pmbus_read_block_data(struct i2c_client *client, int page, u8 reg,
+				 char *data_buf)
+{
+	int rv;
+
+	rv = pmbus_set_page(client, page, 0xff);
+	if (rv < 0)
+		return rv;
+
+	return i2c_smbus_read_block_data(client, reg, data_buf);
+}
+
 static struct pmbus_sensor *pmbus_find_sensor(struct pmbus_data *data, int page,
 					      int reg)
 {
@@ -558,6 +570,20 @@ bool pmbus_check_word_register(struct i2c_client *client, int page, int reg)
 }
 EXPORT_SYMBOL_NS_GPL(pmbus_check_word_register, PMBUS);

+static bool pmbus_check_block_register(struct i2c_client *client, int page,
+				       int reg)
+{
+	int rv;
+	struct pmbus_data *data = i2c_get_clientdata(client);
+	char data_buf[I2C_SMBUS_BLOCK_MAX + 2] = { 0 };
+
+	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);
+	pmbus_clear_fault_page(client, -1);
+	return rv >= 0;
+}
+
 const struct pmbus_driver_info *pmbus_get_driver_info(struct i2c_client *client)
 {
 	struct pmbus_data *data = i2c_get_clientdata(client);
--
2.17.1



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

end of thread, other threads:[~2022-06-01  1:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-24 10:43 [PATCH v2 1/2] hwmon: (pmbus) add a function to check the presence of a block register Adam Wujek
2022-05-24 10:44 ` [PATCH v2 2/2] hwmon: (pmbus) add MFR_* registers to debugfs Adam Wujek
2022-05-24 13:32 ` [PATCH v2 1/2] hwmon: (pmbus) add a function to check the presence of a block register Guenter Roeck
2022-06-01  1:34   ` wujek dev

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