mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
x86: Issue SMI to finalize Coreboot in final stage
This will write magic value to APMC command port which will trigger an SMI and cause coreboot to lock down the ME, chipset, and CPU. Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
488b8b242b
commit
b83058cd23
1 changed files with 4 additions and 0 deletions
|
@ -118,5 +118,9 @@ int board_final_cleanup(void)
|
||||||
enable_caches();
|
enable_caches();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Issue SMI to Coreboot to lock down ME and registers */
|
||||||
|
printf("Finalizing Coreboot\n");
|
||||||
|
outb(0xcb, 0xb2);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue