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:
Patrick Rudolph 2021-03-29 12:48:45 +02:00 committed by Patrick Rudolph
parent 4b6773a652
commit 62e3895bba
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ void mainboard_azalia_program_runtime_verbs(u8 *base, u32 viddid)
if (viddid == 0x10ec0888) {
u8 hsi = get_bmc_hsi();
if (hsi >= 4)
if (hsi >= 3) /* R04 and newer */
mainboard_r0x_configure_alc888(base, viddid);
}
}