Kconfig 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. # I2C configuration options
  2. # Copyright (c) 2015 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. #
  5. # I2C options
  6. #
  7. menuconfig I2C
  8. bool "I2C Drivers"
  9. help
  10. Enable I2C Driver Configuration
  11. if I2C
  12. config I2C_SHELL
  13. bool "Enable I2C Shell"
  14. default y
  15. depends on SHELL
  16. help
  17. Enable I2C Shell.
  18. The I2C shell currently support scanning and bus recovery.
  19. config I2C_SLAVE
  20. bool "Enable I2C Slave"
  21. default n
  22. help
  23. Enable I2C Slave.
  24. The I2C shell currently support scanning and bus recovery.
  25. config I2C_ASYNC
  26. bool "Enable I2C asynchronous interfaces"
  27. default n
  28. help
  29. If you say Y here, you will get support the I2C asynchronous interfaces.
  30. config I2C_ASYNC_MSG_INTERNAL_BUFFER
  31. bool "Enable I2C message use internal TX/RX buffer to transfer"
  32. default n
  33. depends on I2C_ASYNC
  34. help
  35. If you say Y here, I2C async interfaces will copy tx/rx data into internal buffer to transfer.
  36. Otherwise, it is necessary that user buffer shall be a global address.
  37. # Include these first so that any properties (e.g. defaults) below can be
  38. # overridden (by defining symbols in multiple locations)
  39. source "drivers/i2c/Kconfig.acts"
  40. config I2C_INIT_PRIORITY
  41. int "Init priority"
  42. default 20
  43. help
  44. I2C device driver initialization priority.
  45. module = I2C
  46. module-str = i2c
  47. source "subsys/logging/Kconfig.template.log_config"
  48. config I2C_GECKO
  49. bool "Gecko I2C driver"
  50. depends on HAS_SILABS_GECKO
  51. select SOC_GECKO_I2C
  52. help
  53. Enable the SiLabs Gecko I2C bus driver.
  54. config I2C_SAM_TWIHS
  55. bool "Atmel SAM (TWIHS) I2C driver"
  56. depends on SOC_FAMILY_SAM
  57. help
  58. Enable Atmel SAM MCU Family (TWIHS) I2C bus driver.
  59. config I2C_SAM_TWIM
  60. bool "Atmel SAM (TWIM) I2C driver"
  61. depends on SOC_SERIES_SAM4L
  62. help
  63. Enable Atmel SAM MCU Family (TWIM) I2C bus driver.
  64. config I2C_SAM_TWI
  65. bool "Atmel SAM (TWI) I2C driver"
  66. depends on SOC_FAMILY_SAM
  67. help
  68. Enable Atmel SAM MCU Family (TWI) I2C bus driver.
  69. config I2C_MCUX
  70. bool "MCUX I2C driver"
  71. depends on HAS_MCUX
  72. help
  73. Enable the mcux I2C driver.
  74. config I2C_MCUX_FLEXCOMM
  75. bool "MCUX FLEXCOMM I2C driver"
  76. depends on HAS_MCUX_FLEXCOMM
  77. help
  78. Enable the mcux flexcomm i2c driver.
  79. config I2C_MCUX_LPI2C
  80. bool "MCUX LPI2C driver"
  81. depends on HAS_MCUX_LPI2C && CLOCK_CONTROL
  82. help
  83. Enable the mcux LPI2C driver.
  84. config I2C_IMX
  85. bool "i.MX I2C driver"
  86. depends on HAS_IMX_I2C
  87. help
  88. Enable the i.MX I2C driver.
  89. config I2C_CC32XX
  90. bool "CC32XX I2C driver"
  91. depends on SOC_SERIES_CC32XX
  92. help
  93. Enable the CC32XX I2C driver.
  94. config I2C_BITBANG
  95. bool
  96. help
  97. Enable library used for software driven (bit banging) I2C support
  98. config I2C_NIOS2
  99. bool "Nios-II I2C driver"
  100. depends on HAS_ALTERA_HAL
  101. help
  102. Enable the Nios-II I2C driver.
  103. config I2C_RV32M1_LPI2C
  104. bool "RV32M1 LPI2C driver"
  105. depends on HAS_RV32M1_LPI2C && CLOCK_CONTROL
  106. help
  107. Enable the RV32M1 LPI2C driver.
  108. endif # I2C