summaryrefslogtreecommitdiff
path: root/src/arch/x86/X86System.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-10 23:43:33 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-10 23:43:33 -0700
commit3d1734ec29a0572a2c0fe403d737adbd9756c993 (patch)
treee77bb4c3f2b75ebd5f7cb60d4ca93ce53cd28dec /src/arch/x86/X86System.py
parentf85a7f00c0a9da6181fb803d760b1378fbc8bd27 (diff)
downloadgem5-3d1734ec29a0572a2c0fe403d737adbd9756c993.tar.xz
X86: Create SimObjects in python and C++ to represent the ACPI system description tables.
Diffstat (limited to 'src/arch/x86/X86System.py')
-rw-r--r--src/arch/x86/X86System.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/X86System.py b/src/arch/x86/X86System.py
index fc7a5acd0..527831205 100644
--- a/src/arch/x86/X86System.py
+++ b/src/arch/x86/X86System.py
@@ -57,6 +57,7 @@ from m5.params import *
from E820 import X86E820Table, X86E820Entry
from SMBios import X86SMBiosSMBiosTable
from IntelMP import X86IntelMPFloatingPointer, X86IntelMPConfigTable
+from ACPI import X86ACPIRSDP
from System import System
class X86System(System):
@@ -69,6 +70,8 @@ class X86System(System):
intel_mp_table = Param.X86IntelMPConfigTable(
X86IntelMPConfigTable(),
'intel mp spec configuration table')
+ acpi_description_table_pointer = Param.X86ACPIRSDP(
+ X86ACPIRSDP(), 'ACPI root description pointer structure')
class LinuxX86System(X86System):
type = 'LinuxX86System'