PMBus 1.3 allows for relative encoding of voltages in certain output voltage related commands. I'm starting this thread to ask if adding support for this, either by me or someone else, is of interest. I have made an initial attempt to add support that is adequate for my needs. I have included the patch for discussion. I don't expect it to be accepted as is. I'm working on the software for an ARM64 based board that uses the TDK FS1412, which uses relative encoding. This is the only chip that uses this feature that I have access to. I only have access to this chip on this board, so I'm only able to test it on this architecture. I have to use the kernel sources from NXPs LLDP project, which ATTOW is based on kernel 6.1.55. I'm not able to test on a newer kernel at the moment. The board is fairly expensive, so I don't dare test setting voltages. I have only tested monitoring voltages. In relative mode, certain output voltage related commands (e.g. VOUT_MARGIN_HIGH) are encoded relative to the nominal value (VOUT_COMMAND). If e.g. the high margin is to be 10% above the nominal value, VOUT_MARGIN_HIGH is set to 1.1. This factor is encoded the same way as VOUT_COMMAND (i.e. as indicated by VOUT_MODE). I have been a little unsure about how to best organize the changes. Decoding the relative values requires access to the current value of VOUT_COMMAND. I decided to handle it the same way exponent is handled. I placed the relevant information next to exponent in pmbus_data. vout_mode_relative is true if relative encoding is used, vout_command stores what is believed to be the current VOUT_COMMAND. As exponent, vout_mode_relative is set during decoding of VOUT_MODE in pmbus_identify_common. I decided to assume that VOUT_COMMAND is not changed outside the driver, as this is also done for VOUT_MODE. VOUT_COMMAND is read and saved during pmbus_init_common. It is also saved to vout_command during pmbus_regulator_set_voltage. pmbus_regulator_set_voltage usually clamps the requested voltage to be between VOUT_MARGIN_LOW and VOUT_MARGIN_HIGH. This does not make sense in relative mode, as the margins move with the requested voltage. This part is skipped in relative mode. pmbus_reg2data does the actual relative decoding. The pmbus_reg2data_* functions return the register value multiplied by 1000, which in relative mode means the permilleage of the nominal value. If we are in relative mode, and the current register is one of the registers that can use relative decoding, the permilleage value is multiplied with the stored vout_command. Currently, the vout_command in pmbus_data is stored decoded, i.e. 1000x and rounded to an integer. Better precision could be achieved if the multiplication was done inside each pmbus_reg2data_*, before the rounding to integer, but this would be a bit messier. I welcome comments on wether this is of interest, and what is needed to get it into an acceptable state! Lars Petter Mostad (1): hwmon: (pmbus_core) Support relative encoding of vout related commands drivers/hwmon/pmbus/pmbus.c | 2 +- drivers/hwmon/pmbus/pmbus_core.c | 85 +++++++++++++++++++++++++++----- 2 files changed, 75 insertions(+), 12 deletions(-) base-commit: 8debe3c1295ef36958dae77487eed9cf6584c008 -- 2.44.0