diff options
author | Valentin Longchamp <valentin.longchamp@keymile.com> | 2011-08-03 02:37:01 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-05 22:03:10 +0200 |
commit | 79843950b26980cc0a62954bf49509de301607f3 (patch) | |
tree | fbfb2b49a38f92bf7b1c6b427f3b8c7ed6e4dde1 /arch/sparc/include | |
parent | 3e161ced8fd3276aa77e4276e9237ae972b21f33 (diff) | |
download | u-boot-imx-79843950b26980cc0a62954bf49509de301607f3.zip u-boot-imx-79843950b26980cc0a62954bf49509de301607f3.tar.gz u-boot-imx-79843950b26980cc0a62954bf49509de301607f3.tar.bz2 |
POST: add post_log_res field for post results in global data
The current post_log_word in global data is currently split into 2x
16 bits: half for the test start, half for the test success.
Since we alredy have more than 16 POST tests defined and more could
be defined, this may result in an overflow and the post_output_backlog
would not work for the tests defined further of these 16 positions.
An additional field is added to global data so that we can now support up
to 32 (depending of architecture) tests. The post_log_word is only used
to record the start of the test and the new field post_log_res for the
test success (or failure). The post_output_backlog is for this change
also adapted.
Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com>
Diffstat (limited to 'arch/sparc/include')
-rw-r--r-- | arch/sparc/include/asm/global_data.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sparc/include/asm/global_data.h b/arch/sparc/include/asm/global_data.h index a1e4b44..613e2d8 100644 --- a/arch/sparc/include/asm/global_data.h +++ b/arch/sparc/include/asm/global_data.h @@ -61,6 +61,7 @@ typedef struct global_data { #endif #if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER) unsigned long post_log_word; /* Record POST activities */ + unsigned long post_log_res; /* success of POST test */ unsigned long post_init_f_time; /* When post_init_f started */ #endif #ifdef CONFIG_BOARD_TYPES |