Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/58202 )
Change subject: mb/intel/adlrvp: Use dedicated VBT files for ADL-M ......................................................................
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 --- M src/mainboard/intel/adlrvp/mainboard.c 1 file changed, 3 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Bora Guvendik: Looks good to me, approved Selma Bensaid: Looks good to me, but someone else must approve
diff --git a/src/mainboard/intel/adlrvp/mainboard.c b/src/mainboard/intel/adlrvp/mainboard.c index a113683..904673e 100644 --- a/src/mainboard/intel/adlrvp/mainboard.c +++ b/src/mainboard/intel/adlrvp/mainboard.c @@ -75,13 +75,14 @@ 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"; }