Pārlūkot izejas kodu

of: enable unittests on UML

The unittests can run on UML, but OF_IRQ and OF_ADDRESS need to be
enabled. Rework the kconfig dependencies to enable the unittests. The
unittests cannot build on Sparc, so we need to add an explicit
dependency for !SPARC.

There's one failure in overlay tests because the base DT is not
unflattened early.

Cc: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Rob Herring <robh@kernel.org>
Rob Herring 8 gadi atpakaļ
vecāks
revīzija
6019a3d07d
1 mainītis faili ar 3 papildinājumiem un 2 dzēšanām
  1. 3 2
      drivers/of/Kconfig

+ 3 - 2
drivers/of/Kconfig

@@ -13,7 +13,8 @@ if OF
 
 
 config OF_UNITTEST
 config OF_UNITTEST
 	bool "Device Tree runtime unit tests"
 	bool "Device Tree runtime unit tests"
-	depends on OF_IRQ
+	depends on !SPARC
+	select IRQ_DOMAIN
 	select OF_EARLY_FLATTREE
 	select OF_EARLY_FLATTREE
 	select OF_RESOLVE
 	select OF_RESOLVE
 	help
 	help
@@ -61,7 +62,7 @@ config OF_DYNAMIC
 
 
 config OF_ADDRESS
 config OF_ADDRESS
 	def_bool y
 	def_bool y
-	depends on !SPARC && HAS_IOMEM
+	depends on !SPARC && (HAS_IOMEM || UML)
 	select OF_ADDRESS_PCI if PCI
 	select OF_ADDRESS_PCI if PCI
 
 
 config OF_ADDRESS_PCI
 config OF_ADDRESS_PCI