Kconfig 1.6 KB
Newer Older
1 2 3
config DTC
	bool

4 5 6
config OF
	bool

7
menu "Device Tree and Open Firmware support"
8 9
	depends on OF

10 11 12 13 14 15 16 17
config PROC_DEVICETREE
	bool "Support for device tree in /proc"
	depends on PROC_FS && !SPARC
	help
	  This option adds a device-tree directory under /proc which contains
	  an image of the device tree that the kernel copies from Open
	  Firmware or other boot firmware. If unsure, say Y here.

G
Grant Likely 已提交
18 19 20 21 22 23 24 25 26
config OF_SELFTEST
	bool "Device Tree Runtime self tests"
	help
	  This option builds in test cases for the device tree infrastructure
	  that are executed one at boot time, and the results dumped to the
	  console.

	  If unsure, say N here, but this option is safe to enable.

27 28
config OF_FLATTREE
	bool
29
	select DTC
30

31 32 33 34
config OF_EARLY_FLATTREE
	bool
	select OF_FLATTREE

35 36 37
config OF_PROMTREE
	bool

38 39
# Hardly any platforms need this.  It is safe to select, but only do so if you
# need it.
40
config OF_DYNAMIC
41
	bool
42

G
Grant Likely 已提交
43 44
config OF_ADDRESS
	def_bool y
45
	depends on !SPARC
G
Grant Likely 已提交
46

47 48
config OF_IRQ
	def_bool y
49
	depends on !SPARC
50

51 52
config OF_DEVICE
	def_bool y
53 54 55

config OF_GPIO
	def_bool y
56
	depends on GPIOLIB && !SPARC
57 58
	help
	  OpenFirmware GPIO accessors
59 60

config OF_I2C
61
	def_tristate I2C
62
	depends on I2C && !SPARC
63 64
	help
	  OpenFirmware I2C accessors
65

66 67 68 69
config OF_NET
	depends on NETDEVICES
	def_bool y

70 71
config OF_SPI
	def_tristate SPI
72
	depends on SPI && !SPARC
73 74
	help
	  OpenFirmware SPI accessors
75 76 77

config OF_MDIO
	def_tristate PHYLIB
78
	depends on PHYLIB
79 80
	help
	  OpenFirmware MDIO bus (Ethernet PHY) accessors
81

82 83
config OF_PCI
	def_tristate PCI
84
	depends on PCI
85 86 87
	help
	  OpenFirmware PCI bus accessors

88 89 90 91 92 93
config OF_PCI_IRQ
	def_tristate PCI
	depends on OF_PCI && OF_IRQ
	help
	  OpenFirmware PCI IRQ routing helpers

94
endmenu # OF