-
Notifications
You must be signed in to change notification settings - Fork 217
Description
Flex has proposed a firmware mitigation for existing BMR491 IBCs that have the intermittent voltage droop issue. I'm creating this tracking issue so we can document its implementation in the firmware (or our decision not to implement it, should we decide it's not right!).
The suggestion is, concretely,
- To disable the input undervoltage check by writing
VIN_OFFto 0. (All register names in this list are in the PMBus interface.) - Send
VOUT_COMMANDof 0x0060 (sets the ranges for the subsequent commands) - Override
MAX_DUTYto 0.95 / 0xF8EA - Set
VOUT_UV_FAULT_LIMITto 0x0058 - Set
VOUT_UV_FAULT_RESPONSEto 0x80 (disable, do not retry)
They then suggest using STORE_USER_ALL to make this persist.
My interpretation of their doc against the PMBus spec suggests that the fix is plausible. It should effectively disable the input undervoltage monitor, which makes some sense -- it's the input stage for that circuit that has the out-of-tolerance components on the BMR491. To compensate it enables VOUT undervoltage monitoring, which should be less prone to false detection.
We don't appear to do much programming of the BMR491 online right now, so I think we'd need to do this in manufacturing on any defective BMR491s. For systems already in the field, we'd probably want to distribute a firmware update that applies the mitigation at startup. This raises the question of whether we can reliably detect a defective (or potentially defective) '491 in-system, which we need to double check.
@hawkw @ericaasen - did I miss things?