diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2011-09-15 10:19:04 -0700 |
---|---|---|
committer | Stefan Reinauer <reinauer@google.com> | 2011-09-19 13:46:14 -0700 |
commit | e77f3d97fd98815d60391af31d928ec192905d19 (patch) | |
tree | 15248a206c0251322201783d1ccb56b24ec40298 /board | |
parent | 4fa99eb575d56552ae9a1252f56e0475e3848d53 (diff) |
Emit port 80 post codes in show_boot_progress() on x86
Signed-off-by: Stefan Reinauer <reinauer@google.com>
BUG=none
TEST=boot coreboot+u-boot, see the right post codes come up.
Change-Id: I0f901a64e5d77fed3a82e265f0ddbdcb08c1b973
Reviewed-on: http://gerrit.chromium.org/gerrit/7777
Reviewed-by: Simon Glass <sjg@chromium.org>
Commit-Ready: Stefan Reinauer <reinauer@google.com>
Tested-by: Stefan Reinauer <reinauer@google.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/chromebook-x86/coreboot/coreboot.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/chromebook-x86/coreboot/coreboot.c b/board/chromebook-x86/coreboot/coreboot.c index c2ae6d2d003..cc47b4f8f15 100644 --- a/board/chromebook-x86/coreboot/coreboot.c +++ b/board/chromebook-x86/coreboot/coreboot.c @@ -33,7 +33,7 @@ #include <asm/ic/coreboot/sysinfo.h> #include <chromeos/power_management.h> #include <chromeos/common.h> - +#include <asm/io.h> #ifdef CONFIG_HW_WATCHDOG #include <watchdog.h> #endif @@ -69,6 +69,7 @@ int board_early_init_r(void) void show_boot_progress(int val) { + outb(val, 0x80); } |