summaryrefslogtreecommitdiff
path: root/board/chromebook-x86
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2011-09-15 10:19:04 -0700
committerStefan Reinauer <reinauer@google.com>2011-09-19 13:46:14 -0700
commite77f3d97fd98815d60391af31d928ec192905d19 (patch)
tree15248a206c0251322201783d1ccb56b24ec40298 /board/chromebook-x86
parent4fa99eb575d56552ae9a1252f56e0475e3848d53 (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/chromebook-x86')
-rw-r--r--board/chromebook-x86/coreboot/coreboot.c3
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);
}