We are planning to add fuel gauge function to our handheld device based on AM335x + TPS65217C PMIC (a beaglebone black clone).
In bq27421-G1 TRM page 10, section 2.4.6 HIBERNATE Mode, quote:
It is the responsibility of the system to wake the fuel gauge after it has gone into HIBERNATE mode and to prevent a charger from charging the battery before the Flags() [OCVTAKEN] bit is set which signals an initial OCV reading has been taken. For maximum initialization accuracy, any significant charge or discharge current should be postponed until the ControlStatus() [INITCOMP] bit is set. This could take up to 10 seconds.
I wonder how this requirement would affect the system logic. I'm considering two cases:
~~~~~~~~~~~~~~
First, no usb or ac power on pmic, no battery.
The user inserts the battery and presses the power button. The system is powering up. I don't know if the gauge ic can finish the OCV measurement or initialization before there are SIGNIFICANT DISCHARGE, probably not if it takes around 10 seconds, then would there be some unacceptable bad effect? or should I block further boot-up sequence in bootloader, waiting for OCV measurement done or INIT completion? This will greatly confuse user.
~~~~~~~~~~~~~~
Second, usb or ac power on, the system halts in bootloader waiting for battery insertion, is booting or has already booted into the fully functional system anyway.
The user inserts the battery. The pmic will detect the battery and start charging. Should I disable/block the charging until the gauge finish initialization in software?
~~~~~~~~~~~~~~
I never used a gauge ic in embedded linux/android system before, so any suggestions would be greatly appreciated, especially that pointing out some potential pitfalls according to your experiences.