diff options
author | Bjoern A. Zeeb <baz21@cam.ac.uk> | 2016-05-19 15:19:35 -0500 |
---|---|---|
committer | Bjoern A. Zeeb <baz21@cam.ac.uk> | 2016-05-19 15:19:35 -0500 |
commit | 7fc668fae90bbc9ae639c3413e9e1d41d7cd086b (patch) | |
tree | 8c0e8b90d32fdeb7939cc0740e18d073c5e22b58 /src | |
parent | a6b00c07f6ec9dd25c860bc89691e3873f7996c6 (diff) | |
download | gem5-7fc668fae90bbc9ae639c3413e9e1d41d7cd086b.tar.xz |
config, x86: Properly space pad the X86IntelMPBus Entry descriptions
According to the Intel Multi Processor Specification rev 1.4 (-006) (*),
section 4.3.2 Bus Entries, Bus type strings are >>6-character ASCII
(blank-filled) strings<<.
This patch properly pads the entries with the missing spaces at the end.
(*) http://www.intel.com/design/pentium/datashts/24201606.pdf
Committed by Jason Lowe-Power <power.jg@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/bios/IntelMP.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/bios/IntelMP.py b/src/arch/x86/bios/IntelMP.py index 21f93eaad..a39061f23 100644 --- a/src/arch/x86/bios/IntelMP.py +++ b/src/arch/x86/bios/IntelMP.py @@ -115,7 +115,7 @@ class X86IntelMPBus(X86IntelMPBaseConfigEntry): bus_id = Param.UInt8(0, 'bus id assigned by the bios') bus_type = Param.String("", 'string that identify the bus type') - # Legal values for bus_type are: + # Legal values for bus_type are [space padded to 6 bytes]: # # "CBUS", "CBUSII", "EISA", "FUTURE", "INTERN", "ISA", "MBI", "MBII", # "MCA", "MPI", "MPSA", "NUBUS", "PCI", "PCMCIA", "TC", "VL", "VME", |