@@ -15,6 +15,7 @@
#define TPS53679_PROT_VR12_5MV 0x01 /* VR12.0 mode, 5-mV DAC */
#define TPS53679_PROT_VR12_5_10MV 0x02 /* VR12.5 mode, 10-mV DAC */
+#define TPS53679_PROT_IMVP9_10MV 0x03 /* IMVP9 mode, 10-mV DAC */
#define TPS53679_PROT_VR13_10MV 0x04 /* VR13.0 mode, 10-mV DAC */
#define TPS53679_PROT_IMVP8_5MV 0x05 /* IMVP8 mode, 5-mV DAC */
#define TPS53679_PROT_VR13_5MV 0x07 /* VR13.0 mode, 5-mV DAC */
@@ -44,6 +45,9 @@ static int tps53679_identify(struct i2c_client *client,
case TPS53679_PROT_IMVP8_5MV:
info->vrm_version[i] = vr12;
break;
+ case TPS53679_PROT_IMVP9_10MV:
+ info->vrm_version[i] = imvp9;
+ break;
default:
return -EINVAL;
}
Allow driver to Intel IMVP9 specification. Signed-off-by: Vadim Pasternak <vadimp@mellanox.com> --- drivers/hwmon/pmbus/tps53679.c | 4 ++++ 1 file changed, 4 insertions(+)