nb/intel/haswell: Do not print ME status twice

The `intel_early_me_init_done()` function prints the ME status. In order
to see the ME status once in all paths, have the aforementioned function
only call `intel_early_me_status()` before handling a reset request.

Change-Id: I42ad1b25889a21047b7cf55e7940293e73794d8b
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/91374
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Benjamin Doron <benjamin.doron00@gmail.com>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
This commit is contained in:
Angel Pons 2026-02-22 15:54:39 +01:00 committed by Matt DeVillier
commit f96644e774

View file

@ -159,9 +159,6 @@ int intel_early_me_init_done(u8 status)
printk(BIOS_NOTICE, "ME: Requested BIOS Action: %s\n",
me_ack_values[hfs.ack_data]);
/* Check status after acknowledgement */
intel_early_me_status();
reset = 0;
switch (hfs.ack_data) {
case ME_HFS_ACK_CONTINUE:
@ -190,6 +187,9 @@ int intel_early_me_init_done(u8 status)
/* Perform the requested reset */
if (reset) {
/* Show ME status before resetting */
intel_early_me_status();
outb(reset, 0xcf9);
halt();
}