mb/prodrive/hermes: Fix HSI version
Fix board ID (HSI) read from BMC: * R02 and R03 have an HSI of 2. * R04 has an HSI of 3. Change-Id: I987b2dd848c48e3562bcc07270c958cde3c5a962 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/51920 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Patrick Rudolph
parent
4b6773a652
commit
62e3895bba
@@ -12,7 +12,7 @@ void mainboard_azalia_program_runtime_verbs(u8 *base, u32 viddid)
|
|||||||
if (viddid == 0x10ec0888) {
|
if (viddid == 0x10ec0888) {
|
||||||
u8 hsi = get_bmc_hsi();
|
u8 hsi = get_bmc_hsi();
|
||||||
|
|
||||||
if (hsi >= 4)
|
if (hsi >= 3) /* R04 and newer */
|
||||||
mainboard_r0x_configure_alc888(base, viddid);
|
mainboard_r0x_configure_alc888(base, viddid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user