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>
This commit is contained in:
parent
708c937c11
commit
c47beec2d3
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue