hwmon: pmbus: Reduce clear fault page invocations
authorPatrick Rudolph <patrick.rudolph@9elements.com>
Thu, 17 Aug 2023 09:25:24 +0000 (11:25 +0200)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 21 Aug 2023 13:04:31 +0000 (06:04 -0700)
Observing I2C traffic revealed consecutive transmission of CLEAR_FAULT
commands. While this doesn't cause issues, it extends driver probe time.

Avoid invoking pmbus_clear_fault_page for virtual registers, as they're
managed by the driver, not the chip.

TEST: Verified using an I2C bus analyzer that only one CLEAR_FAULT
      command is send instead 5 in a row.

Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Signed-off-by: Naresh Solanki <Naresh.Solanki@9elements.com>
Link: https://lore.kernel.org/r/20230817092527.808631-1-Naresh.Solanki@9elements.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/pmbus/pmbus_core.c

index 69a4e62b6c8ddcda6c5edd412b2c510c8bb31c8d..cbfabdd69056cd2a598a98e0d81706fb558e37a3 100644 (file)
@@ -561,7 +561,8 @@ static bool pmbus_check_register(struct i2c_client *client,
                rv = pmbus_check_status_cml(client);
        if (rv < 0 && (data->flags & PMBUS_READ_STATUS_AFTER_FAILED_CHECK))
                data->read_status(client, -1);
-       pmbus_clear_fault_page(client, -1);
+       if (reg < PMBUS_VIRT_BASE)
+               pmbus_clear_fault_page(client, -1);
        return rv >= 0;
 }