diff options
author | Bernardo Perez Priego <bernardo.perez.priego@intel.com> | 2021-10-08 15:07:54 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-11-22 15:11:36 +0000 |
commit | c47beec2d3695348f75e0fad16e3cafb668ff0d3 (patch) | |
tree | 2b531c163e5955a2d171d43ce1f02ce26df6c42e | |
parent | 708c937c111c45e7fadbcced3dc6e4d478fe380e (diff) |
mb/intel/adlrvp: Use dedicated VBT files for ADL-M
ADL-M has its own set of VBT files to pick during execution,
this will avoid any conflict with other ADL variants.
VBT files added at chrome-internal:4138272
BUG=None
TEST= Boot device on LP5/LP4, corresponding VBT file should be loaded.
Signed-off-by: Bernardo Perez Priego <bernardo.perez.priego@intel.com>
Change-Id: Ibbf3f11c9277f5dcb3e12f9020f54ec843444c3f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/58202
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Selma Bensaid <selma.bensaid@intel.com>
Reviewed-by: Bora Guvendik <bora.guvendik@intel.com>
-rw-r--r-- | src/mainboard/intel/adlrvp/mainboard.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mainboard/intel/adlrvp/mainboard.c b/src/mainboard/intel/adlrvp/mainboard.c index a113683e0e..904673e340 100644 --- a/src/mainboard/intel/adlrvp/mainboard.c +++ b/src/mainboard/intel/adlrvp/mainboard.c @@ -75,13 +75,14 @@ const char *mainboard_vbt_filename(void) switch (sku_id) { case ADL_P_LP5_1: case ADL_P_LP5_2: - case ADL_M_LP5: return "vbt_adlrvp_lp5.bin"; + case ADL_M_LP5: + return "vbt_adlrvp_m_lp5.bin"; case ADL_P_DDR5_1: case ADL_P_DDR5_2: return "vbt_adlrvp_ddr5.bin"; case ADL_M_LP4: - return "vbt_adlrvp_lp4.bin"; + return "vbt_adlrvp_m_lp4.bin"; default: return "vbt.bin"; } |