Kconfig 854 B

123456789101112131415161718192021222324252627
  1. #
  2. # BIF framework and drivers
  3. #
  4. menuconfig BIF
  5. bool "MIPI-BIF support"
  6. select CRC_CCITT
  7. select BITREVERSE
  8. help
  9. MIPI-BIF (battery interface) is a one-wire serial interface between a
  10. host master device and one or more slave devices which are located in
  11. a battery pack or also on the host. Enabling this option allows for
  12. BIF consumer drivers to issue transactions via BIF controller drivers.
  13. if BIF
  14. config BIF_QPNP
  15. depends on SPMI
  16. depends on OF_SPMI
  17. tristate "Qualcomm QPNP BIF support"
  18. help
  19. This driver supports the QPNP BSI peripheral found inside of Qualcomm
  20. QPNP PMIC devices. The BSI peripheral is able to communicate using
  21. the BIF protocol. The QPNP BSI driver hooks into the BIF framework.
  22. Enable this option in order to provide support for BIF communication
  23. on targets which have BSI PMIC peripherals.
  24. endif