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 53 54
config OF_NET
	depends on NETDEVICES
	def_bool y

55 56
config OF_MDIO
	def_tristate PHYLIB
57
	depends on PHYLIB
58 59
	help
	  OpenFirmware MDIO bus (Ethernet PHY) accessors
60

61 62
config OF_PCI
	def_tristate PCI
63
	depends on PCI
64 65 66
	help
	  OpenFirmware PCI bus accessors

67 68 69 70 71 72
config OF_PCI_IRQ
	def_tristate PCI
	depends on OF_PCI && OF_IRQ
	help
	  OpenFirmware PCI IRQ routing helpers

73 74 75 76
config OF_MTD
	depends on MTD
	def_bool y

77 78 79 80 81 82
config OF_RESERVED_MEM
	depends on OF_FLATTREE && (DMA_CMA || (HAVE_GENERIC_DMA_COHERENT && HAVE_MEMBLOCK))
	def_bool y
	help
	  Initialization code for DMA reserved memory

83
endmenu # OF