Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | # I2C configuration options # Copyright (c) 2015 Intel Corporation # SPDX-License-Identifier: Apache-2.0 # # I2C options # menuconfig I2C bool "I2C Drivers" select HAS_DTS_I2C help Enable I2C Driver Configuration if I2C config I2C_SHELL bool "Enable I2C Shell" default y depends on SHELL help Enable I2C Shell. The I2C shell currently support scanning and bus recovery. # Include these first so that any properties (e.g. defaults) below can be # overridden (by defining symbols in multiple locations) source "drivers/i2c/Kconfig.cc13xx_cc26xx" source "drivers/i2c/Kconfig.dw" source "drivers/i2c/Kconfig.esp32" source "drivers/i2c/slave/Kconfig" source "drivers/i2c/Kconfig.gpio" source "drivers/i2c/Kconfig.xec" source "drivers/i2c/Kconfig.nrfx" source "drivers/i2c/Kconfig.sbcon" source "drivers/i2c/Kconfig.sifive" source "drivers/i2c/Kconfig.stm32" source "drivers/i2c/Kconfig.sam0" source "drivers/i2c/Kconfig.litex" config I2C_INIT_PRIORITY int "Init priority" default 60 help I2C device driver initialization priority. module = I2C module-str = i2c source "subsys/logging/Kconfig.template.log_config" config I2C_0 bool "Enable I2C Port 0" config I2C_1 bool "Enable I2C Port 1" config I2C_2 bool "Enable I2C Port 2" config I2C_3 bool "Enable I2C Port 3" config I2C_4 bool "Enable I2C Port 4" config I2C_5 bool "Enable I2C Port 5" config I2C_6 bool "Enable I2C Port 6" config I2C_7 bool "Enable I2C Port 7" config I2C_GECKO bool "Gecko I2C driver" depends on HAS_SILABS_GECKO select SOC_GECKO_I2C help Enable the SiLabs Gecko I2C bus driver. config I2C_SAM_TWIHS bool "Atmel SAM (TWIHS) I2C driver" depends on SOC_FAMILY_SAM help Enable Atmel SAM MCU Family (TWIHS) I2C bus driver. config I2C_SAM_TWI bool "Atmel SAM (TWI) I2C driver" depends on SOC_FAMILY_SAM help Enable Atmel SAM MCU Family (TWI) I2C bus driver. config I2C_MCUX bool "MCUX I2C driver" depends on HAS_MCUX help Enable the mcux I2C driver. config I2C_MCUX_FLEXCOMM bool "MCUX FLEXCOMM I2C driver" depends on HAS_MCUX_FLEXCOMM help Enable the mcux flexcomm i2c driver. config I2C_MCUX_LPI2C bool "MCUX LPI2C driver" depends on HAS_MCUX_LPI2C && CLOCK_CONTROL help Enable the mcux LPI2C driver. config I2C_IMX bool "i.MX I2C driver" depends on HAS_IMX_I2C help Enable the i.MX I2C driver. config I2C_CC32XX bool "CC32XX I2C driver" depends on SOC_SERIES_CC32XX help Enable the CC32XX I2C driver. config I2C_BITBANG bool help Enable library used for software driven (bit banging) I2C support config I2C_NIOS2 bool "Nios-II I2C driver" depends on HAS_ALTERA_HAL help Enable the Nios-II I2C driver. config I2C_0_IRQ_PRI int "Port 0 interrupt priority" depends on I2C_NIOS2 help IRQ priority. config I2C_RV32M1_LPI2C bool "RV32M1 LPI2C driver" depends on HAS_RV32M1_LPI2C && CLOCK_CONTROL help Enable the RV32M1 LPI2C driver. endif # I2C |