bq28400-battery.txt 651 B

123456789101112131415161718192021222324
  1. TI BQ28400 Battery Gas Gauge
  2. The bq28400 monitors the battery temperature, capacity, voltage, current etc.
  3. The device interface is I2C, its I2C slave 7-bit address is 0xb.
  4. The device is usually embedded inside the "smart battery" pack.
  5. Required properties:
  6. - compatible : Must be "ti,bq28400-battery" or "ti,bq30z55-battery"
  7. - reg : I2C Address must be 0xb.
  8. - ti,temp-cold : Cold temperature limit in celsius degree
  9. - ti,temp-hot : Hot temperature limit in celsius degree
  10. Example:
  11. i2c@f9967000 {
  12. battery@b {
  13. compatible = "ti,bq28400-battery", "ti,bq30z55-battery";
  14. reg = <0xb>;
  15. ti,temp-cold = <2>;
  16. ti,temp-hot = <43>;
  17. };
  18. };