dev: Build the PCI device models even in NULL_ISA builds.
authorGabe Black <gabeblack@google.com>
Fri, 12 Oct 2018 00:57:20 +0000 (17:57 -0700)
committerGabe Black <gabeblack@google.com>
Wed, 17 Oct 2018 20:16:06 +0000 (20:16 +0000)
There are some minor ISA dependencies in the PCI device models,
specifically that they use the set<> accessors on the packet objects.
This actually compiles fine because the NULL ISA claims to be little
endian, but really these accessors should be changed to use little
endian all the time since that's what PCI is defined to use, not
the guest endianness.

The other types of accessors, specifically the ones that default to
what the guest wants, should be excluded when building NULL_ISA, and,
pending other dependencies, the NULL_ISA should no longer have an
endianness associated with it.

Change-Id: I0739122dbf67d109e7959553a1eff0239b090ca4
Reviewed-on: https://gem5-review.googlesource.com/c/13468
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>

src/dev/pci/SConscript

index 2c48403f85448600fe1002e51c6fe50303817ea2..56c06dda5dd4288e01ed5967941d52c14a8cf845 100644 (file)
@@ -44,9 +44,6 @@
 
 Import('*')
 
-if env['TARGET_ISA'] == 'null':
-    Return()
-
 SimObject('PciDevice.py')
 Source('device.cc')
 DebugFlag('PciDevice')