X86System.py (5625:ea7d3676ac8d) X86System.py (5627:31eac202dbd1)
1# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

--- 43 unchanged lines hidden (view full) ---

52# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54# Authors: Gabe Black
55
56from m5.params import *
57from E820 import X86E820Table, X86E820Entry
58from SMBios import X86SMBiosSMBiosTable
59from IntelMP import X86IntelMPFloatingPointer, X86IntelMPConfigTable
1# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

--- 43 unchanged lines hidden (view full) ---

52# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54# Authors: Gabe Black
55
56from m5.params import *
57from E820 import X86E820Table, X86E820Entry
58from SMBios import X86SMBiosSMBiosTable
59from IntelMP import X86IntelMPFloatingPointer, X86IntelMPConfigTable
60from ACPI import X86ACPIRSDP
60from System import System
61
62class X86System(System):
63 type = 'X86System'
64 smbios_table = Param.X86SMBiosSMBiosTable(
65 X86SMBiosSMBiosTable(), 'table of smbios/dmi information')
66 intel_mp_pointer = Param.X86IntelMPFloatingPointer(
67 X86IntelMPFloatingPointer(),
68 'intel mp spec floating pointer structure')
69 intel_mp_table = Param.X86IntelMPConfigTable(
70 X86IntelMPConfigTable(),
71 'intel mp spec configuration table')
61from System import System
62
63class X86System(System):
64 type = 'X86System'
65 smbios_table = Param.X86SMBiosSMBiosTable(
66 X86SMBiosSMBiosTable(), 'table of smbios/dmi information')
67 intel_mp_pointer = Param.X86IntelMPFloatingPointer(
68 X86IntelMPFloatingPointer(),
69 'intel mp spec floating pointer structure')
70 intel_mp_table = Param.X86IntelMPConfigTable(
71 X86IntelMPConfigTable(),
72 'intel mp spec configuration table')
73 acpi_description_table_pointer = Param.X86ACPIRSDP(
74 X86ACPIRSDP(), 'ACPI root description pointer structure')
72
73class LinuxX86System(X86System):
74 type = 'LinuxX86System'
75
76 e820_table = Param.X86E820Table(
77 X86E820Table(), 'E820 map of physical memory')
75
76class LinuxX86System(X86System):
77 type = 'LinuxX86System'
78
79 e820_table = Param.X86E820Table(
80 X86E820Table(), 'E820 map of physical memory')