Kconfig 433 B

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: BSD-2-Clause
  2. menu "I2C Support"
  3. config FDT_I2C
  4. bool "FDT based I2C drivers"
  5. depends on FDT
  6. select I2C
  7. default n
  8. if FDT_I2C
  9. config FDT_I2C_SIFIVE
  10. bool "SiFive I2C FDT driver"
  11. default n
  12. config FDT_I2C_DW
  13. bool "Synopsys Designware I2C FDT driver"
  14. select I2C_DW
  15. default n
  16. endif
  17. config I2C_DW
  18. bool "Synopsys Designware I2C support"
  19. default n
  20. config I2C
  21. bool "I2C support"
  22. default n
  23. endmenu