Comments
Patch
@@ -41,6 +41,10 @@ typedef struct global_data {
unsigned long env_addr; /* Address of Environment struct */
unsigned long env_valid; /* Checksum of Environment valid? */
unsigned long fb_base; /* base address of frame buffer */
+#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
+ unsigned long post_log_word; /* Record POST activities */
+ unsigned long post_init_f_time; /* When post_init_f started */
+#endif
#ifdef CONFIG_FSL_ESDHC
unsigned long sdhc_clk;
#endif
@@ -64,6 +64,10 @@
#include <logbuff.h>
#endif
+#if defined(CONFIG_POST)
+#include <post.h>
+#endif
+
DECLARE_GLOBAL_DATA_PTR;
ulong monitor_flash_len;
Signed-off-by: Heiko Schocher <hs@denx.de> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net> --- arch/arm/include/asm/global_data.h | 4 ++++ arch/arm/lib/board.c | 4 ++++ 2 files changed, 8 insertions(+), 0 deletions(-)