]> git.sur5r.net Git - u-boot/commitdiff
POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the... lwmon5
authorYuri Tikhonov <yur@emcraft.com>
Thu, 8 May 2008 13:46:42 +0000 (15:46 +0200)
committerWolfgang Denk <wd@denx.de>
Thu, 8 May 2008 21:58:56 +0000 (23:58 +0200)
This way we become able to utilize the full post_log_word for POST
activities (overwise, POST ECC, which has 0x8000 ID, could be
erroneously treated as started in post_output_backlog() even if there
was actually no POST ECC run (because of OCM POST failure, for
example).

Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14 files changed:
common/cmd_log.c
include/asm-arm/global_data.h
include/asm-avr32/global_data.h
include/asm-blackfin/global_data.h
include/asm-i386/global_data.h
include/asm-m68k/global_data.h
include/asm-microblaze/global_data.h
include/asm-mips/global_data.h
include/asm-nios/global_data.h
include/asm-nios2/global_data.h
include/asm-ppc/global_data.h
include/asm-sh/global_data.h
include/asm-sparc/global_data.h
include/logbuff.h

index b9f9ba03428fe2c7d35dff7b6ae2a2b2880c9374..c6e72ac3c0ca3a84485e5b0b3ae924da13b13916 100644 (file)
@@ -107,7 +107,7 @@ void logbuff_init_ptrs (void)
        if ((s = getenv ("loglevel")) != NULL)
                console_loglevel = (int)simple_strtoul (s, NULL, 10);
 
-       gd->post_log_word |= LOGBUFF_INITIALIZED;
+       gd->flags |= GD_FLG_LOGINIT;
 }
 
 void logbuff_reset (void)
@@ -168,7 +168,7 @@ static void logbuff_puts (const char *s)
 
 void logbuff_log(char *msg)
 {
-       if ((gd->post_log_word & LOGBUFF_INITIALIZED)) {
+       if ((gd->flags & GD_FLG_LOGINIT)) {
                logbuff_printk (msg);
        } else {
                /* Can happen only for pre-relocated errors as logging */
index b470d04072286c29897b217ed373561b2da0cc4b..7564ff1469fdbdd3a19ffb5cbc31b7d01a894d4a 100644 (file)
@@ -62,6 +62,7 @@ typedef       struct  global_data {
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buffer has been initialized      */
 
 #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("r8")
 
index 1863b6a4f19c2828db98feef9aa697dc8816d5f2..007cfe4e7e7c48ac76751cec18cc95c9907200f0 100644 (file)
@@ -53,6 +53,7 @@ typedef       struct  global_data {
 #define GD_FLG_SILENT  0x00004         /* Silent mode                   */
 #define GD_FLG_POSTFAIL        0x00008         /* Critical POST test failed     */
 #define GD_FLG_POSTSTOP        0x00010         /* POST seqeunce aborted         */
+#define GD_FLG_LOGINIT 0x00020         /* Log Buf has been initialized  */
 
 #define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm("r5")
 
index 8d283cfeca19e7c93c9ec7a93b530c914f2354b2..4c8863962343225d22a480eb5018d326edbd991a 100644 (file)
@@ -63,6 +63,7 @@ typedef struct global_data {
 #define        GD_FLG_SILENT   0x00004 /* Silent mode                   */
 #define        GD_FLG_POSTFAIL 0x00008 /* Critical POST test failed     */
 #define        GD_FLG_POSTSTOP 0x00010 /* POST seqeunce aborted         */
+#define        GD_FLG_LOGINIT  0x00020 /* Log Buf has been initialized  */
 
 #define DECLARE_GLOBAL_DATA_PTR     register gd_t * volatile gd asm ("P5")
 
index be41b13c336e4f6142f426f39447234a64b896b4..323506399549bf7614185167e9f4bc51095a6c40 100644 (file)
@@ -56,6 +56,7 @@ typedef       struct {
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buffer has been initialized      */
 
 extern gd_t *global_data;
 
index 05191c790a69f4f5243bac24cfdb774015a086b1..7377d313db8a123d1c204e18c62f52ad00d311e0 100644 (file)
@@ -74,6 +74,7 @@ typedef       struct  global_data {
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buffer has been initialized      */
 
 #if 0
 extern gd_t *global_data;
index e7a8c20204dc2c2ba89ff5c402cd96431cb94d35..376786fca98ec135dc5a50fa6a633cfe1e0e91e6 100644 (file)
@@ -54,6 +54,7 @@ typedef       struct  global_data {
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buffer has been initialized      */
 
 #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("r31")
 
index e7b28538d2c303ed7755751de1bb4023d45a5677..0c0ba50f425328b5e01a6b8ef21ae2e2888876bd 100644 (file)
@@ -56,6 +56,7 @@ typedef       struct  global_data {
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                   */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed     */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted         */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buf has been initialized  */
 
 #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("k0")
 
index bceb4176410197e7a9bfae0d8b3165e49b1ae6c7..a8cc9878932fab8440cd5c80000fc00f3c4f6bfa 100644 (file)
@@ -47,6 +47,7 @@ typedef       struct  global_data {
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buffer has been initialized      */
 
 #define DECLARE_GLOBAL_DATA_PTR     register gd_t *gd asm ("%g7")
 
index 0e723597331cb1e1fea055c22d594dfad44f9703..729048917bbd367a0f865ffd686f2740635fc817 100644 (file)
@@ -46,6 +46,7 @@ typedef       struct  global_data {
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buffer has been initialized      */
 
 #define DECLARE_GLOBAL_DATA_PTR     register gd_t *gd asm ("r15")
 
index 341a3bd947613eeccf1cd40e499cbd8ac025798f..ea702662f8a2fef500537f70f9b710ac896bc826 100644 (file)
@@ -169,6 +169,7 @@ typedef     struct  global_data {
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buffer has been initialized      */
 
 #if 1
 #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("r2")
index 3bfbdb00bfbfae53f70bddef73272b9872e6b69f..69af24a7708cc45ea7d80a27d75b397e3cd11b9b 100644 (file)
@@ -46,6 +46,7 @@ typedef       struct global_data
 #define        GD_FLG_SILENT   0x00004         /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008         /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010         /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020         /* Log Buffer has been initialized      */
 
 #define DECLARE_GLOBAL_DATA_PTR        register gd_t *gd asm ("r13")
 
index e3ef679c58cba15b5e0d8c9b113b82b3a90c82f1..de2c84b22b3bfd187f4c2744631b8fcdba47c1dd 100644 (file)
@@ -81,6 +81,7 @@ typedef struct global_data {
 #define        GD_FLG_SILENT   0x00004 /* Silent mode                          */
 #define        GD_FLG_POSTFAIL 0x00008 /* Critical POST test failed            */
 #define        GD_FLG_POSTSTOP 0x00010 /* POST seqeunce aborted                */
+#define        GD_FLG_LOGINIT  0x00020 /* Log Buffer has been initialized      */
 
 #define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("%g7")
 
index d4157290538c1baf1433a5846469055712efd059..d06d208844264e7b29e22f5a5ebc7b088c9e37ac 100644 (file)
@@ -31,8 +31,6 @@
 #define LOGBUFF_OVERHEAD (4096) /* Logbuffer overhead for extra info */
 #define LOGBUFF_RESERVE (LOGBUFF_LEN+LOGBUFF_OVERHEAD)
 
-#define LOGBUFF_INITIALIZED    (1<<31)
-
 /* The mapping used here has to be the same as in setup_ext_logbuff ()
    in linux/kernel/printk */