diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-04-24 17:42:19 +0200 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2020-04-29 20:44:14 +0000 |
commit | 6ba3a0758f7162834378e5845ea3a65fe327012c (patch) | |
tree | 21634fa56462cdb308b3e5a1ad1187067f131588 | |
parent | 577db029a02306fcdcb873f7a01f78b19d47da91 (diff) | |
download | coreboot-6ba3a0758f7162834378e5845ea3a65fe327012c.tar.xz |
nb/intel/haswell/pei_data.h: Add ULT system type
Looks like 5 is a valid system type, as Google Beltino and Slippy are
using it. According to comments on these mainboards' code, this value
corresponds to ULT systems. So, add it to the comment on the pei_data
struct, which was likely copied from Sandy Bridge and was not updated.
Change-Id: I3654bb6022839dba3e1499cf43e8beaa97d1def1
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40692
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
-rw-r--r-- | src/northbridge/intel/haswell/pei_data.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/northbridge/intel/haswell/pei_data.h b/src/northbridge/intel/haswell/pei_data.h index 17b7c182fa..643b830c24 100644 --- a/src/northbridge/intel/haswell/pei_data.h +++ b/src/northbridge/intel/haswell/pei_data.h @@ -81,7 +81,8 @@ struct pei_data uint32_t pmbase; uint32_t gpiobase; uint32_t temp_mmio_base; - uint32_t system_type; // 0 Mobile, 1 Desktop/Server + /* System type: 0 => Mobile, 1 => Desktop/Server, 5 => ULT, Others => Reserved */ + uint32_t system_type; uint32_t tseg_size; uint8_t spd_addresses[4]; int boot_mode; |