summaryrefslogtreecommitdiff
path: root/lib/utils/i2c/Kconfig
blob: 7fa32fcf9674b7548add8611f56001d9f0bed2c1 (plain)
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
# SPDX-License-Identifier: BSD-2-Clause

menu "I2C Support"

config FDT_I2C
	bool "FDT based I2C drivers"
	depends on FDT
	select I2C
	default n

if FDT_I2C

config FDT_I2C_SIFIVE
	bool "SiFive I2C FDT driver"
	default n

config FDT_I2C_DW
	bool "Synopsys Designware I2C FDT driver"
	select I2C_DW
	default n
endif

config I2C_DW
	bool "Synopsys Designware I2C support"
	default n

config I2C
	bool "I2C support"
	default n

endmenu