diff options
author | Michał Żygowski <michal.zygowski@3mdeb.com> | 2022-04-08 17:32:09 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-06-23 15:38:39 +0000 |
commit | f23cf44c4715575ffdac41ad3ae0a5f65626ef09 (patch) | |
tree | 4c0e705503910d5132f84cf4479fd83173079fab /src/soc/intel | |
parent | 964a70e998fd4b29d7df48d12a5dd51610043a3e (diff) |
soc/intel/alderlake/romstage: Add desktop UserBd options
Add the desktop board types as per DOC #573387.
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Change-Id: I8cca98f0fac51e537b472958ee602e116b48f6d4
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63504
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Krystian Hebel <krystian.hebel@3mdeb.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/alderlake/include/soc/romstage.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/soc/intel/alderlake/include/soc/romstage.h b/src/soc/intel/alderlake/include/soc/romstage.h index 6504d32085..3a22d25bb3 100644 --- a/src/soc/intel/alderlake/include/soc/romstage.h +++ b/src/soc/intel/alderlake/include/soc/romstage.h @@ -12,7 +12,10 @@ void systemagent_early_init(void); /* Board type */ enum board_type { BOARD_TYPE_MOBILE = 0, - BOARD_TYPE_DESKTOP = 1, + BOARD_TYPE_DESKTOP_1DPC = 1, + BOARD_TYPE_DESKTOP_2DPC = 2, + BOARD_TYPE_DESKTOP_2DPC_T_TOP_ASYM = 3, + BOARD_TYPE_DESKTOP_2DPC_T_TOP = 4, BOARD_TYPE_ULT_ULX = 5, BOARD_TYPE_ULT_ULX_T4 = 6, BOARD_TYPE_SERVER = 8 |