File: Kconfig

package info (click to toggle)
opensbi 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,480 kB
  • sloc: ansic: 34,934; python: 4,658; asm: 1,113; makefile: 639; sh: 329
file content (31 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (4)
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