mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
x86: Emit post codes in startup code for Chromebooks
On x86 it is common to use 'post codes' which are 8-bit hex values emitted from the code and visible to the user. Traditionally two 7-segment displays were made available on the motherboard to show the last post code that was emitted. This allows diagnosis of a boot problem since it is possible to see where the code got to before it died. On modern hardware these codes are not normally visible. On Chromebooks they are displayed by the Embedded Controller (EC), so it is useful to emit them. We must enable this feature for the EC to see the codes, so add an option for this. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
fce7b27683
commit
d1cd045982
5 changed files with 62 additions and 2 deletions
|
@ -15,6 +15,7 @@
|
||||||
#include <asm/cache.h>
|
#include <asm/cache.h>
|
||||||
#include <asm/cpu.h>
|
#include <asm/cpu.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
#include <asm/post.h>
|
||||||
#include <asm/arch-coreboot/tables.h>
|
#include <asm/arch-coreboot/tables.h>
|
||||||
#include <asm/arch-coreboot/sysinfo.h>
|
#include <asm/arch-coreboot/sysinfo.h>
|
||||||
#include <asm/arch/timestamp.h>
|
#include <asm/arch/timestamp.h>
|
||||||
|
@ -70,7 +71,7 @@ void show_boot_progress(int val)
|
||||||
gd->arch.tsc_prev = now;
|
gd->arch.tsc_prev = now;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
outb(val, 0x80);
|
outb(val, POST_PORT);
|
||||||
}
|
}
|
||||||
|
|
||||||
int print_cpuinfo(void)
|
int print_cpuinfo(void)
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#include <version.h>
|
#include <version.h>
|
||||||
#include <asm/global_data.h>
|
#include <asm/global_data.h>
|
||||||
|
#include <asm/post.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/processor-flags.h>
|
#include <asm/processor-flags.h>
|
||||||
#include <generated/generic-asm-offsets.h>
|
#include <generated/generic-asm-offsets.h>
|
||||||
|
@ -67,6 +68,7 @@ _start:
|
||||||
jmp early_board_init
|
jmp early_board_init
|
||||||
.globl early_board_init_ret
|
.globl early_board_init_ret
|
||||||
early_board_init_ret:
|
early_board_init_ret:
|
||||||
|
post_code(POST_START)
|
||||||
|
|
||||||
/* Initialise Cache-As-RAM */
|
/* Initialise Cache-As-RAM */
|
||||||
jmp car_init
|
jmp car_init
|
||||||
|
@ -96,6 +98,7 @@ car_init_ret:
|
||||||
|
|
||||||
/* Align global data to 16-byte boundary */
|
/* Align global data to 16-byte boundary */
|
||||||
andl $0xfffffff0, %esp
|
andl $0xfffffff0, %esp
|
||||||
|
post_code(POST_START_STACK)
|
||||||
|
|
||||||
/* Zero the global data since it won't happen later */
|
/* Zero the global data since it won't happen later */
|
||||||
xorl %eax, %eax
|
xorl %eax, %eax
|
||||||
|
@ -131,6 +134,7 @@ car_init_ret:
|
||||||
call setup_gdt
|
call setup_gdt
|
||||||
|
|
||||||
/* Set parameter to board_init_f() to boot flags */
|
/* Set parameter to board_init_f() to boot flags */
|
||||||
|
post_code(POST_START_DONE)
|
||||||
xorl %eax, %eax
|
xorl %eax, %eax
|
||||||
|
|
||||||
/* Enter, U-boot! */
|
/* Enter, U-boot! */
|
||||||
|
|
32
arch/x86/include/asm/post.h
Normal file
32
arch/x86/include/asm/post.h
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2014 Google, Inc
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0+
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _post_h
|
||||||
|
#define _post_h
|
||||||
|
|
||||||
|
/* port to use for post codes */
|
||||||
|
#define POST_PORT 0x80
|
||||||
|
|
||||||
|
/* post codes which represent various stages of init */
|
||||||
|
#define POST_START 0x1e
|
||||||
|
#define POST_CAR_START 0x1f
|
||||||
|
|
||||||
|
#define POST_START_STACK 0x29
|
||||||
|
#define POST_START_DONE 0x2a
|
||||||
|
|
||||||
|
/* Output a post code using al - value must be 0 to 0xff */
|
||||||
|
#ifdef __ASSEMBLY__
|
||||||
|
#define post_code(value) \
|
||||||
|
movb $value, %al; \
|
||||||
|
outb %al, $POST_PORT
|
||||||
|
#else
|
||||||
|
static inline void post_code(int code)
|
||||||
|
{
|
||||||
|
outb(code, POST_PORT);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
|
@ -12,4 +12,8 @@ config SYS_SOC
|
||||||
config SYS_CONFIG_NAME
|
config SYS_CONFIG_NAME
|
||||||
default "chromebook_link"
|
default "chromebook_link"
|
||||||
|
|
||||||
|
config EARLY_POST_CROS_EC
|
||||||
|
bool "Enable early post to Chrome OS EC"
|
||||||
|
default y
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -6,5 +6,24 @@
|
||||||
|
|
||||||
.globl early_board_init
|
.globl early_board_init
|
||||||
early_board_init:
|
early_board_init:
|
||||||
/* No 32-bit board specific initialisation */
|
/* Enable post codes to EC */
|
||||||
|
#ifdef CONFIG_EARLY_POST_CROS_EC
|
||||||
|
mov $0x1b, %ecx
|
||||||
|
rdmsr
|
||||||
|
and $0x100, %eax
|
||||||
|
test %eax, %eax
|
||||||
|
je 1f
|
||||||
|
|
||||||
|
mov $0x8000f8f0, %eax
|
||||||
|
mov $0xcf8, %dx
|
||||||
|
out %eax, (%dx)
|
||||||
|
mov $0xfed1c001, %eax
|
||||||
|
mov $0xcfc, %dx
|
||||||
|
out %eax, (%dx)
|
||||||
|
mov $0xfed1f410, %esp
|
||||||
|
mov (%esp), %eax
|
||||||
|
and $0xfffffffb, %eax
|
||||||
|
mov %eax, (%esp)
|
||||||
|
1:
|
||||||
|
#endif
|
||||||
jmp early_board_init_ret
|
jmp early_board_init_ret
|
||||||
|
|
Loading…
Reference in a new issue