/* Converts a linear11 data exponent to a specified value */ static u16 mp2993_linear11_exponent_transfer(u16 word, u16 expect_exponent)
{
s16 exponent, mantissa, target_exponent;
staticint mp2993_identify(struct i2c_client *client, struct pmbus_driver_info *info)
{ int ret;
/* Set vout to direct format for rail1. */
ret = mp2993_set_vout_format(client, 0, PB_VOUT_MODE_DIRECT); if (ret < 0) return ret;
/* Set vout to direct format for rail2. */ return mp2993_set_vout_format(client, 1, PB_VOUT_MODE_DIRECT);
}
staticint mp2993_read_word_data(struct i2c_client *client, int page, int phase, int reg)
{ int ret;
switch (reg) { case PMBUS_VOUT_OV_FAULT_LIMIT: case PMBUS_VOUT_UV_FAULT_LIMIT:
ret = pmbus_read_word_data(client, page, phase, reg); if (ret < 0) return ret;
ret = DIV_ROUND_CLOSEST(ret * MP2993_VOUT_OVUV_UINT, MP2993_VOUT_OVUV_DIV); break; case PMBUS_OT_FAULT_LIMIT: case PMBUS_OT_WARN_LIMIT: /* * The MP2993 ot fault limit value and ot warn limit value * per rail are always the same, so only PMBUS_OT_FAULT_LIMIT * and PMBUS_OT_WARN_LIMIT register in page 0 are defined to * indicates the limit value.
*/
ret = pmbus_read_word_data(client, 0, phase, reg); break; case PMBUS_READ_VIN: /* The MP2993 vin scale is (1/32V)/Lsb */
ret = pmbus_read_word_data(client, page, phase, reg); if (ret < 0) return ret;
ret = DIV_ROUND_CLOSEST((ret & GENMASK(9, 0)) * MP2993_READ_VIN_UINT,
MP2993_READ_VIN_DIV); break; case PMBUS_VIN_OV_FAULT_LIMIT: case PMBUS_VIN_OV_WARN_LIMIT: case PMBUS_VIN_UV_WARN_LIMIT: case PMBUS_VIN_UV_FAULT_LIMIT: /* The MP2993 vin limit scale is (1/8V)/Lsb */
ret = pmbus_read_word_data(client, page, phase, reg); if (ret < 0) return ret;
ret = DIV_ROUND_CLOSEST((ret & GENMASK(7, 0)) * MP2993_VIN_LIMIT_UINT,
MP2993_VIN_LIMIT_DIV); break; case PMBUS_READ_IOUT: case PMBUS_READ_IIN: case PMBUS_IIN_OC_WARN_LIMIT: case PMBUS_IOUT_OC_FAULT_LIMIT: case PMBUS_IOUT_OC_WARN_LIMIT: case PMBUS_READ_VOUT: case PMBUS_READ_PIN: case PMBUS_READ_POUT: case PMBUS_READ_TEMPERATURE_1:
ret = -ENODATA; break; default:
ret = -EINVAL; break;
}
return ret;
}
staticint mp2993_write_word_data(struct i2c_client *client, int page, int reg,
u16 word)
{ int ret;
switch (reg) { case PMBUS_VOUT_OV_FAULT_LIMIT: case PMBUS_VOUT_UV_FAULT_LIMIT:
ret = DIV_ROUND_CLOSEST(word * MP2993_VOUT_OVUV_DIV, MP2993_VOUT_OVUV_UINT);
ret = pmbus_write_word_data(client, 0, reg, ret); break; case PMBUS_OT_FAULT_LIMIT: case PMBUS_OT_WARN_LIMIT: /* * The MP2993 ot fault limit value and ot warn limit value * per rail are always the same, so only PMBUS_OT_FAULT_LIMIT * and PMBUS_OT_WARN_LIMIT register in page 0 are defined to * config the ot limit value.
*/
ret = pmbus_write_word_data(client, 0, reg, word); break; case PMBUS_VIN_OV_FAULT_LIMIT: case PMBUS_VIN_OV_WARN_LIMIT: case PMBUS_VIN_UV_WARN_LIMIT: case PMBUS_VIN_UV_FAULT_LIMIT: /* The MP2993 vin limit scale is (1/8V)/Lsb */
ret = pmbus_write_word_data(client, 0, reg,
DIV_ROUND_CLOSEST(word * MP2993_VIN_LIMIT_DIV,
MP2993_VIN_LIMIT_UINT)); break; case PMBUS_IIN_OC_WARN_LIMIT: /* * The PMBUS_IIN_OC_WARN_LIMIT of MP2993 is linear11 format, * and the exponent is a constant value(5'b00000), so the * exponent of word parameter should be converted to 5'b00000.
*/
ret = pmbus_write_word_data(client, page, reg,
mp2993_linear11_exponent_transfer(word, 0x00)); break; // case PMBUS_IOUT_OC_FAULT_LIMIT: case PMBUS_IOUT_OC_WARN_LIMIT: /* * The PMBUS_IOUT_OC_FAULT_LIMIT and PMBUS_IOUT_OC_WARN_LIMIT * of MP2993 can be regarded as linear11 format, and the * exponent is a 5'b00001 or 5'b00000. To ensure a larger * range of limit value, so the exponent of word parameter * should be converted to 5'b00001.
*/
ret = pmbus_write_word_data(client, page, reg,
mp2993_linear11_exponent_transfer(word, 0x01)); break; default:
ret = -EINVAL; break;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.